diff --git a/.github/ISSUE_TEMPLATE/missing-item-s-.md b/.github/ISSUE_TEMPLATE/missing-item-s-.md index 7acc4ddc3f..a816939557 100644 --- a/.github/ISSUE_TEMPLATE/missing-item-s-.md +++ b/.github/ISSUE_TEMPLATE/missing-item-s-.md @@ -7,4 +7,4 @@ assignees: '' --- -Links to [Cataclysm Wowhead](https://wowhead.com/cata/items "https://wowhead.com/cata/items") for each item: +Links to [Mists of Pandaria Wowhead](https://wowhead.com/mop-classic/items "https://wowhead.com/mop-classic/items") for each item: diff --git a/.github/labels.yml b/.github/labels.yml index 95345fc21c..de03a89517 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -47,3 +47,8 @@ Druid: - ui/druid/**/* - sim/druid/**/* - proto/druid.proto + +Monk: + - ui/monk/**/* + - sim/monk/**/* + - proto/monk.proto diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69f1992486..e493650263 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,7 +31,7 @@ jobs: - name: Build 🔧 run: | - make dist/cata/.dirstamp + make dist/mop/.dirstamp - name: Update proto version file run: | @@ -60,5 +60,5 @@ jobs: uses: JamesIves/github-pages-deploy-action@4.1.5 with: branch: gh-pages - folder: dist/cata + folder: dist/mop single-commit: true diff --git a/.github/workflows/pr_labeler.yml b/.github/workflows/pr_labeler.yml index 8210f02a78..a86519d788 100644 --- a/.github/workflows/pr_labeler.yml +++ b/.github/workflows/pr_labeler.yml @@ -2,6 +2,7 @@ name: 'Pull Request Labeler' permissions: contents: read + issues: write pull-requests: write on: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 968c03d8ba..99fae3dc8e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: artifacts: | wowsimcli-amd64-linux.zip wowsimcli-windows.exe.zip - wowsimcata-amd64-darwin.zip - wowsimcata-arm64-darwin.zip - wowsimcata-amd64-linux.zip - wowsimcata-windows.exe.zip + wowsimmop-amd64-darwin.zip + wowsimmop-arm64-darwin.zip + wowsimmop-amd64-linux.zip + wowsimmop-windows.exe.zip diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 7bc6c2e597..5339cbe745 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -38,7 +38,7 @@ jobs: - name: Build 🔧 run: | - make dist/cata/.dirstamp + make dist/mop/.dirstamp - name: Test run: | diff --git a/.gitignore b/.gitignore index ae7caa0dd7..b958cfa24e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,16 +14,16 @@ dist binary_dist sim/web/__debug_bin /wowsimcli* -/wowsimcata* +/wowsimmop* # temporary files *.results.tmp package.json.tmp #.dockerignore -/cata/ +/mop/ *.code-workspace -wowsimcata +wowsimmop # old result file TestAPL.results @@ -35,6 +35,9 @@ TestAPL.results tmp/ # lib -wowsimcata*.so -wowsimcata*.dll -wowsimcata*.h +wowsimmop*.so +wowsimmop*.dll +wowsimmop*.h +wowsims.db +assets/db_inputs/dbc/ +mop.sln diff --git a/Dockerfile b/Dockerfile index fa3af54d9b..22e15b3026 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.23 -WORKDIR /cata +WORKDIR /mop RUN rm /bin/sh && ln -s /bin/bash /bin/sh diff --git a/README.md b/README.md index ecfd21a071..efb42dac7c 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,34 @@ -Welcome to the WoW Cataclysm Classic simulator! If you have questions or are thinking about contributing, [join our discord](https://discord.gg/jJMPr9JWwx "https://discord.gg/jJMPr9JWwx") to chat! +Welcome to the WoW Cataclysm Classic simulator! If you have questions or are thinking about contributing, [join our discord](https://discord.gg/jJMPr9JWwx 'https://discord.gg/jJMPr9JWwx') to chat! The primary goal of this project is to provide a framework that makes it easy to build a DPS sim for any class/spec, with a polished UI and accurate results. Each community will have ownership / responsibility over their portion of the sim, to ensure accuracy and that their community is represented. By having all the individual sims on the same engine, we can also have a combined 'raid sim' for testing raid compositions. This project is licensed with MIT license. We request that anyone using this software in their own project to make sure there is a user visible link back to the original project. -[Live sims can be found here.](https://wowsims.github.io/cata "https://wowsims.github.io/cata") +[Live sims can be found here.](https://wowsims.github.io/mop 'https://wowsims.github.io/mop') [Support our devs via Patreon.](https://www.patreon.com/wowsims) # Downloading Sim Links for latest Sim build: -- [Windows Sim](https://github.com/wowsims/cata/releases/latest/download/wowsimcata-windows.exe.zip) -- [MacOS Sim](https://github.com/wowsims/cata/releases/latest/download/wowsimcata-amd64-darwin.zip) -- [Linux Sim](https://github.com/wowsims/cata/releases/latest/download/wowsimcata-amd64-linux.zip) + +- [Windows Sim](https://github.com/wowsims/mop/releases/latest/download/wowsimmop-windows.exe.zip) +- [MacOS Sim](https://github.com/wowsims/mop/releases/latest/download/wowsimmop-amd64-darwin.zip) +- [Linux Sim](https://github.com/wowsims/mop/releases/latest/download/wowsimmop-amd64-linux.zip) Then unzip the downloaded file, then open the unzipped file to open the sim in your browser! -Alternatively, you can choose from a specific relase on the [Releases](https://github.com/wowsims/cata/releases) page and click the suitable link under "Assets" +Alternatively, you can choose from a specific relase on the [Releases](https://github.com/wowsims/mop/releases) page and click the suitable link under "Assets" + # Local Dev Installation This project has dependencies on Go >=1.23, protobuf-compiler and the corresponding Go plugins, and node >= 20. ## Ubuntu + Do not use apt to install any dependencies, the versions they install are all too old. Script below will curl latest versions and install them. + ```sh # Standard Go installation script curl -O https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz @@ -35,7 +39,7 @@ echo 'export GOPATH=$HOME/go' >> $HOME/.bashrc echo 'export PATH=$PATH:$GOPATH/bin' >> $HOME/.bashrc source $HOME/.bashrc -cd cata +cd mop # Install protobuf compiler and Go plugins sudo apt update && sudo apt upgrade @@ -52,45 +56,51 @@ npm install ``` ## Docker + Alternatively, install Docker and your workflow will look something like this: + ```sh -git clone https://github.com/wowsims/cata.git -cd cata +git clone https://github.com/wowsims/mop.git +cd mop # Build the docker image and install npm dependencies (only need to run these once). -docker build --tag wowsims-cata . -docker run --rm -v $(pwd):/cata wowsims-cata npm install +docker build --tag wowsims-mop . +docker run --rm -v $(pwd):/mop wowsims-mop npm install -# Now you can run the commands as shown in the Commands sections, preceding everything with, "docker run --rm -it -p 8080:8080 -v $(pwd):/cata wowsims-cata". +# Now you can run the commands as shown in the Commands sections, preceding everything with, "docker run --rm -it -p 8080:8080 -v $(pwd):/mop wowsims-mop". # For convenience, set this as an environment variable: -CATA_CMD="docker run --rm -it -p 8080:8080 -v $(pwd):/cata wowsims-cata" +MOP_CMD="docker run --rm -it -p 8080:8080 -v $(pwd):/mop wowsims-mop" #For the watch commands assign this environment variable: -CATA_WATCH_CMD="docker run --rm -it -p 8080:8080 -p 3333:3333 -p 5173:5173 -e WATCH=1 -v $(pwd):/cata wowsims-cata" +MOP_WATCH_CMD="docker run --rm -it -p 8080:8080 -p 3333:3333 -p 5173:5173 -e WATCH=1 -v $(pwd):/mop wowsims-mop" # ... do some coding on the sim ... # Run tests -$(echo $CATA_CMD) make test +$(echo $MOP_CMD) make test # ... do some coding on the UI ... # Host a local site -$(echo $CATA_CMD) make host +$(echo $MOP_CMD) make host ``` ## Windows -If you want to develop on Windows, we recommend setting up a Ubuntu virtual machine (VM) or running Docker using [this guide](https://docs.docker.com/desktop/windows/wsl/ "https://docs.docker.com/desktop/windows/wsl/") and then following the Ubuntu or Docker instructions, respectively. + +If you want to develop on Windows, we recommend setting up a Ubuntu virtual machine (VM) or running Docker using [this guide](https://docs.docker.com/desktop/windows/wsl/ 'https://docs.docker.com/desktop/windows/wsl/') and then following the Ubuntu or Docker instructions, respectively. ## Mac OS -* Docker is available in OS X as well, so in theory similar instructions should work for the Docker method -* You can also use the Ubuntu setup instructions as above to run natively, with a few modifications: - * You may need a different Go installer if `go1.18.3.linux-amd64.tar.gz` is not compatible with your system's architecture; you can do the Go install manually from `https://go.dev/doc/install`. - * OS X uses Homebrew instead of apt, so in order to install protobuf-compiler you’ll instead need to run `brew install protobuf-c` (note the package name is also a little different than in apt). You might need to first update or upgrade brew. - * The provided install script for Node will not included a precompiled binary for OS X, but it’s smart enough to compile one. Be ready for your CPU to melt on running `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash`. + +- Docker is available in OS X as well, so in theory similar instructions should work for the Docker method +- You can also use the Ubuntu setup instructions as above to run natively, with a few modifications: + - You may need a different Go installer if `go1.18.3.linux-amd64.tar.gz` is not compatible with your system's architecture; you can do the Go install manually from `https://go.dev/doc/install`. + - OS X uses Homebrew instead of apt, so in order to install protobuf-compiler you’ll instead need to run `brew install protobuf-c` (note the package name is also a little different than in apt). You might need to first update or upgrade brew. + - The provided install script for Node will not included a precompiled binary for OS X, but it’s smart enough to compile one. Be ready for your CPU to melt on running `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash`. # Commands + We use a makefile for our build system. These commands will usually be all you need while developing for this project: + ```sh # Installs a pre-commit git hook so that your go code is automatically formatted (if you don't use an IDE that supports that). If you want to manually format go code you can run make fmt. # Also installs `air` to reload the dev servers automatically @@ -103,8 +113,8 @@ make test make update-tests # Host a local version of the UI at http://localhost:8080. Visit it by pointing a browser to -# http://localhost:8080/cata/YOUR_SPEC_HERE, where YOUR_SPEC_HERE is the directory under ui/ with your custom code. -# Recompiles the entire client before launching using `make dist/cata` +# http://localhost:8080/mop/YOUR_SPEC_HERE, where YOUR_SPEC_HERE is the directory under ui/ with your custom code. +# Recompiles the entire client before launching using `make dist/mop` make host # With file-watching so the server auto-restarts and recompiles on Go or TS changes: @@ -116,7 +126,7 @@ make clean # Recompiles the ts only for the given spec (e.g. make host_elemental_shaman) make host_$spec -# Recompiles the `wowsimcata` server binary and runs it, hosting /dist directory at http://localhost:3333/cata. +# Recompiles the `wowsimmop` server binary and runs it, hosting /dist directory at http://localhost:3333/mop. # This is the fastest way to iterate on core go simulator code so you don't have to wait for client rebuilds. # To rebuild client for a spec just do 'make $spec' and refresh browser. make rundevserver @@ -125,7 +135,7 @@ make rundevserver WATCH=1 make rundevserver -# The same as rundevserver, recompiles `wowsimcata` binary and runs it on port 3333. Instead of serving content from the dist folder, +# The same as rundevserver, recompiles `wowsimmop` binary and runs it on port 3333. Instead of serving content from the dist folder, # this command also runs `vite serve` to start the Vite dev server on port 5173 (or similar) and automatically reloads the page on .ts changes in less than a second. # This allows for more rapid development, with sub second reloads on TS changes. This combines the benefits of `WATCH=1 make rundevserver` and `WATCH=1 make host` # to create something that allows you to work in any part of the code with ease and speed. @@ -142,58 +152,87 @@ make webworkers # With file watch enabled WATCH=1 make webworkers -# Creates the 'wowsimcata' binary that can host the UI and run simulations natively (instead of with wasm). +# Creates the 'wowsimmop' binary that can host the UI and run simulations natively (instead of with wasm). # Builds the UI and the compiles it into the binary so that you can host the sim as a server instead of wasm on the client. -# It does this by first doing make dist/cata and then copying all those files to binary_dist/cata and loading all the files in that directory into its binary on compile. -make wowsimcata +# It does this by first doing make dist/mop and then copying all those files to binary_dist/mop and loading all the files in that directory into its binary on compile. +make wowsimmop # Using the --usefs flag will instead of hosting the client built into the binary, it will host whatever code is found in the /dist directory. # Use --wasm to host the client with the wasm simulator. # The server also disables all caching so that refreshes should pickup any changed files in dist/. The client will still call to the server to run simulations so you can iterate more quickly on client changes. -# make dist/cata && ./wowsimcata --usefs would rebuild the whole client and host it. (you would have had to run `make devserver` to build the wowsimcata binary first.) -./wowsimcata --usefs +# make dist/mop && ./wowsimmop --usefs would rebuild the whole client and host it. (you would have had to run `make devserver` to build the wowsimmop binary first.) +./wowsimmop --usefs + +# Generate code for the sim database (db.json). Only necessary if you changed the items generator. +# Useful only if you're actively working on the generator and have already run make db locally at least once. +make simdb + +# Generate data from WoW client files +# Requires dotnet 9 to run +# Uses tools/database/generator-settings.json for settings +# Also runs make simdb +# This is what you will use most of the time for generation +make db + +# Same as make db but from the ptr client +# Uses tools/database/ptr-generator-settings.json for settings +make ptrdb +``` + +## (Optional) Installing Dotnet 9 - Required if generating client data -# Generate code for items. Only necessary if you changed the items generator. -make items +```sh +curl -L https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh +chmod +x ./dotnet-install.sh +./dotnet-install.sh --channel 9.0 +echo 'export PATH=$PATH:$HOME/.dotnet' >> ~/.bashrc +source ~/.bashrc ``` # Adding a Sim + So you want to make a new sim for your class/spec! The basic steps are as follows: - - [Create the proto interface between sim and UI.](#create-the-proto-interface-between-sim-and-ui) - - [Implement the UI.](#implement-the-ui) - - [Implement the sim.](#implement-the-sim) - - [Launch the site.](#launch-the-site) +- [Create the proto interface between sim and UI.](#create-the-proto-interface-between-sim-and-ui) +- [Implement the UI.](#implement-the-ui) +- [Implement the sim.](#implement-the-sim) +- [Launch the site.](#launch-the-site) ## Create the proto interface between Sim and UI -This project uses [Google Protocol Buffers](https://developers.google.com/protocol-buffers/docs/gotutorial "https://developers.google.com/protocol-buffers/docs/gotutorial") to pass data between the sim and the UI. TLDR; Describe data structures in .proto files, and the tool can generate code in any programming language. It lets us avoid repeating the same code in our Go and Typescript worlds without losing type safety. + +This project uses [Google Protocol Buffers](https://developers.google.com/protocol-buffers/docs/gotutorial 'https://developers.google.com/protocol-buffers/docs/gotutorial') to pass data between the sim and the UI. TLDR; Describe data structures in .proto files, and the tool can generate code in any programming language. It lets us avoid repeating the same code in our Go and Typescript worlds without losing type safety. For a new sim, make the following changes: - - Add a new value to the `Spec` enum in proto/common.proto. __NOTE: The name you give to this enum value is not just a name, it is used in our templating system. This guide will refer to this name as `$SPEC` elsewhere.__ - - Add a 'proto/YOUR_CLASS.proto' file if it doesn't already exist and add data messages containing all the class/spec-specific information needed to run your sim. - - Update the `PlayerOptions.spec` field in `proto/api.proto` to include your shiny new message as an option. + +- Add a new value to the `Spec` enum in proto/common.proto. **NOTE: The name you give to this enum value is not just a name, it is used in our templating system. This guide will refer to this name as `$SPEC` elsewhere.** +- Add a 'proto/YOUR_CLASS.proto' file if it doesn't already exist and add data messages containing all the class/spec-specific information needed to run your sim. +- Update the `PlayerOptions.spec` field in `proto/api.proto` to include your shiny new message as an option. That's it! Now when you run `make` there will be generated .go and .ts code in `sim/core/proto` and `ui/core/proto` respectively. If you aren't familiar with protos, take a quick look at them to see what's happening. ## Implement the UI + The UI and sim can be done in either order, but it is generally recommended to build the UI first because it can help with debugging. The UI is very generalized and it doesn't take much work to build an entire sim UI using our templating system. To use it: - - Modify `ui/core/proto_utils/utils.ts` to include boilerplate for your `$SPEC` name if it isn't already there. - - Create a directory `ui/$SPEC`. So if your Spec enum value was named, `elemental_shaman`, create a directory, `ui/elemental_shaman`. - - Copy+paste from another spec's UI code. - - Modify all the files for your spec; most of the settings are fairly obvious, if you need anything complex just ask and we can help! - - Finally, add a rule to the `makefile` for the new sim site. Just copy from the other site rules already there and change the `$SPEC` names. + +- Modify `ui/core/proto_utils/utils.ts` to include boilerplate for your `$SPEC` name if it isn't already there. +- Create a directory `ui/$SPEC`. So if your Spec enum value was named, `elemental_shaman`, create a directory, `ui/elemental_shaman`. +- Copy+paste from another spec's UI code. +- Modify all the files for your spec; most of the settings are fairly obvious, if you need anything complex just ask and we can help! +- Finally, add a rule to the `makefile` for the new sim site. Just copy from the other site rules already there and change the `$SPEC` names. No .html is needed, it will be generated based on `ui/index_template.html` and the `$SPEC` name. -When you're ready to try out the site, run `make host` and navigate to `http://localhost:8080/cata/$SPEC`. +When you're ready to try out the site, run `make host` and navigate to `http://localhost:8080/mop/$SPEC`. ## Implement the Sim + This step is where most of the magic happens. A few highlights to start understanding the sim code: - - `sim/wasm/main.go` This file is the actual main function, for the [.wasm binary](https://webassembly.org/ "https://webassembly.org/") used by the UI. You shouldn't ever need to touch this, but just know its here. - - `sim/core/api.go` This is where the action starts. This file implements the request/response messages defined in `proto/api.proto`. - - `sim/core/sim.go` Orchestrates everything. Main event loop is in `Simulation.RunOnce`. - - `sim/core/agent.go` An Agent can be thought of as the 'Player', i.e. the person controlling the game. This is the interface you'll be implementing. - - `sim/core/character.go` A Character holds all the stats/cooldowns/gear/etc common to any WoW character. Each Agent has a Character that it controls. + +- `sim/wasm/main.go` This file is the actual main function, for the [.wasm binary](https://webassembly.org/ 'https://webassembly.org/') used by the UI. You shouldn't ever need to touch this, but just know its here. +- `sim/core/api.go` This is where the action starts. This file implements the request/response messages defined in `proto/api.proto`. +- `sim/core/sim.go` Orchestrates everything. Main event loop is in `Simulation.RunOnce`. +- `sim/core/agent.go` An Agent can be thought of as the 'Player', i.e. the person controlling the game. This is the interface you'll be implementing. +- `sim/core/character.go` A Character holds all the stats/cooldowns/gear/etc common to any WoW character. Each Agent has a Character that it controls. Read through the core code and some examples from other classes/specs to get a feel for what's needed. Hopefully `sim/core` already includes what you need, but most classes have at least 1 unique mechanic so you may need to touch `core` as well. @@ -202,13 +241,17 @@ Finally, add your new sim to `RegisterAll()` in `sim/register_all.go`. Don't forget to write unit tests! Again, look at existing tests for examples. Run them with `make test` when you're ready. # Launch the site + When everything is ready for release, modify `ui/core/launched_sims.ts` and `ui/index.html` to include the new spec value. This will add the sim to the dropdown menu so anyone can find it from the existing sims. This will also remove the UI warning that the sim is under development. Now tell everyone about your new sim! # Add your spec to the raid sim + Don't touch the raid sim until the individual sim is ready for launch; anything in the raid sim is publicly accessible. To add your new spec to the raid sim, do the following: - - Add a reference to the individual sim in `ui/raid/tsconfig.json`. DO NOT FORGET THIS STEP or Typescipt will silently do very bad things. - - Import the individual sim's css file from `ui/raid/index.scss`. - - Update `ui/raid/presets.ts` to include a constructor factory in the `specSimFactories` variable and add configurations for new Players in the `playerPresets` variable. + +- Add a reference to the individual sim in `ui/raid/tsconfig.json`. DO NOT FORGET THIS STEP or Typescipt will silently do very bad things. +- Import the individual sim's css file from `ui/raid/index.scss`. +- Update `ui/raid/presets.ts` to include a constructor factory in the `specSimFactories` variable and add configurations for new Players in the `playerPresets` variable. # Deployment + Thanks to the workflow defined in `.github/workflows/deploy.yml`, pushes to `master` automatically build and deploy a new site so there's nothing to do here. Sit back and appreciate your new sim! diff --git a/assets/database/db.bin b/assets/database/db.bin index 8d5154b04a..b0e92f030a 100644 Binary files a/assets/database/db.bin and b/assets/database/db.bin differ diff --git a/assets/database/db.json b/assets/database/db.json index 60ad5e61cd..0ca8792089 100644 --- a/assets/database/db.json +++ b/assets/database/db.json @@ -1,6575 +1,15367 @@ { "items":[ -{"id":27510,"name":"Tidefury Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,46,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":3,"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27802,"name":"Tidefury Shoulderguards","icon":"inv_shoulder_31","type":3,"armorType":3,"stats":[0,0,39,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":3,"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}]}, -{"id":27909,"name":"Tidefury Kilt","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,0,64,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":3,"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":28231,"name":"Tidefury Chestpiece","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,46,31,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":3,"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28349,"name":"Tidefury Helm","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,0,53,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":3,"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":29309,"name":"Band of the Eternal Restorer","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,49,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":152,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":31026,"name":"Slayer's Handguards","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,34,65,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31027,"name":"Slayer's Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,46,92,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31028,"name":"Slayer's Chestguard","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,46,92,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31029,"name":"Slayer's Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,47,92,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31030,"name":"Slayer's Shoulderpads","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,34,66,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":32466,"name":"Bland Blade","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1105,"weaponDamageMax":1105,"weaponSpeed":2.6,"ilvl":350,"phase":1,"quality":4}, -{"id":34448,"name":"Slayer's Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,32,42,0,0,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34558,"name":"Slayer's Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,43,48,0,0,30,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34575,"name":"Slayer's Boots","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,43,52,0,0,28,16,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34677,"name":"Shattered Sun Pendant of Restoration","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,19,32,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":45703,"name":"Spark of Hope","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":1,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}]}, -{"id":46017,"name":"Val'anyr, Hammer of Ancient Kings","icon":"inv_mace_99","type":13,"weaponType":4,"handType":1,"stats":[0,0,105,0,0,0,50,49,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":272,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"phase":1,"quality":5,"sources":[{"quest":{"id":13629,"name":"Val'anyr, Hammer of Ancient Kings"}}]}, -{"id":49623,"name":"Shadowmourne","icon":"inv_axe_113","type":13,"weaponType":1,"handType":4,"stats":[196,0,268,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":965,"weaponDamageMax":1608,"weaponSpeed":3.7,"ilvl":284,"phase":1,"quality":5,"unique":true,"classAllowlist":[9,4,10],"sources":[{"quest":{"id":24549,"name":"Shadowmourne..."}}]}, -{"id":50348,"name":"Dislodged Foreign Object","icon":"inv_jewelry_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50349,"name":"Corpse Tongue Coin","icon":"inv_misc_coin_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50363,"name":"Deathbringer's Will","icon":"inv_jewelry_trinket_04","type":12,"stats":[0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50364,"name":"Sindragosa's Flawless Fang","icon":"inv_jewelry_trinket_06","type":12,"stats":[0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50365,"name":"Phylactery of the Nameless Lich","icon":"inv_jewelry_trinket_03","type":12,"stats":[0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50366,"name":"Althor's Abacus","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50398,"name":"Ashen Band of Endless Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,133,87,0,51,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50400,"name":"Ashen Band of Endless Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,132,87,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50402,"name":"Ashen Band of Endless Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,88,135,0,0,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50404,"name":"Ashen Band of Endless Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[68,0,130,0,0,55,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50603,"name":"Cryptmaker","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[159,0,274,0,0,99,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":938,"weaponDamageMax":1407,"weaponSpeed":3.6,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50604,"name":"Band of the Bone Colossus","icon":"inv_jewelry_ring_83","type":11,"stats":[0,102,141,0,0,62,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50605,"name":"Snowserpent Mail Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50606,"name":"Gendarme's Cuirass","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[159,0,275,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50607,"name":"Frostbitten Fur Boots","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,120,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50608,"name":"Frozen Bonespike","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,141,0,66,0,50,0,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":586,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50609,"name":"Bone Sentinel's Amulet","icon":"inv_jewelry_necklace_53","type":2,"stats":[0,0,146,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50610,"name":"Marrowgar's Frigid Eye","icon":"item_icecrownringb","type":11,"stats":[0,0,145,94,60,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50611,"name":"Bracers of Dark Reckoning","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[102,0,141,0,0,0,0,0,0,81,46,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50612,"name":"Legguards of Lost Hope","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[139,0,239,0,0,85,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50613,"name":"Crushing Coldwraith Belt","icon":"inv_belt_64","type":8,"armorType":1,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50614,"name":"Loop of the Endless Labyrinth","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,145,94,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50615,"name":"Handguards of Winter's Respite","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50616,"name":"Bulwark of Smouldering Steel","icon":"inv_shield_72","type":13,"weaponType":7,"handType":3,"stats":[0,0,146,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50617,"name":"Rusted Bonespike Pauldrons","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50618,"name":"Frostbrood Sapphire Ring","icon":"item_icecrownringa","type":11,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50619,"name":"Anub'ar Stalker's Gloves","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,128,160,0,0,0,119,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50620,"name":"Coldwraith Links","icon":"inv_belt_63","type":8,"armorType":4,"stats":[120,0,204,0,0,0,85,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50621,"name":"Lungbreaker","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,78,105,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":245,"weaponDamageMax":456,"weaponSpeed":1.4,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50622,"name":"Devium's Eternally Cold Ring","icon":"inv_jewelry_ring_86","type":11,"stats":[102,0,141,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50623,"name":"Leggings of Dying Candles","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50624,"name":"Scourge Reaver's Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[159,0,275,0,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50625,"name":"Grinning Skull Greatboots","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[103,0,180,0,0,0,0,0,61,127,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50626,"name":"Snowstorm Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50627,"name":"Noose of Malachite","icon":"item_icecrownnecklacec","type":2,"stats":[78,0,141,0,0,52,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50628,"name":"Frostbinder's Shredded Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,146,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50629,"name":"Robe of the Waking Nightmare","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,261,159,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50630,"name":"Bracers of Eternal Dreaming","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,146,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50631,"name":"Nightmare Ender","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,83,49,30,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":580,"weaponDamageMax":1077,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50632,"name":"Boots of the Funeral March","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50633,"name":"Sindragosa's Cruel Claw","icon":"inv_misc_monsterhorn_03","type":2,"stats":[0,102,141,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50635,"name":"Sundial of Eternal Dusk","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,146,102,68,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50636,"name":"Memory of Malygos","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,145,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50638,"name":"Zod's Repeating Longbow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,22,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":638,"weaponDamageMax":1186,"weaponSpeed":2.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50639,"name":"Blood-Soaked Saronite Stompers","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50640,"name":"Broken Ram Skull Helm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[139,0,239,0,0,85,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50641,"name":"Heartpierce","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,48,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50642,"name":"Juggernaut Band","icon":"item_icecrownringd","type":11,"stats":[102,0,141,0,0,0,0,0,0,70,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50643,"name":"Shoulders of Mercy Killing","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,193,120,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50644,"name":"Ring of Maddening Whispers","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50645,"name":"Leggings of Northern Lights","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,167,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50646,"name":"Cultist's Bloodsoaked Spaulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,128,192,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50647,"name":"Ahn'kahar Onyx Neckguard","icon":"inv_jewelry_necklace_48","type":2,"stats":[94,0,153,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50648,"name":"Nibelung","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,189,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":821,"weaponSpeed":2.1,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50649,"name":"Deathwhisper Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,159,122,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50650,"name":"Fallen Lord's Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50651,"name":"The Lady's Brittle Bracers","icon":"inv_bracer_44","type":6,"armorType":1,"stats":[0,0,146,94,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,524,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50652,"name":"Necrophotic Greaves","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1406,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50653,"name":"Shadowvault Slayer's Cloak","icon":"item_icecrowncloak","type":4,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50654,"name":"Scourgeborne Waraxe","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,78,105,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.5,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50655,"name":"Scourge Hunter's Vambraces","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,102,121,0,0,0,94,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50656,"name":"Ikfirus' Sack of Wonder","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,167,263,0,0,114,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50657,"name":"Skeleton Lord's Circle","icon":"inv_jewelry_ring_83","type":11,"stats":[94,0,153,0,0,0,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50658,"name":"Amulet of the Silent Eulogy","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,146,94,0,60,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50659,"name":"Polar Bear Claw Bracers","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[94,0,153,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50660,"name":"Boneguard Commander's Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50661,"name":"Corp'rethar Ceremonial Crown","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50663,"name":"Gunship Captain's Mittens","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,193,120,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50664,"name":"Ring of Rapid Ascent","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,145,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50665,"name":"Boots of Unnatural Growth","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50667,"name":"Waistband of Righteous Fury","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50668,"name":"Greatcloak of the Turned Champion","icon":"item_icecrowncape","type":4,"stats":[0,0,146,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50670,"name":"Toskk's Maximized Wristguards","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50671,"name":"Belt of the Blood Nova","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50672,"name":"Bloodvenom Blade","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[0,70,117,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50673,"name":"Dual-Bladed Pauldrons","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,128,160,0,0,0,127,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50674,"name":"Raging Behemoth's Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[120,0,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50675,"name":"Aldriana's Gloves of Secrecy","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,128,192,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50676,"name":"Rib Spreader","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,78,105,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50677,"name":"Winding Sheet","icon":"item_icecrowncape","type":4,"stats":[94,0,153,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50678,"name":"Seal of Many Mouths","icon":"item_icecrownringc","type":11,"stats":[0,102,141,0,0,0,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50679,"name":"Helm of the Elder Moon","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50680,"name":"Rot-Resistant Breastplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,261,158,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50681,"name":"Blightborne Warplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[139,0,239,0,0,69,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50682,"name":"Bile-Encrusted Medallion","icon":"item_icecrownnecklaceb","type":2,"stats":[102,0,141,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50684,"name":"Corpse-Impaling Spike","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,83,49,0,0,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":580,"weaponDamageMax":1077,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50685,"name":"Trauma","icon":"inv_mace_118","type":13,"weaponType":4,"handType":1,"stats":[0,0,89,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":586,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50686,"name":"Death Surgeon's Sleeves","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,146,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,524,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50687,"name":"Bloodsunder's Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,146,94,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50688,"name":"Nerub'ar Stalker's Cord","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,120,160,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50689,"name":"Carapace of Forgotten Kings","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50690,"name":"Fleshrending Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50691,"name":"Belt of Broken Bones","icon":"inv_belt_63","type":8,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,91,71,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50692,"name":"Black Bruise","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":1,"stats":[0,0,78,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50693,"name":"Might of Blight","icon":"inv_jewelry_ring_84","type":11,"stats":[94,0,153,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50694,"name":"Plaguebringer's Stained Pants","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,261,158,0,104,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50695,"name":"Distant Land","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,159,239,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":625,"weaponDamageMax":938,"weaponSpeed":2.4,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50696,"name":"Leather of Stitched Scourge Parts","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,158,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50697,"name":"Gangrenous Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,167,263,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50698,"name":"Horrific Flesh Epaulets","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50699,"name":"Plague Scientist's Boots","icon":"inv_boots_cloth_24","type":10,"armorType":1,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50700,"name":"Holiday's Grace","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,146,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50701,"name":"Faceplate of the Forgotten","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,261,167,106,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50702,"name":"Lingering Illness","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50703,"name":"Unclean Surgical Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50704,"name":"Rigormortis","icon":"inv_sword_152","type":13,"weaponType":9,"handType":1,"stats":[0,0,143,0,0,50,0,66,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":586,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50705,"name":"Professor's Bloodied Smock","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50706,"name":"Tiny Abomination in a Jar","icon":"inv_alchemy_enchantedvial","type":12,"stats":[0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50707,"name":"Astrylian's Sutured Cinch","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,120,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50708,"name":"Last Word","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":586,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50709,"name":"Bryntroll, the Bone Arbiter","icon":"inv_axe_120","type":13,"weaponType":1,"handType":4,"stats":[185,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":886,"weaponDamageMax":1329,"weaponSpeed":3.4,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50710,"name":"Keleseth's Seducer","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":3,"stats":[0,78,105,0,0,44,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50711,"name":"Treads of the Wasteland","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,120,204,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1406,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50712,"name":"Landsoul's Horned Greathelm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[159,0,275,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50713,"name":"Geistlord's Punishment Sack","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50714,"name":"Valanar's Other Signet Ring","icon":"inv_jewelry_ring_81","type":11,"stats":[0,0,145,94,0,44,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50715,"name":"Shoulders of Frost-Tipped Thorns","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50716,"name":"Taldaram's Plated Fists","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,91,71,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50717,"name":"Sanguine Silk Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,159,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50718,"name":"Royal Crimson Cloak","icon":"inv_misc_cape_18","type":4,"stats":[78,0,141,0,0,44,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50719,"name":"Shadow Silk Spindle","icon":"inv_misc_thread_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,146,102,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50720,"name":"Incarnadine Band of Mending","icon":"inv_jewelry_ring_84","type":11,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50721,"name":"Crypt Keeper's Bracers","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,146,94,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50722,"name":"San'layn Ritualist Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50723,"name":"Mail of Crimson Coins","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,159,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50724,"name":"Blood Queen's Crimson Choker","icon":"inv_jewelcrafting_crimsonspinel_02","type":2,"stats":[0,0,145,94,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50725,"name":"Dying Light","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,330,0,131,0,0,131,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":821,"weaponSpeed":2.1,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50726,"name":"Bauble of True Blood","icon":"inv_jewelcrafting_gem_28","type":12,"stats":[0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50727,"name":"Bloodfall","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,175,251,0,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":886,"weaponDamageMax":1329,"weaponSpeed":3.4,"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50728,"name":"Lana'thel's Chain of Flagellation","icon":"inv_jewelry_necklace_50","type":2,"stats":[94,0,153,0,0,0,73,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50729,"name":"Icecrown Glacial Wall","icon":"inv_shield_75","type":13,"weaponType":7,"handType":3,"stats":[102,0,141,0,0,0,0,0,0,68,72,0,0,0,0,0,0,0,0,0,0,0,7699,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50730,"name":"Glorenzelg, High-Blade of the Silver Hand","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[171,0,292,0,0,0,122,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1001,"weaponDamageMax":1502,"weaponSpeed":3.6,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50731,"name":"Archus, Greatstaff of Antonidas","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,0,353,0,141,0,0,141,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":584,"weaponDamageMax":876,"weaponSpeed":2.1,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50732,"name":"Bloodsurge, Kel'Thuzad's Blade of Agony","icon":"inv_sword_150","type":13,"weaponType":9,"handType":1,"stats":[0,0,152,0,0,0,55,71,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":333,"weaponDamageMax":619,"weaponSpeed":1.8,"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50733,"name":"Fal'inrush, Defender of Quel'thalas","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,62,80,0,0,0,41,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":834,"weaponDamageMax":1252,"weaponSpeed":3,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50734,"name":"Royal Scepter of Terenas II","icon":"inv_mace_115","type":13,"weaponType":4,"handType":1,"stats":[0,0,152,0,0,0,55,71,0,0,0,0,0,0,1118,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":333,"weaponDamageMax":619,"weaponSpeed":1.8,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50735,"name":"Oathbinder, Charge of the Ranger-General","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,179,269,0,0,0,114,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1001,"weaponDamageMax":1502,"weaponSpeed":3.6,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50736,"name":"Heaven's Fall, Kryss of a Thousand Lies","icon":"inv_weapon_shortblade_104","type":13,"weaponType":2,"handType":2,"stats":[0,76,125,0,0,0,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":381,"weaponDamageMax":572,"weaponSpeed":1.8,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50737,"name":"Havoc's Call, Blade of Lordaeron Kings","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,84,113,0,0,0,56,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":481,"weaponDamageMax":895,"weaponSpeed":2.6,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50738,"name":"Mithrios, Bronzebeard's Legacy","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[64,0,113,0,0,0,0,0,42,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":296,"weaponDamageMax":551,"weaponSpeed":1.6,"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51220,"name":"Sanctified Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,64,88,0,0,0,0,0,0,0,0,0,0,0,2756,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51221,"name":"Sanctified Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51222,"name":"Sanctified Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1723,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51223,"name":"Sanctified Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51224,"name":"Sanctified Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51225,"name":"Sanctified Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51226,"name":"Sanctified Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[128,0,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51227,"name":"Sanctified Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51228,"name":"Sanctified Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[167,0,274,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51229,"name":"Sanctified Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[128,0,204,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51230,"name":"Sanctified Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51231,"name":"Sanctified Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51232,"name":"Sanctified Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51233,"name":"Sanctified Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51234,"name":"Sanctified Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51235,"name":"Sanctified Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51236,"name":"Sanctified Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51237,"name":"Sanctified Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,158,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51238,"name":"Sanctified Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51239,"name":"Sanctified Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51240,"name":"Sanctified Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,136,161,0,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51241,"name":"Sanctified Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,167,275,0,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51242,"name":"Sanctified Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,175,216,0,0,0,159,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51243,"name":"Sanctified Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,128,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51244,"name":"Sanctified Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51245,"name":"Sanctified Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51246,"name":"Sanctified Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,261,167,106,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51247,"name":"Sanctified Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,158,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51248,"name":"Sanctified Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,128,82,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51249,"name":"Sanctified Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51250,"name":"Sanctified Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,183,251,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51251,"name":"Sanctified Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51252,"name":"Sanctified Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,183,239,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51253,"name":"Sanctified Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,183,251,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51254,"name":"Sanctified Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,136,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51255,"name":"Sanctified Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,158,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51256,"name":"Sanctified Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51257,"name":"Sanctified Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51258,"name":"Sanctified Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51259,"name":"Sanctified Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,167,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51260,"name":"Sanctified Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,128,90,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51261,"name":"Sanctified Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,159,106,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51262,"name":"Sanctified Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,261,167,122,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51263,"name":"Sanctified Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,167,114,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51264,"name":"Sanctified Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,193,128,90,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51265,"name":"Sanctified Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,56,96,0,0,0,0,0,0,0,0,0,0,0,2756,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51266,"name":"Sanctified Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51267,"name":"Sanctified Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1723,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51268,"name":"Sanctified Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51269,"name":"Sanctified Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51270,"name":"Sanctified Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,193,128,82,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51271,"name":"Sanctified Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,261,167,106,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51272,"name":"Sanctified Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51273,"name":"Sanctified Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51274,"name":"Sanctified Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51275,"name":"Sanctified Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51276,"name":"Sanctified Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[128,0,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51277,"name":"Sanctified Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51278,"name":"Sanctified Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[167,0,275,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51279,"name":"Sanctified Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[128,0,204,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51280,"name":"Sanctified Bloodmage Gloves","icon":"inv_gauntlets_90black","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51281,"name":"Sanctified Bloodmage Hood","icon":"inv_helmet_150black","type":1,"armorType":1,"stats":[0,0,261,159,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51282,"name":"Sanctified Bloodmage Leggings","icon":"inv_pants_cloth_34black","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51283,"name":"Sanctified Bloodmage Robe","icon":"inv_chest_cloth_78black","type":5,"armorType":1,"stats":[0,0,261,167,0,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51284,"name":"Sanctified Bloodmage Shoulderpads","icon":"inv_shoulder_116black","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51285,"name":"Sanctified Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,128,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51286,"name":"Sanctified Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,175,216,0,0,0,151,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51287,"name":"Sanctified Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51288,"name":"Sanctified Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,136,160,0,0,0,127,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1534,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51289,"name":"Sanctified Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51290,"name":"Sanctified Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51291,"name":"Sanctified Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51292,"name":"Sanctified Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51293,"name":"Sanctified Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51294,"name":"Sanctified Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51295,"name":"Sanctified Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51296,"name":"Sanctified Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,183,239,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51297,"name":"Sanctified Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,183,251,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51298,"name":"Sanctified Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,183,251,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51299,"name":"Sanctified Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51300,"name":"Sanctified Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,167,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51301,"name":"Sanctified Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,128,90,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51302,"name":"Sanctified Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51303,"name":"Sanctified Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,167,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1311,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51304,"name":"Sanctified Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,128,90,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51305,"name":"Sanctified Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,56,96,0,0,0,0,0,0,0,0,0,0,0,2756,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51306,"name":"Sanctified Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51307,"name":"Sanctified Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1723,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51308,"name":"Sanctified Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51309,"name":"Sanctified Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51310,"name":"Sanctified Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51311,"name":"Sanctified Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[128,0,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1723,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51312,"name":"Sanctified Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51313,"name":"Sanctified Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[167,0,275,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2412,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51314,"name":"Sanctified Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[128,0,204,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2067,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51389,"name":"Wrathful Gladiator's Sunderer","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":938,"weaponDamageMax":1407,"weaponSpeed":3.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51391,"name":"Wrathful Gladiator's Crusher","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":938,"weaponDamageMax":1407,"weaponSpeed":3.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51393,"name":"Wrathful Gladiator's Claymore","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":938,"weaponDamageMax":1407,"weaponSpeed":3.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51395,"name":"Wrathful Gladiator's Recurve","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,57,86,0,0,0,38,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":781,"weaponDamageMax":1173,"weaponSpeed":3,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51398,"name":"Wrathful Gladiator's Blade of Celerity","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":1,"stats":[0,0,149,0,0,0,0,58,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":280,"weaponDamageMax":521,"weaponSpeed":1.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51399,"name":"Wrathful Gladiator's Mageblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":1,"stats":[0,0,149,0,0,0,58,0,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":280,"weaponDamageMax":521,"weaponSpeed":1.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51401,"name":"Wrathful Gladiator's Combat Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,0,0,139,0,0,0,0,0,0,1049,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51403,"name":"Wrathful Gladiator's Acute Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,139,0,0,0,0,0,0,0,0,1049,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51405,"name":"Wrathful Gladiator's Skirmish Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,0,139,0,0,0,0,0,0,0,1049,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51412,"name":"Wrathful Gladiator's Repeater","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,0,86,0,0,0,38,0,0,0,0,0,115,115,0,0,38,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":781,"weaponDamageMax":1173,"weaponSpeed":3,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51432,"name":"Wrathful Gladiator's Greatstaff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,167,275,0,0,0,106,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2,"ilvl":277,"phase":1,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51440,"name":"Wrathful Gladiator's Dicer","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.5,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51442,"name":"Wrathful Gladiator's Dirk","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":245,"weaponDamageMax":456,"weaponSpeed":1.4,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51444,"name":"Wrathful Gladiator's Left Razor","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.5,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51446,"name":"Wrathful Gladiator's Punisher","icon":"inv_mace_120","type":13,"weaponType":4,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.5,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51448,"name":"Wrathful Gladiator's Swiftblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.5,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51450,"name":"Wrathful Gladiator's Shotgun","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,57,86,0,0,0,38,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":781,"weaponDamageMax":1173,"weaponSpeed":3,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51454,"name":"Wrathful Gladiator's Salvation","icon":"inv_mace_111","type":13,"weaponType":4,"handType":1,"stats":[0,0,149,0,58,0,0,0,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":280,"weaponDamageMax":521,"weaponSpeed":1.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51457,"name":"Wrathful Gladiator's Light Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,139,0,0,0,0,0,0,0,0,0,1049,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51481,"name":"Wrathful Gladiator's Halberd","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":938,"weaponDamageMax":1407,"weaponSpeed":3.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51516,"name":"Wrathful Gladiator's Handaxe","icon":"inv_axe_116","type":13,"weaponType":1,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51518,"name":"Wrathful Gladiator's Spike","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51520,"name":"Wrathful Gladiator's Truncheon","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51522,"name":"Wrathful Gladiator's Longblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51524,"name":"Wrathful Gladiator's Grasp","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51526,"name":"Wrathful Gladiator's Splitter","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51528,"name":"Wrathful Gladiator's Eviscerator","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":586,"weaponSpeed":1.8,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":51529,"name":"Wrathful Gladiator's Left Claw","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":277,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":34087,"npcName":"Trapjaw Rix","zoneId":4395}}]}, -{"id":52199,"name":"Figurine - Demon Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"quest":{"id":25047,"name":"Broken Panther Figurine"}}]}, -{"id":52306,"name":"Jasper Ring","icon":"inv_misc_stonering1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":285,"phase":1,"quality":2,"randPropPoints":181,"sources":[{"crafted":{"profession":7,"spellId":73494}}]}, -{"id":52307,"name":"Alicite Pendant","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188,"sources":[{"crafted":{"profession":7,"spellId":73496}}]}, -{"id":52308,"name":"Hessonite Band","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209,"sources":[{"crafted":{"profession":7,"spellId":73495}}]}, -{"id":52309,"name":"Nightstone Choker","icon":"inv_misc_stonenecklace","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209,"sources":[{"crafted":{"profession":7,"spellId":73497}}]}, -{"id":52310,"name":"Jasper Ring","icon":"inv_misc_stonering1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114],"ilvl":300,"phase":1,"quality":3,"randPropPoints":209}, -{"id":52312,"name":"Alicite Pendant","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114],"ilvl":300,"phase":1,"quality":3,"randPropPoints":209}, -{"id":52314,"name":"Nightstone Choker","icon":"inv_misc_stonenecklace","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114],"ilvl":325,"phase":1,"quality":3,"randPropPoints":263}, -{"id":52316,"name":"Hessonite Band","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114],"ilvl":325,"phase":1,"quality":3,"randPropPoints":263}, -{"id":52318,"name":"Band of Blades","icon":"inv_jewelry_ring_84","type":11,"stats":[0,138,252,0,0,97,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73498}}]}, -{"id":52319,"name":"Ring of Warring Elements","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,252,143,0,0,101,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73502}}]}, -{"id":52320,"name":"Elementium Moebius Band","icon":"inv_jewelry_ring_69","type":11,"stats":[148,0,252,0,0,0,0,0,0,128,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73503}}]}, -{"id":52321,"name":"Entwined Elementium Choker","icon":"inv_misc_thornnecklace","type":2,"stats":[0,148,252,0,0,0,65,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73504}}]}, -{"id":52322,"name":"Eye of Many Deaths","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,252,128,0,0,0,114,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73505}}]}, -{"id":52323,"name":"Elementium Guardian","icon":"inv_jewelry_necklace_32","type":2,"stats":[148,0,252,0,0,0,0,0,96,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73506}}]}, -{"id":52348,"name":"Elementium Destroyer's Ring","icon":"inv_jewelry_ring_70","type":11,"stats":[0,148,252,0,0,0,89,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73520}}]}, -{"id":52350,"name":"Brazen Elementium Medallion","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,138,252,0,0,0,112,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73521}}]}, -{"id":52351,"name":"Figurine - King of Boars","icon":"inv_jewelcrafting_goldenboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"quest":{"id":28778,"name":"Broken Boar Figurine"}}]}, -{"id":52352,"name":"Figurine - Earthen Guardian","icon":"item_earthenmight","type":12,"stats":[0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"quest":{"id":28776,"name":"Broken Earthen Figurine"}}]}, -{"id":52353,"name":"Figurine - Jeweled Serpent","icon":"inv_jewelcrafting_jadeserpent","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"quest":{"id":28775,"name":"Broken Serpent Figurine"}}]}, -{"id":52354,"name":"Figurine - Dream Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"quest":{"id":28777,"name":"Broken Owl Figurine"}}]}, -{"id":52492,"name":"Carnelian Spikes","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,99,148,0,0,69,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":568,"weaponDamageMax":1057,"weaponSpeed":2.6,"ilvl":317,"phase":1,"quality":2,"sources":[{"crafted":{"profession":7,"spellId":73620}}]}, -{"id":52493,"name":"The Perforator","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,95,172,0,0,0,87,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73621}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":52572,"name":"Ashen Band of Endless Might","icon":"inv_jewelry_ring_81","type":11,"stats":[85,0,144,0,0,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":277,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":52697,"name":"Cataclysm Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":52700,"name":"Cataclysm Legs","icon":"inv_pants_plate_05","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":54471,"name":"Deathsilk Belt","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,198,132,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75248}}]}, -{"id":54472,"name":"Deathsilk Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,282,188,0,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":295,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75254}}]}, -{"id":54473,"name":"Deathsilk Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,148,99,0,0,0,68,0,0,0,66,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75249}}]}, -{"id":54474,"name":"Deathsilk Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,198,132,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75251}}]}, -{"id":54475,"name":"Deathsilk Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,343,229,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75257}}]}, -{"id":54476,"name":"Deathsilk Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,282,188,0,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":295,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75256}}]}, -{"id":54477,"name":"Deathsilk Boots","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,198,132,0,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75252}}]}, -{"id":54478,"name":"Deathsilk Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,255,170,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"setName":"Deathspeaker","setId":945,"sources":[{"crafted":{"profession":11,"spellId":75253}}]}, -{"id":54479,"name":"Spiritmend Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,277,185,123,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75260}}]}, -{"id":54480,"name":"Spiritmend Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,157,105,0,0,0,70,0,0,0,70,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":295,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75259}}]}, -{"id":54481,"name":"Spiritmend Belt","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,210,140,93,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":295,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75258}}]}, -{"id":54482,"name":"Spiritmend Boots","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75261}}]}, -{"id":54483,"name":"Spiritmend Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,296,197,0,0,131,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75263}}]}, -{"id":54484,"name":"Spiritmend Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75262}}]}, -{"id":54485,"name":"Spiritmend Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75266}}]}, -{"id":54486,"name":"Spiritmend Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,312,208,0,0,139,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":306,"phase":1,"quality":2,"setName":"Spiritmender","setId":944,"sources":[{"crafted":{"profession":11,"spellId":75267}}]}, -{"id":54487,"name":"Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54488,"name":"Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54489,"name":"Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54490,"name":"Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54491,"name":"Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54492,"name":"Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54493,"name":"Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,425,283,0,0,189,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54494,"name":"Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54495,"name":"Emberfire Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,425,283,189,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54496,"name":"Emberfire Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54497,"name":"Emberfire Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54498,"name":"Emberfire Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,425,283,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54499,"name":"Emberfire Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54500,"name":"Emberfire Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54501,"name":"Emberfire Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,237,158,0,0,0,105,0,0,0,0,0,0,0,0,105,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54502,"name":"Emberfire Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,316,210,140,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":54503,"name":"Dreamless Belt","icon":"inv_belt_robe_raidmage_i_01","type":8,"armorType":1,"stats":[0,0,380,233,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":75299}}]}, -{"id":54504,"name":"Belt of the Depths","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,152,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":75298}}]}, -{"id":54505,"name":"Breeches of Mended Nightmares","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,321,0,0,214,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":75300}}]}, -{"id":54506,"name":"Flame-Ascended Pantaloons","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,512,321,0,0,185,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":75301}}]}, -{"id":54542,"name":"Robes of Restored Hope","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,296,197,0,131,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54543,"name":"Orca-Tooth Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,146,219,0,0,111,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54544,"name":"Scrapped Spaulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[146,0,219,0,0,0,86,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54545,"name":"Adarrah's Semiprecious Signet","icon":"inv_jewelry_ring_87","type":11,"stats":[0,110,165,0,0,0,73,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54546,"name":"Adarrah's Spare Choker","icon":"inv_jewelry_necklace_43","type":2,"stats":[0,0,165,110,0,0,0,84,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54547,"name":"Cracked Jewelry Box","icon":"inv_box_04","type":12,"stats":[185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54548,"name":"Waterlogged Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,296,197,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54549,"name":"Saline-Soaked Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,146,219,0,0,105,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54550,"name":"Hood of Vigorous Defense","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,296,197,0,0,0,141,0,0,0,115,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54551,"name":"Defiant Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,165,110,0,0,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54552,"name":"Retaliation Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[146,0,219,0,0,97,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54553,"name":"Kliklak's Fearsome Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[171,0,257,0,0,0,114,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":900,"weaponDamageMax":1350,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2}, -{"id":54554,"name":"Bejeweled Ship's Wheel","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,165,110,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2}, -{"id":54576,"name":"Signet of Twilight","icon":"item_icecrownringc","type":11,"stats":[0,109,163,0,0,57,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54577,"name":"Returning Footfalls","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,145,172,0,0,0,130,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1300,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54578,"name":"Apocalypse's Advance","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[145,0,217,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54579,"name":"Treads of Impending Resurrection","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[145,0,206,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54580,"name":"Umbrage Armbands","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,109,139,0,0,0,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54581,"name":"Penumbra Pendant","icon":"inv_jewelry_necklace_48","type":2,"stats":[101,0,163,0,0,0,73,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54582,"name":"Bracers of Fiery Night","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,156,101,0,0,65,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54583,"name":"Cloak of Burning Dusk","icon":"inv_misc_cape_16","type":4,"stats":[0,0,156,101,0,0,65,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54584,"name":"Phaseshifter's Bracers","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,156,101,0,0,73,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54585,"name":"Ring of Phased Regeneration","icon":"item_icecrownringb","type":11,"stats":[0,0,163,101,73,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54586,"name":"Foreshadow Steps","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,206,129,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54587,"name":"Split Shape Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,207,129,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54588,"name":"Charred Twilight Scale","icon":"inv_misc_rubysanctum2","type":12,"stats":[0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54589,"name":"Glowing Twilight Scale","icon":"inv_misc_rubysanctum1","type":12,"stats":[0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54590,"name":"Sharpened Twilight Scale","icon":"inv_misc_rubysanctum4","type":12,"stats":[0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54591,"name":"Petrified Twilight Scale","icon":"inv_misc_rubysanctum3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":284,"phase":1,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54850,"name":"Hardened Obsidium Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[99,0,148,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76179}}]}, -{"id":54852,"name":"Hardened Obsidium Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[132,0,198,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76180}}]}, -{"id":54853,"name":"Hardened Obsidium Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[132,0,198,0,0,0,0,0,0,88,0,88,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76181}}]}, -{"id":54854,"name":"Hardened Obsidium Boots","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[132,0,198,0,0,88,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76182}}]}, -{"id":54876,"name":"Hardened Obsidium Shoulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[158,0,237,0,0,0,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76258}}]}, -{"id":55022,"name":"Hardened Obsidium Legguards","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[178,0,267,0,0,0,0,0,0,119,0,119,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76259}}]}, -{"id":55023,"name":"Hardened Obsidium Helm","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[212,0,319,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76260}}]}, -{"id":55024,"name":"Hardened Obsidium Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[178,0,267,0,0,119,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76261}}]}, -{"id":55025,"name":"Redsteel Bracers","icon":"inv_bracer_63v1","type":6,"armorType":4,"stats":[99,0,148,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76262}}]}, -{"id":55026,"name":"Redsteel Gauntlets","icon":"inv_gauntlets_107v1","type":7,"armorType":4,"stats":[132,0,198,0,0,0,0,88,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76263}}]}, -{"id":55027,"name":"Redsteel Belt","icon":"inv_belt_86v1","type":8,"armorType":4,"stats":[170,0,255,0,0,0,0,0,113,0,0,113,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76264}}]}, -{"id":55028,"name":"Redsteel Boots","icon":"inv_boots_plate_19v1","type":10,"armorType":4,"stats":[170,0,255,0,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76265}}]}, -{"id":55029,"name":"Redsteel Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[146,0,219,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76266}}]}, -{"id":55030,"name":"Redsteel Legguards","icon":"inv_pants_plate_38v1","type":9,"armorType":4,"stats":[249,0,373,0,0,0,166,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,2649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76267}}]}, -{"id":55031,"name":"Redsteel Helm","icon":"inv_helmet_178v1","type":1,"armorType":4,"stats":[208,0,401,0,0,0,138,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76269}}]}, -{"id":55032,"name":"Redsteel Breastplate","icon":"inv_chest_plate27v1","type":5,"armorType":4,"stats":[268,0,401,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76270}}]}, -{"id":55033,"name":"Stormforged Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,148,99,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76280}}]}, -{"id":55034,"name":"Stormforged Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,237,158,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76281}}]}, -{"id":55035,"name":"Stormforged Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76283}}]}, -{"id":55036,"name":"Stormforged Boots","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,255,170,0,0,113,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76285}}]}, -{"id":55037,"name":"Stormforged Shoulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,277,185,0,0,0,123,0,0,0,123,0,0,0,0,0,0,0,0,0,0,2271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76286}}]}, -{"id":55038,"name":"Stormforged Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,373,249,166,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76287}}]}, -{"id":55039,"name":"Stormforged Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,401,268,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76288}}]}, -{"id":55040,"name":"Stormforged Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76289}}]}, -{"id":55041,"name":"Hardened Obsidium Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[99,0,148,0,0,0,0,0,66,0,66,0,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76291}}]}, -{"id":55042,"name":"Stormforged Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,207,138,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":2,"sources":[{"crafted":{"profession":2,"spellId":76293}}]}, -{"id":55043,"name":"Decapitator's Razor","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,98,147,0,0,0,65,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76433}}]}, -{"id":55044,"name":"Cold-Forged Shank","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,98,147,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":390,"weaponDamageMax":725,"weaponSpeed":1.8,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76434}}]}, -{"id":55045,"name":"Fire-Etched Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,147,98,0,65,0,65,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":368,"weaponDamageMax":684,"weaponSpeed":1.7,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76435}}]}, -{"id":55046,"name":"Lifeforce Hammer","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,147,98,65,0,0,0,0,0,0,65,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":455,"weaponDamageMax":845,"weaponSpeed":2.1,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76436}}]}, -{"id":55052,"name":"Obsidium Executioner","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[229,0,343,0,0,0,153,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1023,"weaponDamageMax":1900,"weaponSpeed":3.5,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76437}}]}, -{"id":55058,"name":"Hardened Elementium Hauberk","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[321,0,512,0,0,0,0,0,228,0,208,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76443}}]}, -{"id":55059,"name":"Hardened Elementium Girdle","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,0,0,0,0,169,0,149,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76444}}]}, -{"id":55060,"name":"Elementium Deathplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[321,0,512,0,0,0,228,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76445}}]}, -{"id":55061,"name":"Elementium Girdle of Pain","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76446}}]}, -{"id":55062,"name":"Light Elementium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,321,0,0,208,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76447}}]}, -{"id":55063,"name":"Light Elementium Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76448}}]}, -{"id":55064,"name":"Elementium Spellblade","icon":"inv_knife_1h_grimbatolraid_d_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,194,129,0,86,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":401,"weaponDamageMax":745,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76449}}]}, -{"id":55065,"name":"Elementium Hammer","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,194,129,86,0,0,0,0,0,0,86,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":1012,"weaponSpeed":1.9,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76450}}]}, -{"id":55066,"name":"Elementium Poleaxe","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,202,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1352,"weaponDamageMax":2513,"weaponSpeed":3.5,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76451}}]}, -{"id":55067,"name":"Elementium Bonesplitter","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76452}}]}, -{"id":55068,"name":"Elementium Shank","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76453}}]}, -{"id":55069,"name":"Elementium Earthguard","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[170,0,286,0,0,117,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76454}}]}, -{"id":55070,"name":"Elementium Stormshield","icon":"inv_shield_bwdraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,170,122,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":76455}}]}, -{"id":55071,"name":"Bloodied Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[158,0,237,0,0,105,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55072,"name":"Bloodied Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[210,0,316,0,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55073,"name":"Bloodied Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[210,0,316,0,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55074,"name":"Bloodied Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[210,0,316,0,0,140,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55075,"name":"Bloodied Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[210,0,316,0,0,0,0,0,140,0,0,0,0,0,0,0,140,0,0,0,0,0,2404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55076,"name":"Bloodied Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[283,0,425,0,0,189,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55077,"name":"Bloodied Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[283,0,425,0,0,0,0,0,189,0,0,0,0,0,0,0,189,0,0,0,0,0,2605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55078,"name":"Bloodied Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[283,0,425,0,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,3206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55079,"name":"Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,237,158,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55080,"name":"Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55081,"name":"Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55082,"name":"Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,2204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55083,"name":"Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55084,"name":"Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,425,283,0,0,189,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55085,"name":"Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55086,"name":"Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,425,283,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,3206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":55195,"name":"Wrasse Handwraps","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,158,237,0,0,0,80,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":55198,"name":"Aurelian Mitre","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,319,212,124,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":55201,"name":"Entwined Nereis","icon":"inv_jewelry_ring_41","type":11,"stats":[90,0,178,0,0,60,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":55202,"name":"Periwinkle Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,177,118,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":55203,"name":"Lightning Whelk Axe","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":523,"weaponDamageMax":972,"weaponSpeed":2.6,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":55204,"name":"Caridean Epaulettes","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,158,237,0,0,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,1085,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":55205,"name":"Chromis Chestpiece","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,319,212,142,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":55206,"name":"Eagle Ray Cloak","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[118,0,177,0,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":55207,"name":"Harp Shell Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":55228,"name":"Cerith Spire Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,319,213,0,142,0,142,0,0,0,0,0,0,1217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":2.1,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":55229,"name":"Anomuran Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[212,0,319,0,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":55235,"name":"Decapod Slippers","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,237,158,80,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":55236,"name":"Anthia's Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,0,177,118,0,69,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":55237,"name":"Porcelain Crab","icon":"inv_jewelcrafting_purplecrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":55246,"name":"Obsidium Bladespear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,229,343,0,0,0,0,153,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1023,"weaponDamageMax":1900,"weaponSpeed":3.5,"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":76474}}]}, -{"id":55248,"name":"Conch of Thundering Waves","icon":"inv_misc_shell_04","type":14,"rangedWeaponType":4,"stats":[67,0,100,0,0,46,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":55249,"name":"Triton Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,0,212,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55250,"name":"Nautilus Ring","icon":"inv_misc_shell_04","type":11,"stats":[0,118,177,0,0,0,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55251,"name":"Might of the Ocean","icon":"inv_stone_02","type":12,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55252,"name":"Whitefin Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[212,0,319,0,0,0,152,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1116,"weaponDamageMax":1674,"weaponSpeed":3.6,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55253,"name":"Wentletrap Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55254,"name":"Abalone Plate Armor","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,319,212,142,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55255,"name":"Mnemiopsis Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,237,158,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55256,"name":"Sea Star","icon":"inv_datacrystal05","type":12,"stats":[0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55258,"name":"Pipefish Cord","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,177,118,0,0,69,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55259,"name":"Bioluminescent Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,177,118,85,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":55260,"name":"Alpheus Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[212,0,319,0,0,124,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}]}, -{"id":55261,"name":"Ring of the Great Whale","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,177,118,79,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}]}, -{"id":55262,"name":"Barnacle Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,118,177,0,0,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}]}, -{"id":55263,"name":"Renouncer's Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,212,319,0,0,142,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":55264,"name":"Armbands of Change","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,177,118,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":55265,"name":"Signet of Transformation","icon":"inv_misc_stonering2","type":11,"stats":[118,0,177,0,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":55266,"name":"Grace of the Herald","icon":"inv_misc_horn_02","type":12,"stats":[0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":55267,"name":"Corla's Baton","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,100,67,0,39,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":690,"weaponDamageMax":1282,"weaponSpeed":1.8,"ilvl":308,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":55268,"name":"Bracers of Cooled Anger","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[118,0,177,0,0,0,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":55269,"name":"Heat Wave Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,319,212,124,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":55270,"name":"Burned Gatherings","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[85,0,177,0,0,69,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":55271,"name":"Quicksilver Amulet","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,177,118,85,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":55272,"name":"Steelbender's Masterpiece","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,91,136,0,0,65,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":413,"weaponDamageMax":621,"weaponSpeed":1.8,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":55273,"name":"Beauty's Chew Toy","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,212,319,0,0,142,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":55274,"name":"Beauty's Plate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[212,0,319,0,0,0,0,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":55275,"name":"Beauty's Silken Ribbon","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,237,158,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":55276,"name":"Kibble","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,177,118,85,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":55277,"name":"Beauty's Favorite Bone","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,177,118,0,85,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":55278,"name":"Inquisition Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,319,212,0,142,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":55279,"name":"Manacles of Pain","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":55282,"name":"Steelspark Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":409,"weaponDamageMax":761,"weaponSpeed":2.6,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55283,"name":"Angerfang Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":425,"weaponDamageMax":790,"weaponSpeed":2.6,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55284,"name":"Nethergarde Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":2.6,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55285,"name":"Splinterspear Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":466,"weaponDamageMax":867,"weaponSpeed":2.6,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55286,"name":"Mardenholde Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":485,"weaponDamageMax":902,"weaponSpeed":2.6,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55287,"name":"Bladefist Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":513,"weaponDamageMax":954,"weaponSpeed":2.6,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55288,"name":"Irontree Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55289,"name":"Rustmaul Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55291,"name":"Steelspark Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55292,"name":"Angerfang Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55293,"name":"Nethergarde Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55294,"name":"Splinterspear Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55295,"name":"Mardenholde Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55296,"name":"Bladefist Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55297,"name":"Irontree Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55298,"name":"Rustmaul Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55300,"name":"Steelspark Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":553,"weaponDamageMax":1029,"weaponSpeed":2.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":96}, -{"id":55301,"name":"Angerfang Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":580,"weaponDamageMax":1078,"weaponSpeed":2.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":100}, -{"id":55302,"name":"Nethergarde Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":613,"weaponDamageMax":1140,"weaponSpeed":2.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":106}, -{"id":55303,"name":"Splinterspear Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":648,"weaponDamageMax":1205,"weaponSpeed":2.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":112}, -{"id":55304,"name":"Mardenholde Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":679,"weaponDamageMax":1263,"weaponSpeed":2.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":118}, -{"id":55305,"name":"Bladefist Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":718,"weaponDamageMax":1335,"weaponSpeed":2.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":124}, -{"id":55306,"name":"Irontree Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":760,"weaponDamageMax":1412,"weaponSpeed":2.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":132}, -{"id":55307,"name":"Rustmaul Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":804,"weaponDamageMax":1493,"weaponSpeed":2.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":139}, -{"id":55309,"name":"Swamplight Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55310,"name":"Sishir Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55311,"name":"Mirkfallon Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55312,"name":"Nethander Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55313,"name":"Mereldar Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55314,"name":"Thondroril Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55315,"name":"Blackwolf Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55316,"name":"Sorrowmurk Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55318,"name":"Steelspark Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":553,"weaponDamageMax":1029,"weaponSpeed":2.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":96}, -{"id":55319,"name":"Angerfang Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":580,"weaponDamageMax":1078,"weaponSpeed":2.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":100}, -{"id":55320,"name":"Nethergarde Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":613,"weaponDamageMax":1140,"weaponSpeed":2.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":106}, -{"id":55321,"name":"Splinterspear Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":648,"weaponDamageMax":1205,"weaponSpeed":2.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":112}, -{"id":55322,"name":"Mardenholde Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":679,"weaponDamageMax":1263,"weaponSpeed":2.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":118}, -{"id":55323,"name":"Bladefist Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":718,"weaponDamageMax":1335,"weaponSpeed":2.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":124}, -{"id":55324,"name":"Irontree Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":760,"weaponDamageMax":1412,"weaponSpeed":2.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":132}, -{"id":55325,"name":"Rustmaul Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":804,"weaponDamageMax":1493,"weaponSpeed":2.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":139}, -{"id":55327,"name":"Steelspark Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":267,"weaponDamageMax":497,"weaponSpeed":1.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55328,"name":"Angerfang Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":278,"weaponDamageMax":517,"weaponSpeed":1.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55329,"name":"Nethergarde Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":1.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55330,"name":"Splinterspear Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":1.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55331,"name":"Mardenholde Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55332,"name":"Bladefist Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":335,"weaponDamageMax":624,"weaponSpeed":1.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55333,"name":"Irontree Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55334,"name":"Rustmaul Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55336,"name":"Steelspark Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55337,"name":"Angerfang Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55338,"name":"Nethergarde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55339,"name":"Splinterspear Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55340,"name":"Mardenholde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55341,"name":"Bladefist Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55342,"name":"Irontree Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55343,"name":"Rustmaul Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55345,"name":"Steelspark Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":409,"weaponDamageMax":761,"weaponSpeed":2.6,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55346,"name":"Angerfang Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":425,"weaponDamageMax":790,"weaponSpeed":2.6,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55347,"name":"Nethergarde Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":2.6,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55348,"name":"Splinterspear Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":466,"weaponDamageMax":867,"weaponSpeed":2.6,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55349,"name":"Mardenholde Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":485,"weaponDamageMax":902,"weaponSpeed":2.6,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55350,"name":"Bladefist Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":513,"weaponDamageMax":954,"weaponSpeed":2.6,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55351,"name":"Irontree Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55352,"name":"Rustmaul Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55354,"name":"Steelspark Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":553,"weaponDamageMax":1029,"weaponSpeed":2.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":96}, -{"id":55355,"name":"Angerfang Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":580,"weaponDamageMax":1078,"weaponSpeed":2.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":100}, -{"id":55356,"name":"Nethergarde Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":613,"weaponDamageMax":1140,"weaponSpeed":2.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":106}, -{"id":55357,"name":"Splinterspear Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":648,"weaponDamageMax":1205,"weaponSpeed":2.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":112}, -{"id":55358,"name":"Mardenholde Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":679,"weaponDamageMax":1263,"weaponSpeed":2.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":118}, -{"id":55359,"name":"Bladefist Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":718,"weaponDamageMax":1335,"weaponSpeed":2.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":124}, -{"id":55360,"name":"Irontree Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":760,"weaponDamageMax":1412,"weaponSpeed":2.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":132}, -{"id":55361,"name":"Rustmaul Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":804,"weaponDamageMax":1493,"weaponSpeed":2.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":139}, -{"id":55363,"name":"Swamplight Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":267,"weaponDamageMax":497,"weaponSpeed":1.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55364,"name":"Sishir Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":278,"weaponDamageMax":517,"weaponSpeed":1.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55365,"name":"Mirkfallon Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":1.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55366,"name":"Nethander Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":1.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55367,"name":"Mereldar Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55368,"name":"Thondroril Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":335,"weaponDamageMax":624,"weaponSpeed":1.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55369,"name":"Blackwolf Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55370,"name":"Sorrowmurk Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55372,"name":"Swamplight Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55373,"name":"Sishir Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55374,"name":"Mirkfallon Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55375,"name":"Nethander Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55376,"name":"Mereldar Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55377,"name":"Thondroril Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55378,"name":"Blackwolf Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55379,"name":"Sorrowmurk Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55381,"name":"Steelspark Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":409,"weaponDamageMax":761,"weaponSpeed":2.6,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55382,"name":"Angerfang Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":425,"weaponDamageMax":790,"weaponSpeed":2.6,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55383,"name":"Nethergarde Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":2.6,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55384,"name":"Splinterspear Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":466,"weaponDamageMax":867,"weaponSpeed":2.6,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55385,"name":"Mardenholde Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":485,"weaponDamageMax":902,"weaponSpeed":2.6,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55386,"name":"Bladefist Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":513,"weaponDamageMax":954,"weaponSpeed":2.6,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55387,"name":"Irontree Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55388,"name":"Rustmaul Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55390,"name":"Steelspark Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55391,"name":"Angerfang Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55392,"name":"Nethergarde Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55393,"name":"Splinterspear Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55394,"name":"Mardenholde Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55395,"name":"Bladefist Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55396,"name":"Irontree Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55397,"name":"Rustmaul Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55399,"name":"Swamplight Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55400,"name":"Sishir Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55401,"name":"Mirkfallon Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55402,"name":"Nethander Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55403,"name":"Mereldar Amulet","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55404,"name":"Thondroril Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55405,"name":"Blackwolf Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55406,"name":"Sorrowmurk Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55408,"name":"Steelspark Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55409,"name":"Angerfang Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55410,"name":"Nethergarde Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55411,"name":"Splinterspear Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55412,"name":"Mardenholde Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55413,"name":"Bladefist Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55414,"name":"Irontree Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55415,"name":"Rustmaul Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55417,"name":"Swamplight Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55418,"name":"Sishir Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55419,"name":"Mirkfallon Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55420,"name":"Nethander Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55421,"name":"Mereldar Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55422,"name":"Thondroril Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55423,"name":"Blackwolf Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55424,"name":"Sorrowmurk Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55426,"name":"Rethban Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55427,"name":"Jasperlode Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55428,"name":"Direforge Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55429,"name":"Fargodeep Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55430,"name":"Ravencrest Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55431,"name":"Stonewrought Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55432,"name":"Crystalvein Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55433,"name":"Steelgrill Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55435,"name":"Swamplight Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":267,"weaponDamageMax":497,"weaponSpeed":1.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55436,"name":"Sishir Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":278,"weaponDamageMax":517,"weaponSpeed":1.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55437,"name":"Mirkfallon Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":1.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55438,"name":"Nethander Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":1.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55439,"name":"Mereldar Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55440,"name":"Thondroril Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":335,"weaponDamageMax":624,"weaponSpeed":1.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55441,"name":"Blackwolf Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55442,"name":"Sorrowmurk Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55444,"name":"Steelspark Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55445,"name":"Angerfang Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55446,"name":"Nethergarde Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55447,"name":"Splinterspear Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55448,"name":"Mardenholde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55449,"name":"Bladefist Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1193,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55450,"name":"Irontree Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55451,"name":"Rustmaul Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55453,"name":"Steelspark Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":409,"weaponDamageMax":761,"weaponSpeed":2.6,"ilvl":278,"phase":1,"quality":2,"randPropPoints":131}, -{"id":55454,"name":"Angerfang Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":425,"weaponDamageMax":790,"weaponSpeed":2.6,"ilvl":283,"phase":1,"quality":2,"randPropPoints":137}, -{"id":55455,"name":"Nethergarde Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":2.6,"ilvl":289,"phase":1,"quality":2,"randPropPoints":145}, -{"id":55456,"name":"Splinterspear Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":466,"weaponDamageMax":867,"weaponSpeed":2.6,"ilvl":295,"phase":1,"quality":2,"randPropPoints":153}, -{"id":55457,"name":"Mardenholde Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":485,"weaponDamageMax":902,"weaponSpeed":2.6,"ilvl":300,"phase":1,"quality":2,"randPropPoints":161}, -{"id":55458,"name":"Bladefist Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":513,"weaponDamageMax":954,"weaponSpeed":2.6,"ilvl":306,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55459,"name":"Irontree Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"randPropPoints":179}, -{"id":55460,"name":"Rustmaul Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"randPropPoints":190}, -{"id":55462,"name":"Steelspark Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":820,"weaponDamageMax":1231,"weaponSpeed":3.5,"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55463,"name":"Angerfang Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":859,"weaponDamageMax":1290,"weaponSpeed":3.5,"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55464,"name":"Nethergarde Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55465,"name":"Splinterspear Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55466,"name":"Mardenholde Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55467,"name":"Bladefist Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55468,"name":"Irontree Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55469,"name":"Rustmaul Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55471,"name":"Steelspark Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":348,"weaponDamageMax":648,"weaponSpeed":1.7,"ilvl":278,"phase":1,"quality":2,"randPropPoints":96}, -{"id":55472,"name":"Angerfang Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":365,"weaponDamageMax":679,"weaponSpeed":1.7,"ilvl":283,"phase":1,"quality":2,"randPropPoints":100}, -{"id":55473,"name":"Nethergarde Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":386,"weaponDamageMax":718,"weaponSpeed":1.7,"ilvl":289,"phase":1,"quality":2,"randPropPoints":106}, -{"id":55474,"name":"Splinterspear Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":408,"weaponDamageMax":759,"weaponSpeed":1.7,"ilvl":295,"phase":1,"quality":2,"randPropPoints":112}, -{"id":55475,"name":"Mardenholde Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":428,"weaponDamageMax":795,"weaponSpeed":1.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":118}, -{"id":55476,"name":"Bladefist Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":452,"weaponDamageMax":841,"weaponSpeed":1.7,"ilvl":306,"phase":1,"quality":2,"randPropPoints":124}, -{"id":55477,"name":"Irontree Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":478,"weaponDamageMax":889,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":132}, -{"id":55478,"name":"Rustmaul Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":506,"weaponDamageMax":940,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":139}, -{"id":55480,"name":"Swamplight Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":521,"weaponDamageMax":969,"weaponSpeed":1.8,"ilvl":278,"phase":1,"quality":2,"randPropPoints":96}, -{"id":55481,"name":"Sishir Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2,"ilvl":283,"phase":1,"quality":2,"randPropPoints":100}, -{"id":55482,"name":"Mirkfallon Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":449,"weaponDamageMax":835,"weaponSpeed":1.4,"ilvl":289,"phase":1,"quality":2,"randPropPoints":106}, -{"id":55483,"name":"Nethander Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":645,"weaponDamageMax":1198,"weaponSpeed":1.9,"ilvl":295,"phase":1,"quality":2,"randPropPoints":112}, -{"id":55484,"name":"Mereldar Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":604,"weaponDamageMax":1123,"weaponSpeed":1.7,"ilvl":300,"phase":1,"quality":2,"randPropPoints":118}, -{"id":55485,"name":"Thondroril Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":564,"weaponDamageMax":1048,"weaponSpeed":1.5,"ilvl":306,"phase":1,"quality":2,"randPropPoints":124}, -{"id":55486,"name":"Blackwolf Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":676,"weaponDamageMax":1256,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2,"randPropPoints":132}, -{"id":55487,"name":"Sorrowmurk Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":715,"weaponDamageMax":1329,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"randPropPoints":139}, -{"id":55489,"name":"Rethban Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55490,"name":"Jasperlode Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55491,"name":"Direforge Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55492,"name":"Fargodeep Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55493,"name":"Ravencrest Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55494,"name":"Stonewrought Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55495,"name":"Crystalvein Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55496,"name":"Steelgrill Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55498,"name":"Rethban Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55499,"name":"Jasperlode Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55500,"name":"Direforge Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55501,"name":"Fargodeep Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55502,"name":"Ravencrest Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55503,"name":"Stonewrought Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2802,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55504,"name":"Crystalvein Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55505,"name":"Steelgrill Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55507,"name":"Rethban Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55508,"name":"Jasperlode Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55509,"name":"Direforge Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55510,"name":"Fargodeep Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55511,"name":"Ravencrest Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55512,"name":"Stonewrought Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55513,"name":"Crystalvein Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55514,"name":"Steelgrill Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55516,"name":"Rethban Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55517,"name":"Jasperlode Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55518,"name":"Direforge Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55519,"name":"Fargodeep Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55520,"name":"Ravencrest Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55521,"name":"Stonewrought Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55522,"name":"Crystalvein Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55523,"name":"Steelgrill Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55525,"name":"Rethban Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55526,"name":"Jasperlode Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55527,"name":"Direforge Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55528,"name":"Fargodeep Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55529,"name":"Ravencrest Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55530,"name":"Stonewrought Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55531,"name":"Crystalvein Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55532,"name":"Steelgrill Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55534,"name":"Rethban Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55535,"name":"Jasperlode Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55536,"name":"Direforge Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55537,"name":"Fargodeep Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55538,"name":"Ravencrest Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55539,"name":"Stonewrought Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55540,"name":"Crystalvein Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55541,"name":"Steelgrill Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55543,"name":"Rethban Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55544,"name":"Jasperlode Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55545,"name":"Direforge Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55546,"name":"Fargodeep Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55547,"name":"Ravencrest Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55548,"name":"Stonewrought Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55549,"name":"Crystalvein Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55550,"name":"Steelgrill Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55552,"name":"Rethban Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55553,"name":"Jasperlode Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55554,"name":"Direforge Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55555,"name":"Fargodeep Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55556,"name":"Ravencrest Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55557,"name":"Stonewrought Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55558,"name":"Crystalvein Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55559,"name":"Steelgrill Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55561,"name":"Southfury Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55562,"name":"Sundown Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55563,"name":"Bramblescar Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55564,"name":"Hiri'watha Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55565,"name":"Highperch Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55566,"name":"Thornsnarl Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55567,"name":"Talondeep Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55568,"name":"Frayfeather Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55570,"name":"Southfury Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55571,"name":"Sundown Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55572,"name":"Bramblescar Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55573,"name":"Hiri'watha Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55574,"name":"Highperch Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55575,"name":"Thornsnarl Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2034,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55576,"name":"Talondeep Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55577,"name":"Frayfeather Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55579,"name":"Southfury Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55580,"name":"Sundown Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55581,"name":"Bramblescar Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55582,"name":"Hiri'watha Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55583,"name":"Highperch Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55584,"name":"Thornsnarl Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55585,"name":"Talondeep Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55586,"name":"Frayfeather Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55588,"name":"Southfury Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55589,"name":"Sundown Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55590,"name":"Bramblescar Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55591,"name":"Hiri'watha Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55592,"name":"Highperch Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55593,"name":"Thornsnarl Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55594,"name":"Talondeep Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55595,"name":"Frayfeather Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55597,"name":"Southfury Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55598,"name":"Sundown Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55599,"name":"Bramblescar Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55600,"name":"Hiri'watha Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55601,"name":"Highperch Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55602,"name":"Thornsnarl Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55603,"name":"Talondeep Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55604,"name":"Frayfeather Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55606,"name":"Southfury Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55607,"name":"Sundown Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55608,"name":"Bramblescar Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55609,"name":"Hiri'watha Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55610,"name":"Highperch Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55611,"name":"Thornsnarl Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55612,"name":"Talondeep Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55613,"name":"Frayfeather Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55615,"name":"Southfury Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55616,"name":"Sundown Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55617,"name":"Bramblescar Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55618,"name":"Hiri'watha Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55619,"name":"Highperch Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55620,"name":"Thornsnarl Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55621,"name":"Talondeep Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55622,"name":"Frayfeather Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55624,"name":"Southfury Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55625,"name":"Sundown Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55626,"name":"Bramblescar Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55627,"name":"Hiri'watha Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55628,"name":"Highperch Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55629,"name":"Thornsnarl Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55630,"name":"Talondeep Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55631,"name":"Frayfeather Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55633,"name":"Mosshide Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55634,"name":"Yojamba Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55635,"name":"Aboraz Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55636,"name":"Rocktusk Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55637,"name":"Dandred Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55638,"name":"Haldarr Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55639,"name":"Ravenholdt Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55640,"name":"Nighthaven Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55642,"name":"Mosshide Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55643,"name":"Yojamba Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55644,"name":"Aboraz Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55645,"name":"Rocktusk Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55646,"name":"Dandred Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55647,"name":"Haldarr Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55648,"name":"Ravenholdt Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55649,"name":"Nighthaven Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55651,"name":"Mosshide Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55652,"name":"Yojamba Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55653,"name":"Aboraz Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55654,"name":"Rocktusk Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55655,"name":"Dandred Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55656,"name":"Haldarr Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55657,"name":"Ravenholdt Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55658,"name":"Nighthaven Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55660,"name":"Mosshide Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55661,"name":"Yojamba Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55662,"name":"Aboraz Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55663,"name":"Rocktusk Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55664,"name":"Dandred Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55665,"name":"Haldarr Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55666,"name":"Ravenholdt Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55667,"name":"Nighthaven Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55669,"name":"Mosshide Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55670,"name":"Yojamba Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55671,"name":"Aboraz Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55672,"name":"Rocktusk Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55673,"name":"Dandred Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55674,"name":"Haldarr Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55675,"name":"Ravenholdt Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55676,"name":"Nighthaven Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55678,"name":"Mosshide Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55679,"name":"Yojamba Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55680,"name":"Aboraz Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55681,"name":"Rocktusk Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55682,"name":"Dandred Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55683,"name":"Haldarr Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55684,"name":"Ravenholdt Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55685,"name":"Nighthaven Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55687,"name":"Mosshide Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55688,"name":"Yojamba Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55689,"name":"Aboraz Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55690,"name":"Rocktusk Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55691,"name":"Dandred Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55692,"name":"Haldarr Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55693,"name":"Ravenholdt Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55694,"name":"Nighthaven Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55696,"name":"Mosshide Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55697,"name":"Yojamba Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55698,"name":"Aboraz Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55699,"name":"Rocktusk Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55700,"name":"Dandred Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55701,"name":"Haldarr Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55702,"name":"Ravenholdt Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55703,"name":"Nighthaven Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55705,"name":"Mistmantle Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":170}, -{"id":55706,"name":"Baradin Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":178}, -{"id":55707,"name":"Darrowmere Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188}, -{"id":55708,"name":"Brightwood Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199}, -{"id":55709,"name":"Everstill Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":209}, -{"id":55710,"name":"Mystral Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":221}, -{"id":55711,"name":"Bluefen Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":233}, -{"id":55712,"name":"Galardell Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":247}, -{"id":55714,"name":"Mistmantle Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55715,"name":"Baradin Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55716,"name":"Darrowmere Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55717,"name":"Brightwood Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55718,"name":"Everstill Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55719,"name":"Mystral Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55720,"name":"Bluefen Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55721,"name":"Galardell Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55723,"name":"Mistmantle Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55724,"name":"Baradin Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55725,"name":"Darrowmere Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55726,"name":"Brightwood Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55727,"name":"Everstill Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55728,"name":"Mystral Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55729,"name":"Bluefen Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55730,"name":"Galardell Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55732,"name":"Mistmantle Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55733,"name":"Baradin Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,681,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55734,"name":"Darrowmere Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55735,"name":"Brightwood Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55736,"name":"Everstill Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55737,"name":"Mystral Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55738,"name":"Bluefen Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55739,"name":"Galardell Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55741,"name":"Mistmantle Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55742,"name":"Baradin Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55743,"name":"Darrowmere Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55744,"name":"Brightwood Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55745,"name":"Everstill Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55746,"name":"Mystral Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55747,"name":"Bluefen Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55748,"name":"Galardell Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55750,"name":"Mistmantle Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":305}, -{"id":55751,"name":"Baradin Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,953,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":320}, -{"id":55752,"name":"Darrowmere Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":338}, -{"id":55753,"name":"Brightwood Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":357}, -{"id":55754,"name":"Everstill Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375}, -{"id":55755,"name":"Mystral Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,975,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396}, -{"id":55756,"name":"Bluefen Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":419}, -{"id":55757,"name":"Galardell Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":443}, -{"id":55759,"name":"Mistmantle Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55760,"name":"Baradin Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55761,"name":"Darrowmere Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55762,"name":"Brightwood Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55763,"name":"Everstill Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55764,"name":"Mystral Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55765,"name":"Bluefen Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55766,"name":"Galardell Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55768,"name":"Mistmantle Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":278,"phase":1,"quality":2,"randPropPoints":227}, -{"id":55769,"name":"Baradin Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":283,"phase":1,"quality":2,"randPropPoints":237}, -{"id":55770,"name":"Darrowmere Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251}, -{"id":55771,"name":"Brightwood Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266}, -{"id":55772,"name":"Everstill Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278}, -{"id":55773,"name":"Mystral Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":306,"phase":1,"quality":2,"randPropPoints":294}, -{"id":55774,"name":"Bluefen Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":312,"phase":1,"quality":2,"randPropPoints":311}, -{"id":55775,"name":"Galardell Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":318,"phase":1,"quality":2,"randPropPoints":329}, -{"id":55776,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,118,177,0,0,0,79,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":55777,"name":"Torturer's Mercy","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,136,91,61,0,0,0,0,0,0,61,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":462,"weaponDamageMax":859,"weaponSpeed":2.3,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":55778,"name":"Shield of the Iron Maiden","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[118,0,177,0,0,0,0,0,0,85,0,69,0,0,0,0,0,0,0,0,0,0,9893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":55779,"name":"Raz's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[158,0,237,0,0,92,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55780,"name":"Twitching Shadows","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,118,177,0,0,0,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55781,"name":"Carrier Wave Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[118,0,177,0,0,0,0,0,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55782,"name":"Amber Messenger","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,67,100,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":786,"weaponDamageMax":1461,"weaponSpeed":2.9,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55783,"name":"Sandshift Relic","icon":"inv_qiraj_skinsandworm","type":14,"rangedWeaponType":4,"stats":[0,67,100,0,0,45,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55784,"name":"Clutches of Dying Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,237,158,105,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55785,"name":"Willowy Crown","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,319,212,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55786,"name":"Kyrstel Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,237,158,113,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55787,"name":"Witching Hourglass","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55788,"name":"Crepuscular Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":55789,"name":"Berto's Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":744,"weaponDamageMax":1116,"weaponSpeed":2.4,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}]}, -{"id":55790,"name":"Toxidunk Dagger","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,91,136,0,0,61,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":1.4,"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}]}, -{"id":55791,"name":"Acanthia's Lost Pendant","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,177,118,69,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}]}, -{"id":55792,"name":"Cinnabar Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,255,170,0,0,121,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,2189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":55793,"name":"Dolomite Adorned Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":55794,"name":"Phosphorescent Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[91,0,191,0,0,0,0,0,74,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":55795,"name":"Key to the Endless Chamber","icon":"inv_misc_key_10","type":12,"stats":[0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":55796,"name":"Fist of Pained Senses","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":1,"stats":[0,98,147,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":55797,"name":"Hematite Plate Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[170,0,255,0,0,0,99,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":55798,"name":"Deep Delving Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":55799,"name":"Rose Quartz Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,191,127,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":55800,"name":"Stalagmite Dragon","icon":"inv_misc_head_dragon_bronze","type":14,"rangedWeaponType":4,"stats":[72,0,108,0,0,0,0,0,0,51,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":55801,"name":"Quicksilver Blade","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,98,147,0,0,0,0,65,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":346,"weaponDamageMax":520,"weaponSpeed":1.4,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":55802,"name":"Elementium Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,127,191,0,0,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":55803,"name":"Belt of the Ringworm","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,255,170,113,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":55804,"name":"Pendant of the Lightless Grotto","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,127,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":55810,"name":"Tendrils of Burrowing Dark","icon":"inv_misc_volatileshadow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":55811,"name":"Sword of the Bottomless Pit","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[229,0,343,0,0,0,0,153,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1269,"weaponDamageMax":1904,"weaponSpeed":3.8,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":55812,"name":"Helm of Numberless Shadows","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,229,343,0,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55813,"name":"Elementium Fang","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[98,0,147,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55814,"name":"Magnetite Mirror","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55815,"name":"Darkling Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,229,343,0,0,153,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":801,"weaponDamageMax":1203,"weaponSpeed":2.4,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55816,"name":"Leaden Despair","icon":"quest_12252_icon","type":12,"stats":[0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55817,"name":"Slippers of the Twilight Prophet","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,255,170,0,113,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55818,"name":"Cowl of the Unseen World","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,343,229,0,0,0,164,0,0,0,134,0,0,0,0,0,0,0,0,0,0,1708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55819,"name":"Tear of Blood","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55820,"name":"Prophet's Scepter","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,74,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55821,"name":"Book of Dark Prophecies","icon":"inv_misc_book_17","type":14,"rangedWeaponType":4,"stats":[0,0,108,72,48,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":55822,"name":"Heavy Geode Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,98,147,0,0,65,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}]}, -{"id":55823,"name":"Wand of Dark Worship","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,108,72,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":743,"weaponDamageMax":1381,"weaponSpeed":1.8,"ilvl":316,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}]}, -{"id":55824,"name":"Skin of Stone","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[127,0,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}]}, -{"id":55830,"name":"Stratosphere Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,255,170,0,99,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":55831,"name":"Headcover of Fog","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[164,0,343,0,0,134,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":55832,"name":"Fallen Snow Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,255,170,0,0,86,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":55833,"name":"Red Sky Pendant","icon":"inv_jewelry_necklace_18","type":2,"stats":[127,0,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":55834,"name":"Biting Wind","icon":"inv_knife_1h_cataclysm_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,147,98,0,0,74,50,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":390,"weaponDamageMax":725,"weaponSpeed":1.8,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":55835,"name":"Hail-Strung Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,170,255,0,0,0,121,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":55838,"name":"Mantle of Bestilled Winds","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":55839,"name":"Skyshard Ring","icon":"inv_misc_kingsring2","type":11,"stats":[127,0,191,0,0,0,91,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":55840,"name":"Amulet of Tender Breath","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,191,127,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":55841,"name":"Axe of the Eclipse","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[98,0,147,0,0,50,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":55842,"name":"Legguards of Winnowing Wind","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[229,0,343,0,0,0,134,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,2554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55844,"name":"Gloves of Haze","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,170,255,0,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55845,"name":"Heart of Thunder","icon":"spell_nature_stormreach","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55846,"name":"Lightningflash","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,72,108,0,0,0,55,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":847,"weaponDamageMax":1574,"weaponSpeed":2.9,"ilvl":316,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55847,"name":"Billowing Cape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[127,0,191,0,0,0,0,0,0,0,74,91,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55848,"name":"Lunar Halo","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,343,229,0,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55849,"name":"Leggings of Iridescent Clouds","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,343,229,164,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55850,"name":"Shadow of Perfect Bliss","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,191,127,0,64,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55851,"name":"Ring of Frozen Rain","icon":"inv_misc_stonering2","type":11,"stats":[0,0,191,127,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55852,"name":"Captured Lightning","icon":"inv_gizmo_khoriumpowercore","type":14,"rangedWeaponType":4,"stats":[0,0,108,72,41,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55853,"name":"Thundercall","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[72,0,108,0,0,0,0,0,0,0,42,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":847,"weaponDamageMax":1574,"weaponSpeed":2.9,"ilvl":316,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":55854,"name":"Rainsong","icon":"inv_elemental_mote_water01","type":12,"stats":[0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Trash Mobs"}}]}, -{"id":55855,"name":"Darksky Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[170,0,255,0,0,0,0,0,0,0,113,113,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Trash Mobs"}}]}, -{"id":55856,"name":"Greaves of Wu the Elder","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":55857,"name":"Ionic Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,133,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":55858,"name":"Kaleki Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,149,224,0,0,76,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":55859,"name":"Spirit Creeper Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,224,149,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":55860,"name":"Seliza's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,268,401,0,0,0,136,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1408,"weaponDamageMax":2113,"weaponSpeed":3.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":55861,"name":"Balkar's Waders","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,401,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":55862,"name":"Greaves of Wu the Younger","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,298,199,0,0,133,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":55863,"name":"Ring of the Darkest Day","icon":"inv_jewelry_ring_54","type":11,"stats":[149,0,224,0,0,0,87,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":55864,"name":"Tauntka's Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,224,149,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":55865,"name":"Resonant Kris","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[115,0,172,0,0,76,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":55866,"name":"Sand Silk Wristband","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":55867,"name":"Sand Dune Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[151,0,298,0,0,0,0,0,101,199,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":55868,"name":"Heart of Solace","icon":"spell_holy_persecution","type":12,"stats":[0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":55869,"name":"Veneficial Band","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,224,149,87,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":55870,"name":"Barim's Main Gauche","icon":"inv_knife_1h_cataclysm_c_06","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,76,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":610,"weaponSpeed":1.4,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":55871,"name":"Crafty's Gaiters","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,199,298,0,0,0,0,133,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55872,"name":"Geordan's Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[149,0,224,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55873,"name":"Ring of Three Lights","icon":"inv_jewelry_ring_77","type":11,"stats":[149,0,224,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55874,"name":"Tia's Grace","icon":"inv_ammo_arrow_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55875,"name":"Hammer of Sparks","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,115,172,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55876,"name":"Mantle of Master Cho","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,298,199,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55877,"name":"Leggings of the Path","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,401,268,178,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55878,"name":"Evelyn's Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,133,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55879,"name":"Sorrowsong","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55880,"name":"Zora's Ward","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,224,149,0,0,0,107,0,0,0,87,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":55881,"name":"Impetuous Query","icon":"inv_misc_punchcards_yellow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}]}, -{"id":55882,"name":"Oasis Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,224,149,107,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}]}, -{"id":55884,"name":"Mirage Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,149,224,0,0,76,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}]}, -{"id":55886,"name":"Poison Fang Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,149,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":55887,"name":"Belt of Petrified Tears","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,298,199,133,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":55888,"name":"Darkhowl Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[114,0,224,0,0,0,0,0,76,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":55889,"name":"Anhuur's Hymnal","icon":"inv_misc_book_17","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":55890,"name":"Awakening Footfalls","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,298,199,0,0,133,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":55992,"name":"Armguards of Unearthly Light","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[114,0,224,0,0,76,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":55993,"name":"Legwraps of Astral Rain","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":55994,"name":"Ring of Blinding Stars","icon":"inv_misc_starring3","type":11,"stats":[0,149,224,0,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":55995,"name":"Blood of Isiset","icon":"inv_potion_55","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":55996,"name":"Nova Band","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[149,0,224,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":55997,"name":"Bloodpetal Mantle","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,199,298,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":55998,"name":"Robes of Rampant Growth","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,401,268,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":55999,"name":"Seedling Pod","icon":"inv_misc_herb_08","type":2,"stats":[149,0,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56000,"name":"Band of Life Energy","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56001,"name":"Slashing Thorns","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,84,126,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":2,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56093,"name":"Breastplate of the Risen Land","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56094,"name":"Underworld Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,298,199,133,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56095,"name":"Mouth of the Earth","icon":"inv_misc_necklacea11","type":2,"stats":[0,149,224,0,0,100,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56096,"name":"Bulwark of the Primordial Mound","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[114,0,224,0,0,76,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56097,"name":"Soul Releaser","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,401,268,178,0,0,178,0,0,0,0,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":939,"weaponDamageMax":1409,"weaponSpeed":2.4,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56098,"name":"Red Beam Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56099,"name":"Fingers of Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[199,0,298,0,0,0,0,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,1955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56100,"name":"Right Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56101,"name":"Sun Strike","icon":"inv_sword_1h_cataclysm_c_05","type":13,"weaponType":9,"handType":2,"stats":[115,0,172,0,0,76,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56102,"name":"Left Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56104,"name":"Legguards of Noon","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,401,268,178,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56105,"name":"Hekatic Slippers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,116,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56106,"name":"Band of Rays","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56107,"name":"Solar Wind Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,224,149,100,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56108,"name":"Blade of the Burning Sun","icon":"inv_sword_1h_cataclysm_c_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,172,115,0,0,82,67,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":755,"weaponSpeed":1.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56109,"name":"Book of Origination","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,90,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}]}, -{"id":56110,"name":"Charm of the Muse","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}]}, -{"id":56111,"name":"Temple Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}]}, -{"id":56112,"name":"Wildhammer Riding Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,268,401,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56113,"name":"Cursed Skardyn Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,401,268,178,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56114,"name":"Umbriss Band","icon":"inv_misc_stonering2","type":11,"stats":[114,0,224,0,0,76,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56115,"name":"Skardyn's Grace","icon":"inv_misc_coin_08","type":12,"stats":[0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56116,"name":"Modgud's Blade","icon":"inv_knife_1h_cataclysm_c_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,172,115,0,76,76,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":457,"weaponDamageMax":849,"weaponSpeed":1.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56118,"name":"Belt of the Forgemaster","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[199,0,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56119,"name":"Dark Iron Chain Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,298,199,133,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56120,"name":"Ring of Dun Algaz","icon":"inv_misc_kingsring2","type":11,"stats":[0,149,224,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56121,"name":"Throngus's Finger","icon":"inv_gizmo_felironshell","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56122,"name":"Wand of Untainted Power","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,126,84,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":871,"weaponDamageMax":1618,"weaponSpeed":1.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56123,"name":"Red Scale Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,199,298,0,0,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56124,"name":"Earthshape Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[199,0,298,0,0,0,0,0,0,133,0,133,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56125,"name":"Crimsonborne Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,224,149,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56126,"name":"Azureborne Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56127,"name":"Windwalker Blade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,76,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":522,"weaponDamageMax":784,"weaponSpeed":1.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56128,"name":"Vest of Misshapen Hides","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,268,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56129,"name":"Circle of Bone","icon":"inv_jewelry_ring_66","type":11,"stats":[149,0,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56130,"name":"Mace of Transformed Bone","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[87,0,172,0,0,58,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56131,"name":"Wild Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[268,0,401,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1408,"weaponDamageMax":2113,"weaponSpeed":3.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56132,"name":"Mark of Khardros","icon":"inv_hammer_04","type":12,"stats":[252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56133,"name":"Crown of Enfeebled Bodies","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,401,208,0,0,158,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56135,"name":"Bracers of Umbral Mending","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56136,"name":"Corrupted Egg Shell","icon":"inv_misc_cat_trinket09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56137,"name":"Staff of Siphoned Essences","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":821,"weaponDamageMax":1233,"weaponSpeed":2.1,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56138,"name":"Gale of Shadows","icon":"spell_shadow_gathershadows","type":12,"stats":[0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56218,"name":"Curse-Tainted Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,401,268,178,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}]}, -{"id":56219,"name":"Shroud of Dark Memories","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[114,0,224,0,0,0,0,0,76,149,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}]}, -{"id":56220,"name":"Abandoned Dark Iron Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,224,149,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}]}, -{"id":56266,"name":"Lightning Whelk Axe","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":56267,"name":"Periwinkle Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,252,168,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":56268,"name":"Wrasse Handwraps","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,205,337,0,0,0,114,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":56269,"name":"Aurelian Mitre","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,157,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":56270,"name":"Entwined Nereis","icon":"inv_jewelry_ring_41","type":11,"stats":[128,0,253,0,0,86,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}]}, -{"id":56271,"name":"Cerith Spire Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,202,0,202,0,0,0,0,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":56272,"name":"Harp Shell Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":56273,"name":"Caridean Epaulettes","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,205,337,0,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":56274,"name":"Chromis Chestpiece","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":56275,"name":"Eagle Ray Cloak","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}]}, -{"id":56276,"name":"Anthia's Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,0,252,168,0,98,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":56277,"name":"Decapod Slippers","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,114,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":56278,"name":"Anomuran Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[242,0,454,0,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":56279,"name":"Conch of Thundering Waves","icon":"inv_misc_shell_04","type":14,"rangedWeaponType":4,"stats":[95,0,143,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":56280,"name":"Porcelain Crab","icon":"inv_jewelcrafting_purplecrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}]}, -{"id":56281,"name":"Wentletrap Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,262,454,0,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56282,"name":"Nautilus Ring","icon":"inv_misc_shell_04","type":11,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56283,"name":"Triton Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[210,0,454,0,0,0,0,0,133,0,262,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56284,"name":"Whitefin Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[302,0,454,0,0,0,216,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56285,"name":"Might of the Ocean","icon":"inv_stone_02","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56286,"name":"Mnemiopsis Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56288,"name":"Pipefish Cord","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,252,168,0,0,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56289,"name":"Bioluminescent Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56290,"name":"Sea Star","icon":"inv_datacrystal05","type":12,"stats":[0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56291,"name":"Abalone Plate Armor","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,454,262,172,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}]}, -{"id":56292,"name":"Barnacle Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,168,252,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56293,"name":"Ring of the Great Whale","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":56294,"name":"Alpheus Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[262,0,454,0,0,157,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56295,"name":"Grace of the Herald","icon":"inv_misc_horn_02","type":12,"stats":[0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":56296,"name":"Corla's Baton","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,143,95,0,56,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":983,"weaponDamageMax":1826,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":56297,"name":"Armbands of Change","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,252,168,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":56298,"name":"Renouncer's Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,162,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":56299,"name":"Signet of Transformation","icon":"inv_misc_stonering2","type":11,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}]}, -{"id":56300,"name":"Quicksilver Amulet","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,252,168,120,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":56301,"name":"Bracers of Cooled Anger","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[168,0,252,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":56302,"name":"Steelbender's Masterpiece","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,93,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":589,"weaponDamageMax":885,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":56303,"name":"Heat Wave Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,454,262,177,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":56304,"name":"Burned Gatherings","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[120,0,252,0,0,98,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}]}, -{"id":56305,"name":"Beauty's Silken Ribbon","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":56306,"name":"Beauty's Favorite Bone","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,120,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":56307,"name":"Kibble","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,252,168,120,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":56308,"name":"Beauty's Plate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":56309,"name":"Beauty's Chew Toy","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,262,454,0,0,162,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}]}, -{"id":56310,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":56311,"name":"Inquisition Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,202,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":56312,"name":"Torturer's Mercy","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,194,129,91,0,0,0,0,0,0,78,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":56313,"name":"Manacles of Pain","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":56314,"name":"Shield of the Iron Maiden","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[168,0,252,0,0,0,0,0,0,120,0,98,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}]}, -{"id":56315,"name":"Twitching Shadows","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56316,"name":"Sandshift Relic","icon":"inv_qiraj_skinsandworm","type":14,"rangedWeaponType":4,"stats":[0,95,143,0,0,64,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56317,"name":"Amber Messenger","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,95,143,0,0,56,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1121,"weaponDamageMax":2082,"weaponSpeed":2.9,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56318,"name":"Raz's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[205,0,337,0,0,111,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56319,"name":"Carrier Wave Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[168,0,252,0,0,0,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56320,"name":"Witching Hourglass","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56321,"name":"Willowy Crown","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,454,242,0,0,182,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56322,"name":"Crepuscular Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56323,"name":"Clutches of Dying Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56324,"name":"Kyrstel Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,161,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}]}, -{"id":56325,"name":"Berto's Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,302,454,0,0,0,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1060,"weaponDamageMax":1590,"weaponSpeed":2.4,"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56326,"name":"Toxidunk Dagger","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":458,"weaponDamageMax":688,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56327,"name":"Acanthia's Lost Pendant","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56328,"name":"Key to the Endless Chamber","icon":"inv_misc_key_10","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":56329,"name":"Fist of Pained Senses","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":1,"stats":[0,129,194,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":56330,"name":"Cinnabar Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,337,205,0,0,141,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":56331,"name":"Dolomite Adorned Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":56332,"name":"Phosphorescent Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[120,0,252,0,0,0,0,0,98,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}]}, -{"id":56333,"name":"Rose Quartz Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":56334,"name":"Deep Delving Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":56335,"name":"Quicksilver Blade","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":458,"weaponDamageMax":688,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":56336,"name":"Hematite Plate Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[205,0,337,0,0,0,131,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":56337,"name":"Stalagmite Dragon","icon":"inv_misc_head_dragon_bronze","type":14,"rangedWeaponType":4,"stats":[95,0,143,0,0,0,0,0,0,67,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}]}, -{"id":56338,"name":"Pendant of the Lightless Grotto","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":56339,"name":"Tendrils of Burrowing Dark","icon":"inv_misc_volatileshadow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":56340,"name":"Elementium Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":56341,"name":"Belt of the Ringworm","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":56342,"name":"Sword of the Bottomless Pit","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,0,202,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1678,"weaponDamageMax":2518,"weaponSpeed":3.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}]}, -{"id":56343,"name":"Darkling Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,302,454,0,0,202,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1060,"weaponDamageMax":1590,"weaponSpeed":2.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56344,"name":"Helm of Numberless Shadows","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,242,454,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56345,"name":"Magnetite Mirror","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56346,"name":"Elementium Fang","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,0,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56347,"name":"Leaden Despair","icon":"quest_12252_icon","type":12,"stats":[0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56348,"name":"Slippers of the Twilight Prophet","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56349,"name":"Prophet's Scepter","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56350,"name":"Book of Dark Prophecies","icon":"inv_misc_book_17","type":14,"rangedWeaponType":4,"stats":[0,0,143,95,63,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"classAllowlist":[4,1,7],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56351,"name":"Tear of Blood","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56352,"name":"Cowl of the Unseen World","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,454,242,0,0,0,176,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}]}, -{"id":56353,"name":"Heavy Geode Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,129,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56354,"name":"Wand of Dark Worship","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,143,95,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":983,"weaponDamageMax":1826,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56355,"name":"Skin of Stone","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[168,0,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56356,"name":"Stratosphere Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,111,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":56357,"name":"Biting Wind","icon":"inv_knife_1h_cataclysm_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,194,130,0,0,98,66,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":56358,"name":"Headcover of Fog","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[196,0,454,0,0,137,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":56359,"name":"Fallen Snow Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,337,205,0,0,114,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":56360,"name":"Red Sky Pendant","icon":"inv_jewelry_necklace_18","type":2,"stats":[168,0,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}]}, -{"id":56361,"name":"Mantle of Bestilled Winds","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":56362,"name":"Amulet of Tender Breath","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":56363,"name":"Hail-Strung Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,205,337,0,0,0,141,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":56364,"name":"Axe of the Eclipse","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,66,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":56365,"name":"Skyshard Ring","icon":"inv_misc_kingsring2","type":11,"stats":[168,0,252,0,0,0,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}]}, -{"id":56366,"name":"Lightningflash","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,95,143,0,0,0,72,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1121,"weaponDamageMax":2082,"weaponSpeed":2.9,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56367,"name":"Legguards of Winnowing Wind","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[262,0,454,0,0,0,167,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56368,"name":"Gloves of Haze","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,205,337,0,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56369,"name":"Billowing Cape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[168,0,252,0,0,0,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56370,"name":"Heart of Thunder","icon":"spell_nature_stormreach","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56371,"name":"Shadow of Perfect Bliss","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,252,168,0,85,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56372,"name":"Captured Lightning","icon":"inv_gizmo_khoriumpowercore","type":14,"rangedWeaponType":4,"stats":[0,0,143,95,54,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56373,"name":"Ring of Frozen Rain","icon":"inv_misc_stonering2","type":11,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56374,"name":"Lunar Halo","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,454,242,0,0,172,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56375,"name":"Leggings of Iridescent Clouds","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,186,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56376,"name":"Thundercall","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[95,0,143,0,0,0,0,0,0,0,56,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1121,"weaponDamageMax":2082,"weaponSpeed":2.9,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}]}, -{"id":56377,"name":"Rainsong","icon":"inv_elemental_mote_water01","type":12,"stats":[0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":56378,"name":"Darksky Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56379,"name":"Kaleki Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,85,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":56380,"name":"Spirit Creeper Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":56381,"name":"Greaves of Wu the Elder","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[205,0,337,0,0,131,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":56382,"name":"Seliza's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,153,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":56383,"name":"Ionic Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}]}, -{"id":56384,"name":"Resonant Kris","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":56385,"name":"Tauntka's Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":56386,"name":"Balkar's Waders","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,262,454,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":56387,"name":"Greaves of Wu the Younger","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":56388,"name":"Ring of the Darkest Day","icon":"inv_jewelry_ring_54","type":11,"stats":[168,0,252,0,0,0,98,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}]}, -{"id":56389,"name":"Sand Silk Wristband","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":56390,"name":"Barim's Main Gauche","icon":"inv_knife_1h_cataclysm_c_06","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":458,"weaponDamageMax":688,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":56391,"name":"Veneficial Band","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":56392,"name":"Sand Dune Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[171,0,337,0,0,0,0,0,114,185,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":56393,"name":"Heart of Solace","icon":"spell_holy_persecution","type":12,"stats":[0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}]}, -{"id":56394,"name":"Tia's Grace","icon":"inv_ammo_arrow_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56395,"name":"Crafty's Gaiters","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56396,"name":"Hammer of Sparks","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56397,"name":"Geordan's Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[168,0,252,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56398,"name":"Ring of Three Lights","icon":"inv_jewelry_ring_77","type":11,"stats":[168,0,252,0,0,0,0,0,0,0,113,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56399,"name":"Mantle of Master Cho","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56400,"name":"Sorrowsong","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56401,"name":"Leggings of the Path","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,454,262,202,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56402,"name":"Zora's Ward","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,0,0,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56403,"name":"Evelyn's Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}]}, -{"id":56404,"name":"Mirage Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,168,252,0,0,85,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":56405,"name":"Oasis Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,252,168,120,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56406,"name":"Impetuous Query","icon":"inv_misc_punchcards_yellow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":56407,"name":"Anhuur's Hymnal","icon":"inv_misc_book_17","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":56408,"name":"Awakening Footfalls","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":56409,"name":"Poison Fang Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":56410,"name":"Belt of Petrified Tears","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":56411,"name":"Darkhowl Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[128,0,252,0,0,0,0,0,85,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}]}, -{"id":56412,"name":"Ring of Blinding Stars","icon":"inv_misc_starring3","type":11,"stats":[0,168,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":56413,"name":"Legwraps of Astral Rain","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,0,0,172,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":56414,"name":"Blood of Isiset","icon":"inv_potion_55","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":56415,"name":"Nova Band","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[168,0,252,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":56416,"name":"Armguards of Unearthly Light","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[128,0,252,0,0,85,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}]}, -{"id":56417,"name":"Robes of Rampant Growth","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,202,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56418,"name":"Band of Life Energy","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56419,"name":"Bloodpetal Mantle","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56420,"name":"Slashing Thorns","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,95,143,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":883,"weaponDamageMax":1325,"weaponSpeed":2,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56421,"name":"Seedling Pod","icon":"inv_misc_herb_08","type":2,"stats":[168,0,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}]}, -{"id":56422,"name":"Mouth of the Earth","icon":"inv_misc_necklacea11","type":2,"stats":[0,168,252,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56423,"name":"Underworld Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56424,"name":"Soul Releaser","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,202,0,0,202,0,0,0,0,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1060,"weaponDamageMax":1590,"weaponSpeed":2.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56425,"name":"Breastplate of the Risen Land","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[262,0,454,0,0,0,202,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56426,"name":"Bulwark of the Primordial Mound","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[128,0,252,0,0,85,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}]}, -{"id":56427,"name":"Left Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56428,"name":"Fingers of Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[215,0,337,0,0,0,0,0,0,0,130,140,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56429,"name":"Red Beam Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,205,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56430,"name":"Sun Strike","icon":"inv_sword_1h_cataclysm_c_05","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56431,"name":"Right Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56432,"name":"Band of Rays","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56433,"name":"Blade of the Burning Sun","icon":"inv_sword_1h_cataclysm_c_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,194,129,0,0,93,76,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":458,"weaponDamageMax":852,"weaponSpeed":1.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56434,"name":"Solar Wind Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56435,"name":"Legguards of Noon","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,454,302,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56436,"name":"Hekatic Slippers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,225,131,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}]}, -{"id":56437,"name":"Charm of the Muse","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56438,"name":"Book of Origination","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"heroic":true,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":56439,"name":"Temple Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":56440,"name":"Skardyn's Grace","icon":"inv_misc_coin_08","type":12,"stats":[0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56441,"name":"Modgud's Blade","icon":"inv_knife_1h_cataclysm_c_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,194,129,0,78,91,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56442,"name":"Cursed Skardyn Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,454,262,162,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56443,"name":"Wildhammer Riding Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56444,"name":"Umbriss Band","icon":"inv_misc_stonering2","type":11,"stats":[128,0,252,0,0,85,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}]}, -{"id":56445,"name":"Ring of Dun Algaz","icon":"inv_misc_kingsring2","type":11,"stats":[0,168,252,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56446,"name":"Wand of Untainted Power","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,143,95,63,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":983,"weaponDamageMax":1826,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56447,"name":"Belt of the Forgemaster","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[205,0,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56448,"name":"Dark Iron Chain Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56449,"name":"Throngus's Finger","icon":"inv_gizmo_felironshell","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}]}, -{"id":56450,"name":"Azureborne Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56451,"name":"Red Scale Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,0,151,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56452,"name":"Earthshape Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,130,0,130,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56453,"name":"Crimsonborne Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56454,"name":"Windwalker Blade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":589,"weaponDamageMax":885,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}]}, -{"id":56455,"name":"Vest of Misshapen Hides","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,162,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56456,"name":"Wild Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,0,0,202,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56457,"name":"Circle of Bone","icon":"inv_jewelry_ring_66","type":11,"stats":[168,0,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56458,"name":"Mark of Khardros","icon":"inv_hammer_04","type":12,"stats":[285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56459,"name":"Mace of Transformed Bone","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[98,0,194,0,0,66,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56460,"name":"Crown of Enfeebled Bodies","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56461,"name":"Staff of Siphoned Essences","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,202,0,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56462,"name":"Gale of Shadows","icon":"spell_shadow_gathershadows","type":12,"stats":[0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56463,"name":"Corrupted Egg Shell","icon":"inv_misc_cat_trinket09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56464,"name":"Bracers of Umbral Mending","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}]}, -{"id":56465,"name":"Abandoned Dark Iron Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":56466,"name":"Curse-Tainted Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,202,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56467,"name":"Shroud of Dark Memories","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[128,0,252,0,0,0,0,0,85,168,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":56480,"name":"Savage Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,99,148,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"crafted":{"profession":8,"spellId":78380}}]}, -{"id":56481,"name":"Tsunami Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":295,"phase":1,"quality":2,"randPropPoints":199,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78388}}]}, -{"id":56482,"name":"Tsunami Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78396}}]}, -{"id":56483,"name":"Darkbrand Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":289,"phase":1,"quality":2,"randPropPoints":188,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78398}}]}, -{"id":56484,"name":"Darkbrand Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":316,"phase":1,"quality":3,"randPropPoints":323,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78399}}]}, -{"id":56485,"name":"Windbound Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,162,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":298,"phase":1,"quality":3}, -{"id":56486,"name":"Windbound Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,215,144,101,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":298,"phase":1,"quality":2}, -{"id":56487,"name":"Razorshell Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,108,162,0,0,0,0,0,68,0,0,74,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":298,"phase":1,"quality":2}, -{"id":56488,"name":"Razorshell Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,144,215,0,0,0,104,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,1485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":298,"phase":1,"quality":2}, -{"id":56489,"name":"Hardened Scale Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[105,0,157,0,0,0,0,0,0,60,0,76,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":295,"phase":1,"quality":2,"sources":[{"crafted":{"profession":8,"spellId":78405}}]}, -{"id":56490,"name":"Tsunami Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78406}}]}, -{"id":56491,"name":"Darkbrand Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":295,"phase":1,"quality":2,"randPropPoints":266,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78407}}]}, -{"id":56492,"name":"Windbound Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,255,170,0,0,102,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2}, -{"id":56493,"name":"Razorshell Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,170,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2}, -{"id":56494,"name":"Tsunami Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78410}}]}, -{"id":56495,"name":"Darkbrand Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":300,"phase":1,"quality":2,"randPropPoints":278,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78411}}]}, -{"id":56496,"name":"Windbound Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,255,170,0,0,129,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":2}, -{"id":56497,"name":"Razorshell Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,170,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":56498,"name":"Tsunami Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":308,"phase":1,"quality":3,"randPropPoints":300,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78415}}]}, -{"id":56499,"name":"Darkbrand Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":289,"phase":1,"quality":2,"randPropPoints":251,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78416}}]}, -{"id":56500,"name":"Windbound Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,277,185,0,0,134,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":2}, -{"id":56501,"name":"Razorshell Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,185,277,0,0,111,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":2}, -{"id":56504,"name":"Tsunami Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":333,"phase":1,"quality":3,"randPropPoints":509,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78423}}]}, -{"id":56505,"name":"Darkbrand Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78424}}]}, -{"id":56506,"name":"Windbound Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,373,249,185,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":56507,"name":"Razorshell Helm","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,249,373,0,0,0,166,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":2}, -{"id":56508,"name":"Tsunami Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78427}}]}, -{"id":56509,"name":"Darkbrand Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":300,"phase":1,"quality":2,"randPropPoints":375,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78428}}]}, -{"id":56510,"name":"Windbound Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,401,268,0,0,0,199,0,0,0,144,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":2}, -{"id":56511,"name":"Razorshell Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,268,401,0,0,0,161,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":2}, -{"id":56512,"name":"Tsunami Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":306,"phase":1,"quality":2,"randPropPoints":396,"setName":"The Big Wave","setId":950,"sources":[{"crafted":{"profession":8,"spellId":78432}}]}, -{"id":56513,"name":"Darkbrand Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131],"ilvl":333,"phase":1,"quality":3,"randPropPoints":509,"setName":"The Dark Brand","setId":949,"sources":[{"crafted":{"profession":8,"spellId":78433}}]}, -{"id":56514,"name":"Windbound Helm","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,401,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":2}, -{"id":56515,"name":"Razorshell Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,268,401,0,0,203,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":56518,"name":"Cloak of Beasts","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,149,224,0,0,114,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":78438}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":56519,"name":"Cloak of War","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":78439}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":56520,"name":"Bloodied Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,237,158,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56521,"name":"Bloodied Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,316,210,0,0,0,0,0,0,0,126,0,0,0,0,148,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56522,"name":"Bloodied Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,158,237,0,0,0,0,95,0,0,0,0,0,0,0,0,111,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56523,"name":"Bloodied Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,210,316,0,0,0,107,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56524,"name":"Bloodied Scale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,237,158,0,80,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56525,"name":"Bloodied Scale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,316,210,0,0,0,113,0,0,0,0,0,0,0,0,156,0,0,0,0,0,1418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56526,"name":"Bloodied Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,158,237,0,0,0,0,0,0,0,0,120,0,0,0,0,80,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56527,"name":"Bloodied Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,210,316,0,0,0,126,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,1702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56528,"name":"Bloodied Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,316,210,156,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56529,"name":"Bloodied Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,316,210,0,0,0,160,0,0,0,0,0,0,0,0,107,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56530,"name":"Bloodied Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,210,316,0,0,0,0,0,0,0,0,152,0,0,0,0,120,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56531,"name":"Bloodied Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,210,316,0,0,0,126,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,1160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56532,"name":"Bloodied Scale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,316,210,113,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,0,1560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56533,"name":"Bloodied Scale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,316,210,0,0,0,144,0,0,0,0,0,0,0,0,133,0,0,0,0,0,1276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56534,"name":"Bloodied Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,210,316,0,0,160,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,0,1560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56535,"name":"Bloodied Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,210,316,0,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56536,"name":"Lightning Lash","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78460}}]}, -{"id":56537,"name":"Belt of Nefarious Whispers","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,233,380,0,0,174,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78461}}]}, -{"id":56538,"name":"Stormleather Sash","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,0,0,188,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78462}}]}, -{"id":56539,"name":"Corded Viper Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,233,380,0,0,0,159,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78463}}]}, -{"id":56540,"name":"Bloodied Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,316,210,0,0,0,107,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56541,"name":"Bloodied Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,425,283,0,0,0,0,0,0,0,215,0,0,0,0,144,0,0,0,0,0,1547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56542,"name":"Bloodied Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,210,316,0,0,0,0,0,126,0,0,0,0,0,0,0,148,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56543,"name":"Bloodied Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,283,425,0,0,144,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56544,"name":"Bloodied Scale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,316,210,0,107,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56545,"name":"Bloodied Scale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,425,283,0,0,152,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56546,"name":"Bloodied Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,210,316,0,0,0,0,0,0,0,0,160,0,0,0,0,107,0,0,0,0,0,1276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56547,"name":"Bloodied Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,283,425,0,0,0,0,170,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56548,"name":"Razor-Edged Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,0,125,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":78475}}]}, -{"id":56549,"name":"Twilight Dragonscale Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[128,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":78476}}]}, -{"id":56552,"name":"Bloodied Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,425,283,170,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56553,"name":"Bloodied Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,425,283,0,0,144,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56554,"name":"Bloodied Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,283,425,0,0,0,0,0,0,0,0,144,0,0,0,0,215,0,0,0,0,0,1547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56555,"name":"Bloodied Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,283,425,0,0,0,152,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56556,"name":"Bloodied Scale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,425,283,0,0,215,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,2269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56557,"name":"Bloodied Scale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,425,283,0,0,0,170,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56558,"name":"Bloodied Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,283,425,0,0,0,0,0,0,0,0,210,0,0,0,0,152,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56559,"name":"Bloodied Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,283,425,0,0,0,215,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,2269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3}, -{"id":56561,"name":"Chestguard of Nature's Fury","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,321,0,0,205,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78487}}]}, -{"id":56562,"name":"Assassin's Chestplate","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,321,512,0,0,173,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78488}}]}, -{"id":56563,"name":"Twilight Scale Chestguard","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,321,0,0,214,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78489}}]}, -{"id":56564,"name":"Dragonkiller Tunic","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,321,512,0,0,0,0,249,0,0,0,163,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":78490}}]}, -{"id":57260,"name":"Nemesis Crushers","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,96,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25923,"name":"Finish Nemesis"}}]}, -{"id":57261,"name":"Tortolla's Discarded Scales","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,95,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25923,"name":"Finish Nemesis"}}]}, -{"id":57262,"name":"Leggings of the Vanquished Usurper","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,176,264,0,0,123,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25923,"name":"Finish Nemesis"}}]}, -{"id":57263,"name":"Liberating Crown","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,264,176,0,124,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25923,"name":"Finish Nemesis"}}]}, -{"id":57264,"name":"Chestplate of Viridian Renewal","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[176,0,264,0,0,0,115,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,2604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25372,"name":"Aessina's Miracle"}}]}, -{"id":57265,"name":"Treads of Restoration","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,131,196,0,0,0,70,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25372,"name":"Aessina's Miracle"}}]}, -{"id":57266,"name":"Gloves of Nurtured Truth","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,196,131,72,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25372,"name":"Aessina's Miracle"}}]}, -{"id":57267,"name":"Rebirth Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,196,131,0,0,68,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25372,"name":"Aessina's Miracle"}}]}, -{"id":57268,"name":"Forgemaster's Shattered Shackle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[131,0,196,0,0,0,0,0,92,79,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25600,"name":"Forgemaster Pyrendius"}}]}, -{"id":57269,"name":"Helm of Terrorizing Fangs","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,176,264,0,0,0,0,129,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25600,"name":"Forgemaster Pyrendius"}}]}, -{"id":57270,"name":"Wolfking Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,131,196,0,0,0,0,90,0,0,0,83,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25600,"name":"Forgemaster Pyrendius"}}]}, -{"id":57271,"name":"Silver Spur Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,196,131,94,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25832,"name":"Return to Aviana"}}]}, -{"id":57272,"name":"Sky-Knight Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,0,87,0,0,0,87,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25832,"name":"Return to Aviana"}}]}, -{"id":57273,"name":"Blinkered Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,264,176,115,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25832,"name":"Return to Aviana"}}]}, -{"id":57274,"name":"Hyjal Savior's Drape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[98,0,148,0,0,0,71,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25551,"name":"The Firelord"}}]}, -{"id":57275,"name":"Hyjal Savior's Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[0,0,148,98,58,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25551,"name":"The Firelord"}}]}, -{"id":57276,"name":"Hyjal Savior's Signet","icon":"inv_misc_vinering","type":11,"stats":[0,98,148,0,0,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25551,"name":"The Firelord"}}]}, -{"id":57277,"name":"Crown of Chelonian Freedom","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[176,0,264,0,0,0,119,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25519,"name":"Children of Tortolla"}}]}, -{"id":57278,"name":"Shadow-Cleanser Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25519,"name":"Children of Tortolla"}}]}, -{"id":57279,"name":"Boots of Infinite Possibility","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,131,196,0,0,90,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,953,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25519,"name":"Children of Tortolla"}}]}, -{"id":57280,"name":"Kilt of Reborn Future","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,264,176,0,0,112,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,958,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25519,"name":"Children of Tortolla"}}]}, -{"id":57297,"name":"Azralon's Twisted Rune","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[54,0,80,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":285,"phase":1,"quality":2,"sources":[{"quest":{"id":25555,"name":"The Gatekeeper"}}]}, -{"id":57855,"name":"Alpha Bracers","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[129,0,224,0,0,80,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57856,"name":"Omega Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,401,248,178,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57857,"name":"Boots of Crumbling Ruin","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,179,298,0,0,113,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57858,"name":"Mantle of Soft Shadows","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,298,159,103,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57860,"name":"Anraphet's Regalia","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,401,228,178,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57861,"name":"Helm of Setesh","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[191,0,401,0,0,0,0,0,97,208,0,0,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57862,"name":"Chaotic Wrappings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,401,228,168,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57863,"name":"Hieroglyphic Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,228,401,0,0,0,158,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57864,"name":"Helm of the Typhonic Beast","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,401,208,0,138,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57865,"name":"Scepter of Power","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,172,114,76,0,76,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":2.3,"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}},{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57866,"name":"Mantle of Soft Shadows","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,337,185,120,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57867,"name":"Boots of Crumbling Ruin","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57868,"name":"Anraphet's Regalia","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,202,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57869,"name":"Omega Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,454,282,202,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57870,"name":"Alpha Bracers","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[148,0,252,0,0,92,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}]}, -{"id":57871,"name":"Helm of the Typhonic Beast","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,162,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57872,"name":"Scepter of Power","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,194,129,86,0,0,86,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57873,"name":"Helm of Setesh","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[216,0,454,0,0,0,0,0,117,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57874,"name":"Hieroglyphic Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,182,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57875,"name":"Chaotic Wrappings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}]}, -{"id":57913,"name":"Beech Green Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[205,0,337,0,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57914,"name":"Girdle of the Mountains","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,110,150,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57915,"name":"Belt of Barred Clouds","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57916,"name":"Belt of the Dim Forest","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57917,"name":"Belt of the Still Stream","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57918,"name":"Sash of Musing","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,205,337,0,0,0,0,0,130,0,0,150,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57919,"name":"Thatch Eave Vines","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57921,"name":"Incense Infused Cummerbund","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57922,"name":"Belt of the Falling Rain","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57923,"name":"Hermit's Lamp","icon":"inv_offhand_outlandraid_03orange","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57924,"name":"Apple-Bent Bough","icon":"inv_staff_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57925,"name":"Shield of the Mists","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57926,"name":"Shield of the Four Grey Towers","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57927,"name":"Throat Slasher","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":3,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":401,"weaponDamageMax":745,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3}, -{"id":57928,"name":"Windslicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":3,"stats":[0,129,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3}, -{"id":57929,"name":"Dawnblaze Blade","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":3,"stats":[129,0,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3}, -{"id":57930,"name":"Pendant of Quiet Breath","icon":"inv_misc_silverjadenecklace","type":2,"stats":[168,0,252,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57931,"name":"Amulet of Dull Dreaming","icon":"inv_misc_forestnecklace","type":2,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57932,"name":"The Lustrous Eye","icon":"inv_misc_necklacea10","type":2,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57933,"name":"String of Beaded Bubbles","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":57934,"name":"Celadon Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58096,"name":"Breastplate of Raging Fury","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[262,0,454,0,0,172,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58097,"name":"Greaves of Gallantry","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[262,0,454,0,0,0,182,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58098,"name":"Helm of Easeful Death","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[242,0,454,0,0,0,0,162,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58099,"name":"Reaping Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,111,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58100,"name":"Pauldrons of the High Requiem","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[205,0,337,0,0,111,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58101,"name":"Chestplate of the Steadfast","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,162,0,182,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58102,"name":"Greaves of Splendor","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[210,0,454,0,0,133,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58103,"name":"Helm of the Proud","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[302,0,454,0,0,0,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58104,"name":"Sunburnt Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[161,0,337,0,0,111,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58105,"name":"Numbing Handguards","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[215,0,337,0,0,0,0,0,0,130,0,140,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58106,"name":"Chestguard of Dancing Waves","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,454,262,192,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58107,"name":"Legguards of the Gentle","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58108,"name":"Crown of the Blazing Sun","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,454,242,172,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58109,"name":"Pauldrons of the Forlorn","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58110,"name":"Gloves of Curious Conscience","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58121,"name":"Vest of the True Companion","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,262,454,0,0,162,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58122,"name":"Hillside Striders","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,262,454,0,0,0,202,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58123,"name":"Willow Mask","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58124,"name":"Wrap of the Valley Glades","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,205,337,0,0,130,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58125,"name":"Gloves of the Passing Night","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58126,"name":"Vest of the Waking Dream","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58127,"name":"Leggings of Soothing Silence","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,454,262,172,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58128,"name":"Helm of the Inward Eye","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,454,242,176,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58129,"name":"Seafoam Mantle","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,337,205,140,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58130,"name":"Gleaning Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58131,"name":"Tunic of Sinking Envy","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,262,454,0,0,162,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58132,"name":"Leggings of the Burrowing Mole","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,262,454,0,0,0,0,0,162,0,0,202,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58133,"name":"Mask of Vines","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58134,"name":"Embrace of the Night","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58138,"name":"Sticky Fingers","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58139,"name":"Chestguard of Forgetfulness","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,454,262,202,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58140,"name":"Leggings of Late Blooms","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,454,262,0,0,0,162,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58150,"name":"Cluster of Stars","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,454,242,182,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58151,"name":"Somber Shawl","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58152,"name":"Blessed Hands of Elune","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58153,"name":"Robes of Embalmed Darkness","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,0,0,0,202,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58154,"name":"Pensive Legwraps","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,454,262,0,0,162,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58155,"name":"Cowl of Pleasant Gloom","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,454,242,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58157,"name":"Meadow Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58158,"name":"Gloves of the Painless Midnight","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,337,205,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58159,"name":"Musk Rose Robes","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58160,"name":"Leggings of Charity","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,454,262,206,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58161,"name":"Mask of New Snow","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,454,242,182,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58162,"name":"Summer Song Shoulderwraps","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58163,"name":"Gloves of Purification","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":58180,"name":"License to Slay","icon":"inv_misc_note_02","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58181,"name":"Fluid Death","icon":"ability_vehicle_liquidpyrite_blue","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58182,"name":"Bedrock Talisman","icon":"inv_misc_armorkit_21","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58183,"name":"Soul Casket","icon":"inv_misc_enggizmos_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58184,"name":"Core of Ripeness","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58185,"name":"Band of Bees","icon":"inv_misc_pearlring1","type":11,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58186,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":58187,"name":"Ring of the Battle Anthem","icon":"inv_jewelry_ring_82","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58188,"name":"Band of Secret Names","icon":"inv_misc_diamondring1","type":11,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58189,"name":"Twined Band of Flowers","icon":"inv_misc_pearlring1","type":11,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":58190,"name":"Floating Web","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[190,0,286,0,0,0,0,0,127,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58191,"name":"Viewless Wings","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58192,"name":"Gray Hair Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58193,"name":"Haunt of Flies","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58194,"name":"Heavenly Breeze","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58195,"name":"Woe Breeder's Boots","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58197,"name":"Rock Furrow Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[181,0,380,0,0,0,0,0,138,223,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58198,"name":"Eternal Pathfinders","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,380,233,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58199,"name":"Moccasins of Verdurous Glooms","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58481,"name":"Boots of the Perilous Seas","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,159,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58482,"name":"Treads of Fleeting Joy","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58483,"name":"Lifebound Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,380,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":1,"spellId":80508}}]}, -{"id":58484,"name":"Fading Violet Sandals","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58485,"name":"Melodious Slippers","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":58486,"name":"Slippers of Moving Waters","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":59117,"name":"Jumbotron Power Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,139,0,159,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59118,"name":"Electron Inductor Coils","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[190,0,286,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59119,"name":"Voltage Source Chestguard","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,198,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59120,"name":"Poison Protocol Pauldrons","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59121,"name":"Lightning Conductor Band","icon":"inv_misc_diamondring1","type":11,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59122,"name":"Organic Lifeform Inverter","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,0,0,97,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":665,"weaponDamageMax":999,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59216,"name":"Life Force Chargers","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59217,"name":"X-Tron Duct Tape","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59218,"name":"Passive Resistor Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59219,"name":"Power Generator Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,168,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59220,"name":"Security Measure Alpha","icon":"inv_misc_rubystar","type":11,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":59221,"name":"Massacre Treads","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,0,0,149,0,0,169,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59222,"name":"Spaulders of the Scarred Lady","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59223,"name":"Double Attack Handguards","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,0,0,149,0,0,169,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59224,"name":"Heart of Rage","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59225,"name":"Plated Fists of Provocation","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59233,"name":"Bile-O-Tron Nut","icon":"inv_misc_gear_01","type":11,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59234,"name":"Quickstep Galoshes","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59310,"name":"Chaos Beast Bracers","icon":"inv_bracer_raidshaman_i_01","type":6,"armorType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59311,"name":"Burden of Mortality","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59312,"name":"Helm of the Blind Seer","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59313,"name":"Brackish Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59314,"name":"Pip's Solution Agitator","icon":"inv_wand_1h_grimbatolraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,72,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1109,"weaponDamageMax":2061,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59315,"name":"Boots of Vertigo","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59316,"name":"Battleplate of Ancient Kings","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59317,"name":"Legguards of the Unseeing","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[239,0,512,0,0,0,0,0,133,0,321,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59318,"name":"Sark of the Unwatched","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59319,"name":"Ironstar Amulet","icon":"inv_misc_necklacea3","type":2,"stats":[145,0,286,0,0,96,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59320,"name":"Themios the Darkbringer","icon":"inv_bow_1h_bwdraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,107,161,0,0,0,72,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1265,"weaponDamageMax":2350,"weaponSpeed":2.9,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59321,"name":"Belt of the Nightmare","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59322,"name":"Bracers of the Burningeye","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59324,"name":"Gloves of Cacophony","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59325,"name":"Mantle of Roaring Flames","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59326,"name":"Bell of Enraging Resonance","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59327,"name":"Kingdom's Heart","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":59328,"name":"Molten Tantrum Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,161,0,128,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59329,"name":"Parasitic Bands","icon":"inv_bracer_leatherraidrogue_i_01","type":6,"armorType":2,"stats":[0,190,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59330,"name":"Shalug'doom, the Axe of Unmaking","icon":"inv_axe_122","type":13,"weaponType":1,"handType":4,"stats":[341,0,512,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59331,"name":"Leggings of Lethal Force","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59332,"name":"Symbiotic Worm","icon":"inv_qiraj_skinsandworm","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59333,"name":"Lava Spine","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59334,"name":"Lifecycle Waistguard","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59335,"name":"Scorched Wormling Vest","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,188,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59336,"name":"Flame Pillar Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59337,"name":"Mantle of Nefarius","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,164,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59340,"name":"Breastplate of Avenging Flame","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,301,198,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59341,"name":"Incineratus","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,219,146,0,0,0,97,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59342,"name":"Belt of Absolute Zero","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59343,"name":"Aberration's Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59344,"name":"Dragon Bone Warhelm","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,0,0,0,113,0,0,281,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59346,"name":"Tunic of Failed Experiments","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,228,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59347,"name":"Mace of Acrid Death","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59348,"name":"Cloak of Biting Chill","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,190,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59349,"name":"Belt of Arcane Storms","icon":"inv_belt_cloth_raidwarlock_i_01","type":8,"armorType":1,"stats":[0,0,380,233,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59350,"name":"Treads of Flawless Creation","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59351,"name":"Legwraps of the Greatest Son","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,301,198,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59352,"name":"Flash Freeze Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59353,"name":"Leggings of Consuming Flames","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,218,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59354,"name":"Jar of Ancient Remedies","icon":"inv_misc_cat_trinket06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":59355,"name":"Chimaeron Armguards","icon":"inv_bracer_mail_raidhunter_i_01","type":6,"armorType":3,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59356,"name":"Pauldrons of the Apocalypse","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,0,0,0,108,0,233,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59359,"name":"Reinforced Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81714}}]}, -{"id":59364,"name":"Overpowered Chicken Splitter","icon":"inv_weapon_bow_60","type":14,"rangedWeaponType":1,"stats":[0,95,143,0,0,0,68,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1082,"weaponDamageMax":2010,"weaponSpeed":2.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":4,"spellId":84431}}]}, -{"id":59367,"name":"Kickback 5000","icon":"inv_weapon_rifle_44","type":14,"rangedWeaponType":3,"stats":[0,75,143,0,0,0,65,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1082,"weaponDamageMax":2010,"weaponSpeed":2.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":4,"spellId":84432}}]}, -{"id":59441,"name":"Prestor's Talisman of Machination","icon":"inv_jewelry_necklace_17","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59442,"name":"Rage of Ages","icon":"inv_misc_necklacea8","type":2,"stats":[190,0,286,0,0,127,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59443,"name":"Crul'korak, the Lightning's Arc","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59444,"name":"Akmin-Kurai, Dominion's Shield","icon":"inv_shield_bwdraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59448,"name":"Specialized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81715}}]}, -{"id":59449,"name":"Lightweight Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81725}}]}, -{"id":59450,"name":"Belt of the Blackhand","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59451,"name":"Manacles of the Sleeping Beast","icon":"inv_bracer_leather_raiddruid_i_01","type":6,"armorType":2,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":59452,"name":"Crown of Burning Waters","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,228,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59453,"name":"Camouflage Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81724}}]}, -{"id":59454,"name":"Shadowblaze Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59455,"name":"Agile Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,301,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81722}}]}, -{"id":59456,"name":"Deadly Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,301,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81716}}]}, -{"id":59457,"name":"Shadow of Dread","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59458,"name":"Energized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":81720}}]}, -{"id":59459,"name":"Andoros, Fist of the Dragon King","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":59460,"name":"Theresa's Booklight","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,0,72,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1109,"weaponDamageMax":2061,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59461,"name":"Fury of Angerforge","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59462,"name":"Maimgor's Bite","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":3,"stats":[0,146,219,0,0,97,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59463,"name":"Maldo's Sword Cane","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,219,146,0,0,88,0,0,0,0,103,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59464,"name":"Treads of Savage Beatings","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59465,"name":"Corehammer's Riveted Girdle","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59466,"name":"Ironstar's Impenetrable Cover","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59467,"name":"Hide of Chromaggus","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59468,"name":"Shadowforge's Lightbound Smock","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,228,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":59469,"name":"Storm Rider's Boots","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,233,380,0,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59470,"name":"Bracers of Impossible Strength","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59471,"name":"Pauldrons of the Great Ettin","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59472,"name":"Proto-Handler's Gauntlets","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59473,"name":"Essence of the Cyclone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59474,"name":"Malevolence","icon":"inv_stave_2h_grimbatolraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":1795,"weaponSpeed":2.4,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59475,"name":"Bracers of the Bronze Flight","icon":"inv_bracer_robe_raidmage_i_01","type":6,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59476,"name":"Legguards of the Emerald Brood","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,512,301,228,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59481,"name":"Helm of the Nether Scion","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,244,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59482,"name":"Robes of the Burning Acolyte","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,198,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59483,"name":"Wyrmbreaker's Amulet","icon":"inv_misc_necklacea7","type":2,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59484,"name":"Book of Binding Will","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":59485,"name":"Coil of Ten-Thousand Screams","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59486,"name":"Battleplate of the Apocalypse","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[239,0,512,0,0,173,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59487,"name":"Helm of Maddening Whispers","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59490,"name":"Membrane of C'Thun","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59492,"name":"Akirus the Worm-Breaker","icon":"inv_mace_2h_grimbatolraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,0,228,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":59494,"name":"Uhn'agh Fash, the Darkest Betrayal","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":841,"weaponSpeed":1.4,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59495,"name":"Treads of Hideous Transformation","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59497,"name":"Shackles of the End of Days","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59498,"name":"Hands of the Twilight Council","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59499,"name":"Kilt of the Forgotten Battle","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59500,"name":"Fall of Mortality","icon":"inv_misc_cat_trinket12","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59501,"name":"Signet of the Fifth Circle","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":59502,"name":"Dispersing Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59503,"name":"Terrastra's Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59504,"name":"Arion's Crown","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,0,178,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59505,"name":"Gravitational Pull","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[183,0,380,0,0,0,0,0,108,0,0,243,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59506,"name":"Crushing Weight","icon":"inv_misc_cat_trinket05","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59507,"name":"Glittering Epidermis","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59508,"name":"Treads of Liquid Ice","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59509,"name":"Glaciated Helm","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,512,281,218,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59510,"name":"Feludius' Mantle","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,154,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59511,"name":"Hydrolance Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59512,"name":"Valiona's Medallion","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59513,"name":"Scepter of Ice","icon":"inv_crystallized_water","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59514,"name":"Heart of Ignacious","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":59515,"name":"Vial of Stolen Memories","icon":"inv_misc_cat_trinket02","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59516,"name":"Drape of the Twins","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59517,"name":"Necklace of Strife","icon":"inv_misc_necklacea8","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59518,"name":"Ring of Rivalry","icon":"inv_misc_diamondring3","type":11,"stats":[190,0,286,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59519,"name":"Theralion's Mirror","icon":"spell_arcane_teleportironforge","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":59520,"name":"Unheeded Warning","icon":"inv_misc_cat_trinket11","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":59521,"name":"Soul Blade","icon":"inv_sword_1h_grimbatolraid_d_01-","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,97,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":59525,"name":"Chelley's Staff of Dark Mending","icon":"inv_stave_2h_grimbatolraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,228,0,0,0,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":1795,"weaponSpeed":2.4,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":59598,"name":"Finely-Tuned Throat Needler","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,84,126,0,0,0,49,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":993,"weaponDamageMax":1844,"weaponSpeed":2.9,"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":4,"spellId":84420}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":59599,"name":"Volatile Thunderstick","icon":"inv_weapon_rifle_43","type":14,"rangedWeaponType":3,"stats":[0,84,126,0,0,0,56,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":958,"weaponDamageMax":1781,"weaponSpeed":2.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"crafted":{"profession":4,"spellId":84417}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":59601,"name":"Submariner's Weighted Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,85,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26194,"name":"Defending the Rift"}}],"factionRestriction":2}, -{"id":59602,"name":"Signet of the Lookout","icon":"inv_misc_stonering1","type":11,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26194,"name":"Defending the Rift"}}],"factionRestriction":2}, -{"id":59603,"name":"Drape of the Helmsman","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,98,148,0,0,0,0,62,0,0,0,68,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26194,"name":"Defending the Rift"}}],"factionRestriction":2}, -{"id":59604,"name":"Submariner's Weighted Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,85,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26193,"name":"Defending the Rift"}}],"factionRestriction":1}, -{"id":59605,"name":"Signet of the Lookout","icon":"inv_misc_stonering1","type":11,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26193,"name":"Defending the Rift"}}],"factionRestriction":1}, -{"id":59606,"name":"Drape of the Helmsman","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,98,148,0,0,0,0,62,0,0,0,68,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26193,"name":"Defending the Rift"}}],"factionRestriction":1}, -{"id":59607,"name":"Hallazeal's Demise","icon":"inv_misc_kingsring1","type":11,"stats":[98,0,148,0,0,0,0,0,58,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26143,"name":"All that Rises"}}]}, -{"id":59608,"name":"Chestguard of the Expired Deity","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,176,264,0,0,112,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26143,"name":"All that Rises"}}]}, -{"id":59609,"name":"Bracers of the Vanquished God","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,148,98,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26143,"name":"All that Rises"}}]}, -{"id":59610,"name":"Bottled Neurons","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,148,98,0,0,0,68,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26143,"name":"All that Rises"}}]}, -{"id":59626,"name":"Wil'hai's Extraneous Tooth","icon":"inv_misc_monsterhorn_08","type":14,"rangedWeaponType":4,"stats":[54,0,80,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":285,"phase":1,"quality":2,"sources":[{"quest":{"id":26065,"name":"Free Wil'hai"}}]}, -{"id":59637,"name":"Fetish of Azrajar","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,54,80,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":285,"phase":1,"quality":2,"sources":[{"quest":{"id":25980,"name":"A Standard Day for Azrajar"}}],"factionRestriction":2}, -{"id":59640,"name":"Fetish of Azrajar","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,54,80,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":285,"phase":1,"quality":2,"sources":[{"quest":{"id":25977,"name":"A Standard Day for Azrajar"}}],"factionRestriction":1}, -{"id":59665,"name":"Emerald Dragonet Choker","icon":"inv_misc_necklacea11","type":2,"stats":[98,0,148,0,0,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3}, -{"id":59666,"name":"Volaren's Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,75,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26135,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":2}, -{"id":59667,"name":"Pearlescent Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,196,131,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26135,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":2}, -{"id":59668,"name":"Quel'Dormir Signet Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":26135,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":2}, -{"id":59669,"name":"Emerald Dragonet Choker","icon":"inv_misc_necklacea11","type":2,"stats":[98,0,148,0,0,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25626,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":1}, -{"id":59670,"name":"Volaren's Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,75,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25626,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":1}, -{"id":59671,"name":"Pearlescent Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,196,131,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25626,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":1}, -{"id":59672,"name":"Quel'Dormir Signet Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25626,"name":"Visions of the Past: Rise from the Deep"}}],"factionRestriction":1}, -{"id":59685,"name":"Kvaldir Battle Standard","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25966,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":2}, -{"id":59686,"name":"Grips of the Kvaldir","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,75,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25966,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":2}, -{"id":59687,"name":"Battlemaiden's Vision","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,176,264,0,0,0,0,0,109,0,0,123,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25966,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":2}, -{"id":59688,"name":"Ancient Beth'moran Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25966,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":2}, -{"id":59689,"name":"Kvaldir Battle Standard","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25755,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":1}, -{"id":59690,"name":"Grips of the Kvaldir","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,75,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25755,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":1}, -{"id":59691,"name":"Battlemaiden's Vision","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,176,264,0,0,0,0,0,109,0,0,123,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25755,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":1}, -{"id":59692,"name":"Ancient Beth'moran Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25755,"name":"Visions of the Past: The Slaughter of Biel'aran Ridge"}}],"factionRestriction":1}, -{"id":59782,"name":"Prismatic Periwinkle Band","icon":"inv_jewelry_ring_64","type":11,"stats":[98,0,148,0,0,0,58,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25419,"name":"Lady La-La's Medallion"}}]}, -{"id":59783,"name":"Damselfish Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,196,131,85,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25419,"name":"Lady La-La's Medallion"}}]}, -{"id":59784,"name":"Dreamfrond Skirt","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,264,176,128,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,958,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25419,"name":"Lady La-La's Medallion"}}]}, -{"id":59785,"name":"Pounded Pewter Links","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[131,0,196,0,0,0,0,0,0,77,94,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25743,"name":"Decisions, Decisions"}}]}, -{"id":59786,"name":"Wristguards of Prophetic Perishing","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,98,148,0,0,0,0,64,0,0,0,67,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25743,"name":"Decisions, Decisions"}}]}, -{"id":59787,"name":"God-Grinding Grips","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,196,131,0,0,92,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":288,"phase":1,"quality":3,"sources":[{"quest":{"id":25743,"name":"Decisions, Decisions"}}]}, -{"id":59901,"name":"Heaving Plates of Protection","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,129,169,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":60201,"name":"Phase-Twister Leggings","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":60202,"name":"Tsanga's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,0,168,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":60210,"name":"Crossfire Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[107,0,161,0,0,0,0,0,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1309,"weaponDamageMax":2431,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":60211,"name":"Bracers of the Dark Pool","icon":"inv_bracer_04","type":6,"armorType":1,"stats":[0,0,286,190,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":60226,"name":"Dargonax's Signet","icon":"inv_misc_rubystar","type":11,"stats":[229,0,344,0,0,0,113,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60227,"name":"Caelestrasz's Will","icon":"inv_jewelry_necklace_46","type":2,"stats":[229,0,344,0,0,0,0,0,0,138,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60228,"name":"Bracers of the Mat'redor","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[229,0,344,0,0,0,153,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60229,"name":"War-Torn Crushers","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[306,0,458,0,0,0,0,0,0,184,144,0,0,0,0,0,0,0,0,0,0,0,2497,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60230,"name":"Twilight Scale Leggings","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,351,617,0,0,0,254,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60231,"name":"Belt of the Fallen Brood","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,266,458,0,0,0,204,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60232,"name":"Shroud of Endless Grief","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"stats":[0,0,344,209,0,0,0,133,0,0,0,153,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60233,"name":"Shard of Woe","icon":"spell_frost_iceshard","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60234,"name":"Bindings of Bleak Betrayal","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,344,209,153,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60235,"name":"Boots of Az'galada","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,458,266,174,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1796,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60236,"name":"Nightmare Rider's Boots","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,458,266,164,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60237,"name":"Crown of the Twilight Queen","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,617,351,0,0,264,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1136,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60238,"name":"Bracers of the Dark Mother","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,344,209,133,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":379,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Sinestra"}}]}, -{"id":60243,"name":"Firelord's Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":60244,"name":"Firelord's Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":60245,"name":"Firelord's Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":60246,"name":"Firelord's Mantle","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":60247,"name":"Firelord's Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":60248,"name":"Shadowflame Handwraps","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":60249,"name":"Shadowflame Hood","icon":"inv_helmet_cloth_raidwarlock_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":60250,"name":"Shadowflame Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":60251,"name":"Shadowflame Robes","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":60252,"name":"Shadowflame Mantle","icon":"inv_shoulder_cloth_raidwarlock_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":60253,"name":"Mercurial Shoulderwraps","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":60254,"name":"Mercurial Vestment","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":60255,"name":"Mercurial Leggings","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":60256,"name":"Mercurial Hood","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":60257,"name":"Mercurial Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":60258,"name":"Mercurial Cowl","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":60259,"name":"Mercurial Robes","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,198,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":60261,"name":"Mercurial Legwraps","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":60262,"name":"Mercurial Mantle","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":60275,"name":"Mercurial Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":60276,"name":"Stormrider's Robes","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":60277,"name":"Stormrider's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,208,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":60278,"name":"Stormrider's Legwraps","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,208,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":60279,"name":"Stormrider's Mantle","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":60280,"name":"Stormrider's Handwraps","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":60281,"name":"Stormrider's Vestment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":60282,"name":"Stormrider's Cover","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":60283,"name":"Stormrider's Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":60284,"name":"Stormrider's Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":60285,"name":"Stormrider's Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":60286,"name":"Stormrider's Headpiece","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":60287,"name":"Stormrider's Raiment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":60288,"name":"Stormrider's Legguards","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":60289,"name":"Stormrider's Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":60290,"name":"Stormrider's Grips","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":60298,"name":"Wind Dancer's Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":60299,"name":"Wind Dancer's Helmet","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":60300,"name":"Wind Dancer's Legguards","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":60301,"name":"Wind Dancer's Tunic","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":60302,"name":"Wind Dancer's Spaulders","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":60303,"name":"Lightning-Charged Headguard","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,0,228,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":60304,"name":"Lightning-Charged Tunic","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,0,188,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":60305,"name":"Lightning-Charged Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":60306,"name":"Lightning-Charged Spaulders","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":60307,"name":"Lightning-Charged Gloves","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":60308,"name":"Faceguard of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,208,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":60309,"name":"Tunic of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":60310,"name":"Legwraps of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,218,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":60311,"name":"Mantle of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":60312,"name":"Handwraps of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":60313,"name":"Hauberk of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":60314,"name":"Gloves of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":60315,"name":"Headpiece of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,0,0,0,168,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":60316,"name":"Kilt of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":60317,"name":"Shoulderwraps of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":60318,"name":"Cuirass of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,0,188,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":60319,"name":"Grips of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":60320,"name":"Helmet of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,228,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":60321,"name":"Legguards of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":60322,"name":"Spaulders of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":60323,"name":"Earthen Battleplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":60324,"name":"Earthen Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":60325,"name":"Earthen Helmet","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":60326,"name":"Earthen Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":60327,"name":"Earthen Pauldrons","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":60328,"name":"Earthen Faceguard","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":60329,"name":"Earthen Chestguard","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":60330,"name":"Earthen Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":60331,"name":"Earthen Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":60332,"name":"Earthen Handguards","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":60339,"name":"Magma Plated Battleplate","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":60340,"name":"Magma Plated Gauntlets","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":60341,"name":"Magma Plated Helmet","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":60342,"name":"Magma Plated Legplates","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":60343,"name":"Magma Plated Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":60344,"name":"Reinforced Sapphirium Battleplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":60345,"name":"Reinforced Sapphirium Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":60346,"name":"Reinforced Sapphirium Helmet","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":60347,"name":"Reinforced Sapphirium Legplates","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":60348,"name":"Reinforced Sapphirium Pauldrons","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":60349,"name":"Magma Plated Chestguard","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":60350,"name":"Magma Plated Handguards","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":60351,"name":"Magma Plated Faceguard","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":60352,"name":"Magma Plated Legguards","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":60353,"name":"Magma Plated Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":60354,"name":"Reinforced Sapphirium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":60355,"name":"Reinforced Sapphirium Handguards","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":60356,"name":"Reinforced Sapphirium Faceguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":60357,"name":"Reinforced Sapphirium Legguards","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":60358,"name":"Reinforced Sapphirium Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":60359,"name":"Reinforced Sapphirium Headguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":60360,"name":"Reinforced Sapphirium Breastplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":60361,"name":"Reinforced Sapphirium Greaves","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,512,301,213,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":60362,"name":"Reinforced Sapphirium Mantle","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":60363,"name":"Reinforced Sapphirium Gloves","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":60403,"name":"Elementium Dragonling","icon":"inv_misc_head_dragon_bronze","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"crafted":{"profession":4,"spellId":84418}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":60408,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":60409,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":60410,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":60411,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":60412,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":60413,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":60414,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":60415,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":60416,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":60417,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":60418,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":60419,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":60420,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":60421,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":60422,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":60423,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920}, -{"id":60424,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920}, -{"id":60425,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920}, -{"id":60426,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920}, -{"id":60427,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920}, -{"id":60428,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":60429,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":60430,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":60431,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":60432,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":60433,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":60434,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":60435,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":60436,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":60437,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":60438,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":60439,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":60440,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":60441,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":60442,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":60443,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":60444,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":60445,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":60446,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":60447,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":60448,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":60449,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":60450,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":60451,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":60452,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":60453,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":60454,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":60455,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":60456,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":60457,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":60458,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":60459,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":60460,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":60461,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":60462,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":60463,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919}, -{"id":60464,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919}, -{"id":60465,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919}, -{"id":60466,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919}, -{"id":60467,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919}, -{"id":60468,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916}, -{"id":60469,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916}, -{"id":60470,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916}, -{"id":60471,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916}, -{"id":60472,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916}, -{"id":60473,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915}, -{"id":60474,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915}, -{"id":60475,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915}, -{"id":60476,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915}, -{"id":60477,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915}, -{"id":60478,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910}, -{"id":60479,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910}, -{"id":60480,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910}, -{"id":60481,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910}, -{"id":60482,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910}, -{"id":60505,"name":"Vicious Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60506,"name":"Vicious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60507,"name":"Vicious Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60508,"name":"Vicious Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[248,0,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60509,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[248,0,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60510,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[201,0,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60512,"name":"Vicious Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[201,0,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60513,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[248,0,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60514,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[248,0,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60515,"name":"Vicious Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60516,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60517,"name":"Vicious Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60518,"name":"Vicious Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60519,"name":"Vicious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4]}, -{"id":60520,"name":"Vicious Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60521,"name":"Vicious Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[248,0,402,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60522,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[248,0,402,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60523,"name":"Vicious Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[201,0,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60524,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,181,301,0,0,0,134,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1525,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60525,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60526,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60527,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60528,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60529,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[201,0,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60533,"name":"Vicious Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60534,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60535,"name":"Vicious Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60536,"name":"Vicious Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60537,"name":"Vicious Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60538,"name":"Vicious Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60539,"name":"Vicious Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60540,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60541,"name":"Vicious Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":60551,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60552,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60553,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,201,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60554,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60555,"name":"Vicious Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60556,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,201,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60557,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60558,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60559,"name":"Vicious Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,201,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60560,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,201,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60561,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,248,402,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60562,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,248,402,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60563,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60564,"name":"Vicious Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60565,"name":"Vicious Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,201,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60566,"name":"Vicious Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60567,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60568,"name":"Vicious Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60569,"name":"Vicious Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":60570,"name":"Vicious Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60571,"name":"Vicious Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":60580,"name":"Vicious Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60581,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60582,"name":"Vicious Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60583,"name":"Vicious Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60584,"name":"Vicious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60585,"name":"Vicious Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60586,"name":"Vicious Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60587,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60588,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,201,286,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60589,"name":"Vicious Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60590,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,248,382,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60591,"name":"Vicious Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,201,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60592,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,248,382,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60593,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60594,"name":"Vicious Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,201,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60595,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,248,382,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60596,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,248,382,0,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60597,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,201,286,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60598,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,201,286,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60599,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,248,382,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60600,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,248,382,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60601,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":60602,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":60603,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":60604,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":60605,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":60606,"name":"Vicious Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60607,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60608,"name":"Vicious Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60609,"name":"Vicious Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60610,"name":"Vicious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":60611,"name":"Vicious Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":60612,"name":"Vicious Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60613,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60614,"name":"Vicious Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60626,"name":"Vicious Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60627,"name":"Vicious Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60628,"name":"Vicious Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,301,201,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60629,"name":"Vicious Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60630,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60631,"name":"Vicious Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60632,"name":"Vicious Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60633,"name":"Vicious Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60634,"name":"Vicious Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60635,"name":"Vicious Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60636,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60637,"name":"Vicious Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8]}, -{"id":60645,"name":"Vicious Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60646,"name":"Vicious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60647,"name":"Vicious Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,301,201,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60648,"name":"Vicious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60649,"name":"Vicious Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":60650,"name":"Vicious Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[201,0,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":60651,"name":"Vicious Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[201,0,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":60652,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[201,0,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60653,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[201,0,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60654,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[201,0,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60655,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,201,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60656,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,201,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60657,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,201,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60658,"name":"Vicious Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,201,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":60659,"name":"Vicious Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,201,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":60660,"name":"Vicious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60661,"name":"Vicious Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,301,201,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60662,"name":"Vicious Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,301,201,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60663,"name":"Vicious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60664,"name":"Vicious Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":60665,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,201,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60666,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,201,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60667,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,201,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60668,"name":"Vicious Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,201,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":60669,"name":"Vicious Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,201,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":60670,"name":"Vicious Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[201,0,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60671,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[201,0,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60672,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[201,0,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60673,"name":"Vicious Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_45","type":2,"stats":[201,0,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60674,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[201,0,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60774,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"stats":[201,0,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60775,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"stats":[201,0,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60776,"name":"Vicious Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"stats":[201,0,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60777,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"stats":[201,0,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60778,"name":"Vicious Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[201,0,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":60779,"name":"Vicious Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,201,301,0,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":60780,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"stats":[0,201,301,0,0,0,0,0,134,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60781,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"stats":[0,201,301,0,0,0,0,134,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60782,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"stats":[0,201,301,0,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60783,"name":"Vicious Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"stats":[0,201,301,0,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":60784,"name":"Vicious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,301,201,0,0,134,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60785,"name":"Vicious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,301,201,0,134,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true}, -{"id":60786,"name":"Vicious Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"stats":[0,0,301,201,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60787,"name":"Vicious Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,0,301,201,0,0,0,0,0,0,0,134,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":60788,"name":"Vicious Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"stats":[0,0,301,201,134,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":60794,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60795,"name":"Vicious Gladiator's Medallion of Accuracy","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60796,"name":"Vicious Gladiator's Medallion of Alacrity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60797,"name":"Vicious Gladiator's Medallion of Prowess","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60798,"name":"Vicious Gladiator's Medallion of Command","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60799,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60800,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":1}, -{"id":60801,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60802,"name":"Vicious Gladiator's Medallion of Accuracy","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60803,"name":"Vicious Gladiator's Medallion of Alacrity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60804,"name":"Vicious Gladiator's Medallion of Prowess","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60805,"name":"Vicious Gladiator's Medallion of Command","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60806,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":60807,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"unique":true,"factionRestriction":2}, -{"id":61026,"name":"Vicious Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61027,"name":"Vicious Gladiator's Emblem of Accuracy","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61028,"name":"Vicious Gladiator's Emblem of Alacrity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61029,"name":"Vicious Gladiator's Emblem of Prowess","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61030,"name":"Vicious Gladiator's Emblem of Proficiency","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61031,"name":"Vicious Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61032,"name":"Vicious Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61033,"name":"Vicious Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61034,"name":"Vicious Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61035,"name":"Vicious Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61045,"name":"Vicious Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61046,"name":"Vicious Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61047,"name":"Vicious Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":61324,"name":"Vicious Gladiator's Cleaver","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61325,"name":"Vicious Gladiator's Hacker","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61326,"name":"Vicious Gladiator's Decapitator","icon":"inv_axe_2h_pvp400_c_01","type":13,"weaponType":1,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61327,"name":"Vicious Gladiator's Shanker","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":665,"weaponDamageMax":999,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4}, -{"id":61328,"name":"Vicious Gladiator's Shiv","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":841,"weaponSpeed":1.4,"ilvl":359,"phase":1,"quality":4}, -{"id":61329,"name":"Vicious Gladiator's Spellblade","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,219,146,0,0,97,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61330,"name":"Vicious Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61331,"name":"Vicious Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61332,"name":"Vicious Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61333,"name":"Vicious Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61335,"name":"Vicious Gladiator's Pummeler","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61336,"name":"Vicious Gladiator's Bonecracker","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61338,"name":"Vicious Gladiator's Gavel","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,219,146,0,0,97,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61339,"name":"Vicious Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61340,"name":"Vicious Gladiator's Pike","icon":"inv_polearm_2h_pvp400_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61341,"name":"Vicious Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,228,0,0,0,0,0,0,0,1955,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":997,"weaponDamageMax":1496,"weaponSpeed":2,"ilvl":359,"phase":1,"quality":4}, -{"id":61342,"name":"Vicious Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,228,0,0,0,0,0,0,0,0,0,1955,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":997,"weaponDamageMax":1496,"weaponSpeed":2,"ilvl":359,"phase":1,"quality":4}, -{"id":61343,"name":"Vicious Gladiator's Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":997,"weaponDamageMax":1496,"weaponSpeed":2,"ilvl":359,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":61344,"name":"Vicious Gladiator's Slicer","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61345,"name":"Vicious Gladiator's Quickblade","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61346,"name":"Vicious Gladiator's Greatsword","icon":"inv_sword_2h_pvp400_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2693,"weaponSpeed":3.6,"ilvl":359,"phase":1,"quality":4}, -{"id":61347,"name":"Vicious Gladiator's War Edge","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[107,0,161,0,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":947,"weaponDamageMax":1421,"weaponSpeed":1.9,"ilvl":359,"phase":1,"quality":4}, -{"id":61348,"name":"Vicious Gladiator's Hatchet","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[0,107,161,0,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":947,"weaponDamageMax":1421,"weaponSpeed":1.9,"ilvl":359,"phase":1,"quality":4}, -{"id":61350,"name":"Vicious Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1171,"weaponDamageMax":2176,"weaponSpeed":1.9,"ilvl":359,"phase":1,"quality":4}, -{"id":61351,"name":"Vicious Gladiator's Baton of Light","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,72,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1171,"weaponDamageMax":2176,"weaponSpeed":1.9,"ilvl":359,"phase":1,"quality":4}, -{"id":61353,"name":"Vicious Gladiator's Longbow","icon":"inv_bow_1h_pvp400_c_01","type":14,"rangedWeaponType":1,"stats":[0,107,161,0,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4}, -{"id":61354,"name":"Vicious Gladiator's Rifle","icon":"firearm_2h_rifle_pvp400_c_01","type":14,"rangedWeaponType":3,"stats":[0,107,161,0,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4}, -{"id":61355,"name":"Vicious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_39","type":14,"rangedWeaponType":2,"stats":[0,107,161,0,0,0,72,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4}, -{"id":61357,"name":"Vicious Gladiator's Endgame","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":61358,"name":"Vicious Gladiator's Reprieve","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":61359,"name":"Vicious Gladiator's Shield Wall","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":61360,"name":"Vicious Gladiator's Barrier","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":61361,"name":"Vicious Gladiator's Redoubt","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":61388,"name":"Vicious Gladiator's Relic of Dominance","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,170,114,0,0,76,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,1,7]}, -{"id":61389,"name":"Vicious Gladiator's Relic of Salvation","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,170,114,76,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,1,7]}, -{"id":61390,"name":"Vicious Gladiator's Relic of Triumph","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,114,170,0,0,0,76,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1,7]}, -{"id":61391,"name":"Vicious Gladiator's Relic of Conquest","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[114,0,170,0,0,0,76,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4,10]}, -{"id":61395,"name":"Shoulderpads of Reconstruction","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,173,260,0,0,0,0,124,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":27938,"name":"The Middle Fragment"}}]}, -{"id":61396,"name":"Leggings of Fragmented Hope","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,233,349,0,0,177,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":27938,"name":"The Middle Fragment"}}]}, -{"id":61397,"name":"Pillarbind Waistguard","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,260,173,0,0,0,115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":27938,"name":"The Middle Fragment"}}]}, -{"id":61398,"name":"Axe of Earthly Sundering","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[233,0,349,0,0,0,160,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1123,"weaponDamageMax":1685,"weaponSpeed":3.3,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":27937,"name":"The Hero Returns"}}]}, -{"id":61399,"name":"Emerald Heart","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[65,0,97,0,0,0,0,0,0,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27932,"name":"The Axe of Earthly Sundering"}}]}, -{"id":61400,"name":"Size-Cutting Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,173,115,77,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27932,"name":"The Axe of Earthly Sundering"}}]}, -{"id":61401,"name":"Rigid Colossus Fragment","icon":"inv_weapon_shortblade_42","type":14,"rangedWeaponType":5,"stats":[0,65,97,0,0,38,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":448,"weaponDamageMax":833,"weaponSpeed":1.7,"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27932,"name":"The Axe of Earthly Sundering"}}]}, -{"id":61402,"name":"Riftrent Waraxe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[100,0,150,0,0,67,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26971,"name":"The Binding"}}]}, -{"id":61403,"name":"Spire of Defiance","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,349,233,0,151,0,0,0,0,0,158,0,0,1334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1123,"weaponDamageMax":1685,"weaponSpeed":3.3,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26971,"name":"The Binding"}}]}, -{"id":61404,"name":"Blacksoul Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,233,349,0,0,0,0,158,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":893,"weaponDamageMax":1659,"weaponSpeed":3,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26971,"name":"The Binding"}}]}, -{"id":61405,"name":"Dimension Spike","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,0,73,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":397,"weaponDamageMax":738,"weaponSpeed":1.8,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26971,"name":"The Binding"}}]}, -{"id":61406,"name":"Stonerender Drape","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[115,0,173,0,0,0,0,0,0,78,0,75,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26832,"name":"Therazane's Mercy"}}]}, -{"id":61407,"name":"Rune-Scribed Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,230,153,102,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26832,"name":"Therazane's Mercy"}}]}, -{"id":61408,"name":"Lorthuna's Broken Shackles","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,173,115,66,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26832,"name":"Therazane's Mercy"}}]}, -{"id":61409,"name":"Therazane's Seal","icon":"inv_misc_moodring2","type":11,"stats":[115,0,173,0,0,0,79,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26752,"name":"Audience with the Stonemother"}}]}, -{"id":61410,"name":"Clutch of the Stonemother","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,206,309,0,0,145,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26752,"name":"Audience with the Stonemother"}}]}, -{"id":61411,"name":"Stonemother's Kiss","icon":"inv_misc_gem_ruby_01","type":12,"stats":[0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26752,"name":"Audience with the Stonemother"}}]}, -{"id":61412,"name":"Fungus-Stained Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,175,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26583,"name":"Wrath of the Fungalmancer"}}]}, -{"id":61413,"name":"Mushroom Stompers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,260,173,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26583,"name":"Wrath of the Fungalmancer"}}]}, -{"id":61414,"name":"Sporeshot","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,73,110,0,0,0,55,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":833,"weaponDamageMax":1549,"weaponSpeed":2.8,"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26583,"name":"Wrath of the Fungalmancer"}}]}, -{"id":61415,"name":"Cloak of Fungal Growth","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[115,0,173,0,0,0,60,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26579,"name":"Gone Soft"}}]}, -{"id":61416,"name":"Girdle of Bolete Explosion","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,230,153,0,0,0,90,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26579,"name":"Gone Soft"}}]}, -{"id":61417,"name":"Spore-Soaked Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,309,206,124,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26579,"name":"Gone Soft"}}]}, -{"id":61418,"name":"Terrath's Rocky Spaulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[153,0,230,0,0,0,0,0,0,99,104,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26659,"name":"Resonating Blow"}}]}, -{"id":61419,"name":"Stonescale Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,309,206,149,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26659,"name":"Resonating Blow"}}]}, -{"id":61420,"name":"Dragonsaw Boneblade","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,88,133,0,0,0,52,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":508,"weaponDamageMax":945,"weaponSpeed":2.6,"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26659,"name":"Resonating Blow"}}]}, -{"id":61421,"name":"Petrified Stone Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[115,0,173,0,0,0,73,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26575,"name":"Rock Bottom"}}]}, -{"id":61422,"name":"Basilisk Eye Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,97,65,0,0,0,46,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":596,"weaponDamageMax":1108,"weaponSpeed":1.6,"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26575,"name":"Rock Bottom"}}]}, -{"id":61423,"name":"Brightpolish Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,173,115,0,0,75,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26575,"name":"Rock Bottom"}}]}, -{"id":61424,"name":"Geodecrack Shoulderguards","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[153,0,230,0,0,102,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26440,"name":"Clingy"}}]}, -{"id":61425,"name":"Bracers of the Energetic Elemental","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,173,115,60,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26440,"name":"Clingy"}}]}, -{"id":61426,"name":"Crystalmuncher Necklace","icon":"inv_misc_necklacea4","type":2,"stats":[0,115,173,0,0,0,0,88,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26440,"name":"Clingy"}}]}, -{"id":61427,"name":"Gyreworm Waistguard","icon":"inv_belt_100","type":8,"armorType":4,"stats":[153,0,230,0,0,0,0,0,0,99,0,104,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26871,"name":"A Rock Amongst Many"}}]}, -{"id":61428,"name":"Helm of the Wormslayer","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,206,309,0,0,147,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26871,"name":"A Rock Amongst Many"}}]}, -{"id":61429,"name":"Insignia of the Earthen Lord","icon":"inv_stone_sharpeningstone_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26871,"name":"A Rock Amongst Many"}}]}, -{"id":61430,"name":"Stonebound Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,309,206,145,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26376,"name":"Hatred Runs Deep"}}]}, -{"id":61431,"name":"Giantbutcher's Discarded Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,0,230,153,85,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26376,"name":"Hatred Runs Deep"}}]}, -{"id":61432,"name":"Bloodcult Handwraps","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,153,230,0,0,0,0,0,94,0,0,107,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26376,"name":"Hatred Runs Deep"}}]}, -{"id":61433,"name":"Insignia of Diplomacy","icon":"inv_misc_coin_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26315,"name":"Imposing Confrontation"}}]}, -{"id":61434,"name":"Firm Grips","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,230,153,0,0,85,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26315,"name":"Imposing Confrontation"}}]}, -{"id":61435,"name":"Trustworthy Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,309,206,117,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26315,"name":"Imposing Confrontation"}}]}, -{"id":61436,"name":"Gateshattering Hauberk","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[233,0,349,0,0,0,0,0,0,0,155,155,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27059,"name":"The Wrong Sequence"}}],"factionRestriction":2}, -{"id":61437,"name":"Relic of the Waywalker","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,73,110,0,0,0,49,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27059,"name":"The Wrong Sequence"}}],"factionRestriction":2}, -{"id":61438,"name":"Starscraper Signet","icon":"inv_misc_starring3","type":11,"stats":[0,0,195,130,0,94,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27059,"name":"The Wrong Sequence"}}],"factionRestriction":2}, -{"id":61439,"name":"Gateshattering Hauberk","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[233,0,349,0,0,0,0,0,0,0,155,155,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27058,"name":"The Wrong Sequence"}}],"factionRestriction":1}, -{"id":61440,"name":"Relic of the Waywalker","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,73,110,0,0,0,49,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27058,"name":"The Wrong Sequence"}}],"factionRestriction":1}, -{"id":61441,"name":"Starscraper Signet","icon":"inv_misc_starring3","type":11,"stats":[0,0,195,130,0,94,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27058,"name":"The Wrong Sequence"}}],"factionRestriction":1}, -{"id":61442,"name":"Tonguecarver Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,309,206,137,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27043,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":2}, -{"id":61443,"name":"Silencer's Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,153,230,0,0,0,112,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27043,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":2}, -{"id":61444,"name":"Bondshatter Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,230,153,0,0,99,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27043,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":2}, -{"id":61445,"name":"Helm of Silenced Blathering","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,309,206,137,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27042,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":1}, -{"id":61446,"name":"Kaulslayer Grips","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,153,230,0,0,0,112,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27042,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":1}, -{"id":61447,"name":"Wardfire Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,230,153,0,0,99,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":27042,"name":"Fight Fire and Water and Air with..."}}],"factionRestriction":1}, -{"id":61448,"name":"Oremantle's Favor","icon":"inv_stone_weightstone_01","type":12,"stats":[194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26836,"name":"Rescue the Stonefather... and Flint"}}]}, -{"id":61449,"name":"Liberator's Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,230,153,0,0,0,99,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26836,"name":"Rescue the Stonefather... and Flint"}}]}, -{"id":61450,"name":"Shattered Bond Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,230,153,82,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26836,"name":"Rescue the Stonefather... and Flint"}}]}, -{"id":61451,"name":"Troggbane Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,206,309,0,0,0,0,137,0,0,0,137,0,0,0,0,0,0,0,0,0,0,2027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26770,"name":"Mystic Masters"}}]}, -{"id":61452,"name":"Troggbreaker Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,153,230,0,0,0,107,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26770,"name":"Mystic Masters"}}]}, -{"id":61453,"name":"Gloves of Troggslaying","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,230,153,0,78,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26770,"name":"Mystic Masters"}}]}, -{"id":61454,"name":"Catapult Loader's Gloves","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[153,0,230,0,0,116,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26632,"name":"Close Escort"}}]}, -{"id":61455,"name":"Earthen Embrace","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,309,206,0,0,140,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26632,"name":"Close Escort"}}]}, -{"id":61456,"name":"Broken Emergency Brake","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,173,115,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26632,"name":"Close Escort"}}]}, -{"id":61457,"name":"Troggzor's Crystalline Plate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,309,206,0,0,114,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,2791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26625,"name":"Troggzor the Earthinator"}}]}, -{"id":61458,"name":"Helm of Earthination","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,206,309,0,0,0,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26625,"name":"Troggzor the Earthinator"}}]}, -{"id":61459,"name":"Earthinating Peasant Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,309,206,0,114,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":305,"phase":1,"quality":2,"sources":[{"quest":{"id":26625,"name":"Troggzor the Earthinator"}}]}, -{"id":61460,"name":"Catapult Loading Scoop","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[99,0,148,0,0,0,0,0,0,0,52,74,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26564,"name":"Fixer Upper"}}]}, -{"id":61461,"name":"Re-Wound Cogspring","icon":"inv_misc_gear_03","type":2,"stats":[0,0,148,99,0,0,72,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26564,"name":"Fixer Upper"}}]}, -{"id":61462,"name":"Gear Detector","icon":"inv_gizmo_08","type":12,"stats":[0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26564,"name":"Fixer Upper"}}]}, -{"id":61463,"name":"Earthswell Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[132,0,198,0,0,0,100,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26501,"name":"Sealing the Way"}}]}, -{"id":61464,"name":"Rockslide Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,132,198,0,0,0,93,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26501,"name":"Sealing the Way"}}]}, -{"id":61465,"name":"Geomancer's Mace","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,114,76,0,0,50,52,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":1.6,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26501,"name":"Sealing the Way"}}]}, -{"id":61466,"name":"Bell-Ringer's Skullcap","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[178,0,267,0,0,0,107,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,2125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26413,"name":"Take Him to the Earthcaller"}}]}, -{"id":61467,"name":"Flayer-Crush Boots","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,198,132,0,0,67,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26413,"name":"Take Him to the Earthcaller"}}]}, -{"id":61468,"name":"Legs of Ringing Echoes","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,267,178,120,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26413,"name":"Take Him to the Earthcaller"}}]}, -{"id":61469,"name":"Flashburn Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,132,198,0,0,100,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26411,"name":"Apply and Flash Dry"}}]}, -{"id":61470,"name":"Burning Bind Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,148,99,66,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26411,"name":"Apply and Flash Dry"}}]}, -{"id":61471,"name":"Wound-Cauterizing Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,198,132,97,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26411,"name":"Apply and Flash Dry"}}]}, -{"id":61472,"name":"Amulet of Reconstruction","icon":"inv_misc_necklacea7","type":2,"stats":[130,0,195,0,0,0,82,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26876,"name":"The World Pillar Fragment"}}]}, -{"id":61473,"name":"Stonebinder's Cloak","icon":"inv_misc_cape_23","type":4,"stats":[0,0,195,130,0,0,0,98,0,0,0,68,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26876,"name":"The World Pillar Fragment"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":61474,"name":"Worldbinder Signet","icon":"inv_misc_vinering","type":11,"stats":[0,130,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":3,"sources":[{"quest":{"id":26876,"name":"The World Pillar Fragment"}}]}, -{"id":61475,"name":"Soulbind Choker","icon":"inv_jewelry_necklace_47","type":2,"stats":[99,0,148,0,0,0,0,0,64,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26771,"name":"Testing the Trap"}}]}, -{"id":61476,"name":"Trapspring Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,267,178,120,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26771,"name":"Testing the Trap"}}]}, -{"id":61477,"name":"Bait-Stained Drape","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,99,148,0,0,56,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26771,"name":"Testing the Trap"}}]}, -{"id":61478,"name":"Energon Greatmace","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[178,0,267,0,0,0,0,96,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":857,"weaponDamageMax":1286,"weaponSpeed":3.3,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27136,"name":"Elemental Energy"}}]}, -{"id":61479,"name":"Ballast-Laden Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,132,198,0,0,0,86,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27010,"name":"Quicksilver Submersion"}}]}, -{"id":61480,"name":"Sparklight Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,267,178,0,124,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27136,"name":"Elemental Energy"}}]}, -{"id":61481,"name":"Mercury Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[132,0,198,0,0,98,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27102,"name":"Maziel's Ascendancy"}}]}, -{"id":61482,"name":"Rippling Ooze Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,267,178,104,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27102,"name":"Maziel's Ascendancy"}}]}, -{"id":61483,"name":"Quicksilver Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,56,84,0,0,38,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":636,"weaponDamageMax":1182,"weaponSpeed":2.8,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27102,"name":"Maziel's Ascendancy"}}]}, -{"id":61484,"name":"Midnight Service Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,198,132,67,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26427,"name":"Without a Captain or Crew"}}]}, -{"id":61485,"name":"Box-Frame Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,132,198,0,0,0,88,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27010,"name":"Quicksilver Submersion"}}]}, -{"id":61486,"name":"Breathpipe","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,267,178,0,0,124,110,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":857,"weaponDamageMax":1286,"weaponSpeed":3.3,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27010,"name":"Quicksilver Submersion"}}]}, -{"id":61487,"name":"Rough Stone Carapace","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[178,0,267,0,0,0,125,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26261,"name":"Question the Slaves"}}]}, -{"id":61488,"name":"Bondbreaker Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,0,198,132,91,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26261,"name":"Question the Slaves"}}]}, -{"id":61489,"name":"Lockbreaker Shank","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,76,114,0,0,47,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":308,"weaponDamageMax":573,"weaponSpeed":1.8,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26261,"name":"Question the Slaves"}}]}, -{"id":61490,"name":"Sanguinary Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,99,148,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26259,"name":"Blood of the Earthwarder"}}]}, -{"id":61491,"name":"Redblood Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,132,198,0,0,0,0,81,92,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26259,"name":"Blood of the Earthwarder"}}]}, -{"id":61492,"name":"Blood-Collector Helm","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,267,178,0,130,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26259,"name":"Blood of the Earthwarder"}}]}, -{"id":61493,"name":"Questioning Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[76,0,114,0,0,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":2.6,"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26254,"name":"Some Spraining to Do"}}]}, -{"id":61494,"name":"Interrogator's Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,267,178,101,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26254,"name":"Some Spraining to Do"}}]}, -{"id":61495,"name":"Gloves of Idle Hands","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,198,132,94,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26427,"name":"Without a Captain or Crew"}}]}, -{"id":61496,"name":"Groundshort Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,178,267,0,0,90,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":27136,"name":"Elemental Energy"}}]}, -{"id":61497,"name":"Skyrend Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,99,148,0,0,0,66,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26248,"name":"All Our Friends Are Dead"}}]}, -{"id":61498,"name":"Inquisitor's Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,198,132,0,0,0,93,0,0,0,79,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26254,"name":"Some Spraining to Do"}}]}, -{"id":61499,"name":"Totem-Caller Hood","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,267,178,125,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26248,"name":"All Our Friends Are Dead"}}]}, -{"id":61500,"name":"Press Gang Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,198,132,0,0,92,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26427,"name":"Without a Captain or Crew"}}]}, -{"id":61501,"name":"Incorporeal Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,198,132,0,0,81,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26248,"name":"All Our Friends Are Dead"}}]}, -{"id":61502,"name":"Deepstone Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[132,0,198,0,0,0,0,0,88,0,0,88,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26244,"name":"The Earth Claims All"}}]}, -{"id":61503,"name":"Stoneshatter Hauberk","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,178,267,0,0,0,0,104,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26244,"name":"The Earth Claims All"}}]}, -{"id":61504,"name":"Furyquench Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,148,99,0,0,67,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":289,"phase":1,"quality":2,"sources":[{"quest":{"id":26244,"name":"The Earth Claims All"}}]}, -{"id":62047,"name":"Darkmoon Card: Volcano","icon":"inv_inscription_tarot_volcanocard","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{"id":27664,"name":"Darkmoon Volcanic Deck"}}]}, -{"id":62048,"name":"Darkmoon Card: Earthquake","icon":"inv_inscription_tarot_earthquakecard","type":12,"stats":[0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{"id":27667,"name":"Darkmoon Earthquake Deck"}}]}, -{"id":62049,"name":"Darkmoon Card: Hurricane","icon":"inv_inscription_tarot_hurricanecard","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{"id":27665,"name":"Darkmoon Hurricane Deck"}}]}, -{"id":62050,"name":"Darkmoon Card: Tsunami","icon":"inv_inscription_tarot_tsunamicard","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{"id":27666,"name":"Darkmoon Tsunami Deck"}}]}, -{"id":62051,"name":"Darkmoon Card: Hurricane","icon":"inv_inscription_tarot_hurricanecard","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"quest":{"id":27665,"name":"Darkmoon Hurricane Deck"}}]}, -{"id":62231,"name":"Book of Blood","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,0,0,91,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86616}}]}, -{"id":62233,"name":"Lord Rottington's Pressed Wisp Book","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,91,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86640}}]}, -{"id":62234,"name":"Dungeoneering Guide","icon":"inv_misc_book_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,116,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86641}}]}, -{"id":62235,"name":"Divine Companion","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,120,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86642}}]}, -{"id":62236,"name":"Battle Tome","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86643}}]}, -{"id":62240,"name":"Etched Horn","icon":"inv_misc_monsterhorn_01","type":14,"rangedWeaponType":4,"stats":[72,0,108,0,0,0,0,0,48,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86647}}]}, -{"id":62241,"name":"Manual of the Planes","icon":"inv_misc_book_16","type":14,"rangedWeaponType":4,"stats":[0,0,108,72,0,52,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86648}}]}, -{"id":62242,"name":"Runed Dragonscale","icon":"inv_misc_monsterscales_07","type":14,"rangedWeaponType":4,"stats":[0,72,108,0,0,48,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86649}}]}, -{"id":62243,"name":"Notched Jawbone","icon":"inv_jewelry_trinket_06","type":14,"rangedWeaponType":4,"stats":[95,0,143,0,0,63,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86650}}]}, -{"id":62244,"name":"Tattooed Eyeball","icon":"inv_misc_eye_02","type":14,"rangedWeaponType":4,"stats":[0,0,143,95,0,0,72,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86652}}]}, -{"id":62245,"name":"Silver Inlaid Leaf","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,95,143,0,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":86653}}]}, -{"id":62348,"name":"Terrath's Signet of Balance","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,168,252,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":45408,"npcName":"D'lom the Collector","zoneId":5042}},{"rep":{"repFactionId":1171,"repLevel":7}}]}, -{"id":62350,"name":"Gorsik's Band of Shattering","icon":"item_icecrownringd","type":11,"stats":[168,0,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":45408,"npcName":"D'lom the Collector","zoneId":5042}},{"rep":{"repFactionId":1171,"repLevel":7}}]}, -{"id":62351,"name":"Felsen's Ring of Resolve","icon":"inv_jewelry_ring_26","type":11,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":45408,"npcName":"D'lom the Collector","zoneId":5042}},{"rep":{"repFactionId":1171,"repLevel":7}}]}, -{"id":62352,"name":"Diamant's Ring of Temperance","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":45408,"npcName":"D'lom the Collector","zoneId":5042}},{"rep":{"repFactionId":1171,"repLevel":7}}]}, -{"id":62353,"name":"Mantle of Moss","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,179,298,0,0,0,133,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":6}}]}, -{"id":62354,"name":"Pendant of Elemental Balance","icon":"inv_misc_necklacea11","type":2,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1135,"repLevel":6}}]}, -{"id":62355,"name":"Stone-Wrapped Greaves","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[248,0,401,0,0,0,0,0,0,138,158,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":6}}]}, -{"id":62356,"name":"Helm of Temperance","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,401,208,0,138,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":6}}]}, -{"id":62357,"name":"Cloak of Ancient Wisdom","icon":"inv_misc_cape_13","type":4,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":7}}]}, -{"id":62358,"name":"Leggings of Clutching Roots","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":7}}]}, -{"id":62359,"name":"Peacemaker's Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,454,262,192,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":7}}]}, -{"id":62361,"name":"Softwind Cape","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":7}}]}, -{"id":62362,"name":"Signet of the Elder Council","icon":"inv_misc_diamondring2","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":8}}]}, -{"id":62363,"name":"Earthmender's Boots","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":8}}]}, -{"id":62364,"name":"Flamebloom Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":8}}]}, -{"id":62365,"name":"World Keeper's Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50324,"npcName":"Provisioner Arok","zoneId":5144}},{"rep":{"repFactionId":1135,"repLevel":8}}]}, -{"id":62374,"name":"Sly Fox Jerkin","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,228,401,0,0,0,178,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":6}}]}, -{"id":62375,"name":"Galrond's Band","icon":"inv_jewelry_ring_47","type":11,"stats":[149,0,224,0,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}]}, -{"id":62376,"name":"Mountain's Mouth","icon":"inv_misc_necklacea10","type":2,"stats":[149,0,224,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}]}, -{"id":62377,"name":"Cloak of the Dryads","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}]}, -{"id":62378,"name":"Acorn of the Daughter Tree","icon":"inv_misc_food_pinenut","type":2,"stats":[0,168,252,0,0,0,0,107,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":7}}]}, -{"id":62380,"name":"Wilderness Legguards","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,454,262,192,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":7}}]}, -{"id":62381,"name":"Aessina-Blessed Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,337,205,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":7}}]}, -{"id":62382,"name":"Waywatcher's Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":7}}]}, -{"id":62383,"name":"Wrap of the Great Turtle","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":8}}]}, -{"id":62384,"name":"Belt of the Ferocious Wolf","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":8}}]}, -{"id":62385,"name":"Treads of Malorne","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":8}}]}, -{"id":62386,"name":"Cord of the Raven Queen","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":50314,"npcName":"Provisioner Whitecloud","zoneId":616}},{"rep":{"repFactionId":1158,"repLevel":8}}]}, -{"id":62404,"name":"Spaulders of the Endless Plains","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,298,159,123,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2}, -{"id":62405,"name":"Leggings of the Impenitent","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,228,401,0,0,0,168,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2}, -{"id":62406,"name":"Bone Fever Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,298,179,0,133,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2}, -{"id":62407,"name":"Helm of the Brown Lands","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,401,208,171,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2}, -{"id":62408,"name":"Gauntlets of Rattling Bones","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62409,"name":"Snarling Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62410,"name":"Grinning Fang Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[196,0,454,0,0,0,0,0,137,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62415,"name":"Band of Lamentation","icon":"inv_misc_kingsring1","type":11,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62416,"name":"Yellow Smoke Pendant","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62417,"name":"Liar's Handwraps","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62418,"name":"Boots of Sullen Rock","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,139,159,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62420,"name":"Withered Dream Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49387,"npcName":"Grot Deathblow","zoneId":4922}},{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62423,"name":"Helm of the Skyborne","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,401,208,171,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1}, -{"id":62424,"name":"Gloves of Aetherial Rumors","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,298,179,0,133,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1}, -{"id":62425,"name":"Swiftflight Leggings","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,228,401,0,0,0,168,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1}, -{"id":62426,"name":"Mantle of Wild Feathers","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,298,159,123,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1}, -{"id":62427,"name":"Band of Singing Grass","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62428,"name":"Crown of Wings","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[196,0,454,0,0,0,0,0,137,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62429,"name":"Windhome Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62430,"name":"Gryphon Talon Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62431,"name":"Belt of the Untamed","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62432,"name":"Gryphon Rider's Boots","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,139,159,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62433,"name":"Stormbolt Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62434,"name":"Lightning Flash Pendant","icon":"inv_misc_necklacea8","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":49386,"npcName":"Craw MacGraw","zoneId":4922}},{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62436,"name":"Ammunae's Blessing","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true,"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}]}, -{"id":62437,"name":"Shroud of the Dead","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[149,0,224,0,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}]}, -{"id":62438,"name":"Drystone Greaves","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,298,179,133,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":6}}]}, -{"id":62439,"name":"Belt of the Stargazer","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,179,298,0,0,0,113,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":6}}]}, -{"id":62440,"name":"Red Rock Band","icon":"inv_misc_kingsring1","type":11,"stats":[120,0,252,0,0,0,0,0,98,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":7}}]}, -{"id":62441,"name":"Robes of Orsis","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":7}}]}, -{"id":62445,"name":"Sash of Prophecy","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":7}}]}, -{"id":62446,"name":"Quicksand Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,205,337,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":7}}]}, -{"id":62447,"name":"Gift of Nadun","icon":"inv_misc_necklacea7","type":2,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":8}}]}, -{"id":62448,"name":"Sun King's Girdle","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":8}}]}, -{"id":62449,"name":"Sandguard Bracers","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":8}}]}, -{"id":62450,"name":"Desert Walker Sandals","icon":"inv_boots_cloth_raidwarlock_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":48617,"npcName":"Blacksmith Abasi","zoneId":5034}},{"rep":{"repFactionId":1173,"repLevel":8}}]}, -{"id":62454,"name":"Blade of the Fearless","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1678,"weaponDamageMax":2518,"weaponSpeed":3.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62455,"name":"Spear of Trailing Shadows","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62456,"name":"Dagger of Restless Nights","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":589,"weaponDamageMax":885,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62457,"name":"Ravening Slicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62458,"name":"Insidious Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,0,202,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62459,"name":"Shimmering Morningstar","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,194,129,86,0,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62460,"name":"Sky Piercer","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,95,143,0,0,0,63,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1325,"weaponDamageMax":1988,"weaponSpeed":3,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":62463,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62464,"name":"Impatience of Youth","icon":"inv_misc_idol_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62465,"name":"Stump of Time","icon":"inv_misc_branch_01","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62466,"name":"Mirror of Broken Images","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62467,"name":"Mandala of Stirring Patterns","icon":"inv_misc_web_01","type":12,"stats":[0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2}, -{"id":62468,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62469,"name":"Impatience of Youth","icon":"inv_misc_idol_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62470,"name":"Stump of Time","icon":"inv_misc_branch_01","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62471,"name":"Mirror of Broken Images","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62472,"name":"Mandala of Stirring Patterns","icon":"inv_misc_web_01","type":12,"stats":[0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1}, -{"id":62473,"name":"Blade of the Fearless","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1678,"weaponDamageMax":2518,"weaponSpeed":3.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62474,"name":"Spear of Trailing Shadows","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62475,"name":"Dagger of Restless Nights","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":589,"weaponDamageMax":885,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62476,"name":"Ravening Slicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62477,"name":"Insidious Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,0,202,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62478,"name":"Shimmering Morningstar","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,194,129,86,0,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":62479,"name":"Sky Piercer","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,95,143,0,0,0,63,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1325,"weaponDamageMax":1988,"weaponSpeed":3,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":63093,"name":"Twilight's Hammer Shoulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"classAllowlist":[9]}, -{"id":63433,"name":"Robes of Arugal","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,202,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}]}, -{"id":63434,"name":"Gloves of the Greymane Wall","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[151,0,337,0,0,0,0,0,114,0,205,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}]}, -{"id":63435,"name":"Boots of the Predator","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}]}, -{"id":63436,"name":"Traitor's Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}]}, -{"id":63437,"name":"Baron Ashbury's Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}]}, -{"id":63438,"name":"Baroness Silverlaine's Locket","icon":"inv_misc_necklacea11","type":2,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}]}, -{"id":63439,"name":"Gloves of the Uplifted Cup","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}]}, -{"id":63440,"name":"Boots of Lingering Sorrow","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}]}, -{"id":63441,"name":"Pendant of the Keep","icon":"inv_misc_necklacea10","type":2,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}]}, -{"id":63444,"name":"Baron Silverlaine's Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}]}, -{"id":63445,"name":"Arced War Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1546,"weaponDamageMax":2319,"weaponSpeed":3.5,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}]}, -{"id":63446,"name":"Haunting Footfalls","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}]}, -{"id":63447,"name":"Breastplate of the Stilled Heart","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,454,262,0,0,0,172,0,0,0,192,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}]}, -{"id":63448,"name":"Springvale's Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}]}, -{"id":63449,"name":"Thieving Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,205,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}]}, -{"id":63450,"name":"Phantom Armor","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[262,0,454,0,0,0,172,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}]}, -{"id":63452,"name":"Burden of Lost Humanity","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}]}, -{"id":63453,"name":"Iron Will Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[171,0,337,0,0,114,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}]}, -{"id":63454,"name":"Double Dealing Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}]}, -{"id":63455,"name":"Blinders of the Follower","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}]}, -{"id":63456,"name":"Meteor Shard","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63457,"name":"Shackles of Undeath","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[168,0,252,0,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63458,"name":"Lord Walden's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[262,0,454,0,0,0,0,162,0,0,0,202,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63459,"name":"Worgen Hunter's Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,0,0,142,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63460,"name":"Relic of Arathor","icon":"inv_misc_stonetablet_01","type":14,"rangedWeaponType":4,"stats":[0,95,143,0,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true}, -{"id":63461,"name":"Staff of Isolation","icon":"inv_staff_27","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,202,0,0,0,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1281,"weaponDamageMax":1922,"weaponSpeed":2.9,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63462,"name":"Helm of Untold Stories","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,454,242,162,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63463,"name":"Mantle of the Eastern Lords","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63464,"name":"Greaves of the Misguided","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,454,262,162,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63465,"name":"Mantle of Loss","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}]}, -{"id":63466,"name":"Girdle of Nobility","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":63467,"name":"Shadow of the Past","icon":"inv_misc_cape_06","type":4,"stats":[168,0,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}]}, -{"id":63468,"name":"Defias Brotherhood Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}]}, -{"id":63470,"name":"Missing Diplomat's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[205,0,337,0,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}]}, -{"id":63471,"name":"Vest of the Curious Visitor","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,454,262,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}]}, -{"id":63472,"name":"Corpse Rompers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":63473,"name":"Cloak of Thredd","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}]}, -{"id":63474,"name":"Gear-Marked Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[205,0,337,0,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}]}, -{"id":63475,"name":"Old Friend's Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}]}, -{"id":63476,"name":"Gearbreaker's Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}]}, -{"id":63477,"name":"Wicked Dagger","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"phase":1,"quality":3,"heroic":true}, -{"id":63478,"name":"Stonemason's Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[242,0,454,0,0,0,142,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63479,"name":"Bracers of Some Consequence","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63480,"name":"Record of the Brotherhood's End","icon":"inv_misc_book_08","type":14,"rangedWeaponType":4,"stats":[95,0,143,0,0,0,0,63,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63482,"name":"Daughter's Hands","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63483,"name":"Guildmaster's Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63484,"name":"Armbands of Exiled Architects","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63485,"name":"Cowl of Rebellion","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,454,242,202,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63486,"name":"Shackles of the Betrayed","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63487,"name":"Book of the Well Sung Song","icon":"inv_misc_book_10","type":14,"rangedWeaponType":4,"stats":[0,0,143,95,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":63488,"name":"Mistral Circle","icon":"inv_misc_rubystar","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":359,"phase":1,"quality":4,"unique":true,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63489,"name":"Permafrost Signet","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":359,"phase":1,"quality":4,"unique":true,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63490,"name":"Sky Strider Belt","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-206,-205,-204,-203],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63491,"name":"Thunder Wall Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-209,-208,-207],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63492,"name":"Star Chaser Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-219,-218,-217,-216],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63493,"name":"Wind Stalker Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-219,-218,-217,-216],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63494,"name":"Planetary Band","icon":"inv_jewelry_ring_87","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":359,"phase":1,"quality":4,"unique":true,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63495,"name":"Tempest Keeper Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-215,-214,-213,-212],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63496,"name":"Lightning Well Belt","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-215,-214,-213,-212],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63497,"name":"Gale Rouser Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-215,-214,-213,-212],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63498,"name":"Soul Breath Belt","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-215,-214,-213,-212],"ilvl":359,"phase":1,"quality":4,"randPropPoints":482,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":63499,"name":"Cloudburst Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":359,"phase":1,"quality":4,"unique":true,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63500,"name":"Sky Strider Greaves","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-172,-171,-170,-169],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63501,"name":"Thunder Wall Greaves","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-179,-178,-177],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63502,"name":"Star Chaser Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-198,-197,-196,-195],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63503,"name":"Wind Stalker Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-198,-197,-196,-195],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63504,"name":"Tempest Keeper Leggings","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-188,-187,-186,-185],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63505,"name":"Lightning Well Legguards","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-188,-187,-186,-185],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63506,"name":"Gale Rouser Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-188,-187,-186,-185],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63507,"name":"Soul Breath Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-188,-187,-186,-185,-184,-183],"ilvl":359,"phase":1,"quality":4,"randPropPoints":649,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":63531,"name":"Daybreaker Helm","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63532,"name":"Dragonheart Piercer","icon":"inv_bow_2h_crossbow_grimbatolraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,107,161,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63533,"name":"Fang of Twilight","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63534,"name":"Helm of Eldritch Authority","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,188,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63535,"name":"Waistguard of Hatred","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63536,"name":"Blade of the Witching Hour","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,219,146,0,0,97,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":63537,"name":"Claws of Torment","icon":"inv_hand_1h_bwdraid_d_01","type":13,"weaponType":3,"handType":1,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"setName":"Agony and Torment","setId":951,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":63538,"name":"Claws of Agony","icon":"inv_hand_1h_bwdraid_d_01","type":13,"weaponType":3,"handType":3,"stats":[146,0,219,0,0,0,0,97,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"setName":"Agony and Torment","setId":951,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":63540,"name":"Circuit Design Breastplate","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,188,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":63679,"name":"Reclaimed Ashkandi, Greatsword of the Brotherhood","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1894,"weaponDamageMax":2842,"weaponSpeed":3.8,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":63680,"name":"Twilight's Hammer","icon":"inv_mace_1h_hammeroftwilight_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":550,"weaponDamageMax":1022,"weaponSpeed":1.7,"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":63701,"name":"Treads of Terror","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27788,"name":"Skullcrusher the Mountain"}}],"factionRestriction":2}, -{"id":63702,"name":"Coulton's Crushers","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27788,"name":"Skullcrusher the Mountain"}}],"factionRestriction":2}, -{"id":63703,"name":"Garona's Finest Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,268,402,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27788,"name":"Skullcrusher the Mountain"}}],"factionRestriction":2}, -{"id":63704,"name":"Overly Intelligent Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,402,268,0,0,0,184,0,0,0,170,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27788,"name":"Skullcrusher the Mountain"}}],"factionRestriction":2}, -{"id":63705,"name":"Treads of Terror","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27787,"name":"Skullcrusher the Mountain"}}],"factionRestriction":1}, -{"id":63706,"name":"Coulton's Crushers","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27787,"name":"Skullcrusher the Mountain"}}],"factionRestriction":1}, -{"id":63707,"name":"Shaw's Finest Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,268,402,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27787,"name":"Skullcrusher the Mountain"}}],"factionRestriction":1}, -{"id":63708,"name":"Overly Intelligent Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,402,268,0,0,0,184,0,0,0,170,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27787,"name":"Skullcrusher the Mountain"}}],"factionRestriction":1}, -{"id":63709,"name":"Lava-Melted Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27745,"name":"A Fiery Reunion"}}]}, -{"id":63710,"name":"Widener's Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,0,0,80,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27745,"name":"A Fiery Reunion"}}]}, -{"id":63711,"name":"Magma-Proof Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,122,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27745,"name":"A Fiery Reunion"}}]}, -{"id":63712,"name":"Bracers of Gleaming Shards","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27742,"name":"A Little on the Side"}}]}, -{"id":63713,"name":"Shard-Keeper Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,0,0,125,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27742,"name":"A Little on the Side"}}]}, -{"id":63714,"name":"Giltstone Necklace","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,0,195,130,78,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27742,"name":"A Little on the Side"}}]}, -{"id":63715,"name":"Grips of the Damned Mind","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,117,0,112,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27798,"name":"Water of Life"}}],"factionRestriction":2}, -{"id":63716,"name":"Soulgrowth Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,101,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27798,"name":"Water of Life"}}],"factionRestriction":2}, -{"id":63717,"name":"Mindsear Shanker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,72,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":309,"weaponDamageMax":574,"weaponSpeed":1.4,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27798,"name":"Water of Life"}}],"factionRestriction":2}, -{"id":63718,"name":"Grips of the Damned Mind","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,117,0,112,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27719,"name":"Water of Life"}}],"factionRestriction":1}, -{"id":63719,"name":"Soulgrowth Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,101,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27719,"name":"Water of Life"}}],"factionRestriction":1}, -{"id":63720,"name":"Mindsear Shanker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,72,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":309,"weaponDamageMax":574,"weaponSpeed":1.4,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27719,"name":"Water of Life"}}],"factionRestriction":1}, -{"id":63721,"name":"Lifecrusher Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,96,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27703,"name":"Coup de Grace"}}],"factionRestriction":2}, -{"id":63722,"name":"Throat-Slitter Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,101,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27703,"name":"Coup de Grace"}}],"factionRestriction":2}, -{"id":63723,"name":"Redistributed Signet","icon":"inv_misc_moodring2","type":11,"stats":[0,0,195,130,82,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27703,"name":"Coup de Grace"}}],"factionRestriction":2}, -{"id":63724,"name":"Lifecrusher Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,96,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27702,"name":"Coup de Grace"}}],"factionRestriction":1}, -{"id":63725,"name":"Throat-Slitter Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,101,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27702,"name":"Coup de Grace"}}],"factionRestriction":1}, -{"id":63726,"name":"Redistributed Signet","icon":"inv_misc_moodring2","type":11,"stats":[0,0,195,130,82,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27702,"name":"Coup de Grace"}}],"factionRestriction":1}, -{"id":63727,"name":"Klem's Rusted Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27689,"name":"Distract Them for Me"}}],"factionRestriction":2}, -{"id":63728,"name":"Dame's Scaled Greaves","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27689,"name":"Distract Them for Me"}}],"factionRestriction":2}, -{"id":63729,"name":"Rose-Scented Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,129,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27689,"name":"Distract Them for Me"}}],"factionRestriction":2}, -{"id":63730,"name":"Klem's Rusted Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27688,"name":"Distract Them for Me"}}],"factionRestriction":1}, -{"id":63731,"name":"Dame's Scaled Greaves","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27688,"name":"Distract Them for Me"}}],"factionRestriction":1}, -{"id":63732,"name":"Rose-Scented Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,129,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27688,"name":"Distract Them for Me"}}],"factionRestriction":1}, -{"id":63733,"name":"Deepdigger Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,0,0,129,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27659,"name":"Portal Overload"}}]}, -{"id":63734,"name":"Portal-Sealer's Breastplate","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,155,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27659,"name":"Portal Overload"}}]}, -{"id":63735,"name":"Darklight Torch","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,110,73,0,54,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":757,"weaponDamageMax":1407,"weaponSpeed":1.8,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27659,"name":"Portal Overload"}}]}, -{"id":63736,"name":"Muffled Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[73,0,110,0,0,39,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":833,"weaponDamageMax":1549,"weaponSpeed":2.8,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27653,"name":"Dark Assassins"}}],"factionRestriction":2}, -{"id":63737,"name":"Wound-Heart Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,0,0,90,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27653,"name":"Dark Assassins"}}],"factionRestriction":2}, -{"id":63738,"name":"Needle-Threader Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,104,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27653,"name":"Dark Assassins"}}],"factionRestriction":2}, -{"id":63739,"name":"Silenced Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[73,0,110,0,0,39,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":833,"weaponDamageMax":1549,"weaponSpeed":2.8,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27652,"name":"Dark Assassins"}}],"factionRestriction":1}, -{"id":63740,"name":"Muffled Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,0,0,90,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27652,"name":"Dark Assassins"}}],"factionRestriction":1}, -{"id":63741,"name":"Fencer's Nimblefingers","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,104,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27652,"name":"Dark Assassins"}}],"factionRestriction":1}, -{"id":63742,"name":"Za'brox's Lucky Tooth","icon":"inv_misc_bone_08","type":12,"stats":[0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63743,"name":"Skull Carrier","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,195,130,87,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63744,"name":"Spaulders of Gruesome Glory","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,0,130,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63745,"name":"Za'brox's Lucky Tooth","icon":"inv_misc_bone_08","type":12,"stats":[0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63746,"name":"Skull Carrier","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,195,130,87,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63747,"name":"Spaulders of Gruesome Accomplishment","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,0,130,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63748,"name":"Gatecrasher Shoulderguards","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,117,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27497,"name":"Call in the Artillery"}}],"factionRestriction":2}, -{"id":63749,"name":"Smokeflare Chestguard","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27497,"name":"Call in the Artillery"}}],"factionRestriction":2}, -{"id":63750,"name":"Buildingblast Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,76,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27497,"name":"Call in the Artillery"}}],"factionRestriction":2}, -{"id":63751,"name":"Signal Smoke Shoulderpads","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,117,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27496,"name":"Call in the Artillery"}}],"factionRestriction":1}, -{"id":63752,"name":"Marker's Hauberk","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27496,"name":"Call in the Artillery"}}],"factionRestriction":1}, -{"id":63753,"name":"Flarefire Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,76,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27496,"name":"Call in the Artillery"}}],"factionRestriction":1}, -{"id":63754,"name":"Waistguard of Twilight Finality","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28247,"name":"Last of Her Kind"}}]}, -{"id":63755,"name":"Hood of Lost Solitude","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,0,0,0,164,0,0,0,140,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28247,"name":"Last of Her Kind"}}]}, -{"id":63756,"name":"Bracers of Final Memories","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,0,0,99,0,0,0,66,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28247,"name":"Last of Her Kind"}}]}, -{"id":63757,"name":"Wyrmhunter Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,128,93,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28173,"name":"Blackout"}}]}, -{"id":63758,"name":"Nightscale Girdle","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,0,98,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28173,"name":"Blackout"}}]}, -{"id":63759,"name":"Dragonwing Leggings","icon":"inv_pants_cloth_cataclysm_b_02","type":9,"armorType":1,"stats":[0,0,349,233,0,158,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28173,"name":"Blackout"}}]}, -{"id":63760,"name":"Cloak of the Red Flight","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[149,0,224,0,0,110,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28758,"name":"Battle of Life and Death"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":63761,"name":"Red Dragonheart Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,0,224,149,0,0,95,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28758,"name":"Battle of Life and Death"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":63762,"name":"Pendant of Victorious Fury","icon":"inv_misc_necklacea10","type":2,"stats":[0,149,224,0,0,0,0,105,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28758,"name":"Battle of Life and Death"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":63763,"name":"Gate-Breaker Treads","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,127,0,96,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28093,"name":"Pressing Forward"}}],"factionRestriction":2}, -{"id":63764,"name":"Squadron Leader's Gloves","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,173,260,0,0,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28093,"name":"Pressing Forward"}}],"factionRestriction":2}, -{"id":63765,"name":"Cloak of Valorous Direction","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,195,130,0,0,76,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28093,"name":"Pressing Forward"}}],"factionRestriction":2}, -{"id":63766,"name":"Commander's Stompers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,127,0,96,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28109,"name":"Pressing Forward"}}],"factionRestriction":1}, -{"id":63767,"name":"Gatesmashing Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,173,260,0,0,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28109,"name":"Pressing Forward"}}],"factionRestriction":1}, -{"id":63768,"name":"Cloak of Grand Leadership","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,195,130,0,0,76,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28109,"name":"Pressing Forward"}}],"factionRestriction":1}, -{"id":63769,"name":"Spearwarden's Unlucky Charm","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,0,110,73,0,0,51,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28090,"name":"Precious Goods"}}],"factionRestriction":2}, -{"id":63770,"name":"Helm of Durable Hatred","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,0,0,0,167,136,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28090,"name":"Precious Goods"}}],"factionRestriction":2}, -{"id":63771,"name":"Crushchest Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,233,349,0,0,0,0,177,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28090,"name":"Precious Goods"}}],"factionRestriction":2}, -{"id":63772,"name":"Spearwarden's \"Lucky\" Charm","icon":"inv_wand_02","type":14,"rangedWeaponType":4,"stats":[0,0,110,73,0,0,51,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28104,"name":"Precious Goods"}}],"factionRestriction":1}, -{"id":63773,"name":"Gatekeeper's Helm","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,0,0,0,167,136,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28104,"name":"Precious Goods"}}],"factionRestriction":1}, -{"id":63774,"name":"Spear-Impaled Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,233,349,0,0,0,0,177,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28104,"name":"Precious Goods"}}],"factionRestriction":1}, -{"id":63775,"name":"Helm of Verdant Explosion","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,171,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27509,"name":"Breach in the Defenses"}}]}, -{"id":63776,"name":"Exhausted Flashgrowth Mote","icon":"inv_elemental_mote_earth01","type":14,"rangedWeaponType":4,"stats":[0,73,110,0,0,49,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27509,"name":"Breach in the Defenses"}}]}, -{"id":63777,"name":"Flashseal Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27505,"name":"Draconic Mending"}}]}, -{"id":63778,"name":"Safeguard Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,173,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27505,"name":"Draconic Mending"}}]}, -{"id":63779,"name":"Vermillion Belt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,0,122,104,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27505,"name":"Draconic Mending"}}]}, -{"id":63780,"name":"Dragonmender Waistguard","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,260,173,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27509,"name":"Breach in the Defenses"}}]}, -{"id":63781,"name":"Nightmare Choker","icon":"inv_jewelry_necklace_46","type":2,"stats":[130,0,195,0,0,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27380,"name":"Nightmare"}}]}, -{"id":63782,"name":"Weeping Scar Cover","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[0,0,349,233,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27380,"name":"Nightmare"}}]}, -{"id":63783,"name":"Woundseal Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,0,349,233,167,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27380,"name":"Nightmare"}}]}, -{"id":63784,"name":"Heartsmoke Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[0,0,349,233,151,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27303,"name":"Mercy for the Bound"}}]}, -{"id":63785,"name":"Smoking Stride Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,260,173,0,0,132,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27303,"name":"Mercy for the Bound"}}]}, -{"id":63786,"name":"Fleshburned Robes","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,349,233,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27303,"name":"Mercy for the Bound"}}]}, -{"id":63787,"name":"Oversized Oblique Ogre Obliterator","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[268,0,402,0,0,0,170,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1291,"weaponDamageMax":1937,"weaponSpeed":3.3,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63788,"name":"Calder's Coated Carrion Carver","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,115,172,0,0,0,84,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63789,"name":"Very Manly Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1291,"weaponDamageMax":1937,"weaponSpeed":3.3,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63790,"name":"Gurgthock's Garish Gorebat","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,172,115,62,0,85,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":755,"weaponSpeed":1.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63791,"name":"Big Bendy Blasting Bow","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,84,126,0,0,0,0,43,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":958,"weaponDamageMax":1781,"weaponSpeed":2.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63792,"name":"Laquered Lung-Leak Longknife","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,75,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":457,"weaponDamageMax":849,"weaponSpeed":1.8,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27868,"name":"The Crucible of Carnage: The Twilight Terror!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}]}, -{"id":63793,"name":"Shard-Heart Ring","icon":"inv_misc_moodring2","type":11,"stats":[130,0,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27955,"name":"Eye Spy"}}],"factionRestriction":2}, -{"id":63794,"name":"Eye of Reversal","icon":"inv_misc_eye_04","type":2,"stats":[0,0,195,130,0,92,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27955,"name":"Eye Spy"}}],"factionRestriction":2}, -{"id":63795,"name":"Garona's Spare Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,73,110,0,0,49,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":506,"weaponDamageMax":940,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27955,"name":"Eye Spy"}}],"factionRestriction":2}, -{"id":63796,"name":"Dark-Eye Ring","icon":"inv_misc_moodring2","type":11,"stats":[130,0,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28244,"name":"Eye Spy"}}],"factionRestriction":1}, -{"id":63797,"name":"Eye of Despair","icon":"inv_misc_eye_04","type":2,"stats":[0,0,195,130,0,92,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28244,"name":"Eye Spy"}}],"factionRestriction":1}, -{"id":63798,"name":"Winged Axe","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,73,110,0,0,49,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":506,"weaponDamageMax":940,"weaponSpeed":1.7,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28244,"name":"Eye Spy"}}],"factionRestriction":1}, -{"id":63799,"name":"Mace of the Gullet","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[115,0,172,0,0,0,0,0,82,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28133,"name":"Fury Unbound"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":2}, -{"id":63800,"name":"Clear-Eyed Waistguard","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,298,199,148,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28133,"name":"Fury Unbound"}}],"factionRestriction":2}, -{"id":63801,"name":"Gauntlets of Dragonwrath","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28133,"name":"Fury Unbound"}}],"factionRestriction":2}, -{"id":63802,"name":"Bastion-Clearing Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,402,268,0,0,152,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28133,"name":"Fury Unbound"}}],"factionRestriction":2}, -{"id":63803,"name":"Torth-Slayer's Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,268,402,0,0,0,0,165,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1291,"weaponDamageMax":1937,"weaponSpeed":3.3,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28133,"name":"Fury Unbound"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":2}, -{"id":63804,"name":"Dragonscorn Mace","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[115,0,172,0,0,0,0,0,82,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28282,"name":"Narkrall, The Drake-Tamer"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":1}, -{"id":63805,"name":"Furybound Waistplate","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,298,199,148,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28282,"name":"Narkrall, The Drake-Tamer"}}],"factionRestriction":1}, -{"id":63806,"name":"Ale Soaked Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28282,"name":"Narkrall, The Drake-Tamer"}}],"factionRestriction":1}, -{"id":63807,"name":"Narkrall's Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,402,268,0,0,152,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28282,"name":"Narkrall, The Drake-Tamer"}}],"factionRestriction":1}, -{"id":63808,"name":"Staff of Draconic Pacification","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,268,402,0,0,0,0,165,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1291,"weaponDamageMax":1937,"weaponSpeed":3.3,"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28282,"name":"Narkrall, The Drake-Tamer"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":1}, -{"id":63809,"name":"Legplates of Riven Futures","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,0,148,0,160,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27945,"name":"Paint it Black"}}],"factionRestriction":2}, -{"id":63810,"name":"Heartstone Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,173,260,0,0,88,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27945,"name":"Paint it Black"}}],"factionRestriction":2}, -{"id":63811,"name":"Diamond Clutching Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27945,"name":"Paint it Black"}}],"factionRestriction":2}, -{"id":63812,"name":"Legplates of Cooled Magma","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,0,148,0,160,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28216,"name":"Magmalord Falthazar"}}],"factionRestriction":1}, -{"id":63813,"name":"Flameproof Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,173,260,0,0,88,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28216,"name":"Magmalord Falthazar"}}],"factionRestriction":1}, -{"id":63814,"name":"Corruption Resistant Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28216,"name":"Magmalord Falthazar"}}],"factionRestriction":1}, -{"id":63815,"name":"Wound-Binder Chestguard","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,349,233,175,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27747,"name":"Total War"}}],"factionRestriction":2}, -{"id":63816,"name":"Alefire Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,195,130,0,0,70,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27747,"name":"Total War"}}],"factionRestriction":2}, -{"id":63817,"name":"Keg Smasher","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,100,150,0,0,69,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27747,"name":"Total War"}}],"factionRestriction":2}, -{"id":63818,"name":"Blundy's Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,349,233,175,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27752,"name":"Fight Like a Wildhammer"}}],"factionRestriction":1}, -{"id":63819,"name":"Keg-Stealer Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,195,130,0,0,70,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27752,"name":"Fight Like a Wildhammer"}}],"factionRestriction":1}, -{"id":63820,"name":"Barrel Opener","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,100,150,0,0,69,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":574,"weaponDamageMax":1066,"weaponSpeed":2.6,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27752,"name":"Fight Like a Wildhammer"}}],"factionRestriction":1}, -{"id":63821,"name":"Dead-Dwarf Shoulderpads","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,260,173,128,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27751,"name":"Crushing the Wildhammer"}}],"factionRestriction":2}, -{"id":63822,"name":"Belt of Smashed Feathers","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,260,173,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27751,"name":"Crushing the Wildhammer"}}],"factionRestriction":2}, -{"id":63823,"name":"Hammered Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27751,"name":"Crushing the Wildhammer"}}],"factionRestriction":2}, -{"id":63824,"name":"Orc-Shock Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,260,173,128,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27754,"name":"Dragonmaw Takedown"}}],"factionRestriction":1}, -{"id":63825,"name":"Belt of Bloody Dreams","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,260,173,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27754,"name":"Dragonmaw Takedown"}}],"factionRestriction":1}, -{"id":63826,"name":"Trophy-Taker Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27754,"name":"Dragonmaw Takedown"}}],"factionRestriction":1}, -{"id":63827,"name":"Skyshredder Battleplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,402,0,0,0,0,148,0,0,0,196,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28595,"name":"Krazz Works!"}}],"factionRestriction":2}, -{"id":63828,"name":"Aerial Assault Legguards","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,402,0,0,0,191,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28595,"name":"Krazz Works!"}}],"factionRestriction":2}, -{"id":63829,"name":"Shocktrooper Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,268,402,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28595,"name":"Krazz Works!"}}],"factionRestriction":2}, -{"id":63830,"name":"Air Raid Beacon","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28595,"name":"Krazz Works!"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":2}, -{"id":63831,"name":"Flynn's Favorite Chestplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,402,0,0,0,0,148,0,0,0,196,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27651,"name":"Doing It Like a Dunwald"}}],"factionRestriction":1}, -{"id":63832,"name":"Gryphon-Grip Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,402,0,0,0,191,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27651,"name":"Doing It Like a Dunwald"}}],"factionRestriction":1}, -{"id":63833,"name":"Dunwald Winged Helm","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,268,402,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27651,"name":"Doing It Like a Dunwald"}}],"factionRestriction":1}, -{"id":63834,"name":"Skyflight Beacon","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27651,"name":"Doing It Like a Dunwald"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":1}, -{"id":63835,"name":"Dunwald's Finest Bindings","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,76,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27649,"name":"A Steady Supply"}}],"factionRestriction":1}, -{"id":63836,"name":"Barrel-Belly Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,107,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27649,"name":"A Steady Supply"}}],"factionRestriction":1}, -{"id":63837,"name":"Bubble-Brew Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27649,"name":"A Steady Supply"}}],"factionRestriction":1}, -{"id":63838,"name":"Shrine-Cleansing Purifier","icon":"inv_wand_01","type":12,"stats":[219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28170,"name":"Night Terrors"}}],"factionRestriction":2}, -{"id":63839,"name":"Harmlight Token","icon":"inv_bijou_bronze","type":12,"stats":[0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28170,"name":"Night Terrors"}}],"factionRestriction":2}, -{"id":63840,"name":"Juju of Nimbleness","icon":"inv_jewelry_necklace_25","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28170,"name":"Night Terrors"}}],"factionRestriction":2}, -{"id":63841,"name":"Tank-Commander Insignia","icon":"inv_misc_token_argentdawn","type":12,"stats":[219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27648,"name":"Once More Into The Fire"}}],"factionRestriction":1}, -{"id":63842,"name":"World-Queller Focus","icon":"inv_misc_gem_pearl_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27648,"name":"Once More Into The Fire"}}],"factionRestriction":1}, -{"id":63843,"name":"Blood-Soaked Ale Mug","icon":"inv_drink_30_blackheartgrog","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27648,"name":"Once More Into The Fire"}}],"factionRestriction":1}, -{"id":63844,"name":"Ogre-Slayer Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[233,0,349,0,0,155,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28151,"name":"Dressed to Kill"}}],"factionRestriction":2}, -{"id":63845,"name":"Bracers of False Night","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,130,195,0,0,66,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28151,"name":"Dressed to Kill"}}],"factionRestriction":2}, -{"id":63846,"name":"Cult-Hide Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,173,260,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28151,"name":"Dressed to Kill"}}],"factionRestriction":2}, -{"id":63847,"name":"Keg-Sized Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[233,0,349,0,0,155,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27647,"name":"Anything But Water"}}],"factionRestriction":1}, -{"id":63848,"name":"Brewtaster Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,130,195,0,0,66,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27647,"name":"Anything But Water"}}],"factionRestriction":1}, -{"id":63849,"name":"Aledrinker Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,173,260,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27647,"name":"Anything But Water"}}],"factionRestriction":1}, -{"id":63850,"name":"Krazzworks Climbing Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,0,0,125,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28592,"name":"Parting Packages"}}],"factionRestriction":2}, -{"id":63851,"name":"Repair Crew Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28592,"name":"Parting Packages"}}],"factionRestriction":2}, -{"id":63852,"name":"Sharkshield Cover","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28592,"name":"Parting Packages"}}],"factionRestriction":2}, -{"id":63853,"name":"Gryphon-Seeker Waistplate","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,0,0,125,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27646,"name":"Finding Beak"}}],"factionRestriction":1}, -{"id":63854,"name":"Friendfinder Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27646,"name":"Finding Beak"}}],"factionRestriction":1}, -{"id":63855,"name":"Beak's Torn Feedbag","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27646,"name":"Finding Beak"}}],"factionRestriction":1}, -{"id":63856,"name":"Crazed Pilot's Gloves","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28584,"name":"Quality Construction"}}],"factionRestriction":2}, -{"id":63857,"name":"Techie's Hard Hat","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28584,"name":"Quality Construction"}}],"factionRestriction":2}, -{"id":63858,"name":"Cartographer's Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,349,233,122,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28584,"name":"Quality Construction"}}],"factionRestriction":2}, -{"id":63859,"name":"Stormhammer Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27817,"name":"Dropping the Hammer"}}],"factionRestriction":1}, -{"id":63860,"name":"Hammerhead Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27817,"name":"Dropping the Hammer"}}],"factionRestriction":1}, -{"id":63861,"name":"Keegan's Windswept Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,349,233,122,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27817,"name":"Dropping the Hammer"}}],"factionRestriction":1}, -{"id":63862,"name":"Tool-Bracing Armguards","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,92,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28589,"name":"Everything But the Kitchen Sink"}}],"factionRestriction":2}, -{"id":63863,"name":"Rivetproof Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,0,148,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28589,"name":"Everything But the Kitchen Sink"}}],"factionRestriction":2}, -{"id":63864,"name":"Gunnery Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,128,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28589,"name":"Everything But the Kitchen Sink"}}],"factionRestriction":2}, -{"id":63865,"name":"Weapon-Bearer Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,92,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27815,"name":"Somethin' for the Boys"}}],"factionRestriction":1}, -{"id":63866,"name":"Camp-Cleaner Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,0,148,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27815,"name":"Somethin' for the Boys"}}],"factionRestriction":1}, -{"id":63867,"name":"Forge-Hold Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,128,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27815,"name":"Somethin' for the Boys"}}],"factionRestriction":1}, -{"id":63868,"name":"Skyfallen Plate Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,98,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26388,"name":"Twilight Skies"}}],"factionRestriction":2}, -{"id":63869,"name":"Bracers of the Lost Leader","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,93,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26388,"name":"Twilight Skies"}}],"factionRestriction":2}, -{"id":63870,"name":"Hull-Shatter Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26388,"name":"Twilight Skies"}}],"factionRestriction":2}, -{"id":63871,"name":"Stoutwaist Girdle","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,98,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27812,"name":"The Loyalty of Clan Mullan"}}],"factionRestriction":1}, -{"id":63872,"name":"Loyalty-Seeker Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,93,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27812,"name":"The Loyalty of Clan Mullan"}}],"factionRestriction":1}, -{"id":63873,"name":"Clan-Heart Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27812,"name":"The Loyalty of Clan Mullan"}}],"factionRestriction":1}, -{"id":63874,"name":"Legguards of Samophlangination","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26361,"name":"Smoot's Samophlange"}}],"factionRestriction":2}, -{"id":63875,"name":"Waistguard of Calibrated Caliphracts","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,104,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26361,"name":"Smoot's Samophlange"}}],"factionRestriction":2}, -{"id":63876,"name":"Smoot-Smacking Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,127,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26361,"name":"Smoot's Samophlange"}}],"factionRestriction":2}, -{"id":63877,"name":"Smoot's Shredded Smock","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,130,195,0,0,0,0,88,0,0,0,84,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26361,"name":"Smoot's Samophlange"}}],"factionRestriction":2}, -{"id":63878,"name":"Legplates of Remnants","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27805,"name":"Small Comforts"}}],"factionRestriction":1}, -{"id":63879,"name":"Waistguard of Salvaged Happiness","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,104,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27805,"name":"Small Comforts"}}],"factionRestriction":1}, -{"id":63880,"name":"Fire-Dodged Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,127,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27805,"name":"Small Comforts"}}],"factionRestriction":1}, -{"id":63881,"name":"Drape of Lost Valuables","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,130,195,0,0,0,0,88,0,0,0,84,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27805,"name":"Small Comforts"}}],"factionRestriction":1}, -{"id":63882,"name":"Treads of the Common Man","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,260,173,132,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26622,"name":"Death to Mor'ghor"}}],"factionRestriction":2}, -{"id":63883,"name":"Helm of Furious Uprising","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26622,"name":"Death to Mor'ghor"}}],"factionRestriction":2}, -{"id":63884,"name":"Merchant-Rise Shoulderguards","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,93,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26622,"name":"Death to Mor'ghor"}}],"factionRestriction":2}, -{"id":63885,"name":"Tank-Defending Treads","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,260,173,132,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27468,"name":"Siege Tank Rescue"}}],"factionRestriction":1}, -{"id":63886,"name":"Nature-Crush Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27468,"name":"Siege Tank Rescue"}}],"factionRestriction":1}, -{"id":63887,"name":"Tread-Bind Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,93,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27468,"name":"Siege Tank Rescue"}}],"factionRestriction":1}, -{"id":63888,"name":"Blackblood Freedom Standard","icon":"inv_bannerpvp_03","type":14,"rangedWeaponType":4,"stats":[73,0,110,0,0,0,0,0,40,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26621,"name":"Insurrection"}}],"factionRestriction":2}, -{"id":63889,"name":"Shackle-Shatter Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,110,73,0,0,0,52,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":673,"weaponDamageMax":1250,"weaponSpeed":1.6,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26621,"name":"Insurrection"}}],"factionRestriction":2}, -{"id":63890,"name":"Ring of Rebellion","icon":"inv_misc_moodring1","type":11,"stats":[0,130,195,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26621,"name":"Insurrection"}}],"factionRestriction":2}, -{"id":63891,"name":"Shore-Cleansing Standard","icon":"inv_bannerpvp_03","type":14,"rangedWeaponType":4,"stats":[73,0,110,0,0,0,0,0,40,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27366,"name":"Landgrab"}}],"factionRestriction":1}, -{"id":63892,"name":"Beach-Sweeper Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,110,73,0,0,0,52,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":673,"weaponDamageMax":1250,"weaponSpeed":1.6,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27366,"name":"Landgrab"}}],"factionRestriction":1}, -{"id":63893,"name":"Signet of Bloody Sands","icon":"inv_misc_moodring1","type":11,"stats":[0,130,195,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27366,"name":"Landgrab"}}],"factionRestriction":1}, -{"id":63894,"name":"Heartblood Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26540,"name":"Dangerous Compassion"}}],"factionRestriction":2}, -{"id":63895,"name":"Dragonheart Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,0,89,82,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26540,"name":"Dangerous Compassion"}}],"factionRestriction":2}, -{"id":63896,"name":"Blood-Bind Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26540,"name":"Dangerous Compassion"}}],"factionRestriction":2}, -{"id":63897,"name":"Coregrip Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27537,"name":"Any Portal in a Storm"}}],"factionRestriction":1}, -{"id":63898,"name":"Whirlpool Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,0,89,82,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27537,"name":"Any Portal in a Storm"}}],"factionRestriction":1}, -{"id":63899,"name":"Water-Drill Treads","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27537,"name":"Any Portal in a Storm"}}],"factionRestriction":1}, -{"id":63900,"name":"Shredder-Salvage Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27622,"name":"Mo' Better Shredder"}}],"factionRestriction":2}, -{"id":63901,"name":"Leggings of Shredded Protection","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,155,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27622,"name":"Mo' Better Shredder"}}],"factionRestriction":2}, -{"id":63902,"name":"Mechano-Assembler Headguard","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,136,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27622,"name":"Mo' Better Shredder"}}],"factionRestriction":2}, -{"id":63903,"name":"Song-Reflecting Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27200,"name":"Siren's Song"}}],"factionRestriction":1}, -{"id":63904,"name":"Mast-Bound Leggings","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,155,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27200,"name":"Siren's Song"}}],"factionRestriction":1}, -{"id":63905,"name":"Wax-Filled Hood","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,136,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27200,"name":"Siren's Song"}}],"factionRestriction":1}, -{"id":63906,"name":"Conch-Sound Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,93,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27606,"name":"Blast Him!"}}],"factionRestriction":2}, -{"id":63907,"name":"Heth'Jatari Battlegloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,0,0,128,0,0,0,93,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27606,"name":"Blast Him!"}}],"factionRestriction":2}, -{"id":63908,"name":"Bracers of the Fallen Fathom-Lord","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,87,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27606,"name":"Blast Him!"}}],"factionRestriction":2}, -{"id":63909,"name":"Chill-Tail Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,93,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27178,"name":"Naga Reinforcements"}}],"factionRestriction":1}, -{"id":63910,"name":"Blackscale Wraps","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,0,0,128,0,0,0,93,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27178,"name":"Naga Reinforcements"}}],"factionRestriction":1}, -{"id":63911,"name":"Myrmidon-Slaying Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,87,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27178,"name":"Naga Reinforcements"}}],"factionRestriction":1}, -{"id":63912,"name":"Twilight Mirrorshield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[149,0,224,0,0,97,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":26830,"name":"Traitor's Bait"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":2}, -{"id":63913,"name":"Twilight-Heart Shoulderplates","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,298,199,0,0,110,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":26830,"name":"Traitor's Bait"}}],"factionRestriction":2}, -{"id":63914,"name":"Mindsliced Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":26830,"name":"Traitor's Bait"}}],"factionRestriction":2}, -{"id":63915,"name":"Vision-Tainted Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,298,199,0,0,0,116,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":26830,"name":"Traitor's Bait"}}],"factionRestriction":2}, -{"id":63916,"name":"Belt of Mystical Betrayal","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,101,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":26830,"name":"Traitor's Bait"}}],"factionRestriction":2}, -{"id":63917,"name":"Truthbreaker Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[149,0,224,0,0,97,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27106,"name":"A Villain Unmasked"}},{"soldBy":{"npcId":228379,"npcName":"Weapons Vendor","zoneId":1519}}],"factionRestriction":1}, -{"id":63918,"name":"Detective's Shoulderplates","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,298,199,0,0,110,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27106,"name":"A Villain Unmasked"}}],"factionRestriction":1}, -{"id":63919,"name":"Corruption-Seeking Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27106,"name":"A Villain Unmasked"}}],"factionRestriction":1}, -{"id":63920,"name":"Treads of Revelation","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,298,199,0,0,0,116,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27106,"name":"A Villain Unmasked"}}],"factionRestriction":1}, -{"id":63921,"name":"Truth-Seeker Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,101,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":27106,"name":"A Villain Unmasked"}}],"factionRestriction":1}, -{"id":63922,"name":"Awestruck Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,72,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26311,"name":"Unfamiliar Waters"}}],"factionRestriction":2}, -{"id":63923,"name":"Hauberk of Shock","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,0,175,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26311,"name":"Unfamiliar Waters"}}],"factionRestriction":2}, -{"id":63924,"name":"Blade-Dodging Girdle","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,112,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":26311,"name":"Unfamiliar Waters"}}],"factionRestriction":2}, -{"id":63925,"name":"Scavenger Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,72,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27038,"name":"Missing Parts"}}],"factionRestriction":1}, -{"id":63926,"name":"Reconstructing Hauberk","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,0,175,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27038,"name":"Missing Parts"}}],"factionRestriction":1}, -{"id":63927,"name":"Machine-Linker Girdle","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,112,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":27038,"name":"Missing Parts"}}],"factionRestriction":1}, -{"id":64377,"name":"Zin'rokh, Destroyer of Worlds","icon":"trade_archaeology_zinrokh-sword","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,216,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1894,"weaponDamageMax":2842,"weaponSpeed":3.8,"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":12,"spellId":90608}}]}, -{"id":64489,"name":"Staff of Sorcerer-Thane Thaurissan","icon":"trade_archaeology_staffofsorcerer_than-thaurissan","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1047,"weaponDamageMax":1571,"weaponSpeed":2.1,"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":91227}}]}, -{"id":64645,"name":"Tyrande's Favorite Doll","icon":"trade_archaeology_tyrandesfavoritedoll","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":12,"spellId":91757}}]}, -{"id":64671,"name":"Relic of Golganneth","icon":"inv_misc_stonetablet_06","type":14,"rangedWeaponType":4,"stats":[0,107,161,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":64672,"name":"Relic of Norgannon","icon":"inv_misc_stonetablet_02","type":14,"rangedWeaponType":4,"stats":[0,0,161,107,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":64673,"name":"Relic of Eonar","icon":"inv_elemental_mote_life01","type":14,"rangedWeaponType":4,"stats":[0,0,161,107,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":64674,"name":"Relic of Aggramar","icon":"inv_stone_15","type":14,"rangedWeaponType":4,"stats":[107,0,161,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":64676,"name":"Relic of Khaz'goroth","icon":"inv_misc_stonetablet_03","type":14,"rangedWeaponType":4,"stats":[107,0,161,0,0,0,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":64681,"name":"Bloodthirsty Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64682,"name":"Bloodthirsty Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,267,178,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64683,"name":"Bloodthirsty Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[178,0,267,0,0,0,0,119,0,0,0,0,0,0,0,0,119,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64684,"name":"Bloodthirsty Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[178,0,267,0,0,0,0,0,119,0,0,0,0,0,0,0,119,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64685,"name":"Bloodthirsty Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,178,254,0,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64686,"name":"Bloodthirsty Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,178,254,0,0,0,0,119,0,0,0,0,0,0,0,0,119,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64687,"name":"Bloodthirsty Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64688,"name":"Bloodthirsty Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64689,"name":"Bloodthirsty Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64690,"name":"Bloodthirsty Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,267,178,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64691,"name":"Bloodthirsty Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,267,178,0,0,119,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64692,"name":"Bloodthirsty Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":64694,"name":"Bloodthirsty Gladiator's Baton of Light","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,152,101,68,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1107,"weaponDamageMax":2057,"weaponSpeed":1.9,"ilvl":353,"phase":2,"quality":4}, -{"id":64695,"name":"Bloodthirsty Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,0,0,215,0,0,0,0,0,0,0,1849,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":943,"weaponDamageMax":1415,"weaponSpeed":2,"ilvl":353,"phase":2,"quality":4}, -{"id":64696,"name":"Bloodthirsty Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64697,"name":"Bloodthirsty Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64698,"name":"Bloodthirsty Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64699,"name":"Bloodthirsty Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,267,178,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64700,"name":"Bloodthirsty Gladiator's Bonecracker","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64701,"name":"Bloodthirsty Gladiator's Bonegrinder","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64702,"name":"Bloodthirsty Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,339,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64703,"name":"Bloodthirsty Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,339,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64704,"name":"Bloodthirsty Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4]}, -{"id":64705,"name":"Bloodthirsty Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,267,178,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4]}, -{"id":64706,"name":"Bloodthirsty Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"stats":[0,178,267,0,0,0,119,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,6,1,7]}, -{"id":64707,"name":"Bloodthirsty Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,178,267,0,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,6,1,7]}, -{"id":64708,"name":"Bloodthirsty Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Bloodthirsty Gladiator's Pursuit","setId":920}, -{"id":64709,"name":"Bloodthirsty Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Bloodthirsty Gladiator's Pursuit","setId":920}, -{"id":64710,"name":"Bloodthirsty Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Bloodthirsty Gladiator's Pursuit","setId":920}, -{"id":64711,"name":"Bloodthirsty Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Bloodthirsty Gladiator's Pursuit","setId":920}, -{"id":64712,"name":"Bloodthirsty Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Bloodthirsty Gladiator's Pursuit","setId":920}, -{"id":64713,"name":"Bloodthirsty Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[178,0,267,0,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64714,"name":"Bloodthirsty Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[178,0,267,0,0,0,0,0,119,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64715,"name":"Bloodthirsty Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4]}, -{"id":64716,"name":"Bloodthirsty Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4]}, -{"id":64717,"name":"Bloodthirsty Gladiator's Cleaver","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64718,"name":"Bloodthirsty Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"stats":[178,0,267,0,0,0,0,119,0,0,0,0,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64719,"name":"Bloodthirsty Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[178,0,267,0,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64720,"name":"Bloodthirsty Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64721,"name":"Bloodthirsty Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64722,"name":"Bloodthirsty Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64723,"name":"Bloodthirsty Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,267,178,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64724,"name":"Bloodthirsty Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64725,"name":"Bloodthirsty Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,267,178,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64726,"name":"Bloodthirsty Gladiator's Decapitator","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64727,"name":"Bloodthirsty Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Sanctuary","setId":922}, -{"id":64728,"name":"Bloodthirsty Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Sanctuary","setId":922}, -{"id":64729,"name":"Bloodthirsty Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Sanctuary","setId":922}, -{"id":64730,"name":"Bloodthirsty Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Sanctuary","setId":922}, -{"id":64731,"name":"Bloodthirsty Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Sanctuary","setId":922}, -{"id":64732,"name":"Bloodthirsty Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"stats":[0,0,267,178,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64733,"name":"Bloodthirsty Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7]}, -{"id":64734,"name":"Bloodthirsty Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,0,267,178,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64735,"name":"Bloodthirsty Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Bloodthirsty Gladiator's Desecration","setId":924}, -{"id":64736,"name":"Bloodthirsty Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Bloodthirsty Gladiator's Desecration","setId":924}, -{"id":64737,"name":"Bloodthirsty Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Bloodthirsty Gladiator's Desecration","setId":924}, -{"id":64738,"name":"Bloodthirsty Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Bloodthirsty Gladiator's Desecration","setId":924}, -{"id":64739,"name":"Bloodthirsty Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Bloodthirsty Gladiator's Desecration","setId":924}, -{"id":64740,"name":"Bloodthirsty Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64741,"name":"Bloodthirsty Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64742,"name":"Bloodthirsty Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64744,"name":"Bloodthirsty Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,215,0,0,0,0,0,0,0,0,0,1849,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":943,"weaponDamageMax":1415,"weaponSpeed":2,"ilvl":353,"phase":2,"quality":4}, -{"id":64745,"name":"Bloodthirsty Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Bloodthirsty Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64746,"name":"Bloodthirsty Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Bloodthirsty Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64747,"name":"Bloodthirsty Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Bloodthirsty Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64748,"name":"Bloodthirsty Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Bloodthirsty Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64749,"name":"Bloodthirsty Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Bloodthirsty Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64750,"name":"Bloodthirsty Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,339,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64751,"name":"Bloodthirsty Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1]}, -{"id":64752,"name":"Bloodthirsty Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":1,"stats":[0,0,207,138,0,0,92,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64753,"name":"Bloodthirsty Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[218,0,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64754,"name":"Bloodthirsty Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[218,0,357,0,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64755,"name":"Bloodthirsty Gladiator's Greatsword","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64756,"name":"Bloodthirsty Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4]}, -{"id":64757,"name":"Bloodthirsty Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4]}, -{"id":64758,"name":"Bloodthirsty Gladiator's Hacker","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64759,"name":"Bloodthirsty Gladiator's Hatchet","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[0,101,152,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":895,"weaponDamageMax":1344,"weaponSpeed":1.9,"ilvl":353,"phase":2,"quality":4}, -{"id":64760,"name":"Bloodthirsty Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,101,152,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1414,"weaponDamageMax":2122,"weaponSpeed":3,"ilvl":353,"phase":2,"quality":4}, -{"id":64761,"name":"Bloodthirsty Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64762,"name":"Bloodthirsty Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64763,"name":"Bloodthirsty Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":64764,"name":"Bloodthirsty Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Refuge","setId":923}, -{"id":64765,"name":"Bloodthirsty Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Refuge","setId":923}, -{"id":64766,"name":"Bloodthirsty Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Refuge","setId":923}, -{"id":64767,"name":"Bloodthirsty Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Refuge","setId":923}, -{"id":64768,"name":"Bloodthirsty Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Refuge","setId":923}, -{"id":64769,"name":"Bloodthirsty Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Bloodthirsty Gladiator's Vestments","setId":914}, -{"id":64770,"name":"Bloodthirsty Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Bloodthirsty Gladiator's Vestments","setId":914}, -{"id":64771,"name":"Bloodthirsty Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Bloodthirsty Gladiator's Vestments","setId":914}, -{"id":64772,"name":"Bloodthirsty Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Bloodthirsty Gladiator's Vestments","setId":914}, -{"id":64773,"name":"Bloodthirsty Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Bloodthirsty Gladiator's Vestments","setId":914}, -{"id":64774,"name":"Bloodthirsty Gladiator's Left Render","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64775,"name":"Bloodthirsty Gladiator's Left Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64776,"name":"Bloodthirsty Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Earthshaker","setId":912}, -{"id":64777,"name":"Bloodthirsty Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Earthshaker","setId":912}, -{"id":64778,"name":"Bloodthirsty Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Earthshaker","setId":912}, -{"id":64779,"name":"Bloodthirsty Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Earthshaker","setId":912}, -{"id":64780,"name":"Bloodthirsty Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Earthshaker","setId":912}, -{"id":64781,"name":"Bloodthirsty Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64782,"name":"Bloodthirsty Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,218,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64783,"name":"Bloodthirsty Gladiator's Longbow","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,101,152,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1414,"weaponDamageMax":2122,"weaponSpeed":3,"ilvl":353,"phase":2,"quality":4}, -{"id":64784,"name":"Bloodthirsty Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Thunderfist","setId":911}, -{"id":64785,"name":"Bloodthirsty Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Thunderfist","setId":911}, -{"id":64786,"name":"Bloodthirsty Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Thunderfist","setId":911}, -{"id":64787,"name":"Bloodthirsty Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Thunderfist","setId":911}, -{"id":64788,"name":"Bloodthirsty Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Thunderfist","setId":911}, -{"id":64789,"name":"Bloodthirsty Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"factionRestriction":2}, -{"id":64790,"name":"Bloodthirsty Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":225965,"npcName":"Frix Xizzix"}}],"factionRestriction":1}, -{"id":64791,"name":"Bloodthirsty Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":225965,"npcName":"Frix Xizzix"}}],"factionRestriction":1}, -{"id":64792,"name":"Bloodthirsty Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"factionRestriction":2}, -{"id":64793,"name":"Bloodthirsty Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":225965,"npcName":"Frix Xizzix"}}],"factionRestriction":1}, -{"id":64794,"name":"Bloodthirsty Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"factionRestriction":2}, -{"id":64795,"name":"Bloodthirsty Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Investiture","setId":916}, -{"id":64796,"name":"Bloodthirsty Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Investiture","setId":916}, -{"id":64797,"name":"Bloodthirsty Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Investiture","setId":916}, -{"id":64798,"name":"Bloodthirsty Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Investiture","setId":916}, -{"id":64799,"name":"Bloodthirsty Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Investiture","setId":916}, -{"id":64800,"name":"Bloodthirsty Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,178,267,0,0,0,0,0,119,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,6,1,7]}, -{"id":64801,"name":"Bloodthirsty Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,178,267,0,0,0,0,0,0,0,0,119,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,6,1,7]}, -{"id":64802,"name":"Bloodthirsty Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Redemption","setId":918}, -{"id":64803,"name":"Bloodthirsty Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Redemption","setId":918}, -{"id":64804,"name":"Bloodthirsty Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Redemption","setId":918}, -{"id":64805,"name":"Bloodthirsty Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Redemption","setId":918}, -{"id":64806,"name":"Bloodthirsty Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Redemption","setId":918}, -{"id":64807,"name":"Bloodthirsty Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,267,178,0,0,0,119,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64808,"name":"Bloodthirsty Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,267,178,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7,3,8]}, -{"id":64809,"name":"Bloodthirsty Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,267,178,119,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,5,1,7]}, -{"id":64810,"name":"Bloodthirsty Gladiator's Pike","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64811,"name":"Bloodthirsty Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Bloodthirsty Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64812,"name":"Bloodthirsty Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Bloodthirsty Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64813,"name":"Bloodthirsty Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Bloodthirsty Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64814,"name":"Bloodthirsty Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Bloodthirsty Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64815,"name":"Bloodthirsty Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Bloodthirsty Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":46595,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":64816,"name":"Bloodthirsty Gladiator's Pummeler","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64817,"name":"Bloodthirsty Gladiator's Quickblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64819,"name":"Bloodthirsty Gladiator's Relic of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[100,0,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,10]}, -{"id":64820,"name":"Bloodthirsty Gladiator's Relic of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,151,100,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,1,7]}, -{"id":64821,"name":"Bloodthirsty Gladiator's Relic of Salvation","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,151,100,67,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4,1,7]}, -{"id":64822,"name":"Bloodthirsty Gladiator's Relic of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,100,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1,7]}, -{"id":64824,"name":"Bloodthirsty Gladiator's Rifle","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,101,152,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1414,"weaponDamageMax":2122,"weaponSpeed":3,"ilvl":353,"phase":2,"quality":4}, -{"id":64825,"name":"Bloodthirsty Gladiator's Right Render","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64826,"name":"Bloodthirsty Gladiator's Right Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64827,"name":"Bloodthirsty Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Wartide","setId":913}, -{"id":64828,"name":"Bloodthirsty Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Wartide","setId":913}, -{"id":64829,"name":"Bloodthirsty Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Wartide","setId":913}, -{"id":64830,"name":"Bloodthirsty Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Wartide","setId":913}, -{"id":64831,"name":"Bloodthirsty Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Bloodthirsty Gladiator's Wartide","setId":913}, -{"id":64832,"name":"Bloodthirsty Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,178,267,0,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":64833,"name":"Bloodthirsty Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,178,267,0,0,0,119,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":64834,"name":"Bloodthirsty Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64835,"name":"Bloodthirsty Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64836,"name":"Bloodthirsty Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64837,"name":"Bloodthirsty Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64838,"name":"Bloodthirsty Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Raiment","setId":915}, -{"id":64839,"name":"Bloodthirsty Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Raiment","setId":915}, -{"id":64840,"name":"Bloodthirsty Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Raiment","setId":915}, -{"id":64841,"name":"Bloodthirsty Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Raiment","setId":915}, -{"id":64842,"name":"Bloodthirsty Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Bloodthirsty Gladiator's Raiment","setId":915}, -{"id":64843,"name":"Bloodthirsty Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Vindication","setId":917}, -{"id":64844,"name":"Bloodthirsty Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Vindication","setId":917}, -{"id":64845,"name":"Bloodthirsty Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Vindication","setId":917}, -{"id":64846,"name":"Bloodthirsty Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Vindication","setId":917}, -{"id":64847,"name":"Bloodthirsty Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Bloodthirsty Gladiator's Vindication","setId":917}, -{"id":64848,"name":"Bloodthirsty Gladiator's Shanker","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":629,"weaponDamageMax":944,"weaponSpeed":1.8,"ilvl":353,"phase":2,"quality":4}, -{"id":64850,"name":"Bloodthirsty Gladiator's Shiv","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":428,"weaponDamageMax":796,"weaponSpeed":1.4,"ilvl":353,"phase":2,"quality":4}, -{"id":64851,"name":"Bloodthirsty Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[178,0,267,0,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[9,4,10]}, -{"id":64852,"name":"Bloodthirsty Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[178,0,267,0,0,0,119,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"unique":true,"classAllowlist":[9,4,10]}, -{"id":64853,"name":"Bloodthirsty Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Bloodthirsty Gladiator's Regalia","setId":919}, -{"id":64854,"name":"Bloodthirsty Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Bloodthirsty Gladiator's Regalia","setId":919}, -{"id":64855,"name":"Bloodthirsty Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Bloodthirsty Gladiator's Regalia","setId":919}, -{"id":64856,"name":"Bloodthirsty Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Bloodthirsty Gladiator's Regalia","setId":919}, -{"id":64857,"name":"Bloodthirsty Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Bloodthirsty Gladiator's Regalia","setId":919}, -{"id":64858,"name":"Bloodthirsty Gladiator's Slicer","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64859,"name":"Bloodthirsty Gladiator's Spellblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":1,"stats":[0,0,207,138,0,0,92,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4}, -{"id":64860,"name":"Bloodthirsty Gladiator's Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":943,"weaponDamageMax":1415,"weaponSpeed":2,"ilvl":353,"phase":2,"quality":4,"classAllowlist":[1]}, -{"id":64861,"name":"Bloodthirsty Gladiator's Touch of Defeat","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,152,101,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1107,"weaponDamageMax":2057,"weaponSpeed":1.9,"ilvl":353,"phase":2,"quality":4}, -{"id":64862,"name":"Bloodthirsty Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64863,"name":"Bloodthirsty Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64864,"name":"Bloodthirsty Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5,3,8]}, -{"id":64865,"name":"Bloodthirsty Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,218,339,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64866,"name":"Bloodthirsty Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,218,339,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6,1]}, -{"id":64867,"name":"Bloodthirsty Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64868,"name":"Bloodthirsty Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7]}, -{"id":64869,"name":"Bloodthirsty Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64870,"name":"Bloodthirsty Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9,4,10]}, -{"id":64871,"name":"Bloodthirsty Gladiator's War Edge","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[101,0,152,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":895,"weaponDamageMax":1344,"weaponSpeed":1.9,"ilvl":353,"phase":2,"quality":4}, -{"id":64872,"name":"Bloodthirsty Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,178,267,0,0,119,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64873,"name":"Bloodthirsty Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,178,267,0,0,0,0,119,0,0,0,0,0,0,0,0,119,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2,7]}, -{"id":64874,"name":"Bloodthirsty Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Wildhide","setId":921}, -{"id":64875,"name":"Bloodthirsty Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Wildhide","setId":921}, -{"id":64876,"name":"Bloodthirsty Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Wildhide","setId":921}, -{"id":64877,"name":"Bloodthirsty Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Wildhide","setId":921}, -{"id":64878,"name":"Bloodthirsty Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Bloodthirsty Gladiator's Wildhide","setId":921}, -{"id":64880,"name":"Staff of Ammunae","icon":"trade_archaeology_staff-of-ammunrae","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,247,0,194,0,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":1795,"weaponSpeed":2.4,"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":92139}}]}, -{"id":64885,"name":"Scimitar of the Sirocco","icon":"trade_archaeology_scimitar-of-the-sirocco","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,111,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":92163}}]}, -{"id":64904,"name":"Ring of the Boy Emperor","icon":"trade_archaeology_ring-of-the-boyemperor","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":12,"spellId":92168}}]}, -{"id":64923,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921}, -{"id":64924,"name":"Gladiator's Wyrmhide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921}, -{"id":64925,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921}, -{"id":64926,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921}, -{"id":64927,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921}, -{"id":64928,"name":"Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919}, -{"id":64929,"name":"Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919}, -{"id":64930,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919}, -{"id":64931,"name":"Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919}, -{"id":64932,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919}, -{"id":64933,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917}, -{"id":64934,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917}, -{"id":64935,"name":"Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917}, -{"id":64936,"name":"Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917}, -{"id":64937,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917}, -{"id":64938,"name":"Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":64939,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":64940,"name":"Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":64941,"name":"Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":64942,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":64943,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909}, -{"id":64944,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909}, -{"id":64945,"name":"Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909}, -{"id":64946,"name":"Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909}, -{"id":64947,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909}, -{"id":64948,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918}, -{"id":64949,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918}, -{"id":64950,"name":"Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918}, -{"id":64951,"name":"Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918}, -{"id":64952,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918}, -{"id":64953,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916}, -{"id":64954,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916}, -{"id":64955,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916}, -{"id":64956,"name":"Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916}, -{"id":64957,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916}, -{"id":64958,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912}, -{"id":64959,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912}, -{"id":64960,"name":"Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912}, -{"id":64961,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912}, -{"id":64962,"name":"Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912}, -{"id":64963,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914}, -{"id":64964,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914}, -{"id":64965,"name":"Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914}, -{"id":64966,"name":"Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914}, -{"id":64967,"name":"Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914}, -{"id":64968,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,357,218,138,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923}, -{"id":64969,"name":"Gladiator's Kodohide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923}, -{"id":64970,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923}, -{"id":64971,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923}, -{"id":64972,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923}, -{"id":64973,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910}, -{"id":64974,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910}, -{"id":64975,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910}, -{"id":64976,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910}, -{"id":64977,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910}, -{"id":64978,"name":"Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924}, -{"id":64979,"name":"Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924}, -{"id":64980,"name":"Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924}, -{"id":64981,"name":"Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924}, -{"id":64982,"name":"Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924}, -{"id":64983,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922}, -{"id":64984,"name":"Gladiator's Dragonhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922}, -{"id":64985,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_mail_07","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922}, -{"id":64986,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922}, -{"id":64987,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922}, -{"id":64988,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920}, -{"id":64989,"name":"Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920}, -{"id":64990,"name":"Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920}, -{"id":64991,"name":"Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920}, -{"id":64992,"name":"Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920}, -{"id":65003,"name":"Reclaimed Ashkandi, Greatsword of the Brotherhood","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,257,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2138,"weaponDamageMax":3208,"weaponSpeed":3.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65004,"name":"Circuit Design Breastplate","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,217,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65007,"name":"Akirus the Worm-Breaker","icon":"inv_mace_2h_grimbatolraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,0,257,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65017,"name":"Andoros, Fist of the Dragon King","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,247,165,110,0,0,0,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65018,"name":"Shadow of Dread","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"stats":[0,0,322,215,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65019,"name":"Shadowblaze Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65020,"name":"Crown of Burning Waters","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,257,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65021,"name":"Manacles of the Sleeping Beast","icon":"inv_bracer_leather_raiddruid_i_01","type":6,"armorType":2,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65022,"name":"Belt of the Blackhand","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65023,"name":"Akmin-Kurai, Dominion's Shield","icon":"inv_shield_bwdraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65024,"name":"Crul'korak, the Lightning's Arc","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65025,"name":"Rage of Ages","icon":"inv_misc_necklacea8","type":2,"stats":[215,0,322,0,0,143,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65026,"name":"Prestor's Talisman of Machination","icon":"inv_jewelry_necklace_17","type":12,"stats":[0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65027,"name":"Pauldrons of the Apocalypse","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,0,0,0,125,0,266,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65028,"name":"Chimaeron Armguards","icon":"inv_bracer_mail_raidhunter_i_01","type":6,"armorType":3,"stats":[0,215,322,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65029,"name":"Jar of Ancient Remedies","icon":"inv_misc_cat_trinket06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65030,"name":"Leggings of Consuming Flames","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,247,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65031,"name":"Flash Freeze Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65032,"name":"Legwraps of the Greatest Son","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,578,345,227,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65033,"name":"Treads of Flawless Creation","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65034,"name":"Belt of Arcane Storms","icon":"inv_belt_cloth_raidwarlock_i_01","type":8,"armorType":1,"stats":[0,0,429,266,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65035,"name":"Cloak of Biting Chill","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,215,322,0,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65036,"name":"Mace of Acrid Death","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65037,"name":"Tunic of Failed Experiments","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,257,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65038,"name":"Dragon Bone Warhelm","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,0,0,0,135,0,0,325,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65039,"name":"Aberration's Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65040,"name":"Belt of Absolute Zero","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[266,0,429,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Maloriak"}}]}, -{"id":65041,"name":"Incineratus","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,248,165,0,0,0,110,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65042,"name":"Breastplate of Avenging Flame","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,578,345,227,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65043,"name":"Mantle of Nefarius","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,186,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65044,"name":"Flame Pillar Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65045,"name":"Scorched Wormling Vest","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,217,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65046,"name":"Lifecycle Waistguard","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65047,"name":"Lava Spine","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65048,"name":"Symbiotic Worm","icon":"inv_qiraj_skinsandworm","type":12,"stats":[0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65049,"name":"Leggings of Lethal Force","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65050,"name":"Parasitic Bands","icon":"inv_bracer_leatherraidrogue_i_01","type":6,"armorType":2,"stats":[0,215,322,0,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65051,"name":"Molten Tantrum Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,185,0,147,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Magmaw"}}]}, -{"id":65052,"name":"Kingdom's Heart","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65053,"name":"Bell of Enraging Resonance","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65054,"name":"Mantle of Roaring Flames","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65055,"name":"Gloves of Cacophony","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65056,"name":"Bracers of the Burningeye","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,322,215,143,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65057,"name":"Belt of the Nightmare","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65058,"name":"Themios the Darkbringer","icon":"inv_bow_1h_bwdraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,121,181,0,0,0,81,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1428,"weaponDamageMax":2653,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65059,"name":"Ironstar Amulet","icon":"inv_misc_necklacea3","type":2,"stats":[163,0,322,0,0,109,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65060,"name":"Sark of the Unwatched","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,227,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65061,"name":"Legguards of the Unseeing","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[273,0,578,0,0,0,0,0,155,0,365,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65062,"name":"Battleplate of Ancient Kings","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65063,"name":"Boots of Vertigo","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65064,"name":"Pip's Solution Agitator","icon":"inv_wand_1h_grimbatolraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,181,121,81,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1252,"weaponDamageMax":2327,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65065,"name":"Brackish Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65066,"name":"Helm of the Blind Seer","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Atramedes"}}]}, -{"id":65067,"name":"Burden of Mortality","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65068,"name":"Chaos Beast Bracers","icon":"inv_bracer_raidshaman_i_01","type":6,"armorType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65069,"name":"Quickstep Galoshes","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,429,266,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65070,"name":"Bile-O-Tron Nut","icon":"inv_misc_gear_01","type":11,"stats":[153,0,322,0,0,0,0,0,126,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65071,"name":"Plated Fists of Provocation","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65072,"name":"Heart of Rage","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65073,"name":"Double Attack Handguards","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,0,0,0,171,0,0,191,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65074,"name":"Spaulders of the Scarred Lady","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Nefarian's End"}}]}, -{"id":65075,"name":"Massacre Treads","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[266,0,429,0,0,0,0,0,171,0,0,191,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Chimaeron"}}]}, -{"id":65076,"name":"Security Measure Alpha","icon":"inv_misc_rubystar","type":11,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65077,"name":"Power Generator Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,197,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65078,"name":"Passive Resistor Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65079,"name":"X-Tron Duct Tape","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,429,266,191,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65080,"name":"Life Force Chargers","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65081,"name":"Organic Lifeform Inverter","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,0,0,110,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":751,"weaponDamageMax":1127,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65082,"name":"Lightning Conductor Band","icon":"inv_misc_diamondring1","type":11,"stats":[0,215,322,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65083,"name":"Poison Protocol Pauldrons","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65084,"name":"Voltage Source Chestguard","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,227,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65085,"name":"Electron Inductor Coils","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[215,0,322,0,0,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65086,"name":"Jumbotron Power Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,161,0,181,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5094,"otherName":"Omnotron Defense System"}}]}, -{"id":65090,"name":"Twilight's Hammer","icon":"inv_mace_1h_hammeroftwilight_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,248,165,0,0,110,110,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":620,"weaponDamageMax":1153,"weaponSpeed":1.7,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65091,"name":"Blade of the Witching Hour","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,248,165,0,0,110,0,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65092,"name":"Waistguard of Hatred","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65093,"name":"Helm of Eldritch Authority","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,217,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65094,"name":"Fang of Twilight","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65095,"name":"Dragonheart Piercer","icon":"inv_bow_2h_crossbow_grimbatolraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,121,181,0,0,0,81,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1688,"weaponDamageMax":2533,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65096,"name":"Daybreaker Helm","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65105,"name":"Theralion's Mirror","icon":"spell_arcane_teleportironforge","type":12,"stats":[0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65106,"name":"Ring of Rivalry","icon":"inv_misc_diamondring3","type":11,"stats":[215,0,322,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65107,"name":"Necklace of Strife","icon":"inv_misc_necklacea8","type":2,"stats":[0,215,322,0,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65108,"name":"Drape of the Twins","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"stats":[0,0,322,215,143,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65109,"name":"Vial of Stolen Memories","icon":"inv_misc_cat_trinket02","type":12,"stats":[0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65110,"name":"Heart of Ignacious","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65111,"name":"Scepter of Ice","icon":"inv_crystallized_water","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65112,"name":"Valiona's Medallion","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Theralion and Valiona"}}]}, -{"id":65113,"name":"Hydrolance Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65114,"name":"Feludius' Mantle","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,176,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65115,"name":"Glaciated Helm","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,578,325,247,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65116,"name":"Treads of Liquid Ice","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65117,"name":"Glittering Epidermis","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[215,0,322,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65118,"name":"Crushing Weight","icon":"inv_misc_cat_trinket05","type":12,"stats":[363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65119,"name":"Gravitational Pull","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[207,0,429,0,0,0,0,0,125,0,0,276,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65120,"name":"Arion's Crown","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,0,207,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65121,"name":"Terrastra's Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65122,"name":"Dispersing Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Ascendant Council"}}]}, -{"id":65123,"name":"Signet of the Fifth Circle","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65124,"name":"Fall of Mortality","icon":"inv_misc_cat_trinket12","type":12,"stats":[0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65125,"name":"Kilt of the Forgotten Battle","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65126,"name":"Hands of the Twilight Council","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65127,"name":"Shackles of the End of Days","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65128,"name":"Treads of Hideous Transformation","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,429,266,191,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65129,"name":"Membrane of C'Thun","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65130,"name":"Helm of Maddening Whispers","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65131,"name":"Battleplate of the Apocalypse","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[273,0,578,0,0,195,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65132,"name":"Coil of Ten-Thousand Screams","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65133,"name":"Book of Binding Will","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,0,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65134,"name":"Wyrmbreaker's Amulet","icon":"inv_misc_necklacea7","type":2,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65135,"name":"Robes of the Burning Acolyte","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,227,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65136,"name":"Helm of the Nether Scion","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,276,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65137,"name":"Legguards of the Emerald Brood","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,578,345,257,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65138,"name":"Bracers of the Bronze Flight","icon":"inv_bracer_robe_raidmage_i_01","type":6,"armorType":1,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65139,"name":"Malevolence","icon":"inv_stave_2h_grimbatolraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1350,"weaponDamageMax":2026,"weaponSpeed":2.4,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65140,"name":"Essence of the Cyclone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65141,"name":"Proto-Handler's Gauntlets","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65142,"name":"Pauldrons of the Great Ettin","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65143,"name":"Bracers of Impossible Strength","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[215,0,322,0,0,0,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":234135,"npcName":"Kyanite Stonetender"}},{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65144,"name":"Storm Rider's Boots","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,266,429,0,0,0,0,171,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}]}, -{"id":65145,"name":"Shalug'doom, the Axe of Unmaking","icon":"inv_axe_122","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,257,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":65147,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913}, -{"id":65148,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913}, -{"id":65149,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913}, -{"id":65150,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913}, -{"id":65151,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913}, -{"id":65152,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911}, -{"id":65153,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911}, -{"id":65154,"name":"Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911}, -{"id":65155,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911}, -{"id":65156,"name":"Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911}, -{"id":65163,"name":"Buzzer Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":401,"weaponDamageMax":745,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}]}, -{"id":65164,"name":"Cruel Barb","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":774,"weaponDamageMax":1438,"weaponSpeed":2.7,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}]}, -{"id":65165,"name":"Foe Reaper","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,202,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}]}, -{"id":65166,"name":"Buzz Saw","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}]}, -{"id":65167,"name":"Emberstone Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,182,0,0,0,0,213,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":806,"weaponDamageMax":1469,"weaponSpeed":3,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}]}, -{"id":65168,"name":"Rockslicer","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,302,454,0,0,0,182,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1502,"weaponDamageMax":2253,"weaponSpeed":3.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}]}, -{"id":65169,"name":"Lavishly Jeweled Ring","icon":"inv_jewelry_ring_76","type":11,"stats":[0,0,252,133,0,107,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}]}, -{"id":65170,"name":"Smite's Reaver","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}]}, -{"id":65171,"name":"Cookie's Tenderizer","icon":"inv_fabric_silk_02","type":13,"weaponType":4,"handType":2,"stats":[129,0,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":802,"weaponDamageMax":1491,"weaponSpeed":2.8,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}]}, -{"id":65172,"name":"Cookie's Stirring Rod","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,143,95,0,0,63,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":764,"weaponDamageMax":1420,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}]}, -{"id":65173,"name":"Thief's Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}]}, -{"id":65174,"name":"Corsair's Overshirt","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,162,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}]}, -{"id":65175,"name":"Baradin Footman's Tags","icon":"inv_jewelry_necklace_37","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1177,"repLevel":6,"factionId":1}}],"factionRestriction":1}, -{"id":65176,"name":"Baradin Grunt's Talisman","icon":"inv_jewelry_necklace_39","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"rep":{"repFactionId":1178,"repLevel":6,"factionId":2}}],"factionRestriction":2}, -{"id":65177,"name":"Cape of the Brotherhood","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}]}, -{"id":65178,"name":"VanCleef's Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"heroic":true,"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}]}, -{"id":65179,"name":"Magma Plated Battleplate","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":65180,"name":"Magma Plated Gauntlets","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":65181,"name":"Magma Plated Helmet","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":65182,"name":"Magma Plated Legplates","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":65183,"name":"Magma Plated Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925}, -{"id":65184,"name":"Magma Plated Chestguard","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":65185,"name":"Magma Plated Handguards","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":65186,"name":"Magma Plated Faceguard","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":65187,"name":"Magma Plated Legguards","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":65188,"name":"Magma Plated Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926}, -{"id":65189,"name":"Stormrider's Grips","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":65190,"name":"Stormrider's Headpiece","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":65191,"name":"Stormrider's Legguards","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":65192,"name":"Stormrider's Raiment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":65193,"name":"Stormrider's Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927}, -{"id":65194,"name":"Stormrider's Handwraps","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":65195,"name":"Stormrider's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,237,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":65196,"name":"Stormrider's Legwraps","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,237,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":65197,"name":"Stormrider's Robes","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":65198,"name":"Stormrider's Mantle","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928}, -{"id":65199,"name":"Stormrider's Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":65200,"name":"Stormrider's Cover","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":65201,"name":"Stormrider's Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":65202,"name":"Stormrider's Vestment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,0,0,227,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":65203,"name":"Stormrider's Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,0,0,0,171,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929}, -{"id":65204,"name":"Lightning-Charged Tunic","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,0,217,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":65205,"name":"Lightning-Charged Gloves","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":65206,"name":"Lightning-Charged Headguard","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,0,257,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":65207,"name":"Lightning-Charged Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":65208,"name":"Lightning-Charged Spaulders","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,171,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930}, -{"id":65209,"name":"Firelord's Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":65210,"name":"Firelord's Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":65211,"name":"Firelord's Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":65212,"name":"Firelord's Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":65213,"name":"Firelord's Mantle","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931}, -{"id":65214,"name":"Reinforced Sapphirium Battleplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":65215,"name":"Reinforced Sapphirium Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":65216,"name":"Reinforced Sapphirium Helmet","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":65217,"name":"Reinforced Sapphirium Legplates","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":65218,"name":"Reinforced Sapphirium Pauldrons","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932}, -{"id":65219,"name":"Reinforced Sapphirium Breastplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":65220,"name":"Reinforced Sapphirium Gloves","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":65221,"name":"Reinforced Sapphirium Headguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":65222,"name":"Reinforced Sapphirium Greaves","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,578,345,242,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":65223,"name":"Reinforced Sapphirium Mantle","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933}, -{"id":65224,"name":"Reinforced Sapphirium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":65225,"name":"Reinforced Sapphirium Handguards","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":65226,"name":"Reinforced Sapphirium Faceguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":65227,"name":"Reinforced Sapphirium Legguards","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":65228,"name":"Reinforced Sapphirium Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934}, -{"id":65229,"name":"Mercurial Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":65230,"name":"Mercurial Cowl","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":65231,"name":"Mercurial Legwraps","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":65232,"name":"Mercurial Robes","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,227,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":65233,"name":"Mercurial Mantle","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935}, -{"id":65234,"name":"Mercurial Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":65235,"name":"Mercurial Hood","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":65236,"name":"Mercurial Leggings","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":65237,"name":"Mercurial Vestment","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":65238,"name":"Mercurial Shoulderwraps","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936}, -{"id":65239,"name":"Wind Dancer's Tunic","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":65240,"name":"Wind Dancer's Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":65241,"name":"Wind Dancer's Helmet","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":65242,"name":"Wind Dancer's Legguards","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":65243,"name":"Wind Dancer's Spaulders","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937}, -{"id":65244,"name":"Tunic of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":65245,"name":"Handwraps of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":65246,"name":"Faceguard of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,237,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":65247,"name":"Legwraps of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,247,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":65248,"name":"Mantle of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938}, -{"id":65249,"name":"Cuirass of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,0,217,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":65250,"name":"Grips of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":65251,"name":"Helmet of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,257,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":65252,"name":"Legguards of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":65253,"name":"Spaulders of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,171,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939}, -{"id":65254,"name":"Hauberk of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":65255,"name":"Gloves of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":65256,"name":"Headpiece of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,0,0,0,197,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":65257,"name":"Kilt of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":65258,"name":"Shoulderwraps of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940}, -{"id":65259,"name":"Shadowflame Handwraps","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":65260,"name":"Shadowflame Hood","icon":"inv_helmet_cloth_raidwarlock_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":65261,"name":"Shadowflame Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":65262,"name":"Shadowflame Robes","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":65263,"name":"Shadowflame Mantle","icon":"inv_shoulder_cloth_raidwarlock_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941}, -{"id":65264,"name":"Earthen Battleplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":65265,"name":"Earthen Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":65266,"name":"Earthen Helmet","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":65267,"name":"Earthen Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":65268,"name":"Earthen Pauldrons","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942}, -{"id":65269,"name":"Earthen Chestguard","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":65270,"name":"Earthen Handguards","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":65271,"name":"Earthen Faceguard","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":65272,"name":"Earthen Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":65273,"name":"Earthen Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943}, -{"id":65274,"name":"Cloak of Coordination","icon":"inv_guild_cloak_horde_c","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":5035,"npcName":"Master Crafter"}}]}, -{"id":65360,"name":"Cloak of Coordination","icon":"inv_guild_cloak_alliance_c","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":5035,"npcName":"Master Crafter"}}]}, -{"id":65367,"name":"Mistral Circle","icon":"inv_misc_rubystar","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65368,"name":"Star Chaser Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-236,-235,-234,-233],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65369,"name":"Sky Strider Belt","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-223,-222,-221,-220],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65370,"name":"Thunder Wall Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-226,-225,-224],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65371,"name":"Wind Stalker Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-236,-235,-234,-233],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65372,"name":"Permafrost Signet","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65373,"name":"Planetary Band","icon":"inv_jewelry_ring_87","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65374,"name":"Gale Rouser Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-232,-231,-230,-229],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65375,"name":"Tempest Keeper Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-232,-231,-230,-229],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65376,"name":"Soul Breath Belt","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-232,-231,-230,-229],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65377,"name":"Lightning Well Belt","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-232,-231,-230,-229],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":544,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"The Conclave of Wind"}}]}, -{"id":65378,"name":"Star Chaser Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-202,-201,-200,-199],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65379,"name":"Sky Strider Greaves","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-176,-175,-174,-173],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65380,"name":"Thunder Wall Greaves","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-182,-181,-180],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65381,"name":"Wind Stalker Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-202,-201,-200,-199],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65382,"name":"Cloudburst Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65383,"name":"Soul Breath Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-194,-193,-192,-191,-190,-189],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65384,"name":"Gale Rouser Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-194,-193,-192,-191],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65385,"name":"Tempest Keeper Leggings","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-194,-193,-192,-191],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65386,"name":"Lightning Well Legguards","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-194,-193,-192,-191],"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":733,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":65518,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":65519,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":65520,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":65521,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":65522,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":65523,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":65524,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":65525,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":65526,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":65527,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":65528,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65529,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65530,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65531,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":65532,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":65533,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":65534,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":65535,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":65536,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":65537,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":65538,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":65539,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":65540,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":65541,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":65542,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":65543,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":65544,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":65545,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":65546,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":65547,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":65548,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":65549,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":65550,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":65551,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":65552,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":65553,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,541,321,201,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":65554,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":65555,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":65556,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":65557,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,0,0,0,0,159,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":65558,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":65559,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,248,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":65560,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":65561,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":65562,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,248,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":65563,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":65564,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":65565,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":65566,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":65567,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":65568,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":65569,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":65570,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":65571,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65572,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65573,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":65574,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,541,321,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":65575,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,541,321,0,0,0,0,0,0,0,201,0,0,0,0,241,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":65576,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,541,301,0,0,0,181,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":65577,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,809,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":65578,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,971,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":65579,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,321,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":65580,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":65581,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":65582,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":65583,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":65584,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":65585,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":65586,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":65587,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,321,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,1501,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":65588,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,301,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,1394,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":65589,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":65590,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":65591,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":65592,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":65593,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[248,0,402,0,0,0,0,0,159,0,0,0,0,0,0,0,179,0,0,0,0,0,2615,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":65594,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[321,0,541,0,0,0,0,201,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":65595,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[301,0,541,0,0,0,0,0,0,0,0,181,0,0,0,0,241,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":65596,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[248,0,402,0,0,159,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":65597,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[321,0,541,0,0,0,201,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":65598,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,402,248,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65599,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65600,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,890,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":65601,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":65602,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":65603,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":65604,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[2,7]}, -{"id":65605,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":65606,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[4]}, -{"id":65607,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[248,0,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":65608,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[248,0,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[9,4,10]}, -{"id":65609,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,248,402,0,0,0,159,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":65610,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,248,402,0,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[6,1]}, -{"id":65611,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,402,248,0,0,0,159,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":65612,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,402,248,159,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4,"classAllowlist":[7]}, -{"id":65654,"name":"Belt of a Thousand Deaths","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[158,0,237,0,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65655,"name":"Leggings of Opportune Strikes","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65656,"name":"Sea Witch Charm","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65657,"name":"Deepmist Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,319,212,0,0,124,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65658,"name":"Stonespeaker's Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65659,"name":"Kelp Forest Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,212,319,0,0,0,124,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{}}]}, -{"id":65739,"name":"Necklace of the Dead City","icon":"inv_jewelry_necklace_41","type":2,"stats":[138,0,207,0,0,0,0,101,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28520,"name":"The Fall of Neferset City"}}]}, -{"id":65740,"name":"Fallen Brotherhood Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,277,185,123,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28520,"name":"The Fall of Neferset City"}}]}, -{"id":65741,"name":"Wrap of the Fallen City","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,373,249,176,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28520,"name":"The Fall of Neferset City"}}]}, -{"id":65742,"name":"Drape of Neferset Destruction","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[0,138,207,0,0,0,83,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28520,"name":"The Fall of Neferset City"}}]}, -{"id":65743,"name":"Helm of Vicious Direction","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[249,0,373,0,0,0,158,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":65744,"name":"Nimble Command Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,185,277,0,0,130,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":65745,"name":"Martial Sandals","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,185,277,0,0,0,114,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":65746,"name":"Leggings of Valorous Defense","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,373,249,0,187,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":65747,"icon":"inv_jewelry_amulet_03","type":2,"stats":[123,0,184,0,0,0,0,0,0,83,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65748,"icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,245,164,0,0,0,90,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65749,"icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,331,220,0,0,155,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65750,"icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,331,220,0,151,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65751,"icon":"inv_jewelry_ring_04","type":11,"stats":[123,0,184,0,0,0,90,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65752,"icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,184,123,82,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65753,"icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,69,104,0,0,39,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":478,"weaponDamageMax":889,"weaponSpeed":1.7,"ilvl":312,"phase":1,"quality":2}, -{"id":65754,"icon":"inv_boots_09","type":10,"armorType":4,"stats":[164,0,245,0,0,115,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65755,"icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,220,331,0,0,0,0,160,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65756,"icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,245,164,0,0,106,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65757,"icon":"inv_pants_06","type":9,"armorType":4,"stats":[0,0,331,220,0,0,160,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65758,"icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,184,123,78,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65759,"icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,245,164,109,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65760,"icon":"inv_belt_02","type":8,"armorType":4,"stats":[164,0,245,0,0,106,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65761,"icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,164,245,0,0,0,93,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65762,"icon":"inv_misc_cape_14","type":4,"stats":[0,0,184,123,0,0,0,66,0,0,0,91,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65763,"icon":"inv_shirt_04","type":5,"armorType":4,"stats":[0,0,331,220,0,0,0,147,0,0,0,147,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65764,"icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,164,245,0,0,0,0,121,88,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65765,"icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,331,220,0,0,112,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65766,"icon":"inv_staff_08","type":13,"weaponType":9,"handType":4,"stats":[220,0,331,0,0,153,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"phase":1,"quality":2}, -{"id":65767,"icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,331,220,140,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65768,"icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,245,164,93,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65769,"icon":"inv_misc_cape_14","type":4,"stats":[123,0,184,0,0,0,91,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65770,"icon":"inv_shirt_04","type":5,"armorType":4,"stats":[220,0,331,0,0,162,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65771,"icon":"inv_pants_06","type":9,"armorType":4,"stats":[220,0,331,0,0,0,147,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65772,"icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,184,123,0,91,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65773,"name":"Gloves of Gnomebliteration","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,129,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27779,"name":"Gnomebliteration"}}]}, -{"id":65774,"name":"Fireball Treads","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,277,185,129,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27779,"name":"Gnomebliteration"}}]}, -{"id":65775,"name":"Spaulders of Rolling Incineration","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,277,185,0,0,105,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27779,"name":"Gnomebliteration"}}]}, -{"id":65776,"name":"Kata-Mary Crown","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,373,249,0,0,178,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27779,"name":"Gnomebliteration"}}]}, -{"id":65777,"icon":"inv_boots_09","type":10,"armorType":4,"stats":[0,0,245,164,121,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65778,"icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,164,245,0,0,104,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65779,"icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,220,331,0,0,0,129,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65780,"icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[123,0,184,0,0,0,0,0,91,66,0,0,0,0,0,0,0,0,0,0,0,0,10231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65781,"icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,184,123,90,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65782,"icon":"inv_jewelry_ring_04","type":11,"stats":[0,123,184,0,0,0,83,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65783,"icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,245,164,117,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65784,"icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,164,245,0,0,0,109,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65785,"icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,245,164,0,93,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65786,"name":"Colossus Smasher Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,125,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27748,"name":"Fortune and Glory"}}]}, -{"id":65787,"name":"Harrison's Climbing Hook","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,104,69,0,38,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":756,"weaponDamageMax":1404,"weaponSpeed":1.9,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27748,"name":"Fortune and Glory"}}]}, -{"id":65788,"name":"Arrowspike Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,69,104,0,0,42,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1464,"weaponSpeed":2.8,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27748,"name":"Fortune and Glory"}}]}, -{"id":65789,"name":"Caimas' Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[164,0,245,0,0,0,114,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27738,"name":"The Pit of Scales"}}]}, -{"id":65790,"name":"Pit Heart Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,123,184,0,0,0,72,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27738,"name":"The Pit of Scales"}}]}, -{"id":65791,"name":"Shield of the Returning Prince","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,184,123,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27738,"name":"The Pit of Scales"}}]}, -{"id":65792,"name":"Girdle of the Rescuer","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,245,164,109,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27738,"name":"The Pit of Scales"}}]}, -{"id":65793,"name":"Hamatep Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,331,220,122,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27632,"name":"Tanotep's Son"}}]}, -{"id":65794,"name":"Marshseeker Gloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,245,164,115,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27632,"name":"Tanotep's Son"}}]}, -{"id":65795,"name":"Vir'naal Guardsman's Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,94,141,0,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27632,"name":"Tanotep's Son"}}]}, -{"id":65796,"name":"Qebnet Greaves","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[164,0,245,0,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28502,"name":"The Bandit Warlord"}}]}, -{"id":65797,"name":"Heptu Headguard","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,220,331,0,0,153,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28502,"name":"The Bandit Warlord"}}]}, -{"id":65798,"name":"Bandit Scourge Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,123,184,0,0,0,0,91,0,0,0,66,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28502,"name":"The Bandit Warlord"}}]}, -{"id":65799,"name":"Ihsenn's Staff of Terror","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,331,220,0,160,125,0,0,0,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28502,"name":"The Bandit Warlord"}}]}, -{"id":65800,"name":"Bracers of the Dark Pyramid","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,184,123,80,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28145,"name":"Venomblood Antidote"}}]}, -{"id":65801,"name":"Mar'at Belt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,164,245,0,0,0,0,93,0,0,0,118,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28145,"name":"Venomblood Antidote"}}]}, -{"id":65802,"name":"Shining Scorpid Eye","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,184,123,0,92,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28145,"name":"Venomblood Antidote"}}]}, -{"id":65803,"name":"Harrison's Insignia of Panache","icon":"inv_jewelry_necklace_28","type":12,"stats":[234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28267,"name":"Firing Squad"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":65804,"name":"Talisman of Sinister Order","icon":"inv_jewelry_talisman_11","type":12,"stats":[0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28267,"name":"Firing Squad"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":65805,"name":"Schnottz's Medallion of Command","icon":"inv_jewelry_amulet_01","type":12,"stats":[0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28267,"name":"Firing Squad"}},{"soldBy":{"npcId":228374,"npcName":"Accessories Vendor","zoneId":1519}}]}, -{"id":65806,"name":"Sunwatcher's Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[220,0,331,0,0,115,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27706,"name":"The Scepter of Orsis"}}]}, -{"id":65807,"name":"Hood of the Scorpion","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,331,220,0,0,0,143,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27706,"name":"The Scepter of Orsis"}}]}, -{"id":65808,"name":"Orsis Polearm","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,220,331,0,0,129,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":844,"weaponDamageMax":1569,"weaponSpeed":3,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27706,"name":"The Scepter of Orsis"}}]}, -{"id":65809,"name":"Gloves of the Stela","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,245,164,115,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27520,"name":"Minions of Al'Akir"}}]}, -{"id":65810,"name":"Asp-Clasp Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,184,123,88,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27520,"name":"Minions of Al'Akir"}}]}, -{"id":65811,"name":"Cenotaph Choker","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,123,184,0,0,0,0,78,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27520,"name":"Minions of Al'Akir"}}]}, -{"id":65812,"name":"Namkhare's Cabochon Charm","icon":"inv_misc_gem_goldendraenite_03","type":14,"rangedWeaponType":4,"stats":[69,0,104,0,0,0,0,0,0,41,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28480,"name":"Lieutenants of Darkness"}}]}, -{"id":65813,"name":"Scarab-Inlaid Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[69,0,104,0,0,47,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1464,"weaponSpeed":2.8,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28480,"name":"Lieutenants of Darkness"}}]}, -{"id":65814,"name":"Sekhemet's Seal","icon":"inv_misc_moodring1","type":11,"stats":[0,0,184,123,0,72,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28480,"name":"Lieutenants of Darkness"}}]}, -{"id":65815,"name":"Drape of the Mortal Guardians","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,123,184,0,0,0,89,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2}, -{"id":65816,"name":"Ramkahen Ceremonial Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[220,0,331,0,0,0,151,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28499,"name":"Punish the Trespassers"}}]}, -{"id":65817,"name":"Grave Protector Shoulderplates","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[0,0,245,164,121,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28499,"name":"Punish the Trespassers"}}]}, -{"id":65818,"name":"Leggings of the Unforgiving Tomb","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,220,331,0,0,0,125,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28499,"name":"Punish the Trespassers"}}]}, -{"id":65819,"name":"Kavem's Trimmed Chestguard","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,331,220,0,0,153,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28105,"name":"Kavem the Callous"}}]}, -{"id":65820,"name":"Keythief Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,245,164,98,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28105,"name":"Kavem the Callous"}}]}, -{"id":65821,"name":"Pearl-Handled Long Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,69,104,0,0,0,0,52,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1464,"weaponSpeed":2.8,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28105,"name":"Kavem the Callous"}}]}, -{"id":65822,"name":"Hevna's Eye Socket","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[164,0,245,0,0,0,0,0,0,106,0,111,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27838,"name":"The Root of the Corruption"}}]}, -{"id":65823,"name":"Scales of the Scalemother","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,164,245,0,0,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27838,"name":"The Root of the Corruption"}}]}, -{"id":65824,"name":"Corrupted Eggshell Drape","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,184,123,74,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27838,"name":"The Root of the Corruption"}}]}, -{"id":65825,"name":"Helm of the Siltwater Slayer","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[0,0,331,220,0,0,153,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27837,"name":"Trespassers in the Water"}}]}, -{"id":65826,"name":"Sandals of Corrupted Water","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,245,164,90,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27837,"name":"Trespassers in the Water"}}]}, -{"id":65827,"name":"Vir'naal Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,245,164,0,114,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27837,"name":"Trespassers in the Water"}}]}, -{"id":65828,"name":"Great General's Crown","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[220,0,331,0,0,153,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28277,"name":"Salhet the Tactician"}}]}, -{"id":65829,"name":"Leggings of Feline Command","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,220,331,0,0,0,129,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28277,"name":"Salhet the Tactician"}}]}, -{"id":65830,"name":"Salhet's Ornate Dagger","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,141,94,0,55,0,0,0,0,0,67,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":292,"weaponDamageMax":543,"weaponSpeed":1.4,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28277,"name":"Salhet the Tactician"}}]}, -{"id":65831,"name":"Pharoah's Burial Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[185,0,277,0,0,0,0,0,0,137,0,99,0,0,0,0,0,0,0,0,0,0,2271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28612,"name":"Harrison Jones and the Temple of Uldum"}}]}, -{"id":65832,"name":"Girdle of the Ancient One","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,277,185,0,0,123,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28612,"name":"Harrison Jones and the Temple of Uldum"}}]}, -{"id":65833,"name":"Leggings of Promise","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,373,249,138,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":28612,"name":"Harrison Jones and the Temple of Uldum"}}]}, -{"id":65834,"name":"Weaponseeker Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[123,0,184,0,0,0,64,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27839,"name":"Ancient Weapons"}}]}, -{"id":65835,"name":"Chestguard of the Bleak Scarab","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,331,220,136,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27839,"name":"Ancient Weapons"}}]}, -{"id":65836,"name":"Stolen Neferset Waistguard","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,245,164,0,0,0,118,0,0,0,93,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27839,"name":"Ancient Weapons"}}]}, -{"id":65837,"name":"Legplates of Heilopolis","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[0,0,331,220,149,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28200,"name":"The Element of Supplies"}}]}, -{"id":65838,"name":"Cartouche-Inscribed Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,245,164,90,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28200,"name":"The Element of Supplies"}}]}, -{"id":65839,"name":"Sarcophagus Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,184,123,70,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28200,"name":"The Element of Supplies"}}]}, -{"id":65840,"name":"Knife of the Venomous Asp","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,94,141,0,0,0,0,66,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":375,"weaponDamageMax":698,"weaponSpeed":1.8,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28200,"name":"The Element of Supplies"}}]}, -{"id":65841,"name":"Tomb-Curse Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,0,0,0,129,0,158,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27761,"name":"A Disarming Distraction"}}]}, -{"id":65842,"name":"Treads of the Starry Obelisk","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,164,245,0,0,98,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27761,"name":"A Disarming Distraction"}}]}, -{"id":65843,"name":"Brainrot Grips","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,164,245,0,0,0,121,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27761,"name":"A Disarming Distraction"}}]}, -{"id":65844,"name":"Tombbreaker Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[94,0,141,0,0,0,68,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":543,"weaponDamageMax":1008,"weaponSpeed":2.6,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27755,"name":"The Curse of the Tombs"}}]}, -{"id":65845,"name":"Misappropriated Girdle of Khartut","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[0,0,245,164,0,0,101,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27755,"name":"The Curse of the Tombs"}}]}, -{"id":65846,"name":"Bracers of the Verdant Cradle","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,184,123,89,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27755,"name":"The Curse of the Tombs"}}]}, -{"id":65847,"name":"Robes of Khintaset","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,331,220,0,0,147,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27755,"name":"The Curse of the Tombs"}}]}, -{"id":65848,"name":"False-Face Mask","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[220,0,331,0,0,167,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28194,"name":"The Great Escape"}}]}, -{"id":65849,"name":"Gauntlets of the Obelisk","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,164,245,0,0,0,101,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28194,"name":"The Great Escape"}}]}, -{"id":65850,"name":"Mirror-Polished Boots","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,164,245,0,0,0,0,0,106,0,0,111,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28194,"name":"The Great Escape"}}]}, -{"id":65851,"name":"Officer's Formal Baton","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,331,220,0,0,0,164,0,0,0,118,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28194,"name":"The Great Escape"}}]}, -{"id":65852,"name":"Gauntlets of Delicate Aim","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[164,0,245,0,0,0,0,112,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27990,"name":"Battlezone"}}]}, -{"id":65853,"name":"Tank Director's Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,245,164,88,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27990,"name":"Battlezone"}}]}, -{"id":65854,"name":"Substitute Gunner's Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,0,331,220,164,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27990,"name":"Battlezone"}}]}, -{"id":65855,"name":"Mongoose-Hide Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,164,245,0,0,0,0,93,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27969,"name":"Make Yourself Useful"}}]}, -{"id":65856,"name":"Chestguard of Vigorous Motivation","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,220,331,0,0,147,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27969,"name":"Make Yourself Useful"}}]}, -{"id":65857,"name":"Shoulders of the Obelisk","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,245,164,117,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27969,"name":"Make Yourself Useful"}}]}, -{"id":65858,"name":"Bullet-Pierced Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,331,220,136,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27941,"name":"Fashionism"}}]}, -{"id":65859,"name":"Waistguard of Fallen Hearts","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,245,164,0,0,0,115,0,0,0,98,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27941,"name":"Fashionism"}}]}, -{"id":65860,"name":"Impeccable Uniform Gauntlets","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,245,164,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27941,"name":"Fashionism"}}]}, -{"id":65861,"name":"Statue Climbers","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[185,0,277,0,0,0,0,120,125,0,0,0,0,0,0,0,0,0,0,0,0,0,2082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27669,"name":"Do the Honors"}}]}, -{"id":65862,"name":"Crashing Idol Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,249,373,0,0,0,0,138,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27669,"name":"Do the Honors"}}]}, -{"id":65863,"name":"Chain Reaction Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,249,373,0,0,0,178,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27669,"name":"Do the Honors"}}]}, -{"id":65864,"name":"Eye of the Stars","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,207,138,83,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"sources":[{"quest":{"id":27669,"name":"Do the Honors"}}]}, -{"id":65865,"name":"Ankh-Inscribed Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[123,0,184,0,0,0,0,0,90,68,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27928,"name":"A Favor for the Furrier"}}]}, -{"id":65866,"name":"Flenser's Leggings","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,331,220,162,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27928,"name":"A Favor for the Furrier"}}]}, -{"id":65867,"name":"Pristine Coyote Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,245,164,109,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27928,"name":"A Favor for the Furrier"}}]}, -{"id":65868,"name":"Canopic Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,0,136,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28497,"name":"Fire From the Sky"}}]}, -{"id":65869,"name":"Powderburned Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,164,245,0,0,0,0,115,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28497,"name":"Fire From the Sky"}}]}, -{"id":65870,"name":"Confiscated Dog Tags","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,184,123,0,93,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28497,"name":"Fire From the Sky"}}]}, -{"id":65871,"name":"Guardian-Killer Waistplate","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[164,0,245,0,0,0,115,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28404,"name":"I'll Do It By Hand"}}]}, -{"id":65872,"name":"Helm of Broken Bones","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,331,220,151,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{}}]}, -{"id":65873,"name":"Titanic Treads","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,245,164,85,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28404,"name":"I'll Do It By Hand"}}]}, -{"id":65874,"name":"Rediscovered Delta Walkers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,245,164,109,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28367,"name":"Shroud of the Makers"}}]}, -{"id":65875,"name":"Powderkeg Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,123,184,0,0,62,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28367,"name":"Shroud of the Makers"}}]}, -{"id":65876,"name":"Leggings of the Vir'naal","icon":"inv_pants_cloth_cataclysm_b_02","type":9,"armorType":1,"stats":[0,0,331,220,0,162,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28367,"name":"Shroud of the Makers"}}]}, -{"id":65877,"name":"Wheelman's Choker","icon":"inv_misc_necklacea6","type":2,"stats":[123,0,184,0,0,86,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28270,"name":"Riding Shotgun!"}}]}, -{"id":65878,"name":"Charbelching Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,104,69,52,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":557,"weaponDamageMax":1035,"weaponSpeed":1.4,"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28270,"name":"Riding Shotgun!"}}]}, -{"id":65879,"name":"Cannon Stabilizer","icon":"inv_wand_12","type":14,"rangedWeaponType":4,"stats":[0,0,104,69,0,0,48,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28270,"name":"Riding Shotgun!"}}]}, -{"id":65880,"name":"Ring of Glimmering Water","icon":"inv_misc_starring2","type":11,"stats":[0,123,184,0,0,84,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28270,"name":"Riding Shotgun!"}}]}, -{"id":65881,"name":"Aeronaut's Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,220,331,0,0,0,136,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27905,"name":"Tailgunner!"}}]}, -{"id":65882,"name":"Reinforced Seatbelt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,164,245,0,0,121,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27905,"name":"Tailgunner!"}}]}, -{"id":65883,"name":"Tailgunner's Flight Suit","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,331,220,158,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27905,"name":"Tailgunner!"}}]}, -{"id":65884,"name":"Femurbreak Stompers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[164,0,245,0,0,0,0,0,0,0,120,90,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{}}]}, -{"id":65885,"name":"Gauntlets of Ahmtul","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,245,164,112,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":28404,"name":"I'll Do It By Hand"}}]}, -{"id":65886,"name":"Rope-Grip Gloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,245,164,93,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{}}]}, -{"id":65887,"name":"Staffseeker Shoulderplates","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[164,0,245,0,0,0,0,124,0,0,0,83,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27176,"name":"A Strange Disc"}}]}, -{"id":65888,"name":"Splinterproof Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,123,184,0,0,70,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27176,"name":"A Strange Disc"}}]}, -{"id":65889,"name":"Shardfinder Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,331,220,0,0,158,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27176,"name":"A Strange Disc"}}]}, -{"id":66540,"name":"Miniature Winter Veil Tree","icon":"inv_knife_1h_common_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,174,262,0,0,116,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":4,"quality":4}, -{"id":66641,"name":"Vonica's Gauntlets","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,204,136,0,0,96,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":66879,"name":"Bottled Lightning","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3,"unique":true}, -{"id":66880,"name":"Potentate's Letter Opener","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":1,"stats":[0,0,118,78,0,0,40,0,0,0,0,60,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":280,"weaponDamageMax":521,"weaponSpeed":1.6,"ilvl":292,"phase":1,"quality":3}, -{"id":66882,"name":"Skeletalized Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,219,146,0,99,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66883,"name":"Vertigo Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,165,110,0,0,64,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66884,"name":"Raz's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,212,0,0,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{"id":28741,"name":"Ascendant Lord Obsidius"}}]}, -{"id":66885,"name":"Diamond-Studded Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,319,212,152,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{"id":28741,"name":"Ascendant Lord Obsidius"}}]}, -{"id":66886,"name":"Acid-Eaten Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,319,212,152,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,1447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{"id":28741,"name":"Ascendant Lord Obsidius"}}]}, -{"id":66887,"name":"Beauty Jr.'s Collar","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,158,237,0,0,0,92,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{"id":28740,"name":"Do My Eyes Deceive Me?"}}]}, -{"id":66889,"name":"Beauty's Cootie-Ridden Blankie","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,177,118,85,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"sources":[{"quest":{"id":28740,"name":"Do My Eyes Deceive Me?"}}]}, -{"id":66890,"name":"Auto-Decoding Band","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,177,118,0,0,85,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true,"sources":[{"quest":{"id":28740,"name":"Do My Eyes Deceive Me?"}}]}, -{"id":66891,"name":"Pauldrons of Unholy Rituals","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[170,0,255,0,0,0,99,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,2189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28814,"name":"Followers and Leaders"}}]}, -{"id":66892,"name":"Band of the One Hundred and One","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,255,170,0,0,121,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28814,"name":"Followers and Leaders"}}]}, -{"id":66893,"name":"High Priestess' Signet","icon":"inv_misc_stonering2","type":11,"stats":[0,0,191,127,91,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"quest":{"id":28814,"name":"Followers and Leaders"}}]}, -{"id":66894,"name":"Leggings of the Lost Child","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,343,229,153,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28824,"name":"Wayward Child"}}]}, -{"id":66895,"name":"Don Gonzales' Shiny Shield","icon":"inv_shield_28","type":13,"weaponType":7,"handType":3,"stats":[0,0,165,110,0,0,80,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66896,"name":"Stonecore Belt","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,170,255,0,0,121,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28824,"name":"Wayward Child"}}]}, -{"id":66897,"name":"Crystal Shimmer Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[127,0,191,0,0,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28824,"name":"Wayward Child"}}]}, -{"id":66898,"name":"Cloak of Itesh","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,127,191,0,0,0,74,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28779,"name":"A Long Way from Home"}}]}, -{"id":66899,"name":"Leggings of the Vortex Pinnacle","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,343,229,134,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28779,"name":"A Long Way from Home"}}]}, -{"id":66900,"name":"Band of the Dead End","icon":"inv_jewelry_ring_68","type":11,"stats":[127,0,191,0,0,74,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"quest":{"id":28779,"name":"A Long Way from Home"}}]}, -{"id":66901,"name":"Greaves of Orsis","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[174,0,343,0,0,116,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28760,"name":"Vengeance for Orsis"}}]}, -{"id":66902,"name":"Token of Gratitude","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,191,127,0,74,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"sources":[{"quest":{"id":28760,"name":"Vengeance for Orsis"}}]}, -{"id":66903,"name":"Caliph's Band","icon":"inv_misc_stonering1","type":11,"stats":[0,0,191,127,74,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true,"sources":[{"quest":{"id":28760,"name":"Vengeance for Orsis"}}]}, -{"id":66904,"name":"Gartic's Resplendent Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,319,212,0,0,0,131,0,0,0,148,0,0,0,0,0,0,0,0,0,0,977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66905,"name":"Clandestine Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,199,298,0,0,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28781,"name":"Targets of Opportunity"}}]}, -{"id":66906,"name":"Bracers of the Lost City","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,224,149,107,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28781,"name":"Targets of Opportunity"}}]}, -{"id":66907,"name":"Captain Hadan's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28781,"name":"Targets of Opportunity"}}]}, -{"id":66908,"name":"Treads of the Neferset","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,199,298,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28783,"name":"The Source of Their Power"}}]}, -{"id":66909,"name":"Ramkahen Front Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[151,0,298,0,0,101,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28783,"name":"The Source of Their Power"}}]}, -{"id":66910,"name":"Blight-Lifter's Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,298,199,0,0,0,142,0,0,0,116,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28783,"name":"The Source of Their Power"}}]}, -{"id":66911,"name":"Offline Greaves","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[268,0,401,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28746,"name":"Penetrating Their Defenses"}}]}, -{"id":66912,"name":"Fetish of the Fiery Sands","icon":"inv_misc_bone_skull_02","type":14,"rangedWeaponType":4,"stats":[0,0,100,67,35,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66913,"name":"Repository Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28746,"name":"Penetrating Their Defenses"}}]}, -{"id":66914,"name":"Boots of the Hard Way","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,199,298,0,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28746,"name":"Penetrating Their Defenses"}}]}, -{"id":66915,"name":"Treasure Hunter's Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28753,"name":"Doing it the Hard Way"}}]}, -{"id":66916,"name":"Delicate Blade of Meaning","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,136,91,0,0,62,0,0,0,0,58,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":1.9,"ilvl":308,"phase":1,"quality":3}, -{"id":66917,"name":"True Archaeologist's Bracers","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,224,149,0,87,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28753,"name":"Doing it the Hard Way"}}]}, -{"id":66919,"name":"Robes of Whispering Sands","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,343,229,0,157,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66920,"name":"Cyu's Ornate Wand","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,108,72,0,40,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":743,"weaponDamageMax":1381,"weaponSpeed":1.8,"ilvl":316,"phase":1,"quality":3}, -{"id":66921,"name":"Helm of Reorigination","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,401,208,171,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28753,"name":"Doing it the Hard Way"}}]}, -{"id":66924,"name":"Petrified Camel Haunch","icon":"inv_misc_food_meat_raw_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,0,96,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66931,"name":"Mercury-Coated Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,373,189,0,143,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66932,"name":"Kuang's Locket of Secrets","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,0,207,118,0,0,0,84,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66933,"name":"Breastplate of the Witness","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,0,0,0,157,191,0,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28854,"name":"Closing a Dark Chapter"}}]}, -{"id":66934,"name":"Gloves of Baleflame","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,298,199,142,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28854,"name":"Closing a Dark Chapter"}}]}, -{"id":66935,"name":"Eradicator's Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,149,224,0,0,0,107,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28854,"name":"Closing a Dark Chapter"}}]}, -{"id":66936,"name":"Helm of Secret Knowledge","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,208,401,0,0,0,117,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28853,"name":"Kill the Courier"}}]}, -{"id":66937,"name":"Sandals of the Courier","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28853,"name":"Kill the Courier"}}]}, -{"id":66938,"name":"Tooranu's Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"sources":[{"quest":{"id":28853,"name":"Kill the Courier"}}]}, -{"id":66940,"name":"Staff of Solemn Secrecy","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,373,249,0,0,0,178,0,0,0,145,0,0,1425,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":1798,"weaponSpeed":3.3,"ilvl":325,"phase":1,"quality":3}, -{"id":66941,"name":"Triple-Loop Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":66942,"name":"Immaculate Br'etc Signet","icon":"inv_misc_stonering1","type":11,"stats":[0,0,224,129,0,0,75,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true}, -{"id":66952,"name":"Belmont's Vampire Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,78,118,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":292,"phase":1,"quality":3}, -{"id":66953,"name":"Snub-Nosed Pistol","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,57,86,0,0,0,44,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":677,"weaponDamageMax":1259,"weaponSpeed":2.9,"ilvl":292,"phase":1,"quality":3}, -{"id":66954,"name":"Knife-Concealing Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,102,153,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":66955,"name":"Scentsniffer Hood","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,183,275,0,0,122,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,1578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":66956,"name":"Trek's Shiv","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,85,127,0,0,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":1.4,"ilvl":300,"phase":1,"quality":3}, -{"id":66957,"name":"Poison Vial Ring","icon":"inv_jewelry_ring_83","type":11,"stats":[0,110,165,0,0,0,73,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3,"unique":true}, -{"id":66958,"name":"Bracers of Razor Fletching","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,110,165,0,0,0,79,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66959,"name":"Toraelian Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,146,219,0,0,0,105,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66960,"name":"Dirk's Command","icon":"inv_sword_1h_cataclysm_c_01","type":13,"weaponType":9,"handType":2,"stats":[91,0,136,0,0,61,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":523,"weaponDamageMax":972,"weaponSpeed":2.6,"ilvl":308,"phase":1,"quality":3}, -{"id":66961,"name":"Mindbender Bloom","icon":"inv_misc_flower_02","type":14,"rangedWeaponType":4,"stats":[0,67,100,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true}, -{"id":66962,"name":"Shadowskulk Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,212,319,0,0,150,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66963,"name":"Treads of the Wyrmhunter","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,158,237,0,0,92,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66964,"name":"Sand Tracker's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,229,343,0,0,0,0,155,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":876,"weaponDamageMax":1629,"weaponSpeed":3,"ilvl":316,"phase":1,"quality":3}, -{"id":66965,"name":"Drape of Fiery Dreams","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,127,191,0,0,0,81,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66966,"name":"Elekk-Horn Waistguard","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,170,255,0,0,0,102,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66967,"name":"Camelhide Treads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,170,255,0,0,0,0,113,0,0,0,113,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66968,"name":"Lhakaz's Swiftblade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,107,160,0,0,71,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":377,"weaponDamageMax":566,"weaponSpeed":1.4,"ilvl":325,"phase":1,"quality":3}, -{"id":66969,"name":"Heart of the Vile","icon":"inv_misc_organ_02","type":12,"stats":[0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"unique":true}, -{"id":66970,"name":"Safecracker's Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66971,"name":"Highland Padded Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,249,373,0,0,0,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66972,"name":"Crystalline Geoknife","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":1,"stats":[0,115,172,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":1226,"weaponSpeed":2.6,"ilvl":333,"phase":1,"quality":3}, -{"id":66973,"name":"Ravenheart Longbow","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,84,126,0,0,49,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":993,"weaponDamageMax":1844,"weaponSpeed":2.9,"ilvl":333,"phase":1,"quality":3}, -{"id":66974,"name":"Nightrend Choker","icon":"inv_misc_necklacea11","type":2,"stats":[0,149,224,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":66975,"name":"Hood of the Crying Rogue","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,208,401,0,0,0,138,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":66976,"name":"Spaulders of the Savage Beast","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,179,298,0,0,0,140,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":66977,"name":"Pauldrons of Toil","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[136,0,204,0,0,0,79,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":66978,"name":"Rage-Possessed Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[183,0,275,0,0,0,0,122,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":3.8,"ilvl":292,"phase":1,"quality":3}, -{"id":66979,"name":"Bracers of Bloody Business","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[102,0,153,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":66980,"name":"Girdle of Heated Deeds","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[126,0,219,0,0,0,77,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66981,"name":"Axe of the Deadly Price","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,85,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":485,"weaponDamageMax":902,"weaponSpeed":2.6,"ilvl":300,"phase":1,"quality":3}, -{"id":66982,"name":"Greaves of the Outcast Knight","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[197,0,296,0,0,115,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":66983,"name":"Helm of Fatal Vision","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[212,0,319,0,0,0,128,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66984,"name":"Eye of Heaven","icon":"inv_misc_necklacea10","type":2,"stats":[118,0,178,0,0,0,0,88,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":66985,"name":"Termination Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[212,0,319,0,0,0,128,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1116,"weaponDamageMax":1674,"weaponSpeed":3.6,"ilvl":308,"phase":1,"quality":3}, -{"id":66986,"name":"Troubled Steps","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[170,0,255,0,0,99,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66987,"name":"Band of the Virtuous","icon":"inv_jewelry_ring_42","type":11,"stats":[127,0,191,0,0,0,74,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":66988,"name":"Ashes of Youth","icon":"inv_misc_dust_02","type":14,"rangedWeaponType":4,"stats":[72,0,108,0,0,0,0,0,36,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true}, -{"id":66989,"name":"Endwyn's Flickering Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,0,108,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66990,"name":"Downfall Hammer","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,107,160,0,0,71,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":612,"weaponDamageMax":1138,"weaponSpeed":2.6,"ilvl":325,"phase":1,"quality":3}, -{"id":66991,"name":"Cloak of Rich Anger","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[138,0,207,0,0,0,0,92,0,0,0,92,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":66992,"name":"Harbinger's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":66993,"name":"Sorrow's End","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[268,0,401,0,0,0,0,161,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1408,"weaponDamageMax":2113,"weaponSpeed":3.6,"ilvl":333,"phase":1,"quality":3}, -{"id":66994,"name":"Soul's Anguish","icon":"spell_shadow_coneofsilence","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3,"unique":true}, -{"id":67024,"name":"Breastplate of Solemn Vows","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[183,0,275,0,0,0,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,2647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":67027,"name":"Ring of Cursed Fate","icon":"inv_jewelry_ring_38","type":11,"stats":[78,0,153,0,0,52,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3,"unique":true}, -{"id":67029,"name":"Death Pyre Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,78,118,0,0,52,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.6,"ilvl":292,"phase":1,"quality":3}, -{"id":67032,"name":"Firm-Set Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[146,0,219,0,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,1880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67037,"name":"Binding Promise","icon":"spell_holy_greaterblessingoflight","type":12,"stats":[0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3,"unique":true}, -{"id":67040,"name":"Amulet of the Howling Watch","icon":"inv_jewelry_necklace_40","type":2,"stats":[110,0,165,0,0,0,0,82,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67043,"name":"Greaves of Sullen Earth","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,0,212,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67045,"name":"Abatement Cannon","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[67,0,100,0,0,0,0,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":786,"weaponDamageMax":1461,"weaponSpeed":2.9,"ilvl":308,"phase":1,"quality":3}, -{"id":67047,"name":"Band of Pleasant Pain","icon":"inv_misc_vinering","type":11,"stats":[90,0,178,0,0,60,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3,"unique":true}, -{"id":67050,"name":"Ben-Son's Royal Crown","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[229,0,343,0,0,116,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":67051,"name":"Blood Gout Amulet","icon":"inv_jewelry_necklace_17","type":2,"stats":[127,0,191,0,0,0,0,0,0,0,74,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":67052,"name":"Loyal Blade","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[98,0,147,0,0,65,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":563,"weaponDamageMax":1047,"weaponSpeed":2.6,"ilvl":316,"phase":1,"quality":3}, -{"id":67057,"name":"Oath-Bound Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,94,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67059,"name":"Halted Clock","icon":"spell_nature_timestop","type":14,"rangedWeaponType":4,"stats":[78,0,118,0,0,52,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3,"unique":true}, -{"id":67061,"name":"Bulwark of the Scorned Man","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[138,0,207,0,0,0,0,0,0,99,0,81,0,0,0,0,0,0,0,0,0,0,11389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67067,"name":"Belt of Guardianship","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[199,0,298,0,0,0,0,0,101,151,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67069,"name":"Shade of Death","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[149,0,224,0,0,0,0,0,76,114,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67071,"name":"Staff of Old Woes","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,268,401,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":939,"weaponDamageMax":1409,"weaponSpeed":2.4,"ilvl":333,"phase":1,"quality":3}, -{"id":67088,"name":"Falling Snow Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,153,102,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":67098,"name":"Sealing Heartstaff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,275,183,0,0,0,131,0,0,0,107,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":881,"weaponDamageMax":1322,"weaponSpeed":3.3,"ilvl":292,"phase":1,"quality":3}, -{"id":67099,"name":"Waistguard of New Days","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,204,136,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":67101,"name":"Unquenchable Flame","icon":"inv_summerfest_firespirit","type":12,"stats":[0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3,"unique":true}, -{"id":67102,"name":"Kilt of Elemental Mending","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,275,183,107,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3}, -{"id":67103,"name":"Belt of Redeemed Fate","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67104,"name":"Torchlight Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,93,62,41,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":640,"weaponDamageMax":1190,"weaponSpeed":1.8,"ilvl":300,"phase":1,"quality":3}, -{"id":67105,"name":"Elementbinder Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,219,146,97,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67106,"name":"Robes of Broken Dreams","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,296,157,131,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67109,"name":"Gauntlets of Chattering Valves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":3}, -{"id":67110,"name":"Goblin Surgeon's Kit","icon":"inv_misc_book_16","type":14,"rangedWeaponType":4,"stats":[0,0,100,67,46,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67111,"name":"Soulsurge Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,177,118,83,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67112,"name":"Brittany's Ceremonial Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1085,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67113,"name":"Medic's Bloodstained Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,237,158,92,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67114,"name":"Girdle of Chained Thunder","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67115,"name":"Soulheart Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,191,127,85,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":67116,"name":"Heartbinder Ring","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,191,127,91,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true}, -{"id":67117,"name":"Woundsealer Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,255,170,121,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3}, -{"id":67118,"name":"Electrospark Heartstarter","icon":"inv_misc_enggizmos_02","type":12,"stats":[0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":316,"phase":1,"quality":3,"unique":true}, -{"id":67119,"name":"Thousand Bandage Drape","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,207,138,99,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67120,"name":"Mace of Apotheosis","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,160,107,54,0,0,0,0,0,0,81,0,0,1427,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":542,"weaponDamageMax":1007,"weaponSpeed":2.3,"ilvl":325,"phase":1,"quality":3}, -{"id":67121,"name":"Chestguard of the Caring Ursine","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,373,249,166,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,1501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67122,"name":"Helm of Holy Visions","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,373,249,0,0,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67123,"name":"Sinman's Helm of Succor","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,401,268,0,0,0,191,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67124,"name":"Zulian Swirling Shield","icon":"inv_shield_42","type":13,"weaponType":7,"handType":3,"stats":[0,0,224,149,0,0,108,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67125,"name":"Bone-Inlaid Sarcophagus Key","icon":"inv_datacrystal01","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67126,"name":"Roffle's Ruffly Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,298,199,133,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67127,"name":"Bracers of Caustic Purification","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,224,149,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67129,"name":"Signet of High Arcanist Savor","icon":"inv_misc_pearlring1","type":11,"stats":[0,0,286,190,0,121,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":67130,"name":"Dorian's Lost Necklace","icon":"inv_misc_forestnecklace","type":2,"stats":[0,0,286,190,0,0,0,134,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67131,"name":"Ritssyn's Ruminous Drape","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"stats":[0,0,286,170,0,0,0,107,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67132,"name":"Grips of the Failed Immortal","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67133,"name":"Dizze's Whirling Robe","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,165,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67134,"name":"Dory's Finery","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67135,"name":"Morrie's Waywalker Wrap","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67136,"name":"Gilnean Ring of Ruination","icon":"inv_misc_emeraldstonering","type":11,"stats":[0,190,286,0,0,108,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":67137,"name":"Don Rodrigo's Fabulous Necklace","icon":"inv_misc_necklacea9","type":2,"stats":[0,190,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67138,"name":"Buc-Zakai Choker","icon":"inv_misc_necklacea8","type":2,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67139,"name":"Blauvelt's Family Crest","icon":"inv_misc_diamondring1","type":11,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":67140,"name":"Drape of Inimitable Fate","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67141,"name":"Corefire Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,165,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67142,"name":"Zom's Electrostatic Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67143,"name":"Icebone Hauberk","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[239,0,512,0,0,173,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67144,"name":"Pauldrons of Edward the Odd","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,112,179,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67145,"name":"Blockade's Lost Shield","icon":"inv_shield_grimbatolraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,0,114,134,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67146,"name":"Woundsplicer Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67147,"name":"Je'Tze's Sparkling Tiara","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,201,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67148,"name":"Kilt of Trollish Dreams","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67149,"name":"Heartbound Tome","icon":"inv_misc_book_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,134,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67150,"name":"Arrowsinger Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,165,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":67152,"name":"Lady La-La's Singing Shell","icon":"inv_misc_shell_03","type":12,"stats":[0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":292,"phase":1,"quality":3,"unique":true}, -{"id":67153,"name":"Mobus's Vile Halberd","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,0,205,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1159,"weaponDamageMax":2154,"weaponSpeed":3,"ilvl":346,"phase":1,"quality":3}, -{"id":67233,"name":"Sussurating Treads of Shok'sharak","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,0,0,135,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67234,"name":"Thartuk's Inimitable Gauntlets","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,185,277,0,0,0,94,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":325,"phase":1,"quality":3}, -{"id":67235,"name":"Garr's Girdle of Memories","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[225,0,337,0,0,0,121,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67236,"name":"Blazewing's Furious Kilt","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,454,262,182,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67237,"name":"Golgarok's Tenderized Treads","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,0,0,144,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":333,"phase":1,"quality":3}, -{"id":67238,"name":"Terborus's Rotating Bands","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[148,0,252,0,0,99,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67239,"name":"Xariona's Spectral Claws","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,225,337,0,0,0,131,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67240,"name":"Belt of a Thousand Mouths","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,225,337,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67242,"name":"Tol'Vir Hereditary Girdle","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,120,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":308,"phase":1,"quality":3}, -{"id":67243,"name":"Armagedillo's Tail","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[220,0,331,0,0,0,112,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"phase":1,"quality":3}, -{"id":67244,"name":"Sunderfury's Sundries","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,454,262,186,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67245,"name":"Tarvus's Poison-Scarred Boots","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,114,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3}, -{"id":67246,"name":"Beak of Julak-Doom","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,194,129,0,76,0,0,0,0,0,93,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":401,"weaponDamageMax":745,"weaponSpeed":1.4,"ilvl":346,"phase":1,"quality":3}, -{"id":67447,"name":"Vicious Gladiator's Greatsword","icon":"inv_sword_2h_pvp400_c_01","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67448,"name":"Vicious Gladiator's Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1125,"weaponDamageMax":1689,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1]}, -{"id":67449,"name":"Vicious Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,0,0,0,2208,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1125,"weaponDamageMax":1689,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67450,"name":"Vicious Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,257,0,0,0,0,0,0,0,2208,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1125,"weaponDamageMax":1689,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67451,"name":"Vicious Gladiator's Pike","icon":"inv_polearm_2h_pvp400_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67452,"name":"Vicious Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67453,"name":"Vicious Gladiator's Decapitator","icon":"inv_axe_2h_pvp400_c_01","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2026,"weaponDamageMax":3040,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67454,"name":"Vicious Gladiator's Gavel","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,248,165,0,0,110,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67455,"name":"Vicious Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67456,"name":"Vicious Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67457,"name":"Vicious Gladiator's Spellblade","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,248,165,0,0,110,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67458,"name":"Vicious Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67459,"name":"Vicious Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67460,"name":"Vicious Gladiator's Shiv","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":511,"weaponDamageMax":950,"weaponSpeed":1.4,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67461,"name":"Vicious Gladiator's Longbow","icon":"inv_bow_1h_pvp400_c_01","type":14,"rangedWeaponType":1,"stats":[0,121,181,0,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1688,"weaponDamageMax":2533,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67462,"name":"Vicious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_39","type":14,"rangedWeaponType":2,"stats":[0,121,181,0,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1688,"weaponDamageMax":2533,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67463,"name":"Vicious Gladiator's Rifle","icon":"firearm_2h_rifle_pvp400_c_01","type":14,"rangedWeaponType":3,"stats":[0,121,181,0,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1688,"weaponDamageMax":2533,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67464,"name":"Vicious Gladiator's Baton of Light","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,181,121,81,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1322,"weaponDamageMax":2456,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67465,"name":"Vicious Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,181,121,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1322,"weaponDamageMax":2456,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67466,"name":"Vicious Gladiator's Hatchet","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[0,121,181,0,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1069,"weaponDamageMax":1604,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67467,"name":"Vicious Gladiator's War Edge","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[121,0,181,0,0,0,81,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1069,"weaponDamageMax":1604,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67468,"name":"Vicious Gladiator's Quickblade","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67469,"name":"Vicious Gladiator's Slicer","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1085,"weaponDamageMax":1628,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67470,"name":"Vicious Gladiator's Bonecracker","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67471,"name":"Vicious Gladiator's Pummeler","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67472,"name":"Vicious Gladiator's Shanker","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":751,"weaponDamageMax":1127,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67473,"name":"Vicious Gladiator's Hacker","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67474,"name":"Vicious Gladiator's Cleaver","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67475,"name":"Vicious Gladiator's Redoubt","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67476,"name":"Vicious Gladiator's Barrier","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67477,"name":"Vicious Gladiator's Shield Wall","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67478,"name":"Vicious Gladiator's Reprieve","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67479,"name":"Vicious Gladiator's Endgame","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":372,"phase":1,"quality":4,"sources":[{"soldBy":{"npcId":228668,"npcName":"Glorious Conquest Vendor"}}]}, -{"id":67602,"name":"Elementium Gutslicer","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":94718}}]}, -{"id":67605,"name":"Forged Elementium Mindcrusher","icon":"inv_mace_46","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1590,"weaponDamageMax":2386,"weaponSpeed":3.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":94732}}]}, -{"id":68014,"name":"Flintlocke's Chuckshooter","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,73,110,0,0,0,51,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":833,"weaponDamageMax":1549,"weaponSpeed":2.8,"ilvl":318,"phase":1,"quality":2,"sources":[{"quest":{"id":28598,"name":"Aiming High"}}],"factionRestriction":1}, -{"id":68050,"name":"Shatterscale Mightfish","icon":"inv_misc_fish_42","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":716,"weaponDamageMax":1331,"weaponSpeed":2.5,"ilvl":346,"phase":1,"quality":3}, -{"id":68127,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"weaponDamageMin":205,"weaponDamageMax":650,"weaponSpeed":1.6,"ilvl":359,"phase":1,"quality":4,"randPropPoints":278,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68128,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"randPropPoints":278,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68129,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4,"randPropPoints":278,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68130,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":314,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68131,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"weaponDamageMin":949,"weaponDamageMax":1764,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":314,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68132,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"weaponDamageMin":272,"weaponDamageMax":773,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"randPropPoints":314,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":68161,"name":"Krol Decapitator","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,86,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1563,"weaponSpeed":2.6,"ilvl":359,"phase":1,"quality":4}, -{"id":68162,"name":"Spinerender","icon":"inv_weapon_shortblade_24","type":14,"rangedWeaponType":5,"stats":[0,107,161,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1097,"weaponDamageMax":1646,"weaponSpeed":2.2,"ilvl":359,"phase":1,"quality":4}, -{"id":68163,"name":"The Twilight Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":665,"weaponDamageMax":999,"weaponSpeed":1.8,"ilvl":359,"phase":1,"quality":4}, -{"id":68600,"name":"Uhn'agh Fash, the Darkest Betrayal","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":511,"weaponDamageMax":950,"weaponSpeed":1.4,"ilvl":372,"phase":1,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5334,"otherName":"Cho'gall"}}]}, -{"id":68601,"name":"Scaleslicer","icon":"inv_knife_1h_bwdraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,97,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":841,"weaponSpeed":1.4,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}]}, -{"id":68608,"name":"Dragonwreck Throwing Axe","icon":"inv_axe_110","type":14,"rangedWeaponType":5,"stats":[0,107,161,0,0,0,0,72,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1097,"weaponDamageMax":1646,"weaponSpeed":2.2,"ilvl":359,"phase":1,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}]}, -{"id":68609,"name":"Fine-Toothed Comb","icon":"inv_misc_comb_02","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,36,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":285,"phase":1,"quality":2,"sources":[{"quest":{"id":25388,"name":"Crate of Crab Meat"}}]}, -{"id":68612,"name":"Scarab Leg Talisman","icon":"inv_misc_monsterclaw_08","type":14,"rangedWeaponType":4,"stats":[0,69,104,0,0,0,51,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":312,"phase":1,"quality":2,"sources":[{"quest":{"id":27627,"name":"Just a Fancy Cockroach"}}]}, -{"id":68709,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":68739,"name":"Darkheart Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,0,78,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":47328,"npcName":"Quartermaster Brazie","zoneId":5389}},{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1}, -{"id":68740,"name":"Darkheart Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,0,78,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":745,"weaponDamageMax":1384,"weaponSpeed":2.6,"ilvl":346,"phase":1,"quality":3,"sources":[{"soldBy":{"npcId":48531,"npcName":"Pogg","zoneId":5389}},{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2}, -{"id":68775,"name":"Volatile Alchemist Stone","icon":"item_alchemiststoneb","type":12,"stats":[301,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":1,"spellId":96252}}]}, -{"id":68776,"name":"Quicksilver Alchemist Stone","icon":"item_alchemiststone","type":12,"stats":[0,301,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":1,"spellId":96253}}]}, -{"id":68777,"name":"Vibrant Alchemist Stone","icon":"item_alchemiststonec","type":12,"stats":[0,0,0,301,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true,"sources":[{"crafted":{"profession":1,"spellId":96254}}]}, -{"id":68812,"name":"Hornet-Sting Band","icon":"inv_jewelry_ring_82","type":11,"stats":[0,190,286,0,0,0,0,131,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"unique":true}, -{"id":68915,"name":"Scales of Life","icon":"ability_druid_balanceofpower","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":68925,"name":"Variable Pulse Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":68926,"name":"Jaws of Defeat","icon":"trade_archaeology_shark-jaws","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":68927,"name":"The Hungerer","icon":"spell_deathknight_gnaw_ghoul","type":12,"stats":[0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":68972,"name":"Apparatus of Khaz'goroth","icon":"inv_misc_enggizmos_20","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":68981,"name":"Spidersilk Spindle","icon":"inv_trinket_firelands_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":68982,"name":"Necromantic Focus","icon":"inv_trinket_firelands_03","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":68983,"name":"Eye of Blazing Power","icon":"inv_trinket_firelands_01","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":68994,"name":"Matrix Restabilizer","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":68995,"name":"Vessel of Acceleration","icon":"inv_summerfest_firepotion","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":68996,"name":"Stay of Execution","icon":"inv_misc_note_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":7}}]}, -{"id":68998,"name":"Rune of Zeth","icon":"spell_fire_rune","type":12,"stats":[0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":7}}]}, -{"id":69000,"name":"Fiery Quintessence","icon":"inv_potion_41","type":12,"stats":[0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":7}}]}, -{"id":69001,"name":"Ancient Petrified Seed","icon":"inv_misc_food_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":7}}]}, -{"id":69002,"name":"Essence of the Eternal Flame","icon":"spell_fire_fire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":7}}]}, -{"id":69109,"name":"Scales of Life","icon":"ability_druid_balanceofpower","type":12,"stats":[0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":69110,"name":"Variable Pulse Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":69111,"name":"Jaws of Defeat","icon":"trade_archaeology_shark-jaws","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":69112,"name":"The Hungerer","icon":"spell_deathknight_gnaw_ghoul","type":12,"stats":[0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":69113,"name":"Apparatus of Khaz'goroth","icon":"inv_misc_enggizmos_20","type":12,"stats":[433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":69138,"name":"Spidersilk Spindle","icon":"inv_trinket_firelands_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":69139,"name":"Necromantic Focus","icon":"inv_trinket_firelands_03","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":69149,"name":"Eye of Blazing Power","icon":"inv_trinket_firelands_01","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":69150,"name":"Matrix Restabilizer","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":69167,"name":"Vessel of Acceleration","icon":"inv_summerfest_firepotion","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":69549,"name":"Wristguards of the Predator","icon":"inv_bracer_22b","type":6,"armorType":3,"stats":[0,180,270,0,0,0,0,123,0,0,0,114,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}]}, -{"id":69550,"name":"Leggings of Ancient Magics","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,484,283,0,0,187,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}]}, -{"id":69551,"name":"Feathers of Akil'zon","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,360,220,129,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}]}, -{"id":69552,"name":"Bracers of Hidden Purpose","icon":"inv_bracer_05","type":6,"armorType":4,"stats":[0,0,270,180,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}]}, -{"id":69553,"name":"Talonguard Band","icon":"inv_jewelry_ring_14","type":11,"stats":[180,0,270,0,0,0,0,0,111,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}]}, -{"id":69554,"name":"Pauldrons of Nalorakk","icon":"inv_shoulder_85","type":3,"armorType":3,"stats":[0,220,360,0,0,152,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}]}, -{"id":69555,"name":"Boots of the Ursine","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":1,"stats":[0,0,360,220,0,0,138,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}]}, -{"id":69556,"name":"Armbands of the Bear Spirit","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,270,180,130,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}]}, -{"id":69557,"name":"Jungle Striders","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[283,0,484,0,0,0,0,199,190,0,0,0,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}]}, -{"id":69558,"name":"Spiritshield Mask","icon":"inv_helmet_115","type":1,"armorType":4,"stats":[263,0,484,0,0,0,0,0,0,201,159,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}]}, -{"id":69559,"name":"Amani'shi Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,180,270,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}]}, -{"id":69560,"name":"Jan'alai's Spaulders","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,360,220,0,147,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}]}, -{"id":69561,"name":"Hawkscale Waistguard","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":3,"stats":[0,0,360,220,0,0,0,155,0,0,0,143,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}]}, -{"id":69562,"name":"Boots of Bad Mojo","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[0,0,360,220,151,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}]}, -{"id":69563,"name":"Ring of the Numberless Brood","icon":"inv_jewelry_ring_zulgurub_01","type":11,"stats":[180,0,270,0,0,0,0,114,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}]}, -{"id":69564,"name":"The Savager's Mask","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,263,484,0,0,0,175,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}]}, -{"id":69565,"name":"Breastplate of Primal Fury","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,283,484,0,0,0,195,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,2381,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}]}, -{"id":69566,"name":"Shimmerclaw Band","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,270,180,0,127,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}]}, -{"id":69567,"name":"Wristwraps of Departed Spirits","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,270,180,125,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}]}, -{"id":69568,"name":"Shadowmender Wristguards","icon":"inv_bracer_30b","type":6,"armorType":3,"stats":[0,0,270,180,0,0,111,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}]}, -{"id":69569,"name":"Shadowtooth Trollskin Breastplate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,283,484,0,0,0,164,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69570,"name":"Waistband of Hexes","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,220,360,0,0,0,0,141,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69571,"name":"Soul Drain Signet","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,270,180,114,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69572,"name":"Hex Lord's Bloody Cloak","icon":"inv_misc_cape_18","type":4,"stats":[180,0,270,0,0,0,0,117,0,0,0,122,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69573,"name":"Pauldrons of Sacrifice","icon":"inv_shoulder_84","type":3,"armorType":4,"stats":[219,0,360,0,0,0,0,0,0,0,162,136,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69574,"name":"Tusked Shoulderpads","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,220,360,0,0,0,153,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69575,"name":"Mace of the Sacrificed","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,85,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69576,"name":"Headdress of Sharpened Vision","icon":"inv_helmet_113","type":1,"armorType":3,"stats":[0,263,484,0,0,164,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1935,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69577,"name":"Collar of Bones","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,484,263,0,198,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69578,"name":"Hexing Robes","icon":"inv_kilt_cloth_04v4","type":5,"armorType":1,"stats":[0,0,484,283,204,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69579,"name":"Amani Headdress","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,484,263,185,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69580,"name":"Mask of Restless Spirits","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,484,263,195,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1935,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69581,"name":"Amani Scepter of Rites","icon":"inv_mace_18","type":13,"weaponType":4,"handType":1,"stats":[0,0,207,138,92,0,0,0,0,0,0,92,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69582,"name":"Skullpiercer Pauldrons","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[220,0,360,0,0,0,152,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69583,"name":"Legguards of the Unforgiving","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[283,0,484,0,0,0,0,0,0,0,197,192,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}]}, -{"id":69584,"name":"Recovered Cloak of Frostheim","icon":"inv_misc_cape_17","type":4,"stats":[0,180,270,0,0,117,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69585,"name":"Wristwraps of Madness","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,270,180,0,0,122,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69586,"name":"Two-Toed Boots","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,360,220,0,0,161,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69587,"name":"Chestplate of Hubris","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[283,0,484,0,0,0,204,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69588,"name":"Skullcrusher Warboots","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[220,0,360,0,0,148,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2314,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69589,"name":"Leggings of Dancing Blades","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,283,484,0,0,0,174,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69590,"name":"Mojo-Mender's Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":3,"stats":[0,0,360,220,162,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69591,"name":"Voodoo Hexblade","icon":"inv_weapon_shortblade_64","type":13,"weaponType":2,"handType":1,"stats":[0,0,207,138,0,0,92,92,0,0,0,0,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69592,"name":"Reforged Trollbane","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[323,0,484,0,0,189,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69593,"name":"Battleplate of the Amani Empire","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[283,0,484,0,0,0,0,0,215,167,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}]}, -{"id":69594,"name":"T'wansi's Handwraps","icon":"inv_gauntlets_robe_common_c_01v1","type":7,"armorType":2,"stats":[0,0,360,220,145,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":29186,"name":"The Hex Lord's Fetish"}}]}, -{"id":69595,"name":"Fetish Greaves","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[0,0,484,283,0,0,209,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":29186,"name":"The Hex Lord's Fetish"}}]}, -{"id":69596,"name":"Voodoo Hunting Bow","icon":"inv_waepon_bow_zulgrub_d_02","type":14,"rangedWeaponType":1,"stats":[101,0,152,0,0,69,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":2222,"weaponSpeed":2.9,"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":29186,"name":"The Hex Lord's Fetish"}}]}, -{"id":69597,"name":"Zulian Throwing Axe","icon":"inv_throwingaxe_03","type":14,"rangedWeaponType":5,"stats":[0,101,152,0,0,0,0,64,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":801,"weaponDamageMax":1202,"weaponSpeed":1.7,"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":11196,"name":"Warlord of the Amani"}}]}, -{"id":69598,"name":"Robes of Dissention","icon":"inv_kilt_cloth_04v2","type":5,"armorType":1,"stats":[0,0,484,283,0,0,182,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":11196,"name":"Warlord of the Amani"}}]}, -{"id":69599,"name":"Pauldrons of Ambition","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[0,0,360,220,152,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"quest":{"id":11196,"name":"Warlord of the Amani"}}]}, -{"id":69600,"name":"Belt of Slithering Serpents","icon":"inv_belt_94v1","type":8,"armorType":2,"stats":[0,220,360,0,0,0,0,142,0,0,0,155,0,0,0,0,0,0,0,0,0,0,913,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}]}, -{"id":69601,"name":"Serpentine Leggings","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,484,283,0,211,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}]}, -{"id":69602,"name":"Signet of Venoxis","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,270,180,0,0,0,120,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}]}, -{"id":69603,"name":"Breastplate of Serenity","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,484,283,198,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2381,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}]}, -{"id":69604,"name":"Coils of Hate","icon":"inv_belt_50","type":8,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,146,0,152,0,0,0,0,0,0,0,0,0,0,1894,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}]}, -{"id":69605,"name":"Amulet of the Watcher","icon":"inv_jewelry_necklace_zulgurub_01","type":2,"stats":[0,180,270,0,0,0,125,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}]}, -{"id":69606,"name":"Hakkari Loa Drape","icon":"inv_misc_cape_19","type":4,"stats":[0,0,270,180,0,127,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}]}, -{"id":69607,"name":"Touch of Discord","icon":"inv_offhand_stratholme_a_02","type":14,"rangedWeaponType":6,"stats":[0,0,152,101,0,0,61,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1332,"weaponDamageMax":1333,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}]}, -{"id":69608,"name":"Deathcharged Wristguards","icon":"inv_bracer_04","type":6,"armorType":4,"stats":[180,0,270,0,0,0,111,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}]}, -{"id":69609,"name":"Bloodlord's Protector","icon":"inv_sword_54","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}]}, -{"id":69610,"name":"Arlokk's Signet","icon":"inv_jewelry_ring_zulgurub_02","type":11,"stats":[0,180,270,0,0,0,122,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}]}, -{"id":69611,"name":"Sash of Anguish","icon":"inv_belt_74","type":8,"armorType":1,"stats":[0,0,360,220,0,0,145,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}]}, -{"id":69612,"name":"Claw-Fringe Mantle","icon":"inv_shoulder_102","type":3,"armorType":1,"stats":[0,0,360,220,128,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}]}, -{"id":69613,"name":"Leggings of the Pride","icon":"inv_pants_leather_37","type":9,"armorType":2,"stats":[0,0,484,283,203,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}]}, -{"id":69614,"name":"Roaring Mask of Bethekk","icon":"inv_helmet_114","type":1,"armorType":4,"stats":[263,0,484,0,0,0,192,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}]}, -{"id":69615,"name":"Zombie Walker Legguards","icon":"inv_pants_leather_35","type":9,"armorType":3,"stats":[0,283,484,0,0,0,193,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2084,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}]}, -{"id":69616,"name":"Spiritbinder Spaulders","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,360,220,137,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}]}, -{"id":69617,"name":"Plumed Medicine Helm","icon":"inv_helmet_111","type":1,"armorType":4,"stats":[0,0,484,263,159,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}]}, -{"id":69618,"name":"Zulian Slasher","icon":"inv_sword_77","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,96,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}]}, -{"id":69619,"name":"Bone Plate Handguards","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,131,164,0,0,0,0,0,0,0,0,0,0,0,2104,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}]}, -{"id":69620,"name":"Twinblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":2,"handType":3,"stats":[0,138,207,0,0,92,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":428,"weaponDamageMax":796,"weaponSpeed":1.4,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69621,"name":"Twinblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":550,"weaponDamageMax":1023,"weaponSpeed":1.8,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69622,"name":"The Hexxer's Mask","icon":"inv_mask_02","type":1,"armorType":1,"stats":[0,0,484,263,164,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69623,"name":"Vestments of the Soulflayer","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,484,282,0,0,207,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69624,"name":"Legacy of Arlokk","icon":"inv_staff_35","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,0,0,0,215,0,0,0,215,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1556,"weaponDamageMax":2334,"weaponSpeed":3.3,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69625,"name":"Mandokir's Tribute","icon":"inv_waepon_bow_zulgrub_d_01","type":14,"rangedWeaponType":1,"stats":[0,101,152,0,0,0,70,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":2222,"weaponSpeed":2.9,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69626,"name":"Jin'do's Verdict","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1556,"weaponDamageMax":2334,"weaponSpeed":3.3,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69627,"name":"Zulian Ward","icon":"inv_shield_22","type":13,"weaponType":7,"handType":3,"stats":[0,0,270,180,0,0,122,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69628,"name":"Jeklik's Smasher","icon":"inv_mace_19","type":13,"weaponType":4,"handType":4,"stats":[323,0,484,0,0,0,205,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1697,"weaponDamageMax":2546,"weaponSpeed":3.6,"ilvl":353,"phase":2,"quality":4}, -{"id":69629,"name":"Shield of the Blood God","icon":"inv_shield_zulgurub_d_02","type":13,"weaponType":7,"handType":3,"stats":[180,0,270,0,0,0,0,0,0,122,0,117,0,0,0,0,0,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}]}, -{"id":69630,"name":"Handguards of the Tormented","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,220,360,0,0,142,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69631,"name":"Zulian Voodoo Stick","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,152,101,0,66,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1332,"weaponDamageMax":1333,"weaponSpeed":1.6,"ilvl":353,"phase":2,"quality":4}, -{"id":69632,"name":"Lost Bag of Whammies","icon":"inv_misc_bag_10_black","type":13,"weaponType":5,"handType":3,"stats":[0,0,270,180,108,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69633,"name":"Plunderer's Gauntlets","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[220,0,360,0,0,0,0,137,158,0,0,0,0,0,0,0,0,0,0,0,0,0,2104,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69634,"name":"Fasc's Preserved Boots","icon":"inv_boots_leather_14","type":10,"armorType":2,"stats":[0,220,360,0,0,0,0,0,157,0,0,135,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69635,"name":"Amulet of Protection","icon":"inv_jewelry_necklace_13","type":2,"stats":[180,0,270,0,0,0,0,0,0,130,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69636,"name":"Thekal's Claws","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":1,"stats":[0,138,207,0,0,0,96,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":69637,"name":"Gurubashi Destroyer","icon":"inv_firearm_2h_rifle_zulgurub_d_01","type":14,"rangedWeaponType":3,"stats":[101,0,152,0,0,0,0,0,0,72,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1196,"weaponDamageMax":2222,"weaponSpeed":2.9,"ilvl":353,"phase":2,"quality":4}, -{"id":69638,"name":"Arlokk's Claws","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":3,"stats":[0,138,207,0,0,94,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":69639,"name":"Renataki's Soul Slicer","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,0,0,95,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":69640,"name":"Kilt of Forgotten Rites","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,484,283,171,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2084,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69641,"name":"Troll Skull Chestplate","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[0,0,484,283,189,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69762,"name":"Miniature Voodoo Mask","icon":"inv_helm_mask_zulgurub_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":69764,"name":"Extinct Turtle Shell","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,114,0,134,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":98533}}]}, -{"id":69766,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,180,270,0,0,0,137,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69767,"name":"The Frost Lord's Battle Shroud","icon":"inv_misc_cape_16","type":4,"stats":[180,0,270,0,0,0,120,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69768,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"stats":[0,0,256,180,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69769,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"stats":[0,0,256,180,120,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69770,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"stats":[180,0,269,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,604,377,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4}, -{"id":69771,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,700,0,0,0,207,207,0,0,0,0,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1508,"weaponDamageMax":2263,"weaponSpeed":3.2,"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":69781,"name":"Vicious Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69782,"name":"Vicious Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69783,"name":"Vicious Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69784,"name":"Vicious Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69785,"name":"Vicious Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69786,"name":"Vicious Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":1,"quality":4}, -{"id":69787,"name":"Bloodthirsty Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69788,"name":"Bloodthirsty Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69789,"name":"Bloodthirsty Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69790,"name":"Bloodthirsty Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69791,"name":"Bloodthirsty Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69792,"name":"Bloodthirsty Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":352,"phase":1,"quality":3}, -{"id":69796,"name":"Spiritcaller Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,270,180,91,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}]}, -{"id":69797,"name":"Charmbinder Grips","icon":"inv_gauntlets_70","type":7,"armorType":1,"stats":[0,0,360,240,0,0,167,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}]}, -{"id":69798,"name":"Knotted Handwraps","icon":"inv_gauntlets_54","type":7,"armorType":2,"stats":[0,240,360,0,0,0,0,182,121,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}]}, -{"id":69799,"name":"Quickfinger Ring","icon":"inv_jewelry_ring_32","type":11,"stats":[0,180,270,0,0,0,0,135,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}]}, -{"id":69800,"name":"Spiritguard Drape","icon":"inv_misc_cape_02","type":4,"stats":[180,0,270,0,0,0,0,0,0,129,105,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}]}, -{"id":69801,"name":"Amani Armguards","icon":"inv_bracer_28","type":6,"armorType":4,"stats":[180,0,270,0,0,0,0,0,99,132,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}]}, -{"id":69802,"name":"Band of the Gurubashi Berserker","icon":"inv_jewelry_ring_04","type":11,"stats":[180,0,270,0,0,94,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}]}, -{"id":69803,"name":"Gurubashi Punisher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[138,0,207,0,0,77,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}]}, -{"id":69827,"name":"Mistral Pendant","icon":"item_icecrownnecklaceb","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69828,"name":"Permafrost Choker","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69829,"name":"Cloudburst Necklace","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69830,"name":"Planetary Amulet","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69831,"name":"Mistral Drape","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69833,"name":"Permafrost Cape","icon":"item_icecrowncloak","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69834,"name":"Cloudburst Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69835,"name":"Planetary Drape","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":359,"phase":1,"quality":4,"randPropPoints":362,"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69842,"name":"Garr's Reinforced Girdle of Memories","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":69843,"name":"Mobus's Dripping Halberd","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,0,231,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1309,"weaponDamageMax":2431,"weaponSpeed":3,"ilvl":359,"phase":1,"quality":4}, -{"id":69844,"name":"Vitreous Beak of Julak-Doom","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,219,146,0,86,0,0,0,0,0,105,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"phase":1,"quality":4}, -{"id":69852,"name":"Punisher's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[148,0,252,0,0,0,109,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":346,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":98921}}]}, -{"id":69876,"name":"Xariona's Spectral Gauntlets","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,253,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":69877,"name":"Belt of a Thousand Gaping Mouths","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":1,"quality":4}, -{"id":69878,"name":"Permafrost Cape","icon":"item_icecrowncloak","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69879,"name":"Cloudburst Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69880,"name":"Mistral Pendant","icon":"item_icecrownnecklaceb","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69881,"name":"Planetary Drape","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69882,"name":"Planetary Amulet","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69883,"name":"Permafrost Choker","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-128,-127,-125],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69884,"name":"Mistral Drape","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69885,"name":"Cloudburst Necklace","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-122,-121,-120,-118],"ilvl":372,"phase":1,"quality":4,"randPropPoints":408,"sources":[{"drop":{"difficulty":6,"zoneId":5638,"otherName":"Al'Akir"}}]}, -{"id":69897,"name":"Fandral's Flamescythe","icon":"inv_staff_99","type":13,"weaponType":8,"handType":4,"stats":[0,408,611,0,0,0,276,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1428,"weaponDamageMax":2143,"weaponSpeed":2.4,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":69936,"name":"Fists of Fury","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,187,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99439}}]}, -{"id":69937,"name":"Eternal Elementium Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,197,187,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99440}}]}, -{"id":69938,"name":"Holy Flame Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99441}}]}, -{"id":69939,"name":"Dragonfire Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,197,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99443}}]}, -{"id":69941,"name":"Gloves of Unforgiving Flame","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99445}}]}, -{"id":69942,"name":"Clutches of Evil","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,0,198,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99446}}]}, -{"id":69943,"name":"Heavenly Gloves of the Moon","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,182,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99447}}]}, -{"id":69944,"name":"Grips of Altered Reality","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,187,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":99448}}]}, -{"id":69945,"name":"Don Tayo's Inferno Mittens","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,182,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":99449}}]}, -{"id":69946,"name":"Warboots of Mighty Lords","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,187,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99452}}]}, -{"id":69947,"name":"Mirrored Boots","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,187,197,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99453}}]}, -{"id":69948,"name":"Emberforged Elementium Boots","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,454,282,187,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99454}}]}, -{"id":69949,"name":"Earthen Scale Sabatons","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,282,454,0,0,0,197,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99455}}]}, -{"id":69950,"name":"Footwraps of Quenched Fire","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99456}}]}, -{"id":69951,"name":"Treads of the Craft","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,282,454,0,0,0,0,197,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99457}}]}, -{"id":69952,"name":"Ethereal Footfalls","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":99458}}]}, -{"id":69953,"name":"Endless Dream Walkers","icon":"inv_boots_robe_raidpriest_j_01","type":10,"armorType":1,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":99459}}]}, -{"id":69954,"name":"Boots of the Black Flame","icon":"inv_boots_robe_raidmage_j_01","type":10,"armorType":1,"stats":[0,0,454,282,0,197,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":99460}}]}, -{"id":70004,"name":"Bloodthirsty Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[338,0,507,0,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,3416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76464}}]}, -{"id":70005,"name":"Bloodthirsty Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[251,0,377,0,0,168,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76459}}]}, -{"id":70006,"name":"Bloodthirsty Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[251,0,377,0,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76457}}]}, -{"id":70007,"name":"Bloodthirsty Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[338,0,507,0,0,0,0,0,225,0,0,0,0,0,0,0,225,0,0,0,0,0,2776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76463}}]}, -{"id":70008,"name":"Bloodthirsty Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[338,0,507,0,0,225,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76462}}]}, -{"id":70009,"name":"Bloodthirsty Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[251,0,377,0,0,0,0,0,168,0,0,0,0,0,0,0,168,0,0,0,0,0,2562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76461}}]}, -{"id":70010,"name":"Bloodthirsty Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[251,0,377,0,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76458}}]}, -{"id":70011,"name":"Bloodthirsty Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[188,0,282,0,0,126,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Pyrium","setId":963,"sources":[{"crafted":{"profession":2,"spellId":76456}}]}, -{"id":70012,"name":"Bloodthirsty Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,507,338,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,3416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76472}}]}, -{"id":70013,"name":"Bloodthirsty Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,2349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76468}}]}, -{"id":70014,"name":"Bloodthirsty Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76466}}]}, -{"id":70015,"name":"Bloodthirsty Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76471}}]}, -{"id":70016,"name":"Bloodthirsty Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,507,338,0,0,225,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76470}}]}, -{"id":70017,"name":"Bloodthirsty Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76469}}]}, -{"id":70018,"name":"Bloodthirsty Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76467}}]}, -{"id":70019,"name":"Bloodthirsty Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,282,188,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Ornate Pyrium","setId":964,"sources":[{"crafted":{"profession":2,"spellId":76465}}]}, -{"id":70020,"name":"Bloodthirsty Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,251,377,0,0,0,0,0,151,0,0,0,0,0,0,0,177,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78468}}]}, -{"id":70021,"name":"Bloodthirsty Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,251,377,0,0,0,0,0,0,0,0,182,0,0,0,0,143,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78454}}]}, -{"id":70022,"name":"Bloodthirsty Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,188,282,0,0,0,0,113,0,0,0,0,0,0,0,0,133,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78446}}]}, -{"id":70023,"name":"Bloodthirsty Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,338,507,0,0,0,0,0,0,0,0,171,0,0,0,0,257,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78481}}]}, -{"id":70024,"name":"Bloodthirsty Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,251,377,0,0,0,127,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78447}}]}, -{"id":70025,"name":"Bloodthirsty Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,338,507,0,0,171,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,1350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78469}}]}, -{"id":70026,"name":"Bloodthirsty Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,338,507,0,0,0,182,0,0,0,0,0,0,0,0,0,251,0,0,0,0,0,1454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78482}}]}, -{"id":70027,"name":"Bloodthirsty Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,251,377,0,0,0,151,0,0,0,0,0,0,0,0,0,177,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Leather","setId":965,"sources":[{"crafted":{"profession":8,"spellId":78455}}]}, -{"id":70028,"name":"Bloodthirsty Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,377,251,0,0,0,0,0,0,0,151,0,0,0,0,177,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78445}}]}, -{"id":70029,"name":"Bloodthirsty Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,377,251,0,0,0,191,0,0,0,0,0,0,0,0,127,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78453}}]}, -{"id":70030,"name":"Bloodthirsty Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,282,188,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78444}}]}, -{"id":70031,"name":"Bloodthirsty Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,507,338,0,0,0,0,0,0,0,257,0,0,0,0,171,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78467}}]}, -{"id":70032,"name":"Bloodthirsty Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,377,251,187,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78452}}]}, -{"id":70033,"name":"Bloodthirsty Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,507,338,0,0,171,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,1350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78480}}]}, -{"id":70034,"name":"Bloodthirsty Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,507,338,203,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78479}}]}, -{"id":70035,"name":"Bloodthirsty Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,377,251,0,0,0,127,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Wyrmhide","setId":966,"sources":[{"crafted":{"profession":8,"spellId":78464}}]}, -{"id":70036,"name":"Bloodthirsty Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,251,377,0,0,0,0,0,0,0,0,191,0,0,0,0,127,0,0,0,0,0,1364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78473}}]}, -{"id":70037,"name":"Bloodthirsty Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,251,377,0,0,191,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,1667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78458}}]}, -{"id":70038,"name":"Bloodthirsty Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,188,282,0,0,0,0,0,0,0,0,143,0,0,0,0,95,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78450}}]}, -{"id":70039,"name":"Bloodthirsty Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,338,507,0,0,0,257,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,2424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78486}}]}, -{"id":70040,"name":"Bloodthirsty Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,251,377,0,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78459}}]}, -{"id":70041,"name":"Bloodthirsty Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,338,507,0,0,0,0,203,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78474}}]}, -{"id":70042,"name":"Bloodthirsty Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,338,507,0,0,0,0,0,0,0,0,251,0,0,0,0,182,0,0,0,0,0,2121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78485}}]}, -{"id":70043,"name":"Bloodthirsty Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,251,377,0,0,0,151,0,0,0,0,0,0,0,0,0,177,0,0,0,0,0,1818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Dragonscale","setId":967,"sources":[{"crafted":{"profession":8,"spellId":78451}}]}, -{"id":70044,"name":"Bloodthirsty Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,377,251,0,0,0,173,0,0,0,0,0,0,0,0,159,0,0,0,0,0,1364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78457}}]}, -{"id":70045,"name":"Bloodthirsty Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,377,251,135,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,0,1667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78456}}]}, -{"id":70046,"name":"Bloodthirsty Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,282,188,0,95,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78448}}]}, -{"id":70047,"name":"Bloodthirsty Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,507,338,0,0,257,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,2424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78483}}]}, -{"id":70048,"name":"Bloodthirsty Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,377,251,0,0,0,135,0,0,0,0,0,0,0,0,187,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78449}}]}, -{"id":70049,"name":"Bloodthirsty Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,507,338,0,0,0,203,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78484}}]}, -{"id":70050,"name":"Bloodthirsty Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,507,338,0,0,182,0,0,0,0,0,0,0,0,0,251,0,0,0,0,0,2121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78471}}]}, -{"id":70051,"name":"Bloodthirsty Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,377,251,0,127,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Charscale","setId":968,"sources":[{"crafted":{"profession":8,"spellId":78470}}]}, -{"id":70052,"name":"Bloodthirsty Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75269}}]}, -{"id":70053,"name":"Bloodthirsty Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75294}}]}, -{"id":70054,"name":"Bloodthirsty Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,282,188,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75290}}]}, -{"id":70055,"name":"Bloodthirsty Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,507,338,0,0,225,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75304}}]}, -{"id":70056,"name":"Bloodthirsty Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75296}}]}, -{"id":70057,"name":"Bloodthirsty Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75302}}]}, -{"id":70058,"name":"Bloodthirsty Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75303}}]}, -{"id":70059,"name":"Bloodthirsty Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Fireweave","setId":970,"sources":[{"crafted":{"profession":11,"spellId":75292}}]}, -{"id":70060,"name":"Bloodthirsty Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,507,338,225,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75305}}]}, -{"id":70061,"name":"Bloodthirsty Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75297}}]}, -{"id":70062,"name":"Bloodthirsty Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75293}}]}, -{"id":70063,"name":"Bloodthirsty Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,282,188,0,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75270}}]}, -{"id":70064,"name":"Bloodthirsty Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,377,251,168,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75291}}]}, -{"id":70065,"name":"Bloodthirsty Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75295}}]}, -{"id":70066,"name":"Bloodthirsty Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,507,338,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75307}}]}, -{"id":70067,"name":"Bloodthirsty Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":75306}}]}, -{"id":70068,"name":"Bloodthirsty Fur Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,188,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1216335}}]}, -{"id":70069,"name":"Bloodthirsty Hide Cloak","icon":"inv_misc_cape_16","type":4,"stats":[188,0,282,0,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1216336}}]}, -{"id":70070,"name":"Bloodthirsty Embersilk Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,282,188,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"setName":"Bloodthirsty Embersilk","setId":969,"sources":[{"crafted":{"profession":11,"spellId":1216338}}]}, -{"id":70071,"name":"Bloodthirsty Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,188,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216323}}]}, -{"id":70072,"name":"Bloodthirsty Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,282,188,126,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216328}}]}, -{"id":70073,"name":"Bloodthirsty Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[188,0,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216329}}]}, -{"id":70074,"name":"Bloodthirsty Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,188,282,0,0,0,0,0,126,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216330}}]}, -{"id":70075,"name":"Bloodthirsty Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,282,188,0,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216321}}]}, -{"id":70076,"name":"Bloodthirsty Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[188,0,282,0,0,0,0,0,126,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":1216331}}]}, -{"id":70077,"name":"Bloodthirsty Charm of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,106,159,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":1216316}}]}, -{"id":70078,"name":"Bloodthirsty Eyeball of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,159,106,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":1216290}}]}, -{"id":70079,"name":"Bloodthirsty Jawbone of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[106,0,159,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":358,"phase":3,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":1216317}}]}, -{"id":70080,"name":"Reforged Heartless","icon":"inv_sword_107","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,85,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":795,"weaponDamageMax":1478,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}]}, -{"id":70105,"name":"Matoclaw's Band","icon":"inv_jewelry_ring_13","type":11,"stats":[0,201,301,0,0,121,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":52822,"npcName":"Zen'Vorka","zoneId":5733}}]}, -{"id":70106,"name":"Nightweaver's Amulet","icon":"inv_neck_hyjaldaily_01","type":2,"stats":[0,0,301,201,0,0,0,102,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":52822,"npcName":"Zen'Vorka","zoneId":5733}}]}, -{"id":70107,"name":"Fireheart Necklace","icon":"inv_neck_hyjaldaily_04","type":2,"stats":[201,0,301,0,0,0,0,0,136,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":52822,"npcName":"Zen'Vorka","zoneId":5733}}]}, -{"id":70108,"name":"Pyrelord Greaves","icon":"inv_boots_mail_02","type":10,"armorType":4,"stats":[247,0,402,0,0,0,0,0,0,147,182,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":52822,"npcName":"Zen'Vorka","zoneId":5733}}]}, -{"id":70109,"name":"Relic of Elune's Shadow","icon":"inv_datacrystal12","type":14,"rangedWeaponType":4,"stats":[0,113,170,0,0,0,0,0,70,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70110,"name":"Band of Glittering Lights","icon":"inv_jewelry_ring_22","type":11,"stats":[0,201,301,0,0,0,131,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70111,"name":"Relic of Elune's Light","icon":"inv_datacrystal09","type":14,"rangedWeaponType":4,"stats":[0,0,170,113,0,0,0,76,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70112,"name":"Globe of Moonlight","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,301,201,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70113,"name":"Moon Blessed Band","icon":"inv_jewelry_ring_35","type":11,"stats":[201,0,301,0,0,114,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70114,"name":"Fireplume Girdle","icon":"inv_belt_85v4","type":8,"armorType":2,"stats":[0,0,402,248,0,0,0,168,0,0,0,168,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70115,"name":"Fiery Treads","icon":"inv_boots_cloth_25black","type":10,"armorType":3,"stats":[0,0,402,248,0,0,0,171,0,0,0,163,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70116,"name":"Gauntlets of Living Obsidium","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":4,"stats":[0,0,402,248,181,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70117,"name":"Belt of Living Obsidium","icon":"inv_belt_57","type":8,"armorType":4,"stats":[0,0,402,247,0,0,172,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70118,"name":"Widow's Clutches","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,402,247,0,0,184,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70119,"name":"Meteorite Ring","icon":"inv_ring_hyjaldaily_04","type":11,"stats":[201,0,301,0,0,0,151,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70120,"name":"Rickety Belt","icon":"inv_belt_plate_raidpaladin_j_01","type":8,"armorType":4,"stats":[248,0,402,0,0,0,0,188,139,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70121,"name":"Ricket's Gun Show","icon":"inv_bracer_53","type":6,"armorType":4,"stats":[201,0,301,0,0,0,0,0,0,0,147,111,0,0,0,0,0,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70122,"name":"Aviana's Grips","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,248,402,0,0,0,0,203,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70123,"name":"Lancer's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,247,402,0,0,134,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70124,"name":"Spirit Fragment Band","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,301,201,0,0,121,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70125,"name":"Relic of Lo'Gosh","icon":"ability_mount_whitedirewolf","type":14,"rangedWeaponType":4,"stats":[114,0,170,0,0,61,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70126,"name":"Nemesis Shell Band","icon":"inv_misc_leather_shellfragment","type":11,"stats":[201,0,301,0,0,0,0,0,147,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70127,"name":"Lylagar Horn Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[201,0,301,0,0,0,0,0,0,0,124,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70128,"name":"Relic of Tortolla","icon":"inv_misc_fish_turtle_01","type":14,"rangedWeaponType":4,"stats":[114,0,170,0,0,0,0,0,81,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70141,"name":"Dwyer's Caber","icon":"inv_misc_branch_01","type":12,"stats":[340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53882,"npcName":"Varlan Highbough","zoneId":5733}}]}, -{"id":70142,"name":"Moonwell Chalice","icon":"inv_potion_01","type":12,"stats":[0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70143,"name":"Moonwell Phial","icon":"inv_alchemy_imbuedvial","type":12,"stats":[0,0,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53881,"npcName":"Ayla Shadowstorm","zoneId":5733}}]}, -{"id":70144,"name":"Ricket's Magnetic Fireball","icon":"inv_elemental_mote_nether","type":12,"stats":[0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":53214,"npcName":"Damek Bloombeard","zoneId":5733}}]}, -{"id":70155,"name":"Brainsplinter","icon":"inv_knife_1h_bwdraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,155,232,0,0,103,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":616,"weaponDamageMax":1144,"weaponSpeed":1.8,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99652}}]}, -{"id":70156,"name":"Masterwork Elementium Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,232,155,0,103,103,0,0,0,0,0,0,0,2066,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":479,"weaponDamageMax":890,"weaponSpeed":1.4,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99653}}]}, -{"id":70157,"name":"Lightforged Elementium Hammer","icon":"inv_mace_84","type":13,"weaponType":4,"handType":1,"stats":[0,0,232,155,103,0,0,0,0,0,0,103,0,0,2066,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":650,"weaponDamageMax":1208,"weaponSpeed":1.9,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99654}}]}, -{"id":70158,"name":"Elementium-Edged Scalper","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[155,0,232,0,0,103,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":889,"weaponDamageMax":1652,"weaponSpeed":2.6,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99655}}]}, -{"id":70162,"name":"Pyrium Spellward","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[0,155,232,0,0,103,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":889,"weaponDamageMax":1652,"weaponSpeed":2.6,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99656}}]}, -{"id":70163,"name":"Unbreakable Guardian","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[155,0,232,0,0,0,0,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":889,"weaponDamageMax":1652,"weaponSpeed":2.6,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99657}}]}, -{"id":70164,"name":"Masterwork Elementium Deathblade","icon":"inv_sword_73","type":13,"weaponType":9,"handType":4,"stats":[361,0,541,0,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1845,"weaponDamageMax":2769,"weaponSpeed":3.5,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99658}}]}, -{"id":70165,"name":"Witch-Hunter's Harvester","icon":"inv_polearm_2h_bwdraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,361,541,0,0,0,241,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1614,"weaponDamageMax":2999,"weaponSpeed":3.5,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":99660}}]}, -{"id":70178,"name":"Ruthless Gladiator's Greatsword","icon":"inv_sword_2h_pvp_c_01","type":13,"weaponType":9,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70179,"name":"Ruthless Gladiator's Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70180,"name":"Ruthless Gladiator's Energy Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,306,0,0,0,0,0,0,0,0,0,2633,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":3,"quality":4}, -{"id":70181,"name":"Ruthless Gladiator's Battle Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,0,0,306,0,0,0,0,0,0,0,2633,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":3,"quality":4}, -{"id":70182,"name":"Ruthless Gladiator's Pike","icon":"inv_stave_2h_pvp400_c_02","type":13,"weaponType":6,"handType":4,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70183,"name":"Ruthless Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp410_c_01","type":13,"weaponType":4,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70184,"name":"Ruthless Gladiator's Decapitator","icon":"inv_axe_2h_pvp410_c_01","type":13,"weaponType":1,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70185,"name":"Ruthless Gladiator's Gavel","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,296,197,0,0,131,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":697,"weaponDamageMax":1296,"weaponSpeed":1.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70186,"name":"Ruthless Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70187,"name":"Ruthless Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70188,"name":"Ruthless Gladiator's Spellblade","icon":"inv_knife_1h_pvp410_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,296,197,0,0,131,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":697,"weaponDamageMax":1296,"weaponSpeed":1.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70189,"name":"Ruthless Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70190,"name":"Ruthless Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70191,"name":"Ruthless Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":610,"weaponDamageMax":1134,"weaponSpeed":1.4,"ilvl":391,"phase":3,"quality":4}, -{"id":70192,"name":"Ruthless Gladiator's Longbow","icon":"inv_bow_1h_pvp410_c_01","type":14,"rangedWeaponType":1,"stats":[0,145,217,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4}, -{"id":70193,"name":"Ruthless Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,145,217,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4}, -{"id":70194,"name":"Ruthless Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvp410_c_01","type":14,"rangedWeaponType":3,"stats":[0,145,217,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4}, -{"id":70195,"name":"Ruthless Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,217,145,96,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1578,"weaponDamageMax":2931,"weaponSpeed":1.9,"ilvl":391,"phase":3,"quality":4}, -{"id":70196,"name":"Ruthless Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,217,145,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1578,"weaponDamageMax":2931,"weaponSpeed":1.9,"ilvl":391,"phase":3,"quality":4}, -{"id":70197,"name":"Ruthless Gladiator's Hatchet","icon":"inv_thrown_1h_pvp410_c_01","type":14,"rangedWeaponType":5,"stats":[0,145,217,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1276,"weaponDamageMax":1915,"weaponSpeed":1.9,"ilvl":391,"phase":3,"quality":4}, -{"id":70198,"name":"Ruthless Gladiator's War Edge","icon":"inv_thrown_1h_pvp410_c_01","type":14,"rangedWeaponType":5,"stats":[145,0,217,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1276,"weaponDamageMax":1915,"weaponSpeed":1.9,"ilvl":391,"phase":3,"quality":4}, -{"id":70199,"name":"Ruthless Gladiator's Quickblade","icon":"inv_sword_1h_pvp410_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70200,"name":"Ruthless Gladiator's Slicer","icon":"inv_sword_1h_pvp410_c_01","type":13,"weaponType":9,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1295,"weaponDamageMax":1943,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70201,"name":"Ruthless Gladiator's Bonecracker","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70202,"name":"Ruthless Gladiator's Pummeler","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70203,"name":"Ruthless Gladiator's Shanker","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":896,"weaponDamageMax":1345,"weaponSpeed":1.8,"ilvl":391,"phase":3,"quality":4}, -{"id":70204,"name":"Ruthless Gladiator's Hacker","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70205,"name":"Ruthless Gladiator's Cleaver","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4}, -{"id":70206,"name":"Ruthless Gladiator's Redoubt","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,256,171,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4}, -{"id":70207,"name":"Ruthless Gladiator's Barrier","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,256,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4}, -{"id":70208,"name":"Ruthless Gladiator's Shield Wall","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[256,0,384,0,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4}, -{"id":70209,"name":"Ruthless Gladiator's Reprieve","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,171,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4}, -{"id":70210,"name":"Ruthless Gladiator's Endgame","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4}, -{"id":70211,"name":"Ruthless Gladiator's Cleaver","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70212,"name":"Ruthless Gladiator's Hacker","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70213,"name":"Ruthless Gladiator's Decapitator","icon":"inv_axe_2h_pvp410_c_01","type":13,"weaponType":1,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70214,"name":"Ruthless Gladiator's Shanker","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":794,"weaponDamageMax":1192,"weaponSpeed":1.8,"ilvl":378,"phase":3,"quality":4}, -{"id":70215,"name":"Ruthless Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":1004,"weaponSpeed":1.4,"ilvl":378,"phase":3,"quality":4}, -{"id":70216,"name":"Ruthless Gladiator's Spellblade","icon":"inv_knife_1h_pvp410_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,262,175,0,0,116,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70217,"name":"Ruthless Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70218,"name":"Ruthless Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70219,"name":"Ruthless Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70220,"name":"Ruthless Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70221,"name":"Ruthless Gladiator's Pummeler","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70222,"name":"Ruthless Gladiator's Bonecracker","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70223,"name":"Ruthless Gladiator's Gavel","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,262,175,0,0,116,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70224,"name":"Ruthless Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp410_c_01","type":13,"weaponType":4,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70225,"name":"Ruthless Gladiator's Pike","icon":"inv_stave_2h_pvp400_c_02","type":13,"weaponType":6,"handType":4,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70226,"name":"Ruthless Gladiator's Battle Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,0,0,272,0,0,0,0,0,0,0,2334,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":3,"quality":4}, -{"id":70227,"name":"Ruthless Gladiator's Energy Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,272,0,0,0,0,0,0,0,0,0,2334,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":3,"quality":4}, -{"id":70228,"name":"Ruthless Gladiator's Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70229,"name":"Ruthless Gladiator's Slicer","icon":"inv_sword_1h_pvp410_c_01","type":13,"weaponType":9,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1147,"weaponDamageMax":1722,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70230,"name":"Ruthless Gladiator's Quickblade","icon":"inv_sword_1h_pvp410_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70231,"name":"Ruthless Gladiator's Greatsword","icon":"inv_sword_2h_pvp_c_01","type":13,"weaponType":9,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4}, -{"id":70232,"name":"Ruthless Gladiator's War Edge","icon":"inv_thrown_1h_pvp410_c_01","type":14,"rangedWeaponType":5,"stats":[128,0,192,0,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1130,"weaponDamageMax":1696,"weaponSpeed":1.9,"ilvl":378,"phase":3,"quality":4}, -{"id":70233,"name":"Ruthless Gladiator's Hatchet","icon":"inv_thrown_1h_pvp410_c_01","type":14,"rangedWeaponType":5,"stats":[0,128,192,0,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1130,"weaponDamageMax":1696,"weaponSpeed":1.9,"ilvl":378,"phase":3,"quality":4}, -{"id":70234,"name":"Ruthless Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1398,"weaponDamageMax":2597,"weaponSpeed":1.9,"ilvl":378,"phase":3,"quality":4}, -{"id":70235,"name":"Ruthless Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,85,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1398,"weaponDamageMax":2597,"weaponSpeed":1.9,"ilvl":378,"phase":3,"quality":4}, -{"id":70236,"name":"Ruthless Gladiator's Longbow","icon":"inv_bow_1h_pvp410_c_01","type":14,"rangedWeaponType":1,"stats":[0,128,192,0,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4}, -{"id":70237,"name":"Ruthless Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvp410_c_01","type":14,"rangedWeaponType":3,"stats":[0,128,192,0,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4}, -{"id":70238,"name":"Ruthless Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,128,192,0,0,0,85,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4}, -{"id":70239,"name":"Ruthless Gladiator's Endgame","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70240,"name":"Ruthless Gladiator's Reprieve","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,151,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70241,"name":"Ruthless Gladiator's Shield Wall","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[227,0,341,0,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70242,"name":"Ruthless Gladiator's Barrier","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,227,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70243,"name":"Ruthless Gladiator's Redoubt","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,227,151,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70244,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70245,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70246,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70247,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70248,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70249,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70250,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70251,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70252,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70253,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70254,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70255,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70256,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70257,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70258,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70259,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70260,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70261,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70262,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70263,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70264,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70265,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70266,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70267,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70268,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70269,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70270,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70271,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70272,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70273,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70274,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70275,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70276,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70277,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70278,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70279,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70280,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70281,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70282,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70283,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70284,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70285,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70286,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70287,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70288,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70289,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70290,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70291,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70292,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70293,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70294,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70295,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70296,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70297,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70298,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70299,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70300,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70301,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70302,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70303,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,0,0,0,0,194,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70304,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70305,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70306,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70307,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70308,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70309,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":70310,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":70311,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":70312,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":70313,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":70314,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70315,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70316,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70317,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70318,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,0,0,0,0,194,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70319,"name":"Ruthless Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70320,"name":"Ruthless Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_02","type":8,"armorType":4,"stats":[300,0,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70321,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[300,0,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70322,"name":"Ruthless Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_02","type":6,"armorType":4,"stats":[240,0,360,0,0,0,0,160,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70323,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[300,0,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70324,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70325,"name":"Ruthless Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,360,240,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70326,"name":"Ruthless Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_02","type":8,"armorType":4,"stats":[300,0,480,0,0,0,0,0,0,0,0,194,0,0,0,0,214,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70327,"name":"Ruthless Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_02","type":6,"armorType":4,"stats":[240,0,360,0,0,0,0,0,160,0,0,0,0,0,0,0,160,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70328,"name":"Ruthless Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70329,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70330,"name":"Ruthless Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70331,"name":"Ruthless Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70332,"name":"Ruthless Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70333,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70334,"name":"Ruthless Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70335,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70336,"name":"Ruthless Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70337,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70338,"name":"Ruthless Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,240,360,0,0,0,0,160,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70339,"name":"Ruthless Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70340,"name":"Ruthless Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,240,360,0,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70341,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70342,"name":"Ruthless Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,360,240,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70343,"name":"Ruthless Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70344,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70345,"name":"Ruthless Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70346,"name":"Ruthless Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70347,"name":"Ruthless Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70348,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70349,"name":"Ruthless Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70350,"name":"Ruthless Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,240,360,0,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70351,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70352,"name":"Ruthless Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,240,360,0,0,0,0,160,0,0,0,0,0,0,0,0,160,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70353,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70354,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70355,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70356,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70357,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70358,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70359,"name":"Ruthless Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,360,240,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":52549,"npcName":"Sergeant Thunderhorn","zoneId":1637}}]}, -{"id":70360,"name":"Ruthless Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_02","type":8,"armorType":1,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,808,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70361,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70362,"name":"Ruthless Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_02","type":8,"armorType":1,"stats":[0,0,480,300,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,808,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70363,"name":"Ruthless Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpwarlock_c_02","type":6,"armorType":1,"stats":[0,0,360,240,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70364,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70365,"name":"Ruthless Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_c_02","type":6,"armorType":1,"stats":[0,0,360,240,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70366,"name":"Ruthless Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_02","type":6,"armorType":1,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70367,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70368,"name":"Ruthless Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_02","type":8,"armorType":1,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,808,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70369,"name":"Ruthless Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,360,240,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70370,"name":"Ruthless Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,360,240,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70371,"name":"Ruthless Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":70372,"name":"Ruthless Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[240,0,360,0,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":70373,"name":"Ruthless Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[240,0,360,0,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":70374,"name":"Ruthless Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,240,360,0,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":70375,"name":"Ruthless Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,240,360,0,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":70376,"name":"Ruthless Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,360,240,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70377,"name":"Ruthless Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,360,240,0,0,0,160,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70378,"name":"Ruthless Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":70379,"name":"Ruthless Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,240,360,0,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70380,"name":"Ruthless Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,240,360,0,0,0,0,0,160,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70381,"name":"Ruthless Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[240,0,360,0,0,0,0,0,160,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70382,"name":"Ruthless Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_45","type":2,"stats":[240,0,360,0,0,160,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70383,"name":"Ruthless Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"stats":[240,0,360,0,0,0,0,160,0,0,0,0,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70384,"name":"Ruthless Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[240,0,360,0,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70385,"name":"Ruthless Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,240,360,0,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70386,"name":"Ruthless Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"stats":[0,240,360,0,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70387,"name":"Ruthless Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"stats":[0,0,360,240,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70388,"name":"Ruthless Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,0,360,240,0,0,0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70389,"name":"Ruthless Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":70390,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70391,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70392,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70393,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70394,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70395,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70396,"name":"Ruthless Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70397,"name":"Ruthless Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70398,"name":"Ruthless Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70399,"name":"Ruthless Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70400,"name":"Ruthless Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70401,"name":"Ruthless Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70402,"name":"Ruthless Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70403,"name":"Ruthless Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70404,"name":"Ruthless Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70405,"name":"Ruthless Gladiator's Relic of Dominance","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,203,135,0,0,90,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,1,7]}, -{"id":70406,"name":"Ruthless Gladiator's Relic of Salvation","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,203,135,90,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,1,7]}, -{"id":70407,"name":"Ruthless Gladiator's Relic of Triumph","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,135,203,0,0,0,90,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1,7]}, -{"id":70408,"name":"Ruthless Gladiator's Relic of Conquest","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[135,0,203,0,0,0,90,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4,10]}, -{"id":70409,"name":"Ruthless Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70410,"name":"Ruthless Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70411,"name":"Ruthless Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70412,"name":"Ruthless Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70413,"name":"Ruthless Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70414,"name":"Ruthless Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4}, -{"id":70415,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70416,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70417,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70418,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70419,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918}, -{"id":70420,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70421,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70422,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70423,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70424,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911}, -{"id":70425,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,0,0,0,0,194,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910}, -{"id":70426,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910}, -{"id":70427,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910}, -{"id":70428,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":70429,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":70430,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":70431,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":70432,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":70433,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70434,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":70435,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":70436,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":70437,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":70438,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":70439,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":70440,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":70441,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":70442,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":70443,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":70444,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":70445,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":70446,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914}, -{"id":70447,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":70448,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":70449,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":70450,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,646,391,247,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70451,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70452,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70453,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70454,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,0,0,0,0,194,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":70455,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":70456,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,300,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70457,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70458,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70459,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,300,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70460,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912}, -{"id":70461,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":70462,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":70463,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919}, -{"id":70464,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70465,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70466,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70467,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913}, -{"id":70468,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910}, -{"id":70469,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910}, -{"id":70470,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Raiment","setId":915}, -{"id":70471,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,646,391,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Raiment","setId":915}, -{"id":70472,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,646,391,0,0,0,0,0,0,0,247,0,0,0,0,287,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Raiment","setId":915}, -{"id":70473,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,646,371,0,0,0,227,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Raiment","setId":915}, -{"id":70474,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Raiment","setId":915}, -{"id":70475,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":70476,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,391,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":70477,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70478,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70479,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70480,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70481,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909}, -{"id":70482,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70483,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70484,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,391,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":70485,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,371,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":70486,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":70487,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70488,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70489,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917}, -{"id":70490,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[300,0,480,0,0,0,0,0,194,0,0,0,0,0,0,0,214,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":70491,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[391,0,646,0,0,0,0,247,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":70492,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,0,227,0,0,0,0,287,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":70493,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[300,0,480,0,0,194,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":70494,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[391,0,646,0,0,0,247,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924}, -{"id":70495,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,480,300,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70496,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70497,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,988,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70498,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70499,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70500,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70501,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70502,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70503,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70504,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[300,0,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70505,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[300,0,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70506,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,300,480,0,0,0,194,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70507,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,300,480,0,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70508,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,480,300,0,0,0,194,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70509,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,480,300,194,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70511,"name":"Vicious Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70512,"name":"Vicious Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,319,212,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70513,"name":"Vicious Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[212,0,319,0,0,0,0,142,0,0,0,0,0,0,0,0,142,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70514,"name":"Vicious Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[212,0,319,0,0,0,0,0,142,0,0,0,0,0,0,0,142,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70515,"name":"Vicious Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,212,319,0,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70516,"name":"Vicious Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,212,319,0,0,0,0,142,0,0,0,0,0,0,0,0,142,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70517,"name":"Vicious Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70518,"name":"Vicious Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70519,"name":"Vicious Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70520,"name":"Vicious Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,319,212,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70521,"name":"Vicious Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,319,212,0,0,142,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70522,"name":"Vicious Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":70523,"name":"Vicious Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70524,"name":"Vicious Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70525,"name":"Vicious Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70526,"name":"Vicious Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,319,212,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70527,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,263,425,0,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70528,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70529,"name":"Vicious Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70530,"name":"Vicious Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,319,212,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70531,"name":"Vicious Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"stats":[0,212,319,0,0,0,142,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70532,"name":"Vicious Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,212,319,0,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70533,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70534,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,263,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70535,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70536,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,342,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70537,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Vicious Gladiator's Pursuit","setId":920,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70538,"name":"Vicious Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[212,0,319,0,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70539,"name":"Vicious Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[212,0,319,0,0,0,0,0,142,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70540,"name":"Vicious Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70541,"name":"Vicious Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70542,"name":"Vicious Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"stats":[212,0,319,0,0,0,0,142,0,0,0,0,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70543,"name":"Vicious Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[212,0,319,0,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70544,"name":"Vicious Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,425,263,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70545,"name":"Vicious Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70546,"name":"Vicious Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70547,"name":"Vicious Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,319,212,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70548,"name":"Vicious Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70549,"name":"Vicious Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,319,212,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70550,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":70551,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":70552,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,342,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":70553,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":70554,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Sanctuary","setId":922}, -{"id":70555,"name":"Vicious Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"stats":[0,0,319,212,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70556,"name":"Vicious Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":70557,"name":"Vicious Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,0,319,212,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70558,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":70559,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[263,0,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":70560,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":70561,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[342,0,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":70562,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Vicious Gladiator's Desecration","setId":924}, -{"id":70563,"name":"Vicious Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70564,"name":"Vicious Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70565,"name":"Vicious Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70566,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,0,0,0,0,169,0,0,0,0,189,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70567,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70568,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,425,263,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70569,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70570,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Vicious Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70571,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70572,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1]}, -{"id":70573,"name":"Vicious Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[263,0,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70574,"name":"Vicious Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[263,0,425,0,0,0,0,0,0,0,0,169,0,0,0,0,189,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70575,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70576,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4]}, -{"id":70577,"name":"Vicious Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70578,"name":"Vicious Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70579,"name":"Vicious Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4}, -{"id":70580,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":70581,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":70582,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":70583,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,573,342,215,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":70584,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Refuge","setId":923}, -{"id":70585,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,263,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":70586,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":70587,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,342,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":70588,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":70589,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vicious Gladiator's Vestments","setId":914}, -{"id":70590,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":70591,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,263,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":70592,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":70593,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,342,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":70594,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Earthshaker","setId":912}, -{"id":70595,"name":"Vicious Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,263,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70596,"name":"Vicious Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,263,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70597,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":70598,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":70599,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,573,322,0,0,0,195,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":70600,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,573,342,0,0,0,0,0,0,0,215,0,0,0,0,255,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":70601,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Thunderfist","setId":911}, -{"id":70602,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70603,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70604,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70605,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70606,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":1}, -{"id":70607,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"factionRestriction":2}, -{"id":70608,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70609,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70610,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70611,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70612,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,573,342,215,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Investiture","setId":916,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70613,"name":"Vicious Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,212,319,0,0,0,0,0,142,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70614,"name":"Vicious Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,212,319,0,0,0,0,0,0,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":70615,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,573,342,215,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":70616,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":70617,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":70618,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":70619,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Redemption","setId":918}, -{"id":70620,"name":"Vicious Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,319,212,0,0,0,142,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70621,"name":"Vicious Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,319,212,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":70622,"name":"Vicious Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,319,212,142,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":70623,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":70624,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[263,0,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":70625,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":70626,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[342,0,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":70627,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Vicious Gladiator's Battlegear","setId":909}, -{"id":70628,"name":"Vicious Gladiator's Relic of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[120,0,180,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,10]}, -{"id":70629,"name":"Vicious Gladiator's Relic of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,180,120,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,1,7]}, -{"id":70630,"name":"Vicious Gladiator's Relic of Salvation","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,180,120,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4,1,7]}, -{"id":70631,"name":"Vicious Gladiator's Relic of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,120,180,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1,7]}, -{"id":70632,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,573,342,215,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":70633,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":70634,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":70635,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":70636,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Vicious Gladiator's Wartide","setId":913}, -{"id":70637,"name":"Vicious Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,212,319,0,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":70638,"name":"Vicious Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,212,319,0,0,0,142,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":70639,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,263,425,0,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70640,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70641,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,263,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70642,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70643,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70644,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,195,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70645,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,0,0,0,0,215,0,0,0,0,255,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70646,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70647,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vicious Gladiator's Raiment","setId":915,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70648,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":70649,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[263,0,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":70650,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":70651,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[342,0,573,0,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":70652,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,0,169,0,0,0,0,0,0,0,189,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Vicious Gladiator's Vindication","setId":917}, -{"id":70653,"name":"Vicious Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[212,0,319,0,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":70654,"name":"Vicious Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[212,0,319,0,0,0,142,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":70655,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,0,0,0,0,169,0,0,0,0,189,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70656,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,0,0,0,0,195,0,0,0,0,255,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70657,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,425,263,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70658,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70659,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Vicious Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":52536,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":70660,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70661,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70662,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[5,3,8]}, -{"id":70663,"name":"Vicious Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,263,425,0,0,169,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70664,"name":"Vicious Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[6,1]}, -{"id":70665,"name":"Vicious Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70666,"name":"Vicious Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[7]}, -{"id":70667,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[263,0,425,0,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70668,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[263,0,425,0,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[9,4,10]}, -{"id":70669,"name":"Vicious Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,212,319,0,0,142,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70670,"name":"Vicious Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,212,319,0,0,0,0,142,0,0,0,0,0,0,0,0,142,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[2,7]}, -{"id":70671,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,425,263,0,0,169,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":70672,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,573,322,0,0,0,195,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":70673,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,573,342,0,0,0,0,0,0,0,215,0,0,0,0,255,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":70674,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,573,342,0,0,215,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":70675,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,425,263,0,0,0,169,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":371,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Vicious Gladiator's Wildhide","setId":921}, -{"id":70723,"name":"Sulfuras, the Extinguished Hand","icon":"inv_mace_2h_sulfuras_d_01","type":13,"weaponType":4,"handType":4,"stats":[446,0,730,0,0,0,333,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2700,"weaponDamageMax":4050,"weaponSpeed":3.8,"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":70733,"name":"Alysra's Razor","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,155,262,0,0,0,0,113,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":1004,"weaponSpeed":1.4,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70734,"name":"Greathelm of the Voracious Maw","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,192,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70735,"name":"Flickering Wristbands","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":378,"phase":3,"quality":4,"randPropPoints":432,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70736,"name":"Moltenfeather Leggings","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,256,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70737,"name":"Spaulders of Recurring Flame","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,207,164,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70738,"name":"Alysrazor's Band","icon":"inv_jewelry_ring_firelandsraid_01a","type":11,"stats":[227,0,341,0,0,0,0,107,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70739,"name":"Lavaworm Legplates","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,284,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70912,"name":"Cracked Obsidian Stompers","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[210,0,454,0,0,0,0,0,153,282,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":70913,"name":"Legplates of Frenzied Devotion","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,205,288,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":70914,"name":"Carapace of Imbibed Flame","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,238,0,260,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":70915,"name":"Shard of Torment","icon":"inv_shield_firelandsraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[147,0,341,0,0,0,0,0,0,148,154,0,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":70916,"name":"Helm of Blazing Glory","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,0,0,0,0,284,192,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":70917,"name":"Flickering Handguards","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-274,-273,-272],"ilvl":378,"phase":3,"quality":4,"randPropPoints":575,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":70920,"name":"Bracers of the Fiery Path","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[207,0,341,0,0,0,0,0,0,0,149,133,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":70921,"name":"Pauldrons of Roaring Flame","icon":"inv_plate_firelands_d_01","type":3,"armorType":4,"stats":[223,0,480,0,0,0,0,0,0,320,0,142,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":70922,"name":"Mandible of Beth'tilac","icon":"inv_sword_1h_firelandsraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[175,0,262,0,0,0,0,0,0,126,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":70929,"name":"Firebound Gorget","icon":"inv_jewelry_necklace_52","type":2,"stats":[173,0,341,0,0,0,0,0,115,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":70930,"name":"Durable Flamewrath Greatcloak","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[173,0,341,0,0,115,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":5}}]}, -{"id":70933,"name":"Girdle of the Indomitable Flame","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":70934,"name":"Adamantine Signet of the Avengers","icon":"inv_jewelry_ring_95","type":11,"stats":[175,0,384,0,0,110,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":8}}]}, -{"id":70935,"name":"Stoneheart Necklace","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[227,0,341,0,0,0,0,0,0,0,129,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70937,"name":"Bracers of Regal Force","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[153,0,341,0,0,0,0,0,0,212,110,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":70939,"name":"Deathclutch Figurine","icon":"inv_misc_statue_09","type":14,"rangedWeaponType":4,"stats":[128,0,192,0,0,0,0,0,0,90,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":70940,"name":"Deflecting Brimstone Band","icon":"inv_jewelry_ring_firelandsraid_03a","type":11,"stats":[227,0,341,0,0,0,0,0,0,148,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":70941,"name":"Shoulderguards of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":70942,"name":"Legguards of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":70943,"name":"Handguards of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":70944,"name":"Faceguard of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":70945,"name":"Chestguard of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":70946,"name":"Immolation Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":70947,"name":"Immolation Legguards","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":70948,"name":"Immolation Faceguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":70949,"name":"Immolation Handguards","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":70950,"name":"Immolation Chestguard","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":70951,"name":"Elementium Deathplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":70952,"name":"Elementium Deathplate Legguards","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":70953,"name":"Elementium Deathplate Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":70954,"name":"Elementium Deathplate Faceguard","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":70955,"name":"Elementium Deathplate Chestguard","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":70985,"name":"Craterflame Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,0,0,197,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70986,"name":"Clawshaper Gauntlets","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,219,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70987,"name":"Phoenix-Down Treads","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,454,282,213,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70988,"name":"Clutch of the Firemother","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,611,368,272,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70989,"name":"Leggings of Billowing Fire","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,212,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70990,"name":"Wings of Flame","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,0,341,227,0,0,144,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":70991,"name":"Arbalest of Erupting Fury","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,128,192,0,0,0,91,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":70992,"name":"Dreadfire Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,212,341,0,0,138,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":70993,"name":"Fireskin Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,211,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71003,"name":"Hood of Rampant Disdain","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,0,0,295,172,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71004,"name":"Earthcrack Bracers","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[227,0,341,0,0,0,158,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71005,"name":"Flaming Core Chestguard","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,235,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71006,"name":"Volcanospike","icon":"inv_sword_1h_firelandsraid_d_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,262,175,0,105,0,123,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71007,"name":"Grips of the Raging Giant","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,205,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71009,"name":"Lava Line Wristbands","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,341,227,158,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71010,"name":"Incendic Chestguard","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,278,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71011,"name":"Flickering Cowl","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-270,-269,-268,-267,-266,-265],"ilvl":378,"phase":3,"quality":4,"randPropPoints":775,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71012,"name":"Heartstone of Rhyolith","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[0,0,341,227,162,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71013,"name":"Feeding Frenzy","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,88,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":794,"weaponDamageMax":1192,"weaponSpeed":1.8,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71014,"name":"Skullstealer Greataxe","icon":"inv_axe_2h_firelandsraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[408,0,611,0,0,0,0,276,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71018,"name":"Scalp of the Bandit Prince","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,274,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71019,"name":"Necklace of Fetishes","icon":"inv_jewelry_necklace_53","type":2,"stats":[227,0,341,0,0,126,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71020,"name":"Gloves of Dissolving Smoke","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,172,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71021,"name":"Uncrushable Belt of Fury","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[210,0,454,0,0,0,0,0,133,0,0,302,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71022,"name":"Goblet of Anger","icon":"inv_offhand_1h_firelandsraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,137,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71023,"name":"Coalwalker Sandals","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71024,"name":"Crystal Prison Band","icon":"inv_jewelry_ring_firelandsraid_03c","type":11,"stats":[0,0,341,227,0,0,133,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71025,"name":"Flickering Shoulderpads","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-283,-282,-281,-280],"ilvl":378,"phase":3,"quality":4,"randPropPoints":575,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71026,"name":"Bracers of the Dread Hunter","icon":"inv_bracer_plate_raidpaladin_j_01","type":6,"armorType":4,"stats":[0,0,341,227,148,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71027,"name":"Treads of Implicit Obedience","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,454,282,177,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71028,"name":"Legplates of Absolute Control","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,611,368,299,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71029,"name":"Arachnaflame Treads","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,0,202,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71030,"name":"Flickering Shoulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-291,-290,-289,-288],"ilvl":378,"phase":3,"quality":4,"randPropPoints":575,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71031,"name":"Cinderweb Leggings","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,0,0,212,0,0,0,284,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71032,"name":"Widow's Kiss","icon":"inv_jewelry_ring_91","type":11,"stats":[0,227,341,0,0,0,0,167,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71038,"name":"Ward of the Red Widow","icon":"inv_shield_firelandsraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,207,154,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71039,"name":"Funeral Pyre","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,0,0,288,0,0,0,0,225,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1428,"weaponDamageMax":2143,"weaponSpeed":2.4,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71040,"name":"Cowl of the Clicking Menace","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,259,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71041,"name":"Robes of Smoldering Devastation","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,0,0,218,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71042,"name":"Thoracic Flame Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,252,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71043,"name":"Spaulders of Manifold Eyes","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,454,282,213,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71044,"name":"Cindersilk Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,211,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71045,"name":"Dark Phoenix Tunic","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,230,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71046,"name":"Dark Phoenix Gloves","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,133,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71047,"name":"Dark Phoenix Helmet","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,227,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71048,"name":"Dark Phoenix Legguards","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,280,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71049,"name":"Dark Phoenix Spaulders","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,0,0,185,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71050,"name":"Flamewaker's Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,205,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71051,"name":"Flamewaker's Headguard","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,243,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71052,"name":"Flamewaker's Legguards","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,278,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71053,"name":"Flamewaker's Spaulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,282,454,0,0,0,0,170,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71054,"name":"Flamewaker's Tunic","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,0,255,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71058,"name":"Elementium Deathplate Breastplate","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,269,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71059,"name":"Elementium Deathplate Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,211,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71060,"name":"Elementium Deathplate Helmet","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,205,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71061,"name":"Elementium Deathplate Greaves","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,205,284,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71062,"name":"Elementium Deathplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,0,211,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71063,"name":"Immolation Battleplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,235,269,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71064,"name":"Immolation Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,178,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71065,"name":"Immolation Helmet","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,199,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71066,"name":"Immolation Legplates","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,227,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71067,"name":"Immolation Pauldrons","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,211,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71068,"name":"Battleplate of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,232,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71069,"name":"Gauntlets of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,183,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71070,"name":"Helmet of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,0,245,0,0,0,233,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71071,"name":"Legplates of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,218,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71072,"name":"Pauldrons of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,197,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71077,"name":"Extreme-Impact Hole Puncher","icon":"inv_weapon_rifle_44","type":14,"rangedWeaponType":3,"stats":[0,74,170,0,0,0,58,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1291,"weaponDamageMax":2399,"weaponSpeed":2.8,"ilvl":365,"phase":3,"quality":4,"sources":[{"crafted":{"profession":4,"spellId":100687}}]}, -{"id":71084,"name":"Branch of Nordrassil","icon":"stave_2h_tarecgosa_e_01stage1","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,0,271,0,250,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":3,"quality":4,"sources":[{"quest":{"id":29239,"name":"Nordrassil's Bough"}}]}, -{"id":71085,"name":"Runestaff of Nordrassil","icon":"stave_2h_tarecgosa_e_01stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,420,0,301,0,269,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2217,"weaponDamageMax":3326,"weaponSpeed":3.3,"ilvl":391,"phase":3,"quality":4,"sources":[{"quest":{"id":29285,"name":"Alignment"}}]}, -{"id":71086,"name":"Dragonwrath, Tarecgosa's Rest","icon":"stave_2h_tarecgosa_e_01stagefinal","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,426,0,314,0,271,0,0,0,0,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2344,"weaponDamageMax":3517,"weaponSpeed":3.3,"ilvl":397,"phase":3,"quality":5}, -{"id":71091,"name":"Immolation Breastplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,611,368,276,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71092,"name":"Immolation Gloves","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,0,0,176,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71093,"name":"Immolation Headguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,611,348,239,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71094,"name":"Immolation Greaves","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,611,368,271,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71095,"name":"Immolation Mantle","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,454,282,229,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71097,"name":"Obsidian Arborweave Grips","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,177,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71098,"name":"Obsidian Arborweave Headpiece","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,265,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71099,"name":"Obsidian Arborweave Legguards","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,166,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71100,"name":"Obsidian Arborweave Raiment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,275,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71101,"name":"Obsidian Arborweave Spaulders","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,0,157,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71102,"name":"Obsidian Arborweave Handwraps","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,0,0,177,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71103,"name":"Obsidian Arborweave Helm","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,254,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71104,"name":"Obsidian Arborweave Legwraps","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,284,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71105,"name":"Obsidian Arborweave Tunic","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,255,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71106,"name":"Obsidian Arborweave Mantle","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,454,282,183,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71107,"name":"Obsidian Arborweave Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,177,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71108,"name":"Obsidian Arborweave Cover","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,0,0,0,213,0,0,0,265,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71109,"name":"Obsidian Arborweave Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,248,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71110,"name":"Obsidian Arborweave Vestment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,0,0,0,235,0,0,0,266,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71111,"name":"Obsidian Arborweave Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,454,282,0,0,203,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71129,"name":"Necklace of Smoke Signals","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,227,341,0,0,144,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71130,"name":"Flamebinder Bracers","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,227,341,0,0,0,148,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71131,"name":"Flamebinding Girdle","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,282,454,0,0,167,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71146,"name":"Covenant of the Flame","icon":"inv_scroll_15","type":14,"rangedWeaponType":4,"stats":[0,128,192,0,0,0,88,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71147,"name":"Relic of the Elemental Lords","icon":"spell_fire_sealoffire","type":14,"rangedWeaponType":4,"stats":[128,0,192,0,0,0,83,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71148,"name":"Soulflame Vial","icon":"inv_misc_cat_trinket02","type":14,"rangedWeaponType":4,"stats":[0,0,192,128,0,0,0,79,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71149,"name":"Singed Plume of Aviana","icon":"inv_feather_06","type":14,"rangedWeaponType":4,"stats":[0,0,192,128,93,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71150,"name":"Scorchvine Wand","icon":"inv_wand_1h_firelandsraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,86,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1324,"weaponDamageMax":2460,"weaponSpeed":1.8,"ilvl":378,"phase":3,"quality":4}, -{"id":71151,"name":"Trail of Embers","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,0,79,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1324,"weaponDamageMax":2460,"weaponSpeed":1.8,"ilvl":378,"phase":3,"quality":4}, -{"id":71152,"name":"Morningstar Shard","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,128,192,0,0,88,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":3,"quality":4}, -{"id":71154,"name":"Giantslicer","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[128,0,192,0,0,88,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":2.1,"ilvl":378,"phase":3,"quality":4}, -{"id":71208,"name":"Serrated Brimstone Signet","icon":"inv_jewelry_ring_firelandsraid_02a","type":11,"stats":[227,0,341,0,0,0,156,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71209,"name":"Splintered Brimstone Seal","icon":"inv_jewelry_ring_firelandsraid_03b","type":11,"stats":[0,227,341,0,0,0,140,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71210,"name":"Crystalline Brimstone Ring","icon":"inv_jewelry_ring_firelandsraid_01b","type":11,"stats":[0,0,341,227,0,162,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71211,"name":"Soothing Brimstone Circle","icon":"inv_jewelry_ring_firelandsraid_02c","type":11,"stats":[0,0,341,227,156,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true}, -{"id":71212,"name":"Stoneheart Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[227,0,341,0,0,0,160,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71213,"name":"Amulet of Burning Brilliance","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,0,341,227,0,119,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71214,"name":"Firemind Pendant","icon":"inv_neck_hyjaldaily_03","type":2,"stats":[0,0,341,227,144,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71215,"name":"Obsidian Signet of the Avengers","icon":"inv_jewelry_ring_99","type":11,"stats":[236,0,384,0,0,110,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":8}}]}, -{"id":71216,"name":"Viridian Signet of the Avengers","icon":"inv_jewelry_ring_96","type":11,"stats":[0,236,384,0,0,0,0,181,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":8}}]}, -{"id":71217,"name":"Infernal Signet of the Avengers","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,384,236,0,146,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":8}}]}, -{"id":71218,"name":"Deflecting Star","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[97,0,192,0,0,0,0,0,65,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":2.1,"ilvl":378,"phase":3,"quality":4}, -{"id":71227,"name":"Bladed Flamewrath Cover","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[227,0,341,0,0,0,0,173,115,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":5}}]}, -{"id":71228,"name":"Sleek Flamewrath Cloak","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,227,341,0,0,169,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":5}}]}, -{"id":71229,"name":"Flowing Flamewrath Cape","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,0,341,227,160,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":5}}]}, -{"id":71230,"name":"Rippling Flamewrath Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,0,341,227,0,133,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":5}}]}, -{"id":71237,"name":"Quicksilver Signet of the Avengers","icon":"inv_jewelry_ring_94","type":11,"stats":[0,0,384,236,185,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":8}}]}, -{"id":71249,"name":"Firescar Sash","icon":"inv_belt_leather_raiddruid_j_01","type":8,"armorType":2,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71250,"name":"Cinch of the Flaming Ember","icon":"inv_belt_plate_raiddeathknight_j_01","type":8,"armorType":4,"stats":[282,0,454,0,0,133,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71253,"name":"Belt of the Seven Seals","icon":"inv_belt_plate_raidpaladin_j_01","type":8,"armorType":4,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71254,"name":"Firemend Cinch","icon":"inv_belt_mail_raidshaman_j_01","type":8,"armorType":3,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71255,"name":"Firearrow Belt","icon":"inv_belt_mail_raidhunter_j_01","type":8,"armorType":3,"stats":[0,282,454,0,0,0,0,193,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71258,"name":"Embereye Belt","icon":"inv_belt_robe_raidmage_j_01","type":8,"armorType":1,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"soldBy":{"npcId":54401,"npcName":"Naresir Stormfury"}},{"rep":{"repFactionId":1204,"repLevel":6}}]}, -{"id":71260,"name":"Bracers of Imperious Truths","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,341,227,156,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71261,"name":"Gigantiform Bracers","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[227,0,341,0,0,115,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71262,"name":"Smolderskull Bindings","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,341,227,162,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71263,"name":"Bracers of Misting Ash","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,341,227,154,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71264,"name":"Bracers of Forked Lightning","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,227,341,0,0,0,165,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71265,"name":"Emberflame Bracers","icon":"inv_bracer_robe_raidwarlock_j_01","type":6,"armorType":1,"stats":[0,0,341,227,0,148,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71266,"name":"Firesoul Wristguards","icon":"inv_bracer_robe_raidpriest_j_01","type":6,"armorType":1,"stats":[0,0,341,227,158,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":71267,"name":"Mantle of Desire","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,0,301,201,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"quest":{"id":29331,"name":"Elemental Bonds: The Vow"}}]}, -{"id":71268,"name":"Mantle of Doubt","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,201,301,0,0,134,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"quest":{"id":29331,"name":"Elemental Bonds: The Vow"}}]}, -{"id":71269,"name":"Mantle of Fury","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[201,0,301,0,0,0,134,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"quest":{"id":29331,"name":"Elemental Bonds: The Vow"}}]}, -{"id":71270,"name":"Mantle of Patience","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[201,0,301,0,0,0,0,0,0,134,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"sources":[{"quest":{"id":29331,"name":"Elemental Bonds: The Vow"}}]}, -{"id":71271,"name":"Handwraps of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,206,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71272,"name":"Cowl of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,611,348,255,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71273,"name":"Legwraps of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,611,368,291,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71274,"name":"Robes of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,611,368,261,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71275,"name":"Mantle of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,454,282,201,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71276,"name":"Gloves of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,157,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71277,"name":"Hood of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,235,0,0,0,249,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71278,"name":"Leggings of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71279,"name":"Vestment of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,611,368,222,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71280,"name":"Shoulderwraps of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,201,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71281,"name":"Balespider's Handwraps","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,157,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71282,"name":"Balespider's Hood","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,228,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71283,"name":"Balespider's Leggings","icon":"inv_pants_robe_raidwarlock_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71284,"name":"Balespider's Robes","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,222,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71285,"name":"Balespider's Mantle","icon":"inv_shoulder_robe_raidwarlock_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,183,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71286,"name":"Firehawk Gloves","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,157,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71287,"name":"Firehawk Hood","icon":"inv_helmet_robe_raidmage_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,228,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71288,"name":"Firehawk Leggings","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71289,"name":"Firehawk Robes","icon":"inv_chest_robe_raidmage_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,222,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71290,"name":"Firehawk Mantle","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,201,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71291,"name":"Erupting Volcanic Hauberk","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,0,0,0,259,0,0,0,245,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71292,"name":"Erupting Volcanic Gloves","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,0,0,199,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71293,"name":"Erupting Volcanic Headpiece","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,611,348,0,0,165,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71294,"name":"Erupting Volcanic Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,0,0,0,279,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71295,"name":"Erupting Volcanic Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,195,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71296,"name":"Erupting Volcanic Tunic","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,269,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71297,"name":"Erupting Volcanic Handwraps","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,199,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71298,"name":"Erupting Volcanic Faceguard","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,611,348,279,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71299,"name":"Erupting Volcanic Legwraps","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,266,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71300,"name":"Erupting Volcanic Mantle","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,196,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71301,"name":"Erupting Volcanic Cuirass","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,0,0,0,259,0,0,245,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71302,"name":"Erupting Volcanic Grips","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,205,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71303,"name":"Erupting Volcanic Helmet","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,0,263,0,0,0,215,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71304,"name":"Erupting Volcanic Legguards","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,291,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71305,"name":"Erupting Volcanic Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,282,454,0,0,194,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71312,"name":"Gatecrasher","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[0,175,262,0,0,0,120,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71313,"name":"Sandals of Leaping Coals","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,282,454,0,0,0,133,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71314,"name":"Breastplate of the Incendiary Soul","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,0,231,0,0,0,267,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71315,"name":"Decimation Treads","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,281,454,0,0,176,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71323,"name":"Molten Scream","icon":"inv_offhand_1h_firelandsraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,0,144,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71325,"name":"The Horseman's Sinister Saber","icon":"inv_sword_07","type":13,"weaponType":9,"handType":1,"stats":[0,103,290,0,0,103,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":889,"weaponDamageMax":1652,"weaponSpeed":2.6,"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71326,"name":"The Horseman's Horrific Helmet","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[371,0,411,0,0,171,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4}, -{"id":71327,"name":"Band of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,201,301,0,0,118,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71328,"name":"The Horseman's Signet","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,301,201,0,118,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71329,"name":"Wicked Witch's Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,301,201,134,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71330,"name":"Seal of the Petrified Pumpkin","icon":"inv_misc_bag_28_halloween","type":11,"stats":[201,0,301,0,0,0,142,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71340,"name":"Gatekeeper's Embrace","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,279,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71341,"name":"Glowing Wing Bracers","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,341,227,154,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71342,"name":"Casque of Flame","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,611,348,258,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71343,"name":"Mantle of Closed Doors","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,211,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71344,"name":"Breastplate of Shifting Visions","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,233,0,0,0,265,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71345,"name":"Shoulderpads of the Forgotten Gate","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,210,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71346,"name":"Grips of Unerring Precision","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,0,216,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71347,"name":"Stinger of the Flaming Scorpion","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,0,0,90,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1251,"weaponDamageMax":2324,"weaponSpeed":1.7,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71348,"name":"Flowform Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[0,0,341,227,0,0,0,143,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71349,"name":"Firecat Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,237,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71350,"name":"Wristwraps of Arrogant Doom","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,341,227,0,0,137,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71351,"name":"Treads of the Penitent Man","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,454,282,206,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71352,"name":"Sulfuras, the Extinguished Hand","icon":"inv_mace_2h_sulfuras_d_01","type":13,"weaponType":4,"handType":4,"stats":[391,0,646,0,0,0,294,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2392,"weaponDamageMax":3588,"weaponSpeed":3.8,"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71353,"name":"Arathar, the Eye of Flame","icon":"inv_bow_1h_firelandsraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,135,203,0,0,0,95,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1652,"weaponDamageMax":3069,"weaponSpeed":3,"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71354,"name":"Choker of the Vanquished Lord","icon":"inv_neck_firelands_03","type":2,"stats":[0,240,360,0,0,0,0,162,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71355,"name":"Ko'gun, Hammer of the Firelord","icon":"inv_mace_1h_firelandsraid_d_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,277,185,134,0,0,105,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":857,"weaponDamageMax":1593,"weaponSpeed":2.1,"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71356,"name":"Crown of Flame","icon":"inv_helm_circlet_firelands_d_01","type":1,"armorType":3,"stats":[0,0,646,371,280,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71357,"name":"Majordomo's Chain of Office","icon":"inv_belt_robe_raidpriest_j_01","type":8,"armorType":1,"stats":[0,0,480,300,0,0,0,214,0,0,0,182,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71358,"name":"Fingers of Incineration","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,480,300,0,0,215,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71359,"name":"Chelley's Sterilized Scalpel","icon":"inv_knife_1h_firelandsraid_d_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,262,175,0,0,118,0,0,0,0,113,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":579,"weaponDamageMax":1076,"weaponSpeed":1.5,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71360,"name":"Spire of Scarlet Pain","icon":"inv_staff_41","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,0,206,310,0,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71361,"name":"Ranseur of Hatred","icon":"inv_polearm_2h_firelandsraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,408,611,0,0,0,284,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71362,"name":"Obsidium Cleaver","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[175,0,262,0,0,105,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71365,"name":"Hide-Bound Chains","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,227,341,0,0,115,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71366,"name":"Lava Bolt Crossbow","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,128,192,0,0,0,88,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71367,"name":"Theck's Emberseal","icon":"inv_jewelry_ring_firelandsraid_02b","type":11,"stats":[173,0,341,0,0,115,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71401,"name":"Widow's Kiss","icon":"inv_jewelry_ring_91","type":11,"stats":[0,256,384,0,0,0,0,188,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71402,"name":"Cinderweb Leggings","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,0,0,244,0,0,0,320,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71403,"name":"Flickering Shoulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-295,-294,-293,-292],"ilvl":391,"phase":3,"quality":4,"heroic":true,"randPropPoints":650,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71404,"name":"Arachnaflame Treads","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[322,0,513,0,0,0,228,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71405,"name":"Carapace of Imbibed Flame","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,271,0,296,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71406,"name":"Mandible of Beth'tilac","icon":"inv_sword_1h_firelandsraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[197,0,296,0,0,0,0,0,0,143,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71407,"name":"Robes of Smoldering Devastation","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,0,0,251,0,0,0,316,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71408,"name":"Ward of the Red Widow","icon":"inv_shield_firelandsraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,236,173,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12421,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71409,"name":"Funeral Pyre","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,440,0,0,324,0,0,0,0,256,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":597,"weaponDamageMax":897,"weaponSpeed":2.4,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71410,"name":"Cindersilk Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,238,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71411,"name":"Cowl of the Clicking Menace","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,294,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71412,"name":"Thoracic Flame Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,284,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71413,"name":"Spaulders of Manifold Eyes","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,513,322,241,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}}]}, -{"id":71414,"name":"Arbalest of Erupting Fury","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,145,217,0,0,0,103,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71415,"name":"Dreadfire Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,241,384,0,0,158,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71416,"name":"Hood of Rampant Disdain","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,0,0,333,202,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71417,"name":"Flaming Core Chestguard","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,266,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71418,"name":"Earthcrack Bracers","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[256,0,384,0,0,0,178,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71419,"name":"Fireskin Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,238,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71420,"name":"Cracked Obsidian Stompers","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[240,0,513,0,0,0,0,0,173,322,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71421,"name":"Flickering Cowl","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-271,-264,-263,-262,-261,-260],"ilvl":391,"phase":3,"quality":4,"heroic":true,"randPropPoints":874,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71422,"name":"Volcanospike","icon":"inv_sword_1h_firelandsraid_d_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,296,197,0,119,0,139,0,0,0,0,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":348,"weaponDamageMax":648,"weaponSpeed":1.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71423,"name":"Heartstone of Rhyolith","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[0,0,384,256,183,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71424,"name":"Incendic Chestguard","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,314,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71425,"name":"Lava Line Wristbands","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,384,256,178,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71426,"name":"Grips of the Raging Giant","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,513,322,231,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}}]}, -{"id":71427,"name":"Alysra's Razor","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,177,296,0,0,0,0,128,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":610,"weaponDamageMax":1134,"weaponSpeed":1.4,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71428,"name":"Flickering Wristbands","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-133],"ilvl":391,"phase":3,"quality":4,"heroic":true,"randPropPoints":487,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71429,"name":"Moltenfeather Leggings","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,290,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71430,"name":"Greathelm of the Voracious Maw","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,224,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71431,"name":"Lavaworm Legplates","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,320,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71432,"name":"Spaulders of Recurring Flame","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,236,186,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71433,"name":"Alysrazor's Band","icon":"inv_jewelry_ring_firelandsraid_01a","type":11,"stats":[256,0,384,0,0,0,0,124,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71434,"name":"Wings of Flame","icon":"inv_cape_firelands_fireset_d_01","type":4,"stats":[0,0,384,256,0,0,162,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71435,"name":"Leggings of Billowing Fire","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,244,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71436,"name":"Phoenix-Down Treads","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,513,322,241,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,1325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71437,"name":"Clawshaper Gauntlets","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,248,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71438,"name":"Craterflame Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,0,0,223,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71439,"name":"Clutch of the Firemother","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,689,420,306,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}}]}, -{"id":71440,"name":"Gloves of Dissolving Smoke","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,197,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71441,"name":"Feeding Frenzy","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,100,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":896,"weaponDamageMax":1345,"weaponSpeed":1.8,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71442,"name":"Scalp of the Bandit Prince","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,310,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71443,"name":"Uncrushable Belt of Fury","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[240,0,513,0,0,0,0,0,153,0,0,342,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71444,"name":"Legplates of Frenzied Devotion","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,236,324,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71445,"name":"Skullstealer Greataxe","icon":"inv_axe_2h_firelandsraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[460,0,689,0,0,0,0,311,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71446,"name":"Necklace of Fetishes","icon":"inv_jewelry_necklace_53","type":2,"stats":[256,0,384,0,0,142,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71447,"name":"Coalwalker Sandals","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,513,322,0,0,235,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71448,"name":"Goblet of Anger","icon":"inv_offhand_1h_firelandsraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,154,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71449,"name":"Crystal Prison Band","icon":"inv_jewelry_ring_firelandsraid_03c","type":11,"stats":[0,0,384,256,0,0,150,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71450,"name":"Flickering Shoulderpads","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-287,-286,-285,-284],"ilvl":391,"phase":3,"quality":4,"heroic":true,"randPropPoints":650,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71451,"name":"Treads of Implicit Obedience","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,513,322,201,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71452,"name":"Bracers of the Dread Hunter","icon":"inv_bracer_plate_raidpaladin_j_01","type":6,"armorType":4,"stats":[0,0,384,256,166,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71453,"name":"Legplates of Absolute Control","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,689,420,337,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}}]}, -{"id":71454,"name":"Gatecrasher","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[0,197,296,0,0,0,135,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71455,"name":"Breastplate of the Incendiary Soul","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,0,264,0,0,0,303,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71456,"name":"Shoulderpads of the Forgotten Gate","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,240,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71457,"name":"Decimation Treads","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,321,513,0,0,199,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71458,"name":"Flickering Handguards","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-277,-276,-275],"ilvl":391,"phase":3,"quality":4,"heroic":true,"randPropPoints":650,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71459,"name":"Helm of Blazing Glory","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,0,0,0,0,320,224,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71460,"name":"Shard of Torment","icon":"inv_shield_firelandsraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[176,0,384,0,0,0,0,0,0,166,173,0,0,0,0,0,0,0,0,0,0,0,12421,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71461,"name":"Mantle of Closed Doors","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,238,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71462,"name":"Molten Scream","icon":"inv_offhand_1h_firelandsraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,0,162,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71463,"name":"Glowing Wing Bracers","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,384,256,173,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71464,"name":"Gatekeeper's Embrace","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,315,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71465,"name":"Casque of Flame","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,689,400,296,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}]}, -{"id":71466,"name":"Fandral's Flamescythe","icon":"inv_staff_99","type":13,"weaponType":8,"handType":4,"stats":[0,460,689,0,0,0,311,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1612,"weaponDamageMax":2419,"weaponSpeed":2.4,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71467,"name":"Sandals of Leaping Coals","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,322,513,0,0,0,153,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1325,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71468,"name":"Grips of Unerring Precision","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,0,0,244,0,0,0,180,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71469,"name":"Breastplate of Shifting Visions","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,266,0,0,0,301,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71470,"name":"Bracers of the Fiery Path","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[236,0,384,0,0,0,0,0,0,0,168,151,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71471,"name":"Wristwraps of Arrogant Doom","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,384,256,0,0,154,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71472,"name":"Flowform Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[0,0,384,256,0,0,0,163,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71473,"name":"Stinger of the Flaming Scorpion","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,217,145,0,0,102,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71474,"name":"Firecat Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,269,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71475,"name":"Treads of the Penitent Man","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,513,322,233,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}}]}, -{"id":71476,"name":"Elementium Deathplate Breastplate","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,304,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71477,"name":"Elementium Deathplate Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,238,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71478,"name":"Elementium Deathplate Helmet","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,239,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71479,"name":"Elementium Deathplate Greaves","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,236,322,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71480,"name":"Elementium Deathplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,0,238,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000}, -{"id":71481,"name":"Elementium Deathplate Chestguard","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":71482,"name":"Elementium Deathplate Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":71483,"name":"Elementium Deathplate Faceguard","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":71484,"name":"Elementium Deathplate Legguards","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":71485,"name":"Elementium Deathplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001}, -{"id":71486,"name":"Obsidian Arborweave Raiment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,311,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71487,"name":"Obsidian Arborweave Grips","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,202,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71488,"name":"Obsidian Arborweave Headpiece","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,301,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71489,"name":"Obsidian Arborweave Legguards","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,193,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71490,"name":"Obsidian Arborweave Spaulders","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,0,180,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002}, -{"id":71491,"name":"Obsidian Arborweave Handwraps","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,0,0,202,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71492,"name":"Obsidian Arborweave Helm","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,289,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71493,"name":"Obsidian Arborweave Legwraps","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,320,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71494,"name":"Obsidian Arborweave Tunic","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,291,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71495,"name":"Obsidian Arborweave Mantle","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,513,322,209,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004}, -{"id":71496,"name":"Obsidian Arborweave Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,202,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71497,"name":"Obsidian Arborweave Cover","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,0,0,0,246,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71498,"name":"Obsidian Arborweave Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,282,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71499,"name":"Obsidian Arborweave Vestment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,0,0,0,269,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71500,"name":"Obsidian Arborweave Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,513,322,0,0,231,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003}, -{"id":71501,"name":"Flamewaker's Tunic","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,0,291,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71502,"name":"Flamewaker's Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,0,231,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71503,"name":"Flamewaker's Headguard","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,278,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71504,"name":"Flamewaker's Legguards","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,316,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71505,"name":"Flamewaker's Spaulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,322,513,0,0,0,0,194,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005}, -{"id":71507,"name":"Firehawk Gloves","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,513,322,0,180,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71508,"name":"Firehawk Hood","icon":"inv_helmet_robe_raidmage_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,262,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71509,"name":"Firehawk Leggings","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71510,"name":"Firehawk Robes","icon":"inv_chest_robe_raidmage_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,254,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71511,"name":"Firehawk Mantle","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,227,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007}, -{"id":71512,"name":"Immolation Battleplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,269,303,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71513,"name":"Immolation Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,204,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71514,"name":"Immolation Helmet","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,232,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71515,"name":"Immolation Legplates","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,261,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71516,"name":"Immolation Pauldrons","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,238,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012}, -{"id":71517,"name":"Immolation Breastplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,689,420,311,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71518,"name":"Immolation Gloves","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,513,322,0,0,201,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71519,"name":"Immolation Headguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,689,400,273,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71520,"name":"Immolation Greaves","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,689,420,305,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71521,"name":"Immolation Mantle","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,513,322,259,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011}, -{"id":71522,"name":"Immolation Chestguard","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":71523,"name":"Immolation Handguards","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":71524,"name":"Immolation Faceguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":71525,"name":"Immolation Legguards","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":71526,"name":"Immolation Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013}, -{"id":71527,"name":"Handwraps of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,513,322,233,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71528,"name":"Cowl of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,689,400,289,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71529,"name":"Legwraps of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,689,420,329,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71530,"name":"Robes of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,689,420,295,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71531,"name":"Mantle of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,513,322,227,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009}, -{"id":71532,"name":"Gloves of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,513,322,180,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71533,"name":"Hood of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,269,0,0,0,283,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71534,"name":"Leggings of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71535,"name":"Vestment of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,689,420,254,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71536,"name":"Shoulderwraps of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,227,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010}, -{"id":71537,"name":"Dark Phoenix Tunic","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,261,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71538,"name":"Dark Phoenix Gloves","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,153,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71539,"name":"Dark Phoenix Helmet","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,259,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71540,"name":"Dark Phoenix Legguards","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,316,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71541,"name":"Dark Phoenix Spaulders","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,0,0,211,0,0,0,222,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006}, -{"id":71542,"name":"Erupting Volcanic Tunic","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,304,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71543,"name":"Erupting Volcanic Handwraps","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,225,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71544,"name":"Erupting Volcanic Faceguard","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,689,400,315,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71545,"name":"Erupting Volcanic Legwraps","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,301,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71546,"name":"Erupting Volcanic Mantle","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,222,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014}, -{"id":71547,"name":"Erupting Volcanic Cuirass","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,0,0,0,293,0,0,279,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71548,"name":"Erupting Volcanic Grips","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,231,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71549,"name":"Erupting Volcanic Helmet","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,0,299,0,0,0,248,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71550,"name":"Erupting Volcanic Legguards","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,329,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71551,"name":"Erupting Volcanic Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,322,513,0,0,220,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015}, -{"id":71552,"name":"Erupting Volcanic Hauberk","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,0,0,0,293,0,0,0,279,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71553,"name":"Erupting Volcanic Gloves","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,0,0,225,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71554,"name":"Erupting Volcanic Headpiece","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,689,400,0,0,192,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71555,"name":"Erupting Volcanic Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,0,0,0,315,0,0,0,249,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71556,"name":"Erupting Volcanic Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,221,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016}, -{"id":71557,"name":"Ranseur of Hatred","icon":"inv_polearm_2h_firelandsraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,460,689,0,0,0,320,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71558,"name":"Lava Bolt Crossbow","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,145,217,0,0,0,99,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71559,"name":"Spire of Scarlet Pain","icon":"inv_staff_41","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,0,233,349,0,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71560,"name":"Chelley's Sterilized Scalpel","icon":"inv_knife_1h_firelandsraid_d_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,296,197,0,0,133,0,0,0,0,128,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":654,"weaponDamageMax":1215,"weaponSpeed":1.5,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71561,"name":"Hide-Bound Chains","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,256,384,0,0,130,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71562,"name":"Obsidium Cleaver","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[197,0,296,0,0,119,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71563,"name":"Firebound Gorget","icon":"inv_jewelry_necklace_52","type":2,"stats":[195,0,384,0,0,0,0,0,130,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71564,"name":"Theck's Emberseal","icon":"inv_jewelry_ring_firelandsraid_02b","type":11,"stats":[195,0,384,0,0,130,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71567,"name":"Covenant of the Flame","icon":"inv_scroll_15","type":14,"rangedWeaponType":4,"stats":[0,145,217,0,0,0,99,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71568,"name":"Morningstar Shard","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,145,217,0,0,99,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71575,"name":"Trail of Embers","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,217,145,0,89,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71577,"name":"Singed Plume of Aviana","icon":"inv_feather_06","type":14,"rangedWeaponType":4,"stats":[0,0,217,145,105,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71579,"name":"Scorchvine Wand","icon":"inv_wand_1h_firelandsraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,217,145,98,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71580,"name":"Soulflame Vial","icon":"inv_misc_cat_trinket02","type":14,"rangedWeaponType":4,"stats":[0,0,217,145,0,0,0,89,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71587,"name":"Relic of the Elemental Lords","icon":"spell_fire_sealoffire","type":14,"rangedWeaponType":4,"stats":[145,0,217,0,0,0,94,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71590,"name":"Deathclutch Figurine","icon":"inv_misc_statue_09","type":14,"rangedWeaponType":4,"stats":[145,0,217,0,0,0,0,0,0,102,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"unique":true,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71592,"name":"Deflecting Star","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[110,0,217,0,0,0,0,0,73,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1410,"weaponDamageMax":2116,"weaponSpeed":2.1,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71593,"name":"Giantslicer","icon":"inv_thrown_1h_firelandsraid_d_01","type":14,"rangedWeaponType":5,"stats":[145,0,217,0,0,99,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1410,"weaponDamageMax":2116,"weaponSpeed":2.1,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71594,"name":"Balespider's Handwraps","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,513,322,0,180,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71595,"name":"Balespider's Hood","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,262,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71596,"name":"Balespider's Leggings","icon":"inv_pants_robe_raidwarlock_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71597,"name":"Balespider's Robes","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,254,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71598,"name":"Balespider's Mantle","icon":"inv_shoulder_robe_raidwarlock_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,209,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008}, -{"id":71599,"name":"Helmet of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,0,281,0,0,0,266,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71600,"name":"Battleplate of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,263,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71601,"name":"Gauntlets of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,209,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71602,"name":"Legplates of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,251,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71603,"name":"Pauldrons of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,223,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017}, -{"id":71604,"name":"Chestguard of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":71605,"name":"Handguards of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":71606,"name":"Faceguard of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":71607,"name":"Legguards of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":71608,"name":"Shoulderguards of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018}, -{"id":71610,"name":"Choker of the Vanquished Lord","icon":"inv_neck_firelands_03","type":2,"stats":[0,271,406,0,0,0,0,183,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71611,"name":"Arathar, the Eye of Flame","icon":"inv_bow_1h_firelandsraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,153,230,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1865,"weaponDamageMax":3465,"weaponSpeed":3,"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71612,"name":"Pauldrons of Roaring Flame","icon":"inv_plate_firelands_d_01","type":3,"armorType":4,"stats":[255,0,542,0,0,0,0,0,0,361,0,163,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71613,"name":"Majordomo's Chain of Office","icon":"inv_belt_robe_raidpriest_j_01","type":8,"armorType":1,"stats":[0,0,542,341,0,0,0,243,0,0,0,206,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71614,"name":"Fingers of Incineration","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,542,341,0,0,243,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71615,"name":"Ko'gun, Hammer of the Firelord","icon":"inv_mace_1h_firelandsraid_d_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,312,208,151,0,0,118,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":484,"weaponDamageMax":899,"weaponSpeed":2.1,"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71616,"name":"Crown of Flame","icon":"inv_helm_circlet_firelands_d_01","type":1,"armorType":3,"stats":[0,0,730,426,319,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71633,"name":"Aella's Bottle","icon":"inv_alchemy_crystalvial","type":12,"stats":[0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":4,"unique":true}, -{"id":71640,"name":"Riplimb's Lost Collar","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,282,454,0,0,0,216,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}]}, -{"id":71641,"name":"Riplimb's Lost Collar","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,322,513,0,0,0,244,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"soldBy":{"npcId":54402,"npcName":"Lurah Wrathvine"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}]}, -{"id":71774,"name":"Smoldering Censer of Purity","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,440,349,0,0,213,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":2.9,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71775,"name":"Smoldering Censer of Purity","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,310,0,0,186,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":640,"weaponDamageMax":960,"weaponSpeed":2.9,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71776,"name":"Eye of Purification","icon":"inv_axe_1h_firelandsraid_d_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,262,175,131,0,0,0,0,0,0,91,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":463,"weaponDamageMax":861,"weaponSpeed":2.4,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71777,"name":"Eye of Purification","icon":"inv_axe_1h_firelandsraid_d_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,296,197,148,0,0,0,0,0,0,103,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":523,"weaponDamageMax":972,"weaponSpeed":2.4,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71778,"name":"Avool's Incendiary Shanker","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,141,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":784,"weaponDamageMax":1458,"weaponSpeed":1.8,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71779,"name":"Avool's Incendiary Shanker","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,125,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71780,"name":"Zoid's Firelit Greatsword","icon":"inv_sword_2h_firelandsraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[388,0,611,0,0,0,284,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71781,"name":"Zoid's Firelit Greatsword","icon":"inv_sword_2h_firelandsraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[440,0,689,0,0,0,320,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2418,"weaponDamageMax":3628,"weaponSpeed":3.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71782,"name":"Shatterskull Bonecrusher","icon":"inv_mace_1h_firelandsraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,175,262,0,0,0,123,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71783,"name":"Shatterskull Bonecrusher","icon":"inv_mace_1h_firelandsraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,197,296,0,0,0,139,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1133,"weaponDamageMax":2105,"weaponSpeed":2.6,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71784,"name":"Firethorn Mindslicer","icon":"inv_sword_1h_firelandsraid_d_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,296,197,0,100,150,0,0,0,0,0,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":741,"weaponDamageMax":1377,"weaponSpeed":1.7,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71785,"name":"Firethorn Mindslicer","icon":"inv_sword_1h_firelandsraid_d_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,262,175,0,88,133,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":656,"weaponDamageMax":1220,"weaponSpeed":1.7,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71786,"name":"Entrail Disgorger","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,109,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":697,"weaponDamageMax":1046,"weaponSpeed":1.4,"ilvl":391,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71787,"name":"Entrail Disgorger","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,97,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":927,"weaponSpeed":1.4,"ilvl":378,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Beth'tilac"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Lord Rhyolith"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Alysrazor"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Shannox"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Majordomo Staghelm"}},{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71797,"name":"Sho'ravon, Greatstaff of Annihilation","icon":"inv_stave_2h_firelandsraid_d_03_stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,0,0,249,0,0,0,0,357,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2060,"weaponDamageMax":3091,"weaponSpeed":2.9,"ilvl":397,"phase":3,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71798,"name":"Sho'ravon, Greatstaff of Annihilation","icon":"inv_stave_2h_firelandsraid_d_03_stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,0,0,218,0,0,0,0,316,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":560,"weaponDamageMax":840,"weaponSpeed":2.4,"ilvl":384,"phase":3,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Ragnaros"}}]}, -{"id":71980,"name":"Lavaquake Legwraps","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,319,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":101921}}]}, -{"id":71981,"name":"World Mender's Pants","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,303,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":101920}}]}, -{"id":71982,"name":"Pyrium Legplates of Purified Evil","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,730,426,323,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101924}}]}, -{"id":71983,"name":"Unstoppable Destroyer's Legplates","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,315,0,0,0,264,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101925}}]}, -{"id":71984,"name":"Foundations of Courage","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,319,0,260,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101928}}]}, -{"id":71985,"name":"Bladeshadow Leggings","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,308,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101935}}]}, -{"id":71986,"name":"Leggings of Nature's Champion","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,426,296,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101933}}]}, -{"id":71987,"name":"Rended Earth Leggings","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,0,299,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101936}}]}, -{"id":71988,"name":"Deathscale Leggings","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,0,0,0,300,0,0,0,279,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101934}}]}, -{"id":71989,"name":"Bracers of Unconquered Power","icon":"inv_bracer_robe_raidmage_k_01","type":6,"armorType":1,"stats":[0,0,406,231,0,0,0,171,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":101923}}]}, -{"id":71990,"name":"Dreamwraps of the Light","icon":"inv_bracer_robe_raidpriest_k_01","type":6,"armorType":1,"stats":[0,0,406,231,159,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":11,"spellId":101922}}]}, -{"id":71991,"name":"Soul Redeemer Bracers","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,231,173,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101929}}]}, -{"id":71992,"name":"Bracers of Destructive Strength","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[231,0,406,0,0,0,175,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101931}}]}, -{"id":71993,"name":"Titanguard Wristplates","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[231,0,406,0,0,0,0,0,0,0,169,147,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":2,"spellId":101932}}]}, -{"id":71994,"name":"Bladeshadow Wristguards","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,231,406,0,0,117,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101940}}]}, -{"id":71995,"name":"Bracers of Flowing Serenity","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,231,167,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101937}}]}, -{"id":71996,"name":"Bracers of the Hunter-Killer","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,231,406,0,0,0,161,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101941}}]}, -{"id":71997,"name":"Thundering Deathscale Wristguards","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,231,177,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"crafted":{"profession":8,"spellId":101939}}]}, -{"id":72304,"name":"Ruthless Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72305,"name":"Ruthless Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"stats":[0,254,381,0,0,0,169,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":72306,"name":"Ruthless Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,254,381,0,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":72307,"name":"Ruthless Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,254,381,0,0,0,0,0,169,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":72308,"name":"Ruthless Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,254,381,0,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":72309,"name":"Ruthless Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72310,"name":"Ruthless Gladiator's Relic of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,143,215,0,0,0,95,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1,7]}, -{"id":72311,"name":"Ruthless Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,254,381,0,0,0,169,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":72312,"name":"Ruthless Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,254,381,0,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":72313,"name":"Ruthless Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_02","type":8,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72314,"name":"Ruthless Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_02","type":8,"armorType":1,"stats":[0,0,508,319,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72315,"name":"Ruthless Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_02","type":8,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72316,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72317,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72318,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72319,"name":"Ruthless Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpwarlock_c_02","type":6,"armorType":1,"stats":[0,0,381,254,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72320,"name":"Ruthless Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_c_02","type":6,"armorType":1,"stats":[0,0,381,254,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72321,"name":"Ruthless Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_02","type":6,"armorType":1,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":72322,"name":"Ruthless Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[0,0,381,254,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72323,"name":"Ruthless Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"stats":[0,0,381,254,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72324,"name":"Ruthless Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":72325,"name":"Ruthless Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,381,254,0,0,0,169,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72326,"name":"Ruthless Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,381,254,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72327,"name":"Ruthless Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":72328,"name":"Ruthless Gladiator's Relic of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,215,143,0,0,95,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":72329,"name":"Ruthless Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,381,254,0,0,169,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72330,"name":"Ruthless Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,381,254,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":72331,"name":"Ruthless Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":72332,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72333,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[319,0,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72334,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72335,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[415,0,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72336,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Ruthless Gladiator's Desecration","setId":924,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72337,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,319,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":72338,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":72339,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,415,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":72340,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":72341,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Sanctuary","setId":922}, -{"id":72342,"name":"Ruthless Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72343,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72344,"name":"Ruthless Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72345,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":72346,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":72347,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":72348,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,683,415,264,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":72349,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Refuge","setId":923}, -{"id":72350,"name":"Ruthless Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72351,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72352,"name":"Ruthless Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,381,254,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":72353,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":72354,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,683,395,0,0,0,244,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":72355,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,683,415,0,0,0,0,0,0,0,264,0,0,0,0,304,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":72356,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":72357,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Ruthless Gladiator's Wildhide","setId":921}, -{"id":72358,"name":"Ruthless Gladiator's Relic of Salvation","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,215,143,95,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":72359,"name":"Ruthless Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72360,"name":"Ruthless Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72361,"name":"Ruthless Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72362,"name":"Ruthless Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,319,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72363,"name":"Ruthless Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,319,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72364,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,319,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72365,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,319,508,0,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72366,"name":"Ruthless Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,254,381,0,0,0,0,169,0,0,0,0,0,0,0,0,169,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72367,"name":"Ruthless Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,254,381,0,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":72368,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":72369,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,319,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":72370,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":72371,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,415,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":72372,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Ruthless Gladiator's Pursuit","setId":920}, -{"id":72373,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,508,319,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72374,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72375,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72376,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72377,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,0,0,0,0,206,0,0,0,0,226,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Ruthless Gladiator's Regalia","setId":919,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72378,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72379,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[319,0,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72380,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72381,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[415,0,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72382,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Vindication","setId":917,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72383,"name":"Ruthless Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72384,"name":"Ruthless Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72385,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72386,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72387,"name":"Ruthless Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,381,254,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72388,"name":"Ruthless Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72389,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,683,415,264,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72390,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72391,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72392,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72393,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Ruthless Gladiator's Redemption","setId":918,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72394,"name":"Ruthless Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_02","type":8,"armorType":4,"stats":[319,0,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72395,"name":"Ruthless Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_02","type":8,"armorType":4,"stats":[319,0,508,0,0,0,0,0,0,0,0,206,0,0,0,0,226,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72396,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[319,0,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72397,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[319,0,508,0,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72398,"name":"Ruthless Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_02","type":6,"armorType":4,"stats":[254,0,381,0,0,0,0,0,169,0,0,0,0,0,0,0,169,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72399,"name":"Ruthless Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_02","type":6,"armorType":4,"stats":[254,0,381,0,0,0,0,169,0,0,0,0,0,0,0,0,169,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72400,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":72401,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":72402,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":72403,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,683,415,264,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":72404,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Investiture","setId":916}, -{"id":72405,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":72406,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,244,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":72407,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,0,0,0,0,264,0,0,0,0,304,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":72408,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":72409,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Ruthless Gladiator's Raiment","setId":915}, -{"id":72410,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":72411,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":72412,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":72413,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":72414,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":72415,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":72416,"name":"Ruthless Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,319,483,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72417,"name":"Ruthless Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,319,483,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72418,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,319,508,0,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72419,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,319,508,0,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72420,"name":"Ruthless Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,254,362,0,0,0,0,169,0,0,0,0,0,0,0,0,169,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72421,"name":"Ruthless Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,254,362,0,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":72422,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72423,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,319,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72424,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72425,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,415,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72426,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Ruthless Gladiator's Vestments","setId":914,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72427,"name":"Ruthless Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72428,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72429,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72430,"name":"Ruthless Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,381,254,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72431,"name":"Ruthless Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,381,254,169,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72432,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,683,415,264,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72433,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72434,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72435,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72436,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,508,319,206,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Wartide","setId":913,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72437,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72438,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,319,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72439,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72440,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,415,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72441,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Earthshaker","setId":912,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72442,"name":"Ruthless Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72443,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72444,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,508,319,0,0,206,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72445,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,683,395,0,0,0,244,0,0,0,0,0,0,0,0,304,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72446,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,683,415,0,0,0,0,0,0,0,264,0,0,0,0,304,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72447,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,508,319,0,0,0,206,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Ruthless Gladiator's Thunderfist","setId":911,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72448,"name":"Ruthless Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72449,"name":"Ruthless Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72450,"name":"Ruthless Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72451,"name":"Ruthless Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"stats":[254,0,381,0,0,0,0,169,0,0,0,0,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72452,"name":"Ruthless Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"stats":[254,0,381,0,0,0,0,0,0,0,0,169,0,0,0,0,169,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72453,"name":"Ruthless Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[254,0,381,0,0,0,0,0,169,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72454,"name":"Ruthless Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[254,0,381,0,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":72455,"name":"Ruthless Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4}, -{"id":72456,"name":"Ruthless Gladiator's Relic of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[143,0,215,0,0,0,95,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72457,"name":"Ruthless Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[254,0,381,0,0,0,169,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":72458,"name":"Ruthless Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[254,0,381,0,0,169,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":72459,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,508,319,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72460,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72461,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72462,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72463,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,0,0,0,0,206,0,0,0,0,226,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Ruthless Gladiator's Felshroud","setId":910,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72464,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72465,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[319,0,508,0,0,206,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72466,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,0,0,0,244,0,0,0,0,304,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72467,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[415,0,683,0,0,0,0,264,0,0,0,0,0,0,0,0,304,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72468,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,0,206,0,0,0,0,0,0,0,226,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Ruthless Gladiator's Battlegear","setId":909,"sources":[{"soldBy":{"npcId":54659,"npcName":"Blood Guard Zar'shi","zoneId":1637}}]}, -{"id":72798,"name":"Cord of Lost Hope","icon":"inv_belt_leather_dungeonleather_c_05","type":8,"armorType":2,"stats":[0,0,454,281,0,0,0,210,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72799,"name":"Dead End Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,281,454,0,0,161,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72800,"name":"Gauntlets of Temporal Interference","icon":"inv_glove_plate_dungeonplate_c_06","type":7,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,211,0,157,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72801,"name":"Breastplate of Sorrow","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[366,0,611,0,0,0,290,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72802,"name":"Time Traveler's Leggings","icon":"inv_pants_robe_dungeonrobe_c_05","type":9,"armorType":1,"stats":[0,0,611,366,0,0,264,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72803,"name":"Girdle of Lost Heroes","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,0,135,228,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72804,"name":"Dragonshrine Scepter","icon":"inv_mace_1h_430future_c_01","type":13,"weaponType":4,"handType":2,"stats":[174,0,262,0,0,0,113,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72805,"name":"Gloves of the Hollow","icon":"inv_gauntlets_leather_dungeonleather_c_05","type":7,"armorType":2,"stats":[0,281,454,0,0,212,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72806,"name":"Echoing Headguard","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,0,611,346,278,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72807,"name":"Waistguard of Lost Time","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[0,0,454,281,219,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Shared"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Shared"}}]}, -{"id":72808,"name":"Jaina's Staff","icon":"inv_stave_2h_430future_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,406,0,0,213,0,0,0,0,306,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Jaina"}}]}, -{"id":72809,"name":"Ward of Incantations","icon":"inv_shield_430future_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,226,0,0,0,129,0,0,0,165,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Jaina"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Jaina"}}]}, -{"id":72810,"name":"Windrunner's Bow","icon":"bow_1h_430future_c_01","type":14,"rangedWeaponType":1,"stats":[0,127,192,0,0,0,0,95,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1510,"weaponDamageMax":2805,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Sylvanas"}}]}, -{"id":72811,"name":"Cloak of the Banshee Queen","icon":"inv_cape_430dungeon_c_04","type":4,"stats":[0,226,341,0,0,0,129,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Sylvanas"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Sylvanas"}}]}, -{"id":72812,"name":"Crescent Moon","icon":"inv_axe_1h_430nightelf_c_02","type":13,"weaponType":1,"handType":1,"stats":[0,0,262,174,91,0,0,0,0,0,0,131,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Tyrande"}}]}, -{"id":72813,"name":"Whisperwind Robes","icon":"inv_chest_robe_dungeonrobe_c_05","type":5,"armorType":1,"stats":[0,0,611,366,229,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Tyrande"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Tyrande"}}]}, -{"id":72814,"name":"Axe of the Tauren Chieftains","icon":"inv_axe_2h_430future_c_01","type":13,"weaponType":1,"handType":4,"stats":[406,0,611,0,0,232,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Baine"}}]}, -{"id":72815,"name":"Bloodhoof Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[366,0,611,0,0,0,0,0,0,230,263,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Baine","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Jaina","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Tyrande","category":"Echo of Baine"}},{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Echo of Sylvanas","category":"Echo of Baine"}}]}, -{"id":72816,"name":"Distortion Greaves","icon":"inv_pants_mail_dungeonmail_c_05","type":9,"armorType":3,"stats":[0,0,611,366,0,0,265,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72817,"name":"Time Altered Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[0,0,611,366,259,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72818,"name":"Breastplate of Tarnished Bronze","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[366,0,611,0,0,0,0,0,0,258,0,243,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72819,"name":"Chrono Boots","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[281,0,454,0,0,0,0,0,186,198,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72820,"name":"Crown of Epochs","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[346,0,611,0,0,252,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72821,"name":"Temporal Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[281,0,454,0,0,206,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72822,"name":"Jagged Edge of Time","icon":"inv_knife_1h_430future_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,174,262,0,0,0,0,118,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72823,"name":"Timeway Headgear","icon":"inv_helmet_leather_dungeonleather_c_05","type":1,"armorType":2,"stats":[0,0,611,346,0,0,221,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72824,"name":"Time Twisted Tunic","icon":"inv_chest_leather_dungeonleather_c_05","type":5,"armorType":2,"stats":[0,366,611,0,0,0,0,268,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72825,"name":"Mantle of Time","icon":"inv_shoulder_robe_dungeonrobe_c_05","type":3,"armorType":1,"stats":[0,0,454,281,196,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72826,"name":"Robes of Fate","icon":"inv_chest_robe_dungeonrobe_c_05","type":5,"armorType":1,"stats":[0,0,611,366,0,210,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72827,"name":"Gavel of Peroth'arn","icon":"inv_mace_1h_430nightelf_c_02","type":13,"weaponType":4,"handType":2,"stats":[174,0,262,0,0,0,0,0,0,0,131,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72828,"name":"Trickster's Edge","icon":"inv_axe_1h_430nightelf_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,174,262,0,0,0,128,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72829,"name":"Orb of the First Satyrs","icon":"inv_offhand_1h_430nightelf_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,226,0,167,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72830,"name":"Peroth'arn's Belt","icon":"inv_belt_leather_dungeonleather_c_05","type":8,"armorType":2,"stats":[0,281,454,0,0,0,178,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72831,"name":"Horned Band","icon":"inv_jewelry_ring_105","type":11,"stats":[0,0,341,226,0,0,173,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72832,"name":"Girdle of the Queen's Champion","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[281,0,454,0,0,208,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Peroth'arn"}}]}, -{"id":72833,"name":"Scepter of Azshara","icon":"inv_mace_1h_430future_c_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,262,174,131,0,91,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72834,"name":"Breastplate of the Queen's Guard","icon":"inv_chest_mail_dungeonmail_c_05","type":5,"armorType":3,"stats":[0,366,611,0,0,199,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72835,"name":"Puppeteer's Pantaloons","icon":"inv_pants_leather_dungeonleather_c_05","type":9,"armorType":2,"stats":[0,366,611,0,0,213,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72836,"name":"Slippers of Wizardry","icon":"inv_boots_robe_dungeonrobe_c_05","type":10,"armorType":1,"stats":[0,0,454,281,0,176,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72837,"name":"Queen's Boon","icon":"inv_misc_ring_generic_3","type":11,"stats":[226,0,341,0,0,0,0,0,0,171,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72838,"name":"Cloak of the Royal Protector","icon":"inv_cape_430dungeon_c_04","type":4,"stats":[226,0,341,0,0,0,0,169,0,0,0,122,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Queen Azshara"}}]}, -{"id":72839,"name":"Cowl of Highborne Sorcerors","icon":"inv_helm_robe_dungeonrobe_c_05","type":1,"armorType":1,"stats":[0,0,611,346,0,0,232,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72840,"name":"Spaulders of Eternity","icon":"inv_shoulder_leather_dungeonleather_c_05","type":3,"armorType":2,"stats":[0,0,454,281,0,0,206,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72841,"name":"Demonsbane Chestguard","icon":"inv_chest_mail_dungeonmail_c_05","type":5,"armorType":3,"stats":[0,0,611,366,0,0,245,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72842,"name":"Annihilan Helm","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[346,0,611,0,0,0,0,0,0,0,260,216,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72843,"name":"Helm of Power","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[0,0,611,346,0,0,0,215,0,0,0,266,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72844,"name":"Pit Lord's Destroyer","icon":"inv_mace_2h_430nightelf_c_01","type":13,"weaponType":4,"handType":4,"stats":[406,0,611,0,0,0,0,0,265,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2142,"weaponDamageMax":3214,"weaponSpeed":3.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72845,"name":"Mannoroth's Signet","icon":"inv_jewelry_ring_107","type":11,"stats":[0,226,341,0,0,0,154,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72846,"name":"Thornwood Staff","icon":"inv_stave_2h_430nightelf_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,406,611,0,0,0,272,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72847,"name":"Helm of Thorns","icon":"inv_helmet_leather_dungeonleather_c_05","type":1,"armorType":2,"stats":[0,346,611,0,0,269,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72848,"name":"Legguards of the Legion","icon":"inv_pants_mail_dungeonmail_c_05","type":9,"armorType":3,"stats":[0,366,611,0,0,0,216,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72849,"name":"Wayfinder Boots","icon":"inv_boots_leather_dungeonleather_c_05","type":10,"armorType":2,"stats":[0,281,454,0,0,179,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":72850,"name":"Surestride Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,454,281,0,0,0,167,0,0,0,204,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":72851,"name":"Chillbane Belt","icon":"inv_belt_robe_dungeonrobe_c_05","type":8,"armorType":1,"stats":[0,0,454,281,0,223,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":72852,"name":"Archivist's Gloves","icon":"inv_glove_robe_dungeonrobe_c_05","type":7,"armorType":1,"stats":[0,0,454,281,0,218,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30097,"name":"Archival Purposes"}}]}, -{"id":72853,"name":"Arcurion Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[366,0,611,0,0,0,0,279,0,0,0,210,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":72854,"name":"Iceward Cloak","icon":"inv_cape_430dungeon_c_04","type":4,"stats":[226,0,341,0,0,0,0,0,0,0,165,129,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":72855,"name":"Corrupted Carapace","icon":"inv_shield_430oldgod_c_01","type":13,"weaponType":7,"handType":3,"stats":[226,0,341,0,0,0,0,0,0,129,0,165,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":72856,"name":"Pauldrons of Midnight Whispers","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,0,454,281,214,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":72857,"name":"Leggings of Blinding Speed","icon":"inv_pants_leather_dungeonleather_c_05","type":9,"armorType":2,"stats":[0,0,611,366,284,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":72858,"name":"Safeguard Gloves","icon":"inv_glove_robe_dungeonrobe_c_05","type":7,"armorType":1,"stats":[0,0,454,281,164,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30103,"name":"To Wyrmrest!"}}]}, -{"id":72859,"name":"Dawnslayer Helm","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,346,611,0,0,165,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":72860,"name":"Mandible of the Old Ones","icon":"inv_knife_1h_430oldgod_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,174,262,0,0,113,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":1004,"weaponSpeed":1.4,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":72861,"name":"Pauldrons of the Dragonblight","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,169,206,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72862,"name":"Fanged Tentacle","icon":"inv_knife_1h_430oldgod_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,262,174,0,116,116,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72863,"name":"Stalk of Corruption","icon":"inv_stave_2h_430oldgod_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,406,0,0,0,265,0,0,0,276,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72864,"name":"Pauldrons of Conviction","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[0,0,454,281,185,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72865,"name":"Mantle of False Virtue","icon":"inv_shoulder_robe_dungeonrobe_c_05","type":3,"armorType":1,"stats":[0,0,454,281,0,184,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72866,"name":"Treachery's Bite","icon":"inv_sword_1h_430oldgod_c_01","type":13,"weaponType":9,"handType":2,"stats":[174,0,262,0,0,116,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72867,"name":"Clattering Claw","icon":"inv_hand_1h_430oldgod_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,174,262,0,0,0,128,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1004,"weaponDamageMax":1865,"weaponSpeed":2.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72868,"name":"Desecrated Shoulderguards","icon":"inv_shoulder_leather_dungeonleather_c_05","type":3,"armorType":2,"stats":[0,281,454,0,0,209,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72869,"name":"Dragonsmaw Blaster","icon":"inv_firearm_2h_rifle_430future_c_01","type":14,"rangedWeaponType":3,"stats":[0,127,192,0,0,0,83,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1510,"weaponDamageMax":2805,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72870,"name":"Betrayer's Pauldrons","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,281,454,0,0,182,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72871,"name":"Crescent Wand","icon":"inv_wand_1h_430nightelf_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,192,127,67,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1177,"weaponDamageMax":2187,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30097,"name":"Archival Purposes"}}]}, -{"id":72872,"name":"Time Strand Gauntlets","icon":"inv_glove_plate_dungeonplate_c_06","type":7,"armorType":4,"stats":[281,0,454,0,0,164,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30097,"name":"Archival Purposes"}}]}, -{"id":72873,"name":"Bronze Blaster","icon":"inv_firearm_2h_rifle_430future_c_01","type":14,"rangedWeaponType":3,"stats":[127,0,192,0,0,0,0,0,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1510,"weaponDamageMax":2805,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30096,"name":"Murozond"}}]}, -{"id":72874,"name":"Boots of the Forked Road","icon":"inv_boots_leather_dungeonleather_c_05","type":10,"armorType":2,"stats":[0,0,454,281,156,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30096,"name":"Murozond"}}]}, -{"id":72875,"name":"Time Twister's Gauntlets","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,281,454,0,0,193,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30096,"name":"Murozond"}}]}, -{"id":72876,"name":"Ironfeather Longbow","icon":"inv_1h_430nightelf_c_01","type":14,"rangedWeaponType":1,"stats":[127,0,192,0,0,91,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1510,"weaponDamageMax":2805,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30101,"name":"The Path to the Dragon Soul"}}]}, -{"id":72877,"name":"Chain of the Demon Hunter","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,0,454,281,165,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30101,"name":"The Path to the Dragon Soul"}}]}, -{"id":72878,"name":"Demonic Skull","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,226,129,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30101,"name":"The Path to the Dragon Soul"}}]}, -{"id":72879,"name":"Boots of the Treacherous Path","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[0,0,454,281,147,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30101,"name":"The Path to the Dragon Soul"}}]}, -{"id":72880,"name":"Alurmi's Ring","icon":"inv_jewelry_ring_100","type":11,"stats":[0,226,341,0,0,0,0,171,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"quest":{"id":30104,"name":"Documenting the Timeways"}}]}, -{"id":72881,"name":"Treads of the Past","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[281,0,454,0,0,0,191,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30104,"name":"Documenting the Timeways"}}]}, -{"id":72882,"name":"Chronicler's Chestguard","icon":"inv_chest_leather_dungeonleather_c_05","type":5,"armorType":2,"stats":[0,0,611,366,284,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30104,"name":"Documenting the Timeways"}}]}, -{"id":72883,"name":"Historian's Sash","icon":"inv_belt_robe_dungeonrobe_c_05","type":8,"armorType":1,"stats":[0,0,454,281,210,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30104,"name":"Documenting the Timeways"}}]}, -{"id":72884,"name":"Writhing Wand","icon":"inv_wand_1h_430oldgod_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,192,127,0,71,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1177,"weaponDamageMax":2187,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30105,"name":"The Twilight Prophet"}}]}, -{"id":72886,"name":"Thrall's Gratitude","icon":"inv_misc_ring_generic_4","type":11,"stats":[226,0,341,0,0,0,0,126,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"quest":{"id":30105,"name":"The Twilight Prophet"}}]}, -{"id":72887,"name":"Cinch of the World Shaman","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,281,454,0,0,0,153,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30103,"name":"To Wyrmrest!"}}]}, -{"id":72888,"name":"Ring of the Loyal Companion","icon":"inv_jewelry_ring_106","type":11,"stats":[0,0,341,226,0,169,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"quest":{"id":30103,"name":"To Wyrmrest!"}}]}, -{"id":72897,"name":"Arrow of Time","icon":"inv_ammo_arrow_06","type":12,"stats":[0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Murozond"}}]}, -{"id":72898,"name":"Foul Gift of the Demon Lord","icon":"spell_fire_felflamering","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72899,"name":"Varo'then's Brooch","icon":"inv_relics_warpring","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}]}, -{"id":72900,"name":"Veil of Lies","icon":"inv_fabric_ebonweave","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":72901,"name":"Rosary of Light","icon":"inv_jewelry_necklace_03","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Archbishop Benedictus"}}]}, -{"id":73412,"name":"Cataclysmic Gladiator's War Edge","icon":"inv_thrown_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":5,"stats":[172,0,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1523,"weaponDamageMax":2286,"weaponSpeed":1.9,"ilvl":410,"phase":4,"quality":4}, -{"id":73413,"name":"Cataclysmic Gladiator's Shield Wall","icon":"inv_shield_pvpcataclysms3_c_01","type":13,"weaponType":7,"handType":3,"stats":[306,0,459,0,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4}, -{"id":73414,"name":"Cataclysmic Gladiator's Slicer","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1546,"weaponDamageMax":2320,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73415,"name":"Cataclysmic Gladiator's Bonecracker","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73416,"name":"Cataclysmic Gladiator's Hacker","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73417,"name":"Cataclysmic Gladiator's Baton of Light","icon":"inv_wand_1h_pvpcataclysms3_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,259,172,115,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1884,"weaponDamageMax":3499,"weaponSpeed":1.9,"ilvl":410,"phase":4,"quality":4}, -{"id":73418,"name":"Cataclysmic Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73419,"name":"Cataclysmic Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73420,"name":"Cataclysmic Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73421,"name":"Cataclysmic Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73422,"name":"Cataclysmic Gladiator's Shanker","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1070,"weaponDamageMax":1606,"weaponSpeed":1.8,"ilvl":410,"phase":4,"quality":4}, -{"id":73423,"name":"Cataclysmic Gladiator's Pike","icon":"inv_polearm_2h_pvpcataclysms3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73424,"name":"Cataclysmic Gladiator's Energy Staff","icon":"inv_staff_2h_pvpcataclysms3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,549,366,0,0,0,0,0,0,0,0,0,3145,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1604,"weaponDamageMax":2406,"weaponSpeed":2,"ilvl":410,"phase":4,"quality":4}, -{"id":73425,"name":"Cataclysmic Gladiator's Redoubt","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,306,204,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4}, -{"id":73426,"name":"Cataclysmic Gladiator's Gavel","icon":"inv_mace_1h_pvpcataclysms3_c_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,353,235,0,0,157,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":832,"weaponDamageMax":1547,"weaponSpeed":1.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73427,"name":"Cataclysmic Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvpcataclysms3_c_01","type":14,"rangedWeaponType":3,"stats":[0,172,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2406,"weaponDamageMax":3609,"weaponSpeed":3,"ilvl":410,"phase":4,"quality":4}, -{"id":73428,"name":"Cataclysmic Gladiator's Shiv","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":728,"weaponDamageMax":1353,"weaponSpeed":1.4,"ilvl":410,"phase":4,"quality":4}, -{"id":73429,"name":"Cataclysmic Gladiator's Staff","icon":"inv_staff_2h_pvpcataclysms3_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1604,"weaponDamageMax":2406,"weaponSpeed":2,"ilvl":410,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73430,"name":"Cataclysmic Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvpcataclysms3_c_01","type":14,"rangedWeaponType":2,"stats":[0,172,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2406,"weaponDamageMax":3609,"weaponSpeed":3,"ilvl":410,"phase":4,"quality":4}, -{"id":73431,"name":"Cataclysmic Gladiator's Touch of Defeat","icon":"inv_wand_38","type":14,"rangedWeaponType":6,"stats":[0,0,259,172,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1884,"weaponDamageMax":3499,"weaponSpeed":1.9,"ilvl":410,"phase":4,"quality":4}, -{"id":73432,"name":"Cataclysmic Gladiator's Reprieve","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,306,204,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4}, -{"id":73433,"name":"Cataclysmic Gladiator's Battle Staff","icon":"inv_staff_2h_pvpcataclysms3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,549,0,0,366,0,0,0,0,0,0,0,3145,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1604,"weaponDamageMax":2406,"weaponSpeed":2,"ilvl":410,"phase":4,"quality":4}, -{"id":73434,"name":"Cataclysmic Gladiator's Spellblade","icon":"inv_knife_1h_pvpcataclysms3_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,353,235,0,0,157,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":832,"weaponDamageMax":1547,"weaponSpeed":1.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73435,"name":"Cataclysmic Gladiator's Barrier","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,306,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4}, -{"id":73436,"name":"Cataclysmic Gladiator's Endgame","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,306,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4}, -{"id":73437,"name":"Cataclysmic Gladiator's Longbow","icon":"inv_bow_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":1,"stats":[0,172,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2406,"weaponDamageMax":3609,"weaponSpeed":3,"ilvl":410,"phase":4,"quality":4}, -{"id":73438,"name":"Cataclysmic Gladiator's Hatchet","icon":"inv_thrown_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":5,"stats":[0,172,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1523,"weaponDamageMax":2286,"weaponSpeed":1.9,"ilvl":410,"phase":4,"quality":4}, -{"id":73439,"name":"Cataclysmic Gladiator's Quickblade","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73440,"name":"Cataclysmic Gladiator's Pummeler","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73441,"name":"Cataclysmic Gladiator's Cleaver","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73442,"name":"Cataclysmic Gladiator's Greatsword","icon":"inv_sword_2h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73443,"name":"Cataclysmic Gladiator's Bonegrinder","icon":"inv_mace_2h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73444,"name":"Cataclysmic Gladiator's Decapitator","icon":"inv_axe_2h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4}, -{"id":73445,"name":"Cataclysmic Gladiator's War Edge","icon":"inv_thrown_1h_pvp410_c_01","type":14,"rangedWeaponType":5,"stats":[153,0,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1350,"weaponDamageMax":2025,"weaponSpeed":1.9,"ilvl":397,"phase":4,"quality":4}, -{"id":73446,"name":"Cataclysmic Gladiator's Shield Wall","icon":"inv_shield_pvpcataclysms3_c_01","type":13,"weaponType":7,"handType":3,"stats":[271,0,406,0,0,0,181,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,12525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":73447,"name":"Cataclysmic Gladiator's Slicer","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[208,0,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1370,"weaponDamageMax":2055,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73448,"name":"Cataclysmic Gladiator's Bonecracker","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[208,0,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73449,"name":"Cataclysmic Gladiator's Hacker","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[208,0,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73450,"name":"Cataclysmic Gladiator's Baton of Light","icon":"inv_wand_1h_pvpcataclysms3_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,230,153,102,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1669,"weaponDamageMax":3100,"weaponSpeed":1.9,"ilvl":397,"phase":4,"quality":4}, -{"id":73451,"name":"Cataclysmic Gladiator's Left Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[208,0,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73452,"name":"Cataclysmic Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[208,0,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73453,"name":"Cataclysmic Gladiator's Left Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":3,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73454,"name":"Cataclysmic Gladiator's Right Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":1,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73455,"name":"Cataclysmic Gladiator's Shanker","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":948,"weaponDamageMax":1423,"weaponSpeed":1.8,"ilvl":397,"phase":4,"quality":4}, -{"id":73456,"name":"Cataclysmic Gladiator's Pike","icon":"inv_polearm_2h_pvpcataclysms3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,486,730,0,0,0,324,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73457,"name":"Cataclysmic Gladiator's Energy Staff","icon":"inv_staff_2h_pvpcataclysms3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,486,324,0,0,0,0,0,0,0,0,0,2786,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1421,"weaponDamageMax":2132,"weaponSpeed":2,"ilvl":397,"phase":4,"quality":4}, -{"id":73458,"name":"Cataclysmic Gladiator's Redoubt","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,406,271,181,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,12525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":73459,"name":"Cataclysmic Gladiator's Gavel","icon":"inv_mace_1h_pvpcataclysms3_c_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,312,208,0,0,139,0,0,0,0,0,0,0,2783,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":737,"weaponDamageMax":1370,"weaponSpeed":1.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73460,"name":"Cataclysmic Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvpcataclysms3_c_01","type":14,"rangedWeaponType":3,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2131,"weaponDamageMax":3197,"weaponSpeed":3,"ilvl":397,"phase":4,"quality":4}, -{"id":73461,"name":"Cataclysmic Gladiator's Shiv","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":645,"weaponDamageMax":1199,"weaponSpeed":1.4,"ilvl":397,"phase":4,"quality":4}, -{"id":73462,"name":"Cataclysmic Gladiator's Staff","icon":"inv_staff_2h_pvpcataclysms3_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,486,730,0,0,0,324,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1421,"weaponDamageMax":2132,"weaponSpeed":2,"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73463,"name":"Cataclysmic Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvpcataclysms3_c_01","type":14,"rangedWeaponType":2,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2131,"weaponDamageMax":3197,"weaponSpeed":3,"ilvl":397,"phase":4,"quality":4}, -{"id":73464,"name":"Cataclysmic Gladiator's Touch of Defeat","icon":"inv_wand_38","type":14,"rangedWeaponType":6,"stats":[0,0,230,153,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1669,"weaponDamageMax":3100,"weaponSpeed":1.9,"ilvl":397,"phase":4,"quality":4}, -{"id":73465,"name":"Cataclysmic Gladiator's Reprieve","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,271,181,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":73466,"name":"Cataclysmic Gladiator's Battle Staff","icon":"inv_staff_2h_pvpcataclysms3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,486,0,0,324,0,0,0,0,0,0,0,2786,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1421,"weaponDamageMax":2132,"weaponSpeed":2,"ilvl":397,"phase":4,"quality":4}, -{"id":73467,"name":"Cataclysmic Gladiator's Spellblade","icon":"inv_knife_1h_pvpcataclysms3_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,312,208,0,0,139,0,0,0,0,0,0,0,2783,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":737,"weaponDamageMax":1370,"weaponSpeed":1.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73468,"name":"Cataclysmic Gladiator's Barrier","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,406,271,0,0,181,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,12525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":73469,"name":"Cataclysmic Gladiator's Endgame","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,271,0,0,181,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":73470,"name":"Cataclysmic Gladiator's Longbow","icon":"inv_bow_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":1,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2131,"weaponDamageMax":3197,"weaponSpeed":3,"ilvl":397,"phase":4,"quality":4}, -{"id":73471,"name":"Cataclysmic Gladiator's Hatchet","icon":"inv_thrown_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":5,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1350,"weaponDamageMax":2025,"weaponSpeed":1.9,"ilvl":397,"phase":4,"quality":4}, -{"id":73472,"name":"Cataclysmic Gladiator's Quickblade","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73473,"name":"Cataclysmic Gladiator's Pummeler","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73474,"name":"Cataclysmic Gladiator's Cleaver","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,208,312,0,0,0,139,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73475,"name":"Cataclysmic Gladiator's Greatsword","icon":"inv_sword_2h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":4,"stats":[486,0,730,0,0,0,324,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73476,"name":"Cataclysmic Gladiator's Bonegrinder","icon":"inv_mace_2h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":4,"stats":[486,0,730,0,0,0,324,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73477,"name":"Cataclysmic Gladiator's Decapitator","icon":"inv_axe_2h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":4,"stats":[486,0,730,0,0,0,324,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4}, -{"id":73478,"name":"Cataclysmic Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73479,"name":"Cataclysmic Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73480,"name":"Cataclysmic Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73481,"name":"Cataclysmic Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73482,"name":"Cataclysmic Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73483,"name":"Cataclysmic Gladiator's Felweave Amice","icon":"inv_shoulder_robe_pvpwarlock_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,0,0,0,0,235,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73484,"name":"Cataclysmic Gladiator's Felweave Raiment","icon":"inv_chest_robe_pvpwarlock_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73485,"name":"Cataclysmic Gladiator's Felweave Trousers","icon":"inv_pants_robe_pvpwarlock_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73486,"name":"Cataclysmic Gladiator's Felweave Cowl","icon":"inv_helmet_robe_pvpwarlock_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73487,"name":"Cataclysmic Gladiator's Felweave Handguards","icon":"inv_glove_robe_pvpwarlock_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73488,"name":"Cataclysmic Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[287,0,430,0,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":73489,"name":"Cataclysmic Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[287,0,430,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10]}, -{"id":73490,"name":"Cataclysmic Gladiator's Relic of Conquest","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[161,0,242,0,0,0,108,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,10]}, -{"id":73491,"name":"Cataclysmic Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73492,"name":"Cataclysmic Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_45","type":2,"stats":[287,0,430,0,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73493,"name":"Cataclysmic Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[287,0,430,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73494,"name":"Cataclysmic Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[287,0,430,0,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73495,"name":"Cataclysmic Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"stats":[287,0,430,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73496,"name":"Cataclysmic Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73497,"name":"Cataclysmic Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73498,"name":"Cataclysmic Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73499,"name":"Cataclysmic Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73500,"name":"Cataclysmic Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73501,"name":"Cataclysmic Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73502,"name":"Cataclysmic Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73503,"name":"Cataclysmic Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73504,"name":"Cataclysmic Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73505,"name":"Cataclysmic Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73506,"name":"Cataclysmic Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73507,"name":"Cataclysmic Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_d_01","type":8,"armorType":3,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73508,"name":"Cataclysmic Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73509,"name":"Cataclysmic Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73510,"name":"Cataclysmic Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73511,"name":"Cataclysmic Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73512,"name":"Cataclysmic Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73513,"name":"Cataclysmic Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73514,"name":"Cataclysmic Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73515,"name":"Cataclysmic Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73516,"name":"Cataclysmic Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73517,"name":"Cataclysmic Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73518,"name":"Cataclysmic Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73519,"name":"Cataclysmic Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,430,287,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73520,"name":"Cataclysmic Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73521,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73522,"name":"Cataclysmic Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_d_01","type":8,"armorType":3,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73523,"name":"Cataclysmic Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_d_01","type":3,"armorType":2,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73524,"name":"Cataclysmic Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_d_01","type":9,"armorType":2,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73525,"name":"Cataclysmic Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_d_01","type":1,"armorType":2,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73526,"name":"Cataclysmic Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_d_01","type":7,"armorType":2,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73527,"name":"Cataclysmic Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_d_01","type":5,"armorType":2,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73528,"name":"Cataclysmic Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_d_01","type":6,"armorType":2,"stats":[0,287,430,0,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73529,"name":"Cataclysmic Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_d_01","type":6,"armorType":2,"stats":[0,287,430,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73530,"name":"Cataclysmic Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73531,"name":"Cataclysmic Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73532,"name":"Cataclysmic Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_d_01","type":8,"armorType":2,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73533,"name":"Cataclysmic Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_d_01","type":8,"armorType":2,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73534,"name":"Cataclysmic Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":73535,"name":"Cataclysmic Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":73536,"name":"Cataclysmic Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":73537,"name":"Cataclysmic Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":73538,"name":"Cataclysmic Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":2}, -{"id":73539,"name":"Cataclysmic Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"factionRestriction":1}, -{"id":73540,"name":"Cataclysmic Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73541,"name":"Cataclysmic Gladiator's Satin Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73542,"name":"Cataclysmic Gladiator's Satin Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73543,"name":"Cataclysmic Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73544,"name":"Cataclysmic Gladiator's Satin Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73545,"name":"Cataclysmic Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73546,"name":"Cataclysmic Gladiator's Mooncloth Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73547,"name":"Cataclysmic Gladiator's Mooncloth Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73548,"name":"Cataclysmic Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73549,"name":"Cataclysmic Gladiator's Mooncloth Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73550,"name":"Cataclysmic Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_d_01","type":6,"armorType":4,"stats":[287,0,430,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73551,"name":"Cataclysmic Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_d_01","type":6,"armorType":4,"stats":[287,0,430,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,1705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73552,"name":"Cataclysmic Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_d_01","type":10,"armorType":4,"stats":[362,0,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73553,"name":"Cataclysmic Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_d_01","type":10,"armorType":4,"stats":[362,0,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73554,"name":"Cataclysmic Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_d_01","type":8,"armorType":4,"stats":[362,0,573,0,0,0,0,0,0,0,0,235,0,0,0,0,255,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73555,"name":"Cataclysmic Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_d_01","type":8,"armorType":4,"stats":[362,0,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73556,"name":"Cataclysmic Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73557,"name":"Cataclysmic Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73558,"name":"Cataclysmic Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73559,"name":"Cataclysmic Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73560,"name":"Cataclysmic Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73561,"name":"Cataclysmic Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_d_01","type":6,"armorType":4,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73562,"name":"Cataclysmic Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_d_01","type":6,"armorType":4,"stats":[0,0,430,287,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,1705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73563,"name":"Cataclysmic Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73564,"name":"Cataclysmic Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73565,"name":"Cataclysmic Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_d_01","type":8,"armorType":4,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73566,"name":"Cataclysmic Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_d_01","type":8,"armorType":4,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73567,"name":"Cataclysmic Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73568,"name":"Cataclysmic Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73569,"name":"Cataclysmic Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73570,"name":"Cataclysmic Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73571,"name":"Cataclysmic Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73572,"name":"Cataclysmic Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,0,0,0,0,235,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73573,"name":"Cataclysmic Gladiator's Silk Robe","icon":"inv_robe_robe_pvpmage_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73574,"name":"Cataclysmic Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73575,"name":"Cataclysmic Gladiator's Silk Cowl","icon":"inv_helmet_robe_pvpmage_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73576,"name":"Cataclysmic Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73577,"name":"Cataclysmic Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73578,"name":"Cataclysmic Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73579,"name":"Cataclysmic Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73580,"name":"Cataclysmic Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_d_01","type":3,"armorType":3,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73581,"name":"Cataclysmic Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_d_01","type":9,"armorType":3,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73582,"name":"Cataclysmic Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_d_01","type":1,"armorType":3,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73583,"name":"Cataclysmic Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_d_01","type":7,"armorType":3,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73584,"name":"Cataclysmic Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_d_01","type":5,"armorType":3,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73585,"name":"Cataclysmic Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_d_01","type":6,"armorType":3,"stats":[0,287,430,0,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73586,"name":"Cataclysmic Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_d_01","type":6,"armorType":3,"stats":[0,287,430,0,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73587,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73588,"name":"Cataclysmic Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73589,"name":"Cataclysmic Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_d_01","type":8,"armorType":3,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73590,"name":"Cataclysmic Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_d_01","type":8,"armorType":3,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73591,"name":"Cataclysmic Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73592,"name":"Cataclysmic Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73593,"name":"Cataclysmic Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73594,"name":"Cataclysmic Gladiator's Relic of Salvation","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,242,161,108,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":73595,"name":"Cataclysmic Gladiator's Wyrmhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73596,"name":"Cataclysmic Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73597,"name":"Cataclysmic Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73598,"name":"Cataclysmic Gladiator's Wyrmhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73599,"name":"Cataclysmic Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73600,"name":"Cataclysmic Gladiator's Bindings of Prowess","icon":"inv_bracers_leather_pvpdruid_d_01","type":6,"armorType":2,"stats":[0,0,430,287,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73601,"name":"Cataclysmic Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73602,"name":"Cataclysmic Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_d_01","type":8,"armorType":2,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73603,"name":"Cataclysmic Gladiator's Kodohide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73604,"name":"Cataclysmic Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73605,"name":"Cataclysmic Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73606,"name":"Cataclysmic Gladiator's Kodohide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73607,"name":"Cataclysmic Gladiator's Kodohide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73608,"name":"Cataclysmic Gladiator's Bindings of Meditation","icon":"inv_bracers_leather_pvpdruid_d_01","type":6,"armorType":2,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73609,"name":"Cataclysmic Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73610,"name":"Cataclysmic Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_d_01","type":8,"armorType":2,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73611,"name":"Cataclysmic Gladiator's Dragonhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73612,"name":"Cataclysmic Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73613,"name":"Cataclysmic Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73614,"name":"Cataclysmic Gladiator's Dragonhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73615,"name":"Cataclysmic Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73616,"name":"Cataclysmic Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73617,"name":"Cataclysmic Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73618,"name":"Cataclysmic Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73619,"name":"Cataclysmic Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73620,"name":"Cataclysmic Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73621,"name":"Cataclysmic Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7]}, -{"id":73622,"name":"Cataclysmic Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,430,287,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73623,"name":"Cataclysmic Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,430,287,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73624,"name":"Cataclysmic Gladiator's Relic of Dominance","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,242,161,0,0,108,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":73625,"name":"Cataclysmic Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":73626,"name":"Cataclysmic Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,430,287,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73627,"name":"Cataclysmic Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,430,287,0,0,0,191,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73628,"name":"Cataclysmic Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":73629,"name":"Cataclysmic Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"stats":[0,0,430,287,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73630,"name":"Cataclysmic Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,0,430,287,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4,5,1,7,3,8]}, -{"id":73631,"name":"Cataclysmic Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_d_01","type":6,"armorType":1,"stats":[0,0,430,287,191,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73632,"name":"Cataclysmic Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_d_01","type":6,"armorType":1,"stats":[0,0,430,287,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73633,"name":"Cataclysmic Gladiator's Cuffs of Accuracy","icon":"inv_bracer_robe_pvpwarlock_d_01","type":6,"armorType":1,"stats":[0,0,430,287,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73634,"name":"Cataclysmic Gladiator's Treads of Meditation","icon":"inv_boot_robe_pvppriest_d_01","type":10,"armorType":1,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73635,"name":"Cataclysmic Gladiator's Treads of Alacrity","icon":"inv_boots_robe_pvpwarlock_d_01","type":10,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73636,"name":"Cataclysmic Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_d_01","type":10,"armorType":1,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73637,"name":"Cataclysmic Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_d_01","type":8,"armorType":1,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,893,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73638,"name":"Cataclysmic Gladiator's Cord of Accuracy","icon":"inv_belt_robe_pvpwarlock_d_01","type":8,"armorType":1,"stats":[0,0,573,362,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,893,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73639,"name":"Cataclysmic Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_d_01","type":8,"armorType":1,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,893,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73640,"name":"Cataclysmic Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,287,430,0,0,191,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":73641,"name":"Cataclysmic Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,287,430,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7]}, -{"id":73642,"name":"Cataclysmic Gladiator's Relic of Triumph","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,161,242,0,0,0,108,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1,7]}, -{"id":73643,"name":"Cataclysmic Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73644,"name":"Cataclysmic Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,287,430,0,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":73645,"name":"Cataclysmic Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,287,430,0,0,0,0,0,191,0,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":73646,"name":"Cataclysmic Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"stats":[0,287,430,0,0,0,0,0,0,0,0,191,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":73647,"name":"Cataclysmic Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"stats":[0,287,430,0,0,0,191,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,6,1,7]}, -{"id":73648,"name":"Cataclysmic Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4}, -{"id":73651,"name":"Cataclysmic Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73652,"name":"Cataclysmic Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73653,"name":"Cataclysmic Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73654,"name":"Cataclysmic Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73655,"name":"Cataclysmic Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Cataclysmic Gladiator's Battlegear","setId":909}, -{"id":73656,"name":"Cataclysmic Gladiator's Felweave Amice","icon":"inv_shoulder_robe_pvpwarlock_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,0,0,0,0,235,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73657,"name":"Cataclysmic Gladiator's Felweave Raiment","icon":"inv_chest_robe_pvpwarlock_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73658,"name":"Cataclysmic Gladiator's Felweave Trousers","icon":"inv_pants_robe_pvpwarlock_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73659,"name":"Cataclysmic Gladiator's Felweave Cowl","icon":"inv_helmet_robe_pvpwarlock_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73660,"name":"Cataclysmic Gladiator's Felweave Handguards","icon":"inv_glove_robe_pvpwarlock_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Cataclysmic Gladiator's Felshroud","setId":910}, -{"id":73661,"name":"Cataclysmic Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73662,"name":"Cataclysmic Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73663,"name":"Cataclysmic Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73664,"name":"Cataclysmic Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73665,"name":"Cataclysmic Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Thunderfist","setId":911}, -{"id":73666,"name":"Cataclysmic Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73667,"name":"Cataclysmic Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73668,"name":"Cataclysmic Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73669,"name":"Cataclysmic Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73670,"name":"Cataclysmic Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Earthshaker","setId":912}, -{"id":73671,"name":"Cataclysmic Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73672,"name":"Cataclysmic Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73673,"name":"Cataclysmic Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73674,"name":"Cataclysmic Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73675,"name":"Cataclysmic Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Cataclysmic Gladiator's Wartide","setId":913}, -{"id":73676,"name":"Cataclysmic Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73677,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[7]}, -{"id":73678,"name":"Cataclysmic Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_d_01","type":3,"armorType":2,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73679,"name":"Cataclysmic Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_d_01","type":9,"armorType":2,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73680,"name":"Cataclysmic Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_d_01","type":1,"armorType":2,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73681,"name":"Cataclysmic Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_d_01","type":7,"armorType":2,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73682,"name":"Cataclysmic Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_d_01","type":5,"armorType":2,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Cataclysmic Gladiator's Vestments","setId":914}, -{"id":73683,"name":"Cataclysmic Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73684,"name":"Cataclysmic Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[6,1]}, -{"id":73685,"name":"Cataclysmic Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73686,"name":"Cataclysmic Gladiator's Satin Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73687,"name":"Cataclysmic Gladiator's Satin Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73688,"name":"Cataclysmic Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73689,"name":"Cataclysmic Gladiator's Satin Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915}, -{"id":73690,"name":"Cataclysmic Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73691,"name":"Cataclysmic Gladiator's Mooncloth Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73692,"name":"Cataclysmic Gladiator's Mooncloth Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73693,"name":"Cataclysmic Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73694,"name":"Cataclysmic Gladiator's Mooncloth Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Cataclysmic Gladiator's Investiture","setId":916}, -{"id":73695,"name":"Cataclysmic Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_d_01","type":10,"armorType":4,"stats":[362,0,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73696,"name":"Cataclysmic Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_d_01","type":10,"armorType":4,"stats":[362,0,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[9,4,10]}, -{"id":73697,"name":"Cataclysmic Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73698,"name":"Cataclysmic Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73699,"name":"Cataclysmic Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73700,"name":"Cataclysmic Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73701,"name":"Cataclysmic Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Redemption","setId":918}, -{"id":73702,"name":"Cataclysmic Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73703,"name":"Cataclysmic Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4]}, -{"id":73704,"name":"Cataclysmic Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73705,"name":"Cataclysmic Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73706,"name":"Cataclysmic Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73707,"name":"Cataclysmic Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73708,"name":"Cataclysmic Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Cataclysmic Gladiator's Vindication","setId":917}, -{"id":73709,"name":"Cataclysmic Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_d_01","type":3,"armorType":1,"stats":[0,0,573,362,0,0,0,0,0,0,0,235,0,0,0,0,255,0,0,0,0,0,1190,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73710,"name":"Cataclysmic Gladiator's Silk Robe","icon":"inv_robe_robe_pvpmage_d_01","type":5,"armorType":1,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73711,"name":"Cataclysmic Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_d_01","type":9,"armorType":1,"stats":[0,0,771,474,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73712,"name":"Cataclysmic Gladiator's Silk Cowl","icon":"inv_helmet_robe_pvpmage_d_01","type":1,"armorType":1,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73713,"name":"Cataclysmic Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_d_01","type":7,"armorType":1,"stats":[0,0,573,362,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Cataclysmic Gladiator's Regalia","setId":919}, -{"id":73714,"name":"Cataclysmic Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_d_01","type":3,"armorType":3,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2131,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73715,"name":"Cataclysmic Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_d_01","type":9,"armorType":3,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73716,"name":"Cataclysmic Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_d_01","type":1,"armorType":3,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73717,"name":"Cataclysmic Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_d_01","type":7,"armorType":3,"stats":[0,362,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73718,"name":"Cataclysmic Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_d_01","type":5,"armorType":3,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2842,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Cataclysmic Gladiator's Pursuit","setId":920}, -{"id":73719,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,362,573,0,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73720,"name":"Cataclysmic Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1954,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[2,7]}, -{"id":73721,"name":"Cataclysmic Gladiator's Wyrmhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73722,"name":"Cataclysmic Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73723,"name":"Cataclysmic Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,771,474,0,0,0,0,0,0,0,303,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73724,"name":"Cataclysmic Gladiator's Wyrmhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,771,454,0,0,0,283,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73725,"name":"Cataclysmic Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Wildhide","setId":921}, -{"id":73726,"name":"Cataclysmic Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73727,"name":"Cataclysmic Gladiator's Kodohide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73728,"name":"Cataclysmic Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,771,474,303,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73729,"name":"Cataclysmic Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,771,474,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73730,"name":"Cataclysmic Gladiator's Kodohide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,771,454,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73731,"name":"Cataclysmic Gladiator's Kodohide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Refuge","setId":923}, -{"id":73732,"name":"Cataclysmic Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1]}, -{"id":73733,"name":"Cataclysmic Gladiator's Dragonhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,362,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73734,"name":"Cataclysmic Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,474,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73735,"name":"Cataclysmic Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,474,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,1777,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73736,"name":"Cataclysmic Gladiator's Dragonhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,454,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73737,"name":"Cataclysmic Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,362,573,0,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1269,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Cataclysmic Gladiator's Sanctuary","setId":922}, -{"id":73738,"name":"Cataclysmic Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_d_01","type":3,"armorType":4,"stats":[362,0,573,0,0,0,0,0,235,0,0,0,0,0,0,0,255,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73739,"name":"Cataclysmic Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_d_01","type":9,"armorType":4,"stats":[474,0,771,0,0,0,0,303,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73740,"name":"Cataclysmic Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_d_01","type":1,"armorType":4,"stats":[454,0,771,0,0,0,0,0,0,0,0,283,0,0,0,0,343,0,0,0,0,0,3166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73741,"name":"Cataclysmic Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_d_01","type":7,"armorType":4,"stats":[362,0,573,0,0,235,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73742,"name":"Cataclysmic Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_d_01","type":5,"armorType":4,"stats":[474,0,771,0,0,0,303,0,0,0,0,0,0,0,0,0,343,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Cataclysmic Gladiator's Desecration","setId":924}, -{"id":73743,"name":"Cataclysmic Gladiator's Treads of Meditation","icon":"inv_boot_robe_pvppriest_d_01","type":10,"armorType":1,"stats":[0,0,573,362,235,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73744,"name":"Cataclysmic Gladiator's Treads of Alacrity","icon":"inv_boots_robe_pvpwarlock_d_01","type":10,"armorType":1,"stats":[0,0,573,362,0,0,0,235,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":73745,"name":"Cataclysmic Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_d_01","type":10,"armorType":1,"stats":[0,0,573,362,0,0,235,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"classAllowlist":[5,3,8]}, -{"id":74034,"name":"Pit Fighter","icon":"inv_misc_armorkit_14","type":12,"stats":[0,0,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":365,"phase":3,"quality":3}, -{"id":74035,"name":"Master Pit Fighter","icon":"inv_misc_armorkit_04","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4,"sources":[{"quest":{"id":29761,"name":"Master Pit Fighter"}}]}, -{"id":74783,"name":"Cataclysmic Gladiator's Relic of Conquest","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[172,0,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"classAllowlist":[4,10]}, -{"id":74784,"name":"Cataclysmic Gladiator's Relic of Salvation","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,259,172,115,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":74785,"name":"Cataclysmic Gladiator's Relic of Dominance","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,0,259,172,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"classAllowlist":[4,1,7]}, -{"id":74786,"name":"Cataclysmic Gladiator's Relic of Triumph","icon":"inv_scarab_bone","type":14,"rangedWeaponType":4,"stats":[0,172,259,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"classAllowlist":[1,7]}, -{"id":75061,"name":"Vicious Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,450,300,0,152,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224145}}]}, -{"id":75062,"name":"Vicious Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,605,403,0,0,269,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224165}}]}, -{"id":75063,"name":"Vicious Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224166}}]}, -{"id":75064,"name":"Vicious Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,450,300,200,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224161}}]}, -{"id":75065,"name":"Vicious Embersilk Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":99537}}]}, -{"id":75066,"name":"Vicious Eyeball of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,133,89,0,0,59,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":99548}}]}, -{"id":75067,"name":"Vicious Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,158,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99539}}]}, -{"id":75068,"name":"Vicious Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,237,158,105,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99540}}]}, -{"id":75069,"name":"Vicious Jawbone of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[89,0,133,0,0,0,59,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":99549}}]}, -{"id":75070,"name":"Vicious Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224158}}]}, -{"id":75071,"name":"Vicious Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[158,0,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99541}}]}, -{"id":75072,"name":"Vicious Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,605,403,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,1210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224159}}]}, -{"id":75073,"name":"Vicious Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224157}}]}, -{"id":75074,"name":"Vicious Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,158,237,0,0,0,0,0,105,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99542}}]}, -{"id":75075,"name":"Vicious Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,237,158,0,0,0,105,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99543}}]}, -{"id":75076,"name":"Vicious Fur Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,158,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":99536}}]}, -{"id":75077,"name":"Vicious Hide Cloak","icon":"inv_misc_cape_16","type":4,"stats":[158,0,237,0,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":99535}}]}, -{"id":75078,"name":"Vicious Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[158,0,237,0,0,0,0,0,105,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":99544}}]}, -{"id":75079,"name":"Vicious Charm of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,89,133,0,0,0,59,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":339,"phase":1,"quality":3,"sources":[{"crafted":{"profession":6,"spellId":99547}}]}, -{"id":75080,"name":"Vicious Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,605,403,242,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224200}}]}, -{"id":75081,"name":"Vicious Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,300,450,0,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224150}}]}, -{"id":75082,"name":"Vicious Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224167}}]}, -{"id":75083,"name":"Vicious Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,450,300,0,0,0,206,0,0,0,0,0,0,0,0,190,0,0,0,0,0,1459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224138}}]}, -{"id":75084,"name":"Vicious Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,605,403,0,0,307,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224141}}]}, -{"id":75085,"name":"Vicious Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,450,300,0,0,0,161,0,0,0,0,0,0,0,0,223,0,0,0,0,0,1621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224142}}]}, -{"id":75086,"name":"Vicious Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224162}}]}, -{"id":75087,"name":"Vicious Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224163}}]}, -{"id":75088,"name":"Vicious Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224168}}]}, -{"id":75089,"name":"Vicious Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,338,225,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224164}}]}, -{"id":75090,"name":"Vicious Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,605,403,0,0,0,242,0,0,0,0,0,0,0,0,285,0,0,0,0,0,2108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224143}}]}, -{"id":75091,"name":"Vicious Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224169}}]}, -{"id":75092,"name":"Vicious Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,450,300,161,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,0,1783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224139}}]}, -{"id":75093,"name":"Vicious Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,605,403,269,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224160}}]}, -{"id":75094,"name":"Vicious Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,338,225,0,114,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224140}}]}, -{"id":75095,"name":"Vicious Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224155}}]}, -{"id":75096,"name":"Vicious Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224154}}]}, -{"id":75097,"name":"Vicious Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,605,403,0,0,217,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,2270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224144}}]}, -{"id":75098,"name":"Vicious Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,338,225,0,0,0,150,0,0,0,0,0,0,0,0,150,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":11,"spellId":1224156}}]}, -{"id":75099,"name":"Vicious Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,450,300,0,0,0,152,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224201}}]}, -{"id":75100,"name":"Vicious Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,300,450,0,0,0,0,0,0,0,0,228,0,0,0,0,152,0,0,0,0,0,1459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224146}}]}, -{"id":75101,"name":"Vicious Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,450,300,0,0,0,228,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224195}}]}, -{"id":75102,"name":"Vicious Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,403,605,0,0,0,0,242,0,0,0,0,0,0,0,0,285,0,0,0,0,0,2108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224151}}]}, -{"id":75103,"name":"Vicious Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,403,605,0,0,0,0,0,0,0,0,204,0,0,0,0,307,0,0,0,0,0,1812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224173}}]}, -{"id":75104,"name":"Vicious Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,300,450,0,0,0,152,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224174}}]}, -{"id":75105,"name":"Vicious Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,403,605,0,0,204,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,1472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224175}}]}, -{"id":75106,"name":"Vicious Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,338,225,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224196}}]}, -{"id":75107,"name":"Vicious Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,605,403,0,0,0,0,0,0,0,307,0,0,0,0,204,0,0,0,0,0,1812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224197}}]}, -{"id":75108,"name":"Vicious Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,403,605,0,0,0,0,0,0,0,0,300,0,0,0,0,217,0,0,0,0,0,2270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224152}}]}, -{"id":75109,"name":"Vicious Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,450,300,223,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224198}}]}, -{"id":75110,"name":"Vicious Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,300,450,0,0,228,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224147}}]}, -{"id":75111,"name":"Vicious Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,605,403,0,0,204,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,1472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224199}}]}, -{"id":75112,"name":"Vicious Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,403,605,0,0,0,217,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224176}}]}, -{"id":75113,"name":"Vicious Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,300,450,0,0,0,180,0,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224177}}]}, -{"id":75114,"name":"Vicious Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,225,338,0,0,0,0,0,0,0,0,171,0,0,0,0,114,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224148}}]}, -{"id":75115,"name":"Vicious Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,403,605,0,0,0,307,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224149}}]}, -{"id":75116,"name":"Vicious Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,300,450,0,0,0,180,0,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224153}}]}, -{"id":75117,"name":"Vicious Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,450,300,0,0,0,0,0,0,0,180,0,0,0,0,212,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224194}}]}, -{"id":75118,"name":"Vicious Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224178}}]}, -{"id":75119,"name":"Vicious Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[300,0,450,0,0,0,0,0,200,0,0,0,0,0,0,0,200,0,0,0,0,0,2708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224193}}]}, -{"id":75120,"name":"Vicious Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[300,0,450,0,0,200,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224187}}]}, -{"id":75121,"name":"Vicious Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224182}}]}, -{"id":75122,"name":"Vicious Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[300,0,450,0,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224190}}]}, -{"id":75123,"name":"Vicious Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[300,0,450,0,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224186}}]}, -{"id":75124,"name":"Vicious Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[225,0,338,0,0,150,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224188}}]}, -{"id":75125,"name":"Vicious Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,338,225,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224180}}]}, -{"id":75126,"name":"Vicious Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[403,0,605,0,0,0,0,0,269,0,0,0,0,0,0,0,269,0,0,0,0,0,2934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224191}}]}, -{"id":75127,"name":"Vicious Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,300,450,0,0,0,0,0,180,0,0,0,0,0,0,0,212,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224170}}]}, -{"id":75128,"name":"Vicious Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,605,403,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,3611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224181}}]}, -{"id":75129,"name":"Vicious Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,2934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224183}}]}, -{"id":75130,"name":"Vicious Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,300,450,0,0,0,0,0,0,0,0,217,0,0,0,0,171,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224171}}]}, -{"id":75131,"name":"Vicious Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,225,338,0,0,0,0,135,0,0,0,0,0,0,0,0,159,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":8,"spellId":1224172}}]}, -{"id":75132,"name":"Vicious Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,2483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224179}}]}, -{"id":75133,"name":"Vicious Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,605,403,0,0,269,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,3160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224184}}]}, -{"id":75134,"name":"Vicious Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224185}}]}, -{"id":75135,"name":"Vicious Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[403,0,605,0,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,3611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224189}}]}, -{"id":75136,"name":"Vicious Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[403,0,605,0,0,269,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,3160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3,"sources":[{"crafted":{"profession":2,"spellId":1224192}}]}, -{"id":76150,"name":"Evergreen Wristbands","icon":"inv_bracers_leather_dungeonleather_c_05","type":6,"armorType":2,"stats":[0,0,341,226,0,0,162,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Arcurion"}}]}, -{"id":76151,"name":"Cloak of Subtle Light","icon":"inv_cape_430dungeon_c_04","type":4,"stats":[0,0,341,226,162,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Asira Dawnslayer"}}]}, -{"id":76152,"name":"Cowl of Destiny","icon":"inv_helm_robe_dungeonrobe_c_05","type":1,"armorType":1,"stats":[0,0,611,346,213,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30096,"name":"Murozond"}}]}, -{"id":76153,"name":"Signet of the Twilight Prophet","icon":"inv_jewelry_ring_101","type":11,"stats":[0,0,341,226,169,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"quest":{"id":30105,"name":"The Twilight Prophet"}}]}, -{"id":76154,"name":"Breastplate of Despair","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[0,0,611,366,284,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Trash Mobs"}}]}, -{"id":76155,"name":"Thorns of the Dying Day","icon":"inv_thrown_1h_430nightelf_c_01","type":14,"rangedWeaponType":5,"stats":[0,127,192,0,0,0,0,0,88,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":885,"weaponDamageMax":1644,"weaponSpeed":1.7,"ilvl":378,"phase":4,"quality":4}, -{"id":76156,"name":"Bindings of the End Times","icon":"inv_bracer_plate_dungeonplate_c_06","type":6,"armorType":4,"stats":[226,0,341,0,0,0,0,148,154,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Trash Mobs"}}]}, -{"id":76157,"name":"Waterworn Handguards","icon":"inv_gauntlets_leather_dungeonleather_c_05","type":7,"armorType":2,"stats":[0,0,454,281,207,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}]}, -{"id":76158,"name":"Courtier's Slippers","icon":"inv_boots_robe_dungeonrobe_c_05","type":10,"armorType":1,"stats":[0,0,454,281,179,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}]}, -{"id":76159,"name":"Legion Bindings","icon":"inv_bracer_mail_dungeonmail_c_05","type":6,"armorType":3,"stats":[0,226,341,0,0,133,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}]}, -{"id":76160,"name":"Drapes of the Dragonshrine","icon":"inv_cape_430dungeon_c_04","type":4,"stats":[0,0,341,226,0,0,151,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}]}, -{"id":76161,"name":"Gauntlets of the Twilight Hour","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,0,454,281,212,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}]}, -{"id":76162,"name":"Twilight Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[226,0,341,0,0,0,0,0,0,126,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}]}, -{"id":76212,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,197,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":76213,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":76214,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":76215,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,730,426,0,266,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":76216,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":76339,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":76340,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,730,426,0,266,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":76341,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":76342,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":76343,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,197,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":76344,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067}, -{"id":76345,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,266,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067}, -{"id":76346,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067}, -{"id":76347,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067}, -{"id":76348,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,197,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067}, -{"id":76357,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,247,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":76358,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,311,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":76359,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,318,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":76360,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,319,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":76361,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,542,321,229,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":76749,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,237,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":76750,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,313,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":76751,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,446,323,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":76752,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,426,293,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":76753,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,542,321,217,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":76756,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,426,313,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":76757,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,237,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":76758,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,331,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":76759,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,309,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":76760,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,223,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":76765,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,730,426,319,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":76766,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,542,341,242,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":76767,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,730,426,308,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":76768,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,730,426,301,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":76769,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,542,321,242,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":76874,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,287,0,0,0,301,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":76875,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,227,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":76876,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,274,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":76877,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,278,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":76878,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,0,181,0,0,0,245,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":76974,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,270,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":76975,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,252,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":76976,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,0,0,343,232,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":76977,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,252,0,0,0,321,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":76978,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,193,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":76983,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,0,289,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":76984,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,244,0,0,331,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":76985,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,221,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":76986,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,283,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":76987,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,223,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":76988,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,304,0,278,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":76989,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[255,0,542,0,0,163,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":76990,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,0,466,206,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":76991,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,290,289,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":76992,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[235,0,542,0,0,0,0,0,183,0,0,321,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":77003,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,0,276,306,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":77004,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[235,0,542,0,0,153,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":77005,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,450,0,222,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":77006,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,280,299,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":77007,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[218,0,542,0,0,0,0,0,199,0,333,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":77008,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,272,0,310,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":77009,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[255,0,542,0,0,163,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":77010,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,206,466,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":77011,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,0,260,319,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":77012,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[235,0,542,0,0,0,0,0,153,0,0,351,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":77013,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,426,730,0,0,0,359,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":77014,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,0,245,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":77015,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,314,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":77016,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,206,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":77017,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,0,0,171,0,0,258,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":77018,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,0,0,0,245,0,0,0,215,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":77019,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,277,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":77020,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,426,0,0,0,334,0,0,0,222,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":77021,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,426,282,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":77022,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,542,321,217,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":77023,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,426,730,0,0,0,0,300,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":77024,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,225,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":77025,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,0,276,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":77026,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,280,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":77027,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,210,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":77028,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,426,730,0,0,294,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":77029,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,205,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":77030,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,0,346,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":77031,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,0,308,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":77032,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,321,542,0,0,0,242,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":77035,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,214,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":77036,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,265,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":77037,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,0,0,0,251,0,0,0,324,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":77038,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,0,0,0,239,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":77039,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,426,290,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":77040,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,426,730,0,0,286,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":77041,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,0,0,0,249,0,0,203,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":77042,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,344,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":77043,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,237,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":77044,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,321,542,0,0,234,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":77078,"name":"Scintillating Rods","icon":"inv_wand_1h_deathwingraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,230,153,112,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1581,"weaponDamageMax":2937,"weaponSpeed":1.8,"ilvl":397,"phase":4,"quality":4}, -{"id":77079,"name":"Hungermouth Wand","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,230,153,0,97,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1581,"weaponDamageMax":2937,"weaponSpeed":1.8,"ilvl":397,"phase":4,"quality":4}, -{"id":77080,"name":"Ripfang Relic","icon":"inv_scroll_15","type":14,"rangedWeaponType":4,"stats":[0,153,230,0,0,0,104,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77081,"name":"Gutripper Shard","icon":"spell_fire_sealoffire","type":14,"rangedWeaponType":4,"stats":[153,0,230,0,0,0,0,108,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77082,"name":"Mindbender Lens","icon":"inv_misc_cat_trinket02","type":14,"rangedWeaponType":4,"stats":[0,0,230,153,0,0,78,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77083,"name":"Lightning Spirit in a Bottle","icon":"inv_feather_06","type":14,"rangedWeaponType":4,"stats":[0,0,230,153,109,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77084,"name":"Stoutheart Talisman","icon":"inv_hammer_17","type":14,"rangedWeaponType":4,"stats":[153,0,230,0,0,0,0,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77085,"name":"Unexpected Backup","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[116,0,230,0,0,78,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1492,"weaponDamageMax":2238,"weaponSpeed":2.1,"ilvl":397,"phase":4,"quality":4}, -{"id":77086,"name":"Windslicer Boomerang","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,153,230,0,0,0,0,102,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1421,"weaponDamageMax":2132,"weaponSpeed":2,"ilvl":397,"phase":4,"quality":4}, -{"id":77087,"name":"Darting Chakram","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[153,0,230,0,0,0,87,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1492,"weaponDamageMax":2238,"weaponSpeed":2.1,"ilvl":397,"phase":4,"quality":4}, -{"id":77088,"name":"Opal of the Secret Order","icon":"inv_misc_necklace_16","type":2,"stats":[0,0,406,271,0,141,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77089,"name":"Threadlinked Chain","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,406,271,196,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77090,"name":"Necklace of Black Dragon's Teeth","icon":"inv_misc_bonenecklace","type":2,"stats":[271,0,406,0,0,189,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77091,"name":"Cameo of Terrible Memories","icon":"inv_misc_necklace14","type":2,"stats":[0,271,406,0,0,176,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77092,"name":"Guardspike Choker","icon":"inv_misc_necklace13","type":2,"stats":[271,0,406,0,0,0,0,0,0,191,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77095,"name":"Batwing Cloak","icon":"inv_misc_cape_deathwingraid_d_01","type":4,"stats":[0,251,406,0,0,0,162,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77096,"name":"Woundlicker Cover","icon":"inv_misc_cape_deathwingraid_d_03","type":4,"stats":[0,0,406,251,184,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77097,"name":"Dreamcrusher Drape","icon":"inv_misc_cape_deathwingraid_d_01","type":4,"stats":[251,0,406,0,0,127,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77098,"name":"Nanoprecise Cape","icon":"inv_misc_cape_deathwingraid_d_03","type":4,"stats":[0,0,406,251,0,166,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77099,"name":"Indefatigable Greatcloak","icon":"inv_misc_cape_deathwingraid_d_02","type":4,"stats":[186,0,406,0,0,0,0,0,127,0,261,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77108,"name":"Seal of the Grand Architect","icon":"inv_jewelry_ring_90","type":11,"stats":[0,0,406,251,0,162,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77109,"name":"Band of Reconstruction","icon":"inv_misc_ring_generic_1","type":11,"stats":[0,0,406,251,171,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77110,"name":"Ring of Torn Flesh","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[251,0,406,0,0,0,157,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77111,"name":"Emergency Descent Loop","icon":"inv_jewelry_ring_89","type":11,"stats":[0,251,406,0,0,0,0,184,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77112,"name":"Signet of the Resolute","icon":"inv_jewelry_ring_92","type":11,"stats":[251,0,406,0,0,0,0,0,0,153,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77113,"name":"Kiroptyric Sigil","icon":"inv_qiraj_jewelengraved","type":12,"stats":[0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77114,"name":"Bottled Wishes","icon":"inv_potion_109","type":12,"stats":[0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77115,"name":"Reflection of the Light","icon":"item_uncutmetagemb","type":12,"stats":[0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77116,"name":"Rotting Skull","icon":"inv_misc_bone_orcskull_01","type":12,"stats":[0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77117,"name":"Fire of the Deep","icon":"spell_fire_burnout","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true}, -{"id":77119,"name":"Bones of the Damned","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[446,0,730,0,0,308,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77120,"name":"Chestplate of the Unshakable Titan","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[446,0,730,0,0,0,0,0,0,334,259,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77121,"name":"Lightwarper Vestments","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,446,338,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77122,"name":"Robes of Searing Shadow","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,730,446,0,255,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77123,"name":"Shining Carapace of Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,730,446,327,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77124,"name":"Dragonflayer Vest","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,446,730,0,0,0,276,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77125,"name":"Ghostworld Chestguard","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,446,288,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77126,"name":"Shadowbinder Chestguard","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,446,730,0,0,0,296,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77127,"name":"Decaying Herbalist's Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,446,334,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77146,"name":"Soulgaze Cowl","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,280,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77147,"name":"Hood of Hidden Flesh","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,276,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77148,"name":"Nocturnal Gaze","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,0,0,0,328,0,0,245,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77149,"name":"Helmet of Perpetual Rebirth","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,319,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77150,"name":"Zeherah's Dragonskull Crown","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,300,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77151,"name":"Wolfdream Circlet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,332,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77153,"name":"Glowing Wings of Hope","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,730,426,315,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77155,"name":"Visage of Petrification","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,314,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77156,"name":"Jaw of Repudiation","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[288,0,730,0,0,0,0,0,233,0,478,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77157,"name":"The Hands of Gilly","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,237,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77159,"name":"Clockwinder's Immaculate Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,245,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77160,"name":"Fungus-Born Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,247,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77161,"name":"Lightfinger Handwraps","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,0,239,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77162,"name":"Arrowflick Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,0,239,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77163,"name":"Gloves of Ghostly Dreams","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,248,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77164,"name":"Gleaming Grips of Mending","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,542,341,252,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77165,"name":"Grimfist Crushers","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,0,219,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77166,"name":"Gauntlets of Feathery Blows","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,0,0,171,0,267,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77169,"name":"Silver Sabatons of Fury","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77170,"name":"Kneebreaker Boots","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,226,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77171,"name":"Bladeshatter Treads","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,216,226,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77172,"name":"Boots of Fungoid Growth","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77173,"name":"Rooftop Griptoes","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,321,542,0,0,0,216,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77174,"name":"Sabatons of the Graceful Spirit","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77175,"name":"Boneshard Boots","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,321,542,0,0,0,0,216,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77176,"name":"Kavan's Forsaken Treads","icon":"inv_boots_robe_raidmage_k_01","type":10,"armorType":1,"stats":[0,0,542,321,0,216,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77177,"name":"Splinterfoot Sandals","icon":"inv_boots_robe_raidpriest_k_01","type":10,"armorType":1,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77179,"name":"Tentacular Belt","icon":"inv_belt_robe_raidwarlock_k_01","type":8,"armorType":1,"stats":[0,0,542,321,0,0,235,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77180,"name":"Belt of Hidden Keys","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,321,542,0,0,0,0,181,0,0,0,248,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77181,"name":"Belt of Universal Curing","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,321,218,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77182,"name":"Cord of Dragon Sinew","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,321,542,0,0,0,205,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77183,"name":"Girdle of Shamanic Fury","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,203,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77184,"name":"Blinding Girdle of Truth","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,321,183,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77185,"name":"Demonbone Waistguard","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,221,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77186,"name":"Forgesmelter Waistplate","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,0,216,221,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77187,"name":"Vestal's Irrepressible Girdle","icon":"inv_belt_robe_raidpriest_k_01","type":8,"armorType":1,"stats":[0,0,542,321,248,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77188,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,220,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1267,"weaponDamageMax":2354,"weaponSpeed":2.6,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77189,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,220,331,0,0,0,0,147,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1003,"weaponDamageMax":1505,"weaponSpeed":1.8,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77190,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,772,514,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2179,"weaponDamageMax":3269,"weaponSpeed":2.9,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77191,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[514,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2704,"weaponDamageMax":4057,"weaponSpeed":3.6,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77192,"name":"Ruinblaster Shotgun","icon":"inv_firearm_2h_rifle_deathwingraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,153,230,0,0,94,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1865,"weaponDamageMax":3464,"weaponSpeed":3,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":77193,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[220,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1267,"weaponDamageMax":2354,"weaponSpeed":2.6,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77194,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,514,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2629,"weaponDamageMax":3945,"weaponSpeed":3.5,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77195,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,331,220,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":731,"weaponDamageMax":1358,"weaponSpeed":1.5,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77196,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,331,220,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1072,"weaponDamageMax":1992,"weaponSpeed":2.2,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":77197,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77198,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77199,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77200,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77201,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77202,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77203,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77204,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77205,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77206,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77207,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77208,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77209,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77210,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77211,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77212,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[188,0,312,0,0,0,139,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77213,"name":"Razor Saronite Chip","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,153,230,0,0,105,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1056,"weaponDamageMax":1963,"weaponSpeed":1.7,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77214,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,312,188,0,0,123,135,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1014,"weaponDamageMax":1884,"weaponSpeed":2.2,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77215,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,153,230,0,0,0,116,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2060,"weaponDamageMax":3091,"weaponSpeed":2.9,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77216,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,230,153,0,0,0,94,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1493,"weaponDamageMax":2774,"weaponSpeed":1.7,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77217,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[466,0,730,0,0,0,319,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77218,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,466,730,0,0,234,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1918,"weaponDamageMax":2878,"weaponSpeed":2.7,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77219,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,312,188,141,0,0,111,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":691,"weaponDamageMax":1284,"weaponSpeed":1.5,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77220,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,188,312,0,0,0,0,138,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":645,"weaponDamageMax":1199,"weaponSpeed":1.4,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77221,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,0,300,0,319,0,0,0,0,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2131,"weaponDamageMax":3197,"weaponSpeed":3,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77223,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,188,312,0,0,0,0,111,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77224,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[466,0,730,0,0,0,319,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2557,"weaponDamageMax":3837,"weaponSpeed":3.6,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77225,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,350,0,0,0,0,0,0,246,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2273,"weaponDamageMax":3411,"weaponSpeed":3.2,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77226,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[231,0,406,0,0,0,0,0,0,153,0,169,0,0,0,0,0,0,0,0,0,0,12525,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77227,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,406,251,171,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77228,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,406,251,0,144,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77229,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,406,251,148,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77230,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[251,0,406,0,0,0,0,170,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77231,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,251,406,0,0,0,0,0,162,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77232,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[251,0,406,0,0,0,0,0,0,0,157,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77234,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,542,321,0,0,217,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77235,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,573,342,243,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77236,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[342,0,573,0,0,0,225,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77237,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,573,342,247,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77238,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,342,573,0,0,0,0,275,168,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77239,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,229,211,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77240,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,251,406,0,0,0,186,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77241,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,321,542,0,0,0,253,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77242,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,0,0,0,229,0,0,0,213,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77243,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,542,321,225,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77244,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,321,224,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77245,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,251,173,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77246,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,0,208,227,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77247,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,251,406,0,0,0,159,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77248,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,321,211,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77249,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,406,251,0,0,0,176,0,0,0,162,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77250,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,191,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77251,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,321,542,0,0,0,222,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":77252,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,542,321,181,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77253,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,251,154,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77254,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,321,542,0,0,192,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77255,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,542,321,0,0,216,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77257,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,251,175,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77258,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[251,0,406,0,0,0,0,0,0,158,0,174,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77259,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,208,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77260,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,321,542,0,0,0,211,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77261,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,251,179,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77262,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,406,271,181,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77263,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,298,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77265,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,542,321,223,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77266,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,0,0,221,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77267,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,239,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77268,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[255,0,542,0,0,0,0,0,0,361,163,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77269,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,321,542,0,0,0,253,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77270,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[251,0,406,0,0,0,194,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77271,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,0,231,0,0,0,210,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":77316,"name":"Flashing Bracers of Warmth","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,271,167,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77317,"name":"Heartcrusher Wristplates","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[271,0,406,0,0,0,137,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77318,"name":"Bracers of Unrelenting Excellence","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[271,0,406,0,0,0,0,0,0,154,196,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77319,"name":"Bracers of the Spectral Wolf","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,271,196,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77320,"name":"Luminescent Bracers","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,271,181,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77321,"name":"Dragonbelly Bracers","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,271,406,0,0,189,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77322,"name":"Bracers of Manifold Pockets","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,271,406,0,0,0,176,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77323,"name":"Bracers of the Black Dream","icon":"inv_bracer_robe_raidpriest_k_01","type":6,"armorType":1,"stats":[0,0,406,271,158,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77324,"name":"Chronoboost Bracers","icon":"inv_bracer_robe_raidmage_k_01","type":6,"armorType":1,"stats":[0,0,406,271,0,189,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4}, -{"id":77938,"name":"Dragonfire Orb","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,251,0,0,0,157,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":77945,"name":"Fear","icon":"inv_knife_1h_deathwingraid_e_01","type":13,"weaponType":2,"handType":1,"stats":[0,188,312,0,0,100,108,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":829,"weaponDamageMax":1541,"weaponSpeed":1.8,"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Jaws of Retribution","setId":1089,"sources":[{"quest":{"id":30106,"name":"The Deed is Done"}}]}, -{"id":77946,"name":"Vengeance","icon":"inv_knife_1h_deathwingraid_e_01","type":13,"weaponType":2,"handType":3,"stats":[0,188,312,0,0,0,0,106,101,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":645,"weaponDamageMax":1199,"weaponSpeed":1.4,"ilvl":397,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Jaws of Retribution","setId":1089,"sources":[{"quest":{"id":30106,"name":"The Deed is Done"}}]}, -{"id":77947,"name":"The Sleeper","icon":"inv_knife_1h_deathwingraid_e_02","type":13,"weaponType":2,"handType":1,"stats":[0,207,340,0,0,109,117,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":902,"weaponDamageMax":1676,"weaponSpeed":1.8,"ilvl":406,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Maw of Oblivion","setId":1088,"sources":[{"quest":{"id":30113,"name":"Victory in the Depths"}}]}, -{"id":77948,"name":"The Dreamer","icon":"inv_knife_1h_deathwingraid_e_02","type":13,"weaponType":2,"handType":3,"stats":[0,207,340,0,0,0,0,115,110,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":702,"weaponDamageMax":1304,"weaponSpeed":1.4,"ilvl":406,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Maw of Oblivion","setId":1088,"sources":[{"quest":{"id":30113,"name":"Victory in the Depths"}}]}, -{"id":77949,"name":"Golad, Twilight of Aspects","icon":"inv_knife_1h_deathwingraid_e_03","type":13,"weaponType":2,"handType":1,"stats":[0,229,373,0,0,148,156,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":990,"weaponDamageMax":1840,"weaponSpeed":1.8,"ilvl":416,"phase":4,"quality":5,"classAllowlist":[6],"setName":"Fangs of the Father","setId":1087,"sources":[{"quest":{"id":30118,"name":"Patricide"}}]}, -{"id":77950,"name":"Tiriosh, Nightmare of Ages","icon":"inv_knife_1h_deathwingraid_e_03","type":13,"weaponType":2,"handType":3,"stats":[0,229,373,0,0,0,0,154,149,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":770,"weaponDamageMax":1431,"weaponSpeed":1.4,"ilvl":416,"phase":4,"quality":5,"classAllowlist":[6],"setName":"Fangs of the Father","setId":1087,"sources":[{"quest":{"id":30118,"name":"Patricide"}}]}, -{"id":77969,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77970,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,1,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77971,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77972,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77973,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77974,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77975,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77976,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77977,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77978,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,1,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77979,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77980,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77981,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77982,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77983,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,1,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":77989,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":77990,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77991,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":77992,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":77993,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":77994,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77995,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77996,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77997,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77998,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":77999,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78000,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78001,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78002,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78003,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78011,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,251,406,0,0,0,179,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78012,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,406,251,0,0,0,173,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78013,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[251,0,406,0,0,125,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78357,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,573,342,0,0,207,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78359,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,161,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1972,"weaponDamageMax":3663,"weaponSpeed":3,"ilvl":403,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78361,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,611,368,255,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78362,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,368,611,0,0,0,287,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78363,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,353,215,0,0,141,153,0,0,0,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1145,"weaponDamageMax":2127,"weaponSpeed":2.2,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78364,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,459,306,204,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78365,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,340,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78366,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,270,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78367,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[290,0,611,0,0,0,0,0,0,408,186,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78368,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,0,262,0,0,0,241,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78369,"name":"Razor Saronite Chip","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,172,259,0,0,118,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1193,"weaponDamageMax":2216,"weaponSpeed":1.7,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78370,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,611,368,0,0,250,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78371,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[215,0,353,0,0,0,157,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78372,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,459,286,203,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78373,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[286,0,459,0,0,0,219,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78374,"name":"Razor Saronite Chip","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,135,203,0,0,93,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":936,"weaponDamageMax":1739,"weaponSpeed":1.7,"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6]}, -{"id":78375,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,0,204,0,0,0,183,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78376,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,280,480,0,0,0,223,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78377,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[220,0,360,0,0,0,172,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78378,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[223,0,480,0,0,0,0,0,0,320,142,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78379,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[165,0,277,0,0,0,123,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1972,"weaponSpeed":2.6,"ilvl":384,"phase":4,"quality":4}, -{"id":78380,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,261,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78381,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,212,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78382,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,360,240,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78383,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,277,165,0,0,107,119,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":898,"weaponDamageMax":1669,"weaponSpeed":2.2,"ilvl":384,"phase":4,"quality":4}, -{"id":78384,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,360,220,157,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78385,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,480,280,0,0,195,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78386,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,480,280,195,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Morchok"}}]}, -{"id":78387,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,172,259,0,0,0,131,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2325,"weaponDamageMax":3489,"weaponSpeed":2.9,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78388,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,368,611,0,0,0,242,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78389,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[368,0,611,0,0,0,237,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78390,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[286,0,459,0,0,0,0,0,0,179,0,199,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78391,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,611,368,0,0,247,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78392,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,259,172,0,0,0,106,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1685,"weaponDamageMax":3131,"weaponSpeed":1.7,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78393,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,459,286,199,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78394,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,135,203,0,0,0,103,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1825,"weaponDamageMax":2738,"weaponSpeed":2.9,"ilvl":384,"phase":4,"quality":4}, -{"id":78395,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,280,480,0,0,0,184,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78396,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[280,0,480,0,0,0,183,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78397,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,140,0,152,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78398,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,480,280,0,0,189,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78399,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,203,135,0,0,0,83,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1323,"weaponDamageMax":2457,"weaponSpeed":1.7,"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78400,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,360,220,154,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warlord Zon'ozz"}}]}, -{"id":78401,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,529,824,0,0,266,0,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2165,"weaponDamageMax":3248,"weaponSpeed":2.7,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78402,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,368,611,0,0,220,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78403,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[529,0,824,0,0,0,362,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78404,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,353,215,160,0,0,127,0,0,0,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":780,"weaponDamageMax":1450,"weaponSpeed":1.5,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78405,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,611,368,207,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78406,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,459,286,176,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78407,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,411,646,0,0,206,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1699,"weaponDamageMax":2549,"weaponSpeed":2.7,"ilvl":384,"phase":4,"quality":4}, -{"id":78408,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,280,480,0,0,168,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78409,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[411,0,646,0,0,0,281,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2266,"weaponDamageMax":3399,"weaponSpeed":3.6,"ilvl":384,"phase":4,"quality":4}, -{"id":78410,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":1,"stats":[0,0,277,165,124,0,0,97,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":612,"weaponDamageMax":1138,"weaponSpeed":1.5,"ilvl":384,"phase":4,"quality":4}, -{"id":78411,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,480,280,157,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78412,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,360,220,135,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}]}, -{"id":78413,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,286,459,0,0,0,203,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78414,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,215,353,0,0,0,0,156,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":728,"weaponDamageMax":1353,"weaponSpeed":1.4,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78415,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,368,611,0,0,0,254,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78416,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[368,0,611,0,0,0,0,218,0,0,0,271,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78417,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,459,286,0,0,0,200,0,0,0,184,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78418,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,529,0,339,0,362,0,0,0,0,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2406,"weaponDamageMax":3609,"weaponSpeed":3,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78419,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,459,286,0,0,0,197,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78420,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,611,368,242,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78421,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,220,360,0,0,0,157,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78422,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,277,0,0,0,0,122,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":571,"weaponDamageMax":1062,"weaponSpeed":1.4,"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78423,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,280,480,0,0,0,193,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78424,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[280,0,480,0,0,0,0,167,0,0,0,209,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78425,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,360,220,0,0,0,155,0,0,0,142,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78426,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,0,266,0,280,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1888,"weaponDamageMax":2833,"weaponSpeed":3,"ilvl":384,"phase":4,"quality":4}, -{"id":78427,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,360,220,0,0,0,152,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78428,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,480,280,184,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Hagara the Stormbinder"}}]}, -{"id":78429,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,215,353,0,0,0,0,127,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1353,"weaponDamageMax":2513,"weaponSpeed":2.6,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78430,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,286,459,0,0,0,180,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78431,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,237,259,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78432,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[286,0,459,0,0,143,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78433,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,286,197,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78434,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,611,368,256,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78435,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,0,0,0,260,0,0,0,244,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78436,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,611,368,255,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78437,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,165,277,0,0,0,0,97,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1062,"weaponDamageMax":1972,"weaponSpeed":2.6,"ilvl":384,"phase":4,"quality":4}, -{"id":78438,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,220,360,0,0,0,140,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78439,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[280,0,480,0,0,0,0,0,0,0,183,198,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78440,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[220,0,360,0,0,109,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78441,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,360,220,152,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5,1],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78442,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,480,280,198,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78443,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,0,0,0,202,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78444,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,480,280,197,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Ultraxion"}}]}, -{"id":78445,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[529,0,824,0,0,0,362,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2887,"weaponDamageMax":4331,"weaponSpeed":3.6,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78446,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,286,459,0,0,0,211,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78447,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,368,611,0,0,0,287,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78448,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[266,0,459,0,0,0,0,0,0,176,0,192,0,0,0,0,0,0,0,0,0,0,12756,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78449,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,611,368,0,0,248,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78450,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,286,194,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12756,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78451,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,529,397,0,0,0,0,0,0,278,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2566,"weaponDamageMax":3850,"weaponSpeed":3.2,"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78452,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,260,241,0,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78453,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[411,0,646,0,0,0,281,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2266,"weaponDamageMax":3399,"weaponSpeed":3.6,"ilvl":384,"phase":4,"quality":4}, -{"id":78454,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,220,360,0,0,0,164,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78455,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,280,480,0,0,0,223,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78456,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[200,0,360,0,0,0,0,0,0,132,0,148,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9,4],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78457,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,480,280,0,0,190,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78458,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,220,150,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78459,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,307,0,0,0,0,0,0,218,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2014,"weaponDamageMax":3021,"weaponSpeed":3.2,"ilvl":384,"phase":4,"quality":4}, -{"id":78460,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[280,0,480,0,0,0,0,0,0,201,184,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Warmaster Blackhorn"}}]}, -{"id":78461,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,647,391,0,0,238,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1059,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78462,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,391,647,0,0,0,0,313,193,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78463,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,647,391,279,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1672,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78464,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,647,391,275,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2530,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78465,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[391,0,647,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78466,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,508,299,0,0,180,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78467,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,299,508,0,0,0,0,242,147,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78468,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,508,299,218,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78469,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,508,299,214,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78470,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[299,0,508,0,0,0,196,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":390,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Spine of Deathwing"}}]}, -{"id":78471,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,182,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2226,"weaponDamageMax":4135,"weaponSpeed":3,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78472,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,249,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1431,"weaponDamageMax":2658,"weaponSpeed":2.6,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78473,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,581,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2968,"weaponDamageMax":4453,"weaponSpeed":3.5,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78474,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,249,373,0,0,0,0,166,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1132,"weaponDamageMax":1698,"weaponSpeed":1.8,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78475,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,373,249,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":825,"weaponDamageMax":1533,"weaponSpeed":1.5,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78476,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,373,249,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1210,"weaponDamageMax":2249,"weaponSpeed":2.2,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78477,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,871,581,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2459,"weaponDamageMax":3689,"weaponSpeed":2.9,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78478,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[581,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3053,"weaponDamageMax":4580,"weaponSpeed":3.6,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78479,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[249,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1431,"weaponDamageMax":2658,"weaponSpeed":2.6,"ilvl":416,"phase":4,"quality":4,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78480,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,143,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1747,"weaponDamageMax":3245,"weaponSpeed":3,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78481,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,195,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1123,"weaponDamageMax":2086,"weaponSpeed":2.6,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78482,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,455,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2329,"weaponDamageMax":3495,"weaponSpeed":3.5,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[2,1],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78483,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,195,293,0,0,0,0,130,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":888,"weaponDamageMax":1333,"weaponSpeed":1.8,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[6],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78484,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,293,195,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":647,"weaponDamageMax":1203,"weaponSpeed":1.5,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78485,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,293,195,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":950,"weaponDamageMax":1765,"weaponSpeed":2.2,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78486,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,683,455,0,0,0,0,0,0,0,0,0,0,2608,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1930,"weaponDamageMax":2896,"weaponSpeed":2.9,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78487,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[455,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2396,"weaponDamageMax":3595,"weaponSpeed":3.6,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78488,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[195,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1123,"weaponDamageMax":2086,"weaponSpeed":2.6,"ilvl":390,"phase":4,"quality":4,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Madness of Deathwing"}}]}, -{"id":78489,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,286,459,0,0,0,0,0,184,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78490,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,459,286,0,164,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78491,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,459,286,169,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78492,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[286,0,459,0,0,0,0,194,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78493,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[286,0,459,0,0,0,0,0,0,0,179,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"unique":true,"heroic":true,"sources":[{"drop":{"difficulty":6,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78494,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,220,360,0,0,0,0,0,142,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[2,6,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78495,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,360,220,0,126,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[5,1,7,3,8],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78496,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,360,220,130,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[4,5,1,7],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78497,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[220,0,360,0,0,0,0,149,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78498,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[220,0,360,0,0,0,0,0,0,0,138,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"drop":{"difficulty":9,"zoneId":5892,"otherName":"Shared Boss Loot"}}]}, -{"id":78657,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,282,0,0,375,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78658,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,347,0,318,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78659,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,311,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78660,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,824,489,336,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78661,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,489,824,0,0,337,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78662,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,824,489,320,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78663,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,312,0,353,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78664,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,489,824,0,0,0,0,342,0,0,0,330,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78665,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,489,824,0,0,0,406,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78666,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,611,388,0,0,0,270,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78667,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,388,611,0,0,0,0,0,282,0,0,231,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78668,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,252,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78669,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[290,0,611,0,0,186,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78670,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,0,284,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78671,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,611,388,0,225,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78672,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,611,388,268,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78673,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,611,388,274,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78674,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,388,611,0,0,233,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78675,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,0,258,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78676,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,611,388,0,0,0,276,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78677,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[270,0,611,0,0,176,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78678,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[290,0,611,0,0,186,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78679,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,388,611,0,0,256,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78680,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,611,388,268,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78681,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,611,388,0,225,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78682,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,611,388,225,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78683,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,611,388,280,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78684,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,388,611,0,0,0,276,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78685,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,824,489,0,0,0,289,0,0,0,368,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78686,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,489,824,0,0,391,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78687,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,0,0,387,270,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78688,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,0,331,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78689,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,0,529,238,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78690,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,824,489,356,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78691,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,824,489,375,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78692,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,824,489,350,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78693,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,316,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78694,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,489,824,0,0,357,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78695,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,513,0,254,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78696,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,824,489,315,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78697,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,238,529,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78698,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,489,824,0,0,0,393,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78699,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,489,824,0,0,0,318,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78700,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,824,489,353,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78701,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78702,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78703,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78704,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,489,824,0,0,273,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78705,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,329,332,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78706,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,327,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78707,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,288,0,0,0,366,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78708,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,489,824,0,0,322,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78709,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,489,824,0,0,0,350,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78710,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,824,509,366,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78711,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,824,489,304,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78712,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,319,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78713,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,489,824,0,0,238,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78714,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,824,489,0,0,0,381,0,0,0,254,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78715,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,319,342,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78716,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,0,299,362,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78717,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,824,489,344,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78718,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,824,489,352,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78719,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,824,489,361,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78720,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78721,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78722,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78723,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,824,489,332,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78724,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,489,824,0,0,328,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78725,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,824,489,356,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78726,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,824,489,362,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78727,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,329,0,0,0,343,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78728,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,362,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78729,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,824,489,0,307,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78730,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,824,489,0,307,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78731,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,307,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78732,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,0,316,349,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78733,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,368,611,0,0,265,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78734,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[270,0,611,0,0,0,0,0,206,0,0,368,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78735,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,253,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78736,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,222,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78737,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,368,611,0,0,0,274,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78738,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,241,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78739,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,254,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78740,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,611,368,248,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78741,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,245,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78742,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,0,208,0,0,0,278,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78743,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,0,0,198,0,0,291,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78744,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,611,368,248,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78745,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[251,0,611,0,0,0,0,0,226,0,380,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78746,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,611,368,274,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78747,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,611,368,260,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78748,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78749,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78750,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78751,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[270,0,611,0,0,0,0,0,176,0,0,398,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":410,"phase":4,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78752,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,211,0,0,292,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78753,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,266,0,243,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78754,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,234,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78755,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,646,371,254,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78756,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,371,646,0,0,256,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78757,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,646,371,249,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78758,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,237,0,272,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78759,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,371,646,0,0,0,0,263,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78760,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,371,646,0,0,0,316,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78761,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,480,300,0,0,0,211,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78762,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,300,480,0,0,0,0,0,220,0,0,179,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78763,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,194,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78764,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[223,0,480,0,0,142,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78765,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,0,223,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78766,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,480,300,0,173,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78767,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,480,300,210,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78768,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,480,300,214,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78769,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,300,480,0,0,181,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78770,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,0,200,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78771,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,480,300,0,0,0,217,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78772,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[203,0,480,0,0,132,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78773,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[223,0,480,0,0,142,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78774,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,300,480,0,0,198,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78775,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,480,300,209,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78776,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,480,300,0,173,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78777,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,480,300,173,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78778,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,480,300,218,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78779,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,300,480,0,0,0,217,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78780,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,218,0,0,0,285,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78781,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,371,646,0,0,303,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78782,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,304,199,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78783,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,0,252,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78784,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,0,411,178,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78785,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,646,371,275,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78786,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,646,371,292,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78787,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,646,371,271,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78788,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,237,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78789,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,371,646,0,0,276,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78790,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,395,0,194,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78791,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,646,371,244,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78792,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,178,411,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78793,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,371,646,0,0,0,303,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78794,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,371,646,0,0,0,239,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78795,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,646,371,274,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78796,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78797,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78798,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78799,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,371,646,0,0,204,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78800,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,256,250,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78801,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,244,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78802,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,219,0,0,0,281,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78803,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,371,646,0,0,243,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78804,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,371,646,0,0,0,271,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78805,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,646,391,284,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78806,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,646,371,231,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78807,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,242,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78808,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,371,646,0,0,178,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78809,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,646,371,0,0,0,291,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78810,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,246,260,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78811,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,226,280,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78812,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,646,371,263,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78813,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,646,371,271,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78814,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,646,371,280,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78815,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78816,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78817,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78818,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,646,371,253,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78819,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,371,646,0,0,249,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78820,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,646,371,275,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78821,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,646,371,280,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78822,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,250,0,0,0,264,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78823,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,280,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78824,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,646,371,0,230,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78825,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,646,371,0,230,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78826,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,230,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78827,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,241,268,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78828,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,280,480,0,0,206,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071}, -{"id":78829,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[203,0,480,0,0,0,0,0,162,0,0,280,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074}, -{"id":78830,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,196,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073}, -{"id":78831,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,168,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057}, -{"id":78832,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,280,480,0,0,0,213,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061}, -{"id":78833,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,183,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068}, -{"id":78834,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,196,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069}, -{"id":78835,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,480,280,190,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060}, -{"id":78836,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,187,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070}, -{"id":78837,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,0,157,0,0,0,216,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064}, -{"id":78838,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,0,0,147,0,0,229,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058}, -{"id":78839,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,480,280,190,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059}, -{"id":78840,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[189,0,480,0,0,0,0,0,175,0,292,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065}, -{"id":78841,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,480,280,213,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063}, -{"id":78842,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,480,280,202,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066}, -{"id":78843,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062}, -{"id":78844,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072}, -{"id":78845,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying light","setId":1067}, -{"id":78846,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[203,0,480,0,0,0,0,0,132,0,0,310,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":384,"phase":4,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056}, -{"id":78878,"name":"Spine of the Thousand Cuts","icon":"inv_sword_1h_deathwingraid_d_01","type":13,"weaponType":9,"handType":1,"stats":[0,208,312,0,0,0,0,122,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1198,"weaponDamageMax":2226,"weaponSpeed":2.6,"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78879,"name":"Sash of Relentless Truth","icon":"inv_belt_robe_raidpriest_k_01","type":8,"armorType":1,"stats":[0,0,542,341,0,0,0,228,0,0,0,233,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78882,"name":"Nightblind Cinch","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,341,542,0,0,0,248,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78884,"name":"Girdle of Fungal Dreams","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,341,228,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78885,"name":"Dragoncarver Belt","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,341,542,0,0,0,0,239,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78886,"name":"Belt of Ghostly Graces","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,213,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78887,"name":"Girdle of Soulful Mending","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,341,229,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78888,"name":"Waistguard of Bleeding Bone","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[341,0,542,0,0,0,0,237,225,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":78889,"name":"Waistplate of the Desecrated Future","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[341,0,542,0,0,224,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":397,"phase":4,"quality":4,"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}]}, -{"id":92074,"name":"Martial Sword","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":776,"weaponDamageMax":1443,"weaponSpeed":2.4,"ilvl":359,"phase":4,"quality":2}, -{"id":92075,"name":"Scourgeheart Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92076,"name":"Scourgeheart Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92077,"name":"Naturalist Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,0,286,190,0,145,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92078,"name":"Naturalist Cuffs","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,190,286,0,0,145,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92079,"name":"Forestwalker Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,190,286,0,0,136,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92080,"name":"Naturalist Bindings","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92081,"name":"Enlightened Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92082,"name":"Partisan Armplates","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92083,"name":"Partisan Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,145,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92084,"name":"Partisan Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,136,111,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92085,"name":"Deliverer Bindings","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,0,145,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92086,"name":"Deliverer Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,136,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92087,"name":"Darkwalker Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,190,286,0,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92088,"name":"Thundercaller Armbands","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92089,"name":"Thundercaller Armguard","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,190,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92090,"name":"Thundercaller Bracers","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92091,"name":"Martial Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92092,"name":"Soulseizer Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92093,"name":"Martial Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92094,"name":"Naturalist Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92095,"name":"Forestwalker Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,253,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92096,"name":"Naturalist Waistband","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92097,"name":"Enlightened Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92098,"name":"Partisan Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,380,253,0,0,0,148,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92099,"name":"Partisan Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,128,0,0,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92100,"name":"Partisan Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92101,"name":"Deliverer Sash","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,0,0,148,0,0,0,181,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92102,"name":"Deliverer Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92103,"name":"Darkwalker Waistband","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92104,"name":"Thundercaller Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,380,253,0,0,0,193,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92105,"name":"Thundercaller Waistguard","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,253,380,0,0,0,128,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92106,"name":"Thundercaller Girdle","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92107,"name":"Martial Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92108,"name":"Soulseizer Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92109,"name":"Martial Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92110,"name":"Scourgeheart Blade","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1564,"weaponSpeed":2.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92111,"name":"Partisan Sword","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":776,"weaponDamageMax":1443,"weaponSpeed":2.4,"ilvl":359,"phase":4,"quality":2}, -{"id":92112,"name":"Thundercaller Mace","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1564,"weaponSpeed":2.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92113,"name":"Deliverer Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92114,"name":"Partisan Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92115,"name":"Deliverer Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92116,"name":"Thundercaller Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92117,"name":"Darkwalker Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92118,"name":"Darkwalker Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92119,"name":"Thundercaller Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92120,"name":"Thundercaller Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92121,"name":"Thundercaller Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92122,"name":"Thundercaller Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92123,"name":"Thundercaller Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92124,"name":"Soulseizer Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92125,"name":"Soulseizer Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92126,"name":"Martial Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92127,"name":"Martial Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92128,"name":"Martial Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92129,"name":"Martial Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92130,"name":"Scourgeheart Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92131,"name":"Scourgeheart Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92132,"name":"Naturalist Belt","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92133,"name":"Naturalist Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92134,"name":"Scourgeheart Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92135,"name":"Scourgeheart Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92136,"name":"Naturalist Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92137,"name":"Naturalist Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92138,"name":"Naturalist Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92139,"name":"Naturalist Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92140,"name":"Naturalist Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92141,"name":"Forestwalker Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92142,"name":"Forestwalker Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92143,"name":"Enlightened Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92144,"name":"Enlightened Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92145,"name":"Partisan Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92146,"name":"Partisan Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92147,"name":"Partisan Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92148,"name":"Partisan Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92149,"name":"Partisan Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92150,"name":"Deliverer Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92151,"name":"Deliverer Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92152,"name":"Naturalist Pauldrons","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,253,380,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92153,"name":"Forestwalker Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,253,380,0,0,0,0,193,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92154,"name":"Enlightened Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,193,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92155,"name":"Partisan Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92156,"name":"Partisan Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92157,"name":"Partisan Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92158,"name":"Deliverer Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92159,"name":"Deliverer Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,193,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92160,"name":"Darkwalker Shoulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,253,380,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92161,"name":"Thundercaller Pauldrons","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,380,253,0,0,193,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92162,"name":"Thundercaller Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,253,380,0,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92163,"name":"Soulseizer Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92164,"name":"Thundercaller Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92165,"name":"Martial Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92166,"name":"Martial Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92167,"name":"Scourgeheart Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92168,"name":"Scourgeheart Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92169,"name":"Enlightened Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92170,"name":"Deliverer Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92171,"name":"Deliverer Vestments","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,259,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92172,"name":"Soulseizer Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92173,"name":"Partisan Bulwark","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,136,0,111,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92174,"name":"Partisan Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,0,111,0,0,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92175,"name":"Thundercaller Aegis","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,136,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92176,"name":"Thundercaller Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,111,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92177,"name":"Martial Bulwark","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,111,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92178,"name":"Scourgeheart Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92179,"name":"Scourgeheart Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,148,0,0,181,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92180,"name":"Naturalist Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,380,253,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92181,"name":"Naturalist Shoulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,380,253,148,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92182,"name":"Partisan Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92183,"name":"Deliverer Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92184,"name":"Deliverer Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92185,"name":"Thundercaller Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92186,"name":"Darkwalker Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92187,"name":"Thundercaller Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92188,"name":"Thundercaller Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92189,"name":"Soulseizer Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92190,"name":"Martial Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92191,"name":"Martial Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92192,"name":"Darkwalker Shiv","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,86,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":582,"weaponDamageMax":1083,"weaponSpeed":1.8,"ilvl":359,"phase":4,"quality":2}, -{"id":92193,"name":"Forestwalker Rifle","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,107,161,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1309,"weaponDamageMax":2431,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92194,"name":"Enlightened Wand","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1048,"weaponDamageMax":1947,"weaponSpeed":1.7,"ilvl":359,"phase":4,"quality":2}, -{"id":92195,"name":"Deliverer Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1048,"weaponDamageMax":1947,"weaponSpeed":1.7,"ilvl":359,"phase":4,"quality":2}, -{"id":92196,"name":"Soulseizer Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,161,107,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1048,"weaponDamageMax":1947,"weaponSpeed":1.7,"ilvl":359,"phase":4,"quality":2}, -{"id":92197,"name":"Thundercaller Legguards","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,341,512,0,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92198,"name":"Soulseizer Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92199,"name":"Thundercaller Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92200,"name":"Martial Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92201,"name":"Martial Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92202,"name":"Partisan Scepter","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,105,0,0,86,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.4,"ilvl":359,"phase":4,"quality":2}, -{"id":92203,"name":"Darkwalker Sword","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,0,97,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1564,"weaponSpeed":2.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92204,"name":"Darkwalker Dagger","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,0,105,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":582,"weaponDamageMax":1083,"weaponSpeed":1.8,"ilvl":359,"phase":4,"quality":2}, -{"id":92205,"name":"Thundercaller Gavel","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,0,0,0,86,0,0,0,105,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.4,"ilvl":359,"phase":4,"quality":2}, -{"id":92206,"name":"Thundercaller Scepter","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,97,0,0,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.4,"ilvl":359,"phase":4,"quality":2}, -{"id":92207,"name":"Scourgeheart Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92208,"name":"Naturalist Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92209,"name":"Scourgeheart Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92210,"name":"Naturalist Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92211,"name":"Naturalist Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92212,"name":"Enlightened Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92213,"name":"Forestwalker Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92214,"name":"Partisan Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92215,"name":"Partisan Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92216,"name":"Thundercaller Coif","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92217,"name":"Thundercaller Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,341,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92218,"name":"Soulseizer Cowl","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92219,"name":"Thundercaller Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92220,"name":"Martial Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92221,"name":"Martial Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,244,200,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92222,"name":"Scourgeheart Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,173,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92223,"name":"Scourgeheart Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,173,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92224,"name":"Naturalist Legguards","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,341,512,0,0,0,259,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92225,"name":"Naturalist Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92226,"name":"Naturalist Britches","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,0,512,341,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92227,"name":"Forestwalker Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,341,512,0,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92228,"name":"Enlightened Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,200,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92229,"name":"Partisan Leggings","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,512,341,0,0,0,173,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92230,"name":"Partisan Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92231,"name":"Partisan Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92232,"name":"Deliverer Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92233,"name":"Deliverer Pants","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92234,"name":"Darkwalker Britches","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,341,512,0,0,173,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92235,"name":"Thundercaller Legwraps","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,512,341,173,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92236,"name":"Thundercaller Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,380,253,0,0,181,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92237,"name":"Thundercaller Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,253,380,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92238,"name":"Soulseizer Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92239,"name":"Thundercaller Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92240,"name":"Martial Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92241,"name":"Martial Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92242,"name":"Scourgeheart Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,228,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92243,"name":"Scourgeheart Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92244,"name":"Naturalist Helm","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92245,"name":"Naturalist Headpiece","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92246,"name":"Naturalist Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92247,"name":"Forestwalker Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,341,512,0,0,200,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92248,"name":"Partisan Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,0,0,200,0,0,244,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92249,"name":"Enlightened Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,0,200,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92250,"name":"Partisan Headpiece","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,512,341,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92251,"name":"Partisan Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92252,"name":"Deliverer Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,173,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92253,"name":"Deliverer Cowl","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,173,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92254,"name":"Darkwalker Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,0,173,0,0,259,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92255,"name":"Thundercaller Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92256,"name":"Soulseizer Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92257,"name":"Soulseizer Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92258,"name":"Martial Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92259,"name":"Martial Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92260,"name":"Martial Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92261,"name":"Martial Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92262,"name":"Scourgeheart Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92263,"name":"Scourgeheart Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92264,"name":"Naturalist Handguards","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,253,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92265,"name":"Naturalist Grips","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92266,"name":"Naturalist Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92267,"name":"Forestwalker Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,253,380,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92268,"name":"Partisan Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92269,"name":"Enlightened Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92270,"name":"Partisan Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,380,253,169,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92271,"name":"Partisan Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92272,"name":"Deliverer Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92273,"name":"Deliverer Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,181,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92274,"name":"Darkwalker Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,253,380,0,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92275,"name":"Enlightened Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92276,"name":"Enlightened Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92277,"name":"Partisan Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92278,"name":"Partisan Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92279,"name":"Partisan Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92280,"name":"Partisan Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92281,"name":"Deliverer Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92282,"name":"Deliverer Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92283,"name":"Partisan Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92284,"name":"Partisan Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92285,"name":"Deliverer Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92286,"name":"Deliverer Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92287,"name":"Darkwalker Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92288,"name":"Darkwalker Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92289,"name":"Thundercaller Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92290,"name":"Thundercaller Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92291,"name":"Thundercaller Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92292,"name":"Thundercaller Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92293,"name":"Thundercaller Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92294,"name":"Deliverer Boots","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92295,"name":"Darkwalker Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,253,380,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92296,"name":"Thundercaller Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92297,"name":"Thundercaller Greaves","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,253,380,0,0,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92298,"name":"Soulseizer Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92299,"name":"Thundercaller Sabatons","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,380,253,0,0,0,169,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92300,"name":"Martial Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92301,"name":"Martial Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92302,"name":"Scourgeheart Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92303,"name":"Scourgeheart Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92304,"name":"Naturalist Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92305,"name":"Naturalist Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92306,"name":"Scourgeheart Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92307,"name":"Scourgeheart Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92308,"name":"Naturalist Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92309,"name":"Naturalist Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92310,"name":"Naturalist Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92311,"name":"Naturalist Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92312,"name":"Forestwalker Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92313,"name":"Forestwalker Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92314,"name":"Darkwalker Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92315,"name":"Deliverer Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92316,"name":"Thundercaller Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92317,"name":"Thundercaller Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92318,"name":"Thundercaller Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92319,"name":"Martial Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92320,"name":"Soulseizer Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,0,127,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92321,"name":"Martial Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92322,"name":"Scourgeheart Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92323,"name":"Scourgeheart Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92324,"name":"Naturalist Footpads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,253,380,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92325,"name":"Naturalist Treads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92326,"name":"Naturalist Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92327,"name":"Forestwalker Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,253,380,0,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92328,"name":"Partisan Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92329,"name":"Enlightened Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92330,"name":"Partisan Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,380,253,0,0,181,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92331,"name":"Partisan Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92332,"name":"Deliverer Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92333,"name":"Partisan Battleplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92334,"name":"Partisan Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,512,341,228,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92335,"name":"Partisan Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92336,"name":"Darkwalker Jerkin","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,341,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92337,"name":"Thundercaller Tunic","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92338,"name":"Thundercaller Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,512,341,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92339,"name":"Thundercaller Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,341,512,0,0,0,0,0,228,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92340,"name":"Martial Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92341,"name":"Martial Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92342,"name":"Scourgeheart Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92343,"name":"Scourgeheart Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92344,"name":"Naturalist Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92345,"name":"Naturalist Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92346,"name":"Naturalist Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92347,"name":"Forestwalker Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92348,"name":"Enlightened Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92349,"name":"Partisan Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92350,"name":"Partisan Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92351,"name":"Partisan Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92352,"name":"Deliverer Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92353,"name":"Scourgeheart Maul","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,0,0,200,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2694,"weaponSpeed":3.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92354,"name":"Scourgeheart Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2694,"weaponSpeed":3.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92355,"name":"Naturalist Stave","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92356,"name":"Naturalist Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2245,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92357,"name":"Forestwalker Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2245,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92358,"name":"Naturalist Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,200,0,0,244,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92359,"name":"Enlightened Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92360,"name":"Partisan Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2694,"weaponSpeed":3.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92361,"name":"Deliverer Stave","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,244,0,0,0,200,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92362,"name":"Deliverer Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,244,0,0,200,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92363,"name":"Martial Maul","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2694,"weaponSpeed":3.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92364,"name":"Martial Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1795,"weaponDamageMax":2694,"weaponSpeed":3.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92365,"name":"Soulseizer Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92366,"name":"Scourgeheart Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,200,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92367,"name":"Scourgeheart Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92368,"name":"Naturalist Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,341,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92369,"name":"Naturalist Tunic","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,512,341,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92370,"name":"Naturalist Jerkin","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,512,341,198,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92371,"name":"Forestwalker Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,341,512,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92372,"name":"Waterdancer Spire","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1496,"weaponDamageMax":2245,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92373,"name":"Waterdancer Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,200,0,0,244,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":832,"weaponSpeed":3,"ilvl":359,"phase":4,"quality":2}, -{"id":92374,"name":"Waterdancer Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,512,341,198,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92375,"name":"Waterdancer Vest","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,341,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92376,"name":"Waterdancer Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92377,"name":"Waterdancer Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92378,"name":"Waterdancer Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92379,"name":"Waterdancer Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,253,380,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92380,"name":"Waterdancer Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92381,"name":"Waterdancer Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92382,"name":"Waterdancer Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92383,"name":"Waterdancer Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92384,"name":"Waterdancer Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92385,"name":"Waterdancer Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92386,"name":"Waterdancer Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92387,"name":"Waterdancer Handguards","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,253,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92388,"name":"Waterdancer Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92389,"name":"Waterdancer Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92390,"name":"Waterdancer Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,512,341,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92391,"name":"Waterdancer Legguards","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,341,512,0,0,0,259,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92392,"name":"Waterdancer Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92393,"name":"Waterdancer Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92394,"name":"Waterdancer Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92395,"name":"Waterdancer Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,380,253,148,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92396,"name":"Waterdancer Pauldrons","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,253,380,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92397,"name":"Waterdancer Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92398,"name":"Waterdancer Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92399,"name":"Waterdancer Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92400,"name":"Waterdancer Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92401,"name":"Waterdancer Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92402,"name":"Waterdancer Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92403,"name":"Waterdancer Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92404,"name":"Waterdancer Cord","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92405,"name":"Waterdancer Sword","icon":"inv_sword_1h_cataclysm_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":841,"weaponDamageMax":1564,"weaponSpeed":2.6,"ilvl":359,"phase":4,"quality":2}, -{"id":92406,"name":"Waterdancer Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":92407,"name":"Waterdancer Cuffs","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,190,286,0,0,145,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":359,"phase":4,"quality":2}, -{"id":226178,"name":"Vicious Eyeball of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,190,127,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226179,"name":"Vicious Jawbone of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[127,0,190,0,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226180,"name":"Vicious Charm of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,127,190,0,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226181,"name":"Vicious Fur Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,225,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226182,"name":"Vicious Embersilk Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,338,225,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226183,"name":"Vicious Hide Cloak","icon":"inv_misc_cape_16","type":4,"stats":[225,0,338,0,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226184,"name":"Vicious Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,338,225,150,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226185,"name":"Vicious Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,225,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226186,"name":"Vicious Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[225,0,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226187,"name":"Vicious Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[225,0,338,0,0,0,0,0,150,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226188,"name":"Vicious Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,338,225,0,0,0,150,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":226189,"name":"Vicious Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,225,338,0,0,0,0,0,150,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":4,"quality":3}, -{"id":232012,"name":"Coren's Chilled Chromium Coaster","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232013,"name":"Mithril Stopwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232014,"name":"Petrified Pickled Egg","icon":"inv_egg_02","type":12,"stats":[0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232015,"name":"Brawler's Trophy","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232016,"name":"Bubblier Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232017,"name":"Bitterer Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":353,"phase":2,"quality":4,"unique":true}, -{"id":232030,"name":"Direbrew's Bloodied Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,80,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":612,"weaponDamageMax":1137,"weaponSpeed":2,"ilvl":353,"phase":2,"quality":4}, -{"id":232031,"name":"Tremendous Tankard O' Terror","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,0,94,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1464,"weaponSpeed":2.6,"ilvl":353,"phase":2,"quality":4}, -{"id":238334,"name":"Heartbreak Charm","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,341,227,0,0,147,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":238335,"name":"Winking Eye of Love","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,341,227,147,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":238336,"name":"Sweet Perfume Broach","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,227,341,0,0,0,147,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":238337,"name":"Choker of the Pure Heart","icon":"inv_jewelry_necklace_45","type":2,"stats":[227,0,341,0,0,154,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4}, -{"id":238338,"name":"Shard of Pirouetting Happiness","icon":"inv_jewelry_necklace_02","type":2,"stats":[227,0,341,0,0,115,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":378,"phase":3,"quality":4} +{"id":27510,"name":"Tidefury Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,46,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"zoneId":3715,"otherName":"Warlord Kalithresh"}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":46,"3":25,"4":18,"22":489},"isBase":true}}}, +{"id":27802,"name":"Tidefury Shoulderguards","icon":"inv_shoulder_31","type":3,"armorType":3,"stats":[0,0,39,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"zoneId":3714,"otherName":"Warbringer O'mrogg"}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":16,"4":16,"22":586},"isBase":true}}}, +{"id":27909,"name":"Tidefury Kilt","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,0,64,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"zoneId":3789,"otherName":"Murmur"}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":64,"3":30,"6":19,"22":684},"isBase":true}}}, +{"id":28231,"name":"Tidefury Chestpiece","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,46,31,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"zoneId":3846,"otherName":"Harbinger Skyriss"}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":46,"3":31,"5":10,"6":10,"22":782},"isBase":true}}}, +{"id":28349,"name":"Tidefury Helm","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,0,53,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Tidefury Raiment","setId":630,"expansion":2,"sources":[{"drop":{"zoneId":3847,"otherName":"Warp Splinter"}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":27,"4":16,"22":635},"isBase":true}}}, +{"id":29309,"name":"Band of the Eternal Restorer","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,49,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":152,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"152":{"randPropPoints":60,"stats":{"2":49,"3":29,"4":26},"isBase":true}}}, +{"id":31026,"name":"Slayer's Handguards","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,34,65,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":34,"2":65,"5":18,"6":25,"22":494},"isBase":true}}}, +{"id":31027,"name":"Slayer's Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,46,92,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":46,"2":92,"5":15,"6":28,"22":642},"isBase":true}}}, +{"id":31028,"name":"Slayer's Chestguard","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,46,92,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":46,"2":92,"5":15,"6":28,"22":790},"isBase":true}}}, +{"id":31029,"name":"Slayer's Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,47,92,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":47,"2":92,"6":45,"22":691},"isBase":true}}}, +{"id":31030,"name":"Slayer's Shoulderpads","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,34,66,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":34,"2":66,"6":25,"22":592},"isBase":true}}}, +{"id":34448,"name":"Slayer's Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,32,42,0,0,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":32,"2":42,"5":18,"7":17,"22":371},"isBase":true}}}, +{"id":34558,"name":"Slayer's Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,43,48,0,0,30,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":43,"2":48,"5":30,"7":33,"22":477},"isBase":true}}}, +{"id":34575,"name":"Slayer's Boots","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,43,52,0,0,28,16,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Slayer's Armor","setId":668,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":43,"2":52,"5":28,"6":16,"8":24,"22":583},"isBase":true}}}, +{"id":34677,"name":"Shattered Sun Pendant of Restoration","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,19,32,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":19,"3":32,"4":18},"isBase":true}}}, +{"id":44924,"name":"Sun-Lute of the Phoenix King","icon":"inv_wand_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":4,"stats":[1167,0,1751,0,0,0,702,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":12154,"weaponDamageMax":20258,"weaponSpeed":3.8,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9105,"weaponDamageMax":15176,"stats":{"0":875,"2":1312,"6":526,"11":617}},"483":{"randPropPoints":2061,"weaponDamageMin":11281,"weaponDamageMax":18803,"stats":{"0":1084,"2":1626,"6":651,"11":765}},"487":{"randPropPoints":2139,"weaponDamageMin":11709,"weaponDamageMax":19517,"stats":{"0":1125,"2":1687,"6":676,"11":794},"upgradeStep":1}}}, +{"id":45703,"name":"Spark of Hope","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"4":106},"isBase":true}}}, +{"id":60226,"name":"Dargonax's Signet","icon":"inv_misc_rubystar","type":11,"stats":[229,0,344,0,0,0,113,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"0":229,"2":344,"6":113,"11":153},"isBase":true}}}, +{"id":60227,"name":"Caelestrasz's Will","icon":"inv_jewelry_necklace_46","type":2,"stats":[229,0,344,0,0,0,0,0,0,138,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"0":229,"2":344,"9":138,"11":128},"isBase":true}}}, +{"id":60228,"name":"Bracers of the Mat'redor","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[229,0,344,0,0,0,153,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"0":229,"2":344,"6":153,"7":113,"22":1589},"isBase":true}}}, +{"id":60229,"name":"War-Torn Crushers","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[306,0,458,0,0,0,0,0,0,184,144,0,0,0,0,0,0,0,0,0,0,0,2497,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":581,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":581,"stats":{"0":306,"2":458,"9":184,"10":144,"22":2497},"isBase":true}}}, +{"id":60230,"name":"Twilight Scale Leggings","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,351,617,0,0,0,254,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":782,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":782,"stats":{"1":351,"2":617,"6":254,"11":234,"22":2286},"isBase":true}}}, +{"id":60231,"name":"Belt of the Fallen Brood","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,266,458,0,0,0,204,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":581,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":581,"stats":{"1":266,"2":458,"6":204,"11":164,"22":1028},"isBase":true}}}, +{"id":60232,"name":"Shroud of Endless Grief","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"armorType":1,"stats":[0,0,344,209,0,0,0,133,0,0,0,153,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"2":344,"3":209,"7":133,"11":153,"22":699},"isBase":true}}}, +{"id":60233,"name":"Shard of Woe","icon":"spell_frost_iceshard","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":581,"ilvl":379,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":581,"isBase":true}}}, +{"id":60234,"name":"Bindings of Bleak Betrayal","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,344,209,153,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"2":344,"3":209,"4":153,"7":133,"22":1589},"isBase":true}}}, +{"id":60235,"name":"Boots of Az'galada","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,458,266,174,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1796,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":581,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":581,"stats":{"2":458,"3":266,"4":174,"11":194,"22":1796},"isBase":true}}}, +{"id":60236,"name":"Nightmare Rider's Boots","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,458,266,164,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":581,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":581,"stats":{"2":458,"3":266,"4":164,"11":204,"22":1257},"isBase":true}}}, +{"id":60237,"name":"Crown of the Twilight Queen","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,617,351,0,0,264,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1136,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":782,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":782,"stats":{"2":617,"3":351,"6":264,"7":244,"22":1136},"isBase":true}}}, +{"id":60238,"name":"Bracers of the Dark Mother","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,344,209,133,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":436,"ilvl":379,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Sinestra"}}],"scalingOptions":{"379":{"randPropPoints":436,"stats":{"2":344,"3":209,"4":133,"11":153,"22":612},"isBase":true}}}, +{"id":63101,"name":"Twilight's Hammer Belt","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,772,515,0,301,0,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,1029,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"2":772,"3":515,"5":301,"11":368,"22":1029},"isBase":true}}}, +{"id":65003,"name":"Reclaimed Ashkandi, Greatsword of the Brotherhood","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,257,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4277,"weaponDamageMax":6417,"weaponSpeed":3.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4277,"weaponDamageMax":6417,"stats":{"0":385,"2":578,"5":257,"6":257},"isBase":true}}}, +{"id":65004,"name":"Circuit Design Breastplate","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,217,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":217,"11":257,"22":2548},"isBase":true}}}, +{"id":65007,"name":"Akirus the Worm-Breaker","icon":"inv_mace_2h_grimbatolraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,0,257,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"8":257,"11":257},"isBase":true}}}, +{"id":65017,"name":"Andoros, Fist of the Dragon King","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,247,165,110,0,0,0,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"stats":{"2":247,"3":165,"4":110,"11":110,"14":2207},"isBase":true}}}, +{"id":65018,"name":"Shadow of Dread","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"armorType":1,"stats":[0,0,322,215,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"11":143,"22":673},"isBase":true}}}, +{"id":65019,"name":"Shadowblaze Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"5":217,"11":257,"22":1346},"isBase":true}}}, +{"id":65020,"name":"Crown of Burning Waters","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,257,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":257,"11":197,"22":1093},"isBase":true}}}, +{"id":65021,"name":"Manacles of the Sleeping Beast","icon":"inv_bracer_leather_raiddruid_i_01","type":6,"armorType":2,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"11":143,"22":775},"isBase":true}}}, +{"id":65022,"name":"Belt of the Blackhand","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"6":191,"22":2002},"isBase":true}}}, +{"id":65023,"name":"Akmin-Kurai, Dominion's Shield","icon":"inv_shield_bwdraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"10":143,"11":143,"22":12103},"isBase":true}}}, +{"id":65024,"name":"Crul'korak, the Lightning's Arc","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"7":110},"isBase":true}}}, +{"id":65025,"name":"Rage of Ages","icon":"inv_misc_necklacea8","type":2,"stats":[215,0,322,0,0,143,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"5":143,"11":143},"isBase":true}}}, +{"id":65026,"name":"Prestor's Talisman of Machination","icon":"inv_jewelry_necklace_17","type":12,"stats":[0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":363},"isBase":true}}}, +{"id":65027,"name":"Pauldrons of the Apocalypse","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,0,0,0,125,0,266,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":217,"2":429,"8":125,"10":266,"22":2669},"isBase":true}}}, +{"id":65028,"name":"Chimaeron Armguards","icon":"inv_bracer_mail_raidhunter_i_01","type":6,"armorType":3,"stats":[0,215,322,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"5":143,"6":143,"22":1115},"isBase":true}}}, +{"id":65029,"name":"Jar of Ancient Remedies","icon":"inv_misc_cat_trinket06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":544,"isBase":true}}}, +{"id":65030,"name":"Leggings of Consuming Flames","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,247,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":247,"11":227,"22":1550},"isBase":true}}}, +{"id":65031,"name":"Flash Freeze Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"7":191,"22":2224},"isBase":true}}}, +{"id":65033,"name":"Treads of Flawless Creation","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"11":191,"22":1752},"isBase":true}}}, +{"id":65034,"name":"Belt of Arcane Storms","icon":"inv_belt_cloth_raidwarlock_i_01","type":8,"armorType":1,"stats":[0,0,429,266,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":171,"7":191,"22":757},"isBase":true}}}, +{"id":65035,"name":"Cloak of Biting Chill","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,215,322,0,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":143,"11":143,"22":673},"isBase":true}}}, +{"id":65036,"name":"Mace of Acrid Death","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"10":110,"11":110},"isBase":true}}}, +{"id":65037,"name":"Tunic of Failed Experiments","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,257,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"5":257,"11":217,"22":2548},"isBase":true}}}, +{"id":65038,"name":"Dragon Bone Warhelm","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,0,0,0,135,0,0,325,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":293,"2":578,"8":135,"11":325,"22":2891},"isBase":true}}}, +{"id":65039,"name":"Aberration's Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":257,"7":217,"22":1550},"isBase":true}}}, +{"id":65040,"name":"Belt of Absolute Zero","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[266,0,429,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Maloriak"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"5":171,"6":191,"22":2002},"isBase":true}}}, +{"id":65041,"name":"Incineratus","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,248,165,0,0,0,110,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"stats":{"2":248,"3":165,"7":110,"11":110,"14":2207},"isBase":true}}}, +{"id":65042,"name":"Breastplate of Avenging Flame","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,578,345,227,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":227,"7":247,"22":3559},"isBase":true}}}, +{"id":65043,"name":"Mantle of Nefarius","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,186,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":186,"6":176,"22":1009},"isBase":true}}}, +{"id":65044,"name":"Flame Pillar Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"5":257,"6":217,"22":1177},"isBase":true}}}, +{"id":65045,"name":"Scorched Wormling Vest","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,217,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":217,"11":257,"22":1771},"isBase":true}}}, +{"id":65046,"name":"Lifecycle Waistguard","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"6":191,"22":1433},"isBase":true}}}, +{"id":65047,"name":"Lava Spine","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"7":110},"isBase":true}}}, +{"id":65048,"name":"Symbiotic Worm","icon":"inv_qiraj_skinsandworm","type":12,"stats":[0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":544},"isBase":true}}}, +{"id":65049,"name":"Leggings of Lethal Force","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"5":217,"11":257,"22":2230},"isBase":true}}}, +{"id":65050,"name":"Parasitic Bands","icon":"inv_bracer_leatherraidrogue_i_01","type":6,"armorType":2,"stats":[0,215,322,0,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":143,"11":143,"22":775},"isBase":true}}}, +{"id":65051,"name":"Molten Tantrum Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,185,0,147,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Magmaw"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"9":185,"11":147,"22":2447},"isBase":true}}}, +{"id":65052,"name":"Kingdom's Heart","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143,"22":12103},"isBase":true}}}, +{"id":65053,"name":"Bell of Enraging Resonance","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"6":363},"isBase":true}}}, +{"id":65054,"name":"Mantle of Roaring Flames","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":191,"7":171,"22":1009},"isBase":true}}}, +{"id":65055,"name":"Gloves of Cacophony","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"6":191,"22":1593},"isBase":true}}}, +{"id":65056,"name":"Bracers of the Burningeye","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,322,215,143,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"7":143,"22":589},"isBase":true}}}, +{"id":65057,"name":"Belt of the Nightmare","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"6":191,"22":996},"isBase":true}}}, +{"id":65058,"name":"Themios the Darkbringer","icon":"inv_bow_1h_bwdraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,385,578,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"stats":{"1":385,"2":578,"6":257,"11":257},"isBase":true}}}, +{"id":65059,"name":"Ironstar Amulet","icon":"inv_misc_necklacea3","type":2,"stats":[163,0,322,0,0,109,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":163,"2":322,"5":109,"9":215},"isBase":true}}}, +{"id":65060,"name":"Sark of the Unwatched","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,227,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":227,"11":247,"22":1771},"isBase":true}}}, +{"id":65061,"name":"Legguards of the Unseeing","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[273,0,578,0,0,0,0,0,155,0,365,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":273,"2":578,"8":155,"10":365,"22":3114},"isBase":true}}}, +{"id":65062,"name":"Battleplate of Ancient Kings","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"7":257,"8":217,"22":3559},"isBase":true}}}, +{"id":65063,"name":"Boots of Vertigo","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"7":191,"22":1752},"isBase":true}}}, +{"id":65064,"name":"Pip's Solution Agitator","icon":"inv_wand_1h_grimbatolraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,248,165,110,0,0,0,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"stats":{"2":248,"3":165,"4":110,"11":110,"14":2207},"isBase":true}}}, +{"id":65065,"name":"Brackish Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"7":191,"22":841},"isBase":true}}}, +{"id":65066,"name":"Helm of the Blind Seer","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Atramedes"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":257,"6":197,"22":1439},"isBase":true}}}, +{"id":65067,"name":"Burden of Mortality","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":2669},"isBase":true}}}, +{"id":65068,"name":"Chaos Beast Bracers","icon":"inv_bracer_raidshaman_i_01","type":6,"armorType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"11":143,"22":1115},"isBase":true}}}, +{"id":65069,"name":"Quickstep Galoshes","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,429,266,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"7":191,"11":171,"22":925},"isBase":true}}}, +{"id":65070,"name":"Bile-O-Tron Nut","icon":"inv_misc_gear_01","type":11,"stats":[153,0,322,0,0,0,0,0,126,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":153,"2":322,"8":126,"9":215},"isBase":true}}}, +{"id":65071,"name":"Plated Fists of Provocation","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"6":191,"7":171,"22":2224},"isBase":true}}}, +{"id":65072,"name":"Heart of Rage","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"8":363},"isBase":true}}}, +{"id":65073,"name":"Double Attack Handguards","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,0,0,0,171,0,0,191,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"8":171,"11":191,"22":1107},"isBase":true}}}, +{"id":65074,"name":"Spaulders of the Scarred Lady","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Nefarian's End"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":191,"11":171,"22":1911},"isBase":true}}}, +{"id":65075,"name":"Massacre Treads","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[266,0,429,0,0,0,0,0,171,0,0,191,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Chimaeron"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"8":171,"11":191,"22":2447},"isBase":true}}}, +{"id":65076,"name":"Security Measure Alpha","icon":"inv_misc_rubystar","type":11,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143},"isBase":true}}}, +{"id":65077,"name":"Power Generator Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,197,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"6":197,"11":257,"22":1093},"isBase":true}}}, +{"id":65078,"name":"Passive Resistor Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"7":191,"22":1328},"isBase":true}}}, +{"id":65079,"name":"X-Tron Duct Tape","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,429,266,191,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"6":171,"22":757},"isBase":true}}}, +{"id":65080,"name":"Life Force Chargers","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":2447},"isBase":true}}}, +{"id":65081,"name":"Organic Lifeform Inverter","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,0,0,110,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1502,"weaponDamageMax":2254,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1502,"weaponDamageMax":2254,"stats":{"1":165,"2":248,"8":110,"11":110},"isBase":true}}}, +{"id":65082,"name":"Lightning Conductor Band","icon":"inv_misc_diamondring1","type":11,"stats":[0,215,322,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"5":143,"6":143},"isBase":true}}}, +{"id":65083,"name":"Poison Protocol Pauldrons","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"11":191,"22":1328},"isBase":true}}}, +{"id":65084,"name":"Voltage Source Chestguard","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,227,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":227,"7":247,"22":2548},"isBase":true}}}, +{"id":65085,"name":"Electron Inductor Coils","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[215,0,322,0,0,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"5":143,"7":143,"22":1557},"isBase":true}}}, +{"id":65086,"name":"Jumbotron Power Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,161,0,181,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5729,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"9":161,"11":181,"22":2002},"isBase":true}}}, +{"id":65090,"name":"Twilight's Hammer","icon":"inv_mace_1h_hammeroftwilight_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,248,165,0,0,110,110,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":620,"weaponDamageMax":1153,"weaponSpeed":1.7,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":620,"weaponDamageMax":1153,"stats":{"2":248,"3":165,"6":110,"7":110,"14":2207},"isBase":true}}}, +{"id":65091,"name":"Blade of the Witching Hour","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,248,165,0,0,110,0,0,0,0,110,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":657,"weaponDamageMax":1221,"stats":{"2":248,"3":165,"6":110,"11":110,"14":2207},"isBase":true}}}, +{"id":65092,"name":"Waistguard of Hatred","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":1433},"isBase":true}}}, +{"id":65093,"name":"Helm of Eldritch Authority","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,217,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":217,"7":237,"22":1093},"isBase":true}}}, +{"id":65094,"name":"Fang of Twilight","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"11":110},"isBase":true}}}, +{"id":65095,"name":"Dragonheart Piercer","icon":"inv_bow_2h_crossbow_grimbatolraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,385,578,0,0,0,257,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"stats":{"1":385,"2":578,"6":257,"7":257},"isBase":true}}}, +{"id":65096,"name":"Daybreaker Helm","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":325,"2":578,"10":257,"11":197,"22":2891},"isBase":true}}}, +{"id":65105,"name":"Theralion's Mirror","icon":"spell_arcane_teleportironforge","type":12,"stats":[0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"3":363},"isBase":true}}}, +{"id":65106,"name":"Ring of Rivalry","icon":"inv_misc_diamondring3","type":11,"stats":[215,0,322,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"7":143,"8":143},"isBase":true}}}, +{"id":65107,"name":"Necklace of Strife","icon":"inv_misc_necklacea8","type":2,"stats":[0,215,322,0,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"7":143,"11":143},"isBase":true}}}, +{"id":65108,"name":"Drape of the Twins","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"armorType":1,"stats":[0,0,322,215,143,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"7":143,"22":673},"isBase":true}}}, +{"id":65109,"name":"Vial of Stolen Memories","icon":"inv_misc_cat_trinket02","type":12,"stats":[0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":544},"isBase":true}}}, +{"id":65110,"name":"Heart of Ignacious","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"isBase":true}}}, +{"id":65111,"name":"Scepter of Ice","icon":"inv_crystallized_water","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"11":143},"isBase":true}}}, +{"id":65112,"name":"Valiona's Medallion","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"7":143,"11":143},"isBase":true}}}, +{"id":65113,"name":"Hydrolance Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"11":191,"22":1107},"isBase":true}}}, +{"id":65114,"name":"Feludius' Mantle","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,176,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":176,"6":186,"22":1911},"isBase":true}}}, +{"id":65115,"name":"Glaciated Helm","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,578,325,247,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":247,"7":207,"22":2891},"isBase":true}}}, +{"id":65116,"name":"Treads of Liquid Ice","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,429,266,171,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"11":191,"22":925},"isBase":true}}}, +{"id":65117,"name":"Glittering Epidermis","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[215,0,322,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":143,"7":143,"22":673},"isBase":true}}}, +{"id":65118,"name":"Crushing Weight","icon":"inv_misc_cat_trinket05","type":12,"stats":[363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":363},"isBase":true}}}, +{"id":65119,"name":"Gravitational Pull","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[207,0,429,0,0,0,0,0,125,0,0,276,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":207,"2":429,"8":125,"11":276,"22":2224},"isBase":true}}}, +{"id":65120,"name":"Arion's Crown","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,0,207,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"6":207,"7":247,"22":2071},"isBase":true}}}, +{"id":65121,"name":"Terrastra's Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"5":217,"7":257,"22":3114},"isBase":true}}}, +{"id":65122,"name":"Dispersing Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"7":191,"22":996},"isBase":true}}}, +{"id":65123,"name":"Signet of the Fifth Circle","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"7":143,"11":143},"isBase":true}}}, +{"id":65124,"name":"Fall of Mortality","icon":"inv_misc_cat_trinket12","type":12,"stats":[0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"3":363},"isBase":true}}}, +{"id":65125,"name":"Kilt of the Forgotten Battle","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":257,"11":217,"22":2230},"isBase":true}}}, +{"id":65126,"name":"Hands of the Twilight Council","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":191,"7":171,"22":841},"isBase":true}}}, +{"id":65127,"name":"Shackles of the End of Days","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143,"22":1557},"isBase":true}}}, +{"id":65128,"name":"Treads of Hideous Transformation","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,429,266,191,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"6":171,"22":1218},"isBase":true}}}, +{"id":65129,"name":"Membrane of C'Thun","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"7":257,"8":197,"22":1439},"isBase":true}}}, +{"id":65130,"name":"Helm of Maddening Whispers","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":325,"2":578,"6":197,"7":257,"22":2891},"isBase":true}}}, +{"id":65131,"name":"Battleplate of the Apocalypse","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[273,0,578,0,0,195,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":273,"2":578,"5":195,"10":325,"22":3559},"isBase":true}}}, +{"id":65132,"name":"Coil of Ten-Thousand Screams","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"7":191,"22":1433},"isBase":true}}}, +{"id":65133,"name":"Book of Binding Will","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,0,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"5":143,"7":143},"isBase":true}}}, +{"id":65134,"name":"Wyrmbreaker's Amulet","icon":"inv_misc_necklacea7","type":2,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143},"isBase":true}}}, +{"id":65135,"name":"Robes of the Burning Acolyte","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,227,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":227,"11":247,"22":1346},"isBase":true}}}, +{"id":65136,"name":"Helm of the Nether Scion","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,276,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":276,"7":165,"22":2071},"isBase":true}}}, +{"id":65137,"name":"Legguards of the Emerald Brood","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,578,345,257,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":257,"7":217,"22":3114},"isBase":true}}}, +{"id":65138,"name":"Bracers of the Bronze Flight","icon":"inv_bracer_robe_raidmage_i_01","type":6,"armorType":1,"stats":[0,0,322,215,0,0,0,143,0,0,0,143,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"7":143,"11":143,"22":589},"isBase":true}}}, +{"id":65139,"name":"Malevolence","icon":"inv_stave_2h_grimbatolraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2701,"weaponDamageMax":4053,"weaponSpeed":2.4,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2701,"weaponDamageMax":4053,"stats":{"1":385,"2":578,"6":257,"11":257},"isBase":true}}}, +{"id":65140,"name":"Essence of the Cyclone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":363},"isBase":true}}}, +{"id":65141,"name":"Proto-Handler's Gauntlets","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"11":191,"22":1593},"isBase":true}}}, +{"id":65142,"name":"Pauldrons of the Great Ettin","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"6":191,"11":171,"22":2669},"isBase":true}}}, +{"id":65143,"name":"Bracers of Impossible Strength","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[215,0,322,0,0,0,0,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"10":143,"11":143,"22":1557},"isBase":true}}}, +{"id":65144,"name":"Storm Rider's Boots","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,266,429,0,0,0,0,171,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"7":171,"11":191,"22":1218},"isBase":true}}}, +{"id":65145,"name":"Shalug'doom, the Axe of Unmaking","icon":"inv_axe_122","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,257,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":257,"8":257},"isBase":true}}}, +{"id":65179,"name":"Magma Plated Battleplate","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"6":257,"7":217,"22":3559},"isBase":true}}}, +{"id":65180,"name":"Magma Plated Gauntlets","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"7":191,"11":171,"22":2224},"isBase":true}}}, +{"id":65181,"name":"Magma Plated Helmet","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":325,"2":578,"7":257,"8":197,"22":2891},"isBase":true}}}, +{"id":65182,"name":"Magma Plated Legplates","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"5":217,"11":257,"22":3114},"isBase":true}}}, +{"id":65183,"name":"Magma Plated Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"5":171,"7":191,"22":2669},"isBase":true}}}, +{"id":65184,"name":"Magma Plated Chestguard","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":197,"11":237,"22":3559},"isBase":true}}}, +{"id":65185,"name":"Magma Plated Handguards","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":171,"11":171,"22":2224},"isBase":true}}}, +{"id":65186,"name":"Magma Plated Faceguard","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":293,"2":578,"5":135,"9":325,"22":2891},"isBase":true}}}, +{"id":65187,"name":"Magma Plated Legguards","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"9":217,"10":257,"22":3114},"isBase":true}}}, +{"id":65188,"name":"Magma Plated Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":217,"2":429,"5":145,"9":246,"22":2669},"isBase":true}}}, +{"id":65189,"name":"Stormrider's Grips","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"7":191,"22":1107},"isBase":true}}}, +{"id":65190,"name":"Stormrider's Headpiece","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"5":197,"6":257,"22":1439},"isBase":true}}}, +{"id":65191,"name":"Stormrider's Legguards","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":217,"11":257,"22":1550},"isBase":true}}}, +{"id":65192,"name":"Stormrider's Raiment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"7":257,"8":217,"22":1771},"isBase":true}}}, +{"id":65193,"name":"Stormrider's Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"7":191,"22":1328},"isBase":true}}}, +{"id":65194,"name":"Stormrider's Handwraps","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"7":171,"22":1107},"isBase":true}}}, +{"id":65195,"name":"Stormrider's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,237,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":237,"7":217,"22":1439},"isBase":true}}}, +{"id":65196,"name":"Stormrider's Legwraps","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,237,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":237,"6":237,"22":1550},"isBase":true}}}, +{"id":65197,"name":"Stormrider's Robes","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":217,"11":257,"22":1771},"isBase":true}}}, +{"id":65198,"name":"Stormrider's Mantle","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":1328},"isBase":true}}}, +{"id":65199,"name":"Stormrider's Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":191,"7":171,"22":1107},"isBase":true}}}, +{"id":65200,"name":"Stormrider's Cover","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,578,325,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"6":257,"7":197,"22":1439},"isBase":true}}}, +{"id":65201,"name":"Stormrider's Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":217,"7":257,"22":1550},"isBase":true}}}, +{"id":65202,"name":"Stormrider's Vestment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,578,345,0,0,227,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":227,"11":247,"22":1771},"isBase":true}}}, +{"id":65203,"name":"Stormrider's Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,429,266,0,0,0,171,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"7":171,"11":191,"22":1328},"isBase":true}}}, +{"id":65204,"name":"Lightning-Charged Tunic","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,0,217,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"7":217,"11":257,"22":2548},"isBase":true}}}, +{"id":65205,"name":"Lightning-Charged Gloves","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":191,"7":171,"22":1593},"isBase":true}}}, +{"id":65206,"name":"Lightning-Charged Headguard","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,0,257,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"6":257,"11":197,"22":2071},"isBase":true}}}, +{"id":65207,"name":"Lightning-Charged Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":257,"7":217,"22":2230},"isBase":true}}}, +{"id":65208,"name":"Lightning-Charged Spaulders","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,171,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"11":191,"22":1911},"isBase":true}}}, +{"id":65209,"name":"Firelord's Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":171,"11":191,"22":841},"isBase":true}}}, +{"id":65210,"name":"Firelord's Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"7":217,"11":237,"22":1093},"isBase":true}}}, +{"id":65211,"name":"Firelord's Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"5":217,"7":257,"22":1177},"isBase":true}}}, +{"id":65212,"name":"Firelord's Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":247,"7":227,"22":1346},"isBase":true}}}, +{"id":65213,"name":"Firelord's Mantle","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"5":171,"7":191,"22":1009},"isBase":true}}}, +{"id":65214,"name":"Reinforced Sapphirium Battleplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"6":257,"7":217,"22":3559},"isBase":true}}}, +{"id":65215,"name":"Reinforced Sapphirium Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"7":191,"11":171,"22":2224},"isBase":true}}}, +{"id":65216,"name":"Reinforced Sapphirium Helmet","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":325,"2":578,"7":257,"8":197,"22":2891},"isBase":true}}}, +{"id":65217,"name":"Reinforced Sapphirium Legplates","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"5":217,"11":257,"22":3114},"isBase":true}}}, +{"id":65218,"name":"Reinforced Sapphirium Pauldrons","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"5":171,"7":191,"22":2669},"isBase":true}}}, +{"id":65219,"name":"Reinforced Sapphirium Breastplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":257,"11":217,"22":3559},"isBase":true}}}, +{"id":65220,"name":"Reinforced Sapphirium Gloves","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":2224},"isBase":true}}}, +{"id":65221,"name":"Reinforced Sapphirium Headguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":257,"6":197,"22":2891},"isBase":true}}}, +{"id":65222,"name":"Reinforced Sapphirium Greaves","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,578,345,242,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":242,"6":232,"22":3114},"isBase":true}}}, +{"id":65223,"name":"Reinforced Sapphirium Mantle","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,429,266,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"6":191,"22":2669},"isBase":true}}}, +{"id":65224,"name":"Reinforced Sapphirium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":197,"11":237,"22":3559},"isBase":true}}}, +{"id":65225,"name":"Reinforced Sapphirium Handguards","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":171,"11":171,"22":2224},"isBase":true}}}, +{"id":65226,"name":"Reinforced Sapphirium Faceguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":293,"2":578,"5":135,"9":325,"22":2891},"isBase":true}}}, +{"id":65227,"name":"Reinforced Sapphirium Legguards","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"9":217,"10":257,"22":3114},"isBase":true}}}, +{"id":65228,"name":"Reinforced Sapphirium Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":217,"2":429,"5":145,"9":246,"22":2669},"isBase":true}}}, +{"id":65229,"name":"Mercurial Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":841},"isBase":true}}}, +{"id":65230,"name":"Mercurial Cowl","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,257,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":257,"6":197,"22":1093},"isBase":true}}}, +{"id":65231,"name":"Mercurial Legwraps","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,578,345,257,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":257,"11":217,"22":1177},"isBase":true}}}, +{"id":65232,"name":"Mercurial Robes","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,227,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":227,"6":247,"22":1346},"isBase":true}}}, +{"id":65233,"name":"Mercurial Mantle","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"7":171,"22":1009},"isBase":true}}}, +{"id":65234,"name":"Mercurial Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":171,"11":191,"22":841},"isBase":true}}}, +{"id":65235,"name":"Mercurial Hood","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"7":217,"11":237,"22":1093},"isBase":true}}}, +{"id":65236,"name":"Mercurial Leggings","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":217,"7":257,"22":1177},"isBase":true}}}, +{"id":65237,"name":"Mercurial Vestment","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":247,"7":227,"22":1346},"isBase":true}}}, +{"id":65238,"name":"Mercurial Shoulderwraps","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,429,266,171,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":171,"7":191,"22":1009},"isBase":true}}}, +{"id":65239,"name":"Wind Dancer's Tunic","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,345,578,0,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"7":257,"8":217,"22":1771},"isBase":true}}}, +{"id":65240,"name":"Wind Dancer's Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,266,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"7":191,"22":1107},"isBase":true}}}, +{"id":65241,"name":"Wind Dancer's Helmet","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,325,578,0,0,197,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"5":197,"6":257,"22":1439},"isBase":true}}}, +{"id":65242,"name":"Wind Dancer's Legguards","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,345,578,0,0,0,217,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"6":217,"11":257,"22":1550},"isBase":true}}}, +{"id":65243,"name":"Wind Dancer's Spaulders","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,266,429,0,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"6":171,"7":191,"22":1328},"isBase":true}}}, +{"id":65244,"name":"Tunic of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":217,"7":257,"22":2548},"isBase":true}}}, +{"id":65245,"name":"Handwraps of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,191,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"7":171,"22":1593},"isBase":true}}}, +{"id":65246,"name":"Faceguard of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,237,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"4":237,"11":217,"22":2071},"isBase":true}}}, +{"id":65247,"name":"Legwraps of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,247,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":247,"6":227,"22":2230},"isBase":true}}}, +{"id":65248,"name":"Mantle of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,191,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"4":191,"11":171,"22":1911},"isBase":true}}}, +{"id":65249,"name":"Cuirass of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,345,578,0,0,0,0,217,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"7":217,"11":257,"22":2548},"isBase":true}}}, +{"id":65250,"name":"Grips of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,266,429,0,0,171,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"6":191,"22":1593},"isBase":true}}}, +{"id":65251,"name":"Helmet of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,325,578,0,0,257,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":325,"2":578,"5":257,"11":197,"22":2071},"isBase":true}}}, +{"id":65252,"name":"Legguards of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,345,578,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":345,"2":578,"7":217,"8":257,"22":2230},"isBase":true}}}, +{"id":65253,"name":"Spaulders of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,266,429,0,0,171,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":266,"2":429,"5":171,"11":191,"22":1911},"isBase":true}}}, +{"id":65254,"name":"Hauberk of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,578,345,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":217,"7":257,"22":2548},"isBase":true}}}, +{"id":65255,"name":"Gloves of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,429,266,0,0,191,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":191,"7":171,"22":1593},"isBase":true}}}, +{"id":65256,"name":"Headpiece of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,578,325,0,0,0,197,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"7":197,"11":257,"22":2071},"isBase":true}}}, +{"id":65257,"name":"Kilt of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,578,345,217,0,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"4":217,"7":257,"22":2230},"isBase":true}}}, +{"id":65258,"name":"Shoulderwraps of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,429,266,0,0,191,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":191,"11":171,"22":1911},"isBase":true}}}, +{"id":65259,"name":"Shadowflame Handwraps","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,429,266,0,0,171,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"6":171,"11":191,"22":841},"isBase":true}}}, +{"id":65260,"name":"Shadowflame Hood","icon":"inv_helmet_cloth_raidwarlock_i_01","type":1,"armorType":1,"stats":[0,0,578,325,0,0,0,217,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":325,"7":217,"11":237,"22":1093},"isBase":true}}}, +{"id":65261,"name":"Shadowflame Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,578,345,0,217,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"5":217,"7":257,"22":1177},"isBase":true}}}, +{"id":65262,"name":"Shadowflame Robes","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,578,345,0,0,247,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":345,"6":247,"7":227,"22":1346},"isBase":true}}}, +{"id":65263,"name":"Shadowflame Mantle","icon":"inv_shoulder_cloth_raidwarlock_i_01","type":3,"armorType":1,"stats":[0,0,429,266,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":266,"5":171,"7":191,"22":1009},"isBase":true}}}, +{"id":65264,"name":"Earthen Battleplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[345,0,578,0,0,0,257,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"6":257,"7":217,"22":3559},"isBase":true}}}, +{"id":65265,"name":"Earthen Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[266,0,429,0,0,0,0,191,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"7":191,"11":171,"22":2224},"isBase":true}}}, +{"id":65266,"name":"Earthen Helmet","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[325,0,578,0,0,0,0,257,197,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":325,"2":578,"7":257,"8":197,"22":2891},"isBase":true}}}, +{"id":65267,"name":"Earthen Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,217,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"5":217,"11":257,"22":3114},"isBase":true}}}, +{"id":65268,"name":"Earthen Pauldrons","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[266,0,429,0,0,171,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":266,"2":429,"5":171,"7":191,"22":2669},"isBase":true}}}, +{"id":65269,"name":"Earthen Chestguard","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,197,237,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":197,"11":237,"22":3559},"isBase":true}}}, +{"id":65270,"name":"Earthen Handguards","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,171,171,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":171,"11":171,"22":2224},"isBase":true}}}, +{"id":65271,"name":"Earthen Faceguard","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[293,0,578,0,0,135,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":293,"2":578,"5":135,"9":325,"22":2891},"isBase":true}}}, +{"id":65272,"name":"Earthen Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[345,0,578,0,0,0,0,0,0,217,257,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":345,"2":578,"9":217,"10":257,"22":3114},"isBase":true}}}, +{"id":65273,"name":"Earthen Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[217,0,429,0,0,145,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":217,"2":429,"5":145,"9":246,"22":2669},"isBase":true}}}, +{"id":65367,"name":"Mistral Circle","icon":"inv_misc_rubystar","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":65368,"name":"Star Chaser Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-233,-234,-235,-236],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":1433},"isBase":true}}}, +{"id":65369,"name":"Sky Strider Belt","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-173,-174,-175,-176],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":2002},"isBase":true}}}, +{"id":65370,"name":"Thunder Wall Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-224,-225,-226],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":2002},"isBase":true}}}, +{"id":65371,"name":"Wind Stalker Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-233,-234,-235,-236],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":996},"isBase":true}}}, +{"id":65372,"name":"Permafrost Signet","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":65373,"name":"Planetary Band","icon":"inv_jewelry_ring_87","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":65374,"name":"Gale Rouser Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-229,-230,-231,-232],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":996},"isBase":true}}}, +{"id":65375,"name":"Tempest Keeper Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-229,-230,-231,-232],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":2002},"isBase":true}}}, +{"id":65376,"name":"Soul Breath Belt","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-229,-230,-231,-232],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":757},"isBase":true}}}, +{"id":65377,"name":"Lightning Well Belt","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-229,-230,-231,-232],"randPropPoints":544,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"22":1433},"isBase":true}}}, +{"id":65378,"name":"Star Chaser Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-199,-200,-201,-202],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":2230},"isBase":true}}}, +{"id":65379,"name":"Sky Strider Greaves","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-173,-174,-175,-176],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":3114},"isBase":true}}}, +{"id":65380,"name":"Thunder Wall Greaves","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-180,-181,-182],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":3114},"isBase":true}}}, +{"id":65381,"name":"Wind Stalker Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-199,-200,-201,-202],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":1550},"isBase":true}}}, +{"id":65382,"name":"Cloudburst Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":65383,"name":"Soul Breath Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-189,-190,-191,-192,-193,-194],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":1177},"isBase":true}}}, +{"id":65384,"name":"Gale Rouser Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-185,-186,-187,-188],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":1550},"isBase":true}}}, +{"id":65385,"name":"Tempest Keeper Leggings","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-185,-186,-187,-188],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":3114},"isBase":true}}}, +{"id":65386,"name":"Lightning Well Legguards","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-185,-186,-187,-188],"randPropPoints":733,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"22":2230},"isBase":true}}}, +{"id":66540,"name":"Miniature Winter Veil Tree","icon":"inv_knife_1h_common_b_01green","type":13,"weaponType":2,"handType":2,"stats":[0,174,262,0,0,116,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"weaponSpeed":1.8,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"stats":{"1":174,"2":262,"5":116,"7":116},"isBase":true}}}, +{"id":67447,"name":"Vicious Gladiator's Greatsword","icon":"inv_sword_2h_pvp400_c_01","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67448,"name":"Vicious Gladiator's Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2251,"weaponDamageMax":3377,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2251,"weaponDamageMax":3377,"stats":{"1":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67449,"name":"Vicious Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,0,0,0,2208,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1125,"weaponDamageMax":1689,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1125,"weaponDamageMax":1689,"stats":{"2":578,"3":385,"4":257,"14":2208,"16":257},"isBase":true}}}, +{"id":67450,"name":"Vicious Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,257,0,0,0,0,0,0,0,2208,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1125,"weaponDamageMax":1689,"weaponSpeed":2,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1125,"weaponDamageMax":1689,"stats":{"2":578,"3":385,"6":257,"14":2208,"16":257},"isBase":true}}}, +{"id":67451,"name":"Vicious Gladiator's Pike","icon":"inv_polearm_2h_pvp400_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"1":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67452,"name":"Vicious Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67453,"name":"Vicious Gladiator's Decapitator","icon":"inv_axe_2h_pvp400_c_01","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67454,"name":"Vicious Gladiator's Gavel","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,248,165,0,0,110,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"6":110,"14":2207,"16":110},"isBase":true}}}, +{"id":67455,"name":"Vicious Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67456,"name":"Vicious Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67457,"name":"Vicious Gladiator's Spellblade","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,248,165,0,0,110,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"6":110,"14":2207,"16":110},"isBase":true}}}, +{"id":67458,"name":"Vicious Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67459,"name":"Vicious Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67460,"name":"Vicious Gladiator's Shiv","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67461,"name":"Vicious Gladiator's Longbow","icon":"inv_bow_1h_pvp400_c_01","type":14,"rangedWeaponType":1,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"stats":{"1":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67462,"name":"Vicious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_39","type":14,"rangedWeaponType":2,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"stats":{"1":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67463,"name":"Vicious Gladiator's Rifle","icon":"firearm_2h_rifle_pvp400_c_01","type":14,"rangedWeaponType":3,"stats":[0,385,578,0,0,0,257,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"weaponSpeed":3,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3377,"weaponDamageMax":5066,"stats":{"1":385,"2":578,"6":257,"16":257},"isBase":true}}}, +{"id":67464,"name":"Vicious Gladiator's Baton of Light","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,248,165,110,0,0,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":694,"weaponDamageMax":1289,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":694,"weaponDamageMax":1289,"stats":{"2":248,"3":165,"4":110,"14":2207,"16":110},"isBase":true}}}, +{"id":67465,"name":"Vicious Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,248,165,0,0,110,0,0,0,0,0,0,0,2207,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":694,"weaponDamageMax":1289,"weaponSpeed":1.9,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":694,"weaponDamageMax":1289,"stats":{"2":248,"3":165,"6":110,"14":2207,"16":110},"isBase":true}}}, +{"id":67468,"name":"Vicious Gladiator's Quickblade","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67469,"name":"Vicious Gladiator's Slicer","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":2170,"weaponDamageMax":3256,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":2170,"weaponDamageMax":3256,"stats":{"0":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67470,"name":"Vicious Gladiator's Bonecracker","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67471,"name":"Vicious Gladiator's Pummeler","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67472,"name":"Vicious Gladiator's Shanker","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1502,"weaponDamageMax":2254,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1502,"weaponDamageMax":2254,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67473,"name":"Vicious Gladiator's Hacker","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67474,"name":"Vicious Gladiator's Cleaver","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,110,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"16":110},"isBase":true}}}, +{"id":67475,"name":"Vicious Gladiator's Redoubt","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"16":143,"22":12103},"isBase":true}}}, +{"id":67476,"name":"Vicious Gladiator's Barrier","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"16":143,"22":12103},"isBase":true}}}, +{"id":67477,"name":"Vicious Gladiator's Shield Wall","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":143,"16":143,"22":12103},"isBase":true}}}, +{"id":67478,"name":"Vicious Gladiator's Reprieve","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"16":143},"isBase":true}}}, +{"id":67479,"name":"Vicious Gladiator's Endgame","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,322,215,0,0,143,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"16":143},"isBase":true}}}, +{"id":68130,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"isBase":true}}}, +{"id":68131,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"isBase":true}}}, +{"id":68132,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"14":2207},"isBase":true}}}, +{"id":68600,"name":"Uhn'agh Fash, the Darkest Betrayal","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":110,"7":110},"isBase":true}}}, +{"id":68915,"name":"Scales of Life","icon":"ability_druid_balanceofpower","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":575},"isBase":true}}}, +{"id":68925,"name":"Variable Pulse Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"3":406},"isBase":true}}}, +{"id":68926,"name":"Jaws of Defeat","icon":"trade_archaeology_shark-jaws","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"3":383},"isBase":true}}}, +{"id":68927,"name":"The Hungerer","icon":"spell_deathknight_gnaw_ghoul","type":12,"stats":[0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":383},"isBase":true}}}, +{"id":68972,"name":"Apparatus of Khaz'goroth","icon":"inv_misc_enggizmos_20","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":383},"isBase":true}}}, +{"id":68981,"name":"Spidersilk Spindle","icon":"inv_trinket_firelands_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"11":383},"isBase":true}}}, +{"id":68982,"name":"Necromantic Focus","icon":"inv_trinket_firelands_03","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"3":383},"isBase":true}}}, +{"id":68983,"name":"Eye of Blazing Power","icon":"inv_trinket_firelands_01","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"3":383},"isBase":true}}}, +{"id":68994,"name":"Matrix Restabilizer","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":406},"isBase":true}}}, +{"id":68995,"name":"Vessel of Acceleration","icon":"inv_summerfest_firepotion","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":406},"isBase":true}}}, +{"id":68996,"name":"Stay of Execution","icon":"inv_misc_note_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":7}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"9":383},"isBase":true}}}, +{"id":68998,"name":"Rune of Zeth","icon":"spell_fire_rune","type":12,"stats":[0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":7}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"6":383},"isBase":true}}}, +{"id":69000,"name":"Fiery Quintessence","icon":"inv_potion_41","type":12,"stats":[0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":7}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"4":383},"isBase":true}}}, +{"id":69001,"name":"Ancient Petrified Seed","icon":"inv_misc_food_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":7}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"11":383},"isBase":true}}}, +{"id":69002,"name":"Essence of the Eternal Flame","icon":"spell_fire_fire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":7}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"11":383},"isBase":true}}}, +{"id":69109,"name":"Scales of Life","icon":"ability_druid_balanceofpower","type":12,"stats":[0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":650},"isBase":true}}}, +{"id":69110,"name":"Variable Pulse Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"3":458},"isBase":true}}}, +{"id":69111,"name":"Jaws of Defeat","icon":"trade_archaeology_shark-jaws","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"3":433},"isBase":true}}}, +{"id":69112,"name":"The Hungerer","icon":"spell_deathknight_gnaw_ghoul","type":12,"stats":[0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":433},"isBase":true}}}, +{"id":69113,"name":"Apparatus of Khaz'goroth","icon":"inv_misc_enggizmos_20","type":12,"stats":[433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":433},"isBase":true}}}, +{"id":69138,"name":"Spidersilk Spindle","icon":"inv_trinket_firelands_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"11":433},"isBase":true}}}, +{"id":69139,"name":"Necromantic Focus","icon":"inv_trinket_firelands_03","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"3":433},"isBase":true}}}, +{"id":69149,"name":"Eye of Blazing Power","icon":"inv_trinket_firelands_01","type":12,"stats":[0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"3":433},"isBase":true}}}, +{"id":69150,"name":"Matrix Restabilizer","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":458},"isBase":true}}}, +{"id":69167,"name":"Vessel of Acceleration","icon":"inv_summerfest_firepotion","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":458},"isBase":true}}}, +{"id":69878,"name":"Permafrost Cape","icon":"item_icecrowncloak","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"22":673},"isBase":true}}}, +{"id":69879,"name":"Cloudburst Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"22":673},"isBase":true}}}, +{"id":69880,"name":"Mistral Pendant","icon":"item_icecrownnecklaceb","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":69881,"name":"Planetary Drape","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"22":673},"isBase":true}}}, +{"id":69882,"name":"Planetary Amulet","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":69883,"name":"Permafrost Choker","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":69884,"name":"Mistral Drape","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"22":673},"isBase":true}}}, +{"id":69885,"name":"Cloudburst Necklace","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":408,"ilvl":372,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5684,"otherName":"Al'Akir"}}],"scalingOptions":{"372":{"randPropPoints":408,"isBase":true}}}, +{"id":69897,"name":"Fandral's Flamescythe","icon":"inv_staff_99","type":13,"weaponType":8,"handType":4,"stats":[0,408,611,0,0,0,276,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":2857,"weaponDamageMax":4286,"weaponSpeed":2.4,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":2857,"weaponDamageMax":4286,"stats":{"1":408,"2":611,"6":276,"11":265},"isBase":true}}}, +{"id":69936,"name":"Fists of Fury","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,187,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":187,"6":197,"22":2264},"isBase":true}}}, +{"id":69937,"name":"Eternal Elementium Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,197,187,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"10":197,"11":187,"22":2264},"isBase":true}}}, +{"id":69938,"name":"Holy Flame Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":197,"7":187,"22":2264},"isBase":true}}}, +{"id":69939,"name":"Dragonfire Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,197,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":197,"11":187,"22":1627},"isBase":true}}}, +{"id":69941,"name":"Gloves of Unforgiving Flame","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":197,"7":187,"22":1627},"isBase":true}}}, +{"id":69942,"name":"Clutches of Evil","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,0,198,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":198,"11":186,"22":1137},"isBase":true}}}, +{"id":69943,"name":"Heavenly Gloves of the Moon","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,182,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":182,"7":202,"22":1137},"isBase":true}}}, +{"id":69944,"name":"Grips of Altered Reality","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,187,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":187,"7":197,"22":869},"isBase":true}}}, +{"id":69945,"name":"Don Tayo's Inferno Mittens","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,182,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"5":182,"6":202,"22":869},"isBase":true}}}, +{"id":69946,"name":"Warboots of Mighty Lords","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,187,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":187,"6":197,"22":2490},"isBase":true}}}, +{"id":69947,"name":"Mirrored Boots","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,187,197,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"10":187,"11":197,"22":2490},"isBase":true}}}, +{"id":69948,"name":"Emberforged Elementium Boots","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,454,282,187,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":187,"7":197,"22":2490},"isBase":true}}}, +{"id":69949,"name":"Earthen Scale Sabatons","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,282,454,0,0,0,197,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":197,"11":187,"22":1790},"isBase":true}}}, +{"id":69950,"name":"Footwraps of Quenched Fire","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":197,"7":187,"22":1790},"isBase":true}}}, +{"id":69951,"name":"Treads of the Craft","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,282,454,0,0,0,0,197,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":197,"11":187,"22":1251},"isBase":true}}}, +{"id":69952,"name":"Ethereal Footfalls","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":197,"7":187,"22":1251},"isBase":true}}}, +{"id":69953,"name":"Endless Dream Walkers","icon":"inv_boots_robe_raidpriest_j_01","type":10,"armorType":1,"stats":[0,0,454,282,197,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":197,"7":187,"22":956},"isBase":true}}}, +{"id":69954,"name":"Boots of the Black Flame","icon":"inv_boots_robe_raidmage_j_01","type":10,"armorType":1,"stats":[0,0,454,282,0,197,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"5":197,"6":187,"22":956},"isBase":true}}}, +{"id":70178,"name":"Ruthless Gladiator's Greatsword","icon":"inv_sword_2h_pvp_c_01","type":13,"weaponType":9,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"0":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70179,"name":"Ruthless Gladiator's Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":2687,"weaponDamageMax":4031,"weaponSpeed":2,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":2687,"weaponDamageMax":4031,"stats":{"1":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70180,"name":"Ruthless Gladiator's Energy Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,306,0,0,0,0,0,0,0,0,0,2633,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":1343,"weaponDamageMax":2016,"stats":{"2":689,"3":460,"4":306,"14":2633,"16":306},"isBase":true}}}, +{"id":70181,"name":"Ruthless Gladiator's Battle Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,0,0,306,0,0,0,0,0,0,0,2633,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":1343,"weaponDamageMax":2016,"weaponSpeed":2,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":1343,"weaponDamageMax":2016,"stats":{"2":689,"3":460,"6":306,"14":2633,"16":306},"isBase":true}}}, +{"id":70182,"name":"Ruthless Gladiator's Pike","icon":"inv_stave_2h_pvp400_c_02","type":13,"weaponType":6,"handType":4,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"1":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70183,"name":"Ruthless Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp410_c_01","type":13,"weaponType":4,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"0":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70184,"name":"Ruthless Gladiator's Decapitator","icon":"inv_axe_2h_pvp410_c_01","type":13,"weaponType":1,"handType":4,"stats":[460,0,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"0":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70185,"name":"Ruthless Gladiator's Gavel","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,296,197,0,0,131,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"weaponSpeed":1.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"stats":{"2":296,"3":197,"6":131,"14":2636,"16":131},"isBase":true}}}, +{"id":70186,"name":"Ruthless Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70187,"name":"Ruthless Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70188,"name":"Ruthless Gladiator's Spellblade","icon":"inv_knife_1h_pvp410_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,296,197,0,0,131,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"weaponSpeed":1.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"stats":{"2":296,"3":197,"6":131,"14":2636,"16":131},"isBase":true}}}, +{"id":70189,"name":"Ruthless Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70190,"name":"Ruthless Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70191,"name":"Ruthless Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70192,"name":"Ruthless Gladiator's Longbow","icon":"inv_bow_1h_pvp410_c_01","type":14,"rangedWeaponType":1,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"stats":{"1":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70193,"name":"Ruthless Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"stats":{"1":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70194,"name":"Ruthless Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvp410_c_01","type":14,"rangedWeaponType":3,"stats":[0,460,689,0,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"stats":{"1":460,"2":689,"6":306,"16":306},"isBase":true}}}, +{"id":70195,"name":"Ruthless Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,296,197,131,0,0,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":828,"weaponDamageMax":1539,"weaponSpeed":1.9,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":828,"weaponDamageMax":1539,"stats":{"2":296,"3":197,"4":131,"14":2636,"16":131},"isBase":true}}}, +{"id":70196,"name":"Ruthless Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,296,197,0,0,131,0,0,0,0,0,0,0,2636,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":828,"weaponDamageMax":1539,"weaponSpeed":1.9,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":828,"weaponDamageMax":1539,"stats":{"2":296,"3":197,"6":131,"14":2636,"16":131},"isBase":true}}}, +{"id":70199,"name":"Ruthless Gladiator's Quickblade","icon":"inv_sword_1h_pvp410_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70200,"name":"Ruthless Gladiator's Slicer","icon":"inv_sword_1h_pvp410_c_01","type":13,"weaponType":9,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2591,"weaponDamageMax":3887,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2591,"weaponDamageMax":3887,"stats":{"0":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70201,"name":"Ruthless Gladiator's Bonecracker","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70202,"name":"Ruthless Gladiator's Pummeler","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70203,"name":"Ruthless Gladiator's Shanker","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70204,"name":"Ruthless Gladiator's Hacker","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[197,0,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70205,"name":"Ruthless Gladiator's Cleaver","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,197,296,0,0,0,131,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":131,"16":131},"isBase":true}}}, +{"id":70206,"name":"Ruthless Gladiator's Redoubt","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,256,171,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":171,"16":171,"22":12421},"isBase":true}}}, +{"id":70207,"name":"Ruthless Gladiator's Barrier","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,256,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"6":171,"16":171,"22":12421},"isBase":true}}}, +{"id":70208,"name":"Ruthless Gladiator's Shield Wall","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[256,0,384,0,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,12421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":256,"2":384,"6":171,"16":171,"22":12421},"isBase":true}}}, +{"id":70209,"name":"Ruthless Gladiator's Reprieve","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,171,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":171,"16":171},"isBase":true}}}, +{"id":70210,"name":"Ruthless Gladiator's Endgame","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,0,0,171,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"6":171,"16":171},"isBase":true}}}, +{"id":70211,"name":"Ruthless Gladiator's Cleaver","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70212,"name":"Ruthless Gladiator's Hacker","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70213,"name":"Ruthless Gladiator's Decapitator","icon":"inv_axe_2h_pvp410_c_01","type":13,"weaponType":1,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70214,"name":"Ruthless Gladiator's Shanker","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1589,"weaponDamageMax":2384,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1589,"weaponDamageMax":2384,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70215,"name":"Ruthless Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70216,"name":"Ruthless Gladiator's Spellblade","icon":"inv_knife_1h_pvp410_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,262,175,0,0,116,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":175,"6":116,"14":2333,"16":116},"isBase":true}}}, +{"id":70217,"name":"Ruthless Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70218,"name":"Ruthless Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70219,"name":"Ruthless Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70220,"name":"Ruthless Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70221,"name":"Ruthless Gladiator's Pummeler","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70222,"name":"Ruthless Gladiator's Bonecracker","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70223,"name":"Ruthless Gladiator's Gavel","icon":"inv_mace_1h_pvp410_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,262,175,0,0,116,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":175,"6":116,"14":2333,"16":116},"isBase":true}}}, +{"id":70224,"name":"Ruthless Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp410_c_01","type":13,"weaponType":4,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70225,"name":"Ruthless Gladiator's Pike","icon":"inv_stave_2h_pvp400_c_02","type":13,"weaponType":6,"handType":4,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"1":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70226,"name":"Ruthless Gladiator's Battle Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,0,0,272,0,0,0,0,0,0,0,2334,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1190,"weaponDamageMax":1786,"stats":{"2":611,"3":408,"6":272,"14":2334,"16":272},"isBase":true}}}, +{"id":70227,"name":"Ruthless Gladiator's Energy Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,272,0,0,0,0,0,0,0,0,0,2334,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1190,"weaponDamageMax":1786,"weaponSpeed":2,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1190,"weaponDamageMax":1786,"stats":{"2":611,"3":408,"4":272,"14":2334,"16":272},"isBase":true}}}, +{"id":70228,"name":"Ruthless Gladiator's Staff","icon":"inv_staff_2h_pvp410_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":2380,"weaponDamageMax":3571,"weaponSpeed":2,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":2380,"weaponDamageMax":3571,"stats":{"1":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70229,"name":"Ruthless Gladiator's Slicer","icon":"inv_sword_1h_pvp410_c_01","type":13,"weaponType":9,"handType":2,"stats":[175,0,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2295,"weaponDamageMax":3443,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2295,"weaponDamageMax":3443,"stats":{"0":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70230,"name":"Ruthless Gladiator's Quickblade","icon":"inv_sword_1h_pvp410_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,175,262,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":116,"16":116},"isBase":true}}}, +{"id":70231,"name":"Ruthless Gladiator's Greatsword","icon":"inv_sword_2h_pvp_c_01","type":13,"weaponType":9,"handType":4,"stats":[408,0,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70234,"name":"Ruthless Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,262,175,0,0,116,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":733,"weaponDamageMax":1363,"weaponSpeed":1.9,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":733,"weaponDamageMax":1363,"stats":{"2":262,"3":175,"6":116,"14":2333,"16":116},"isBase":true}}}, +{"id":70235,"name":"Ruthless Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,262,175,116,0,0,0,0,0,0,0,0,0,2333,0,116,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":733,"weaponDamageMax":1363,"weaponSpeed":1.9,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":733,"weaponDamageMax":1363,"stats":{"2":262,"3":175,"4":116,"14":2333,"16":116},"isBase":true}}}, +{"id":70236,"name":"Ruthless Gladiator's Longbow","icon":"inv_bow_1h_pvp410_c_01","type":14,"rangedWeaponType":1,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"stats":{"1":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70237,"name":"Ruthless Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvp410_c_01","type":14,"rangedWeaponType":3,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"stats":{"1":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70238,"name":"Ruthless Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,408,611,0,0,0,272,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"stats":{"1":408,"2":611,"6":272,"16":272},"isBase":true}}}, +{"id":70239,"name":"Ruthless Gladiator's Endgame","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":151,"16":151},"isBase":true}}}, +{"id":70240,"name":"Ruthless Gladiator's Reprieve","icon":"inv_offhand_1h_pvp410_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,151,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":151,"16":151},"isBase":true}}}, +{"id":70241,"name":"Ruthless Gladiator's Shield Wall","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[227,0,341,0,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"6":151,"16":151,"22":12201},"isBase":true}}}, +{"id":70242,"name":"Ruthless Gladiator's Barrier","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,227,0,0,151,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":151,"16":151,"22":12201},"isBase":true}}}, +{"id":70243,"name":"Ruthless Gladiator's Redoubt","icon":"inv_shield_pvp410_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,227,151,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":151,"16":151,"22":12201},"isBase":true}}}, +{"id":70723,"name":"Sulfuras, the Extinguished Hand","icon":"inv_mace_2h_sulfuras_d_01","type":13,"weaponType":4,"handType":4,"stats":[446,0,730,0,0,0,333,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":5400,"weaponDamageMax":8100,"weaponSpeed":3.8,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":5400,"weaponDamageMax":8100,"stats":{"0":446,"2":730,"6":333,"11":262},"isBase":true}}}, +{"id":70733,"name":"Alysra's Razor","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,155,262,0,0,0,0,113,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1081,"weaponDamageMax":2009,"weaponSpeed":1.4,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1081,"weaponDamageMax":2009,"stats":{"1":155,"2":262,"7":113,"8":98},"isBase":true}}}, +{"id":70734,"name":"Greathelm of the Voracious Maw","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,192,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":348,"2":611,"6":192,"11":284,"22":2943},"isBase":true}}}, +{"id":70735,"name":"Flickering Wristbands","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"22":796},"isBase":true}}}, +{"id":70736,"name":"Moltenfeather Leggings","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,256,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":256,"11":248,"22":2278},"isBase":true}}}, +{"id":70737,"name":"Spaulders of Recurring Flame","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,207,164,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":207,"10":164,"22":2716},"isBase":true}}}, +{"id":70738,"name":"Alysrazor's Band","icon":"inv_jewelry_ring_firelandsraid_01a","type":11,"stats":[227,0,341,0,0,0,0,107,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"7":107,"8":150},"isBase":true}}}, +{"id":70739,"name":"Lavaworm Legplates","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,284,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"5":284,"11":212,"22":3169},"isBase":true}}}, +{"id":70912,"name":"Cracked Obsidian Stompers","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[210,0,454,0,0,0,0,0,153,282,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":210,"2":454,"8":153,"9":282,"22":2490},"isBase":true}}}, +{"id":70913,"name":"Legplates of Frenzied Devotion","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,205,288,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":205,"10":288,"22":3169},"isBase":true}}}, +{"id":70914,"name":"Carapace of Imbibed Flame","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,238,0,260,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":238,"11":260,"22":3622},"isBase":true}}}, +{"id":70915,"name":"Shard of Torment","icon":"inv_shield_firelandsraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[147,0,341,0,0,0,0,0,0,148,154,0,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":147,"2":341,"9":148,"10":154,"22":12201},"isBase":true}}}, +{"id":70916,"name":"Helm of Blazing Glory","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,0,0,0,0,284,192,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":348,"2":611,"10":284,"11":192,"22":2943},"isBase":true}}}, +{"id":70917,"name":"Flickering Handguards","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-272,-273,-274],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"22":2264},"isBase":true}}}, +{"id":70920,"name":"Bracers of the Fiery Path","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[207,0,341,0,0,0,0,0,0,0,149,133,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":207,"2":341,"10":149,"11":133,"22":1585},"isBase":true}}}, +{"id":70921,"name":"Pauldrons of Roaring Flame","icon":"inv_plate_firelands_d_01","type":3,"armorType":4,"stats":[223,0,480,0,0,0,0,0,0,320,0,142,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":223,"2":480,"9":320,"11":142,"22":2764},"isBase":true}}}, +{"id":70922,"name":"Mandible of Beth'tilac","icon":"inv_sword_1h_firelandsraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[175,0,262,0,0,0,0,0,0,126,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"9":126,"11":99},"isBase":true}}}, +{"id":70929,"name":"Firebound Gorget","icon":"inv_jewelry_necklace_52","type":2,"stats":[173,0,341,0,0,0,0,0,115,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":173,"2":341,"8":115,"11":227},"isBase":true}}}, +{"id":70930,"name":"Durable Flamewrath Greatcloak","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[173,0,341,0,0,115,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":5}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":173,"2":341,"5":115,"10":227,"22":695},"isBase":true}}}, +{"id":70933,"name":"Girdle of the Indomitable Flame","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":208,"10":172,"22":2037},"isBase":true}}}, +{"id":70934,"name":"Adamantine Signet of the Avengers","icon":"inv_jewelry_ring_95","type":11,"stats":[175,0,384,0,0,110,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":8}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":175,"2":384,"5":110,"9":256},"isBase":true}}}, +{"id":70935,"name":"Stoneheart Necklace","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[227,0,341,0,0,0,0,0,0,0,129,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"10":129,"11":165},"isBase":true}}}, +{"id":70937,"name":"Bracers of Regal Force","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[153,0,341,0,0,0,0,0,0,212,110,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":153,"2":341,"9":212,"10":110,"22":1585},"isBase":true}}}, +{"id":70940,"name":"Deflecting Brimstone Band","icon":"inv_jewelry_ring_firelandsraid_03a","type":11,"stats":[227,0,341,0,0,0,0,0,0,148,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"9":148,"11":154},"isBase":true}}}, +{"id":70941,"name":"Shoulderguards of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":196,"2":454,"5":177,"11":282,"22":2716},"isBase":true}}}, +{"id":70942,"name":"Legguards of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"10":244,"11":252,"22":3169},"isBase":true}}}, +{"id":70943,"name":"Handguards of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":177,"11":205,"22":2264},"isBase":true}}}, +{"id":70944,"name":"Faceguard of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":250,"2":611,"8":166,"10":388,"22":2943},"isBase":true}}}, +{"id":70945,"name":"Chestguard of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":280,"10":238,"22":3622},"isBase":true}}}, +{"id":70946,"name":"Immolation Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":196,"2":454,"5":177,"11":282,"22":2716},"isBase":true}}}, +{"id":70947,"name":"Immolation Legguards","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"10":244,"11":252,"22":3169},"isBase":true}}}, +{"id":70948,"name":"Immolation Faceguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":250,"2":611,"8":166,"10":388,"22":2943},"isBase":true}}}, +{"id":70949,"name":"Immolation Handguards","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":177,"11":205,"22":2264},"isBase":true}}}, +{"id":70950,"name":"Immolation Chestguard","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":280,"10":238,"22":3622},"isBase":true}}}, +{"id":70951,"name":"Elementium Deathplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[196,0,454,0,0,177,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":196,"2":454,"5":177,"11":282,"22":2716},"isBase":true}}}, +{"id":70952,"name":"Elementium Deathplate Legguards","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,244,252,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"10":244,"11":252,"22":3169},"isBase":true}}}, +{"id":70953,"name":"Elementium Deathplate Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,177,0,205,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":177,"11":205,"22":2264},"isBase":true}}}, +{"id":70954,"name":"Elementium Deathplate Faceguard","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[250,0,611,0,0,0,0,0,166,0,388,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":250,"2":611,"8":166,"10":388,"22":2943},"isBase":true}}}, +{"id":70955,"name":"Elementium Deathplate Chestguard","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,280,238,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":280,"10":238,"22":3622},"isBase":true}}}, +{"id":70985,"name":"Craterflame Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,0,0,197,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":197,"7":187,"22":1952},"isBase":true}}}, +{"id":70986,"name":"Clawshaper Gauntlets","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,219,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":219,"11":152,"22":1627},"isBase":true}}}, +{"id":70987,"name":"Phoenix-Down Treads","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,454,282,213,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":213,"11":162,"22":1251},"isBase":true}}}, +{"id":70988,"name":"Clutch of the Firemother","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,611,368,272,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":272,"7":232,"22":3622},"isBase":true}}}, +{"id":70989,"name":"Leggings of Billowing Fire","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,212,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":212,"7":284,"22":1217},"isBase":true}}}, +{"id":70990,"name":"Wings of Flame","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,0,341,227,0,0,144,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":144,"11":156,"22":695},"isBase":true}}}, +{"id":70991,"name":"Arbalest of Erupting Fury","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,128,192,0,0,0,91,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"stats":{"1":128,"2":192,"6":91,"11":75},"isBase":true}}}, +{"id":70992,"name":"Dreadfire Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,212,341,0,0,138,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":212,"2":341,"5":138,"11":95,"22":695},"isBase":true}}}, +{"id":70993,"name":"Fireskin Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,211,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":211,"11":167,"22":2264},"isBase":true}}}, +{"id":71003,"name":"Hood of Rampant Disdain","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,0,0,295,172,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"7":295,"8":172,"22":1478},"isBase":true}}}, +{"id":71004,"name":"Earthcrack Bracers","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[227,0,341,0,0,0,158,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"6":158,"7":140,"22":1585},"isBase":true}}}, +{"id":71005,"name":"Flaming Core Chestguard","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,235,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":235,"6":258,"22":2603},"isBase":true}}}, +{"id":71006,"name":"Volcanospike","icon":"inv_sword_1h_firelandsraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,262,175,0,105,0,123,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":175,"5":105,"7":123,"14":2333},"isBase":true}}}, +{"id":71007,"name":"Grips of the Raging Giant","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,205,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":205,"6":177,"22":2264},"isBase":true}}}, +{"id":71009,"name":"Lava Line Wristbands","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,341,227,158,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":158,"7":140,"22":1139},"isBase":true}}}, +{"id":71010,"name":"Incendic Chestguard","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,278,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":278,"7":215,"22":1820},"isBase":true}}}, +{"id":71011,"name":"Flickering Cowl","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-265,-266,-267,-268,-269,-270],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"22":1130},"isBase":true}}}, +{"id":71012,"name":"Heartstone of Rhyolith","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[0,0,341,227,162,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":162,"11":133},"isBase":true}}}, +{"id":71013,"name":"Feeding Frenzy","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,88,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1589,"weaponDamageMax":2384,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1589,"weaponDamageMax":2384,"stats":{"1":175,"2":262,"6":88,"7":133},"isBase":true}}}, +{"id":71014,"name":"Skullstealer Greataxe","icon":"inv_axe_2h_firelandsraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[408,0,611,0,0,0,0,276,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":408,"2":611,"7":276,"11":265},"isBase":true}}}, +{"id":71018,"name":"Scalp of the Bandit Prince","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,274,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"6":274,"11":202,"22":2115},"isBase":true}}}, +{"id":71019,"name":"Necklace of Fetishes","icon":"inv_jewelry_necklace_53","type":2,"stats":[227,0,341,0,0,126,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"5":126,"6":167},"isBase":true}}}, +{"id":71020,"name":"Gloves of Dissolving Smoke","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,172,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":172,"11":208,"22":1137},"isBase":true}}}, +{"id":71021,"name":"Uncrushable Belt of Fury","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[210,0,454,0,0,0,0,0,133,0,0,302,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":210,"2":454,"8":133,"11":302,"22":2037},"isBase":true}}}, +{"id":71022,"name":"Goblet of Anger","icon":"inv_offhand_1h_firelandsraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,137,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":137,"7":160},"isBase":true}}}, +{"id":71023,"name":"Coalwalker Sandals","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":208,"7":172,"22":956},"isBase":true}}}, +{"id":71024,"name":"Crystal Prison Band","icon":"inv_jewelry_ring_firelandsraid_03c","type":11,"stats":[0,0,341,227,0,0,133,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":133,"11":162},"isBase":true}}}, +{"id":71025,"name":"Flickering Shoulderpads","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-280,-281,-282,-283],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"22":1365},"isBase":true}}}, +{"id":71026,"name":"Bracers of the Dread Hunter","icon":"inv_bracer_plate_raidpaladin_j_01","type":6,"armorType":4,"stats":[0,0,341,227,148,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":148,"11":154,"22":1585},"isBase":true}}}, +{"id":71027,"name":"Treads of Implicit Obedience","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,454,282,177,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":177,"6":201,"22":1790},"isBase":true}}}, +{"id":71028,"name":"Legplates of Absolute Control","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,611,368,299,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":299,"6":185,"22":3169},"isBase":true}}}, +{"id":71029,"name":"Arachnaflame Treads","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[282,0,454,0,0,0,202,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"6":202,"7":182,"22":2490},"isBase":true}}}, +{"id":71030,"name":"Flickering Shoulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-288,-289,-290,-291],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"22":1952},"isBase":true}}}, +{"id":71031,"name":"Cinderweb Leggings","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,0,0,212,0,0,0,284,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"7":212,"11":284,"22":1592},"isBase":true}}}, +{"id":71032,"name":"Widow's Kiss","icon":"inv_jewelry_ring_91","type":11,"stats":[0,227,341,0,0,0,0,167,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"7":167,"11":126},"isBase":true}}}, +{"id":71038,"name":"Ward of the Red Widow","icon":"inv_shield_firelandsraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,207,154,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":207,"4":154,"7":128,"22":12201},"isBase":true}}}, +{"id":71039,"name":"Funeral Pyre","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,0,0,288,0,0,0,0,225,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1428,"weaponDamageMax":2143,"weaponSpeed":2.4,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1428,"weaponDamageMax":2143,"stats":{"2":611,"3":388,"6":288,"11":225,"14":2334},"isBase":true}}}, +{"id":71040,"name":"Cowl of the Clicking Menace","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,259,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":259,"7":222,"22":1478},"isBase":true}}}, +{"id":71041,"name":"Robes of Smoldering Devastation","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,0,0,218,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"7":218,"11":280,"22":1391},"isBase":true}}}, +{"id":71042,"name":"Thoracic Flame Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,252,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":252,"6":244,"22":2278},"isBase":true}}}, +{"id":71043,"name":"Spaulders of Manifold Eyes","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,454,282,213,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":213,"11":162,"22":2716},"isBase":true}}}, +{"id":71044,"name":"Cindersilk Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,211,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":211,"7":167,"22":1137},"isBase":true}}}, +{"id":71045,"name":"Dark Phoenix Tunic","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,230,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":230,"8":263,"22":1820},"isBase":true}}}, +{"id":71046,"name":"Dark Phoenix Gloves","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,133,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":133,"7":230,"22":1137},"isBase":true}}}, +{"id":71047,"name":"Dark Phoenix Helmet","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,227,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"5":227,"7":249,"22":1478},"isBase":true}}}, +{"id":71048,"name":"Dark Phoenix Legguards","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,280,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":280,"6":218,"22":1592},"isBase":true}}}, +{"id":71049,"name":"Dark Phoenix Spaulders","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,0,0,185,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":185,"11":197,"22":1365},"isBase":true}}}, +{"id":71050,"name":"Flamewaker's Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,205,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":205,"7":177,"22":1627},"isBase":true}}}, +{"id":71051,"name":"Flamewaker's Headguard","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,243,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"6":243,"7":238,"22":2115},"isBase":true}}}, +{"id":71052,"name":"Flamewaker's Legguards","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,278,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":278,"7":211,"22":2278},"isBase":true}}}, +{"id":71053,"name":"Flamewaker's Spaulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,282,454,0,0,0,0,170,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":170,"11":208,"22":1952},"isBase":true}}}, +{"id":71054,"name":"Flamewaker's Tunic","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,0,255,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":255,"11":243,"22":2603},"isBase":true}}}, +{"id":71058,"name":"Elementium Deathplate Breastplate","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,269,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":269,"11":232,"22":3622},"isBase":true}}}, +{"id":71059,"name":"Elementium Deathplate Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,211,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":211,"11":167,"22":2264},"isBase":true}}}, +{"id":71060,"name":"Elementium Deathplate Helmet","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,205,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":348,"2":611,"5":205,"7":276,"22":2943},"isBase":true}}}, +{"id":71061,"name":"Elementium Deathplate Greaves","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,0,205,284,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"7":205,"8":284,"22":3169},"isBase":true}}}, +{"id":71062,"name":"Elementium Deathplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,0,211,0,0,0,167,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"7":211,"11":167,"22":2716},"isBase":true}}}, +{"id":71063,"name":"Immolation Battleplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,235,269,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"7":235,"8":269,"22":3622},"isBase":true}}}, +{"id":71064,"name":"Immolation Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,178,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":178,"11":182,"22":2264},"isBase":true}}}, +{"id":71065,"name":"Immolation Helmet","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,199,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":348,"2":611,"5":199,"6":279,"22":2943},"isBase":true}}}, +{"id":71066,"name":"Immolation Legplates","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,227,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":227,"11":274,"22":3169},"isBase":true}}}, +{"id":71067,"name":"Immolation Pauldrons","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,211,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"6":211,"7":167,"22":2716},"isBase":true}}}, +{"id":71068,"name":"Battleplate of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,232,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"5":232,"6":261,"22":3622},"isBase":true}}}, +{"id":71069,"name":"Gauntlets of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[282,0,454,0,0,183,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":183,"11":201,"22":2264},"isBase":true}}}, +{"id":71070,"name":"Helmet of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[348,0,611,0,0,0,0,245,0,0,0,233,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":348,"2":611,"7":245,"11":233,"22":2943},"isBase":true}}}, +{"id":71071,"name":"Legplates of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[368,0,611,0,0,0,218,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":218,"8":280,"22":3169},"isBase":true}}}, +{"id":71072,"name":"Pauldrons of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[282,0,454,0,0,0,197,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"6":197,"7":185,"22":2716},"isBase":true}}}, +{"id":71084,"name":"Branch of Nordrassil","icon":"stave_2h_tarecgosa_e_01stage1","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,0,271,0,250,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"stats":{"2":611,"3":388,"5":271,"7":250,"14":2334},"isBase":true}}}, +{"id":71085,"name":"Runestaff of Nordrassil","icon":"stave_2h_tarecgosa_e_01stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,420,0,301,0,269,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":2217,"weaponDamageMax":3326,"weaponSpeed":3.3,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":2217,"weaponDamageMax":3326,"stats":{"2":689,"3":420,"5":301,"7":269,"14":2633},"isBase":true}}}, +{"id":71086,"name":"Dragonwrath, Tarecgosa's Rest","icon":"stave_2h_tarecgosa_e_01stagefinal","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,426,0,314,0,271,0,0,0,0,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2344,"weaponDamageMax":3517,"weaponSpeed":3.3,"ilvl":397,"phase":1,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"weaponDamageMin":2344,"weaponDamageMax":3517,"stats":{"2":730,"3":426,"5":314,"7":271,"14":2786},"isBase":true}}}, +{"id":71091,"name":"Immolation Breastplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,611,368,276,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":276,"6":225,"22":3622},"isBase":true}}}, +{"id":71092,"name":"Immolation Gloves","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,454,282,0,0,176,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":176,"7":204,"22":2264},"isBase":true}}}, +{"id":71093,"name":"Immolation Headguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,611,348,239,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":239,"7":245,"22":2943},"isBase":true}}}, +{"id":71094,"name":"Immolation Greaves","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,611,368,271,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":271,"7":233,"22":3169},"isBase":true}}}, +{"id":71095,"name":"Immolation Mantle","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,454,282,229,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":229,"6":134,"22":2716},"isBase":true}}}, +{"id":71097,"name":"Obsidian Arborweave Grips","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,282,454,0,0,0,177,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":177,"7":205,"22":1137},"isBase":true}}}, +{"id":71098,"name":"Obsidian Arborweave Headpiece","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,348,611,0,0,265,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"5":265,"6":213,"22":1478},"isBase":true}}}, +{"id":71099,"name":"Obsidian Arborweave Legguards","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,368,611,0,0,166,0,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":166,"11":310,"22":1592},"isBase":true}}}, +{"id":71100,"name":"Obsidian Arborweave Raiment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,275,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":275,"8":221,"22":1820},"isBase":true}}}, +{"id":71101,"name":"Obsidian Arborweave Spaulders","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,0,157,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":157,"11":216,"22":1365},"isBase":true}}}, +{"id":71102,"name":"Obsidian Arborweave Handwraps","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,0,0,177,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":177,"11":203,"22":1137},"isBase":true}}}, +{"id":71103,"name":"Obsidian Arborweave Helm","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,254,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":254,"11":227,"22":1478},"isBase":true}}}, +{"id":71104,"name":"Obsidian Arborweave Legwraps","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,284,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":284,"11":212,"22":1592},"isBase":true}}}, +{"id":71105,"name":"Obsidian Arborweave Tunic","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,255,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":255,"7":238,"22":1820},"isBase":true}}}, +{"id":71106,"name":"Obsidian Arborweave Mantle","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,454,282,183,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":183,"7":201,"22":1365},"isBase":true}}}, +{"id":71107,"name":"Obsidian Arborweave Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,454,282,177,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":177,"7":205,"22":1137},"isBase":true}}}, +{"id":71108,"name":"Obsidian Arborweave Cover","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,611,348,0,0,0,213,0,0,0,265,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"7":213,"11":265,"22":1478},"isBase":true}}}, +{"id":71109,"name":"Obsidian Arborweave Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,248,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":248,"6":266,"22":1592},"isBase":true}}}, +{"id":71110,"name":"Obsidian Arborweave Vestment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,611,368,0,0,0,235,0,0,0,266,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"7":235,"11":266,"22":1820},"isBase":true}}}, +{"id":71111,"name":"Obsidian Arborweave Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,454,282,0,0,203,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":203,"11":172,"22":1365},"isBase":true}}}, +{"id":71129,"name":"Necklace of Smoke Signals","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,227,341,0,0,144,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"5":144,"6":156},"isBase":true}}}, +{"id":71130,"name":"Flamebinder Bracers","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,227,341,0,0,0,148,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"6":148,"8":154,"22":796},"isBase":true}}}, +{"id":71131,"name":"Flamebinding Girdle","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,282,454,0,0,167,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"5":167,"7":211,"22":1024},"isBase":true}}}, +{"id":71150,"name":"Scorchvine Wand","icon":"inv_wand_1h_firelandsraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,262,175,118,0,0,0,0,0,0,113,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"stats":{"2":262,"3":175,"4":118,"11":113,"14":2333},"isBase":true}}}, +{"id":71151,"name":"Trail of Embers","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,262,175,0,108,0,122,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"stats":{"2":262,"3":175,"5":108,"7":122,"14":2333},"isBase":true}}}, +{"id":71208,"name":"Serrated Brimstone Signet","icon":"inv_jewelry_ring_firelandsraid_02a","type":11,"stats":[227,0,341,0,0,0,156,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"6":156,"7":144},"isBase":true}}}, +{"id":71209,"name":"Splintered Brimstone Seal","icon":"inv_jewelry_ring_firelandsraid_03b","type":11,"stats":[0,227,341,0,0,0,140,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"6":140,"11":158},"isBase":true}}}, +{"id":71210,"name":"Crystalline Brimstone Ring","icon":"inv_jewelry_ring_firelandsraid_01b","type":11,"stats":[0,0,341,227,0,162,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"5":162,"11":133},"isBase":true}}}, +{"id":71211,"name":"Soothing Brimstone Circle","icon":"inv_jewelry_ring_firelandsraid_02c","type":11,"stats":[0,0,341,227,156,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":156,"6":144},"isBase":true}}}, +{"id":71212,"name":"Stoneheart Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[227,0,341,0,0,0,160,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"6":160,"8":137},"isBase":true}}}, +{"id":71213,"name":"Amulet of Burning Brilliance","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,0,341,227,0,119,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"5":119,"6":171},"isBase":true}}}, +{"id":71214,"name":"Firemind Pendant","icon":"inv_neck_hyjaldaily_03","type":2,"stats":[0,0,341,227,144,0,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":144,"11":156},"isBase":true}}}, +{"id":71215,"name":"Obsidian Signet of the Avengers","icon":"inv_jewelry_ring_99","type":11,"stats":[236,0,384,0,0,110,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":8}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":236,"2":384,"5":110,"6":195},"isBase":true}}}, +{"id":71216,"name":"Viridian Signet of the Avengers","icon":"inv_jewelry_ring_96","type":11,"stats":[0,236,384,0,0,0,0,181,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":8}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"1":236,"2":384,"7":181,"11":134},"isBase":true}}}, +{"id":71217,"name":"Infernal Signet of the Avengers","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,384,236,0,146,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":8}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":236,"5":146,"7":173},"isBase":true}}}, +{"id":71227,"name":"Bladed Flamewrath Cover","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[227,0,341,0,0,0,0,173,115,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":5}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"7":173,"8":115,"22":695},"isBase":true}}}, +{"id":71228,"name":"Sleek Flamewrath Cloak","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,227,341,0,0,169,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":5}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"5":169,"6":122,"22":695},"isBase":true}}}, +{"id":71229,"name":"Flowing Flamewrath Cape","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,0,341,227,160,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":5}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":160,"11":137,"22":695},"isBase":true}}}, +{"id":71230,"name":"Rippling Flamewrath Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,0,341,227,0,133,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":5}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"5":133,"7":162,"22":695},"isBase":true}}}, +{"id":71237,"name":"Quicksilver Signet of the Avengers","icon":"inv_jewelry_ring_94","type":11,"stats":[0,0,384,236,185,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":8}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":236,"4":185,"11":127},"isBase":true}}}, +{"id":71249,"name":"Firescar Sash","icon":"inv_belt_leather_raiddruid_j_01","type":8,"armorType":2,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":208,"7":172,"22":1024},"isBase":true}}}, +{"id":71250,"name":"Cinch of the Flaming Ember","icon":"inv_belt_plate_raiddeathknight_j_01","type":8,"armorType":4,"stats":[282,0,454,0,0,133,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":282,"2":454,"5":133,"6":230,"22":2037},"isBase":true}}}, +{"id":71253,"name":"Belt of the Seven Seals","icon":"inv_belt_plate_raidpaladin_j_01","type":8,"armorType":4,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":208,"7":172,"22":2037},"isBase":true}}}, +{"id":71254,"name":"Firemend Cinch","icon":"inv_belt_mail_raidshaman_j_01","type":8,"armorType":3,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":208,"7":172,"22":1464},"isBase":true}}}, +{"id":71255,"name":"Firearrow Belt","icon":"inv_belt_mail_raidhunter_j_01","type":8,"armorType":3,"stats":[0,282,454,0,0,0,0,193,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":193,"11":182,"22":1464},"isBase":true}}}, +{"id":71258,"name":"Embereye Belt","icon":"inv_belt_robe_raidmage_j_01","type":8,"armorType":1,"stats":[0,0,454,282,0,0,208,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1204,"repLevel":6}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":208,"7":172,"22":782},"isBase":true}}}, +{"id":71260,"name":"Bracers of Imperious Truths","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,341,227,156,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":156,"6":144,"22":1585},"isBase":true}}}, +{"id":71261,"name":"Gigantiform Bracers","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[227,0,341,0,0,115,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"5":115,"11":173,"22":1585},"isBase":true}}}, +{"id":71262,"name":"Smolderskull Bindings","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,341,227,162,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":162,"6":133,"22":796},"isBase":true}}}, +{"id":71263,"name":"Bracers of Misting Ash","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,341,227,154,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":154,"11":148,"22":1139},"isBase":true}}}, +{"id":71264,"name":"Bracers of Forked Lightning","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,227,341,0,0,0,165,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"6":165,"11":129,"22":1139},"isBase":true}}}, +{"id":71265,"name":"Emberflame Bracers","icon":"inv_bracer_robe_raidwarlock_j_01","type":6,"armorType":1,"stats":[0,0,341,227,0,148,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"5":148,"11":154,"22":608},"isBase":true}}}, +{"id":71266,"name":"Firesoul Wristguards","icon":"inv_bracer_robe_raidpriest_j_01","type":6,"armorType":1,"stats":[0,0,341,227,158,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":158,"7":140,"22":608},"isBase":true}}}, +{"id":71271,"name":"Handwraps of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,206,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":206,"7":172,"22":869},"isBase":true}}}, +{"id":71272,"name":"Cowl of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,611,348,255,0,0,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":255,"11":229,"22":1130},"isBase":true}}}, +{"id":71273,"name":"Legwraps of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,611,368,291,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":291,"6":198,"22":1217},"isBase":true}}}, +{"id":71274,"name":"Robes of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,611,368,261,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":261,"11":243,"22":1391},"isBase":true}}}, +{"id":71275,"name":"Mantle of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,454,282,201,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":201,"7":183,"22":1043},"isBase":true}}}, +{"id":71276,"name":"Gloves of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,454,282,157,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":157,"7":216,"22":869},"isBase":true}}}, +{"id":71277,"name":"Hood of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,235,0,0,0,249,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"7":235,"11":249,"22":1130},"isBase":true}}}, +{"id":71278,"name":"Leggings of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":267,"11":237,"22":1217},"isBase":true}}}, +{"id":71279,"name":"Vestment of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,611,368,222,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":222,"7":274,"22":1391},"isBase":true}}}, +{"id":71280,"name":"Shoulderwraps of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,201,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":201,"7":183,"22":1043},"isBase":true}}}, +{"id":71281,"name":"Balespider's Handwraps","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,157,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"5":157,"7":216,"22":869},"isBase":true}}}, +{"id":71282,"name":"Balespider's Hood","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,228,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"7":228,"11":253,"22":1130},"isBase":true}}}, +{"id":71283,"name":"Balespider's Leggings","icon":"inv_pants_robe_raidwarlock_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":267,"11":237,"22":1217},"isBase":true}}}, +{"id":71284,"name":"Balespider's Robes","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,222,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"5":222,"7":274,"22":1391},"isBase":true}}}, +{"id":71285,"name":"Balespider's Mantle","icon":"inv_shoulder_robe_raidwarlock_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,183,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"5":183,"7":201,"22":1043},"isBase":true}}}, +{"id":71286,"name":"Firehawk Gloves","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,454,282,0,157,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"5":157,"7":216,"22":869},"isBase":true}}}, +{"id":71287,"name":"Firehawk Hood","icon":"inv_helmet_robe_raidmage_j_01","type":1,"armorType":1,"stats":[0,0,611,348,0,0,0,228,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"7":228,"11":253,"22":1130},"isBase":true}}}, +{"id":71288,"name":"Firehawk Leggings","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,611,368,0,0,267,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":267,"11":237,"22":1217},"isBase":true}}}, +{"id":71289,"name":"Firehawk Robes","icon":"inv_chest_robe_raidmage_j_01","type":5,"armorType":1,"stats":[0,0,611,368,0,222,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"5":222,"7":274,"22":1391},"isBase":true}}}, +{"id":71290,"name":"Firehawk Mantle","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,201,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":201,"7":183,"22":1043},"isBase":true}}}, +{"id":71291,"name":"Erupting Volcanic Hauberk","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,0,0,0,259,0,0,0,245,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"7":259,"11":245,"22":2603},"isBase":true}}}, +{"id":71292,"name":"Erupting Volcanic Gloves","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,0,0,199,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":199,"7":183,"22":1627},"isBase":true}}}, +{"id":71293,"name":"Erupting Volcanic Headpiece","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,611,348,0,0,165,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"6":165,"7":291,"22":2115},"isBase":true}}}, +{"id":71294,"name":"Erupting Volcanic Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,0,0,0,279,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"7":279,"11":217,"22":2278},"isBase":true}}}, +{"id":71295,"name":"Erupting Volcanic Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,195,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":195,"7":189,"22":1952},"isBase":true}}}, +{"id":71296,"name":"Erupting Volcanic Tunic","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,269,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":269,"7":232,"22":2603},"isBase":true}}}, +{"id":71297,"name":"Erupting Volcanic Handwraps","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,454,282,199,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":199,"6":185,"22":1627},"isBase":true}}}, +{"id":71298,"name":"Erupting Volcanic Faceguard","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,611,348,279,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":279,"6":203,"22":2115},"isBase":true}}}, +{"id":71299,"name":"Erupting Volcanic Legwraps","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,611,368,266,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":266,"11":235,"22":2278},"isBase":true}}}, +{"id":71300,"name":"Erupting Volcanic Mantle","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,454,282,196,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":196,"11":188,"22":1952},"isBase":true}}}, +{"id":71301,"name":"Erupting Volcanic Cuirass","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,368,611,0,0,0,0,0,259,0,0,245,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"8":259,"11":245,"22":2603},"isBase":true}}}, +{"id":71302,"name":"Erupting Volcanic Grips","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,205,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"5":205,"11":177,"22":1627},"isBase":true}}}, +{"id":71303,"name":"Erupting Volcanic Helmet","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,348,611,0,0,0,0,263,0,0,0,215,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":348,"2":611,"7":263,"11":215,"22":2115},"isBase":true}}}, +{"id":71304,"name":"Erupting Volcanic Legguards","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,368,611,0,0,291,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"sources":[{"drop":{"zoneId":5399,"otherName":"Occu'thar"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":291,"6":198,"22":2278},"isBase":true}}}, +{"id":71305,"name":"Erupting Volcanic Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,282,454,0,0,194,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"5":194,"8":188,"22":1952},"isBase":true}}}, +{"id":71312,"name":"Gatecrasher","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[0,175,262,0,0,0,120,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":120,"8":111},"isBase":true}}}, +{"id":71313,"name":"Sandals of Leaping Coals","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,282,454,0,0,0,133,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":133,"11":230,"22":1251},"isBase":true}}}, +{"id":71314,"name":"Breastplate of the Incendiary Soul","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,368,611,0,0,0,0,231,0,0,0,267,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":368,"2":611,"7":231,"11":267,"22":1820},"isBase":true}}}, +{"id":71315,"name":"Decimation Treads","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,281,454,0,0,176,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":176,"6":199,"22":1790},"isBase":true}}}, +{"id":71323,"name":"Molten Scream","icon":"inv_offhand_1h_firelandsraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,227,0,144,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"5":144,"6":156},"isBase":true}}}, +{"id":71340,"name":"Gatekeeper's Embrace","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,611,368,279,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":279,"11":217,"22":2603},"isBase":true}}}, +{"id":71341,"name":"Glowing Wing Bracers","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,341,227,154,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":154,"7":148,"22":796},"isBase":true}}}, +{"id":71342,"name":"Casque of Flame","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,611,348,258,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":348,"4":258,"11":211,"22":2943},"isBase":true}}}, +{"id":71343,"name":"Mantle of Closed Doors","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,454,282,0,0,211,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"6":211,"11":167,"22":1043},"isBase":true}}}, +{"id":71344,"name":"Breastplate of Shifting Visions","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[368,0,611,0,0,0,0,233,0,0,0,265,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":368,"2":611,"7":233,"11":265,"22":3622},"isBase":true}}}, +{"id":71345,"name":"Shoulderpads of the Forgotten Gate","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,282,454,0,0,210,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"5":210,"6":153,"22":1365},"isBase":true}}}, +{"id":71346,"name":"Grips of Unerring Precision","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,282,454,0,0,0,0,216,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"7":216,"11":157,"22":1627},"isBase":true}}}, +{"id":71347,"name":"Stinger of the Flaming Scorpion","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,192,128,0,0,90,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":656,"weaponDamageMax":1220,"weaponSpeed":1.7,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":656,"weaponDamageMax":1220,"stats":{"2":192,"3":128,"6":90,"11":77},"isBase":true}}}, +{"id":71348,"name":"Flowform Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[0,0,341,227,0,0,0,143,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"7":143,"11":115},"isBase":true}}}, +{"id":71349,"name":"Firecat Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,611,368,237,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":237,"7":259,"22":1592},"isBase":true}}}, +{"id":71350,"name":"Wristwraps of Arrogant Doom","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,341,227,0,0,137,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":137,"7":160,"22":608},"isBase":true}}}, +{"id":71351,"name":"Treads of the Penitent Man","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,454,282,206,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":206,"6":172,"22":2490},"isBase":true}}}, +{"id":71352,"name":"Sulfuras, the Extinguished Hand","icon":"inv_mace_2h_sulfuras_d_01","type":13,"weaponType":4,"handType":4,"stats":[391,0,646,0,0,0,294,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4784,"weaponDamageMax":7176,"weaponSpeed":3.8,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4784,"weaponDamageMax":7176,"stats":{"0":391,"2":646,"6":294,"11":229},"isBase":true}}}, +{"id":71353,"name":"Arathar, the Eye of Flame","icon":"inv_bow_1h_firelandsraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,135,203,0,0,0,95,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3304,"weaponDamageMax":6137,"weaponSpeed":3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3304,"weaponDamageMax":6137,"stats":{"1":135,"2":203,"6":95,"7":81},"isBase":true}}}, +{"id":71354,"name":"Choker of the Vanquished Lord","icon":"inv_neck_firelands_03","type":2,"stats":[0,240,360,0,0,0,0,162,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"7":162,"11":156},"isBase":true}}}, +{"id":71355,"name":"Ko'gun, Hammer of the Firelord","icon":"inv_mace_1h_firelandsraid_d_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,277,185,134,0,0,105,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":857,"weaponDamageMax":1593,"weaponSpeed":2.1,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":857,"weaponDamageMax":1593,"stats":{"2":277,"3":185,"4":134,"7":105,"14":2467},"isBase":true}}}, +{"id":71356,"name":"Crown of Flame","icon":"inv_helm_circlet_firelands_d_01","type":1,"armorType":3,"stats":[0,0,646,371,280,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":280,"7":226,"22":2160},"isBase":true}}}, +{"id":71357,"name":"Majordomo's Chain of Office","icon":"inv_belt_robe_raidpriest_j_01","type":8,"armorType":1,"stats":[0,0,480,300,0,0,0,214,0,0,0,182,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"7":214,"11":182,"22":808},"isBase":true}}}, +{"id":71358,"name":"Fingers of Incineration","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,480,300,0,0,215,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"6":215,"7":188,"22":898},"isBase":true}}}, +{"id":71359,"name":"Chelley's Sterilized Scalpel","icon":"inv_knife_1h_firelandsraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,262,175,0,0,118,0,0,0,0,113,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":695,"weaponDamageMax":1291,"stats":{"2":262,"3":175,"6":118,"11":113,"14":2333},"isBase":true}}}, +{"id":71360,"name":"Spire of Scarlet Pain","icon":"inv_staff_41","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,408,0,206,310,0,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1785,"weaponDamageMax":2679,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1785,"weaponDamageMax":2679,"stats":{"2":611,"3":408,"5":206,"6":310,"14":2334},"isBase":true}}}, +{"id":71361,"name":"Ranseur of Hatred","icon":"inv_polearm_2h_firelandsraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,408,611,0,0,0,284,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"1":408,"2":611,"6":284,"7":252},"isBase":true}}}, +{"id":71362,"name":"Obsidium Cleaver","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[175,0,262,0,0,105,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":175,"2":262,"5":105,"11":123},"isBase":true}}}, +{"id":71365,"name":"Hide-Bound Chains","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,227,341,0,0,115,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"5":115,"7":173,"22":1139},"isBase":true}}}, +{"id":71366,"name":"Lava Bolt Crossbow","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,408,611,0,0,0,280,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"weaponSpeed":3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3571,"weaponDamageMax":5357,"stats":{"1":408,"2":611,"6":280,"7":258},"isBase":true}}}, +{"id":71367,"name":"Theck's Emberseal","icon":"inv_jewelry_ring_firelandsraid_02b","type":11,"stats":[173,0,341,0,0,115,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":173,"2":341,"5":115,"9":227},"isBase":true}}}, +{"id":71401,"name":"Widow's Kiss","icon":"inv_jewelry_ring_91","type":11,"stats":[0,256,384,0,0,0,0,188,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"1":256,"2":384,"7":188,"11":142},"isBase":true}}}, +{"id":71402,"name":"Cinderweb Leggings","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,0,0,244,0,0,0,320,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"7":244,"11":320,"22":1687},"isBase":true}}}, +{"id":71403,"name":"Flickering Shoulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-292,-293,-294,-295],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"22":2044},"isBase":true}}}, +{"id":71404,"name":"Arachnaflame Treads","icon":"inv_boot_plate_raiddeathknight_j_01","type":10,"armorType":4,"stats":[322,0,513,0,0,0,228,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"6":228,"7":208,"22":2586},"isBase":true}}}, +{"id":71405,"name":"Carapace of Imbibed Flame","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,271,0,296,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"9":271,"11":296,"22":3762},"isBase":true}}}, +{"id":71406,"name":"Mandible of Beth'tilac","icon":"inv_sword_1h_firelandsraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[197,0,296,0,0,0,0,0,0,143,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"9":143,"11":112},"isBase":true}}}, +{"id":71407,"name":"Robes of Smoldering Devastation","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,0,0,251,0,0,0,316,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"7":251,"11":316,"22":1491},"isBase":true}}}, +{"id":71408,"name":"Ward of the Red Widow","icon":"inv_shield_firelandsraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,384,236,173,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12421,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":236,"4":173,"7":146,"22":12421},"isBase":true}}}, +{"id":71409,"name":"Funeral Pyre","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,440,0,0,324,0,0,0,0,256,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":1612,"weaponDamageMax":2419,"weaponSpeed":2.4,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":1612,"weaponDamageMax":2419,"stats":{"2":689,"3":440,"6":324,"11":256,"14":2633},"isBase":true}}}, +{"id":71410,"name":"Cindersilk Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,238,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":238,"7":191,"22":1205},"isBase":true}}}, +{"id":71411,"name":"Cowl of the Clicking Menace","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,294,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":294,"7":256,"22":1566},"isBase":true}}}, +{"id":71412,"name":"Thoracic Flame Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,284,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":284,"6":280,"22":2385},"isBase":true}}}, +{"id":71413,"name":"Spaulders of Manifold Eyes","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,513,322,241,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":241,"11":185,"22":2822},"isBase":true}}}, +{"id":71414,"name":"Arbalest of Erupting Fury","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,460,689,0,0,0,329,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"stats":{"1":460,"2":689,"6":329,"11":269},"isBase":true}}}, +{"id":71415,"name":"Dreadfire Drape","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,241,384,0,0,158,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"1":241,"2":384,"5":158,"11":113,"22":745},"isBase":true}}}, +{"id":71416,"name":"Hood of Rampant Disdain","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,0,0,333,202,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"7":333,"8":202,"22":1566},"isBase":true}}}, +{"id":71417,"name":"Flaming Core Chestguard","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,266,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":266,"6":294,"22":2725},"isBase":true}}}, +{"id":71418,"name":"Earthcrack Bracers","icon":"inv_bracer_plate_raidwarrior_j_01","type":6,"armorType":4,"stats":[256,0,384,0,0,0,178,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":256,"2":384,"6":178,"7":158,"22":1646},"isBase":true}}}, +{"id":71419,"name":"Fireskin Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,238,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"5":238,"11":191,"22":2351},"isBase":true}}}, +{"id":71420,"name":"Cracked Obsidian Stompers","icon":"inv_boots_plate_raidwarrior_j_01","type":10,"armorType":4,"stats":[240,0,513,0,0,0,0,0,173,322,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":240,"2":513,"8":173,"9":322,"22":2586},"isBase":true}}}, +{"id":71421,"name":"Flickering Cowl","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-261,-262,-265,-269,-270,-271],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"22":1211},"isBase":true}}}, +{"id":71422,"name":"Volcanospike","icon":"inv_sword_1h_firelandsraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,296,197,0,119,0,139,0,0,0,0,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"weaponSpeed":1.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":697,"weaponDamageMax":1296,"stats":{"2":296,"3":197,"5":119,"7":139,"14":2636},"isBase":true}}}, +{"id":71423,"name":"Heartstone of Rhyolith","icon":"inv_misc_necklace_firelands_2","type":2,"stats":[0,0,384,256,183,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":183,"11":150},"isBase":true}}}, +{"id":71424,"name":"Incendic Chestguard","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,314,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":314,"7":246,"22":1928},"isBase":true}}}, +{"id":71425,"name":"Lava Line Wristbands","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,0,384,256,178,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":178,"7":158,"22":1192},"isBase":true}}}, +{"id":71426,"name":"Grips of the Raging Giant","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,513,322,231,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Lord Rhyolith"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":231,"6":202,"22":2351},"isBase":true}}}, +{"id":71427,"name":"Alysra's Razor","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,177,296,0,0,0,0,128,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"stats":{"1":177,"2":296,"7":128,"8":113},"isBase":true}}}, +{"id":71428,"name":"Flickering Wristbands","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"22":843},"isBase":true}}}, +{"id":71429,"name":"Moltenfeather Leggings","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,290,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":290,"11":282,"22":2385},"isBase":true}}}, +{"id":71430,"name":"Greathelm of the Voracious Maw","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,224,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":400,"2":689,"6":224,"11":320,"22":3057},"isBase":true}}}, +{"id":71431,"name":"Lavaworm Legplates","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,320,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"5":320,"11":244,"22":3292},"isBase":true}}}, +{"id":71432,"name":"Spaulders of Recurring Flame","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,236,186,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"9":236,"10":186,"22":2822},"isBase":true}}}, +{"id":71433,"name":"Alysrazor's Band","icon":"inv_jewelry_ring_firelandsraid_01a","type":11,"stats":[256,0,384,0,0,0,0,124,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":256,"2":384,"7":124,"8":171},"isBase":true}}}, +{"id":71434,"name":"Wings of Flame","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,0,384,256,0,0,162,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"6":162,"11":176,"22":745},"isBase":true}}}, +{"id":71435,"name":"Leggings of Billowing Fire","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,244,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"6":244,"7":320,"22":1304},"isBase":true}}}, +{"id":71436,"name":"Phoenix-Down Treads","icon":"inv_boots_leather_raiddruid_j_01","type":10,"armorType":2,"stats":[0,0,513,322,241,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,1325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":241,"11":185,"22":1325},"isBase":true}}}, +{"id":71437,"name":"Clawshaper Gauntlets","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,248,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":248,"11":174,"22":1703},"isBase":true}}}, +{"id":71438,"name":"Craterflame Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,0,0,223,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":223,"7":213,"22":2044},"isBase":true}}}, +{"id":71439,"name":"Clutch of the Firemother","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,689,420,306,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Alysrazor"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":306,"7":266,"22":3762},"isBase":true}}}, +{"id":71440,"name":"Gloves of Dissolving Smoke","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,197,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":197,"11":235,"22":1205},"isBase":true}}}, +{"id":71441,"name":"Feeding Frenzy","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,100,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"stats":{"1":197,"2":296,"6":100,"7":150},"isBase":true}}}, +{"id":71442,"name":"Scalp of the Bandit Prince","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,310,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"6":310,"11":234,"22":2214},"isBase":true}}}, +{"id":71443,"name":"Uncrushable Belt of Fury","icon":"inv_belt_plate_raidwarrior_j_01","type":8,"armorType":4,"stats":[240,0,513,0,0,0,0,0,153,0,0,342,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":240,"2":513,"8":153,"11":342,"22":2116},"isBase":true}}}, +{"id":71444,"name":"Legplates of Frenzied Devotion","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,236,324,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"9":236,"10":324,"22":3292},"isBase":true}}}, +{"id":71445,"name":"Skullstealer Greataxe","icon":"inv_axe_2h_firelandsraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[460,0,689,0,0,0,0,311,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"0":460,"2":689,"7":311,"11":299},"isBase":true}}}, +{"id":71446,"name":"Necklace of Fetishes","icon":"inv_jewelry_necklace_53","type":2,"stats":[256,0,384,0,0,142,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":256,"2":384,"5":142,"6":188},"isBase":true}}}, +{"id":71447,"name":"Coalwalker Sandals","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,513,322,0,0,235,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":235,"7":197,"22":1025},"isBase":true}}}, +{"id":71448,"name":"Goblet of Anger","icon":"inv_offhand_1h_firelandsraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,154,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":154,"7":181},"isBase":true}}}, +{"id":71449,"name":"Crystal Prison Band","icon":"inv_jewelry_ring_firelandsraid_03c","type":11,"stats":[0,0,384,256,0,0,150,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"6":150,"11":183},"isBase":true}}}, +{"id":71450,"name":"Flickering Shoulderpads","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-284,-285,-286,-287],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"22":1446},"isBase":true}}}, +{"id":71451,"name":"Treads of Implicit Obedience","icon":"inv_boots_mail_raidshaman_j_01","type":10,"armorType":3,"stats":[0,0,513,322,201,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":201,"6":228,"22":1874},"isBase":true}}}, +{"id":71452,"name":"Bracers of the Dread Hunter","icon":"inv_bracer_plate_raidpaladin_j_01","type":6,"armorType":4,"stats":[0,0,384,256,166,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":166,"11":173,"22":1646},"isBase":true}}}, +{"id":71453,"name":"Legplates of Absolute Control","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,689,420,337,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Shannox"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":337,"6":214,"22":3292},"isBase":true}}}, +{"id":71454,"name":"Gatecrasher","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[0,197,296,0,0,0,135,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":135,"8":125},"isBase":true}}}, +{"id":71455,"name":"Breastplate of the Incendiary Soul","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,0,264,0,0,0,303,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"7":264,"11":303,"22":1928},"isBase":true}}}, +{"id":71456,"name":"Shoulderpads of the Forgotten Gate","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,240,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"5":240,"6":173,"22":1446},"isBase":true}}}, +{"id":71457,"name":"Decimation Treads","icon":"inv_boots_mail_raidhunter_j_01","type":10,"armorType":3,"stats":[0,321,513,0,0,199,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":321,"2":513,"5":199,"6":227,"22":1874},"isBase":true}}}, +{"id":71458,"name":"Flickering Handguards","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-275,-276,-277],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"22":2351},"isBase":true}}}, +{"id":71459,"name":"Helm of Blazing Glory","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,0,0,0,0,320,224,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":400,"2":689,"10":320,"11":224,"22":3057},"isBase":true}}}, +{"id":71460,"name":"Shard of Torment","icon":"inv_shield_firelandsraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[176,0,384,0,0,0,0,0,0,166,173,0,0,0,0,0,0,0,0,0,0,0,12421,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":176,"2":384,"9":166,"10":173,"22":12421},"isBase":true}}}, +{"id":71461,"name":"Mantle of Closed Doors","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,238,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":238,"11":191,"22":1118},"isBase":true}}}, +{"id":71462,"name":"Molten Scream","icon":"inv_offhand_1h_firelandsraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,384,256,0,162,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"5":162,"6":176},"isBase":true}}}, +{"id":71463,"name":"Glowing Wing Bracers","icon":"inv_bracer_leather_raiddruid_j_01","type":6,"armorType":2,"stats":[0,0,384,256,173,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"4":173,"7":166,"22":843},"isBase":true}}}, +{"id":71464,"name":"Gatekeeper's Embrace","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,315,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":315,"11":249,"22":2725},"isBase":true}}}, +{"id":71465,"name":"Casque of Flame","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,689,400,296,0,0,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Baleroc, the Gatekeeper"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":296,"11":242,"22":3057},"isBase":true}}}, +{"id":71466,"name":"Fandral's Flamescythe","icon":"inv_staff_99","type":13,"weaponType":8,"handType":4,"stats":[0,460,689,0,0,0,311,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":3225,"weaponDamageMax":4838,"weaponSpeed":2.4,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":3225,"weaponDamageMax":4838,"stats":{"1":460,"2":689,"6":311,"11":299},"isBase":true}}}, +{"id":71467,"name":"Sandals of Leaping Coals","icon":"inv_boot_leather_raidrogue_j_01","type":10,"armorType":2,"stats":[0,322,513,0,0,0,153,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1325,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":153,"11":260,"22":1325},"isBase":true}}}, +{"id":71468,"name":"Grips of Unerring Precision","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,0,0,244,0,0,0,180,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"7":244,"11":180,"22":1703},"isBase":true}}}, +{"id":71469,"name":"Breastplate of Shifting Visions","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,266,0,0,0,301,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"7":266,"11":301,"22":3762},"isBase":true}}}, +{"id":71470,"name":"Bracers of the Fiery Path","icon":"inv_bracer_plate_raiddeathknight_j_01","type":6,"armorType":4,"stats":[236,0,384,0,0,0,0,0,0,0,168,151,0,0,0,0,0,0,0,0,0,0,1646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":236,"2":384,"10":168,"11":151,"22":1646},"isBase":true}}}, +{"id":71471,"name":"Wristwraps of Arrogant Doom","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,384,256,0,0,154,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"6":154,"7":181,"22":652},"isBase":true}}}, +{"id":71472,"name":"Flowform Choker","icon":"inv_misc_necklace_firelands_1","type":2,"stats":[0,0,384,256,0,0,0,163,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"2":384,"3":256,"7":163,"11":133},"isBase":true}}}, +{"id":71473,"name":"Stinger of the Flaming Scorpion","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,296,197,0,0,139,0,0,0,0,119,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":741,"weaponDamageMax":1377,"weaponSpeed":1.7,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":741,"weaponDamageMax":1377,"stats":{"2":296,"3":197,"6":139,"11":119,"14":2636},"isBase":true}}}, +{"id":71474,"name":"Firecat Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,269,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":269,"7":295,"22":1687},"isBase":true}}}, +{"id":71475,"name":"Treads of the Penitent Man","icon":"inv_boots_plate_raidpaladin_j_01","type":10,"armorType":4,"stats":[0,0,513,322,233,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2586,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Majordomo Staghelm"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":233,"6":196,"22":2586},"isBase":true}}}, +{"id":71476,"name":"Elementium Deathplate Breastplate","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,304,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"6":304,"11":266,"22":3762},"isBase":true}}}, +{"id":71477,"name":"Elementium Deathplate Gauntlets","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,238,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"5":238,"11":191,"22":2351},"isBase":true}}}, +{"id":71478,"name":"Elementium Deathplate Helmet","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,239,0,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":400,"2":689,"5":239,"7":311,"22":3057},"isBase":true}}}, +{"id":71479,"name":"Elementium Deathplate Greaves","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,236,322,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"7":236,"8":322,"22":3292},"isBase":true}}}, +{"id":71480,"name":"Elementium Deathplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,0,238,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlegear","setId":1000,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"7":238,"11":191,"22":2822},"isBase":true}}}, +{"id":71481,"name":"Elementium Deathplate Chestguard","icon":"inv_chest_plate_raiddeathknight_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"9":316,"10":271,"22":3762},"isBase":true}}}, +{"id":71482,"name":"Elementium Deathplate Handguards","icon":"inv_glove_plate_raiddeathknight_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"9":202,"11":231,"22":2351},"isBase":true}}}, +{"id":71483,"name":"Elementium Deathplate Faceguard","icon":"inv_helmet_plate_raiddeathknight_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":289,"2":689,"8":193,"10":440,"22":3057},"isBase":true}}}, +{"id":71484,"name":"Elementium Deathplate Legguards","icon":"inv_pant_plate_raiddeathknight_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"10":280,"11":284,"22":3292},"isBase":true}}}, +{"id":71485,"name":"Elementium Deathplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Elementium Deathplate Battlearmor","setId":1001,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":224,"2":513,"5":200,"11":322,"22":2822},"isBase":true}}}, +{"id":71486,"name":"Obsidian Arborweave Raiment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,311,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"6":311,"8":253,"22":1928},"isBase":true}}}, +{"id":71487,"name":"Obsidian Arborweave Grips","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,202,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":202,"7":231,"22":1205},"isBase":true}}}, +{"id":71488,"name":"Obsidian Arborweave Headpiece","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,301,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"5":301,"6":246,"22":1566},"isBase":true}}}, +{"id":71489,"name":"Obsidian Arborweave Legguards","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,193,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":193,"11":349,"22":1687},"isBase":true}}}, +{"id":71490,"name":"Obsidian Arborweave Spaulders","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,0,180,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Battlegarb","setId":1002,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":180,"11":244,"22":1446},"isBase":true}}}, +{"id":71491,"name":"Obsidian Arborweave Handwraps","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,0,0,202,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":202,"11":230,"22":1205},"isBase":true}}}, +{"id":71492,"name":"Obsidian Arborweave Helm","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,289,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":289,"11":261,"22":1566},"isBase":true}}}, +{"id":71493,"name":"Obsidian Arborweave Legwraps","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,320,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":320,"11":244,"22":1687},"isBase":true}}}, +{"id":71494,"name":"Obsidian Arborweave Tunic","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,291,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":291,"7":269,"22":1928},"isBase":true}}}, +{"id":71495,"name":"Obsidian Arborweave Mantle","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,513,322,209,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Vestments","setId":1004,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":209,"7":227,"22":1446},"isBase":true}}}, +{"id":71496,"name":"Obsidian Arborweave Gloves","icon":"inv_gauntlets_leather_raiddruid_j_01","type":7,"armorType":2,"stats":[0,0,513,322,202,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":202,"7":231,"22":1205},"isBase":true}}}, +{"id":71497,"name":"Obsidian Arborweave Cover","icon":"inv_helmet_leather_raiddruid_j_01","type":1,"armorType":2,"stats":[0,0,689,400,0,0,0,246,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"7":246,"11":301,"22":1566},"isBase":true}}}, +{"id":71498,"name":"Obsidian Arborweave Leggings","icon":"inv_pants_leather_raiddruid_j_01","type":9,"armorType":2,"stats":[0,0,689,420,282,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":282,"6":300,"22":1687},"isBase":true}}}, +{"id":71499,"name":"Obsidian Arborweave Vestment","icon":"inv_chest_leather_raiddruid_j_01","type":5,"armorType":2,"stats":[0,0,689,420,0,0,0,269,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"7":269,"11":301,"22":1928},"isBase":true}}}, +{"id":71500,"name":"Obsidian Arborweave Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_j_01","type":3,"armorType":2,"stats":[0,0,513,322,0,0,231,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Obsidian Arborweave Regalia","setId":1003,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":231,"11":195,"22":1446},"isBase":true}}}, +{"id":71501,"name":"Flamewaker's Tunic","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,0,291,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"6":291,"11":276,"22":2725},"isBase":true}}}, +{"id":71502,"name":"Flamewaker's Gloves","icon":"inv_glove_mail_raidhunter_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,0,231,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":231,"7":202,"22":1703},"isBase":true}}}, +{"id":71503,"name":"Flamewaker's Headguard","icon":"inv_helm_mail_raidhunter_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,278,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"6":278,"7":272,"22":2214},"isBase":true}}}, +{"id":71504,"name":"Flamewaker's Legguards","icon":"inv_pants_mail_raidhunter_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,316,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":316,"7":242,"22":2385},"isBase":true}}}, +{"id":71505,"name":"Flamewaker's Spaulders","icon":"inv_shoulder_mail_raidhunter_j_01","type":3,"armorType":3,"stats":[0,322,513,0,0,0,0,194,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Flamewaker's Battlegear","setId":1005,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"7":194,"11":235,"22":2044},"isBase":true}}}, +{"id":71507,"name":"Firehawk Gloves","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,513,322,0,180,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"5":180,"7":244,"22":932},"isBase":true}}}, +{"id":71508,"name":"Firehawk Hood","icon":"inv_helmet_robe_raidmage_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,262,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"7":262,"11":288,"22":1211},"isBase":true}}}, +{"id":71509,"name":"Firehawk Leggings","icon":"inv_pants_robe_raidmage_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"6":301,"11":271,"22":1304},"isBase":true}}}, +{"id":71510,"name":"Firehawk Robes","icon":"inv_chest_robe_raidmage_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,254,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"5":254,"7":310,"22":1491},"isBase":true}}}, +{"id":71511,"name":"Firehawk Mantle","icon":"inv_shoulder_robe_raidmage_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,227,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Firehawk Robes of Conflagration","setId":1007,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":227,"7":209,"22":1118},"isBase":true}}}, +{"id":71512,"name":"Immolation Battleplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,269,303,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"7":269,"8":303,"22":3762},"isBase":true}}}, +{"id":71513,"name":"Immolation Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,204,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"5":204,"11":209,"22":2351},"isBase":true}}}, +{"id":71514,"name":"Immolation Helmet","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,232,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":400,"2":689,"5":232,"6":315,"22":3057},"isBase":true}}}, +{"id":71515,"name":"Immolation Legplates","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,261,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"6":261,"11":309,"22":3292},"isBase":true}}}, +{"id":71516,"name":"Immolation Pauldrons","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,238,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Immolation","setId":1012,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"6":238,"7":191,"22":2822},"isBase":true}}}, +{"id":71517,"name":"Immolation Breastplate","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[0,0,689,420,311,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":311,"6":259,"22":3762},"isBase":true}}}, +{"id":71518,"name":"Immolation Gloves","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[0,0,513,322,0,0,201,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":201,"7":231,"22":2351},"isBase":true}}}, +{"id":71519,"name":"Immolation Headguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[0,0,689,400,273,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":273,"7":279,"22":3057},"isBase":true}}}, +{"id":71520,"name":"Immolation Greaves","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[0,0,689,420,305,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":305,"7":267,"22":3292},"isBase":true}}}, +{"id":71521,"name":"Immolation Mantle","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[0,0,513,322,259,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Immolation","setId":1011,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":259,"6":154,"22":2822},"isBase":true}}}, +{"id":71522,"name":"Immolation Chestguard","icon":"inv_chest_plate_raidpaladin_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"9":316,"10":271,"22":3762},"isBase":true}}}, +{"id":71523,"name":"Immolation Handguards","icon":"inv_gauntlets_plate_raidpaladin_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"9":202,"11":231,"22":2351},"isBase":true}}}, +{"id":71524,"name":"Immolation Faceguard","icon":"inv_helmet_plate_raidpaladin_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":289,"2":689,"8":193,"10":440,"22":3057},"isBase":true}}}, +{"id":71525,"name":"Immolation Legguards","icon":"inv_pants_plate_raidpaladin_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"10":280,"11":284,"22":3292},"isBase":true}}}, +{"id":71526,"name":"Immolation Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battlearmor of Immolation","setId":1013,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":224,"2":513,"5":200,"11":322,"22":2822},"isBase":true}}}, +{"id":71527,"name":"Handwraps of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,513,322,233,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":233,"7":196,"22":932},"isBase":true}}}, +{"id":71528,"name":"Cowl of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,689,400,289,0,0,0,0,0,0,263,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":289,"11":263,"22":1211},"isBase":true}}}, +{"id":71529,"name":"Legwraps of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,689,420,329,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":329,"6":229,"22":1304},"isBase":true}}}, +{"id":71530,"name":"Robes of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,689,420,295,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":295,"11":277,"22":1491},"isBase":true}}}, +{"id":71531,"name":"Mantle of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,513,322,227,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of the Cleansing Flame","setId":1009,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":227,"7":209,"22":1118},"isBase":true}}}, +{"id":71532,"name":"Gloves of the Cleansing Flame","icon":"inv_gauntlets_robe_raidpriest_j_01","type":7,"armorType":1,"stats":[0,0,513,322,180,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":180,"7":244,"22":932},"isBase":true}}}, +{"id":71533,"name":"Hood of the Cleansing Flame","icon":"inv_helmet_robe_raidpriest_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,269,0,0,0,283,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"7":269,"11":283,"22":1211},"isBase":true}}}, +{"id":71534,"name":"Leggings of the Cleansing Flame","icon":"inv_pants_robe_raidpriest_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"6":301,"11":271,"22":1304},"isBase":true}}}, +{"id":71535,"name":"Vestment of the Cleansing Flame","icon":"inv_chest_robe_raidpriest_j_01","type":5,"armorType":1,"stats":[0,0,689,420,254,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":254,"7":310,"22":1491},"isBase":true}}}, +{"id":71536,"name":"Shoulderwraps of the Cleansing Flame","icon":"inv_shoulder_robe_raidpriest_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,0,227,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of the Cleansing Flame","setId":1010,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":227,"7":209,"22":1118},"isBase":true}}}, +{"id":71537,"name":"Dark Phoenix Tunic","icon":"inv_chest_leather_raidrogue_j_01","type":5,"armorType":2,"stats":[0,420,689,0,0,0,261,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"6":261,"8":299,"22":1928},"isBase":true}}}, +{"id":71538,"name":"Dark Phoenix Gloves","icon":"inv_gauntlet_leather_raidrogue_j_01","type":7,"armorType":2,"stats":[0,322,513,0,0,0,153,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":153,"7":260,"22":1205},"isBase":true}}}, +{"id":71539,"name":"Dark Phoenix Helmet","icon":"inv_helmet_leather_raidrogue_j_01","type":1,"armorType":2,"stats":[0,400,689,0,0,259,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"5":259,"7":285,"22":1566},"isBase":true}}}, +{"id":71540,"name":"Dark Phoenix Legguards","icon":"inv_pants_leather_raidrogue_j_01","type":9,"armorType":2,"stats":[0,420,689,0,0,316,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":316,"6":251,"22":1687},"isBase":true}}}, +{"id":71541,"name":"Dark Phoenix Spaulders","icon":"inv_shoulders_leather_raidrogue_j_01","type":3,"armorType":2,"stats":[0,322,513,0,0,0,0,211,0,0,0,222,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Vestments of the Dark Phoenix","setId":1006,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"7":211,"11":222,"22":1446},"isBase":true}}}, +{"id":71542,"name":"Erupting Volcanic Tunic","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,304,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":304,"7":266,"22":2725},"isBase":true}}}, +{"id":71543,"name":"Erupting Volcanic Handwraps","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,225,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":225,"6":211,"22":1703},"isBase":true}}}, +{"id":71544,"name":"Erupting Volcanic Faceguard","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,689,400,315,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"4":315,"6":236,"22":2214},"isBase":true}}}, +{"id":71545,"name":"Erupting Volcanic Legwraps","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,301,0,0,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"4":301,"11":269,"22":2385},"isBase":true}}}, +{"id":71546,"name":"Erupting Volcanic Mantle","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,222,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Vestments","setId":1014,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":222,"11":214,"22":2044},"isBase":true}}}, +{"id":71547,"name":"Erupting Volcanic Cuirass","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,420,689,0,0,0,0,0,293,0,0,279,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"8":293,"11":279,"22":2725},"isBase":true}}}, +{"id":71548,"name":"Erupting Volcanic Grips","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,322,513,0,0,231,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"5":231,"11":202,"22":1703},"isBase":true}}}, +{"id":71549,"name":"Erupting Volcanic Helmet","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,400,689,0,0,0,0,299,0,0,0,248,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":400,"2":689,"7":299,"11":248,"22":2214},"isBase":true}}}, +{"id":71550,"name":"Erupting Volcanic Legguards","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,420,689,0,0,329,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"1":420,"2":689,"5":329,"6":229,"22":2385},"isBase":true}}}, +{"id":71551,"name":"Erupting Volcanic Spaulders","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,322,513,0,0,220,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Battlegear","setId":1015,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"5":220,"8":213,"22":2044},"isBase":true}}}, +{"id":71552,"name":"Erupting Volcanic Hauberk","icon":"inv_chest_mail_raidshaman_j_01","type":5,"armorType":3,"stats":[0,0,689,420,0,0,0,293,0,0,0,279,0,0,0,0,0,0,0,0,0,0,2725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"7":293,"11":279,"22":2725},"isBase":true}}}, +{"id":71553,"name":"Erupting Volcanic Gloves","icon":"inv_gauntlets_mail_raidshaman_j_01","type":7,"armorType":3,"stats":[0,0,513,322,0,0,225,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"6":225,"7":208,"22":1703},"isBase":true}}}, +{"id":71554,"name":"Erupting Volcanic Headpiece","icon":"inv_helmet_mail_raidshaman_j_01","type":1,"armorType":3,"stats":[0,0,689,400,0,0,192,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2214,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"6":192,"7":330,"22":2214},"isBase":true}}}, +{"id":71555,"name":"Erupting Volcanic Kilt","icon":"inv_pants_mail_raidshaman_j_01","type":9,"armorType":3,"stats":[0,0,689,420,0,0,0,315,0,0,0,249,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"7":315,"11":249,"22":2385},"isBase":true}}}, +{"id":71556,"name":"Erupting Volcanic Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_j_01","type":3,"armorType":3,"stats":[0,0,513,322,221,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2044,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Volcanic Regalia","setId":1016,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"4":221,"7":215,"22":2044},"isBase":true}}}, +{"id":71557,"name":"Ranseur of Hatred","icon":"inv_polearm_2h_firelandsraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,460,689,0,0,0,320,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"1":460,"2":689,"6":320,"7":284},"isBase":true}}}, +{"id":71558,"name":"Lava Bolt Crossbow","icon":"inv_weapon_crossbow_40","type":14,"rangedWeaponType":2,"stats":[0,460,689,0,0,0,316,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4031,"weaponDamageMax":6047,"stats":{"1":460,"2":689,"6":316,"7":291},"isBase":true}}}, +{"id":71559,"name":"Spire of Scarlet Pain","icon":"inv_staff_41","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,460,0,233,349,0,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":2015,"weaponDamageMax":3024,"weaponSpeed":3,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":2015,"weaponDamageMax":3024,"stats":{"2":689,"3":460,"5":233,"6":349,"14":2633},"isBase":true}}}, +{"id":71560,"name":"Chelley's Sterilized Scalpel","icon":"inv_knife_1h_firelandsraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,296,197,0,0,133,0,0,0,0,128,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"stats":{"2":296,"3":197,"6":133,"11":128,"14":2636},"isBase":true}}}, +{"id":71561,"name":"Hide-Bound Chains","icon":"inv_bracer_mail_raidhunter_j_01","type":6,"armorType":3,"stats":[0,256,384,0,0,130,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"1":256,"2":384,"5":130,"7":195,"22":1192},"isBase":true}}}, +{"id":71562,"name":"Obsidium Cleaver","icon":"inv_axe_1h_firelandsraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[197,0,296,0,0,119,0,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"0":197,"2":296,"5":119,"11":139},"isBase":true}}}, +{"id":71563,"name":"Firebound Gorget","icon":"inv_jewelry_necklace_52","type":2,"stats":[195,0,384,0,0,0,0,0,130,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":195,"2":384,"8":130,"11":256},"isBase":true}}}, +{"id":71564,"name":"Theck's Emberseal","icon":"inv_jewelry_ring_firelandsraid_02b","type":11,"stats":[195,0,384,0,0,130,0,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":487,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":487,"stats":{"0":195,"2":384,"5":130,"9":256},"isBase":true}}}, +{"id":71575,"name":"Trail of Embers","icon":"inv_wand_1h_firelandsraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,296,197,0,122,0,137,0,0,0,0,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"stats":{"2":296,"3":197,"5":122,"7":137,"14":2636},"isBase":true}}}, +{"id":71579,"name":"Scorchvine Wand","icon":"inv_wand_1h_firelandsraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,296,197,133,0,0,0,0,0,0,128,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":784,"weaponDamageMax":1458,"stats":{"2":296,"3":197,"4":133,"11":128,"14":2636},"isBase":true}}}, +{"id":71594,"name":"Balespider's Handwraps","icon":"inv_glove_robe_raidwarlock_j_01","type":7,"armorType":1,"stats":[0,0,513,322,0,180,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"5":180,"7":244,"22":932},"isBase":true}}}, +{"id":71595,"name":"Balespider's Hood","icon":"inv_helm_robe_raidwarlock_j_01","type":1,"armorType":1,"stats":[0,0,689,400,0,0,0,262,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1211,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":400,"7":262,"11":288,"22":1211},"isBase":true}}}, +{"id":71596,"name":"Balespider's Leggings","icon":"inv_pants_robe_raidwarlock_j_01","type":9,"armorType":1,"stats":[0,0,689,420,0,0,301,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"6":301,"11":271,"22":1304},"isBase":true}}}, +{"id":71597,"name":"Balespider's Robes","icon":"inv_chest_robe_raidwarlock_j_01","type":5,"armorType":1,"stats":[0,0,689,420,0,254,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"2":689,"3":420,"5":254,"7":310,"22":1491},"isBase":true}}}, +{"id":71598,"name":"Balespider's Mantle","icon":"inv_shoulder_robe_raidwarlock_j_01","type":3,"armorType":1,"stats":[0,0,513,322,0,209,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Balespider's Burning Vestments","setId":1008,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"2":513,"3":322,"5":209,"7":227,"22":1118},"isBase":true}}}, +{"id":71599,"name":"Helmet of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[400,0,689,0,0,0,0,281,0,0,0,266,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":400,"2":689,"7":281,"11":266,"22":3057},"isBase":true}}}, +{"id":71600,"name":"Battleplate of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,263,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[4,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"5":263,"6":297,"22":3762},"isBase":true}}}, +{"id":71601,"name":"Gauntlets of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,209,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"5":209,"11":227,"22":2351},"isBase":true}}}, +{"id":71602,"name":"Legplates of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,251,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"6":251,"8":316,"22":3292},"isBase":true}}}, +{"id":71603,"name":"Pauldrons of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[322,0,513,0,0,0,223,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Warplate","setId":1017,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"6":223,"7":210,"22":2822},"isBase":true}}}, +{"id":71604,"name":"Chestguard of the Molten Giant","icon":"inv_chest_plate_raidwarrior_j_01","type":5,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,316,271,0,0,0,0,0,0,0,0,0,0,0,3762,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"9":316,"10":271,"22":3762},"isBase":true}}}, +{"id":71605,"name":"Handguards of the Molten Giant","icon":"inv_glove_plate_raidwarrior_j_01","type":7,"armorType":4,"stats":[322,0,513,0,0,0,0,0,0,202,0,231,0,0,0,0,0,0,0,0,0,0,2351,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":322,"2":513,"9":202,"11":231,"22":2351},"isBase":true}}}, +{"id":71606,"name":"Faceguard of the Molten Giant","icon":"inv_helm_plate_raidwarrior_j_01","type":1,"armorType":4,"stats":[289,0,689,0,0,0,0,0,193,0,440,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":289,"2":689,"8":193,"10":440,"22":3057},"isBase":true}}}, +{"id":71607,"name":"Legguards of the Molten Giant","icon":"inv_glove_pants_raidwarrior_j_01","type":9,"armorType":4,"stats":[420,0,689,0,0,0,0,0,0,0,280,284,0,0,0,0,0,0,0,0,0,0,3292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"391":{"randPropPoints":874,"stats":{"0":420,"2":689,"10":280,"11":284,"22":3292},"isBase":true}}}, +{"id":71608,"name":"Shoulderguards of the Molten Giant","icon":"inv_shoulder_plate_raidwarrior_j_01","type":3,"armorType":4,"stats":[224,0,513,0,0,200,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Molten Giant Battleplate","setId":1018,"scalingOptions":{"391":{"randPropPoints":650,"stats":{"0":224,"2":513,"5":200,"11":322,"22":2822},"isBase":true}}}, +{"id":71610,"name":"Choker of the Vanquished Lord","icon":"inv_neck_firelands_03","type":2,"stats":[0,271,406,0,0,0,0,183,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":271,"2":406,"7":183,"11":176},"isBase":true}}}, +{"id":71611,"name":"Arathar, the Eye of Flame","icon":"inv_bow_1h_firelandsraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,486,730,0,0,0,343,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":3730,"weaponDamageMax":6928,"weaponSpeed":3,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":3730,"weaponDamageMax":6928,"stats":{"1":486,"2":730,"6":343,"7":292},"isBase":true}}}, +{"id":71612,"name":"Pauldrons of Roaring Flame","icon":"inv_plate_firelands_d_01","type":3,"armorType":4,"stats":[255,0,542,0,0,0,0,0,0,361,0,163,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":255,"2":542,"9":361,"11":163,"22":2871},"isBase":true}}}, +{"id":71613,"name":"Majordomo's Chain of Office","icon":"inv_belt_robe_raidpriest_j_01","type":8,"armorType":1,"stats":[0,0,542,341,0,0,0,243,0,0,0,206,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"7":243,"11":206,"22":865},"isBase":true}}}, +{"id":71614,"name":"Fingers of Incineration","icon":"inv_gauntlets_robe_raidmage_j_01","type":7,"armorType":1,"stats":[0,0,542,341,0,0,243,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"6":243,"7":214,"22":961},"isBase":true}}}, +{"id":71615,"name":"Ko'gun, Hammer of the Firelord","icon":"inv_mace_1h_firelandsraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,0,312,208,151,0,0,118,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":968,"weaponDamageMax":1798,"weaponSpeed":2.1,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":968,"weaponDamageMax":1798,"stats":{"2":312,"3":208,"4":151,"7":118,"14":2783},"isBase":true}}}, +{"id":71616,"name":"Crown of Flame","icon":"inv_helm_circlet_firelands_d_01","type":1,"armorType":3,"stats":[0,0,730,426,319,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":319,"7":260,"22":2261},"isBase":true}}}, +{"id":71640,"name":"Riplimb's Lost Collar","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,282,454,0,0,0,216,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5723,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":282,"2":454,"6":216,"8":157,"22":1024},"isBase":true}}}, +{"id":71641,"name":"Riplimb's Lost Collar","icon":"inv_belt_leather_raidrogue_j_01","type":8,"armorType":2,"stats":[0,322,513,0,0,0,244,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":650,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":6,"zoneId":5723,"otherName":"Firestone Vendor"}}],"scalingOptions":{"391":{"randPropPoints":650,"stats":{"1":322,"2":513,"6":244,"8":180,"22":1084},"isBase":true}}}, +{"id":71774,"name":"Smoldering Censer of Purity","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,689,440,349,0,0,213,0,0,0,0,0,0,2633,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":1948,"weaponDamageMax":2923,"weaponSpeed":2.9,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":1948,"weaponDamageMax":2923,"stats":{"2":689,"3":440,"4":349,"7":213,"14":2633},"isBase":true}}}, +{"id":71775,"name":"Smoldering Censer of Purity","icon":"inv_stave_2h_firelandsraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,388,310,0,0,186,0,0,0,0,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1726,"weaponDamageMax":2589,"weaponSpeed":2.9,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1726,"weaponDamageMax":2589,"stats":{"2":611,"3":388,"4":310,"7":186,"14":2334},"isBase":true}}}, +{"id":71776,"name":"Eye of Purification","icon":"inv_axe_1h_firelandsraid_d_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,262,175,131,0,0,0,0,0,0,91,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":927,"weaponDamageMax":1722,"weaponSpeed":2.4,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":927,"weaponDamageMax":1722,"stats":{"2":262,"3":175,"4":131,"11":91,"14":2333},"isBase":true}}}, +{"id":71777,"name":"Eye of Purification","icon":"inv_axe_1h_firelandsraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,296,197,148,0,0,0,0,0,0,103,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1046,"weaponDamageMax":1943,"weaponSpeed":2.4,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1046,"weaponDamageMax":1943,"stats":{"2":296,"3":197,"4":148,"11":103,"14":2636},"isBase":true}}}, +{"id":71778,"name":"Avool's Incendiary Shanker","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,141,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1569,"weaponDamageMax":2915,"stats":{"1":197,"2":296,"5":141,"6":115},"isBase":true}}}, +{"id":71779,"name":"Avool's Incendiary Shanker","icon":"inv_knife_1h_firelandsraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,125,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"stats":{"1":175,"2":262,"5":125,"6":102},"isBase":true}}}, +{"id":71780,"name":"Zoid's Firelit Greatsword","icon":"inv_sword_2h_firelandsraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[388,0,611,0,0,0,284,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":388,"2":611,"6":284,"7":232},"isBase":true}}}, +{"id":71781,"name":"Zoid's Firelit Greatsword","icon":"inv_sword_2h_firelandsraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[440,0,689,0,0,0,320,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"weaponSpeed":3.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":874,"weaponDamageMin":4837,"weaponDamageMax":7257,"stats":{"0":440,"2":689,"6":320,"7":264},"isBase":true}}}, +{"id":71782,"name":"Shatterskull Bonecrusher","icon":"inv_mace_1h_firelandsraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,175,262,0,0,0,123,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":175,"2":262,"6":123,"7":105},"isBase":true}}}, +{"id":71783,"name":"Shatterskull Bonecrusher","icon":"inv_mace_1h_firelandsraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,197,296,0,0,0,139,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"weaponSpeed":2.6,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":2267,"weaponDamageMax":4211,"stats":{"1":197,"2":296,"6":139,"7":119},"isBase":true}}}, +{"id":71784,"name":"Firethorn Mindslicer","icon":"inv_sword_1h_firelandsraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,296,197,0,100,150,0,0,0,0,0,0,0,2636,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":741,"weaponDamageMax":1377,"weaponSpeed":1.7,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":741,"weaponDamageMax":1377,"stats":{"2":296,"3":197,"5":100,"6":150,"14":2636},"isBase":true}}}, +{"id":71785,"name":"Firethorn Mindslicer","icon":"inv_sword_1h_firelandsraid_d_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,262,175,0,88,133,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":656,"weaponDamageMax":1220,"weaponSpeed":1.7,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":656,"weaponDamageMax":1220,"stats":{"2":262,"3":175,"5":88,"6":133,"14":2333},"isBase":true}}}, +{"id":71786,"name":"Entrail Disgorger","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,197,296,0,0,0,109,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"weaponSpeed":1.8,"ilvl":391,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"391":{"randPropPoints":375,"weaponDamageMin":1793,"weaponDamageMax":2691,"stats":{"1":197,"2":296,"6":109,"11":145},"isBase":true}}}, +{"id":71787,"name":"Entrail Disgorger","icon":"inv_knife_1h_firelandsraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,175,262,0,0,0,97,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1236,"weaponDamageMax":1854,"weaponSpeed":1.4,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Beth'tilac"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1236,"weaponDamageMax":1854,"stats":{"1":175,"2":262,"6":97,"11":128},"isBase":true}}}, +{"id":71797,"name":"Sho'ravon, Greatstaff of Annihilation","icon":"inv_stave_2h_firelandsraid_d_03_stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,0,0,249,0,0,0,0,357,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":2060,"weaponDamageMax":3091,"weaponSpeed":2.9,"ilvl":397,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":2060,"weaponDamageMax":3091,"stats":{"2":730,"3":466,"6":249,"11":357,"14":2786},"isBase":true}}}, +{"id":71798,"name":"Sho'ravon, Greatstaff of Annihilation","icon":"inv_stave_2h_firelandsraid_d_03_stage2","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,0,0,218,0,0,0,0,316,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":1510,"weaponDamageMax":2266,"weaponSpeed":2.4,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5723,"otherName":"Ragnaros"}}],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":1510,"weaponDamageMax":2266,"stats":{"2":646,"3":411,"6":218,"11":316,"14":2467},"isBase":true}}}, +{"id":71980,"name":"Lavaquake Legwraps","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,319,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"5":319,"7":260,"22":1346},"isBase":true}}}, +{"id":71981,"name":"World Mender's Pants","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,303,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":303,"11":276,"22":1346},"isBase":true}}}, +{"id":71982,"name":"Pyrium Legplates of Purified Evil","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,730,426,323,0,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":323,"7":256,"22":3350},"isBase":true}}}, +{"id":71983,"name":"Unstoppable Destroyer's Legplates","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,315,0,0,0,264,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"7":315,"11":264,"22":3350},"isBase":true}}}, +{"id":71984,"name":"Foundations of Courage","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,319,0,260,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"9":319,"11":260,"22":3350},"isBase":true}}}, +{"id":71985,"name":"Bladeshadow Leggings","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,308,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":308,"11":280,"22":1731},"isBase":true}}}, +{"id":71986,"name":"Leggings of Nature's Champion","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,426,296,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":296,"7":292,"22":1731},"isBase":true}}}, +{"id":71987,"name":"Rended Earth Leggings","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,0,299,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"6":299,"7":280,"22":2435},"isBase":true}}}, +{"id":71988,"name":"Deathscale Leggings","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,0,0,0,300,0,0,0,279,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":300,"11":279,"22":2435},"isBase":true}}}, +{"id":71989,"name":"Bracers of Unconquered Power","icon":"inv_bracer_robe_raidmage_k_01","type":6,"armorType":1,"stats":[0,0,406,231,0,0,0,171,0,0,0,143,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":231,"7":171,"11":143,"22":673},"isBase":true}}}, +{"id":71990,"name":"Dreamwraps of the Light","icon":"inv_bracer_robe_raidpriest_k_01","type":6,"armorType":1,"stats":[0,0,406,231,159,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":231,"4":159,"7":163,"22":673},"isBase":true}}}, +{"id":71991,"name":"Soul Redeemer Bracers","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,231,173,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":231,"4":173,"7":143,"22":1675},"isBase":true}}}, +{"id":71992,"name":"Bracers of Destructive Strength","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[231,0,406,0,0,0,175,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":231,"2":406,"6":175,"8":141,"22":1675},"isBase":true}}}, +{"id":71993,"name":"Titanguard Wristplates","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[231,0,406,0,0,0,0,0,0,0,169,147,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":231,"2":406,"10":169,"11":147,"22":1675},"isBase":true}}}, +{"id":71994,"name":"Bladeshadow Wristguards","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,231,406,0,0,117,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":231,"2":406,"5":117,"7":186,"22":866},"isBase":true}}}, +{"id":71995,"name":"Bracers of Flowing Serenity","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,231,167,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":231,"4":167,"7":152,"22":866},"isBase":true}}}, +{"id":71996,"name":"Bracers of the Hunter-Killer","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,231,406,0,0,0,161,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":231,"2":406,"6":161,"7":161,"22":1218},"isBase":true}}}, +{"id":71997,"name":"Thundering Deathscale Wristguards","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,231,177,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":231,"4":177,"7":139,"22":1218},"isBase":true}}}, +{"id":72304,"name":"Ruthless Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":380,"16":120},"isBase":true}}}, +{"id":72305,"name":"Ruthless Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,225,338,0,0,0,150,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"6":150,"7":150,"16":90,"22":692},"isBase":true}}}, +{"id":72306,"name":"Ruthless Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,225,338,0,0,150,0,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"5":150,"11":150,"16":90,"22":692},"isBase":true}}}, +{"id":72307,"name":"Ruthless Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,225,338,0,0,0,150,0,150,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"6":150,"8":150,"16":90},"isBase":true}}}, +{"id":72308,"name":"Ruthless Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,225,338,0,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"7":150,"11":150,"16":90},"isBase":true}}}, +{"id":72309,"name":"Ruthless Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":380,"16":120},"isBase":true}}}, +{"id":72311,"name":"Ruthless Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,225,338,0,0,0,150,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"6":150,"7":150,"16":90},"isBase":true}}}, +{"id":72312,"name":"Ruthless Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,225,338,0,0,150,0,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"5":150,"11":150,"16":90},"isBase":true}}}, +{"id":72313,"name":"Ruthless Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_02","type":8,"armorType":1,"stats":[0,0,450,280,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,778,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":180,"11":200,"16":120,"22":778},"isBase":true}}}, +{"id":72314,"name":"Ruthless Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_02","type":8,"armorType":1,"stats":[0,0,450,280,0,180,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,778,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"5":180,"7":200,"16":120,"22":778},"isBase":true}}}, +{"id":72315,"name":"Ruthless Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_02","type":8,"armorType":1,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,778,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":778},"isBase":true}}}, +{"id":72316,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,450,280,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,951,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":180,"11":200,"16":120,"22":951},"isBase":true}}}, +{"id":72317,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,450,280,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,951,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":200,"7":180,"16":120,"22":951},"isBase":true}}}, +{"id":72318,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,951,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":951},"isBase":true}}}, +{"id":72319,"name":"Ruthless Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpwarlock_c_02","type":6,"armorType":1,"stats":[0,0,338,225,0,150,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"5":150,"6":150,"16":90,"22":605},"isBase":true}}}, +{"id":72320,"name":"Ruthless Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_c_02","type":6,"armorType":1,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90,"22":605},"isBase":true}}}, +{"id":72321,"name":"Ruthless Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_02","type":6,"armorType":1,"stats":[0,0,338,225,150,0,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"6":150,"16":90,"22":605},"isBase":true}}}, +{"id":72322,"name":"Ruthless Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90,"22":692},"isBase":true}}}, +{"id":72323,"name":"Ruthless Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,338,225,0,0,150,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"6":150,"7":150,"16":90,"22":692},"isBase":true}}}, +{"id":72324,"name":"Ruthless Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,338,225,150,0,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"6":150,"16":90,"22":692},"isBase":true}}}, +{"id":72325,"name":"Ruthless Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90},"isBase":true}}}, +{"id":72326,"name":"Ruthless Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,338,225,0,0,150,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"6":150,"11":150,"16":90},"isBase":true}}}, +{"id":72327,"name":"Ruthless Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,338,225,150,0,0,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"7":150,"16":90},"isBase":true}}}, +{"id":72329,"name":"Ruthless Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,338,225,0,0,150,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"6":150,"11":150,"16":90},"isBase":true}}}, +{"id":72330,"name":"Ruthless Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,338,225,0,150,0,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"5":150,"7":150,"16":90},"isBase":true}}}, +{"id":72331,"name":"Ruthless Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,338,225,150,0,0,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"7":150,"16":90},"isBase":true}}}, +{"id":72332,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[363,0,605,0,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":229,"7":269,"16":161,"22":3611},"isBase":true}}}, +{"id":72333,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[280,0,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2257,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"5":180,"6":200,"16":120,"22":2257},"isBase":true}}}, +{"id":72334,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[343,0,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,2934,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":343,"2":605,"8":269,"11":209,"16":161,"22":2934},"isBase":true}}}, +{"id":72335,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[363,0,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":269,"7":229,"16":161,"22":3160},"isBase":true}}}, +{"id":72336,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[280,0,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,2708,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"7":200,"8":180,"16":120,"22":2708},"isBase":true}}}, +{"id":72337,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,280,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"6":200,"16":120,"22":1132},"isBase":true}}}, +{"id":72338,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,343,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,1472,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":343,"2":605,"8":269,"11":209,"16":161,"22":1472},"isBase":true}}}, +{"id":72339,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,363,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":269,"7":229,"16":161,"22":1585},"isBase":true}}}, +{"id":72340,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,363,605,0,0,0,229,0,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1812,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":229,"11":269,"16":161,"22":1812},"isBase":true}}}, +{"id":72341,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,280,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,1359,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"7":200,"8":180,"16":120,"22":1359},"isBase":true}}}, +{"id":72342,"name":"Ruthless Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":1019},"isBase":true}}}, +{"id":72343,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":1245},"isBase":true}}}, +{"id":72344,"name":"Ruthless Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,338,225,150,0,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"6":150,"16":90,"22":793},"isBase":true}}}, +{"id":72345,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":1132},"isBase":true}}}, +{"id":72346,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,1472,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":1472},"isBase":true}}}, +{"id":72347,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1585},"isBase":true}}}, +{"id":72348,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,605,363,229,0,0,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1812,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"4":229,"7":269,"16":161,"22":1812},"isBase":true}}}, +{"id":72349,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1359,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":1359},"isBase":true}}}, +{"id":72350,"name":"Ruthless Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,450,280,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":180,"11":200,"16":120,"22":1019},"isBase":true}}}, +{"id":72351,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,450,280,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":200,"7":180,"16":120,"22":1245},"isBase":true}}}, +{"id":72352,"name":"Ruthless Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90,"22":793},"isBase":true}}}, +{"id":72353,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,450,280,180,0,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"6":200,"16":120,"22":1132},"isBase":true}}}, +{"id":72354,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,605,343,0,0,0,209,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1472,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"7":209,"11":269,"16":161,"22":1472},"isBase":true}}}, +{"id":72355,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,605,363,0,0,0,269,0,0,0,229,0,0,0,0,161,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"7":269,"11":229,"16":161,"22":1585},"isBase":true}}}, +{"id":72356,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1812,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1812},"isBase":true}}}, +{"id":72357,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,450,280,0,0,0,180,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1359,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"7":180,"11":200,"16":120,"22":1359},"isBase":true}}}, +{"id":72359,"name":"Ruthless Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"6":380,"16":120},"isBase":true}}}, +{"id":72360,"name":"Ruthless Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"11":380,"16":120},"isBase":true}}}, +{"id":72361,"name":"Ruthless Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"4":380,"16":120},"isBase":true}}}, +{"id":72362,"name":"Ruthless Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,280,450,0,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1459,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":180,"11":200,"16":120,"22":1459},"isBase":true}}}, +{"id":72363,"name":"Ruthless Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,280,450,0,0,180,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1459,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"7":200,"16":120,"22":1459},"isBase":true}}}, +{"id":72364,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,280,450,0,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1783,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":180,"11":200,"16":120,"22":1783},"isBase":true}}}, +{"id":72365,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,280,450,0,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1783,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":200,"7":180,"16":120,"22":1783},"isBase":true}}}, +{"id":72366,"name":"Ruthless Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,225,338,0,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"7":150,"11":150,"16":90,"22":1135},"isBase":true}}}, +{"id":72367,"name":"Ruthless Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,225,338,0,0,150,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"5":150,"6":150,"16":90,"22":1135},"isBase":true}}}, +{"id":72368,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,363,605,0,0,0,229,0,0,0,0,269,0,0,0,0,161,0,0,0,0,0,2594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":229,"11":269,"16":161,"22":2594},"isBase":true}}}, +{"id":72369,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,280,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"6":200,"16":120,"22":1621},"isBase":true}}}, +{"id":72370,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,343,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,2108,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":343,"2":605,"8":269,"11":209,"16":161,"22":2108},"isBase":true}}}, +{"id":72371,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,363,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,2270,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":269,"7":229,"16":161,"22":2270},"isBase":true}}}, +{"id":72372,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,280,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,1945,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"7":200,"8":180,"16":120,"22":1945},"isBase":true}}}, +{"id":72373,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,450,280,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"5":180,"6":200,"16":120,"22":864},"isBase":true}}}, +{"id":72374,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,1124,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":1124},"isBase":true}}}, +{"id":72375,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,605,363,0,0,0,229,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1210,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"7":229,"11":269,"16":161,"22":1210},"isBase":true}}}, +{"id":72376,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1383,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1383},"isBase":true}}}, +{"id":72377,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,450,280,0,0,0,200,0,0,0,180,0,0,0,0,120,0,0,0,0,0,1037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"7":200,"11":180,"16":120,"22":1037},"isBase":true}}}, +{"id":72378,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[363,0,605,0,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":229,"7":269,"16":161,"22":3611},"isBase":true}}}, +{"id":72379,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[280,0,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2257,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"5":180,"6":200,"16":120,"22":2257},"isBase":true}}}, +{"id":72380,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[343,0,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,2934,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":343,"2":605,"8":269,"11":209,"16":161,"22":2934},"isBase":true}}}, +{"id":72381,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[363,0,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":269,"7":229,"16":161,"22":3160},"isBase":true}}}, +{"id":72382,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[280,0,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,2708,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"7":200,"8":180,"16":120,"22":2708},"isBase":true}}}, +{"id":72383,"name":"Ruthless Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,450,280,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":180,"11":200,"16":120,"22":2031},"isBase":true}}}, +{"id":72384,"name":"Ruthless Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":2031},"isBase":true}}}, +{"id":72385,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,450,280,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2483,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":200,"7":180,"16":120,"22":2483},"isBase":true}}}, +{"id":72386,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,2483,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":2483},"isBase":true}}}, +{"id":72387,"name":"Ruthless Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90,"22":1580},"isBase":true}}}, +{"id":72388,"name":"Ruthless Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,338,225,150,0,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"6":150,"16":90,"22":1580},"isBase":true}}}, +{"id":72389,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,605,363,229,0,0,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"4":229,"7":269,"16":161,"22":3611},"isBase":true}}}, +{"id":72390,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2257,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":2257},"isBase":true}}}, +{"id":72391,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,2934,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":2934},"isBase":true}}}, +{"id":72392,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":3160},"isBase":true}}}, +{"id":72393,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,2708,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":2708},"isBase":true}}}, +{"id":72394,"name":"Ruthless Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_c_02","type":8,"armorType":4,"stats":[280,0,450,0,0,180,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"5":180,"7":200,"16":120,"22":2031},"isBase":true}}}, +{"id":72395,"name":"Ruthless Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_02","type":8,"armorType":4,"stats":[280,0,450,0,0,0,200,0,0,0,0,180,0,0,0,0,120,0,0,0,0,0,2031,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"6":200,"11":180,"16":120,"22":2031},"isBase":true}}}, +{"id":72396,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[280,0,450,0,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,2483,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"6":180,"11":200,"16":120,"22":2483},"isBase":true}}}, +{"id":72397,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[280,0,450,0,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2483,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"6":200,"7":180,"16":120,"22":2483},"isBase":true}}}, +{"id":72398,"name":"Ruthless Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_02","type":6,"armorType":4,"stats":[225,0,338,0,0,0,150,0,150,0,0,0,0,0,0,0,90,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"6":150,"8":150,"16":90,"22":1580},"isBase":true}}}, +{"id":72399,"name":"Ruthless Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_02","type":6,"armorType":4,"stats":[225,0,338,0,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"7":150,"11":150,"16":90,"22":1580},"isBase":true}}}, +{"id":72400,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":864},"isBase":true}}}, +{"id":72401,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,1124,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":1124},"isBase":true}}}, +{"id":72402,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1210,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1210},"isBase":true}}}, +{"id":72403,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,605,363,229,0,0,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1383,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"4":229,"7":269,"16":161,"22":1383},"isBase":true}}}, +{"id":72404,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":1037},"isBase":true}}}, +{"id":72405,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,450,280,180,0,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"6":200,"16":120,"22":864},"isBase":true}}}, +{"id":72406,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,605,343,0,0,0,209,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1124,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"7":209,"11":269,"16":161,"22":1124},"isBase":true}}}, +{"id":72407,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,605,363,0,0,0,269,0,0,0,229,0,0,0,0,161,0,0,0,0,0,1210,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"7":269,"11":229,"16":161,"22":1210},"isBase":true}}}, +{"id":72408,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1383,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1383},"isBase":true}}}, +{"id":72409,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,450,280,0,0,0,180,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"7":180,"11":200,"16":120,"22":1037},"isBase":true}}}, +{"id":72410,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"6":380,"16":120},"isBase":true}}}, +{"id":72411,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,380,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"6":380,"16":120},"isBase":true}}}, +{"id":72412,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"11":380,"16":120},"isBase":true}}}, +{"id":72413,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"11":380,"16":120},"isBase":true}}}, +{"id":72414,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"4":380,"16":120},"isBase":true}}}, +{"id":72415,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"4":380,"16":120},"isBase":true}}}, +{"id":72416,"name":"Ruthless Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,280,450,0,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":180,"11":200,"16":120,"22":1019},"isBase":true}}}, +{"id":72417,"name":"Ruthless Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,280,450,0,0,180,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"7":200,"16":120,"22":1019},"isBase":true}}}, +{"id":72418,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,280,450,0,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":180,"11":200,"16":120,"22":1245},"isBase":true}}}, +{"id":72419,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,280,450,0,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"6":200,"7":180,"16":120,"22":1245},"isBase":true}}}, +{"id":72420,"name":"Ruthless Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,225,338,0,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"7":150,"11":150,"16":90,"22":793},"isBase":true}}}, +{"id":72421,"name":"Ruthless Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,225,338,0,0,150,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"5":150,"6":150,"16":90,"22":793},"isBase":true}}}, +{"id":72422,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,363,605,0,0,0,229,0,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1812,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":229,"11":269,"16":161,"22":1812},"isBase":true}}}, +{"id":72423,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,280,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1132,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"6":200,"16":120,"22":1132},"isBase":true}}}, +{"id":72424,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,343,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,1472,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":343,"2":605,"8":269,"11":209,"16":161,"22":1472},"isBase":true}}}, +{"id":72425,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,363,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1585,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":269,"7":229,"16":161,"22":1585},"isBase":true}}}, +{"id":72426,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,280,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,1359,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"7":200,"8":180,"16":120,"22":1359},"isBase":true}}}, +{"id":72427,"name":"Ruthless Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1459,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":1459},"isBase":true}}}, +{"id":72428,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,450,280,0,0,200,180,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1783,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":200,"7":180,"16":120,"22":1783},"isBase":true}}}, +{"id":72429,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1783,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":1783},"isBase":true}}}, +{"id":72430,"name":"Ruthless Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,338,225,0,0,0,150,0,0,0,150,0,0,0,0,90,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"11":150,"16":90,"22":1135},"isBase":true}}}, +{"id":72431,"name":"Ruthless Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,338,225,150,0,150,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"6":150,"16":90,"22":1135},"isBase":true}}}, +{"id":72432,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,605,363,229,0,0,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,2594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"4":229,"7":269,"16":161,"22":2594},"isBase":true}}}, +{"id":72433,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,450,280,180,0,0,200,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"7":200,"16":120,"22":1621},"isBase":true}}}, +{"id":72434,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,2108,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":2108},"isBase":true}}}, +{"id":72435,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,2270,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":2270},"isBase":true}}}, +{"id":72436,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,450,280,180,0,0,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1945,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"11":200,"16":120,"22":1945},"isBase":true}}}, +{"id":72437,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,363,605,0,0,0,229,0,0,0,0,269,0,0,0,0,161,0,0,0,0,0,2594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":229,"11":269,"16":161,"22":2594},"isBase":true}}}, +{"id":72438,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,280,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"5":180,"6":200,"16":120,"22":1621},"isBase":true}}}, +{"id":72439,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,343,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,2108,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":343,"2":605,"8":269,"11":209,"16":161,"22":2108},"isBase":true}}}, +{"id":72440,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,363,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,2270,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":363,"2":605,"6":269,"7":229,"16":161,"22":2270},"isBase":true}}}, +{"id":72441,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,280,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,1945,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":280,"2":450,"7":200,"8":180,"16":120,"22":1945},"isBase":true}}}, +{"id":72442,"name":"Ruthless Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,450,280,0,0,180,0,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1459,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"6":180,"11":200,"16":120,"22":1459},"isBase":true}}}, +{"id":72443,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,2594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":2594},"isBase":true}}}, +{"id":72444,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,450,280,180,0,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"4":180,"6":200,"16":120,"22":1621},"isBase":true}}}, +{"id":72445,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,605,343,0,0,0,209,0,0,0,269,0,0,0,0,161,0,0,0,0,0,2108,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"7":209,"11":269,"16":161,"22":2108},"isBase":true}}}, +{"id":72446,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,605,363,0,0,0,269,0,0,0,229,0,0,0,0,161,0,0,0,0,0,2270,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"7":269,"11":229,"16":161,"22":2270},"isBase":true}}}, +{"id":72447,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,450,280,0,0,0,180,0,0,0,200,0,0,0,0,120,0,0,0,0,0,1945,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"7":180,"11":200,"16":120,"22":1945},"isBase":true}}}, +{"id":72448,"name":"Ruthless Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"3":380,"16":120},"isBase":true}}}, +{"id":72449,"name":"Ruthless Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"3":380,"16":120},"isBase":true}}}, +{"id":72450,"name":"Ruthless Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":380,"16":120},"isBase":true}}}, +{"id":72451,"name":"Ruthless Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[225,0,338,0,0,0,150,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"6":150,"7":150,"16":90,"22":692},"isBase":true}}}, +{"id":72452,"name":"Ruthless Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[225,0,338,0,0,150,0,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"5":150,"11":150,"16":90,"22":692},"isBase":true}}}, +{"id":72453,"name":"Ruthless Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[225,0,338,0,0,0,150,0,150,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"6":150,"8":150,"16":90},"isBase":true}}}, +{"id":72454,"name":"Ruthless Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[225,0,338,0,0,150,0,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"5":150,"7":150,"16":90},"isBase":true}}}, +{"id":72455,"name":"Ruthless Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":380,"16":120},"isBase":true}}}, +{"id":72457,"name":"Ruthless Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[225,0,338,0,0,0,150,150,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"6":150,"7":150,"16":90},"isBase":true}}}, +{"id":72458,"name":"Ruthless Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[225,0,338,0,0,150,0,0,0,0,0,150,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"5":150,"11":150,"16":90},"isBase":true}}}, +{"id":72459,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,450,280,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"5":180,"6":200,"16":120,"22":864},"isBase":true}}}, +{"id":72460,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,605,343,0,0,269,0,0,0,0,209,0,0,0,0,161,0,0,0,0,0,1124,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":343,"6":269,"11":209,"16":161,"22":1124},"isBase":true}}}, +{"id":72461,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,605,363,0,0,0,229,0,0,0,269,0,0,0,0,161,0,0,0,0,0,1210,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"7":229,"11":269,"16":161,"22":1210},"isBase":true}}}, +{"id":72462,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,605,363,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1383,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":363,"6":229,"7":269,"16":161,"22":1383},"isBase":true}}}, +{"id":72463,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,450,280,0,0,0,200,0,0,0,180,0,0,0,0,120,0,0,0,0,0,1037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":280,"7":200,"11":180,"16":120,"22":1037},"isBase":true}}}, +{"id":72464,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[363,0,605,0,0,0,229,269,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":229,"7":269,"16":161,"22":3611},"isBase":true}}}, +{"id":72465,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[280,0,450,0,0,180,200,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,2257,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"5":180,"6":200,"16":120,"22":2257},"isBase":true}}}, +{"id":72466,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[343,0,605,0,0,0,0,0,269,0,0,209,0,0,0,0,161,0,0,0,0,0,2934,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":343,"2":605,"8":269,"11":209,"16":161,"22":2934},"isBase":true}}}, +{"id":72467,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[363,0,605,0,0,0,269,229,0,0,0,0,0,0,0,0,161,0,0,0,0,0,3160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":363,"2":605,"6":269,"7":229,"16":161,"22":3160},"isBase":true}}}, +{"id":72468,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[280,0,450,0,0,0,0,200,180,0,0,0,0,0,0,0,120,0,0,0,0,0,2708,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":280,"2":450,"7":200,"8":180,"16":120,"22":2708},"isBase":true}}}, +{"id":72798,"name":"Cord of Lost Hope","icon":"inv_belt_leather_dungeonleather_c_05","type":8,"armorType":2,"stats":[0,0,454,281,0,0,0,210,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"7":210,"11":153,"22":1024},"isBase":true}}}, +{"id":72799,"name":"Dead End Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,281,454,0,0,161,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":161,"11":210,"22":1790},"isBase":true}}}, +{"id":72800,"name":"Gauntlets of Temporal Interference","icon":"inv_glove_plate_dungeonplate_c_06","type":7,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,211,0,157,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"9":211,"11":157,"22":2264},"isBase":true}}}, +{"id":72801,"name":"Breastplate of Sorrow","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[366,0,611,0,0,0,290,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":366,"2":611,"6":290,"7":186,"22":3622},"isBase":true}}}, +{"id":72802,"name":"Time Traveler's Leggings","icon":"inv_pants_robe_dungeonrobe_c_05","type":9,"armorType":1,"stats":[0,0,611,366,0,0,264,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"6":264,"7":234,"22":1217},"isBase":true}}}, +{"id":72803,"name":"Girdle of Lost Heroes","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,0,135,228,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"10":135,"11":228,"22":2037},"isBase":true}}}, +{"id":72804,"name":"Dragonshrine Scepter","icon":"inv_mace_1h_430future_c_01","type":13,"weaponType":4,"handType":2,"stats":[174,0,262,0,0,0,113,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":174,"2":262,"6":113,"11":118},"isBase":true}}}, +{"id":72805,"name":"Gloves of the Hollow","icon":"inv_gauntlets_leather_dungeonleather_c_05","type":7,"armorType":2,"stats":[0,281,454,0,0,212,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":212,"7":156,"22":1137},"isBase":true}}}, +{"id":72806,"name":"Echoing Headguard","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,0,611,346,278,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":346,"4":278,"7":184,"22":2115},"isBase":true}}}, +{"id":72807,"name":"Waistguard of Lost Time","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[0,0,454,281,219,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":219,"7":146,"22":2037},"isBase":true}}}, +{"id":72808,"name":"Jaina's Staff","icon":"inv_stave_2h_430future_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,406,0,0,213,0,0,0,0,306,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Jaina"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"stats":{"2":611,"3":406,"6":213,"11":306,"14":2334},"isBase":true}}}, +{"id":72809,"name":"Ward of Incantations","icon":"inv_shield_430future_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,341,226,0,0,0,129,0,0,0,165,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Jaina"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"7":129,"11":165,"22":12201},"isBase":true}}}, +{"id":72810,"name":"Windrunner's Bow","icon":"bow_1h_430future_c_01","type":14,"rangedWeaponType":1,"stats":[0,406,611,0,0,0,0,303,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"weaponSpeed":2.9,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Sylvanas"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"stats":{"1":406,"2":611,"7":303,"11":219},"isBase":true}}}, +{"id":72811,"name":"Cloak of the Banshee Queen","icon":"inv_cape_430dungeon_c_04","type":4,"armorType":1,"stats":[0,226,341,0,0,0,129,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Sylvanas"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":226,"2":341,"6":129,"7":165,"22":695},"isBase":true}}}, +{"id":72812,"name":"Crescent Moon","icon":"inv_axe_1h_430nightelf_c_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,262,174,91,0,0,0,0,0,0,131,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":174,"4":91,"11":131,"14":2333},"isBase":true}}}, +{"id":72813,"name":"Whisperwind Robes","icon":"inv_chest_robe_dungeonrobe_c_05","type":5,"armorType":1,"stats":[0,0,611,366,229,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Tyrande"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"4":229,"11":272,"22":1391},"isBase":true}}}, +{"id":72814,"name":"Axe of the Tauren Chieftains","icon":"inv_axe_2h_430future_c_01","type":13,"weaponType":1,"handType":4,"stats":[406,0,611,0,0,232,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Baine"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":406,"2":611,"5":232,"8":295},"isBase":true}}}, +{"id":72815,"name":"Bloodhoof Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[366,0,611,0,0,0,0,0,0,230,263,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Echo of Baine"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":366,"2":611,"9":230,"10":263,"22":3169},"isBase":true}}}, +{"id":72816,"name":"Distortion Greaves","icon":"inv_pants_mail_dungeonmail_c_05","type":9,"armorType":3,"stats":[0,0,611,366,0,0,265,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"6":265,"7":236,"22":2278},"isBase":true}}}, +{"id":72817,"name":"Time Altered Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[0,0,611,366,259,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"4":259,"7":245,"22":3169},"isBase":true}}}, +{"id":72818,"name":"Breastplate of Tarnished Bronze","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[366,0,611,0,0,0,0,0,0,258,0,243,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":366,"2":611,"9":258,"11":243,"22":3622},"isBase":true}}}, +{"id":72819,"name":"Chrono Boots","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[281,0,454,0,0,0,0,0,186,198,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"8":186,"9":198,"22":2490},"isBase":true}}}, +{"id":72820,"name":"Crown of Epochs","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[346,0,611,0,0,252,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":346,"2":611,"5":252,"6":224,"22":2943},"isBase":true}}}, +{"id":72821,"name":"Temporal Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[281,0,454,0,0,206,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"5":206,"6":169,"22":2716},"isBase":true}}}, +{"id":72822,"name":"Jagged Edge of Time","icon":"inv_knife_1h_430future_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,174,262,0,0,0,0,118,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"stats":{"1":174,"2":262,"7":118,"8":113},"isBase":true}}}, +{"id":72823,"name":"Timeway Headgear","icon":"inv_helmet_leather_dungeonleather_c_05","type":1,"armorType":2,"stats":[0,0,611,346,0,0,221,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":346,"6":221,"7":252,"22":1478},"isBase":true}}}, +{"id":72824,"name":"Time Twisted Tunic","icon":"inv_chest_leather_dungeonleather_c_05","type":5,"armorType":2,"stats":[0,366,611,0,0,0,0,268,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":366,"2":611,"7":268,"11":233,"22":1820},"isBase":true}}}, +{"id":72825,"name":"Mantle of Time","icon":"inv_shoulder_robe_dungeonrobe_c_05","type":3,"armorType":1,"stats":[0,0,454,281,196,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":196,"7":188,"22":1043},"isBase":true}}}, +{"id":72826,"name":"Robes of Fate","icon":"inv_chest_robe_dungeonrobe_c_05","type":5,"armorType":1,"stats":[0,0,611,366,0,210,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1391,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"5":210,"6":274,"22":1391},"isBase":true}}}, +{"id":72827,"name":"Gavel of Peroth'arn","icon":"inv_mace_1h_430nightelf_c_02","type":13,"weaponType":4,"handType":2,"stats":[174,0,262,0,0,0,0,0,0,0,131,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":174,"2":262,"10":131,"11":91},"isBase":true}}}, +{"id":72828,"name":"Trickster's Edge","icon":"inv_axe_1h_430nightelf_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,174,262,0,0,0,128,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":174,"2":262,"6":128,"8":97},"isBase":true}}}, +{"id":72829,"name":"Orb of the First Satyrs","icon":"inv_offhand_1h_430nightelf_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,226,0,167,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"5":167,"7":126},"isBase":true}}}, +{"id":72830,"name":"Peroth'arn's Belt","icon":"inv_belt_leather_dungeonleather_c_05","type":8,"armorType":2,"stats":[0,281,454,0,0,0,178,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"6":178,"7":200,"22":1024},"isBase":true}}}, +{"id":72831,"name":"Horned Band","icon":"inv_jewelry_ring_105","type":11,"stats":[0,0,341,226,0,0,173,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"6":173,"7":115},"isBase":true}}}, +{"id":72832,"name":"Girdle of the Queen's Champion","icon":"inv_belt_plate_dungeonplate_c_06","type":8,"armorType":4,"stats":[281,0,454,0,0,208,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Peroth'arn"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"5":208,"6":157,"22":2037},"isBase":true}}}, +{"id":72833,"name":"Scepter of Azshara","icon":"inv_mace_1h_430future_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,262,174,131,0,91,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":174,"4":131,"6":91,"14":2333},"isBase":true}}}, +{"id":72834,"name":"Breastplate of the Queen's Guard","icon":"inv_chest_mail_dungeonmail_c_05","type":5,"armorType":3,"stats":[0,366,611,0,0,199,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":366,"2":611,"5":199,"11":285,"22":2603},"isBase":true}}}, +{"id":72835,"name":"Puppeteer's Pantaloons","icon":"inv_pants_leather_dungeonleather_c_05","type":9,"armorType":2,"stats":[0,366,611,0,0,213,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":366,"2":611,"5":213,"6":271,"22":1592},"isBase":true}}}, +{"id":72836,"name":"Slippers of Wizardry","icon":"inv_boots_robe_dungeonrobe_c_05","type":10,"armorType":1,"stats":[0,0,454,281,0,176,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"5":176,"7":197,"22":956},"isBase":true}}}, +{"id":72837,"name":"Queen's Boon","icon":"inv_misc_ring_generic_3","type":11,"stats":[226,0,341,0,0,0,0,0,0,171,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"9":171,"10":119},"isBase":true}}}, +{"id":72838,"name":"Cloak of the Royal Protector","icon":"inv_cape_430dungeon_c_04","type":4,"armorType":1,"stats":[226,0,341,0,0,0,0,169,0,0,0,122,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Queen Azshara"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"7":169,"11":122,"22":695},"isBase":true}}}, +{"id":72839,"name":"Cowl of Highborne Sorcerors","icon":"inv_helm_robe_dungeonrobe_c_05","type":1,"armorType":1,"stats":[0,0,611,346,0,0,232,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":346,"6":232,"11":252,"22":1130},"isBase":true}}}, +{"id":72840,"name":"Spaulders of Eternity","icon":"inv_shoulder_leather_dungeonleather_c_05","type":3,"armorType":2,"stats":[0,0,454,281,0,0,206,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"6":206,"11":174,"22":1365},"isBase":true}}}, +{"id":72841,"name":"Demonsbane Chestguard","icon":"inv_chest_mail_dungeonmail_c_05","type":5,"armorType":3,"stats":[0,0,611,366,0,0,245,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,2603,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"6":245,"11":253,"22":2603},"isBase":true}}}, +{"id":72842,"name":"Annihilan Helm","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[346,0,611,0,0,0,0,0,0,0,260,216,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":346,"2":611,"10":260,"11":216,"22":2943},"isBase":true}}}, +{"id":72843,"name":"Helm of Power","icon":"inv_helm_plate_dungeonplate_c_06","type":1,"armorType":4,"stats":[0,0,611,346,0,0,0,215,0,0,0,266,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":346,"7":215,"11":266,"22":2943},"isBase":true}}}, +{"id":72844,"name":"Pit Lord's Destroyer","icon":"inv_mace_2h_430nightelf_c_01","type":13,"weaponType":4,"handType":4,"stats":[406,0,611,0,0,0,0,0,265,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"stats":{"0":406,"2":611,"8":265,"11":276},"isBase":true}}}, +{"id":72845,"name":"Mannoroth's Signet","icon":"inv_jewelry_ring_107","type":11,"stats":[0,226,341,0,0,0,154,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":226,"2":341,"6":154,"11":148},"isBase":true}}}, +{"id":72846,"name":"Thornwood Staff","icon":"inv_stave_2h_430nightelf_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,406,611,0,0,0,272,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3928,"weaponDamageMax":5893,"weaponSpeed":3.3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3928,"weaponDamageMax":5893,"stats":{"1":406,"2":611,"6":272,"11":272},"isBase":true}}}, +{"id":72847,"name":"Helm of Thorns","icon":"inv_helmet_leather_dungeonleather_c_05","type":1,"armorType":2,"stats":[0,346,611,0,0,269,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":346,"2":611,"5":269,"7":207,"22":1478},"isBase":true}}}, +{"id":72848,"name":"Legguards of the Legion","icon":"inv_pants_mail_dungeonmail_c_05","type":9,"armorType":3,"stats":[0,366,611,0,0,0,216,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2278,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":366,"2":611,"6":216,"7":280,"22":2278},"isBase":true}}}, +{"id":72849,"name":"Wayfinder Boots","icon":"inv_boots_leather_dungeonleather_c_05","type":10,"armorType":2,"stats":[0,281,454,0,0,179,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":179,"6":196,"22":1251},"isBase":true}}}, +{"id":72850,"name":"Surestride Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,454,281,0,0,0,167,0,0,0,204,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"7":167,"11":204,"22":1790},"isBase":true}}}, +{"id":72851,"name":"Chillbane Belt","icon":"inv_belt_robe_dungeonrobe_c_05","type":8,"armorType":1,"stats":[0,0,454,281,0,223,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"5":223,"11":140,"22":782},"isBase":true}}}, +{"id":72852,"name":"Archivist's Gloves","icon":"inv_glove_robe_dungeonrobe_c_05","type":7,"armorType":1,"stats":[0,0,454,281,0,218,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"5":218,"11":145,"22":869},"isBase":true}}}, +{"id":72853,"name":"Arcurion Legguards","icon":"inv_pants_plate_dungeonplate_c_06","type":9,"armorType":4,"stats":[366,0,611,0,0,0,0,279,0,0,0,210,0,0,0,0,0,0,0,0,0,0,3169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"0":366,"2":611,"7":279,"11":210,"22":3169},"isBase":true}}}, +{"id":72854,"name":"Iceward Cloak","icon":"inv_cape_430dungeon_c_04","type":4,"armorType":1,"stats":[226,0,341,0,0,0,0,0,0,0,165,129,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"10":165,"11":129,"22":695},"isBase":true}}}, +{"id":72855,"name":"Corrupted Carapace","icon":"inv_shield_430oldgod_c_01","type":13,"weaponType":7,"handType":3,"stats":[226,0,341,0,0,0,0,0,0,129,0,165,0,0,0,0,0,0,0,0,0,0,12201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"9":129,"11":165,"22":12201},"isBase":true}}}, +{"id":72856,"name":"Pauldrons of Midnight Whispers","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,0,454,281,214,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":214,"6":154,"22":1952},"isBase":true}}}, +{"id":72857,"name":"Leggings of Blinding Speed","icon":"inv_pants_leather_dungeonleather_c_05","type":9,"armorType":2,"stats":[0,0,611,366,284,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"4":284,"7":203,"22":1592},"isBase":true}}}, +{"id":72858,"name":"Safeguard Gloves","icon":"inv_glove_robe_dungeonrobe_c_05","type":7,"armorType":1,"stats":[0,0,454,281,164,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":164,"7":209,"22":869},"isBase":true}}}, +{"id":72859,"name":"Dawnslayer Helm","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,346,611,0,0,165,0,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2115,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"1":346,"2":611,"5":165,"7":294,"22":2115},"isBase":true}}}, +{"id":72860,"name":"Mandible of the Old Ones","icon":"inv_knife_1h_430oldgod_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,174,262,0,0,113,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"weaponSpeed":1.8,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":1390,"weaponDamageMax":2583,"stats":{"1":174,"2":262,"5":113,"8":118},"isBase":true}}}, +{"id":72861,"name":"Pauldrons of the Dragonblight","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[281,0,454,0,0,0,0,0,0,169,206,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"9":169,"10":206,"22":2716},"isBase":true}}}, +{"id":72862,"name":"Fanged Tentacle","icon":"inv_knife_1h_430oldgod_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,262,174,0,116,116,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":174,"5":116,"6":116,"14":2333},"isBase":true}}}, +{"id":72863,"name":"Stalk of Corruption","icon":"inv_stave_2h_430oldgod_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,611,406,0,0,0,265,0,0,0,276,0,0,2334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"weaponSpeed":3.3,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":1964,"weaponDamageMax":2946,"stats":{"2":611,"3":406,"7":265,"11":276,"14":2334},"isBase":true}}}, +{"id":72864,"name":"Pauldrons of Conviction","icon":"inv_shoulder_plate_dungeonplate_c_06","type":3,"armorType":4,"stats":[0,0,454,281,185,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":185,"11":197,"22":2716},"isBase":true}}}, +{"id":72865,"name":"Mantle of False Virtue","icon":"inv_shoulder_robe_dungeonrobe_c_05","type":3,"armorType":1,"stats":[0,0,454,281,0,184,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"5":184,"11":200,"22":1043},"isBase":true}}}, +{"id":72866,"name":"Treachery's Bite","icon":"inv_sword_1h_430oldgod_c_01","type":13,"weaponType":9,"handType":2,"stats":[174,0,262,0,0,116,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"0":174,"2":262,"5":116,"7":116},"isBase":true}}}, +{"id":72867,"name":"Clattering Claw","icon":"inv_hand_1h_430oldgod_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,174,262,0,0,0,128,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"weaponSpeed":2.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":2008,"weaponDamageMax":3730,"stats":{"1":174,"2":262,"6":128,"11":97},"isBase":true}}}, +{"id":72868,"name":"Desecrated Shoulderguards","icon":"inv_shoulder_leather_dungeonleather_c_05","type":3,"armorType":2,"stats":[0,281,454,0,0,209,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":209,"11":169,"22":1365},"isBase":true}}}, +{"id":72869,"name":"Dragonsmaw Blaster","icon":"inv_firearm_2h_rifle_430future_c_01","type":14,"rangedWeaponType":3,"stats":[0,406,611,0,0,0,265,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"weaponSpeed":2.9,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"stats":{"1":406,"2":611,"6":265,"11":276},"isBase":true}}}, +{"id":72870,"name":"Betrayer's Pauldrons","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,281,454,0,0,182,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1952,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":182,"7":202,"22":1952},"isBase":true}}}, +{"id":72871,"name":"Crescent Wand","icon":"inv_wand_1h_430nightelf_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,262,174,91,0,0,131,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":174,"4":91,"7":131,"14":2333},"isBase":true}}}, +{"id":72872,"name":"Time Strand Gauntlets","icon":"inv_glove_plate_dungeonplate_c_06","type":7,"armorType":4,"stats":[281,0,454,0,0,164,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,2264,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"5":164,"8":209,"22":2264},"isBase":true}}}, +{"id":72873,"name":"Bronze Blaster","icon":"inv_firearm_2h_rifle_430future_c_01","type":14,"rangedWeaponType":3,"stats":[0,406,611,0,0,0,0,0,272,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"stats":{"1":406,"2":611,"8":272,"11":272},"isBase":true}}}, +{"id":72874,"name":"Boots of the Forked Road","icon":"inv_boots_leather_dungeonleather_c_05","type":10,"armorType":2,"stats":[0,0,454,281,156,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":156,"7":212,"22":1251},"isBase":true}}}, +{"id":72875,"name":"Time Twister's Gauntlets","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,281,454,0,0,193,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"5":193,"6":187,"22":1627},"isBase":true}}}, +{"id":72876,"name":"Ironfeather Longbow","icon":"inv_1h_430nightelf_c_01","type":14,"rangedWeaponType":1,"stats":[0,406,611,0,0,291,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"weaponSpeed":2.9,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":3020,"weaponDamageMax":5610,"stats":{"1":406,"2":611,"5":291,"8":238},"isBase":true}}}, +{"id":72877,"name":"Chain of the Demon Hunter","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,0,454,281,165,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":165,"7":208,"22":1464},"isBase":true}}}, +{"id":72878,"name":"Demonic Skull","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,341,226,129,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"4":129,"11":165},"isBase":true}}}, +{"id":72879,"name":"Boots of the Treacherous Path","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[0,0,454,281,147,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":147,"6":218,"22":2490},"isBase":true}}}, +{"id":72880,"name":"Alurmi's Ring","icon":"inv_jewelry_ring_100","type":11,"stats":[0,226,341,0,0,0,0,171,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":4,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":226,"2":341,"7":171,"11":119},"isBase":true}}}, +{"id":72881,"name":"Treads of the Past","icon":"inv_boots_plate_dungeonplate_c_06","type":10,"armorType":4,"stats":[281,0,454,0,0,0,191,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,2490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":281,"2":454,"6":191,"11":189,"22":2490},"isBase":true}}}, +{"id":72882,"name":"Chronicler's Chestguard","icon":"inv_chest_leather_dungeonleather_c_05","type":5,"armorType":2,"stats":[0,0,611,366,284,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"4":284,"6":195,"22":1820},"isBase":true}}}, +{"id":72883,"name":"Historian's Sash","icon":"inv_belt_robe_dungeonrobe_c_05","type":8,"armorType":1,"stats":[0,0,454,281,210,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":210,"6":158,"22":782},"isBase":true}}}, +{"id":72884,"name":"Writhing Wand","icon":"inv_wand_1h_430oldgod_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,262,174,0,97,128,0,0,0,0,0,0,0,2333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"weaponSpeed":1.6,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":332,"weaponDamageMin":618,"weaponDamageMax":1148,"stats":{"2":262,"3":174,"5":97,"6":128,"14":2333},"isBase":true}}}, +{"id":72886,"name":"Thrall's Gratitude","icon":"inv_misc_ring_generic_4","type":11,"stats":[226,0,341,0,0,0,0,126,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":4,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"7":126,"8":167},"isBase":true}}}, +{"id":72887,"name":"Cinch of the World Shaman","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,281,454,0,0,0,153,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":281,"2":454,"6":153,"7":215,"22":1464},"isBase":true}}}, +{"id":72888,"name":"Ring of the Loyal Companion","icon":"inv_jewelry_ring_106","type":11,"stats":[0,0,341,226,0,169,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":4,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"5":169,"7":122},"isBase":true}}}, +{"id":72897,"name":"Arrow of Time","icon":"inv_ammo_arrow_06","type":12,"stats":[0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5789,"otherName":"Murozond"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"1":383},"isBase":true}}}, +{"id":72898,"name":"Foul Gift of the Demon Lord","icon":"spell_fire_felflamering","type":12,"stats":[0,0,0,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"3":383},"isBase":true}}}, +{"id":72899,"name":"Varo'then's Brooch","icon":"inv_relics_warpring","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5788,"otherName":"Mannoroth and Varo'then"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":383},"isBase":true}}}, +{"id":72900,"name":"Veil of Lies","icon":"inv_fabric_ebonweave","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":575},"isBase":true}}}, +{"id":72901,"name":"Rosary of Light","icon":"inv_jewelry_necklace_03","type":12,"stats":[383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Archbishop Benedictus"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"0":383},"isBase":true}}}, +{"id":73413,"name":"Cataclysmic Gladiator's Shield Wall","icon":"inv_shield_pvpcataclysms3_c_01","type":13,"weaponType":7,"handType":3,"stats":[306,0,459,0,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":306,"2":459,"6":204,"16":204,"22":12756},"isBase":true}}}, +{"id":73414,"name":"Cataclysmic Gladiator's Slicer","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":3093,"weaponDamageMax":4640,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":3093,"weaponDamageMax":4640,"stats":{"0":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73415,"name":"Cataclysmic Gladiator's Bonecracker","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73416,"name":"Cataclysmic Gladiator's Hacker","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73417,"name":"Cataclysmic Gladiator's Baton of Light","icon":"inv_wand_1h_pvpcataclysms3_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,353,235,157,0,0,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":988,"weaponDamageMax":1837,"weaponSpeed":1.9,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":988,"weaponDamageMax":1837,"stats":{"2":353,"3":235,"4":157,"14":3142,"16":157},"isBase":true}}}, +{"id":73418,"name":"Cataclysmic Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73419,"name":"Cataclysmic Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[235,0,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73420,"name":"Cataclysmic Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73421,"name":"Cataclysmic Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73422,"name":"Cataclysmic Gladiator's Shanker","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2141,"weaponDamageMax":3212,"weaponSpeed":1.8,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2141,"weaponDamageMax":3212,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73423,"name":"Cataclysmic Gladiator's Pike","icon":"inv_polearm_2h_pvpcataclysms3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"1":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73424,"name":"Cataclysmic Gladiator's Energy Staff","icon":"inv_staff_2h_pvpcataclysms3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,549,366,0,0,0,0,0,0,0,0,0,3145,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":1604,"weaponDamageMax":2406,"weaponSpeed":2,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":1604,"weaponDamageMax":2406,"stats":{"2":824,"3":549,"4":366,"14":3145,"16":366},"isBase":true}}}, +{"id":73425,"name":"Cataclysmic Gladiator's Redoubt","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,306,204,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"4":204,"16":204,"22":12756},"isBase":true}}}, +{"id":73426,"name":"Cataclysmic Gladiator's Gavel","icon":"inv_mace_1h_pvpcataclysms3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,353,235,0,0,157,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":832,"weaponDamageMax":1547,"weaponSpeed":1.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":832,"weaponDamageMax":1547,"stats":{"2":353,"3":235,"6":157,"14":3142,"16":157},"isBase":true}}}, +{"id":73427,"name":"Cataclysmic Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvpcataclysms3_c_01","type":14,"rangedWeaponType":3,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"weaponSpeed":3,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"stats":{"1":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73428,"name":"Cataclysmic Gladiator's Shiv","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":1873,"weaponDamageMax":3480,"weaponSpeed":1.8,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":1873,"weaponDamageMax":3480,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73429,"name":"Cataclysmic Gladiator's Staff","icon":"inv_staff_2h_pvpcataclysms3_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":3208,"weaponDamageMax":4812,"weaponSpeed":2,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":3208,"weaponDamageMax":4812,"stats":{"1":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73430,"name":"Cataclysmic Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvpcataclysms3_c_01","type":14,"rangedWeaponType":2,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"weaponSpeed":3,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"stats":{"1":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73431,"name":"Cataclysmic Gladiator's Touch of Defeat","icon":"inv_wand_38","type":14,"rangedWeaponType":6,"stats":[0,0,353,235,0,0,157,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":988,"weaponDamageMax":1837,"weaponSpeed":1.9,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":988,"weaponDamageMax":1837,"stats":{"2":353,"3":235,"6":157,"14":3142,"16":157},"isBase":true}}}, +{"id":73432,"name":"Cataclysmic Gladiator's Reprieve","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,306,204,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"4":204,"16":204},"isBase":true}}}, +{"id":73433,"name":"Cataclysmic Gladiator's Battle Staff","icon":"inv_staff_2h_pvpcataclysms3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,549,0,0,366,0,0,0,0,0,0,0,3145,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":1604,"weaponDamageMax":2406,"weaponSpeed":2,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":1604,"weaponDamageMax":2406,"stats":{"2":824,"3":549,"6":366,"14":3145,"16":366},"isBase":true}}}, +{"id":73434,"name":"Cataclysmic Gladiator's Spellblade","icon":"inv_knife_1h_pvpcataclysms3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,353,235,0,0,157,0,0,0,0,0,0,0,3142,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":832,"weaponDamageMax":1547,"weaponSpeed":1.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":832,"weaponDamageMax":1547,"stats":{"2":353,"3":235,"6":157,"14":3142,"16":157},"isBase":true}}}, +{"id":73435,"name":"Cataclysmic Gladiator's Barrier","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,306,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,12756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"6":204,"16":204,"22":12756},"isBase":true}}}, +{"id":73436,"name":"Cataclysmic Gladiator's Endgame","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,306,0,0,204,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"6":204,"16":204},"isBase":true}}}, +{"id":73437,"name":"Cataclysmic Gladiator's Longbow","icon":"inv_bow_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":1,"stats":[0,549,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"weaponSpeed":3,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4812,"weaponDamageMax":7218,"stats":{"1":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73439,"name":"Cataclysmic Gladiator's Quickblade","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73440,"name":"Cataclysmic Gladiator's Pummeler","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73441,"name":"Cataclysmic Gladiator's Cleaver","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,235,353,0,0,0,157,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"6":157,"16":157},"isBase":true}}}, +{"id":73442,"name":"Cataclysmic Gladiator's Greatsword","icon":"inv_sword_2h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"0":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73443,"name":"Cataclysmic Gladiator's Bonegrinder","icon":"inv_mace_2h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"0":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73444,"name":"Cataclysmic Gladiator's Decapitator","icon":"inv_axe_2h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":4,"stats":[549,0,824,0,0,0,366,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"0":549,"2":824,"6":366,"16":366},"isBase":true}}}, +{"id":73446,"name":"Cataclysmic Gladiator's Shield Wall","icon":"inv_shield_pvpcataclysms3_c_01","type":13,"weaponType":7,"handType":3,"stats":[240,0,360,0,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"6":160,"16":160,"22":12302},"isBase":true}}}, +{"id":73447,"name":"Cataclysmic Gladiator's Slicer","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[185,0,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2427,"weaponDamageMax":3641,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2427,"weaponDamageMax":3641,"stats":{"0":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73448,"name":"Cataclysmic Gladiator's Bonecracker","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[185,0,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73449,"name":"Cataclysmic Gladiator's Hacker","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[185,0,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73450,"name":"Cataclysmic Gladiator's Baton of Light","icon":"inv_wand_1h_pvpcataclysms3_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,277,185,123,0,0,0,0,0,0,0,0,0,2467,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":776,"weaponDamageMax":1441,"weaponSpeed":1.9,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":776,"weaponDamageMax":1441,"stats":{"2":277,"3":185,"4":123,"14":2467,"16":123},"isBase":true}}}, +{"id":73451,"name":"Cataclysmic Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[185,0,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73452,"name":"Cataclysmic Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[185,0,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73453,"name":"Cataclysmic Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73454,"name":"Cataclysmic Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73455,"name":"Cataclysmic Gladiator's Shanker","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1680,"weaponDamageMax":2521,"weaponSpeed":1.8,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1680,"weaponDamageMax":2521,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73456,"name":"Cataclysmic Gladiator's Pike","icon":"inv_polearm_2h_pvpcataclysms3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,431,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"1":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73457,"name":"Cataclysmic Gladiator's Energy Staff","icon":"inv_staff_2h_pvpcataclysms3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,287,0,0,0,0,0,0,0,0,0,2467,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":1258,"weaponDamageMax":1888,"weaponSpeed":2,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":1258,"weaponDamageMax":1888,"stats":{"2":646,"3":431,"4":287,"14":2467,"16":287},"isBase":true}}}, +{"id":73458,"name":"Cataclysmic Gladiator's Redoubt","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":160,"16":160,"22":12302},"isBase":true}}}, +{"id":73459,"name":"Cataclysmic Gladiator's Gavel","icon":"inv_mace_1h_pvpcataclysms3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,277,185,0,0,123,0,0,0,0,0,0,0,2467,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"weaponSpeed":1.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"stats":{"2":277,"3":185,"6":123,"14":2467,"16":123},"isBase":true}}}, +{"id":73460,"name":"Cataclysmic Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvpcataclysms3_c_01","type":14,"rangedWeaponType":3,"stats":[0,431,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"weaponSpeed":3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"stats":{"1":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73461,"name":"Cataclysmic Gladiator's Shiv","icon":"inv_knife_1h_pvpcataclysms3_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"weaponSpeed":1.8,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73462,"name":"Cataclysmic Gladiator's Staff","icon":"inv_staff_2h_pvpcataclysms3_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,431,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2517,"weaponDamageMax":3777,"weaponSpeed":2,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2517,"weaponDamageMax":3777,"stats":{"1":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73463,"name":"Cataclysmic Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvpcataclysms3_c_01","type":14,"rangedWeaponType":2,"stats":[0,431,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"weaponSpeed":3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"stats":{"1":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73464,"name":"Cataclysmic Gladiator's Touch of Defeat","icon":"inv_wand_38","type":14,"rangedWeaponType":6,"stats":[0,0,277,185,0,0,123,0,0,0,0,0,0,0,2467,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":776,"weaponDamageMax":1441,"weaponSpeed":1.9,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":776,"weaponDamageMax":1441,"stats":{"2":277,"3":185,"6":123,"14":2467,"16":123},"isBase":true}}}, +{"id":73465,"name":"Cataclysmic Gladiator's Reprieve","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,360,240,160,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":160,"16":160},"isBase":true}}}, +{"id":73466,"name":"Cataclysmic Gladiator's Battle Staff","icon":"inv_staff_2h_pvpcataclysms3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,0,0,287,0,0,0,0,0,0,0,2467,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":1258,"weaponDamageMax":1888,"weaponSpeed":2,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":1258,"weaponDamageMax":1888,"stats":{"2":646,"3":431,"6":287,"14":2467,"16":287},"isBase":true}}}, +{"id":73467,"name":"Cataclysmic Gladiator's Spellblade","icon":"inv_knife_1h_pvpcataclysms3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,277,185,0,0,123,0,0,0,0,0,0,0,2467,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"weaponSpeed":1.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"stats":{"2":277,"3":185,"6":123,"14":2467,"16":123},"isBase":true}}}, +{"id":73468,"name":"Cataclysmic Gladiator's Barrier","icon":"inv_shield_pvpcataclysms3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,240,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":160,"16":160,"22":12302},"isBase":true}}}, +{"id":73469,"name":"Cataclysmic Gladiator's Endgame","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,360,240,0,0,160,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":160,"16":160},"isBase":true}}}, +{"id":73470,"name":"Cataclysmic Gladiator's Longbow","icon":"inv_bow_1h_pvpcataclysms3_c_01","type":14,"rangedWeaponType":1,"stats":[0,431,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"weaponSpeed":3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3776,"weaponDamageMax":5665,"stats":{"1":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73472,"name":"Cataclysmic Gladiator's Quickblade","icon":"inv_sword_1h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73473,"name":"Cataclysmic Gladiator's Pummeler","icon":"inv_mace_1h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73474,"name":"Cataclysmic Gladiator's Cleaver","icon":"inv_axe_1h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":123,"16":123},"isBase":true}}}, +{"id":73475,"name":"Cataclysmic Gladiator's Greatsword","icon":"inv_sword_2h_pvpcataclysms3_c_01","type":13,"weaponType":9,"handType":4,"stats":[431,0,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73476,"name":"Cataclysmic Gladiator's Bonegrinder","icon":"inv_mace_2h_pvpcataclysms3_c_01","type":13,"weaponType":4,"handType":4,"stats":[431,0,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73477,"name":"Cataclysmic Gladiator's Decapitator","icon":"inv_axe_2h_pvpcataclysms3_c_01","type":13,"weaponType":1,"handType":4,"stats":[431,0,646,0,0,0,287,0,0,0,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"6":287,"16":287},"isBase":true}}}, +{"id":73478,"name":"Cataclysmic Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73479,"name":"Cataclysmic Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73480,"name":"Cataclysmic Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73481,"name":"Cataclysmic Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73482,"name":"Cataclysmic Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73483,"name":"Cataclysmic Gladiator's Felweave Amice","icon":"inv_shoulder_robe_pvpwarlock_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,226,0,0,0,206,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":226,"11":206,"16":135,"22":1112},"isBase":true}}}, +{"id":73484,"name":"Cataclysmic Gladiator's Felweave Raiment","icon":"inv_chest_robe_pvpwarlock_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73485,"name":"Cataclysmic Gladiator's Felweave Trousers","icon":"inv_pants_robe_pvpwarlock_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":264,"11":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73486,"name":"Cataclysmic Gladiator's Felweave Cowl","icon":"inv_helmet_robe_pvpwarlock_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73487,"name":"Cataclysmic Gladiator's Felweave Handguards","icon":"inv_glove_robe_pvpwarlock_d_01","type":7,"armorType":1,"stats":[0,0,508,319,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"5":206,"6":226,"16":135,"22":927},"isBase":true}}}, +{"id":73488,"name":"Cataclysmic Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[254,0,381,0,0,169,0,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"5":169,"11":169,"16":101},"isBase":true}}}, +{"id":73489,"name":"Cataclysmic Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[254,0,381,0,0,0,169,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"6":169,"7":169,"16":101},"isBase":true}}}, +{"id":73491,"name":"Cataclysmic Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":429,"16":135},"isBase":true}}}, +{"id":73492,"name":"Cataclysmic Gladiator's Choker of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[254,0,381,0,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"7":169,"11":169,"16":101},"isBase":true}}}, +{"id":73493,"name":"Cataclysmic Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[254,0,381,0,0,0,169,0,169,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"6":169,"8":169,"16":101},"isBase":true}}}, +{"id":73494,"name":"Cataclysmic Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[254,0,381,0,0,169,0,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"5":169,"11":169,"16":101,"22":741},"isBase":true}}}, +{"id":73495,"name":"Cataclysmic Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[254,0,381,0,0,0,169,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"6":169,"7":169,"16":101,"22":741},"isBase":true}}}, +{"id":73496,"name":"Cataclysmic Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":429,"16":135},"isBase":true}}}, +{"id":73497,"name":"Cataclysmic Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"3":429,"16":135},"isBase":true}}}, +{"id":73498,"name":"Cataclysmic Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"3":429,"16":135},"isBase":true}}}, +{"id":73499,"name":"Cataclysmic Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"4":429,"16":135},"isBase":true}}}, +{"id":73500,"name":"Cataclysmic Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73501,"name":"Cataclysmic Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73502,"name":"Cataclysmic Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":2037},"isBase":true}}}, +{"id":73503,"name":"Cataclysmic Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73504,"name":"Cataclysmic Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":2206},"isBase":true}}}, +{"id":73505,"name":"Cataclysmic Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":1697},"isBase":true}}}, +{"id":73506,"name":"Cataclysmic Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73507,"name":"Cataclysmic Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_d_01","type":8,"armorType":3,"stats":[0,0,488,339,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":206,"11":226,"16":135,"22":1528},"isBase":true}}}, +{"id":73508,"name":"Cataclysmic Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":2037},"isBase":true}}}, +{"id":73509,"name":"Cataclysmic Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73510,"name":"Cataclysmic Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73511,"name":"Cataclysmic Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1697},"isBase":true}}}, +{"id":73512,"name":"Cataclysmic Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73513,"name":"Cataclysmic Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":2037},"isBase":true}}}, +{"id":73514,"name":"Cataclysmic Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":2376},"isBase":true}}}, +{"id":73515,"name":"Cataclysmic Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73516,"name":"Cataclysmic Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":1697},"isBase":true}}}, +{"id":73517,"name":"Cataclysmic Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73518,"name":"Cataclysmic Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_d_01","type":6,"armorType":3,"stats":[0,0,381,254,169,0,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"6":169,"16":101,"22":1188},"isBase":true}}}, +{"id":73519,"name":"Cataclysmic Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_d_01","type":6,"armorType":3,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101,"22":1188},"isBase":true}}}, +{"id":73520,"name":"Cataclysmic Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,488,339,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"11":226,"16":135,"22":1867},"isBase":true}}}, +{"id":73521,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,488,339,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":226,"7":206,"16":135,"22":1867},"isBase":true}}}, +{"id":73522,"name":"Cataclysmic Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_d_01","type":8,"armorType":3,"stats":[0,0,488,339,206,0,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"7":226,"16":135,"22":1528},"isBase":true}}}, +{"id":73523,"name":"Cataclysmic Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_d_01","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":1439},"isBase":true}}}, +{"id":73524,"name":"Cataclysmic Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_d_01","type":9,"armorType":2,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73525,"name":"Cataclysmic Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_d_01","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73526,"name":"Cataclysmic Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_d_01","type":7,"armorType":2,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1199},"isBase":true}}}, +{"id":73527,"name":"Cataclysmic Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_d_01","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73528,"name":"Cataclysmic Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_d_01","type":6,"armorType":2,"stats":[0,254,381,0,0,169,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"5":169,"6":169,"16":101,"22":840},"isBase":true}}}, +{"id":73529,"name":"Cataclysmic Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_d_01","type":6,"armorType":2,"stats":[0,254,381,0,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"7":169,"11":169,"16":101,"22":840},"isBase":true}}}, +{"id":73530,"name":"Cataclysmic Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,319,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":226,"7":206,"16":135,"22":1319},"isBase":true}}}, +{"id":73531,"name":"Cataclysmic Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1319},"isBase":true}}}, +{"id":73532,"name":"Cataclysmic Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_d_01","type":8,"armorType":2,"stats":[0,319,508,0,0,206,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"7":226,"16":135,"22":1080},"isBase":true}}}, +{"id":73533,"name":"Cataclysmic Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_d_01","type":8,"armorType":2,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1080},"isBase":true}}}, +{"id":73534,"name":"Cataclysmic Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":2,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"4":429,"16":135},"isBase":true}}}, +{"id":73535,"name":"Cataclysmic Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":1,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"4":429,"16":135},"isBase":true}}}, +{"id":73536,"name":"Cataclysmic Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":1,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"11":429,"16":135},"isBase":true}}}, +{"id":73537,"name":"Cataclysmic Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":2,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"11":429,"16":135},"isBase":true}}}, +{"id":73538,"name":"Cataclysmic Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":2,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73539,"name":"Cataclysmic Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"factionRestriction":1,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73540,"name":"Cataclysmic Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":1112},"isBase":true}}}, +{"id":73541,"name":"Cataclysmic Gladiator's Satin Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73542,"name":"Cataclysmic Gladiator's Satin Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":1298},"isBase":true}}}, +{"id":73543,"name":"Cataclysmic Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":1205},"isBase":true}}}, +{"id":73544,"name":"Cataclysmic Gladiator's Satin Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":927},"isBase":true}}}, +{"id":73545,"name":"Cataclysmic Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1112},"isBase":true}}}, +{"id":73546,"name":"Cataclysmic Gladiator's Mooncloth Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73547,"name":"Cataclysmic Gladiator's Mooncloth Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73548,"name":"Cataclysmic Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73549,"name":"Cataclysmic Gladiator's Mooncloth Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":927},"isBase":true}}}, +{"id":73550,"name":"Cataclysmic Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_d_01","type":6,"armorType":4,"stats":[254,0,381,0,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"7":169,"11":169,"16":101,"22":1641},"isBase":true}}}, +{"id":73551,"name":"Cataclysmic Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_d_01","type":6,"armorType":4,"stats":[254,0,381,0,0,0,169,0,169,0,0,0,0,0,0,0,101,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"0":254,"2":381,"6":169,"8":169,"16":101,"22":1641},"isBase":true}}}, +{"id":73552,"name":"Cataclysmic Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_d_01","type":10,"armorType":4,"stats":[319,0,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"6":226,"7":206,"16":135,"22":2579},"isBase":true}}}, +{"id":73553,"name":"Cataclysmic Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_d_01","type":10,"armorType":4,"stats":[319,0,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"6":206,"11":226,"16":135,"22":2579},"isBase":true}}}, +{"id":73554,"name":"Cataclysmic Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_d_01","type":8,"armorType":4,"stats":[319,0,508,0,0,206,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"7":226,"16":135,"22":2110},"isBase":true}}}, +{"id":73555,"name":"Cataclysmic Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_d_01","type":8,"armorType":4,"stats":[319,0,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"6":206,"11":226,"16":135,"22":2110},"isBase":true}}}, +{"id":73556,"name":"Cataclysmic Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":2813},"isBase":true}}}, +{"id":73557,"name":"Cataclysmic Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":3282},"isBase":true}}}, +{"id":73558,"name":"Cataclysmic Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73559,"name":"Cataclysmic Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":2344},"isBase":true}}}, +{"id":73560,"name":"Cataclysmic Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73561,"name":"Cataclysmic Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_d_01","type":6,"armorType":4,"stats":[0,0,381,254,169,0,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"6":169,"16":101,"22":1641},"isBase":true}}}, +{"id":73562,"name":"Cataclysmic Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_d_01","type":6,"armorType":4,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101,"22":1641},"isBase":true}}}, +{"id":73563,"name":"Cataclysmic Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,488,339,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"11":226,"16":135,"22":2579},"isBase":true}}}, +{"id":73564,"name":"Cataclysmic Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,488,339,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":226,"7":206,"16":135,"22":2579},"isBase":true}}}, +{"id":73565,"name":"Cataclysmic Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_d_01","type":8,"armorType":4,"stats":[0,0,488,339,206,0,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"7":226,"16":135,"22":2110},"isBase":true}}}, +{"id":73566,"name":"Cataclysmic Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_d_01","type":8,"armorType":4,"stats":[0,0,488,339,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2110,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":206,"11":226,"16":135,"22":2110},"isBase":true}}}, +{"id":73567,"name":"Cataclysmic Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73568,"name":"Cataclysmic Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73569,"name":"Cataclysmic Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73570,"name":"Cataclysmic Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73571,"name":"Cataclysmic Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73572,"name":"Cataclysmic Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,226,0,0,0,206,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":226,"11":206,"16":135,"22":1112},"isBase":true}}}, +{"id":73573,"name":"Cataclysmic Gladiator's Silk Robe","icon":"inv_robe_robe_pvpmage_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73574,"name":"Cataclysmic Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":264,"11":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73575,"name":"Cataclysmic Gladiator's Silk Cowl","icon":"inv_helmet_robe_pvpmage_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73576,"name":"Cataclysmic Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_d_01","type":7,"armorType":1,"stats":[0,0,508,319,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"5":206,"6":226,"16":135,"22":927},"isBase":true}}}, +{"id":73577,"name":"Cataclysmic Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"4":429,"16":135},"isBase":true}}}, +{"id":73578,"name":"Cataclysmic Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"11":429,"16":135},"isBase":true}}}, +{"id":73579,"name":"Cataclysmic Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73580,"name":"Cataclysmic Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_d_01","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":2037},"isBase":true}}}, +{"id":73581,"name":"Cataclysmic Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_d_01","type":9,"armorType":3,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73582,"name":"Cataclysmic Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_d_01","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73583,"name":"Cataclysmic Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_d_01","type":7,"armorType":3,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1697},"isBase":true}}}, +{"id":73584,"name":"Cataclysmic Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_d_01","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73585,"name":"Cataclysmic Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_d_01","type":6,"armorType":3,"stats":[0,254,381,0,0,169,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"5":169,"6":169,"16":101,"22":1188},"isBase":true}}}, +{"id":73586,"name":"Cataclysmic Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_d_01","type":6,"armorType":3,"stats":[0,254,381,0,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"7":169,"11":169,"16":101,"22":1188},"isBase":true}}}, +{"id":73587,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,319,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":226,"7":206,"16":135,"22":1867},"isBase":true}}}, +{"id":73588,"name":"Cataclysmic Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1867},"isBase":true}}}, +{"id":73589,"name":"Cataclysmic Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_d_01","type":8,"armorType":3,"stats":[0,319,508,0,0,206,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"7":226,"16":135,"22":1528},"isBase":true}}}, +{"id":73590,"name":"Cataclysmic Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_d_01","type":8,"armorType":3,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1528},"isBase":true}}}, +{"id":73591,"name":"Cataclysmic Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"4":429,"16":135},"isBase":true}}}, +{"id":73592,"name":"Cataclysmic Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"11":429,"16":135},"isBase":true}}}, +{"id":73593,"name":"Cataclysmic Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"6":429,"16":135},"isBase":true}}}, +{"id":73595,"name":"Cataclysmic Gladiator's Wyrmhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":1439},"isBase":true}}}, +{"id":73596,"name":"Cataclysmic Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73597,"name":"Cataclysmic Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73598,"name":"Cataclysmic Gladiator's Wyrmhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":1559},"isBase":true}}}, +{"id":73599,"name":"Cataclysmic Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":1199},"isBase":true}}}, +{"id":73600,"name":"Cataclysmic Gladiator's Bindings of Prowess","icon":"inv_bracers_leather_pvpdruid_d_01","type":6,"armorType":2,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101,"22":840},"isBase":true}}}, +{"id":73601,"name":"Cataclysmic Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,508,319,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":226,"7":206,"16":135,"22":1319},"isBase":true}}}, +{"id":73602,"name":"Cataclysmic Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_d_01","type":8,"armorType":2,"stats":[0,0,508,319,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":206,"11":226,"16":135,"22":1080},"isBase":true}}}, +{"id":73603,"name":"Cataclysmic Gladiator's Kodohide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1439},"isBase":true}}}, +{"id":73604,"name":"Cataclysmic Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73605,"name":"Cataclysmic Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1679},"isBase":true}}}, +{"id":73606,"name":"Cataclysmic Gladiator's Kodohide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73607,"name":"Cataclysmic Gladiator's Kodohide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":1199},"isBase":true}}}, +{"id":73608,"name":"Cataclysmic Gladiator's Bindings of Meditation","icon":"inv_bracers_leather_pvpdruid_d_01","type":6,"armorType":2,"stats":[0,0,381,254,169,0,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"6":169,"16":101,"22":840},"isBase":true}}}, +{"id":73609,"name":"Cataclysmic Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1319},"isBase":true}}}, +{"id":73610,"name":"Cataclysmic Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_d_01","type":8,"armorType":2,"stats":[0,0,508,319,206,0,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"7":226,"16":135,"22":1080},"isBase":true}}}, +{"id":73611,"name":"Cataclysmic Gladiator's Dragonhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":1439},"isBase":true}}}, +{"id":73612,"name":"Cataclysmic Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73613,"name":"Cataclysmic Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73614,"name":"Cataclysmic Gladiator's Dragonhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73615,"name":"Cataclysmic Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1199},"isBase":true}}}, +{"id":73616,"name":"Cataclysmic Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73617,"name":"Cataclysmic Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73618,"name":"Cataclysmic Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73619,"name":"Cataclysmic Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73620,"name":"Cataclysmic Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73621,"name":"Cataclysmic Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,381,254,169,0,0,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"7":169,"16":101},"isBase":true}}}, +{"id":73622,"name":"Cataclysmic Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,381,254,0,169,0,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"5":169,"7":169,"16":101},"isBase":true}}}, +{"id":73623,"name":"Cataclysmic Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,381,254,0,0,169,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"6":169,"11":169,"16":101},"isBase":true}}}, +{"id":73625,"name":"Cataclysmic Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,381,254,169,0,0,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"7":169,"16":101},"isBase":true}}}, +{"id":73626,"name":"Cataclysmic Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,381,254,0,0,169,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"6":169,"11":169,"16":101},"isBase":true}}}, +{"id":73627,"name":"Cataclysmic Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101},"isBase":true}}}, +{"id":73628,"name":"Cataclysmic Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,381,254,169,0,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"6":169,"16":101,"22":741},"isBase":true}}}, +{"id":73629,"name":"Cataclysmic Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,381,254,0,0,169,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"6":169,"7":169,"16":101,"22":741},"isBase":true}}}, +{"id":73630,"name":"Cataclysmic Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101,"22":741},"isBase":true}}}, +{"id":73631,"name":"Cataclysmic Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_d_01","type":6,"armorType":1,"stats":[0,0,381,254,169,0,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"4":169,"6":169,"16":101,"22":649},"isBase":true}}}, +{"id":73632,"name":"Cataclysmic Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_d_01","type":6,"armorType":1,"stats":[0,0,381,254,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"7":169,"11":169,"16":101,"22":649},"isBase":true}}}, +{"id":73633,"name":"Cataclysmic Gladiator's Cuffs of Accuracy","icon":"inv_bracer_robe_pvpwarlock_d_01","type":6,"armorType":1,"stats":[0,0,381,254,0,169,169,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"2":381,"3":254,"5":169,"6":169,"16":101,"22":649},"isBase":true}}}, +{"id":73634,"name":"Cataclysmic Gladiator's Treads of Meditation","icon":"inv_boot_robe_pvppriest_d_01","type":10,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1020},"isBase":true}}}, +{"id":73635,"name":"Cataclysmic Gladiator's Treads of Alacrity","icon":"inv_boots_robe_pvpwarlock_d_01","type":10,"armorType":1,"stats":[0,0,508,319,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":226,"7":206,"16":135,"22":1020},"isBase":true}}}, +{"id":73636,"name":"Cataclysmic Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_d_01","type":10,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":206,"11":226,"16":135,"22":1020},"isBase":true}}}, +{"id":73637,"name":"Cataclysmic Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_d_01","type":8,"armorType":1,"stats":[0,0,508,319,206,0,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"7":226,"16":135,"22":834},"isBase":true}}}, +{"id":73638,"name":"Cataclysmic Gladiator's Cord of Accuracy","icon":"inv_belt_robe_pvpwarlock_d_01","type":8,"armorType":1,"stats":[0,0,508,319,0,206,0,226,0,0,0,0,0,0,0,0,135,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"5":206,"7":226,"16":135,"22":834},"isBase":true}}}, +{"id":73639,"name":"Cataclysmic Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_d_01","type":8,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,834,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":206,"11":226,"16":135,"22":834},"isBase":true}}}, +{"id":73640,"name":"Cataclysmic Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,254,381,0,0,169,0,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"5":169,"11":169,"16":101},"isBase":true}}}, +{"id":73641,"name":"Cataclysmic Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,254,381,0,0,0,169,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"6":169,"7":169,"16":101},"isBase":true}}}, +{"id":73643,"name":"Cataclysmic Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":429,"16":135},"isBase":true}}}, +{"id":73644,"name":"Cataclysmic Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,254,381,0,0,0,0,169,0,0,0,169,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"7":169,"11":169,"16":101},"isBase":true}}}, +{"id":73645,"name":"Cataclysmic Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,254,381,0,0,0,169,0,169,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"6":169,"8":169,"16":101},"isBase":true}}}, +{"id":73646,"name":"Cataclysmic Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,254,381,0,0,169,0,0,0,0,0,169,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"5":169,"11":169,"16":101,"22":741},"isBase":true}}}, +{"id":73647,"name":"Cataclysmic Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,254,381,0,0,0,169,169,0,0,0,0,0,0,0,0,101,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":483,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"1":254,"2":381,"6":169,"7":169,"16":101,"22":741},"isBase":true}}}, +{"id":73648,"name":"Cataclysmic Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":429,"16":135},"isBase":true}}}, +{"id":73651,"name":"Cataclysmic Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73652,"name":"Cataclysmic Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73653,"name":"Cataclysmic Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73654,"name":"Cataclysmic Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73655,"name":"Cataclysmic Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73656,"name":"Cataclysmic Gladiator's Felweave Amice","icon":"inv_shoulder_robe_pvpwarlock_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,226,0,0,0,206,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":226,"11":206,"16":135,"22":1112},"isBase":true}}}, +{"id":73657,"name":"Cataclysmic Gladiator's Felweave Raiment","icon":"inv_chest_robe_pvpwarlock_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73658,"name":"Cataclysmic Gladiator's Felweave Trousers","icon":"inv_pants_robe_pvpwarlock_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":264,"11":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73659,"name":"Cataclysmic Gladiator's Felweave Cowl","icon":"inv_helmet_robe_pvpwarlock_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73660,"name":"Cataclysmic Gladiator's Felweave Handguards","icon":"inv_glove_robe_pvpwarlock_d_01","type":7,"armorType":1,"stats":[0,0,508,319,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"5":206,"6":226,"16":135,"22":927},"isBase":true}}}, +{"id":73661,"name":"Cataclysmic Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":2037},"isBase":true}}}, +{"id":73662,"name":"Cataclysmic Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73663,"name":"Cataclysmic Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":2206},"isBase":true}}}, +{"id":73664,"name":"Cataclysmic Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":1697},"isBase":true}}}, +{"id":73665,"name":"Cataclysmic Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73666,"name":"Cataclysmic Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":2037},"isBase":true}}}, +{"id":73667,"name":"Cataclysmic Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73668,"name":"Cataclysmic Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73669,"name":"Cataclysmic Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1697},"isBase":true}}}, +{"id":73670,"name":"Cataclysmic Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73671,"name":"Cataclysmic Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_d_01","type":3,"armorType":3,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":2037},"isBase":true}}}, +{"id":73672,"name":"Cataclysmic Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_d_01","type":9,"armorType":3,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":2376},"isBase":true}}}, +{"id":73673,"name":"Cataclysmic Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_d_01","type":1,"armorType":3,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73674,"name":"Cataclysmic Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_d_01","type":7,"armorType":3,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":1697},"isBase":true}}}, +{"id":73675,"name":"Cataclysmic Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_d_01","type":5,"armorType":3,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73676,"name":"Cataclysmic Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,488,339,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"11":226,"16":135,"22":1867},"isBase":true}}}, +{"id":73677,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_d_01","type":10,"armorType":3,"stats":[0,0,488,339,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[7],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":226,"7":206,"16":135,"22":1867},"isBase":true}}}, +{"id":73678,"name":"Cataclysmic Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_d_01","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":1439},"isBase":true}}}, +{"id":73679,"name":"Cataclysmic Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_d_01","type":9,"armorType":2,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73680,"name":"Cataclysmic Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_d_01","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73681,"name":"Cataclysmic Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_d_01","type":7,"armorType":2,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1199},"isBase":true}}}, +{"id":73682,"name":"Cataclysmic Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_d_01","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73683,"name":"Cataclysmic Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,319,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":226,"7":206,"16":135,"22":1319},"isBase":true}}}, +{"id":73684,"name":"Cataclysmic Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_d_01","type":10,"armorType":2,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1319},"isBase":true}}}, +{"id":73685,"name":"Cataclysmic Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":1112},"isBase":true}}}, +{"id":73686,"name":"Cataclysmic Gladiator's Satin Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73687,"name":"Cataclysmic Gladiator's Satin Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":1298},"isBase":true}}}, +{"id":73688,"name":"Cataclysmic Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":1205},"isBase":true}}}, +{"id":73689,"name":"Cataclysmic Gladiator's Satin Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":927},"isBase":true}}}, +{"id":73690,"name":"Cataclysmic Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_d_01","type":3,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1112},"isBase":true}}}, +{"id":73691,"name":"Cataclysmic Gladiator's Mooncloth Robe","icon":"inv_robe_robe_pvppriest_d_01","type":5,"armorType":1,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73692,"name":"Cataclysmic Gladiator's Mooncloth Leggings","icon":"inv_pant_robe_pvppriest_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73693,"name":"Cataclysmic Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73694,"name":"Cataclysmic Gladiator's Mooncloth Gloves","icon":"inv_glove_robe_pvppriest_d_01","type":7,"armorType":1,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":927},"isBase":true}}}, +{"id":73695,"name":"Cataclysmic Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_d_01","type":10,"armorType":4,"stats":[319,0,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"6":226,"7":206,"16":135,"22":2579},"isBase":true}}}, +{"id":73696,"name":"Cataclysmic Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_d_01","type":10,"armorType":4,"stats":[319,0,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"6":206,"11":226,"16":135,"22":2579},"isBase":true}}}, +{"id":73697,"name":"Cataclysmic Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":2813},"isBase":true}}}, +{"id":73698,"name":"Cataclysmic Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":3282},"isBase":true}}}, +{"id":73699,"name":"Cataclysmic Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73700,"name":"Cataclysmic Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":2344},"isBase":true}}}, +{"id":73701,"name":"Cataclysmic Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73702,"name":"Cataclysmic Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,488,339,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"4":206,"11":226,"16":135,"22":2579},"isBase":true}}}, +{"id":73703,"name":"Cataclysmic Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_d_01","type":10,"armorType":4,"stats":[0,0,488,339,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":488,"3":339,"6":226,"7":206,"16":135,"22":2579},"isBase":true}}}, +{"id":73704,"name":"Cataclysmic Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73705,"name":"Cataclysmic Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73706,"name":"Cataclysmic Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73707,"name":"Cataclysmic Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73708,"name":"Cataclysmic Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73709,"name":"Cataclysmic Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_d_01","type":3,"armorType":1,"stats":[0,0,508,319,0,0,0,226,0,0,0,206,0,0,0,0,135,0,0,0,0,0,1112,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":226,"11":206,"16":135,"22":1112},"isBase":true}}}, +{"id":73710,"name":"Cataclysmic Gladiator's Silk Robe","icon":"inv_robe_robe_pvpmage_d_01","type":5,"armorType":1,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1483},"isBase":true}}}, +{"id":73711,"name":"Cataclysmic Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_d_01","type":9,"armorType":1,"stats":[0,0,683,415,0,0,0,264,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":264,"11":304,"16":182,"22":1298},"isBase":true}}}, +{"id":73712,"name":"Cataclysmic Gladiator's Silk Cowl","icon":"inv_helmet_robe_pvpmage_d_01","type":1,"armorType":1,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1205},"isBase":true}}}, +{"id":73713,"name":"Cataclysmic Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_d_01","type":7,"armorType":1,"stats":[0,0,508,319,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"5":206,"6":226,"16":135,"22":927},"isBase":true}}}, +{"id":73714,"name":"Cataclysmic Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_d_01","type":3,"armorType":3,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":2037},"isBase":true}}}, +{"id":73715,"name":"Cataclysmic Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_d_01","type":9,"armorType":3,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,2376,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":2376},"isBase":true}}}, +{"id":73716,"name":"Cataclysmic Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_d_01","type":1,"armorType":3,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,2206,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":2206},"isBase":true}}}, +{"id":73717,"name":"Cataclysmic Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_d_01","type":7,"armorType":3,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1697},"isBase":true}}}, +{"id":73718,"name":"Cataclysmic Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_d_01","type":5,"armorType":3,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,2716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":2716},"isBase":true}}}, +{"id":73719,"name":"Cataclysmic Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,319,508,0,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":226,"7":206,"16":135,"22":1867},"isBase":true}}}, +{"id":73720,"name":"Cataclysmic Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_d_01","type":10,"armorType":3,"stats":[0,319,508,0,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1867,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"6":206,"11":226,"16":135,"22":1867},"isBase":true}}}, +{"id":73721,"name":"Cataclysmic Gladiator's Wyrmhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,508,319,0,0,0,206,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"7":206,"11":226,"16":135,"22":1439},"isBase":true}}}, +{"id":73722,"name":"Cataclysmic Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73723,"name":"Cataclysmic Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,683,415,0,0,0,304,0,0,0,264,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"7":304,"11":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73724,"name":"Cataclysmic Gladiator's Wyrmhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,683,395,0,0,0,244,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"7":244,"11":304,"16":182,"22":1559},"isBase":true}}}, +{"id":73725,"name":"Cataclysmic Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,508,319,226,0,206,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"6":206,"16":135,"22":1199},"isBase":true}}}, +{"id":73726,"name":"Cataclysmic Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,508,319,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":226,"7":206,"16":135,"22":1319},"isBase":true}}}, +{"id":73727,"name":"Cataclysmic Gladiator's Kodohide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1439},"isBase":true}}}, +{"id":73728,"name":"Cataclysmic Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73729,"name":"Cataclysmic Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,0,683,415,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"6":264,"7":304,"16":182,"22":1679},"isBase":true}}}, +{"id":73730,"name":"Cataclysmic Gladiator's Kodohide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,0,683,395,0,0,304,0,0,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":395,"6":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73731,"name":"Cataclysmic Gladiator's Kodohide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,0,508,319,226,0,0,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":226,"7":206,"16":135,"22":1199},"isBase":true}}}, +{"id":73732,"name":"Cataclysmic Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_d_01","type":10,"armorType":2,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1319},"isBase":true}}}, +{"id":73733,"name":"Cataclysmic Gladiator's Dragonhide Spaulders","icon":"inv_shoulders_leather_pvpdruid_d_01","type":3,"armorType":2,"stats":[0,319,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"7":226,"8":206,"16":135,"22":1439},"isBase":true}}}, +{"id":73734,"name":"Cataclysmic Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_d_01","type":5,"armorType":2,"stats":[0,415,683,0,0,0,264,0,0,0,0,304,0,0,0,0,182,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":264,"11":304,"16":182,"22":1919},"isBase":true}}}, +{"id":73735,"name":"Cataclysmic Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_d_01","type":9,"armorType":2,"stats":[0,415,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,1679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":415,"2":683,"6":304,"7":264,"16":182,"22":1679},"isBase":true}}}, +{"id":73736,"name":"Cataclysmic Gladiator's Dragonhide Helm","icon":"inv_helmet_leather_pvpdruid_d_01","type":1,"armorType":2,"stats":[0,395,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,1559,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"1":395,"2":683,"8":304,"11":244,"16":182,"22":1559},"isBase":true}}}, +{"id":73737,"name":"Cataclysmic Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_leather_pvpdruid_d_01","type":7,"armorType":2,"stats":[0,319,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1199,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":319,"2":508,"5":206,"6":226,"16":135,"22":1199},"isBase":true}}}, +{"id":73738,"name":"Cataclysmic Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_d_01","type":3,"armorType":4,"stats":[319,0,508,0,0,0,0,226,206,0,0,0,0,0,0,0,135,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"7":226,"8":206,"16":135,"22":2813},"isBase":true}}}, +{"id":73739,"name":"Cataclysmic Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_d_01","type":9,"armorType":4,"stats":[415,0,683,0,0,0,304,264,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":304,"7":264,"16":182,"22":3282},"isBase":true}}}, +{"id":73740,"name":"Cataclysmic Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_d_01","type":1,"armorType":4,"stats":[395,0,683,0,0,0,0,0,304,0,0,244,0,0,0,0,182,0,0,0,0,0,3048,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":395,"2":683,"8":304,"11":244,"16":182,"22":3048},"isBase":true}}}, +{"id":73741,"name":"Cataclysmic Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_d_01","type":7,"armorType":4,"stats":[319,0,508,0,0,206,226,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":319,"2":508,"5":206,"6":226,"16":135,"22":2344},"isBase":true}}}, +{"id":73742,"name":"Cataclysmic Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_d_01","type":5,"armorType":4,"stats":[415,0,683,0,0,0,264,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"0":415,"2":683,"6":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":73743,"name":"Cataclysmic Gladiator's Treads of Meditation","icon":"inv_boot_robe_pvppriest_d_01","type":10,"armorType":1,"stats":[0,0,508,319,206,0,0,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"4":206,"11":226,"16":135,"22":1020},"isBase":true}}}, +{"id":73744,"name":"Cataclysmic Gladiator's Treads of Alacrity","icon":"inv_boots_robe_pvpwarlock_d_01","type":10,"armorType":1,"stats":[0,0,508,319,0,0,226,206,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":226,"7":206,"16":135,"22":1020},"isBase":true}}}, +{"id":73745,"name":"Cataclysmic Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_d_01","type":10,"armorType":1,"stats":[0,0,508,319,0,0,206,0,0,0,0,226,0,0,0,0,135,0,0,0,0,0,1020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":319,"6":206,"11":226,"16":135,"22":1020},"isBase":true}}}, +{"id":74035,"name":"Master Pit Fighter","icon":"inv_misc_armorkit_04","type":12,"stats":[0,0,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":575},"isBase":true}}}, +{"id":75061,"name":"Vicious Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,450,300,0,152,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"5":152,"16":228,"22":1945},"isBase":true}}}, +{"id":75062,"name":"Vicious Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,605,403,0,0,269,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"6":269,"16":269,"22":1124},"isBase":true}}}, +{"id":75063,"name":"Vicious Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"11":200,"16":200,"22":864},"isBase":true}}}, +{"id":75064,"name":"Vicious Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,450,300,200,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"4":200,"16":200,"22":1037},"isBase":true}}}, +{"id":75070,"name":"Vicious Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":200,"16":200,"22":864},"isBase":true}}}, +{"id":75072,"name":"Vicious Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,605,403,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,1210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"11":269,"16":269,"22":1210},"isBase":true}}}, +{"id":75073,"name":"Vicious Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"7":269,"16":269,"22":1124},"isBase":true}}}, +{"id":75080,"name":"Vicious Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,605,403,242,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"4":242,"16":285,"22":1585},"isBase":true}}}, +{"id":75081,"name":"Vicious Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,300,450,0,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"6":200,"16":200,"22":1621},"isBase":true}}}, +{"id":75082,"name":"Vicious Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"7":269,"16":269,"22":1210},"isBase":true}}}, +{"id":75083,"name":"Vicious Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,450,300,0,0,0,206,0,0,0,0,0,0,0,0,190,0,0,0,0,0,1459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":206,"16":190,"22":1459},"isBase":true}}}, +{"id":75084,"name":"Vicious Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,605,403,0,0,307,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"6":307,"16":204,"22":2594},"isBase":true}}}, +{"id":75085,"name":"Vicious Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,450,300,0,0,0,161,0,0,0,0,0,0,0,0,223,0,0,0,0,0,1621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":161,"16":223,"22":1621},"isBase":true}}}, +{"id":75086,"name":"Vicious Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"6":200,"16":200,"22":778},"isBase":true}}}, +{"id":75087,"name":"Vicious Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"11":200,"16":200,"22":951},"isBase":true}}}, +{"id":75088,"name":"Vicious Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"7":269,"16":269,"22":1383},"isBase":true}}}, +{"id":75089,"name":"Vicious Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,338,225,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"11":150,"16":150,"22":605},"isBase":true}}}, +{"id":75090,"name":"Vicious Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,605,403,0,0,0,242,0,0,0,0,0,0,0,0,285,0,0,0,0,0,2108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"7":242,"16":285,"22":2108},"isBase":true}}}, +{"id":75091,"name":"Vicious Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"6":200,"16":200,"22":1037},"isBase":true}}}, +{"id":75092,"name":"Vicious Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,450,300,161,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0,0,1783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"4":161,"16":223,"22":1783},"isBase":true}}}, +{"id":75093,"name":"Vicious Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,605,403,269,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"4":269,"16":269,"22":1383},"isBase":true}}}, +{"id":75094,"name":"Vicious Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,338,225,0,114,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"5":114,"16":171,"22":1135},"isBase":true}}}, +{"id":75095,"name":"Vicious Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":200,"16":200,"22":951},"isBase":true}}}, +{"id":75096,"name":"Vicious Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"11":200,"16":200,"22":778},"isBase":true}}}, +{"id":75097,"name":"Vicious Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,605,403,0,0,217,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,2270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"6":217,"16":300,"22":2270},"isBase":true}}}, +{"id":75098,"name":"Vicious Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,338,225,0,0,0,150,0,0,0,0,0,0,0,0,150,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"16":150,"22":605},"isBase":true}}}, +{"id":75099,"name":"Vicious Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,450,300,0,0,0,152,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":152,"16":228,"22":1359},"isBase":true}}}, +{"id":75100,"name":"Vicious Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,300,450,0,0,0,0,0,0,0,0,228,0,0,0,0,152,0,0,0,0,0,1459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"11":228,"16":152,"22":1459},"isBase":true}}}, +{"id":75101,"name":"Vicious Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,450,300,0,0,0,228,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":228,"16":152,"22":1245},"isBase":true}}}, +{"id":75102,"name":"Vicious Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,403,605,0,0,0,0,242,0,0,0,0,0,0,0,0,285,0,0,0,0,0,2108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"7":242,"16":285,"22":2108},"isBase":true}}}, +{"id":75103,"name":"Vicious Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,403,605,0,0,0,0,0,0,0,0,204,0,0,0,0,307,0,0,0,0,0,1812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"11":204,"16":307,"22":1812},"isBase":true}}}, +{"id":75104,"name":"Vicious Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,300,450,0,0,0,152,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,1132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"6":152,"16":228,"22":1132},"isBase":true}}}, +{"id":75105,"name":"Vicious Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,403,605,0,0,204,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,1472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"5":204,"16":307,"22":1472},"isBase":true}}}, +{"id":75106,"name":"Vicious Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,338,225,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"6":150,"16":150,"22":793},"isBase":true}}}, +{"id":75107,"name":"Vicious Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,605,403,0,0,0,0,0,0,0,307,0,0,0,0,204,0,0,0,0,0,1812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"11":307,"16":204,"22":1812},"isBase":true}}}, +{"id":75108,"name":"Vicious Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,403,605,0,0,0,0,0,0,0,0,300,0,0,0,0,217,0,0,0,0,0,2270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"11":300,"16":217,"22":2270},"isBase":true}}}, +{"id":75109,"name":"Vicious Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,450,300,223,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0,0,1132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"4":223,"16":161,"22":1132},"isBase":true}}}, +{"id":75110,"name":"Vicious Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,300,450,0,0,228,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"5":228,"16":152,"22":1783},"isBase":true}}}, +{"id":75111,"name":"Vicious Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,605,403,0,0,204,0,0,0,0,0,0,0,0,0,307,0,0,0,0,0,1472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"6":204,"16":307,"22":1472},"isBase":true}}}, +{"id":75112,"name":"Vicious Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,403,605,0,0,0,217,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"6":217,"16":300,"22":1585},"isBase":true}}}, +{"id":75113,"name":"Vicious Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,300,450,0,0,0,180,0,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"6":180,"16":212,"22":1359},"isBase":true}}}, +{"id":75114,"name":"Vicious Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,225,338,0,0,0,0,0,0,0,0,171,0,0,0,0,114,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"11":171,"16":114,"22":1135},"isBase":true}}}, +{"id":75115,"name":"Vicious Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,403,605,0,0,0,307,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"1":403,"2":605,"6":307,"16":204,"22":2594},"isBase":true}}}, +{"id":75116,"name":"Vicious Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,300,450,0,0,0,180,0,0,0,0,0,0,0,0,0,212,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"6":180,"16":212,"22":1945},"isBase":true}}}, +{"id":75117,"name":"Vicious Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,450,300,0,0,0,0,0,0,0,180,0,0,0,0,212,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"11":180,"16":212,"22":1019},"isBase":true}}}, +{"id":75118,"name":"Vicious Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,450,300,0,0,200,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"weaponSpeed":1.9,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"6":200,"16":200,"22":2031},"isBase":true}}}, +{"id":75119,"name":"Vicious Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[300,0,450,0,0,0,0,0,200,0,0,0,0,0,0,0,200,0,0,0,0,0,2708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":300,"2":450,"8":200,"16":200,"22":2708},"isBase":true}}}, +{"id":75120,"name":"Vicious Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[300,0,450,0,0,200,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":300,"2":450,"5":200,"16":200,"22":2483},"isBase":true}}}, +{"id":75121,"name":"Vicious Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":200,"16":200,"22":2257},"isBase":true}}}, +{"id":75122,"name":"Vicious Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[300,0,450,0,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":300,"2":450,"7":200,"16":200,"22":2257},"isBase":true}}}, +{"id":75123,"name":"Vicious Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[300,0,450,0,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"weaponSpeed":1.8,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"0":300,"2":450,"7":200,"16":200,"22":2031},"isBase":true}}}, +{"id":75124,"name":"Vicious Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[225,0,338,0,0,150,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"5":150,"16":150,"22":1580},"isBase":true}}}, +{"id":75125,"name":"Vicious Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,338,225,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"6":150,"16":150,"22":1580},"isBase":true}}}, +{"id":75126,"name":"Vicious Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[403,0,605,0,0,0,0,0,269,0,0,0,0,0,0,0,269,0,0,0,0,0,2934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":403,"2":605,"8":269,"16":269,"22":2934},"isBase":true}}}, +{"id":75127,"name":"Vicious Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,300,450,0,0,0,0,0,180,0,0,0,0,0,0,0,212,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"8":180,"16":212,"22":1019},"isBase":true}}}, +{"id":75128,"name":"Vicious Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,605,403,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,3611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"11":269,"16":269,"22":3611},"isBase":true}}}, +{"id":75129,"name":"Vicious Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,605,403,0,0,0,269,0,0,0,0,0,0,0,0,269,0,0,0,0,0,2934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"7":269,"16":269,"22":2934},"isBase":true}}}, +{"id":75130,"name":"Vicious Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,300,450,0,0,0,0,0,0,0,0,217,0,0,0,0,171,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"1":300,"2":450,"11":217,"16":171,"22":1245},"isBase":true}}}, +{"id":75131,"name":"Vicious Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,225,338,0,0,0,0,135,0,0,0,0,0,0,0,0,159,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"7":135,"16":159,"22":793},"isBase":true}}}, +{"id":75132,"name":"Vicious Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,450,300,0,0,0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,2483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"11":200,"16":200,"22":2483},"isBase":true}}}, +{"id":75133,"name":"Vicious Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,605,403,0,0,269,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,3160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"2":605,"3":403,"6":269,"16":269,"22":3160},"isBase":true}}}, +{"id":75134,"name":"Vicious Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,450,300,0,0,0,200,0,0,0,0,0,0,0,0,200,0,0,0,0,0,2708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":570,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"2":450,"3":300,"7":200,"16":200,"22":2708},"isBase":true}}}, +{"id":75135,"name":"Vicious Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[403,0,605,0,0,0,0,0,0,0,0,269,0,0,0,0,269,0,0,0,0,0,3611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":403,"2":605,"11":269,"16":269,"22":3611},"isBase":true}}}, +{"id":75136,"name":"Vicious Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[403,0,605,0,0,269,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,3160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":767,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"0":403,"2":605,"5":269,"16":269,"22":3160},"isBase":true}}}, +{"id":75274,"name":"Zen Alchemist Stone","icon":"inv_pet_scorchedstone","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809},"isBase":true}}}, +{"id":76150,"name":"Evergreen Wristbands","icon":"inv_bracers_leather_dungeonleather_c_05","type":6,"armorType":2,"stats":[0,0,341,226,0,0,162,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Arcurion"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"6":162,"11":133,"22":796},"isBase":true}}}, +{"id":76151,"name":"Cloak of Subtle Light","icon":"inv_cape_430dungeon_c_04","type":4,"armorType":1,"stats":[0,0,341,226,162,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5844,"otherName":"Asira Dawnslayer"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"4":162,"11":133,"22":695},"isBase":true}}}, +{"id":76152,"name":"Cowl of Destiny","icon":"inv_helm_robe_dungeonrobe_c_05","type":1,"armorType":1,"stats":[0,0,611,346,183,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":346,"4":183,"7":276,"22":1130},"isBase":true}}}, +{"id":76153,"name":"Signet of the Twilight Prophet","icon":"inv_jewelry_ring_101","type":11,"stats":[0,0,341,226,169,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"4":169,"7":122},"isBase":true}}}, +{"id":76154,"name":"Breastplate of Despair","icon":"inv_chest_plate_dungeonplate_c_06","type":5,"armorType":4,"stats":[0,0,611,366,284,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3622,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":775,"stats":{"2":611,"3":366,"4":284,"6":200,"22":3622},"isBase":true}}}, +{"id":76156,"name":"Bindings of the End Times","icon":"inv_bracer_plate_dungeonplate_c_06","type":6,"armorType":4,"stats":[226,0,341,0,0,0,0,148,154,0,0,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5789,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"7":148,"8":154,"22":1585},"isBase":true}}}, +{"id":76157,"name":"Waterworn Handguards","icon":"inv_gauntlets_leather_dungeonleather_c_05","type":7,"armorType":2,"stats":[0,0,454,281,207,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":207,"7":166,"22":1137},"isBase":true}}}, +{"id":76158,"name":"Courtier's Slippers","icon":"inv_boots_robe_dungeonrobe_c_05","type":10,"armorType":1,"stats":[0,0,454,281,179,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":179,"7":203,"22":956},"isBase":true}}}, +{"id":76159,"name":"Legion Bindings","icon":"inv_bracer_mail_dungeonmail_c_05","type":6,"armorType":3,"stats":[0,226,341,0,0,133,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5788,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":226,"2":341,"5":133,"11":162,"22":1139},"isBase":true}}}, +{"id":76160,"name":"Drapes of the Dragonshrine","icon":"inv_cape_430dungeon_c_04","type":4,"armorType":1,"stats":[0,0,341,226,0,0,151,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":226,"6":151,"7":151,"22":695},"isBase":true}}}, +{"id":76161,"name":"Gauntlets of the Twilight Hour","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,0,454,281,212,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":281,"4":212,"6":159,"22":1627},"isBase":true}}}, +{"id":76162,"name":"Twilight Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[226,0,341,0,0,0,0,0,0,126,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5844,"otherName":"Trash Mobs"}}],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":226,"2":341,"9":126,"11":167},"isBase":true}}}, +{"id":76212,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,197,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"5":197,"11":255,"22":961},"isBase":true}}}, +{"id":76213,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"6":245,"7":324,"22":1250},"isBase":true}}}, +{"id":76214,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":299,"11":289,"22":1346},"isBase":true}}}, +{"id":76215,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,730,426,0,266,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"5":266,"7":319,"22":1538},"isBase":true}}}, +{"id":76216,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":187,"11":233,"22":1154},"isBase":true}}}, +{"id":76339,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":187,"11":233,"22":1154},"isBase":true}}}, +{"id":76340,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,730,426,0,266,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"5":266,"7":319,"22":1538},"isBase":true}}}, +{"id":76341,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":299,"11":289,"22":1346},"isBase":true}}}, +{"id":76342,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"6":245,"7":324,"22":1250},"isBase":true}}}, +{"id":76343,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,197,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"5":197,"11":255,"22":961},"isBase":true}}}, +{"id":76344,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,187,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":187,"11":233,"22":1154},"isBase":true}}}, +{"id":76345,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,266,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":266,"7":319,"22":1538},"isBase":true}}}, +{"id":76346,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,0,0,0,299,0,0,0,289,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":299,"11":289,"22":1346},"isBase":true}}}, +{"id":76347,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,0,245,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"6":245,"7":324,"22":1250},"isBase":true}}}, +{"id":76348,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,197,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":197,"11":255,"22":961},"isBase":true}}}, +{"id":76357,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,247,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":247,"6":205,"22":961},"isBase":true}}}, +{"id":76358,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,311,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":311,"7":277,"22":1250},"isBase":true}}}, +{"id":76359,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,730,426,318,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":318,"7":264,"22":1346},"isBase":true}}}, +{"id":76360,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,319,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":319,"11":260,"22":1538},"isBase":true}}}, +{"id":76361,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,542,321,229,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":229,"11":213,"22":1154},"isBase":true}}}, +{"id":76749,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,237,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":237,"11":223,"22":1237},"isBase":true}}}, +{"id":76750,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,313,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":313,"7":272,"22":1608},"isBase":true}}}, +{"id":76751,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,446,323,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"4":323,"11":236,"22":1731},"isBase":true}}}, +{"id":76752,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,426,293,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":293,"7":286,"22":1979},"isBase":true}}}, +{"id":76753,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,542,321,217,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":217,"11":225,"22":1484},"isBase":true}}}, +{"id":76756,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,426,313,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":313,"11":272,"22":2783},"isBase":true}}}, +{"id":76757,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,237,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":237,"6":225,"22":1739},"isBase":true}}}, +{"id":76758,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,331,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":331,"11":244,"22":2261},"isBase":true}}}, +{"id":76759,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,309,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":309,"7":276,"22":2435},"isBase":true}}}, +{"id":76760,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,223,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":223,"7":219,"22":2087},"isBase":true}}}, +{"id":76765,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,730,426,319,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":319,"7":260,"22":3829},"isBase":true}}}, +{"id":76766,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,542,341,242,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":242,"6":215,"22":2393},"isBase":true}}}, +{"id":76767,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,730,426,308,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":308,"11":280,"22":3111},"isBase":true}}}, +{"id":76768,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,730,426,301,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":301,"11":284,"22":3350},"isBase":true}}}, +{"id":76769,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,542,321,242,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":242,"7":193,"22":2871},"isBase":true}}}, +{"id":76874,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,287,0,0,0,301,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"7":287,"11":301,"22":3829},"isBase":true}}}, +{"id":76875,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,227,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"6":227,"7":231,"22":2393},"isBase":true}}}, +{"id":76876,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,274,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"5":274,"8":314,"22":3111},"isBase":true}}}, +{"id":76877,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,278,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"6":278,"11":307,"22":3350},"isBase":true}}}, +{"id":76878,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,0,181,0,0,0,245,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"7":181,"11":245,"22":2871},"isBase":true}}}, +{"id":76974,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,270,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"5":270,"7":315,"22":3829},"isBase":true}}}, +{"id":76975,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,252,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"6":252,"11":203,"22":2393},"isBase":true}}}, +{"id":76976,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,0,0,343,232,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"7":343,"8":232,"22":3111},"isBase":true}}}, +{"id":76977,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,252,0,0,0,321,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"7":252,"11":321,"22":3350},"isBase":true}}}, +{"id":76978,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,193,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"6":193,"7":242,"22":2871},"isBase":true}}}, +{"id":76983,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,0,289,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"6":289,"8":299,"22":3111},"isBase":true}}}, +{"id":76984,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,244,0,0,331,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"8":244,"11":331,"22":3829},"isBase":true}}}, +{"id":76985,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,221,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"5":221,"6":241,"22":2393},"isBase":true}}}, +{"id":76986,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,283,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"5":283,"11":292,"22":3350},"isBase":true}}}, +{"id":76987,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[321,0,542,0,0,0,223,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"6":223,"7":217,"22":2871},"isBase":true}}}, +{"id":76988,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,304,0,278,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"9":304,"11":278,"22":3829},"isBase":true}}}, +{"id":76989,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[255,0,542,0,0,163,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":255,"2":542,"5":163,"11":361,"22":2393},"isBase":true}}}, +{"id":76990,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,0,466,206,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":310,"2":730,"10":466,"11":206,"22":3111},"isBase":true}}}, +{"id":76991,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,290,289,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"9":290,"10":289,"22":3350},"isBase":true}}}, +{"id":76992,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[235,0,542,0,0,0,0,0,183,0,0,321,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":235,"2":542,"8":183,"11":321,"22":2871},"isBase":true}}}, +{"id":77003,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,0,276,306,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"10":276,"11":306,"22":3829},"isBase":true}}}, +{"id":77004,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[235,0,542,0,0,153,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":235,"2":542,"5":153,"9":351,"22":2393},"isBase":true}}}, +{"id":77005,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,450,0,222,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":310,"2":730,"9":450,"11":222,"22":3111},"isBase":true}}}, +{"id":77006,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,280,299,0,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"9":280,"10":299,"22":3350},"isBase":true}}}, +{"id":77007,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[218,0,542,0,0,0,0,0,199,0,333,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":218,"2":542,"8":199,"10":333,"22":2871},"isBase":true}}}, +{"id":77008,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,272,0,310,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"9":272,"11":310,"22":3829},"isBase":true}}}, +{"id":77009,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[255,0,542,0,0,163,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":255,"2":542,"5":163,"11":361,"22":2393},"isBase":true}}}, +{"id":77010,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[310,0,730,0,0,0,0,0,0,206,466,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":310,"2":730,"9":206,"10":466,"22":3111},"isBase":true}}}, +{"id":77011,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[426,0,730,0,0,0,0,0,0,0,260,319,0,0,0,0,0,0,0,0,0,0,3350,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"10":260,"11":319,"22":3350},"isBase":true}}}, +{"id":77012,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[235,0,542,0,0,0,0,0,153,0,0,351,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":235,"2":542,"8":153,"11":351,"22":2871},"isBase":true}}}, +{"id":77013,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,426,730,0,0,0,359,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"6":359,"11":197,"22":1979},"isBase":true}}}, +{"id":77014,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,0,245,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"6":245,"8":215,"22":1237},"isBase":true}}}, +{"id":77015,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,314,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":314,"7":268,"22":1608},"isBase":true}}}, +{"id":77016,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,206,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":206,"8":350,"22":1731},"isBase":true}}}, +{"id":77017,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,0,0,171,0,0,258,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"8":171,"11":258,"22":1484},"isBase":true}}}, +{"id":77018,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,0,0,0,245,0,0,0,215,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"7":245,"11":215,"22":1237},"isBase":true}}}, +{"id":77019,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,277,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":277,"7":298,"22":1608},"isBase":true}}}, +{"id":77020,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,730,426,0,0,0,334,0,0,0,222,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":334,"11":222,"22":1731},"isBase":true}}}, +{"id":77021,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,426,282,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":282,"11":293,"22":1979},"isBase":true}}}, +{"id":77022,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,542,321,217,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":217,"6":225,"22":1484},"isBase":true}}}, +{"id":77023,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,426,730,0,0,0,0,300,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"7":300,"11":288,"22":1979},"isBase":true}}}, +{"id":77024,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,225,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"5":225,"8":237,"22":1237},"isBase":true}}}, +{"id":77025,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,0,276,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"6":276,"7":312,"22":1608},"isBase":true}}}, +{"id":77026,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,426,730,0,0,280,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":280,"6":308,"22":1731},"isBase":true}}}, +{"id":77027,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,210,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":210,"7":231,"22":1484},"isBase":true}}}, +{"id":77028,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,426,730,0,0,294,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":294,"7":288,"22":2783},"isBase":true}}}, +{"id":77029,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,205,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"5":205,"7":247,"22":1739},"isBase":true}}}, +{"id":77030,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,0,346,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"6":346,"11":210,"22":2261},"isBase":true}}}, +{"id":77031,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,0,308,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"6":308,"11":280,"22":2435},"isBase":true}}}, +{"id":77032,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,321,542,0,0,0,242,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":242,"7":193,"22":2087},"isBase":true}}}, +{"id":77035,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,214,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":214,"7":228,"22":2087},"isBase":true}}}, +{"id":77036,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,730,426,265,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":265,"11":314,"22":2435},"isBase":true}}}, +{"id":77037,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,0,0,0,251,0,0,0,324,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"7":251,"11":324,"22":2261},"isBase":true}}}, +{"id":77038,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,0,0,0,239,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"7":239,"11":221,"22":1739},"isBase":true}}}, +{"id":77039,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,426,290,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":290,"7":298,"22":2783},"isBase":true}}}, +{"id":77040,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,426,730,0,0,286,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":286,"11":302,"22":2783},"isBase":true}}}, +{"id":77041,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,0,0,0,249,0,0,203,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"8":249,"11":203,"22":1739},"isBase":true}}}, +{"id":77042,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,344,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":344,"7":218,"22":2261},"isBase":true}}}, +{"id":77043,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,426,730,0,0,237,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"sources":[{"drop":{"zoneId":5399,"otherName":"Alizabal, Mistress of Hate"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":237,"6":336,"22":2435},"isBase":true}}}, +{"id":77044,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,321,542,0,0,234,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"5":234,"8":206,"22":2087},"isBase":true}}}, +{"id":77078,"name":"Scintillating Rods","icon":"inv_wand_1h_deathwingraid_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,312,208,153,0,0,115,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"stats":{"2":312,"3":208,"4":153,"7":115,"14":2783},"isBase":true}}}, +{"id":77079,"name":"Hungermouth Wand","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,312,208,0,132,0,0,0,0,0,143,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"stats":{"2":312,"3":208,"5":132,"11":143,"14":2783},"isBase":true}}}, +{"id":77088,"name":"Opal of the Secret Order","icon":"inv_misc_necklace_16","type":2,"stats":[0,0,406,271,0,141,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"5":141,"7":203},"isBase":true}}}, +{"id":77089,"name":"Threadlinked Chain","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,406,271,196,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":196,"6":154},"isBase":true}}}, +{"id":77090,"name":"Necklace of Black Dragon's Teeth","icon":"inv_misc_bonenecklace","type":2,"stats":[271,0,406,0,0,189,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":271,"2":406,"5":189,"6":167},"isBase":true}}}, +{"id":77091,"name":"Cameo of Terrible Memories","icon":"inv_misc_necklace14","type":2,"stats":[0,271,406,0,0,176,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":271,"2":406,"5":176,"7":183},"isBase":true}}}, +{"id":77092,"name":"Guardspike Choker","icon":"inv_misc_necklace13","type":2,"stats":[271,0,406,0,0,0,0,0,0,191,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":271,"2":406,"9":191,"11":163},"isBase":true}}}, +{"id":77095,"name":"Batwing Cloak","icon":"inv_misc_cape_deathwingraid_d_01","type":4,"armorType":1,"stats":[0,251,406,0,0,0,162,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"6":162,"7":176,"22":769},"isBase":true}}}, +{"id":77096,"name":"Woundlicker Cover","icon":"inv_misc_cape_deathwingraid_d_03","type":4,"armorType":1,"stats":[0,0,406,251,184,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":184,"7":148,"22":769},"isBase":true}}}, +{"id":77097,"name":"Dreamcrusher Drape","icon":"inv_misc_cape_deathwingraid_d_01","type":4,"armorType":1,"stats":[251,0,406,0,0,127,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"5":127,"6":196,"22":769},"isBase":true}}}, +{"id":77098,"name":"Nanoprecise Cape","icon":"inv_misc_cape_deathwingraid_d_03","type":4,"armorType":1,"stats":[0,0,406,251,0,166,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"5":166,"11":173,"22":769},"isBase":true}}}, +{"id":77099,"name":"Indefatigable Greatcloak","icon":"inv_misc_cape_deathwingraid_d_02","type":4,"armorType":1,"stats":[206,0,406,0,0,0,0,0,137,0,271,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":206,"2":406,"8":137,"10":271,"22":769},"isBase":true}}}, +{"id":77108,"name":"Seal of the Grand Architect","icon":"inv_jewelry_ring_90","type":11,"stats":[0,0,406,251,0,162,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"5":162,"7":176},"isBase":true}}}, +{"id":77109,"name":"Band of Reconstruction","icon":"inv_misc_ring_generic_1","type":11,"stats":[0,0,406,251,171,0,0,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":171,"11":171},"isBase":true}}}, +{"id":77110,"name":"Ring of Torn Flesh","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[251,0,406,0,0,0,157,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"6":157,"11":179},"isBase":true}}}, +{"id":77111,"name":"Emergency Descent Loop","icon":"inv_jewelry_ring_89","type":11,"stats":[0,251,406,0,0,0,0,184,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"7":184,"11":148},"isBase":true}}}, +{"id":77112,"name":"Signet of the Resolute","icon":"inv_jewelry_ring_92","type":11,"stats":[251,0,406,0,0,0,0,0,0,153,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"9":153,"10":181},"isBase":true}}}, +{"id":77113,"name":"Kiroptyric Sigil","icon":"inv_qiraj_jewelengraved","type":12,"stats":[0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"7":458},"isBase":true}}}, +{"id":77114,"name":"Bottled Wishes","icon":"inv_potion_109","type":12,"stats":[0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"7":458},"isBase":true}}}, +{"id":77115,"name":"Reflection of the Light","icon":"item_uncutmetagemb","type":12,"stats":[0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"4":458},"isBase":true}}}, +{"id":77116,"name":"Rotting Skull","icon":"inv_misc_bone_orcskull_01","type":12,"stats":[0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"6":458},"isBase":true}}}, +{"id":77117,"name":"Fire of the Deep","icon":"spell_fire_burnout","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"11":458},"isBase":true}}}, +{"id":77119,"name":"Bones of the Damned","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[446,0,730,0,0,308,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":446,"2":730,"5":308,"6":297,"22":3829},"isBase":true}}}, +{"id":77120,"name":"Chestplate of the Unshakable Titan","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[446,0,730,0,0,0,0,0,0,334,259,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":446,"2":730,"9":334,"10":259,"22":3829},"isBase":true}}}, +{"id":77121,"name":"Lightwarper Vestments","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,446,338,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"4":338,"6":255,"22":1538},"isBase":true}}}, +{"id":77122,"name":"Robes of Searing Shadow","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,730,446,0,255,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"5":255,"6":338,"22":1538},"isBase":true}}}, +{"id":77123,"name":"Shining Carapace of Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,730,446,327,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3829,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"4":327,"6":272,"22":3829},"isBase":true}}}, +{"id":77124,"name":"Dragonflayer Vest","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,446,730,0,0,0,276,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":446,"2":730,"6":276,"7":323,"22":2783},"isBase":true}}}, +{"id":77125,"name":"Ghostworld Chestguard","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,730,446,288,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"4":288,"6":317,"22":2783},"isBase":true}}}, +{"id":77126,"name":"Shadowbinder Chestguard","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,446,730,0,0,0,296,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":446,"2":730,"6":296,"7":312,"22":1979},"isBase":true}}}, +{"id":77127,"name":"Decaying Herbalist's Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,730,446,334,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":446,"4":334,"6":268,"22":1979},"isBase":true}}}, +{"id":77146,"name":"Soulgaze Cowl","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,730,426,280,0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":280,"11":308,"22":1250},"isBase":true}}}, +{"id":77147,"name":"Hood of Hidden Flesh","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,730,426,0,276,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"5":276,"6":306,"22":1250},"isBase":true}}}, +{"id":77148,"name":"Nocturnal Gaze","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,426,730,0,0,0,0,0,328,0,0,245,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"8":328,"11":245,"22":1608},"isBase":true}}}, +{"id":77149,"name":"Helmet of Perpetual Rebirth","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,730,426,319,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":319,"11":260,"22":1608},"isBase":true}}}, +{"id":77150,"name":"Zeherah's Dragonskull Crown","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,426,730,0,0,300,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"1":426,"2":730,"5":300,"11":288,"22":2261},"isBase":true}}}, +{"id":77151,"name":"Wolfdream Circlet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,730,426,332,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2261,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":332,"7":237,"22":2261},"isBase":true}}}, +{"id":77153,"name":"Glowing Wings of Hope","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,730,426,315,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":315,"6":260,"22":3111},"isBase":true}}}, +{"id":77155,"name":"Visage of Petrification","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[426,0,730,0,0,314,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":426,"2":730,"5":314,"7":265,"22":3111},"isBase":true}}}, +{"id":77156,"name":"Jaw of Repudiation","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[288,0,730,0,0,0,0,0,233,0,478,0,0,0,0,0,0,0,0,0,0,0,3111,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"0":288,"2":730,"8":233,"10":478,"22":3111},"isBase":true}}}, +{"id":77157,"name":"The Hands of Gilly","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,542,341,237,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":237,"11":225,"22":961},"isBase":true}}}, +{"id":77159,"name":"Clockwinder's Immaculate Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,542,341,0,245,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"5":245,"6":235,"22":961},"isBase":true}}}, +{"id":77160,"name":"Fungus-Born Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,542,341,247,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":247,"7":205,"22":1237},"isBase":true}}}, +{"id":77161,"name":"Lightfinger Handwraps","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,341,542,0,0,0,239,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1237,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"6":239,"7":213,"22":1237},"isBase":true}}}, +{"id":77162,"name":"Arrowflick Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,341,542,0,0,0,239,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"6":239,"11":221,"22":1739},"isBase":true}}}, +{"id":77163,"name":"Gloves of Ghostly Dreams","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,542,341,248,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":248,"7":207,"22":1739},"isBase":true}}}, +{"id":77164,"name":"Gleaming Grips of Mending","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,542,341,252,0,0,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":252,"11":197,"22":2393},"isBase":true}}}, +{"id":77165,"name":"Grimfist Crushers","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,0,219,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"7":219,"11":238,"22":2393},"isBase":true}}}, +{"id":77166,"name":"Gauntlets of Feathery Blows","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[341,0,542,0,0,0,0,0,171,0,267,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"8":171,"10":267,"22":2393},"isBase":true}}}, +{"id":77169,"name":"Silver Sabatons of Fury","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":216,"7":226,"22":2632},"isBase":true}}}, +{"id":77170,"name":"Kneebreaker Boots","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,226,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"6":226,"7":216,"22":2632},"isBase":true}}}, +{"id":77171,"name":"Bladeshatter Treads","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,216,226,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"9":216,"10":226,"22":2632},"isBase":true}}}, +{"id":77172,"name":"Boots of Fungoid Growth","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":216,"7":226,"22":1360},"isBase":true}}}, +{"id":77173,"name":"Rooftop Griptoes","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,321,542,0,0,0,216,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":216,"11":226,"22":1360},"isBase":true}}}, +{"id":77174,"name":"Sabatons of the Graceful Spirit","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":216,"7":226,"22":1913},"isBase":true}}}, +{"id":77175,"name":"Boneshard Boots","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,321,542,0,0,0,0,216,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"7":216,"11":226,"22":1913},"isBase":true}}}, +{"id":77176,"name":"Kavan's Forsaken Treads","icon":"inv_boots_robe_raidmage_k_01","type":10,"armorType":1,"stats":[0,0,542,321,0,216,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"5":216,"7":226,"22":1058},"isBase":true}}}, +{"id":77177,"name":"Splinterfoot Sandals","icon":"inv_boots_robe_raidpriest_k_01","type":10,"armorType":1,"stats":[0,0,542,321,216,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":216,"7":226,"22":1058},"isBase":true}}}, +{"id":77179,"name":"Tentacular Belt","icon":"inv_belt_robe_raidwarlock_k_01","type":8,"armorType":1,"stats":[0,0,542,321,0,0,235,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":235,"11":204,"22":865},"isBase":true}}}, +{"id":77180,"name":"Belt of Hidden Keys","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,321,542,0,0,0,0,181,0,0,0,248,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"7":181,"11":248,"22":1113},"isBase":true}}}, +{"id":77181,"name":"Belt of Universal Curing","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,321,218,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":218,"7":219,"22":1113},"isBase":true}}}, +{"id":77182,"name":"Cord of Dragon Sinew","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,321,542,0,0,0,205,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":205,"11":227,"22":1565},"isBase":true}}}, +{"id":77183,"name":"Girdle of Shamanic Fury","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,203,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":203,"11":226,"22":1565},"isBase":true}}}, +{"id":77184,"name":"Blinding Girdle of Truth","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,321,183,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":183,"11":235,"22":2154},"isBase":true}}}, +{"id":77185,"name":"Demonbone Waistguard","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,221,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"6":221,"11":221,"22":2154},"isBase":true}}}, +{"id":77186,"name":"Forgesmelter Waistplate","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,0,216,221,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"10":216,"11":221,"22":2154},"isBase":true}}}, +{"id":77187,"name":"Vestal's Irrepressible Girdle","icon":"inv_belt_robe_raidpriest_k_01","type":8,"armorType":1,"stats":[0,0,542,321,248,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":248,"6":181,"22":865},"isBase":true}}}, +{"id":77188,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,220,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"stats":{"1":220,"2":331},"isBase":true}}}, +{"id":77189,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,220,331,0,0,0,0,147,0,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":2006,"weaponDamageMax":3009,"weaponSpeed":1.8,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2006,"weaponDamageMax":3009,"stats":{"1":220,"2":331,"7":147,"11":147},"isBase":true}}}, +{"id":77190,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,772,514,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":978,"weaponDamageMin":2179,"weaponDamageMax":3269,"weaponSpeed":2.9,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":2179,"weaponDamageMax":3269,"stats":{"2":772,"3":514,"14":2946},"isBase":true}}}, +{"id":77191,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[514,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":978,"weaponDamageMin":5409,"weaponDamageMax":8115,"weaponSpeed":3.6,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5409,"weaponDamageMax":8115,"stats":{"0":514,"2":772},"isBase":true}}}, +{"id":77192,"name":"Ruinblaster Shotgun","icon":"inv_firearm_2h_rifle_deathwingraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,486,730,0,0,300,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":3730,"weaponDamageMax":6928,"weaponSpeed":3,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":3730,"weaponDamageMax":6928,"stats":{"1":486,"2":730,"5":300,"6":339},"isBase":true}}}, +{"id":77193,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[220,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"stats":{"0":220,"2":331},"isBase":true}}}, +{"id":77194,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,514,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"stats":{"1":514,"2":772,"23":700},"isBase":true}}}, +{"id":77195,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,331,220,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":731,"weaponDamageMax":1358,"weaponSpeed":1.5,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":731,"weaponDamageMax":1358,"stats":{"2":331,"3":220,"14":2945},"isBase":true}}}, +{"id":77196,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,331,220,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1072,"weaponDamageMax":1992,"weaponSpeed":2.2,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":1072,"weaponDamageMax":1992,"stats":{"2":331,"3":220,"14":2945},"isBase":true}}}, +{"id":77197,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"isBase":true}}}, +{"id":77198,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"isBase":true}}}, +{"id":77199,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"3":323},"isBase":true}}}, +{"id":77200,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"isBase":true}}}, +{"id":77201,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"isBase":true}}}, +{"id":77202,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":458},"isBase":true}}}, +{"id":77203,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"3":458},"isBase":true}}}, +{"id":77204,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"3":458},"isBase":true}}}, +{"id":77205,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":458},"isBase":true}}}, +{"id":77206,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":687},"isBase":true}}}, +{"id":77207,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":458},"isBase":true}}}, +{"id":77208,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"3":458},"isBase":true}}}, +{"id":77209,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"3":458},"isBase":true}}}, +{"id":77210,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":458},"isBase":true}}}, +{"id":77211,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":687},"isBase":true}}}, +{"id":77212,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[188,0,312,0,0,0,139,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"weaponSpeed":2.6,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"stats":{"0":188,"2":312,"6":139,"11":119},"isBase":true}}}, +{"id":77214,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,312,188,0,0,123,135,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":1014,"weaponDamageMax":1884,"weaponSpeed":2.2,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":1014,"weaponDamageMax":1884,"stats":{"2":312,"3":188,"6":123,"7":135,"14":2783},"isBase":true}}}, +{"id":77215,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,486,730,0,0,0,370,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":4121,"weaponDamageMax":6182,"weaponSpeed":2.9,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":4121,"weaponDamageMax":6182,"stats":{"1":486,"2":730,"6":370,"7":246},"isBase":true}}}, +{"id":77216,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,312,208,0,0,0,129,0,0,0,145,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":783,"weaponDamageMax":1456,"weaponSpeed":1.7,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":783,"weaponDamageMax":1456,"stats":{"2":312,"3":208,"7":129,"11":145,"14":2783},"isBase":true}}}, +{"id":77217,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[466,0,730,0,0,0,319,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":5115,"weaponDamageMax":7674,"weaponSpeed":3.6,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":5115,"weaponDamageMax":7674,"stats":{"0":466,"2":730,"6":319,"11":306},"isBase":true}}}, +{"id":77218,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,466,730,0,0,234,0,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":3836,"weaponDamageMax":5755,"weaponSpeed":2.7,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":3836,"weaponDamageMax":5755,"stats":{"1":466,"2":730,"5":234,"11":362},"isBase":true}}}, +{"id":77219,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,312,188,141,0,0,111,0,0,0,0,0,0,2783,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":829,"weaponDamageMax":1541,"stats":{"2":312,"3":188,"4":141,"7":111,"14":2783},"isBase":true}}}, +{"id":77220,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,188,312,0,0,0,0,138,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"stats":{"1":188,"2":312,"7":138,"11":117},"isBase":true}}}, +{"id":77221,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,0,300,0,319,0,0,0,0,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":2131,"weaponDamageMax":3197,"weaponSpeed":3,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":2131,"weaponDamageMax":3197,"stats":{"2":730,"3":466,"5":300,"7":319,"14":2786},"isBase":true}}}, +{"id":77223,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,188,312,0,0,0,0,111,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"weaponSpeed":2.6,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"stats":{"1":188,"2":312,"7":111,"8":141},"isBase":true}}}, +{"id":77224,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[466,0,730,0,0,0,319,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":5115,"weaponDamageMax":7674,"weaponSpeed":3.6,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":5115,"weaponDamageMax":7674,"stats":{"0":466,"2":730,"6":319,"7":306},"isBase":true}}}, +{"id":77225,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,730,466,350,0,0,0,0,0,0,246,0,0,2786,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":2273,"weaponDamageMax":3411,"weaponSpeed":3.2,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":925,"weaponDamageMin":2273,"weaponDamageMax":3411,"stats":{"2":730,"3":466,"4":350,"11":246,"14":2786},"isBase":true}}}, +{"id":77226,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[231,0,406,0,0,0,0,0,0,153,0,169,0,0,0,0,0,0,0,0,0,0,12525,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":231,"2":406,"9":153,"11":169,"22":12525},"isBase":true}}}, +{"id":77227,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,406,251,171,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":171,"7":171,"22":12525},"isBase":true}}}, +{"id":77228,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,406,251,0,144,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"5":144,"6":186},"isBase":true}}}, +{"id":77229,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,406,251,148,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":148,"7":184},"isBase":true}}}, +{"id":77230,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[251,0,406,0,0,0,0,170,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"7":170,"11":171},"isBase":true}}}, +{"id":77231,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,251,406,0,0,0,0,0,162,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"8":162,"11":176},"isBase":true}}}, +{"id":77232,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[251,0,406,0,0,0,0,0,0,0,157,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"10":157,"11":179},"isBase":true}}}, +{"id":77234,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,542,321,0,0,217,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":217,"7":225,"22":1058},"isBase":true}}}, +{"id":77235,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,573,342,243,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":243,"7":227,"22":2435},"isBase":true}}}, +{"id":77236,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[342,0,573,0,0,0,225,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,2922,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":225,"11":225,"22":2922},"isBase":true}}}, +{"id":77237,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,573,342,247,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1599,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":247,"7":223,"22":1599},"isBase":true}}}, +{"id":77238,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,342,573,0,0,0,0,275,168,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"1":342,"2":573,"7":275,"8":168,"22":1396},"isBase":true}}}, +{"id":77239,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,229,211,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"9":229,"10":211,"22":2154},"isBase":true}}}, +{"id":77240,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,251,406,0,0,0,186,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"6":186,"7":146,"22":866},"isBase":true}}}, +{"id":77241,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,321,542,0,0,0,253,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":253,"7":172,"22":1565},"isBase":true}}}, +{"id":77242,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,542,321,0,0,0,229,0,0,0,213,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"7":229,"11":213,"22":2087},"isBase":true}}}, +{"id":77243,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,542,321,225,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":225,"6":217,"22":1360},"isBase":true}}}, +{"id":77244,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,321,224,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":224,"7":213,"22":2154},"isBase":true}}}, +{"id":77245,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,251,173,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":173,"7":166},"isBase":true}}}, +{"id":77246,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,0,0,0,0,208,227,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"10":208,"11":227,"22":2632},"isBase":true}}}, +{"id":77247,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,251,406,0,0,0,159,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"6":159,"11":175,"22":1218},"isBase":true}}}, +{"id":77248,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,321,211,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":211,"11":230,"22":1113},"isBase":true}}}, +{"id":77249,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,406,251,0,0,0,176,0,0,0,162,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"7":176,"11":162,"22":673},"isBase":true}}}, +{"id":77250,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[321,0,542,0,0,0,0,191,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"7":191,"11":238,"22":2154},"isBase":true}}}, +{"id":77251,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,321,542,0,0,0,222,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":222,"7":213,"22":1913},"isBase":true}}}, +{"id":77252,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,542,321,181,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1913,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":181,"11":247,"22":1913},"isBase":true}}}, +{"id":77253,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,251,154,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":154,"7":182,"22":1675},"isBase":true}}}, +{"id":77254,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,321,542,0,0,192,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"5":192,"7":240,"22":1360},"isBase":true}}}, +{"id":77255,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,542,321,0,0,216,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":216,"7":225,"22":865},"isBase":true}}}, +{"id":77257,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,251,175,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":175,"11":164,"22":1218},"isBase":true}}}, +{"id":77258,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[251,0,406,0,0,0,0,0,0,158,0,174,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"9":158,"11":174,"22":1675},"isBase":true}}}, +{"id":77259,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[321,0,542,0,0,0,208,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":321,"2":542,"6":208,"11":227,"22":2632},"isBase":true}}}, +{"id":77260,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,321,542,0,0,0,211,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":211,"8":231,"22":1113},"isBase":true}}}, +{"id":77261,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,251,179,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"4":179,"11":157,"22":866},"isBase":true}}}, +{"id":77262,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,406,271,181,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":181,"7":181},"isBase":true}}}, +{"id":77263,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,730,426,298,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":925,"stats":{"2":730,"3":426,"4":298,"7":290,"22":1538},"isBase":true}}}, +{"id":77265,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,542,321,223,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2632,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":223,"6":214,"22":2632},"isBase":true}}}, +{"id":77266,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,0,0,221,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":221,"7":216,"22":1565},"isBase":true}}}, +{"id":77267,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,542,321,0,0,239,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"6":239,"7":203,"22":1154},"isBase":true}}}, +{"id":77268,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[255,0,542,0,0,0,0,0,0,361,163,0,0,0,0,0,0,0,0,0,0,0,2871,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":255,"2":542,"9":361,"10":163,"22":2871},"isBase":true}}}, +{"id":77269,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,321,542,0,0,0,253,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"6":253,"7":172,"22":1739},"isBase":true}}}, +{"id":77270,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[251,0,406,0,0,0,194,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"6":194,"11":138,"22":1675},"isBase":true}}}, +{"id":77271,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,321,542,0,0,0,0,231,0,0,0,210,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":321,"2":542,"7":231,"11":210,"22":1484},"isBase":true}}}, +{"id":77316,"name":"Flashing Bracers of Warmth","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,406,271,167,0,0,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":167,"11":189,"22":1675},"isBase":true}}}, +{"id":77317,"name":"Heartcrusher Wristplates","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[271,0,406,0,0,0,137,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":271,"2":406,"6":137,"7":206,"22":1675},"isBase":true}}}, +{"id":77318,"name":"Bracers of Unrelenting Excellence","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[271,0,406,0,0,0,0,0,0,154,196,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":271,"2":406,"9":154,"10":196,"22":1675},"isBase":true}}}, +{"id":77319,"name":"Bracers of the Spectral Wolf","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,406,271,196,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":196,"6":154,"22":1218},"isBase":true}}}, +{"id":77320,"name":"Luminescent Bracers","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,406,271,181,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":181,"6":181,"22":866},"isBase":true}}}, +{"id":77321,"name":"Dragonbelly Bracers","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,271,406,0,0,189,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":271,"2":406,"5":189,"11":167,"22":1218},"isBase":true}}}, +{"id":77322,"name":"Bracers of Manifold Pockets","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,271,406,0,0,0,176,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":271,"2":406,"6":176,"11":183,"22":866},"isBase":true}}}, +{"id":77323,"name":"Bracers of the Black Dream","icon":"inv_bracer_robe_raidpriest_k_01","type":6,"armorType":1,"stats":[0,0,406,271,158,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"4":158,"6":194,"22":673},"isBase":true}}}, +{"id":77324,"name":"Chronoboost Bracers","icon":"inv_bracer_robe_raidmage_k_01","type":6,"armorType":1,"stats":[0,0,406,271,0,189,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":271,"5":189,"11":167,"22":673},"isBase":true}}}, +{"id":77527,"name":"Big Game Hunter","icon":"inv_firearm_2h_rifle_pvpcataclysms3_c_01","type":14,"rangedWeaponType":3,"stats":[0,449,703,0,0,0,321,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3354,"weaponDamageMax":6229,"weaponSpeed":2.8,"ilvl":393,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":3354,"weaponDamageMax":6229,"stats":{"1":449,"2":703,"6":321,"7":283},"isBase":true}}}, +{"id":77528,"name":"Long-Range Trillium Sniper","icon":"inv_weapon_rifle_42","type":14,"rangedWeaponType":3,"stats":[0,717,1195,0,0,435,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":5704,"weaponDamageMax":10595,"weaponSpeed":2.8,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":5704,"weaponDamageMax":10595,"stats":{"1":717,"2":1195,"5":435,"8":546},"isBase":true}}}, +{"id":77530,"name":"Ghost Iron Dragonling","icon":"inv_misc_head_dragon_bronze","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[9,9,9],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"isBase":true}}}, +{"id":77533,"name":"Lightweight Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":1,"stats":[0,0,1641,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":855,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"22":1757},"upgradeStep":1}}}, +{"id":77534,"name":"Agile Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":2,"stats":[0,934,1641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1522,"22":2206}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"22":2236},"upgradeStep":1}}}, +{"id":77535,"name":"Camouflage Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":2,"stats":[0,0,1641,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":855,"22":2206}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"22":2236},"upgradeStep":1}}}, +{"id":77536,"name":"Deadly Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":3,"stats":[0,934,1641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1522,"22":3069}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"22":3112},"upgradeStep":1}}}, +{"id":77537,"name":"Energized Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":3,"stats":[0,0,1641,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":855,"22":3069}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"22":3112},"upgradeStep":1}}}, +{"id":77538,"name":"Specialized Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":4,"stats":[0,0,1641,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"22":3959}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":855,"22":4191}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"22":4250},"upgradeStep":1}}}, +{"id":77539,"name":"Reinforced Retinal Armor","icon":"inv_helmet_goggles_pandariatradeskill_d_01","type":1,"armorType":4,"stats":[934,0,1641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1522,"22":4191}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1581,"22":4250},"upgradeStep":1}}}, +{"id":77938,"name":"Dragonfire Orb","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,406,251,0,0,0,157,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"7":157,"11":179},"isBase":true}}}, +{"id":77945,"name":"Fear","icon":"inv_knife_1h_deathwingraid_e_01","type":13,"weaponType":2,"handType":1,"stats":[0,188,312,0,0,100,108,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Jaws of Retribution","setId":1089,"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"stats":{"1":188,"2":312,"5":100,"6":108,"7":102},"isBase":true}}}, +{"id":77946,"name":"Vengeance","icon":"inv_knife_1h_deathwingraid_e_01","type":13,"weaponType":2,"handType":3,"stats":[0,188,312,0,0,0,0,106,101,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"weaponSpeed":1.8,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Jaws of Retribution","setId":1089,"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":1659,"weaponDamageMax":3083,"stats":{"1":188,"2":312,"7":106,"8":101,"11":102},"isBase":true}}}, +{"id":77947,"name":"The Sleeper","icon":"inv_knife_1h_deathwingraid_e_02","type":13,"weaponType":2,"handType":1,"stats":[0,207,340,0,0,109,117,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":431,"weaponDamageMin":1805,"weaponDamageMax":3352,"weaponSpeed":1.8,"ilvl":406,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Maw of Oblivion","setId":1088,"scalingOptions":{"406":{"randPropPoints":431,"weaponDamageMin":1805,"weaponDamageMax":3352,"stats":{"1":207,"2":340,"5":109,"6":117,"7":111},"isBase":true}}}, +{"id":77948,"name":"The Dreamer","icon":"inv_knife_1h_deathwingraid_e_02","type":13,"weaponType":2,"handType":3,"stats":[0,207,340,0,0,0,0,115,110,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":431,"weaponDamageMin":1805,"weaponDamageMax":3352,"weaponSpeed":1.8,"ilvl":406,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Maw of Oblivion","setId":1088,"scalingOptions":{"406":{"randPropPoints":431,"weaponDamageMin":1805,"weaponDamageMax":3352,"stats":{"1":207,"2":340,"7":115,"8":110,"11":112},"isBase":true}}}, +{"id":77949,"name":"Golad, Twilight of Aspects","icon":"inv_knife_1h_deathwingraid_e_03","type":13,"weaponType":2,"handType":1,"stats":[0,229,373,0,0,121,129,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1981,"weaponDamageMax":3680,"weaponSpeed":1.8,"ilvl":416,"phase":1,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fangs of the Father","setId":1087,"scalingOptions":{"416":{"weaponDamageMin":1981,"weaponDamageMax":3680,"stats":{"1":229,"2":373,"5":121,"6":129,"7":123},"isBase":true}}}, +{"id":77950,"name":"Tiriosh, Nightmare of Ages","icon":"inv_knife_1h_deathwingraid_e_03","type":13,"weaponType":2,"handType":3,"stats":[0,229,373,0,0,0,0,127,122,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1981,"weaponDamageMax":3680,"weaponSpeed":1.8,"ilvl":416,"phase":1,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fangs of the Father","setId":1087,"scalingOptions":{"416":{"weaponDamageMin":1981,"weaponDamageMax":3680,"stats":{"1":229,"2":373,"7":127,"8":122,"11":124},"isBase":true}}}, +{"id":77969,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"3":406},"isBase":true}}}, +{"id":77970,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":609},"isBase":true}}}, +{"id":77971,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"3":406},"isBase":true}}}, +{"id":77972,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":406},"isBase":true}}}, +{"id":77973,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":406},"isBase":true}}}, +{"id":77974,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"isBase":true}}}, +{"id":77975,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"isBase":true}}}, +{"id":77976,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"3":286},"isBase":true}}}, +{"id":77977,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"isBase":true}}}, +{"id":77978,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"isBase":true}}}, +{"id":77979,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":406},"isBase":true}}}, +{"id":77980,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"3":406},"isBase":true}}}, +{"id":77981,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"3":406},"isBase":true}}}, +{"id":77982,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":406},"isBase":true}}}, +{"id":77983,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":609},"isBase":true}}}, +{"id":77989,"name":"Seal of the Seven Signs","icon":"inv_relics_runestone","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"3":517},"isBase":true}}}, +{"id":77990,"name":"Soulshifter Vortex","icon":"ability_druid_cyclone","type":12,"stats":[0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":775},"isBase":true}}}, +{"id":77991,"name":"Insignia of the Corrupted Mind","icon":"inv_bijou_purple","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"3":517},"isBase":true}}}, +{"id":77992,"name":"Creche of the Final Dragon","icon":"creatureportrait_twilightshammer_dragonegg_01","type":12,"stats":[517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":517},"isBase":true}}}, +{"id":77993,"name":"Starcatcher Compass","icon":"inv_relics_sundial","type":12,"stats":[0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":517},"isBase":true}}}, +{"id":77994,"name":"Wrath of Unchaining","icon":"inv_misc_coin_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"isBase":true}}}, +{"id":77995,"name":"Will of Unbinding","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"isBase":true}}}, +{"id":77996,"name":"Heart of Unliving","icon":"inv_misc_qirajicrystal_05","type":12,"stats":[0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"3":364},"isBase":true}}}, +{"id":77997,"name":"Eye of Unmaking","icon":"spell_shadow_soulgem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"isBase":true}}}, +{"id":77998,"name":"Resolve of Undying","icon":"inv_stone_sharpeningstone_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"isBase":true}}}, +{"id":77999,"name":"Vial of Shadows","icon":"inv_potion_85","type":12,"stats":[0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":517},"isBase":true}}}, +{"id":78000,"name":"Cunning of the Cruel","icon":"inv_misc_coin_09","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"3":517},"isBase":true}}}, +{"id":78001,"name":"Windward Heart","icon":"inv_elemental_crystal_air","type":12,"stats":[0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"3":517},"isBase":true}}}, +{"id":78002,"name":"Bone-Link Fetish","icon":"inv_misc_coin_12","type":12,"stats":[517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":517},"isBase":true}}}, +{"id":78003,"name":"Indomitable Pride","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":775},"isBase":true}}}, +{"id":78011,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,251,406,0,0,0,179,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"1":251,"2":406,"6":179,"7":157},"isBase":true}}}, +{"id":78012,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,406,251,0,0,0,173,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"2":406,"3":251,"7":173,"11":166},"isBase":true}}}, +{"id":78013,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[251,0,406,0,0,125,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":515,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"397":{"randPropPoints":515,"stats":{"0":251,"2":406,"5":125,"11":198},"isBase":true}}}, +{"id":78357,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,573,342,0,0,207,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":207,"7":257,"22":992},"isBase":true}}}, +{"id":78359,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,161,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":978,"weaponDamageMin":3944,"weaponDamageMax":7326,"weaponSpeed":3,"ilvl":403,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":3944,"weaponDamageMax":7326,"stats":{"1":161,"2":242},"isBase":true}}}, +{"id":78361,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,611,368,255,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":255,"6":243,"22":2734},"isBase":true}}}, +{"id":78362,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,368,611,0,0,0,287,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":287,"7":197,"22":1820},"isBase":true}}}, +{"id":78363,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,353,215,0,0,141,153,0,0,0,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":1145,"weaponDamageMax":2127,"weaponSpeed":2.2,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":1145,"weaponDamageMax":2127,"stats":{"2":353,"3":215,"6":141,"7":153,"14":3142},"isBase":true}}}, +{"id":78364,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,459,306,204,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"4":204,"7":204},"isBase":true}}}, +{"id":78365,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,340,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":340,"7":332,"22":1644},"isBase":true}}}, +{"id":78366,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,270,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":270,"7":234,"22":1233},"isBase":true}}}, +{"id":78367,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[290,0,611,0,0,0,0,0,0,408,186,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":290,"2":611,"9":408,"10":186,"22":2983},"isBase":true}}}, +{"id":78368,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,0,262,0,0,0,241,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"7":262,"11":241,"22":1570},"isBase":true}}}, +{"id":78370,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,611,368,0,0,250,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":250,"7":248,"22":1638},"isBase":true}}}, +{"id":78371,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[215,0,353,0,0,0,157,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":215,"2":353,"6":157,"11":137},"isBase":true}}}, +{"id":78372,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,459,286,203,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":203,"11":179,"22":916},"isBase":true}}}, +{"id":78373,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[286,0,459,0,0,0,219,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":286,"2":459,"6":219,"11":159,"22":1740},"isBase":true}}}, +{"id":78374,"name":"Razor Saronite Chip","icon":"inv_thrown_1h_deathwingraid_d_01","type":14,"rangedWeaponType":5,"stats":[0,135,203,0,0,93,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":257,"weaponDamageMin":1872,"weaponDamageMax":3478,"weaponSpeed":1.7,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"scalingOptions":{"384":{"randPropPoints":257,"weaponDamageMin":1872,"weaponDamageMax":3478,"stats":{"1":135,"2":203,"5":93,"7":86},"isBase":true}}}, +{"id":78375,"name":"Underdweller's Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,0,204,0,0,0,183,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"7":204,"11":183,"22":1402},"isBase":true}}}, +{"id":78376,"name":"Sporebeard Gauntlets","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,280,480,0,0,0,223,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":223,"7":149,"22":1662},"isBase":true}}}, +{"id":78377,"name":"Rockhide Bracers","icon":"inv_bracer_plate_raiddeathknight_k_01","type":6,"armorType":4,"stats":[220,0,360,0,0,0,172,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":220,"2":360,"6":172,"11":120,"22":1613},"isBase":true}}}, +{"id":78378,"name":"Brackenshell Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[223,0,480,0,0,0,0,0,0,320,142,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":223,"2":480,"9":320,"10":142,"22":2764},"isBase":true}}}, +{"id":78379,"name":"Hand of Morchok","icon":"inv_axe_1h_deathwingraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[165,0,277,0,0,0,123,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":165,"2":277,"6":123,"11":103},"isBase":true}}}, +{"id":78380,"name":"Robe of Glowing Stone","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,261,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":261,"7":253,"22":1436},"isBase":true}}}, +{"id":78381,"name":"Mosswrought Shoulderguards","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,212,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":212,"7":176,"22":1077},"isBase":true}}}, +{"id":78382,"name":"Petrified Fungal Heart","icon":"inv_misc_necklace15","type":2,"stats":[0,0,360,240,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":160,"7":160},"isBase":true}}}, +{"id":78383,"name":"Vagaries of Time","icon":"inv_mace_1h_deathwingraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,277,165,0,0,107,119,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":898,"weaponDamageMax":1669,"weaponSpeed":2.2,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":898,"weaponDamageMax":1669,"stats":{"2":277,"3":165,"6":107,"7":119,"14":2467},"isBase":true}}}, +{"id":78384,"name":"Mycosynth Wristguards","icon":"inv_bracer_leather_raiddruid_k_01","type":6,"armorType":2,"stats":[0,0,360,220,157,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":157,"11":138,"22":818},"isBase":true}}}, +{"id":78385,"name":"Girdle of Shattered Stone","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,480,280,0,0,195,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":195,"7":188,"22":1496},"isBase":true}}}, +{"id":78386,"name":"Pillarfoot Greaves","icon":"inv_boots_plate_raidpaladin_k_01","type":10,"armorType":4,"stats":[0,0,480,280,195,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":195,"6":188,"22":2534},"isBase":true}}}, +{"id":78387,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,549,824,0,0,0,417,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4651,"weaponDamageMax":6978,"weaponSpeed":2.9,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4651,"weaponDamageMax":6978,"stats":{"1":549,"2":824,"6":417,"7":278},"isBase":true}}}, +{"id":78388,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,368,611,0,0,0,242,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":242,"8":262,"22":1177},"isBase":true}}}, +{"id":78389,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[368,0,611,0,0,0,237,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":237,"11":259,"22":2734},"isBase":true}}}, +{"id":78390,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[286,0,459,0,0,0,0,0,0,179,0,199,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":286,"2":459,"9":179,"11":199,"22":1740},"isBase":true}}}, +{"id":78391,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,611,368,0,0,247,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":247,"7":256,"22":925},"isBase":true}}}, +{"id":78392,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,353,235,0,0,0,145,0,0,0,164,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":884,"weaponDamageMax":1643,"weaponSpeed":1.7,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":884,"weaponDamageMax":1643,"stats":{"2":353,"3":235,"7":145,"11":164,"14":3142},"isBase":true}}}, +{"id":78393,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,459,286,199,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":199,"11":187,"22":1274},"isBase":true}}}, +{"id":78394,"name":"Horrifying Horn Arbalest","icon":"inv_weapon_crossbow_41","type":14,"rangedWeaponType":2,"stats":[0,431,646,0,0,0,327,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3650,"weaponDamageMax":5476,"weaponSpeed":2.9,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3650,"weaponDamageMax":5476,"stats":{"1":431,"2":646,"6":327,"7":218},"isBase":true}}}, +{"id":78395,"name":"Belt of Flayed Skin","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,280,480,0,0,0,184,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":184,"8":204,"22":1051},"isBase":true}}}, +{"id":78396,"name":"Treads of Crushed Flesh","icon":"inv_boots_plate_raiddeathknight_k_01","type":10,"armorType":4,"stats":[280,0,480,0,0,0,183,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"6":183,"11":198,"22":2534},"isBase":true}}}, +{"id":78397,"name":"Graveheart Bracers","icon":"inv_bracer_plate_raidwarrior_k_01","type":6,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,140,0,152,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":220,"2":360,"9":140,"11":152,"22":1613},"isBase":true}}}, +{"id":78398,"name":"Cord of the Slain Champion","icon":"inv_belt_robe_raidmage_k_01","type":8,"armorType":1,"stats":[0,0,480,280,0,0,189,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":189,"7":198,"22":808},"isBase":true}}}, +{"id":78399,"name":"Finger of Zon'ozz","icon":"inv_wand_1h_deathwingraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,203,135,0,0,0,83,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":694,"weaponDamageMax":1290,"weaponSpeed":1.7,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":694,"weaponDamageMax":1290,"stats":{"2":203,"3":135,"7":83,"11":94},"isBase":true}}}, +{"id":78400,"name":"Grotesquely Writhing Bracers","icon":"inv_bracer_mail_raidshaman_k_01","type":6,"armorType":3,"stats":[0,0,360,220,154,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warlord Zon'ozz"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":154,"11":144,"22":1163},"isBase":true}}}, +{"id":78401,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,529,824,0,0,266,0,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4330,"weaponDamageMax":6496,"weaponSpeed":2.7,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4330,"weaponDamageMax":6496,"stats":{"1":529,"2":824,"5":266,"11":409},"isBase":true}}}, +{"id":78402,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,368,611,0,0,220,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":220,"7":273,"22":1439},"isBase":true}}}, +{"id":78403,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[529,0,824,0,0,0,362,0,0,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"0":529,"2":824,"6":362,"11":347},"isBase":true}}}, +{"id":78404,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,353,215,160,0,0,127,0,0,0,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":936,"weaponDamageMax":1740,"weaponSpeed":1.8,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":936,"weaponDamageMax":1740,"stats":{"2":353,"3":215,"4":160,"7":127,"14":3142},"isBase":true}}}, +{"id":78405,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,611,368,207,0,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":207,"11":280,"22":2002},"isBase":true}}}, +{"id":78406,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,459,286,176,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":176,"7":206,"22":1740},"isBase":true}}}, +{"id":78407,"name":"Spire of Coagulated Globules","icon":"inv_stave_2h_deathwingraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,411,646,0,0,206,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3399,"weaponDamageMax":5099,"weaponSpeed":2.7,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3399,"weaponDamageMax":5099,"stats":{"1":411,"2":646,"5":206,"11":319},"isBase":true}}}, +{"id":78408,"name":"Interrogator's Bloody Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,280,480,0,0,168,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"5":168,"7":211,"22":1285},"isBase":true}}}, +{"id":78409,"name":"Experimental Specimen Slicer","icon":"inv_axe_2h_deathwingraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[411,0,646,0,0,0,281,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":411,"2":646,"6":281,"11":270},"isBase":true}}}, +{"id":78410,"name":"Scalpel of Unrelenting Agony","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,277,165,124,0,0,97,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":735,"weaponDamageMax":1366,"weaponSpeed":1.8,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":735,"weaponDamageMax":1366,"stats":{"2":277,"3":165,"4":124,"7":97,"14":2467},"isBase":true}}}, +{"id":78411,"name":"Mindstrainer Treads","icon":"inv_boots_mail_raidshaman_k_01","type":10,"armorType":3,"stats":[0,0,480,280,157,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":157,"11":217,"22":1828},"isBase":true}}}, +{"id":78412,"name":"Heartblood Wristplates","icon":"inv_bracer_plate_raidpaladin_k_01","type":6,"armorType":4,"stats":[0,0,360,220,135,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Yor'sahj the Unsleeping"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":135,"7":160,"22":1613},"isBase":true}}}, +{"id":78413,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,286,459,0,0,0,203,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"1":286,"2":459,"6":203,"7":179},"isBase":true}}}, +{"id":78414,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,215,353,0,0,0,0,156,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":1873,"weaponDamageMax":3480,"weaponSpeed":1.8,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":1873,"weaponDamageMax":3480,"stats":{"1":215,"2":353,"7":156,"11":134},"isBase":true}}}, +{"id":78415,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,368,611,0,0,0,254,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":254,"7":242,"22":2002},"isBase":true}}}, +{"id":78416,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[368,0,611,0,0,0,0,218,0,0,0,271,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"7":218,"11":271,"22":2237},"isBase":true}}}, +{"id":78417,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,459,286,0,0,0,200,0,0,0,184,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"7":200,"11":184,"22":719},"isBase":true}}}, +{"id":78418,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,529,0,339,0,362,0,0,0,0,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":2406,"weaponDamageMax":3609,"weaponSpeed":3,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":2406,"weaponDamageMax":3609,"stats":{"2":824,"3":529,"5":339,"7":362,"14":3145},"isBase":true}}}, +{"id":78419,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,459,286,0,0,0,197,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"7":197,"11":189},"isBase":true}}}, +{"id":78420,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,611,368,242,0,0,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":242,"11":261,"22":1177},"isBase":true}}}, +{"id":78421,"name":"Signet of Grasping Mouths","icon":"inv_jewelry_ring_103","type":11,"stats":[0,220,360,0,0,0,157,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":220,"2":360,"6":157,"7":138},"isBase":true}}}, +{"id":78422,"name":"Electrowing Dagger","icon":"inv_knife_1h_deathwingraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,165,277,0,0,0,0,122,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1143,"weaponDamageMax":2124,"weaponSpeed":1.4,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1143,"weaponDamageMax":2124,"stats":{"1":165,"2":277,"7":122,"11":102},"isBase":true}}}, +{"id":78423,"name":"Treads of Dormant Dreams","icon":"inv_boots_mail_raidhunter_k_01","type":10,"armorType":3,"stats":[0,280,480,0,0,0,193,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":193,"7":188,"22":1828},"isBase":true}}}, +{"id":78424,"name":"Runescriven Demon Collar","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[280,0,480,0,0,0,0,167,0,0,0,209,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"7":167,"11":209,"22":2073},"isBase":true}}}, +{"id":78425,"name":"Bracers of the Banished","icon":"inv_bracer_robe_raidwarlock_k_01","type":6,"armorType":1,"stats":[0,0,360,220,0,0,0,155,0,0,0,142,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"7":155,"11":142,"22":628},"isBase":true}}}, +{"id":78426,"name":"Lightning Rod","icon":"inv_stave_2h_deathwingraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,0,266,0,280,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":1888,"weaponDamageMax":2833,"weaponSpeed":3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":1888,"weaponDamageMax":2833,"stats":{"2":646,"3":411,"5":266,"7":280,"14":2467},"isBase":true}}}, +{"id":78427,"name":"Ring of the Riven","icon":"inv_jewelry_ring_102","type":11,"stats":[0,0,360,220,0,0,0,152,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,3,4,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"7":152,"11":146},"isBase":true}}}, +{"id":78428,"name":"Girdle of the Grotesque","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,480,280,184,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Hagara the Stormbinder"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":184,"11":203,"22":1051},"isBase":true}}}, +{"id":78429,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,215,353,0,0,0,0,127,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":215,"2":353,"7":127,"8":160},"isBase":true}}}, +{"id":78430,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,286,459,0,0,0,180,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"1":286,"2":459,"6":180,"11":200,"22":1274},"isBase":true}}}, +{"id":78431,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,0,237,259,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"10":237,"11":259,"22":2734},"isBase":true}}}, +{"id":78432,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[286,0,459,0,0,143,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":286,"2":459,"5":143,"11":225},"isBase":true}}}, +{"id":78433,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,286,197,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":197,"7":189},"isBase":true}}}, +{"id":78434,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,611,368,256,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":256,"6":248,"22":1439},"isBase":true}}}, +{"id":78435,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,0,0,0,260,0,0,0,244,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"7":260,"11":244,"22":2184},"isBase":true}}}, +{"id":78436,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,611,368,255,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":255,"7":244,"22":2237},"isBase":true}}}, +{"id":78437,"name":"Morningstar of Heroic Will","icon":"inv_mace_1h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,165,277,0,0,0,0,97,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":165,"2":277,"7":97,"8":124},"isBase":true}}}, +{"id":78438,"name":"Bracers of Looming Darkness","icon":"inv_bracer_mail_raidhunter_k_01","type":6,"armorType":3,"stats":[0,220,360,0,0,0,140,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":220,"2":360,"6":140,"11":153,"22":1163},"isBase":true}}}, +{"id":78439,"name":"Stillheart Warboots","icon":"inv_boots_plate_raidwarrior_k_01","type":10,"armorType":4,"stats":[280,0,480,0,0,0,0,0,0,0,183,198,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"10":183,"11":198,"22":2534},"isBase":true}}}, +{"id":78440,"name":"Curled Twilight Claw","icon":"inv_jewelry_ring_24","type":11,"stats":[220,0,360,0,0,109,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":220,"2":360,"5":109,"11":174},"isBase":true}}}, +{"id":78441,"name":"Ledger of Revolting Rituals","icon":"inv_offhand_1h_deathwingraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,360,220,152,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,5],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":152,"7":146},"isBase":true}}}, +{"id":78442,"name":"Treads of Sordid Screams","icon":"inv_boot_leather_raiddruid_k_01","type":10,"armorType":2,"stats":[0,0,480,280,198,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":198,"6":190,"22":1285},"isBase":true}}}, +{"id":78443,"name":"Imperfect Specimens 27 and 28","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,0,0,0,202,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"7":202,"11":186,"22":1994},"isBase":true}}}, +{"id":78444,"name":"Dragonfracture Belt","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,480,280,197,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Ultraxion"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":197,"7":186,"22":2073},"isBase":true}}}, +{"id":78445,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[529,0,824,0,0,0,362,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"weaponSpeed":3.6,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":5774,"weaponDamageMax":8662,"stats":{"0":529,"2":824,"6":362,"7":347},"isBase":true}}}, +{"id":78446,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,286,459,0,0,0,211,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"1":286,"2":459,"6":211,"7":167,"22":916},"isBase":true}}}, +{"id":78447,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,368,611,0,0,0,287,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":287,"7":197,"22":1638},"isBase":true}}}, +{"id":78448,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[266,0,459,0,0,0,0,0,0,176,0,192,0,0,0,0,0,0,0,0,0,0,12756,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":266,"2":459,"9":176,"11":192,"22":12756},"isBase":true}}}, +{"id":78449,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,611,368,0,0,248,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":248,"7":256,"22":1130},"isBase":true}}}, +{"id":78450,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,459,286,194,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12756,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":194,"7":194,"22":12756},"isBase":true}}}, +{"id":78451,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,529,397,0,0,0,0,0,0,278,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":2566,"weaponDamageMax":3850,"weaponSpeed":3.2,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":2566,"weaponDamageMax":3850,"stats":{"2":824,"3":529,"4":397,"11":278,"14":3145},"isBase":true}}}, +{"id":78452,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[368,0,611,0,0,0,0,0,0,260,241,0,0,0,0,0,0,0,0,0,0,0,2237,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"9":260,"10":241,"22":2237},"isBase":true}}}, +{"id":78453,"name":"Ataraxis, Cudgel of the Warmaster","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[411,0,646,0,0,0,281,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":411,"2":646,"6":281,"7":270},"isBase":true}}}, +{"id":78454,"name":"Shadow Wing Armbands","icon":"inv_bracer_leather_raidrogue_k_01","type":6,"armorType":2,"stats":[0,220,360,0,0,0,164,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":220,"2":360,"6":164,"7":128,"22":818},"isBase":true}}}, +{"id":78455,"name":"Belt of the Beloved Companion","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,280,480,0,0,0,223,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":223,"7":149,"22":1496},"isBase":true}}}, +{"id":78456,"name":"Blackhorn's Mighty Bulwark","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[200,0,360,0,0,0,0,0,0,132,0,148,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":200,"2":360,"9":132,"11":148,"22":12302},"isBase":true}}}, +{"id":78457,"name":"Janglespur Jackboots","icon":"inv_boots_robe_raidwarlock_k_01","type":10,"armorType":1,"stats":[0,0,480,280,0,0,190,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":190,"7":198,"22":988},"isBase":true}}}, +{"id":78458,"name":"Timepiece of the Bronze Flight","icon":"inv_shield_deathwingraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,220,150,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":150,"7":150,"22":12302},"isBase":true}}}, +{"id":78459,"name":"Visage of the Destroyer","icon":"inv_stave_2h_deathwingraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,411,307,0,0,0,0,0,0,218,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2014,"weaponDamageMax":3021,"weaponSpeed":3.2,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2014,"weaponDamageMax":3021,"stats":{"2":646,"3":411,"4":307,"11":218,"14":2467},"isBase":true}}}, +{"id":78460,"name":"Goriona's Collar","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[280,0,480,0,0,0,0,0,0,201,184,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Warmaster Blackhorn"}}],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"9":201,"10":184,"22":2073},"isBase":true}}}, +{"id":78461,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,647,391,0,0,238,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"2":647,"3":391,"6":238,"7":291,"22":1055},"isBase":true}}}, +{"id":78462,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,391,647,0,0,0,0,313,193,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"1":391,"2":647,"7":313,"8":193,"22":1478},"isBase":true}}}, +{"id":78463,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,647,391,279,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"2":647,"3":391,"4":279,"7":255,"22":1682},"isBase":true}}}, +{"id":78464,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,647,391,275,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2553,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"2":647,"3":391,"4":275,"7":259,"22":2553},"isBase":true}}}, +{"id":78465,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[391,0,647,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":820,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"0":391,"2":647,"6":257,"11":257,"22":3063},"isBase":true}}}, +{"id":78466,"name":"Gloves of Liquid Smoke","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,508,299,0,0,180,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":299,"6":180,"7":227,"22":927},"isBase":true}}}, +{"id":78467,"name":"Molten Blood Footpads","icon":"inv_boots_leather_raidrogue_k_01","type":10,"armorType":2,"stats":[0,299,508,0,0,0,0,242,147,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"1":299,"2":508,"7":242,"8":147,"22":1319},"isBase":true}}}, +{"id":78468,"name":"Belt of Shattered Elementium","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,508,299,218,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":299,"4":218,"7":194,"22":1528},"isBase":true}}}, +{"id":78469,"name":"Gauntlets of the Golden Thorn","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,508,299,214,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2344,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"2":508,"3":299,"4":214,"7":198,"22":2344},"isBase":true}}}, +{"id":78470,"name":"Backbreaker Spaulders","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[299,0,508,0,0,0,196,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,2813,0,0,0,0],"gemSockets":[2,2],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":644,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Spine of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"0":299,"2":508,"6":196,"11":196,"22":2813},"isBase":true}}}, +{"id":78471,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,182,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1104,"weaponDamageMin":4452,"weaponDamageMax":8269,"weaponSpeed":3,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":4452,"weaponDamageMax":8269,"stats":{"1":182,"2":274},"isBase":true}}}, +{"id":78472,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,249,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"stats":{"1":249,"2":373},"isBase":true}}}, +{"id":78473,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,581,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"stats":{"1":581,"2":871,"23":790},"isBase":true}}}, +{"id":78474,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,249,373,0,0,0,0,166,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":2264,"weaponDamageMax":3397,"weaponSpeed":1.8,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2264,"weaponDamageMax":3397,"stats":{"1":249,"2":373,"7":166,"11":166},"isBase":true}}}, +{"id":78475,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,373,249,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":825,"weaponDamageMax":1533,"weaponSpeed":1.5,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":825,"weaponDamageMax":1533,"stats":{"2":373,"3":249,"14":3324},"isBase":true}}}, +{"id":78476,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,373,249,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":1210,"weaponDamageMax":2249,"weaponSpeed":2.2,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":1210,"weaponDamageMax":2249,"stats":{"2":373,"3":249,"14":3324},"isBase":true}}}, +{"id":78477,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,871,581,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1104,"weaponDamageMin":2459,"weaponDamageMax":3689,"weaponSpeed":2.9,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":2459,"weaponDamageMax":3689,"stats":{"2":871,"3":581,"14":3325},"isBase":true}}}, +{"id":78478,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[581,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1104,"weaponDamageMin":6106,"weaponDamageMax":9160,"weaponSpeed":3.6,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":6106,"weaponDamageMax":9160,"stats":{"0":581,"2":871},"isBase":true}}}, +{"id":78479,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[249,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"stats":{"0":249,"2":373},"isBase":true}}}, +{"id":78480,"name":"Vishanka, Jaws of the Earth","icon":"inv_bow_1hdeathwingraiddw_d_01","type":14,"rangedWeaponType":1,"stats":[0,143,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"weaponDamageMin":3494,"weaponDamageMax":6490,"weaponSpeed":3,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[2],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":3494,"weaponDamageMax":6490,"stats":{"1":143,"2":215},"isBase":true}}}, +{"id":78481,"name":"No'Kaled, the Elements of Death","icon":"inv_axe_1h_deathwingraiddw_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,195,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"stats":{"1":195,"2":293},"isBase":true}}}, +{"id":78482,"name":"Kiril, Fury of Beasts","icon":"polearm_2h_deathwingraiddw_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,455,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,2],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"stats":{"1":455,"2":683,"23":620},"isBase":true}}}, +{"id":78483,"name":"Blade of the Unmaker","icon":"inv_knife_1h_deathwingraiddw_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,195,293,0,0,0,0,130,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":1777,"weaponDamageMax":2666,"weaponSpeed":1.8,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[6],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":1777,"weaponDamageMax":2666,"stats":{"1":195,"2":293,"7":130,"11":130},"isBase":true}}}, +{"id":78484,"name":"Rathrak, the Poisonous Mind","icon":"inv_knife_1h_deathwingraid_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,293,195,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":647,"weaponDamageMax":1203,"weaponSpeed":1.5,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":647,"weaponDamageMax":1203,"stats":{"2":293,"3":195,"14":2607},"isBase":true}}}, +{"id":78485,"name":"Maw of the Dragonlord","icon":"inv_mace_1h_deathwingraiddw_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,293,195,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":950,"weaponDamageMax":1765,"weaponSpeed":2.2,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":950,"weaponDamageMax":1765,"stats":{"2":293,"3":195,"14":2607},"isBase":true}}}, +{"id":78486,"name":"Ti'tahk, the Steps of Time","icon":"inv_stave_2h_deathwingraiddw_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,683,455,0,0,0,0,0,0,0,0,0,0,2608,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"weaponDamageMin":1930,"weaponDamageMax":2896,"weaponSpeed":2.9,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":1930,"weaponDamageMax":2896,"stats":{"2":683,"3":455,"14":2608},"isBase":true}}}, +{"id":78487,"name":"Gurthalak, Voice of the Deeps","icon":"inv_sword_2h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":4,"stats":[455,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"weaponDamageMin":4792,"weaponDamageMax":7189,"weaponSpeed":3.6,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4792,"weaponDamageMax":7189,"stats":{"0":455,"2":683},"isBase":true}}}, +{"id":78488,"name":"Souldrinker","icon":"inv_sword_1h_deathwingraiddw_d_01","type":13,"weaponType":9,"handType":2,"stats":[195,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Madness of Deathwing"}}],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"stats":{"0":195,"2":293},"isBase":true}}}, +{"id":78489,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,286,459,0,0,0,0,0,184,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"1":286,"2":459,"8":184,"11":200},"isBase":true}}}, +{"id":78490,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,459,286,0,164,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"5":164,"6":212},"isBase":true}}}, +{"id":78491,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,459,286,169,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":286,"4":169,"7":209},"isBase":true}}}, +{"id":78492,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[286,0,459,0,0,0,0,194,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":286,"2":459,"7":194,"11":194},"isBase":true}}}, +{"id":78493,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[286,0,459,0,0,0,0,0,0,0,179,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":286,"2":459,"10":179,"11":203},"isBase":true}}}, +{"id":78494,"name":"Seal of Primordial Shadow","icon":"inv_misc_ring_generic_2","type":11,"stats":[0,220,360,0,0,0,0,0,142,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,6,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":220,"2":360,"8":142,"11":155},"isBase":true}}}, +{"id":78495,"name":"Infinite Loop","icon":"inv_jewelry_ring_88","type":11,"stats":[0,0,360,220,0,126,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,3,5,7,8],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"5":126,"6":164},"isBase":true}}}, +{"id":78496,"name":"Signet of Suturing","icon":"inv_jewelry_ring_104","type":11,"stats":[0,0,360,220,130,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,4,5,7],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":130,"7":162},"isBase":true}}}, +{"id":78497,"name":"Breathstealer Band","icon":"inv_jewelry_ring_97","type":11,"stats":[220,0,360,0,0,0,0,149,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":220,"2":360,"7":149,"11":150},"isBase":true}}}, +{"id":78498,"name":"Hardheart Ring","icon":"inv_jewelry_ring_93","type":11,"stats":[220,0,360,0,0,0,0,0,0,0,138,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"zoneId":5892,"otherName":"Morchok"}}],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":220,"2":360,"10":138,"11":157},"isBase":true}}}, +{"id":78657,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,282,0,0,375,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"8":282,"11":375,"22":3977},"isBase":true}}}, +{"id":78658,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,347,0,318,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"9":347,"11":318,"22":3977},"isBase":true}}}, +{"id":78659,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,311,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"5":311,"7":358,"22":3977},"isBase":true}}}, +{"id":78660,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,824,489,336,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":336,"7":325,"22":2093},"isBase":true}}}, +{"id":78661,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,489,824,0,0,337,0,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":337,"7":328,"22":2912},"isBase":true}}}, +{"id":78662,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,824,489,320,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":320,"11":337,"22":2093},"isBase":true}}}, +{"id":78663,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,312,0,353,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"9":312,"11":353,"22":3977},"isBase":true}}}, +{"id":78664,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,489,824,0,0,0,0,342,0,0,0,330,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"7":342,"11":330,"22":2093},"isBase":true}}}, +{"id":78665,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,489,824,0,0,0,406,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"6":406,"11":229,"22":2093},"isBase":true}}}, +{"id":78666,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,611,388,0,0,0,270,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"7":270,"11":251,"22":1820},"isBase":true}}}, +{"id":78667,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,388,611,0,0,0,0,0,282,0,0,231,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":388,"2":611,"8":282,"11":231,"22":1820},"isBase":true}}}, +{"id":78668,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,252,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":388,"2":611,"5":252,"6":272,"22":2486},"isBase":true}}}, +{"id":78669,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[290,0,611,0,0,186,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":290,"2":611,"5":186,"11":408,"22":2486},"isBase":true}}}, +{"id":78670,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,0,284,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":388,"2":611,"6":284,"11":232,"22":2486},"isBase":true}}}, +{"id":78671,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,611,388,0,225,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"5":225,"11":288,"22":1028},"isBase":true}}}, +{"id":78672,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,611,388,268,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"4":268,"6":256,"22":1820},"isBase":true}}}, +{"id":78673,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,611,388,274,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"4":274,"6":244,"22":2486},"isBase":true}}}, +{"id":78674,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,388,611,0,0,233,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":388,"2":611,"5":233,"7":280,"22":1820},"isBase":true}}}, +{"id":78675,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[388,0,611,0,0,0,258,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":388,"2":611,"6":258,"7":262,"22":2486},"isBase":true}}}, +{"id":78676,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,611,388,0,0,0,276,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"7":276,"11":245,"22":1308},"isBase":true}}}, +{"id":78677,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[270,0,611,0,0,176,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":270,"2":611,"5":176,"9":398,"22":2486},"isBase":true}}}, +{"id":78678,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[290,0,611,0,0,186,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":290,"2":611,"5":186,"11":408,"22":2486},"isBase":true}}}, +{"id":78679,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,388,611,0,0,256,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":388,"2":611,"5":256,"8":268,"22":1308},"isBase":true}}}, +{"id":78680,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,611,388,268,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"4":268,"11":253,"22":1308},"isBase":true}}}, +{"id":78681,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,611,388,0,225,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"5":225,"11":288,"22":1028},"isBase":true}}}, +{"id":78682,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,611,388,225,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"4":225,"11":288,"22":1028},"isBase":true}}}, +{"id":78683,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,611,388,280,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":388,"4":280,"6":233,"22":1028},"isBase":true}}}, +{"id":78684,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,388,611,0,0,0,276,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":388,"2":611,"6":276,"8":245,"22":1308},"isBase":true}}}, +{"id":78685,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,824,489,0,0,0,289,0,0,0,368,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"7":289,"11":368,"22":2366},"isBase":true}}}, +{"id":78686,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,489,824,0,0,391,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":391,"7":252,"22":2366},"isBase":true}}}, +{"id":78687,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,0,0,387,270,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"7":387,"8":270,"22":3231},"isBase":true}}}, +{"id":78688,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,0,331,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"6":331,"8":341,"22":3231},"isBase":true}}}, +{"id":78689,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,0,529,238,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":357,"2":824,"10":529,"11":238,"22":3231},"isBase":true}}}, +{"id":78690,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,824,489,356,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":356,"7":313,"22":1700},"isBase":true}}}, +{"id":78691,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,824,489,375,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":375,"11":282,"22":2366},"isBase":true}}}, +{"id":78692,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,824,489,350,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":350,"11":322,"22":3231},"isBase":true}}}, +{"id":78693,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[489,0,824,0,0,316,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"5":316,"8":356,"22":3231},"isBase":true}}}, +{"id":78694,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,489,824,0,0,357,0,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":357,"7":308,"22":1700},"isBase":true}}}, +{"id":78695,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,513,0,254,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":357,"2":824,"9":513,"11":254,"22":3231},"isBase":true}}}, +{"id":78696,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,824,489,315,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":315,"7":342,"22":1700},"isBase":true}}}, +{"id":78697,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[357,0,824,0,0,0,0,0,0,238,529,0,0,0,0,0,0,0,0,0,0,0,3231,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":357,"2":824,"9":238,"10":529,"22":3231},"isBase":true}}}, +{"id":78698,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,489,824,0,0,0,393,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"6":393,"11":242,"22":2366},"isBase":true}}}, +{"id":78699,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,489,824,0,0,0,318,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"6":318,"7":354,"22":1700},"isBase":true}}}, +{"id":78700,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,824,489,353,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":353,"7":319,"22":1336},"isBase":true}}}, +{"id":78701,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"6":280,"7":370,"22":1336},"isBase":true}}}, +{"id":78702,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"6":280,"7":370,"22":1336},"isBase":true}}}, +{"id":78703,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,824,489,0,0,280,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"6":280,"7":370,"22":1336},"isBase":true}}}, +{"id":78704,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,489,824,0,0,273,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":273,"6":381,"22":2548},"isBase":true}}}, +{"id":78705,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,329,332,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"9":329,"10":332,"22":3480},"isBase":true}}}, +{"id":78706,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,327,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"5":327,"11":330,"22":3480},"isBase":true}}}, +{"id":78707,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,288,0,0,0,366,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"7":288,"11":366,"22":3480},"isBase":true}}}, +{"id":78708,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,489,824,0,0,322,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":322,"6":350,"22":1831},"isBase":true}}}, +{"id":78709,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,489,824,0,0,0,350,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"6":350,"11":322,"22":2548},"isBase":true}}}, +{"id":78710,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,824,509,366,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":509,"4":366,"11":275,"22":1831},"isBase":true}}}, +{"id":78711,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,824,489,304,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":304,"11":357,"22":2548},"isBase":true}}}, +{"id":78712,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,319,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"6":319,"11":350,"22":3480},"isBase":true}}}, +{"id":78713,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,489,824,0,0,238,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":238,"8":397,"22":1831},"isBase":true}}}, +{"id":78714,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,824,489,0,0,0,381,0,0,0,254,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"7":381,"11":254,"22":1831},"isBase":true}}}, +{"id":78715,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,319,342,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"9":319,"10":342,"22":3480},"isBase":true}}}, +{"id":78716,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,0,299,362,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"10":299,"11":362,"22":3480},"isBase":true}}}, +{"id":78717,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,824,489,344,0,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":344,"11":325,"22":3480},"isBase":true}}}, +{"id":78718,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,824,489,352,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":352,"7":317,"22":2548},"isBase":true}}}, +{"id":78719,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,824,489,361,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":361,"7":304,"22":1439},"isBase":true}}}, +{"id":78720,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"7":341,"11":331,"22":1439},"isBase":true}}}, +{"id":78721,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"7":341,"11":331,"22":1439},"isBase":true}}}, +{"id":78722,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,824,489,0,0,0,341,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"7":341,"11":331,"22":1439},"isBase":true}}}, +{"id":78723,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,824,489,332,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":332,"7":340,"22":2912},"isBase":true}}}, +{"id":78724,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,489,824,0,0,328,0,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":489,"2":824,"5":328,"11":344,"22":2912},"isBase":true}}}, +{"id":78725,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,824,489,356,0,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":356,"11":313,"22":2912},"isBase":true}}}, +{"id":78726,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,824,489,362,0,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":362,"7":299,"22":3977},"isBase":true}}}, +{"id":78727,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,329,0,0,0,343,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"7":329,"11":343,"22":3977},"isBase":true}}}, +{"id":78728,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,362,0,0,0,0,0,0,299,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":362,"11":299,"22":1644},"isBase":true}}}, +{"id":78729,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,824,489,0,307,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"5":307,"7":362,"22":1644},"isBase":true}}}, +{"id":78730,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,824,489,0,307,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"5":307,"7":362,"22":1644},"isBase":true}}}, +{"id":78731,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,824,489,307,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":489,"4":307,"7":362,"22":1644},"isBase":true}}}, +{"id":78732,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[489,0,824,0,0,0,0,0,0,0,316,349,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":489,"2":824,"10":316,"11":349,"22":3977},"isBase":true}}}, +{"id":78733,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,368,611,0,0,265,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"5":265,"8":236,"22":2184},"isBase":true}}}, +{"id":78734,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[270,0,611,0,0,0,0,0,206,0,0,368,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":270,"2":611,"8":206,"11":368,"22":2983},"isBase":true}}}, +{"id":78735,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,253,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":253,"7":248,"22":2983},"isBase":true}}}, +{"id":78736,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,222,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"6":222,"7":274,"22":2983},"isBase":true}}}, +{"id":78737,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,368,611,0,0,0,274,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":274,"7":222,"22":2184},"isBase":true}}}, +{"id":78738,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,241,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"6":241,"7":262,"22":1570},"isBase":true}}}, +{"id":78739,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,254,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":254,"7":250,"22":2184},"isBase":true}}}, +{"id":78740,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,611,368,248,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":248,"11":256,"22":1570},"isBase":true}}}, +{"id":78741,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,611,368,245,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":245,"7":259,"22":2184},"isBase":true}}}, +{"id":78742,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[368,0,611,0,0,0,0,208,0,0,0,278,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":368,"2":611,"7":208,"11":278,"22":2983},"isBase":true}}}, +{"id":78743,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,368,611,0,0,0,0,0,198,0,0,291,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":368,"2":611,"8":198,"11":291,"22":1570},"isBase":true}}}, +{"id":78744,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,611,368,248,0,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":248,"6":256,"22":1570},"isBase":true}}}, +{"id":78745,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[251,0,611,0,0,0,0,0,226,0,380,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":251,"2":611,"8":226,"10":380,"22":2983},"isBase":true}}}, +{"id":78746,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,611,368,274,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":274,"7":222,"22":2983},"isBase":true}}}, +{"id":78747,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,611,368,260,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"4":260,"11":244,"22":1233},"isBase":true}}}, +{"id":78748,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":211,"11":268,"22":1233},"isBase":true}}}, +{"id":78749,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":211,"11":268,"22":1233},"isBase":true}}}, +{"id":78750,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,611,368,0,0,211,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":368,"6":211,"11":268,"22":1233},"isBase":true}}}, +{"id":78751,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[270,0,611,0,0,0,0,0,176,0,0,398,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":270,"2":611,"8":176,"11":398,"22":2983},"isBase":true}}}, +{"id":78752,"name":"Colossal Dragonplate Battleplate","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,211,0,0,292,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"8":211,"11":292,"22":3686},"isBase":true}}}, +{"id":78753,"name":"Colossal Dragonplate Chestguard","icon":"inv_chest_plate_raidwarrior_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,266,0,243,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"9":266,"11":243,"22":3686},"isBase":true}}}, +{"id":78754,"name":"Necrotic Boneplate Breastplate","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,234,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"5":234,"7":277,"22":3686},"isBase":true}}}, +{"id":78755,"name":"Deep Earth Robes","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,646,371,254,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":254,"7":252,"22":1869},"isBase":true}}}, +{"id":78756,"name":"Wyrmstalker's Tunic","icon":"inv_chest_mail_raidhunter_k_01","type":5,"armorType":3,"stats":[0,371,646,0,0,256,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":256,"7":253,"22":2659},"isBase":true}}}, +{"id":78757,"name":"Deep Earth Vestment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,0,646,371,249,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":249,"11":254,"22":1869},"isBase":true}}}, +{"id":78758,"name":"Necrotic Boneplate Chestguard","icon":"inv_chest_plate_raiddeathknight_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,237,0,272,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"9":237,"11":272,"22":3686},"isBase":true}}}, +{"id":78759,"name":"Blackfang Battleweave Tunic","icon":"inv_chest_leather_raidrogue_k_01","type":5,"armorType":2,"stats":[0,371,646,0,0,0,0,263,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"7":263,"11":251,"22":1869},"isBase":true}}}, +{"id":78760,"name":"Deep Earth Raiment","icon":"inv_chest_leather_raiddruid_k_01","type":5,"armorType":2,"stats":[0,371,646,0,0,0,316,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"6":316,"11":169,"22":1869},"isBase":true}}}, +{"id":78761,"name":"Spiritwalker's Gloves","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,480,300,0,0,0,211,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"7":211,"11":194,"22":1662},"isBase":true}}}, +{"id":78762,"name":"Spiritwalker's Grips","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,300,480,0,0,0,0,0,220,0,0,179,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":300,"2":480,"8":220,"11":179,"22":1662},"isBase":true}}}, +{"id":78763,"name":"Colossal Dragonplate Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,194,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":300,"2":480,"5":194,"6":214,"22":2304},"isBase":true}}}, +{"id":78764,"name":"Colossal Dragonplate Handguards","icon":"inv_gauntlets_plate_raidwarrior_k_01","type":7,"armorType":4,"stats":[223,0,480,0,0,142,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":223,"2":480,"5":142,"11":320,"22":2304},"isBase":true}}}, +{"id":78765,"name":"Necrotic Boneplate Gauntlets","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,0,223,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":300,"2":480,"6":223,"11":178,"22":2304},"isBase":true}}}, +{"id":78766,"name":"Time Lord's Gloves","icon":"inv_glove_robe_raidmage_k_01","type":7,"armorType":1,"stats":[0,0,480,300,0,173,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"5":173,"11":226,"22":898},"isBase":true}}}, +{"id":78767,"name":"Spiritwalker's Handwraps","icon":"inv_gauntlets_mail_raidshaman_k_01","type":7,"armorType":3,"stats":[0,0,480,300,210,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"4":210,"6":198,"22":1662},"isBase":true}}}, +{"id":78768,"name":"Gloves of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[0,0,480,300,214,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"4":214,"6":189,"22":2304},"isBase":true}}}, +{"id":78769,"name":"Wyrmstalker's Gloves","icon":"inv_glove_mail_raidhunter_k_01","type":7,"armorType":3,"stats":[0,300,480,0,0,181,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":300,"2":480,"5":181,"7":218,"22":1662},"isBase":true}}}, +{"id":78770,"name":"Gauntlets of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[300,0,480,0,0,0,200,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":300,"2":480,"6":200,"7":204,"22":2304},"isBase":true}}}, +{"id":78771,"name":"Deep Earth Gloves","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,480,300,0,0,0,217,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"7":217,"11":188,"22":1168},"isBase":true}}}, +{"id":78772,"name":"Handguards of Radiant Glory","icon":"inv_gauntlet_plate_raidpaladin_k_01","type":7,"armorType":4,"stats":[203,0,480,0,0,132,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":203,"2":480,"5":132,"9":310,"22":2304},"isBase":true}}}, +{"id":78773,"name":"Necrotic Boneplate Handguards","icon":"inv_gauntlet_plate_raiddeathknight_k_01","type":7,"armorType":4,"stats":[223,0,480,0,0,142,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":223,"2":480,"5":142,"11":320,"22":2304},"isBase":true}}}, +{"id":78774,"name":"Blackfang Battleweave Gloves","icon":"inv_gauntlets_leather_raidrogue_k_01","type":7,"armorType":2,"stats":[0,300,480,0,0,198,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":300,"2":480,"5":198,"8":210,"22":1168},"isBase":true}}}, +{"id":78775,"name":"Deep Earth Handwraps","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,0,480,300,209,0,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"4":209,"11":196,"22":1168},"isBase":true}}}, +{"id":78776,"name":"Gloves of the Faceless Shroud","icon":"inv_gauntlets_robe_raidwarlock_k_01","type":7,"armorType":1,"stats":[0,0,480,300,0,173,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"5":173,"11":226,"22":898},"isBase":true}}}, +{"id":78777,"name":"Gloves of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,480,300,173,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"4":173,"11":226,"22":898},"isBase":true}}}, +{"id":78778,"name":"Handwraps of Dying Light","icon":"inv_gauntlet_pants_robe_raidpriest_k_01","type":7,"armorType":1,"stats":[0,0,480,300,218,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":300,"4":218,"6":181,"22":898},"isBase":true}}}, +{"id":78779,"name":"Deep Earth Grips","icon":"inv_glove_leather_raiddruid_k_01","type":7,"armorType":2,"stats":[0,300,480,0,0,0,217,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":300,"2":480,"6":217,"8":188,"22":1168},"isBase":true}}}, +{"id":78780,"name":"Spiritwalker's Headpiece","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,646,371,0,0,0,218,0,0,0,285,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"7":218,"11":285,"22":2160},"isBase":true}}}, +{"id":78781,"name":"Spiritwalker's Helmet","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,371,646,0,0,303,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":303,"7":189,"22":2160},"isBase":true}}}, +{"id":78782,"name":"Necrotic Boneplate Helmet","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,0,0,304,199,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"7":304,"8":199,"22":2995},"isBase":true}}}, +{"id":78783,"name":"Colossal Dragonplate Helmet","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,0,252,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"6":252,"8":262,"22":2995},"isBase":true}}}, +{"id":78784,"name":"Colossal Dragonplate Faceguard","icon":"inv_helmet_plate_raidwarrior_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,0,411,178,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":267,"2":646,"10":411,"11":178,"22":2995},"isBase":true}}}, +{"id":78785,"name":"Deep Earth Helm","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,646,371,275,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":275,"7":236,"22":1519},"isBase":true}}}, +{"id":78786,"name":"Spiritwalker's Faceguard","icon":"inv_helmet_mail_raidshaman_k_01","type":1,"armorType":3,"stats":[0,0,646,371,292,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":292,"11":211,"22":2160},"isBase":true}}}, +{"id":78787,"name":"Headguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[0,0,646,371,271,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":271,"11":243,"22":2995},"isBase":true}}}, +{"id":78788,"name":"Helmet of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[371,0,646,0,0,237,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"5":237,"8":277,"22":2995},"isBase":true}}}, +{"id":78789,"name":"Deep Earth Headpiece","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,371,646,0,0,276,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":276,"7":233,"22":1519},"isBase":true}}}, +{"id":78790,"name":"Faceguard of Radiant Glory","icon":"inv_helm_plate_raidpaladin_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,395,0,194,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":267,"2":646,"9":395,"11":194,"22":2995},"isBase":true}}}, +{"id":78791,"name":"Deep Earth Cover","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,646,371,244,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":244,"7":259,"22":1519},"isBase":true}}}, +{"id":78792,"name":"Necrotic Boneplate Faceguard","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[267,0,646,0,0,0,0,0,0,178,411,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":267,"2":646,"9":178,"10":411,"22":2995},"isBase":true}}}, +{"id":78793,"name":"Wyrmstalker's Headguard","icon":"inv_helm_mail_raidhunter_k_01","type":1,"armorType":3,"stats":[0,371,646,0,0,0,303,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"6":303,"11":182,"22":2160},"isBase":true}}}, +{"id":78794,"name":"Blackfang Battleweave Helmet","icon":"inv_helmet_leather_raidrogue_k_01","type":1,"armorType":2,"stats":[0,371,646,0,0,0,239,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"6":239,"7":275,"22":1519},"isBase":true}}}, +{"id":78795,"name":"Cowl of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,646,371,274,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":274,"7":240,"22":1167},"isBase":true}}}, +{"id":78796,"name":"Time Lord's Hood","icon":"inv_helm_robe_raidmage_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"6":213,"7":284,"22":1167},"isBase":true}}}, +{"id":78797,"name":"Hood of the Faceless Shroud","icon":"inv_helmet_robe_raidwarlock_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"6":213,"7":284,"22":1167},"isBase":true}}}, +{"id":78798,"name":"Hood of Dying Light","icon":"inv_helm_robe_raidpriest_k_01","type":1,"armorType":1,"stats":[0,0,646,371,0,0,213,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"6":213,"7":284,"22":1167},"isBase":true}}}, +{"id":78799,"name":"Spiritwalker's Legguards","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,371,646,0,0,204,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":204,"6":296,"22":2327},"isBase":true}}}, +{"id":78800,"name":"Colossal Dragonplate Legguards","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,256,250,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"9":256,"10":250,"22":3225},"isBase":true}}}, +{"id":78801,"name":"Colossal Dragonplate Legplates","icon":"inv_pants_plate_raidwarrior_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,244,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"5":244,"11":259,"22":3225},"isBase":true}}}, +{"id":78802,"name":"Necrotic Boneplate Greaves","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,219,0,0,0,281,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"7":219,"11":281,"22":3225},"isBase":true}}}, +{"id":78803,"name":"Blackfang Battleweave Legguards","icon":"inv_pants_leather_raidrogue_k_01","type":9,"armorType":2,"stats":[0,371,646,0,0,243,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":243,"6":271,"22":1635},"isBase":true}}}, +{"id":78804,"name":"Wyrmstalker's Legguards","icon":"inv_pants_mail_raidhunter_k_01","type":9,"armorType":3,"stats":[0,371,646,0,0,0,271,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"6":271,"11":243,"22":2327},"isBase":true}}}, +{"id":78805,"name":"Deep Earth Legwraps","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,646,391,284,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":391,"4":284,"11":202,"22":1635},"isBase":true}}}, +{"id":78806,"name":"Spiritwalker's Kilt","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,646,371,231,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":231,"11":275,"22":2327},"isBase":true}}}, +{"id":78807,"name":"Legplates of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,242,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"6":242,"11":269,"22":3225},"isBase":true}}}, +{"id":78808,"name":"Deep Earth Legguards","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,371,646,0,0,178,0,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":178,"8":307,"22":1635},"isBase":true}}}, +{"id":78809,"name":"Deep Earth Leggings","icon":"inv_pant_leather_raiddruid_k_01","type":9,"armorType":2,"stats":[0,0,646,371,0,0,0,291,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"7":291,"11":194,"22":1635},"isBase":true}}}, +{"id":78810,"name":"Legguards of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,246,260,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"9":246,"10":260,"22":3225},"isBase":true}}}, +{"id":78811,"name":"Necrotic Boneplate Legguards","icon":"inv_pants_plate_raiddeathknight_k_01","type":9,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,226,280,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"10":226,"11":280,"22":3225},"isBase":true}}}, +{"id":78812,"name":"Greaves of Radiant Glory","icon":"inv_pants_plate_raidpaladin_k_01","type":9,"armorType":4,"stats":[0,0,646,371,263,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":263,"11":248,"22":3225},"isBase":true}}}, +{"id":78813,"name":"Spiritwalker's Legwraps","icon":"inv_pants_mail_raidshaman_k_01","type":9,"armorType":3,"stats":[0,0,646,371,271,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":271,"7":240,"22":2327},"isBase":true}}}, +{"id":78814,"name":"Legwraps of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,646,371,280,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":280,"7":229,"22":1257},"isBase":true}}}, +{"id":78815,"name":"Time Lord's Leggings","icon":"inv_pants_robe_raidmage_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"7":262,"11":252,"22":1257},"isBase":true}}}, +{"id":78816,"name":"Leggings of the Faceless Shroud","icon":"inv_pants_robe_raidwarlock_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"7":262,"11":252,"22":1257},"isBase":true}}}, +{"id":78817,"name":"Leggings of Dying Light","icon":"inv_pants_robe_raidpriest_k_01","type":9,"armorType":1,"stats":[0,0,646,371,0,0,0,262,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"7":262,"11":252,"22":1257},"isBase":true}}}, +{"id":78818,"name":"Spiritwalker's Hauberk","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,646,371,253,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":253,"7":261,"22":2659},"isBase":true}}}, +{"id":78819,"name":"Spiritwalker's Cuirass","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,371,646,0,0,249,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"5":249,"11":265,"22":2659},"isBase":true}}}, +{"id":78820,"name":"Spiritwalker's Tunic","icon":"inv_chest_mail_raidshaman_k_01","type":5,"armorType":3,"stats":[0,0,646,371,275,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":275,"11":236,"22":2659},"isBase":true}}}, +{"id":78821,"name":"Breastplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[0,0,646,371,280,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":280,"7":226,"22":3686},"isBase":true}}}, +{"id":78822,"name":"Battleplate of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,250,0,0,0,264,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"7":250,"11":264,"22":3686},"isBase":true}}}, +{"id":78823,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,280,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":280,"11":226,"22":1436},"isBase":true}}}, +{"id":78824,"name":"Time Lord's Robes","icon":"inv_chest_robe_raidmage_k_01","type":5,"armorType":1,"stats":[0,0,646,371,0,230,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"5":230,"7":281,"22":1436},"isBase":true}}}, +{"id":78825,"name":"Robes of the Faceless Shroud","icon":"inv_chest_robe_raidwarlock_k_01","type":5,"armorType":1,"stats":[0,0,646,371,0,230,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"5":230,"7":281,"22":1436},"isBase":true}}}, +{"id":78826,"name":"Robes of Dying Light","icon":"inv_chest_robe_raidpriest_k_01","type":5,"armorType":1,"stats":[0,0,646,371,230,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":371,"4":230,"7":281,"22":1436},"isBase":true}}}, +{"id":78827,"name":"Chestguard of Radiant Glory","icon":"inv_chest_plate_raidpaladin_k_01","type":5,"armorType":4,"stats":[371,0,646,0,0,0,0,0,0,0,241,268,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":371,"2":646,"10":241,"11":268,"22":3686},"isBase":true}}}, +{"id":78828,"name":"Spiritwalker's Spaulders","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,280,480,0,0,206,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Battlegear","setId":1071,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"5":206,"8":179,"22":1994},"isBase":true}}}, +{"id":78829,"name":"Colossal Dragonplate Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[203,0,480,0,0,0,0,0,162,0,0,280,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Armor","setId":1074,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":203,"2":480,"8":162,"11":280,"22":2764},"isBase":true}}}, +{"id":78830,"name":"Colossal Dragonplate Pauldrons","icon":"inv_shoulder_plate_raidwarrior_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,196,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[9],"setName":"Colossal Dragonplate Battlegear","setId":1073,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"6":196,"7":189,"22":2764},"isBase":true}}}, +{"id":78831,"name":"Necrotic Boneplate Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,168,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,4],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Battlegear","setId":1057,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"6":168,"7":213,"22":2764},"isBase":true}}}, +{"id":78832,"name":"Wyrmstalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_k_01","type":3,"armorType":3,"stats":[0,280,480,0,0,0,213,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[2],"setName":"Wyrmstalker Battlegear","setId":1061,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":213,"7":168,"22":1994},"isBase":true}}}, +{"id":78833,"name":"Blackfang Battleweave Spaulders","icon":"inv_shoulder_leather_raidrogue_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,183,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[6],"setName":"Blackfang Battleweave","setId":1068,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"6":183,"7":204,"22":1402},"isBase":true}}}, +{"id":78834,"name":"Spiritwalker's Mantle","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,196,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Vestments","setId":1069,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":196,"7":192,"22":1994},"isBase":true}}}, +{"id":78835,"name":"Deep Earth Mantle","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,480,280,190,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Vestments","setId":1060,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":190,"11":198,"22":1402},"isBase":true}}}, +{"id":78836,"name":"Spiritwalker's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_k_01","type":3,"armorType":3,"stats":[0,0,480,280,187,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[7],"setName":"Spiritwalker's Regalia","setId":1070,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":187,"7":201,"22":1994},"isBase":true}}}, +{"id":78837,"name":"Pauldrons of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[280,0,480,0,0,0,0,157,0,0,0,216,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Battleplate of Radiant Glory","setId":1064,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":280,"2":480,"7":157,"11":216,"22":2764},"isBase":true}}}, +{"id":78838,"name":"Deep Earth Spaulders","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,280,480,0,0,0,0,0,147,0,0,229,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Battlegarb","setId":1058,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":280,"2":480,"8":147,"11":229,"22":1402},"isBase":true}}}, +{"id":78839,"name":"Deep Earth Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_k_01","type":3,"armorType":2,"stats":[0,0,480,280,190,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1],"setName":"Deep Earth Regalia","setId":1059,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":190,"6":198,"22":1402},"isBase":true}}}, +{"id":78840,"name":"Shoulderguards of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[189,0,480,0,0,0,0,0,175,0,292,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Armor of Radiant Glory","setId":1065,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":189,"2":480,"8":175,"10":292,"22":2764},"isBase":true}}}, +{"id":78841,"name":"Mantle of Radiant Glory","icon":"inv_shoulder_plate_raidpaladin_k_01","type":3,"armorType":4,"stats":[0,0,480,280,213,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Regalia of Radiant Glory","setId":1063,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":213,"7":168,"22":2764},"isBase":true}}}, +{"id":78842,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,480,280,202,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Vestments of Dying Light","setId":1066,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"4":202,"11":186,"22":1077},"isBase":true}}}, +{"id":78843,"name":"Time Lord's Mantle","icon":"inv_shoulder_robe_raidmage_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[3],"setName":"Time Lord's Regalia","setId":1062,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":165,"11":203,"22":1077},"isBase":true}}}, +{"id":78844,"name":"Mantle of the Faceless Shroud","icon":"inv_shoulder_robe_raidwarlock_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[8],"setName":"Vestments of the Faceless Shroud","setId":1072,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":165,"11":203,"22":1077},"isBase":true}}}, +{"id":78845,"name":"Mantle of Dying Light","icon":"inv_shoulder_robe_raidpriest_k_01","type":3,"armorType":1,"stats":[0,0,480,280,0,0,165,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[5],"setName":"Regalia of Dying Light","setId":1067,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":280,"6":165,"11":203,"22":1077},"isBase":true}}}, +{"id":78846,"name":"Necrotic Boneplate Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_k_01","type":3,"armorType":4,"stats":[203,0,480,0,0,0,0,0,132,0,0,310,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[10],"setName":"Necrotic Boneplate Armor","setId":1056,"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":203,"2":480,"8":132,"11":310,"22":2764},"isBase":true}}}, +{"id":78878,"name":"Spine of the Thousand Cuts","icon":"inv_sword_1h_deathwingraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,208,312,0,0,0,0,122,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"weaponSpeed":2.6,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":396,"weaponDamageMin":2397,"weaponDamageMax":4453,"stats":{"1":208,"2":312,"7":122,"8":149},"isBase":true}}}, +{"id":78879,"name":"Sash of Relentless Truth","icon":"inv_belt_robe_raidpriest_k_01","type":8,"armorType":1,"stats":[0,0,542,341,0,0,0,228,0,0,0,233,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"7":228,"11":233,"22":865},"isBase":true}}}, +{"id":78882,"name":"Nightblind Cinch","icon":"inv_belt_leather_raidrogue_k_01","type":8,"armorType":2,"stats":[0,341,542,0,0,0,248,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"6":248,"7":201,"22":1113},"isBase":true}}}, +{"id":78884,"name":"Girdle of Fungal Dreams","icon":"inv_belt_leather_raiddruid_k_01","type":8,"armorType":2,"stats":[0,0,542,341,228,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":228,"6":234,"22":1113},"isBase":true}}}, +{"id":78885,"name":"Dragoncarver Belt","icon":"inv_belt_mail_raidhunter_k_01","type":8,"armorType":3,"stats":[0,341,542,0,0,0,0,239,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"1":341,"2":542,"7":239,"11":221,"22":1565},"isBase":true}}}, +{"id":78886,"name":"Belt of Ghostly Graces","icon":"inv_belt_mail_raidshaman_k_01","type":8,"armorType":3,"stats":[0,0,542,321,213,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1565,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":321,"4":213,"6":239,"22":1565},"isBase":true}}}, +{"id":78887,"name":"Girdle of Soulful Mending","icon":"inv_belt_plate_raidpaladin_k_01","type":8,"armorType":4,"stats":[0,0,542,341,229,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"2":542,"3":341,"4":229,"6":228,"22":2154},"isBase":true}}}, +{"id":78888,"name":"Waistguard of Bleeding Bone","icon":"inv_belt_plate_raidwarrior_k_01","type":8,"armorType":4,"stats":[341,0,542,0,0,0,0,237,225,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"7":237,"8":225,"22":2154},"isBase":true}}}, +{"id":78889,"name":"Waistplate of the Desecrated Future","icon":"inv_belt_plate_raiddeathknight_k_01","type":8,"armorType":4,"stats":[341,0,542,0,0,224,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":687,"ilvl":397,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5892,"otherName":"Trash Mobs"}}],"scalingOptions":{"397":{"randPropPoints":687,"stats":{"0":341,"2":542,"5":224,"10":233,"22":2154},"isBase":true}}}, +{"id":79327,"name":"Relic of Xuen","icon":"inv_inscription_trinket_tiger","type":12,"stats":[1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"476":{"randPropPoints":1434,"stats":{"0":956}},"480":{"randPropPoints":1489,"stats":{"0":993},"upgradeStep":1}}}, +{"id":79328,"name":"Relic of Xuen","icon":"inv_inscription_trinket_tiger","type":12,"stats":[0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"476":{"randPropPoints":1434,"stats":{"1":956}},"480":{"randPropPoints":1489,"stats":{"1":993},"upgradeStep":1}}}, +{"id":79329,"name":"Relic of Niuzao","icon":"inv_inscription_trinket_ox","type":12,"stats":[0,0,1545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"476":{"randPropPoints":1434,"stats":{"2":1434}},"480":{"randPropPoints":1489,"stats":{"2":1489},"upgradeStep":1}}}, +{"id":79330,"name":"Relic of Chi-Ji","icon":"inv_inscription_trinket_crane","type":12,"stats":[0,0,0,1247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":996}},"476":{"randPropPoints":1434,"stats":{"3":1157}},"480":{"randPropPoints":1489,"stats":{"3":1201},"upgradeStep":1}}}, +{"id":79331,"name":"Relic of Yu'lon","icon":"inv_inscription_trinket_dragon","type":12,"stats":[0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"476":{"randPropPoints":1434,"stats":{"3":956}},"480":{"randPropPoints":1489,"stats":{"3":993},"upgradeStep":1}}}, +{"id":79333,"name":"Inscribed Fan","icon":"inv_offhand_1h_panstart_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,523,349,0,0,0,215,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":663,"ilvl":424,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"424":{"randPropPoints":663,"stats":{"2":523,"3":349,"7":215,"11":243},"isBase":true}}}, +{"id":79334,"name":"Inscribed Jade Fan","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,0,406,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"11":325}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"5":377,"11":377}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"5":391,"11":391},"upgradeStep":1}}}, +{"id":79335,"name":"Inscribed Red Fan","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,406,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"11":377}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":391,"11":391},"upgradeStep":1}}}, +{"id":79339,"name":"Rain Poppy Staff","icon":"inv_staff_2h_pandariatradeskill_c_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,938,625,0,0,0,417,0,0,0,417,0,0,3581,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1189,"weaponDamageMin":3015,"weaponDamageMax":4523,"weaponSpeed":3.3,"ilvl":424,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"424":{"randPropPoints":1189,"weaponDamageMin":3015,"weaponDamageMax":4523,"stats":{"2":938,"3":625,"7":417,"11":417,"14":3581},"isBase":true}}}, +{"id":79340,"name":"Inscribed Crane Staff","icon":"inv_staff_2h_pandariatradeskill_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,1640,1094,729,0,0,0,0,0,0,729,0,0,6265,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":5274,"weaponDamageMax":7911,"weaponSpeed":3.3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"476":{"randPropPoints":1930,"weaponDamageMin":4895,"weaponDamageMax":7343,"stats":{"2":1522,"3":1015,"4":677,"11":677,"14":5813}},"480":{"randPropPoints":2004,"weaponDamageMin":5081,"weaponDamageMax":7622,"stats":{"2":1581,"3":1054,"4":703,"11":703,"14":6036},"upgradeStep":1}}}, +{"id":79341,"name":"Inscribed Serpent Staff","icon":"inv_staff_2h_pandariatradeskill_c_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,1640,1094,0,729,0,0,0,0,0,729,0,0,6265,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":5274,"weaponDamageMax":7911,"weaponSpeed":3.3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"5":583,"11":583,"14":5009}},"476":{"randPropPoints":1930,"weaponDamageMin":4895,"weaponDamageMax":7343,"stats":{"2":1522,"3":1015,"5":677,"11":677,"14":5813}},"480":{"randPropPoints":2004,"weaponDamageMin":5081,"weaponDamageMax":7622,"stats":{"2":1581,"3":1054,"5":703,"11":703,"14":6036},"upgradeStep":1}}}, +{"id":79342,"name":"Ghost Iron Staff","icon":"inv_staff_2h_pandariatradeskill_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,625,938,0,0,0,417,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1189,"weaponDamageMin":6030,"weaponDamageMax":9046,"weaponSpeed":3.3,"ilvl":424,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"424":{"randPropPoints":1189,"weaponDamageMin":6030,"weaponDamageMax":9046,"stats":{"1":625,"2":938,"6":417,"11":417},"isBase":true}}}, +{"id":79343,"name":"Inscribed Tiger Staff","icon":"inv_staff_2h_pandariatradeskill_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,1094,1640,0,0,0,729,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":10548,"weaponDamageMax":15822,"weaponSpeed":3.3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":875,"2":1312,"6":583,"11":583}},"476":{"randPropPoints":1930,"weaponDamageMin":9790,"weaponDamageMax":14686,"stats":{"1":1015,"2":1522,"6":677,"11":677}},"480":{"randPropPoints":2004,"weaponDamageMin":10162,"weaponDamageMax":15243,"stats":{"1":1054,"2":1581,"6":703,"11":703},"upgradeStep":1}}}, +{"id":80686,"name":"Ambermist Hood","icon":"inv_helmet_cloth_panda_b_02","type":1,"armorType":1,"stats":[0,0,646,431,273,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"4":273,"6":296,"22":1167},"isBase":true}}}, +{"id":80687,"name":"Blackthicket Helm","icon":"inv_helm_leather_panda_b_02","type":1,"armorType":2,"stats":[0,0,646,431,0,0,0,280,0,0,0,291,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"7":280,"11":291,"22":1519},"isBase":true}}}, +{"id":80688,"name":"Jade Witch Helm","icon":"inv_helmet_mail_panda_b_02blue","type":1,"armorType":3,"stats":[0,0,646,431,0,0,0,266,0,0,0,300,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"7":266,"11":300,"22":2160},"isBase":true}}}, +{"id":80689,"name":"Glass Lake Headcover","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[0,0,646,431,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":287,"7":287,"22":2995},"isBase":true}}}, +{"id":80690,"name":"Silkwood Cowl","icon":"inv_helmet_cloth_panda_b_02","type":1,"armorType":1,"stats":[0,0,646,431,0,324,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"5":324,"6":225,"22":1167},"isBase":true}}}, +{"id":80691,"name":"Deepwoods Helm","icon":"inv_helm_leather_panda_b_02","type":1,"armorType":2,"stats":[0,431,646,0,0,0,0,232,0,0,0,320,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"7":232,"11":320,"22":1519},"isBase":true}}}, +{"id":80692,"name":"Fox Grove Helm","icon":"inv_helmet_mail_panda_b_02blue","type":1,"armorType":3,"stats":[0,431,646,0,0,0,0,287,0,0,0,287,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"7":287,"11":287,"22":2160},"isBase":true}}}, +{"id":80693,"name":"Thunderwood Helm","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[431,0,646,0,0,0,0,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"9":287,"10":287,"22":2995},"isBase":true}}}, +{"id":80694,"name":"Jade Tiger Helm","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[431,0,646,0,0,0,0,287,0,0,0,287,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"7":287,"11":287,"22":2995},"isBase":true}}}, +{"id":80695,"name":"Ambermist Mantle","icon":"inv_shoulder_cloth_panda_b_02","type":3,"armorType":1,"stats":[0,0,578,385,0,0,0,261,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"2":578,"3":385,"7":261,"11":251,"22":1196},"isBase":true}}}, +{"id":80696,"name":"Blackthicket Spaulders","icon":"inv_shoulder_leather_panda_b_02","type":3,"armorType":2,"stats":[0,0,578,385,261,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":261,"7":251,"22":1530},"isBase":true}}}, +{"id":80697,"name":"Jade Witch Spaulders","icon":"inv_shoulder_mail_panda_b_02blue","type":3,"armorType":3,"stats":[0,0,578,385,0,0,293,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":293,"7":195,"22":2139},"isBase":true}}}, +{"id":80698,"name":"Glass Lake Spaulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[0,0,578,385,0,0,293,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":293,"7":195,"22":2931},"isBase":true}}}, +{"id":80699,"name":"Silkwood Amice","icon":"inv_shoulder_cloth_panda_b_02","type":3,"armorType":1,"stats":[0,0,578,385,0,0,0,251,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"2":578,"3":385,"7":251,"11":261,"22":1196},"isBase":true}}}, +{"id":80700,"name":"Deepwoods Spaulder","icon":"inv_shoulder_leather_panda_b_02","type":3,"armorType":2,"stats":[0,385,578,0,0,0,279,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":279,"7":219,"22":1530},"isBase":true}}}, +{"id":80701,"name":"Fox Grove Spaulders","icon":"inv_shoulder_mail_panda_b_02blue","type":3,"armorType":3,"stats":[0,385,578,0,0,0,207,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":207,"7":286,"22":2139},"isBase":true}}}, +{"id":80702,"name":"Thunderwood Shoulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,195,293,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":195,"11":293,"22":2931},"isBase":true}}}, +{"id":80703,"name":"Jade Tiger Shoulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[385,0,578,0,0,0,290,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":733,"stats":{"0":385,"2":578,"6":290,"11":201,"22":2931},"isBase":true}}}, +{"id":80704,"name":"Ambermist Robe","icon":"inv_chest_cloth_panda_b_02","type":5,"armorType":1,"stats":[0,0,646,431,0,0,0,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"7":273,"11":296,"22":1436},"isBase":true}}}, +{"id":80705,"name":"Blackthicket Robes","icon":"inv_chest_leather_panda_b_02","type":5,"armorType":2,"stats":[0,0,646,431,0,0,324,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":324,"11":225,"22":1869},"isBase":true}}}, +{"id":80706,"name":"Jade Witch Armor","icon":"inv_chest_mail_panda_b_02blue","type":5,"armorType":3,"stats":[0,0,646,431,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":287,"7":287,"22":2659},"isBase":true}}}, +{"id":80707,"name":"Glass Lake Chestguard","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[0,0,646,431,0,0,0,287,0,0,0,287,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"7":287,"11":287,"22":3686},"isBase":true}}}, +{"id":80708,"name":"Silkwood Robe","icon":"inv_chest_cloth_panda_b_02","type":5,"armorType":1,"stats":[0,0,646,431,0,0,273,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":273,"11":296,"22":1436},"isBase":true}}}, +{"id":80709,"name":"Deepwoods Tunic","icon":"inv_chest_leather_panda_b_02","type":5,"armorType":2,"stats":[0,431,646,0,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"6":287,"7":287,"22":1869},"isBase":true}}}, +{"id":80710,"name":"Fox Grove Armor","icon":"inv_chest_mail_panda_b_02blue","type":5,"armorType":3,"stats":[0,431,646,0,0,0,320,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"6":320,"11":232,"22":2659},"isBase":true}}}, +{"id":80711,"name":"Thunderwood Chestpiece","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[431,0,646,0,0,308,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"5":308,"11":252,"22":3686},"isBase":true}}}, +{"id":80712,"name":"Jade Tiger Chestpiece","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[431,0,646,0,0,0,0,304,0,0,0,259,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"7":304,"11":259,"22":3686},"isBase":true}}}, +{"id":80713,"name":"Ambermist Leggings","icon":"inv_pants_cloth_panda_b_02","type":9,"armorType":1,"stats":[0,0,646,431,0,0,296,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":296,"7":273,"22":1257},"isBase":true}}}, +{"id":80714,"name":"Blackthicket Legguards","icon":"inv_pants_leather_panda_b_02","type":9,"armorType":2,"stats":[0,0,646,431,0,0,324,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":324,"11":225,"22":1635},"isBase":true}}}, +{"id":80715,"name":"Jade Witch Legguards","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,0,646,431,0,0,324,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":324,"7":225,"22":2327},"isBase":true}}}, +{"id":80716,"name":"Glass Lake Legplates","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[0,0,646,431,0,0,320,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":320,"11":232,"22":3225},"isBase":true}}}, +{"id":80717,"name":"Silkwood Trousers","icon":"inv_pants_cloth_panda_b_02","type":9,"armorType":1,"stats":[0,0,646,431,0,291,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"5":291,"7":280,"22":1257},"isBase":true}}}, +{"id":80718,"name":"Deepwoods Legguards","icon":"inv_pants_leather_panda_b_02","type":9,"armorType":2,"stats":[0,431,646,0,0,0,0,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"7":273,"11":296,"22":1635},"isBase":true}}}, +{"id":80719,"name":"Fox Grove Legguards","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,431,646,0,0,0,296,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"6":296,"11":273,"22":2327},"isBase":true}}}, +{"id":80720,"name":"Thunderwood Legguards","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[431,0,646,0,0,0,0,0,0,316,0,238,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"9":316,"11":238,"22":3225},"isBase":true}}}, +{"id":80721,"name":"Jade Tiger Legguards","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[431,0,646,0,0,308,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"5":308,"6":252,"22":3225},"isBase":true}}}, +{"id":80722,"name":"Ambermist Treads","icon":"inv_boots_cloth_panda_b_02","type":10,"armorType":1,"stats":[0,0,480,320,172,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":172,"6":238,"22":988},"isBase":true}}}, +{"id":80723,"name":"Blackthicket Footguards","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,0,480,320,0,0,0,214,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"7":214,"11":214,"22":1285},"isBase":true}}}, +{"id":80724,"name":"Jade Witch Sabatons","icon":"inv_boots_mail_panda_b_02blue","type":10,"armorType":3,"stats":[0,0,480,320,198,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":198,"11":223,"22":1828},"isBase":true}}}, +{"id":80725,"name":"Glass Lake Greaves","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[0,0,480,320,0,0,0,214,0,0,0,214,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"7":214,"11":214,"22":2534},"isBase":true}}}, +{"id":80726,"name":"Silkwood Treads","icon":"inv_boots_cloth_panda_b_02","type":10,"armorType":1,"stats":[0,0,480,320,0,0,214,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":214,"7":214,"22":988},"isBase":true}}}, +{"id":80727,"name":"Deepwoods Boots","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,320,480,0,0,0,214,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"6":214,"11":214,"22":1285},"isBase":true}}}, +{"id":80728,"name":"Fox Grove Sabatons","icon":"inv_boots_mail_panda_b_02blue","type":10,"armorType":3,"stats":[0,320,480,0,0,0,0,182,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"7":182,"11":232,"22":1828},"isBase":true}}}, +{"id":80729,"name":"Thunderwood Warboots","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[320,0,480,0,0,0,0,0,0,0,198,223,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"10":198,"11":223,"22":2534},"isBase":true}}}, +{"id":80730,"name":"Jade Tiger Warboots","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[320,0,480,0,0,0,198,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"6":198,"7":223,"22":2534},"isBase":true}}}, +{"id":80731,"name":"Ambermist Cord","icon":"inv_belt_cloth_panda_b_02","type":8,"armorType":1,"stats":[0,0,480,320,0,0,0,198,0,0,0,223,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"7":198,"11":223,"22":808},"isBase":true}}}, +{"id":80732,"name":"Blackthicket Belt","icon":"inv_belt_leather_panda_b_02","type":8,"armorType":2,"stats":[0,0,480,320,193,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":193,"6":226,"22":1051},"isBase":true}}}, +{"id":80733,"name":"Jade Witch Waistguard","icon":"inv_belt_mail_panda_b_02blue","type":8,"armorType":3,"stats":[0,0,480,320,0,0,232,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":232,"11":182,"22":1496},"isBase":true}}}, +{"id":80734,"name":"Glass Lake Clasp","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[0,0,480,320,162,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":162,"7":243,"22":2073},"isBase":true}}}, +{"id":80735,"name":"Silkwood Cord","icon":"inv_belt_cloth_panda_b_02","type":8,"armorType":1,"stats":[0,0,480,320,0,0,167,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":167,"11":241,"22":808},"isBase":true}}}, +{"id":80736,"name":"Deepwoods Belt","icon":"inv_belt_leather_panda_b_02","type":8,"armorType":2,"stats":[0,320,480,0,0,0,232,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"6":232,"7":182,"22":1051},"isBase":true}}}, +{"id":80737,"name":"Fox Grove Belt","icon":"inv_belt_mail_panda_b_02blue","type":8,"armorType":3,"stats":[0,320,480,0,0,0,0,198,0,0,0,223,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"7":198,"11":223,"22":1496},"isBase":true}}}, +{"id":80738,"name":"Thunderwood Girdle","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[320,0,480,0,0,0,0,0,0,187,229,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"9":187,"10":229,"22":2073},"isBase":true}}}, +{"id":80739,"name":"Jade Tiger Girdle","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[320,0,480,0,0,0,0,208,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"7":208,"11":217,"22":2073},"isBase":true}}}, +{"id":80740,"name":"Ambermist Gloves","icon":"inv_gauntlets_cloth_panda_b_02","type":7,"armorType":1,"stats":[0,0,480,320,0,0,0,193,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"7":193,"11":226,"22":898},"isBase":true}}}, +{"id":80741,"name":"Blackthicket Gloves","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,0,480,320,0,0,214,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":214,"11":214,"22":1168},"isBase":true}}}, +{"id":80742,"name":"Jade Witch Gauntlets","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,0,480,320,0,0,0,214,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"7":214,"11":214,"22":1662},"isBase":true}}}, +{"id":80743,"name":"Glass Lake Gloves","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[0,0,480,320,172,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":172,"11":238,"22":2304},"isBase":true}}}, +{"id":80744,"name":"Silkwood Handguards","icon":"inv_gauntlets_cloth_panda_b_02","type":7,"armorType":1,"stats":[0,0,480,320,0,0,193,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":193,"11":226,"22":898},"isBase":true}}}, +{"id":80745,"name":"Deepwoods Gloves","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,320,480,0,0,0,214,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"6":214,"11":214,"22":1168},"isBase":true}}}, +{"id":80746,"name":"Fox Grove Gauntlets","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,320,480,0,0,0,241,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"6":241,"7":167,"22":1662},"isBase":true}}}, +{"id":80747,"name":"Thunderwood Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[320,0,480,0,0,0,0,0,0,238,172,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"9":238,"10":172,"22":2304},"isBase":true}}}, +{"id":80748,"name":"Jade Tiger Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[320,0,480,0,0,0,214,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"6":214,"11":214,"22":2304},"isBase":true}}}, +{"id":80749,"name":"Ambermist Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,360,240,169,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":169,"6":144,"22":628},"isBase":true}}}, +{"id":80750,"name":"Blackthicket Bindings","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,0,360,240,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":160,"7":160,"22":818},"isBase":true}}}, +{"id":80751,"name":"Jade Witch Wristguards","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,0,360,240,136,0,0,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":136,"11":174,"22":1163},"isBase":true}}}, +{"id":80752,"name":"Glass Lake Bracers","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[0,0,360,240,0,0,182,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":182,"11":121,"22":1613},"isBase":true}}}, +{"id":80753,"name":"Silkwood Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,360,240,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":160,"11":160,"22":628},"isBase":true}}}, +{"id":80754,"name":"Deepwoods Armwraps","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,240,360,0,0,152,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"5":152,"7":165,"22":818},"isBase":true}}}, +{"id":80755,"name":"Fox Grove Wristguards","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,240,360,0,0,152,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"5":152,"11":165,"22":1163},"isBase":true}}}, +{"id":80756,"name":"Thunderwood Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[240,0,360,0,0,0,0,0,0,148,167,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"9":148,"10":167,"22":1613},"isBase":true}}}, +{"id":80757,"name":"Jade Tiger Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[240,0,360,0,0,0,148,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"6":148,"7":167,"22":1613},"isBase":true}}}, +{"id":80758,"name":"Zen Lotus Pendant","icon":"inv_jewelry_necklace_63","type":2,"stats":[0,0,360,240,0,0,172,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":172,"11":140},"isBase":true}}}, +{"id":80759,"name":"Dawnblossom Necklace","icon":"inv_jewelry_necklace_62","type":2,"stats":[0,0,360,240,0,0,162,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":162,"7":156},"isBase":true}}}, +{"id":80760,"name":"Vale Song Pendant","icon":"inv_jewelry_necklace_63","type":2,"stats":[0,240,360,0,0,156,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"5":156,"8":162},"isBase":true}}}, +{"id":80761,"name":"Greenstone Pendant","icon":"inv_jewelry_necklace_78","type":2,"stats":[240,0,360,0,0,0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"9":160,"11":160},"isBase":true}}}, +{"id":80762,"name":"Jade Eye Pendant","icon":"inv_jewelry_necklace_78","type":2,"stats":[240,0,360,0,0,0,0,160,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"7":160,"11":160},"isBase":true}}}, +{"id":80763,"name":"Friendship Ring","icon":"inv_jewelry_ring_129","type":11,"stats":[0,0,360,240,0,0,0,172,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"7":172,"11":140},"isBase":true}}}, +{"id":80764,"name":"Band of Acceptance","icon":"inv_jewelry_ring_123","type":11,"stats":[0,0,360,240,0,0,0,160,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"7":160,"11":160},"isBase":true}}}, +{"id":80765,"name":"Friendly Gift Band","icon":"inv_jewelry_ring_130","type":11,"stats":[0,240,360,0,0,0,169,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"6":169,"8":144},"isBase":true}}}, +{"id":80766,"name":"Band of Flair","icon":"inv_jewelry_ring_110","type":11,"stats":[240,0,360,0,0,0,0,0,0,162,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"9":162,"10":156},"isBase":true}}}, +{"id":80767,"name":"Band of Finding","icon":"inv_jewelry_ring_129","type":11,"stats":[240,0,360,0,0,0,162,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"6":162,"11":156},"isBase":true}}}, +{"id":80768,"name":"Moonwater Ring","icon":"inv_jewelry_ring_111","type":11,"stats":[0,0,360,240,0,0,180,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":180,"11":125},"isBase":true}}}, +{"id":80769,"name":"Serpentspine Band","icon":"inv_jewelry_ring_120","type":11,"stats":[0,0,360,240,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":160,"11":160},"isBase":true}}}, +{"id":80770,"name":"Lurking Tiger Band","icon":"inv_jewelry_ring_129","type":11,"stats":[0,240,360,0,0,0,0,148,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"7":148,"11":167},"isBase":true}}}, +{"id":80771,"name":"Ring of Restoration","icon":"inv_jewelry_ring_127","type":11,"stats":[240,0,360,0,0,0,0,0,0,167,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"9":167,"11":148},"isBase":true}}}, +{"id":80772,"name":"Blossoming Ring","icon":"inv_jewelry_ring_112","type":11,"stats":[240,0,360,0,0,0,167,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"6":167,"7":148},"isBase":true}}}, +{"id":80773,"name":"Singing Cricket Medallion","icon":"inv_inscription_pigment_bug03","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":80774,"name":"Grove Viper Medallion","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":80775,"name":"Coral Adder Medallion","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":80776,"name":"Flamelager Medallion","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"9":406},"isBase":true}}}, +{"id":80777,"name":"Amberfly Idol","icon":"inv_inscription_pigment_bug06","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":80778,"name":"Silkbead Idol","icon":"inv_misc_food_meat_raw_09","type":12,"stats":[0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"7":406},"isBase":true}}}, +{"id":80779,"name":"Mirror Strider Emblem","icon":"inv_inscription_pigment_bug07","type":12,"stats":[0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"7":406},"isBase":true}}}, +{"id":80780,"name":"Greenpaw Idol","icon":"inv_qirajidol_obsidian","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":80781,"name":"Shoots of Life","icon":"inv_misc_food_165_bambooshoot01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"10":406},"isBase":true}}}, +{"id":80782,"name":"Misty Jade Idol","icon":"ability_creature_disease_04","type":12,"stats":[0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"7":406},"isBase":true}}}, +{"id":80783,"name":"Veridian Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,360,240,0,0,121,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":121,"11":182,"22":718},"isBase":true}}}, +{"id":80784,"name":"Nectarbreeze Cloak","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[0,0,360,240,0,0,165,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":165,"7":152,"22":718},"isBase":true}}}, +{"id":80785,"name":"Mann's Cloak","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,240,360,0,0,0,0,156,0,0,0,162,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"7":156,"11":162,"22":718},"isBase":true}}}, +{"id":80786,"name":"Honey-Bear's Cape","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[240,0,360,0,0,0,0,0,0,0,169,144,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"10":169,"11":144,"22":718},"isBase":true}}}, +{"id":80787,"name":"Cloudfall Cloak","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[240,0,360,0,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"6":160,"11":160,"22":718},"isBase":true}}}, +{"id":80788,"name":"Jinyu Meditation Staff","icon":"inv_staff_2h_pandariaquest_b_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,778,519,0,0,0,295,0,0,0,376,0,0,2973,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"weaponSpeed":3.3,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"stats":{"2":778,"3":519,"7":295,"11":376,"14":2973},"isBase":true}}}, +{"id":80789,"name":"Jinyu Divining Rod","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,778,519,0,0,304,0,0,0,0,371,0,0,2973,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"weaponSpeed":3.3,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"stats":{"2":778,"3":519,"6":304,"11":371,"14":2973},"isBase":true}}}, +{"id":80790,"name":"Jinyu Combat Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,519,778,0,0,0,0,371,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":5005,"weaponDamageMax":7508,"weaponSpeed":3.3,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":5005,"weaponDamageMax":7508,"stats":{"1":519,"2":778,"7":371,"11":304},"isBase":true}}}, +{"id":80791,"name":"Jinyu Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[519,0,778,0,0,0,0,0,304,0,0,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"weaponSpeed":3.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"stats":{"0":519,"2":778,"8":304,"11":371},"isBase":true}}}, +{"id":80792,"name":"Jinyu Handaxe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[222,0,334,0,0,0,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"0":222,"2":334,"6":148,"7":148},"isBase":true}}}, +{"id":80793,"name":"Jinyu Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,519,778,0,0,0,0,346,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":3848,"weaponDamageMax":7148,"weaponSpeed":2.9,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":3848,"weaponDamageMax":7148,"stats":{"1":519,"2":778,"7":346,"11":346},"isBase":true}}}, +{"id":80794,"name":"Jinyu Battleaxe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[222,0,334,0,0,0,0,0,0,120,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"0":222,"2":334,"9":120,"11":165},"isBase":true}}}, +{"id":80795,"name":"Jinyu Ritual Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,334,222,116,0,0,0,0,0,0,167,0,0,2973,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":787,"weaponDamageMax":1462,"weaponSpeed":1.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":787,"weaponDamageMax":1462,"stats":{"2":334,"3":222,"4":116,"11":167,"14":2973},"isBase":true}}}, +{"id":80796,"name":"Jinyu Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,222,334,0,0,0,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":1771,"weaponDamageMax":3291,"weaponSpeed":1.8,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":1771,"weaponDamageMax":3291,"stats":{"1":222,"2":334,"6":148,"7":148},"isBase":true}}}, +{"id":80797,"name":"Jinyu Combat Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,222,334,0,0,0,148,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"1":222,"2":334,"6":148,"11":148},"isBase":true}}}, +{"id":80798,"name":"Greataxe of Honor","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[519,0,778,0,0,0,371,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"weaponSpeed":3.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"stats":{"0":519,"2":778,"6":371,"11":304},"isBase":true}}}, +{"id":80799,"name":"Sword of Honor","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[222,0,334,0,0,0,0,148,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"0":222,"2":334,"7":148,"11":148},"isBase":true}}}, +{"id":80800,"name":"Tian Defender","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[289,0,434,0,0,0,0,0,0,0,160,212,0,0,0,0,0,0,0,0,0,0,12648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":550,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":550,"stats":{"0":289,"2":434,"10":160,"11":212,"22":12648},"isBase":true}}}, +{"id":80801,"name":"Tian Protector","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,434,289,165,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":550,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":550,"stats":{"2":434,"3":289,"4":165,"7":210,"22":12648},"isBase":true}}}, +{"id":80802,"name":"Blade of Honor","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,222,334,0,0,0,0,148,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":1771,"weaponDamageMax":3291,"weaponSpeed":1.8,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":1771,"weaponDamageMax":3291,"stats":{"1":222,"2":334,"7":148,"11":148},"isBase":true}}}, +{"id":80803,"name":"Mace of Honor","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,222,334,0,0,0,0,148,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"1":222,"2":334,"7":148,"11":148},"isBase":true}}}, +{"id":80811,"name":"Spiritguard Helm","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[469,0,703,0,0,0,0,0,0,274,0,335,0,0,0,0,0,0,0,0,0,0,3075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"9":274,"11":335,"22":3075},"isBase":true}}}, +{"id":80860,"name":"Waterburst Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,824,549,339,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":549,"4":339,"6":382,"22":2366},"isBase":true}}}, +{"id":80861,"name":"Riverbed Chestguard","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[549,0,824,0,0,0,393,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"0":549,"2":824,"6":393,"7":321,"22":3977},"isBase":true}}}, +{"id":80862,"name":"Treads of Corrupted Water","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,611,408,276,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"4":276,"11":265,"22":1439},"isBase":true}}}, +{"id":80863,"name":"Stonestep Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[306,0,611,0,0,213,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,2734,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":306,"2":611,"5":213,"9":408,"22":2734},"isBase":true}}}, +{"id":80864,"name":"Girdle of Endemic Anger","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,611,408,0,288,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"5":288,"6":245,"22":925},"isBase":true}}}, +{"id":80865,"name":"Sunheart Waistband","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,611,408,284,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"4":284,"11":252,"22":1638},"isBase":true}}}, +{"id":80866,"name":"Cape of Entanglement","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,459,306,0,0,204,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"6":204,"7":204,"22":822},"isBase":true}}}, +{"id":80867,"name":"Serpentstrike Shoulderpads","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[408,0,611,0,0,0,258,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2983,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":408,"2":611,"6":258,"11":280,"22":2983},"isBase":true}}}, +{"id":80868,"name":"Doubtridden Shoulderguards","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,408,611,0,0,265,0,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"5":265,"8":276,"22":1570},"isBase":true}}}, +{"id":80869,"name":"Hopecrusher Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,408,611,0,0,0,299,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"6":299,"7":225,"22":1820},"isBase":true}}}, +{"id":80870,"name":"Chestguard of Despair","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,824,549,398,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":549,"4":398,"11":312,"22":2093},"isBase":true}}}, +{"id":80871,"name":"Neverdare Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,611,408,284,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"4":284,"7":252,"22":2184},"isBase":true}}}, +{"id":80872,"name":"Firebelcher Hand Cannon","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,549,824,0,0,0,377,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":4210,"weaponDamageMax":7820,"weaponSpeed":3,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":4210,"weaponDamageMax":7820,"stats":{"1":549,"2":824,"6":377,"7":348},"isBase":true}}}, +{"id":80873,"name":"Dubious Handaxe","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[235,0,353,0,0,0,168,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"6":168,"8":137},"isBase":true}}}, +{"id":80874,"name":"Staff of Trembling Will","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,824,549,0,0,312,398,0,0,0,0,0,0,3145,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":2726,"weaponDamageMax":4090,"weaponSpeed":3.4,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":2726,"weaponDamageMax":4090,"stats":{"2":824,"3":549,"6":312,"7":398,"14":3145},"isBase":true}}}, +{"id":80883,"name":"Crescent of Ichor","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,297,446,0,0,0,0,201,0,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":565,"weaponDamageMin":3416,"weaponDamageMax":6345,"weaponSpeed":2.6,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"435":{"randPropPoints":565,"weaponDamageMin":3416,"weaponDamageMax":6345,"stats":{"1":297,"2":446,"7":201,"11":193},"isBase":true}}}, +{"id":80892,"name":"Ook's Hozen Slicer","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[235,0,353,0,0,0,0,0,170,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"0":235,"2":353,"8":170,"11":134},"isBase":true}}}, +{"id":80893,"name":"Bottle of Potent Potables","icon":"inv_offhand_1h_pandung_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,459,306,0,0,0,210,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"7":210,"11":194},"isBase":true}}}, +{"id":80894,"name":"Gao's Keg Tapper","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,235,353,0,0,134,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"weaponSpeed":2.6,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":447,"weaponDamageMin":2706,"weaponDamageMax":5026,"stats":{"1":235,"2":353,"5":134,"11":170},"isBase":true}}}, +{"id":80895,"name":"Yan-Zhu's Pressure Valve","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,549,824,0,0,278,0,0,0,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"weaponDamageMin":3929,"weaponDamageMax":7298,"weaponSpeed":2.8,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":1044,"weaponDamageMin":3929,"weaponDamageMax":7298,"stats":{"1":549,"2":824,"5":278,"11":417},"isBase":true}}}, +{"id":80896,"name":"Nimbletoe Chestguard","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,549,824,0,0,0,372,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":549,"2":824,"6":372,"7":357,"22":2093},"isBase":true}}}, +{"id":80897,"name":"Bracers of Displaced Air","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,459,306,0,0,0,216,0,0,0,184,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"7":216,"11":184,"22":719},"isBase":true}}}, +{"id":80898,"name":"Hopping Mad Leggings","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,549,824,0,0,366,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"1":549,"2":824,"5":366,"6":366,"22":2548},"isBase":true}}}, +{"id":80899,"name":"Bubble-Breaker Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[306,0,459,0,0,0,0,0,0,189,213,0,0,0,0,0,0,0,0,0,0,0,1740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":306,"2":459,"9":189,"10":213,"22":1740},"isBase":true}}}, +{"id":80900,"name":"Fizzy Spaulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,408,611,0,0,0,252,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"6":252,"7":284,"22":1570},"isBase":true}}}, +{"id":80901,"name":"Sudsy Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,824,549,366,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":549,"4":366,"11":366,"22":3480},"isBase":true}}}, +{"id":80902,"name":"Uncasked Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,824,549,403,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1044,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":1044,"stats":{"2":824,"3":549,"4":403,"7":304,"22":2912},"isBase":true}}}, +{"id":80903,"name":"Fermenting Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,611,408,310,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"4":310,"11":206,"22":925},"isBase":true}}}, +{"id":80908,"name":"Sparkbreath Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[515,0,772,0,0,0,0,0,0,261,391,0,0,0,0,0,0,0,0,0,0,0,2489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"0":515,"2":772,"9":261,"10":391,"22":2489},"isBase":true}}}, +{"id":80909,"name":"Azure Serpent Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,693,1040,0,0,417,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1318,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"435":{"randPropPoints":1318,"stats":{"1":693,"2":1040,"5":417,"6":489,"22":3240},"isBase":true}}}, +{"id":80910,"name":"Leggings of the Charging Soul","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,1040,693,0,0,469,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1318,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"435":{"randPropPoints":1318,"stats":{"2":1040,"3":693,"6":469,"7":450,"22":2835},"isBase":true}}}, +{"id":80911,"name":"Quivering Heart Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,772,515,343,0,0,0,0,0,0,343,0,0,0,0,0,0,0,0,0,0,2489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"2":772,"3":515,"4":343,"11":343,"22":2489},"isBase":true}}}, +{"id":80912,"name":"Gauntlets of Resolute Fury","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[515,0,772,0,0,0,0,0,0,378,0,285,0,0,0,0,0,0,0,0,0,0,2765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"0":515,"2":772,"9":378,"11":285,"22":2765},"isBase":true}}}, +{"id":80913,"name":"Gloves of Enraged Slaughter","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,772,515,0,0,0,368,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"2":772,"3":515,"7":368,"11":301,"22":1143},"isBase":true}}}, +{"id":80915,"name":"Spike-Soled Stompers","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[515,0,772,0,0,0,0,353,0,0,0,326,0,0,0,0,0,0,0,0,0,0,3042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"0":515,"2":772,"7":353,"11":326,"22":3042},"isBase":true}}}, +{"id":80916,"name":"Shadowspine Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,515,772,0,0,0,309,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"1":515,"2":772,"6":309,"7":363,"22":2430},"isBase":true}}}, +{"id":80917,"name":"Blastwalker Footguards","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,772,515,0,0,318,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"2":772,"3":515,"6":318,"11":358,"22":2227},"isBase":true}}}, +{"id":80918,"name":"Mindbinder Plate Gloves","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,772,515,348,0,0,0,0,0,0,335,0,0,0,0,0,0,0,0,0,0,2765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":979,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":979,"stats":{"2":772,"3":515,"4":348,"11":335,"22":2765},"isBase":true}}}, +{"id":80919,"name":"Darkbinder Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,1040,693,489,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1318,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":1318,"stats":{"2":1040,"3":693,"4":489,"7":417,"22":2037},"isBase":true}}}, +{"id":80920,"name":"Fallout Filter","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,797,555,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":555,"7":492,"22":1577},"isBase":true}}}, +{"id":80921,"name":"Saboteur's Stabilizing Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,444,666,0,0,0,0,300,288,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"7":300,"8":288,"22":1081},"isBase":true}}}, +{"id":80922,"name":"Airstream Treads","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,888,592,375,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":375,"7":406,"22":1698},"isBase":true}}}, +{"id":80923,"name":"Impaler's Girdle","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,592,888,0,0,0,401,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":401,"8":385,"22":1933},"isBase":true}}}, +{"id":80924,"name":"Acid-Scarred Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[592,0,888,0,0,0,356,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"6":356,"8":418,"22":3520},"isBase":true}}}, +{"id":80925,"name":"Swarmcall Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,797,1195,0,0,0,577,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":577,"11":453,"22":2792},"isBase":true}}}, +{"id":80926,"name":"Leggings of the Frenzy","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1195,797,0,0,0,505,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"7":505,"11":547,"22":1698},"isBase":true}}}, +{"id":80927,"name":"Hive Protector's Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[592,0,888,0,0,346,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"5":346,"11":423,"22":2933},"isBase":true}}}, +{"id":80928,"name":"Treads of Fixation","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,592,888,0,0,337,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"5":337,"6":429,"22":2363},"isBase":true}}}, +{"id":80929,"name":"Wall-Breaker Legguards","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,797,1195,0,0,0,0,0,518,0,0,539,0,0,0,0,0,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"8":518,"11":539,"22":2161},"isBase":true}}}, +{"id":80930,"name":"Swarmbringer Chestguard","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1195,797,547,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":547,"11":505,"22":4693},"isBase":true}}}, +{"id":80931,"name":"Shield of the Protectorate","icon":"inv_shield_pandung_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,666,444,253,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":253,"7":322,"22":15053},"isBase":true}}}, +{"id":80932,"name":"Carapace Breaker","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,512,341,228,0,0,228,0,0,0,0,0,0,4561,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1435,"weaponDamageMax":2666,"weaponSpeed":1.9,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":1435,"weaponDamageMax":2666,"stats":{"2":512,"3":341,"4":228,"7":228,"14":4561},"isBase":true}}}, +{"id":80933,"name":"Mantid Trochanter","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,341,512,0,0,0,222,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"weaponSpeed":1.8,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"stats":{"1":341,"2":512,"6":222,"7":231},"isBase":true}}}, +{"id":80934,"name":"Pendant of Precise Timing","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,666,444,0,317,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"5":317,"6":260},"isBase":true}}}, +{"id":80935,"name":"Shield of Blind Hate","icon":"inv_shield_pandung_c_01","type":13,"weaponType":7,"handType":3,"stats":[386,0,579,0,0,0,0,0,0,272,232,0,0,0,0,0,0,0,0,0,0,0,14192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":734,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":734,"stats":{"0":386,"2":579,"9":272,"10":232,"22":14192},"isBase":true}}}, +{"id":80936,"name":"Warmace of Taran Zhu","icon":"inv_mace_2h_pandung_c_01","type":13,"weaponType":4,"handType":4,"stats":[693,0,1040,0,0,0,428,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1318,"weaponDamageMin":7289,"weaponDamageMax":10934,"weaponSpeed":3.6,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"435":{"randPropPoints":1318,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":693,"2":1040,"6":428,"11":483},"isBase":true}}}, +{"id":80937,"name":"Snowdrift's Bladed Staff","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,693,1040,0,0,0,0,0,439,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1318,"weaponDamageMin":6479,"weaponDamageMax":9719,"weaponSpeed":3.2,"ilvl":435,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"435":{"randPropPoints":1318,"weaponDamageMin":6479,"weaponDamageMax":9719,"stats":{"1":693,"2":1040,"8":439,"11":476},"isBase":true}}}, +{"id":80946,"name":"Peacebreaker's Leather Helm","icon":"inv_helmet_183v2","type":1,"armorType":2,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":1439},"isBase":true}}}, +{"id":80947,"name":"Peacebreaker's Chain Helm","icon":"inv_helmet_184v3","type":1,"armorType":3,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":2071},"isBase":true}}}, +{"id":80948,"name":"Peacebreaker's Silk Cowl","icon":"inv_helmet_robe_common_c_01v2","type":1,"armorType":1,"stats":[0,0,578,385,0,0,283,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"7":213,"22":1093},"isBase":true}}}, +{"id":80949,"name":"Peacebreaker's Satin Hood","icon":"inv_helmet_robe_common_c_01v2","type":1,"armorType":1,"stats":[0,0,578,385,0,0,238,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":238,"7":268,"22":1093},"isBase":true}}}, +{"id":80950,"name":"Peacebreaker's Hide Helm","icon":"inv_helmet_183v2","type":1,"armorType":2,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1439},"isBase":true}}}, +{"id":80951,"name":"Peacebreaker's Ringmail Helm","icon":"inv_helmet_184v3","type":1,"armorType":3,"stats":[0,0,578,385,195,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":195,"7":293,"22":2071},"isBase":true}}}, +{"id":80952,"name":"Peacebreaker's Burnished Headcover","icon":"inv_helmet_185v2","type":1,"armorType":4,"stats":[0,0,578,385,244,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":244,"6":265,"22":2891},"isBase":true}}}, +{"id":80953,"name":"Peacebreaker's Armored Helm","icon":"inv_helmet_185v2","type":1,"armorType":4,"stats":[385,0,578,0,0,257,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":257,"11":257,"22":2891},"isBase":true}}}, +{"id":80954,"name":"Peacebreaker's Heavy Helm","icon":"inv_helmet_185v2","type":1,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,207,0,286,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"9":207,"11":286,"22":2891},"isBase":true}}}, +{"id":80955,"name":"Scavenger's Loop","icon":"inv_jewelry_ring_04","type":11,"stats":[0,215,322,0,0,163,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"5":163,"11":109},"isBase":true}}}, +{"id":80956,"name":"Scavenger's Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,322,215,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"11":143},"isBase":true}}}, +{"id":80957,"name":"Scavenger's Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,322,215,161,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":161,"7":112},"isBase":true}}}, +{"id":80958,"name":"Scavenger's Seal","icon":"inv_jewelry_ring_04","type":11,"stats":[215,0,322,0,0,0,0,163,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"7":163,"11":109},"isBase":true}}}, +{"id":80959,"name":"Scavenger's Signet","icon":"inv_jewelry_ring_04","type":11,"stats":[215,0,322,0,0,0,0,0,0,122,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":122,"10":155},"isBase":true}}}, +{"id":80960,"name":"Scavenger's Medal","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"6":363},"isBase":true}}}, +{"id":80961,"name":"Scavenger's Emblem","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"7":363},"isBase":true}}}, +{"id":80962,"name":"Scavenger's Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"4":363},"isBase":true}}}, +{"id":80963,"name":"Scavenger's Badge","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"6":363},"isBase":true}}}, +{"id":80964,"name":"Scavenger's Insignia","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"9":363},"isBase":true}}}, +{"id":80965,"name":"Scavenger's Cape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,215,322,0,0,0,145,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":145,"8":139,"22":673},"isBase":true}}}, +{"id":80966,"name":"Scavenger's Drape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,322,215,0,112,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"5":112,"6":161,"22":673},"isBase":true}}}, +{"id":80967,"name":"Scavenger's Shawl","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143,"22":673},"isBase":true}}}, +{"id":80968,"name":"Scavenger's Cloak","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[215,0,322,0,0,0,112,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":112,"11":161,"22":673},"isBase":true}}}, +{"id":80969,"name":"Scavenger's Manteau","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[215,0,322,0,0,0,0,0,109,0,163,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"8":109,"10":163,"22":673},"isBase":true}}}, +{"id":80970,"name":"Airship Gunner's Rifle","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,385,578,0,0,0,238,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"stats":{"1":385,"2":578,"6":238,"7":268},"isBase":true}}}, +{"id":80971,"name":"Parachute Cord Slicer","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,118,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":118,"11":97},"isBase":true}}}, +{"id":80972,"name":"Land Claimer's Cudgel","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,0,94,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"7":94,"11":120},"isBase":true}}}, +{"id":80973,"name":"Staff of the Mist Navigator","icon":"inv_weapon_halberd_20","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,232,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"stats":{"1":385,"2":578,"6":232,"11":272},"isBase":true}}}, +{"id":80974,"name":"Staff of Rolling Thunder","icon":"inv_weapon_halberd_24","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,0,261,0,0,0,251,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"7":261,"11":251,"14":2208},"isBase":true}}}, +{"id":80975,"name":"Stormcaller's Spellaxe","icon":"inv_axe_80","type":13,"weaponType":1,"handType":2,"stats":[0,0,248,165,117,0,0,99,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"4":117,"7":99,"14":2207},"isBase":true}}}, +{"id":80976,"name":"Trench Medic's Staff","icon":"inv_weapon_halberd_24","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,257,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"4":257,"11":257,"14":2208},"isBase":true}}}, +{"id":80977,"name":"Shock Trooper's Battleaxe","icon":"inv_axe_80","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,115,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":115,"7":102},"isBase":true}}}, +{"id":80978,"name":"Standard Bearer's War Cudgel","icon":"inv_mace_66","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,276,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"7":276,"11":225},"isBase":true}}}, +{"id":80979,"name":"Foe Flattening Warhammer","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,99,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"9":99,"10":117},"isBase":true}}}, +{"id":80980,"name":"Axe of Aborted Deforestation","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,89,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":89,"11":123},"isBase":true}}}, +{"id":80981,"name":"Scavenged Rotor Blade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,113,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":113,"7":105},"isBase":true}}}, +{"id":80982,"name":"Scavenger's Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,155,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":155,"11":122,"22":12103},"isBase":true}}}, +{"id":80983,"name":"Extravagant Tree Chopper","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,0,99,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"7":99,"11":117},"isBase":true}}}, +{"id":80984,"name":"Expropriator's Greataxe","icon":"inv_axe_82","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":232,"7":272},"isBase":true}}}, +{"id":80985,"name":"Scavenger's Barrier","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,161,112,0,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":161,"10":112,"22":12103},"isBase":true}}}, +{"id":80986,"name":"Scavenger's Leather Spaulders","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,286,429,0,0,0,0,210,0,0,0,158,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"7":210,"11":158,"22":1328},"isBase":true}}}, +{"id":80987,"name":"Scavenger's Chain Spaulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,286,429,0,0,0,0,212,0,0,0,154,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"7":212,"11":154,"22":1911},"isBase":true}}}, +{"id":80988,"name":"Scavenger's Silk Amice","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,429,286,0,0,215,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"11":149,"22":1009},"isBase":true}}}, +{"id":80989,"name":"Scavenger's Satin Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,429,286,0,0,0,210,0,0,0,158,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"7":210,"11":158,"22":1009},"isBase":true}}}, +{"id":80990,"name":"Scavenger's Hide Spaulders","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,429,286,0,0,215,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"11":149,"22":1328},"isBase":true}}}, +{"id":80991,"name":"Scavenger's Ringmail Spaulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,429,286,199,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":199,"6":177,"22":1911},"isBase":true}}}, +{"id":80992,"name":"Scavenger's Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[0,0,429,286,215,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":215,"7":149,"22":2669},"isBase":true}}}, +{"id":80993,"name":"Scavenger's Armored Shoulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[286,0,429,0,0,0,0,0,158,0,0,210,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"8":158,"11":210,"22":2669},"isBase":true}}}, +{"id":80994,"name":"Scavenger's Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[286,0,429,0,0,191,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":191,"9":191,"22":2669},"isBase":true}}}, +{"id":80995,"name":"Leather Tunic of Eniment Domain","icon":"inv_chest_leather_30v2","type":5,"armorType":2,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":1771},"isBase":true}}}, +{"id":80996,"name":"Chain Armor of Eminent Domain","icon":"inv_chest_mail_18v3","type":5,"armorType":3,"stats":[0,385,578,0,0,0,244,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":244,"11":265,"22":2548},"isBase":true}}}, +{"id":80997,"name":"Silk Robe of Eminent Domain","icon":"inv_chest_robe_common_c_01v2","type":5,"armorType":1,"stats":[0,0,578,385,0,0,0,272,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"7":272,"11":232,"22":1346},"isBase":true}}}, +{"id":80998,"name":"Satin Robe of Eminent Domain","icon":"inv_chest_robe_common_c_01v2","type":5,"armorType":1,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1346},"isBase":true}}}, +{"id":80999,"name":"Hide Tunic of Eminent Domain","icon":"inv_chest_leather_30v2","type":5,"armorType":2,"stats":[0,0,578,385,0,0,265,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":265,"7":244,"22":1771},"isBase":true}}}, +{"id":81000,"name":"Ringmail Armor of Eminent Domain","icon":"inv_chest_mail_18v3","type":5,"armorType":3,"stats":[0,0,578,385,213,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"6":283,"22":2548},"isBase":true}}}, +{"id":81001,"name":"Burnished Chestguard of Eminent Domain","icon":"inv_chest_plate30v2","type":5,"armorType":4,"stats":[0,0,578,385,290,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":290,"11":201,"22":3559},"isBase":true}}}, +{"id":81002,"name":"Armored Chestpiece of Eminent Domain","icon":"inv_chest_plate30v2","type":5,"armorType":4,"stats":[385,0,578,0,0,0,290,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"6":290,"11":201,"22":3559},"isBase":true}}}, +{"id":81003,"name":"Heavy Chestpiece of Eminent Domain","icon":"inv_chest_plate30v2","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,290,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":290,"11":201,"22":3559},"isBase":true}}}, +{"id":81004,"name":"Honorary Combat Engineer's Leather Trousers","icon":"inv_pants_leather_42v2","type":9,"armorType":2,"stats":[0,385,578,0,0,0,207,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":207,"7":286,"22":1550},"isBase":true}}}, +{"id":81005,"name":"Honorary Combat Engineer's Chain Leggings","icon":"inv_pants_mail_38v3","type":9,"armorType":3,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":2230},"isBase":true}}}, +{"id":81006,"name":"Honorary Combat Engineer's Silk Trousers","icon":"inv_pants_robe_common_c_01v2","type":9,"armorType":1,"stats":[0,0,578,385,0,0,290,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":290,"7":201,"22":1177},"isBase":true}}}, +{"id":81007,"name":"Honorary Combat Engineer's Satin Leggings","icon":"inv_pants_robe_common_c_01v2","type":9,"armorType":1,"stats":[0,0,578,385,0,0,283,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"11":213,"22":1177},"isBase":true}}}, +{"id":81008,"name":"Honorary Combat Engineer's Hide Leggings","icon":"inv_pants_leather_42v2","type":9,"armorType":2,"stats":[0,0,578,385,268,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":268,"11":238,"22":1550},"isBase":true}}}, +{"id":81009,"name":"Honorary Combat Engineer's Ringmail Leggings","icon":"inv_pants_mail_38v3","type":9,"armorType":3,"stats":[0,0,578,385,213,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"11":283,"22":2230},"isBase":true}}}, +{"id":81010,"name":"Honorary Combat Engineer's Burnished Legplates","icon":"inv_pants_plate_41v2","type":9,"armorType":4,"stats":[0,0,578,385,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":232,"7":272,"22":3114},"isBase":true}}}, +{"id":81011,"name":"Honorary Combat Engineer's Legguards","icon":"inv_pants_plate_41v2","type":9,"armorType":4,"stats":[385,0,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"7":195,"11":293,"22":3114},"isBase":true}}}, +{"id":81012,"name":"Honorary Combat Engineer's Heavy Legplates","icon":"inv_pants_plate_41v2","type":9,"armorType":4,"stats":[385,0,578,0,0,232,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":232,"8":272,"22":3114},"isBase":true}}}, +{"id":81013,"name":"Landfall Leather Boots","icon":"inv_boots_leather_14v2","type":10,"armorType":2,"stats":[0,286,429,0,0,0,0,0,167,0,0,205,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"8":167,"11":205,"22":1218},"isBase":true}}}, +{"id":81014,"name":"Landfall Chain Boots","icon":"inv_boots_mail_13v3","type":10,"armorType":3,"stats":[0,286,429,0,0,0,167,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":167,"11":205,"22":1752},"isBase":true}}}, +{"id":81015,"name":"Landfall Silk Treads","icon":"inv_boots_robe_common_c_01v2","type":10,"armorType":1,"stats":[0,0,429,286,0,0,215,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"11":149,"22":925},"isBase":true}}}, +{"id":81016,"name":"Landfall Satin Treads","icon":"inv_boots_robe_common_c_01v2","type":10,"armorType":1,"stats":[0,0,429,286,0,0,212,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":212,"7":154,"22":925},"isBase":true}}}, +{"id":81017,"name":"Landfall Moccasins","icon":"inv_boots_leather_14v2","type":10,"armorType":2,"stats":[0,0,429,286,181,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":181,"7":196,"22":1218},"isBase":true}}}, +{"id":81018,"name":"Landfall Sabatons","icon":"inv_boots_mail_13v3","type":10,"armorType":3,"stats":[0,0,429,286,149,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":149,"6":215,"22":1752},"isBase":true}}}, +{"id":81019,"name":"Landfall Burnished Greaves","icon":"inv_boots_plate_22v2","type":10,"armorType":4,"stats":[0,0,429,286,202,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":202,"6":172,"22":2447},"isBase":true}}}, +{"id":81020,"name":"Landfall Warboots","icon":"inv_boots_plate_22v2","type":10,"armorType":4,"stats":[286,0,429,0,0,0,215,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":215,"8":149,"22":2447},"isBase":true}}}, +{"id":81021,"name":"Landfall Plate Boots","icon":"inv_boots_plate_22v2","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,202,172,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":202,"11":172,"22":2447},"isBase":true}}}, +{"id":81022,"name":"Cagebreaker's Leather Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,286,429,0,0,0,205,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":205,"11":167,"22":996},"isBase":true}}}, +{"id":81023,"name":"Cagebreaker's Chain Links","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,286,429,0,0,0,172,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":172,"7":202,"22":1433},"isBase":true}}}, +{"id":81024,"name":"Cagebreaker's Silk Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,429,286,0,202,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"5":202,"6":172,"22":757},"isBase":true}}}, +{"id":81025,"name":"Cagebreaker's Satin Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,429,286,194,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":194,"6":186,"22":757},"isBase":true}}}, +{"id":81026,"name":"Cagebreaker's Hide Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,429,286,0,0,186,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":186,"7":194,"22":996},"isBase":true}}}, +{"id":81027,"name":"Cagebreaker's Ringmail Waistguard","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,0,429,286,217,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":217,"7":145,"22":1433},"isBase":true}}}, +{"id":81028,"name":"Cagebreaker's Burnished Clasp","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,429,286,0,0,199,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":199,"11":177,"22":2002},"isBase":true}}}, +{"id":81029,"name":"Cagebreaker's Armored Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[286,0,429,0,0,0,217,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":217,"11":145,"22":2002},"isBase":true}}}, +{"id":81030,"name":"Cagebreaker's Heavy Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[286,0,429,0,0,0,0,0,149,215,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"8":149,"9":215,"22":2002},"isBase":true}}}, +{"id":81031,"name":"Scavenger's Leather Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,286,429,0,0,0,196,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":196,"7":181,"22":1107},"isBase":true}}}, +{"id":81032,"name":"Scavenger's Chain Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,286,429,0,0,0,0,0,167,0,0,205,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"8":167,"11":205,"22":1593},"isBase":true}}}, +{"id":81033,"name":"Scavenger's Silk Handguards","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,429,286,0,0,217,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":217,"7":145,"22":841},"isBase":true}}}, +{"id":81034,"name":"Scavenger's Satin Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,429,286,215,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":215,"7":149,"22":841},"isBase":true}}}, +{"id":81035,"name":"Scavenger's Hide Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,429,286,215,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":215,"6":149,"22":1107},"isBase":true}}}, +{"id":81036,"name":"Scavenger's Ringmail Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,429,286,196,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":196,"6":181,"22":1593},"isBase":true}}}, +{"id":81037,"name":"Scavenger's Burnished Gloves","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[0,0,429,286,158,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":158,"7":210,"22":2224},"isBase":true}}}, +{"id":81038,"name":"Scavenger's Armored Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[286,0,429,0,0,202,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":202,"11":172,"22":2224},"isBase":true}}}, +{"id":81039,"name":"Scavenger's Heavy Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[286,0,429,0,0,210,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":210,"11":158,"22":2224},"isBase":true}}}, +{"id":81040,"name":"Scavenger's Leather Armwraps","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,215,322,0,0,0,0,161,0,0,0,112,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"7":161,"11":112,"22":775},"isBase":true}}}, +{"id":81041,"name":"Scavenger's Chain Wristguards","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,215,322,0,0,0,0,163,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"7":163,"11":109,"22":1115},"isBase":true}}}, +{"id":81042,"name":"Scavenger's Silk Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,322,215,0,157,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"5":157,"7":119,"22":589},"isBase":true}}}, +{"id":81043,"name":"Scavenger's Satin Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,322,215,161,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":161,"11":112,"22":589},"isBase":true}}}, +{"id":81044,"name":"Scavenger's Hide Bindings","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,322,215,126,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":126,"7":153,"22":775},"isBase":true}}}, +{"id":81045,"name":"Scavenger's Ringmail Armbands","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,322,215,153,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":153,"6":126,"22":1115},"isBase":true}}}, +{"id":81046,"name":"Scavenger's Burnished Bracers","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[0,0,322,215,157,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":157,"6":119,"22":1557},"isBase":true}}}, +{"id":81047,"name":"Scavenger's Armored Bracers","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[215,0,322,0,0,157,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"5":157,"11":119,"22":1557},"isBase":true}}}, +{"id":81048,"name":"Scavenger's Heavy Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[215,0,322,0,0,0,0,0,0,0,132,149,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"10":132,"11":149,"22":1557},"isBase":true}}}, +{"id":81049,"name":"Scavenger's Necklace","icon":"inv_jewelry_necklace_70","type":2,"stats":[0,215,322,0,0,0,115,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":115,"11":159},"isBase":true}}}, +{"id":81050,"name":"Scavenger's Choker","icon":"inv_jewelry_necklace_70","type":2,"stats":[0,0,322,215,0,147,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"5":147,"11":136},"isBase":true}}}, +{"id":81051,"name":"Scavenger's Locket","icon":"inv_jewelry_necklace_70","type":2,"stats":[0,0,322,215,109,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":109,"7":163},"isBase":true}}}, +{"id":81052,"name":"Scavenger's Amulet","icon":"inv_jewelry_necklace_70","type":2,"stats":[215,0,322,0,0,0,126,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":126,"7":153},"isBase":true}}}, +{"id":81053,"name":"Scavenger's Pendant","icon":"inv_jewelry_necklace_70","type":2,"stats":[215,0,322,0,0,0,0,0,0,157,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":157,"11":119},"isBase":true}}}, +{"id":81058,"name":"Girdle of Endemic Anger","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,1164,776,0,547,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":458,"6":390,"22":1133}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"5":471,"6":401,"22":1146}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"5":508,"6":433,"22":1179},"upgradeStep":1}}}, +{"id":81059,"name":"Fermenting Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,1164,776,590,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":494,"11":329,"22":1133}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":508,"11":338,"22":1146}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":547,"11":365,"22":1179},"upgradeStep":1}}}, +{"id":81060,"name":"Sunheart Waistband","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,1164,776,540,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"11":401,"22":2007}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":465,"11":412,"22":2029}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":501,"11":444,"22":2088},"upgradeStep":1}}}, +{"id":81061,"name":"Ook's Hozen Slicer","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[448,0,671,0,0,0,0,0,324,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"8":272,"11":213}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"8":279,"11":219}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"8":301,"11":236},"upgradeStep":1}}}, +{"id":81062,"name":"Gao's Keg Tapper","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,448,671,0,0,255,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":213,"11":272}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"5":219,"11":279}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"5":236,"11":301},"upgradeStep":1}}}, +{"id":81063,"name":"Dubious Handaxe","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[448,0,671,0,0,0,320,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":268,"8":219}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"6":276,"8":225}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"6":297,"8":243},"upgradeStep":1}}}, +{"id":81064,"name":"Bracers of Displaced Air","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,872,582,0,0,0,410,0,0,0,350,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":344,"11":293,"22":881}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"7":354,"11":301,"22":891}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"7":381,"11":325,"22":917},"upgradeStep":1}}}, +{"id":81065,"name":"Bubble-Breaker Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[582,0,873,0,0,0,0,0,0,359,405,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":301,"10":339,"22":2132}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"9":309,"10":349,"22":2155}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"9":333,"10":376,"22":2218},"upgradeStep":1}}}, +{"id":81066,"name":"Yan-Zhu's Pressure Valve","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,1044,1566,0,0,529,0,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":7474,"weaponDamageMax":13882,"weaponSpeed":2.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6261,"weaponDamageMax":11629,"stats":{"1":875,"2":1312,"5":443,"11":665}},"463":{"randPropPoints":1710,"weaponDamageMin":6439,"weaponDamageMax":11959,"stats":{"1":899,"2":1349,"5":456,"11":683}},"471":{"randPropPoints":1843,"weaponDamageMin":6937,"weaponDamageMax":12884,"stats":{"1":969,"2":1454,"5":491,"11":737},"upgradeStep":1}}}, +{"id":81067,"name":"Firebelcher Hand Cannon","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,1044,1566,0,0,0,717,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":8008,"weaponDamageMax":14873,"weaponSpeed":3,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":600,"7":554}},"463":{"randPropPoints":1710,"weaponDamageMin":6899,"weaponDamageMax":12813,"stats":{"1":899,"2":1349,"6":617,"7":570}},"471":{"randPropPoints":1843,"weaponDamageMin":7433,"weaponDamageMax":13805,"stats":{"1":969,"2":1454,"6":665,"7":614},"upgradeStep":1}}}, +{"id":81068,"name":"Fizzy Spaulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,696,1164,0,0,0,439,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2057,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":361,"7":412,"22":1923}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"6":372,"7":425,"22":1944}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"6":404,"7":461,"22":2001},"upgradeStep":1}}}, +{"id":81069,"name":"Neverdare Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,1164,696,500,0,0,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2862,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":412,"7":361,"22":2676}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":425,"7":372,"22":2705}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":461,"7":404,"22":2784},"upgradeStep":1}}}, +{"id":81070,"name":"Serpentstrike Shoulderpads","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[696,0,1164,0,0,0,451,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":372,"11":406,"22":3654}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"6":383,"11":418,"22":3694}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"6":416,"11":454,"22":3802},"upgradeStep":1}}}, +{"id":81071,"name":"Doubtridden Shoulderguards","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,696,1164,0,0,464,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,2057,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"8":400,"22":1923}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"5":394,"8":412,"22":1944}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"5":428,"8":447,"22":2001},"upgradeStep":1}}}, +{"id":81072,"name":"Treads of Corrupted Water","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,1164,696,485,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"11":382,"22":1763}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":412,"11":394,"22":1782}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":447,"11":428,"22":1834},"upgradeStep":1}}}, +{"id":81073,"name":"Stonestep Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[503,0,1164,0,0,365,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":408,"2":974,"5":299,"9":609,"22":3350}},"463":{"randPropPoints":1270,"stats":{"0":422,"2":1002,"5":309,"9":628,"22":3386}},"471":{"randPropPoints":1369,"stats":{"0":461,"2":1080,"5":336,"9":680,"22":3485},"upgradeStep":1}}}, +{"id":81074,"name":"Hopecrusher Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,776,1164,0,0,0,569,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":476,"7":359,"22":2230}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"6":490,"7":369,"22":2254}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"6":528,"7":398,"22":2320},"upgradeStep":1}}}, +{"id":81075,"name":"Waterburst Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,1566,804,524,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"6":489,"22":2899}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"4":435,"6":506,"22":2931}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"4":478,"6":555,"22":3016},"upgradeStep":1}}}, +{"id":81076,"name":"Bottle of Potent Potables","icon":"inv_offhand_1h_pandung_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,872,582,0,0,0,399,0,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":335,"11":309}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"7":344,"11":318}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"7":371,"11":342},"upgradeStep":1}}}, +{"id":81077,"name":"Hopping Mad Leggings","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,964,1566,0,0,656,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":543,"6":543,"22":3122}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"5":560,"6":560,"22":3156}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"5":606,"6":606,"22":3248},"upgradeStep":1}}}, +{"id":81078,"name":"Sudsy Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,1566,964,656,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,4561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":543,"11":543,"22":4263}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":560,"11":560,"22":4310}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":606,"11":606,"22":4435},"upgradeStep":1}}}, +{"id":81079,"name":"Staff of Trembling Will","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1566,1044,0,0,594,756,0,0,0,0,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":5186,"weaponDamageMax":7780,"weaponSpeed":3.4,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4345,"weaponDamageMax":6518,"stats":{"2":1312,"3":875,"6":498,"7":634,"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4468,"weaponDamageMax":6702,"stats":{"2":1349,"3":899,"6":512,"7":652,"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4813,"weaponDamageMax":7221,"stats":{"2":1454,"3":969,"6":551,"7":702,"14":5551},"upgradeStep":1}}}, +{"id":81080,"name":"Nimbletoe Chestguard","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,964,1566,0,0,0,666,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"6":552,"7":528,"22":2564}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"6":569,"7":544,"22":2592}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"6":616,"7":590,"22":2668},"upgradeStep":1}}}, +{"id":81081,"name":"Uncasked Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1566,964,726,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":602,"7":444,"22":3568}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":620,"7":457,"22":3607}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":671,"7":496,"22":3712},"upgradeStep":1}}}, +{"id":81082,"name":"Chestguard of Despair","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1566,964,716,0,0,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":594,"11":458,"22":2564}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":612,"11":472,"22":2592}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":662,"11":511,"22":2668},"upgradeStep":1}}}, +{"id":81083,"name":"Riverbed Chestguard","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[964,0,1566,0,0,0,707,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"6":585,"7":472,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":819,"2":1349,"6":603,"7":486,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":889,"2":1454,"6":653,"7":527,"22":5069},"upgradeStep":1}}}, +{"id":81084,"name":"Cape of Entanglement","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,873,582,0,0,388,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":1007}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":334,"7":334,"22":1018}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":360,"7":360,"22":1048},"upgradeStep":1}}}, +{"id":81085,"name":"Impaler's Girdle","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,776,1164,0,0,0,525,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":440,"8":422,"22":2007}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"6":452,"8":434,"22":2029}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"6":487,"8":468,"22":2088},"upgradeStep":1}}}, +{"id":81086,"name":"Sparkbreath Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[776,0,1164,0,0,0,0,0,0,393,590,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"10":494,"22":2741}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"9":338,"10":508,"22":2771}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"9":365,"10":547,"22":2851},"upgradeStep":1}}}, +{"id":81087,"name":"Quivering Heart Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,1164,776,517,0,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":2741}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":445,"11":445,"22":2771}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":480,"11":480,"22":2851},"upgradeStep":1}}}, +{"id":81088,"name":"Mantid Trochanter","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,448,671,0,0,0,291,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":244,"7":254}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"1":385,"2":578,"6":251,"7":261}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"1":415,"2":623,"6":270,"7":281},"upgradeStep":1}}}, +{"id":81089,"name":"Crescent of Ichor","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,448,671,0,0,0,0,303,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"7":254,"11":244}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"7":261,"11":251}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"7":281,"11":270},"upgradeStep":1}}}, +{"id":81090,"name":"Saboteur's Stabilizing Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,582,873,0,0,0,0,394,378,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"8":317,"22":1122}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"7":339,"8":326,"22":1134}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"7":366,"8":351,"22":1167},"upgradeStep":1}}}, +{"id":81091,"name":"Wall-Breaker Legguards","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,964,1566,0,0,0,0,0,638,0,0,666,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"8":528,"11":552,"22":2243}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"8":544,"11":569,"22":2268}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"8":590,"11":616,"22":2334},"upgradeStep":1}}}, +{"id":81092,"name":"Leggings of the Charging Soul","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,1566,964,0,0,666,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"7":528,"22":3122}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"6":569,"7":544,"22":3156}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"6":616,"7":590,"22":3248},"upgradeStep":1}}}, +{"id":81093,"name":"Darkbinder Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,1566,964,697,0,0,587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":577,"7":486,"22":2243}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":595,"7":501,"22":2268}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":644,"7":543,"22":2334},"upgradeStep":1}}}, +{"id":81094,"name":"Carapace Breaker","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,671,448,298,0,0,298,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":1880,"weaponDamageMax":3493,"weaponSpeed":1.9,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"7":250,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1620,"weaponDamageMax":3009,"stats":{"2":578,"3":385,"4":257,"7":257,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1745,"weaponDamageMax":3242,"stats":{"2":623,"3":415,"4":277,"7":277,"14":5552},"upgradeStep":1}}}, +{"id":81095,"name":"Pendant of Precise Timing","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,872,582,0,416,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":358,"6":293}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":386,"6":316},"upgradeStep":1}}}, +{"id":81096,"name":"Shield of Blind Hate","icon":"inv_shield_pandung_c_01","type":13,"weaponType":7,"handType":3,"stats":[582,0,873,0,0,0,0,0,0,410,350,0,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":344,"10":293,"22":15628}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"9":354,"10":301,"22":15800}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"9":381,"10":325,"22":16259},"upgradeStep":1}}}, +{"id":81097,"name":"Shield of the Protectorate","icon":"inv_shield_pandung_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,873,582,331,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"7":353,"22":15628}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":285,"7":363,"22":15800}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":307,"7":391,"22":16259},"upgradeStep":1}}}, +{"id":81098,"name":"Acid-Scarred Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[696,0,1164,0,0,0,426,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":350,"8":418,"22":3654}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"6":361,"8":431,"22":3694}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"6":393,"8":468,"22":3802},"upgradeStep":1}}}, +{"id":81099,"name":"Shadowspine Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,696,1164,0,0,0,426,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2862,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":350,"7":418,"22":2676}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"6":361,"7":431,"22":2705}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"6":393,"7":468,"22":2784},"upgradeStep":1}}}, +{"id":81100,"name":"Hive Protector's Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[776,0,1164,0,0,454,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":380,"11":464,"22":3045}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"5":391,"11":478,"22":3079}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"5":421,"11":515,"22":3168},"upgradeStep":1}}}, +{"id":81101,"name":"Gauntlets of Resolute Fury","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[776,0,1164,0,0,0,0,0,0,569,0,429,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":476,"11":359,"22":3045}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"9":490,"11":369,"22":3079}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"9":528,"11":398,"22":3168},"upgradeStep":1}}}, +{"id":81102,"name":"Gloves of Enraged Slaughter","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1164,776,0,0,0,555,0,0,0,454,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":464,"11":380,"22":1259}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"7":478,"11":391,"22":1273}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"7":515,"11":421,"22":1310},"upgradeStep":1}}}, +{"id":81103,"name":"Mindbinder Plate Gloves","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,1164,776,525,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":440,"11":422,"22":3045}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":452,"11":434,"22":3079}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":487,"11":468,"22":3168},"upgradeStep":1}}}, +{"id":81104,"name":"Fallout-Filtering Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1566,804,607,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"7":420,"22":1637}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"4":506,"7":435,"22":1655}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"4":555,"7":478,"22":1703},"upgradeStep":1}}}, +{"id":81105,"name":"Swarmcall Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,804,1566,0,0,0,636,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":514,"11":378,"22":2899}},"463":{"randPropPoints":1710,"stats":{"1":659,"2":1349,"6":532,"11":392,"22":2931}},"471":{"randPropPoints":1843,"stats":{"1":729,"2":1454,"6":582,"11":431,"22":3016},"upgradeStep":1}}}, +{"id":81106,"name":"Leggings of the Frenzy","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1566,964,0,0,0,621,0,0,0,677,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":514,"11":560,"22":1763}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"7":530,"11":577,"22":1782}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"7":574,"11":625,"22":1834},"upgradeStep":1}}}, +{"id":81107,"name":"Warmace of Taran Zhu","icon":"inv_mace_2h_pandung_c_01","type":13,"weaponType":4,"handType":4,"stats":[1044,0,1566,0,0,0,644,0,0,0,0,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":540,"11":609}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"6":555,"11":626}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"6":598,"11":675},"upgradeStep":1}}}, +{"id":81108,"name":"Snowdrift's Bladed Staff","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1044,1566,0,0,0,0,0,661,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":9762,"weaponDamageMax":14644,"weaponSpeed":3.2,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8178,"weaponDamageMax":12268,"stats":{"1":875,"2":1312,"8":554,"11":600}},"463":{"randPropPoints":1710,"weaponDamageMin":8410,"weaponDamageMax":12616,"stats":{"1":899,"2":1349,"8":570,"11":617}},"471":{"randPropPoints":1843,"weaponDamageMin":9061,"weaponDamageMax":13592,"stats":{"1":969,"2":1454,"8":614,"11":665},"upgradeStep":1}}}, +{"id":81109,"name":"Swarmbringer Chestguard","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1566,964,677,0,0,0,0,0,0,621,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":560,"11":514,"22":4872}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":577,"11":530,"22":4926}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":625,"11":574,"22":5069},"upgradeStep":1}}}, +{"id":81110,"name":"Azure Serpent Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,964,1566,0,0,587,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":486,"6":577,"22":3568}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"5":501,"6":595,"22":3607}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"5":543,"6":644,"22":3712},"upgradeStep":1}}}, +{"id":81111,"name":"Airstream Treads","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,1164,696,451,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"7":406,"22":1763}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":383,"7":418,"22":1782}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":416,"7":454,"22":1834},"upgradeStep":1}}}, +{"id":81112,"name":"Treads of Fixation","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,696,1164,0,0,401,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":330,"6":431,"22":2453}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"5":340,"6":444,"22":2480}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"5":370,"6":482,"22":2552},"upgradeStep":1}}}, +{"id":81113,"name":"Spike-Soled Stompers","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[696,0,1164,0,0,0,0,492,0,0,0,451,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3350}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"7":418,"11":383,"22":3386}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"7":454,"11":416,"22":3485},"upgradeStep":1}}}, +{"id":81114,"name":"Blastwalker Footguards","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,1164,696,0,0,439,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":361,"11":412,"22":2453}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"6":372,"11":425,"22":2480}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"6":404,"11":461,"22":2552},"upgradeStep":1}}}, +{"id":81123,"name":"Wind-Soaked Drape","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,582,873,0,0,0,416,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"11":285,"22":1007}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":358,"11":293,"22":1018}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":386,"11":316,"22":1048},"upgradeStep":1}}}, +{"id":81124,"name":"Crystallized Droplet","icon":"inv_jewelry_ring_131","type":11,"stats":[442,0,873,0,0,295,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Wise Mari"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"9":488}},"463":{"randPropPoints":953,"stats":{"0":381,"2":752,"5":254,"9":501}},"471":{"randPropPoints":1027,"stats":{"0":410,"2":810,"5":274,"9":540},"upgradeStep":1}}}, +{"id":81125,"name":"Windswept Pages","icon":"inv_jewelry_trinket_15","type":12,"stats":[0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"463":{"randPropPoints":1270,"stats":{"1":847}},"471":{"randPropPoints":1369,"stats":{"1":913},"upgradeStep":1}}}, +{"id":81126,"name":"Leggings of Whispered Dreams","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,1566,964,753,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Lorewalker Stonestep"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":625,"6":403,"22":2243}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":643,"6":416,"22":2268}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":697,"6":451,"22":2334},"upgradeStep":1}}}, +{"id":81127,"name":"Flameheart Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,1164,696,492,0,0,0,0,0,0,451,0,0,0,0,0,0,0,0,0,0,1482,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"11":372,"22":1385}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":418,"11":383,"22":1400}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":454,"11":416,"22":1441},"upgradeStep":1}}}, +{"id":81128,"name":"Signet of Dancing Jade","icon":"inv_jewelry_ring_154","type":11,"stats":[0,582,873,0,0,0,359,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Liu Flameheart"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":301,"8":339}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":309,"8":349}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":333,"8":376},"upgradeStep":1}}}, +{"id":81129,"name":"Cloak of Failing Will","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[582,0,873,0,0,0,295,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":247,"11":371,"22":1007}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"6":254,"11":381,"22":1018}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"6":274,"11":410,"22":1048},"upgradeStep":1}}}, +{"id":81130,"name":"Binding of Broken Dreams","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[776,0,1164,0,0,0,517,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":433,"11":433,"22":2741}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"6":445,"11":445,"22":2771}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"6":480,"11":480,"22":2851},"upgradeStep":1}}}, +{"id":81131,"name":"Mindbreaker Pendant","icon":"inv_jewelry_necklace_89","type":2,"stats":[0,0,872,582,0,0,416,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":358,"7":293}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":386,"7":316},"upgradeStep":1}}}, +{"id":81132,"name":"Paralyzing Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1163,776,547,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"11":390,"22":1259}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":471,"11":401,"22":1273}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":508,"11":433,"22":1310},"upgradeStep":1}}}, +{"id":81133,"name":"Empty Fruit Barrel","icon":"inv_cask_02","type":12,"stats":[0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"463":{"randPropPoints":1270,"stats":{"4":847}},"471":{"randPropPoints":1369,"stats":{"4":913},"upgradeStep":1}}}, +{"id":81134,"name":"Barreldodger Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,1163,696,522,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Ook-Ook"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":3350}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":444,"7":340,"22":3386}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":482,"7":370,"22":3485},"upgradeStep":1}}}, +{"id":81135,"name":"Belt of Brazen Inebriation","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,776,1163,0,0,479,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":401,"8":452,"22":1442}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"5":412,"8":465,"22":1458}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"5":444,"8":501,"22":1501},"upgradeStep":1}}}, +{"id":81136,"name":"Cloak of Hidden Flasks","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,873,582,295,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Hoptallus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"11":371,"22":1007}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":254,"11":381,"22":1018}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":274,"11":410,"22":1048},"upgradeStep":1}}}, +{"id":81138,"name":"Carbonic Carbuncle","icon":"inv_jewelry_trinket_09","type":12,"stats":[983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"463":{"randPropPoints":1270,"stats":{"0":847}},"471":{"randPropPoints":1369,"stats":{"0":913},"upgradeStep":1}}}, +{"id":81139,"name":"Lime-Rimmed Signet","icon":"inv_jewelry_ring_132","type":11,"stats":[582,0,873,0,0,0,0,0,0,0,394,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":330,"11":317}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"10":339,"11":326}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"10":366,"11":351},"upgradeStep":1}}}, +{"id":81140,"name":"Wort Stirring Rod","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1566,1044,0,756,0,0,0,0,0,594,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":4881,"weaponDamageMax":7322,"weaponSpeed":3.2,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4089,"weaponDamageMax":6134,"stats":{"2":1312,"3":875,"5":634,"11":498,"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4205,"weaponDamageMax":6308,"stats":{"2":1349,"3":899,"5":652,"11":512,"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4530,"weaponDamageMax":6796,"stats":{"2":1454,"3":969,"5":702,"11":551,"14":5551},"upgradeStep":1}}}, +{"id":81141,"name":"Alemental Seal","icon":"inv_jewelry_ring_141","type":11,"stats":[0,0,873,582,0,0,359,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"7":339}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":309,"7":349}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":333,"7":376},"upgradeStep":1}}}, +{"id":81179,"name":"Star Summoner Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,873,582,410,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293,"22":1122}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":354,"11":301,"22":1134}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":381,"11":325,"22":1167},"upgradeStep":1}}}, +{"id":81180,"name":"Cloudstrike Pendant","icon":"inv_jewelry_necklace_92","type":2,"stats":[582,0,872,0,0,331,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Gu Cloudstrike"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"5":285,"6":363}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"5":307,"6":391},"upgradeStep":1}}}, +{"id":81181,"name":"Heart of Fire","icon":"inv_jewelry_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"463":{"randPropPoints":1270,"stats":{"11":847}},"471":{"randPropPoints":1369,"stats":{"11":913},"upgradeStep":1}}}, +{"id":81182,"name":"Eye of the Tornado","icon":"inv_jewelry_ring_138","type":11,"stats":[0,0,873,582,0,394,0,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Master Snowdrift"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":330,"11":317}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":339,"11":326}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":366,"11":351},"upgradeStep":1}}}, +{"id":81184,"name":"Necklace of Disorientation","icon":"inv_jewelry_necklace_85","type":2,"stats":[0,0,872,582,322,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"11":358}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":277,"11":368}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":299,"11":396},"upgradeStep":1}}}, +{"id":81185,"name":"Bladed Smoke Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,582,873,0,0,0,416,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,1670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Sha of Violence"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"8":285,"22":1561}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":358,"8":293,"22":1578}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":386,"8":316,"22":1624},"upgradeStep":1}}}, +{"id":81186,"name":"Seal of Hateful Meditation","icon":"inv_jewelry_ring_134","type":11,"stats":[0,582,873,0,0,295,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":247,"7":371}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"5":254,"7":381}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"5":274,"7":410},"upgradeStep":1}}}, +{"id":81187,"name":"Hateshatter Chestplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[964,0,1566,0,0,0,0,0,554,0,0,716,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":458,"11":594,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":819,"2":1349,"8":472,"11":612,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":889,"2":1454,"8":511,"11":662,"22":5069},"upgradeStep":1}}}, +{"id":81188,"name":"Robes of Fevered Dreams","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1566,964,0,0,656,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":543,"7":543,"22":2014}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"6":560,"7":560,"22":2037}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"6":606,"7":606,"22":2096},"upgradeStep":1}}}, +{"id":81189,"name":"Ring of Malice","icon":"inv_jewelry_ring_139","type":11,"stats":[0,0,873,582,0,0,0,304,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":254,"11":366}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"7":262,"11":377}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"7":282,"11":406},"upgradeStep":1}}}, +{"id":81190,"name":"Grenadier's Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[776,0,1164,0,0,0,504,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":422,"7":440,"22":2741}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"6":434,"7":452,"22":2771}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"6":468,"7":487,"22":2851},"upgradeStep":1}}}, +{"id":81191,"name":"Pulled Grenade Pin","icon":"inv_jewelry_ring_138","type":11,"stats":[0,582,873,0,0,0,405,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Saboteur Kip'tilak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"11":301}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":349,"11":309}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":376,"11":333},"upgradeStep":1}}}, +{"id":81192,"name":"Vision of the Predator","icon":"inv_jewelry_trinket_20","type":12,"stats":[0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"463":{"randPropPoints":1270,"stats":{"3":847}},"471":{"randPropPoints":1369,"stats":{"3":913},"upgradeStep":1}}}, +{"id":81229,"name":"Bomber's Precision Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1164,776,0,0,569,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Striker Ga'dok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":476,"7":359,"22":1259}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"6":490,"7":369,"22":1273}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"6":528,"7":398,"22":1310},"upgradeStep":1}}}, +{"id":81230,"name":"Ri'mok's Shattered Scale","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[442,0,873,0,0,0,0,0,295,582,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488,"22":2132}},"463":{"randPropPoints":953,"stats":{"0":381,"2":752,"8":254,"9":501,"22":2155}},"471":{"randPropPoints":1027,"stats":{"0":410,"2":810,"8":274,"9":540,"22":2218},"upgradeStep":1}}}, +{"id":81232,"name":"Viscous Ring","icon":"inv_jewelry_ring_153","type":11,"stats":[0,0,873,582,410,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Commander Ri'mok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":354,"7":301}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":381,"7":325},"upgradeStep":1}}}, +{"id":81233,"name":"Impervious Carapace","icon":"inv_shield_pandung_c_01","type":13,"weaponType":7,"handType":3,"stats":[442,0,873,0,0,295,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"10":488,"22":15628}},"463":{"randPropPoints":953,"stats":{"0":381,"2":752,"5":254,"10":501,"22":15800}},"471":{"randPropPoints":1027,"stats":{"0":410,"2":810,"5":274,"10":540,"22":16259},"upgradeStep":1}}}, +{"id":81234,"name":"Drape of the Screeching Swarm","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[582,0,873,0,0,295,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"7":371,"22":1007}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"5":254,"7":381,"22":1018}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"5":274,"7":410,"22":1048},"upgradeStep":1}}}, +{"id":81235,"name":"Shoulders of Engulfing Winds","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1163,696,0,0,477,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"6":405,"7":405,"22":1527}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"6":440,"7":440,"22":1572},"upgradeStep":1}}}, +{"id":81236,"name":"Frenzyswarm Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,873,582,399,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":881}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":344,"11":318,"22":891}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":371,"11":342,"22":917},"upgradeStep":1}}}, +{"id":81237,"name":"Crest of the Clan Lords","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,804,1566,0,0,0,627,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"11":392,"22":2899}},"463":{"randPropPoints":1710,"stats":{"1":659,"2":1349,"6":523,"11":406,"22":2931}},"471":{"randPropPoints":1843,"stats":{"1":729,"2":1454,"6":573,"11":447,"22":3016},"upgradeStep":1}}}, +{"id":81238,"name":"Hurricane Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,1164,776,583,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":488,"11":339,"22":1442}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":502,"11":349,"22":1458}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":541,"11":376,"22":1501},"upgradeStep":1}}}, +{"id":81239,"name":"Whirling Dervish Choker","icon":"inv_jewelry_necklace_82","type":2,"stats":[582,0,872,0,0,0,0,394,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":330,"11":317}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"7":339,"11":326}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"7":366,"11":351},"upgradeStep":1}}}, +{"id":81240,"name":"Conflagrating Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1164,776,0,562,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":471,"7":370,"22":1259}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"5":484,"7":380,"22":1273}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"5":522,"7":410,"22":1310},"upgradeStep":1}}}, +{"id":81241,"name":"Meteoric Greathelm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[804,0,1566,0,0,0,627,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":509,"7":400,"22":3959}},"463":{"randPropPoints":1710,"stats":{"0":659,"2":1349,"6":526,"7":415,"22":4002}},"471":{"randPropPoints":1843,"stats":{"0":729,"2":1454,"6":575,"7":458,"22":4119},"upgradeStep":1}}}, +{"id":81242,"name":"Glintrok Sollerets","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,1163,696,477,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":393,"11":393,"22":3350}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":405,"11":405,"22":3386}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":440,"11":440,"22":3485},"upgradeStep":1}}}, +{"id":81243,"name":"Iron Protector Talisman","icon":"inv_jewelry_trinket_13","type":12,"stats":[0,0,1475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"463":{"randPropPoints":1270,"stats":{"2":1270}},"471":{"randPropPoints":1369,"stats":{"2":1369},"upgradeStep":1}}}, +{"id":81244,"name":"Cloak of Cleansing Flame","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,873,582,0,0,304,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":254,"11":366,"22":1007}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":262,"11":377,"22":1018}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":282,"11":406,"22":1048},"upgradeStep":1}}}, +{"id":81245,"name":"Claws of Gekkan","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,448,671,0,0,0,316,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":265,"7":225}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"6":272,"7":232}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"6":293,"7":250},"upgradeStep":1}}}, +{"id":81246,"name":"Hexxer's Lethargic Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,1164,776,547,0,0,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"11":390,"22":2230}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":471,"11":401,"22":2254}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":508,"11":433,"22":2320},"upgradeStep":1}}}, +{"id":81247,"name":"Ghostheart","icon":"inv_polearm_2h_pandung_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1044,1566,0,0,0,717,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":600,"7":554}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"1":899,"2":1349,"6":617,"7":570}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"1":969,"2":1454,"6":665,"7":614},"upgradeStep":1}}}, +{"id":81248,"name":"Axebreaker Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[590,0,1164,0,0,393,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"10":649,"22":3045}},"463":{"randPropPoints":1270,"stats":{"0":508,"2":1002,"5":338,"10":668,"22":3079}},"471":{"randPropPoints":1369,"stats":{"0":547,"2":1080,"5":365,"10":720,"22":3168},"upgradeStep":1}}}, +{"id":81249,"name":"Boots of Plummeting Death","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,696,1164,0,0,0,0,464,485,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":382,"8":400,"22":1763}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"7":394,"8":412,"22":1782}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"7":428,"8":447,"22":1834},"upgradeStep":1}}}, +{"id":81251,"name":"Blade Trap Signet","icon":"inv_jewelry_ring_135","type":11,"stats":[582,0,873,0,0,0,410,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"8":293}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"6":354,"8":301}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"6":381,"8":325},"upgradeStep":1}}}, +{"id":81252,"name":"Groundshaker Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,582,873,0,0,295,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":247,"7":371,"22":1561}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"5":254,"7":381,"22":1578}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"5":274,"7":410,"22":1624},"upgradeStep":1}}}, +{"id":81253,"name":"Firescribe Dagger","icon":"inv_knife_1h_pandung_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,671,448,0,0,320,262,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"2":562,"3":375,"6":268,"7":219,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"2":578,"3":385,"6":276,"7":225,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"2":623,"3":415,"6":297,"7":243,"14":5552},"upgradeStep":1}}}, +{"id":81254,"name":"Mindcapture Pendant","icon":"inv_jewelry_necklace_88","type":2,"stats":[0,0,873,582,421,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"6":277}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":363,"6":285}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":391,"6":307},"upgradeStep":1}}}, +{"id":81255,"name":"Soulbinder Treads","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,1164,696,0,0,401,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1482,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":330,"7":431,"22":1385}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"6":340,"7":444,"22":1400}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"6":370,"7":482,"22":1441},"upgradeStep":1}}}, +{"id":81256,"name":"Mind's Eye Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1566,964,489,0,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":403,"6":625,"22":4872}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":416,"6":643,"22":4926}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":451,"6":697,"22":5069},"upgradeStep":1}}}, +{"id":81257,"name":"Regal Silk Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1163,696,477,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":393,"11":393,"22":1511}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":405,"11":405,"22":1527}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":440,"11":440,"22":1572},"upgradeStep":1}}}, +{"id":81262,"name":"Hood of Viridian Residue","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,1566,804,531,0,587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":432,"6":465,"22":2083}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"4":446,"6":483,"22":2106}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"4":487,"6":533,"22":2167},"upgradeStep":1}}}, +{"id":81263,"name":"Flashfrozen Resin Globule","icon":"inv_jewelry_trinket_21","type":12,"stats":[0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"463":{"randPropPoints":1270,"stats":{"5":847}},"471":{"randPropPoints":1369,"stats":{"5":913},"upgradeStep":1}}}, +{"id":81264,"name":"Vial of Ichorous Blood","icon":"inv_jewelry_trinket_08","type":12,"stats":[0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"463":{"randPropPoints":1270,"stats":{"3":847}},"471":{"randPropPoints":1369,"stats":{"3":913},"upgradeStep":1}}}, +{"id":81265,"name":"Flashing Steel Talisman","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"463":{"randPropPoints":1270,"stats":{"5":847}},"471":{"randPropPoints":1369,"stats":{"5":913},"upgradeStep":1}}}, +{"id":81266,"name":"Price of Progress","icon":"inv_jewelry_trinket_18","type":12,"stats":[0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"463":{"randPropPoints":1270,"stats":{"3":847}},"471":{"randPropPoints":1369,"stats":{"3":913},"upgradeStep":1}}}, +{"id":81267,"name":"Searing Words","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"463":{"randPropPoints":1270,"stats":{"6":847}},"471":{"randPropPoints":1369,"stats":{"6":913},"upgradeStep":1}}}, +{"id":81268,"name":"Lessons of the Darkmaster","icon":"inv_misc_cat_trinket12","type":12,"stats":[0,0,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"463":{"randPropPoints":1270,"stats":{"8":847}},"471":{"randPropPoints":1369,"stats":{"8":913},"upgradeStep":1}}}, +{"id":81270,"name":"Sap-Encrusted Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[964,0,1566,0,0,0,0,0,0,687,604,0,0,0,0,0,0,0,0,0,0,0,4561,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":569,"10":500,"22":4263}},"463":{"randPropPoints":1710,"stats":{"0":819,"2":1349,"9":586,"10":515,"22":4310}},"471":{"randPropPoints":1843,"stats":{"0":889,"2":1454,"9":635,"10":558,"22":4435},"upgradeStep":1}}}, +{"id":81271,"name":"Engraved Amber Pendant","icon":"inv_jewelry_necklace_82","type":2,"stats":[0,582,872,0,0,0,399,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":335,"7":309}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":344,"7":318}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":371,"7":342},"upgradeStep":1}}}, +{"id":81272,"name":"Girdle of Soothing Detonation","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,1164,776,454,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"6":464,"22":2741}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":391,"6":478,"22":2771}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":421,"6":515,"22":2851},"upgradeStep":1}}}, +{"id":81273,"name":"Siege-Captain's Scimitar","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,448,671,0,0,324,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":272,"6":213}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"5":279,"6":219}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"5":301,"6":236},"upgradeStep":1}}}, +{"id":81274,"name":"Sightfinder Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[804,0,1566,0,0,0,437,0,0,0,0,666,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":344,"11":542,"22":3959}},"463":{"randPropPoints":1710,"stats":{"0":659,"2":1349,"6":357,"11":560,"22":4002}},"471":{"randPropPoints":1843,"stats":{"0":729,"2":1454,"6":396,"11":611,"22":4119},"upgradeStep":1}}}, +{"id":81275,"name":"Chestwrap of Arcing Flame","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1566,964,638,0,666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":528,"6":552,"22":2564}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":544,"6":569,"22":2592}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":590,"6":616,"22":2668},"upgradeStep":1}}}, +{"id":81276,"name":"Bombardment Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,873,582,359,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"7":339,"22":881}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":309,"7":349,"22":891}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":333,"7":376,"22":917},"upgradeStep":1}}}, +{"id":81277,"name":"Archer's Precision Grips","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,776,1164,0,0,0,0,0,393,0,0,590,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"8":329,"11":494,"22":2230}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"8":338,"11":508,"22":2254}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"8":365,"11":547,"22":2320},"upgradeStep":1}}}, +{"id":81279,"name":"Tempestuous Longbow","icon":"inv_bow_1h_pandung_c_01","type":14,"rangedWeaponType":1,"stats":[0,1044,1566,0,0,696,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":8008,"weaponDamageMax":14873,"weaponSpeed":3,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"5":583,"6":583}},"463":{"randPropPoints":1710,"weaponDamageMin":6899,"weaponDamageMax":12813,"stats":{"1":899,"2":1349,"5":600,"6":600}},"471":{"randPropPoints":1843,"weaponDamageMin":7433,"weaponDamageMax":13805,"stats":{"1":969,"2":1454,"5":646,"6":646},"upgradeStep":1}}}, +{"id":81280,"name":"Siegeworn Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,873,582,322,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"6":358,"22":2132}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":277,"6":368,"22":2155}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":299,"6":396,"22":2218},"upgradeStep":1}}}, +{"id":81281,"name":"Breezebinder Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1164,776,576,0,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":482,"7":349,"22":1259}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":496,"7":359,"22":1273}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":535,"7":387,"22":1310},"upgradeStep":1}}}, +{"id":81282,"name":"Aerial Bombardment Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,582,873,0,0,295,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":247,"6":371,"22":1007}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"5":254,"6":381,"22":1018}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"5":274,"6":410,"22":1048},"upgradeStep":1}}}, +{"id":81283,"name":"Windblast Helm","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,804,1566,0,0,0,0,616,0,0,0,536,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":503,"11":423,"22":2083}},"463":{"randPropPoints":1710,"stats":{"1":659,"2":1349,"7":520,"11":440,"22":2106}},"471":{"randPropPoints":1843,"stats":{"1":729,"2":1454,"7":566,"11":486,"22":2167},"upgradeStep":1}}}, +{"id":81284,"name":"Anchoring Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[696,0,1164,0,0,0,507,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":418,"8":350,"22":3350}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"6":431,"8":361,"22":3386}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"6":468,"8":393,"22":3485},"upgradeStep":1}}}, +{"id":81285,"name":"Galedodger Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,964,1566,0,0,0,0,0,505,0,0,744,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"8":416,"11":617,"22":3568}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"8":429,"11":636,"22":3607}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"8":466,"11":688,"22":3712},"upgradeStep":1}}}, +{"id":81286,"name":"Ner'onok's Razor Katar","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,448,671,0,0,298,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":250,"8":250}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"5":257,"8":257}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"5":277,"8":277},"upgradeStep":1}}}, +{"id":81287,"name":"Spaulders of Immovable Stone","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[696,0,1164,0,0,0,0,0,0,515,414,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":424,"10":340,"22":3654}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"9":438,"10":351,"22":3694}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"9":475,"10":381,"22":3802},"upgradeStep":1}}}, +{"id":81288,"name":"Gustwalker Staff","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1566,1044,747,0,0,0,0,0,0,611,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":5186,"weaponDamageMax":7780,"weaponSpeed":3.4,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4345,"weaponDamageMax":6518,"stats":{"2":1312,"3":875,"4":625,"11":512,"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4468,"weaponDamageMax":6702,"stats":{"2":1349,"3":899,"4":643,"11":526,"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4813,"weaponDamageMax":7221,"stats":{"2":1454,"3":969,"4":693,"11":567,"14":5551},"upgradeStep":1}}}, +{"id":81289,"name":"Breezeswept Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1566,804,0,0,0,576,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":463,"11":463,"22":1637}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"7":480,"11":480,"22":1655}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"7":526,"11":526,"22":1703},"upgradeStep":1}}}, +{"id":81290,"name":"Belt of Totemic Binding","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,1164,776,454,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2007}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":391,"7":478,"22":2029}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":421,"7":515,"22":2088},"upgradeStep":1}}}, +{"id":81291,"name":"Whisperwind Spaulders","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1163,696,0,0,0,401,0,0,0,522,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":330,"11":431,"22":1511}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"7":340,"11":444,"22":1527}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"7":370,"11":482,"22":1572},"upgradeStep":1}}}, +{"id":81292,"name":"Airbender Sandals","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,1164,696,485,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"7":382,"22":2453}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":412,"7":394,"22":2480}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":447,"7":428,"22":2552},"upgradeStep":1}}}, +{"id":81440,"name":"Nayeli Hood","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,743,495,0,0,322,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":322,"7":335,"22":1263},"isBase":true}}}, +{"id":81441,"name":"Mortbreath Helm","icon":"inv_helm_leather_panda_b_02_crimson","type":1,"armorType":2,"stats":[0,0,743,495,0,0,335,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":335,"7":322,"22":1622},"isBase":true}}}, +{"id":81442,"name":"Deepwild Helm","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,0,743,495,0,0,0,345,0,0,0,306,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":345,"11":306,"22":2277},"isBase":true}}}, +{"id":81443,"name":"Narsong Headcover","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[0,0,743,495,0,0,0,330,0,0,0,330,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":330,"11":330,"22":3129},"isBase":true}}}, +{"id":81444,"name":"Angkhal Cowl","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,743,495,0,282,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"5":282,"7":359,"22":1263},"isBase":true}}}, +{"id":81445,"name":"Riverblade Helm","icon":"inv_helm_leather_panda_b_02_crimson","type":1,"armorType":2,"stats":[0,495,743,0,0,0,266,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":266,"11":368,"22":1622},"isBase":true}}}, +{"id":81446,"name":"Sarjun Helm","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,495,743,0,0,0,330,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":330,"11":330,"22":2277},"isBase":true}}}, +{"id":81447,"name":"Korjan Helm","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[495,0,743,0,0,0,0,0,0,330,330,0,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"9":330,"10":330,"22":3129},"isBase":true}}}, +{"id":81448,"name":"Dojani Helm","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[495,0,743,0,0,0,368,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"6":368,"11":266,"22":3129},"isBase":true}}}, +{"id":81449,"name":"Nayeli Mantle","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,665,443,0,0,288,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":288,"7":300,"22":1283},"isBase":true}}}, +{"id":81450,"name":"Mortbreath Spaulder","icon":"inv_shoulder_leather_panda_b_02_crimson","type":3,"armorType":2,"stats":[0,0,665,443,0,0,300,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":300,"11":288,"22":1633},"isBase":true}}}, +{"id":81451,"name":"Deepwild Pauldrons","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,0,665,443,0,0,0,337,0,0,0,225,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":337,"11":225,"22":2272},"isBase":true}}}, +{"id":81452,"name":"Narsong Spaulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[0,0,665,443,0,0,0,337,0,0,0,225,0,0,0,0,0,0,0,0,0,0,3104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":337,"11":225,"22":3104},"isBase":true}}}, +{"id":81453,"name":"Angkhal Amice","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,665,443,0,0,300,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,1283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":300,"11":288,"22":1283},"isBase":true}}}, +{"id":81454,"name":"Riverblade Spaulder","icon":"inv_shoulder_leather_panda_b_02_crimson","type":3,"armorType":2,"stats":[0,443,665,0,0,313,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"5":313,"7":266,"22":1633},"isBase":true}}}, +{"id":81455,"name":"Sarjun Spaulders","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,443,665,0,0,0,0,238,0,0,0,329,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"7":238,"11":329,"22":2272},"isBase":true}}}, +{"id":81456,"name":"Korjan Shoulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[443,0,665,0,0,231,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,3104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"5":231,"10":333,"22":3104},"isBase":true}}}, +{"id":81457,"name":"Dojani Shoulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[443,0,665,0,0,0,231,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,3104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"6":231,"11":333,"22":3104},"isBase":true}}}, +{"id":81458,"name":"Nayeli Robe","icon":"inv_chest_cloth_panda_b_02_blue","type":5,"armorType":1,"stats":[0,0,743,495,0,0,340,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":340,"11":314,"22":1554},"isBase":true}}}, +{"id":81459,"name":"Mortbreath Robes","icon":"inv_chest_leather_panda_b_02_crimson","type":5,"armorType":2,"stats":[0,0,743,495,0,0,259,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":259,"7":372,"22":1996},"isBase":true}}}, +{"id":81460,"name":"Deepwild Armor","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,0,743,495,0,0,372,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":372,"7":259,"22":2803},"isBase":true}}}, +{"id":81461,"name":"Narsong Chestguard","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[0,0,743,495,0,0,330,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":330,"7":330,"22":3851},"isBase":true}}}, +{"id":81462,"name":"Angkhal Robe","icon":"inv_chest_cloth_panda_b_02_blue","type":5,"armorType":1,"stats":[0,0,743,495,0,0,340,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":340,"7":314,"22":1554},"isBase":true}}}, +{"id":81463,"name":"Riverblade Tunic","icon":"inv_chest_leather_panda_b_02_crimson","type":5,"armorType":2,"stats":[0,495,743,0,0,0,0,330,0,0,0,330,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"7":330,"11":330,"22":1996},"isBase":true}}}, +{"id":81464,"name":"Sarjun Chestguard","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,495,743,0,0,0,0,368,0,0,0,266,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"7":368,"11":266,"22":2803},"isBase":true}}}, +{"id":81465,"name":"Korjan Chestpiece","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[495,0,743,0,0,0,0,0,0,363,0,274,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"9":363,"11":274,"22":3851},"isBase":true}}}, +{"id":81466,"name":"Dojani Chestpiece","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[495,0,743,0,0,0,0,350,0,0,0,298,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"7":350,"11":298,"22":3851},"isBase":true}}}, +{"id":81467,"name":"Nayeli Leggings","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,0,0,340,0,0,0,314,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":340,"11":314,"22":1360},"isBase":true}}}, +{"id":81468,"name":"Mortbreath Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,0,743,495,0,0,259,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":259,"7":372,"22":1747},"isBase":true}}}, +{"id":81469,"name":"Deepwild Legguards","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,0,743,495,0,0,0,372,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":372,"11":259,"22":2452},"isBase":true}}}, +{"id":81470,"name":"Narsong Legplates","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[0,0,743,495,0,0,266,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":266,"7":368,"22":3370},"isBase":true}}}, +{"id":81471,"name":"Angkhal Trousers","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,290,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"5":290,"11":354,"22":1360},"isBase":true}}}, +{"id":81472,"name":"Riverblade Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,495,743,0,0,0,314,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":314,"11":340,"22":1747},"isBase":true}}}, +{"id":81473,"name":"Sarjun Leggings","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,495,743,0,0,0,274,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":274,"7":363,"22":2452},"isBase":true}}}, +{"id":81474,"name":"Korjan Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,0,0,0,274,363,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"9":274,"10":363,"22":3370},"isBase":true}}}, +{"id":81475,"name":"Dojani Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,266,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"5":266,"7":368,"22":3370},"isBase":true}}}, +{"id":81476,"name":"Nayeli Treads","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,665,443,0,0,0,309,0,0,0,274,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":309,"11":274,"22":1176},"isBase":true}}}, +{"id":81477,"name":"Mortbreath Footguards","icon":"inv_boots_leather_panda_b_02_crimson","type":10,"armorType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":296,"11":296,"22":1497},"isBase":true}}}, +{"id":81478,"name":"Deepwild Sabatons","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,0,665,443,0,0,317,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2083,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":317,"11":259,"22":2083},"isBase":true}}}, +{"id":81479,"name":"Narsong Greaves","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":296,"11":296,"22":2845},"isBase":true}}}, +{"id":81480,"name":"Angkhal Treads","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,665,443,0,0,0,296,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":296,"11":296,"22":1176},"isBase":true}}}, +{"id":81481,"name":"Riverblade Boots","icon":"inv_boots_leather_panda_b_02_crimson","type":10,"armorType":2,"stats":[0,443,665,0,0,0,296,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"6":296,"7":296,"22":1497},"isBase":true}}}, +{"id":81482,"name":"Sarjun Sabatons","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,443,665,0,0,266,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,2083,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"5":266,"11":313,"22":2083},"isBase":true}}}, +{"id":81483,"name":"Korjan Warboots","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[443,0,665,0,0,0,0,0,0,274,0,309,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"9":274,"11":309,"22":2845},"isBase":true}}}, +{"id":81484,"name":"Dojani Warboots","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[443,0,665,0,0,0,0,274,0,0,0,309,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"7":274,"11":309,"22":2845},"isBase":true}}}, +{"id":81485,"name":"Nayeli Cord","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,665,443,0,0,0,309,0,0,0,274,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":309,"11":274,"22":962},"isBase":true}}}, +{"id":81486,"name":"Mortbreath Belt","icon":"inv_belt_leather_panda_b_02_crimson","type":8,"armorType":2,"stats":[0,0,665,443,0,0,0,329,0,0,0,238,0,0,0,0,0,0,0,0,0,0,1225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":329,"11":238,"22":1225},"isBase":true}}}, +{"id":81487,"name":"Deepwild Waistguard","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,0,665,443,0,0,252,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":252,"7":321,"22":1704},"isBase":true}}}, +{"id":81488,"name":"Narsong Clasp","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":296,"11":296,"22":2328},"isBase":true}}}, +{"id":81489,"name":"Angkhal Cord","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,665,443,0,0,333,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":333,"7":231,"22":962},"isBase":true}}}, +{"id":81490,"name":"Riverblade Belt","icon":"inv_belt_leather_panda_b_02_crimson","type":8,"armorType":2,"stats":[0,443,665,0,0,0,0,321,0,0,0,252,0,0,0,0,0,0,0,0,0,0,1225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"7":321,"11":252,"22":1225},"isBase":true}}}, +{"id":81491,"name":"Sarjun Waistguard","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,443,665,0,0,0,309,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"6":309,"11":274,"22":1704},"isBase":true}}}, +{"id":81492,"name":"Korjan Girdle","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[443,0,665,0,0,0,0,0,0,317,259,0,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"9":317,"10":259,"22":2328},"isBase":true}}}, +{"id":81493,"name":"Dojani Girdle","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[443,0,665,0,0,0,300,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"6":300,"11":288,"22":2328},"isBase":true}}}, +{"id":81494,"name":"Nayeli Gloves","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,221,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":221,"6":260,"22":971},"isBase":true}}}, +{"id":81495,"name":"Mortbreath Gloves","icon":"inv_glove_leather_panda_b_02_crimson","type":7,"armorType":2,"stats":[0,0,552,368,0,0,245,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":245,"11":245,"22":1248},"isBase":true}}}, +{"id":81496,"name":"Deepwild Gauntlets","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,0,552,368,0,0,245,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":245,"7":245,"22":1752},"isBase":true}}}, +{"id":81497,"name":"Narsong Gloves","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[0,0,552,368,0,0,245,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":245,"7":245,"22":2407},"isBase":true}}}, +{"id":81498,"name":"Angkhal Handguards","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,0,0,260,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":260,"11":221,"22":971},"isBase":true}}}, +{"id":81499,"name":"Riverblade Gloves","icon":"inv_glove_leather_panda_b_02_crimson","type":7,"armorType":2,"stats":[0,368,552,0,0,0,245,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"6":245,"7":245,"22":1248},"isBase":true}}}, +{"id":81500,"name":"Sarjun Gauntlets","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,368,552,0,0,0,0,277,0,0,0,192,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":277,"11":192,"22":1752},"isBase":true}}}, +{"id":81501,"name":"Korjan Gauntlets","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[368,0,552,0,0,209,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":209,"10":267,"22":2407},"isBase":true}}}, +{"id":81502,"name":"Dojani Gauntlets","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[368,0,552,0,0,0,245,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"6":245,"7":245,"22":2407},"isBase":true}}}, +{"id":81503,"name":"Nayeli Cuffs","icon":"inv_bracer_cloth_panda_b_02_blue","type":6,"armorType":1,"stats":[0,0,414,276,0,0,195,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":195,"11":166,"22":680},"isBase":true}}}, +{"id":81504,"name":"Mortbreath Bindings","icon":"inv_bracer_leather_panda_b_02_crimson","type":6,"armorType":2,"stats":[0,0,414,276,0,0,0,184,0,0,0,184,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":184,"11":184,"22":873},"isBase":true}}}, +{"id":81505,"name":"Deepwild Armguards","icon":"inv_bracer_mail_panda_b_02red","type":6,"armorType":3,"stats":[0,0,414,276,0,0,184,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"11":184,"22":1226},"isBase":true}}}, +{"id":81506,"name":"Narsong Bracers","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[0,0,414,276,0,0,140,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":140,"7":210,"22":1685},"isBase":true}}}, +{"id":81507,"name":"Angkhal Cuffs","icon":"inv_bracer_cloth_panda_b_02_blue","type":6,"armorType":1,"stats":[0,0,414,276,0,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"7":184,"22":680},"isBase":true}}}, +{"id":81508,"name":"Riverblade Armwraps","icon":"inv_bracer_leather_panda_b_02_crimson","type":6,"armorType":2,"stats":[0,276,414,0,0,144,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"5":144,"11":207,"22":873},"isBase":true}}}, +{"id":81509,"name":"Sarjun Wristguards","icon":"inv_bracer_mail_panda_b_02red","type":6,"armorType":3,"stats":[0,276,414,0,0,184,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"5":184,"11":184,"22":1226},"isBase":true}}}, +{"id":81510,"name":"Korjan Armplates","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[276,0,414,0,0,0,0,0,0,170,0,192,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":170,"11":192,"22":1685},"isBase":true}}}, +{"id":81511,"name":"Dojani Bracers","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[276,0,414,0,0,0,0,210,140,0,0,0,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"7":210,"8":140,"22":1685},"isBase":true}}}, +{"id":81512,"name":"Sha-Haunted Locket","icon":"inv_jewelry_necklace_57","type":2,"stats":[0,0,414,276,195,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":195,"6":166},"isBase":true}}}, +{"id":81513,"name":"Choker of Despair","icon":"inv_jewelry_necklace_57","type":2,"stats":[0,0,414,276,0,0,0,187,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":187,"11":179},"isBase":true}}}, +{"id":81514,"name":"Wildscale Amulet","icon":"inv_jewelry_necklace_57","type":2,"stats":[0,276,414,0,0,0,166,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"6":166,"8":195},"isBase":true}}}, +{"id":81515,"name":"Red Crane Pendant","icon":"inv_jewelry_necklace_62","type":2,"stats":[276,0,414,0,0,0,0,0,140,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":140,"10":210},"isBase":true}}}, +{"id":81516,"name":"Pendant of the Lost Dynasty","icon":"inv_jewelry_necklace_62","type":2,"stats":[276,0,414,0,0,0,184,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"6":184,"11":184},"isBase":true}}}, +{"id":81517,"name":"Murksweat Ward","icon":"inv_jewelry_ring_130","type":11,"stats":[0,0,414,276,0,0,197,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":197,"11":161},"isBase":true}}}, +{"id":81518,"name":"Lory Feather Band","icon":"inv_jewelry_ring_zulgurub_01","type":11,"stats":[0,0,414,276,0,0,184,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"11":184},"isBase":true}}}, +{"id":81519,"name":"Snakejaw Band","icon":"inv_jewelry_ring_121","type":11,"stats":[0,276,414,0,0,0,0,190,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"7":190,"8":175},"isBase":true}}}, +{"id":81520,"name":"Snakeswarm Ring","icon":"inv_jewelry_ring_120","type":11,"stats":[276,0,414,0,0,0,0,0,0,187,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":187,"11":179},"isBase":true}}}, +{"id":81521,"name":"Murkscale Band","icon":"inv_jewelry_ring_121","type":11,"stats":[276,0,414,0,0,0,0,210,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"7":210,"11":140},"isBase":true}}}, +{"id":81522,"name":"Ring of the Pools of Youth","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,414,276,148,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":148,"7":205},"isBase":true}}}, +{"id":81523,"name":"Ring of Tears","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,414,276,0,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"7":184},"isBase":true}}}, +{"id":81524,"name":"Toothrow Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,276,414,0,0,0,170,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"6":170,"11":192},"isBase":true}}}, +{"id":81525,"name":"Seal of Lost Centuries","icon":"inv_jewelry_ring_121","type":11,"stats":[276,0,414,0,0,0,0,0,0,192,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":192,"10":170},"isBase":true}}}, +{"id":81526,"name":"Seal of the Forbidden Jungle","icon":"inv_jewelry_ring_119","type":11,"stats":[276,0,414,0,0,140,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"5":140,"6":210},"isBase":true}}}, +{"id":81527,"name":"Mist Incarnation Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"4":467},"isBase":true}}}, +{"id":81528,"name":"Bluetip Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81529,"name":"Badger Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":81530,"name":"Mauler Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"10":467},"isBase":true}}}, +{"id":81531,"name":"Glade Singer Medallion","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81532,"name":"Silkspawn Carving","icon":"inv_inscription_pigment_bug01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81533,"name":"Archivist's Emblem","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81534,"name":"Carp Hunter Feather","icon":"inv_feather_05","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81535,"name":"Glade Pincher Feather","icon":"inv_feather_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81536,"name":"Jungle Huntress Idol","icon":"trade_archaeology_catstatueemeraldeyes","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":81537,"name":"Drape of the Lagoon","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[0,0,414,276,0,0,210,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":210,"11":140,"22":777},"isBase":true}}}, +{"id":81538,"name":"Waterfall Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,414,276,0,179,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"5":179,"11":187,"22":777},"isBase":true}}}, +{"id":81539,"name":"Canopy Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,276,414,0,0,0,179,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"6":179,"11":187,"22":777},"isBase":true}}}, +{"id":81540,"name":"Greenback Cape","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[276,0,414,0,0,0,0,0,0,166,0,195,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":166,"11":195,"22":777},"isBase":true}}}, +{"id":81541,"name":"Balmy Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[276,0,414,0,0,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"6":184,"7":184,"22":777},"isBase":true}}}, +{"id":81542,"name":"Fishmonger's Blade","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,319,212,0,0,0,154,0,0,0,121,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1550,"weaponDamageMax":2879,"weaponSpeed":3.3,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1550,"weaponDamageMax":2879,"stats":{"2":319,"3":212,"7":154,"11":121,"14":2839},"isBase":true}}}, +{"id":81543,"name":"Waterkeeper's Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,319,212,0,0,152,124,0,0,0,0,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1140,"weaponDamageMax":1141,"weaponSpeed":1.7,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1140,"weaponDamageMax":1141,"stats":{"2":319,"3":212,"6":152,"7":124,"14":2839},"isBase":true}}}, +{"id":81544,"name":"Marista Halberd","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,495,743,0,0,0,354,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":4777,"weaponDamageMax":7167,"weaponSpeed":3.3,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":4777,"weaponDamageMax":7167,"stats":{"1":495,"2":743,"6":354,"11":290},"isBase":true}}}, +{"id":81545,"name":"Marista Blade","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[495,0,743,0,0,0,0,0,266,0,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"weaponSpeed":3.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"stats":{"0":495,"2":743,"8":266,"11":368},"isBase":true}}}, +{"id":81546,"name":"Cloudfall Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[212,0,319,0,0,0,0,0,124,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"8":124,"11":152},"isBase":true}}}, +{"id":81547,"name":"Marista Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,495,743,0,0,0,330,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":5248,"weaponDamageMax":5248,"weaponSpeed":2.9,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":5248,"weaponDamageMax":5248,"stats":{"1":495,"2":743,"6":330,"7":330},"isBase":true}}}, +{"id":81548,"name":"Marista Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[212,0,319,0,0,0,0,0,111,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"8":111,"10":160},"isBase":true}}}, +{"id":81549,"name":"Marista Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,319,212,0,0,142,0,0,0,0,142,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":751,"weaponDamageMax":1396,"weaponSpeed":1.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":751,"weaponDamageMax":1396,"stats":{"2":319,"3":212,"6":142,"11":142,"14":2839},"isBase":true}}}, +{"id":81550,"name":"Cloudfall Blade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"weaponSpeed":1.8,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"stats":{"1":212,"2":319,"6":142,"7":142},"isBase":true}}}, +{"id":81551,"name":"Cloudfall Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"1":212,"2":319,"6":142,"7":142},"isBase":true}}}, +{"id":81552,"name":"Red Crane Sword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[495,0,743,0,0,0,290,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"weaponSpeed":3.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"stats":{"0":495,"2":743,"6":290,"7":354},"isBase":true}}}, +{"id":81553,"name":"Crane Temple Blade","icon":"inv_sword_1h_pandariaquest_b_04","type":13,"weaponType":9,"handType":2,"stats":[212,0,319,0,0,0,142,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"6":142,"8":142},"isBase":true}}}, +{"id":81554,"name":"Ward of Despair","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[276,0,414,0,0,0,0,0,153,0,0,203,0,0,0,0,0,0,0,0,0,0,12560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":153,"11":203,"22":12560},"isBase":true}}}, +{"id":81555,"name":"Hope's Shield","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,414,276,0,0,0,184,0,0,0,184,0,0,0,0,0,0,0,0,0,0,12560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":184,"11":184,"22":12560},"isBase":true}}}, +{"id":81556,"name":"Sha-Warped Blade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,212,319,0,0,0,0,142,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"weaponSpeed":1.8,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"stats":{"1":212,"2":319,"7":142,"11":142},"isBase":true}}}, +{"id":81557,"name":"Maw of Despair","icon":"inv_hand_1h_pandariaquest_b_02","type":13,"weaponType":3,"handType":2,"stats":[0,212,319,0,0,0,0,160,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"1":212,"2":319,"7":160,"11":111},"isBase":true}}}, +{"id":81560,"name":"Signet of the Hidden Door","icon":"inv_jewelry_ring_152","type":11,"stats":[0,0,873,582,0,295,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Thalnos the Soulrender"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":247,"7":371}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":254,"7":381}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":274,"7":410},"upgradeStep":1}}}, +{"id":81561,"name":"Firefinger Ring","icon":"inv_jewelry_ring_142","type":11,"stats":[582,0,873,0,0,0,0,378,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Brother Korloff"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":317,"11":330}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"7":326,"11":339}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"7":351,"11":366},"upgradeStep":1}}}, +{"id":81562,"name":"Triune Signet","icon":"inv_jewelry_amulet_01","type":11,"stats":[0,0,873,582,0,0,304,0,0,0,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":254,"11":366}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":262,"11":377}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":282,"11":406},"upgradeStep":1}}}, +{"id":81563,"name":"Beastbinder Ring","icon":"inv_jewelry_ring_137","type":11,"stats":[0,0,873,582,421,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Houndmaster Braun"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"6":277}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":363,"6":285}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":391,"6":307},"upgradeStep":1}}}, +{"id":81564,"name":"Scorched Scarlet Key","icon":"inv_misc_key_01","type":2,"stats":[0,582,872,0,0,388,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"8":325}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"5":334,"8":334}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"5":360,"8":360},"upgradeStep":1}}}, +{"id":81565,"name":"Temperature-Sensing Necklace","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,872,582,0,0,340,0,0,0,0,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":285,"11":349}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"6":293,"11":358}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"6":316,"11":386},"upgradeStep":1}}}, +{"id":81566,"name":"Anarchist's Pendant","icon":"inv_jewelry_necklace_53","type":2,"stats":[0,0,872,582,0,331,0,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Instructor Chillheart"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":277,"11":353}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":285,"11":363}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":307,"11":391},"upgradeStep":1}}}, +{"id":81567,"name":"Necklace of the Dark Blaze","icon":"inv_neck_firelands_03","type":2,"stats":[442,0,872,0,0,0,0,0,295,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Lilian Voss"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488}},"463":{"randPropPoints":953,"stats":{"0":381,"2":752,"8":254,"9":501}},"471":{"randPropPoints":1027,"stats":{"0":410,"2":810,"8":274,"9":540},"upgradeStep":1}}}, +{"id":81568,"name":"Armsmaster's Sealed Locket","icon":"inv_jewelry_necklace_84","type":2,"stats":[582,0,872,0,0,0,0,0,0,0,437,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Armsmaster Harlan"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":366,"11":254}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"10":377,"11":262}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"10":406,"11":282},"upgradeStep":1}}}, +{"id":81569,"name":"Forgotten Bloodmage Mantle","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1163,696,0,0,426,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Thalnos the Soulrender"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":350,"11":418,"22":1511}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"6":361,"11":431,"22":1527}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"6":393,"11":468,"22":1572},"upgradeStep":1}}}, +{"id":81570,"name":"Legguards of the Crimson Magus","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,964,1566,0,0,0,0,0,489,0,0,753,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Thalnos the Soulrender"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"8":403,"11":625,"22":3122}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"8":416,"11":643,"22":3156}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"8":451,"11":697,"22":3248},"upgradeStep":1}}}, +{"id":81571,"name":"Soulrender Greatcloak","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[582,0,873,0,0,0,0,0,0,405,359,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Thalnos the Soulrender"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":339,"10":301,"22":1007}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"9":349,"10":309,"22":1018}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"9":376,"10":333,"22":1048},"upgradeStep":1}}}, +{"id":81572,"name":"Bracers of the Fallen Crusader","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[582,0,873,0,0,0,394,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Thalnos the Soulrender"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":330,"7":317,"22":2132}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"6":339,"7":326,"22":2155}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"6":366,"7":351,"22":2218},"upgradeStep":1}}}, +{"id":81573,"name":"Korloff's Raiment","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,964,1566,0,0,489,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Brother Korloff"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"6":625,"22":2564}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"5":416,"6":643,"22":2592}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"5":451,"6":697,"22":2668},"upgradeStep":1}}}, +{"id":81574,"name":"Helm of Rising Flame","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[553,0,1566,0,0,389,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Brother Korloff"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"5":303,"10":775,"22":3959}},"463":{"randPropPoints":1710,"stats":{"0":443,"2":1349,"5":316,"10":799,"22":4002}},"471":{"randPropPoints":1843,"stats":{"0":497,"2":1454,"5":351,"10":869,"22":4119},"upgradeStep":1}}}, +{"id":81575,"name":"Scorched Earth Cloak","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,873,582,0,322,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Brother Korloff"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":270,"11":358,"22":1007}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":277,"11":368,"22":1018}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":299,"11":396,"22":1048},"upgradeStep":1}}}, +{"id":81576,"name":"Firestorm Greatstaff","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1044,1566,0,0,0,747,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":9762,"weaponDamageMax":14644,"weaponSpeed":3.2,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"Brother Korloff"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8178,"weaponDamageMax":12268,"stats":{"1":875,"2":1312,"6":625,"7":512}},"463":{"randPropPoints":1710,"weaponDamageMin":8410,"weaponDamageMax":12616,"stats":{"1":899,"2":1349,"6":643,"7":526}},"471":{"randPropPoints":1843,"weaponDamageMin":9061,"weaponDamageMax":13592,"stats":{"1":969,"2":1454,"6":693,"7":567},"upgradeStep":1}}}, +{"id":81577,"name":"Lightbreaker Greatsword","icon":"inv_sword_bloodelf_03","type":13,"weaponType":9,"handType":4,"stats":[1044,0,1566,0,0,0,0,0,529,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"8":443,"11":665}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"8":456,"11":683}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"8":491,"11":737},"upgradeStep":1}}}, +{"id":81578,"name":"Crown of Holy Flame","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,1566,804,504,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"4":415,"7":526,"22":4002}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"4":458,"7":575,"22":4119},"upgradeStep":1}}}, +{"id":81579,"name":"Faded Forest Satin Hood","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,578,385,251,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":251,"7":261,"22":1093},"isBase":true}}}, +{"id":81580,"name":"Faded Forest Hide Helm","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,578,385,251,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":251,"6":261,"22":1439},"isBase":true}}}, +{"id":81581,"name":"Faded Forest Ringmail Helm","icon":"inv_helmet_mail_panda_b_02","type":1,"armorType":3,"stats":[0,0,578,385,268,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":268,"11":238,"22":2071},"isBase":true}}}, +{"id":81582,"name":"Faded Forest Burnished Headcover","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":257,"11":257,"22":2891},"isBase":true}}}, +{"id":81583,"name":"Faded Forest Silk Cowl","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,578,385,0,219,0,279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"5":219,"7":279,"22":1093},"isBase":true}}}, +{"id":81584,"name":"Faded Forest Leather Helm","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,385,578,0,0,0,207,0,0,0,0,286,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":207,"11":286,"22":1439},"isBase":true}}}, +{"id":81585,"name":"Faded Forest Chain Helm","icon":"inv_helmet_mail_panda_b_02","type":1,"armorType":3,"stats":[0,385,578,0,0,0,257,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":257,"11":257,"22":2071},"isBase":true}}}, +{"id":81586,"name":"Faded Forest Heavy Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,257,257,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":257,"11":257,"22":2891},"isBase":true}}}, +{"id":81587,"name":"Faded Forest Armored Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[385,0,578,0,0,0,286,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"6":286,"11":207,"22":2891},"isBase":true}}}, +{"id":81588,"name":"Faded Forest Satin Mantle","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,429,286,0,0,186,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":186,"7":194,"22":1009},"isBase":true}}}, +{"id":81589,"name":"Faded Forest Hide Spaulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,429,286,194,0,0,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":194,"11":186,"22":1328},"isBase":true}}}, +{"id":81590,"name":"Faded Forest Ringmail Spaulders","icon":"inv_shoulder_mail_panda_b_02","type":3,"armorType":3,"stats":[0,0,429,286,0,0,0,217,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"7":217,"11":145,"22":1911},"isBase":true}}}, +{"id":81591,"name":"Faded Forest Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[0,0,429,286,145,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":145,"7":217,"22":2669},"isBase":true}}}, +{"id":81592,"name":"Faded Forest Silk Amice","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,429,286,0,0,194,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":194,"11":186,"22":1009},"isBase":true}}}, +{"id":81593,"name":"Faded Forest Leather Spaulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,286,429,0,0,202,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"5":202,"7":172,"22":1328},"isBase":true}}}, +{"id":81594,"name":"Faded Forest Chain Spaulders","icon":"inv_shoulder_mail_panda_b_02","type":3,"armorType":3,"stats":[0,286,429,0,0,0,0,154,0,0,0,212,0,0,0,0,0,0,0,0,0,0,1911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"7":154,"11":212,"22":1911},"isBase":true}}}, +{"id":81595,"name":"Faded Forest Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[286,0,429,0,0,145,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":145,"9":217,"22":2669},"isBase":true}}}, +{"id":81596,"name":"Faded Forest Armored Shoulders","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[286,0,429,0,0,0,149,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":149,"7":215,"22":2669},"isBase":true}}}, +{"id":81597,"name":"Faded Forest Satin Robe","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,578,385,244,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":244,"6":265,"22":1346},"isBase":true}}}, +{"id":81598,"name":"Faded Forest Hide Robes","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,578,385,0,0,201,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":201,"7":290,"22":1771},"isBase":true}}}, +{"id":81599,"name":"Faded Forest Ringmail Armor","icon":"inv_chest_mail_panda_b_02","type":5,"armorType":3,"stats":[0,0,578,385,290,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":290,"7":201,"22":2548},"isBase":true}}}, +{"id":81600,"name":"Faded Forest Burnished Chestguard","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[0,0,578,385,257,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":257,"6":257,"22":3559},"isBase":true}}}, +{"id":81601,"name":"Faded Forest Silk Robe","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,578,385,0,0,265,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":265,"7":244,"22":1346},"isBase":true}}}, +{"id":81602,"name":"Faded Forest Leather Tunic","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,385,578,0,0,0,0,257,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":257,"11":257,"22":1771},"isBase":true}}}, +{"id":81603,"name":"Faded Forest Chain Armor","icon":"inv_chest_mail_panda_b_02","type":5,"armorType":3,"stats":[0,385,578,0,0,0,286,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":286,"11":207,"22":2548},"isBase":true}}}, +{"id":81604,"name":"Faded Forest Heavy Chestpiece","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,283,0,213,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"9":283,"11":213,"22":3559},"isBase":true}}}, +{"id":81605,"name":"Faded Forest Armored Chestpiece","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[385,0,578,0,0,232,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":232,"11":272,"22":3559},"isBase":true}}}, +{"id":81606,"name":"Faded Forest Satin Leggings","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,578,385,265,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":265,"11":244,"22":1177},"isBase":true}}}, +{"id":81607,"name":"Faded Forest Hide Legguards","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,578,385,201,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":201,"7":290,"22":1550},"isBase":true}}}, +{"id":81608,"name":"Faded Forest Ringmail Leggings","icon":"inv_pants_mail_panda_b_02","type":9,"armorType":3,"stats":[0,0,578,385,290,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":290,"11":201,"22":2230},"isBase":true}}}, +{"id":81609,"name":"Faded Forest Burnished Legplates","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[0,0,578,385,207,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":207,"7":286,"22":3114},"isBase":true}}}, +{"id":81610,"name":"Faded Forest Silk Trousers","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,578,385,0,261,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"5":261,"11":251,"22":1177},"isBase":true}}}, +{"id":81611,"name":"Faded Forest Leather Legguards","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,385,578,0,0,0,244,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":244,"11":265,"22":1550},"isBase":true}}}, +{"id":81612,"name":"Faded Forest Chain Leggings","icon":"inv_pants_mail_panda_b_02","type":9,"armorType":3,"stats":[0,385,578,0,0,283,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":283,"7":213,"22":2230},"isBase":true}}}, +{"id":81613,"name":"Faded Forest Heavy Legguards","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,213,283,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"9":213,"10":283,"22":3114},"isBase":true}}}, +{"id":81614,"name":"Faded Forest Armored Legguards","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[385,0,578,0,0,251,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":251,"7":261,"22":3114},"isBase":true}}}, +{"id":81615,"name":"Faded Forest Satin Treads","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,429,286,177,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":177,"7":199,"22":925},"isBase":true}}}, +{"id":81616,"name":"Faded Forest Hide Footguards","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,429,286,191,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":191,"11":191,"22":1218},"isBase":true}}}, +{"id":81617,"name":"Faded Forest Ringmail Sabatons","icon":"inv_boots_mail_panda_b_02","type":10,"armorType":3,"stats":[0,0,429,286,167,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":167,"6":205,"22":1752},"isBase":true}}}, +{"id":81618,"name":"Faded Forest Burnished Greaves","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[0,0,429,286,0,0,191,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":191,"11":191,"22":2447},"isBase":true}}}, +{"id":81619,"name":"Faded Forest Silk Treads","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,429,286,0,0,0,191,0,0,0,191,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"7":191,"11":191,"22":925},"isBase":true}}}, +{"id":81620,"name":"Faded Forest Leather Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,286,429,0,0,0,191,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":191,"7":191,"22":1218},"isBase":true}}}, +{"id":81621,"name":"Faded Forest Chain Sabatons","icon":"inv_boots_mail_panda_b_02","type":10,"armorType":3,"stats":[0,286,429,0,0,205,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"5":205,"11":167,"22":1752},"isBase":true}}}, +{"id":81622,"name":"Faded Forest Heavy Warboots","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[286,0,429,0,0,177,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":177,"11":199,"22":2447},"isBase":true}}}, +{"id":81623,"name":"Faded Forest Armored Warboots","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,177,0,0,0,199,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"7":177,"11":199,"22":2447},"isBase":true}}}, +{"id":81624,"name":"Faded Forest Satin Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,429,286,199,0,0,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":199,"11":177,"22":757},"isBase":true}}}, +{"id":81625,"name":"Faded Forest Hide Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,429,286,154,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":154,"7":212,"22":996},"isBase":true}}}, +{"id":81626,"name":"Faded Forest Ringmail Waistguard","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,0,429,286,0,0,163,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":163,"7":207,"22":1433},"isBase":true}}}, +{"id":81627,"name":"Faded Forest Burnished Clasp","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,429,286,191,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":191,"11":191,"22":2002},"isBase":true}}}, +{"id":81628,"name":"Faded Forest Silk Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,429,286,0,0,215,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"7":149,"22":757},"isBase":true}}}, +{"id":81629,"name":"Faded Forest Leather Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,286,429,0,0,0,0,207,0,0,0,163,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"7":207,"11":163,"22":996},"isBase":true}}}, +{"id":81630,"name":"Faded Forest Chain Links","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,286,429,0,0,0,199,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":199,"11":177,"22":1433},"isBase":true}}}, +{"id":81631,"name":"Faded Forest Heavy Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,205,167,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"9":205,"10":167,"22":2002},"isBase":true}}}, +{"id":81632,"name":"Faded Forest Armored Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[286,0,429,0,0,0,194,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":194,"11":186,"22":2002},"isBase":true}}}, +{"id":81633,"name":"Faded Forest Satin Gloves","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,429,286,172,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":172,"6":202,"22":841},"isBase":true}}}, +{"id":81634,"name":"Faded Forest Hide Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,429,286,191,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":191,"6":191,"22":1107},"isBase":true}}}, +{"id":81635,"name":"Faded Forest Ringmail Gauntlets","icon":"inv_gloves_mail_panda_b_02","type":7,"armorType":3,"stats":[0,0,429,286,191,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":191,"6":191,"22":1593},"isBase":true}}}, +{"id":81636,"name":"Faded Forest Burnished Gloves","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[0,0,429,286,191,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":191,"6":191,"22":2224},"isBase":true}}}, +{"id":81637,"name":"Faded Forest Silk Handguards","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,429,286,0,0,202,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":202,"11":172,"22":841},"isBase":true}}}, +{"id":81638,"name":"Faded Forest Leather Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,286,429,0,0,0,191,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":191,"7":191,"22":1107},"isBase":true}}}, +{"id":81639,"name":"Faded Forest Chain Gauntlets","icon":"inv_gloves_mail_panda_b_02","type":7,"armorType":3,"stats":[0,286,429,0,0,0,0,215,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"7":215,"11":149,"22":1593},"isBase":true}}}, +{"id":81640,"name":"Faded Forest Heavy Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[286,0,429,0,0,154,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"5":154,"10":212,"22":2224},"isBase":true}}}, +{"id":81641,"name":"Faded Forest Armored Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[286,0,429,0,0,0,191,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":191,"7":191,"22":2224},"isBase":true}}}, +{"id":81642,"name":"Faded Forest Satin Cuffs","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,322,215,151,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":151,"11":129,"22":589},"isBase":true}}}, +{"id":81643,"name":"Faded Forest Hide Bindings","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"11":143,"22":775},"isBase":true}}}, +{"id":81644,"name":"Faded Forest Ringmail Armbands","icon":"inv_bracer_mail_panda_b_02","type":6,"armorType":3,"stats":[0,0,322,215,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"6":143,"22":1115},"isBase":true}}}, +{"id":81645,"name":"Faded Forest Burnished Bracers","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[0,0,322,215,0,0,109,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":109,"7":163,"22":1557},"isBase":true}}}, +{"id":81646,"name":"Faded Forest Silk Cuffs","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,322,215,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"7":143,"22":589},"isBase":true}}}, +{"id":81647,"name":"Faded Forest Leather Armwraps","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,215,322,0,0,112,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"5":112,"11":161,"22":775},"isBase":true}}}, +{"id":81648,"name":"Faded Forest Chain Wristguards","icon":"inv_bracer_mail_panda_b_02","type":6,"armorType":3,"stats":[0,215,322,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"5":143,"6":143,"22":1115},"isBase":true}}}, +{"id":81649,"name":"Faded Forest Heavy Armplates","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[215,0,322,0,0,0,0,0,0,132,0,149,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":132,"11":149,"22":1557},"isBase":true}}}, +{"id":81650,"name":"Faded Forest Armored Bracers","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[215,0,322,0,0,0,0,132,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"7":132,"11":149,"22":1557},"isBase":true}}}, +{"id":81651,"name":"Faded Forest Locket","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,322,215,126,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":126,"6":153},"isBase":true}}}, +{"id":81652,"name":"Faded Forest Choker","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,322,215,0,0,0,145,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"7":145,"11":139},"isBase":true}}}, +{"id":81653,"name":"Faded Forest Necklace","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,215,322,0,0,0,129,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":129,"8":151},"isBase":true}}}, +{"id":81654,"name":"Faded Forest Pendant","icon":"inv_jewelry_necklace_67","type":2,"stats":[215,0,322,0,0,0,0,0,0,143,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":143,"11":143},"isBase":true}}}, +{"id":81655,"name":"Faded Forest Amulet","icon":"inv_jewelry_necklace_67","type":2,"stats":[215,0,322,0,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":143,"11":143},"isBase":true}}}, +{"id":81656,"name":"Faded Forest Band","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,322,215,0,0,153,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":153,"11":126},"isBase":true}}}, +{"id":81657,"name":"Faded Forest Ring","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,322,215,0,0,143,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"6":143,"11":143},"isBase":true}}}, +{"id":81658,"name":"Faded Forest Loop","icon":"inv_jewelry_ring_109","type":11,"stats":[0,215,322,0,0,0,0,112,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"7":112,"8":161},"isBase":true}}}, +{"id":81659,"name":"Faded Forest Signet","icon":"inv_jewelry_ring_109","type":11,"stats":[215,0,322,0,0,0,0,0,0,145,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":145,"11":139},"isBase":true}}}, +{"id":81660,"name":"Faded Forest Seal","icon":"inv_jewelry_ring_109","type":11,"stats":[215,0,322,0,0,0,139,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":139,"7":145},"isBase":true}}}, +{"id":81661,"name":"Faded Forest Medallion","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"4":363},"isBase":true}}}, +{"id":81662,"name":"Faded Forest Emblem","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"7":363},"isBase":true}}}, +{"id":81663,"name":"Faded Forest Medal","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"6":363},"isBase":true}}}, +{"id":81664,"name":"Faded Forest Insignia","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"9":363},"isBase":true}}}, +{"id":81665,"name":"Faded Forest Badge","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"7":363},"isBase":true}}}, +{"id":81666,"name":"Faded Forest Shawl","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,322,215,109,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":109,"6":163,"22":673},"isBase":true}}}, +{"id":81667,"name":"Faded Forest Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,322,215,0,147,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"5":147,"11":136,"22":673},"isBase":true}}}, +{"id":81668,"name":"Faded Forest Cape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,215,322,0,0,0,139,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"1":215,"2":322,"6":139,"11":145,"22":673},"isBase":true}}}, +{"id":81669,"name":"Faded Forest Manteau","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[215,0,322,0,0,0,0,0,0,129,0,151,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":129,"11":151,"22":673},"isBase":true}}}, +{"id":81670,"name":"Faded Forest Cloak","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[215,0,322,0,0,0,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"6":143,"7":143,"22":673},"isBase":true}}}, +{"id":81671,"name":"Faded Forest Meditation Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,279,0,0,0,0,0,0,219,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"4":279,"11":219,"14":2208},"isBase":true}}}, +{"id":81672,"name":"Faded Forest Diviner's Rod","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,276,225,0,0,0,0,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"6":276,"7":225,"14":2208},"isBase":true}}}, +{"id":81673,"name":"Faded Forest Combat Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,276,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"stats":{"1":385,"2":578,"6":276,"11":225},"isBase":true}}}, +{"id":81674,"name":"Faded Forest Battlemace","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,0,276,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"8":276,"11":225},"isBase":true}}}, +{"id":81675,"name":"Faded Forest Handaxe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,0,110,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"7":110,"11":110},"isBase":true}}}, +{"id":81676,"name":"Faded Forest Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,385,578,0,0,0,257,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"stats":{"1":385,"2":578,"6":257,"7":257},"isBase":true}}}, +{"id":81677,"name":"Faded Forest Saber","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,123,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"9":123,"10":89},"isBase":true}}}, +{"id":81678,"name":"Faded Forest Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,248,165,110,0,110,0,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"4":110,"6":110,"14":2207},"isBase":true}}}, +{"id":81679,"name":"Faded Forest Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":110,"7":110},"isBase":true}}}, +{"id":81680,"name":"Faded Forest Smasher","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":110,"7":110},"isBase":true}}}, +{"id":81681,"name":"Faded Forest Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,0,225,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":225,"7":276},"isBase":true}}}, +{"id":81682,"name":"Faded Forest Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,110,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":110,"8":110},"isBase":true}}}, +{"id":81683,"name":"Faded Forest Barrier","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,157,0,119,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":157,"11":119,"22":12103},"isBase":true}}}, +{"id":81684,"name":"Faded Forest Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,143,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":143,"11":143,"22":12103},"isBase":true}}}, +{"id":81685,"name":"Faded Forest Blade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,0,110,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"7":110,"11":110},"isBase":true}}}, +{"id":81686,"name":"Faded Forest Axe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,0,124,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"7":124,"11":86},"isBase":true}}}, +{"id":81687,"name":"Waistplate of Imminent Resurrection","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[590,0,1164,0,0,0,0,0,393,776,0,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"8":329,"9":649,"22":2741}},"463":{"randPropPoints":1270,"stats":{"0":508,"2":1002,"8":338,"9":668,"22":2771}},"471":{"randPropPoints":1369,"stats":{"0":547,"2":1080,"8":365,"9":720,"22":2851},"upgradeStep":1}}}, +{"id":81688,"name":"Dashing Strike Treads","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,696,1164,0,0,0,414,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":340,"11":424,"22":1763}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"6":351,"11":438,"22":1782}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"6":381,"11":475,"22":1834},"upgradeStep":1}}}, +{"id":81689,"name":"Leggings of Hallowed Fire","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1566,964,687,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":569,"6":500,"22":1763}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":586,"6":515,"22":1782}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":635,"6":558,"22":1834},"upgradeStep":1}}}, +{"id":81690,"name":"Incarnadine Scarlet Spaulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,1164,696,507,0,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2057,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":418,"6":350,"22":1923}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":431,"6":361,"22":1944}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":468,"6":393,"22":2001},"upgradeStep":1}}}, +{"id":81691,"name":"Greatstaff of Righteousness","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,1566,1044,0,0,644,0,0,0,0,727,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":5186,"weaponDamageMax":7780,"weaponSpeed":3.4,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4345,"weaponDamageMax":6518,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4468,"weaponDamageMax":6702,"stats":{"2":1349,"3":899,"6":555,"11":626,"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4813,"weaponDamageMax":7221,"stats":{"2":1454,"3":969,"6":598,"11":675,"14":5551},"upgradeStep":1}}}, +{"id":81692,"name":"Whitemane's Embroidered Chapeau","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1566,804,0,0,597,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":480,"7":434,"22":1637}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"6":497,"7":450,"22":1655}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"6":545,"7":494,"22":1703},"upgradeStep":1}}}, +{"id":81693,"name":"Houndmaster's Compound Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,1044,1566,0,0,0,717,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":9152,"weaponDamageMax":13729,"weaponSpeed":3,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Houndmaster Braun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":600,"7":554}},"463":{"randPropPoints":1710,"weaponDamageMin":7885,"weaponDamageMax":11828,"stats":{"1":899,"2":1349,"6":617,"7":570}},"471":{"randPropPoints":1843,"weaponDamageMin":8495,"weaponDamageMax":12743,"stats":{"1":969,"2":1454,"6":665,"7":614},"upgradeStep":1}}}, +{"id":81694,"name":"Commanding Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[582,0,873,0,0,295,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Houndmaster Braun"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"6":371,"22":2132}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"5":254,"6":381,"22":2155}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"5":274,"6":410,"22":2218},"upgradeStep":1}}}, +{"id":81695,"name":"Hound Trainer's Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,776,1164,0,0,0,0,0,454,0,0,555,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Houndmaster Braun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"8":380,"11":464,"22":1602}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"8":391,"11":478,"22":1620}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"8":421,"11":515,"22":1667},"upgradeStep":1}}}, +{"id":81696,"name":"Canine Commander's Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[964,0,1566,0,0,0,0,0,0,656,656,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Houndmaster Braun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":543,"10":543,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":819,"2":1349,"9":560,"10":560,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":889,"2":1454,"9":606,"10":606,"22":5069},"upgradeStep":1}}}, +{"id":81697,"name":"The Gleaming Ravager","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":4,"stats":[1044,0,1566,0,0,0,577,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Armsmaster Harlan"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":484,"7":642}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"6":497,"7":660}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"6":536,"7":711},"upgradeStep":1}}}, +{"id":81698,"name":"Harlan's Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,696,1164,0,0,0,389,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,2862,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Armsmaster Harlan"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":319,"11":436,"22":2676}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"6":329,"11":450,"22":2705}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"6":358,"11":488,"22":2784},"upgradeStep":1}}}, +{"id":81699,"name":"Scarlet Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,1164,696,0,439,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1482,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Armsmaster Harlan"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":361,"6":412,"22":1385}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"5":372,"6":425,"22":1400}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"5":404,"6":461,"22":1441},"upgradeStep":1}}}, +{"id":81700,"name":"Lightblade Bracer","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,582,873,0,0,0,421,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Armsmaster Harlan"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":353,"11":277,"22":1122}},"463":{"randPropPoints":953,"stats":{"1":501,"2":752,"6":363,"11":285,"22":1134}},"471":{"randPropPoints":1027,"stats":{"1":540,"2":810,"6":391,"11":307,"22":1167},"upgradeStep":1}}}, +{"id":81742,"name":"Silkmasters' Satin Hood","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,895,597,0,0,0,368,0,0,0,416,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"7":368,"11":416,"22":1390},"isBase":true}}}, +{"id":81743,"name":"Sunsoaked Helm","icon":"inv_helm_leather_panda_b_02_crimson","type":1,"armorType":2,"stats":[0,0,895,597,0,0,0,421,0,0,0,359,0,0,0,0,0,0,0,0,0,0,1769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"7":421,"11":359,"22":1769},"isBase":true}}}, +{"id":81744,"name":"Huangtze Scale Helm","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,0,895,597,0,0,321,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,2462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"6":321,"11":443,"22":2462},"isBase":true}}}, +{"id":81745,"name":"Paoquan Burnished Headcover","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[0,0,895,597,0,0,368,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"6":368,"7":416,"22":3362},"isBase":true}}}, +{"id":81746,"name":"Gilded Fan Silk Cowl","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,895,597,0,0,0,378,0,0,0,410,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"7":378,"11":410,"22":1390},"isBase":true}}}, +{"id":81747,"name":"Plainshawk Helm","icon":"inv_helm_leather_panda_b_02_crimson","type":1,"armorType":2,"stats":[0,597,895,0,0,0,416,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"1":597,"2":895,"6":416,"7":368,"22":1769},"isBase":true}}}, +{"id":81748,"name":"Wild Plains Helm","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,597,895,0,0,0,432,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"1":597,"2":895,"6":432,"7":340,"22":2462},"isBase":true}}}, +{"id":81749,"name":"Thunderfoot Heavy Helm","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[597,0,895,0,0,404,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,3362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"0":597,"2":895,"5":404,"11":388,"22":3362},"isBase":true}}}, +{"id":81750,"name":"Sunsong Armored Helm","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[597,0,895,0,0,0,368,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"0":597,"2":895,"6":368,"7":416,"22":3362},"isBase":true}}}, +{"id":81751,"name":"Silkmasters' Satin Mantle","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,552,368,0,0,249,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":249,"11":239,"22":1166},"isBase":true}}}, +{"id":81752,"name":"Sunsoaked Spaulder","icon":"inv_shoulder_leather_panda_b_02_crimson","type":3,"armorType":2,"stats":[0,0,552,368,0,0,267,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":267,"7":209,"22":1497},"isBase":true}}}, +{"id":81753,"name":"Huangtze Scale Spaulders","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,0,552,368,0,0,227,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":227,"7":256,"22":2102},"isBase":true}}}, +{"id":81754,"name":"Paoquan Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[0,0,552,368,0,0,0,198,0,0,0,273,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"7":198,"11":273,"22":2888},"isBase":true}}}, +{"id":81755,"name":"Gilded Fan Silk Amice","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,552,368,0,0,209,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":209,"7":267,"22":1166},"isBase":true}}}, +{"id":81756,"name":"Plainshawk Spaulder","icon":"inv_shoulder_leather_panda_b_02_crimson","type":3,"armorType":2,"stats":[0,368,552,0,0,0,0,280,0,0,0,186,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":280,"11":186,"22":1497},"isBase":true}}}, +{"id":81757,"name":"Wild Plains Spaulders","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,368,552,0,0,0,256,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"6":256,"11":227,"22":2102},"isBase":true}}}, +{"id":81758,"name":"Thunderfoot Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[368,0,552,0,0,0,0,0,0,215,263,0,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"9":215,"10":263,"22":2888},"isBase":true}}}, +{"id":81759,"name":"Sunsong Armored Shoulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[368,0,552,0,0,0,0,215,0,0,0,263,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"7":215,"11":263,"22":2888},"isBase":true}}}, +{"id":81760,"name":"Silkmasters' Satin Robe","icon":"inv_chest_cloth_panda_b_02_blue","type":5,"armorType":1,"stats":[0,0,895,597,0,0,421,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,1711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"6":421,"11":359,"22":1711},"isBase":true}}}, +{"id":81761,"name":"Sunsoaked Breastplate","icon":"inv_chest_leather_panda_b_02_crimson","type":5,"armorType":2,"stats":[0,0,895,597,0,0,0,448,0,0,0,312,0,0,0,0,0,0,0,0,0,0,2178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"7":448,"11":312,"22":2178},"isBase":true}}}, +{"id":81762,"name":"Huangtze Scale Armor","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,0,895,597,0,0,340,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"6":340,"7":432,"22":3030},"isBase":true}}}, +{"id":81763,"name":"Paoquan Burnished Chestguard","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[0,0,895,597,0,0,359,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,4138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"6":359,"11":421,"22":4138},"isBase":true}}}, +{"id":81764,"name":"Gilded Fan Silk Robe","icon":"inv_chest_cloth_panda_b_02_blue","type":5,"armorType":1,"stats":[0,0,895,597,0,378,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"2":895,"3":597,"5":378,"7":410,"22":1711},"isBase":true}}}, +{"id":81765,"name":"Plainshawk Tunic","icon":"inv_chest_leather_panda_b_02_crimson","type":5,"armorType":2,"stats":[0,597,895,0,0,0,359,0,0,0,0,421,0,0,0,0,0,0,0,0,0,0,2178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"1":597,"2":895,"6":359,"11":421,"22":2178},"isBase":true}}}, +{"id":81766,"name":"Wild Plains Chestguard","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,597,895,0,0,0,349,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"1":597,"2":895,"6":349,"7":427,"22":3030},"isBase":true}}}, +{"id":81767,"name":"Thunderfoot Heavy Chestpiece","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[597,0,895,0,0,0,0,0,0,378,410,0,0,0,0,0,0,0,0,0,0,0,4138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"0":597,"2":895,"9":378,"10":410,"22":4138},"isBase":true}}}, +{"id":81768,"name":"Sunsong Armored Chestpiece","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[597,0,895,0,0,404,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"stats":{"0":597,"2":895,"5":404,"6":388,"22":4138},"isBase":true}}}, +{"id":81769,"name":"Silkmasters' Satin Leggings","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,0,350,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":350,"11":298,"22":1360},"isBase":true}}}, +{"id":81770,"name":"Sunsoaked Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,0,743,495,0,0,350,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":350,"11":298,"22":1747},"isBase":true}}}, +{"id":81771,"name":"Huangtze Scale Leggings","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,0,743,495,0,0,306,0,0,0,0,345,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":306,"11":345,"22":2452},"isBase":true}}}, +{"id":81772,"name":"Paoquan Burnished Legplates","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[0,0,743,495,0,0,0,314,0,0,0,340,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":314,"11":340,"22":3370},"isBase":true}}}, +{"id":81773,"name":"Gilded Fan Silk Trousers","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,0,314,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":314,"11":340,"22":1360},"isBase":true}}}, +{"id":81774,"name":"Plainshawk Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,495,743,0,0,266,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"5":266,"7":368,"22":1747},"isBase":true}}}, +{"id":81775,"name":"Wild Plains Legguards","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,495,743,0,0,0,0,345,0,0,0,306,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"7":345,"11":306,"22":2452},"isBase":true}}}, +{"id":81776,"name":"Thunderfoot Heavy Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,0,0,0,0,290,354,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"10":290,"11":354,"22":3370},"isBase":true}}}, +{"id":81777,"name":"Sunsong Armored Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,282,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"6":282,"11":359,"22":3370},"isBase":true}}}, +{"id":81778,"name":"Silkmasters' Satin Treads","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,552,368,0,0,215,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1069,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":215,"7":263,"22":1069},"isBase":true}}}, +{"id":81779,"name":"Sunsoaked Footguards","icon":"inv_boots_leather_panda_b_02_crimson","type":10,"armorType":2,"stats":[0,0,552,368,0,0,249,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":249,"7":239,"22":1372},"isBase":true}}}, +{"id":81780,"name":"Huangtze Scale Sabatons","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,0,552,368,0,0,0,249,0,0,0,239,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"7":249,"11":239,"22":1927},"isBase":true}}}, +{"id":81781,"name":"Paoquan Burnished Greaves","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[0,0,552,368,0,0,267,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":267,"7":209,"22":2648},"isBase":true}}}, +{"id":81782,"name":"Gilded Fan Silk Treads","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,552,368,0,0,198,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,1069,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":198,"11":273,"22":1069},"isBase":true}}}, +{"id":81783,"name":"Plainshawk Boots","icon":"inv_boots_leather_panda_b_02_crimson","type":10,"armorType":2,"stats":[0,368,552,0,0,0,0,253,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":253,"11":233,"22":1372},"isBase":true}}}, +{"id":81784,"name":"Wild Plains Sabatons","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,368,552,0,0,204,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":204,"6":270,"22":1927},"isBase":true}}}, +{"id":81785,"name":"Thunderfoot Heavy Warboots","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[368,0,552,0,0,0,0,0,0,227,256,0,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"9":227,"10":256,"22":2648},"isBase":true}}}, +{"id":81786,"name":"Sunsong Armored Warboots","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[368,0,552,0,0,0,233,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"6":233,"11":253,"22":2648},"isBase":true}}}, +{"id":81787,"name":"Silkmasters' Satin Cord","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,552,368,0,0,0,249,0,0,0,239,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"7":249,"11":239,"22":874},"isBase":true}}}, +{"id":81788,"name":"Sunsoaked Belt","icon":"inv_belt_leather_panda_b_02_crimson","type":8,"armorType":2,"stats":[0,0,552,368,0,0,227,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":227,"11":256,"22":1123},"isBase":true}}}, +{"id":81789,"name":"Huangtze Scale Waistguard","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,0,552,368,0,0,273,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":273,"11":198,"22":1576},"isBase":true}}}, +{"id":81790,"name":"Paoquan Burnished Clasp","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[0,0,552,368,0,0,233,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":233,"11":253,"22":2166},"isBase":true}}}, +{"id":81791,"name":"Gilded Fan Silk Cord","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,552,368,0,245,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"5":245,"7":245,"22":874},"isBase":true}}}, +{"id":81792,"name":"Plainshawk Belt","icon":"inv_belt_leather_panda_b_02_crimson","type":8,"armorType":2,"stats":[0,368,552,0,0,0,198,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"6":198,"11":273,"22":1123},"isBase":true}}}, +{"id":81793,"name":"Wild Plains Belt","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,368,552,0,0,0,0,239,0,0,0,249,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":239,"11":249,"22":1576},"isBase":true}}}, +{"id":81794,"name":"Thunderfoot Heavy Girdle","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[368,0,552,0,0,0,0,0,0,0,245,245,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"10":245,"11":245,"22":2166},"isBase":true}}}, +{"id":81795,"name":"Sunsong Armored Girdle","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[368,0,552,0,0,0,260,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"6":260,"7":221,"22":2166},"isBase":true}}}, +{"id":81796,"name":"Silkmasters' Satin Gloves","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,0,0,267,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":267,"7":209,"22":971},"isBase":true}}}, +{"id":81797,"name":"Sunsoaked Gloves","icon":"inv_glove_leather_panda_b_02_crimson","type":7,"armorType":2,"stats":[0,0,552,368,0,0,227,0,0,0,0,256,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":227,"11":256,"22":1248},"isBase":true}}}, +{"id":81798,"name":"Huangtze Scale Gauntlets","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,0,552,368,0,0,239,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":239,"11":249,"22":1752},"isBase":true}}}, +{"id":81799,"name":"Paoquan Burnished Gloves","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[0,0,552,368,0,0,204,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":204,"7":270,"22":2407},"isBase":true}}}, +{"id":81800,"name":"Gilded Fan Silk Handguards","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,0,0,186,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":186,"7":280,"22":971},"isBase":true}}}, +{"id":81801,"name":"Plainshawk Gloves","icon":"inv_glove_leather_panda_b_02_crimson","type":7,"armorType":2,"stats":[0,368,552,0,0,0,0,267,0,0,0,209,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":267,"11":209,"22":1248},"isBase":true}}}, +{"id":81802,"name":"Wild Plains Gauntlets","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,368,552,0,0,0,260,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"6":260,"11":221,"22":1752},"isBase":true}}}, +{"id":81803,"name":"Thunderfoot Heavy Gauntlets","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[368,0,552,0,0,0,0,0,0,263,0,215,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"9":263,"11":215,"22":2407},"isBase":true}}}, +{"id":81804,"name":"Sunsong Armored Gauntlets","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[368,0,552,0,0,0,0,209,0,0,0,267,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"7":209,"11":267,"22":2407},"isBase":true}}}, +{"id":81805,"name":"Silkmasters' Satin Cuffs","icon":"inv_bracer_cloth_panda_b_02_blue","type":6,"armorType":1,"stats":[0,0,414,276,0,0,0,190,0,0,0,175,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":190,"11":175,"22":680},"isBase":true}}}, +{"id":81806,"name":"Sunsoaked Bindings","icon":"inv_bracer_leather_panda_b_02_crimson","type":6,"armorType":2,"stats":[0,0,414,276,0,0,203,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":203,"7":153,"22":873},"isBase":true}}}, +{"id":81807,"name":"Huangtze Scale Armbands","icon":"inv_bracer_mail_panda_b_02red","type":6,"armorType":3,"stats":[0,0,414,276,0,0,0,197,0,0,0,161,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":197,"11":161,"22":1226},"isBase":true}}}, +{"id":81808,"name":"Paoquan Burnished Bracers","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[0,0,414,276,0,0,161,0,0,0,0,197,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":161,"11":197,"22":1685},"isBase":true}}}, +{"id":81809,"name":"Gilded Fan Silk Cuffs","icon":"inv_bracer_cloth_panda_b_02_blue","type":6,"armorType":1,"stats":[0,0,414,276,0,0,0,184,0,0,0,184,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":184,"11":184,"22":680},"isBase":true}}}, +{"id":81810,"name":"Plainshawk Armwraps","icon":"inv_bracer_leather_panda_b_02_crimson","type":6,"armorType":2,"stats":[0,276,414,0,0,140,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"5":140,"6":210,"22":873},"isBase":true}}}, +{"id":81811,"name":"Wild Plains Wristguards","icon":"inv_bracer_mail_panda_b_02red","type":6,"armorType":3,"stats":[0,276,414,0,0,200,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"5":200,"7":157,"22":1226},"isBase":true}}}, +{"id":81812,"name":"Thunderfoot Heavy Armplates","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[276,0,414,0,0,0,0,0,144,0,0,207,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":144,"11":207,"22":1685},"isBase":true}}}, +{"id":81813,"name":"Sunsong Armored Bracers","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[276,0,414,0,0,0,148,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"6":148,"11":205,"22":1685},"isBase":true}}}, +{"id":81814,"name":"Necklace of Three Sins","icon":"inv_jewelry_necklace_62","type":2,"stats":[0,0,414,276,0,0,0,148,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":148,"11":205},"isBase":true}}}, +{"id":81815,"name":"Jhuuroon's Collar","icon":"inv_jewelry_necklace_69","type":2,"stats":[0,0,414,276,0,0,179,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":179,"11":187},"isBase":true}}}, +{"id":81816,"name":"Necklace of Relative Peace","icon":"inv_jewelry_necklace_78","type":2,"stats":[0,276,414,0,0,0,0,0,161,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"8":161,"11":197},"isBase":true}}}, +{"id":81817,"name":"Amulet of the Singing Marshes","icon":"inv_jewelry_necklace_58","type":2,"stats":[276,0,414,0,0,0,0,0,0,197,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":197,"10":161},"isBase":true}}}, +{"id":81818,"name":"Otouxian Amulet","icon":"inv_jewelry_necklace_63","type":2,"stats":[276,0,414,0,0,0,0,207,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"7":207,"8":144},"isBase":true}}}, +{"id":81819,"name":"Band of the Big Thing o' the Deep","icon":"inv_jewelry_ring_121","type":11,"stats":[0,0,498,332,194,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"2":498,"3":332,"4":194,"6":238},"isBase":true}}}, +{"id":81820,"name":"Band of the Dance Ritual","icon":"inv_jewelry_ring_130","type":11,"stats":[0,0,498,332,0,0,189,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"2":498,"3":332,"6":189,"11":241},"isBase":true}}}, +{"id":81821,"name":"Nesingwary's Signet","icon":"inv_jewelry_ring_110","type":11,"stats":[0,332,498,0,0,0,184,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"1":332,"2":498,"6":184,"8":244},"isBase":true}}}, +{"id":81822,"name":"Band of Parental Mastery","icon":"inv_jewelry_ring_112","type":11,"stats":[332,0,498,0,0,0,0,0,0,231,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"0":332,"2":498,"9":231,"11":205},"isBase":true}}}, +{"id":81823,"name":"Ring of Torjar's Bane","icon":"inv_jewelry_ring_120","type":11,"stats":[332,0,498,0,0,0,173,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"0":332,"2":498,"6":173,"11":250},"isBase":true}}}, +{"id":81824,"name":"Hawk Feather Band","icon":"inv_jewelry_ring_zulgurub_01","type":11,"stats":[0,0,414,276,0,0,187,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":187,"11":179},"isBase":true}}}, +{"id":81825,"name":"Lariat Loop","icon":"inv_misc_noose_01","type":11,"stats":[0,0,414,276,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"5":184,"6":184},"isBase":true}}}, +{"id":81826,"name":"Shepherd's Loop","icon":"inv_jewelry_ring_111","type":11,"stats":[0,276,414,0,0,0,166,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"6":166,"11":195},"isBase":true}}}, +{"id":81827,"name":"Band of Bravery","icon":"inv_jewelry_ring_114","type":11,"stats":[276,0,414,0,0,0,0,0,0,0,200,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"10":200,"11":157},"isBase":true}}}, +{"id":81828,"name":"Ring of Courage","icon":"inv_jewelry_ring_117","type":11,"stats":[276,0,414,0,0,0,197,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"6":197,"11":161},"isBase":true}}}, +{"id":81829,"name":"Lucky Springtail Foot","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81830,"name":"Maizer Leaf","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81831,"name":"Shadow Fox Tail","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81832,"name":"Mushan Horn","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"9":467},"isBase":true}}}, +{"id":81833,"name":"Longfang Tooth","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":81834,"name":"Silkspawn Wing","icon":"inv_fabric_soulcloth","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81835,"name":"Plainshawk Feather","icon":"inv_feather_05","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":81836,"name":"Lucky \"Rabbit's\" Foot","icon":"ability_hunter_mendpet","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81837,"name":"Viseclaw Carapace","icon":"inv_qiraj_huskoldgod","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"10":467},"isBase":true}}}, +{"id":81838,"name":"Tawnyhide Antler","icon":"trade_archaeology_antleredcloakclasp","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":81839,"name":"Embrace of Trees","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[0,0,414,276,148,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":148,"7":205,"22":777},"isBase":true}}}, +{"id":81840,"name":"Dustback Cloak","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[0,0,414,276,0,0,190,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":190,"7":175,"22":777},"isBase":true}}}, +{"id":81841,"name":"Tawnyhide Cape","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[0,276,414,0,0,0,0,157,0,0,0,200,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"7":157,"11":200,"22":777},"isBase":true}}}, +{"id":81842,"name":"Mudmug's Cloak","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[276,0,414,0,0,0,0,0,0,170,0,192,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"9":170,"11":192,"22":777},"isBase":true}}}, +{"id":81843,"name":"Cloak of the Grassy Cline","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[276,0,414,0,0,0,0,197,0,0,0,161,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"7":197,"11":161,"22":777},"isBase":true}}}, +{"id":81844,"name":"Gardener's Sickle","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,319,212,0,0,118,0,0,0,0,156,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1550,"weaponDamageMax":2879,"weaponSpeed":3.3,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1550,"weaponDamageMax":2879,"stats":{"2":319,"3":212,"6":118,"11":156,"14":2839},"isBase":true}}}, +{"id":81845,"name":"Gardener's Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,319,212,0,0,0,152,0,0,0,124,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1140,"weaponDamageMax":1141,"weaponSpeed":1.7,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1140,"weaponDamageMax":1141,"stats":{"2":319,"3":212,"7":152,"11":124,"14":2839},"isBase":true}}}, +{"id":81846,"name":"Fran's Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,495,743,0,0,0,266,368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":4777,"weaponDamageMax":7167,"weaponSpeed":3.3,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":4777,"weaponDamageMax":7167,"stats":{"1":495,"2":743,"6":266,"7":368},"isBase":true}}}, +{"id":81847,"name":"Gardener's Axe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[495,0,743,0,0,0,0,0,259,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"weaponSpeed":3.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"stats":{"0":495,"2":743,"8":259,"11":372},"isBase":true}}}, +{"id":81848,"name":"Fran's Handaxe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[212,0,319,0,0,0,152,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"6":152,"8":124},"isBase":true}}}, +{"id":81849,"name":"Fran's Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,495,743,0,0,0,0,345,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":3673,"weaponDamageMax":6823,"weaponSpeed":2.9,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":3673,"weaponDamageMax":6823,"stats":{"1":495,"2":743,"7":345,"11":306},"isBase":true}}}, +{"id":81850,"name":"Gardener's Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[212,0,319,0,0,0,0,0,114,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"8":114,"10":158},"isBase":true}}}, +{"id":81851,"name":"Fran's Golden Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,319,212,0,0,148,0,0,0,0,131,0,0,2839,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":751,"weaponDamageMax":1396,"weaponSpeed":1.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":751,"weaponDamageMax":1396,"stats":{"2":319,"3":212,"6":148,"11":131,"14":2839},"isBase":true}}}, +{"id":81852,"name":"Fran's Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,212,319,0,0,0,0,142,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"weaponSpeed":1.8,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"stats":{"1":212,"2":319,"7":142,"11":142},"isBase":true}}}, +{"id":81853,"name":"Fran's Bronze Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"1":212,"2":319,"6":142,"7":142},"isBase":true}}}, +{"id":81854,"name":"Mushan Chopper","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[495,0,743,0,0,0,298,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"weaponSpeed":3.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"weaponDamageMin":5212,"weaponDamageMax":7818,"stats":{"0":495,"2":743,"6":298,"7":350},"isBase":true}}}, +{"id":81855,"name":"Darkhide Blade","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[212,0,319,0,0,0,0,146,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"0":212,"2":319,"7":146,"8":135},"isBase":true}}}, +{"id":81856,"name":"Safari Defender","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[276,0,414,0,0,0,0,0,144,207,0,0,0,0,0,0,0,0,0,0,0,0,12560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":144,"9":207,"22":12560},"isBase":true}}}, +{"id":81857,"name":"Darkhide Barrier","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,414,276,0,0,0,153,0,0,0,203,0,0,0,0,0,0,0,0,0,0,12560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"7":153,"11":203,"22":12560},"isBase":true}}}, +{"id":81858,"name":"Mushan Sticker","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"weaponSpeed":1.8,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":1691,"weaponDamageMax":3141,"stats":{"1":212,"2":319,"6":142,"7":142},"isBase":true}}}, +{"id":81859,"name":"'Nessy's Trophy Pincers","icon":"inv_hand_1h_pandariaquest_b_02","type":13,"weaponType":3,"handType":2,"stats":[0,212,319,0,0,0,0,160,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"weaponSpeed":2.6,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":404,"weaponDamageMin":2442,"weaponDamageMax":4537,"stats":{"1":212,"2":319,"7":160,"11":111},"isBase":true}}}, +{"id":82021,"name":"Steppe Belt","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1459},"isBase":true}}}, +{"id":82022,"name":"Steppe Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":1135},"isBase":true}}}, +{"id":82023,"name":"Steppe Gauntlets","icon":"inv_gloves_mail_panda_b_02","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1621},"isBase":true}}}, +{"id":82024,"name":"Steppe Greaves","icon":"inv_boots_mail_panda_b_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1783},"isBase":true}}}, +{"id":82025,"name":"Steppe Helm","icon":"inv_helmet_mail_panda_b_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":2108},"isBase":true}}}, +{"id":82026,"name":"Steppe Legguards","icon":"inv_pants_mail_panda_b_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":2270},"isBase":true}}}, +{"id":82027,"name":"Steppe Spaulders","icon":"inv_shoulder_mail_panda_b_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1945},"isBase":true}}}, +{"id":82028,"name":"Steppe Vest","icon":"inv_chest_mail_panda_b_02","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":2594},"isBase":true}}}, +{"id":82029,"name":"Reed Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":778},"isBase":true}}}, +{"id":82030,"name":"Reed Cowl","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1124},"isBase":true}}}, +{"id":82031,"name":"Reed Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":864},"isBase":true}}}, +{"id":82032,"name":"Reed Leggings","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1210},"isBase":true}}}, +{"id":82033,"name":"Reed Robe","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1383},"isBase":true}}}, +{"id":82034,"name":"Reed Sandals","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":951},"isBase":true}}}, +{"id":82035,"name":"Reed Shoulderpads","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1037},"isBase":true}}}, +{"id":82036,"name":"Reed Wristwraps","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":605},"isBase":true}}}, +{"id":82037,"name":"Whisper Bindings","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":793},"isBase":true}}}, +{"id":82038,"name":"Whisper Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1245},"isBase":true}}}, +{"id":82039,"name":"Whisper Britches","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1585},"isBase":true}}}, +{"id":82040,"name":"Whisper Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1132},"isBase":true}}}, +{"id":82041,"name":"Whisper Hood","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1472},"isBase":true}}}, +{"id":82042,"name":"Whisper Jerkin","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":1812},"isBase":true}}}, +{"id":82043,"name":"Whisper Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1359},"isBase":true}}}, +{"id":82044,"name":"Whisper Waistband","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":1019},"isBase":true}}}, +{"id":82045,"name":"Bronzed Axe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"weaponSpeed":2.6,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"isBase":true}}}, +{"id":82046,"name":"Bronzed Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"weaponSpeed":2.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"isBase":true}}}, +{"id":82047,"name":"Bronzed Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"isBase":true}}}, +{"id":82048,"name":"Bronzed Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"weaponSpeed":2.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"isBase":true}}}, +{"id":82049,"name":"Bronzed Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":329,"weaponDamageMin":1301,"weaponDamageMax":2417,"weaponSpeed":1.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":1301,"weaponDamageMax":2417,"isBase":true}}}, +{"id":82050,"name":"Bronzed Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"isBase":true}}}, +{"id":82051,"name":"Bronzed Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"weaponSpeed":2.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":2786,"weaponDamageMax":5175,"isBase":true}}}, +{"id":82052,"name":"Bronzed Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"isBase":true}}}, +{"id":82054,"name":"Bronzed Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"weaponSpeed":2.6,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"isBase":true}}}, +{"id":82055,"name":"Bronzed Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"weaponSpeed":2.6,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"isBase":true}}}, +{"id":82056,"name":"Bronzed Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"isBase":true}}}, +{"id":82057,"name":"Bronzed Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2310,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":767,"weaponDamageMin":2064,"weaponDamageMax":3096,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":2064,"weaponDamageMax":3096,"stats":{"14":2310},"isBase":true}}}, +{"id":82058,"name":"Bronzed Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"weaponSpeed":3.5,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"weaponDamageMin":4128,"weaponDamageMax":6192,"isBase":true}}}, +{"id":82059,"name":"Bronzed Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"weaponSpeed":2.6,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":1990,"weaponDamageMax":3696,"isBase":true}}}, +{"id":82060,"name":"Gemmed Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"isBase":true}}}, +{"id":82061,"name":"Gemmed Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":692},"isBase":true}}}, +{"id":82062,"name":"Gemmed Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"isBase":true}}}, +{"id":82063,"name":"Gemmed Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"isBase":true}}}, +{"id":82064,"name":"Gemmed Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"weaponSpeed":1.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"stats":{"14":2312},"isBase":true}}}, +{"id":82065,"name":"Gemmed Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"weaponSpeed":1.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"stats":{"14":2312},"isBase":true}}}, +{"id":82066,"name":"Gemmed Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"weaponSpeed":1.7,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":329,"weaponDamageMin":650,"weaponDamageMax":1208,"stats":{"14":2312},"isBase":true}}}, +{"id":82067,"name":"Brick Breastplate","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":3611},"isBase":true}}}, +{"id":82068,"name":"Brick Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":2257},"isBase":true}}}, +{"id":82069,"name":"Brick Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":2031},"isBase":true}}}, +{"id":82070,"name":"Brick Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":2934},"isBase":true}}}, +{"id":82071,"name":"Brick Legplates","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":767,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":767,"stats":{"22":3160},"isBase":true}}}, +{"id":82072,"name":"Brick Pauldrons","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":2708},"isBase":true}}}, +{"id":82073,"name":"Brick Sabatons","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":570,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":570,"stats":{"22":2483},"isBase":true}}}, +{"id":82074,"name":"Brick Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":12185},"isBase":true}}}, +{"id":82075,"name":"Brick Vambraces","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":428,"ilvl":377,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"22":1580},"isBase":true}}}, +{"id":82076,"name":"Snake Belt","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1528},"isBase":true}}}, +{"id":82077,"name":"Snake Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":1188},"isBase":true}}}, +{"id":82078,"name":"Snake Gauntlets","icon":"inv_gloves_mail_panda_b_02","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1697},"isBase":true}}}, +{"id":82079,"name":"Snake Greaves","icon":"inv_boots_mail_panda_b_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1867},"isBase":true}}}, +{"id":82080,"name":"Snake Helm","icon":"inv_helmet_mail_panda_b_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":2206},"isBase":true}}}, +{"id":82081,"name":"Snake Legguards","icon":"inv_pants_mail_panda_b_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":2376},"isBase":true}}}, +{"id":82082,"name":"Snake Spaulders","icon":"inv_shoulder_mail_panda_b_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":2037},"isBase":true}}}, +{"id":82083,"name":"Snake Vest","icon":"inv_chest_mail_panda_b_02","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":2716},"isBase":true}}}, +{"id":82084,"name":"Growing Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":834},"isBase":true}}}, +{"id":82085,"name":"Growing Cowl","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1205},"isBase":true}}}, +{"id":82086,"name":"Growing Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":927},"isBase":true}}}, +{"id":82087,"name":"Growing Leggings","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1298},"isBase":true}}}, +{"id":82088,"name":"Growing Robe","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1483},"isBase":true}}}, +{"id":82089,"name":"Growing Sandals","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1020,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1020},"isBase":true}}}, +{"id":82090,"name":"Growing Shoulderpads","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1112},"isBase":true}}}, +{"id":82091,"name":"Growing Wristwraps","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":649},"isBase":true}}}, +{"id":82092,"name":"Mushan Hide Bindings","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":840},"isBase":true}}}, +{"id":82093,"name":"Mushan Hide Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1319},"isBase":true}}}, +{"id":82094,"name":"Mushan Hide Britches","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1679},"isBase":true}}}, +{"id":82095,"name":"Mushan Hide Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1199},"isBase":true}}}, +{"id":82096,"name":"Mushan Hide Hood","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1559},"isBase":true}}}, +{"id":82097,"name":"Mushan Hide Jerkin","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":1919},"isBase":true}}}, +{"id":82098,"name":"Mushan Hide Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1439},"isBase":true}}}, +{"id":82099,"name":"Mushan Hide Waistband","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":1080},"isBase":true}}}, +{"id":82100,"name":"Barbarian Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"isBase":true}}}, +{"id":82101,"name":"Barbarian Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"weaponSpeed":2.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"isBase":true}}}, +{"id":82102,"name":"Barbarian Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"isBase":true}}}, +{"id":82103,"name":"Barbarian Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"weaponSpeed":2.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"isBase":true}}}, +{"id":82104,"name":"Barbarian Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":371,"weaponDamageMin":1468,"weaponDamageMax":2728,"weaponSpeed":1.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":1468,"weaponDamageMax":2728,"isBase":true}}}, +{"id":82105,"name":"Barbarian Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"isBase":true}}}, +{"id":82106,"name":"Barbarian Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"weaponSpeed":2.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":3145,"weaponDamageMax":5841,"isBase":true}}}, +{"id":82107,"name":"Barbarian Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"isBase":true}}}, +{"id":82109,"name":"Barbarian Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"isBase":true}}}, +{"id":82110,"name":"Barbarian Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"isBase":true}}}, +{"id":82111,"name":"Barbarian Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"isBase":true}}}, +{"id":82112,"name":"Barbarian Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":4659,"weaponDamageMax":6990,"isBase":true}}}, +{"id":82113,"name":"Barbarian Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":866,"weaponDamageMin":2329,"weaponDamageMax":3495,"weaponSpeed":3.5,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"weaponDamageMin":2329,"weaponDamageMax":3495,"stats":{"14":2608},"isBase":true}}}, +{"id":82114,"name":"Barbarian Sword","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"weaponSpeed":2.6,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":2246,"weaponDamageMax":4172,"isBase":true}}}, +{"id":82115,"name":"Shamanic Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"isBase":true}}}, +{"id":82116,"name":"Shamanic Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":741},"isBase":true}}}, +{"id":82117,"name":"Shamanic Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"isBase":true}}}, +{"id":82118,"name":"Shamanic Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"isBase":true}}}, +{"id":82119,"name":"Shamanic Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"weaponSpeed":1.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"stats":{"14":2607},"isBase":true}}}, +{"id":82120,"name":"Shamanic Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"weaponSpeed":1.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"stats":{"14":2607},"isBase":true}}}, +{"id":82121,"name":"Shamanic Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"weaponSpeed":1.7,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":371,"weaponDamageMin":734,"weaponDamageMax":1364,"stats":{"14":2607},"isBase":true}}}, +{"id":82122,"name":"Miner Breastplate","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":3751},"isBase":true}}}, +{"id":82123,"name":"Miner Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":2344},"isBase":true}}}, +{"id":82124,"name":"Miner Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":2110},"isBase":true}}}, +{"id":82125,"name":"Miner Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":3048},"isBase":true}}}, +{"id":82126,"name":"Miner Legplates","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":866,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":866,"stats":{"22":3282},"isBase":true}}}, +{"id":82127,"name":"Miner Pauldrons","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":2813},"isBase":true}}}, +{"id":82128,"name":"Miner Sabatons","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2579,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":644,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":644,"stats":{"22":2579},"isBase":true}}}, +{"id":82129,"name":"Miner Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":12403},"isBase":true}}}, +{"id":82130,"name":"Miner Vambraces","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":483,"ilvl":390,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"390":{"randPropPoints":483,"stats":{"22":1641},"isBase":true}}}, +{"id":82131,"name":"Willow Belt","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1599},"isBase":true}}}, +{"id":82132,"name":"Willow Bracers","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":1243},"isBase":true}}}, +{"id":82133,"name":"Willow Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1776},"isBase":true}}}, +{"id":82134,"name":"Willow Greaves","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1954,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1954},"isBase":true}}}, +{"id":82135,"name":"Willow Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":2309},"isBase":true}}}, +{"id":82136,"name":"Willow Legguards","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":2487},"isBase":true}}}, +{"id":82137,"name":"Willow Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":2131},"isBase":true}}}, +{"id":82138,"name":"Willow Vest","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":2842},"isBase":true}}}, +{"id":82139,"name":"Brewer's Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":893},"isBase":true}}}, +{"id":82140,"name":"Brewer's Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":1289},"isBase":true}}}, +{"id":82141,"name":"Brewer's Handwraps","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":992},"isBase":true}}}, +{"id":82142,"name":"Brewer's Leggings","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":1388},"isBase":true}}}, +{"id":82143,"name":"Brewer's Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":1587},"isBase":true}}}, +{"id":82144,"name":"Brewer's Sandals","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1091},"isBase":true}}}, +{"id":82145,"name":"Brewer's Shoulderpads","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1190},"isBase":true}}}, +{"id":82146,"name":"Brewer's Wristwraps","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":694},"isBase":true}}}, +{"id":82147,"name":"Swamp Bindings","icon":"inv_bracer_leather_panda_b_02_indigo","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":889},"isBase":true}}}, +{"id":82148,"name":"Swamp Boots","icon":"inv_boots_leather_panda_b_02_indigo","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1396},"isBase":true}}}, +{"id":82149,"name":"Swamp Britches","icon":"inv_pants_leather_panda_b_02_indigo","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":1777},"isBase":true}}}, +{"id":82150,"name":"Swamp Gloves","icon":"inv_glove_leather_panda_b_02_indigo","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1269},"isBase":true}}}, +{"id":82151,"name":"Swamp Hood","icon":"inv_helm_leather_panda_b_02_indigo","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1650,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":1650},"isBase":true}}}, +{"id":82152,"name":"Swamp Jerkin","icon":"inv_chest_leather_panda_b_02_indigo","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":2031},"isBase":true}}}, +{"id":82153,"name":"Swamp Shoulders","icon":"inv_shoulder_leather_panda_b_02_indigo","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1523},"isBase":true}}}, +{"id":82154,"name":"Swamp Waistband","icon":"inv_belt_leather_panda_b_02_indigo","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":1142},"isBase":true}}}, +{"id":82155,"name":"Rigid Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"isBase":true}}}, +{"id":82156,"name":"Rigid Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"weaponSpeed":2.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"isBase":true}}}, +{"id":82157,"name":"Rigid Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"isBase":true}}}, +{"id":82158,"name":"Rigid Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"weaponSpeed":2.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"isBase":true}}}, +{"id":82159,"name":"Rigid Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":419,"weaponDamageMin":1657,"weaponDamageMax":3079,"weaponSpeed":1.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":1657,"weaponDamageMax":3079,"isBase":true}}}, +{"id":82160,"name":"Rigid Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"isBase":true}}}, +{"id":82161,"name":"Rigid Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"weaponSpeed":2.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":3550,"weaponDamageMax":6593,"isBase":true}}}, +{"id":82162,"name":"Rigid Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"isBase":true}}}, +{"id":82164,"name":"Rigid Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"isBase":true}}}, +{"id":82165,"name":"Rigid Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"isBase":true}}}, +{"id":82166,"name":"Rigid Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"isBase":true}}}, +{"id":82167,"name":"Rigid Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":5259,"weaponDamageMax":7890,"isBase":true}}}, +{"id":82168,"name":"Rigid Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":978,"weaponDamageMin":2629,"weaponDamageMax":3945,"weaponSpeed":3.5,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"weaponDamageMin":2629,"weaponDamageMax":3945,"stats":{"14":2946},"isBase":true}}}, +{"id":82169,"name":"Rigid Sword","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"weaponSpeed":2.6,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":2535,"weaponDamageMax":4709,"isBase":true}}}, +{"id":82170,"name":"Grummle Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"isBase":true}}}, +{"id":82171,"name":"Grummle Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":793},"isBase":true}}}, +{"id":82172,"name":"Grummle Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"isBase":true}}}, +{"id":82173,"name":"Grummle Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"isBase":true}}}, +{"id":82174,"name":"Grummle Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"weaponSpeed":1.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"stats":{"14":2945},"isBase":true}}}, +{"id":82175,"name":"Grummle Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"weaponSpeed":1.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"stats":{"14":2945},"isBase":true}}}, +{"id":82176,"name":"Grummle Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2945,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"weaponSpeed":1.7,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":419,"weaponDamageMin":828,"weaponDamageMax":1539,"stats":{"14":2945},"isBase":true}}}, +{"id":82177,"name":"Snowy Breastplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":3896},"isBase":true}}}, +{"id":82178,"name":"Snowy Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":2435},"isBase":true}}}, +{"id":82179,"name":"Snowy Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":2192},"isBase":true}}}, +{"id":82180,"name":"Snowy Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":3166},"isBase":true}}}, +{"id":82181,"name":"Snowy Legplates","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":978,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":978,"stats":{"22":3409},"isBase":true}}}, +{"id":82182,"name":"Snowy Pauldrons","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":2922},"isBase":true}}}, +{"id":82183,"name":"Snowy Sabatons","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":726,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":726,"stats":{"22":2679},"isBase":true}}}, +{"id":82184,"name":"Snowy Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":12631},"isBase":true}}}, +{"id":82185,"name":"Snowy Vambraces","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":545,"ilvl":403,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"403":{"randPropPoints":545,"stats":{"22":1705},"isBase":true}}}, +{"id":82186,"name":"Mountain Belt","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1682},"isBase":true}}}, +{"id":82187,"name":"Mountain Bracers","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":1308},"isBase":true}}}, +{"id":82188,"name":"Mountain Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1869},"isBase":true}}}, +{"id":82189,"name":"Mountain Greaves","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":2056},"isBase":true}}}, +{"id":82190,"name":"Mountain Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":2430},"isBase":true}}}, +{"id":82191,"name":"Mountain Legguards","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":2617},"isBase":true}}}, +{"id":82192,"name":"Mountain Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":2243},"isBase":true}}}, +{"id":82193,"name":"Mountain Vest","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":2991},"isBase":true}}}, +{"id":82194,"name":"Trellised Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":950},"isBase":true}}}, +{"id":82195,"name":"Trellised Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":1372},"isBase":true}}}, +{"id":82196,"name":"Trellised Handwraps","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1055},"isBase":true}}}, +{"id":82197,"name":"Trellised Leggings","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":1478},"isBase":true}}}, +{"id":82198,"name":"Trellised Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":1689},"isBase":true}}}, +{"id":82199,"name":"Trellised Sandals","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1161},"isBase":true}}}, +{"id":82200,"name":"Trellised Shoulderpads","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1267},"isBase":true}}}, +{"id":82201,"name":"Trellised Wristwraps","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":739},"isBase":true}}}, +{"id":82202,"name":"Thresher Bindings","icon":"inv_bracer_leather_panda_b_02_indigo","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":940},"isBase":true}}}, +{"id":82203,"name":"Thresher Boots","icon":"inv_boots_leather_panda_b_02_indigo","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1478},"isBase":true}}}, +{"id":82204,"name":"Thresher Britches","icon":"inv_pants_leather_panda_b_02_indigo","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1881,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":1881},"isBase":true}}}, +{"id":82205,"name":"Thresher Gloves","icon":"inv_glove_leather_panda_b_02_indigo","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1343},"isBase":true}}}, +{"id":82206,"name":"Thresher Hood","icon":"inv_helm_leather_panda_b_02_indigo","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":1746},"isBase":true}}}, +{"id":82207,"name":"Thresher Jerkin","icon":"inv_chest_leather_panda_b_02_indigo","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":2149},"isBase":true}}}, +{"id":82208,"name":"Thresher Shoulders","icon":"inv_shoulder_leather_panda_b_02_indigo","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1612},"isBase":true}}}, +{"id":82209,"name":"Thresher Waistband","icon":"inv_belt_leather_panda_b_02_indigo","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":1209},"isBase":true}}}, +{"id":82210,"name":"Inlaid Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"isBase":true}}}, +{"id":82211,"name":"Inlaid Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"weaponSpeed":2.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"isBase":true}}}, +{"id":82212,"name":"Inlaid Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"isBase":true}}}, +{"id":82213,"name":"Inlaid Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"weaponSpeed":2.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"isBase":true}}}, +{"id":82214,"name":"Inlaid Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":473,"weaponDamageMin":1871,"weaponDamageMax":3475,"weaponSpeed":1.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":1871,"weaponDamageMax":3475,"isBase":true}}}, +{"id":82215,"name":"Inlaid Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"isBase":true}}}, +{"id":82216,"name":"Inlaid Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"weaponSpeed":2.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":4007,"weaponDamageMax":7442,"isBase":true}}}, +{"id":82217,"name":"Inlaid Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"isBase":true}}}, +{"id":82219,"name":"Inlaid Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"isBase":true}}}, +{"id":82220,"name":"Inlaid Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"isBase":true}}}, +{"id":82221,"name":"Inlaid Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"isBase":true}}}, +{"id":82222,"name":"Inlaid Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":5936,"weaponDamageMax":8905,"isBase":true}}}, +{"id":82223,"name":"Inlaid Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1104,"weaponDamageMin":2968,"weaponDamageMax":4453,"weaponSpeed":3.5,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"weaponDamageMin":2968,"weaponDamageMax":4453,"stats":{"14":3325},"isBase":true}}}, +{"id":82224,"name":"Inlaid Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"weaponSpeed":2.6,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":2862,"weaponDamageMax":5315,"isBase":true}}}, +{"id":82225,"name":"Bejeweled Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"isBase":true}}}, +{"id":82226,"name":"Bejeweled Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":844},"isBase":true}}}, +{"id":82227,"name":"Bejeweled Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"isBase":true}}}, +{"id":82228,"name":"Bejeweled Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"isBase":true}}}, +{"id":82229,"name":"Bejeweled Scepter","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"weaponSpeed":1.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"stats":{"14":3324},"isBase":true}}}, +{"id":82230,"name":"Bejeweled Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"weaponSpeed":1.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"stats":{"14":3324},"isBase":true}}}, +{"id":82231,"name":"Bejeweled Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"weaponSpeed":1.7,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":473,"weaponDamageMin":935,"weaponDamageMax":1738,"stats":{"14":3324},"isBase":true}}}, +{"id":82232,"name":"Highpeak Breastplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":4084},"isBase":true}}}, +{"id":82233,"name":"Highpeak Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":2553},"isBase":true}}}, +{"id":82234,"name":"Highpeak Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":2297},"isBase":true}}}, +{"id":82235,"name":"Highpeak Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":3319},"isBase":true}}}, +{"id":82236,"name":"Highpeak Legplates","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3574,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1104,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":1104,"stats":{"22":3574},"isBase":true}}}, +{"id":82237,"name":"Highpeak Pauldrons","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":3063},"isBase":true}}}, +{"id":82238,"name":"Highpeak Sabatons","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":820,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":820,"stats":{"22":2808},"isBase":true}}}, +{"id":82239,"name":"Highpeak Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":13101},"isBase":true}}}, +{"id":82240,"name":"Highpeak Vambraces","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":615,"ilvl":416,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"416":{"randPropPoints":615,"stats":{"22":1787},"isBase":true}}}, +{"id":82241,"name":"Yak Belt","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1778},"isBase":true}}}, +{"id":82242,"name":"Yak Bracers","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1383},"isBase":true}}}, +{"id":82243,"name":"Yak Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1976},"isBase":true}}}, +{"id":82244,"name":"Yak Greaves","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2173},"isBase":true}}}, +{"id":82245,"name":"Yak Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2568},"isBase":true}}}, +{"id":82246,"name":"Yak Legguards","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2766},"isBase":true}}}, +{"id":82247,"name":"Yak Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2371},"isBase":true}}}, +{"id":82248,"name":"Yak Vest","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3161},"isBase":true}}}, +{"id":82249,"name":"Waterfall Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1004},"isBase":true}}}, +{"id":82250,"name":"Waterfall Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1450},"isBase":true}}}, +{"id":82251,"name":"Waterfall Handwraps","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1116},"isBase":true}}}, +{"id":82252,"name":"Waterfall Leggings","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1562},"isBase":true}}}, +{"id":82253,"name":"Waterfall Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1785},"isBase":true}}}, +{"id":82254,"name":"Waterfall Sandals","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1227},"isBase":true}}}, +{"id":82255,"name":"Waterfall Shoulderpads","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1339},"isBase":true}}}, +{"id":82256,"name":"Waterfall Wristwraps","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":781},"isBase":true}}}, +{"id":82257,"name":"Vine Bindings","icon":"inv_bracer_leather_panda_b_02_indigo","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":994},"isBase":true}}}, +{"id":82258,"name":"Vine Boots","icon":"inv_boots_leather_panda_b_02_indigo","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1562},"isBase":true}}}, +{"id":82259,"name":"Vine Britches","icon":"inv_pants_leather_panda_b_02_indigo","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1988},"isBase":true}}}, +{"id":82260,"name":"Vine Gloves","icon":"inv_glove_leather_panda_b_02_indigo","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1420},"isBase":true}}}, +{"id":82261,"name":"Vine Hood","icon":"inv_helm_leather_panda_b_02_indigo","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1846},"isBase":true}}}, +{"id":82262,"name":"Vine Jerkin","icon":"inv_chest_leather_panda_b_02_indigo","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2272},"isBase":true}}}, +{"id":82263,"name":"Vine Shoulders","icon":"inv_shoulder_leather_panda_b_02_indigo","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1704},"isBase":true}}}, +{"id":82264,"name":"Vine Waistband","icon":"inv_belt_leather_panda_b_02_indigo","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1278},"isBase":true}}}, +{"id":82265,"name":"Engraved Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"isBase":true}}}, +{"id":82266,"name":"Engraved Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"weaponSpeed":2.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"isBase":true}}}, +{"id":82267,"name":"Engraved Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":82268,"name":"Engraved Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"weaponSpeed":2.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"isBase":true}}}, +{"id":82269,"name":"Engraved Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":534,"weaponDamageMin":2112,"weaponDamageMax":3923,"weaponSpeed":1.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2112,"weaponDamageMax":3923,"isBase":true}}}, +{"id":82270,"name":"Engraved Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":82271,"name":"Engraved Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"weaponSpeed":2.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":4523,"weaponDamageMax":8401,"isBase":true}}}, +{"id":82272,"name":"Engraved Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":82274,"name":"Engraved Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"isBase":true}}}, +{"id":82275,"name":"Engraved Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"isBase":true}}}, +{"id":82276,"name":"Engraved Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":82277,"name":"Engraved Staff","icon":"inv_staff_2h_pandariaquest_b_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":82278,"name":"Engraved Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"weaponDamageMin":3350,"weaponDamageMax":5026,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":3350,"weaponDamageMax":5026,"stats":{"14":3753},"isBase":true}}}, +{"id":82279,"name":"Engraved Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"isBase":true}}}, +{"id":82280,"name":"Immaculate Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"isBase":true}}}, +{"id":82281,"name":"Immaculate Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":892},"isBase":true}}}, +{"id":82282,"name":"Immaculate Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"isBase":true}}}, +{"id":82283,"name":"Immaculate Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"isBase":true}}}, +{"id":82284,"name":"Immaculate Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"weaponSpeed":1.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"stats":{"14":3753},"isBase":true}}}, +{"id":82285,"name":"Immaculate Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"weaponSpeed":1.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"stats":{"14":3753},"isBase":true}}}, +{"id":82286,"name":"Immaculate Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"weaponSpeed":1.7,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":1056,"weaponDamageMax":1961,"stats":{"14":3753},"isBase":true}}}, +{"id":82287,"name":"Temple Breastplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":4317},"isBase":true}}}, +{"id":82288,"name":"Temple Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2698},"isBase":true}}}, +{"id":82289,"name":"Temple Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2428},"isBase":true}}}, +{"id":82290,"name":"Temple Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3508},"isBase":true}}}, +{"id":82291,"name":"Temple Legplates","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3777},"isBase":true}}}, +{"id":82292,"name":"Temple Pauldrons","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":3238},"isBase":true}}}, +{"id":82293,"name":"Temple Sabatons","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2968},"isBase":true}}}, +{"id":82294,"name":"Temple Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":13847},"isBase":true}}}, +{"id":82295,"name":"Temple Vambraces","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1889},"isBase":true}}}, +{"id":82397,"name":"Windwool Hood","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,646,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"22":1167},"isBase":true}}}, +{"id":82398,"name":"Windwool Shoulders","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,480,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"22":1077},"isBase":true}}}, +{"id":82399,"name":"Windwool Tunic","icon":"inv_chest_cloth_panda_b_01_green","type":5,"armorType":1,"stats":[0,0,646,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"22":1436},"isBase":true}}}, +{"id":82400,"name":"Windwool Gloves","icon":"inv_gloves_cloth_panda_b_01_green","type":7,"armorType":1,"stats":[0,0,480,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"22":898},"isBase":true}}}, +{"id":82401,"name":"Windwool Pants","icon":"inv_pants_cloth_panda_b_01_green","type":9,"armorType":1,"stats":[0,0,646,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"22":1257},"isBase":true}}}, +{"id":82402,"name":"Windwool Bracers","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,360,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"22":628},"isBase":true}}}, +{"id":82403,"name":"Windwool Boots","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,480,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"22":988},"isBase":true}}}, +{"id":82404,"name":"Windwool Belt","icon":"inv_belt_cloth_panda_b_01_green","type":8,"armorType":1,"stats":[0,0,480,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"22":808},"isBase":true}}}, +{"id":82405,"name":"Darkened Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,888,592,0,0,385,0,0,0,0,401,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":385,"11":401,"22":1091},"isBase":true}}}, +{"id":82406,"name":"Darkened Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,797,0,505,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"5":505,"11":547,"22":1577},"isBase":true}}}, +{"id":82407,"name":"Darkened Shoulders","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,592,0,0,412,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":412,"11":365,"22":1455},"isBase":true}}}, +{"id":82408,"name":"Darkened Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,0,539,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"5":539,"11":518,"22":1940},"isBase":true}}}, +{"id":82409,"name":"Darkened Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,0,0,365,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":365,"11":412,"22":1213},"isBase":true}}}, +{"id":82410,"name":"Darkened Pants","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1195,797,0,547,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"5":547,"11":505,"22":1698},"isBase":true}}}, +{"id":82411,"name":"Darkened Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,666,444,0,0,267,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"6":267,"11":313,"22":849},"isBase":true}}}, +{"id":82412,"name":"Darkened Boots","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,888,592,0,346,0,0,0,0,0,423,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":346,"11":423,"22":1334},"isBase":true}}}, +{"id":82413,"name":"Tranquil Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,888,592,423,0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":423,"11":346,"22":1091},"isBase":true}}}, +{"id":82414,"name":"Tranquil Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,797,547,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":547,"11":505,"22":1577},"isBase":true}}}, +{"id":82415,"name":"Tranquil Shoulders","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,592,356,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":356,"11":418,"22":1455},"isBase":true}}}, +{"id":82416,"name":"Tranquil Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,547,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":547,"11":505,"22":1940},"isBase":true}}}, +{"id":82417,"name":"Tranquil Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,356,0,0,0,0,0,0,418,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":356,"11":418,"22":1213},"isBase":true}}}, +{"id":82418,"name":"Tranquil Pants","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1195,797,518,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":518,"11":539,"22":1698},"isBase":true}}}, +{"id":82419,"name":"Tranquil Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,666,444,274,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":274,"11":309,"22":849},"isBase":true}}}, +{"id":82420,"name":"Tranquil Boots","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,888,592,418,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":418,"11":356,"22":1334},"isBase":true}}}, +{"id":82421,"name":"Contender's Silk Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,797,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":466,"11":570,"16":318,"22":1577},"isBase":true}}}, +{"id":82422,"name":"Contender's Silk Amice","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,592,0,375,0,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":375,"11":406,"16":236,"22":1455},"isBase":true}}}, +{"id":82423,"name":"Contender's Silk Raiment","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,0,0,492,0,0,0,0,555,0,0,0,0,318,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":492,"11":555,"16":318,"22":1940},"isBase":true}}}, +{"id":82424,"name":"Contender's Silk Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,0,406,0,0,0,0,0,375,0,0,0,0,236,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":406,"11":375,"16":236,"22":1213},"isBase":true}}}, +{"id":82425,"name":"Contender's Silk Pants","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1195,797,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":466,"11":570,"16":318,"22":1698},"isBase":true}}}, +{"id":82426,"name":"Contender's Silk Cuffs","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,666,444,0,309,0,0,0,0,0,274,0,0,0,0,177,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"5":309,"11":274,"16":177,"22":849},"isBase":true}}}, +{"id":82427,"name":"Contender's Silk Footwraps","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,888,592,0,0,356,0,0,0,0,418,0,0,0,0,236,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":356,"11":418,"16":236,"22":1334},"isBase":true}}}, +{"id":82428,"name":"Contender's Silk Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,888,592,0,375,0,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":375,"11":406,"16":236,"22":1091},"isBase":true}}}, +{"id":82429,"name":"Contender's Satin Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,797,466,0,0,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":466,"11":570,"16":318,"22":1577},"isBase":true}}}, +{"id":82430,"name":"Contender's Satin Amice","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,592,375,0,0,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":375,"11":406,"16":236,"22":1455},"isBase":true}}}, +{"id":82431,"name":"Contender's Satin Raiment","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,570,0,0,0,0,0,0,466,0,0,0,0,318,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":570,"11":466,"16":318,"22":1940},"isBase":true}}}, +{"id":82432,"name":"Contender's Satin Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,401,0,0,0,0,0,0,385,0,0,0,0,236,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":401,"11":385,"16":236,"22":1213},"isBase":true}}}, +{"id":82433,"name":"Contender's Satin Pants","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1195,797,479,0,0,0,0,0,0,562,0,0,0,0,318,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":479,"11":562,"16":318,"22":1698},"isBase":true}}}, +{"id":82434,"name":"Contender's Satin Cuffs","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,666,444,317,0,0,0,0,0,0,260,0,0,0,0,177,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":317,"11":260,"16":177,"22":849},"isBase":true}}}, +{"id":82435,"name":"Contender's Satin Footwraps","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,888,592,365,0,0,0,0,0,0,412,0,0,0,0,236,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":365,"11":412,"16":236,"22":1334},"isBase":true}}}, +{"id":82436,"name":"Contender's Satin Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,888,592,375,0,0,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":375,"11":406,"16":236,"22":1091},"isBase":true}}}, +{"id":82437,"name":"Spelltwister's Grand Robe","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1641,934,0,0,0,742,0,0,0,520,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":585,"11":392,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"7":686,"11":474,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"7":714,"11":496,"22":2162},"upgradeStep":1}}}, +{"id":82438,"name":"Spelltwister's Gloves","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,1219,733,0,408,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":310,"11":458,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"5":373,"11":532,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"5":391,"11":553,"22":1352},"upgradeStep":1}}}, +{"id":82439,"name":"Robes of Creation","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1641,934,660,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":512,"11":488,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":607,"11":580,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":633,"11":605,"22":2162},"upgradeStep":1}}}, +{"id":82440,"name":"Gloves of Creation","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1219,733,566,0,0,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":452,"11":321,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":525,"11":385,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":545,"11":403,"22":1352},"upgradeStep":1}}}, +{"id":82487,"name":"Waterfall Hood","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,854,570,0,0,0,333,0,0,0,407,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":333,"11":407,"22":1360},"isBase":true}}}, +{"id":82488,"name":"Mushan Hide Helm","icon":"inv_helmet_leather_panda_b_01","type":1,"armorType":2,"stats":[0,0,854,570,0,0,0,297,0,0,0,428,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":297,"11":428,"22":1731},"isBase":true}}}, +{"id":82489,"name":"Dreaming Spirit Helm","icon":"inv_helmet_mail_panda_b_01black","type":1,"armorType":3,"stats":[0,0,854,570,0,0,297,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,2409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"6":297,"11":428,"22":2409},"isBase":true}}}, +{"id":82490,"name":"Serenity Headcover","icon":"inv_helmet_plate_panda_b_02yellow","type":1,"armorType":4,"stats":[0,0,854,570,0,0,352,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"6":352,"11":396,"22":3289},"isBase":true}}}, +{"id":82491,"name":"Mindbender Cowl","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,854,570,0,0,385,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"6":385,"11":370,"22":1360},"isBase":true}}}, +{"id":82492,"name":"Silentleaf Helm","icon":"inv_helmet_leather_panda_b_01","type":1,"armorType":2,"stats":[0,570,854,0,0,0,333,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"6":333,"7":407,"22":1731},"isBase":true}}}, +{"id":82493,"name":"Yak Herder Helm","icon":"inv_helmet_mail_panda_b_01black","type":1,"armorType":3,"stats":[0,570,854,0,0,352,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"5":352,"6":396,"22":2409},"isBase":true}}}, +{"id":82494,"name":"Summit Guardian Helm","icon":"inv_helmet_plate_panda_b_02yellow","type":1,"armorType":4,"stats":[570,0,854,0,0,0,0,0,0,423,306,0,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"9":423,"10":306,"22":3289},"isBase":true}}}, +{"id":82495,"name":"Wallwatcher Helm","icon":"inv_helmet_plate_panda_b_02yellow","type":1,"armorType":4,"stats":[570,0,854,0,0,0,423,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"6":423,"11":306,"22":3289},"isBase":true}}}, +{"id":82496,"name":"Waterfall Mantle","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,635,423,303,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":303,"6":248,"22":1255},"isBase":true}}}, +{"id":82497,"name":"Mushan Hide Spaulders","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,0,635,423,0,0,0,228,0,0,0,314,0,0,0,0,0,0,0,0,0,0,1598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":228,"11":314,"22":1598},"isBase":true}}}, +{"id":82498,"name":"Dreaming Spirit Spaulder","icon":"inv_shoulder_mail_panda_b_01black","type":3,"armorType":3,"stats":[0,0,635,423,268,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":268,"6":291,"22":2223},"isBase":true}}}, +{"id":82499,"name":"Serenity Spaulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[0,0,635,423,0,0,0,234,0,0,0,311,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":234,"11":311,"22":3036},"isBase":true}}}, +{"id":82500,"name":"Mindbender Amice","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,635,423,0,282,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"5":282,"7":282,"22":1255},"isBase":true}}}, +{"id":82501,"name":"Silentleaf Spaulders","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,423,635,0,0,0,261,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,1598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"6":261,"8":295,"22":1598},"isBase":true}}}, +{"id":82502,"name":"Yak Herder Spaulder","icon":"inv_shoulder_mail_panda_b_01black","type":3,"armorType":3,"stats":[0,423,635,0,0,0,234,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"6":234,"7":311,"22":2223},"isBase":true}}}, +{"id":82503,"name":"Summit Guardian Shoulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[423,0,635,0,0,234,0,0,0,0,0,311,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"5":234,"11":311,"22":3036},"isBase":true}}}, +{"id":82504,"name":"Wallwatcher Shoulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[423,0,635,0,0,0,221,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"6":221,"7":318,"22":3036},"isBase":true}}}, +{"id":82505,"name":"Waterfall Robe","icon":"inv_chest_cloth_panda_b_01_green","type":5,"armorType":1,"stats":[0,0,854,570,0,0,0,361,0,0,0,391,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":361,"11":391,"22":1674},"isBase":true}}}, +{"id":82506,"name":"Mushan Hide Tunic","icon":"inv_chest_leather_panda_b_01","type":5,"armorType":2,"stats":[0,0,854,570,0,0,407,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"6":407,"7":333,"22":2131},"isBase":true}}}, +{"id":82507,"name":"Dreaming Spirit Armor","icon":"inv_chest_mail_panda_b_01black","type":5,"armorType":3,"stats":[0,0,854,570,0,0,0,370,0,0,0,385,0,0,0,0,0,0,0,0,0,0,2964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":370,"11":385,"22":2964},"isBase":true}}}, +{"id":82508,"name":"Serenity Chestguard","icon":"inv_chest_plate_panda_b_02yellow","type":5,"armorType":4,"stats":[0,0,854,570,0,0,0,324,0,0,0,413,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":324,"11":413,"22":4049},"isBase":true}}}, +{"id":82509,"name":"Mindbender Robe","icon":"inv_chest_cloth_panda_b_01_green","type":5,"armorType":1,"stats":[0,0,854,570,0,0,0,428,0,0,0,297,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"7":428,"11":297,"22":1674},"isBase":true}}}, +{"id":82510,"name":"Silentleaf Tunic","icon":"inv_chest_leather_panda_b_01","type":5,"armorType":2,"stats":[0,570,854,0,0,352,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"5":352,"6":396,"22":2131},"isBase":true}}}, +{"id":82511,"name":"Yak Herder Armor","icon":"inv_chest_mail_panda_b_01black","type":5,"armorType":3,"stats":[0,570,854,0,0,0,428,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"6":428,"7":297,"22":2964},"isBase":true}}}, +{"id":82512,"name":"Summit Guardian Chestpiece","icon":"inv_chest_plate_panda_b_02yellow","type":5,"armorType":4,"stats":[570,0,854,0,0,0,0,0,0,352,396,0,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"9":352,"10":396,"22":4049},"isBase":true}}}, +{"id":82513,"name":"Wallwatcher Chestpiece","icon":"inv_chest_plate_panda_b_02yellow","type":5,"armorType":4,"stats":[570,0,854,0,0,0,0,391,0,0,0,361,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"7":391,"11":361,"22":4049},"isBase":true}}}, +{"id":82514,"name":"Waterfall Leggings","icon":"inv_pants_cloth_panda_b_01_green","type":9,"armorType":1,"stats":[0,0,1029,686,0,0,358,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,1594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"2":1029,"3":686,"6":358,"11":516,"22":1594},"isBase":true}}}, +{"id":82515,"name":"Mushan Hide Legguards","icon":"inv_pants_leather_panda_b_01","type":9,"armorType":2,"stats":[0,0,1029,686,0,0,0,464,0,0,0,446,0,0,0,0,0,0,0,0,0,0,2029,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"2":1029,"3":686,"7":464,"11":446,"22":2029},"isBase":true}}}, +{"id":82516,"name":"Dreaming Spirit Kilt","icon":"inv_kilt_mail_panda_b_01black","type":9,"armorType":3,"stats":[0,0,1029,686,0,0,424,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,2823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"2":1029,"3":686,"6":424,"11":478,"22":2823},"isBase":true}}}, +{"id":82517,"name":"Serenity Legplates","icon":"inv_pants_plate_panda_b_02yellow","type":9,"armorType":4,"stats":[0,0,1029,686,0,0,413,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"2":1029,"3":686,"6":413,"11":484,"22":3856},"isBase":true}}}, +{"id":82518,"name":"Mindbender Trousers","icon":"inv_pants_cloth_panda_b_01_green","type":9,"armorType":1,"stats":[0,0,1029,686,0,0,484,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"2":1029,"3":686,"6":484,"7":413,"22":1594},"isBase":true}}}, +{"id":82519,"name":"Silentleaf Legguards","icon":"inv_pants_leather_panda_b_01","type":9,"armorType":2,"stats":[0,686,1029,0,0,0,484,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,2029,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"1":686,"2":1029,"6":484,"11":413,"22":2029},"isBase":true}}}, +{"id":82520,"name":"Yak Herder Leggings","icon":"inv_kilt_mail_panda_b_01black","type":9,"armorType":3,"stats":[0,686,1029,0,0,0,510,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,2823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"1":686,"2":1029,"6":510,"11":369,"22":2823},"isBase":true}}}, +{"id":82521,"name":"Summit Guardian Legguards","icon":"inv_pants_plate_panda_b_02yellow","type":9,"armorType":4,"stats":[686,0,1029,0,0,0,0,0,0,491,401,0,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"0":686,"2":1029,"9":491,"10":401,"22":3856},"isBase":true}}}, +{"id":82522,"name":"Wallwatcher Legguards","icon":"inv_pants_plate_panda_b_02yellow","type":9,"armorType":4,"stats":[686,0,1029,0,0,0,369,0,0,0,0,510,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"stats":{"0":686,"2":1029,"6":369,"11":510,"22":3856},"isBase":true}}}, +{"id":82523,"name":"Waterfall Treads","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,635,423,0,0,0,286,0,0,0,275,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":286,"11":275,"22":1151},"isBase":true}}}, +{"id":82524,"name":"Mushan Hide Footguards","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,0,635,423,303,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":303,"6":248,"22":1465},"isBase":true}}}, +{"id":82525,"name":"Dreaming Spirit Sabatons","icon":"inv_boots_mail_panda_b_01black","type":10,"armorType":3,"stats":[0,0,635,423,0,0,0,248,0,0,0,303,0,0,0,0,0,0,0,0,0,0,2038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":248,"11":303,"22":2038},"isBase":true}}}, +{"id":82526,"name":"Serenity Greaves","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[0,0,635,423,0,0,311,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":311,"7":234,"22":2783},"isBase":true}}}, +{"id":82527,"name":"Mindbender Treads","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,635,423,0,0,261,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":261,"11":295,"22":1151},"isBase":true}}}, +{"id":82528,"name":"Silentleaf Boots","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,423,635,0,0,0,0,286,0,0,0,275,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"7":286,"11":275,"22":1465},"isBase":true}}}, +{"id":82529,"name":"Yak Herder Sabatons","icon":"inv_boots_mail_panda_b_01black","type":10,"armorType":3,"stats":[0,423,635,0,0,0,261,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,2038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"6":261,"8":295,"22":2038},"isBase":true}}}, +{"id":82530,"name":"Summit Guardian Warboots","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[423,0,635,0,0,0,0,0,0,286,0,275,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"9":286,"11":275,"22":2783},"isBase":true}}}, +{"id":82531,"name":"Wallwatcher Warboots","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[423,0,635,0,0,0,322,0,0,0,0,214,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"6":322,"11":214,"22":2783},"isBase":true}}}, +{"id":82532,"name":"Waterfall Cord","icon":"inv_belt_cloth_panda_b_01_green","type":8,"armorType":1,"stats":[0,0,635,423,0,0,221,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":221,"11":318,"22":942},"isBase":true}}}, +{"id":82533,"name":"Mushan Hide Belt","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,0,635,423,0,0,291,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":291,"11":268,"22":1198},"isBase":true}}}, +{"id":82534,"name":"Dreaming Spirit Waistguard","icon":"inv_belt_mail_panda_b_01black","type":8,"armorType":3,"stats":[0,0,635,423,0,0,261,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":261,"7":295,"22":1668},"isBase":true}}}, +{"id":82535,"name":"Serenity Clasp","icon":"inv_belt_plate_panda_b_02yellow","type":8,"armorType":4,"stats":[0,0,635,423,261,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":261,"6":295,"22":2277},"isBase":true}}}, +{"id":82536,"name":"Mindbender Cord","icon":"inv_belt_cloth_panda_b_01_green","type":8,"armorType":1,"stats":[0,0,635,423,0,282,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"5":282,"6":282,"22":942},"isBase":true}}}, +{"id":82537,"name":"Silentleaf Belt","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,423,635,0,0,0,0,311,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"7":311,"8":234,"22":1198},"isBase":true}}}, +{"id":82538,"name":"Yak Herder Belt","icon":"inv_belt_mail_panda_b_01black","type":8,"armorType":3,"stats":[0,423,635,0,0,0,0,311,234,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"7":311,"8":234,"22":1668},"isBase":true}}}, +{"id":82539,"name":"Summit Guardian Girdle","icon":"inv_belt_plate_panda_b_02yellow","type":8,"armorType":4,"stats":[423,0,635,0,0,0,0,0,0,221,318,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"9":221,"10":318,"22":2277},"isBase":true}}}, +{"id":82540,"name":"Wallwatcher Girdle","icon":"inv_belt_plate_panda_b_02yellow","type":8,"armorType":4,"stats":[423,0,635,0,0,311,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"5":311,"7":234,"22":2277},"isBase":true}}}, +{"id":82541,"name":"Waterfall Gloves","icon":"inv_gloves_cloth_panda_b_01_green","type":7,"armorType":1,"stats":[0,0,765,510,0,0,350,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"2":765,"3":510,"6":350,"11":323,"22":1139},"isBase":true}}}, +{"id":82542,"name":"Mushan Hide Gloves","icon":"inv_gauntlets_leather_panda_b_01","type":7,"armorType":2,"stats":[0,0,765,510,0,0,298,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,1449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"2":765,"3":510,"6":298,"11":365,"22":1449},"isBase":true}}}, +{"id":82543,"name":"Dreaming Spirit Gauntlets","icon":"inv_gauntlets_mail_panda_b_01black","type":7,"armorType":3,"stats":[0,0,765,510,0,0,0,323,0,0,0,350,0,0,0,0,0,0,0,0,0,0,2017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"2":765,"3":510,"7":323,"11":350,"22":2017},"isBase":true}}}, +{"id":82544,"name":"Serenity Gloves","icon":"inv_gauntlets_plate_panda_b_02yellow","type":7,"armorType":4,"stats":[0,0,765,510,0,0,0,307,0,0,0,360,0,0,0,0,0,0,0,0,0,0,2754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"2":765,"3":510,"7":307,"11":360,"22":2754},"isBase":true}}}, +{"id":82545,"name":"Mindbender Handguards","icon":"inv_gloves_cloth_panda_b_01_green","type":7,"armorType":1,"stats":[0,0,765,510,0,282,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"2":765,"3":510,"5":282,"11":374,"22":1139},"isBase":true}}}, +{"id":82546,"name":"Silentleaf Gloves","icon":"inv_gauntlets_leather_panda_b_01","type":7,"armorType":2,"stats":[0,510,765,0,0,0,282,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,1449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"1":510,"2":765,"6":282,"11":374,"22":1449},"isBase":true}}}, +{"id":82547,"name":"Yak Herder Gauntlets","icon":"inv_gauntlets_mail_panda_b_01black","type":7,"armorType":3,"stats":[0,510,765,0,0,0,274,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,2017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"1":510,"2":765,"6":274,"11":379,"22":2017},"isBase":true}}}, +{"id":82548,"name":"Summit Guardian Gauntlets","icon":"inv_gauntlets_plate_panda_b_02yellow","type":7,"armorType":4,"stats":[510,0,765,0,0,290,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,2754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"0":510,"2":765,"5":290,"11":370,"22":2754},"isBase":true}}}, +{"id":82549,"name":"Wallwatcher Gauntlets","icon":"inv_gauntlets_plate_panda_b_02yellow","type":7,"armorType":4,"stats":[510,0,765,0,0,0,282,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,2754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":970,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":970,"stats":{"0":510,"2":765,"6":282,"11":374,"22":2754},"isBase":true}}}, +{"id":82550,"name":"Waterfall Cuffs","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,573,382,0,0,236,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"6":236,"7":266,"22":797},"isBase":true}}}, +{"id":82551,"name":"Mushan Hide Bindings","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,0,573,382,0,0,224,0,0,0,0,273,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"6":224,"11":273,"22":1015},"isBase":true}}}, +{"id":82552,"name":"Dreaming Spirit Armbands","icon":"inv_bracer_mail_panda_b_01black","type":6,"armorType":3,"stats":[0,0,573,382,0,0,0,284,0,0,0,206,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"7":284,"11":206,"22":1412},"isBase":true}}}, +{"id":82553,"name":"Serenity Bracers","icon":"inv_bracer_plate_panda_b_02yellow","type":6,"armorType":4,"stats":[0,0,573,382,273,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"4":273,"7":224,"22":1928},"isBase":true}}}, +{"id":82554,"name":"Mindbender Cuffs","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,573,382,0,0,0,280,0,0,0,211,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"7":280,"11":211,"22":797},"isBase":true}}}, +{"id":82555,"name":"Silentleaf Armwraps","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,382,573,0,0,259,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"1":382,"2":573,"5":259,"6":248,"22":1015},"isBase":true}}}, +{"id":82556,"name":"Yak Herder Wristguards","icon":"inv_bracer_mail_panda_b_01black","type":6,"armorType":3,"stats":[0,382,573,0,0,0,0,248,0,0,0,259,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"1":382,"2":573,"7":248,"11":259,"22":1412},"isBase":true}}}, +{"id":82557,"name":"Summit Guardian Armplates","icon":"inv_bracer_plate_panda_b_02yellow","type":6,"armorType":4,"stats":[382,0,573,0,0,0,0,0,0,266,236,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"0":382,"2":573,"9":266,"10":236,"22":1928},"isBase":true}}}, +{"id":82558,"name":"Wallwatcher Bracers","icon":"inv_bracer_plate_panda_b_02yellow","type":6,"armorType":4,"stats":[382,0,573,0,0,0,259,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"0":382,"2":573,"6":259,"11":248,"22":1928},"isBase":true}}}, +{"id":82559,"name":"Growthtender Locket","icon":"inv_jewelry_necklace_68","type":2,"stats":[0,0,476,318,0,0,0,218,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"7":218,"11":201},"isBase":true}}}, +{"id":82560,"name":"Brewdrinker Amulet","icon":"inv_jewelry_necklace_77","type":2,"stats":[0,0,476,318,0,0,230,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":230,"11":181},"isBase":true}}}, +{"id":82561,"name":"Bearheart Necklace","icon":"inv_jewelry_necklace_68","type":2,"stats":[0,318,476,0,0,0,0,230,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"7":230,"11":181},"isBase":true}}}, +{"id":82562,"name":"Brewdrinker Pendant","icon":"inv_jewelry_necklace_77","type":2,"stats":[318,0,476,0,0,0,0,0,0,176,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"9":176,"11":233},"isBase":true}}}, +{"id":82563,"name":"Bearheart Amulet","icon":"inv_jewelry_necklace_68","type":2,"stats":[318,0,476,0,0,0,0,191,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"7":191,"11":224},"isBase":true}}}, +{"id":82564,"name":"Spiritbinder Band","icon":"inv_jewelry_ring_120","type":11,"stats":[0,0,476,318,0,0,230,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":230,"7":181},"isBase":true}}}, +{"id":82565,"name":"Flamefury Ring","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,476,318,0,0,236,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":236,"7":171},"isBase":true}}}, +{"id":82566,"name":"Jade Inlaid Signet","icon":"inv_jewelry_ring_119","type":11,"stats":[0,318,476,0,0,181,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"5":181,"11":230},"isBase":true}}}, +{"id":82567,"name":"Blue Mountain Signet","icon":"inv_jewelry_ring_128","type":11,"stats":[318,0,476,0,0,0,0,0,161,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"8":161,"9":241},"isBase":true}}}, +{"id":82568,"name":"Band of the Unsealed Tomb","icon":"inv_jewelry_ring_108","type":11,"stats":[318,0,476,0,0,218,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"5":218,"7":201},"isBase":true}}}, +{"id":82569,"name":"Luckydo Ring","icon":"inv_jewelry_ring_113","type":11,"stats":[0,0,476,318,0,0,0,166,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"7":166,"11":239},"isBase":true}}}, +{"id":82570,"name":"Grummle Bazaar Keepsake","icon":"inv_jewelry_ring_129","type":11,"stats":[0,0,476,318,0,215,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"5":215,"7":206},"isBase":true}}}, +{"id":82571,"name":"Burlap Loop","icon":"inv_jewelry_ring_113","type":11,"stats":[0,318,476,0,0,0,171,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"6":171,"11":236},"isBase":true}}}, +{"id":82572,"name":"Fire Camp Ring","icon":"inv_jewelry_ring_129","type":11,"stats":[318,0,476,0,0,0,0,0,0,186,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"9":186,"11":227},"isBase":true}}}, +{"id":82573,"name":"Sootassle Band","icon":"inv_jewelry_ring_113","type":11,"stats":[318,0,476,0,0,0,0,241,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"7":241,"8":161},"isBase":true}}}, +{"id":82574,"name":"Coin of Blessings","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"6":537},"isBase":true}}}, +{"id":82575,"name":"Coin of Serendipity","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"11":537},"isBase":true}}}, +{"id":82576,"name":"Coin of Luck","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"6":537},"isBase":true}}}, +{"id":82577,"name":"Coin of Good Fortune","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"10":537},"isBase":true}}}, +{"id":82578,"name":"Luckydo Coin","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"7":537},"isBase":true}}}, +{"id":82579,"name":"Lorewalker's Mark","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"4":537},"isBase":true}}}, +{"id":82580,"name":"Lorewalker's Emblem","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"6":537},"isBase":true}}}, +{"id":82581,"name":"Lorewalker's Sigil","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"11":537},"isBase":true}}}, +{"id":82582,"name":"Lorewalker's Medallion","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"11":537},"isBase":true}}}, +{"id":82583,"name":"Lorewalker's Insignia","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"6":537},"isBase":true}}}, +{"id":82584,"name":"Snowfall Shawl","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,476,318,221,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":221,"7":196,"22":837},"isBase":true}}}, +{"id":82585,"name":"Snowdrift Drape","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,476,318,0,0,201,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":201,"7":218,"22":837},"isBase":true}}}, +{"id":82586,"name":"Snowblind Cape","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,318,476,0,0,0,166,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"6":166,"7":239,"22":837},"isBase":true}}}, +{"id":82587,"name":"Snow Boulder Manteau","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[318,0,476,0,0,0,0,0,0,0,186,227,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"10":186,"11":227,"22":837},"isBase":true}}}, +{"id":82588,"name":"Snowmask Cloak","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[318,0,476,0,0,0,218,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"6":218,"7":201,"22":837},"isBase":true}}}, +{"id":82589,"name":"Ordo Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,366,244,0,0,151,170,0,0,0,0,0,0,3261,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1782,"weaponDamageMax":3311,"weaponSpeed":3.3,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1782,"weaponDamageMax":3311,"stats":{"2":366,"3":244,"6":151,"7":170,"14":3261},"isBase":true}}}, +{"id":82590,"name":"Blazecaster's Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,366,244,0,0,0,175,0,0,0,143,0,0,3261,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1312,"weaponDamageMax":1312,"weaponSpeed":1.7,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1312,"weaponDamageMax":1312,"stats":{"2":366,"3":244,"7":175,"11":143,"14":3261},"isBase":true}}}, +{"id":82591,"name":"Wind's Rest Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,570,854,0,0,0,0,333,0,0,0,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5494,"weaponDamageMax":8242,"weaponSpeed":3.3,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5494,"weaponDamageMax":8242,"stats":{"1":570,"2":854,"7":333,"11":407},"isBase":true}}}, +{"id":82592,"name":"Warbringer's Axe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[570,0,854,0,0,0,0,0,370,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"weaponSpeed":3.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"stats":{"0":570,"2":854,"8":370,"11":385},"isBase":true}}}, +{"id":82593,"name":"Wind Blade","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[244,0,366,0,0,0,0,124,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"7":124,"8":185},"isBase":true}}}, +{"id":82594,"name":"Fireblaze Rifle","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,570,854,0,0,0,0,342,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":4224,"weaponDamageMax":7846,"weaponSpeed":2.9,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":4224,"weaponDamageMax":7846,"stats":{"1":570,"2":854,"7":342,"11":402},"isBase":true}}}, +{"id":82595,"name":"Wind's Edge","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[244,0,366,0,0,0,0,0,172,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"8":172,"11":147},"isBase":true}}}, +{"id":82596,"name":"Ordo Handaxe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,366,244,0,0,151,170,0,0,0,0,0,0,3261,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":864,"weaponDamageMax":1605,"weaponSpeed":1.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":864,"weaponDamageMax":1605,"stats":{"2":366,"3":244,"6":151,"7":170,"14":3261},"isBase":true}}}, +{"id":82597,"name":"Warbringer's Dagger","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,244,366,0,0,0,0,163,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"weaponSpeed":1.8,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"stats":{"1":244,"2":366,"7":163,"11":163},"isBase":true}}}, +{"id":82598,"name":"Fireblaze Clobberer","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,244,366,0,0,0,0,163,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"1":244,"2":366,"7":163,"11":163},"isBase":true}}}, +{"id":82599,"name":"Shomi's Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[570,0,854,0,0,0,0,396,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"weaponSpeed":3.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"stats":{"0":570,"2":854,"7":396,"11":352},"isBase":true}}}, +{"id":82600,"name":"Shomi's Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[244,0,366,0,0,0,0,0,185,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"8":185,"11":124},"isBase":true}}}, +{"id":82601,"name":"Shomi's Shield","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[318,0,476,0,0,0,0,0,196,0,0,221,0,0,0,0,0,0,0,0,0,0,12986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"8":196,"11":221,"22":12986},"isBase":true}}}, +{"id":82602,"name":"Shomi's Ward","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,476,318,0,0,206,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":206,"7":215,"22":12986},"isBase":true}}}, +{"id":82603,"name":"Shomi's Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,244,366,0,0,0,163,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"weaponSpeed":1.8,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"stats":{"1":244,"2":366,"6":163,"11":163},"isBase":true}}}, +{"id":82604,"name":"Shomi's Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,244,366,0,0,0,127,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"1":244,"2":366,"6":127,"11":183},"isBase":true}}}, +{"id":82614,"name":"Mountainscaler Satin Hood","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,703,469,0,0,0,274,0,0,0,335,0,0,0,0,0,0,0,0,0,0,1224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"7":274,"11":335,"22":1224},"isBase":true}}}, +{"id":82615,"name":"Mountainscaler Hide Helm","icon":"inv_helm_leather_panda_b_02_indigo","type":1,"armorType":2,"stats":[0,0,703,469,352,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":352,"7":245,"22":1580},"isBase":true}}}, +{"id":82616,"name":"Mountainscaler Ringmail Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,0,703,469,0,0,245,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"6":245,"11":352,"22":2230},"isBase":true}}}, +{"id":82617,"name":"Mountainscaler Burnished Headcover","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,703,469,326,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":326,"6":289,"22":3075},"isBase":true}}}, +{"id":82618,"name":"Mountainscaler Silk Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,703,469,0,0,317,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,1224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"6":317,"11":305,"22":1224},"isBase":true}}}, +{"id":82619,"name":"Mountainscaler Leather Helm","icon":"inv_helm_leather_panda_b_02_indigo","type":1,"armorType":2,"stats":[0,469,703,0,0,0,352,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"6":352,"7":245,"22":1580},"isBase":true}}}, +{"id":82620,"name":"Mountainscaler Chain Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,469,703,0,0,245,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"5":245,"6":352,"22":2230},"isBase":true}}}, +{"id":82621,"name":"Mountainscaler Heavy Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[469,0,703,0,0,252,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,3075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"5":252,"9":348,"22":3075},"isBase":true}}}, +{"id":82622,"name":"Mountainscaler Armored Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[469,0,703,0,0,0,348,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,3075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"6":348,"11":252,"22":3075},"isBase":true}}}, +{"id":82623,"name":"Mountainscaler Satin Mantle","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,522,348,252,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":252,"7":198,"22":1130},"isBase":true}}}, +{"id":82624,"name":"Mountainscaler Hide Spaulders","icon":"inv_shoulder_leather_panda_b_02_indigo","type":3,"armorType":2,"stats":[0,0,522,348,259,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":259,"7":187,"22":1458},"isBase":true}}}, +{"id":82625,"name":"Mountainscaler Ringmail Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,0,522,348,249,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":249,"6":204,"22":2058},"isBase":true}}}, +{"id":82626,"name":"Mountainscaler Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[0,0,522,348,193,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,2838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":193,"11":255,"22":2838},"isBase":true}}}, +{"id":82627,"name":"Mountainscaler Silk Amice","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,522,348,0,187,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"5":187,"7":259,"22":1130},"isBase":true}}}, +{"id":82628,"name":"Mountainscaler Leather Spaulders","icon":"inv_shoulder_leather_panda_b_02_indigo","type":3,"armorType":2,"stats":[0,348,522,0,0,204,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"5":204,"6":249,"22":1458},"isBase":true}}}, +{"id":82629,"name":"Mountainscaler Chain Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,348,522,0,0,193,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"5":193,"7":255,"22":2058},"isBase":true}}}, +{"id":82630,"name":"Mountainscaler Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,187,0,259,0,0,0,0,0,0,0,0,0,0,2838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"9":187,"11":259,"22":2838},"isBase":true}}}, +{"id":82631,"name":"Mountainscaler Armored Shoulders","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[348,0,522,0,0,0,182,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"6":182,"7":262,"22":2838},"isBase":true}}}, +{"id":82632,"name":"Mountainscaler Satin Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,703,469,322,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":322,"7":297,"22":1507},"isBase":true}}}, +{"id":82633,"name":"Mountainscaler Hide Robes","icon":"inv_chest_leather_panda_b_02_indigo","type":5,"armorType":2,"stats":[0,0,703,469,335,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":335,"7":274,"22":1945},"isBase":true}}}, +{"id":82634,"name":"Mountainscaler Ringmail Armor","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,0,703,469,305,0,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,2744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":305,"11":317,"22":2744},"isBase":true}}}, +{"id":82635,"name":"Mountainscaler Burnished Chestguard","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,703,469,339,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":339,"7":267,"22":3784},"isBase":true}}}, +{"id":82636,"name":"Mountainscaler Silk Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,703,469,0,245,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"5":245,"7":352,"22":1507},"isBase":true}}}, +{"id":82637,"name":"Mountainscaler Leather Tunic","icon":"inv_chest_leather_panda_b_02_indigo","type":5,"armorType":2,"stats":[0,469,703,0,0,0,0,0,245,0,0,352,0,0,0,0,0,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"8":245,"11":352,"22":1945},"isBase":true}}}, +{"id":82638,"name":"Mountainscaler Chain Armor","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,469,703,0,0,0,352,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,2744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"6":352,"8":245,"22":2744},"isBase":true}}}, +{"id":82639,"name":"Mountainscaler Heavy Chestpiece","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[469,0,703,0,0,0,0,0,0,0,326,289,0,0,0,0,0,0,0,0,0,0,3784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"10":326,"11":289,"22":3784},"isBase":true}}}, +{"id":82640,"name":"Mountainscaler Armored Chestpiece","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[469,0,703,0,0,0,297,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"6":297,"7":322,"22":3784},"isBase":true}}}, +{"id":82641,"name":"Mountainscaler Satin Leggings","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,703,469,0,0,339,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,1318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"6":339,"11":267,"22":1318},"isBase":true}}}, +{"id":82642,"name":"Mountainscaler Hide Legguards","icon":"inv_pants_leather_panda_b_02_indigo","type":9,"armorType":2,"stats":[0,0,703,469,0,0,0,317,0,0,0,305,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"7":317,"11":305,"22":1701},"isBase":true}}}, +{"id":82643,"name":"Mountainscaler Ringmail Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,703,469,326,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":326,"6":289,"22":2401},"isBase":true}}}, +{"id":82644,"name":"Mountainscaler Burnished Legplates","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[0,0,703,469,0,0,282,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,3311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"6":282,"11":331,"22":3311},"isBase":true}}}, +{"id":82645,"name":"Mountainscaler Silk Trousers","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,703,469,0,0,331,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"6":331,"7":282,"22":1318},"isBase":true}}}, +{"id":82646,"name":"Mountainscaler Leather Legguards","icon":"inv_pants_leather_panda_b_02_indigo","type":9,"armorType":2,"stats":[0,469,703,0,0,0,352,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"6":352,"7":245,"22":1701},"isBase":true}}}, +{"id":82647,"name":"Mountainscaler Chain Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,469,703,0,0,0,0,348,0,0,0,252,0,0,0,0,0,0,0,0,0,0,2401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"1":469,"2":703,"7":348,"11":252,"22":2401},"isBase":true}}}, +{"id":82648,"name":"Mountainscaler Heavy Legguards","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[469,0,703,0,0,0,0,0,0,335,274,0,0,0,0,0,0,0,0,0,0,0,3311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"9":335,"10":274,"22":3311},"isBase":true}}}, +{"id":82649,"name":"Mountainscaler Armored Legguards","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[469,0,703,0,0,0,252,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,3311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"6":252,"11":348,"22":3311},"isBase":true}}}, +{"id":82650,"name":"Mountainscaler Satin Treads","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,522,348,176,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,1036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":176,"11":265,"22":1036},"isBase":true}}}, +{"id":82651,"name":"Mountainscaler Hide Footguards","icon":"inv_boots_leather_panda_b_02_indigo","type":10,"armorType":2,"stats":[0,0,522,348,221,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":221,"6":239,"22":1337},"isBase":true}}}, +{"id":82652,"name":"Mountainscaler Ringmail Sabatons","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,0,522,348,249,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":249,"7":204,"22":1887},"isBase":true}}}, +{"id":82653,"name":"Mountainscaler Burnished Greaves","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,522,348,255,0,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":255,"7":193,"22":2602},"isBase":true}}}, +{"id":82654,"name":"Mountainscaler Silk Treads","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,522,348,0,0,215,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,1036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"6":215,"11":242,"22":1036},"isBase":true}}}, +{"id":82655,"name":"Mountainscaler Leather Boots","icon":"inv_boots_leather_panda_b_02_indigo","type":10,"armorType":2,"stats":[0,348,522,0,0,0,0,226,0,0,0,236,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"7":226,"11":236,"22":1337},"isBase":true}}}, +{"id":82656,"name":"Mountainscaler Chain Sabatons","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,348,522,0,0,0,209,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"6":209,"11":246,"22":1887},"isBase":true}}}, +{"id":82657,"name":"Mountainscaler Heavy Warboots","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,236,0,226,0,0,0,0,0,0,0,0,0,0,2602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"9":236,"11":226,"22":2602},"isBase":true}}}, +{"id":82658,"name":"Mountainscaler Armored Warboots","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[348,0,522,0,0,0,226,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"6":226,"7":236,"22":2602},"isBase":true}}}, +{"id":82659,"name":"Mountainscaler Satin Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,522,348,262,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":262,"6":182,"22":847},"isBase":true}}}, +{"id":82660,"name":"Mountainscaler Hide Belt","icon":"inv_belt_leather_panda_b_02_indigo","type":8,"armorType":2,"stats":[0,0,522,348,239,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":239,"11":221,"22":1094},"isBase":true}}}, +{"id":82661,"name":"Mountainscaler Ringmail Waistguard","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,0,522,348,215,0,0,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":215,"7":242,"22":1544},"isBase":true}}}, +{"id":82662,"name":"Mountainscaler Burnished Clasp","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[0,0,522,348,0,0,242,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"6":242,"11":215,"22":2129},"isBase":true}}}, +{"id":82663,"name":"Mountainscaler Silk Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,522,348,0,209,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"5":209,"7":246,"22":847},"isBase":true}}}, +{"id":82664,"name":"Mountainscaler Leather Belt","icon":"inv_belt_leather_panda_b_02_indigo","type":8,"armorType":2,"stats":[0,348,522,0,0,0,0,255,193,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"7":255,"8":193,"22":1094},"isBase":true}}}, +{"id":82665,"name":"Mountainscaler Chain Links","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,348,522,0,0,0,0,255,193,0,0,0,0,0,0,0,0,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"7":255,"8":193,"22":1544},"isBase":true}}}, +{"id":82666,"name":"Mountainscaler Heavy Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[348,0,522,0,0,182,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"5":182,"10":262,"22":2129},"isBase":true}}}, +{"id":82667,"name":"Mountainscaler Armored Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[348,0,522,0,0,204,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"5":204,"7":249,"22":2129},"isBase":true}}}, +{"id":82668,"name":"Mountainscaler Satin Gloves","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,522,348,221,0,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":221,"7":239,"22":942},"isBase":true}}}, +{"id":82669,"name":"Mountainscaler Hide Gloves","icon":"inv_glove_leather_panda_b_02_indigo","type":7,"armorType":2,"stats":[0,0,522,348,252,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":252,"11":198,"22":1215},"isBase":true}}}, +{"id":82670,"name":"Mountainscaler Ringmail Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,0,522,348,0,0,0,221,0,0,0,239,0,0,0,0,0,0,0,0,0,0,1715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"7":221,"11":239,"22":1715},"isBase":true}}}, +{"id":82671,"name":"Mountainscaler Burnished Gloves","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,522,348,246,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":246,"7":209,"22":2365},"isBase":true}}}, +{"id":82672,"name":"Mountainscaler Silk Handguards","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,522,348,0,193,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"5":193,"7":255,"22":942},"isBase":true}}}, +{"id":82673,"name":"Mountainscaler Leather Gloves","icon":"inv_glove_leather_panda_b_02_indigo","type":7,"armorType":2,"stats":[0,348,522,0,0,193,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"5":193,"11":255,"22":1215},"isBase":true}}}, +{"id":82674,"name":"Mountainscaler Chain Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,348,522,0,0,0,187,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,1715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"1":348,"2":522,"6":187,"11":259,"22":1715},"isBase":true}}}, +{"id":82675,"name":"Mountainscaler Heavy Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,198,0,252,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"9":198,"11":252,"22":2365},"isBase":true}}}, +{"id":82676,"name":"Mountainscaler Armored Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[348,0,522,0,0,193,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"5":193,"11":255,"22":2365},"isBase":true}}}, +{"id":82677,"name":"Mountainscaler Satin Cuffs","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,391,261,0,0,161,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"6":161,"7":182,"22":659},"isBase":true}}}, +{"id":82678,"name":"Mountainscaler Hide Bindings","icon":"inv_bracer_leather_panda_b_02_indigo","type":6,"armorType":2,"stats":[0,0,391,261,148,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":148,"6":189,"22":851},"isBase":true}}}, +{"id":82679,"name":"Mountainscaler Ringmail Armbands","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,0,391,261,140,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":140,"7":194,"22":1201},"isBase":true}}}, +{"id":82680,"name":"Mountainscaler Burnished Bracers","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[0,0,391,261,153,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":153,"7":187,"22":1656},"isBase":true}}}, +{"id":82681,"name":"Mountainscaler Silk Cuffs","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,391,261,0,0,0,191,0,0,0,144,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"7":191,"11":144,"22":659},"isBase":true}}}, +{"id":82682,"name":"Mountainscaler Leather Armwraps","icon":"inv_bracer_leather_panda_b_02_indigo","type":6,"armorType":2,"stats":[0,261,391,0,0,0,170,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"1":261,"2":391,"6":170,"7":177,"22":851},"isBase":true}}}, +{"id":82683,"name":"Mountainscaler Chain Wristguards","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,261,391,0,0,0,0,170,0,0,0,177,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"1":261,"2":391,"7":170,"11":177,"22":1201},"isBase":true}}}, +{"id":82684,"name":"Mountainscaler Heavy Armplates","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[261,0,391,0,0,0,0,0,0,182,161,0,0,0,0,0,0,0,0,0,0,0,1656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"9":182,"10":161,"22":1656},"isBase":true}}}, +{"id":82685,"name":"Mountainscaler Armored Bracers","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[261,0,391,0,0,0,177,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,1656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"6":177,"11":170,"22":1656},"isBase":true}}}, +{"id":82686,"name":"Mountainscaler Locket","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,391,261,165,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":165,"7":179},"isBase":true}}}, +{"id":82687,"name":"Mountainscaler Choker","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,391,261,0,0,189,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"6":189,"11":148},"isBase":true}}}, +{"id":82688,"name":"Mountainscaler Necklace","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,261,391,0,0,0,148,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"1":261,"2":391,"6":148,"7":189},"isBase":true}}}, +{"id":82689,"name":"Mountainscaler Pendant","icon":"inv_jewelry_necklace_67","type":2,"stats":[261,0,391,0,0,0,0,0,0,144,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"9":144,"11":191},"isBase":true}}}, +{"id":82690,"name":"Mountainscaler Amulet","icon":"inv_jewelry_necklace_67","type":2,"stats":[261,0,391,0,0,0,184,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"6":184,"7":157},"isBase":true}}}, +{"id":82691,"name":"Mountainscaler Band","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,391,261,177,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":177,"6":170},"isBase":true}}}, +{"id":82692,"name":"Mountainscaler Ring","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,391,261,0,0,194,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"6":194,"7":140},"isBase":true}}}, +{"id":82693,"name":"Mountainscaler Loop","icon":"inv_jewelry_ring_109","type":11,"stats":[0,261,391,0,0,0,170,0,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"1":261,"2":391,"6":170,"11":177},"isBase":true}}}, +{"id":82694,"name":"Mountainscaler Signet","icon":"inv_jewelry_ring_109","type":11,"stats":[261,0,391,0,0,0,0,0,0,187,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"9":187,"10":153},"isBase":true}}}, +{"id":82695,"name":"Mountainscaler Seal","icon":"inv_jewelry_ring_109","type":11,"stats":[261,0,391,0,0,0,0,194,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"7":194,"8":140},"isBase":true}}}, +{"id":82696,"name":"Mountainscaler Mark","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"4":441},"isBase":true}}}, +{"id":82697,"name":"Mountainscaler Medal","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"11":441},"isBase":true}}}, +{"id":82698,"name":"Mountainscaler Emblem","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"7":441},"isBase":true}}}, +{"id":82699,"name":"Mountainscaler Insignia","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"10":441},"isBase":true}}}, +{"id":82700,"name":"Mountainscaler Badge","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"6":441},"isBase":true}}}, +{"id":82701,"name":"Mountainscaler Shawl","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,391,261,144,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":144,"7":191,"22":753},"isBase":true}}}, +{"id":82702,"name":"Mountainscaler Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,391,261,0,0,165,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"6":165,"7":179,"22":753},"isBase":true}}}, +{"id":82703,"name":"Mountainscaler Cape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,261,391,0,0,0,136,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"1":261,"2":391,"6":136,"7":196,"22":753},"isBase":true}}}, +{"id":82704,"name":"Mountainscaler Manteau","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[261,0,391,0,0,0,0,0,0,0,153,187,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"10":153,"11":187,"22":753},"isBase":true}}}, +{"id":82705,"name":"Mountainscaler Cloak","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[261,0,391,0,0,0,179,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"6":179,"7":165,"22":753},"isBase":true}}}, +{"id":82706,"name":"Mountainscaler Meditation Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,703,469,289,0,326,0,0,0,0,0,0,0,2684,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":2258,"weaponDamageMax":3388,"weaponSpeed":3.3,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":2258,"weaponDamageMax":3388,"stats":{"2":703,"3":469,"4":289,"6":326,"14":2684},"isBase":true}}}, +{"id":82707,"name":"Mountainscaler Diviner's Rod","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,703,469,0,0,0,335,0,0,0,274,0,0,2684,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":2258,"weaponDamageMax":3388,"weaponSpeed":3.3,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":2258,"weaponDamageMax":3388,"stats":{"2":703,"3":469,"7":335,"11":274,"14":2684},"isBase":true}}}, +{"id":82708,"name":"Mountainscaler Combat Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,469,703,0,0,0,0,274,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":4517,"weaponDamageMax":6777,"weaponSpeed":3.3,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":4517,"weaponDamageMax":6777,"stats":{"1":469,"2":703,"7":274,"11":335},"isBase":true}}}, +{"id":82709,"name":"Mountainscaler Battlemace","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[469,0,703,0,0,0,0,0,297,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":4928,"weaponDamageMax":7393,"weaponSpeed":3.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":469,"2":703,"8":297,"11":322},"isBase":true}}}, +{"id":82710,"name":"Mountainscaler Handaxe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[201,0,301,0,0,0,108,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"weaponSpeed":2.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"stats":{"0":201,"2":301,"6":108,"8":149},"isBase":true}}}, +{"id":82711,"name":"Mountainscaler Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,469,703,0,0,0,0,282,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3474,"weaponDamageMax":6452,"weaponSpeed":2.9,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":3474,"weaponDamageMax":6452,"stats":{"1":469,"2":703,"7":282,"11":331},"isBase":true}}}, +{"id":82712,"name":"Mountainscaler Saber","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[201,0,301,0,0,0,0,0,0,0,105,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"weaponSpeed":2.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"stats":{"0":201,"2":301,"10":105,"11":151},"isBase":true}}}, +{"id":82713,"name":"Mountainscaler Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,301,201,136,0,0,131,0,0,0,0,0,0,2685,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":710,"weaponDamageMax":1320,"weaponSpeed":1.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":710,"weaponDamageMax":1320,"stats":{"2":301,"3":201,"4":136,"7":131,"14":2685},"isBase":true}}}, +{"id":82714,"name":"Mountainscaler Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,201,301,0,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":1599,"weaponDamageMax":2970,"weaponSpeed":1.8,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":1599,"weaponDamageMax":2970,"stats":{"1":201,"2":301,"7":134,"11":134},"isBase":true}}}, +{"id":82715,"name":"Mountainscaler Smasher","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,201,301,0,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"weaponSpeed":2.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"stats":{"1":201,"2":301,"7":134,"11":134},"isBase":true}}}, +{"id":82716,"name":"Mountainscaler Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[469,0,703,0,0,0,0,326,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":4928,"weaponDamageMax":7393,"weaponSpeed":3.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":469,"2":703,"7":326,"11":289},"isBase":true}}}, +{"id":82717,"name":"Mountainscaler Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[201,0,301,0,0,0,0,111,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"weaponSpeed":2.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"stats":{"0":201,"2":301,"7":111,"8":147},"isBase":true}}}, +{"id":82718,"name":"Mountainscaler Barrier","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[261,0,391,0,0,0,0,0,191,0,0,144,0,0,0,0,0,0,0,0,0,0,12455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"8":191,"11":144,"22":12455},"isBase":true}}}, +{"id":82719,"name":"Mountainscaler Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,391,261,165,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":165,"6":179,"22":12455},"isBase":true}}}, +{"id":82720,"name":"Mountainscaler Blade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,201,301,0,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":1599,"weaponDamageMax":2970,"weaponSpeed":1.8,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":1599,"weaponDamageMax":2970,"stats":{"1":201,"2":301,"6":134,"11":134},"isBase":true}}}, +{"id":82721,"name":"Mountainscaler Axe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,201,301,0,0,0,105,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"weaponSpeed":2.6,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":382,"weaponDamageMin":2310,"weaponDamageMax":4290,"stats":{"1":201,"2":301,"6":105,"11":151},"isBase":true}}}, +{"id":82812,"name":"Pyretic Legguards","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[964,0,1566,0,0,0,666,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"6":552,"7":528,"22":4263}},"463":{"randPropPoints":1710,"stats":{"0":819,"2":1349,"6":569,"7":544,"22":4310}},"471":{"randPropPoints":1843,"stats":{"0":889,"2":1454,"6":616,"7":590,"22":4435},"upgradeStep":1}}}, +{"id":82813,"name":"Koegler's Ritual Knife","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,448,671,0,0,234,0,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"5":196,"11":282}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"1":385,"2":578,"5":201,"11":290}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"1":415,"2":623,"5":217,"11":312},"upgradeStep":1}}}, +{"id":82814,"name":"Mograine's Immaculate Might","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[1044,0,1566,0,0,0,0,561,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"7":470,"11":649}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"7":483,"11":668}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"7":521,"11":720},"upgradeStep":1}}}, +{"id":82815,"name":"Bindburner Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,776,1164,0,0,0,0,547,0,0,0,466,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":458,"11":390,"22":2007}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"7":471,"11":401,"22":2029}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"7":508,"11":433,"22":2088},"upgradeStep":1}}}, +{"id":82816,"name":"Melted Hypnotic Blade","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,671,448,0,0,248,0,0,0,0,328,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"2":562,"3":375,"6":207,"11":275,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"2":578,"3":385,"6":213,"11":283,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"2":623,"3":415,"6":230,"11":305,"14":5552},"upgradeStep":1}}}, +{"id":82817,"name":"Robes of Koegler","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1566,964,0,707,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"5":585,"6":472,"22":2014}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"5":603,"6":486,"22":2037}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"5":653,"6":527,"22":2096},"upgradeStep":1}}}, +{"id":82818,"name":"Vellum-Ripper Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,1164,776,540,0,0,0,0,0,0,479,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"11":401,"22":1602}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":465,"11":412,"22":1620}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":501,"11":444,"22":1667},"upgradeStep":1}}}, +{"id":82819,"name":"Bradbury's Entropic Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,1566,964,716,0,0,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":594,"11":458,"22":3122}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":612,"11":472,"22":3156}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":662,"11":511,"22":3248},"upgradeStep":1}}}, +{"id":82820,"name":"Shadow Puppet Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,873,582,399,0,0,0,0,0,0,369,0,0,0,0,0,0,0,0,0,0,1670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Instructor Chillheart"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":344,"11":318,"22":1578}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":371,"11":342,"22":1624},"upgradeStep":1}}}, +{"id":82821,"name":"Breastplate of Wracking Souls","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[713,0,1566,0,0,0,0,0,489,0,1004,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Instructor Chillheart"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":585,"2":1312,"8":403,"10":835,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":603,"2":1349,"8":416,"10":859,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":657,"2":1454,"8":451,"10":929,"22":5069},"upgradeStep":1}}}, +{"id":82822,"name":"Gravetouch Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[1044,0,1566,0,0,727,644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Instructor Chillheart"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"5":609,"6":540}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"5":626,"6":555}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"5":675,"6":598},"upgradeStep":1}}}, +{"id":82823,"name":"Icewrath Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,776,1163,0,0,0,466,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Instructor Chillheart"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":390,"11":458,"22":1442}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"6":401,"11":471,"22":1458}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"6":433,"11":508,"22":1501},"upgradeStep":1}}}, +{"id":82824,"name":"Goresoaked Headreaper","icon":"inv_axe_20","type":13,"weaponType":1,"handType":4,"stats":[1044,0,1566,0,0,0,793,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Rattlegore"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":665,"8":443}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"6":683,"8":456}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"6":737,"8":491},"upgradeStep":1}}}, +{"id":82825,"name":"Deadwalker Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,873,582,0,410,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Rattlegore"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":344,"6":293,"22":881}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"5":354,"6":301,"22":891}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"5":381,"6":325,"22":917},"upgradeStep":1}}}, +{"id":82826,"name":"Necromantic Wand","icon":"inv_wand_1h_pandung_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,671,448,0,0,0,276,0,0,0,312,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":1.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Rattlegore"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"7":231,"11":261,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1449,"weaponDamageMax":2693,"stats":{"2":578,"3":385,"7":238,"11":268,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1562,"weaponDamageMax":2901,"stats":{"2":623,"3":415,"7":256,"11":289,"14":5552},"upgradeStep":1}}}, +{"id":82827,"name":"Rattling Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,1164,776,517,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Rattlegore"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"7":433,"22":1602}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":445,"7":445,"22":1620}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":480,"7":480,"22":1667},"upgradeStep":1}}}, +{"id":82828,"name":"Bone Golem Boots","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,696,1164,0,0,0,0,492,0,0,0,451,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Rattlegore"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":406,"11":372,"22":2453}},"463":{"randPropPoints":1270,"stats":{"1":588,"2":1002,"7":418,"11":383,"22":2480}},"471":{"randPropPoints":1369,"stats":{"1":640,"2":1080,"7":454,"11":416,"22":2552},"upgradeStep":1}}}, +{"id":82847,"name":"Metanoia Shield","icon":"inv_armor_shield_naxxramas_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,873,582,388,0,0,0,0,0,0,388,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Jandice Barov"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":334,"11":334,"22":15800}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":360,"11":360,"22":16259},"upgradeStep":1}}}, +{"id":82848,"name":"Barovian Ritual Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1566,804,0,627,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Jandice Barov"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":505,"11":392,"22":1637}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":659,"5":523,"11":406,"22":1655}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":729,"5":573,"11":447,"22":1703},"upgradeStep":1}}}, +{"id":82850,"name":"Phantasmal Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[442,0,873,0,0,295,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Jandice Barov"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"9":488,"22":1007}},"463":{"randPropPoints":953,"stats":{"0":381,"2":752,"5":254,"9":501,"22":1018}},"471":{"randPropPoints":1027,"stats":{"0":410,"2":810,"5":274,"9":540,"22":1048},"upgradeStep":1}}}, +{"id":82851,"name":"Ghostwoven Legguards","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,964,1566,0,0,0,537,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Jandice Barov"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"6":444,"7":602,"22":2243}},"463":{"randPropPoints":1710,"stats":{"1":819,"2":1349,"6":457,"7":620,"22":2268}},"471":{"randPropPoints":1843,"stats":{"1":889,"2":1454,"6":496,"7":671,"22":2334},"upgradeStep":1}}}, +{"id":82852,"name":"Wraithplate Treads","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[696,0,1164,0,0,0,0,0,0,0,451,492,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Jandice Barov"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"10":372,"11":406,"22":3350}},"463":{"randPropPoints":1270,"stats":{"0":588,"2":1002,"10":383,"11":418,"22":3386}},"471":{"randPropPoints":1369,"stats":{"0":640,"2":1080,"10":416,"11":454,"22":3485},"upgradeStep":1}}}, +{"id":82853,"name":"Soulburner Crown","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,804,1566,0,0,637,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Lilian Voss"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":520,"6":394,"22":2083}},"463":{"randPropPoints":1710,"stats":{"1":659,"2":1349,"5":537,"6":410,"22":2106}},"471":{"randPropPoints":1843,"stats":{"1":729,"2":1454,"5":585,"6":454,"22":2167},"upgradeStep":1}}}, +{"id":82854,"name":"Leggings of Unleashed Anguish","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,1566,964,0,0,744,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Lilian Voss"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":617,"7":416,"22":1763}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"6":636,"7":429,"22":1782}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"6":688,"7":466,"22":1834},"upgradeStep":1}}}, +{"id":82855,"name":"Shivbreaker Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1566,964,707,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Lilian Voss"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":585,"6":472,"22":3568}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":819,"4":603,"6":486,"22":3607}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":889,"4":653,"6":527,"22":3712},"upgradeStep":1}}}, +{"id":82856,"name":"Dark Blaze Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[776,0,1164,0,0,0,504,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Lilian Voss"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":422,"7":440,"22":3045}},"463":{"randPropPoints":1270,"stats":{"0":668,"2":1002,"6":434,"7":452,"22":3079}},"471":{"randPropPoints":1369,"stats":{"0":720,"2":1080,"6":468,"7":487,"22":3168},"upgradeStep":1}}}, +{"id":82857,"name":"Vigorsteel Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[510,0,1164,0,0,353,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"463":{"randPropPoints":1270,"stats":{"0":428,"2":1002,"5":298,"10":628,"22":3694}},"471":{"randPropPoints":1369,"stats":{"0":467,"2":1080,"5":325,"10":680,"22":3802},"upgradeStep":1}}}, +{"id":82858,"name":"Tombstone Gauntlets","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,776,1164,0,0,405,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":339,"7":488,"22":1602}},"463":{"randPropPoints":1270,"stats":{"1":668,"2":1002,"5":349,"7":502,"22":1620}},"471":{"randPropPoints":1369,"stats":{"1":720,"2":1080,"5":376,"7":541,"22":1667},"upgradeStep":1}}}, +{"id":82859,"name":"Headmaster's Will","icon":"inv_jewelry_talisman_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,1641,1094,0,657,772,0,0,0,0,0,0,0,6265,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":5274,"weaponDamageMax":7911,"weaponSpeed":3.3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"5":526,"6":617,"14":5009}},"476":{"randPropPoints":1930,"weaponDamageMin":4895,"weaponDamageMax":7343,"stats":{"2":1523,"3":1015,"5":610,"6":716,"14":5813}},"480":{"randPropPoints":2004,"weaponDamageMin":5081,"weaponDamageMax":7622,"stats":{"2":1581,"3":1054,"5":633,"6":744,"14":6036},"upgradeStep":1}}}, +{"id":82860,"name":"Gloves of Explosive Pain","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,1164,776,504,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":422,"7":440,"22":2230}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"4":434,"7":452,"22":2254}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"4":468,"7":487,"22":2320},"upgradeStep":1}}}, +{"id":82861,"name":"Incineration Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,1164,776,0,491,0,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":412,"11":452,"22":1133}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":668,"5":423,"11":465,"22":1146}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":720,"5":456,"11":501,"22":1179},"upgradeStep":1}}}, +{"id":82862,"name":"Shoulderguards of Painful Lessons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,1164,696,492,0,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":2057,"otherName":"Darkmaster Gandling"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"6":372,"22":3654}},"463":{"randPropPoints":1270,"stats":{"2":1002,"3":588,"4":418,"6":383,"22":3694}},"471":{"randPropPoints":1369,"stats":{"2":1080,"3":640,"4":454,"6":416,"22":3802},"upgradeStep":1}}}, +{"id":82896,"name":"Spiritguard Shoulders","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,0,215,242,0,0,0,0,0,0,0,0,0,0,2838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"10":215,"11":242,"22":2838},"isBase":true}}}, +{"id":82897,"name":"Spiritguard Breastplate","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[469,0,703,0,0,0,0,0,0,274,0,335,0,0,0,0,0,0,0,0,0,0,3784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"9":274,"11":335,"22":3784},"isBase":true}}}, +{"id":82898,"name":"Spiritguard Gauntlets","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,0,246,209,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"10":246,"11":209,"22":2365},"isBase":true}}}, +{"id":82899,"name":"Spiritguard Legplates","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[469,0,703,0,0,0,0,0,0,305,0,317,0,0,0,0,0,0,0,0,0,0,3311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"0":469,"2":703,"9":305,"11":317,"22":3311},"isBase":true}}}, +{"id":82900,"name":"Spiritguard Bracers","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[261,0,391,0,0,0,0,0,0,0,157,184,0,0,0,0,0,0,0,0,0,0,1656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"0":261,"2":391,"10":157,"11":184,"22":1656},"isBase":true}}}, +{"id":82901,"name":"Spiritguard Boots","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,236,0,226,0,0,0,0,0,0,0,0,0,0,2602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"9":236,"11":226,"22":2602},"isBase":true}}}, +{"id":82902,"name":"Spiritguard Belt","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[348,0,522,0,0,0,0,0,0,0,226,236,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"0":348,"2":522,"10":226,"11":236,"22":2129},"isBase":true}}}, +{"id":82903,"name":"Ghost-Forged Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":2995},"isBase":true}}}, +{"id":82904,"name":"Ghost-Forged Shoulders","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":2764},"isBase":true}}}, +{"id":82905,"name":"Ghost-Forged Breastplate","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":3686},"isBase":true}}}, +{"id":82906,"name":"Ghost-Forged Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":2304},"isBase":true}}}, +{"id":82907,"name":"Ghost-Forged Legplates","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":3225},"isBase":true}}}, +{"id":82908,"name":"Ghost-Forged Bracers","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"22":1613},"isBase":true}}}, +{"id":82909,"name":"Ghost-Forged Boots","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":2534},"isBase":true}}}, +{"id":82910,"name":"Ghost-Forged Belt","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":2073},"isBase":true}}}, +{"id":82911,"name":"Lightsteel Helm","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[0,0,703,469,289,0,0,0,0,0,0,326,0,0,0,0,0,0,0,0,0,0,3075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":289,"11":326,"22":3075},"isBase":true}}}, +{"id":82912,"name":"Lightsteel Shoulders","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[0,0,522,348,209,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":209,"7":246,"22":2838},"isBase":true}}}, +{"id":82913,"name":"Lightsteel Breastplate","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[0,0,703,469,317,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,3784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":317,"11":305,"22":3784},"isBase":true}}}, +{"id":82914,"name":"Lightsteel Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[0,0,522,348,242,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":242,"7":215,"22":2365},"isBase":true}}}, +{"id":82915,"name":"Lightsteel Legplates","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[0,0,703,469,297,0,0,0,0,0,0,322,0,0,0,0,0,0,0,0,0,0,3311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":891,"stats":{"2":703,"3":469,"4":297,"11":322,"22":3311},"isBase":true}}}, +{"id":82916,"name":"Lightsteel Bracers","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[0,0,391,261,157,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"2":391,"3":261,"4":157,"7":184,"22":1656},"isBase":true}}}, +{"id":82917,"name":"Lightsteel Boots","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[0,0,522,348,209,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,2602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":209,"11":246,"22":2602},"isBase":true}}}, +{"id":82918,"name":"Lightsteel Belt","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[0,0,522,348,204,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":662,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":662,"stats":{"2":522,"3":348,"4":204,"7":249,"22":2129},"isBase":true}}}, +{"id":82919,"name":"Masterwork Spiritguard Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[797,0,1195,0,0,0,0,0,0,555,0,492,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"9":555,"11":492,"22":3813},"isBase":true}}}, +{"id":82920,"name":"Masterwork Spiritguard Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,0,423,346,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"10":423,"11":346,"22":3520},"isBase":true}}}, +{"id":82921,"name":"Masterwork Spiritguard Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[797,0,1195,0,0,0,0,0,0,518,0,539,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"9":518,"11":539,"22":4693},"isBase":true}}}, +{"id":82922,"name":"Masterwork Spiritguard Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,0,385,401,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"10":385,"11":401,"22":2933},"isBase":true}}}, +{"id":82923,"name":"Masterwork Spiritguard Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[797,0,1195,0,0,0,0,0,0,555,0,492,0,0,0,0,0,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"9":555,"11":492,"22":4106},"isBase":true}}}, +{"id":82924,"name":"Masterwork Spiritguard Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[444,0,666,0,0,0,0,0,0,0,288,300,0,0,0,0,0,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"10":288,"11":300,"22":2053},"isBase":true}}}, +{"id":82925,"name":"Masterwork Spiritguard Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,406,0,375,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"9":406,"11":375,"22":3226},"isBase":true}}}, +{"id":82926,"name":"Masterwork Spiritguard Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,0,346,423,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"10":346,"11":423,"22":2640},"isBase":true}}}, +{"id":82927,"name":"Ghost-Forged Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":3304},"isBase":true}}}, +{"id":82928,"name":"Ghost-Forged Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":3050},"isBase":true}}}, +{"id":82929,"name":"Ghost-Forged Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":4066},"isBase":true}}}, +{"id":82930,"name":"Ghost-Forged Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":2542},"isBase":true}}}, +{"id":82931,"name":"Ghost-Forged Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":3558},"isBase":true}}}, +{"id":82932,"name":"Ghost-Forged Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"stats":{"22":1779},"isBase":true}}}, +{"id":82933,"name":"Ghost-Forged Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":2796},"isBase":true}}}, +{"id":82934,"name":"Ghost-Forged Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":2287},"isBase":true}}}, +{"id":82935,"name":"Masterwork Lightsteel Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,1195,797,466,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":466,"11":570,"22":3813},"isBase":true}}}, +{"id":82936,"name":"Masterwork Lightsteel Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,888,592,412,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":412,"7":365,"22":3520},"isBase":true}}}, +{"id":82937,"name":"Masterwork Lightsteel Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1195,797,518,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":518,"11":539,"22":4693},"isBase":true}}}, +{"id":82938,"name":"Masterwork Lightsteel Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,888,592,401,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":401,"7":385,"22":2933},"isBase":true}}}, +{"id":82939,"name":"Masterwork Lightsteel Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,1195,797,539,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":539,"11":518,"22":4106},"isBase":true}}}, +{"id":82940,"name":"Masterwork Lightsteel Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,666,444,309,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":309,"7":274,"22":2053},"isBase":true}}}, +{"id":82941,"name":"Masterwork Lightsteel Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,888,592,406,0,0,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":406,"11":375,"22":3226},"isBase":true}}}, +{"id":82942,"name":"Masterwork Lightsteel Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,888,592,365,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":365,"7":412,"22":2640},"isBase":true}}}, +{"id":82943,"name":"Contender's Revenant Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[797,0,1195,0,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"6":466,"11":570,"16":318,"22":3813},"isBase":true}}}, +{"id":82944,"name":"Contender's Revenant Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[592,0,888,0,0,356,0,0,0,0,0,418,0,0,0,0,236,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"5":356,"11":418,"16":236,"22":3520},"isBase":true}}}, +{"id":82945,"name":"Contender's Revenant Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[797,0,1195,0,0,0,562,0,0,0,0,479,0,0,0,0,318,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"6":562,"11":479,"16":318,"22":4693},"isBase":true}}}, +{"id":82946,"name":"Contender's Revenant Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[592,0,888,0,0,418,0,0,0,0,0,356,0,0,0,0,236,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"5":418,"11":356,"16":236,"22":2933},"isBase":true}}}, +{"id":82947,"name":"Contender's Revenant Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[797,0,1195,0,0,0,492,0,0,0,0,555,0,0,0,0,318,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"6":492,"11":555,"16":318,"22":4106},"isBase":true}}}, +{"id":82948,"name":"Contender's Revenant Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[444,0,666,0,0,317,0,0,0,0,0,260,0,0,0,0,177,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"5":317,"11":260,"16":177,"22":2053},"isBase":true}}}, +{"id":82949,"name":"Contender's Revenant Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[592,0,888,0,0,0,418,0,0,0,0,356,0,0,0,0,236,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"6":418,"11":356,"16":236,"22":3226},"isBase":true}}}, +{"id":82950,"name":"Contender's Revenant Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[592,0,888,0,0,401,0,0,0,0,0,385,0,0,0,0,236,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"5":401,"11":385,"16":236,"22":2640},"isBase":true}}}, +{"id":82951,"name":"Contender's Spirit Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,1195,797,539,0,0,0,0,0,0,518,0,0,0,0,318,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":539,"11":518,"16":318,"22":3813},"isBase":true}}}, +{"id":82952,"name":"Contender's Spirit Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,888,592,365,0,0,412,0,0,0,0,0,0,0,0,236,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":365,"7":412,"16":236,"22":3520},"isBase":true}}}, +{"id":82953,"name":"Contender's Spirit Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1195,797,539,0,0,0,0,0,0,518,0,0,0,0,318,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":539,"11":518,"16":318,"22":4693},"isBase":true}}}, +{"id":82954,"name":"Contender's Spirit Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,888,592,356,0,0,418,0,0,0,0,0,0,0,0,236,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":356,"7":418,"16":236,"22":2933},"isBase":true}}}, +{"id":82955,"name":"Contender's Spirit Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,1195,797,539,0,0,0,0,0,0,518,0,0,0,0,318,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":539,"11":518,"16":318,"22":4106},"isBase":true}}}, +{"id":82956,"name":"Contender's Spirit Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,666,444,313,0,0,267,0,0,0,0,0,0,0,0,177,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":313,"7":267,"16":177,"22":2053},"isBase":true}}}, +{"id":82957,"name":"Contender's Spirit Boots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,888,592,365,0,0,0,0,0,0,412,0,0,0,0,236,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":365,"11":412,"16":236,"22":3226},"isBase":true}}}, +{"id":82958,"name":"Contender's Spirit Belt","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,888,592,418,0,0,356,0,0,0,0,0,0,0,0,236,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":418,"7":356,"16":236,"22":2640},"isBase":true}}}, +{"id":82961,"name":"Lightsteel Shield","icon":"inv_shield_pandariatradeskill_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,240,169,0,0,0,0,0,0,144,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":169,"11":144,"22":12302},"isBase":true}}}, +{"id":82962,"name":"Spiritguard Shield","icon":"inv_shield_pandariatradeskill_c_02","type":13,"weaponType":7,"handType":3,"stats":[240,0,360,0,0,0,0,0,0,165,152,0,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"9":165,"10":152,"22":12302},"isBase":true}}}, +{"id":82963,"name":"Forgewire Axe","icon":"inv_axe_1h_pandariatradeskill_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,370,247,167,0,0,0,0,0,0,160,0,0,3296,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":469,"weaponDamageMin":1145,"weaponDamageMax":2127,"weaponSpeed":2.1,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":469,"weaponDamageMin":1145,"weaponDamageMax":2127,"stats":{"2":370,"3":247,"4":167,"11":160,"14":3296},"isBase":true}}}, +{"id":82964,"name":"Ghost-Forged Blade","icon":"inv_sword_1h_pandariatradeskill_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,247,370,0,0,0,185,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":469,"weaponDamageMin":2835,"weaponDamageMax":5266,"weaponSpeed":2.6,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":469,"weaponDamageMin":2835,"weaponDamageMax":5266,"stats":{"1":247,"2":370,"6":185,"11":129},"isBase":true}}}, +{"id":82965,"name":"Phantasmal Hammer","icon":"inv_mace_1h_pandariatradeskill_c_01","type":13,"weaponType":4,"handType":2,"stats":[247,0,370,0,0,0,179,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":469,"weaponDamageMin":2835,"weaponDamageMax":5266,"weaponSpeed":2.6,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":469,"weaponDamageMin":2835,"weaponDamageMax":5266,"stats":{"0":247,"2":370,"6":179,"11":140},"isBase":true}}}, +{"id":82966,"name":"Spiritblade Decimator","icon":"inv_axe2h_pandariatradeskill_c_01","type":13,"weaponType":1,"handType":4,"stats":[575,0,863,0,0,0,411,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6049,"weaponDamageMax":9075,"weaponSpeed":3.6,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"weaponDamageMin":6049,"weaponDamageMax":9075,"stats":{"0":575,"2":863,"6":411,"11":337},"isBase":true}}}, +{"id":82967,"name":"Ghost Shard","icon":"inv_knife_1h_pandariatradeskill_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,247,370,0,0,0,187,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":469,"weaponDamageMin":1963,"weaponDamageMax":3646,"weaponSpeed":1.8,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":469,"weaponDamageMin":1963,"weaponDamageMax":3646,"stats":{"1":247,"2":370,"6":187,"11":125},"isBase":true}}}, +{"id":82968,"name":"Masterwork Lightsteel Shield","icon":"inv_shield_pandariatradeskill_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,873,582,410,0,0,0,0,0,0,350,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293,"22":15628}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"4":354,"11":301,"22":15800}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"4":381,"11":325,"22":16259},"upgradeStep":1}}}, +{"id":82969,"name":"Masterwork Spiritguard Shield","icon":"inv_shield_pandariatradeskill_c_02","type":13,"weaponType":7,"handType":3,"stats":[582,0,873,0,0,0,0,0,0,399,369,0,0,0,0,0,0,0,0,0,0,0,16719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"10":309,"22":15628}},"463":{"randPropPoints":953,"stats":{"0":501,"2":752,"9":344,"10":318,"22":15800}},"471":{"randPropPoints":1027,"stats":{"0":540,"2":810,"9":371,"10":342,"22":16259},"upgradeStep":1}}}, +{"id":82970,"name":"Masterwork Forgewire Axe","icon":"inv_axe_1h_pandariatradeskill_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,671,448,307,0,0,0,0,0,0,284,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":2078,"weaponDamageMax":3861,"weaponSpeed":2.1,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1741,"weaponDamageMax":3234,"stats":{"2":562,"3":375,"4":257,"11":238,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1790,"weaponDamageMax":3326,"stats":{"2":578,"3":385,"4":265,"11":244,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1929,"weaponDamageMax":3583,"stats":{"2":623,"3":415,"4":285,"11":263,"14":5552},"upgradeStep":1}}}, +{"id":82971,"name":"Masterwork Ghost-Forged Blade","icon":"inv_sword_1h_pandariatradeskill_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,448,671,0,0,0,303,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":254,"11":244}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"6":261,"11":251}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"6":281,"11":270},"upgradeStep":1}}}, +{"id":82972,"name":"Masterwork Phantasmal Hammer","icon":"inv_mace_1h_pandariatradeskill_c_01","type":13,"weaponType":4,"handType":2,"stats":[448,0,671,0,0,0,328,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":275,"11":207}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"6":283,"11":213}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"6":305,"11":230},"upgradeStep":1}}}, +{"id":82973,"name":"Masterwork Spiritblade Decimator","icon":"inv_axe2h_pandariatradeskill_c_01","type":13,"weaponType":1,"handType":4,"stats":[1044,0,1566,0,0,0,793,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":665,"11":443}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"6":683,"11":456}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"6":737,"11":491},"upgradeStep":1}}}, +{"id":82974,"name":"Masterwork Ghost Shard","icon":"inv_knife_1h_pandariatradeskill_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,448,671,0,0,0,328,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":275,"11":207}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"1":385,"2":578,"6":283,"11":213}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"1":415,"2":623,"6":305,"11":230},"upgradeStep":1}}}, +{"id":82975,"name":"Ghost Reaver's Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[934,0,1641,0,0,0,551,0,0,0,0,740,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":408,"11":592,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1523,"6":500,"11":687,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1581,"6":525,"11":713,"22":5230},"upgradeStep":1}}}, +{"id":82976,"name":"Ghost Reaver's Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[733,0,1219,0,0,0,435,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":332,"11":446,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1131,"6":398,"11":518,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1175,"6":416,"11":538,"22":3269},"upgradeStep":1}}}, +{"id":82977,"name":"Living Steel Breastplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1641,934,591,0,0,0,0,0,0,693,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":440,"11":554,"22":4872}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":537,"11":643,"22":5159}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":563,"11":668,"22":5230},"upgradeStep":1}}}, +{"id":82978,"name":"Living Steel Gauntlets","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1219,733,573,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":458,"11":310,"22":3045}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":532,"11":373,"22":3224}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":553,"11":391,"22":3269},"upgradeStep":1}}}, +{"id":82979,"name":"Breastplate of Ancient Steel","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[934,0,1641,0,0,0,0,0,0,740,0,551,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":592,"11":408,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1523,"9":687,"11":500,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1581,"9":713,"11":525,"22":5230},"upgradeStep":1}}}, +{"id":82980,"name":"Gauntlets of Ancient Steel","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[733,0,1219,0,0,0,0,0,0,0,528,470,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"10":422,"11":360,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1131,"10":490,"11":430,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1175,"10":509,"11":450,"22":3269},"upgradeStep":1}}}, +{"id":82984,"name":"Jade Raccoon","icon":"inv_jewelcrafting_emeraldhare","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"11":406},"isBase":true}}}, +{"id":83158,"name":"Wasteland Satin Hood","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,808,539,341,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":341,"7":370,"22":1323},"isBase":true}}}, +{"id":83159,"name":"Wasteland Hide Helm","icon":"inv_helmet_leather_panda_b_01light","type":1,"armorType":2,"stats":[0,0,808,539,0,0,400,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"6":400,"7":289,"22":1686},"isBase":true}}}, +{"id":83160,"name":"Wasteland Ringmail Helm","icon":"inv_helmet_mail_panda_b_01white","type":1,"armorType":3,"stats":[0,0,808,539,0,0,0,385,0,0,0,315,0,0,0,0,0,0,0,0,0,0,2350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"7":385,"11":315,"22":2350},"isBase":true}}}, +{"id":83161,"name":"Wasteland Burnished Headcover","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,808,539,324,0,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":324,"7":380,"22":3212},"isBase":true}}}, +{"id":83162,"name":"Wasteland Silk Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,808,539,0,390,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"5":390,"6":306,"22":1323},"isBase":true}}}, +{"id":83163,"name":"Wasteland Leather Helm","icon":"inv_helmet_leather_panda_b_01light","type":1,"armorType":2,"stats":[0,539,808,0,0,0,0,289,400,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"7":289,"8":400,"22":1686},"isBase":true}}}, +{"id":83164,"name":"Wasteland Chain Helm","icon":"inv_helmet_mail_panda_b_01white","type":1,"armorType":3,"stats":[0,539,808,0,0,0,0,375,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"7":375,"11":332,"22":2350},"isBase":true}}}, +{"id":83165,"name":"Wasteland Heavy Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[539,0,808,0,0,0,0,0,0,350,364,0,0,0,0,0,0,0,0,0,0,0,3212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"9":350,"10":364,"22":3212},"isBase":true}}}, +{"id":83166,"name":"Wasteland Armored Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[539,0,808,0,0,390,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"5":390,"7":306,"22":3212},"isBase":true}}}, +{"id":83167,"name":"Wasteland Satin Mantle","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,600,400,0,0,282,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"6":282,"7":241,"22":1221},"isBase":true}}}, +{"id":83168,"name":"Wasteland Hide Spaulders","icon":"inv_shoulder_leather_panda_b_01light","type":3,"armorType":2,"stats":[0,0,600,400,279,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":279,"11":247,"22":1556},"isBase":true}}}, +{"id":83169,"name":"Wasteland Ringmail Spaulders","icon":"inv_shoulder_mail_panda_b_01white","type":3,"armorType":3,"stats":[0,0,600,400,282,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":282,"7":241,"22":2169},"isBase":true}}}, +{"id":83170,"name":"Wasteland Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[0,0,600,400,241,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":241,"6":282,"22":2965},"isBase":true}}}, +{"id":83171,"name":"Wasteland Silk Amice","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,600,400,0,0,0,247,0,0,0,279,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"7":247,"11":279,"22":1221},"isBase":true}}}, +{"id":83172,"name":"Wasteland Leather Spaulders","icon":"inv_shoulder_leather_panda_b_01light","type":3,"armorType":2,"stats":[0,400,600,0,0,0,0,215,297,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"7":215,"8":297,"22":1556},"isBase":true}}}, +{"id":83173,"name":"Wasteland Chain Spaulders","icon":"inv_shoulder_mail_panda_b_01white","type":3,"armorType":3,"stats":[0,400,600,0,0,301,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"5":301,"6":209,"22":2169},"isBase":true}}}, +{"id":83174,"name":"Wasteland Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[400,0,600,0,0,0,0,0,254,275,0,0,0,0,0,0,0,0,0,0,0,0,2965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"8":254,"9":275,"22":2965},"isBase":true}}}, +{"id":83175,"name":"Wasteland Armored Shoulders","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[400,0,600,0,0,0,0,228,0,0,0,290,0,0,0,0,0,0,0,0,0,0,2965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"7":228,"11":290,"22":2965},"isBase":true}}}, +{"id":83176,"name":"Wasteland Satin Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,808,539,395,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,1628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":395,"11":298,"22":1628},"isBase":true}}}, +{"id":83177,"name":"Wasteland Hide Tunic","icon":"inv_chest_leather_panda_b_01light","type":5,"armorType":2,"stats":[0,0,808,539,395,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":395,"6":298,"22":2075},"isBase":true}}}, +{"id":83178,"name":"Wasteland Ringmail Armor","icon":"inv_chest_mail_panda_b_01white","type":5,"armorType":3,"stats":[0,0,808,539,0,0,0,375,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"7":375,"11":332,"22":2892},"isBase":true}}}, +{"id":83179,"name":"Wasteland Burnished Chestguard","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,808,539,0,0,0,380,0,0,0,324,0,0,0,0,0,0,0,0,0,0,3954,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"7":380,"11":324,"22":3954},"isBase":true}}}, +{"id":83180,"name":"Wasteland Silk Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,808,539,0,370,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"5":370,"6":341,"22":1628},"isBase":true}}}, +{"id":83181,"name":"Wasteland Leather Tunic","icon":"inv_chest_leather_panda_b_01light","type":5,"armorType":2,"stats":[0,539,808,0,0,395,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"5":395,"6":298,"22":2075},"isBase":true}}}, +{"id":83182,"name":"Wasteland Chain Armor","icon":"inv_chest_mail_panda_b_01white","type":5,"armorType":3,"stats":[0,539,808,0,0,0,289,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"6":289,"8":400,"22":2892},"isBase":true}}}, +{"id":83183,"name":"Wasteland Heavy Chestpiece","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[539,0,808,0,0,400,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,3954,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"5":400,"9":289,"22":3954},"isBase":true}}}, +{"id":83184,"name":"Wasteland Armored Chestpiece","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[539,0,808,0,0,0,0,350,364,0,0,0,0,0,0,0,0,0,0,0,0,0,3954,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"7":350,"8":364,"22":3954},"isBase":true}}}, +{"id":83185,"name":"Wasteland Satin Leggings","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,808,539,315,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":315,"7":385,"22":1424},"isBase":true}}}, +{"id":83186,"name":"Wasteland Hide Legguards","icon":"inv_pants_leather_panda_b_01light","type":9,"armorType":2,"stats":[0,0,808,539,0,0,0,332,0,0,0,375,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"7":332,"11":375,"22":1816},"isBase":true}}}, +{"id":83187,"name":"Wasteland Ringmail Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,808,539,385,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":385,"7":315,"22":2530},"isBase":true}}}, +{"id":83188,"name":"Wasteland Burnished Legplates","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[0,0,808,539,341,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"4":341,"6":370,"22":3459},"isBase":true}}}, +{"id":83189,"name":"Wasteland Silk Trousers","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,808,539,0,359,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"2":808,"3":539,"5":359,"11":359,"22":1424},"isBase":true}}}, +{"id":83190,"name":"Wasteland Leather Legguards","icon":"inv_pants_leather_panda_b_01light","type":9,"armorType":2,"stats":[0,539,808,0,0,0,395,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"6":395,"11":298,"22":1816},"isBase":true}}}, +{"id":83191,"name":"Wasteland Chain Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,539,808,0,0,395,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"1":539,"2":808,"5":395,"6":298,"22":2530},"isBase":true}}}, +{"id":83192,"name":"Wasteland Heavy Legguards","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[539,0,808,0,0,0,0,0,0,281,0,405,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"9":281,"11":405,"22":3459},"isBase":true}}}, +{"id":83193,"name":"Wasteland Armored Legguards","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[539,0,808,0,0,306,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"stats":{"0":539,"2":808,"5":306,"6":390,"22":3459},"isBase":true}}}, +{"id":83194,"name":"Wasteland Satin Treads","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,600,400,0,0,286,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,1119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"6":286,"11":234,"22":1119},"isBase":true}}}, +{"id":83195,"name":"Wasteland Hide Footguards","icon":"inv_boots_leather_panda_b_01light","type":10,"armorType":2,"stats":[0,0,600,400,271,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":271,"7":260,"22":1427},"isBase":true}}}, +{"id":83196,"name":"Wasteland Ringmail Sabatons","icon":"inv_boots_mail_panda_b_01white","type":10,"armorType":3,"stats":[0,0,600,400,282,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":282,"6":241,"22":1988},"isBase":true}}}, +{"id":83197,"name":"Wasteland Burnished Greaves","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,600,400,290,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":290,"7":228,"22":2718},"isBase":true}}}, +{"id":83198,"name":"Wasteland Silk Treads","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,600,400,0,275,0,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"5":275,"7":254,"22":1119},"isBase":true}}}, +{"id":83199,"name":"Wasteland Leather Boots","icon":"inv_boots_leather_panda_b_01light","type":10,"armorType":2,"stats":[0,400,600,0,0,0,260,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"6":260,"7":271,"22":1427},"isBase":true}}}, +{"id":83200,"name":"Wasteland Chain Sabatons","icon":"inv_boots_mail_panda_b_01white","type":10,"armorType":3,"stats":[0,400,600,0,0,0,297,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"6":297,"7":215,"22":1988},"isBase":true}}}, +{"id":83201,"name":"Wasteland Heavy Warboots","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[400,0,600,0,0,297,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,2718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"5":297,"10":215,"22":2718},"isBase":true}}}, +{"id":83202,"name":"Wasteland Armored Warboots","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[400,0,600,0,0,0,0,234,0,0,0,286,0,0,0,0,0,0,0,0,0,0,2718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"7":234,"11":286,"22":2718},"isBase":true}}}, +{"id":83203,"name":"Wasteland Satin Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,600,400,294,0,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":294,"7":221,"22":916},"isBase":true}}}, +{"id":83204,"name":"Wasteland Hide Belt","icon":"inv_belt_leather_panda_b_01light","type":8,"armorType":2,"stats":[0,0,600,400,279,0,0,247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":279,"7":247,"22":1167},"isBase":true}}}, +{"id":83205,"name":"Wasteland Ringmail Waistguard","icon":"inv_belt_mail_panda_b_01white","type":8,"armorType":3,"stats":[0,0,600,400,260,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":260,"6":271,"22":1627},"isBase":true}}}, +{"id":83206,"name":"Wasteland Burnished Clasp","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[0,0,600,400,254,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":254,"7":275,"22":2224},"isBase":true}}}, +{"id":83207,"name":"Wasteland Silk Cord","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,600,400,0,0,247,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"6":247,"11":279,"22":916},"isBase":true}}}, +{"id":83208,"name":"Wasteland Leather Belt","icon":"inv_belt_leather_panda_b_01light","type":8,"armorType":2,"stats":[0,400,600,0,0,301,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"5":301,"11":209,"22":1167},"isBase":true}}}, +{"id":83209,"name":"Wasteland Chain Links","icon":"inv_belt_mail_panda_b_01white","type":8,"armorType":3,"stats":[0,400,600,0,0,0,228,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,1627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"6":228,"11":290,"22":1627},"isBase":true}}}, +{"id":83210,"name":"Wasteland Heavy Girdle","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[400,0,600,0,0,0,0,0,0,221,0,294,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"9":221,"11":294,"22":2224},"isBase":true}}}, +{"id":83211,"name":"Wasteland Armored Girdle","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[400,0,600,0,0,0,275,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"6":275,"11":254,"22":2224},"isBase":true}}}, +{"id":83212,"name":"Wasteland Satin Gloves","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,600,400,0,0,271,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"6":271,"11":260,"22":1017},"isBase":true}}}, +{"id":83213,"name":"Wasteland Hide Gloves","icon":"inv_gauntlets_leather_panda_b_01light","type":7,"armorType":2,"stats":[0,0,600,400,301,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":301,"7":209,"22":1297},"isBase":true}}}, +{"id":83214,"name":"Wasteland Ringmail Gauntlets","icon":"inv_gauntlets_mail_panda_b_01white","type":7,"armorType":3,"stats":[0,0,600,400,282,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":282,"6":241,"22":1807},"isBase":true}}}, +{"id":83215,"name":"Wasteland Burnished Gloves","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,600,400,279,0,0,0,0,0,0,247,0,0,0,0,0,0,0,0,0,0,2471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"4":279,"11":247,"22":2471},"isBase":true}}}, +{"id":83216,"name":"Wasteland Silk Handguards","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,600,400,0,0,0,260,0,0,0,271,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"2":600,"3":400,"7":260,"11":271,"22":1017},"isBase":true}}}, +{"id":83217,"name":"Wasteland Leather Gloves","icon":"inv_gauntlets_leather_panda_b_01light","type":7,"armorType":2,"stats":[0,400,600,0,0,0,241,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"6":241,"11":282,"22":1297},"isBase":true}}}, +{"id":83218,"name":"Wasteland Chain Gauntlets","icon":"inv_gauntlets_mail_panda_b_01white","type":7,"armorType":3,"stats":[0,400,600,0,0,0,0,215,297,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"1":400,"2":600,"7":215,"8":297,"22":1807},"isBase":true}}}, +{"id":83219,"name":"Wasteland Heavy Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[400,0,600,0,0,0,0,0,0,279,247,0,0,0,0,0,0,0,0,0,0,0,2471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"9":279,"10":247,"22":2471},"isBase":true}}}, +{"id":83220,"name":"Wasteland Armored Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[400,0,600,0,0,0,282,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"0":400,"2":600,"6":282,"7":241,"22":2471},"isBase":true}}}, +{"id":83221,"name":"Wasteland Satin Cuffs","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,450,300,215,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":215,"7":176,"22":712},"isBase":true}}}, +{"id":83222,"name":"Wasteland Hide Bindings","icon":"inv_bracer_leather_panda_b_01light","type":6,"armorType":2,"stats":[0,0,450,300,190,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":190,"11":206,"22":908},"isBase":true}}}, +{"id":83223,"name":"Wasteland Ringmail Armbands","icon":"inv_bracer_mail_panda_b_01white","type":6,"armorType":3,"stats":[0,0,450,300,190,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":190,"7":206,"22":1265},"isBase":true}}}, +{"id":83224,"name":"Wasteland Burnished Bracers","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[0,0,450,300,0,0,185,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"6":185,"7":209,"22":1730},"isBase":true}}}, +{"id":83225,"name":"Wasteland Silk Cuffs","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,450,300,0,0,171,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"6":171,"11":218,"22":712},"isBase":true}}}, +{"id":83226,"name":"Wasteland Leather Armwraps","icon":"inv_bracer_leather_panda_b_01light","type":6,"armorType":2,"stats":[0,300,450,0,0,0,185,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"1":300,"2":450,"6":185,"7":209,"22":908},"isBase":true}}}, +{"id":83227,"name":"Wasteland Chain Wristguards","icon":"inv_bracer_mail_panda_b_01white","type":6,"armorType":3,"stats":[0,300,450,0,0,0,209,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,1265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"1":300,"2":450,"6":209,"11":185,"22":1265},"isBase":true}}}, +{"id":83228,"name":"Wasteland Heavy Armplates","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[300,0,450,0,0,0,0,0,0,0,215,176,0,0,0,0,0,0,0,0,0,0,1730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"10":215,"11":176,"22":1730},"isBase":true}}}, +{"id":83229,"name":"Wasteland Armored Bracers","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[300,0,450,0,0,0,0,195,0,0,0,203,0,0,0,0,0,0,0,0,0,0,1730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"7":195,"11":203,"22":1730},"isBase":true}}}, +{"id":83230,"name":"Wasteland Locket","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,450,300,200,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":200,"6":200},"isBase":true}}}, +{"id":83231,"name":"Wasteland Choker","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,0,450,300,0,0,185,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"6":185,"7":209},"isBase":true}}}, +{"id":83232,"name":"Wasteland Necklace","icon":"inv_jewelry_necklace_67","type":2,"stats":[0,300,450,0,0,0,180,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"1":300,"2":450,"6":180,"7":212},"isBase":true}}}, +{"id":83233,"name":"Wasteland Pendant","icon":"inv_jewelry_necklace_67","type":2,"stats":[300,0,450,0,0,0,0,0,171,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"8":171,"9":218},"isBase":true}}}, +{"id":83234,"name":"Wasteland Amulet","icon":"inv_jewelry_necklace_67","type":2,"stats":[300,0,450,0,0,0,0,223,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"7":223,"11":161},"isBase":true}}}, +{"id":83235,"name":"Wasteland Band","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,450,300,209,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":209,"11":185},"isBase":true}}}, +{"id":83236,"name":"Wasteland Ring","icon":"inv_jewelry_ring_109","type":11,"stats":[0,0,450,300,0,0,0,212,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"7":212,"11":180},"isBase":true}}}, +{"id":83237,"name":"Wasteland Loop","icon":"inv_jewelry_ring_109","type":11,"stats":[0,300,450,0,0,0,203,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"1":300,"2":450,"6":203,"11":195},"isBase":true}}}, +{"id":83238,"name":"Wasteland Signet","icon":"inv_jewelry_ring_109","type":11,"stats":[300,0,450,0,0,0,0,0,0,0,218,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"10":218,"11":171},"isBase":true}}}, +{"id":83239,"name":"Wasteland Seal","icon":"inv_jewelry_ring_109","type":11,"stats":[300,0,450,0,0,0,0,176,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"7":176,"11":215},"isBase":true}}}, +{"id":83245,"name":"Wasteland Relic","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"6":507},"isBase":true}}}, +{"id":83246,"name":"Wasteland Sigil","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"6":507},"isBase":true}}}, +{"id":83247,"name":"Wasteland Emblem","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"7":507},"isBase":true}}}, +{"id":83248,"name":"Wasteland Insignia","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"11":507},"isBase":true}}}, +{"id":83249,"name":"Wasteland Badge","icon":"inv_misc_trinketpanda_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":761,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":761,"stats":{"11":507},"isBase":true}}}, +{"id":83255,"name":"Wasteland Shawl","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,450,300,190,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":190,"7":206,"22":814},"isBase":true}}}, +{"id":83256,"name":"Wasteland Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,450,300,0,0,0,166,0,0,0,220,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"7":166,"11":220,"22":814},"isBase":true}}}, +{"id":83257,"name":"Wasteland Cape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,300,450,0,0,0,180,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"1":300,"2":450,"6":180,"7":212,"22":814},"isBase":true}}}, +{"id":83258,"name":"Wasteland Manteau","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[300,0,450,0,0,0,0,0,0,209,0,185,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"9":209,"11":185,"22":814},"isBase":true}}}, +{"id":83259,"name":"Wasteland Cloak","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[300,0,450,0,0,0,185,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"6":185,"7":209,"22":814},"isBase":true}}}, +{"id":83260,"name":"Wasteland Meditation Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,808,539,359,0,0,359,0,0,0,0,0,0,3084,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":2597,"weaponDamageMax":3897,"weaponSpeed":3.3,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":2597,"weaponDamageMax":3897,"stats":{"2":808,"3":539,"4":359,"7":359,"14":3084},"isBase":true}}}, +{"id":83261,"name":"Wasteland Diviner's Rod","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,808,539,0,0,350,0,0,0,0,364,0,0,3084,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":2597,"weaponDamageMax":3897,"weaponSpeed":3.3,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":2597,"weaponDamageMax":3897,"stats":{"2":808,"3":539,"6":350,"11":364,"14":3084},"isBase":true}}}, +{"id":83262,"name":"Wasteland Combat Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,539,808,0,0,0,332,0,0,0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":5195,"weaponDamageMax":7793,"weaponSpeed":3.3,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":5195,"weaponDamageMax":7793,"stats":{"1":539,"2":808,"6":332,"11":375},"isBase":true}}}, +{"id":83263,"name":"Wasteland Battlemace","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[539,0,808,0,0,0,409,0,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":5667,"weaponDamageMax":8502,"weaponSpeed":3.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":5667,"weaponDamageMax":8502,"stats":{"0":539,"2":808,"6":409,"8":273},"isBase":true}}}, +{"id":83264,"name":"Wasteland Handaxe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[231,0,346,0,0,0,0,135,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"0":231,"2":346,"7":135,"8":165},"isBase":true}}}, +{"id":83265,"name":"Wasteland Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,539,808,0,0,0,0,306,0,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":3995,"weaponDamageMax":7420,"weaponSpeed":2.9,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":3995,"weaponDamageMax":7420,"stats":{"1":539,"2":808,"7":306,"11":390},"isBase":true}}}, +{"id":83266,"name":"Wasteland Saber","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[231,0,346,0,0,0,0,0,117,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"0":231,"2":346,"8":117,"9":175},"isBase":true}}}, +{"id":83267,"name":"Wasteland Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,346,231,135,0,0,165,0,0,0,0,0,0,3085,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":817,"weaponDamageMax":1518,"weaponSpeed":1.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":817,"weaponDamageMax":1518,"stats":{"2":346,"3":231,"4":135,"7":165,"14":3085},"isBase":true}}}, +{"id":83268,"name":"Wasteland Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,231,346,0,0,0,0,128,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":1839,"weaponDamageMax":3416,"weaponSpeed":1.8,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":1839,"weaponDamageMax":3416,"stats":{"1":231,"2":346,"7":128,"11":169},"isBase":true}}}, +{"id":83269,"name":"Wasteland Smasher","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,231,346,0,0,0,156,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"1":231,"2":346,"6":156,"11":150},"isBase":true}}}, +{"id":83270,"name":"Wasteland Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[539,0,808,0,0,0,341,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1024,"weaponDamageMin":5667,"weaponDamageMax":8502,"weaponSpeed":3.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":1024,"weaponDamageMin":5667,"weaponDamageMax":8502,"stats":{"0":539,"2":808,"6":341,"7":370},"isBase":true}}}, +{"id":83271,"name":"Wasteland Mace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[231,0,346,0,0,0,0,0,167,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"0":231,"2":346,"8":167,"11":131},"isBase":true}}}, +{"id":83272,"name":"Wasteland Barrier","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[300,0,450,0,0,0,0,0,152,228,0,0,0,0,0,0,0,0,0,0,0,0,12720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"0":300,"2":450,"8":152,"9":228,"22":12720},"isBase":true}}}, +{"id":83273,"name":"Wasteland Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,450,300,203,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":571,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":571,"stats":{"2":450,"3":300,"4":203,"7":195,"22":12720},"isBase":true}}}, +{"id":83274,"name":"Wasteland Blade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,231,346,0,0,0,154,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":1839,"weaponDamageMax":3416,"weaponSpeed":1.8,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":1839,"weaponDamageMax":3416,"stats":{"1":231,"2":346,"6":154,"11":154},"isBase":true}}}, +{"id":83275,"name":"Wasteland Axe","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,231,346,0,0,0,0,121,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.6,"ilvl":408,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"408":{"randPropPoints":439,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"1":231,"2":346,"7":121,"11":173},"isBase":true}}}, +{"id":83644,"name":"Mistborne Hood","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1109,739,0,0,0,508,0,0,0,468,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"7":508,"11":468,"22":1528},"isBase":true}}}, +{"id":83645,"name":"Mistlurker Helm","icon":"inv_helmet_leather_panda_b_01red","type":1,"armorType":2,"stats":[0,0,1109,739,0,0,549,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"6":549,"7":397,"22":1945},"isBase":true}}}, +{"id":83646,"name":"Earthmover Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,1109,739,0,0,0,529,0,0,0,432,0,0,0,0,0,0,0,0,0,0,2707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"7":529,"11":432,"22":2707},"isBase":true}}}, +{"id":83647,"name":"Goldtalon Headcover","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[0,0,1109,739,0,0,444,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"6":444,"7":522,"22":3697},"isBase":true}}}, +{"id":83648,"name":"Swampwalker Cowl","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1109,739,0,536,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"5":536,"6":421,"22":1528},"isBase":true}}}, +{"id":83649,"name":"Steppebeast Helm","icon":"inv_helmet_leather_panda_b_01red","type":1,"armorType":2,"stats":[0,739,1109,0,0,0,0,421,536,0,0,0,0,0,0,0,0,0,0,0,0,0,1945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"1":739,"2":1109,"7":421,"8":536,"22":1945},"isBase":true}}}, +{"id":83650,"name":"Osul Peak Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,739,1109,0,0,0,0,515,0,0,0,456,0,0,0,0,0,0,0,0,0,0,2707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"1":739,"2":1109,"7":515,"11":456,"22":2707},"isBase":true}}}, +{"id":83651,"name":"Temple Guardian Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[739,0,1109,0,0,0,0,0,0,481,500,0,0,0,0,0,0,0,0,0,0,0,3697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"0":739,"2":1109,"9":481,"10":500,"22":3697},"isBase":true}}}, +{"id":83652,"name":"Palewind Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[739,0,1109,0,0,0,522,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"0":739,"2":1109,"6":522,"7":444,"22":3697},"isBase":true}}}, +{"id":83653,"name":"Mistborne Mantle","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,730,487,0,0,344,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":344,"7":293,"22":1339},"isBase":true}}}, +{"id":83654,"name":"Mistlurker Spaulders","icon":"inv_shoulder_leather_panda_b_01red","type":3,"armorType":2,"stats":[0,0,730,487,0,0,339,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":339,"11":301,"22":1704},"isBase":true}}}, +{"id":83655,"name":"Earthmover Spaulder","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,0,730,487,0,0,344,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":344,"7":293,"22":2371},"isBase":true}}}, +{"id":83656,"name":"Goldtalon Spaulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[0,0,730,487,269,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":269,"6":357,"22":3238},"isBase":true}}}, +{"id":83657,"name":"Swampwalker Amice","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,730,487,0,0,0,301,0,0,0,339,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"7":301,"11":339,"22":1339},"isBase":true}}}, +{"id":83658,"name":"Steppebeast Spaulders","icon":"inv_shoulder_leather_panda_b_01red","type":3,"armorType":2,"stats":[0,487,730,0,0,0,0,262,362,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"7":262,"8":362,"22":1704},"isBase":true}}}, +{"id":83659,"name":"Osul Peak Spaulder","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,487,730,0,0,262,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"5":262,"6":362,"22":2371},"isBase":true}}}, +{"id":83660,"name":"Temple Guardian Shoulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[487,0,730,0,0,0,0,0,330,317,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"8":330,"9":317,"22":3238},"isBase":true}}}, +{"id":83661,"name":"Palewind Shoulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[487,0,730,0,0,0,0,277,0,0,0,353,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"7":277,"11":353,"22":3238},"isBase":true}}}, +{"id":83662,"name":"Mistborne Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1109,739,0,0,542,0,0,0,0,409,0,0,0,0,0,0,0,0,0,0,1881,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"6":542,"11":409,"22":1881},"isBase":true}}}, +{"id":83663,"name":"Mistlurker Tunic","icon":"inv_chest_leather_panda_b_01red","type":5,"armorType":2,"stats":[0,0,1109,739,0,0,409,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"6":409,"11":542,"22":2394},"isBase":true}}}, +{"id":83664,"name":"Earthmover Armor","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,1109,739,0,0,0,515,0,0,0,456,0,0,0,0,0,0,0,0,0,0,3332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"7":515,"11":456,"22":3332},"isBase":true}}}, +{"id":83665,"name":"Goldtalon Chestguard","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[0,0,1109,739,0,0,0,522,0,0,0,444,0,0,0,0,0,0,0,0,0,0,4550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"7":522,"11":444,"22":4550},"isBase":true}}}, +{"id":83666,"name":"Swampwalker Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1109,739,0,529,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1881,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"5":529,"6":432,"22":1881},"isBase":true}}}, +{"id":83667,"name":"Steppebeast Tunic","icon":"inv_chest_leather_panda_b_01red","type":5,"armorType":2,"stats":[0,739,1109,0,0,432,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"1":739,"2":1109,"5":432,"6":529,"22":2394},"isBase":true}}}, +{"id":83668,"name":"Osul Peak Armor","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,739,1109,0,0,0,421,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,3332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"1":739,"2":1109,"6":421,"8":536,"22":3332},"isBase":true}}}, +{"id":83669,"name":"Temple Guardian Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[739,0,1109,0,0,468,0,0,0,508,0,0,0,0,0,0,0,0,0,0,0,0,4550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"0":739,"2":1109,"5":468,"9":508,"22":4550},"isBase":true}}}, +{"id":83670,"name":"Palewind Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[739,0,1109,0,0,0,0,529,432,0,0,0,0,0,0,0,0,0,0,0,0,0,4550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"0":739,"2":1109,"7":529,"8":432,"22":4550},"isBase":true}}}, +{"id":83671,"name":"Mistborne Leggings","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,983,655,404,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":404,"7":456,"22":1562},"isBase":true}}}, +{"id":83672,"name":"Mistlurker Legguards","icon":"inv_pants_leather_panda_b_01red","type":9,"armorType":2,"stats":[0,0,983,655,0,0,0,404,0,0,0,456,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"7":404,"11":456,"22":1988},"isBase":true}}}, +{"id":83673,"name":"Earthmover Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,983,655,0,0,469,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":469,"7":383,"22":2766},"isBase":true}}}, +{"id":83674,"name":"Goldtalon Legplates","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[0,0,983,655,362,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":362,"6":481,"22":3777},"isBase":true}}}, +{"id":83675,"name":"Swampwalker Trousers","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,983,655,0,462,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"5":462,"11":394,"22":1562},"isBase":true}}}, +{"id":83676,"name":"Steppebeast Legguards","icon":"inv_pants_leather_panda_b_01red","type":9,"armorType":2,"stats":[0,655,983,0,0,0,481,0,0,0,0,362,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"6":481,"11":362,"22":1988},"isBase":true}}}, +{"id":83677,"name":"Osul Peak Kilt","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,655,983,0,0,342,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":342,"6":492,"22":2766},"isBase":true}}}, +{"id":83678,"name":"Temple Guardian Legguards","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[655,0,983,0,0,0,0,0,0,342,492,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"9":342,"10":492,"22":3777},"isBase":true}}}, +{"id":83679,"name":"Palewind Legguards","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[655,0,983,0,0,415,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"5":415,"6":450,"22":3777},"isBase":true}}}, +{"id":83680,"name":"Mistborne Treads","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,730,487,0,0,348,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,1227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":348,"11":285,"22":1227},"isBase":true}}}, +{"id":83681,"name":"Mistlurker Footguards","icon":"inv_boots_leather_panda_b_01red","type":10,"armorType":2,"stats":[0,0,730,487,334,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":334,"7":309,"22":1562},"isBase":true}}}, +{"id":83682,"name":"Earthmover Sabatons","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,0,730,487,357,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":357,"6":269,"22":2173},"isBase":true}}}, +{"id":83683,"name":"Goldtalon Greaves","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[0,0,730,487,0,0,0,277,0,0,0,353,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"7":277,"11":353,"22":2968},"isBase":true}}}, +{"id":83684,"name":"Swampwalker Treads","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,730,487,0,348,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"5":348,"7":285,"22":1227},"isBase":true}}}, +{"id":83685,"name":"Steppebeast Boots","icon":"inv_boots_leather_panda_b_01red","type":10,"armorType":2,"stats":[0,487,730,0,0,0,317,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"6":317,"7":330,"22":1562},"isBase":true}}}, +{"id":83686,"name":"Osul Peak Sabatons","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,487,730,0,0,0,0,262,0,0,0,362,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"7":262,"11":362,"22":2173},"isBase":true}}}, +{"id":83687,"name":"Temple Guardian Warboots","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[487,0,730,0,0,0,0,0,0,0,262,362,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"10":262,"11":362,"22":2968},"isBase":true}}}, +{"id":83688,"name":"Palewind Warboots","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[487,0,730,0,0,0,0,285,0,0,0,348,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"7":285,"11":348,"22":2968},"isBase":true}}}, +{"id":83689,"name":"Mistborne Cord","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,730,487,0,0,330,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":330,"11":317,"22":1004},"isBase":true}}}, +{"id":83690,"name":"Mistlurker Belt","icon":"inv_belt_leather_panda_b_01red","type":8,"armorType":2,"stats":[0,0,730,487,0,0,366,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":366,"7":254,"22":1278},"isBase":true}}}, +{"id":83691,"name":"Earthmover Waistguard","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,0,730,487,0,0,293,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":293,"11":344,"22":1778},"isBase":true}}}, +{"id":83692,"name":"Goldtalon Clasp","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[0,0,730,487,0,0,339,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":339,"11":301,"22":2428},"isBase":true}}}, +{"id":83693,"name":"Swampwalker Cord","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,730,487,0,0,0,317,0,0,0,330,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"7":317,"11":330,"22":1004},"isBase":true}}}, +{"id":83694,"name":"Steppebeast Belt","icon":"inv_belt_leather_panda_b_01red","type":8,"armorType":2,"stats":[0,487,730,0,0,0,293,0,0,0,0,344,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"6":293,"11":344,"22":1278},"isBase":true}}}, +{"id":83695,"name":"Osul Peak Belt","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,487,730,0,0,0,0,262,362,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"7":262,"8":362,"22":1778},"isBase":true}}}, +{"id":83696,"name":"Temple Guardian Girdle","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[487,0,730,0,0,0,0,0,0,339,0,301,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"9":339,"11":301,"22":2428},"isBase":true}}}, +{"id":83697,"name":"Palewind Girdle","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[487,0,730,0,0,0,344,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"6":344,"7":293,"22":2428},"isBase":true}}}, +{"id":83698,"name":"Mistborne Gloves","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,730,487,0,0,0,269,0,0,0,357,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"7":269,"11":357,"22":1116},"isBase":true}}}, +{"id":83699,"name":"Mistlurker Gloves","icon":"inv_gauntlets_leather_panda_b_01red","type":7,"armorType":2,"stats":[0,0,730,487,0,0,339,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":339,"7":301,"22":1420},"isBase":true}}}, +{"id":83700,"name":"Earthmover Gauntlets","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,0,730,487,0,0,330,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,1976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":330,"11":317,"22":1976},"isBase":true}}}, +{"id":83701,"name":"Goldtalon Gloves","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[0,0,730,487,0,0,0,334,0,0,0,309,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"7":334,"11":309,"22":2698},"isBase":true}}}, +{"id":83702,"name":"Swampwalker Handguards","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,730,487,0,0,301,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":301,"11":339,"22":1116},"isBase":true}}}, +{"id":83703,"name":"Steppebeast Gloves","icon":"inv_gauntlets_leather_panda_b_01red","type":7,"armorType":2,"stats":[0,487,730,0,0,277,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"5":277,"11":353,"22":1420},"isBase":true}}}, +{"id":83704,"name":"Osul Peak Gauntlets","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,487,730,0,0,0,277,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,1976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"6":277,"11":353,"22":1976},"isBase":true}}}, +{"id":83705,"name":"Temple Guardian Gauntlets","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[487,0,730,0,0,0,0,0,0,269,0,357,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"9":269,"11":357,"22":2698},"isBase":true}}}, +{"id":83706,"name":"Palewind Gauntlets","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[487,0,730,0,0,0,334,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"6":334,"11":309,"22":2698},"isBase":true}}}, +{"id":83707,"name":"Mistborne Cuffs","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,547,365,261,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":261,"7":213,"22":781},"isBase":true}}}, +{"id":83708,"name":"Mistlurker Bindings","icon":"inv_bracer_leather_panda_b_01red","type":6,"armorType":2,"stats":[0,0,547,365,261,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":261,"11":213,"22":994},"isBase":true}}}, +{"id":83709,"name":"Earthmover Armbands","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,0,547,365,258,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":258,"7":219,"22":1383},"isBase":true}}}, +{"id":83710,"name":"Goldtalon Bracers","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[0,0,547,365,0,0,225,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"6":225,"7":254,"22":1889},"isBase":true}}}, +{"id":83711,"name":"Swampwalker Cuffs","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,547,365,0,0,208,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"6":208,"11":264,"22":781},"isBase":true}}}, +{"id":83712,"name":"Steppebeast Armwraps","icon":"inv_bracer_leather_panda_b_01red","type":6,"armorType":2,"stats":[0,365,547,0,0,0,225,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":225,"7":254,"22":994},"isBase":true}}}, +{"id":83713,"name":"Osul Peak Wristwraps","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,365,547,0,0,0,254,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":254,"11":225,"22":1383},"isBase":true}}}, +{"id":83714,"name":"Temple Guardian Armplates","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[365,0,547,0,0,0,0,0,0,0,261,213,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"10":261,"11":213,"22":1889},"isBase":true}}}, +{"id":83715,"name":"Palewind Bracers","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[365,0,547,0,0,0,0,237,0,0,0,247,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"7":237,"11":247,"22":1889},"isBase":true}}}, +{"id":83716,"name":"Sik'thik Locket","icon":"inv_jewelry_necklace_75","type":2,"stats":[0,0,547,365,243,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":243,"6":243},"isBase":true}}}, +{"id":83717,"name":"Oakhide Choker","icon":"inv_jewelry_necklace_61","type":2,"stats":[0,0,547,365,0,0,0,254,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"7":254,"11":225},"isBase":true}}}, +{"id":83718,"name":"Rensai's Necklace","icon":"inv_jewelry_necklace_65","type":2,"stats":[0,365,547,0,0,0,219,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":219,"7":258},"isBase":true}}}, +{"id":83719,"name":"Crossroads Pendant","icon":"inv_jewelry_necklace_64","type":2,"stats":[365,0,547,0,0,0,0,0,185,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"8":185,"9":277},"isBase":true}}}, +{"id":83720,"name":"Watchpost Amulet","icon":"inv_jewelry_necklace_71","type":2,"stats":[365,0,547,0,0,0,0,271,0,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"7":271,"11":196},"isBase":true}}}, +{"id":83721,"name":"Bloodletter Band","icon":"inv_jewelry_ring_117","type":11,"stats":[0,0,547,365,254,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":254,"11":225},"isBase":true}}}, +{"id":83722,"name":"Dusklight Band","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,547,365,0,0,0,258,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"7":258,"11":219},"isBase":true}}}, +{"id":83723,"name":"Lao-Chin's Ring","icon":"inv_jewelry_ring_126","type":11,"stats":[0,365,547,0,0,0,247,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":247,"11":237},"isBase":true}}}, +{"id":83724,"name":"Kor'thik Seal","icon":"inv_jewelry_ring_123","type":11,"stats":[365,0,547,0,0,0,0,0,0,0,264,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"10":264,"11":208},"isBase":true}}}, +{"id":83725,"name":"Fleshrender Ring","icon":"inv_jewelry_ring_110","type":11,"stats":[365,0,547,0,0,0,0,213,0,0,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"7":213,"11":261},"isBase":true}}}, +{"id":83726,"name":"Gao-Ran Ring","icon":"inv_jewelry_ring_124","type":11,"stats":[0,0,618,412,0,0,299,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"2":618,"3":412,"6":299,"7":235},"isBase":true}}}, +{"id":83727,"name":"Band of Terror","icon":"inv_jewelry_ring_125","type":11,"stats":[0,0,618,412,0,0,241,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"2":618,"3":412,"6":241,"11":295},"isBase":true}}}, +{"id":83728,"name":"Seal of Taran Zhu","icon":"inv_jewelry_ring_114","type":11,"stats":[0,412,618,0,0,287,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"1":412,"2":618,"5":287,"6":254},"isBase":true}}}, +{"id":83729,"name":"Ring of Norvakess","icon":"inv_jewelry_ring_108","type":11,"stats":[412,0,618,0,0,0,0,0,0,279,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"0":412,"2":618,"9":279,"11":268},"isBase":true}}}, +{"id":83730,"name":"Battlefront Band","icon":"inv_jewelry_ring_114","type":11,"stats":[412,0,618,0,0,0,0,0,228,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"0":412,"2":618,"8":228,"11":302},"isBase":true}}}, +{"id":83731,"name":"Mark of the Catacombs","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"6":617},"isBase":true}}}, +{"id":83732,"name":"Sigil of the Catacombs","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"6":617},"isBase":true}}}, +{"id":83733,"name":"Emblem of the Catacombs","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"7":617},"isBase":true}}}, +{"id":83734,"name":"Medallion of the Catacombs","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"11":617},"isBase":true}}}, +{"id":83735,"name":"Symbol of the Catacombs","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"11":617},"isBase":true}}}, +{"id":83736,"name":"Sigil of Compassion","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"11":617},"isBase":true}}}, +{"id":83737,"name":"Sigil of Fidelity","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"7":617},"isBase":true}}}, +{"id":83738,"name":"Sigil of Grace","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"11":617},"isBase":true}}}, +{"id":83739,"name":"Sigil of Patience","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"10":617},"isBase":true}}}, +{"id":83740,"name":"Sigil of Devotion","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"6":617},"isBase":true}}}, +{"id":83741,"name":"Cloak of the Hollow","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,547,365,231,0,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":231,"7":251,"22":892},"isBase":true}}}, +{"id":83742,"name":"Cloak of Seething Hatred","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[0,0,547,365,0,0,0,202,0,0,0,268,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"7":202,"11":268,"22":892},"isBase":true}}}, +{"id":83743,"name":"Scorpion Drape","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,365,547,0,0,0,219,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":219,"7":258,"22":892},"isBase":true}}}, +{"id":83744,"name":"Fleshripper Cape","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[365,0,547,0,0,0,0,0,0,254,0,225,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"9":254,"11":225,"22":892},"isBase":true}}}, +{"id":83745,"name":"Dusklight Drape","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[365,0,547,0,0,0,225,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"6":225,"7":254,"22":892},"isBase":true}}}, +{"id":83746,"name":"Torch of Noon","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,983,655,437,0,0,437,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":3159,"weaponDamageMax":4739,"weaponSpeed":3.3,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":3159,"weaponDamageMax":4739,"stats":{"2":983,"3":655,"4":437,"7":437,"14":3753},"isBase":true}}}, +{"id":83747,"name":"Torch of Dawn","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,983,655,0,0,426,0,0,0,0,443,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":3159,"weaponDamageMax":4739,"weaponSpeed":3.3,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":3159,"weaponDamageMax":4739,"stats":{"2":983,"3":655,"6":426,"11":443,"14":3753},"isBase":true}}}, +{"id":83748,"name":"Torch of Dusk","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,655,983,0,0,0,404,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":6318,"weaponDamageMax":9478,"weaponSpeed":3.3,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6318,"weaponDamageMax":9478,"stats":{"1":655,"2":983,"6":404,"11":456},"isBase":true}}}, +{"id":83749,"name":"Hatred's Vise","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[655,0,983,0,0,498,0,0,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":6892,"weaponDamageMax":10339,"weaponSpeed":3.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6892,"weaponDamageMax":10339,"stats":{"0":655,"2":983,"5":498,"8":332},"isBase":true}}}, +{"id":83750,"name":"Sha-Blighted Blade","icon":"inv_sword_1h_pandariaquest_b_04","type":13,"weaponType":9,"handType":2,"stats":[281,0,421,0,0,206,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"stats":{"0":281,"2":421,"5":206,"8":155},"isBase":true}}}, +{"id":83751,"name":"Shado-Pan Ranger's Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,655,983,0,0,0,0,373,0,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":6940,"weaponDamageMax":6941,"weaponSpeed":2.9,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6940,"weaponDamageMax":6941,"stats":{"1":655,"2":983,"7":373,"11":475},"isBase":true}}}, +{"id":83752,"name":"Hatred's Bite","icon":"inv_sword_1h_pandariaquest_b_04","type":13,"weaponType":9,"handType":2,"stats":[281,0,421,0,0,213,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"stats":{"0":281,"2":421,"5":213,"8":142},"isBase":true}}}, +{"id":83753,"name":"Dividing Edge","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,421,281,164,0,0,201,0,0,0,0,0,0,3753,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":994,"weaponDamageMax":1846,"weaponSpeed":1.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":994,"weaponDamageMax":1846,"stats":{"2":421,"3":281,"4":164,"7":201,"14":3753},"isBase":true}}}, +{"id":83754,"name":"Shado-Pan Ranger's Blade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,281,421,0,0,0,0,155,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"stats":{"1":281,"2":421,"7":155,"11":206},"isBase":true}}}, +{"id":83755,"name":"Bearheart's Club","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,281,421,0,0,0,160,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"stats":{"1":281,"2":421,"6":160,"7":203},"isBase":true}}}, +{"id":83756,"name":"Sumprush Mace","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[655,0,983,0,0,0,415,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"weaponDamageMin":6892,"weaponDamageMax":10339,"weaponSpeed":3.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6892,"weaponDamageMax":10339,"stats":{"0":655,"2":983,"6":415,"7":450},"isBase":true}}}, +{"id":83757,"name":"Halcyon Death","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[281,0,421,0,0,206,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"stats":{"0":281,"2":421,"5":206,"8":155},"isBase":true}}}, +{"id":83758,"name":"Shield of Orbiss","icon":"inv_shield_pandariaquest_b_01","type":13,"weaponType":7,"handType":3,"stats":[365,0,547,0,0,277,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,13847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"5":277,"8":185,"22":13847},"isBase":true}}}, +{"id":83759,"name":"Shield of the Lurking Mist","icon":"inv_shield_pandariaquest_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,547,365,247,0,0,0,0,0,0,237,0,0,0,0,0,0,0,0,0,0,13847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":247,"11":237,"22":13847},"isBase":true}}}, +{"id":83760,"name":"Contorted Blade","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,281,421,0,0,0,187,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"stats":{"1":281,"2":421,"6":187,"11":187},"isBase":true}}}, +{"id":83761,"name":"Mist-Shaman's Barbs","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,281,421,0,0,0,0,147,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"stats":{"1":281,"2":421,"7":147,"11":211},"isBase":true}}}, +{"id":83793,"name":"Ornate Band","icon":"inv_jewelry_ring_125","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"isBase":true}}}, +{"id":83794,"name":"Shadowfire Necklace","icon":"inv_jewelry_necklace_109","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"isBase":true}}}, +{"id":83796,"name":"Heart of the Earth","icon":"inv_jewelry_ring_147","type":11,"stats":[444,0,666,0,0,0,0,0,0,260,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"9":260,"11":317},"isBase":true}}}, +{"id":83798,"name":"Roguestone Shadowband","icon":"inv_misc_epicring_b2","type":11,"stats":[0,444,666,0,0,305,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"5":305,"6":281},"isBase":true}}}, +{"id":83799,"name":"Lord's Signet","icon":"inv_jewelry_ring_149","type":11,"stats":[444,0,666,0,0,317,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"5":317,"6":260},"isBase":true}}}, +{"id":83800,"name":"Lionsfall Ring","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,666,444,0,281,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"5":281,"6":305},"isBase":true}}}, +{"id":83801,"name":"Band of Blood","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,666,444,274,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":274,"7":309},"isBase":true}}}, +{"id":83802,"name":"Reflection of the Sea","icon":"inv_jewelry_necklace_106","type":2,"stats":[444,0,666,0,0,0,0,0,281,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"8":281,"9":305},"isBase":true}}}, +{"id":83803,"name":"Golembreaker Amulet","icon":"inv_jewelry_necklace_70","type":2,"stats":[0,444,666,0,0,305,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"5":305,"11":281},"isBase":true}}}, +{"id":83804,"name":"Widow Chain","icon":"inv_jewelry_necklace_63","type":2,"stats":[444,0,666,0,0,0,260,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"6":260,"11":317},"isBase":true}}}, +{"id":83805,"name":"Skymage Circle","icon":"inv_jewelry_necklace_110","type":2,"stats":[0,0,666,444,0,0,0,281,0,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"7":281,"11":305},"isBase":true}}}, +{"id":83806,"name":"Tiger Opal Pendant","icon":"inv_jewelry_necklace_108","type":2,"stats":[0,0,666,444,309,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":309,"11":274},"isBase":true}}}, +{"id":83983,"name":"Motherseed Hood","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1058,706,0,0,358,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"6":358,"11":536,"22":1498},"isBase":true}}}, +{"id":83984,"name":"Sapfly Helm","icon":"inv_helmet_leather_panda_b_01dark","type":1,"armorType":2,"stats":[0,0,1058,706,0,0,0,368,0,0,0,530,0,0,0,0,0,0,0,0,0,0,1907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":368,"11":530,"22":1907},"isBase":true}}}, +{"id":83985,"name":"Withered Wood Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,1058,706,0,0,0,424,0,0,0,498,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":424,"11":498,"22":2654},"isBase":true}}}, +{"id":83986,"name":"Lucidity Headcover","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[0,0,1058,706,0,0,0,524,0,0,0,379,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":524,"11":379,"22":3624},"isBase":true}}}, +{"id":83987,"name":"Dreadspinner Cowl","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1058,706,0,0,0,379,0,0,0,524,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":379,"11":524,"22":1498},"isBase":true}}}, +{"id":83988,"name":"Ghost Fox Helm","icon":"inv_helmet_leather_panda_b_01dark","type":1,"armorType":2,"stats":[0,706,1058,0,0,0,390,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"6":390,"7":518,"22":1907},"isBase":true}}}, +{"id":83989,"name":"Wind-Reaver Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,706,1058,0,0,0,0,0,484,0,0,447,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"8":484,"11":447,"22":2654},"isBase":true}}}, +{"id":83990,"name":"Bladesworn Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[706,0,1058,0,0,0,0,0,0,0,491,436,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"10":491,"11":436,"22":3624},"isBase":true}}}, +{"id":83991,"name":"Coldbite Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[706,0,1058,0,0,0,0,390,0,0,0,518,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"7":390,"11":518,"22":3624},"isBase":true}}}, +{"id":83992,"name":"Motherseed Mantle","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,888,592,0,0,328,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":328,"7":434,"22":1455},"isBase":true}}}, +{"id":83993,"name":"Sapfly Spaulders","icon":"inv_shoulder_leather_panda_b_01dark","type":3,"armorType":2,"stats":[0,0,888,592,0,0,0,365,0,0,0,412,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"7":365,"11":412,"22":1852},"isBase":true}}}, +{"id":83994,"name":"Withered Wood Spaulder","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,0,888,592,0,0,0,318,0,0,0,440,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"7":318,"11":440,"22":2577},"isBase":true}}}, +{"id":83995,"name":"Lucidity Spaulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[0,0,888,592,440,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":440,"7":318,"22":3520},"isBase":true}}}, +{"id":83996,"name":"Dreadspinner Amice","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,888,592,0,0,412,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":412,"11":365,"22":1455},"isBase":true}}}, +{"id":83997,"name":"Ghost Fox Spaulders","icon":"inv_shoulder_leather_panda_b_01dark","type":3,"armorType":2,"stats":[0,592,888,0,0,0,0,440,318,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"7":440,"8":318,"22":1852},"isBase":true}}}, +{"id":83998,"name":"Wind-Reaver Spaulder","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,592,888,0,0,337,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"5":337,"6":429,"22":2577},"isBase":true}}}, +{"id":83999,"name":"Bladesworn Shoulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[592,0,888,0,0,0,0,0,328,0,0,434,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"8":328,"11":434,"22":3520},"isBase":true}}}, +{"id":84000,"name":"Coldbite Shoulders","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[592,0,888,0,0,0,450,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"6":450,"8":300,"22":3520},"isBase":true}}}, +{"id":84001,"name":"Motherseed Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1058,706,0,0,0,511,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":511,"11":402,"22":1844},"isBase":true}}}, +{"id":84002,"name":"Sapfly Tunic","icon":"inv_chest_leather_panda_b_01dark","type":5,"armorType":2,"stats":[0,0,1058,706,0,0,0,459,0,0,0,478,0,0,0,0,0,0,0,0,0,0,2347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":459,"11":478,"22":2347},"isBase":true}}}, +{"id":84003,"name":"Withered Wood Armor","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,1058,706,0,0,368,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"6":368,"7":530,"22":3266},"isBase":true}}}, +{"id":84004,"name":"Lucidity Chestguard","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[0,0,1058,706,511,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":511,"11":402,"22":4460},"isBase":true}}}, +{"id":84005,"name":"Dreadspinner Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1058,706,0,390,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"5":390,"7":518,"22":1844},"isBase":true}}}, +{"id":84006,"name":"Ghost Fox Tunic","icon":"inv_chest_leather_panda_b_01dark","type":5,"armorType":2,"stats":[0,706,1058,0,0,447,0,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"5":447,"7":484,"22":2347},"isBase":true}}}, +{"id":84007,"name":"Wind-Reaver Armor","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,706,1058,0,0,0,424,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,3266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"6":424,"8":498,"22":3266},"isBase":true}}}, +{"id":84008,"name":"Bladesworn Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[706,0,1058,0,0,0,0,0,0,0,447,484,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"10":447,"11":484,"22":4460},"isBase":true}}}, +{"id":84009,"name":"Coldbite Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[706,0,1058,0,0,0,498,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"6":498,"7":424,"22":4460},"isBase":true}}}, +{"id":84010,"name":"Motherseed Leggings","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,1058,706,0,0,0,459,0,0,0,478,0,0,0,0,0,0,0,0,0,0,1614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":459,"11":478,"22":1614},"isBase":true}}}, +{"id":84011,"name":"Sapfly Legguards","icon":"inv_pants_leather_panda_b_01dark","type":9,"armorType":2,"stats":[0,0,1058,706,505,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":505,"7":413,"22":2054},"isBase":true}}}, +{"id":84012,"name":"Withered Wood Kilt","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,1058,706,0,0,0,436,0,0,0,491,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":436,"11":491,"22":2858},"isBase":true}}}, +{"id":84013,"name":"Lucidity Legplates","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[0,0,1058,706,0,0,0,413,0,0,0,505,0,0,0,0,0,0,0,0,0,0,3903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"7":413,"11":505,"22":3903},"isBase":true}}}, +{"id":84014,"name":"Dreadspinner Trousers","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,1058,706,0,402,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,1614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"5":402,"11":511,"22":1614},"isBase":true}}}, +{"id":84015,"name":"Ghost Fox Legguards","icon":"inv_pants_leather_panda_b_01dark","type":9,"armorType":2,"stats":[0,706,1058,0,0,0,0,0,511,0,0,402,0,0,0,0,0,0,0,0,0,0,2054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"8":511,"11":402,"22":2054},"isBase":true}}}, +{"id":84016,"name":"Wind-Reaver Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,706,1058,0,0,0,0,530,0,0,0,368,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"7":530,"11":368,"22":2858},"isBase":true}}}, +{"id":84017,"name":"Bladesworn Legguards","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[706,0,1058,0,0,0,0,0,0,491,0,436,0,0,0,0,0,0,0,0,0,0,3903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"9":491,"11":436,"22":3903},"isBase":true}}}, +{"id":84018,"name":"Coldbite Legguards","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[706,0,1058,0,0,0,498,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,3903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"6":498,"11":424,"22":3903},"isBase":true}}}, +{"id":84019,"name":"Motherseed Treads","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,888,592,375,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":375,"11":406,"22":1334},"isBase":true}}}, +{"id":84020,"name":"Sapfly Footguards","icon":"inv_boots_leather_panda_b_01dark","type":10,"armorType":2,"stats":[0,0,888,592,429,0,0,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":429,"11":337,"22":1698},"isBase":true}}}, +{"id":84021,"name":"Withered Wood Sabatons","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,0,888,592,337,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":337,"11":429,"22":2363},"isBase":true}}}, +{"id":84022,"name":"Lucidity Greaves","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[0,0,888,592,0,0,0,440,0,0,0,318,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"7":440,"11":318,"22":3226},"isBase":true}}}, +{"id":84023,"name":"Dreadspinner Treads","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,888,592,0,328,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":328,"11":434,"22":1334},"isBase":true}}}, +{"id":84024,"name":"Ghost Fox Boots","icon":"inv_boots_leather_panda_b_01dark","type":10,"armorType":2,"stats":[0,592,888,0,0,0,0,318,0,0,0,440,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"7":318,"11":440,"22":1698},"isBase":true}}}, +{"id":84025,"name":"Wind-Reaver Sabatons","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,592,888,0,0,309,0,0,0,0,0,445,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"5":309,"11":445,"22":2363},"isBase":true}}}, +{"id":84026,"name":"Bladesworn Warboots","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,385,0,401,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"9":385,"11":401,"22":3226},"isBase":true}}}, +{"id":84027,"name":"Coldbite Warboots","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[592,0,888,0,0,0,401,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"6":401,"7":385,"22":3226},"isBase":true}}}, +{"id":84028,"name":"Motherseed Cord","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,888,592,401,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":401,"7":385,"22":1091},"isBase":true}}}, +{"id":84029,"name":"Sapfly Belt","icon":"inv_belt_leather_panda_b_01dark","type":8,"armorType":2,"stats":[0,0,888,592,0,0,440,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":440,"11":318,"22":1389},"isBase":true}}}, +{"id":84030,"name":"Withered Wood Waistguard","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,0,888,592,337,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":337,"11":429,"22":1933},"isBase":true}}}, +{"id":84031,"name":"Lucidity Clasp","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[0,0,888,592,0,0,429,0,0,0,0,337,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":429,"11":337,"22":2640},"isBase":true}}}, +{"id":84032,"name":"Dreadspinner Cord","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,888,592,0,318,0,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":318,"11":440,"22":1091},"isBase":true}}}, +{"id":84033,"name":"Ghost Fox Belt","icon":"inv_belt_leather_panda_b_01dark","type":8,"armorType":2,"stats":[0,592,888,0,0,0,423,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":423,"11":346,"22":1389},"isBase":true}}}, +{"id":84034,"name":"Wind-Reaver Waistguard","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,592,888,0,0,0,406,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":406,"7":375,"22":1933},"isBase":true}}}, +{"id":84035,"name":"Bladesworn Girdle","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[592,0,888,0,0,0,0,0,0,0,450,300,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"10":450,"11":300,"22":2640},"isBase":true}}}, +{"id":84036,"name":"Coldbite Girdle","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[592,0,888,0,0,0,0,337,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"7":337,"11":429,"22":2640},"isBase":true}}}, +{"id":84037,"name":"Motherseed Gloves","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,786,524,375,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,1153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":375,"11":307,"22":1153},"isBase":true}}}, +{"id":84038,"name":"Sapfly Gloves","icon":"inv_gauntlets_leather_panda_b_01dark","type":7,"armorType":2,"stats":[0,0,786,524,282,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":282,"11":389,"22":1467},"isBase":true}}}, +{"id":84039,"name":"Withered Wood Gauntlets","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,0,786,524,298,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":298,"6":380,"22":2041},"isBase":true}}}, +{"id":84040,"name":"Lucidity Gloves","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[0,0,786,524,0,0,0,315,0,0,0,370,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"7":315,"11":370,"22":2788},"isBase":true}}}, +{"id":84041,"name":"Dreadspinner Handguards","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,786,524,0,0,324,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"6":324,"7":365,"22":1153},"isBase":true}}}, +{"id":84042,"name":"Ghost Fox Gloves","icon":"inv_gauntlets_leather_panda_b_01dark","type":7,"armorType":2,"stats":[0,524,786,0,0,0,0,370,0,0,0,315,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"7":370,"11":315,"22":1467},"isBase":true}}}, +{"id":84043,"name":"Wind-Reaver Gauntlets","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,524,786,0,0,0,0,298,0,0,0,380,0,0,0,0,0,0,0,0,0,0,2041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"7":298,"11":380,"22":2041},"isBase":true}}}, +{"id":84044,"name":"Bladesworn Gauntlets","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[524,0,786,0,0,315,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"5":315,"11":370,"22":2788},"isBase":true}}}, +{"id":84045,"name":"Coldbite Gauntlets","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[524,0,786,0,0,0,0,0,274,0,0,394,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"8":274,"11":394,"22":2788},"isBase":true}}}, +{"id":84046,"name":"Motherseed Cuffs","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,590,393,278,0,0,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":278,"7":236,"22":807},"isBase":true}}}, +{"id":84047,"name":"Sapfly Bindings","icon":"inv_bracer_leather_panda_b_01dark","type":6,"armorType":2,"stats":[0,0,590,393,236,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":236,"7":278,"22":1027},"isBase":true}}}, +{"id":84048,"name":"Withered Wood Armbands","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,0,590,393,249,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":249,"7":270,"22":1429},"isBase":true}}}, +{"id":84049,"name":"Lucidity Bracers","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[0,0,590,393,289,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":289,"6":218,"22":1951},"isBase":true}}}, +{"id":84050,"name":"Dreadspinner Cuffs","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,590,393,0,243,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"5":243,"7":274,"22":807},"isBase":true}}}, +{"id":84051,"name":"Ghost Fox Armwraps","icon":"inv_bracer_leather_panda_b_01dark","type":6,"armorType":2,"stats":[0,393,590,0,0,249,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"5":249,"6":270,"22":1027},"isBase":true}}}, +{"id":84052,"name":"Wind-Reaver Wristguards","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,393,590,0,0,0,0,289,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"7":289,"11":218,"22":1429},"isBase":true}}}, +{"id":84053,"name":"Bladesworn Armplates","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[393,0,590,0,0,0,0,0,243,274,0,0,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"8":243,"9":274,"22":1951},"isBase":true}}}, +{"id":84054,"name":"Coldbite Bracers","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[393,0,590,0,0,205,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":205,"7":296,"22":1951},"isBase":true}}}, +{"id":84055,"name":"Gurthan Locket","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,590,393,0,0,236,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":236,"11":278},"isBase":true}}}, +{"id":84056,"name":"Council Choker","icon":"inv_jewelry_necklace_74","type":2,"stats":[0,0,590,393,0,0,285,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":285,"7":224},"isBase":true}}}, +{"id":84057,"name":"Swarmborn Necklace","icon":"inv_jewelry_necklace_61","type":2,"stats":[0,393,590,0,0,0,296,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"6":296,"11":205},"isBase":true}}}, +{"id":84058,"name":"Kil'ruk's Pendant","icon":"inv_jewelry_necklace_64","type":2,"stats":[393,0,590,0,0,0,0,0,0,0,292,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"10":292,"11":211},"isBase":true}}}, +{"id":84059,"name":"Sacred Stone Amulet","icon":"inv_jewelry_necklace_76","type":2,"stats":[393,0,590,0,0,0,285,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"6":285,"11":224},"isBase":true}}}, +{"id":84060,"name":"Band of Channeled Whispers","icon":"inv_jewelry_ring_118","type":11,"stats":[0,0,590,393,243,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":243,"6":274},"isBase":true}}}, +{"id":84061,"name":"Ring of Unspeakable Nightmares","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,590,393,0,0,296,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":296,"11":205},"isBase":true}}}, +{"id":84062,"name":"Band of Sudden Dreams","icon":"inv_jewelry_ring_108","type":11,"stats":[0,393,590,0,0,289,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"5":289,"6":218},"isBase":true}}}, +{"id":84063,"name":"Seal of the Paragon Wakened","icon":"inv_jewelry_ring_115","type":11,"stats":[393,0,590,0,0,0,0,0,0,256,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"9":256,"10":266},"isBase":true}}}, +{"id":84064,"name":"Clutch-Keeper Seal","icon":"inv_jewelry_ring_125","type":11,"stats":[393,0,590,0,0,0,0,292,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"7":292,"11":211},"isBase":true}}}, +{"id":84065,"name":"Krik'thik Band","icon":"inv_jewelry_ring_127","type":11,"stats":[0,0,590,393,0,0,289,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":289,"11":218},"isBase":true}}}, +{"id":84066,"name":"Loop of the Poisoned Mind","icon":"inv_jewelry_ring_119","type":11,"stats":[0,0,590,393,0,0,236,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":236,"7":278},"isBase":true}}}, +{"id":84067,"name":"Xaril's Ring","icon":"inv_jewelry_ring_116","type":11,"stats":[0,393,590,0,0,0,285,0,0,0,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"6":285,"11":224},"isBase":true}}}, +{"id":84068,"name":"Battletank Seal","icon":"inv_jewelry_ring_122","type":11,"stats":[393,0,590,0,0,236,0,0,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":236,"10":278},"isBase":true}}}, +{"id":84069,"name":"Wingguard Loop","icon":"inv_jewelry_ring_118","type":11,"stats":[393,0,590,0,0,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":262,"7":262},"isBase":true}}}, +{"id":84070,"name":"Fearwurm Relic","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"6":665},"isBase":true}}}, +{"id":84071,"name":"Charm of Ten Songs","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"6":665},"isBase":true}}}, +{"id":84072,"name":"Braid of Ten Songs","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"11":665},"isBase":true}}}, +{"id":84073,"name":"Knot of Ten Songs","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"9":665},"isBase":true}}}, +{"id":84074,"name":"Fearwurm Badge","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"6":665},"isBase":true}}}, +{"id":84075,"name":"Relic of Kypari Zar","icon":"inv_relics_idolofhealth","type":12,"stats":[0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"7":665},"isBase":true}}}, +{"id":84076,"name":"Sigil of Kypari Zar","icon":"inv_relics_idolofhealth","type":12,"stats":[0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"6":665},"isBase":true}}}, +{"id":84077,"name":"Emblem of Kypari Zar","icon":"inv_relics_idolofhealth","type":12,"stats":[0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"6":665},"isBase":true}}}, +{"id":84078,"name":"Insignia of Kypari Zar","icon":"inv_relics_idolofhealth","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"10":665},"isBase":true}}}, +{"id":84079,"name":"Badge of Kypari Zar","icon":"inv_relics_idolofhealth","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"11":665},"isBase":true}}}, +{"id":84080,"name":"Shadebound Cape","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,0,590,393,243,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":243,"6":274,"22":922},"isBase":true}}}, +{"id":84081,"name":"Vu's Drape","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[0,0,590,393,0,243,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"5":243,"6":274,"22":922},"isBase":true}}}, +{"id":84082,"name":"Sapmaster's Cloak","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[0,393,590,0,0,0,243,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"6":243,"11":274,"22":922},"isBase":true}}}, +{"id":84083,"name":"Brewgarden Cape","icon":"inv_cape_pandaria_b_04","type":4,"armorType":1,"stats":[393,0,590,0,0,230,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":230,"10":281,"22":922},"isBase":true}}}, +{"id":84084,"name":"Sunset Cloak","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[393,0,590,0,0,0,0,243,0,0,0,274,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"7":243,"11":274,"22":922},"isBase":true}}}, +{"id":84085,"name":"Dreadwaste Meditation Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,1058,706,0,0,436,0,0,0,0,491,0,0,4042,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":3403,"weaponDamageMax":5106,"weaponSpeed":3.3,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":3403,"weaponDamageMax":5106,"stats":{"2":1058,"3":706,"6":436,"11":491,"14":4042},"isBase":true}}}, +{"id":84086,"name":"Dreadwaste Diviner's Rod","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,1058,706,0,0,0,518,0,0,0,390,0,0,4042,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":3403,"weaponDamageMax":5106,"weaponSpeed":3.3,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":3403,"weaponDamageMax":5106,"stats":{"2":1058,"3":706,"7":518,"11":390,"14":4042},"isBase":true}}}, +{"id":84087,"name":"Kyparitic Staff","icon":"inv_staff_2h_pandariaquest_b_04","type":13,"weaponType":8,"handType":4,"stats":[0,706,1058,0,0,0,536,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":6807,"weaponDamageMax":10211,"weaponSpeed":3.3,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":6807,"weaponDamageMax":10211,"stats":{"1":706,"2":1058,"6":536,"11":358},"isBase":true}}}, +{"id":84088,"name":"Kyparitic Clawmace","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[706,0,1058,0,0,518,0,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":7426,"weaponDamageMax":11140,"weaponSpeed":3.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":7426,"weaponDamageMax":11140,"stats":{"0":706,"2":1058,"5":518,"8":390},"isBase":true}}}, +{"id":84089,"name":"Axe of the Rikkitun","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[302,0,454,0,0,225,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"weaponSpeed":2.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"stats":{"0":302,"2":454,"5":225,"8":163},"isBase":true}}}, +{"id":84090,"name":"Bow of the Rikkitun","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,706,1058,0,0,0,478,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":5234,"weaponDamageMax":9721,"weaponSpeed":2.9,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":5234,"weaponDamageMax":9721,"stats":{"1":706,"2":1058,"6":478,"11":459},"isBase":true}}}, +{"id":84091,"name":"Obelisk of the Rikkitun","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[302,0,454,0,0,167,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"weaponSpeed":2.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"stats":{"0":302,"2":454,"5":167,"9":222},"isBase":true}}}, +{"id":84092,"name":"Boggeo's Ritual Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,454,302,216,0,0,0,0,0,0,177,0,0,4041,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1070,"weaponDamageMax":1989,"weaponSpeed":1.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":1070,"weaponDamageMax":1989,"stats":{"2":454,"3":302,"4":216,"11":177,"14":4041},"isBase":true}}}, +{"id":84093,"name":"Spiked Edge of the Rikkitun","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,302,454,0,0,0,225,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2409,"weaponDamageMax":4475,"weaponSpeed":1.8,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":2409,"weaponDamageMax":4475,"stats":{"1":302,"2":454,"6":225,"11":163},"isBase":true}}}, +{"id":84094,"name":"Thorns of the Rikkitun","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,302,454,0,0,0,216,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"weaponSpeed":2.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"stats":{"1":302,"2":454,"6":216,"7":177},"isBase":true}}}, +{"id":84095,"name":"Bloodseeker's Axe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[706,0,1058,0,0,0,0,471,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"weaponDamageMin":7426,"weaponDamageMax":11140,"weaponSpeed":3.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"weaponDamageMin":7426,"weaponDamageMax":11140,"stats":{"0":706,"2":1058,"7":471,"11":471},"isBase":true}}}, +{"id":84096,"name":"Bloodseeker's Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[302,0,454,0,0,222,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"weaponSpeed":2.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"stats":{"0":302,"2":454,"5":222,"8":167},"isBase":true}}}, +{"id":84097,"name":"Shield of the Wakener","icon":"inv_shield_pandariaquest_b_01","type":13,"weaponType":7,"handType":3,"stats":[393,0,590,0,0,236,0,0,278,0,0,0,0,0,0,0,0,0,0,0,0,0,14307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":236,"8":278,"22":14307},"isBase":true}}}, +{"id":84098,"name":"Eye of the Wakener","icon":"inv_shield_pandariaquest_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,590,393,0,0,256,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,14307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":256,"11":266,"22":14307},"isBase":true}}}, +{"id":84099,"name":"Saltscale Dagger","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,302,454,0,0,0,0,153,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2409,"weaponDamageMax":4475,"weaponSpeed":1.8,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":2409,"weaponDamageMax":4475,"stats":{"1":302,"2":454,"7":153,"11":230},"isBase":true}}}, +{"id":84100,"name":"Jaws of the Wakener","icon":"inv_hand_1h_pandariaquest_b_02","type":13,"weaponType":3,"handType":2,"stats":[0,302,454,0,0,0,177,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"weaponSpeed":2.6,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":3480,"weaponDamageMax":6464,"stats":{"1":302,"2":454,"6":177,"11":216},"isBase":true}}}, +{"id":84243,"name":"Bamboo Fiber Gloves","icon":"inv_gauntlets_cloth_panda_b_02","type":7,"armorType":1,"stats":[0,0,480,320,162,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":162,"6":243,"22":898},"isBase":true}}}, +{"id":84244,"name":"Bamboo Leaf Gloves","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,0,480,320,187,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":187,"7":229,"22":1168},"isBase":true}}}, +{"id":84245,"name":"Jade Witch Handguards","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,0,480,320,226,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"4":226,"6":193,"22":1662},"isBase":true}}}, +{"id":84246,"name":"Bamboo Strip Gloves","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[0,0,480,320,0,0,232,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"6":232,"7":182,"22":2304},"isBase":true}}}, +{"id":84247,"name":"Bamboo Strip Handguards","icon":"inv_gauntlets_cloth_panda_b_02","type":7,"armorType":1,"stats":[0,0,480,320,0,220,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"2":480,"3":320,"5":220,"6":203,"22":898},"isBase":true}}}, +{"id":84248,"name":"Bamboo Plate Gloves","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,320,480,0,0,214,0,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"5":214,"7":214,"22":1168},"isBase":true}}}, +{"id":84249,"name":"Fox Grove Handguards","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,320,480,0,0,229,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"1":320,"2":480,"5":229,"11":187,"22":1662},"isBase":true}}}, +{"id":84250,"name":"Bamboo Leaf Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[320,0,480,0,0,232,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"5":232,"6":182,"22":2304},"isBase":true}}}, +{"id":84251,"name":"Staff of Inner Focus","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,280,0,291,0,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"stats":{"2":646,"3":431,"4":280,"6":291,"14":2467},"isBase":true}}}, +{"id":84252,"name":"Instructor's Staff","icon":"inv_staff_2h_pandariaquest_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,0,324,0,225,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"stats":{"2":646,"3":431,"5":324,"7":225,"14":2467},"isBase":true}}}, +{"id":84253,"name":"Tian Monastic Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,431,646,0,0,0,327,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4154,"weaponDamageMax":6232,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4154,"weaponDamageMax":6232,"stats":{"1":431,"2":646,"6":327,"8":218},"isBase":true}}}, +{"id":84254,"name":"Sword of the Lone Victor","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[431,0,646,0,0,0,327,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"6":327,"7":218},"isBase":true}}}, +{"id":84255,"name":"Axe of the Lone Champion","icon":"inv_axe_1h_pandariaquest_b_02","type":13,"weaponType":1,"handType":2,"stats":[185,0,277,0,0,123,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"5":123,"11":123},"isBase":true}}}, +{"id":84256,"name":"Jade Rifle","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,431,646,0,0,0,273,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":3194,"weaponDamageMax":5933,"weaponSpeed":2.9,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":3194,"weaponDamageMax":5933,"stats":{"1":431,"2":646,"6":273,"8":296},"isBase":true}}}, +{"id":84257,"name":"Trophy of the Last Man Standing","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[185,0,277,0,0,0,0,0,127,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"8":127,"10":117},"isBase":true}}}, +{"id":84258,"name":"Mace of Inner Peace","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,277,185,0,0,108,132,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"weaponSpeed":1.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":653,"weaponDamageMax":1214,"stats":{"2":277,"3":185,"6":108,"7":132,"14":2467},"isBase":true}}}, +{"id":84259,"name":"Regal Shortblade","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,185,277,0,0,0,0,0,111,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"weaponSpeed":1.8,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"stats":{"1":185,"2":277,"8":111,"11":130},"isBase":true}}}, +{"id":84260,"name":"Mace of Serenity","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,185,277,0,0,0,0,120,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"7":120,"8":125},"isBase":true}}}, +{"id":84261,"name":"Axe of Sacrifice","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[431,0,646,0,0,252,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"5":252,"6":308},"isBase":true}}}, +{"id":84262,"name":"Spirit Crusher","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[185,0,277,0,0,0,0,132,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"7":132,"11":108},"isBase":true}}}, +{"id":84263,"name":"Spiritsage's Protector","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[240,0,360,0,0,125,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"5":125,"9":180,"22":12302},"isBase":true}}}, +{"id":84264,"name":"Spiritsage's Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,240,0,0,140,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":140,"11":172,"22":12302},"isBase":true}}}, +{"id":84265,"name":"Spiritbound Crescent","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,185,277,0,0,135,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"weaponSpeed":1.8,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1470,"weaponDamageMax":2731,"stats":{"1":185,"2":277,"5":135,"6":102},"isBase":true}}}, +{"id":84266,"name":"Spiritbound Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,185,277,0,0,0,129,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"1":185,"2":277,"6":129,"7":114},"isBase":true}}}, +{"id":84272,"name":"Mistwalker Satin Leggings","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,290,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":290,"6":354,"22":1360},"isBase":true}}}, +{"id":84273,"name":"Mistwalker Hide Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,0,743,495,314,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":314,"11":340,"22":1747},"isBase":true}}}, +{"id":84274,"name":"Deepwild Leg Armor","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,0,743,495,290,0,354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":290,"6":354,"22":2452},"isBase":true}}}, +{"id":84275,"name":"Mistwalker Burnished Legplates","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[0,0,743,495,259,0,0,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":259,"11":372,"22":3370},"isBase":true}}}, +{"id":84276,"name":"Mistwalker Silk Trousers","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,0,345,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"6":345,"7":306,"22":1360},"isBase":true}}}, +{"id":84277,"name":"Mistwalker Leather Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,495,743,0,0,0,0,335,322,0,0,0,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"7":335,"8":322,"22":1747},"isBase":true}}}, +{"id":84278,"name":"Sarjun Legguards","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,495,743,0,0,0,0,0,251,0,0,377,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"8":251,"11":377,"22":2452},"isBase":true}}}, +{"id":84279,"name":"Mistwalker Heavy Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,0,0,306,0,0,345,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"8":306,"11":345,"22":3370},"isBase":true}}}, +{"id":84280,"name":"Mistwalker Armored Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,363,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"6":363,"7":274,"22":3370},"isBase":true}}}, +{"id":84281,"name":"Bramble Locket","icon":"inv_jewelry_necklace_60","type":2,"stats":[0,0,414,276,0,0,187,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":187,"11":179},"isBase":true}}}, +{"id":84282,"name":"Bramble Choker","icon":"inv_jewelry_necklace_60","type":2,"stats":[0,0,414,276,0,161,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"5":161,"6":197},"isBase":true}}}, +{"id":84283,"name":"Bramble Necklace","icon":"inv_jewelry_necklace_60","type":2,"stats":[0,276,414,0,0,0,0,187,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"7":187,"11":179},"isBase":true}}}, +{"id":84284,"name":"Bramble Pendant","icon":"inv_jewelry_necklace_60","type":2,"stats":[276,0,414,0,0,157,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"5":157,"11":200},"isBase":true}}}, +{"id":84285,"name":"Bramble Amulet","icon":"inv_jewelry_necklace_60","type":2,"stats":[276,0,414,0,0,0,0,0,195,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":195,"11":166},"isBase":true}}}, +{"id":84286,"name":"Skittering Relic","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":84287,"name":"Skittering Sigil","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":84288,"name":"Skittering Emblem","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":84289,"name":"Skittering Insignia","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"9":467},"isBase":true}}}, +{"id":84290,"name":"Skittering Badge","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":84291,"name":"Imperial Lotus Shawl","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[0,0,414,276,166,0,0,0,0,0,0,195,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":166,"11":195,"22":777},"isBase":true}}}, +{"id":84292,"name":"Imperial Lotus Drape","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[0,0,414,276,0,0,144,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":144,"11":207,"22":777},"isBase":true}}}, +{"id":84293,"name":"Imperial Lotus Cape","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[0,276,414,0,0,148,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"5":148,"7":205,"22":777},"isBase":true}}}, +{"id":84294,"name":"Imperial Lotus Manteau","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[276,0,414,0,0,192,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"5":192,"10":170,"22":777},"isBase":true}}}, +{"id":84295,"name":"Imperial Lotus Cloak","icon":"inv_cape_pandaria_b_03","type":4,"armorType":1,"stats":[276,0,414,0,0,0,0,0,190,0,0,175,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":190,"11":175,"22":777},"isBase":true}}}, +{"id":84320,"name":"Hemet's Satin Leggings","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,0,0,314,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":314,"11":340,"22":1360},"isBase":true}}}, +{"id":84321,"name":"Hemet's Hide Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,0,743,495,377,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":377,"6":251,"22":1747},"isBase":true}}}, +{"id":84322,"name":"Hemet's Ringmail Leggings","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,0,743,495,259,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":259,"7":372,"22":2452},"isBase":true}}}, +{"id":84323,"name":"Hemet's Burnished Legplates","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[0,0,743,495,322,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":322,"6":335,"22":3370},"isBase":true}}}, +{"id":84324,"name":"Hemet's Silk Trousers","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,743,495,0,290,0,0,0,0,0,354,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"5":290,"11":354,"22":1360},"isBase":true}}}, +{"id":84325,"name":"Hemet's Leather Legguards","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,495,743,0,0,0,251,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,1747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":251,"11":377,"22":1747},"isBase":true}}}, +{"id":84326,"name":"Wild Plains Leggings","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,495,743,0,0,377,0,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"5":377,"7":251,"22":2452},"isBase":true}}}, +{"id":84327,"name":"Hemet's Heavy Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,322,0,0,0,335,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"5":322,"9":335,"22":3370},"isBase":true}}}, +{"id":84328,"name":"Hemet's Armored Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[495,0,743,0,0,0,354,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,3370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"6":354,"8":290,"22":3370},"isBase":true}}}, +{"id":84329,"name":"Grainlord's Locket","icon":"inv_jewelry_necklace_73","type":2,"stats":[0,0,414,276,207,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":207,"7":144},"isBase":true}}}, +{"id":84330,"name":"Grainlord's Choker","icon":"inv_jewelry_necklace_73","type":2,"stats":[0,0,414,276,0,205,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"5":205,"7":148},"isBase":true}}}, +{"id":84331,"name":"Grainlord's Necklace","icon":"inv_jewelry_necklace_73","type":2,"stats":[0,276,414,0,0,0,200,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"6":200,"7":157},"isBase":true}}}, +{"id":84332,"name":"Grainlord's Pendant","icon":"inv_jewelry_necklace_73","type":2,"stats":[276,0,414,0,0,0,0,0,195,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":195,"9":166},"isBase":true}}}, +{"id":84333,"name":"Grainlord's Amulet","icon":"inv_jewelry_necklace_73","type":2,"stats":[276,0,414,0,0,157,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"5":157,"6":200},"isBase":true}}}, +{"id":84334,"name":"Golden Dream Relic","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":84335,"name":"Golden Dream Sigil","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"7":467},"isBase":true}}}, +{"id":84336,"name":"Golden Dream Emblem","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":84337,"name":"Golden Dream Insignia","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":84338,"name":"Golden Dream Badge","icon":"inv_misc_orb_02","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":84339,"name":"Silkmaster's Shawl","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[0,0,414,276,0,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"7":184,"22":777},"isBase":true}}}, +{"id":84340,"name":"Silkmaster's Drape","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[0,0,414,276,0,192,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"5":192,"7":170,"22":777},"isBase":true}}}, +{"id":84341,"name":"Silkmaster's Cape","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[0,276,414,0,0,0,0,0,157,0,0,200,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"1":276,"2":414,"8":157,"11":200,"22":777},"isBase":true}}}, +{"id":84342,"name":"Silkmaster's Manteau","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[276,0,414,0,0,0,0,0,192,170,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"8":192,"9":170,"22":777},"isBase":true}}}, +{"id":84343,"name":"Silkmaster's Cloak","icon":"inv_cape_pandaria_b_02","type":4,"armorType":1,"stats":[276,0,414,0,0,144,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"0":276,"2":414,"5":144,"7":207,"22":777},"isBase":true}}}, +{"id":84344,"name":"Dreadful Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84345,"name":"Dreadful Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,478,717,0,0,0,342,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":342,"7":280,"16":220,"22":1000},"isBase":true}}}, +{"id":84346,"name":"Dreadful Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,478,717,0,0,280,0,0,0,0,0,342,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":280,"11":342,"16":220,"22":1000},"isBase":true}}}, +{"id":84347,"name":"Dreadful Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,478,717,0,0,0,280,0,342,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":280,"8":342,"16":220},"isBase":true}}}, +{"id":84348,"name":"Dreadful Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,478,717,0,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":280,"11":342,"16":220},"isBase":true}}}, +{"id":84349,"name":"Dreadful Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84351,"name":"Dreadful Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,478,717,0,0,0,342,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":342,"7":280,"16":220},"isBase":true}}}, +{"id":84352,"name":"Dreadful Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,478,717,0,0,342,0,0,0,0,0,280,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"11":280,"16":220},"isBase":true}}}, +{"id":84353,"name":"Dreadful Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"16":293,"22":1125},"isBase":true}}}, +{"id":84354,"name":"Dreadful Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,957,558,0,376,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":376,"7":373,"16":293,"22":1125},"isBase":true}}}, +{"id":84355,"name":"Dreadful Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"16":293,"22":1125},"isBase":true}}}, +{"id":84356,"name":"Dreadful Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"16":293,"22":1375},"isBase":true}}}, +{"id":84357,"name":"Dreadful Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"16":293,"22":1375},"isBase":true}}}, +{"id":84358,"name":"Dreadful Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"16":293,"22":1375},"isBase":true}}}, +{"id":84359,"name":"Dreadful Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,717,478,0,342,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":342,"6":280,"16":220,"22":875},"isBase":true}}}, +{"id":84360,"name":"Dreadful Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_e_01","type":6,"armorType":1,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"16":220,"22":875},"isBase":true}}}, +{"id":84361,"name":"Dreadful Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"16":220,"22":875},"isBase":true}}}, +{"id":84362,"name":"Dreadful Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"16":220,"22":1000},"isBase":true}}}, +{"id":84363,"name":"Dreadful Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,0,0,342,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"7":280,"16":220,"22":1000},"isBase":true}}}, +{"id":84364,"name":"Dreadful Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"16":220,"22":1000},"isBase":true}}}, +{"id":84365,"name":"Dreadful Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,0,0,0,342,0,0,0,280,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":342,"11":280,"16":220},"isBase":true}}}, +{"id":84366,"name":"Dreadful Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,0,0,342,0,0,0,0,280,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"11":280,"16":220},"isBase":true}}}, +{"id":84367,"name":"Dreadful Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,342,0,0,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"7":280,"16":220},"isBase":true}}}, +{"id":84369,"name":"Dreadful Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,0,0,342,0,0,0,0,280,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"11":280,"16":220},"isBase":true}}}, +{"id":84370,"name":"Dreadful Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,0,342,0,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":342,"7":280,"16":220},"isBase":true}}}, +{"id":84371,"name":"Dreadful Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,342,0,0,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"7":280,"16":220},"isBase":true}}}, +{"id":84372,"name":"Dreadful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"16":394,"22":4836},"isBase":true}}}, +{"id":84373,"name":"Dreadful Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"16":293,"22":3023},"isBase":true}}}, +{"id":84374,"name":"Dreadful Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"16":394,"22":3929},"isBase":true}}}, +{"id":84375,"name":"Dreadful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"16":394,"22":4232},"isBase":true}}}, +{"id":84376,"name":"Dreadful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"16":293,"22":3627},"isBase":true}}}, +{"id":84377,"name":"Dreadful Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84378,"name":"Dreadful Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"16":394,"22":2068},"isBase":true}}}, +{"id":84379,"name":"Dreadful Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"16":394,"22":2227},"isBase":true}}}, +{"id":84380,"name":"Dreadful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84381,"name":"Dreadful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"16":293,"22":1909},"isBase":true}}}, +{"id":84382,"name":"Dreadful Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"16":293,"22":1432},"isBase":true}}}, +{"id":84383,"name":"Dreadful Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"16":293,"22":1750},"isBase":true}}}, +{"id":84384,"name":"Dreadful Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"16":220,"22":1113},"isBase":true}}}, +{"id":84385,"name":"Dreadful Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84386,"name":"Dreadful Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":2068},"isBase":true}}}, +{"id":84387,"name":"Dreadful Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2227},"isBase":true}}}, +{"id":84388,"name":"Dreadful Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84389,"name":"Dreadful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"16":293,"22":1909},"isBase":true}}}, +{"id":84390,"name":"Dreadful Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"16":293,"22":1432},"isBase":true}}}, +{"id":84391,"name":"Dreadful Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"16":293,"22":1750},"isBase":true}}}, +{"id":84392,"name":"Dreadful Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"16":220,"22":1113},"isBase":true}}}, +{"id":84393,"name":"Dreadful Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84394,"name":"Dreadful Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"16":394,"22":2068},"isBase":true}}}, +{"id":84395,"name":"Dreadful Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"16":394,"22":2227},"isBase":true}}}, +{"id":84396,"name":"Dreadful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84397,"name":"Dreadful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"16":293,"22":1909},"isBase":true}}}, +{"id":84399,"name":"Dreadful Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809,"16":293},"isBase":true}}}, +{"id":84400,"name":"Dreadful Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809,"16":293},"isBase":true}}}, +{"id":84401,"name":"Dreadful Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809,"16":293},"isBase":true}}}, +{"id":84402,"name":"Dreadful Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"16":293,"22":1992},"isBase":true}}}, +{"id":84403,"name":"Dreadful Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,558,957,0,0,376,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":376,"7":373,"16":293,"22":1992},"isBase":true}}}, +{"id":84404,"name":"Dreadful Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"16":293,"22":2435},"isBase":true}}}, +{"id":84405,"name":"Dreadful Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,558,957,0,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":373,"7":376,"16":293,"22":2435},"isBase":true}}}, +{"id":84406,"name":"Dreadful Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,478,717,0,0,0,0,342,0,0,0,280,0,0,0,0,220,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":342,"11":280,"16":220,"22":1549},"isBase":true}}}, +{"id":84407,"name":"Dreadful Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,478,717,0,0,342,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"6":280,"16":220,"22":1549},"isBase":true}}}, +{"id":84408,"name":"Dreadful Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,394,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"16":394,"22":3541},"isBase":true}}}, +{"id":84409,"name":"Dreadful Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"16":293,"22":2213},"isBase":true}}}, +{"id":84410,"name":"Dreadful Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"16":394,"22":2877},"isBase":true}}}, +{"id":84411,"name":"Dreadful Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"16":394,"22":3099},"isBase":true}}}, +{"id":84412,"name":"Dreadful Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"16":293,"22":2656},"isBase":true}}}, +{"id":84413,"name":"Dreadful Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,957,558,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":345,"6":425,"16":293,"22":1250},"isBase":true}}}, +{"id":84414,"name":"Dreadful Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":1625},"isBase":true}}}, +{"id":84415,"name":"Dreadful Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,412,0,0,0,572,0,0,0,0,394,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":412,"11":572,"16":394,"22":1750},"isBase":true}}}, +{"id":84416,"name":"Dreadful Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2000},"isBase":true}}}, +{"id":84417,"name":"Dreadful Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,425,0,0,0,345,0,0,0,0,293,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":425,"11":345,"16":293,"22":1500},"isBase":true}}}, +{"id":84418,"name":"Dreadful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"16":394,"22":4836},"isBase":true}}}, +{"id":84419,"name":"Dreadful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"16":293,"22":3023},"isBase":true}}}, +{"id":84420,"name":"Dreadful Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"16":394,"22":3929},"isBase":true}}}, +{"id":84421,"name":"Dreadful Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"16":394,"22":4232},"isBase":true}}}, +{"id":84422,"name":"Dreadful Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"16":293,"22":3627},"isBase":true}}}, +{"id":84423,"name":"Dreadful Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"16":293,"22":2720},"isBase":true}}}, +{"id":84424,"name":"Dreadful Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"16":293,"22":2720},"isBase":true}}}, +{"id":84425,"name":"Dreadful Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"16":293,"22":3325},"isBase":true}}}, +{"id":84426,"name":"Dreadful Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"16":293,"22":3325},"isBase":true}}}, +{"id":84427,"name":"Dreadful Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"16":220,"22":2116},"isBase":true}}}, +{"id":84428,"name":"Dreadful Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"16":220,"22":2116},"isBase":true}}}, +{"id":84429,"name":"Dreadful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"16":394,"22":4836},"isBase":true}}}, +{"id":84430,"name":"Dreadful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"16":293,"22":3023},"isBase":true}}}, +{"id":84431,"name":"Dreadful Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":3929},"isBase":true}}}, +{"id":84432,"name":"Dreadful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":4232},"isBase":true}}}, +{"id":84433,"name":"Dreadful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,293,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"16":293,"22":3627},"isBase":true}}}, +{"id":84434,"name":"Dreadful Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[558,0,957,0,0,376,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":376,"7":373,"16":293,"22":2720},"isBase":true}}}, +{"id":84435,"name":"Dreadful Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[558,0,957,0,0,0,373,0,0,0,0,376,0,0,0,0,293,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":373,"11":376,"16":293,"22":2720},"isBase":true}}}, +{"id":84436,"name":"Dreadful Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[558,0,957,0,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":376,"11":373,"16":293,"22":3325},"isBase":true}}}, +{"id":84437,"name":"Dreadful Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[558,0,957,0,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":373,"7":376,"16":293,"22":3325},"isBase":true}}}, +{"id":84438,"name":"Dreadful Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_e_01","type":6,"armorType":4,"stats":[478,0,717,0,0,0,280,0,342,0,0,0,0,0,0,0,220,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"8":342,"16":220,"22":2116},"isBase":true}}}, +{"id":84439,"name":"Dreadful Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_e_01","type":6,"armorType":4,"stats":[478,0,717,0,0,0,0,342,0,0,0,280,0,0,0,0,220,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"7":342,"11":280,"16":220,"22":2116},"isBase":true}}}, +{"id":84440,"name":"Dreadful Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"16":293,"22":1250},"isBase":true}}}, +{"id":84441,"name":"Dreadful Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":1625},"isBase":true}}}, +{"id":84442,"name":"Dreadful Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":1750},"isBase":true}}}, +{"id":84443,"name":"Dreadful Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"16":394,"22":2000},"isBase":true}}}, +{"id":84444,"name":"Dreadful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,293,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"16":293,"22":1500},"isBase":true}}}, +{"id":84445,"name":"Dreadful Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"16":293,"22":1250},"isBase":true}}}, +{"id":84446,"name":"Dreadful Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,394,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"16":394,"22":1625},"isBase":true}}}, +{"id":84447,"name":"Dreadful Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,394,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"16":394,"22":1750},"isBase":true}}}, +{"id":84448,"name":"Dreadful Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2000},"isBase":true}}}, +{"id":84449,"name":"Dreadful Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,293,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"16":293,"22":1500},"isBase":true}}}, +{"id":84450,"name":"Dreadful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809,"16":293},"isBase":true}}}, +{"id":84451,"name":"Dreadful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809,"16":293},"isBase":true}}}, +{"id":84452,"name":"Dreadful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809,"16":293},"isBase":true}}}, +{"id":84453,"name":"Dreadful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809,"16":293},"isBase":true}}}, +{"id":84454,"name":"Dreadful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809,"16":293},"isBase":true}}}, +{"id":84455,"name":"Dreadful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809,"16":293},"isBase":true}}}, +{"id":84456,"name":"Dreadful Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"16":293,"22":1432},"isBase":true}}}, +{"id":84457,"name":"Dreadful Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,558,957,0,0,376,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":376,"7":373,"16":293,"22":1432},"isBase":true}}}, +{"id":84458,"name":"Dreadful Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"16":293,"22":1750},"isBase":true}}}, +{"id":84459,"name":"Dreadful Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,558,957,0,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":373,"7":376,"16":293,"22":1750},"isBase":true}}}, +{"id":84460,"name":"Dreadful Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_e_01","type":6,"armorType":2,"stats":[0,478,717,0,0,0,0,342,0,0,0,280,0,0,0,0,220,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":342,"11":280,"16":220,"22":1113},"isBase":true}}}, +{"id":84461,"name":"Dreadful Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_e_01","type":6,"armorType":2,"stats":[0,478,717,0,0,342,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"6":280,"16":220,"22":1113},"isBase":true}}}, +{"id":84462,"name":"Dreadful Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84463,"name":"Dreadful Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84464,"name":"Dreadful Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"16":394,"22":2068},"isBase":true}}}, +{"id":84465,"name":"Dreadful Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"16":394,"22":2227},"isBase":true}}}, +{"id":84466,"name":"Dreadful Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"16":293,"22":1909},"isBase":true}}}, +{"id":84467,"name":"Dreadful Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"16":293,"22":1992},"isBase":true}}}, +{"id":84468,"name":"Dreadful Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"16":293,"22":2435},"isBase":true}}}, +{"id":84469,"name":"Dreadful Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"16":293,"22":2435},"isBase":true}}}, +{"id":84470,"name":"Dreadful Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,220,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"16":220,"22":1549},"isBase":true}}}, +{"id":84471,"name":"Dreadful Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"16":220,"22":1549},"isBase":true}}}, +{"id":84472,"name":"Dreadful Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"16":394,"22":3541},"isBase":true}}}, +{"id":84473,"name":"Dreadful Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"16":293,"22":2213},"isBase":true}}}, +{"id":84474,"name":"Dreadful Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":2877},"isBase":true}}}, +{"id":84475,"name":"Dreadful Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":3099},"isBase":true}}}, +{"id":84476,"name":"Dreadful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,293,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"16":293,"22":2656},"isBase":true}}}, +{"id":84477,"name":"Dreadful Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,394,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"16":394,"22":3541},"isBase":true}}}, +{"id":84478,"name":"Dreadful Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"16":293,"22":2213},"isBase":true}}}, +{"id":84479,"name":"Dreadful Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"16":394,"22":2877},"isBase":true}}}, +{"id":84480,"name":"Dreadful Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"16":394,"22":3099},"isBase":true}}}, +{"id":84481,"name":"Dreadful Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"16":293,"22":2656},"isBase":true}}}, +{"id":84482,"name":"Dreadful Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,293,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"16":293,"22":1992},"isBase":true}}}, +{"id":84483,"name":"Dreadful Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":3541},"isBase":true}}}, +{"id":84484,"name":"Dreadful Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"16":293,"22":2213},"isBase":true}}}, +{"id":84485,"name":"Dreadful Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,394,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"16":394,"22":2877},"isBase":true}}}, +{"id":84486,"name":"Dreadful Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,394,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"16":394,"22":3099},"isBase":true}}}, +{"id":84487,"name":"Dreadful Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,293,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"16":293,"22":2656},"isBase":true}}}, +{"id":84488,"name":"Dreadful Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84489,"name":"Dreadful Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84490,"name":"Dreadful Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84491,"name":"Dreadful Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[478,0,717,0,0,0,280,342,0,0,0,0,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"7":342,"16":220,"22":1000},"isBase":true}}}, +{"id":84492,"name":"Dreadful Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[478,0,717,0,0,280,0,0,0,0,0,342,0,0,0,0,220,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":280,"11":342,"16":220,"22":1000},"isBase":true}}}, +{"id":84493,"name":"Dreadful Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[478,0,717,0,0,0,280,0,342,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"8":342,"16":220},"isBase":true}}}, +{"id":84494,"name":"Dreadful Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[478,0,717,0,0,342,0,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":342,"7":280,"16":220},"isBase":true}}}, +{"id":84495,"name":"Dreadful Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"16":293},"isBase":true}}}, +{"id":84497,"name":"Dreadful Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[478,0,717,0,0,0,342,280,0,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":342,"7":280,"16":220},"isBase":true}}}, +{"id":84498,"name":"Dreadful Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[478,0,717,0,0,342,0,0,0,0,0,280,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":342,"11":280,"16":220},"isBase":true}}}, +{"id":84499,"name":"Dreadful Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,957,558,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":345,"6":425,"16":293,"22":1250},"isBase":true}}}, +{"id":84500,"name":"Dreadful Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":1625},"isBase":true}}}, +{"id":84501,"name":"Dreadful Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,412,0,0,0,572,0,0,0,0,394,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":412,"11":572,"16":394,"22":1750},"isBase":true}}}, +{"id":84502,"name":"Dreadful Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2000},"isBase":true}}}, +{"id":84503,"name":"Dreadful Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,425,0,0,0,345,0,0,0,0,293,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":425,"11":345,"16":293,"22":1500},"isBase":true}}}, +{"id":84504,"name":"Dreadful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"16":394,"22":4836},"isBase":true}}}, +{"id":84505,"name":"Dreadful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"16":293,"22":3023},"isBase":true}}}, +{"id":84506,"name":"Dreadful Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"16":394,"22":3929},"isBase":true}}}, +{"id":84507,"name":"Dreadful Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"16":394,"22":4232},"isBase":true}}}, +{"id":84508,"name":"Dreadful Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"16":293,"22":3627},"isBase":true}}}, +{"id":84509,"name":"Kafa Satin Mantle","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,635,423,0,0,0,275,0,0,0,286,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":275,"11":286,"22":1255},"isBase":true}}}, +{"id":84510,"name":"Kafa Hide Spaulders","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,0,635,423,282,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":282,"6":282,"22":1598},"isBase":true}}}, +{"id":84511,"name":"Dreaming Spirit Monnion","icon":"inv_shoulder_mail_panda_b_01black","type":3,"armorType":3,"stats":[0,0,635,423,0,0,0,234,0,0,0,311,0,0,0,0,0,0,0,0,0,0,2223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":234,"11":311,"22":2223},"isBase":true}}}, +{"id":84512,"name":"Kafa Burnished Spaulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[0,0,635,423,303,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":303,"6":248,"22":3036},"isBase":true}}}, +{"id":84513,"name":"Kafa Silk Amice","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,635,423,0,0,291,0,0,0,0,268,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"6":291,"11":268,"22":1255},"isBase":true}}}, +{"id":84514,"name":"Kafa Leather Spaulders","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,423,635,0,0,0,0,254,0,0,0,299,0,0,0,0,0,0,0,0,0,0,1598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"7":254,"11":299,"22":1598},"isBase":true}}}, +{"id":84515,"name":"Yak Herder Monnion","icon":"inv_shoulder_mail_panda_b_01black","type":3,"armorType":3,"stats":[0,423,635,0,0,299,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,2223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"5":299,"11":254,"22":2223},"isBase":true}}}, +{"id":84516,"name":"Kafa Heavy Shoulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[423,0,635,0,0,0,0,0,0,268,291,0,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"9":268,"10":291,"22":3036},"isBase":true}}}, +{"id":84517,"name":"Kafa Armored Shoulders","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[423,0,635,0,0,0,0,214,0,0,0,322,0,0,0,0,0,0,0,0,0,0,3036,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"7":214,"11":322,"22":3036},"isBase":true}}}, +{"id":84518,"name":"Kafa Satin Treads","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,635,423,248,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":248,"6":303,"22":1151},"isBase":true}}}, +{"id":84519,"name":"Kafa Hide Footguards","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,0,635,423,0,0,0,268,0,0,0,291,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"7":268,"11":291,"22":1465},"isBase":true}}}, +{"id":84520,"name":"Dreaming Spirit Boots","icon":"inv_boots_mail_panda_b_01black","type":10,"armorType":3,"stats":[0,0,635,423,254,0,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":254,"6":299,"22":2038},"isBase":true}}}, +{"id":84521,"name":"Kafa Burnished Greaves","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[0,0,635,423,241,0,0,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"4":241,"11":307,"22":2783},"isBase":true}}}, +{"id":84522,"name":"Kafa Silk Treads","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,635,423,0,261,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"2":635,"3":423,"5":261,"7":295,"22":1151},"isBase":true}}}, +{"id":84523,"name":"Kafa Leather Boots","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,423,635,0,0,0,0,0,303,0,0,248,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"8":303,"11":248,"22":1465},"isBase":true}}}, +{"id":84524,"name":"Yak Herder Boots","icon":"inv_boots_mail_panda_b_01black","type":10,"armorType":3,"stats":[0,423,635,0,0,0,0,221,0,0,0,318,0,0,0,0,0,0,0,0,0,0,2038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"1":423,"2":635,"7":221,"11":318,"22":2038},"isBase":true}}}, +{"id":84525,"name":"Kafa Heavy Warboots","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[423,0,635,0,0,275,0,0,286,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"5":275,"8":286,"22":2783},"isBase":true}}}, +{"id":84526,"name":"Kafa Armored Warboots","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[423,0,635,0,0,261,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,2783,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"0":423,"2":635,"5":261,"8":295,"22":2783},"isBase":true}}}, +{"id":84527,"name":"Hidden Pass Meditation Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,854,570,0,0,396,0,0,0,0,352,0,0,3262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":2747,"weaponDamageMax":4121,"weaponSpeed":3.3,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":2747,"weaponDamageMax":4121,"stats":{"2":854,"3":570,"6":396,"11":352,"14":3262},"isBase":true}}}, +{"id":84528,"name":"Inkgill Blade","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,366,244,0,0,175,0,0,0,0,143,0,0,3261,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1782,"weaponDamageMax":3311,"weaponSpeed":3.3,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1782,"weaponDamageMax":3311,"stats":{"2":366,"3":244,"6":175,"11":143,"14":3261},"isBase":true}}}, +{"id":84529,"name":"Bodyguard's Halberd","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,570,854,0,0,0,380,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5494,"weaponDamageMax":8242,"weaponSpeed":3.3,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5494,"weaponDamageMax":8242,"stats":{"1":570,"2":854,"6":380,"7":380},"isBase":true}}}, +{"id":84530,"name":"Swordmistress' Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[570,0,854,0,0,0,402,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"weaponSpeed":3.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"stats":{"0":570,"2":854,"6":402,"7":342},"isBase":true}}}, +{"id":84531,"name":"Swordmistress' Blade","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[244,0,366,0,0,0,179,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"6":179,"11":135},"isBase":true}}}, +{"id":84532,"name":"Bodyguard's Rifle","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,570,854,0,0,0,324,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":4224,"weaponDamageMax":7846,"weaponSpeed":2.9,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":4224,"weaponDamageMax":7846,"stats":{"1":570,"2":854,"6":324,"11":413},"isBase":true}}}, +{"id":84533,"name":"Mei's Blade","icon":"inv_sword_1h_pandariaquest_b_04","type":13,"weaponType":9,"handType":2,"stats":[244,0,366,0,0,0,0,0,0,179,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"9":179,"10":135},"isBase":true}}}, +{"id":84534,"name":"Ornate Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,366,244,177,0,0,0,0,0,0,139,0,0,3261,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":864,"weaponDamageMax":1605,"weaponSpeed":1.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":864,"weaponDamageMax":1605,"stats":{"2":366,"3":244,"4":177,"11":139,"14":3261},"isBase":true}}}, +{"id":84535,"name":"Bodyguard's Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,244,366,0,0,0,143,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"weaponSpeed":1.8,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"stats":{"1":244,"2":366,"6":143,"11":175},"isBase":true}}}, +{"id":84536,"name":"Hidden Pass Barbs","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,244,366,0,0,0,0,179,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"1":244,"2":366,"7":179,"8":135},"isBase":true}}}, +{"id":84537,"name":"Binan Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[570,0,854,0,0,0,396,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"weaponSpeed":3.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"weaponDamageMin":5993,"weaponDamageMax":8991,"stats":{"0":570,"2":854,"6":396,"11":352},"isBase":true}}}, +{"id":84538,"name":"Binan Blade","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[244,0,366,0,0,0,165,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"0":244,"2":366,"6":165,"7":159},"isBase":true}}}, +{"id":84539,"name":"Bataari Warshield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[318,0,476,0,0,0,0,0,0,201,218,0,0,0,0,0,0,0,0,0,0,0,12986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"9":201,"10":218,"22":12986},"isBase":true}}}, +{"id":84540,"name":"Flamecaller's Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,476,318,0,0,0,176,0,0,0,233,0,0,0,0,0,0,0,0,0,0,12986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"7":176,"11":233,"22":12986},"isBase":true}}}, +{"id":84541,"name":"Bramble Blade","icon":"inv_knife_1h_pandariaquest_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,244,366,0,0,0,0,151,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"weaponSpeed":1.8,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":1944,"weaponDamageMax":3612,"stats":{"1":244,"2":366,"7":151,"11":170},"isBase":true}}}, +{"id":84542,"name":"Bataari Hatchet","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,244,366,0,0,0,168,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"weaponSpeed":2.6,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":464,"weaponDamageMin":2809,"weaponDamageMax":5217,"stats":{"1":244,"2":366,"6":168,"7":155},"isBase":true}}}, +{"id":84543,"name":"Dreadful Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84544,"name":"Dreadful Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"16":394,"22":2068},"isBase":true}}}, +{"id":84545,"name":"Dreadful Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"16":394,"22":2227},"isBase":true}}}, +{"id":84546,"name":"Dreadful Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84547,"name":"Dreadful Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"16":293,"22":1909},"isBase":true}}}, +{"id":84548,"name":"Dreadful Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,293,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"16":293,"22":1591},"isBase":true}}}, +{"id":84549,"name":"Dreadful Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,394,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"16":394,"22":2068},"isBase":true}}}, +{"id":84550,"name":"Dreadful Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"16":394,"22":2227},"isBase":true}}}, +{"id":84551,"name":"Dreadful Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,394,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"16":394,"22":2545},"isBase":true}}}, +{"id":84552,"name":"Dreadful Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,293,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"16":293,"22":1909},"isBase":true}}}, +{"id":84587,"name":"Farwatch Satin Hood","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,983,655,0,0,498,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":498,"11":332,"22":1450},"isBase":true}}}, +{"id":84588,"name":"Farwatch Hide Helm","icon":"inv_helmet_leather_panda_b_01red","type":1,"armorType":2,"stats":[0,0,983,655,492,0,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":492,"11":342,"22":1846},"isBase":true}}}, +{"id":84589,"name":"Earthmover Cap","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,983,655,0,0,462,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,2568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":462,"11":394,"22":2568},"isBase":true}}}, +{"id":84590,"name":"Farwatch Burnished Headcover","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[0,0,983,655,352,0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,3508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":352,"11":487,"22":3508},"isBase":true}}}, +{"id":84591,"name":"Farwatch Silk Cowl","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,983,655,0,0,0,487,0,0,0,352,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"7":487,"11":352,"22":1450},"isBase":true}}}, +{"id":84592,"name":"Farwatch Leather Helm","icon":"inv_helmet_leather_panda_b_01red","type":1,"armorType":2,"stats":[0,655,983,0,0,362,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":362,"6":481,"22":1846},"isBase":true}}}, +{"id":84593,"name":"Osul Peak Cap","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,655,983,0,0,415,0,0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,2568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":415,"11":450,"22":2568},"isBase":true}}}, +{"id":84594,"name":"Farwatch Heavy Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[655,0,983,0,0,456,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,3508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"5":456,"10":404,"22":3508},"isBase":true}}}, +{"id":84595,"name":"Farwatch Armored Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[655,0,983,0,0,362,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"5":362,"7":481,"22":3508},"isBase":true}}}, +{"id":84596,"name":"Farwatch Satin Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,983,655,475,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":475,"7":373,"22":1785},"isBase":true}}}, +{"id":84597,"name":"Farwatch Hide Robes","icon":"inv_chest_leather_panda_b_01red","type":5,"armorType":2,"stats":[0,0,983,655,443,0,0,0,0,0,0,426,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":443,"11":426,"22":2272},"isBase":true}}}, +{"id":84598,"name":"Earthmover Breastplate","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,983,655,0,0,342,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":342,"7":492,"22":3161},"isBase":true}}}, +{"id":84599,"name":"Farwatch Burnished Chestguard","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[0,0,983,655,0,0,373,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":373,"11":475,"22":4317},"isBase":true}}}, +{"id":84600,"name":"Farwatch Silk Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,983,655,0,0,481,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":481,"7":362,"22":1785},"isBase":true}}}, +{"id":84601,"name":"Farwatch Leather Tunic","icon":"inv_chest_leather_panda_b_01red","type":5,"armorType":2,"stats":[0,655,983,0,0,0,450,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"6":450,"7":415,"22":2272},"isBase":true}}}, +{"id":84602,"name":"Osul Peak Chestguard","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,655,983,0,0,394,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":394,"6":462,"22":3161},"isBase":true}}}, +{"id":84603,"name":"Farwatch Heavy Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[655,0,983,0,0,0,0,0,415,0,450,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"8":415,"10":450,"22":4317},"isBase":true}}}, +{"id":84604,"name":"Farwatch Armored Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[655,0,983,0,0,0,0,462,394,0,0,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"7":462,"8":394,"22":4317},"isBase":true}}}, +{"id":84605,"name":"Mist-Shaman Necklace","icon":"inv_jewelry_necklace_59","type":2,"stats":[0,0,547,365,0,0,258,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"6":258,"11":219},"isBase":true}}}, +{"id":84606,"name":"Pendant of Orbiss","icon":"inv_jewelry_necklace_58","type":2,"stats":[0,0,547,365,0,0,208,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"6":208,"7":264},"isBase":true}}}, +{"id":84607,"name":"Locket of the Sumprushes","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,365,547,0,0,0,191,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"6":191,"11":274},"isBase":true}}}, +{"id":84608,"name":"Pendant of Revenge","icon":"inv_jewelry_necklace_57","type":2,"stats":[365,0,547,0,0,0,0,0,0,0,196,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"10":196,"11":271},"isBase":true}}}, +{"id":84609,"name":"Amulet of Longing","icon":"inv_jewelry_necklace_55","type":2,"stats":[365,0,547,0,0,0,208,0,0,0,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"6":208,"11":264},"isBase":true}}}, +{"id":84610,"name":"Ring of Shallowstep Pass","icon":"inv_jewelry_ring_111","type":11,"stats":[0,0,547,365,254,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"4":254,"6":225},"isBase":true}}}, +{"id":84611,"name":"Ring of the Watchful Eye","icon":"inv_jewelry_ring_127","type":11,"stats":[0,0,547,365,0,0,274,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"2":547,"3":365,"6":274,"11":191},"isBase":true}}}, +{"id":84612,"name":"Band of the Faithful Scout","icon":"inv_jewelry_ring_118","type":11,"stats":[0,365,547,0,0,202,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"1":365,"2":547,"5":202,"6":268},"isBase":true}}}, +{"id":84613,"name":"Taoshi's Signet","icon":"inv_jewelry_ring_118","type":11,"stats":[365,0,547,0,0,0,0,0,0,247,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"9":247,"10":237},"isBase":true}}}, +{"id":84614,"name":"Seal of the Restless Watch","icon":"inv_jewelry_ring_116","type":11,"stats":[365,0,547,0,0,0,0,196,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"0":365,"2":547,"7":196,"11":271},"isBase":true}}}, +{"id":84617,"name":"Sunset Satin Hood","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1058,706,368,0,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":368,"7":530,"22":1498},"isBase":true}}}, +{"id":84618,"name":"Sunset Hide Helm","icon":"inv_helmet_leather_panda_b_01dark","type":1,"armorType":2,"stats":[0,0,1058,706,491,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":491,"6":436,"22":1907},"isBase":true}}}, +{"id":84619,"name":"Withered Wood Cap","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,1058,706,379,0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":379,"11":524,"22":2654},"isBase":true}}}, +{"id":84620,"name":"Sunset Burnished Headcover","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[0,0,1058,706,0,0,524,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"6":524,"11":379,"22":3624},"isBase":true}}}, +{"id":84621,"name":"Sunset Silk Cowl","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1058,706,0,491,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"5":491,"7":436,"22":1498},"isBase":true}}}, +{"id":84622,"name":"Sunset Leather Helm","icon":"inv_helmet_leather_panda_b_01dark","type":1,"armorType":2,"stats":[0,706,1058,0,0,0,0,436,0,0,0,491,0,0,0,0,0,0,0,0,0,0,1907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"7":436,"11":491,"22":1907},"isBase":true}}}, +{"id":84623,"name":"Wind-Reaver Headguard","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,706,1058,0,0,0,368,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"6":368,"7":530,"22":2654},"isBase":true}}}, +{"id":84624,"name":"Sunset Heavy Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[706,0,1058,0,0,0,0,0,471,471,0,0,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"8":471,"9":471,"22":3624},"isBase":true}}}, +{"id":84625,"name":"Sunset Armored Helm","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[706,0,1058,0,0,0,436,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"6":436,"7":491,"22":3624},"isBase":true}}}, +{"id":84626,"name":"Sunset Satin Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1058,706,358,0,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":358,"7":536,"22":1844},"isBase":true}}}, +{"id":84627,"name":"Sunset Hide Robes","icon":"inv_chest_leather_panda_b_01dark","type":5,"armorType":2,"stats":[0,0,1058,706,524,0,379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":524,"6":379,"22":2347},"isBase":true}}}, +{"id":84628,"name":"Withered Wood Breastplate","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,1058,706,524,0,0,0,0,0,0,379,0,0,0,0,0,0,0,0,0,0,3266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"4":524,"11":379,"22":3266},"isBase":true}}}, +{"id":84629,"name":"Sunset Burnished Chestguard","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[0,0,1058,706,0,0,424,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"6":424,"7":498,"22":4460},"isBase":true}}}, +{"id":84630,"name":"Sunset Silk Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1058,706,0,0,436,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,1844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"2":1058,"3":706,"6":436,"11":491,"22":1844},"isBase":true}}}, +{"id":84631,"name":"Sunset Leather Tunic","icon":"inv_chest_leather_panda_b_01dark","type":5,"armorType":2,"stats":[0,706,1058,0,0,0,530,0,0,0,0,368,0,0,0,0,0,0,0,0,0,0,2347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"6":530,"11":368,"22":2347},"isBase":true}}}, +{"id":84632,"name":"Wind-Reaver Breastplate","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,706,1058,0,0,0,536,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,3266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"1":706,"2":1058,"6":536,"11":358,"22":3266},"isBase":true}}}, +{"id":84633,"name":"Sunset Heavy Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[706,0,1058,0,0,0,0,0,0,358,0,536,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"9":358,"11":536,"22":4460},"isBase":true}}}, +{"id":84634,"name":"Sunset Armored Chestpiece","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[706,0,1058,0,0,0,0,511,0,0,0,402,0,0,0,0,0,0,0,0,0,0,4460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1342,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":1342,"stats":{"0":706,"2":1058,"7":511,"11":402,"22":4460},"isBase":true}}}, +{"id":84635,"name":"Amberglow Locket","icon":"inv_jewelry_necklace_56","type":2,"stats":[0,0,590,393,218,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":218,"7":289},"isBase":true}}}, +{"id":84636,"name":"Amberglow Choker","icon":"inv_jewelry_necklace_56","type":2,"stats":[0,0,590,393,0,274,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"5":274,"7":243},"isBase":true}}}, +{"id":84637,"name":"Amberglow Necklace","icon":"inv_jewelry_necklace_56","type":2,"stats":[0,393,590,0,0,0,0,224,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"7":224,"8":285},"isBase":true}}}, +{"id":84638,"name":"Amberglow Pendant","icon":"inv_jewelry_necklace_56","type":2,"stats":[393,0,590,0,0,0,0,0,292,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"8":292,"10":211},"isBase":true}}}, +{"id":84639,"name":"Amberglow Amulet","icon":"inv_jewelry_necklace_56","type":2,"stats":[393,0,590,0,0,0,270,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"6":270,"8":249},"isBase":true}}}, +{"id":84640,"name":"Darkroot Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,590,393,0,0,0,292,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"7":292,"11":211},"isBase":true}}}, +{"id":84641,"name":"Darkroot Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,590,393,0,299,0,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"5":299,"7":199},"isBase":true}}}, +{"id":84642,"name":"Darkroot Loop","icon":"inv_jewelry_ring_04","type":11,"stats":[0,393,590,0,0,0,0,249,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"7":249,"11":270},"isBase":true}}}, +{"id":84643,"name":"Darkroot Signet","icon":"inv_jewelry_ring_115","type":11,"stats":[393,0,590,0,0,0,0,0,0,289,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"9":289,"11":218},"isBase":true}}}, +{"id":84644,"name":"Darkroot Seal","icon":"inv_jewelry_ring_04","type":11,"stats":[393,0,590,0,0,0,296,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"6":296,"8":205},"isBase":true}}}, +{"id":84695,"name":"Dreadful Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,547,364,0,0,243,0,0,0,0,0,0,0,4871,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"weaponSpeed":1.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"stats":{"2":547,"3":364,"6":243,"14":4871,"16":243},"isBase":true}}}, +{"id":84696,"name":"Dreadful Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84697,"name":"Dreadful Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84698,"name":"Dreadful Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84699,"name":"Dreadful Gladiator's Render","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84700,"name":"Dreadful Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84701,"name":"Dreadful Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84702,"name":"Dreadful Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84703,"name":"Dreadful Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,547,364,0,0,243,0,0,0,0,0,0,0,4871,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"weaponSpeed":1.9,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"stats":{"2":547,"3":364,"6":243,"14":4871,"16":243},"isBase":true}}}, +{"id":84704,"name":"Dreadful Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,547,364,243,0,0,0,0,0,0,0,0,0,4871,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"weaponSpeed":1.9,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"stats":{"2":547,"3":364,"4":243,"14":4871,"16":243},"isBase":true}}}, +{"id":84705,"name":"Dreadful Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,850,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84706,"name":"Dreadful Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,850,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84707,"name":"Dreadful Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84708,"name":"Dreadful Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias1_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":3318,"weaponDamageMax":4977,"weaponSpeed":1.8,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":3318,"weaponDamageMax":4977,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84709,"name":"Dreadful Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":2903,"weaponDamageMax":5392,"weaponSpeed":1.8,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":2903,"weaponDamageMax":5392,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84710,"name":"Dreadful Gladiator's Slicer","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4792,"weaponDamageMax":7189,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4792,"weaponDamageMax":7189,"stats":{"0":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84711,"name":"Dreadful Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,711,474,0,0,316,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"6":316,"16":285},"isBase":true}}}, +{"id":84712,"name":"Dreadful Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,711,474,316,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"4":316,"16":285},"isBase":true}}}, +{"id":84713,"name":"Dreadful Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[474,0,711,0,0,0,316,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"0":474,"2":711,"6":316,"16":285,"22":15455},"isBase":true}}}, +{"id":84714,"name":"Dreadful Gladiator's Barrier","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,711,474,0,0,316,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"6":316,"16":285,"22":15455},"isBase":true}}}, +{"id":84715,"name":"Dreadful Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,711,474,316,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"4":316,"16":285,"22":15455},"isBase":true}}}, +{"id":84716,"name":"Dreadful Gladiator's Quickblade","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84717,"name":"Dreadful Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84718,"name":"Dreadful Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,850,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84719,"name":"Dreadful Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"16":243},"isBase":true}}}, +{"id":84720,"name":"Dreadful Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias1_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,547,364,0,0,243,0,0,0,0,0,0,0,4871,0,243,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"weaponSpeed":1.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"stats":{"2":547,"3":364,"6":243,"14":4871,"16":243},"isBase":true}}}, +{"id":84721,"name":"Dreadful Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84722,"name":"Dreadful Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,850,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"1":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84723,"name":"Dreadful Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias1_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1275,850,0,0,567,0,0,0,0,0,0,0,4871,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"stats":{"2":1275,"3":850,"6":567,"14":4871,"16":567},"isBase":true}}}, +{"id":84724,"name":"Dreadful Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias1_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1275,850,567,0,0,0,0,0,0,0,0,0,4871,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"stats":{"2":1275,"3":850,"4":567,"14":4871,"16":567},"isBase":true}}}, +{"id":84725,"name":"Dreadful Gladiator's Staff","icon":"inv_staff_2h_pvppandarias1_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,850,1275,0,0,0,567,0,0,0,0,0,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":4970,"weaponDamageMax":7456,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":4970,"weaponDamageMax":7456,"stats":{"1":850,"2":1275,"6":567,"16":567},"isBase":true}}}, +{"id":84785,"name":"Malevolent Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84786,"name":"Malevolent Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84787,"name":"Malevolent Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias1_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1552,1034,0,0,690,0,0,0,0,690,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":3022,"weaponDamageMax":4534,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"470":{"randPropPoints":1825,"weaponDamageMin":2805,"weaponDamageMax":4208,"stats":{"2":1440,"3":960,"6":640,"11":640,"14":5497}},"474":{"randPropPoints":1895,"weaponDamageMin":2912,"weaponDamageMax":4368,"stats":{"2":1495,"3":997,"6":664,"11":664,"14":5708},"upgradeStep":1}}}, +{"id":84788,"name":"Malevolent Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias1_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1552,1034,690,0,0,0,0,0,0,690,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":3022,"weaponDamageMax":4534,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"470":{"randPropPoints":1825,"weaponDamageMin":2805,"weaponDamageMax":4208,"stats":{"2":1440,"3":960,"4":640,"11":640,"14":5497}},"474":{"randPropPoints":1895,"weaponDamageMin":2912,"weaponDamageMax":4368,"stats":{"2":1495,"3":997,"4":664,"11":664,"14":5708},"upgradeStep":1}}}, +{"id":84789,"name":"Malevolent Gladiator's Staff","icon":"inv_staff_2h_pvppandarias1_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":6045,"weaponDamageMax":9068,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":5610,"weaponDamageMax":8416,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":5824,"weaponDamageMax":8736,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84790,"name":"Malevolent Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84791,"name":"Malevolent Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84792,"name":"Malevolent Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":84793,"name":"Malevolent Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84794,"name":"Malevolent Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84795,"name":"Malevolent Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84796,"name":"Malevolent Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":3921},"upgradeStep":1}}}, +{"id":84797,"name":"Malevolent Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84798,"name":"Malevolent Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":3921},"upgradeStep":1}}}, +{"id":84799,"name":"Malevolent Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":3921},"upgradeStep":1}}}, +{"id":84800,"name":"Malevolent Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":3921},"upgradeStep":1}}}, +{"id":84801,"name":"Malevolent Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,651,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"7":353,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"6":448,"7":367,"22":1107},"upgradeStep":1}}}, +{"id":84802,"name":"Malevolent Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,651,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"6":353,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"6":367,"22":1107},"upgradeStep":1}}}, +{"id":84803,"name":"Malevolent Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,651,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":367,"11":448,"22":1107},"upgradeStep":1}}}, +{"id":84804,"name":"Malevolent Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,651,976,0,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":432,"7":353,"22":1092}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":448,"7":367,"22":1107},"upgradeStep":1}}}, +{"id":84805,"name":"Malevolent Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,651,976,0,0,381,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":353,"11":432,"22":1092}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"5":367,"11":448,"22":1107},"upgradeStep":1}}}, +{"id":84806,"name":"Malevolent Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[651,0,976,0,0,381,0,0,0,0,0,465,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":353,"11":432,"22":1092}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":367,"11":448,"22":1107},"upgradeStep":1}}}, +{"id":84807,"name":"Malevolent Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[651,0,976,0,0,0,381,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":353,"7":432,"22":1092}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":367,"7":448,"22":1107},"upgradeStep":1}}}, +{"id":84808,"name":"Malevolent Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":518,"11":489,"22":1938},"upgradeStep":1}}}, +{"id":84809,"name":"Malevolent Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":471,"7":496,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":489,"7":518,"22":1938},"upgradeStep":1}}}, +{"id":84810,"name":"Malevolent Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[787,0,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":496,"11":471,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":518,"11":489,"22":3682},"upgradeStep":1}}}, +{"id":84811,"name":"Malevolent Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":3633}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":3682},"upgradeStep":1}}}, +{"id":84812,"name":"Malevolent Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":3633}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":3682},"upgradeStep":1}}}, +{"id":84813,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":1912}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":1938},"upgradeStep":1}}}, +{"id":84814,"name":"Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1522},"upgradeStep":1}}}, +{"id":84815,"name":"Malevolent Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":1522},"upgradeStep":1}}}, +{"id":84816,"name":"Malevolent Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":1522},"upgradeStep":1}}}, +{"id":84817,"name":"Malevolent Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":2660}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":2696},"upgradeStep":1}}}, +{"id":84818,"name":"Malevolent Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,787,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":471,"7":496,"22":2660}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":489,"7":518,"22":2696},"upgradeStep":1}}}, +{"id":84819,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":1912}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":489,"7":518,"22":1938},"upgradeStep":1}}}, +{"id":84820,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":2660}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":2696},"upgradeStep":1}}}, +{"id":84821,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":2660}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":2696},"upgradeStep":1}}}, +{"id":84822,"name":"Malevolent Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[787,0,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":471,"7":496,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":489,"7":518,"22":3682},"upgradeStep":1}}}, +{"id":84823,"name":"Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,651,0,0,465,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"6":448,"11":367},"upgradeStep":1}}}, +{"id":84824,"name":"Malevolent Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,651,0,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":448,"7":367},"upgradeStep":1}}}, +{"id":84825,"name":"Malevolent Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,651,465,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"7":367},"upgradeStep":1}}}, +{"id":84826,"name":"Malevolent Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,651,976,0,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":448,"7":367},"upgradeStep":1}}}, +{"id":84827,"name":"Malevolent Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,651,976,0,0,465,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"5":448,"11":367},"upgradeStep":1}}}, +{"id":84828,"name":"Malevolent Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[651,0,976,0,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":448,"7":367},"upgradeStep":1}}}, +{"id":84829,"name":"Malevolent Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[651,0,976,0,0,465,0,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":448,"11":367},"upgradeStep":1}}}, +{"id":84830,"name":"Malevolent Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":84831,"name":"Malevolent Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":3347},"upgradeStep":1}}}, +{"id":84832,"name":"Malevolent Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":84833,"name":"Malevolent Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1761},"upgradeStep":1}}}, +{"id":84834,"name":"Malevolent Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":84835,"name":"Malevolent Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":84836,"name":"Malevolent Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1761},"upgradeStep":1}}}, +{"id":84837,"name":"Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,1301,787,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":84838,"name":"Malevolent Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":84839,"name":"Malevolent Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":84840,"name":"Malevolent Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":84841,"name":"Malevolent Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":84842,"name":"Malevolent Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,1301,787,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":84843,"name":"Malevolent Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":84844,"name":"Malevolent Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":84845,"name":"Malevolent Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":84846,"name":"Malevolent Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1384},"upgradeStep":1}}}, +{"id":84847,"name":"Malevolent Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":2451},"upgradeStep":1}}}, +{"id":84848,"name":"Malevolent Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":84849,"name":"Malevolent Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":84850,"name":"Malevolent Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":84851,"name":"Malevolent Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":84852,"name":"Malevolent Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":84853,"name":"Malevolent Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":84854,"name":"Malevolent Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":84855,"name":"Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":84856,"name":"Malevolent Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":84857,"name":"Malevolent Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":84858,"name":"Malevolent Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":84859,"name":"Malevolent Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":84860,"name":"Malevolent Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":3186},"upgradeStep":1}}}, +{"id":84861,"name":"Malevolent Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":2290},"upgradeStep":1}}}, +{"id":84862,"name":"Malevolent Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":84863,"name":"Malevolent Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":84864,"name":"Malevolent Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":1799},"upgradeStep":1}}}, +{"id":84865,"name":"Malevolent Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":84866,"name":"Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,865,576,0,0,384,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":249}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"6":357,"11":274}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"6":370,"11":284},"upgradeStep":1}}}, +{"id":84867,"name":"Malevolent Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,865,576,384,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":249}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"4":357,"11":274}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"4":370,"11":284},"upgradeStep":1}}}, +{"id":84868,"name":"Malevolent Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":84869,"name":"Malevolent Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":4623}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":4686},"upgradeStep":1}}}, +{"id":84870,"name":"Malevolent Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":84871,"name":"Malevolent Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":84872,"name":"Malevolent Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":84873,"name":"Malevolent Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2466},"upgradeStep":1}}}, +{"id":84874,"name":"Malevolent Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":3431},"upgradeStep":1}}}, +{"id":84875,"name":"Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,618,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":563,"11":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":590,"11":750,"22":1938},"upgradeStep":1}}}, +{"id":84876,"name":"Malevolent Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":84877,"name":"Malevolent Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":84878,"name":"Malevolent Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,618,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":563,"11":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":590,"11":750,"22":1938},"upgradeStep":1}}}, +{"id":84879,"name":"Malevolent Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":3431},"upgradeStep":1}}}, +{"id":84880,"name":"Malevolent Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":2466},"upgradeStep":1}}}, +{"id":84881,"name":"Malevolent Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":3431},"upgradeStep":1}}}, +{"id":84882,"name":"Malevolent Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2466},"upgradeStep":1}}}, +{"id":84883,"name":"Malevolent Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":1938},"upgradeStep":1}}}, +{"id":84884,"name":"Malevolent Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":1938},"upgradeStep":1}}}, +{"id":84885,"name":"Malevolent Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":3431},"upgradeStep":1}}}, +{"id":84886,"name":"Malevolent Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,651,0,0,0,465,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":448,"11":367},"upgradeStep":1}}}, +{"id":84887,"name":"Malevolent Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,651,0,0,465,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"6":448,"11":367},"upgradeStep":1}}}, +{"id":84888,"name":"Malevolent Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,651,465,0,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"7":367},"upgradeStep":1}}}, +{"id":84889,"name":"Malevolent Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,651,976,0,0,0,381,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":353,"8":432}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":367,"8":448},"upgradeStep":1}}}, +{"id":84890,"name":"Malevolent Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,651,976,0,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":353,"11":432}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"7":367,"11":448},"upgradeStep":1}}}, +{"id":84891,"name":"Malevolent Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[651,0,976,0,0,0,381,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":353,"8":432}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":367,"8":448},"upgradeStep":1}}}, +{"id":84892,"name":"Malevolent Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[651,0,976,0,0,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":432,"7":353}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":448,"7":367},"upgradeStep":1}}}, +{"id":84893,"name":"Malevolent Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84894,"name":"Malevolent Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84895,"name":"Malevolent Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":3530,"weaponDamageMax":6557,"weaponSpeed":1.8,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":3277,"weaponDamageMax":6086,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":3401,"weaponDamageMax":6317,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84896,"name":"Malevolent Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84897,"name":"Malevolent Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84898,"name":"Malevolent Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1863,"weaponDamageMax":3461,"weaponSpeed":1.9,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1729,"weaponDamageMax":3212,"stats":{"2":617,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1795,"weaponDamageMax":3334,"stats":{"2":641,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":84899,"name":"Malevolent Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,665,443,296,0,0,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1863,"weaponDamageMax":3461,"weaponSpeed":1.9,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1729,"weaponDamageMax":3212,"stats":{"2":617,"3":411,"4":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1795,"weaponDamageMax":3334,"stats":{"2":641,"3":427,"4":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":84900,"name":"Malevolent Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":84901,"name":"Malevolent Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":84902,"name":"Malevolent Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":84903,"name":"Malevolent Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":84904,"name":"Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":84905,"name":"Malevolent Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":84906,"name":"Malevolent Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":84907,"name":"Malevolent Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":84908,"name":"Malevolent Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":84909,"name":"Malevolent Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":84910,"name":"Malevolent Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[576,0,865,0,0,0,384,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,16661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":249,"22":15628}},"470":{"randPropPoints":1017,"stats":{"0":535,"2":802,"6":357,"11":274,"22":16202}},"474":{"randPropPoints":1056,"stats":{"0":555,"2":833,"6":370,"11":284,"22":16432},"upgradeStep":1}}}, +{"id":84911,"name":"Malevolent Gladiator's Barrier","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,865,576,0,0,384,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,16661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":249,"22":15628}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"6":357,"11":274,"22":16202}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"6":370,"11":284,"22":16432},"upgradeStep":1}}}, +{"id":84912,"name":"Malevolent Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,865,576,384,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,16661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":249,"22":15628}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"4":357,"11":274,"22":16202}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"4":370,"11":284,"22":16432},"upgradeStep":1}}}, +{"id":84913,"name":"Malevolent Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":84914,"name":"Malevolent Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":3963}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":4017},"upgradeStep":1}}}, +{"id":84915,"name":"Malevolent Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":84916,"name":"Malevolent Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":84917,"name":"Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,578,0,0,0,498,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":537,"11":457,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":557,"11":477,"22":1661},"upgradeStep":1}}}, +{"id":84918,"name":"Malevolent Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":84919,"name":"Malevolent Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":84920,"name":"Malevolent Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":84921,"name":"Malevolent Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2941},"upgradeStep":1}}}, +{"id":84922,"name":"Malevolent Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":84923,"name":"Malevolent Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,578,0,0,0,498,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":537,"11":457,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":557,"11":477,"22":1661},"upgradeStep":1}}}, +{"id":84924,"name":"Malevolent Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":2941},"upgradeStep":1}}}, +{"id":84925,"name":"Malevolent Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":84926,"name":"Malevolent Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2941},"upgradeStep":1}}}, +{"id":84927,"name":"Malevolent Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":84928,"name":"Malevolent Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":1661},"upgradeStep":1}}}, +{"id":84929,"name":"Malevolent Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":1661},"upgradeStep":1}}}, +{"id":84930,"name":"Malevolent Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2941},"upgradeStep":1}}}, +{"id":84931,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"483":{"randPropPoints":1531,"stats":{"2":1208}},"487":{"randPropPoints":1589,"stats":{"2":1253},"upgradeStep":1}}}, +{"id":84932,"name":"Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"483":{"randPropPoints":1531,"stats":{"4":1021}},"487":{"randPropPoints":1589,"stats":{"4":1059},"upgradeStep":1}}}, +{"id":84933,"name":"Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"483":{"randPropPoints":1531,"stats":{"4":1021}},"487":{"randPropPoints":1589,"stats":{"4":1059},"upgradeStep":1}}}, +{"id":84934,"name":"Malevolent Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84935,"name":"Malevolent Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84936,"name":"Malevolent Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021}},"487":{"randPropPoints":1589,"stats":{"6":1059},"upgradeStep":1}}}, +{"id":84937,"name":"Malevolent Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84938,"name":"Malevolent Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"483":{"randPropPoints":1531,"stats":{"2":1208}},"487":{"randPropPoints":1589,"stats":{"2":1253},"upgradeStep":1}}}, +{"id":84939,"name":"Malevolent Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"483":{"randPropPoints":1531,"stats":{"4":1021}},"487":{"randPropPoints":1589,"stats":{"4":1059},"upgradeStep":1}}}, +{"id":84940,"name":"Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84941,"name":"Malevolent Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84942,"name":"Malevolent Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":84943,"name":"Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021}},"487":{"randPropPoints":1589,"stats":{"6":1059},"upgradeStep":1}}}, +{"id":84944,"name":"Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021}},"487":{"randPropPoints":1589,"stats":{"6":1059},"upgradeStep":1}}}, +{"id":84945,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021}},"487":{"randPropPoints":1589,"stats":{"11":1059},"upgradeStep":1}}}, +{"id":84946,"name":"Malevolent Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":2206},"upgradeStep":1}}}, +{"id":84947,"name":"Malevolent Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":1585},"upgradeStep":1}}}, +{"id":84948,"name":"Malevolent Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,787,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":496,"7":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":518,"7":489,"22":1585},"upgradeStep":1}}}, +{"id":84949,"name":"Malevolent Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[787,0,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":496,"7":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":518,"7":489,"22":3012},"upgradeStep":1}}}, +{"id":84950,"name":"Malevolent Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[787,0,1301,0,0,0,507,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":471,"11":496,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":489,"11":518,"22":3012},"upgradeStep":1}}}, +{"id":84951,"name":"Malevolent Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":518,"11":489,"22":3012},"upgradeStep":1}}}, +{"id":84952,"name":"Malevolent Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":3012},"upgradeStep":1}}}, +{"id":84953,"name":"Malevolent Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":1585},"upgradeStep":1}}}, +{"id":84954,"name":"Malevolent Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1246},"upgradeStep":1}}}, +{"id":84955,"name":"Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":496,"7":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":518,"7":489,"22":1246},"upgradeStep":1}}}, +{"id":84956,"name":"Malevolent Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":1246},"upgradeStep":1}}}, +{"id":84957,"name":"Malevolent Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,787,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":496,"7":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":518,"7":489,"22":2206},"upgradeStep":1}}}, +{"id":84958,"name":"Malevolent Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":2206},"upgradeStep":1}}}, +{"id":84959,"name":"Malevolent Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":2206},"upgradeStep":1}}}, +{"id":84960,"name":"Malevolent Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1585},"upgradeStep":1}}}, +{"id":84961,"name":"Malevolent Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1569,"weaponDamageMax":2914,"weaponSpeed":1.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1456,"weaponDamageMax":2705,"stats":{"2":617,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1511,"weaponDamageMax":2808,"stats":{"2":641,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":84962,"name":"Malevolent Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84963,"name":"Malevolent Gladiator's Render","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84964,"name":"Malevolent Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84965,"name":"Malevolent Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84966,"name":"Malevolent Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84967,"name":"Malevolent Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias1_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":4035,"weaponDamageMax":6053,"weaponSpeed":1.8,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":3745,"weaponDamageMax":5618,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":3887,"weaponDamageMax":5831,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84968,"name":"Malevolent Gladiator's Slicer","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5828,"weaponDamageMax":8743,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":5409,"weaponDamageMax":8115,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":5615,"weaponDamageMax":8423,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84969,"name":"Malevolent Gladiator's Quickblade","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84970,"name":"Malevolent Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":84971,"name":"Malevolent Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias1_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1569,"weaponDamageMax":2914,"weaponSpeed":1.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1456,"weaponDamageMax":2705,"stats":{"2":617,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1511,"weaponDamageMax":2808,"stats":{"2":641,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":84972,"name":"Malevolent Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_e_01","type":6,"armorType":2,"stats":[0,651,976,0,0,0,0,465,0,0,0,381,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":432,"11":353,"22":1217}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"7":448,"11":367,"22":1233},"upgradeStep":1}}}, +{"id":84973,"name":"Malevolent Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_e_01","type":6,"armorType":2,"stats":[0,651,976,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":432,"6":353,"22":1217}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"5":448,"6":367,"22":1233},"upgradeStep":1}}}, +{"id":84974,"name":"Malevolent Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,976,651,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":2312}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":367,"11":448,"22":2343},"upgradeStep":1}}}, +{"id":84975,"name":"Malevolent Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,976,651,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"6":353,"22":2312}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"6":367,"22":2343},"upgradeStep":1}}}, +{"id":84976,"name":"Malevolent Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,976,651,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"6":353,"22":1217}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"6":367,"22":1233},"upgradeStep":1}}}, +{"id":84977,"name":"Malevolent Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,976,651,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":432,"6":353,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":448,"6":367,"22":969},"upgradeStep":1}}}, +{"id":84978,"name":"Malevolent Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_e_01","type":6,"armorType":1,"stats":[0,0,976,651,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":367,"11":448,"22":969},"upgradeStep":1}}}, +{"id":84979,"name":"Malevolent Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,976,651,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"6":353,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"6":367,"22":969},"upgradeStep":1}}}, +{"id":84980,"name":"Malevolent Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,651,976,0,0,0,0,465,0,0,0,381,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":432,"11":353,"22":1693}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"7":448,"11":367,"22":1716},"upgradeStep":1}}}, +{"id":84981,"name":"Malevolent Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,651,976,0,0,465,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":432,"6":353,"22":1693}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"5":448,"6":367,"22":1716},"upgradeStep":1}}}, +{"id":84982,"name":"Malevolent Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,976,651,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":1217}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":367,"11":448,"22":1233},"upgradeStep":1}}}, +{"id":84983,"name":"Malevolent Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,976,651,0,0,0,381,0,0,0,465,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":1693}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":367,"11":448,"22":1716},"upgradeStep":1}}}, +{"id":84984,"name":"Malevolent Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,976,651,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"6":353,"22":1693}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":448,"6":367,"22":1716},"upgradeStep":1}}}, +{"id":84985,"name":"Malevolent Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_e_01","type":6,"armorType":4,"stats":[651,0,976,0,0,0,381,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":353,"8":432,"22":2312}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":367,"8":448,"22":2343},"upgradeStep":1}}}, +{"id":84986,"name":"Malevolent Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_e_01","type":6,"armorType":4,"stats":[651,0,976,0,0,0,0,465,0,0,0,381,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"7":432,"11":353,"22":2312}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"7":448,"11":367,"22":2343},"upgradeStep":1}}}, +{"id":84987,"name":"Malevolent Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84988,"name":"Malevolent Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":3921},"upgradeStep":1}}}, +{"id":84989,"name":"Malevolent Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":3921},"upgradeStep":1}}}, +{"id":84990,"name":"Malevolent Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":3921},"upgradeStep":1}}}, +{"id":84991,"name":"Malevolent Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84992,"name":"Malevolent Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84993,"name":"Malevolent Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":563,"7":723,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":590,"7":750,"22":5356},"upgradeStep":1}}}, +{"id":84994,"name":"Malevolent Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":3921},"upgradeStep":1}}}, +{"id":84995,"name":"Malevolent Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":84996,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":1912}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":489,"7":518,"22":1938},"upgradeStep":1}}}, +{"id":84997,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":2660}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":2696},"upgradeStep":1}}}, +{"id":84998,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":2660}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":2696},"upgradeStep":1}}}, +{"id":84999,"name":"Malevolent Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[787,0,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":471,"7":496,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":489,"7":518,"22":3682},"upgradeStep":1}}}, +{"id":85000,"name":"Malevolent Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[787,0,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":496,"11":471,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":518,"11":489,"22":3682},"upgradeStep":1}}}, +{"id":85001,"name":"Malevolent Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":3633}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":3682},"upgradeStep":1}}}, +{"id":85002,"name":"Malevolent Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":3633}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":3682},"upgradeStep":1}}}, +{"id":85003,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":1912}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":1938},"upgradeStep":1}}}, +{"id":85004,"name":"Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1522},"upgradeStep":1}}}, +{"id":85005,"name":"Malevolent Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":471,"7":496,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":489,"7":518,"22":1522},"upgradeStep":1}}}, +{"id":85006,"name":"Malevolent Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,1301,787,540,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"11":471,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"11":489,"22":1522},"upgradeStep":1}}}, +{"id":85007,"name":"Malevolent Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":2660}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":2696},"upgradeStep":1}}}, +{"id":85008,"name":"Malevolent Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,787,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":471,"7":496,"22":2660}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":489,"7":518,"22":2696},"upgradeStep":1}}}, +{"id":85009,"name":"Malevolent Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":518,"11":489,"22":1938},"upgradeStep":1}}}, +{"id":85010,"name":"Malevolent Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,507,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":471,"7":496,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":489,"7":518,"22":1938},"upgradeStep":1}}}, +{"id":85011,"name":"Malevolent Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":85012,"name":"Malevolent Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":85013,"name":"Malevolent Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1384},"upgradeStep":1}}}, +{"id":85014,"name":"Malevolent Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":2451},"upgradeStep":1}}}, +{"id":85015,"name":"Malevolent Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1761},"upgradeStep":1}}}, +{"id":85016,"name":"Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,1301,787,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":85017,"name":"Malevolent Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":85018,"name":"Malevolent Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":85019,"name":"Malevolent Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":85020,"name":"Malevolent Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":2451},"upgradeStep":1}}}, +{"id":85021,"name":"Malevolent Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,1301,787,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":457,"6":537,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":477,"6":557,"22":1384},"upgradeStep":1}}}, +{"id":85022,"name":"Malevolent Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":85023,"name":"Malevolent Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":85024,"name":"Malevolent Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":3347},"upgradeStep":1}}}, +{"id":85025,"name":"Malevolent Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":477,"6":557,"22":1761},"upgradeStep":1}}}, +{"id":85026,"name":"Malevolent Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,787,498,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"7":537,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"7":557,"22":1761},"upgradeStep":1}}}, +{"id":85027,"name":"Malevolent Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":85028,"name":"Malevolent Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,498,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":457,"6":537,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"5":477,"6":557,"22":3347},"upgradeStep":1}}}, +{"id":85029,"name":"Malevolent Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":85030,"name":"Malevolent Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":85031,"name":"Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":85032,"name":"Malevolent Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":85033,"name":"Malevolent Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":85034,"name":"Malevolent Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":85035,"name":"Malevolent Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":85036,"name":"Malevolent Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":3186},"upgradeStep":1}}}, +{"id":85037,"name":"Malevolent Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":2290},"upgradeStep":1}}}, +{"id":85038,"name":"Malevolent Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":3186},"upgradeStep":1}}}, +{"id":85039,"name":"Malevolent Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":1799},"upgradeStep":1}}}, +{"id":85040,"name":"Malevolent Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,0,538,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":483,"11":723,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":510,"11":750,"22":1799},"upgradeStep":1}}}, +{"id":85041,"name":"Malevolent Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":85042,"name":"Malevolent Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":85043,"name":"Malevolent Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,778,0,0,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":85044,"name":"Malevolent Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":85045,"name":"Malevolent Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":723,"11":483,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":750,"11":510,"22":2290},"upgradeStep":1}}}, +{"id":85046,"name":"Malevolent Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,778,0,0,538,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"8":723,"11":483,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"8":750,"11":510,"22":4351},"upgradeStep":1}}}, +{"id":85047,"name":"Malevolent Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,618,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":563,"11":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":590,"11":750,"22":1938},"upgradeStep":1}}}, +{"id":85048,"name":"Malevolent Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":3431},"upgradeStep":1}}}, +{"id":85049,"name":"Malevolent Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":2466},"upgradeStep":1}}}, +{"id":85050,"name":"Malevolent Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":3431},"upgradeStep":1}}}, +{"id":85051,"name":"Malevolent Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2466},"upgradeStep":1}}}, +{"id":85052,"name":"Malevolent Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":1938},"upgradeStep":1}}}, +{"id":85053,"name":"Malevolent Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,778,0,0,0,618,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":723,"11":563,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":750,"11":590,"22":1938},"upgradeStep":1}}}, +{"id":85054,"name":"Malevolent Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":3431},"upgradeStep":1}}}, +{"id":85055,"name":"Malevolent Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":85056,"name":"Malevolent Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":4623}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":4686},"upgradeStep":1}}}, +{"id":85057,"name":"Malevolent Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":85058,"name":"Malevolent Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":85059,"name":"Malevolent Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":85060,"name":"Malevolent Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2466},"upgradeStep":1}}}, +{"id":85061,"name":"Malevolent Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":3431},"upgradeStep":1}}}, +{"id":85062,"name":"Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,0,618,0,0,0,778,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"7":563,"11":723,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"7":590,"11":750,"22":1938},"upgradeStep":1}}}, +{"id":85063,"name":"Malevolent Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":723,"7":563,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":750,"7":590,"22":4686},"upgradeStep":1}}}, +{"id":85064,"name":"Malevolent Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,0,778,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":723,"7":563,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":750,"7":590,"22":2466},"upgradeStep":1}}}, +{"id":85065,"name":"Malevolent Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":85066,"name":"Malevolent Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,618,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":563,"11":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":590,"11":750,"22":2818},"upgradeStep":1}}}, +{"id":85067,"name":"Malevolent Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":85068,"name":"Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":85069,"name":"Malevolent Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":85070,"name":"Malevolent Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":85071,"name":"Malevolent Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2818},"upgradeStep":1}}}, +{"id":85072,"name":"Malevolent Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,618,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":85073,"name":"Malevolent Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,618,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":563,"7":723,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":590,"7":750,"22":2214},"upgradeStep":1}}}, +{"id":85074,"name":"Malevolent Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":1661},"upgradeStep":1}}}, +{"id":85075,"name":"Malevolent Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2941},"upgradeStep":1}}}, +{"id":85076,"name":"Malevolent Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2941},"upgradeStep":1}}}, +{"id":85077,"name":"Malevolent Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":85078,"name":"Malevolent Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,578,0,0,0,498,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":537,"11":457,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":557,"11":477,"22":1661},"upgradeStep":1}}}, +{"id":85079,"name":"Malevolent Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":2941},"upgradeStep":1}}}, +{"id":85080,"name":"Malevolent Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,0,0,0,498,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":85081,"name":"Malevolent Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2941},"upgradeStep":1}}}, +{"id":85082,"name":"Malevolent Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":85083,"name":"Malevolent Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":1661},"upgradeStep":1}}}, +{"id":85084,"name":"Malevolent Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":85085,"name":"Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,0,0,578,0,0,0,498,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":537,"11":457,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"7":557,"11":477,"22":1661},"upgradeStep":1}}}, +{"id":85086,"name":"Malevolent Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":85087,"name":"Malevolent Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":85088,"name":"Malevolent Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":2114},"upgradeStep":1}}}, +{"id":85089,"name":"Malevolent Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":537,"8":457,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"7":557,"8":477,"22":2114},"upgradeStep":1}}}, +{"id":85090,"name":"Malevolent Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,1301,787,498,0,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"11":537,"22":3963}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":477,"11":557,"22":4017},"upgradeStep":1}}}, +{"id":85091,"name":"Malevolent Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,578,498,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"7":537,"8":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1253,"7":557,"8":477,"22":4017},"upgradeStep":1}}}, +{"id":85092,"name":"Malevolent Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1246},"upgradeStep":1}}}, +{"id":85093,"name":"Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":496,"7":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":518,"7":489,"22":1246},"upgradeStep":1}}}, +{"id":85094,"name":"Malevolent Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":1246},"upgradeStep":1}}}, +{"id":85095,"name":"Malevolent Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,787,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":496,"7":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":518,"7":489,"22":2206},"upgradeStep":1}}}, +{"id":85096,"name":"Malevolent Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":2206},"upgradeStep":1}}}, +{"id":85097,"name":"Malevolent Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":2206},"upgradeStep":1}}}, +{"id":85098,"name":"Malevolent Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"6":518,"11":489,"22":1585},"upgradeStep":1}}}, +{"id":85099,"name":"Malevolent Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":2176}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":2206},"upgradeStep":1}}}, +{"id":85100,"name":"Malevolent Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,787,1301,0,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":496,"11":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"6":518,"11":489,"22":1585},"upgradeStep":1}}}, +{"id":85101,"name":"Malevolent Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,787,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":496,"7":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1253,"5":518,"7":489,"22":1585},"upgradeStep":1}}}, +{"id":85102,"name":"Malevolent Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[787,0,1301,0,0,540,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":496,"7":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":518,"7":489,"22":3012},"upgradeStep":1}}}, +{"id":85103,"name":"Malevolent Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[787,0,1301,0,0,0,507,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":471,"11":496,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":489,"11":518,"22":3012},"upgradeStep":1}}}, +{"id":85104,"name":"Malevolent Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,787,0,0,540,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":496,"11":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":518,"11":489,"22":3012},"upgradeStep":1}}}, +{"id":85105,"name":"Malevolent Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":2972}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":3012},"upgradeStep":1}}}, +{"id":85106,"name":"Malevolent Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,787,540,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":496,"7":471,"22":1564}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":518,"7":489,"22":1585},"upgradeStep":1}}}, +{"id":85107,"name":"Malevolent Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1246,0,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"weaponSpeed":3.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":12168,"weaponDamageMax":18253,"stats":{"0":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":12630,"weaponDamageMax":18946,"stats":{"0":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85108,"name":"Malevolent Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1246,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"weaponSpeed":3.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":12168,"weaponDamageMax":18253,"stats":{"1":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":12630,"weaponDamageMax":18946,"stats":{"1":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85109,"name":"Malevolent Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias1_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1869,1246,0,0,831,0,0,0,0,831,0,0,7139,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"weaponSpeed":2,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"490":{"randPropPoints":2199,"weaponDamageMin":3380,"weaponDamageMax":5070,"stats":{"2":1735,"3":1156,"6":771,"11":771,"14":6624}},"494":{"randPropPoints":2283,"weaponDamageMin":3508,"weaponDamageMax":5263,"stats":{"2":1801,"3":1201,"6":800,"11":800,"14":6877},"upgradeStep":1}}}, +{"id":85110,"name":"Malevolent Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias1_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1869,1246,831,0,0,0,0,0,0,831,0,0,7139,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"weaponSpeed":2,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"490":{"randPropPoints":2199,"weaponDamageMin":3380,"weaponDamageMax":5070,"stats":{"2":1735,"3":1156,"4":771,"11":771,"14":6624}},"494":{"randPropPoints":2283,"weaponDamageMin":3508,"weaponDamageMax":5263,"stats":{"2":1801,"3":1201,"4":800,"11":800,"14":6877},"upgradeStep":1}}}, +{"id":85111,"name":"Malevolent Gladiator's Staff","icon":"inv_staff_2h_pvppandarias1_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1246,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"weaponSpeed":2,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":6760,"weaponDamageMax":10141,"stats":{"1":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":7017,"weaponDamageMax":10526,"stats":{"1":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85112,"name":"Malevolent Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":4,"stats":[1246,0,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"weaponSpeed":3.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":12168,"weaponDamageMax":18253,"stats":{"0":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":12630,"weaponDamageMax":18946,"stats":{"0":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85113,"name":"Malevolent Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":4,"stats":[1246,0,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"weaponSpeed":3.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":12168,"weaponDamageMax":18253,"stats":{"0":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":12630,"weaponDamageMax":18946,"stats":{"0":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85114,"name":"Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1041,694,0,0,463,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":251}},"490":{"randPropPoints":1225,"stats":{"2":966,"3":644,"6":429,"11":331}},"494":{"randPropPoints":1272,"stats":{"2":1003,"3":669,"6":446,"11":344},"upgradeStep":1}}}, +{"id":85115,"name":"Malevolent Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1041,694,463,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":251}},"490":{"randPropPoints":1225,"stats":{"2":966,"3":644,"4":429,"11":331}},"494":{"randPropPoints":1272,"stats":{"2":1003,"3":669,"4":446,"11":344},"upgradeStep":1}}}, +{"id":85116,"name":"Malevolent Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85117,"name":"Malevolent Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[534,0,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"0":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"0":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85118,"name":"Malevolent Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"weaponSpeed":1.8,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":3948,"weaponDamageMax":7333,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":4098,"weaponDamageMax":7611,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85119,"name":"Malevolent Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1246,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"weaponSpeed":3,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":10140,"weaponDamageMax":15211,"stats":{"1":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":10525,"weaponDamageMax":15788,"stats":{"1":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85120,"name":"Malevolent Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,1246,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"weaponSpeed":3,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":10140,"weaponDamageMax":15211,"stats":{"1":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":10525,"weaponDamageMax":15788,"stats":{"1":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85121,"name":"Malevolent Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,801,534,0,0,356,0,0,0,0,356,0,0,7141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"weaponSpeed":1.9,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"490":{"randPropPoints":943,"weaponDamageMin":2083,"weaponDamageMax":3870,"stats":{"2":744,"3":496,"6":331,"11":331,"14":6628}},"494":{"randPropPoints":978,"weaponDamageMin":2163,"weaponDamageMax":4017,"stats":{"2":771,"3":514,"6":343,"11":343,"14":6874},"upgradeStep":1}}}, +{"id":85122,"name":"Malevolent Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,801,534,356,0,0,0,0,0,0,356,0,0,7141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"weaponSpeed":1.9,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"490":{"randPropPoints":943,"weaponDamageMin":2083,"weaponDamageMax":3870,"stats":{"2":744,"3":496,"4":331,"11":331,"14":6628}},"494":{"randPropPoints":978,"weaponDamageMin":2163,"weaponDamageMax":4017,"stats":{"2":771,"3":514,"4":343,"11":343,"14":6874},"upgradeStep":1}}}, +{"id":85123,"name":"Malevolent Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1246,1869,0,0,0,831,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"weaponSpeed":3,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"490":{"randPropPoints":2199,"weaponDamageMin":10140,"weaponDamageMax":15211,"stats":{"1":1156,"2":1735,"6":771,"11":771}},"494":{"randPropPoints":2283,"weaponDamageMin":10525,"weaponDamageMax":15788,"stats":{"1":1201,"2":1801,"6":800,"11":800},"upgradeStep":1}}}, +{"id":85124,"name":"Malevolent Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[694,0,1041,0,0,0,463,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,17810,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":251,"22":15628}},"490":{"randPropPoints":1225,"stats":{"0":644,"2":966,"6":429,"11":331,"22":17350}},"494":{"randPropPoints":1272,"stats":{"0":669,"2":1003,"6":446,"11":344,"22":17580},"upgradeStep":1}}}, +{"id":85125,"name":"Malevolent Gladiator's Barrier","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1041,694,0,0,463,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,17810,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":251,"22":15628}},"490":{"randPropPoints":1225,"stats":{"2":966,"3":644,"6":429,"11":331,"22":17350}},"494":{"randPropPoints":1272,"stats":{"2":1003,"3":669,"6":446,"11":344,"22":17580},"upgradeStep":1}}}, +{"id":85126,"name":"Malevolent Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1041,694,463,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,17810,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":251,"22":15628}},"490":{"randPropPoints":1225,"stats":{"2":966,"3":644,"4":429,"11":331,"22":17350}},"494":{"randPropPoints":1272,"stats":{"2":1003,"3":669,"4":446,"11":344,"22":17580},"upgradeStep":1}}}, +{"id":85127,"name":"Malevolent Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,801,534,0,0,356,0,0,0,0,356,0,0,7141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"weaponSpeed":1.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"490":{"randPropPoints":943,"weaponDamageMin":1754,"weaponDamageMax":3259,"stats":{"2":744,"3":496,"6":331,"11":331,"14":6628}},"494":{"randPropPoints":978,"weaponDamageMin":1821,"weaponDamageMax":3383,"stats":{"2":771,"3":514,"6":343,"11":343,"14":6874},"upgradeStep":1}}}, +{"id":85128,"name":"Malevolent Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85129,"name":"Malevolent Gladiator's Render","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[534,0,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"0":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"0":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85130,"name":"Malevolent Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85131,"name":"Malevolent Gladiator's Cleaver","icon":"inv_axe_1h_pvp410_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85132,"name":"Malevolent Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[534,0,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"0":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"0":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85133,"name":"Malevolent Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias1_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"weaponSpeed":1.8,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":4512,"weaponDamageMax":6769,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":4683,"weaponDamageMax":7026,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85134,"name":"Malevolent Gladiator's Slicer","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[534,0,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":6518,"weaponDamageMax":9777,"stats":{"0":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":6765,"weaponDamageMax":10148,"stats":{"0":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85135,"name":"Malevolent Gladiator's Quickblade","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,534,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"1":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"1":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85136,"name":"Malevolent Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[534,0,801,0,0,0,356,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"weaponSpeed":2.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"490":{"randPropPoints":943,"weaponDamageMin":5703,"weaponDamageMax":10592,"stats":{"0":496,"2":744,"6":331,"11":331}},"494":{"randPropPoints":978,"weaponDamageMin":5919,"weaponDamageMax":10994,"stats":{"0":514,"2":771,"6":343,"11":343},"upgradeStep":1}}}, +{"id":85137,"name":"Malevolent Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias1_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,801,534,0,0,356,0,0,0,0,356,0,0,7141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"weaponSpeed":1.6,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"490":{"randPropPoints":943,"weaponDamageMin":1754,"weaponDamageMax":3259,"stats":{"2":744,"3":496,"6":331,"11":331,"14":6628}},"494":{"randPropPoints":978,"weaponDamageMin":1821,"weaponDamageMax":3383,"stats":{"2":771,"3":514,"6":343,"11":343,"14":6874},"upgradeStep":1}}}, +{"id":85175,"name":"Crest of the Clan Lords","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,797,1195,0,0,0,570,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":570,"11":466,"22":2792},"isBase":true}}}, +{"id":85176,"name":"Hurricane Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,888,592,445,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":445,"11":309,"22":1389},"isBase":true}}}, +{"id":85177,"name":"Whirling Dervish Choker","icon":"inv_jewelry_necklace_82","type":2,"stats":[444,0,666,0,0,0,0,300,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"7":300,"11":288},"isBase":true}}}, +{"id":85178,"name":"Conflagrating Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,0,429,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":429,"7":337,"22":1213},"isBase":true}}}, +{"id":85179,"name":"Meteoric Greathelm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[557,0,1195,0,0,0,455,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Trial of the King"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":557,"2":1195,"6":455,"7":352,"22":3813},"isBase":true}}}, +{"id":85180,"name":"Glintrok Sollerets","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,888,592,395,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":395,"11":395,"22":3226},"isBase":true}}}, +{"id":85181,"name":"Iron Protector Talisman","icon":"inv_jewelry_trinket_13","type":12,"stats":[0,0,1126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":1126},"isBase":true}}}, +{"id":85182,"name":"Cloak of Cleansing Flame","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,666,444,0,0,232,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"6":232,"11":333,"22":970},"isBase":true}}}, +{"id":85183,"name":"Claws of Gekkan","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,341,512,0,0,0,241,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"6":241,"7":205},"isBase":true}}}, +{"id":85184,"name":"Hexxer's Lethargic Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,888,592,418,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Gekkan"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":418,"11":356,"22":2148},"isBase":true}}}, +{"id":85185,"name":"Ghostheart","icon":"inv_polearm_2h_pandung_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,797,1195,0,0,0,547,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"weaponSpeed":3.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"stats":{"1":797,"2":1195,"6":547,"7":505},"isBase":true}}}, +{"id":85186,"name":"Axebreaker Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[450,0,888,0,0,300,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":450,"2":888,"5":300,"10":592,"22":2933},"isBase":true}}}, +{"id":85187,"name":"Boots of Plummeting Death","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,592,888,0,0,0,0,385,401,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"7":385,"8":401,"22":1698},"isBase":true}}}, +{"id":85188,"name":"Blade Trap Signet","icon":"inv_jewelry_ring_135","type":11,"stats":[444,0,666,0,0,0,313,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"6":313,"8":267},"isBase":true}}}, +{"id":85189,"name":"Groundshaker Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,444,666,0,0,225,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"5":225,"7":337,"22":1503},"isBase":true}}}, +{"id":85190,"name":"Firescribe Dagger","icon":"inv_knife_1h_pandung_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,4561,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"weaponSpeed":1.8,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"stats":{"2":512,"3":341,"6":244,"7":200,"14":4561},"isBase":true}}}, +{"id":85191,"name":"Mindcapture Pendant","icon":"inv_jewelry_necklace_88","type":2,"stats":[0,0,666,444,322,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":322,"6":253},"isBase":true}}}, +{"id":85192,"name":"Soulbinder Treads","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,888,592,0,0,337,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":337,"7":429,"22":1334},"isBase":true}}}, +{"id":85193,"name":"Mind's Eye Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1195,797,404,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"4":404,"6":606,"22":4693},"isBase":true}}}, +{"id":85194,"name":"Regal Silk Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,592,395,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":395,"11":395,"22":1455},"isBase":true}}}, +{"id":85284,"name":"Firebird's Spaulders","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,493,700,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":452,"8":650,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":472,"8":674,"22":3069},"upgradeStep":1}}}, +{"id":85285,"name":"Firebird's Legguards","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":3580},"upgradeStep":1}}}, +{"id":85286,"name":"Firebird's Helmet","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":3325},"upgradeStep":1}}}, +{"id":85287,"name":"Firebird's Grips","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":2557},"upgradeStep":1}}}, +{"id":85288,"name":"Firebird's Cuirass","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":4092},"upgradeStep":1}}}, +{"id":85289,"name":"Firebird's Hauberk","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,850,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":783,"7":655,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":816,"7":683,"22":4092},"upgradeStep":1}}}, +{"id":85290,"name":"Firebird's Gloves","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":2557},"upgradeStep":1}}}, +{"id":85291,"name":"Firebird's Headpiece","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,672,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":615,"11":743,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":643,"11":776,"22":3325},"upgradeStep":1}}}, +{"id":85292,"name":"Firebird's Kilt","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,1977,1238,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"7":775,"11":775,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"7":806,"11":806,"22":3580},"upgradeStep":1}}}, +{"id":85293,"name":"Firebird's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1469,899,636,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":591,"11":535,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":613,"11":558,"22":3069},"upgradeStep":1}}}, +{"id":85294,"name":"Yaungol Slayer's Spaulders","icon":"inv_shoulder_mail_raidhunter_l_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,493,700,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":452,"8":650,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":472,"8":674,"22":3069},"upgradeStep":1}}}, +{"id":85295,"name":"Yaungol Slayer's Legguards","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":3580},"upgradeStep":1}}}, +{"id":85296,"name":"Yaungol Slayer's Headguard","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":3325},"upgradeStep":1}}}, +{"id":85297,"name":"Yaungol Slayer's Gloves","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":2557},"upgradeStep":1}}}, +{"id":85298,"name":"Yaungol Slayer's Tunic","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":4092},"upgradeStep":1}}}, +{"id":85299,"name":"Spaulders of the Thousandfold Blades","icon":"inv_shoulder_leather_raidrogue_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,493,700,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":452,"8":650,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":472,"8":674,"22":2206},"upgradeStep":1}}}, +{"id":85300,"name":"Legguards of the Thousandfold Blades","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":2573},"upgradeStep":1}}}, +{"id":85301,"name":"Helmet of the Thousandfold Blades","icon":"inv_helmet_leather_raidrogue_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":2389},"upgradeStep":1}}}, +{"id":85302,"name":"Gloves of the Thousandfold Blades","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":1838},"upgradeStep":1}}}, +{"id":85303,"name":"Tunic of the Thousandfold Blades","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":2941},"upgradeStep":1}}}, +{"id":85304,"name":"Eternal Blossom Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1469,899,636,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":591,"11":535,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":613,"11":558,"22":2206},"upgradeStep":1}}}, +{"id":85305,"name":"Eternal Blossom Vestment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,850,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":783,"7":655,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":816,"7":683,"22":2941},"upgradeStep":1}}}, +{"id":85306,"name":"Eternal Blossom Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1977,1238,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"7":775,"11":775,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"7":806,"11":806,"22":2573},"upgradeStep":1}}}, +{"id":85307,"name":"Eternal Blossom Cover","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,672,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":615,"11":743,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":643,"11":776,"22":2389},"upgradeStep":1}}}, +{"id":85308,"name":"Eternal Blossom Gloves","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":1838},"upgradeStep":1}}}, +{"id":85309,"name":"Eternal Blossom Spaulders","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,493,700,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":452,"8":650,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":472,"8":674,"22":2206},"upgradeStep":1}}}, +{"id":85310,"name":"Eternal Blossom Legguards","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":2573},"upgradeStep":1}}}, +{"id":85311,"name":"Eternal Blossom Headpiece","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":2389},"upgradeStep":1}}}, +{"id":85312,"name":"Eternal Blossom Grips","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":1838},"upgradeStep":1}}}, +{"id":85313,"name":"Eternal Blossom Raiment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":2941},"upgradeStep":1}}}, +{"id":85314,"name":"Shoulderguards of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,0,496,0,0,664,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"8":460,"11":611,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"8":478,"11":637,"22":4191},"upgradeStep":1}}}, +{"id":85315,"name":"Legguards of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,773,0,877,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"9":715,"11":812,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"9":744,"11":844,"22":4890},"upgradeStep":1}}}, +{"id":85316,"name":"Faceguard of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[762,0,1977,0,0,0,0,0,508,0,1238,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":690,"2":1835,"8":460,"10":1143,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":725,"2":1904,"8":483,"10":1190,"22":4540},"upgradeStep":1}}}, +{"id":85317,"name":"Handguards of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[744,0,1469,0,0,496,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":691,"2":1363,"5":460,"9":909,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":717,"2":1414,"5":478,"9":943,"22":3493},"upgradeStep":1}}}, +{"id":85318,"name":"Chestguard of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,588,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"5":538,"10":868,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"5":562,"10":903,"22":5588},"upgradeStep":1}}}, +{"id":85319,"name":"White Tiger Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,0,496,0,0,664,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"8":460,"11":611,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"8":478,"11":637,"22":4191},"upgradeStep":1}}}, +{"id":85320,"name":"White Tiger Legguards","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,773,0,877,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"9":715,"11":812,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"9":744,"11":844,"22":4890},"upgradeStep":1}}}, +{"id":85321,"name":"White Tiger Faceguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[762,0,1977,0,0,0,0,0,508,0,1238,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":690,"2":1835,"8":460,"10":1143,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":725,"2":1904,"8":483,"10":1190,"22":4540},"upgradeStep":1}}}, +{"id":85322,"name":"White Tiger Handguards","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[744,0,1469,0,0,496,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":691,"2":1363,"5":460,"9":909,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":717,"2":1414,"5":478,"9":943,"22":3493},"upgradeStep":1}}}, +{"id":85323,"name":"White Tiger Chestguard","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,588,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"5":538,"10":868,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"5":562,"10":903,"22":5588},"upgradeStep":1}}}, +{"id":85324,"name":"Shoulderguards of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,0,496,0,0,664,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"8":460,"11":611,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"8":478,"11":637,"22":4191},"upgradeStep":1}}}, +{"id":85325,"name":"Legguards of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,773,0,877,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"9":715,"11":812,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"9":744,"11":844,"22":4890},"upgradeStep":1}}}, +{"id":85326,"name":"Faceguard of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[762,0,1977,0,0,0,0,0,508,0,1238,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":690,"2":1835,"8":460,"10":1143,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":725,"2":1904,"8":483,"10":1190,"22":4540},"upgradeStep":1}}}, +{"id":85327,"name":"Handguards of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[744,0,1469,0,0,496,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":691,"2":1363,"5":460,"9":909,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":717,"2":1414,"5":478,"9":943,"22":3493},"upgradeStep":1}}}, +{"id":85328,"name":"Chestguard of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,588,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"5":538,"10":868,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"5":562,"10":903,"22":5588},"upgradeStep":1}}}, +{"id":85329,"name":"Pauldrons of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,653,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":606,"7":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":629,"7":549,"22":4191},"upgradeStep":1}}}, +{"id":85330,"name":"Legplates of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,731,0,0,903,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"8":675,"11":835,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"8":703,"11":868,"22":4890},"upgradeStep":1}}}, +{"id":85331,"name":"Gauntlets of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[979,0,1469,0,0,0,620,0,672,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":576,"8":624,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":597,"8":647,"22":3493},"upgradeStep":1}}}, +{"id":85332,"name":"Battleplate of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,863,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":795,"7":635,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":828,"7":663,"22":5588},"upgradeStep":1}}}, +{"id":85333,"name":"Helmet of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,799,0,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"5":735,"11":655,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"5":766,"11":686,"22":4540},"upgradeStep":1}}}, +{"id":85334,"name":"Pauldrons of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,653,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":606,"7":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":629,"7":549,"22":4191},"upgradeStep":1}}}, +{"id":85335,"name":"Greaves of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,731,0,0,903,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"8":675,"11":835,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"8":703,"11":868,"22":4890},"upgradeStep":1}}}, +{"id":85336,"name":"Helmet of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,799,0,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"5":735,"11":655,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"5":766,"11":686,"22":4540},"upgradeStep":1}}}, +{"id":85337,"name":"Gauntlets of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[979,0,1469,0,0,0,620,0,672,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":576,"8":624,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":597,"8":647,"22":3493},"upgradeStep":1}}}, +{"id":85338,"name":"Breastplate of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,863,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":795,"7":635,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":828,"7":663,"22":5588},"upgradeStep":1}}}, +{"id":85339,"name":"White Tiger Pauldrons","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,653,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":606,"7":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":629,"7":549,"22":4191},"upgradeStep":1}}}, +{"id":85340,"name":"White Tiger Legplates","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,731,0,0,903,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"8":675,"11":835,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"8":703,"11":868,"22":4890},"upgradeStep":1}}}, +{"id":85341,"name":"White Tiger Helmet","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,799,0,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"5":735,"11":655,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"5":766,"11":686,"22":4540},"upgradeStep":1}}}, +{"id":85342,"name":"White Tiger Gauntlets","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[979,0,1469,0,0,0,620,0,672,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":576,"8":624,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":597,"8":647,"22":3493},"upgradeStep":1}}}, +{"id":85343,"name":"White Tiger Battleplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,863,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":795,"7":635,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":828,"7":663,"22":5588},"upgradeStep":1}}}, +{"id":85344,"name":"White Tiger Mantle","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[0,0,1469,899,602,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":553,"6":561,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":576,"6":582,"22":4191},"upgradeStep":1}}}, +{"id":85345,"name":"White Tiger Greaves","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[0,0,1977,1238,0,0,852,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"6":788,"11":755,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"6":819,"11":785,"22":4890},"upgradeStep":1}}}, +{"id":85346,"name":"White Tiger Headguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,1977,1078,759,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":695,"11":695,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":726,"11":726,"22":4540},"upgradeStep":1}}}, +{"id":85347,"name":"White Tiger Gloves","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":3493},"upgradeStep":1}}}, +{"id":85348,"name":"White Tiger Breastplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1977,1158,837,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"7":675,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"7":704,"22":5588},"upgradeStep":1}}}, +{"id":85349,"name":"Firebird's Mantle","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1469,899,602,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":553,"6":561,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":576,"6":582,"22":3069},"upgradeStep":1}}}, +{"id":85350,"name":"Firebird's Legwraps","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,1977,1238,0,0,852,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"6":788,"11":755,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"6":819,"11":785,"22":3580},"upgradeStep":1}}}, +{"id":85351,"name":"Firebird's Faceguard","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1977,1078,759,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":695,"11":695,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":726,"11":726,"22":3325},"upgradeStep":1}}}, +{"id":85352,"name":"Firebird's Handwraps","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":2557},"upgradeStep":1}}}, +{"id":85353,"name":"Firebird's Tunic","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,837,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"7":675,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"7":704,"22":4092},"upgradeStep":1}}}, +{"id":85354,"name":"Eternal Blossom Mantle","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1469,899,602,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":553,"6":561,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":576,"6":582,"22":2206},"upgradeStep":1}}}, +{"id":85355,"name":"Eternal Blossom Robes","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,837,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"7":675,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"7":704,"22":2941},"upgradeStep":1}}}, +{"id":85356,"name":"Eternal Blossom Legwraps","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1977,1238,0,0,852,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"6":788,"11":755,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"6":819,"11":785,"22":2573},"upgradeStep":1}}}, +{"id":85357,"name":"Eternal Blossom Helm","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1977,1078,759,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":695,"11":695,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":726,"11":726,"22":2389},"upgradeStep":1}}}, +{"id":85358,"name":"Eternal Blossom Handwraps","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":1838},"upgradeStep":1}}}, +{"id":85359,"name":"Guardian Serpent Mantle","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1469,899,602,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":553,"6":561,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":576,"6":582,"22":1733},"upgradeStep":1}}}, +{"id":85360,"name":"Guardian Serpent Robes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,837,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"7":675,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"7":704,"22":2311},"upgradeStep":1}}}, +{"id":85361,"name":"Guardian Serpent Legwraps","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,852,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"6":788,"11":755,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"6":819,"11":785,"22":2022},"upgradeStep":1}}}, +{"id":85362,"name":"Guardian Serpent Cowl","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,1977,1078,759,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":695,"11":695,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":726,"11":726,"22":1877},"upgradeStep":1}}}, +{"id":85363,"name":"Guardian Serpent Handwraps","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":1444},"upgradeStep":1}}}, +{"id":85364,"name":"Guardian Serpent Gloves","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":1444},"upgradeStep":1}}}, +{"id":85365,"name":"Guardian Serpent Hood","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,672,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":615,"11":743,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":643,"11":776,"22":1877},"upgradeStep":1}}}, +{"id":85366,"name":"Guardian Serpent Leggings","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"7":775,"11":775,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"7":806,"11":806,"22":2022},"upgradeStep":1}}}, +{"id":85367,"name":"Guardian Serpent Raiment","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,850,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":783,"7":655,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":816,"7":683,"22":2311},"upgradeStep":1}}}, +{"id":85368,"name":"Guardian Serpent Shoulderguards","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1469,899,636,0,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":591,"11":535,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":613,"11":558,"22":1733},"upgradeStep":1}}}, +{"id":85369,"name":"Sha-Skin Gloves","icon":"inv_glove_cloth_raidwarlock_l_01","type":7,"armorType":1,"stats":[0,0,1469,979,0,573,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"5":532,"7":650,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"5":552,"7":674,"22":1444},"upgradeStep":1}}}, +{"id":85370,"name":"Sha-Skin Hood","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,672,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":615,"11":743,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":643,"11":776,"22":1877},"upgradeStep":1}}}, +{"id":85371,"name":"Sha-Skin Leggings","icon":"inv_pants_cloth_raidwarlock_l_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"7":775,"11":775,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"7":806,"11":806,"22":2022},"upgradeStep":1}}}, +{"id":85372,"name":"Sha-Skin Robes","icon":"inv_chest_cloth_raidwarlock_l_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,850,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":783,"7":655,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":816,"7":683,"22":2311},"upgradeStep":1}}}, +{"id":85373,"name":"Sha-Skin Mantle","icon":"inv_shoulder_cloth_raidwarlock_l_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,636,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":591,"11":535,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":613,"11":558,"22":1733},"upgradeStep":1}}}, +{"id":85374,"name":"Mantle of the Burning Scroll","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,636,0,0,0,0,0,583,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":591,"11":535,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":613,"11":558,"22":1733},"upgradeStep":1}}}, +{"id":85375,"name":"Robes of the Burning Scroll","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,850,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":783,"7":655,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":816,"7":683,"22":2311},"upgradeStep":1}}}, +{"id":85376,"name":"Leggings of the Burning Scroll","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"7":775,"11":775,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"7":806,"11":806,"22":2022},"upgradeStep":1}}}, +{"id":85377,"name":"Hood of the Burning Scroll","icon":"inv_helm_raidmage_l_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,672,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":615,"11":743,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":643,"11":776,"22":1877},"upgradeStep":1}}}, +{"id":85378,"name":"Gloves of the Burning Scroll","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,1469,979,0,573,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"5":532,"7":650,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"5":552,"7":674,"22":1444},"upgradeStep":1}}}, +{"id":85379,"name":"Eternal Blossom Tunic","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":2941},"upgradeStep":1}}}, +{"id":85380,"name":"Eternal Blossom Handguards","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":1838},"upgradeStep":1}}}, +{"id":85381,"name":"Eternal Blossom Headguard","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":2389},"upgradeStep":1}}}, +{"id":85382,"name":"Eternal Blossom Breeches","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":2573},"upgradeStep":1}}}, +{"id":85383,"name":"Eternal Blossom Shoulderguards","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,0,496,664,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"8":460,"9":611,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"8":478,"9":637,"22":2206},"upgradeStep":1}}}, +{"id":85384,"name":"Red Crane Shoulderguards","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,0,496,664,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"8":460,"9":611,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"8":478,"9":637,"22":2206},"upgradeStep":1}}}, +{"id":85385,"name":"Red Crane Legguards","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":2573},"upgradeStep":1}}}, +{"id":85386,"name":"Red Crane Crown","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":2389},"upgradeStep":1}}}, +{"id":85387,"name":"Red Crane Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":1838},"upgradeStep":1}}}, +{"id":85388,"name":"Red Crane Chestguard","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":2941},"upgradeStep":1}}}, +{"id":85389,"name":"Red Crane Handwraps","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1469,979,573,0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":532,"7":650,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":552,"7":674,"22":1838},"upgradeStep":1}}}, +{"id":85390,"name":"Red Crane Helm","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,0,1977,1078,759,0,0,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":695,"11":695,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":726,"11":726,"22":2389},"upgradeStep":1}}}, +{"id":85391,"name":"Red Crane Legwraps","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,0,1977,1238,0,0,852,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"6":788,"11":755,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"6":819,"11":785,"22":2573},"upgradeStep":1}}}, +{"id":85392,"name":"Red Crane Vest","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,837,0,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"7":675,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"7":704,"22":2941},"upgradeStep":1}}}, +{"id":85393,"name":"Red Crane Mantle","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,0,1469,899,602,0,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":553,"6":561,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":576,"6":582,"22":2206},"upgradeStep":1}}}, +{"id":85394,"name":"Red Crane Tunic","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,839,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":775,"11":695,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":806,"11":726,"22":2941},"upgradeStep":1}}}, +{"id":85395,"name":"Red Crane Grips","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,691,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"6":546,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"6":567,"22":1838},"upgradeStep":1}}}, +{"id":85396,"name":"Red Crane Headpiece","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,715,0,0,785,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":655,"11":720,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":684,"11":751,"22":2389},"upgradeStep":1}}}, +{"id":85397,"name":"Red Crane Leggings","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"sources":[{"drop":{"otherName":"Sha of Anger"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"5":580,"7":890,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"5":603,"7":925,"22":2573},"upgradeStep":1}}}, +{"id":85398,"name":"Red Crane Spaulders","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,493,700,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":452,"8":650,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":472,"8":674,"22":2206},"upgradeStep":1}}}, +{"id":85776,"name":"Wodin's Mantid Shanker","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":2,"stats":[0,222,334,0,0,0,148,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2024,"weaponDamageMax":3037,"weaponSpeed":1.8,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2024,"weaponDamageMax":3037,"stats":{"1":222,"2":334,"6":148,"11":148},"isBase":true}}}, +{"id":85777,"name":"Ancient Pandaren Mining Pick","icon":"inv_pick_05","type":13,"weaponType":1,"handType":2,"stats":[222,0,334,0,0,0,0,148,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"0":222,"2":334,"7":148,"11":148},"isBase":true}}}, +{"id":85787,"name":"Chestguard of Earthen Harmony","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,934,1641,0,0,0,561,0,0,0,0,708,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":430,"11":553,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":514,"11":652,"22":3777}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":537,"11":680,"22":3830},"upgradeStep":1}}}, +{"id":85788,"name":"Chestguard of Nemeses","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,749,0,0,0,0,821,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":476,"11":513,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":691,"11":756,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":720,"11":788,"22":2941},"upgradeStep":1}}}, +{"id":85789,"name":"Contender's Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,592,888,0,0,0,356,0,0,0,0,418,0,0,0,0,236,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":356,"11":418,"16":236,"22":1933},"isBase":true}}}, +{"id":85790,"name":"Contender's Dragonscale Boots","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,592,888,0,0,0,356,0,0,0,0,418,0,0,0,0,236,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":356,"11":418,"16":236,"22":2363},"isBase":true}}}, +{"id":85791,"name":"Contender's Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,444,666,0,0,0,300,0,0,0,0,288,0,0,0,0,177,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"6":300,"11":288,"16":177,"22":1503},"isBase":true}}}, +{"id":85792,"name":"Contender's Dragonscale Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,797,1195,0,0,0,570,0,0,0,0,466,0,0,0,0,318,0,0,0,0,0,3436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":570,"11":466,"16":318,"22":3436},"isBase":true}}}, +{"id":85793,"name":"Contender's Dragonscale Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,592,888,0,0,0,375,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":375,"11":406,"16":236,"22":2148},"isBase":true}}}, +{"id":85794,"name":"Contender's Dragonscale Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,797,1195,0,0,0,570,0,0,0,0,466,0,0,0,0,318,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":570,"11":466,"16":318,"22":2792},"isBase":true}}}, +{"id":85795,"name":"Contender's Dragonscale Leggings","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,797,1195,0,0,0,479,0,0,0,0,562,0,0,0,0,318,0,0,0,0,0,3007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":479,"11":562,"16":318,"22":3007},"isBase":true}}}, +{"id":85796,"name":"Contender's Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,592,888,0,0,0,385,0,0,0,0,401,0,0,0,0,236,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":385,"11":401,"16":236,"22":2577},"isBase":true}}}, +{"id":85797,"name":"Contender's Leather Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,592,888,0,0,0,423,0,0,0,0,346,0,0,0,0,236,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":423,"11":346,"16":236,"22":1389},"isBase":true}}}, +{"id":85798,"name":"Contender's Leather Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,592,888,0,0,0,375,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":375,"11":406,"16":236,"22":1698},"isBase":true}}}, +{"id":85799,"name":"Contender's Leather Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,444,666,0,0,0,300,0,0,0,0,288,0,0,0,0,177,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"6":300,"11":288,"16":177,"22":1081},"isBase":true}}}, +{"id":85800,"name":"Contender's Leather Chestguard","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,797,1195,0,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,2470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":466,"11":570,"16":318,"22":2470},"isBase":true}}}, +{"id":85801,"name":"Contender's Leather Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,592,888,0,0,0,418,0,0,0,0,356,0,0,0,0,236,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":418,"11":356,"16":236,"22":1544},"isBase":true}}}, +{"id":85802,"name":"Contender's Leather Helm","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,797,1195,0,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":466,"11":570,"16":318,"22":2007},"isBase":true}}}, +{"id":85803,"name":"Contender's Leather Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,797,1195,0,0,0,492,0,0,0,0,555,0,0,0,0,318,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":797,"2":1195,"6":492,"11":555,"16":318,"22":2161},"isBase":true}}}, +{"id":85804,"name":"Contender's Leather Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,592,888,0,0,0,412,0,0,0,0,365,0,0,0,0,236,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"6":412,"11":365,"16":236,"22":1852},"isBase":true}}}, +{"id":85805,"name":"Contender's Scale Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,888,592,0,0,418,0,0,0,0,356,0,0,0,0,236,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":418,"11":356,"16":236,"22":1933},"isBase":true}}}, +{"id":85806,"name":"Contender's Scale Boots","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,888,592,0,0,365,0,0,0,0,412,0,0,0,0,236,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":365,"11":412,"16":236,"22":2363},"isBase":true}}}, +{"id":85807,"name":"Contender's Scale Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,666,444,0,0,317,0,0,0,0,260,0,0,0,0,177,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"6":317,"11":260,"16":177,"22":1503},"isBase":true}}}, +{"id":85808,"name":"Contender's Scale Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1195,797,0,0,562,0,0,0,0,479,0,0,0,0,318,0,0,0,0,0,3436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":562,"11":479,"16":318,"22":3436},"isBase":true}}}, +{"id":85809,"name":"Contender's Scale Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,888,592,0,0,356,0,0,0,0,418,0,0,0,0,236,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":356,"11":418,"16":236,"22":2148},"isBase":true}}}, +{"id":85810,"name":"Contender's Scale Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,1195,797,0,0,570,0,0,0,0,466,0,0,0,0,318,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":570,"11":466,"16":318,"22":2792},"isBase":true}}}, +{"id":85811,"name":"Contender's Scale Leggings","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,1195,797,0,0,562,0,0,0,0,479,0,0,0,0,318,0,0,0,0,0,3007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":562,"11":479,"16":318,"22":3007},"isBase":true}}}, +{"id":85812,"name":"Contender's Scale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,888,592,0,0,385,0,0,0,0,401,0,0,0,0,236,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":385,"11":401,"16":236,"22":2577},"isBase":true}}}, +{"id":85813,"name":"Contender's Wyrmhide Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,888,592,0,0,375,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":375,"11":406,"16":236,"22":1389},"isBase":true}}}, +{"id":85814,"name":"Contender's Wyrmhide Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,888,592,0,0,423,0,0,0,0,346,0,0,0,0,236,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":423,"11":346,"16":236,"22":1698},"isBase":true}}}, +{"id":85815,"name":"Contender's Wyrmhide Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,666,444,0,0,309,0,0,0,0,274,0,0,0,0,177,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"6":309,"11":274,"16":177,"22":1081},"isBase":true}}}, +{"id":85816,"name":"Contender's Wyrmhide Chestguard","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1195,797,0,0,547,0,0,0,0,505,0,0,0,0,318,0,0,0,0,0,2470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":547,"11":505,"16":318,"22":2470},"isBase":true}}}, +{"id":85817,"name":"Contender's Wyrmhide Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,888,592,0,0,423,0,0,0,0,346,0,0,0,0,236,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":423,"11":346,"16":236,"22":1544},"isBase":true}}}, +{"id":85818,"name":"Contender's Wyrmhide Helm","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,1195,797,0,0,518,0,0,0,0,539,0,0,0,0,318,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":518,"11":539,"16":318,"22":2007},"isBase":true}}}, +{"id":85819,"name":"Contender's Wyrmhide Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,1195,797,0,0,492,0,0,0,0,555,0,0,0,0,318,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":492,"11":555,"16":318,"22":2161},"isBase":true}}}, +{"id":85820,"name":"Contender's Wyrmhide Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,888,592,0,0,412,0,0,0,0,365,0,0,0,0,236,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":412,"11":365,"16":236,"22":1852},"isBase":true}}}, +{"id":85821,"name":"Fists of Lightning","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1469,899,0,0,0,612,0,0,0,607,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":398,"11":384,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":567,"11":559,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":589,"11":582,"22":2557},"upgradeStep":1}}}, +{"id":85822,"name":"Gloves of Earthen Harmony","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,733,1219,0,0,0,448,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":342,"11":440,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"6":410,"11":510,"22":2361}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"6":429,"11":530,"22":2394},"upgradeStep":1}}}, +{"id":85823,"name":"Greyshadow Chestguard","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,934,1641,0,0,0,711,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":568,"11":432,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":660,"11":527,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":685,"11":553,"22":2752},"upgradeStep":1}}}, +{"id":85824,"name":"Greyshadow Gloves","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,733,1219,0,0,0,368,0,0,0,0,550,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":262,"11":440,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"6":330,"11":510,"22":1697}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"6":349,"11":530,"22":1720},"upgradeStep":1}}}, +{"id":85825,"name":"Lifekeeper's Gloves","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1219,733,478,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":366,"11":412,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":438,"11":478,"22":2361}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":458,"11":496,"22":2394},"upgradeStep":1}}}, +{"id":85826,"name":"Lifekeeper's Robe","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1641,934,693,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"7":440,"22":3568}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":643,"7":537,"22":3777}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":668,"7":563,"22":3830},"upgradeStep":1}}}, +{"id":85827,"name":"Liferuned Leather Gloves","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1469,899,592,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":366,"7":412,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":544,"7":576,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":567,"7":597,"22":1838},"upgradeStep":1}}}, +{"id":85828,"name":"Murderer's Gloves","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,0,623,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":400,"11":382,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":575,"11":551,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":598,"11":573,"22":1838},"upgradeStep":1}}}, +{"id":85829,"name":"Nightfire Robe","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,772,0,0,0,0,0,0,817,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":472,"11":528,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":708,"11":755,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":739,"11":785,"22":2941},"upgradeStep":1}}}, +{"id":85830,"name":"Raiment of Blood and Bone","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,917,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":609,"11":380,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":852,"11":595,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":884,"11":624,"22":4092},"upgradeStep":1}}}, +{"id":85831,"name":"Raven Lord's Gloves","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,979,1469,0,0,0,700,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":464,"7":380,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"6":650,"7":532,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"6":674,"7":552,"22":2557},"upgradeStep":1}}}, +{"id":85832,"name":"Misthide Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1051},"isBase":true}}}, +{"id":85833,"name":"Misthide Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1285},"isBase":true}}}, +{"id":85834,"name":"Misthide Bracers","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"22":818},"isBase":true}}}, +{"id":85835,"name":"Misthide Chestguard","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":1869},"isBase":true}}}, +{"id":85836,"name":"Misthide Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1168},"isBase":true}}}, +{"id":85837,"name":"Misthide Helm","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":1519},"isBase":true}}}, +{"id":85838,"name":"Misthide Leggings","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":1635},"isBase":true}}}, +{"id":85839,"name":"Misthide Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1402},"isBase":true}}}, +{"id":85840,"name":"Stormbreaker Chestguard","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,697,892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":408,"7":592,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":635,"7":828,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":665,"7":859,"22":4092},"upgradeStep":1}}}, +{"id":85841,"name":"Stormscale Belt","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1496},"isBase":true}}}, +{"id":85842,"name":"Stormscale Boots","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1828},"isBase":true}}}, +{"id":85843,"name":"Stormscale Bracers","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"22":1163},"isBase":true}}}, +{"id":85844,"name":"Stormscale Chestguard","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":2659},"isBase":true}}}, +{"id":85845,"name":"Stormscale Gloves","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1662},"isBase":true}}}, +{"id":85846,"name":"Stormscale Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":2160},"isBase":true}}}, +{"id":85847,"name":"Stormscale Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":819,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"22":2327},"isBase":true}}}, +{"id":85848,"name":"Stormscale Shoulders","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"22":1994},"isBase":true}}}, +{"id":85849,"name":"Wildblood Gloves","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1219,733,488,0,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":390,"7":378,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":453,"7":452,"22":1697}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":471,"7":473,"22":1720},"upgradeStep":1}}}, +{"id":85850,"name":"Wildblood Vest","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,0,1641,934,577,0,0,0,0,0,0,692,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":446,"11":537,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":530,"11":636,"22":2715}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":553,"11":664,"22":2752},"upgradeStep":1}}}, +{"id":85851,"name":"Misthide Drape","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":496,"ilvl":393,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"393":{"randPropPoints":496,"stats":{"22":753},"isBase":true}}}, +{"id":85852,"name":"Quick Strike Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,444,666,0,0,0,267,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"6":267,"11":313,"22":970},"isBase":true}}}, +{"id":85853,"name":"Stormscale Drape","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[444,0,666,0,0,281,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"5":281,"11":305,"22":970},"isBase":true}}}, +{"id":85922,"name":"Beads of the Mogu'shi","icon":"inv_jewelry_necklace_96","type":2,"stats":[523,0,1032,0,0,0,0,0,348,688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488}},"489":{"randPropPoints":1214,"stats":{"0":485,"2":958,"8":323,"9":638}},"493":{"randPropPoints":1260,"stats":{"0":504,"2":994,"8":336,"9":663},"upgradeStep":1}}}, +{"id":85923,"name":"Stonemaw Armguards","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,688,1032,0,0,0,472,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":335,"7":309,"22":1561}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"6":438,"7":405,"22":1727}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"6":455,"7":420,"22":1750},"upgradeStep":1}}}, +{"id":85924,"name":"Dagger of the Seven Stars","icon":"inv_knife_1h_pandaraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,529,794,0,0,309,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":4214,"weaponDamageMax":7827,"weaponSpeed":1.8,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"5":219,"7":268}},"489":{"randPropPoints":934,"weaponDamageMin":3911,"weaponDamageMax":7265,"stats":{"1":491,"2":737,"5":287,"7":351}},"493":{"randPropPoints":969,"weaponDamageMin":4060,"weaponDamageMax":7541,"stats":{"1":510,"2":764,"5":298,"7":364},"upgradeStep":1}}}, +{"id":85925,"name":"Jasper Clawfeet","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[837,0,1376,0,0,0,616,0,0,0,0,490,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":423,"11":338,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":771,"2":1277,"6":569,"11":452,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":804,"2":1325,"6":592,"11":471,"22":3756},"upgradeStep":1}}}, +{"id":85926,"name":"Stoneflesh Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,1075,1852,0,0,0,803,0,642,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":545,"8":432,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"6":740,"8":590,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"6":771,"8":616,"22":2516},"upgradeStep":1}}}, +{"id":85975,"name":"Heavenly Jade Greatboots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1376,837,0,0,519,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":358,"7":410,"22":3350}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"6":480,"7":553,"22":3707}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"6":499,"7":575,"22":3756},"upgradeStep":1}}}, +{"id":85976,"name":"Sixteen-Fanged Crown","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,0,1852,995,716,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":2899}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":656,"7":625,"22":3208}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":685,"7":653,"22":3250},"upgradeStep":1}}}, +{"id":85977,"name":"Stonebound Cinch","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1376,757,531,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":691,"4":488,"7":488,"22":1596}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":724,"4":509,"7":509,"22":1617},"upgradeStep":1}}}, +{"id":85978,"name":"Jade Dust Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1852,1075,702,0,0,0,0,0,0,768,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":474,"11":520,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":646,"11":707,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":674,"11":737,"22":1976},"upgradeStep":1}}}, +{"id":85979,"name":"Cape of Three Lanterns","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1032,688,425,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1007}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":394,"6":444,"22":1115}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":409,"6":461,"22":1129},"upgradeStep":1}}}, +{"id":85980,"name":"Wildfire Worldwalkers","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,837,1376,0,0,0,625,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":428,"8":327,"22":2453}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"6":577,"8":439,"22":2714}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"6":600,"8":457,"22":2750},"upgradeStep":1}}}, +{"id":85982,"name":"Tomb Raider's Girdle","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,757,1376,0,0,0,0,567,471,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":378,"8":310,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":691,"2":1277,"7":521,"8":432,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":724,"2":1325,"7":543,"8":451,"22":1617},"upgradeStep":1}}}, +{"id":85983,"name":"Bracers of Six Oxen","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[688,0,1032,0,0,0,0,0,0,459,459,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"9":426,"10":426,"22":2359}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"9":442,"10":442,"22":2390},"upgradeStep":1}}}, +{"id":85984,"name":"Nullification Greathelm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,766,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":502,"7":384,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"6":701,"7":534,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"6":733,"7":558,"22":4439},"upgradeStep":1}}}, +{"id":85985,"name":"Cloak of Peacock Feathers","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[688,0,1032,0,0,0,492,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"8":285,"22":1007}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"6":457,"8":373,"22":1115}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"6":474,"8":388,"22":1129},"upgradeStep":1}}}, +{"id":85986,"name":"Amulet of Seven Curses","icon":"inv_jewelry_necklace_99","type":2,"stats":[0,0,1032,688,0,479,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"6":301}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":444,"6":394}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":461,"6":409},"upgradeStep":1}}}, +{"id":85987,"name":"Chain of Shadow","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1376,757,541,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"6":342,"22":2007}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":691,"4":496,"6":473,"22":2221}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":724,"4":518,"6":494,"22":2250},"upgradeStep":1}}}, +{"id":85988,"name":"Legplates of Sagacious Shadows","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1852,1075,791,0,0,662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":537,"7":446,"22":4263}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":729,"7":609,"22":4717}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":759,"7":635,"22":4780},"upgradeStep":1}}}, +{"id":85989,"name":"Hood of Cursed Dreams","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,0,1852,995,626,0,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":416,"7":481,"22":2083}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":574,"7":676,"22":2305}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":600,"7":707,"22":2336},"upgradeStep":1}}}, +{"id":85990,"name":"Imperial Ghostbinder's Robes","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1852,1075,0,0,780,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":529,"11":460,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"6":718,"11":627,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"6":748,"11":654,"22":2259},"upgradeStep":1}}}, +{"id":85991,"name":"Soulgrasp Choker","icon":"inv_jewelry_necklace_110","type":2,"stats":[688,0,1032,0,0,436,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":309,"7":335}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"5":405,"7":438}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"5":420,"7":455},"upgradeStep":1}}}, +{"id":85992,"name":"Sollerets of Spirit Splitting","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[837,0,1376,0,0,0,0,0,0,549,0,582,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":380,"11":398,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":771,"2":1277,"9":507,"11":536,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":804,"2":1325,"9":528,"11":558,"22":3756},"upgradeStep":1}}}, +{"id":85993,"name":"Fetters of Death","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,757,1376,0,0,413,0,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":269,"11":402,"22":2007}},"489":{"randPropPoints":1619,"stats":{"1":691,"2":1277,"5":378,"11":552,"22":2221}},"493":{"randPropPoints":1680,"stats":{"1":724,"2":1325,"5":395,"11":576,"22":2250},"upgradeStep":1}}}, +{"id":85994,"name":"Gara'kal, Fist of the Spiritbinder","icon":"inv_hand_1h_pandaraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,529,794,0,0,0,0,373,0,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":6087,"weaponDamageMax":11306,"weaponSpeed":2.6,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"7":265,"11":225}},"489":{"randPropPoints":934,"weaponDamageMin":5650,"weaponDamageMax":10494,"stats":{"1":491,"2":737,"7":347,"11":295}},"493":{"randPropPoints":969,"weaponDamageMin":5864,"weaponDamageMax":10892,"stats":{"1":510,"2":764,"7":360,"11":306},"upgradeStep":1}}}, +{"id":85995,"name":"Netherrealm Shoulderpads","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,837,1376,0,0,0,0,0,657,0,0,425,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":454,"11":289,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"8":607,"11":391,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"8":631,"11":408,"22":2156},"upgradeStep":1}}}, +{"id":85996,"name":"Eye of the Ancient Spirit","icon":"inv_shield_pandaraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1032,688,425,0,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"7":339,"22":15628}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":394,"7":444,"22":17293}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":409,"7":461,"22":17523},"upgradeStep":1}}}, +{"id":85997,"name":"Sandals of the Severed Soul","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,1376,837,533,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"6":414,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":491,"6":552,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":512,"6":574,"22":1553},"upgradeStep":1}}}, +{"id":86027,"name":"Bindings of Ancient Spirits","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,1032,688,459,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":426,"7":426,"22":2359}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":442,"7":442,"22":2390},"upgradeStep":1}}}, +{"id":86038,"name":"Circuit of the Frail Soul","icon":"inv_jewelry_ring_146","type":11,"stats":[0,0,1032,688,479,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"6":301}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":444,"6":394}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":461,"6":409},"upgradeStep":1}}}, +{"id":86039,"name":"Spaulders of the Divided Mind","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,0,1376,837,581,0,0,0,0,0,0,556,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"11":382,"22":1923}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":536,"11":513,"22":2128}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":558,"11":534,"22":2156},"upgradeStep":1}}}, +{"id":86040,"name":"Leggings of Imprisoned Will","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1852,1075,603,0,0,0,0,0,0,826,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":404,"11":562,"22":3122}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":554,"11":761,"22":3454}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":578,"11":793,"22":3500},"upgradeStep":1}}}, +{"id":86041,"name":"Shadowsummoner Spaulders","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1376,837,0,0,556,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"7":400,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"6":513,"7":536,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"6":534,"7":558,"22":1694},"upgradeStep":1}}}, +{"id":86042,"name":"Jade Charioteer Figurine","icon":"ability_mount_ridinghorse","type":12,"stats":[1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"489":{"randPropPoints":1619,"stats":{"0":1079}},"493":{"randPropPoints":1680,"stats":{"0":1120},"upgradeStep":1}}}, +{"id":86043,"name":"Jade Bandit Figurine","icon":"ability_rogue_honoramongstthieves","type":12,"stats":[0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"489":{"randPropPoints":1619,"stats":{"1":1079}},"493":{"randPropPoints":1680,"stats":{"1":1120},"upgradeStep":1}}}, +{"id":86044,"name":"Jade Magistrate Figurine","icon":"inv_hammer_29","type":12,"stats":[0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"489":{"randPropPoints":1619,"stats":{"3":1079}},"493":{"randPropPoints":1680,"stats":{"3":1120},"upgradeStep":1}}}, +{"id":86045,"name":"Jade Courtesan Figurine","icon":"spell_brokenheart","type":12,"stats":[0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"489":{"randPropPoints":1619,"stats":{"3":1079}},"493":{"randPropPoints":1680,"stats":{"3":1120},"upgradeStep":1}}}, +{"id":86046,"name":"Jade Warlord Figurine","icon":"inv_sword_139","type":12,"stats":[0,0,1744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"489":{"randPropPoints":1619,"stats":{"2":1619}},"493":{"randPropPoints":1680,"stats":{"2":1680},"upgradeStep":1}}}, +{"id":86047,"name":"Amulet of the Hidden Kings","icon":"inv_jewelry_necklace_102","type":2,"stats":[0,688,1032,0,0,0,0,479,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"7":444,"8":394}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"7":461,"8":409},"upgradeStep":1}}}, +{"id":86071,"name":"Screaming Tiger, Qiang's Unbreakable Polearm","icon":"inv_polearm_2h_pandaraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1235,1852,0,0,0,0,626,0,0,0,938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":12988,"weaponDamageMax":19483,"weaponSpeed":3.6,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"7":443,"11":665}},"489":{"randPropPoints":2179,"weaponDamageMin":12055,"weaponDamageMax":18084,"stats":{"1":1146,"2":1719,"7":580,"11":871}},"493":{"randPropPoints":2262,"weaponDamageMin":12513,"weaponDamageMax":18770,"stats":{"1":1190,"2":1784,"7":603,"11":904},"upgradeStep":1}}}, +{"id":86075,"name":"Steelskin, Qiang's Impervious Shield","icon":"inv_shield_pandaraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[688,0,1032,0,0,0,0,0,0,447,466,0,0,0,0,0,0,0,0,0,0,0,17752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":15628}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"9":415,"10":432,"22":17293}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"9":431,"10":448,"22":17523},"upgradeStep":1}}}, +{"id":86076,"name":"Breastplate of the Kings' Guard","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1075,0,1852,0,0,0,0,803,0,0,0,642,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"11":432,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":986,"2":1719,"7":740,"11":590,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1030,"2":1784,"7":771,"11":616,"22":5463},"upgradeStep":1}}}, +{"id":86080,"name":"Shoulderguards of the Unflanked","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[617,0,1376,0,0,425,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":567,"2":1277,"5":391,"10":811,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":591,"2":1325,"5":408,"10":844,"22":4097},"upgradeStep":1}}}, +{"id":86081,"name":"Subetai's Pillaging Leggings","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,1075,1852,0,0,0,768,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":520,"7":474,"22":3122}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"6":707,"7":646,"22":3454}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"6":737,"7":674,"22":3500},"upgradeStep":1}}}, +{"id":86082,"name":"Arrow Breaking Windcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,688,1032,0,0,0,0,380,505,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"8":358,"22":1007}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"7":353,"8":468,"22":1115}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"7":367,"8":486,"22":1129},"upgradeStep":1}}}, +{"id":86083,"name":"Zian's Choker of Coalesced Shadow","icon":"inv_jewelry_necklace_110","type":2,"stats":[0,0,1032,688,485,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":451,"11":384}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":468,"11":398},"upgradeStep":1}}}, +{"id":86084,"name":"Meng's Treads of Insanity","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1376,837,0,0,0,518,0,0,0,606,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":420,"22":2453}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"7":478,"11":561,"22":2714}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"7":497,"11":583,"22":2750},"upgradeStep":1}}}, +{"id":86086,"name":"Girdle of Delirious Visions","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1376,757,456,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":300,"6":384,"22":2741}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":691,"4":418,"6":529,"22":3033}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":724,"4":437,"6":552,"22":3073},"upgradeStep":1}}}, +{"id":86110,"name":"Stolen Necklace of Precision","icon":"inv_misc_necklacea11","type":2,"stats":[0,332,498,0,0,0,0,0,194,0,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"1":332,"2":498,"8":194,"11":238},"isBase":true}}}, +{"id":86111,"name":"Stolen Necklace of Accuracy","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,498,332,0,216,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"2":498,"3":332,"5":216,"11":225},"isBase":true}}}, +{"id":86112,"name":"Stolen Amulet of Wisdom","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,498,332,247,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"2":498,"3":332,"4":247,"7":179},"isBase":true}}}, +{"id":86113,"name":"Stolen Amulet of Might","icon":"inv_misc_necklace14","type":2,"stats":[332,0,498,0,0,0,0,250,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"0":332,"2":498,"7":250,"8":173},"isBase":true}}}, +{"id":86114,"name":"Stolen Necklace of Fortitude","icon":"inv_misc_necklacea3","type":2,"stats":[332,0,498,0,0,0,0,0,0,238,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":632,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":632,"stats":{"0":332,"2":498,"9":238,"10":194},"isBase":true}}}, +{"id":86115,"name":"Swashbuckling Boots","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,443,665,0,0,0,296,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"6":296,"7":296,"22":1497},"isBase":true}}}, +{"id":86116,"name":"Agile Seafarer's Jackboots","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,443,665,0,0,266,0,0,0,0,0,313,0,0,0,0,0,0,0,0,0,0,2083,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"1":443,"2":665,"5":266,"11":313,"22":2083},"isBase":true}}}, +{"id":86117,"name":"Seafarer's Treads of Precision","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,665,443,0,0,0,296,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":296,"11":296,"22":1176},"isBase":true}}}, +{"id":86118,"name":"Seafaring Advisor's Slippers","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,665,443,0,0,0,309,0,0,0,274,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"7":309,"11":274,"22":1176},"isBase":true}}}, +{"id":86119,"name":"Seafarer's Boots of Meditation","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":296,"11":296,"22":1497},"isBase":true}}}, +{"id":86120,"name":"Seafaring Sabatons of Meditation","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,0,665,443,317,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2083,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"4":317,"11":259,"22":2083},"isBase":true}}}, +{"id":86121,"name":"Radiant Seafarer's Boots","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"2":665,"3":443,"6":296,"11":296,"22":2845},"isBase":true}}}, +{"id":86122,"name":"Plankwalking Greaves","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[443,0,665,0,0,0,0,274,0,0,0,309,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"7":274,"11":309,"22":2845},"isBase":true}}}, +{"id":86123,"name":"Seafarer's Sturdy Boots","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[443,0,665,0,0,0,0,0,0,274,0,309,0,0,0,0,0,0,0,0,0,0,2845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":843,"stats":{"0":443,"2":665,"9":274,"11":309,"22":2845},"isBase":true}}}, +{"id":86124,"name":"Pandaren Fishing Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,597,895,0,0,0,0,410,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"weaponDamageMin":6279,"weaponDamageMax":9420,"weaponSpeed":3.6,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"weaponDamageMin":6279,"weaponDamageMax":9420,"stats":{"1":597,"2":895,"7":410,"11":378},"isBase":true}}}, +{"id":86127,"name":"Bracers of Dark Thoughts","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,1032,688,425,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1122}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":394,"6":444,"22":1241}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":409,"6":461,"22":1258},"upgradeStep":1}}}, +{"id":86128,"name":"Undying Shadow Grips","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1376,837,0,0,0,581,0,0,0,556,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"7":536,"11":513,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"7":558,"11":534,"22":1412},"upgradeStep":1}}}, +{"id":86129,"name":"Hood of Blind Eyes","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1852,995,740,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":496,"6":424,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":680,"6":601,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":709,"6":629,"22":1835},"upgradeStep":1}}}, +{"id":86130,"name":"Elegion, the Fanged Crescent","icon":"inv_axe_1h_pandaraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[529,0,794,0,0,368,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":6087,"weaponDamageMax":11306,"weaponSpeed":2.6,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":261,"8":231}},"489":{"randPropPoints":934,"weaponDamageMin":5650,"weaponDamageMax":10494,"stats":{"0":491,"2":737,"5":342,"8":303}},"493":{"randPropPoints":969,"weaponDamageMin":5864,"weaponDamageMax":10892,"stats":{"0":510,"2":764,"5":355,"8":315},"upgradeStep":1}}}, +{"id":86131,"name":"Vial of Dragon's Blood","icon":"inv_jewelry_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"489":{"randPropPoints":1619,"stats":{"11":1079}},"493":{"randPropPoints":1680,"stats":{"11":1120},"upgradeStep":1}}}, +{"id":86132,"name":"Bottle of Infinite Stars","icon":"inv_jewelry_trinket_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"489":{"randPropPoints":1619,"stats":{"11":1079}},"493":{"randPropPoints":1680,"stats":{"11":1120},"upgradeStep":1}}}, +{"id":86133,"name":"Light of the Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":12,"stats":[0,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"489":{"randPropPoints":1619,"stats":{"7":1079}},"493":{"randPropPoints":1680,"stats":{"7":1120},"upgradeStep":1}}}, +{"id":86134,"name":"Star-Stealer Waistguard","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[757,0,1376,0,0,0,0,0,0,576,0,456,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":384,"11":300,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":691,"2":1277,"9":529,"11":418,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":724,"2":1325,"9":552,"11":437,"22":3073},"upgradeStep":1}}}, +{"id":86135,"name":"Starcrusher Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[837,0,1376,0,0,526,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":361,"7":412,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":771,"2":1277,"5":486,"7":553,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":804,"2":1325,"5":505,"7":575,"22":3414},"upgradeStep":1}}}, +{"id":86136,"name":"Chestguard of Total Annihilation","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,1075,1852,0,0,0,662,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":446,"7":537,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"6":609,"7":729,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"6":635,"7":759,"22":2875},"upgradeStep":1}}}, +{"id":86137,"name":"Torch of the Celestial Spark","icon":"inv_wand_1h_pandaraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,794,529,0,0,402,268,0,0,0,0,0,0,7070,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":2224,"weaponDamageMax":4131,"weaponSpeed":1.9,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":285,"7":190,"14":5011}},"489":{"randPropPoints":934,"weaponDamageMin":2064,"weaponDamageMax":3834,"stats":{"2":737,"3":491,"6":373,"7":249,"14":6564}},"493":{"randPropPoints":969,"weaponDamageMin":2142,"weaponDamageMax":3980,"stats":{"2":764,"3":510,"6":387,"7":258,"14":6810},"upgradeStep":1}}}, +{"id":86138,"name":"Phasewalker Striders","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1376,837,616,0,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1763}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":569,"6":452,"22":1951}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":592,"6":471,"22":1977},"upgradeStep":1}}}, +{"id":86139,"name":"Orbital Belt","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1376,757,0,0,0,531,0,0,0,531,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":353,"11":353,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":691,"7":488,"11":488,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":724,"7":509,"11":509,"22":1271},"upgradeStep":1}}}, +{"id":86140,"name":"Starshatter","icon":"inv_sword_2h_pandaraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1235,0,1852,0,0,0,906,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":12988,"weaponDamageMax":19483,"weaponSpeed":3.6,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":642,"8":484}},"489":{"randPropPoints":2179,"weaponDamageMin":12055,"weaponDamageMax":18084,"stats":{"0":1146,"2":1719,"6":841,"8":634}},"493":{"randPropPoints":2262,"weaponDamageMin":12513,"weaponDamageMax":18770,"stats":{"0":1190,"2":1784,"6":873,"8":658},"upgradeStep":1}}}, +{"id":86141,"name":"Shoulders of Empyreal Focus","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,0,1376,837,511,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2676}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":472,"7":561,"22":2961}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":491,"7":583,"22":3000},"upgradeStep":1}}}, +{"id":86142,"name":"Fang Kung, Spark of Titans","icon":"inv_bow_1h_pandaraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1235,1852,0,0,0,906,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":9470,"weaponDamageMax":17589,"weaponSpeed":3,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":642,"8":484}},"489":{"randPropPoints":2179,"weaponDamageMin":8790,"weaponDamageMax":16326,"stats":{"1":1146,"2":1719,"6":841,"8":634}},"493":{"randPropPoints":2262,"weaponDamageMin":9124,"weaponDamageMax":16945,"stats":{"1":1190,"2":1784,"6":873,"8":658},"upgradeStep":1}}}, +{"id":86144,"name":"Lei Shen's Final Orders","icon":"inv_jewelry_trinket_16","type":12,"stats":[0,0,0,0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"489":{"randPropPoints":1619,"stats":{"7":1079}},"493":{"randPropPoints":1680,"stats":{"7":1120},"upgradeStep":1}}}, +{"id":86145,"name":"Jang-xi's Devastating Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1075,0,1852,0,0,546,0,858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"7":585,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":986,"2":1719,"5":500,"7":791,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1030,"2":1784,"5":523,"7":824,"22":4780},"upgradeStep":1}}}, +{"id":86146,"name":"Crown of Opportunistic Strikes","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,995,1852,0,0,0,663,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":423,"7":503,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"6":604,"7":684,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"6":633,"7":713,"22":2336},"upgradeStep":1}}}, +{"id":86147,"name":"Qin-xi's Polarizing Seal","icon":"inv_misc_trinketpanda_10","type":12,"stats":[0,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"489":{"randPropPoints":1619,"stats":{"4":1079}},"493":{"randPropPoints":1680,"stats":{"4":1120},"upgradeStep":1}}}, +{"id":86148,"name":"Tihan, Scepter of the Sleeping Emperor","icon":"inv_mace_1h_pandaraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,794,529,318,0,0,0,0,0,0,373,0,0,7070,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":2809,"weaponDamageMax":5218,"weaponSpeed":2.4,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":225,"11":265,"14":5011}},"489":{"randPropPoints":934,"weaponDamageMin":2607,"weaponDamageMax":4843,"stats":{"2":737,"3":491,"4":295,"11":347,"14":6564}},"493":{"randPropPoints":969,"weaponDamageMin":2706,"weaponDamageMax":5027,"stats":{"2":764,"3":510,"4":306,"11":360,"14":6810},"upgradeStep":1}}}, +{"id":86149,"name":"Spaulders of the Emperor's Rage","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[0,0,1376,837,598,0,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":412,"7":361,"22":3654}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":553,"7":486,"22":4043}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":575,"7":505,"22":4097},"upgradeStep":1}}}, +{"id":86150,"name":"Magnetized Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1852,1075,858,0,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":585,"7":363,"22":2243}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":791,"7":500,"22":2483}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":824,"7":523,"22":2516},"upgradeStep":1}}}, +{"id":86151,"name":"Hood of Focused Energy","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1852,995,0,796,0,586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":545,"7":364,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"5":734,"7":531,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"5":764,"7":558,"22":1835},"upgradeStep":1}}}, +{"id":86152,"name":"Worldwaker Cabochon","icon":"inv_jewelry_necklace_114","type":2,"stats":[0,0,1032,688,0,0,447,466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"7":330}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":415,"7":432}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":431,"7":448},"upgradeStep":1}}}, +{"id":86153,"name":"Boots of the Still Breath","icon":"inv_boot_leather_raidrogue_l_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,525,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"7":423,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":485,"7":610,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":504,"7":635,"22":2022},"upgradeStep":1}}}, +{"id":86154,"name":"Hisek's Chrysanthemum Cape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[734,0,1101,0,0,453,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"7":339,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":421,"7":474,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":437,"7":492,"22":1155},"upgradeStep":1}}}, +{"id":86155,"name":"Vizier's Ruby Signet","icon":"inv_jewelry_ring_149","type":11,"stats":[558,0,1101,0,0,0,0,0,372,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"10":488}},"496":{"randPropPoints":1296,"stats":{"0":518,"2":1022,"8":345,"10":682}},"500":{"randPropPoints":1345,"stats":{"0":538,"2":1061,"8":358,"10":707},"upgradeStep":1}}}, +{"id":86156,"name":"Fragment of Fear Made Flesh","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,1101,734,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":399,"6":487}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":414,"6":506},"upgradeStep":1}}}, +{"id":86157,"name":"Attenuating Bracers","icon":"inv_bracer_cloth_raidwarlock_l_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,497,0,0,0,477,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":461,"11":443,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":479,"11":460,"22":1011},"upgradeStep":1}}}, +{"id":86158,"name":"Chestplate of the Forbidden Tower","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1977,1158,691,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":635,"11":795,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":663,"11":828,"22":5588},"upgradeStep":1}}}, +{"id":86159,"name":"Gauntlets of Undesired Gifts","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1469,899,456,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":289,"6":454,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":420,"6":651,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":438,"6":677,"22":1838},"upgradeStep":1}}}, +{"id":86160,"name":"Mail of Screaming Secrets","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,799,0,0,0,0,0,0,799,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"11":503,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":735,"11":735,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":766,"11":766,"22":4092},"upgradeStep":1}}}, +{"id":86161,"name":"Gloves of Grasping Claws","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1469,899,564,0,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":361,"6":412,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":521,"6":593,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":542,"6":616,"22":1444},"upgradeStep":1}}}, +{"id":86162,"name":"Ring of the Bladed Tempest","icon":"inv_misc_epicring_a3","type":11,"stats":[734,0,1101,0,0,0,0,552,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":366,"8":254}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":512,"8":356}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":531,"8":369},"upgradeStep":1}}}, +{"id":86163,"name":"Bracers of Unseen Strikes","icon":"inv_bracer_leather_raidrogue_l_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,465,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":309,"7":335,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":432,"7":468,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":448,"7":486,"22":1287},"upgradeStep":1}}}, +{"id":86164,"name":"Waistplate of Overwhelming Assault","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[819,0,1469,0,0,0,0,620,0,0,0,493,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":384,"11":300,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":749,"2":1363,"7":570,"11":452,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":783,"2":1414,"7":594,"11":472,"22":3143},"upgradeStep":1}}}, +{"id":86165,"name":"Windblade Talons","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,0,0,0,0,613,613,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":393,"10":393,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"9":566,"10":566,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"9":589,"10":589,"22":3493},"upgradeStep":1}}}, +{"id":86166,"name":"Choker of the Unleashed Storm","icon":"inv_jewelry_necklace_94","type":2,"stats":[0,734,1101,0,0,0,539,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":358,"11":270}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":500,"11":377}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":519,"11":391},"upgradeStep":1}}}, +{"id":86167,"name":"Boots of the Blowing Wind","icon":"inv_boot_bracer_raidmage_l_01","type":10,"armorType":1,"stats":[0,0,1469,899,634,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"7":369,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":585,"7":529,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":608,"7":550,"22":1588},"upgradeStep":1}}}, +{"id":86168,"name":"Bracers of Tempestuous Fury","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,1101,734,465,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":309,"7":335,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":432,"7":468,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":448,"7":486,"22":1790},"upgradeStep":1}}}, +{"id":86169,"name":"Drape of Gathering Clouds","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1101,734,441,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":293,"11":344,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":410,"11":481,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":425,"11":499,"22":1155},"upgradeStep":1}}}, +{"id":86170,"name":"Twisting Wind Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,477,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":317,"7":330,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":443,"7":461,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":460,"7":479,"22":1011},"upgradeStep":1}}}, +{"id":86171,"name":"Tornado-Summoning Censer","icon":"inv_offhand_1h_pandaraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1101,734,0,372,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":247,"6":371}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":345,"6":518}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":358,"6":538},"upgradeStep":1}}}, +{"id":86172,"name":"Ring of the Shattered Shell","icon":"inv_misc_epicring_a2","type":11,"stats":[734,0,1101,0,0,0,0,0,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"9":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"9":506,"11":414},"upgradeStep":1}}}, +{"id":86173,"name":"Legbreaker Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,489,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"11":325,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":454,"11":454,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":472,"11":472,"22":1155},"upgradeStep":1}}}, +{"id":86174,"name":"Garalon's Hollow Skull","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,0,739,779,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"9":675,"10":715,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"9":706,"10":746,"22":4540},"upgradeStep":1}}}, +{"id":86175,"name":"Grips of the Leviathan","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,0,0,596,0,0,0,623,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":382,"11":400,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":551,"11":575,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":573,"11":598,"22":2557},"upgradeStep":1}}}, +{"id":86176,"name":"Bonebreaker Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,471,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":299,"7":448,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":434,"7":643,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":452,"7":668,"22":1838},"upgradeStep":1}}}, +{"id":86177,"name":"Necklace of Congealed Weaknesses","icon":"inv_jewelry_necklace_104","type":2,"stats":[734,0,1101,0,0,0,558,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":371,"11":247}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":518,"11":345}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":538,"11":358},"upgradeStep":1}}}, +{"id":86178,"name":"Sandals of the Unbidden","icon":"inv_boot_cloth_raidwarlock_l_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,463,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":291,"11":456,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":426,"11":651,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":444,"11":676,"22":1588},"upgradeStep":1}}}, +{"id":86179,"name":"Grasps of Panic","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1469,899,678,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":436,"6":319,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":627,"6":463,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":652,"6":482,"22":3493},"upgradeStep":1}}}, +{"id":86180,"name":"Robes of Eighty Lights","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,691,0,0,0,0,0,0,863,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":635,"11":795,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":663,"11":828,"22":2941},"upgradeStep":1}}}, +{"id":86181,"name":"Xaril's Hood of Intoxicating Vapors","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,739,0,0,0,779,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":675,"11":715,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":706,"11":746,"22":1877},"upgradeStep":1}}}, +{"id":86182,"name":"Stormwake Mistcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1101,734,0,418,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":277,"6":353,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":388,"6":494,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":402,"6":512,"22":1155},"upgradeStep":1}}}, +{"id":86183,"name":"Shining Cicada Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":399,"6":487,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":414,"6":506,"22":1011},"upgradeStep":1}}}, +{"id":86184,"name":"Luminescent Firefly Wristguards","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414,"22":1790},"upgradeStep":1}}}, +{"id":86185,"name":"Smooth Beetle Wristbands","icon":"inv_bracer_leather_raidmonk_l_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,0,395,0,0,545,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":262,"11":362,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"8":366,"11":506,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"8":380,"11":525,"22":1287},"upgradeStep":1}}}, +{"id":86186,"name":"Gleaming Moth Cuffs","icon":"inv_bracer_cloth_raidwarlock_l_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,518,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":344,"7":293,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":481,"7":410,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":499,"7":425,"22":1011},"upgradeStep":1}}}, +{"id":86187,"name":"Pearlescent Butterfly Wristbands","icon":"inv_bracer_leather_raiddruid_l_01","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,465,0,0,0,504,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":432,"11":468,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":448,"11":486,"22":1287},"upgradeStep":1}}}, +{"id":86188,"name":"Inlaid Cricket Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[0,0,1101,734,406,0,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"11":358,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":377,"11":500,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":391,"11":519,"22":2445},"upgradeStep":1}}}, +{"id":86189,"name":"Jagged Hornet Bracers","icon":"inv_bracer_mail_raidhunter_l_01","type":6,"armorType":3,"stats":[0,734,1101,0,0,489,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"11":325,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":454,"11":454,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":472,"11":472,"22":1790},"upgradeStep":1}}}, +{"id":86190,"name":"Serrated Wasp Bracers","icon":"inv_bracers_plate_raidwarrior_l_01","type":6,"armorType":4,"stats":[558,0,1101,0,0,0,0,0,372,734,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":518,"2":1022,"8":345,"9":682,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":538,"2":1061,"8":358,"9":707,"22":2445},"upgradeStep":1}}}, +{"id":86191,"name":"Plated Locust Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,497,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":330,"7":317,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":461,"7":443,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":479,"7":460,"22":2445},"upgradeStep":1}}}, +{"id":86192,"name":"Darting Damselfly Cuffs","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1101,734,532,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"7":277,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":494,"7":388,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":512,"7":402,"22":1011},"upgradeStep":1}}}, +{"id":86196,"name":"Ancient Jinyu Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,778,519,376,0,0,295,0,0,0,0,0,0,2973,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"weaponSpeed":3.3,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":2502,"weaponDamageMax":3754,"stats":{"2":778,"3":519,"4":376,"7":295,"14":2973},"isBase":true}}}, +{"id":86198,"name":"Hammer of Ten Thunders","icon":"inv_mace_46","type":13,"weaponType":4,"handType":4,"stats":[519,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"weaponSpeed":3.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":987,"weaponDamageMin":5460,"weaponDamageMax":8191,"stats":{"0":519,"2":778},"isBase":true}}}, +{"id":86199,"name":"Jade Infused Blade","icon":"inv_sword_38","type":13,"weaponType":9,"handType":2,"stats":[222,0,334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":2.6,"ilvl":404,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"404":{"randPropPoints":423,"weaponDamageMin":2559,"weaponDamageMax":4753,"stats":{"0":222,"2":334},"isBase":true}}}, +{"id":86200,"name":"Painful Thorned Ring","icon":"inv_jewelry_ring_154","type":11,"stats":[0,734,1101,0,0,0,0,0,418,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":277,"11":353}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"8":388,"11":494}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"8":402,"11":512},"upgradeStep":1}}}, +{"id":86201,"name":"Impaling Treads","icon":"inv_boots_plate_raidwarrior_l_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,541,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":348,"7":416,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":500,"7":602,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":520,"7":626,"22":3842},"upgradeStep":1}}}, +{"id":86202,"name":"Cloak of Raining Blades","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,0,0,0,558,0,372,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":371,"11":247,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"9":518,"11":345,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"9":538,"11":358,"22":1155},"upgradeStep":1}}}, +{"id":86203,"name":"Articulated Legplates","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[842,0,1977,0,0,588,0,0,0,0,1238,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"5":363,"10":795,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":770,"2":1835,"5":540,"10":1143,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":805,"2":1904,"5":563,"10":1190,"22":4890},"upgradeStep":1}}}, +{"id":86204,"name":"Wingslasher Pauldrons","icon":"inv_shoulder_mail_raidhunter_l_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,632,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"11":372,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":584,"11":536,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":607,"11":557,"22":3069},"upgradeStep":1}}}, +{"id":86205,"name":"Korven's Amber-Sealed Beetle","icon":"trade_archaeology_insect-in-amber","type":2,"stats":[0,0,1101,734,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":399,"6":487}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":414,"6":506},"upgradeStep":1}}}, +{"id":86210,"name":"Belt of Malleable Amber","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,1469,819,0,524,0,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":321,"7":372,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":749,"5":481,"7":553,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":783,"5":502,"7":576,"22":1300},"upgradeStep":1}}}, +{"id":86211,"name":"Seal of the Profane","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,1101,734,418,0,0,0,0,0,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":388,"11":494}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":402,"11":512},"upgradeStep":1}}}, +{"id":86212,"name":"Treads of Deadly Secretions","icon":"inv_boot_leather_raidmonk_l_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,0,0,541,0,0,652,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":348,"11":416,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"8":500,"11":602,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"8":520,"11":626,"22":2022},"upgradeStep":1}}}, +{"id":86213,"name":"Shoulderpads of Misshapen Life","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,651,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":418,"11":350,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":601,"11":506,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":625,"11":527,"22":4191},"upgradeStep":1}}}, +{"id":86214,"name":"Monstrous Stompers","icon":"inv_boot_mail_raidhunter_l_01","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,604,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":559,"7":567,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":581,"7":590,"22":2813},"upgradeStep":1}}}, +{"id":86217,"name":"Un'sok's Amber Scalpel","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,847,485,309,0,0,353,0,0,0,0,0,0,7548,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":2249,"weaponDamageMax":4177,"weaponSpeed":1.8,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":191,"7":221,"14":5011}},"496":{"randPropPoints":997,"weaponDamageMin":2087,"weaponDamageMax":3877,"stats":{"2":787,"3":444,"4":284,"7":325,"14":7007}},"500":{"randPropPoints":1035,"weaponDamageMin":2167,"weaponDamageMax":4024,"stats":{"2":817,"3":464,"4":296,"7":339,"14":7274},"upgradeStep":1}}}, +{"id":86218,"name":"Staff of the Hidden Master","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,597,895,0,0,0,427,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"weaponDamageMin":5756,"weaponDamageMax":8635,"weaponSpeed":3.3,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"weaponDamageMin":5756,"weaponDamageMax":8635,"stats":{"1":597,"2":895,"6":427,"11":349},"isBase":true}}}, +{"id":86219,"name":"Scimitar of Seven Stars","icon":"inv_sword_1h_pandaraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[485,0,847,0,0,342,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":6497,"weaponDamageMax":12068,"weaponSpeed":2.6,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":214,"11":204}},"496":{"randPropPoints":997,"weaponDamageMin":6031,"weaponDamageMax":11201,"stats":{"0":444,"2":786,"5":315,"11":301}},"500":{"randPropPoints":1035,"weaponDamageMin":6260,"weaponDamageMax":11626,"stats":{"0":464,"2":816,"5":328,"11":314},"upgradeStep":1}}}, +{"id":86221,"name":"Wise Sprite Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,573,382,0,0,194,0,0,0,0,291,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"6":194,"11":291,"22":911},"isBase":true}}}, +{"id":86222,"name":"Precise Sprite Cloak","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,573,382,0,0,262,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"2":573,"3":382,"6":262,"7":242,"22":911},"isBase":true}}}, +{"id":86223,"name":"Agile Sprite Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,382,573,0,0,0,0,248,0,0,0,259,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"1":382,"2":573,"7":248,"11":259,"22":911},"isBase":true}}}, +{"id":86224,"name":"Steadfast Sprite Cape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[382,0,573,0,0,0,0,0,0,0,270,230,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"0":382,"2":573,"10":270,"11":230,"22":911},"isBase":true}}}, +{"id":86225,"name":"Strong Sprite Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[382,0,573,0,0,0,255,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":727,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":727,"stats":{"0":382,"2":573,"6":255,"11":255,"22":911},"isBase":true}}}, +{"id":86226,"name":"Claws of Shek'zeer","icon":"inv_hand_1h_pandaraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,565,847,0,0,0,424,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":6497,"weaponDamageMax":12068,"weaponSpeed":2.6,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":282,"8":196}},"496":{"randPropPoints":997,"weaponDamageMin":6031,"weaponDamageMax":11201,"stats":{"1":524,"2":786,"6":394,"8":274}},"500":{"randPropPoints":1035,"weaponDamageMin":6260,"weaponDamageMax":11626,"stats":{"1":544,"2":816,"6":409,"8":284},"upgradeStep":1}}}, +{"id":86227,"name":"Kri'tak, Imperial Scepter of the Swarm","icon":"inv_mace_1h_pandaraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,847,565,388,0,358,0,0,0,0,0,0,0,7548,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":2999,"weaponDamageMax":5570,"weaponSpeed":2.4,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":257,"6":238,"14":5011}},"496":{"randPropPoints":997,"weaponDamageMin":2783,"weaponDamageMax":5170,"stats":{"2":787,"3":524,"4":360,"6":332,"14":7007}},"500":{"randPropPoints":1035,"weaponDamageMin":2889,"weaponDamageMax":5366,"stats":{"2":817,"3":544,"4":374,"6":345,"14":7274},"upgradeStep":1}}}, +{"id":86228,"name":"Crown of the Doomed Empress","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,739,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"6":675,"7":715,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"6":706,"7":746,"22":3325},"upgradeStep":1}}}, +{"id":86229,"name":"Leggings of Shadow Infestation","icon":"inv_pants_cloth_raidwarlock_l_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,922,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":850,"11":540,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":885,"11":563,"22":2022},"upgradeStep":1}}}, +{"id":86230,"name":"Bracers of Defiled Earth","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,372,0,0,0,0,0,558,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"11":371,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":345,"11":518,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":358,"11":538,"22":2445},"upgradeStep":1}}}, +{"id":86231,"name":"Regail's Band of the Endless","icon":"inv_jewelry_ring_143","type":11,"stats":[0,734,1101,0,0,0,511,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"7":301}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":474,"7":421}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":492,"7":437},"upgradeStep":1}}}, +{"id":86232,"name":"Deepwater Greatboots","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[664,0,1469,0,0,464,0,0,0,0,931,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":297,"10":601,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":611,"2":1363,"5":428,"10":861,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":637,"2":1414,"5":446,"10":895,"22":3842},"upgradeStep":1}}}, +{"id":86233,"name":"Shackle of Eversparks","icon":"inv_jewelry_necklace_111","type":2,"stats":[734,0,1101,0,0,532,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"8":277}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":494,"8":388}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":512,"8":402},"upgradeStep":1}}}, +{"id":86234,"name":"Kaolan's Withering Necklace","icon":"inv_jewelry_necklace_105","type":2,"stats":[734,0,1101,0,0,0,0,0,0,489,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"9":454,"10":454}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"9":472,"10":472},"upgradeStep":1}}}, +{"id":86311,"name":"Robe of Eternal Rule","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,812,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":512,"11":488,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":748,"11":715,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":779,"11":745,"22":2311},"upgradeStep":1}}}, +{"id":86312,"name":"Legacy of the Emperor","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,812,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":512,"7":488,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":748,"7":715,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":779,"7":745,"22":2311},"upgradeStep":1}}}, +{"id":86313,"name":"Imperial Silk Gloves","icon":"inv_glove_cloth_raidwarlock_l_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,0,564,0,0,0,0,642,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":361,"11":412,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":521,"11":593,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":542,"11":616,"22":1444},"upgradeStep":1}}}, +{"id":86314,"name":"Touch of the Light","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1469,899,682,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":452,"7":321,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":633,"7":481,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":656,"7":502,"22":1444},"upgradeStep":1}}}, +{"id":86315,"name":"Watersoul Signet","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1101,734,429,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":399,"7":487}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":414,"7":506},"upgradeStep":1}}}, +{"id":86316,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,465,0,0,0,504,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":432,"11":468,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":448,"11":486,"22":1155},"upgradeStep":1}}}, +{"id":86317,"name":"Cuffs of the Corrupted Waters","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1101,734,489,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":454,"11":454,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":472,"11":472,"22":1011},"upgradeStep":1}}}, +{"id":86318,"name":"Casque of Expelled Corruption","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,1977,1078,673,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":615,"7":752,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":644,"7":784,"22":4540},"upgradeStep":1}}}, +{"id":86319,"name":"Lightning Prisoner's Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1469,899,448,0,0,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":281,"7":462,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":412,"7":659,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":430,"7":685,"22":2813},"upgradeStep":1}}}, +{"id":86320,"name":"Asani's Uncleansed Sandals","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1469,899,572,0,0,640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"7":414,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":528,"7":592,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":615,"22":2022},"upgradeStep":1}}}, +{"id":86321,"name":"Gao-Rei, Staff of the Legendary Protector","icon":"inv_staff_2h_pandaraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,1318,1977,0,0,0,0,0,892,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"weaponDamageMin":12708,"weaponDamageMax":19063,"weaponSpeed":3.3,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":875,"2":1312,"8":592,"11":568}},"496":{"randPropPoints":2326,"weaponDamageMin":11795,"weaponDamageMax":17694,"stats":{"1":1223,"2":1835,"8":828,"11":795}},"500":{"randPropPoints":2414,"weaponDamageMin":12243,"weaponDamageMax":18366,"stats":{"1":1270,"2":1904,"8":859,"11":825},"upgradeStep":1}}}, +{"id":86322,"name":"Dread Shadow Ring","icon":"inv_misc_epicring_b2","type":11,"stats":[734,0,1101,0,0,418,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":388,"6":494}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":402,"6":512},"upgradeStep":1}}}, +{"id":86323,"name":"Stuff of Nightmares","icon":"inv_misc_trinketpanda_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"496":{"randPropPoints":1728,"stats":{"11":1152}},"500":{"randPropPoints":1793,"stats":{"11":1195},"upgradeStep":1}}}, +{"id":86324,"name":"Sunwrought Mail Hauberk","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,649,0,887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":404,"7":562,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"5":597,"7":817,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"5":622,"7":851,"22":4092},"upgradeStep":1}}}, +{"id":86325,"name":"Daybreak Drape","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,0,0,0,477,497,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"9":443,"10":461,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"9":460,"10":479,"22":1155},"upgradeStep":1}}}, +{"id":86326,"name":"Belt of Embodied Terror","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1469,819,638,0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"11":279,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":749,"4":587,"11":423,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":783,"4":612,"11":442,"22":1300},"upgradeStep":1}}}, +{"id":86327,"name":"Spirits of the Sun","icon":"inv_drink_29_sunkissedwine","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":86328,"name":"Loshan, Terror Incarnate","icon":"inv_sword_1h_pandaraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,847,565,0,0,382,367,0,0,0,0,0,0,7548,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":2749,"weaponDamageMax":5106,"weaponSpeed":2.2,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":375,"6":254,"7":244,"14":5011}},"496":{"randPropPoints":997,"weaponDamageMin":2551,"weaponDamageMax":4739,"stats":{"2":786,"3":524,"6":355,"7":341,"14":7007}},"500":{"randPropPoints":1035,"weaponDamageMin":2648,"weaponDamageMax":4919,"stats":{"2":816,"3":544,"6":368,"7":354,"14":7274},"upgradeStep":1}}}, +{"id":86329,"name":"Sollerets of Instability","icon":"inv_boot_plate_raidpaladin_l_01","type":10,"armorType":4,"stats":[0,0,1469,899,634,0,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"11":369,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":585,"11":529,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":608,"11":550,"22":3842},"upgradeStep":1}}}, +{"id":86330,"name":"Sandals of the Blackest Night","icon":"inv_boot_cloth_raidwarlock_l_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,0,677,0,0,0,509,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":439,"11":322,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":626,"11":469,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":651,"11":488,"22":1588},"upgradeStep":1}}}, +{"id":86331,"name":"Taoren, the Soul Burner","icon":"inv_firearm_2h_rifle_pandaraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1318,1977,0,0,0,0,835,0,0,0,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"weaponDamageMin":10109,"weaponDamageMax":18774,"weaponSpeed":3,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"7":554,"11":600}},"496":{"randPropPoints":2326,"weaponDamageMin":9383,"weaponDamageMax":17426,"stats":{"1":1223,"2":1835,"7":775,"11":840}},"500":{"randPropPoints":2414,"weaponDamageMin":9739,"weaponDamageMax":18088,"stats":{"1":1270,"2":1904,"7":804,"11":871},"upgradeStep":1}}}, +{"id":86332,"name":"Terror in the Mists","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"496":{"randPropPoints":1728,"stats":{"1":1152}},"500":{"randPropPoints":1793,"stats":{"1":1195},"upgradeStep":1}}}, +{"id":86333,"name":"Cuirass of the Animated Protector","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,0,0,0,812,0,777,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"11":488,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"9":748,"11":715,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"9":779,"11":745,"22":5588},"upgradeStep":1}}}, +{"id":86334,"name":"Robes of the Unknown Fear","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,670,0,0,0,0,0,875,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":418,"11":554,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"5":616,"11":806,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"5":642,"11":840,"22":2311},"upgradeStep":1}}}, +{"id":86335,"name":"Jin'ya, Orb of the Waterspeaker","icon":"inv_staff_2h_pandaraidsha_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1977,1318,0,0,813,917,0,0,0,0,0,0,7548,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"weaponDamageMin":6354,"weaponDamageMax":9532,"weaponSpeed":3.3,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"6":540,"7":609,"14":5009}},"496":{"randPropPoints":2326,"weaponDamageMin":5897,"weaponDamageMax":8847,"stats":{"2":1835,"3":1223,"6":755,"7":852,"14":7006}},"500":{"randPropPoints":2414,"weaponDamageMin":6121,"weaponDamageMax":9183,"stats":{"2":1904,"3":1270,"6":784,"7":884,"14":7271},"upgradeStep":1}}}, +{"id":86336,"name":"Darkmist Vortex","icon":"creatureportrait_cyclone_nodebris","type":12,"stats":[1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"496":{"randPropPoints":1728,"stats":{"0":1152}},"500":{"randPropPoints":1793,"stats":{"0":1195},"upgradeStep":1}}}, +{"id":86337,"name":"Healer's Belt of Final Winter","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1469,899,623,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"7":382,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":575,"7":551,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":598,"7":573,"22":1300},"upgradeStep":1}}}, +{"id":86338,"name":"Invoker's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,533,0,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":340,"11":424,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":492,"11":610,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":512,"11":634,"22":1300},"upgradeStep":1}}}, +{"id":86339,"name":"Sorcerer's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,632,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":406,"7":372,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":584,"7":536,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":607,"7":557,"22":1300},"upgradeStep":1}}}, +{"id":86340,"name":"Weaver's Cord of Eternal Autumn","icon":"inv_belt_leather_raidmonk_l_01","type":8,"armorType":2,"stats":[0,0,1469,899,651,0,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":418,"11":350,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":601,"11":506,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":625,"11":527,"22":1654},"upgradeStep":1}}}, +{"id":86341,"name":"Stalker's Cord of Eternal Autumn","icon":"inv_belt_leather_raidrogue_l_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,564,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":361,"6":412,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":521,"6":593,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":542,"6":616,"22":1654},"upgradeStep":1}}}, +{"id":86342,"name":"Binder's Chain of Unending Summer","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,0,1469,899,549,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":506,"7":601,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":527,"7":625,"22":2302},"upgradeStep":1}}}, +{"id":86343,"name":"Ranger's Chain of Unending Summer","icon":"inv_belt_mail_raidhunter_l_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,0,632,580,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":406,"8":372,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":584,"8":536,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":607,"8":557,"22":2302},"upgradeStep":1}}}, +{"id":86383,"name":"Mender's Girdle of Endless Spring","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[0,0,1469,899,704,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":651,"11":420,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":677,"11":438,"22":3143},"upgradeStep":1}}}, +{"id":86384,"name":"Protector's Girdle of Endless Spring","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[664,0,1469,0,0,0,0,0,456,939,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"9":609,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":611,"2":1363,"8":420,"9":869,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":637,"2":1414,"8":438,"9":903,"22":3143},"upgradeStep":1}}}, +{"id":86385,"name":"Patroller's Girdle of Endless Spring","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,486,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":309,"6":442,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":449,"6":635,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":467,"6":660,"22":3143},"upgradeStep":1}}}, +{"id":86386,"name":"Shin'ka, Execution of Dominion","icon":"inv_axe_2h_pandaraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1318,0,1977,0,0,0,879,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"weaponDamageMin":13864,"weaponDamageMax":20796,"weaponSpeed":3.6,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"496":{"randPropPoints":2326,"weaponDamageMin":12868,"weaponDamageMax":19302,"stats":{"0":1223,"2":1835,"6":815,"11":815}},"500":{"randPropPoints":2414,"weaponDamageMin":13356,"weaponDamageMax":20035,"stats":{"0":1270,"2":1904,"6":846,"11":846},"upgradeStep":1}}}, +{"id":86387,"name":"Kilrak, Jaws of Terror","icon":"inv_sword_1h_pandaraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[565,0,847,0,0,382,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":6497,"weaponDamageMax":12068,"weaponSpeed":2.6,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":254,"11":244}},"496":{"randPropPoints":997,"weaponDamageMin":6031,"weaponDamageMax":11201,"stats":{"0":524,"2":786,"5":355,"11":341}},"500":{"randPropPoints":1035,"weaponDamageMin":6260,"weaponDamageMax":11626,"stats":{"0":544,"2":816,"5":368,"11":354},"upgradeStep":1}}}, +{"id":86388,"name":"Essence of Terror","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":86389,"name":"Dreadwoven Leggings of Failure","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,733,0,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"7":529,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"5":675,"7":772,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"5":704,"7":804,"22":2022},"upgradeStep":1}}}, +{"id":86390,"name":"Regail's Crackling Dagger","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,847,485,0,0,290,0,0,0,0,364,0,0,7548,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":2249,"weaponDamageMax":4177,"weaponSpeed":1.8,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"6":179,"11":228,"14":5011}},"496":{"randPropPoints":997,"weaponDamageMin":2087,"weaponDamageMax":3877,"stats":{"2":787,"3":444,"6":267,"11":335,"14":7007}},"500":{"randPropPoints":1035,"weaponDamageMin":2167,"weaponDamageMax":4024,"stats":{"2":817,"3":464,"6":278,"11":349,"14":7274},"upgradeStep":1}}}, +{"id":86391,"name":"Spiritsever","icon":"inv_knife_1h_pandaraidsha_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,565,847,0,0,0,0,0,321,0,0,409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1074,"weaponDamageMin":4498,"weaponDamageMax":8355,"weaponSpeed":1.8,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"8":213,"11":272}},"496":{"randPropPoints":997,"weaponDamageMin":4175,"weaponDamageMax":7754,"stats":{"1":524,"2":787,"8":298,"11":380}},"500":{"randPropPoints":1035,"weaponDamageMin":4334,"weaponDamageMax":8049,"stats":{"1":544,"2":817,"8":310,"11":394},"upgradeStep":1}}}, +{"id":86394,"name":"Hozen Warrior Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,686,1029,0,0,0,0,401,0,0,0,491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1305,"weaponDamageMin":6619,"weaponDamageMax":9930,"weaponSpeed":3.3,"ilvl":434,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"434":{"randPropPoints":1305,"weaponDamageMin":6619,"weaponDamageMax":9930,"stats":{"1":686,"2":1029,"7":401,"11":491},"isBase":true}}}, +{"id":86513,"name":"Robes of Torn Nightmares","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,799,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":735,"6":735,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":766,"6":766,"22":2311},"upgradeStep":1}}}, +{"id":86514,"name":"Clutches of Dying Hope","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1469,899,0,0,660,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":424,"7":340,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":610,"7":492,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":634,"7":512,"22":1838},"upgradeStep":1}}}, +{"id":86518,"name":"Yaungol Fire Carrier","icon":"inv_torch_lit","type":13,"weaponType":4,"handType":2,"stats":[512,0,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"0":512,"2":341},"isBase":true}}}, +{"id":86519,"name":"Wind-Reaver's Dagger of Quick Strikes","icon":"inv_knife_1h_mantid_01","type":13,"weaponType":2,"handType":2,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"weaponSpeed":1.8,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"stats":{"1":341,"2":512,"7":228,"11":228},"isBase":true}}}, +{"id":86520,"name":"Malik's Stalwart Spear","icon":"inv_polearm_2h_mantid_01","type":13,"weaponType":6,"handType":4,"stats":[0,797,1195,0,0,0,0,531,0,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"weaponSpeed":3.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"stats":{"1":797,"2":1195,"7":531,"11":531},"isBase":true}}}, +{"id":86521,"name":"Lucid Amulet of the Agile Mind","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,666,444,0,0,0,239,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"7":239,"11":330},"isBase":true}}}, +{"id":86522,"name":"Blade of the Prime","icon":"inv_sword_1h_mantid_01","type":13,"weaponType":9,"handType":2,"stats":[341,0,512,0,0,0,0,0,0,211,0,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"0":341,"2":512,"9":211,"11":238},"isBase":true}}}, +{"id":86523,"name":"Swarming Cleaver of Ka'roz","icon":"inv_sword_2h_mantid_01","type":13,"weaponType":9,"handType":4,"stats":[797,0,1195,0,0,0,466,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"weaponSpeed":3.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"stats":{"0":797,"2":1195,"6":466,"7":570},"isBase":true}}}, +{"id":86524,"name":"Dissector's Staff of Mutation","icon":"inv_staff_2h_mantid_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1195,797,0,0,531,0,0,0,0,531,0,0,4563,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":3842,"weaponDamageMax":5763,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":3842,"weaponDamageMax":5763,"stats":{"2":1195,"3":797,"6":531,"11":531,"14":4563},"isBase":true}}}, +{"id":86525,"name":"Bloodsoaked Chitin Fragment","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"11":751},"isBase":true}}}, +{"id":86526,"name":"Swarmkeeper's Medallion","icon":"inv_jewelry_necklace_61","type":12,"stats":[0,0,0,0,0,0,751,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"weaponSpeed":2.9,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"6":751,"7":751},"isBase":true}}}, +{"id":86527,"name":"Blade of the Poisoned Mind","icon":"inv_knife_1h_mantid_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,512,341,0,0,178,0,0,0,0,256,0,0,4561,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1208,"weaponDamageMax":2245,"weaponSpeed":1.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":1208,"weaponDamageMax":2245,"stats":{"2":512,"3":341,"6":178,"11":256,"14":4561},"isBase":true}}}, +{"id":86529,"name":"Manipulator's Talisman","icon":"inv_jewelry_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"isBase":true}}}, +{"id":86567,"name":"Yaungol Wind Chime","icon":"trade_archaeology_kaldoreiwindchimes","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86570,"name":"Crate of Kidnapped Puppies","icon":"inv_crate_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86572,"name":"Terracotta Fragment","icon":"inv_misc_stonetablet_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86576,"name":"Dynasty of Steel","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86579,"name":"Bottled Tornado","icon":"ability_druid_galewinds","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86585,"name":"Golden Fleece","icon":"inv_misc_pelt_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86587,"name":"Seed of Tranquil Growth","icon":"spell_lifegivingseed","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":86624,"name":"Firebird's Spaulders","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,427,620,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":391,"8":576,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":409,"8":598,"22":2941},"upgradeStep":1}}}, +{"id":86625,"name":"Firebird's Legguards","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":3431},"upgradeStep":1}}}, +{"id":86626,"name":"Firebird's Helmet","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":3186},"upgradeStep":1}}}, +{"id":86627,"name":"Firebird's Grips","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":2451},"upgradeStep":1}}}, +{"id":86628,"name":"Firebird's Cuirass","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":3921},"upgradeStep":1}}}, +{"id":86629,"name":"Firebird's Hauberk","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1751,1007,0,0,744,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":685,"7":571,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":714,"7":596,"22":3921},"upgradeStep":1}}}, +{"id":86630,"name":"Firebird's Gloves","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":2451},"upgradeStep":1}}}, +{"id":86631,"name":"Firebird's Headpiece","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,582,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":531,"11":645,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":556,"11":674,"22":3186},"upgradeStep":1}}}, +{"id":86632,"name":"Firebird's Kilt","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,1751,1087,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"7":683,"11":683,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"7":710,"11":710,"22":3431},"upgradeStep":1}}}, +{"id":86633,"name":"Firebird's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1301,787,564,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":523,"11":465,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":543,"11":486,"22":2941},"upgradeStep":1}}}, +{"id":86634,"name":"Yaungol Slayer's Spaulders","icon":"inv_shoulder_mail_raidhunter_l_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,0,427,620,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":391,"8":576,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":409,"8":598,"22":2941},"upgradeStep":1}}}, +{"id":86635,"name":"Yaungol Slayer's Legguards","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":3431},"upgradeStep":1}}}, +{"id":86636,"name":"Yaungol Slayer's Headguard","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":3186},"upgradeStep":1}}}, +{"id":86637,"name":"Yaungol Slayer's Gloves","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":2451},"upgradeStep":1}}}, +{"id":86638,"name":"Yaungol Slayer's Tunic","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":3921},"upgradeStep":1}}}, +{"id":86639,"name":"Spaulders of the Thousandfold Blades","icon":"inv_shoulder_leather_raidrogue_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,427,620,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":391,"8":576,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":409,"8":598,"22":2114},"upgradeStep":1}}}, +{"id":86640,"name":"Legguards of the Thousandfold Blades","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":2466},"upgradeStep":1}}}, +{"id":86641,"name":"Helmet of the Thousandfold Blades","icon":"inv_helmet_leather_raidrogue_l_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":2290},"upgradeStep":1}}}, +{"id":86642,"name":"Gloves of the Thousandfold Blades","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":1761},"upgradeStep":1}}}, +{"id":86643,"name":"Tunic of the Thousandfold Blades","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":2818},"upgradeStep":1}}}, +{"id":86644,"name":"Eternal Blossom Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1301,787,564,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":523,"11":465,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":543,"11":486,"22":2114},"upgradeStep":1}}}, +{"id":86645,"name":"Eternal Blossom Vestment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1751,1007,0,0,744,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":685,"7":571,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":714,"7":596,"22":2818},"upgradeStep":1}}}, +{"id":86646,"name":"Eternal Blossom Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1751,1087,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"7":683,"11":683,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"7":710,"11":710,"22":2466},"upgradeStep":1}}}, +{"id":86647,"name":"Eternal Blossom Cover","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,582,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":531,"11":645,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":556,"11":674,"22":2290},"upgradeStep":1}}}, +{"id":86648,"name":"Eternal Blossom Gloves","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":1761},"upgradeStep":1}}}, +{"id":86649,"name":"Eternal Blossom Spaulders","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,427,620,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":391,"8":576,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":409,"8":598,"22":2114},"upgradeStep":1}}}, +{"id":86650,"name":"Eternal Blossom Legguards","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":2466},"upgradeStep":1}}}, +{"id":86651,"name":"Eternal Blossom Headpiece","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":2290},"upgradeStep":1}}}, +{"id":86652,"name":"Eternal Blossom Grips","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":1761},"upgradeStep":1}}}, +{"id":86653,"name":"Eternal Blossom Raiment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":2818},"upgradeStep":1}}}, +{"id":86654,"name":"Shoulderguards of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,0,439,0,0,579,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"8":408,"11":532,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"8":423,"11":555,"22":4017},"upgradeStep":1}}}, +{"id":86655,"name":"Legguards of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,0,681,0,773,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"9":629,"11":715,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"9":654,"11":743,"22":4686},"upgradeStep":1}}}, +{"id":86656,"name":"Faceguard of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[647,0,1751,0,0,0,0,0,431,0,1087,0,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":584,"2":1626,"8":389,"10":1004,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":615,"2":1687,"8":410,"10":1045,"22":4351},"upgradeStep":1}}}, +{"id":86657,"name":"Handguards of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[659,0,1301,0,0,439,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":612,"2":1208,"5":408,"9":805,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":635,"2":1254,"5":423,"9":836,"22":3347},"upgradeStep":1}}}, +{"id":86658,"name":"Chestguard of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,508,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"5":463,"10":765,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"5":485,"10":795,"22":5356},"upgradeStep":1}}}, +{"id":86659,"name":"White Tiger Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,0,439,0,0,579,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"8":408,"11":532,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"8":423,"11":555,"22":4017},"upgradeStep":1}}}, +{"id":86660,"name":"White Tiger Legguards","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,0,681,0,773,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"9":629,"11":715,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"9":654,"11":743,"22":4686},"upgradeStep":1}}}, +{"id":86661,"name":"White Tiger Faceguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[647,0,1751,0,0,0,0,0,431,0,1087,0,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":584,"2":1626,"8":389,"10":1004,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":615,"2":1687,"8":410,"10":1045,"22":4351},"upgradeStep":1}}}, +{"id":86662,"name":"White Tiger Handguards","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[659,0,1301,0,0,439,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":612,"2":1208,"5":408,"9":805,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":635,"2":1254,"5":423,"9":836,"22":3347},"upgradeStep":1}}}, +{"id":86663,"name":"White Tiger Chestguard","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,508,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"5":463,"10":765,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"5":485,"10":795,"22":5356},"upgradeStep":1}}}, +{"id":86664,"name":"Shoulderguards of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,0,0,439,0,0,579,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"8":408,"11":532,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"8":423,"11":555,"22":4017},"upgradeStep":1}}}, +{"id":86665,"name":"Legguards of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,0,681,0,773,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"9":629,"11":715,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"9":654,"11":743,"22":4686},"upgradeStep":1}}}, +{"id":86666,"name":"Faceguard of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[647,0,1751,0,0,0,0,0,431,0,1087,0,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":584,"2":1626,"8":389,"10":1004,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":615,"2":1687,"8":410,"10":1045,"22":4351},"upgradeStep":1}}}, +{"id":86667,"name":"Handguards of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[659,0,1301,0,0,439,0,0,0,867,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":612,"2":1208,"5":408,"9":805,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":635,"2":1254,"5":423,"9":836,"22":3347},"upgradeStep":1}}}, +{"id":86668,"name":"Chestguard of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,508,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"5":463,"10":765,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"5":485,"10":795,"22":5356},"upgradeStep":1}}}, +{"id":86669,"name":"Pauldrons of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,578,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":537,"7":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":557,"7":477,"22":4017},"upgradeStep":1}}}, +{"id":86670,"name":"Legplates of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,643,0,0,795,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"8":594,"11":735,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"8":618,"11":764,"22":4686},"upgradeStep":1}}}, +{"id":86671,"name":"Gauntlets of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[867,0,1301,0,0,0,549,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":510,"8":553,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":836,"2":1254,"6":529,"8":574,"22":3347},"upgradeStep":1}}}, +{"id":86672,"name":"Battleplate of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,755,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":695,"7":554,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":724,"7":578,"22":5356},"upgradeStep":1}}}, +{"id":86673,"name":"Helmet of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,698,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"5":643,"11":563,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"5":670,"11":590,"22":4351},"upgradeStep":1}}}, +{"id":86674,"name":"Pauldrons of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,578,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":537,"7":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":557,"7":477,"22":4017},"upgradeStep":1}}}, +{"id":86675,"name":"Greaves of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,643,0,0,795,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"8":594,"11":735,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"8":618,"11":764,"22":4686},"upgradeStep":1}}}, +{"id":86676,"name":"Helmet of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,698,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"5":643,"11":563,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"5":670,"11":590,"22":4351},"upgradeStep":1}}}, +{"id":86677,"name":"Gauntlets of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[867,0,1301,0,0,0,549,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":510,"8":553,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":836,"2":1254,"6":529,"8":574,"22":3347},"upgradeStep":1}}}, +{"id":86678,"name":"Breastplate of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,755,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":695,"7":554,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":724,"7":578,"22":5356},"upgradeStep":1}}}, +{"id":86679,"name":"White Tiger Pauldrons","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,578,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":537,"7":457,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":557,"7":477,"22":4017},"upgradeStep":1}}}, +{"id":86680,"name":"White Tiger Legplates","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1087,0,1751,0,0,0,0,0,643,0,0,795,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1004,"2":1626,"8":594,"11":735,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":1045,"2":1687,"8":618,"11":764,"22":4686},"upgradeStep":1}}}, +{"id":86681,"name":"White Tiger Helmet","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,698,0,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"5":643,"11":563,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"5":670,"11":590,"22":4351},"upgradeStep":1}}}, +{"id":86682,"name":"White Tiger Gauntlets","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[867,0,1301,0,0,0,549,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":510,"8":553,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":836,"2":1254,"6":529,"8":574,"22":3347},"upgradeStep":1}}}, +{"id":86683,"name":"White Tiger Battleplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,755,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"6":695,"7":554,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"6":724,"7":578,"22":5356},"upgradeStep":1}}}, +{"id":86684,"name":"White Tiger Mantle","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[0,0,1301,787,524,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":3654}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":480,"6":497,"22":3963}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":502,"6":516,"22":4017},"upgradeStep":1}}}, +{"id":86685,"name":"White Tiger Greaves","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[0,0,1751,1087,0,0,750,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":4263}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"6":694,"11":664,"22":4623}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"6":721,"11":691,"22":4686},"upgradeStep":1}}}, +{"id":86686,"name":"White Tiger Headguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,1751,927,658,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":3959}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":603,"11":603,"22":4293}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":630,"11":630,"22":4351},"upgradeStep":1}}}, +{"id":86687,"name":"White Tiger Gloves","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":3045}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":3302}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":3347},"upgradeStep":1}}}, +{"id":86688,"name":"White Tiger Breastplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1751,1007,733,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":4872}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"7":589,"22":5284}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"7":614,"22":5356},"upgradeStep":1}}}, +{"id":86689,"name":"Firebird's Mantle","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1301,787,524,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":480,"6":497,"22":2902}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":502,"6":516,"22":2941},"upgradeStep":1}}}, +{"id":86690,"name":"Firebird's Legwraps","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,1751,1087,0,0,750,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"6":694,"11":664,"22":3385}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"6":721,"11":691,"22":3431},"upgradeStep":1}}}, +{"id":86691,"name":"Firebird's Faceguard","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1751,927,658,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":603,"11":603,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":630,"11":630,"22":3186},"upgradeStep":1}}}, +{"id":86692,"name":"Firebird's Handwraps","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":2451},"upgradeStep":1}}}, +{"id":86693,"name":"Firebird's Tunic","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1751,1007,733,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"7":589,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"7":614,"22":3921},"upgradeStep":1}}}, +{"id":86694,"name":"Eternal Blossom Mantle","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1301,787,524,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":480,"6":497,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":502,"6":516,"22":2114},"upgradeStep":1}}}, +{"id":86695,"name":"Eternal Blossom Robes","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1751,1007,733,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"7":589,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"7":614,"22":2818},"upgradeStep":1}}}, +{"id":86696,"name":"Eternal Blossom Legwraps","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1751,1087,0,0,750,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"6":694,"11":664,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"6":721,"11":691,"22":2466},"upgradeStep":1}}}, +{"id":86697,"name":"Eternal Blossom Helm","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1751,927,658,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":603,"11":603,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":630,"11":630,"22":2290},"upgradeStep":1}}}, +{"id":86698,"name":"Eternal Blossom Handwraps","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":1761},"upgradeStep":1}}}, +{"id":86699,"name":"Guardian Serpent Mantle","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1301,787,524,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":480,"6":497,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":502,"6":516,"22":1661},"upgradeStep":1}}}, +{"id":86700,"name":"Guardian Serpent Robes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1751,1007,733,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"7":589,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"7":614,"22":2214},"upgradeStep":1}}}, +{"id":86701,"name":"Guardian Serpent Legwraps","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,1751,1087,0,0,750,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"6":694,"11":664,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"6":721,"11":691,"22":1938},"upgradeStep":1}}}, +{"id":86702,"name":"Guardian Serpent Cowl","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,1751,927,658,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":603,"11":603,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":630,"11":630,"22":1799},"upgradeStep":1}}}, +{"id":86703,"name":"Guardian Serpent Handwraps","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":1384},"upgradeStep":1}}}, +{"id":86704,"name":"Guardian Serpent Gloves","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":1384},"upgradeStep":1}}}, +{"id":86705,"name":"Guardian Serpent Hood","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,582,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":531,"11":645,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":556,"11":674,"22":1799},"upgradeStep":1}}}, +{"id":86706,"name":"Guardian Serpent Leggings","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,1751,1087,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"7":683,"11":683,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"7":710,"11":710,"22":1938},"upgradeStep":1}}}, +{"id":86707,"name":"Guardian Serpent Raiment","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,744,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":685,"7":571,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":714,"7":596,"22":2214},"upgradeStep":1}}}, +{"id":86708,"name":"Guardian Serpent Shoulderguards","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1301,787,564,0,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":523,"11":465,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":543,"11":486,"22":1661},"upgradeStep":1}}}, +{"id":86709,"name":"Sha-Skin Gloves","icon":"inv_glove_cloth_raidwarlock_l_01","type":7,"armorType":1,"stats":[0,0,1301,867,0,507,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":471,"7":576,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"5":489,"7":598,"22":1384},"upgradeStep":1}}}, +{"id":86710,"name":"Sha-Skin Hood","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,582,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":531,"11":645,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":556,"11":674,"22":1799},"upgradeStep":1}}}, +{"id":86711,"name":"Sha-Skin Leggings","icon":"inv_pants_cloth_raidwarlock_l_01","type":9,"armorType":1,"stats":[0,0,1751,1087,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"7":683,"11":683,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"7":710,"11":710,"22":1938},"upgradeStep":1}}}, +{"id":86712,"name":"Sha-Skin Robes","icon":"inv_chest_cloth_raidwarlock_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,744,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":685,"7":571,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":714,"7":596,"22":2214},"upgradeStep":1}}}, +{"id":86713,"name":"Sha-Skin Mantle","icon":"inv_shoulder_cloth_raidwarlock_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,564,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":523,"11":465,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"5":543,"11":486,"22":1661},"upgradeStep":1}}}, +{"id":86714,"name":"Mantle of the Burning Scroll","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,564,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":523,"11":465,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"5":543,"11":486,"22":1661},"upgradeStep":1}}}, +{"id":86715,"name":"Robes of the Burning Scroll","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,0,744,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":685,"7":571,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":714,"7":596,"22":2214},"upgradeStep":1}}}, +{"id":86716,"name":"Leggings of the Burning Scroll","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,1751,1087,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"7":683,"11":683,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"7":710,"11":710,"22":1938},"upgradeStep":1}}}, +{"id":86717,"name":"Hood of the Burning Scroll","icon":"inv_helm_raidmage_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,582,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":531,"11":645,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":556,"11":674,"22":1799},"upgradeStep":1}}}, +{"id":86718,"name":"Gloves of the Burning Scroll","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,1301,867,0,507,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":471,"7":576,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"5":489,"7":598,"22":1384},"upgradeStep":1}}}, +{"id":86719,"name":"Eternal Blossom Tunic","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":2818},"upgradeStep":1}}}, +{"id":86720,"name":"Eternal Blossom Handguards","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":1761},"upgradeStep":1}}}, +{"id":86721,"name":"Eternal Blossom Headguard","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":2290},"upgradeStep":1}}}, +{"id":86722,"name":"Eternal Blossom Breeches","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":2466},"upgradeStep":1}}}, +{"id":86723,"name":"Eternal Blossom Shoulderguards","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,0,439,579,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"8":408,"9":532,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"8":423,"9":555,"22":2114},"upgradeStep":1}}}, +{"id":86724,"name":"Red Crane Shoulderguards","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,0,439,579,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"8":408,"9":532,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"8":423,"9":555,"22":2114},"upgradeStep":1}}}, +{"id":86725,"name":"Red Crane Legguards","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":2466},"upgradeStep":1}}}, +{"id":86726,"name":"Red Crane Crown","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":2290},"upgradeStep":1}}}, +{"id":86727,"name":"Red Crane Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":1761},"upgradeStep":1}}}, +{"id":86728,"name":"Red Crane Chestguard","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":2818},"upgradeStep":1}}}, +{"id":86729,"name":"Red Crane Handwraps","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1301,867,507,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":489,"7":598,"22":1761},"upgradeStep":1}}}, +{"id":86730,"name":"Red Crane Helm","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,0,1751,927,658,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":603,"11":603,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":630,"11":630,"22":2290},"upgradeStep":1}}}, +{"id":86731,"name":"Red Crane Legwraps","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,0,1751,1087,0,0,750,0,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1004,"6":694,"11":664,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":1045,"6":721,"11":691,"22":2466},"upgradeStep":1}}}, +{"id":86732,"name":"Red Crane Vest","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,0,1751,1007,733,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"7":589,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"7":614,"22":2818},"upgradeStep":1}}}, +{"id":86733,"name":"Red Crane Mantle","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,0,1301,787,524,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":480,"6":497,"22":2086}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":502,"6":516,"22":2114},"upgradeStep":1}}}, +{"id":86734,"name":"Red Crane Tunic","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,0,738,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"6":683,"11":603,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"6":710,"11":630,"22":2818},"upgradeStep":1}}}, +{"id":86735,"name":"Red Crane Grips","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,867,1301,0,0,612,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":568,"6":484,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":836,"2":1254,"5":590,"6":502,"22":1761},"upgradeStep":1}}}, +{"id":86736,"name":"Red Crane Headpiece","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,927,1751,0,0,0,0,0,620,0,0,681,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"8":567,"11":624,"22":2259}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"8":593,"11":652,"22":2290},"upgradeStep":1}}}, +{"id":86737,"name":"Red Crane Leggings","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1087,1751,0,0,551,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1004,"2":1626,"5":509,"7":784,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":1045,"2":1687,"5":530,"7":815,"22":2466},"upgradeStep":1}}}, +{"id":86738,"name":"Red Crane Spaulders","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,0,427,620,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":391,"8":576,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":409,"8":598,"22":2114},"upgradeStep":1}}}, +{"id":86739,"name":"Beads of the Mogu'shi","icon":"inv_jewelry_necklace_96","type":2,"stats":[463,0,914,0,0,0,0,0,309,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488}},"476":{"randPropPoints":1076,"stats":{"0":430,"2":849,"8":287,"9":566}},"480":{"randPropPoints":1116,"stats":{"0":446,"2":880,"8":297,"9":587},"upgradeStep":1}}}, +{"id":86740,"name":"Stonemaw Armguards","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,610,914,0,0,0,418,386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":335,"7":309,"22":1561}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"6":388,"7":359,"22":1653}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"6":403,"7":372,"22":1675},"upgradeStep":1}}}, +{"id":86741,"name":"Dagger of the Seven Stars","icon":"inv_knife_1h_pandaraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,469,703,0,0,274,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3733,"weaponDamageMax":6934,"weaponSpeed":1.8,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"5":219,"7":268}},"476":{"randPropPoints":827,"weaponDamageMin":3465,"weaponDamageMax":6436,"stats":{"1":435,"2":652,"5":254,"7":311}},"480":{"randPropPoints":859,"weaponDamageMin":3597,"weaponDamageMax":6680,"stats":{"1":452,"2":678,"5":264,"7":323},"upgradeStep":1}}}, +{"id":86742,"name":"Jasper Clawfeet","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[733,0,1219,0,0,0,541,0,0,0,0,430,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":423,"11":338,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1131,"6":498,"11":397,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1175,"6":519,"11":414,"22":3596},"upgradeStep":1}}}, +{"id":86743,"name":"Stoneflesh Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,934,1641,0,0,0,702,0,560,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":545,"8":432,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":646,"8":514,"22":2375}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":674,"8":536,"22":2408},"upgradeStep":1}}}, +{"id":86744,"name":"Heavenly Jade Greatboots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1219,733,0,0,456,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":358,"7":410,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"6":421,"7":484,"22":3547}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"6":439,"7":505,"22":3596},"upgradeStep":1}}}, +{"id":86745,"name":"Sixteen-Fanged Crown","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,0,1641,854,620,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":775,"4":567,"7":540,"22":3069}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":814,"4":593,"7":565,"22":3112},"upgradeStep":1}}}, +{"id":86746,"name":"Stonebound Cinch","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1219,653,462,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":594,"4":423,"7":423,"22":1527}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":623,"4":442,"7":442,"22":1548},"upgradeStep":1}}}, +{"id":86747,"name":"Jade Dust Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1641,934,613,0,0,0,0,0,0,671,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":474,"11":520,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":563,"11":617,"22":1866}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":588,"11":643,"22":1892},"upgradeStep":1}}}, +{"id":86748,"name":"Cape of Three Lanterns","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,914,610,424,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"6":301,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":394,"6":349,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":409,"6":362,"22":1081},"upgradeStep":1}}}, +{"id":86749,"name":"Wildfire Worldwalkers","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,733,1219,0,0,0,548,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":428,"8":327,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"6":505,"8":385,"22":2597}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"6":526,"8":401,"22":2633},"upgradeStep":1}}}, +{"id":86750,"name":"Tomb Raider's Girdle","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,653,1219,0,0,0,0,493,408,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":378,"8":310,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":594,"2":1131,"7":452,"8":373,"22":1527}},"480":{"randPropPoints":1489,"stats":{"1":623,"2":1175,"7":473,"8":391,"22":1548},"upgradeStep":1}}}, +{"id":86751,"name":"Bracers of Six Oxen","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[610,0,914,0,0,0,0,0,0,406,406,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"9":377,"10":377,"22":2257}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"9":391,"10":391,"22":2288},"upgradeStep":1}}}, +{"id":86752,"name":"Nullification Greathelm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[854,0,1641,0,0,0,662,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":502,"7":384,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1522,"6":605,"7":461,"22":4191}},"480":{"randPropPoints":2004,"stats":{"0":814,"2":1581,"6":633,"7":483,"22":4250},"upgradeStep":1}}}, +{"id":86753,"name":"Cloak of Peacock Feathers","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[610,0,914,0,0,0,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"8":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"6":405,"8":331,"22":1066}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"6":420,"8":343,"22":1081},"upgradeStep":1}}}, +{"id":86754,"name":"Amulet of Seven Curses","icon":"inv_jewelry_necklace_99","type":2,"stats":[0,0,914,610,0,424,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"6":301}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"5":394,"6":349}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"5":409,"6":362},"upgradeStep":1}}}, +{"id":86755,"name":"Chain of Shadow","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1219,653,470,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"6":342,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":594,"4":430,"6":410,"22":2125}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":623,"4":450,"6":429,"22":2154},"upgradeStep":1}}}, +{"id":86756,"name":"Legplates of Sagacious Shadows","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1641,934,692,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":537,"7":446,"22":4263}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":636,"7":530,"22":4514}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":664,"7":553,"22":4576},"upgradeStep":1}}}, +{"id":86757,"name":"Hood of Cursed Dreams","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,0,1641,854,544,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":416,"7":481,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":775,"4":498,"7":582,"22":2206}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":814,"4":520,"7":610,"22":2236},"upgradeStep":1}}}, +{"id":86758,"name":"Imperial Ghostbinder's Robes","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1641,934,0,0,681,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":529,"11":460,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":855,"6":627,"11":546,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"6":654,"11":570,"22":2162},"upgradeStep":1}}}, +{"id":86759,"name":"Soulgrasp Choker","icon":"inv_jewelry_necklace_110","type":2,"stats":[610,0,914,0,0,386,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":309,"7":335}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"5":359,"7":388}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"5":372,"7":403},"upgradeStep":1}}}, +{"id":86760,"name":"Sollerets of Spirit Splitting","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[733,0,1219,0,0,0,0,0,0,483,0,510,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":380,"11":398,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1131,"9":446,"11":470,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1175,"9":464,"11":490,"22":3596},"upgradeStep":1}}}, +{"id":86761,"name":"Fetters of Death","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,653,1219,0,0,357,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":269,"11":402,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":594,"2":1131,"5":325,"11":480,"22":2125}},"480":{"randPropPoints":1489,"stats":{"1":623,"2":1175,"5":341,"11":501,"22":2154},"upgradeStep":1}}}, +{"id":86762,"name":"Gara'kal, Fist of the Spiritbinder","icon":"inv_hand_1h_pandaraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,469,703,0,0,0,0,331,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"7":265,"11":225}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"1":435,"2":652,"7":307,"11":261}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"1":452,"2":678,"7":319,"11":272},"upgradeStep":1}}}, +{"id":86763,"name":"Netherrealm Shoulderpads","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,733,1219,0,0,0,0,0,578,0,0,372,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":454,"11":289,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"8":533,"11":342,"22":2036}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"8":555,"11":357,"22":2064},"upgradeStep":1}}}, +{"id":86764,"name":"Eye of the Ancient Spirit","icon":"inv_shield_pandaraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,914,610,376,0,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"7":339,"22":15628}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":349,"7":394,"22":16546}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":362,"7":409,"22":16776},"upgradeStep":1}}}, +{"id":86765,"name":"Sandals of the Severed Soul","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1219,733,467,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"6":414,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":430,"6":486,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":448,"6":506,"22":1487},"upgradeStep":1}}}, +{"id":86766,"name":"Bindings of Ancient Spirits","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,914,610,406,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"7":377,"22":2257}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":391,"7":391,"22":2288},"upgradeStep":1}}}, +{"id":86767,"name":"Circuit of the Frail Soul","icon":"inv_jewelry_ring_146","type":11,"stats":[0,0,914,610,424,0,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"6":301}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":394,"6":349}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":409,"6":362},"upgradeStep":1}}}, +{"id":86768,"name":"Spaulders of the Divided Mind","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,0,1219,733,510,0,0,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"11":382,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":470,"11":450,"22":2036}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":490,"11":469,"22":2064},"upgradeStep":1}}}, +{"id":86769,"name":"Leggings of Imprisoned Will","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1641,934,525,0,0,0,0,0,0,722,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":404,"11":562,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":481,"11":665,"22":3305}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":503,"11":693,"22":3351},"upgradeStep":1}}}, +{"id":86770,"name":"Shadowsummoner Spaulders","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1219,733,0,0,488,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"7":400,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"6":450,"7":470,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"6":469,"7":490,"22":1622},"upgradeStep":1}}}, +{"id":86771,"name":"Jade Charioteer Figurine","icon":"ability_mount_ridinghorse","type":12,"stats":[1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"476":{"randPropPoints":1434,"stats":{"0":956}},"480":{"randPropPoints":1489,"stats":{"0":993},"upgradeStep":1}}}, +{"id":86772,"name":"Jade Bandit Figurine","icon":"ability_rogue_honoramongstthieves","type":12,"stats":[0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"476":{"randPropPoints":1434,"stats":{"1":956}},"480":{"randPropPoints":1489,"stats":{"1":993},"upgradeStep":1}}}, +{"id":86773,"name":"Jade Magistrate Figurine","icon":"inv_hammer_29","type":12,"stats":[0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"476":{"randPropPoints":1434,"stats":{"3":956}},"480":{"randPropPoints":1489,"stats":{"3":993},"upgradeStep":1}}}, +{"id":86774,"name":"Jade Courtesan Figurine","icon":"spell_brokenheart","type":12,"stats":[0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"476":{"randPropPoints":1434,"stats":{"3":956}},"480":{"randPropPoints":1489,"stats":{"3":993},"upgradeStep":1}}}, +{"id":86775,"name":"Jade Warlord Figurine","icon":"inv_sword_139","type":12,"stats":[0,0,1545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"476":{"randPropPoints":1434,"stats":{"2":1434}},"480":{"randPropPoints":1489,"stats":{"2":1489},"upgradeStep":1}}}, +{"id":86776,"name":"Amulet of the Hidden Kings","icon":"inv_jewelry_necklace_102","type":2,"stats":[0,610,914,0,0,0,0,424,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"7":394,"8":349}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"7":409,"8":362},"upgradeStep":1}}}, +{"id":86777,"name":"Screaming Tiger, Qiang's Unbreakable Polearm","icon":"inv_polearm_2h_pandaraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1094,1641,0,0,0,0,554,0,0,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"7":443,"11":665}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"1":1015,"2":1522,"7":514,"11":771}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"1":1054,"2":1581,"7":534,"11":801},"upgradeStep":1}}}, +{"id":86778,"name":"Steelskin, Qiang's Impervious Shield","icon":"inv_shield_pandaraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[610,0,914,0,0,0,0,0,0,396,412,0,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":15628}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"9":368,"10":383,"22":16546}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"9":381,"10":397,"22":16776},"upgradeStep":1}}}, +{"id":86779,"name":"Breastplate of the Kings' Guard","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[934,0,1641,0,0,0,0,702,0,0,0,560,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"11":432,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1523,"7":646,"11":514,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1581,"7":674,"11":536,"22":5230},"upgradeStep":1}}}, +{"id":86780,"name":"Shoulderguards of the Unflanked","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[538,0,1219,0,0,372,0,0,0,0,773,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":493,"2":1131,"5":342,"10":714,"22":3869}},"480":{"randPropPoints":1489,"stats":{"0":515,"2":1175,"5":357,"10":743,"22":3923},"upgradeStep":1}}}, +{"id":86781,"name":"Subetai's Pillaging Leggings","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,934,1641,0,0,0,671,613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":520,"7":474,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":617,"7":563,"22":3305}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":643,"7":588,"22":3351},"upgradeStep":1}}}, +{"id":86782,"name":"Arrow Breaking Windcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,610,914,0,0,0,0,337,447,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"8":358,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"7":313,"8":415,"22":1066}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"7":325,"8":431,"22":1081},"upgradeStep":1}}}, +{"id":86783,"name":"Zian's Choker of Coalesced Shadow","icon":"inv_jewelry_necklace_110","type":2,"stats":[0,0,914,610,430,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":399,"11":340}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":414,"11":353},"upgradeStep":1}}}, +{"id":86784,"name":"Meng's Treads of Insanity","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1219,733,0,0,0,454,0,0,0,534,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":420,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"7":417,"11":493,"22":2597}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"7":435,"11":513,"22":2633},"upgradeStep":1}}}, +{"id":86785,"name":"Girdle of Delirious Visions","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1219,653,395,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":300,"6":384,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":594,"4":361,"6":459,"22":2902}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":623,"4":378,"6":480,"22":2942},"upgradeStep":1}}}, +{"id":86786,"name":"Bracers of Dark Thoughts","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,914,610,376,0,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1122}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":349,"6":394,"22":1188}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":362,"6":409,"22":1204},"upgradeStep":1}}}, +{"id":86787,"name":"Undying Shadow Grips","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1219,733,0,0,0,510,0,0,0,488,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"7":470,"11":450,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"7":490,"11":469,"22":1352},"upgradeStep":1}}}, +{"id":86788,"name":"Hood of Blind Eyes","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1641,854,644,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":496,"6":424,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":775,"4":591,"6":516,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":814,"4":617,"6":541,"22":1757},"upgradeStep":1}}}, +{"id":86789,"name":"Elegion, the Fanged Crescent","icon":"inv_axe_1h_pandaraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[469,0,703,0,0,326,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":261,"8":231}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"0":435,"2":652,"5":303,"8":268}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"0":452,"2":678,"5":314,"8":279},"upgradeStep":1}}}, +{"id":86790,"name":"Vial of Dragon's Blood","icon":"inv_jewelry_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"476":{"randPropPoints":1434,"stats":{"11":956}},"480":{"randPropPoints":1489,"stats":{"11":993},"upgradeStep":1}}}, +{"id":86791,"name":"Bottle of Infinite Stars","icon":"inv_jewelry_trinket_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"476":{"randPropPoints":1434,"stats":{"11":956}},"480":{"randPropPoints":1489,"stats":{"11":993},"upgradeStep":1}}}, +{"id":86792,"name":"Light of the Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":12,"stats":[0,0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"476":{"randPropPoints":1434,"stats":{"7":956}},"480":{"randPropPoints":1489,"stats":{"7":993},"upgradeStep":1}}}, +{"id":86793,"name":"Star-Stealer Waistguard","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[653,0,1219,0,0,0,0,0,0,501,0,395,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":384,"11":300,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":594,"2":1131,"9":459,"11":361,"22":2902}},"480":{"randPropPoints":1489,"stats":{"0":623,"2":1175,"9":480,"11":378,"22":2942},"upgradeStep":1}}}, +{"id":86794,"name":"Starcrusher Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[733,0,1219,0,0,462,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":361,"7":412,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1131,"5":425,"7":485,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1175,"5":443,"7":505,"22":3269},"upgradeStep":1}}}, +{"id":86795,"name":"Chestguard of Total Annihilation","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,934,1641,0,0,0,577,692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":446,"7":537,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":530,"7":636,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":553,"7":664,"22":2752},"upgradeStep":1}}}, +{"id":86796,"name":"Torch of the Celestial Spark","icon":"inv_wand_1h_pandaraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,703,469,0,0,356,237,0,0,0,0,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":1970,"weaponDamageMax":3660,"weaponSpeed":1.9,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":285,"7":190,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":1829,"weaponDamageMax":3397,"stats":{"2":652,"3":435,"6":331,"7":220,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":1898,"weaponDamageMax":3526,"stats":{"2":678,"3":452,"6":343,"7":229,"14":6037},"upgradeStep":1}}}, +{"id":86797,"name":"Phasewalker Striders","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1219,733,541,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":498,"6":397,"22":1866}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":519,"6":414,"22":1892},"upgradeStep":1}}}, +{"id":86798,"name":"Orbital Belt","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,653,0,0,0,462,0,0,0,462,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":353,"11":353,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":594,"7":423,"11":423,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":623,"7":442,"11":442,"22":1216},"upgradeStep":1}}}, +{"id":86799,"name":"Starshatter","icon":"inv_sword_2h_pandaraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1094,0,1641,0,0,0,802,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":642,"8":484}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"0":1015,"2":1523,"6":745,"8":561}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"0":1054,"2":1581,"6":773,"8":583},"upgradeStep":1}}}, +{"id":86800,"name":"Shoulders of Empyreal Focus","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,0,1219,733,448,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2676}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":413,"7":492,"22":2833}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":431,"7":513,"22":2872},"upgradeStep":1}}}, +{"id":86801,"name":"Fang Kung, Spark of Titans","icon":"inv_bow_1h_pandaraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1094,1641,0,0,0,802,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":8390,"weaponDamageMax":15582,"weaponSpeed":3,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":642,"8":484}},"476":{"randPropPoints":1930,"weaponDamageMin":7787,"weaponDamageMax":14463,"stats":{"1":1015,"2":1522,"6":745,"8":561}},"480":{"randPropPoints":2004,"weaponDamageMin":8083,"weaponDamageMax":15012,"stats":{"1":1054,"2":1581,"6":773,"8":583},"upgradeStep":1}}}, +{"id":86802,"name":"Lei Shen's Final Orders","icon":"inv_jewelry_trinket_16","type":12,"stats":[0,0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"476":{"randPropPoints":1434,"stats":{"7":956}},"480":{"randPropPoints":1489,"stats":{"7":993},"upgradeStep":1}}}, +{"id":86803,"name":"Jang-xi's Devastating Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[934,0,1641,0,0,474,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"7":585,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1523,"5":434,"7":691,"22":4514}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1581,"5":454,"7":721,"22":4576},"upgradeStep":1}}}, +{"id":86804,"name":"Crown of Opportunistic Strikes","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,854,1641,0,0,0,569,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":423,"7":503,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1522,"6":517,"7":597,"22":2206}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1581,"6":543,"7":623,"22":2236},"upgradeStep":1}}}, +{"id":86805,"name":"Qin-xi's Polarizing Seal","icon":"inv_misc_trinketpanda_10","type":12,"stats":[0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"480":{"randPropPoints":1489,"stats":{"4":993},"upgradeStep":1}}}, +{"id":86806,"name":"Tihan, Scepter of the Sleeping Emperor","icon":"inv_mace_1h_pandaraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,703,469,282,0,0,0,0,0,0,331,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":2489,"weaponDamageMax":4623,"weaponSpeed":2.4,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":225,"11":265,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":2310,"weaponDamageMax":4291,"stats":{"2":652,"3":435,"4":261,"11":307,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":2398,"weaponDamageMax":4454,"stats":{"2":678,"3":452,"4":272,"11":319,"14":6037},"upgradeStep":1}}}, +{"id":86807,"name":"Spaulders of the Emperor's Rage","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[0,0,1219,733,526,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":412,"7":361,"22":3654}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":485,"7":425,"22":3869}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":505,"7":443,"22":3923},"upgradeStep":1}}}, +{"id":86808,"name":"Magnetized Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1641,934,751,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":585,"7":363,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":855,"4":691,"7":434,"22":2375}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":894,"4":721,"7":454,"22":2408},"upgradeStep":1}}}, +{"id":86809,"name":"Hood of Focused Energy","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1641,854,0,697,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":545,"7":364,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1523,"3":775,"5":643,"7":450,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":814,"5":670,"7":474,"22":1757},"upgradeStep":1}}}, +{"id":86810,"name":"Worldwaker Cabochon","icon":"inv_jewelry_necklace_114","type":2,"stats":[0,0,914,610,0,0,396,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"7":330}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":368,"7":383}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"6":381,"7":397},"upgradeStep":1}}}, +{"id":86811,"name":"Boots of the Still Breath","icon":"inv_boot_leather_raidrogue_l_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,461,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"7":423,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":426,"7":535,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":443,"7":557,"22":1938},"upgradeStep":1}}}, +{"id":86812,"name":"Hisek's Chrysanthemum Cape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[651,0,976,0,0,402,0,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"7":339,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":373,"7":420,"22":1092}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":387,"7":436,"22":1107},"upgradeStep":1}}}, +{"id":86813,"name":"Vizier's Ruby Signet","icon":"inv_jewelry_ring_149","type":11,"stats":[494,0,976,0,0,0,0,0,330,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"10":488}},"483":{"randPropPoints":1148,"stats":{"0":459,"2":906,"8":306,"10":604}},"487":{"randPropPoints":1192,"stats":{"0":476,"2":940,"8":318,"10":627},"upgradeStep":1}}}, +{"id":86814,"name":"Fragment of Fear Made Flesh","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,976,651,0,381,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":353,"6":432}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":367,"6":448},"upgradeStep":1}}}, +{"id":86815,"name":"Attenuating Bracers","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,976,651,0,0,0,440,0,0,0,423,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":409,"11":392,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":424,"11":407,"22":969},"upgradeStep":1}}}, +{"id":86816,"name":"Chestplate of the Forbidden Tower","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1751,1007,603,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":4872}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":554,"11":695,"22":5284}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":578,"11":724,"22":5356},"upgradeStep":1}}}, +{"id":86817,"name":"Gauntlets of Undesired Gifts","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1301,787,399,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":289,"6":454,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":368,"6":572,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":383,"6":595,"22":1761},"upgradeStep":1}}}, +{"id":86818,"name":"Mail of Screaming Secrets","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1751,1007,698,0,0,0,0,0,0,698,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"11":503,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":643,"11":643,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":670,"11":670,"22":3921},"upgradeStep":1}}}, +{"id":86819,"name":"Gloves of Grasping Claws","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1301,787,495,0,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":361,"6":412,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":457,"6":520,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":476,"6":542,"22":1384},"upgradeStep":1}}}, +{"id":86820,"name":"Ring of the Bladed Tempest","icon":"inv_misc_epicring_a3","type":11,"stats":[651,0,976,0,0,0,0,489,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":366,"8":254}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"7":454,"8":315}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"7":471,"8":327},"upgradeStep":1}}}, +{"id":86821,"name":"Bracers of Unseen Strikes","icon":"inv_bracer_leather_raidrogue_l_01","type":6,"armorType":2,"stats":[0,651,976,0,0,0,412,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":309,"7":335,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":383,"7":414,"22":1217}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":397,"7":430,"22":1233},"upgradeStep":1}}}, +{"id":86822,"name":"Waistplate of Overwhelming Assault","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[707,0,1301,0,0,0,0,540,0,0,0,427,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":384,"11":300,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":645,"2":1208,"7":496,"11":391,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":676,"2":1254,"7":518,"11":409,"22":3012},"upgradeStep":1}}}, +{"id":86823,"name":"Windblade Talons","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[787,0,1301,0,0,0,0,0,0,538,538,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":393,"10":393,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"9":497,"10":497,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"9":517,"10":517,"22":3347},"upgradeStep":1}}}, +{"id":86824,"name":"Choker of the Unleashed Storm","icon":"inv_jewelry_necklace_94","type":2,"stats":[0,651,976,0,0,0,477,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":358,"11":270}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":443,"11":334}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":460,"11":347},"upgradeStep":1}}}, +{"id":86825,"name":"Boots of the Blowing Wind","icon":"inv_boot_bracer_raidmage_l_01","type":10,"armorType":1,"stats":[0,0,1301,787,556,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"7":369,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":512,"7":465,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":534,"7":484,"22":1522},"upgradeStep":1}}}, +{"id":86826,"name":"Bracers of Tempestuous Fury","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,976,651,412,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":309,"7":335,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":383,"7":414,"22":1693}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":397,"7":430,"22":1716},"upgradeStep":1}}}, +{"id":86827,"name":"Drape of Gathering Clouds","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,976,651,391,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":293,"11":344,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":363,"11":426,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":377,"11":442,"22":1107},"upgradeStep":1}}}, +{"id":86828,"name":"Twisting Wind Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,976,651,0,423,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":317,"7":330,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":392,"7":409,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":407,"7":424,"22":969},"upgradeStep":1}}}, +{"id":86829,"name":"Tornado-Summoning Censer","icon":"inv_offhand_1h_pandaraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,976,651,0,330,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":247,"6":371}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":306,"6":459}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":318,"6":476},"upgradeStep":1}}}, +{"id":86830,"name":"Ring of the Shattered Shell","icon":"inv_misc_epicring_a2","type":11,"stats":[651,0,976,0,0,0,0,0,0,465,0,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":349,"11":285}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":432,"11":353}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"9":448,"11":367},"upgradeStep":1}}}, +{"id":86831,"name":"Legbreaker Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,651,976,0,0,0,434,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"11":402,"22":1092}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":418,"11":418,"22":1107},"upgradeStep":1}}}, +{"id":86832,"name":"Garalon's Hollow Skull","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[927,0,1751,0,0,0,0,0,0,638,678,0,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":844,"2":1626,"9":583,"10":623,"22":4293}},"487":{"randPropPoints":2139,"stats":{"0":885,"2":1687,"9":610,"10":650,"22":4351},"upgradeStep":1}}}, +{"id":86833,"name":"Grips of the Leviathan","icon":"inv_glove_mail_dungeonmail_c_05","type":7,"armorType":3,"stats":[0,787,1301,0,0,0,0,524,0,0,0,547,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":382,"11":400,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":483,"11":505,"22":2418}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":503,"11":526,"22":2451},"upgradeStep":1}}}, +{"id":86834,"name":"Bonebreaker Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,413,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":299,"7":448,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":380,"7":565,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"5":396,"7":588,"22":1761},"upgradeStep":1}}}, +{"id":86835,"name":"Necklace of Congealed Weaknesses","icon":"inv_jewelry_necklace_104","type":2,"stats":[651,0,976,0,0,0,494,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":371,"11":247}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":459,"11":306}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":476,"11":318},"upgradeStep":1}}}, +{"id":86836,"name":"Sandals of the Unbidden","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,405,0,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":291,"11":456,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":372,"11":573,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"5":388,"11":596,"22":1522},"upgradeStep":1}}}, +{"id":86837,"name":"Grasps of Panic","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1301,787,596,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":436,"6":319,"22":3045}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":551,"6":405,"22":3302}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":573,"6":422,"22":3347},"upgradeStep":1}}}, +{"id":86838,"name":"Robes of Eighty Lights","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,1751,1007,603,0,0,0,0,0,0,755,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":554,"11":695,"22":2781}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":578,"11":724,"22":2818},"upgradeStep":1}}}, +{"id":86839,"name":"Xaril's Hood of Intoxicating Vapors","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,1751,927,0,0,0,638,0,0,0,678,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":583,"11":623,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":610,"11":650,"22":1799},"upgradeStep":1}}}, +{"id":86840,"name":"Stormwake Mistcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,976,651,0,370,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":277,"6":353,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":343,"6":437,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":357,"6":454,"22":1107},"upgradeStep":1}}}, +{"id":86841,"name":"Shining Cicada Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,976,651,0,381,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":353,"6":432,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"5":367,"6":448,"22":969},"upgradeStep":1}}}, +{"id":86842,"name":"Luminescent Firefly Wristguards","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,976,651,0,0,465,0,0,0,0,381,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353,"22":1693}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"6":448,"11":367,"22":1716},"upgradeStep":1}}}, +{"id":86843,"name":"Smooth Beetle Wristbands","icon":"inv_bracer_leather_raidmonk_l_01","type":6,"armorType":2,"stats":[0,651,976,0,0,0,0,0,350,0,0,483,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":262,"11":362,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"8":325,"11":448,"22":1217}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"8":337,"11":465,"22":1233},"upgradeStep":1}}}, +{"id":86844,"name":"Gleaming Moth Cuffs","icon":"inv_bracer_robe_raidmage_j_01","type":6,"armorType":1,"stats":[0,0,976,651,0,0,459,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":344,"7":293,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":426,"7":363,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"6":442,"7":377,"22":969},"upgradeStep":1}}}, +{"id":86845,"name":"Pearlescent Butterfly Wristbands","icon":"inv_bracer_leather_raiddruid_l_01","type":6,"armorType":2,"stats":[0,0,976,651,0,0,0,412,0,0,0,447,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":383,"11":414,"22":1217}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":397,"11":430,"22":1233},"upgradeStep":1}}}, +{"id":86846,"name":"Inlaid Cricket Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[0,0,976,651,360,0,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"11":358,"22":2132}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":334,"11":443,"22":2312}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":347,"11":460,"22":2343},"upgradeStep":1}}}, +{"id":86847,"name":"Jagged Hornet Bracers","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":3,"stats":[0,651,976,0,0,434,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"11":325,"22":1561}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":402,"11":402,"22":1693}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"5":418,"11":418,"22":1716},"upgradeStep":1}}}, +{"id":86848,"name":"Serrated Wasp Bracers","icon":"inv_bracers_plate_raidwarrior_l_01","type":6,"armorType":4,"stats":[494,0,976,0,0,0,0,0,330,651,0,0,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":459,"2":906,"8":306,"9":604,"22":2312}},"487":{"randPropPoints":1192,"stats":{"0":476,"2":940,"8":318,"9":627,"22":2343},"upgradeStep":1}}}, +{"id":86849,"name":"Plated Locust Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[651,0,976,0,0,0,440,423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":330,"7":317,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":409,"7":392,"22":2312}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"6":424,"7":407,"22":2343},"upgradeStep":1}}}, +{"id":86850,"name":"Darting Damselfly Cuffs","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,976,651,471,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"7":277,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":437,"7":343,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":454,"7":357,"22":969},"upgradeStep":1}}}, +{"id":86851,"name":"Painful Thorned Ring","icon":"inv_jewelry_ring_154","type":11,"stats":[0,651,976,0,0,0,0,0,370,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":277,"11":353}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"8":343,"11":437}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"8":357,"11":454},"upgradeStep":1}}}, +{"id":86852,"name":"Impaling Treads","icon":"inv_boots_plate_raidwarrior_l_01","type":10,"armorType":4,"stats":[787,0,1301,0,0,475,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":348,"7":416,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":439,"7":528,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":457,"7":550,"22":3682},"upgradeStep":1}}}, +{"id":86853,"name":"Cloak of Raining Blades","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[651,0,976,0,0,0,0,0,0,494,0,330,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":371,"11":247,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":459,"11":306,"22":1092}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"9":476,"11":318,"22":1107},"upgradeStep":1}}}, +{"id":86854,"name":"Articulated Legplates","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[727,0,1751,0,0,511,0,0,0,0,1087,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"5":363,"10":795,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":664,"2":1626,"5":469,"10":1004,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":695,"2":1687,"5":490,"10":1045,"22":4686},"upgradeStep":1}}}, +{"id":86855,"name":"Wingslasher Pauldrons","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,555,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"11":372,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":513,"11":470,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":534,"11":489,"22":2941},"upgradeStep":1}}}, +{"id":86856,"name":"Korven's Amber-Sealed Beetle","icon":"trade_archaeology_insect-in-amber","type":2,"stats":[0,0,976,651,381,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":353,"6":432}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":367,"6":448},"upgradeStep":1}}}, +{"id":86857,"name":"Belt of Malleable Amber","icon":"inv_belt_robe_raidmage_j_01","type":8,"armorType":1,"stats":[0,0,1301,707,0,455,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":321,"7":372,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":645,"5":417,"7":480,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":676,"5":436,"7":502,"22":1246},"upgradeStep":1}}}, +{"id":86858,"name":"Seal of the Profane","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,976,651,370,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":343,"11":437}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":357,"11":454},"upgradeStep":1}}}, +{"id":86859,"name":"Treads of Deadly Secretions","icon":"inv_boot_leather_raidmonk_l_01","type":10,"armorType":2,"stats":[0,787,1301,0,0,0,0,0,475,0,0,572,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":348,"11":416,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"8":439,"11":528,"22":1912}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"8":457,"11":550,"22":1938},"upgradeStep":1}}}, +{"id":86860,"name":"Shoulderpads of Misshapen Life","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[787,0,1301,0,0,0,572,0,0,0,0,481,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":418,"11":350,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"6":528,"11":444,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"6":550,"11":462,"22":4017},"upgradeStep":1}}}, +{"id":86861,"name":"Monstrous Stompers","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,787,1301,0,0,0,532,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":491,"7":497,"22":2660}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":511,"7":518,"22":2696},"upgradeStep":1}}}, +{"id":86862,"name":"Un'sok's Amber Scalpel","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,750,420,269,0,0,308,0,0,0,0,0,0,6684,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":1992,"weaponDamageMax":3701,"weaponSpeed":1.8,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":191,"7":221,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":1849,"weaponDamageMax":3435,"stats":{"2":697,"3":384,"4":247,"7":283,"14":6206}},"487":{"randPropPoints":917,"weaponDamageMin":1919,"weaponDamageMax":3565,"stats":{"2":723,"3":402,"4":258,"7":296,"14":6445},"upgradeStep":1}}}, +{"id":86863,"name":"Scimitar of Seven Stars","icon":"inv_sword_1h_pandaraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[420,0,750,0,0,298,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":5756,"weaponDamageMax":10691,"weaponSpeed":2.6,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":214,"11":204}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"0":384,"2":697,"5":274,"11":262}},"487":{"randPropPoints":917,"weaponDamageMin":5546,"weaponDamageMax":10300,"stats":{"0":402,"2":723,"5":286,"11":273},"upgradeStep":1}}}, +{"id":86864,"name":"Claws of Shek'zeer","icon":"inv_hand_1h_pandaraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,500,750,0,0,0,376,0,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":5756,"weaponDamageMax":10691,"weaponSpeed":2.6,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":282,"8":196}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"1":464,"2":697,"6":349,"8":242}},"487":{"randPropPoints":917,"weaponDamageMin":5546,"weaponDamageMax":10300,"stats":{"1":482,"2":723,"6":362,"8":252},"upgradeStep":1}}}, +{"id":86865,"name":"Kri'tak, Imperial Scepter of the Swarm","icon":"inv_mace_1h_pandaraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,750,500,343,0,317,0,0,0,0,0,0,0,6684,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":2656,"weaponDamageMax":4934,"weaponSpeed":2.4,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":257,"6":238,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"stats":{"2":697,"3":464,"4":319,"6":294,"14":6206}},"487":{"randPropPoints":917,"weaponDamageMin":2559,"weaponDamageMax":4754,"stats":{"2":723,"3":482,"4":331,"6":306,"14":6445},"upgradeStep":1}}}, +{"id":86866,"name":"Crown of the Doomed Empress","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,927,1751,0,0,0,638,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":844,"2":1626,"6":583,"7":623,"22":3144}},"487":{"randPropPoints":2139,"stats":{"1":885,"2":1687,"6":610,"7":650,"22":3186},"upgradeStep":1}}}, +{"id":86867,"name":"Leggings of Shadow Infestation","icon":"inv_pants_robe_dungeonrobe_c_05","type":9,"armorType":1,"stats":[0,0,1751,1007,0,0,807,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"6":744,"11":469,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"6":775,"11":490,"22":1938},"upgradeStep":1}}}, +{"id":86868,"name":"Bracers of Defiled Earth","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[651,0,976,0,0,330,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,2374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"11":371,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":306,"11":459,"22":2312}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":318,"11":476,"22":2343},"upgradeStep":1}}}, +{"id":86869,"name":"Regail's Band of the Endless","icon":"inv_jewelry_ring_143","type":11,"stats":[0,651,976,0,0,0,453,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"7":301}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":420,"7":373}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"6":436,"7":387},"upgradeStep":1}}}, +{"id":86870,"name":"Deepwater Greatboots","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[579,0,1301,0,0,407,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":297,"10":601,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":532,"2":1208,"5":376,"10":757,"22":3633}},"487":{"randPropPoints":1589,"stats":{"0":555,"2":1254,"5":391,"10":788,"22":3682},"upgradeStep":1}}}, +{"id":86871,"name":"Shackle of Eversparks","icon":"inv_jewelry_necklace_111","type":2,"stats":[651,0,976,0,0,471,0,0,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"8":277}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":437,"8":343}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":454,"8":357},"upgradeStep":1}}}, +{"id":86872,"name":"Kaolan's Withering Necklace","icon":"inv_jewelry_necklace_105","type":2,"stats":[651,0,976,0,0,0,0,0,0,434,434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"10":402}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"9":418,"10":418},"upgradeStep":1}}}, +{"id":86873,"name":"Watersoul Signet","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,976,651,381,0,0,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":353,"7":432}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":367,"7":448},"upgradeStep":1}}}, +{"id":86874,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,976,651,0,0,0,412,0,0,0,447,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":383,"11":414,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"7":397,"11":430,"22":1107},"upgradeStep":1}}}, +{"id":86875,"name":"Cuffs of the Corrupted Waters","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,976,651,434,0,0,0,0,0,0,434,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":940,"3":627,"4":418,"11":418,"22":969},"upgradeStep":1}}}, +{"id":86876,"name":"Casque of Expelled Corruption","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,1751,927,581,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4410,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"4":529,"7":655,"22":4293}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"4":554,"7":683,"22":4351},"upgradeStep":1}}}, +{"id":86877,"name":"Lightning Prisoner's Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1301,787,391,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":281,"7":462,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":360,"7":580,"22":2660}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":375,"7":603,"22":2696},"upgradeStep":1}}}, +{"id":86878,"name":"Asani's Uncleansed Sandals","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1301,787,501,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1964,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"7":414,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":462,"7":521,"22":1912}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":481,"7":542,"22":1938},"upgradeStep":1}}}, +{"id":86879,"name":"Gao-Rei, Staff of the Legendary Protector","icon":"inv_staff_2h_pandaraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,1167,1751,0,0,0,0,0,790,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":11259,"weaponDamageMax":16889,"weaponSpeed":3.3,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":875,"2":1312,"8":592,"11":568}},"483":{"randPropPoints":2061,"weaponDamageMin":10450,"weaponDamageMax":15675,"stats":{"1":1084,"2":1626,"8":734,"11":704}},"487":{"randPropPoints":2139,"weaponDamageMin":10847,"weaponDamageMax":16271,"stats":{"1":1125,"2":1687,"8":761,"11":731},"upgradeStep":1}}}, +{"id":86880,"name":"Dread Shadow Ring","icon":"inv_misc_epicring_b2","type":11,"stats":[651,0,976,0,0,370,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"5":343,"6":437}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"5":357,"6":454},"upgradeStep":1}}}, +{"id":86881,"name":"Stuff of Nightmares","icon":"inv_misc_trinketpanda_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021}},"487":{"randPropPoints":1589,"stats":{"11":1059},"upgradeStep":1}}}, +{"id":86882,"name":"Sunwrought Mail Hauberk","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,566,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":404,"7":562,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"5":520,"7":715,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"5":542,"7":745,"22":3921},"upgradeStep":1}}}, +{"id":86883,"name":"Daybreak Drape","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[651,0,976,0,0,0,0,0,0,423,440,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":392,"10":409,"22":1092}},"487":{"randPropPoints":1192,"stats":{"0":627,"2":940,"9":407,"10":424,"22":1107},"upgradeStep":1}}}, +{"id":86884,"name":"Belt of Embodied Terror","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1301,707,556,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"11":279,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":645,"4":511,"11":365,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":676,"4":533,"11":382,"22":1246},"upgradeStep":1}}}, +{"id":86885,"name":"Spirits of the Sun","icon":"inv_drink_29_sunkissedwine","type":12,"stats":[0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021}},"487":{"randPropPoints":1589,"stats":{"3":1059},"upgradeStep":1}}}, +{"id":86886,"name":"Loshan, Terror Incarnate","icon":"inv_sword_1h_pandaraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,750,500,0,0,338,325,0,0,0,0,0,0,6684,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":2435,"weaponDamageMax":4523,"weaponSpeed":2.2,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":375,"6":254,"7":244,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":2260,"weaponDamageMax":4198,"stats":{"2":697,"3":464,"6":314,"7":302,"14":6206}},"487":{"randPropPoints":917,"weaponDamageMin":2346,"weaponDamageMax":4358,"stats":{"2":723,"3":482,"6":326,"7":313,"14":6445},"upgradeStep":1}}}, +{"id":86887,"name":"Sollerets of Instability","icon":"inv_boot_plate_raidpaladin_l_01","type":10,"armorType":4,"stats":[0,0,1301,787,556,0,0,0,0,0,0,503,0,0,0,0,0,0,0,0,0,0,3731,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"11":369,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":512,"11":465,"22":3633}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":534,"11":484,"22":3682},"upgradeStep":1}}}, +{"id":86888,"name":"Sandals of the Blackest Night","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,1301,787,0,0,0,596,0,0,0,445,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":439,"11":322,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"7":551,"11":410,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"7":573,"11":427,"22":1522},"upgradeStep":1}}}, +{"id":86889,"name":"Taoren, the Soul Burner","icon":"inv_firearm_2h_rifle_pandaraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1087,1751,0,0,0,0,700,0,0,0,761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":8956,"weaponDamageMax":16633,"weaponSpeed":3,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":514,"11":560}},"483":{"randPropPoints":2061,"weaponDamageMin":8312,"weaponDamageMax":15438,"stats":{"1":1004,"2":1626,"7":647,"11":704}},"487":{"randPropPoints":2139,"weaponDamageMin":8628,"weaponDamageMax":16024,"stats":{"1":1045,"2":1687,"7":673,"11":732},"upgradeStep":1}}}, +{"id":86890,"name":"Terror in the Mists","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021}},"487":{"randPropPoints":1589,"stats":{"1":1059},"upgradeStep":1}}}, +{"id":86891,"name":"Cuirass of the Animated Protector","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,0,0,0,0,710,0,679,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"11":488,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"9":654,"11":624,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"9":681,"11":651,"22":5356},"upgradeStep":1}}}, +{"id":86892,"name":"Robes of the Unknown Fear","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1751,1007,0,584,0,0,0,0,0,766,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":418,"11":554,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"5":537,"11":705,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"5":560,"11":735,"22":2214},"upgradeStep":1}}}, +{"id":86893,"name":"Jin'ya, Orb of the Waterspeaker","icon":"inv_staff_2h_pandaraidsha_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1751,1167,0,0,721,813,0,0,0,0,0,0,6687,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":5629,"weaponDamageMax":8444,"weaponSpeed":3.3,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"6":540,"7":609,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":5225,"weaponDamageMax":7838,"stats":{"2":1626,"3":1084,"6":669,"7":755,"14":6208}},"487":{"randPropPoints":2139,"weaponDamageMin":5423,"weaponDamageMax":8135,"stats":{"2":1687,"3":1125,"6":694,"7":783,"14":6443},"upgradeStep":1}}}, +{"id":86894,"name":"Darkmist Vortex","icon":"creatureportrait_cyclone_nodebris","type":12,"stats":[1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"483":{"randPropPoints":1531,"stats":{"0":1021}},"487":{"randPropPoints":1589,"stats":{"0":1059},"upgradeStep":1}}}, +{"id":86895,"name":"Healer's Belt of Final Winter","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1301,787,547,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"7":382,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":505,"7":483,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":526,"7":503,"22":1246},"upgradeStep":1}}}, +{"id":86896,"name":"Invoker's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,467,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":340,"11":424,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":431,"11":536,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"5":449,"11":558,"22":1246},"upgradeStep":1}}}, +{"id":86897,"name":"Sorcerer's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1301,787,0,0,555,509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":406,"7":372,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":513,"7":470,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":534,"7":489,"22":1246},"upgradeStep":1}}}, +{"id":86898,"name":"Weaver's Cord of Eternal Autumn","icon":"inv_belt_leather_raidmonk_l_01","type":8,"armorType":2,"stats":[0,0,1301,787,572,0,0,0,0,0,0,481,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":418,"11":350,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":528,"11":444,"22":1564}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":550,"11":462,"22":1585},"upgradeStep":1}}}, +{"id":86899,"name":"Stalker's Cord of Eternal Autumn","icon":"inv_belt_leather_raidrogue_l_01","type":8,"armorType":2,"stats":[0,787,1301,0,0,495,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":361,"6":412,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"5":457,"6":520,"22":1564}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"5":476,"6":542,"22":1585},"upgradeStep":1}}}, +{"id":86900,"name":"Binder's Chain of Unending Summer","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,0,1301,787,481,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":444,"7":528,"22":2176}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":462,"7":550,"22":2206},"upgradeStep":1}}}, +{"id":86901,"name":"Ranger's Chain of Unending Summer","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,787,1301,0,0,0,0,555,509,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":406,"8":372,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"7":513,"8":470,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"7":534,"8":489,"22":2206},"upgradeStep":1}}}, +{"id":86902,"name":"Mender's Girdle of Endless Spring","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[0,0,1301,787,619,0,0,0,0,0,0,399,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":572,"11":368,"22":2972}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":595,"11":383,"22":3012},"upgradeStep":1}}}, +{"id":86903,"name":"Protector's Girdle of Endless Spring","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[579,0,1301,0,0,0,0,0,399,827,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"9":609,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":532,"2":1208,"8":368,"9":765,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":555,"2":1254,"8":383,"9":796,"22":3012},"upgradeStep":1}}}, +{"id":86904,"name":"Patroller's Girdle of Endless Spring","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[787,0,1301,0,0,426,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":309,"6":442,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":725,"2":1208,"5":393,"6":558,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":756,"2":1254,"5":409,"6":581,"22":3012},"upgradeStep":1}}}, +{"id":86905,"name":"Shin'ka, Execution of Dominion","icon":"inv_axe_2h_pandaraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1167,0,1751,0,0,0,778,0,0,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":12282,"weaponDamageMax":18424,"weaponSpeed":3.6,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"6":723,"11":723}},"487":{"randPropPoints":2139,"weaponDamageMin":11833,"weaponDamageMax":17750,"stats":{"0":1125,"2":1687,"6":750,"11":750},"upgradeStep":1}}}, +{"id":86906,"name":"Kilrak, Jaws of Terror","icon":"inv_sword_1h_pandaraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[500,0,750,0,0,338,0,0,0,0,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":5756,"weaponDamageMax":10691,"weaponSpeed":2.6,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":254,"11":244}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"0":464,"2":697,"5":314,"11":302}},"487":{"randPropPoints":917,"weaponDamageMin":5546,"weaponDamageMax":10300,"stats":{"0":482,"2":723,"5":326,"11":313},"upgradeStep":1}}}, +{"id":86907,"name":"Essence of Terror","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,0,0,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021}},"487":{"randPropPoints":1589,"stats":{"3":1059},"upgradeStep":1}}}, +{"id":86908,"name":"Dreadwoven Leggings of Failure","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,1751,1007,0,641,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"7":529,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"5":589,"7":675,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"5":614,"7":703,"22":1938},"upgradeStep":1}}}, +{"id":86909,"name":"Regail's Crackling Dagger","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,750,420,0,0,253,0,0,0,0,318,0,0,6684,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":1992,"weaponDamageMax":3701,"weaponSpeed":1.8,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"6":179,"11":228,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":1849,"weaponDamageMax":3435,"stats":{"2":697,"3":384,"6":232,"11":292,"14":6206}},"487":{"randPropPoints":917,"weaponDamageMin":1919,"weaponDamageMax":3565,"stats":{"2":723,"3":402,"6":242,"11":305,"14":6445},"upgradeStep":1}}}, +{"id":86910,"name":"Spiritsever","icon":"inv_knife_1h_pandaraidsha_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,500,750,0,0,0,0,0,285,0,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"weaponDamageMin":3985,"weaponDamageMax":7401,"weaponSpeed":1.8,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"8":213,"11":272}},"483":{"randPropPoints":883,"weaponDamageMin":3699,"weaponDamageMax":6870,"stats":{"1":464,"2":697,"8":264,"11":336}},"487":{"randPropPoints":917,"weaponDamageMin":3839,"weaponDamageMax":7131,"stats":{"1":482,"2":723,"8":274,"11":349},"upgradeStep":1}}}, +{"id":86911,"name":"Robes of Torn Nightmares","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1751,1007,698,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":643,"6":643,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":670,"6":670,"22":2214},"upgradeStep":1}}}, +{"id":86912,"name":"Clutches of Dying Hope","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1301,787,0,0,580,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":424,"7":340,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"6":536,"7":431,"22":1738}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"6":558,"7":449,"22":1761},"upgradeStep":1}}}, +{"id":86913,"name":"Breastplate of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,0,984,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"6":907,"7":727,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"6":945,"7":758,"22":5821},"upgradeStep":1}}}, +{"id":86914,"name":"Gauntlets of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[1105,0,1657,0,0,0,700,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":1026,"2":1538,"6":650,"8":704,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":1064,"2":1597,"6":674,"8":731,"22":3638},"upgradeStep":1}}}, +{"id":86915,"name":"Helmet of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[1248,0,2232,0,0,912,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":1140,"2":2071,"5":840,"11":760,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":1193,"2":2150,"5":875,"11":795,"22":4730},"upgradeStep":1}}}, +{"id":86916,"name":"Greaves of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,830,0,0,1024,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"8":767,"11":947,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"8":798,"11":985,"22":5093},"upgradeStep":1}}}, +{"id":86917,"name":"Pauldrons of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,737,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Battlegear of the Lost Catacomb","setId":1123,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"5":684,"7":604,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"5":710,"7":630,"22":4366},"upgradeStep":1}}}, +{"id":86918,"name":"Chestguard of the Lost Catacomb","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,680,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"5":622,"10":985,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"5":650,"10":1024,"22":5821},"upgradeStep":1}}}, +{"id":86919,"name":"Handguards of the Lost Catacomb","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[840,0,1657,0,0,560,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":779,"2":1538,"5":519,"9":1026,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":809,"2":1597,"5":539,"9":1064,"22":3638},"upgradeStep":1}}}, +{"id":86920,"name":"Faceguard of the Lost Catacomb","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[891,0,2232,0,0,0,0,0,594,0,1408,0,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":809,"2":2071,"8":539,"10":1300,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":849,"2":2150,"8":566,"10":1353,"22":4730},"upgradeStep":1}}}, +{"id":86921,"name":"Legguards of the Lost Catacomb","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,0,878,0,996,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"9":812,"11":921,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"9":845,"11":958,"22":5093},"upgradeStep":1}}}, +{"id":86922,"name":"Shoulderguards of the Lost Catacomb","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,0,0,0,560,0,0,760,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[10],"setName":"Plate of the Lost Catacomb","setId":1124,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"8":519,"11":699,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"8":539,"11":729,"22":4366},"upgradeStep":1}}}, +{"id":86923,"name":"Eternal Blossom Raiment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":3063},"upgradeStep":1}}}, +{"id":86924,"name":"Eternal Blossom Grips","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":1915},"upgradeStep":1}}}, +{"id":86925,"name":"Eternal Blossom Headpiece","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":2458}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":2489},"upgradeStep":1}}}, +{"id":86926,"name":"Eternal Blossom Legguards","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":2680},"upgradeStep":1}}}, +{"id":86927,"name":"Eternal Blossom Spaulders","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,0,566,790,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Eternal Blossom","setId":1127,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":520,"8":733,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":543,"8":761,"22":2298},"upgradeStep":1}}}, +{"id":86928,"name":"Eternal Blossom Handwraps","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":1891}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":1915},"upgradeStep":1}}}, +{"id":86929,"name":"Eternal Blossom Helm","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,2232,1248,872,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":800,"11":800,"22":2458}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"4":835,"11":835,"22":2489},"upgradeStep":1}}}, +{"id":86930,"name":"Eternal Blossom Legwraps","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,2232,1408,0,0,967,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"6":894,"11":857,"22":2647}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"6":930,"11":891,"22":2680},"upgradeStep":1}}}, +{"id":86931,"name":"Eternal Blossom Robes","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,2232,1328,956,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"7":772,"22":3026}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"7":805,"22":3063},"upgradeStep":1}}}, +{"id":86932,"name":"Eternal Blossom Mantle","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1657,1025,689,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Eternal Blossom","setId":1125,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":634,"6":633,"22":2269}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":661,"6":657,"22":2298},"upgradeStep":1}}}, +{"id":86933,"name":"Eternal Blossom Gloves","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":1891}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":1915},"upgradeStep":1}}}, +{"id":86934,"name":"Eternal Blossom Cover","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,2232,1248,0,0,774,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2083}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":710,"11":854,"22":2458}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"6":741,"11":891,"22":2489},"upgradeStep":1}}}, +{"id":86935,"name":"Eternal Blossom Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,2232,1408,0,0,0,952,0,0,0,952,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":2243}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"7":880,"11":880,"22":2647}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"7":915,"11":915,"22":2680},"upgradeStep":1}}}, +{"id":86936,"name":"Eternal Blossom Vestment","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,2232,1328,0,0,970,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2564}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":894,"7":750,"22":3026}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":931,"7":781,"22":3063},"upgradeStep":1}}}, +{"id":86937,"name":"Eternal Blossom Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1657,1025,718,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Eternal Blossom","setId":1126,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1923}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":667,"11":614,"22":2269}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":692,"11":640,"22":2298},"upgradeStep":1}}}, +{"id":86938,"name":"Eternal Blossom Tunic","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":3063},"upgradeStep":1}}}, +{"id":86939,"name":"Eternal Blossom Handguards","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":1915},"upgradeStep":1}}}, +{"id":86940,"name":"Eternal Blossom Headguard","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":2458}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":2489},"upgradeStep":1}}}, +{"id":86941,"name":"Eternal Blossom Breeches","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":2680},"upgradeStep":1}}}, +{"id":86942,"name":"Eternal Blossom Shoulderguards","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,0,0,560,760,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[1],"setName":"Armor of the Eternal Blossom","setId":1128,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"8":519,"9":699,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"8":539,"9":729,"22":2298},"upgradeStep":1}}}, +{"id":86943,"name":"Boots of the Still Breath","icon":"inv_boot_leather_raidrogue_l_01","type":10,"armorType":2,"stats":[0,1025,1657,0,0,0,597,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"7":423,"22":1763}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":551,"7":695,"22":2080}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":574,"7":723,"22":2106},"upgradeStep":1}}}, +{"id":86944,"name":"Articulated Legplates","icon":"inv_pants_plate_raiddeathknight_l_01","type":9,"armorType":4,"stats":[971,0,2232,0,0,674,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"5":363,"10":795,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":889,"2":2071,"5":619,"10":1300,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":929,"2":2150,"5":646,"10":1353,"22":5093},"upgradeStep":1}}}, +{"id":86945,"name":"Hisek's Chrysanthemum Cape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[829,0,1243,0,0,512,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"7":339,"22":1007}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"5":475,"7":536,"22":1189}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"5":493,"7":556,"22":1203},"upgradeStep":1}}}, +{"id":86946,"name":"Vizier's Ruby Signet","icon":"inv_jewelry_ring_149","type":11,"stats":[630,0,1243,0,0,0,0,0,420,0,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"10":488}},"509":{"randPropPoints":1463,"stats":{"0":585,"2":1154,"8":390,"10":769}},"513":{"randPropPoints":1518,"stats":{"0":607,"2":1198,"8":404,"10":798},"upgradeStep":1}}}, +{"id":86947,"name":"Gloves of Grasping Claws","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1657,1025,642,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":361,"6":412,"22":1259}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":593,"6":674,"22":1486}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":617,"6":701,"22":1504},"upgradeStep":1}}}, +{"id":86948,"name":"Attenuating Bracers","icon":"inv_bracer_cloth_raidwarlock_l_01","type":6,"armorType":1,"stats":[0,0,1243,829,0,0,0,561,0,0,0,539,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"7":521,"11":500,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1197,"3":798,"7":540,"11":519,"22":1053},"upgradeStep":1}}}, +{"id":86949,"name":"Fragment of Fear Made Flesh","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,1243,829,0,485,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"5":450,"6":550}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"5":467,"6":571},"upgradeStep":1}}}, +{"id":86950,"name":"Gauntlets of Undesired Gifts","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1657,1025,520,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":289,"6":454,"22":1602}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":479,"6":739,"22":1891}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":499,"6":769,"22":1915},"upgradeStep":1}}}, +{"id":86951,"name":"Mail of Screaming Secrets","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,2232,1328,912,0,0,0,0,0,0,912,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"11":503,"22":3568}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":840,"11":840,"22":4210}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":875,"11":875,"22":4262},"upgradeStep":1}}}, +{"id":86952,"name":"Chestplate of the Forbidden Tower","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,2232,1328,790,0,0,0,0,0,0,984,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":4872}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":727,"11":907,"22":5749}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":758,"11":945,"22":5821},"upgradeStep":1}}}, +{"id":86953,"name":"Choker of the Unleashed Storm","icon":"inv_jewelry_necklace_94","type":2,"stats":[0,829,1243,0,0,0,608,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":358,"11":270}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"6":564,"11":426}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"6":586,"11":442},"upgradeStep":1}}}, +{"id":86954,"name":"Bracers of Unseen Strikes","icon":"inv_bracer_leather_raidrogue_l_01","type":6,"armorType":2,"stats":[0,829,1243,0,0,0,525,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":309,"7":335,"22":1122}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"6":487,"7":528,"22":1324}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"6":506,"7":548,"22":1340},"upgradeStep":1}}}, +{"id":86955,"name":"Waistplate of Overwhelming Assault","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[945,0,1657,0,0,0,0,710,0,0,0,566,0,0,0,0,0,0,0,0,0,0,3315,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":384,"11":300,"22":2741}},"509":{"randPropPoints":1950,"stats":{"0":866,"2":1538,"7":653,"11":520,"22":3234}},"513":{"randPropPoints":2024,"stats":{"0":904,"2":1597,"7":681,"11":543,"22":3274},"upgradeStep":1}}}, +{"id":86956,"name":"Windblade Talons","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[1025,0,1657,0,0,0,0,0,0,697,697,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":393,"10":393,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"9":644,"10":644,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"9":670,"10":670,"22":3638},"upgradeStep":1}}}, +{"id":86957,"name":"Ring of the Bladed Tempest","icon":"inv_misc_epicring_a3","type":11,"stats":[829,0,1243,0,0,0,0,623,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":366,"8":254}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"7":578,"8":402}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"7":600,"8":417},"upgradeStep":1}}}, +{"id":86958,"name":"Twisting Wind Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,1243,829,0,539,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":317,"7":330,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"5":500,"7":521,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"5":519,"7":540,"22":1053},"upgradeStep":1}}}, +{"id":86959,"name":"Boots of the Blowing Wind","icon":"inv_boot_bracer_raidmage_l_01","type":10,"armorType":1,"stats":[0,0,1657,1025,721,0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"7":369,"22":1385}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":666,"7":601,"22":1634}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":693,"7":625,"22":1655},"upgradeStep":1}}}, +{"id":86960,"name":"Tornado-Summoning Censer","icon":"inv_offhand_1h_pandaraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1243,829,0,420,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":247,"6":371}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"5":390,"6":585}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"5":404,"6":607},"upgradeStep":1}}}, +{"id":86961,"name":"Drape of Gathering Clouds","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1243,829,498,0,0,0,0,0,0,585,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":293,"11":344,"22":1007}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":462,"11":543,"22":1189}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":480,"11":563,"22":1203},"upgradeStep":1}}}, +{"id":86962,"name":"Bracers of Tempestuous Fury","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,1243,829,525,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":309,"7":335,"22":1561}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":487,"7":528,"22":1842}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":506,"7":548,"22":1865},"upgradeStep":1}}}, +{"id":86963,"name":"Legbreaker Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,829,1243,0,0,0,553,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"11":325,"22":1007}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"6":513,"11":513,"22":1189}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"6":532,"11":532,"22":1203},"upgradeStep":1}}}, +{"id":86964,"name":"Bonebreaker Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,1025,1657,0,0,537,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":299,"7":448,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"5":495,"7":730,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"5":516,"7":760,"22":1915},"upgradeStep":1}}}, +{"id":86965,"name":"Grips of the Leviathan","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,1025,1657,0,0,0,0,678,0,0,0,708,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":382,"11":400,"22":2230}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":627,"11":654,"22":2631}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":652,"11":680,"22":2664},"upgradeStep":1}}}, +{"id":86966,"name":"Garalon's Hollow Skull","icon":"inv_helm_plate_raiddeathknight_l_01","type":1,"armorType":4,"stats":[1248,0,2232,0,0,0,0,0,0,852,892,0,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":1140,"2":2071,"9":780,"10":820,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":1193,"2":2149,"9":815,"10":855,"22":4730},"upgradeStep":1}}}, +{"id":86967,"name":"Necklace of Congealed Weaknesses","icon":"inv_jewelry_necklace_104","type":2,"stats":[829,0,1243,0,0,0,630,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":371,"11":247}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"6":585,"11":390}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1197,"6":607,"11":404},"upgradeStep":1}}}, +{"id":86968,"name":"Ring of the Shattered Shell","icon":"inv_misc_epicring_a2","type":11,"stats":[829,0,1243,0,0,0,0,0,0,593,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":349,"11":285}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"9":550,"11":450}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"9":571,"11":467},"upgradeStep":1}}}, +{"id":86969,"name":"Sandals of the Unbidden","icon":"inv_boot_cloth_raidwarlock_l_01","type":10,"armorType":1,"stats":[0,0,1657,1025,0,529,0,0,0,0,0,798,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":291,"11":456,"22":1385}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"5":487,"11":738,"22":1634}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"5":508,"11":768,"22":1655},"upgradeStep":1}}}, +{"id":86970,"name":"Xaril's Hood of Intoxicating Vapors","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,2232,1248,0,0,0,852,0,0,0,892,0,0,0,0,0,0,0,0,0,0,1980,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"7":780,"11":820,"22":1931}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"7":815,"11":855,"22":1956},"upgradeStep":1}}}, +{"id":86971,"name":"Stormwake Mistcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1243,829,0,472,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":277,"6":353,"22":1007}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"5":438,"6":557,"22":1189}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"5":454,"6":578,"22":1203},"upgradeStep":1}}}, +{"id":86972,"name":"Robes of Eighty Lights","icon":"inv_robe_leather_raiddruid_l_01","type":5,"armorType":2,"stats":[0,0,2232,1328,790,0,0,0,0,0,0,984,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":2564}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":727,"11":907,"22":3026}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":758,"11":945,"22":3063},"upgradeStep":1}}}, +{"id":86973,"name":"Grasps of Panic","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1657,1025,771,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":436,"6":319,"22":3045}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":712,"6":527,"22":3593}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":741,"6":549,"22":3638},"upgradeStep":1}}}, +{"id":86974,"name":"Painful Thorned Ring","icon":"inv_jewelry_ring_154","type":11,"stats":[0,829,1243,0,0,0,0,0,472,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":277,"11":353}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"8":438,"11":557}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"8":454,"11":578},"upgradeStep":1}}}, +{"id":86975,"name":"Robes of Torn Nightmares","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,2232,1328,912,0,912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":840,"6":840,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2149,"3":1273,"4":875,"6":875,"22":2407},"upgradeStep":1}}}, +{"id":86976,"name":"Korven's Amber-Sealed Beetle","icon":"trade_archaeology_insect-in-amber","type":2,"stats":[0,0,1243,829,485,0,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":450,"6":550}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":467,"6":571},"upgradeStep":1}}}, +{"id":86977,"name":"Clutches of Dying Hope","icon":"inv_glove_leather_raiddruid_l_01","type":7,"armorType":2,"stats":[0,0,1657,1025,0,0,750,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":424,"7":340,"22":1602}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"6":693,"7":560,"22":1891}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"6":721,"7":583,"22":1915},"upgradeStep":1}}}, +{"id":86978,"name":"Wingslasher Pauldrons","icon":"inv_shoulder_mail_raidhunter_l_01","type":3,"armorType":3,"stats":[0,1025,1657,0,0,0,718,0,0,0,0,660,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"11":372,"22":2676}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":664,"11":610,"22":3157}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":691,"11":634,"22":3197},"upgradeStep":1}}}, +{"id":86979,"name":"Impaling Treads","icon":"inv_boots_plate_raidwarrior_l_01","type":10,"armorType":4,"stats":[1025,0,1657,0,0,614,0,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4051,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":348,"7":416,"22":3350}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"5":568,"7":685,"22":3953}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"5":591,"7":713,"22":4002},"upgradeStep":1}}}, +{"id":86980,"name":"Cloak of Raining Blades","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[829,0,1243,0,0,0,0,0,0,630,0,420,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Wind Lord Mel'jarak"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":371,"11":247,"22":1007}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"9":585,"11":390,"22":1189}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"9":607,"11":404,"22":1203},"upgradeStep":1}}}, +{"id":86981,"name":"Belt of Malleable Amber","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,1657,945,0,602,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":321,"7":372,"22":1133}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":866,"5":553,"7":634,"22":1337}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":904,"5":577,"7":661,"22":1354},"upgradeStep":1}}}, +{"id":86982,"name":"Seal of the Profane","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,1243,829,472,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":438,"11":557}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":454,"11":578},"upgradeStep":1}}}, +{"id":86983,"name":"Un'sok's Amber Scalpel","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,956,557,353,0,0,404,0,0,0,0,0,0,8518,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":2538,"weaponDamageMax":4715,"weaponSpeed":1.8,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":191,"7":221,"14":5011}},"509":{"randPropPoints":1125,"weaponDamageMin":2356,"weaponDamageMax":4376,"stats":{"2":888,"3":512,"4":325,"7":372,"14":7907}},"513":{"randPropPoints":1168,"weaponDamageMin":2446,"weaponDamageMax":4543,"stats":{"2":921,"3":534,"4":339,"7":388,"14":8209},"upgradeStep":1}}}, +{"id":86984,"name":"Treads of Deadly Secretions","icon":"inv_boot_leather_raidmonk_l_01","type":10,"armorType":2,"stats":[0,1025,1657,0,0,0,0,0,614,0,0,742,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":348,"11":416,"22":1763}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"8":568,"11":685,"22":2080}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"8":591,"11":713,"22":2106},"upgradeStep":1}}}, +{"id":86985,"name":"Monstrous Stompers","icon":"inv_boot_mail_raidhunter_l_01","type":10,"armorType":3,"stats":[0,1025,1657,0,0,0,686,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2966,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":635,"7":646,"22":2894}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":660,"7":672,"22":2930},"upgradeStep":1}}}, +{"id":86986,"name":"Shoulderpads of Misshapen Life","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,0,740,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":418,"11":350,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"6":684,"11":576,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"6":711,"11":600,"22":4366},"upgradeStep":1}}}, +{"id":86987,"name":"Scimitar of Seven Stars","icon":"inv_sword_1h_pandaraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[557,0,956,0,0,391,0,0,0,0,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":7334,"weaponDamageMax":13622,"weaponSpeed":2.6,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Amber-Shaper Un'sok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":214,"11":204}},"509":{"randPropPoints":1125,"weaponDamageMin":6807,"weaponDamageMax":12643,"stats":{"0":512,"2":887,"5":360,"11":345}},"513":{"randPropPoints":1168,"weaponDamageMin":7066,"weaponDamageMax":13123,"stats":{"0":534,"2":921,"5":376,"11":359},"upgradeStep":1}}}, +{"id":86988,"name":"Claws of Shek'zeer","icon":"inv_hand_1h_pandaraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,637,956,0,0,0,479,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":7334,"weaponDamageMax":13622,"weaponSpeed":2.6,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":282,"8":196}},"509":{"randPropPoints":1125,"weaponDamageMin":6807,"weaponDamageMax":12643,"stats":{"1":592,"2":887,"6":444,"8":309}},"513":{"randPropPoints":1168,"weaponDamageMin":7066,"weaponDamageMax":13123,"stats":{"1":614,"2":921,"6":461,"8":321},"upgradeStep":1}}}, +{"id":86989,"name":"Leggings of Shadow Infestation","icon":"inv_pants_cloth_raidwarlock_l_01","type":9,"armorType":1,"stats":[0,0,2232,1328,0,0,1051,0,0,0,0,674,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":969,"11":619,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":1009,"11":646,"22":2106},"upgradeStep":1}}}, +{"id":86990,"name":"Kri'tak, Imperial Scepter of the Swarm","icon":"inv_mace_1h_pandaraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,956,637,438,0,404,0,0,0,0,0,0,0,8518,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":3385,"weaponDamageMax":6287,"weaponSpeed":2.4,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":257,"6":238,"14":5011}},"509":{"randPropPoints":1125,"weaponDamageMin":3142,"weaponDamageMax":5835,"stats":{"2":888,"3":592,"4":406,"6":375,"14":7907}},"513":{"randPropPoints":1168,"weaponDamageMin":3261,"weaponDamageMax":6057,"stats":{"2":921,"3":614,"4":422,"6":389,"14":8209},"upgradeStep":1}}}, +{"id":86991,"name":"Crown of the Doomed Empress","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,1248,2232,0,0,0,852,892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"6":780,"7":820,"22":3421}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"6":815,"7":855,"22":3463},"upgradeStep":1}}}, +{"id":86992,"name":"Shining Cicada Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,1243,829,0,485,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"5":450,"6":550,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"5":467,"6":571,"22":1053},"upgradeStep":1}}}, +{"id":86993,"name":"Darting Damselfly Cuffs","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1243,829,600,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"7":277,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":557,"7":438,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":578,"7":454,"22":1053},"upgradeStep":1}}}, +{"id":86994,"name":"Gleaming Moth Cuffs","icon":"inv_bracer_cloth_raidwarlock_l_01","type":6,"armorType":1,"stats":[0,0,1243,829,0,0,585,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":344,"7":293,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"6":543,"7":462,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1197,"3":798,"6":563,"7":480,"22":1053},"upgradeStep":1}}}, +{"id":86995,"name":"Smooth Beetle Wristbands","icon":"inv_bracer_leather_raidmonk_l_01","type":6,"armorType":2,"stats":[0,829,1243,0,0,0,0,0,446,0,0,615,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":262,"11":362,"22":1122}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"8":414,"11":571,"22":1324}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"8":429,"11":593,"22":1340},"upgradeStep":1}}}, +{"id":86996,"name":"Pearlescent Butterfly Wristbands","icon":"inv_bracer_leather_raidrogue_j_01","type":6,"armorType":2,"stats":[0,0,1243,829,0,0,0,525,0,0,0,569,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1122}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"7":487,"11":528,"22":1324}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"7":506,"11":548,"22":1340},"upgradeStep":1}}}, +{"id":86997,"name":"Jagged Hornet Bracers","icon":"inv_bracer_mail_raidhunter_l_01","type":6,"armorType":3,"stats":[0,829,1243,0,0,553,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,1888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"11":325,"22":1561}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"5":513,"11":513,"22":1842}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"5":532,"11":532,"22":1865},"upgradeStep":1}}}, +{"id":86998,"name":"Luminescent Firefly Wristguards","icon":"inv_bracers_mail_raidshaman_l_01","type":6,"armorType":3,"stats":[0,0,1243,829,0,0,593,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,1888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":1561}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"6":550,"11":450,"22":1842}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"6":571,"11":467,"22":1865},"upgradeStep":1}}}, +{"id":86999,"name":"Inlaid Cricket Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[0,0,1243,829,458,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,2578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"11":358,"22":2132}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":426,"11":564,"22":2515}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":442,"11":586,"22":2547},"upgradeStep":1}}}, +{"id":87000,"name":"Plated Locust Bracers","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[829,0,1243,0,0,0,561,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":330,"7":317,"22":2132}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"6":521,"7":500,"22":2515}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"6":540,"7":519,"22":2547},"upgradeStep":1}}}, +{"id":87001,"name":"Serrated Wasp Bracers","icon":"inv_bracers_plate_raidwarrior_l_01","type":6,"armorType":4,"stats":[630,0,1243,0,0,0,0,0,420,829,0,0,0,0,0,0,0,0,0,0,0,0,2578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488,"22":2132}},"509":{"randPropPoints":1463,"stats":{"0":585,"2":1154,"8":390,"9":769,"22":2515}},"513":{"randPropPoints":1518,"stats":{"0":607,"2":1198,"8":404,"9":798,"22":2547},"upgradeStep":1}}}, +{"id":87002,"name":"Yaungol Slayer's Tunic","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":4210}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":4262},"upgradeStep":1}}}, +{"id":87003,"name":"Yaungol Slayer's Gloves","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":2631}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":2664},"upgradeStep":1}}}, +{"id":87004,"name":"Yaungol Slayer's Headguard","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":3421}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":3463},"upgradeStep":1}}}, +{"id":87005,"name":"Yaungol Slayer's Legguards","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":3684}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":3730},"upgradeStep":1}}}, +{"id":87006,"name":"Yaungol Slayer's Spaulders","icon":"inv_shoulder_mail_raidhunter_l_01","type":3,"armorType":3,"stats":[0,1025,1657,0,0,0,0,566,790,0,0,0,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[2],"setName":"Yaungol Slayer Battlegear","setId":1129,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":520,"8":733,"22":3157}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":543,"8":761,"22":3197},"upgradeStep":1}}}, +{"id":87007,"name":"Gloves of the Burning Scroll","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,1657,1105,0,646,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"5":600,"7":733,"22":1486}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"5":623,"7":761,"22":1504},"upgradeStep":1}}}, +{"id":87008,"name":"Hood of the Burning Scroll","icon":"inv_helm_raidmage_l_01","type":1,"armorType":1,"stats":[0,0,2232,1248,0,0,774,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,1980,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":710,"11":854,"22":1931}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"6":741,"11":891,"22":1956},"upgradeStep":1}}}, +{"id":87009,"name":"Leggings of the Burning Scroll","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,2232,1408,0,0,0,952,0,0,0,952,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"7":880,"11":880,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"7":915,"11":915,"22":2106},"upgradeStep":1}}}, +{"id":87010,"name":"Robes of the Burning Scroll","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,2232,1328,0,0,970,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":894,"7":750,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":931,"7":781,"22":2407},"upgradeStep":1}}}, +{"id":87011,"name":"Mantle of the Burning Scroll","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1657,1025,0,718,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Burning Scroll","setId":1130,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"5":667,"11":614,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"5":692,"11":640,"22":1805},"upgradeStep":1}}}, +{"id":87012,"name":"Dagger of the Seven Stars","icon":"inv_knife_1h_pandaraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,597,896,0,0,349,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":4757,"weaponDamageMax":8835,"weaponSpeed":1.8,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"5":219,"7":268}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":832,"5":324,"7":396}},"506":{"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"stats":{"1":575,"2":863,"5":337,"7":411},"upgradeStep":1}}}, +{"id":87013,"name":"Stoneflesh Leggings","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1234,2091,0,0,0,917,0,735,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":545,"8":432,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":845,"8":677,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":880,"8":705,"22":2623},"upgradeStep":1}}}, +{"id":87014,"name":"Stonemaw Armguards","icon":"inv_bracer_mail_raidhunter_l_01","type":6,"armorType":3,"stats":[0,776,1164,0,0,0,533,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":335,"7":309,"22":1561}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"6":495,"7":456,"22":1802}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"6":513,"7":474,"22":1825},"upgradeStep":1}}}, +{"id":87015,"name":"Jasper Clawfeet","icon":"inv_boots_plate_raidwarrior_l_01","type":10,"armorType":4,"stats":[955,0,1553,0,0,0,702,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":423,"11":338,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"6":648,"11":515,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"6":675,"11":536,"22":3916},"upgradeStep":1}}}, +{"id":87016,"name":"Beads of the Mogu'shi","icon":"inv_jewelry_necklace_96","type":2,"stats":[590,0,1164,0,0,0,0,0,393,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"8":247,"9":488}},"502":{"randPropPoints":1370,"stats":{"0":548,"2":1081,"8":365,"9":720}},"506":{"randPropPoints":1422,"stats":{"0":568,"2":1122,"8":379,"9":748},"upgradeStep":1}}}, +{"id":87017,"name":"Jade Dust Leggings","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,2091,1234,803,0,0,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":474,"11":520,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":740,"11":808,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":771,"11":842,"22":2061},"upgradeStep":1}}}, +{"id":87018,"name":"Cape of Three Lanterns","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1164,776,479,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":445,"6":502,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":462,"6":521,"22":1177},"upgradeStep":1}}}, +{"id":87019,"name":"Stonebound Cinch","icon":"inv_belt_leather_raidmonk_l_01","type":8,"armorType":2,"stats":[0,0,1553,875,610,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":561,"7":561,"22":1665}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":585,"7":585,"22":1686},"upgradeStep":1}}}, +{"id":87020,"name":"Sixteen-Fanged Crown","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,2091,1154,823,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":2899}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":756,"7":721,"22":3346}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":789,"7":753,"22":3389},"upgradeStep":1}}}, +{"id":87021,"name":"Heavenly Jade Greatboots","icon":"inv_boot_plate_raidpaladin_l_01","type":10,"armorType":4,"stats":[0,0,1553,955,0,0,590,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":358,"7":410,"22":3350}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":546,"7":630,"22":3867}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":568,"7":656,"22":3916},"upgradeStep":1}}}, +{"id":87022,"name":"Tomb Raider's Girdle","icon":"inv_belt_leather_raiddruid_l_01","type":8,"armorType":2,"stats":[0,875,1553,0,0,0,0,651,542,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":378,"8":310,"22":1442}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"7":598,"8":498,"22":1665}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"7":624,"8":520,"22":1686},"upgradeStep":1}}}, +{"id":87023,"name":"Wildfire Worldwalkers","icon":"inv_boot_mail_raidhunter_l_01","type":10,"armorType":3,"stats":[0,955,1553,0,0,0,712,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":428,"8":327,"22":2453}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":657,"8":499,"22":2831}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":684,"8":520,"22":2867},"upgradeStep":1}}}, +{"id":87024,"name":"Nullification Greathelm","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[1154,0,2090,0,0,0,882,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":502,"7":384,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1940,"6":809,"7":616,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"6":845,"7":643,"22":4628},"upgradeStep":1}}}, +{"id":87025,"name":"Bracers of Six Oxen","icon":"inv_bracers_plate_raidwarrior_l_01","type":6,"armorType":4,"stats":[776,0,1164,0,0,0,0,0,0,517,517,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"9":480,"10":480,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"9":499,"10":499,"22":2492},"upgradeStep":1}}}, +{"id":87026,"name":"Cloak of Peacock Feathers","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[776,0,1164,0,0,0,555,0,454,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"8":285,"22":1007}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":515,"8":421,"22":1163}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"6":535,"8":437,"22":1177},"upgradeStep":1}}}, +{"id":87027,"name":"Imperial Ghostbinder's Robes","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,2090,1234,0,0,890,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":529,"11":460,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1940,"3":1134,"6":821,"11":719,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":855,"11":749,"22":2355},"upgradeStep":1}}}, +{"id":87028,"name":"Amulet of Seven Curses","icon":"inv_jewelry_necklace_99","type":2,"stats":[0,0,1164,776,0,540,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"6":301}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"5":502,"6":445}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"5":521,"6":462},"upgradeStep":1}}}, +{"id":87029,"name":"Hood of Cursed Dreams","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,0,2090,1154,719,0,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":416,"7":481,"22":2083}},"502":{"randPropPoints":2460,"stats":{"2":1940,"3":1054,"4":661,"7":781,"22":2405}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":689,"7":816,"22":2435},"upgradeStep":1}}}, +{"id":87030,"name":"Chain of Shadow","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,0,1553,875,621,0,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"6":342,"22":2007}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"6":544,"22":2316}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"6":568,"22":2346},"upgradeStep":1}}}, +{"id":87031,"name":"Legplates of Sagacious Shadows","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[0,0,2091,1234,903,0,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":537,"7":446,"22":4263}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":833,"7":698,"22":4921}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":867,"7":727,"22":4984},"upgradeStep":1}}}, +{"id":87032,"name":"Gara'kal, Fist of the Spiritbinder","icon":"inv_hand_1h_pandaraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,597,896,0,0,0,0,422,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"7":265,"11":225}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"7":391,"11":333}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":575,"2":863,"7":406,"11":346},"upgradeStep":1}}}, +{"id":87033,"name":"Netherrealm Shoulderpads","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,955,1553,0,0,0,0,0,747,0,0,485,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":454,"11":289,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"8":690,"11":447,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"8":718,"11":465,"22":2248},"upgradeStep":1}}}, +{"id":87034,"name":"Fetters of Death","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,875,1553,0,0,477,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":269,"11":402,"22":2007}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":436,"11":633,"22":2316}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":456,"11":661,"22":2346},"upgradeStep":1}}}, +{"id":87035,"name":"Sollerets of Spirit Splitting","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,0,624,0,663,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":380,"11":398,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"9":577,"11":612,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"9":600,"11":637,"22":3916},"upgradeStep":1}}}, +{"id":87036,"name":"Soulgrasp Choker","icon":"inv_jewelry_necklace_110","type":2,"stats":[776,0,1164,0,0,492,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":309,"7":335}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"5":456,"7":495}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"5":474,"7":513},"upgradeStep":1}}}, +{"id":87037,"name":"Sandals of the Severed Soul","icon":"inv_boots_robe_raidwarlock_j_01","type":10,"armorType":1,"stats":[0,0,1553,955,608,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"6":414,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":561,"6":628,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":584,"6":653,"22":1619},"upgradeStep":1}}}, +{"id":87038,"name":"Shadowsummoner Spaulders","icon":"inv_shoulder_cloth_raidwarlock_l_01","type":3,"armorType":1,"stats":[0,0,1553,955,0,0,633,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"7":400,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":584,"7":610,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1496,"3":918,"6":608,"7":635,"22":1766},"upgradeStep":1}}}, +{"id":87039,"name":"Eye of the Ancient Spirit","icon":"inv_shield_pandaraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1164,776,479,0,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"7":339,"22":15628}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":445,"7":502,"22":18040}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":462,"7":521,"22":18269},"upgradeStep":1}}}, +{"id":87040,"name":"Circuit of the Frail Soul","icon":"inv_jewelry_ring_146","type":11,"stats":[0,0,1164,776,540,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"6":301}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":502,"6":445}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":521,"6":462},"upgradeStep":1}}}, +{"id":87041,"name":"Spaulders of the Divided Mind","icon":"inv_shoulder_leather_raiddruid_l_01","type":3,"armorType":2,"stats":[0,0,1553,955,661,0,0,0,0,0,0,633,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"11":382,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":610,"11":584,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":635,"11":608,"22":2248},"upgradeStep":1}}}, +{"id":87042,"name":"Leggings of Imprisoned Will","icon":"inv_pants_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,2091,1234,691,0,0,0,0,0,0,942,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":404,"11":562,"22":3122}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":636,"11":869,"22":3603}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":663,"11":905,"22":3649},"upgradeStep":1}}}, +{"id":87043,"name":"Bindings of Ancient Spirits","icon":"inv_bracer_plate_raidpaladin_l_01","type":6,"armorType":4,"stats":[0,0,1164,776,517,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"7":480,"22":2461}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":499,"7":499,"22":2492},"upgradeStep":1}}}, +{"id":87044,"name":"Arrow Breaking Windcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,776,1164,0,0,0,0,429,569,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"8":358,"22":1007}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"7":399,"8":529,"22":1163}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"7":414,"8":549,"22":1177},"upgradeStep":1}}}, +{"id":87045,"name":"Amulet of the Hidden Kings","icon":"inv_jewelry_necklace_102","type":2,"stats":[0,776,1164,0,0,0,0,540,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"7":502,"8":445}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"7":521,"8":462},"upgradeStep":1}}}, +{"id":87046,"name":"Screaming Tiger, Qiang's Unbreakable Polearm","icon":"inv_polearm_2h_pandaraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1394,2090,0,0,0,0,706,0,0,0,1059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"7":443,"11":665}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"7":655,"11":983}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"1":1343,"2":2014,"7":680,"11":1020},"upgradeStep":1}}}, +{"id":87047,"name":"Subetai's Pillaging Leggings","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1234,2091,0,0,0,877,803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":520,"7":474,"22":3122}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":808,"7":740,"22":3603}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":842,"7":771,"22":3649},"upgradeStep":1}}}, +{"id":87048,"name":"Breastplate of the Kings' Guard","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1234,0,2091,0,0,0,0,917,0,0,0,735,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"11":432,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"7":845,"11":677,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"7":880,"11":705,"22":5696},"upgradeStep":1}}}, +{"id":87049,"name":"Shoulderguards of the Unflanked","icon":"inv_shoulder_plate_raiddeathknight_l_01","type":3,"armorType":4,"stats":[707,0,1553,0,0,485,0,0,0,0,995,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":650,"2":1441,"5":447,"10":921,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":678,"2":1497,"5":465,"10":958,"22":4272},"upgradeStep":1}}}, +{"id":87050,"name":"Steelskin, Qiang's Impervious Shield","icon":"inv_shield_pandaraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[776,0,1164,0,0,0,0,0,0,504,525,0,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":15628}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"9":468,"10":488,"22":18040}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"9":486,"10":506,"22":18269},"upgradeStep":1}}}, +{"id":87051,"name":"Hood of Blind Eyes","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,2091,1154,847,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":496,"6":424,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":780,"6":697,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":813,"6":729,"22":1913},"upgradeStep":1}}}, +{"id":87052,"name":"Undying Shadow Grips","icon":"inv_glove_cloth_raidwarlock_l_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,0,661,0,0,0,633,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"7":610,"11":584,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"7":635,"11":608,"22":1472},"upgradeStep":1}}}, +{"id":87053,"name":"Zian's Choker of Coalesced Shadow","icon":"inv_jewelry_necklace_110","type":2,"stats":[0,0,1164,776,548,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":508,"11":433}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":528,"11":449},"upgradeStep":1}}}, +{"id":87054,"name":"Bracers of Dark Thoughts","icon":"inv_bracer_leather_raidmonk_l_01","type":6,"armorType":2,"stats":[0,0,1164,776,479,0,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1122}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":445,"6":502,"22":1295}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":462,"6":521,"22":1311},"upgradeStep":1}}}, +{"id":87055,"name":"Meng's Treads of Insanity","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1553,955,0,0,0,591,0,0,0,689,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":420,"22":2453}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"7":545,"11":637,"22":2831}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"7":568,"11":662,"22":2867},"upgradeStep":1}}}, +{"id":87056,"name":"Girdle of Delirious Visions","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[0,0,1553,875,526,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":300,"6":384,"22":2741}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":482,"6":607,"22":3164}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":504,"6":633,"22":3204},"upgradeStep":1}}}, +{"id":87057,"name":"Bottle of Infinite Stars","icon":"inv_jewelry_trinket_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"502":{"randPropPoints":1827,"stats":{"11":1218}},"506":{"randPropPoints":1897,"stats":{"11":1265},"upgradeStep":1}}}, +{"id":87058,"name":"Chestguard of Total Annihilation","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1234,2091,0,0,0,758,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":446,"7":537,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":698,"7":833,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":727,"7":867,"22":2997},"upgradeStep":1}}}, +{"id":87059,"name":"Starcrusher Gauntlets","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,599,0,681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":361,"7":412,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"5":553,"7":629,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"5":576,"7":654,"22":3560},"upgradeStep":1}}}, +{"id":87060,"name":"Star-Stealer Waistguard","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,0,661,0,526,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":384,"11":300,"22":2741}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"9":607,"11":482,"22":3164}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"9":633,"11":504,"22":3204},"upgradeStep":1}}}, +{"id":87061,"name":"Starshatter","icon":"inv_sword_2h_pandaraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1394,0,2091,0,0,0,1022,0,771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":642,"8":484}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1941,"6":949,"8":716}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1343,"2":2014,"6":985,"8":743},"upgradeStep":1}}}, +{"id":87062,"name":"Elegion, the Fanged Crescent","icon":"inv_axe_1h_pandaraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[597,0,896,0,0,416,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":261,"8":231}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":832,"5":386,"8":342}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":575,"2":863,"5":401,"8":355},"upgradeStep":1}}}, +{"id":87063,"name":"Vial of Dragon's Blood","icon":"inv_jewelry_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"502":{"randPropPoints":1827,"stats":{"11":1218}},"506":{"randPropPoints":1897,"stats":{"11":1265},"upgradeStep":1}}}, +{"id":87064,"name":"Orbital Belt","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1553,875,0,0,0,610,0,0,0,610,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":353,"11":353,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"7":561,"11":561,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"7":585,"11":585,"22":1325},"upgradeStep":1}}}, +{"id":87065,"name":"Light of the Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":12,"stats":[0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"502":{"randPropPoints":1827,"stats":{"7":1218}},"506":{"randPropPoints":1897,"stats":{"7":1265},"upgradeStep":1}}}, +{"id":87066,"name":"Torch of the Celestial Spark","icon":"inv_wand_1h_pandaraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,896,597,0,0,454,303,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2510,"weaponDamageMax":4663,"weaponSpeed":1.9,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":285,"7":190,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":421,"7":281,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"stats":{"2":863,"3":575,"6":437,"7":291,"14":7689},"upgradeStep":1}}}, +{"id":87067,"name":"Phasewalker Striders","icon":"inv_boot_leather_raidmonk_l_01","type":10,"armorType":2,"stats":[0,0,1553,955,702,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1763}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":648,"6":515,"22":2035}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":675,"6":536,"22":2061},"upgradeStep":1}}}, +{"id":87068,"name":"Shoulders of Empyreal Focus","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1553,955,582,0,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2676}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":538,"7":638,"22":3089}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":560,"7":664,"22":3128},"upgradeStep":1}}}, +{"id":87069,"name":"Fang Kung, Spark of Titans","icon":"inv_bow_1h_pandaraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1394,2090,0,0,0,1022,0,771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":10690,"weaponDamageMax":19854,"weaponSpeed":3,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":642,"8":484}},"502":{"randPropPoints":2460,"weaponDamageMin":9922,"weaponDamageMax":18428,"stats":{"1":1294,"2":1940,"6":949,"8":716}},"506":{"randPropPoints":2553,"weaponDamageMin":10299,"weaponDamageMax":19128,"stats":{"1":1343,"2":2014,"6":985,"8":743},"upgradeStep":1}}}, +{"id":87070,"name":"Crown of Opportunistic Strikes","icon":"inv_helmet_leather_raidrogue_l_01","type":1,"armorType":2,"stats":[0,1154,2090,0,0,0,769,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":423,"7":503,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1940,"6":702,"7":782,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":735,"7":815,"22":2435},"upgradeStep":1}}}, +{"id":87071,"name":"Jang-xi's Devastating Legplates","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,626,0,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"7":585,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":575,"7":903,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":600,"7":940,"22":4984},"upgradeStep":1}}}, +{"id":87072,"name":"Lei Shen's Final Orders","icon":"inv_jewelry_trinket_16","type":12,"stats":[0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"502":{"randPropPoints":1827,"stats":{"7":1218}},"506":{"randPropPoints":1897,"stats":{"7":1265},"upgradeStep":1}}}, +{"id":87073,"name":"Hood of Focused Energy","icon":"inv_helm_raidmage_l_01","type":1,"armorType":1,"stats":[0,0,2091,1154,0,906,0,684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":545,"7":364,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":837,"7":623,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":871,"7":653,"22":1913},"upgradeStep":1}}}, +{"id":87074,"name":"Tihan, Scepter of the Sleeping Emperor","icon":"inv_mace_1h_pandaraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,896,597,359,0,0,0,0,0,0,422,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":3171,"weaponDamageMax":5890,"weaponSpeed":2.4,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":225,"11":265,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2943,"weaponDamageMax":5467,"stats":{"2":832,"3":554,"4":333,"11":391,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":3055,"weaponDamageMax":5674,"stats":{"2":863,"3":575,"4":346,"11":406,"14":7689},"upgradeStep":1}}}, +{"id":87075,"name":"Qin-xi's Polarizing Seal","icon":"inv_misc_trinketpanda_10","type":12,"stats":[0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"502":{"randPropPoints":1827,"stats":{"4":1218}},"506":{"randPropPoints":1897,"stats":{"4":1265},"upgradeStep":1}}}, +{"id":87076,"name":"Worldwaker Cabochon","icon":"inv_jewelry_necklace_114","type":2,"stats":[0,0,1164,776,0,0,504,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"7":330}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":468,"7":488}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"6":486,"7":506},"upgradeStep":1}}}, +{"id":87077,"name":"Magnetized Leggings","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,0,2091,1234,979,0,0,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":585,"7":363,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":903,"7":575,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":940,"7":600,"22":2623},"upgradeStep":1}}}, +{"id":87078,"name":"Spaulders of the Emperor's Rage","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[0,0,1553,955,681,0,0,599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":412,"7":361,"22":3654}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":629,"7":553,"22":4218}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":654,"7":576,"22":4272},"upgradeStep":1}}}, +{"id":87079,"name":"Jade Bandit Figurine","icon":"ability_rogue_honoramongstthieves","type":12,"stats":[0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"502":{"randPropPoints":1827,"stats":{"1":1218}},"506":{"randPropPoints":1897,"stats":{"1":1265},"upgradeStep":1}}}, +{"id":87080,"name":"Jade Magistrate Figurine","icon":"inv_hammer_29","type":12,"stats":[0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"502":{"randPropPoints":1827,"stats":{"3":1218}},"506":{"randPropPoints":1897,"stats":{"3":1265},"upgradeStep":1}}}, +{"id":87081,"name":"Jade Courtesan Figurine","icon":"spell_brokenheart","type":12,"stats":[0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"502":{"randPropPoints":1827,"stats":{"3":1218}},"506":{"randPropPoints":1897,"stats":{"3":1265},"upgradeStep":1}}}, +{"id":87082,"name":"Jade Charioteer Figurine","icon":"ability_mount_ridinghorse","type":12,"stats":[1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"502":{"randPropPoints":1827,"stats":{"0":1218}},"506":{"randPropPoints":1897,"stats":{"0":1265},"upgradeStep":1}}}, +{"id":87083,"name":"Jade Warlord Figurine","icon":"inv_sword_139","type":12,"stats":[0,0,1969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"502":{"randPropPoints":1827,"stats":{"2":1827}},"506":{"randPropPoints":1897,"stats":{"2":1897},"upgradeStep":1}}}, +{"id":87084,"name":"Red Crane Tunic","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":3063},"upgradeStep":1}}}, +{"id":87085,"name":"Red Crane Grips","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":1915},"upgradeStep":1}}}, +{"id":87086,"name":"Red Crane Headpiece","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":2458}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":2489},"upgradeStep":1}}}, +{"id":87087,"name":"Red Crane Leggings","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":2680},"upgradeStep":1}}}, +{"id":87088,"name":"Red Crane Spaulders","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,0,566,790,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Battlegear of the Red Crane","setId":1132,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":520,"8":733,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":543,"8":761,"22":2298},"upgradeStep":1}}}, +{"id":87089,"name":"Red Crane Handwraps","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1602}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":1891}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":1915},"upgradeStep":1}}}, +{"id":87090,"name":"Red Crane Helm","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,0,2232,1248,872,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":800,"11":800,"22":2458}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"4":835,"11":835,"22":2489},"upgradeStep":1}}}, +{"id":87091,"name":"Red Crane Legwraps","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,0,2232,1408,0,0,967,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":2243}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"6":894,"11":857,"22":2647}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"6":930,"11":891,"22":2680},"upgradeStep":1}}}, +{"id":87092,"name":"Red Crane Vest","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,0,2232,1328,956,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2564}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"7":772,"22":3026}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"7":805,"22":3063},"upgradeStep":1}}}, +{"id":87093,"name":"Red Crane Mantle","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,0,1657,1025,689,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Vestments of the Red Crane","setId":1131,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1923}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":634,"6":633,"22":2269}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":661,"6":657,"22":2298},"upgradeStep":1}}}, +{"id":87094,"name":"Red Crane Chestguard","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":3063},"upgradeStep":1}}}, +{"id":87095,"name":"Red Crane Gauntlets","icon":"inv_glove_leather_raidmonk_l_01","type":7,"armorType":2,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":1915},"upgradeStep":1}}}, +{"id":87096,"name":"Red Crane Crown","icon":"inv_helmet_leather_raidmonk_l_01","type":1,"armorType":2,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":2458}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":2489},"upgradeStep":1}}}, +{"id":87097,"name":"Red Crane Legguards","icon":"inv_pant_leather_raidmonk_l_01","type":9,"armorType":2,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":2680},"upgradeStep":1}}}, +{"id":87098,"name":"Red Crane Shoulderguards","icon":"inv_shoulder_leather_raidmonk_l_01","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,0,0,560,760,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[11],"setName":"Armor of the Red Crane","setId":1133,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":329,"9":414,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"8":519,"9":699,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"8":539,"9":729,"22":2298},"upgradeStep":1}}}, +{"id":87099,"name":"White Tiger Battleplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,0,984,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"6":907,"7":727,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"6":945,"7":758,"22":5821},"upgradeStep":1}}}, +{"id":87100,"name":"White Tiger Gauntlets","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[1105,0,1657,0,0,0,700,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":1026,"2":1538,"6":650,"8":704,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":1064,"2":1597,"6":674,"8":731,"22":3638},"upgradeStep":1}}}, +{"id":87101,"name":"White Tiger Helmet","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[1248,0,2232,0,0,912,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":1140,"2":2071,"5":840,"11":760,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":1193,"2":2150,"5":875,"11":795,"22":4730},"upgradeStep":1}}}, +{"id":87102,"name":"White Tiger Legplates","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,830,0,0,1024,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"8":767,"11":947,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"8":798,"11":985,"22":5093},"upgradeStep":1}}}, +{"id":87103,"name":"White Tiger Pauldrons","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,737,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Battlegear","setId":1135,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"5":684,"7":604,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"5":710,"7":630,"22":4366},"upgradeStep":1}}}, +{"id":87104,"name":"White Tiger Breastplate","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,2232,1328,956,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":4872}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"7":772,"22":5749}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"7":805,"22":5821},"upgradeStep":1}}}, +{"id":87105,"name":"White Tiger Gloves","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":3045}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":3593}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":3638},"upgradeStep":1}}}, +{"id":87106,"name":"White Tiger Headguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,2232,1248,872,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":3959}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":800,"11":800,"22":4671}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"4":835,"11":835,"22":4730},"upgradeStep":1}}}, +{"id":87107,"name":"White Tiger Greaves","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[0,0,2232,1408,0,0,967,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":4263}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"6":894,"11":857,"22":5031}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"6":930,"11":891,"22":5093},"upgradeStep":1}}}, +{"id":87108,"name":"White Tiger Mantle","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[0,0,1657,1025,689,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Vestments","setId":1134,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":3654}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":634,"6":633,"22":4312}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":661,"6":657,"22":4366},"upgradeStep":1}}}, +{"id":87109,"name":"White Tiger Chestguard","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,680,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"5":622,"10":985,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"5":650,"10":1024,"22":5821},"upgradeStep":1}}}, +{"id":87110,"name":"White Tiger Handguards","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[840,0,1657,0,0,560,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":779,"2":1538,"5":519,"9":1026,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":809,"2":1597,"5":539,"9":1064,"22":3638},"upgradeStep":1}}}, +{"id":87111,"name":"White Tiger Faceguard","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[891,0,2232,0,0,0,0,0,594,0,1408,0,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":809,"2":2071,"8":539,"10":1300,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":849,"2":2150,"8":566,"10":1353,"22":4730},"upgradeStep":1}}}, +{"id":87112,"name":"White Tiger Legguards","icon":"inv_pant_plate_raidpaladin_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,0,878,0,996,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"9":812,"11":921,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"9":845,"11":958,"22":5093},"upgradeStep":1}}}, +{"id":87113,"name":"White Tiger Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,0,0,0,560,0,0,760,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[4],"setName":"White Tiger Plate","setId":1136,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"8":519,"11":699,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"8":539,"11":729,"22":4366},"upgradeStep":1}}}, +{"id":87114,"name":"Guardian Serpent Handwraps","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":1486}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":1504},"upgradeStep":1}}}, +{"id":87115,"name":"Guardian Serpent Cowl","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,2232,1248,872,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,1980,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":1637}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":800,"11":800,"22":1931}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"4":835,"11":835,"22":1956},"upgradeStep":1}}}, +{"id":87116,"name":"Guardian Serpent Legwraps","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,2232,1408,0,0,967,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"6":894,"11":857,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"6":930,"11":891,"22":2106},"upgradeStep":1}}}, +{"id":87117,"name":"Guardian Serpent Robes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,2232,1328,956,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"7":772,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"7":805,"22":2407},"upgradeStep":1}}}, +{"id":87118,"name":"Guardian Serpent Mantle","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1657,1025,689,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Guardian Serpent","setId":1137,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":634,"6":633,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":661,"6":657,"22":1805},"upgradeStep":1}}}, +{"id":87119,"name":"Guardian Serpent Gloves","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1259}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":1486}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":1504},"upgradeStep":1}}}, +{"id":87120,"name":"Guardian Serpent Hood","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,2232,1248,0,0,774,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,1980,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":710,"11":854,"22":1931}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"6":741,"11":891,"22":1956},"upgradeStep":1}}}, +{"id":87121,"name":"Guardian Serpent Leggings","icon":"inv_pants_cloth_challengepriest_d_01","type":9,"armorType":1,"stats":[0,0,2232,1408,0,0,0,952,0,0,0,952,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"7":880,"11":880,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"7":915,"11":915,"22":2106},"upgradeStep":1}}}, +{"id":87122,"name":"Guardian Serpent Raiment","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,2232,1328,0,0,970,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":894,"7":750,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":931,"7":781,"22":2407},"upgradeStep":1}}}, +{"id":87123,"name":"Guardian Serpent Shoulderguards","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1657,1025,718,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Guardian Serpent","setId":1138,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":667,"11":614,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":692,"11":640,"22":1805},"upgradeStep":1}}}, +{"id":87124,"name":"Tunic of the Thousandfold Blades","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":3063},"upgradeStep":1}}}, +{"id":87125,"name":"Gloves of the Thousandfold Blades","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":1915},"upgradeStep":1}}}, +{"id":87126,"name":"Helmet of the Thousandfold Blades","icon":"inv_helmet_leather_raidrogue_l_01","type":1,"armorType":2,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2083}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":2458}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":2489},"upgradeStep":1}}}, +{"id":87127,"name":"Legguards of the Thousandfold Blades","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":2680},"upgradeStep":1}}}, +{"id":87128,"name":"Spaulders of the Thousandfold Blades","icon":"inv_shoulder_leather_raidrogue_l_01","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,0,566,790,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[6],"setName":"Battlegear of the Thousandfold Blades","setId":1139,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":520,"8":733,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":543,"8":761,"22":2298},"upgradeStep":1}}}, +{"id":87129,"name":"Firebird's Tunic","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,2232,1328,956,0,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":3568}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"7":772,"22":4210}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"7":805,"22":4262},"upgradeStep":1}}}, +{"id":87130,"name":"Firebird's Handwraps","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":2631}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":2664},"upgradeStep":1}}}, +{"id":87131,"name":"Firebird's Faceguard","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,2232,1248,872,0,0,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2899}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":800,"11":800,"22":3421}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"4":835,"11":835,"22":3463},"upgradeStep":1}}}, +{"id":87132,"name":"Firebird's Legwraps","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,2232,1408,0,0,967,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"6":552,"11":528,"22":3122}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"6":894,"11":857,"22":3684}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"6":930,"11":891,"22":3730},"upgradeStep":1}}}, +{"id":87133,"name":"Firebird's Mantle","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1657,1025,689,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Firebird","setId":1140,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":372,"6":401,"22":2676}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":634,"6":633,"22":3157}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":661,"6":657,"22":3197},"upgradeStep":1}}}, +{"id":87134,"name":"Firebird's Cuirass","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,1328,2232,0,0,0,952,0,0,0,0,872,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":543,"11":463,"22":3568}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"6":880,"11":800,"22":4210}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"6":915,"11":835,"22":4262},"upgradeStep":1}}}, +{"id":87135,"name":"Firebird's Grips","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,1105,1657,0,0,780,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"6":390,"22":2230}},"509":{"randPropPoints":1950,"stats":{"1":1026,"2":1538,"5":724,"6":616,"22":2631}},"513":{"randPropPoints":2024,"stats":{"1":1064,"2":1597,"5":751,"6":640,"22":2664},"upgradeStep":1}}}, +{"id":87136,"name":"Firebird's Helmet","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,1248,2232,0,0,0,0,0,823,0,0,901,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":434,"11":480,"22":2899}},"509":{"randPropPoints":2625,"stats":{"1":1140,"2":2071,"8":755,"11":828,"22":3421}},"513":{"randPropPoints":2725,"stats":{"1":1193,"2":2150,"8":788,"11":864,"22":3463},"upgradeStep":1}}}, +{"id":87137,"name":"Firebird's Legguards","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,1408,2232,0,0,714,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":403,"7":625,"22":3122}},"509":{"randPropPoints":2625,"stats":{"1":1300,"2":2071,"5":659,"7":1009,"22":3684}},"513":{"randPropPoints":2725,"stats":{"1":1353,"2":2150,"5":686,"7":1049,"22":3730},"upgradeStep":1}}}, +{"id":87138,"name":"Firebird's Spaulders","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,1025,1657,0,0,0,0,566,790,0,0,0,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Firebird","setId":1142,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":300,"8":464,"22":2676}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":520,"8":733,"22":3157}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":543,"8":761,"22":3197},"upgradeStep":1}}}, +{"id":87139,"name":"Firebird's Hauberk","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,2232,1328,0,0,970,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":3568}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":894,"7":750,"22":4210}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":931,"7":781,"22":4262},"upgradeStep":1}}}, +{"id":87140,"name":"Firebird's Gloves","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1657,1105,646,0,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":2230}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":600,"7":733,"22":2631}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":623,"7":761,"22":2664},"upgradeStep":1}}}, +{"id":87141,"name":"Firebird's Headpiece","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,2232,1248,0,0,774,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":2899}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":710,"11":854,"22":3421}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"6":741,"11":891,"22":3463},"upgradeStep":1}}}, +{"id":87142,"name":"Firebird's Kilt","icon":"inv_robe_mail_raidshaman_l_01","type":9,"armorType":3,"stats":[0,0,2232,1408,0,0,0,952,0,0,0,952,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":3122}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"7":880,"11":880,"22":3684}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"7":915,"11":915,"22":3730},"upgradeStep":1}}}, +{"id":87143,"name":"Firebird's Shoulderwraps","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,0,1657,1025,718,0,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Firebird","setId":1141,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":422,"11":360,"22":2676}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":667,"11":614,"22":3157}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":692,"11":640,"22":3197},"upgradeStep":1}}}, +{"id":87144,"name":"Regail's Band of the Endless","icon":"inv_jewelry_ring_143","type":11,"stats":[0,829,1243,0,0,0,577,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"7":301}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"6":536,"7":475}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"6":556,"7":493},"upgradeStep":1}}}, +{"id":87145,"name":"Bracers of Defiled Earth","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[829,0,1243,0,0,420,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,2578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"11":371,"22":2132}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"5":390,"11":585,"22":2515}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"5":404,"11":607,"22":2547},"upgradeStep":1}}}, +{"id":87146,"name":"Deepwater Greatboots","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[760,0,1657,0,0,528,0,0,0,0,1057,0,0,0,0,0,0,0,0,0,0,0,4051,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":297,"10":601,"22":3350}},"509":{"randPropPoints":1950,"stats":{"0":699,"2":1538,"5":487,"10":978,"22":3953}},"513":{"randPropPoints":2024,"stats":{"0":729,"2":1597,"5":507,"10":1016,"22":4002},"upgradeStep":1}}}, +{"id":87147,"name":"Shackle of Eversparks","icon":"inv_jewelry_necklace_111","type":2,"stats":[829,0,1243,0,0,600,0,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"8":277}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"5":557,"8":438}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1197,"5":578,"8":454},"upgradeStep":1}}}, +{"id":87148,"name":"Kaolan's Withering Necklace","icon":"inv_jewelry_necklace_105","type":2,"stats":[829,0,1243,0,0,0,0,0,0,553,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"9":513,"10":513}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1197,"9":532,"10":532},"upgradeStep":1}}}, +{"id":87149,"name":"Cuffs of the Corrupted Waters","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1243,829,553,0,0,0,0,0,0,553,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":513,"11":513,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":532,"11":532,"22":1053},"upgradeStep":1}}}, +{"id":87150,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1243,829,0,0,0,525,0,0,0,569,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"7":487,"11":528,"22":1189}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"7":506,"11":548,"22":1203},"upgradeStep":1}}}, +{"id":87151,"name":"Watersoul Signet","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1243,829,485,0,0,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"509":{"randPropPoints":1463,"stats":{"2":1154,"3":769,"4":450,"7":550}},"513":{"randPropPoints":1518,"stats":{"2":1198,"3":798,"4":467,"7":571},"upgradeStep":1}}}, +{"id":87152,"name":"Regail's Crackling Dagger","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,956,557,0,0,333,0,0,0,0,416,0,0,8518,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":2538,"weaponDamageMax":4715,"weaponSpeed":1.8,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"6":179,"11":228,"14":5011}},"509":{"randPropPoints":1125,"weaponDamageMin":2356,"weaponDamageMax":4376,"stats":{"2":888,"3":512,"6":306,"11":383,"14":7907}},"513":{"randPropPoints":1168,"weaponDamageMin":2446,"weaponDamageMax":4543,"stats":{"2":921,"3":534,"6":319,"11":399,"14":8209},"upgradeStep":1}}}, +{"id":87153,"name":"Asani's Uncleansed Sandals","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1657,1025,652,0,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"7":414,"22":1763}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":602,"7":672,"22":2080}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":626,"7":699,"22":2106},"upgradeStep":1}}}, +{"id":87154,"name":"Lightning Prisoner's Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1657,1025,512,0,0,808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2966,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":281,"7":462,"22":2453}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":471,"7":747,"22":2894}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":491,"7":777,"22":2930},"upgradeStep":1}}}, +{"id":87155,"name":"Casque of Expelled Corruption","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,2232,1248,778,0,0,936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"4":712,"7":861,"22":4671}},"513":{"randPropPoints":2725,"stats":{"2":2149,"3":1193,"4":745,"7":898,"22":4730},"upgradeStep":1}}}, +{"id":87156,"name":"Gao-Rei, Staff of the Legendary Protector","icon":"inv_staff_2h_pandaraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,1488,2232,0,0,0,0,0,1007,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"weaponDamageMin":14345,"weaponDamageMax":21518,"weaponSpeed":3.3,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":875,"2":1312,"8":592,"11":568}},"509":{"randPropPoints":2625,"weaponDamageMin":13314,"weaponDamageMax":19972,"stats":{"1":1380,"2":2071,"8":934,"11":897}},"513":{"randPropPoints":2725,"weaponDamageMin":13820,"weaponDamageMax":20731,"stats":{"1":1433,"2":2150,"8":970,"11":931},"upgradeStep":1}}}, +{"id":87157,"name":"Sunwrought Mail Hauberk","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1328,2232,0,0,743,0,1011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":404,"7":562,"22":3568}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"5":684,"7":933,"22":4210}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"5":713,"7":971,"22":4262},"upgradeStep":1}}}, +{"id":87158,"name":"Dread Shadow Ring","icon":"inv_misc_epicring_b2","type":11,"stats":[829,0,1243,0,0,472,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"5":438,"6":557}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"5":454,"6":578},"upgradeStep":1}}}, +{"id":87159,"name":"Daybreak Drape","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[829,0,1243,0,0,0,0,0,0,539,561,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":1007}},"509":{"randPropPoints":1463,"stats":{"0":769,"2":1154,"9":500,"10":521,"22":1189}},"513":{"randPropPoints":1518,"stats":{"0":798,"2":1198,"9":519,"10":540,"22":1203},"upgradeStep":1}}}, +{"id":87160,"name":"Stuff of Nightmares","icon":"inv_misc_trinketpanda_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"509":{"randPropPoints":1950,"stats":{"11":1300}},"513":{"randPropPoints":2024,"stats":{"11":1349},"upgradeStep":1}}}, +{"id":87161,"name":"Belt of Embodied Terror","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1657,945,731,0,0,0,0,0,0,531,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"11":279,"22":1133}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":866,"4":672,"11":487,"22":1337}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":904,"4":701,"11":509,"22":1354},"upgradeStep":1}}}, +{"id":87162,"name":"Sandals of the Blackest Night","icon":"inv_boot_cloth_raidwarlock_l_01","type":10,"armorType":1,"stats":[0,0,1657,1025,0,0,0,768,0,0,0,581,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":439,"11":322,"22":1385}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"7":711,"11":535,"22":1634}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"7":739,"11":558,"22":1655},"upgradeStep":1}}}, +{"id":87163,"name":"Spirits of the Sun","icon":"inv_drink_29_sunkissedwine","type":12,"stats":[0,0,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"509":{"randPropPoints":1950,"stats":{"3":1300}},"513":{"randPropPoints":2024,"stats":{"3":1349},"upgradeStep":1}}}, +{"id":87164,"name":"Loshan, Terror Incarnate","icon":"inv_sword_1h_pandaraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,956,637,0,0,431,414,0,0,0,0,0,0,8518,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":3103,"weaponDamageMax":5763,"weaponSpeed":2.2,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":375,"6":254,"7":244,"14":5011}},"509":{"randPropPoints":1125,"weaponDamageMin":2880,"weaponDamageMax":5349,"stats":{"2":887,"3":592,"6":400,"7":385,"14":7907}},"513":{"randPropPoints":1168,"weaponDamageMin":2989,"weaponDamageMax":5552,"stats":{"2":921,"3":614,"6":416,"7":399,"14":8209},"upgradeStep":1}}}, +{"id":87165,"name":"Sollerets of Instability","icon":"inv_boot_plate_raidpaladin_l_01","type":10,"armorType":4,"stats":[0,0,1657,1025,721,0,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,4051,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":404,"11":369,"22":3350}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":666,"11":601,"22":3953}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":693,"11":625,"22":4002},"upgradeStep":1}}}, +{"id":87166,"name":"Spiritsever","icon":"inv_knife_1h_pandaraidsha_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,637,956,0,0,0,0,0,363,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":5077,"weaponDamageMax":9430,"weaponSpeed":1.8,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"8":213,"11":272}},"509":{"randPropPoints":1125,"weaponDamageMin":4713,"weaponDamageMax":8753,"stats":{"1":592,"2":888,"8":337,"11":429}},"513":{"randPropPoints":1168,"weaponDamageMin":4892,"weaponDamageMax":9085,"stats":{"1":614,"2":921,"8":349,"11":445},"upgradeStep":1}}}, +{"id":87167,"name":"Terror in the Mists","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"509":{"randPropPoints":1950,"stats":{"1":1300}},"513":{"randPropPoints":2024,"stats":{"1":1349},"upgradeStep":1}}}, +{"id":87168,"name":"Taoren, the Soul Burner","icon":"inv_firearm_2h_rifle_pandaraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1488,2232,0,0,0,0,943,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"weaponDamageMin":11411,"weaponDamageMax":21192,"weaponSpeed":3,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"7":554,"11":600}},"509":{"randPropPoints":2625,"weaponDamageMin":10591,"weaponDamageMax":19670,"stats":{"1":1380,"2":2071,"7":875,"11":948}},"513":{"randPropPoints":2725,"weaponDamageMin":10993,"weaponDamageMax":20417,"stats":{"1":1433,"2":2150,"7":908,"11":984},"upgradeStep":1}}}, +{"id":87169,"name":"Robes of the Unknown Fear","icon":"inv_chest_cloth_raidwarlock_l_01","type":5,"armorType":1,"stats":[0,0,2232,1328,0,766,0,0,0,0,0,998,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":418,"11":554,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"5":705,"11":920,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2149,"3":1273,"5":735,"11":958,"22":2407},"upgradeStep":1}}}, +{"id":87170,"name":"Jin'ya, Orb of the Waterspeaker","icon":"inv_staff_2h_pandaraidsha_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2232,1488,0,0,918,1036,0,0,0,0,0,0,8521,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"weaponDamageMin":7172,"weaponDamageMax":10759,"weaponSpeed":3.3,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":875,"6":540,"7":609,"14":5009}},"509":{"randPropPoints":2625,"weaponDamageMin":6657,"weaponDamageMax":9986,"stats":{"2":2071,"3":1380,"6":852,"7":961,"14":7907}},"513":{"randPropPoints":2725,"weaponDamageMin":6910,"weaponDamageMax":10365,"stats":{"2":2150,"3":1433,"6":885,"7":998,"14":8208},"upgradeStep":1}}}, +{"id":87171,"name":"Cuirass of the Animated Protector","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,0,0,0,0,927,0,887,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"11":488,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"9":854,"11":817,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"9":890,"11":851,"22":5821},"upgradeStep":1}}}, +{"id":87172,"name":"Darkmist Vortex","icon":"creatureportrait_cyclone_nodebris","type":12,"stats":[1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Lei Shi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"509":{"randPropPoints":1950,"stats":{"0":1300}},"513":{"randPropPoints":2024,"stats":{"0":1349},"upgradeStep":1}}}, +{"id":87173,"name":"Kilrak, Jaws of Terror","icon":"inv_sword_1h_pandaraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[637,0,956,0,0,431,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1212,"weaponDamageMin":7334,"weaponDamageMax":13622,"weaponSpeed":2.6,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":254,"11":244}},"509":{"randPropPoints":1125,"weaponDamageMin":6807,"weaponDamageMax":12643,"stats":{"0":592,"2":887,"5":400,"11":385}},"513":{"randPropPoints":1168,"weaponDamageMin":7066,"weaponDamageMax":13123,"stats":{"0":614,"2":921,"5":416,"11":399},"upgradeStep":1}}}, +{"id":87174,"name":"Dreadwoven Leggings of Failure","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,2232,1328,0,838,0,956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"7":529,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"5":772,"7":881,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"5":805,"7":918,"22":2106},"upgradeStep":1}}}, +{"id":87175,"name":"Essence of Terror","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,0,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"509":{"randPropPoints":1950,"stats":{"3":1300}},"513":{"randPropPoints":2024,"stats":{"3":1349},"upgradeStep":1}}}, +{"id":87176,"name":"Shin'ka, Execution of Dominion","icon":"inv_axe_2h_pandaraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1488,0,2232,0,0,0,992,0,0,0,0,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"weaponDamageMin":15649,"weaponDamageMax":23474,"weaponSpeed":3.6,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"509":{"randPropPoints":2625,"weaponDamageMin":14525,"weaponDamageMax":21788,"stats":{"0":1380,"2":2071,"6":920,"11":920}},"513":{"randPropPoints":2725,"weaponDamageMin":15076,"weaponDamageMax":22615,"stats":{"0":1433,"2":2150,"6":955,"11":955},"upgradeStep":1}}}, +{"id":87177,"name":"Invoker's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1657,1025,0,606,0,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":340,"11":424,"22":1133}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"5":560,"11":693,"22":1337}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"5":583,"11":721,"22":1354},"upgradeStep":1}}}, +{"id":87178,"name":"Healer's Belt of Final Winter","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1657,1025,708,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":400,"7":382,"22":1133}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":654,"7":627,"22":1337}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":680,"7":652,"22":1354},"upgradeStep":1}}}, +{"id":87179,"name":"Sorcerer's Belt of Final Winter","icon":"inv_belt_raidmage_l_01","type":8,"armorType":1,"stats":[0,0,1657,1025,0,0,718,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":406,"7":372,"22":1133}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"6":664,"7":610,"22":1337}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"6":691,"7":634,"22":1354},"upgradeStep":1}}}, +{"id":87180,"name":"Stalker's Cord of Eternal Autumn","icon":"inv_belt_leather_raidrogue_l_01","type":8,"armorType":2,"stats":[0,1025,1657,0,0,642,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":361,"6":412,"22":1442}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"5":593,"6":674,"22":1702}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"5":617,"6":701,"22":1723},"upgradeStep":1}}}, +{"id":87181,"name":"Weaver's Cord of Eternal Autumn","icon":"inv_belt_leather_raidmonk_l_01","type":8,"armorType":2,"stats":[0,0,1657,1025,740,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":418,"11":350,"22":1442}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":684,"11":576,"22":1702}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":711,"11":600,"22":1723},"upgradeStep":1}}}, +{"id":87182,"name":"Ranger's Chain of Unending Summer","icon":"inv_belt_mail_raidhunter_l_01","type":8,"armorType":3,"stats":[0,1025,1657,0,0,0,0,718,660,0,0,0,0,0,0,0,0,0,0,0,0,0,2427,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":406,"8":372,"22":2007}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"7":664,"8":610,"22":2368}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"7":691,"8":634,"22":2398},"upgradeStep":1}}}, +{"id":87183,"name":"Binder's Chain of Unending Summer","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,0,1657,1025,624,0,0,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2427,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":2007}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":576,"7":684,"22":2368}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":600,"7":711,"22":2398},"upgradeStep":1}}}, +{"id":87184,"name":"Mender's Girdle of Endless Spring","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[0,0,1657,1025,800,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,3315,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":2741}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":739,"11":479,"22":3234}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":769,"11":499,"22":3274},"upgradeStep":1}}}, +{"id":87185,"name":"Protector's Girdle of Endless Spring","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[760,0,1657,0,0,0,0,0,520,1065,0,0,0,0,0,0,0,0,0,0,0,0,3315,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"9":609,"22":2741}},"509":{"randPropPoints":1950,"stats":{"0":699,"2":1538,"8":479,"9":986,"22":3234}},"513":{"randPropPoints":2024,"stats":{"0":729,"2":1597,"8":499,"9":1024,"22":3274},"upgradeStep":1}}}, +{"id":87186,"name":"Patroller's Girdle of Endless Spring","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[1025,0,1657,0,0,554,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3315,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":309,"6":442,"22":2741}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"5":511,"6":721,"22":3234}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"5":532,"6":750,"22":3274},"upgradeStep":1}}}, +{"id":87187,"name":"Sha-Skin Gloves","icon":"inv_glove_cloth_raidwarlock_l_01","type":7,"armorType":1,"stats":[0,0,1657,1105,0,646,0,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":380,"7":464,"22":1259}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"5":600,"7":733,"22":1486}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"5":623,"7":761,"22":1504},"upgradeStep":1}}}, +{"id":87188,"name":"Sha-Skin Hood","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,2232,1248,0,0,774,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,1980,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":406,"11":497,"22":1637}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":710,"11":854,"22":1931}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"6":741,"11":891,"22":1956},"upgradeStep":1}}}, +{"id":87189,"name":"Sha-Skin Leggings","icon":"inv_pants_cloth_raidwarlock_l_01","type":9,"armorType":1,"stats":[0,0,2232,1408,0,0,0,952,0,0,0,952,0,0,0,0,0,0,0,0,0,0,2132,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":543,"11":543,"22":1763}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1300,"7":880,"11":880,"22":2080}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1353,"7":915,"11":915,"22":2106},"upgradeStep":1}}}, +{"id":87190,"name":"Sha-Skin Robes","icon":"inv_chest_cloth_raidwarlock_l_01","type":5,"armorType":1,"stats":[0,0,2232,1328,0,0,970,814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"7":446,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"6":894,"7":750,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"6":931,"7":781,"22":2407},"upgradeStep":1}}}, +{"id":87191,"name":"Sha-Skin Mantle","icon":"inv_shoulder_cloth_raidwarlock_l_01","type":3,"armorType":1,"stats":[0,0,1657,1025,0,718,0,0,0,0,0,668,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[8],"setName":"Sha-Skin Regalia","setId":1143,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":422,"11":360,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"5":667,"11":614,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"5":692,"11":640,"22":1805},"upgradeStep":1}}}, +{"id":87192,"name":"Helmet of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[1248,0,2232,0,0,912,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":503,"11":423,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":1140,"2":2071,"5":840,"11":760,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":1193,"2":2150,"5":875,"11":795,"22":4730},"upgradeStep":1}}}, +{"id":87193,"name":"Battleplate of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,0,984,790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"6":907,"7":727,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"6":945,"7":758,"22":5821},"upgradeStep":1}}}, +{"id":87194,"name":"Gauntlets of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[1105,0,1657,0,0,0,700,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":412,"8":446,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":1026,"2":1538,"6":650,"8":704,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":1064,"2":1597,"6":674,"8":731,"22":3638},"upgradeStep":1}}}, +{"id":87195,"name":"Legplates of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,830,0,0,1024,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":472,"11":585,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"8":767,"11":947,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"8":798,"11":985,"22":5093},"upgradeStep":1}}}, +{"id":87196,"name":"Pauldrons of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,737,0,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Battleplate of Resounding Rings","setId":1144,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"7":353,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"5":684,"7":604,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"5":710,"7":630,"22":4366},"upgradeStep":1}}}, +{"id":87197,"name":"Chestguard of Resounding Rings","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,680,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":350,"10":609,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"5":622,"10":985,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"5":650,"10":1024,"22":5821},"upgradeStep":1}}}, +{"id":87198,"name":"Handguards of Resounding Rings","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[840,0,1657,0,0,560,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":494,"2":974,"5":329,"9":649,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":779,"2":1538,"5":519,"9":1026,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":809,"2":1597,"5":539,"9":1064,"22":3638},"upgradeStep":1}}}, +{"id":87199,"name":"Faceguard of Resounding Rings","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[891,0,2232,0,0,0,0,0,594,0,1408,0,0,0,0,0,0,0,0,0,0,0,4788,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":425,"2":1312,"8":283,"10":795,"22":3959}},"509":{"randPropPoints":2625,"stats":{"0":809,"2":2071,"8":539,"10":1300,"22":4671}},"513":{"randPropPoints":2725,"stats":{"0":849,"2":2150,"8":566,"10":1353,"22":4730},"upgradeStep":1}}}, +{"id":87200,"name":"Legguards of Resounding Rings","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1408,0,2232,0,0,0,0,0,0,878,0,996,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"9":500,"11":569,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1300,"2":2071,"9":812,"11":921,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1353,"2":2150,"9":845,"11":958,"22":5093},"upgradeStep":1}}}, +{"id":87201,"name":"Shoulderguards of Resounding Rings","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[1025,0,1657,0,0,0,0,0,560,0,0,760,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"quality":4,"classAllowlist":[9],"setName":"Plate of Resounding Rings","setId":1145,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":329,"11":414,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":946,"2":1538,"8":519,"11":699,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":984,"2":1597,"8":539,"11":729,"22":4366},"upgradeStep":1}}}, +{"id":87283,"name":"Windstrong Leggings","icon":"inv_pants_cloth_panda_b_02","type":9,"armorType":1,"stats":[0,0,750,500,0,0,343,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":343,"7":317,"22":1367},"isBase":true}}}, +{"id":87284,"name":"Leggings of the Fifth Sun","icon":"inv_pants_leather_panda_b_02","type":9,"armorType":2,"stats":[0,0,750,500,0,0,376,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":376,"11":261,"22":1754},"isBase":true}}}, +{"id":87285,"name":"Legguards of the Tides","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,0,750,500,0,0,376,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":376,"7":261,"22":2461},"isBase":true}}}, +{"id":87286,"name":"Legplates of Absolute Clarity","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[0,0,750,500,0,0,371,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":371,"11":269,"22":3380},"isBase":true}}}, +{"id":87287,"name":"Leggings of Inner Peace","icon":"inv_pants_cloth_panda_b_02","type":9,"armorType":1,"stats":[0,0,750,500,0,338,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"5":338,"7":325,"22":1367},"isBase":true}}}, +{"id":87288,"name":"Lui's Leggings","icon":"inv_pants_leather_panda_b_02","type":9,"armorType":2,"stats":[0,500,750,0,0,0,0,317,0,0,0,343,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"1":500,"2":750,"7":317,"11":343,"22":1754},"isBase":true}}}, +{"id":87289,"name":"Equilibrium Legwraps","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,500,750,0,0,0,343,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,2461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"1":500,"2":750,"6":343,"11":317,"22":2461},"isBase":true}}}, +{"id":87290,"name":"Legguards of Ironclad Confidence","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[500,0,750,0,0,0,0,0,0,367,0,277,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"0":500,"2":750,"9":367,"11":277,"22":3380},"isBase":true}}}, +{"id":87291,"name":"Legplates of Pure Purpose","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[500,0,750,0,0,358,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"0":500,"2":750,"5":358,"6":293,"22":3380},"isBase":true}}}, +{"id":87292,"name":"Flameheart Wristguards","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,279,418,0,0,177,0,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"1":279,"2":418,"5":177,"7":191,"22":877},"isBase":true}}}, +{"id":87293,"name":"Defiant Archer's Bracers","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,279,418,0,0,177,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"1":279,"2":418,"5":177,"11":191,"22":1230},"isBase":true}}}, +{"id":87294,"name":"Scrollkeeper's Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,418,279,0,0,186,0,0,0,0,186,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"2":418,"3":279,"6":186,"11":186,"22":684},"isBase":true}}}, +{"id":87295,"name":"Summerpetal Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,418,279,197,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"2":418,"3":279,"4":197,"6":168,"22":684},"isBase":true}}}, +{"id":87296,"name":"Coiled Serpent Armband","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,0,418,279,186,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"2":418,"3":279,"4":186,"7":186,"22":877},"isBase":true}}}, +{"id":87297,"name":"Wise Mari's Bracers","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,0,418,279,159,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"2":418,"3":279,"4":159,"11":202,"22":1230},"isBase":true}}}, +{"id":87298,"name":"Bracers of Ancient Tales","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[0,0,418,279,0,0,212,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"2":418,"3":279,"6":212,"11":141,"22":1690},"isBase":true}}}, +{"id":87299,"name":"Eversight Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[279,0,418,0,0,0,172,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"0":279,"2":418,"6":172,"7":194,"22":1690},"isBase":true}}}, +{"id":87300,"name":"Armplates of the Jade Idol","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[279,0,418,0,0,0,0,0,0,172,194,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":530,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":530,"stats":{"0":279,"2":418,"9":172,"10":194,"22":1690},"isBase":true}}}, +{"id":87301,"name":"Master Brewer's Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,408,611,0,0,0,0,295,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"7":295,"11":232,"22":1308},"isBase":true}}}, +{"id":87302,"name":"Barrel Stacker's Mitts","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,408,611,0,0,0,288,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"6":288,"11":245,"22":1820},"isBase":true}}}, +{"id":87303,"name":"Wine Tasting Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,611,408,0,0,206,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":206,"7":310,"22":1028},"isBase":true}}}, +{"id":87304,"name":"Uncorking Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,611,408,0,0,295,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":295,"7":232,"22":1028},"isBase":true}}}, +{"id":87305,"name":"Barrel-Aged Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,611,408,0,0,252,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":252,"11":284,"22":1308},"isBase":true}}}, +{"id":87306,"name":"Virmen Exterminator Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,611,408,0,0,265,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":265,"11":276,"22":1820},"isBase":true}}}, +{"id":87307,"name":"Vegetable Chopping Handguards","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,611,408,0,0,225,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":225,"7":299,"22":2486},"isBase":true}}}, +{"id":87308,"name":"Partycrasher's Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[408,0,611,0,0,0,0,232,0,0,0,295,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":408,"2":611,"7":232,"11":295,"22":2486},"isBase":true}}}, +{"id":87309,"name":"Handguards of Sturdy Constitution","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[408,0,611,0,0,0,0,0,0,291,0,238,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":408,"2":611,"9":291,"11":238,"22":2486},"isBase":true}}}, +{"id":87310,"name":"Stormstout Drink Napkin","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,306,459,0,0,0,0,174,0,0,0,222,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"1":306,"2":459,"7":174,"11":222,"22":822},"isBase":true}}}, +{"id":87311,"name":"Used Bar Rag","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,459,306,0,0,210,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"6":210,"7":194,"22":822},"isBase":true}}}, +{"id":87312,"name":"Auntie's Cooking Apron","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,459,306,165,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"2":459,"3":306,"4":165,"7":227,"22":822},"isBase":true}}}, +{"id":87313,"name":"Tasting Room Tablecloth","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[306,0,459,0,0,0,0,219,0,0,0,179,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":306,"2":459,"7":219,"11":179,"22":822},"isBase":true}}}, +{"id":87314,"name":"Blackened Chain Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[306,0,459,0,0,0,0,0,0,189,0,213,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":582,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":582,"stats":{"0":306,"2":459,"9":189,"11":213,"22":822},"isBase":true}}}, +{"id":87315,"name":"Cowl of Angry Thoughts","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,904,603,0,0,0,353,0,0,0,431,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"7":353,"11":431,"22":1396},"isBase":true}}}, +{"id":87316,"name":"Headcover of Disturbed Serenity","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,904,603,0,0,0,315,0,0,0,453,0,0,0,0,0,0,0,0,0,0,1777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"7":315,"11":453,"22":1777},"isBase":true}}}, +{"id":87317,"name":"Vexing Coif","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,904,603,0,0,315,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,2473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":315,"11":453,"22":2473},"isBase":true}}}, +{"id":87318,"name":"Hood of Endless Agitation","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,904,603,0,0,372,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":372,"11":420,"22":3377},"isBase":true}}}, +{"id":87319,"name":"Antagonist's Headwrap","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,904,603,0,0,408,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":408,"11":392,"22":1396},"isBase":true}}}, +{"id":87320,"name":"Headcover of the Impatient","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,603,904,0,0,0,353,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"1":603,"2":904,"6":353,"7":431,"22":1777},"isBase":true}}}, +{"id":87321,"name":"Cowl of Internal Strife","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,603,904,0,0,372,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"1":603,"2":904,"5":372,"6":420,"22":2473},"isBase":true}}}, +{"id":87322,"name":"Helm of Enmity","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[603,0,904,0,0,0,0,0,0,448,324,0,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"0":603,"2":904,"9":448,"10":324,"22":3377},"isBase":true}}}, +{"id":87323,"name":"Helm of Unstable Temperament","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[603,0,904,0,0,0,448,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"0":603,"2":904,"6":448,"11":324,"22":3377},"isBase":true}}}, +{"id":87324,"name":"Cord of Sha Savagery","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,671,448,0,0,307,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"2":671,"3":448,"6":307,"11":284,"22":1230},"isBase":true}}}, +{"id":87325,"name":"Kun-Lai Climbing Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,671,448,0,0,276,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"2":671,"3":448,"6":276,"7":312,"22":1712},"isBase":true}}}, +{"id":87326,"name":"Sha-Trapper Waistguard","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,671,448,0,0,312,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,2338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"2":671,"3":448,"6":312,"11":276,"22":2338},"isBase":true}}}, +{"id":87327,"name":"Cloudstriker Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,671,448,0,298,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"2":671,"3":448,"5":298,"6":298,"22":967},"isBase":true}}}, +{"id":87328,"name":"Shado-Pan Initiate's Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,448,671,0,0,0,0,328,248,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"1":448,"2":671,"7":328,"8":248,"22":1230},"isBase":true}}}, +{"id":87329,"name":"Elemental Archer's Links","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,448,671,0,0,0,0,328,248,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"1":448,"2":671,"7":328,"8":248,"22":1712},"isBase":true}}}, +{"id":87330,"name":"Monastery Guardian Waistguard","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[448,0,671,0,0,0,0,0,0,234,336,0,0,0,0,0,0,0,0,0,0,0,2338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"0":448,"2":671,"9":234,"10":336,"22":2338},"isBase":true}}}, +{"id":87331,"name":"Girdle of the Broken Seal","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[448,0,671,0,0,328,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"0":448,"2":671,"5":328,"7":248,"22":2338},"isBase":true}}}, +{"id":87332,"name":"Cord of Disturbed Dreams","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,671,448,0,0,234,0,0,0,0,336,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":851,"stats":{"2":671,"3":448,"6":234,"11":336,"22":967},"isBase":true}}}, +{"id":87333,"name":"Watchful Dreamer's Trousers","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,992,662,408,0,0,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"2":992,"3":662,"4":408,"7":461,"22":1568},"isBase":true}}}, +{"id":87334,"name":"Dreamer's Vigil Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,992,662,0,0,0,408,0,0,0,461,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"2":992,"3":662,"7":408,"11":461,"22":1996},"isBase":true}}}, +{"id":87335,"name":"Leggings of Clever Entrapment","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,992,662,0,0,473,387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"2":992,"3":662,"6":473,"7":387,"22":2777},"isBase":true}}}, +{"id":87336,"name":"Legplates of the Scattered Tribes","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,992,662,366,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"2":992,"3":662,"4":366,"6":485,"22":3793},"isBase":true}}}, +{"id":87337,"name":"Deposer's Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,992,662,0,467,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,1568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"2":992,"3":662,"5":467,"11":398,"22":1568},"isBase":true}}}, +{"id":87338,"name":"Leggings of the Empty Throne","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,662,992,0,0,0,485,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"1":662,"2":992,"6":485,"11":366,"22":1996},"isBase":true}}}, +{"id":87339,"name":"Leggings of Forceful Instruction","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,662,992,0,0,345,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"1":662,"2":992,"5":345,"6":497,"22":2777},"isBase":true}}}, +{"id":87340,"name":"Mogu Warlord Legguards","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[662,0,992,0,0,0,0,0,0,345,497,0,0,0,0,0,0,0,0,0,0,0,3793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"0":662,"2":992,"9":345,"10":497,"22":3793},"isBase":true}}}, +{"id":87341,"name":"Weaponmaster's Legplates","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[662,0,992,0,0,419,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1258,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":1258,"stats":{"0":662,"2":992,"5":419,"6":454,"22":3793},"isBase":true}}}, +{"id":87342,"name":"Subjugation Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,369,553,0,0,234,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"1":369,"2":553,"5":234,"7":253,"22":998},"isBase":true}}}, +{"id":87343,"name":"Bracers of Swift Wrath","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,369,553,0,0,234,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"1":369,"2":553,"5":234,"11":253,"22":1389},"isBase":true}}}, +{"id":87344,"name":"Cuffs of the Endless Shadow","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,553,369,0,0,246,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"6":246,"11":246,"22":784},"isBase":true}}}, +{"id":87345,"name":"Bindings of Impeccable Strategy","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,553,369,260,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":260,"6":222,"22":784},"isBase":true}}}, +{"id":87346,"name":"Armbands of the Reawakened","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,553,369,246,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":246,"7":246,"22":998},"isBase":true}}}, +{"id":87347,"name":"Lost Heritage Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,553,369,210,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":210,"11":267,"22":1389},"isBase":true}}}, +{"id":87348,"name":"Bracers of Inner Knowledge","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,553,369,0,0,280,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"6":280,"11":187,"22":1897},"isBase":true}}}, +{"id":87349,"name":"Armplates of Martial Artistry","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[369,0,553,0,0,0,228,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"0":369,"2":553,"6":228,"7":257,"22":1897},"isBase":true}}}, +{"id":87350,"name":"Poet-King's Vambraces","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[369,0,553,0,0,0,0,0,0,228,257,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"0":369,"2":553,"9":228,"10":257,"22":1897},"isBase":true}}}, +{"id":87351,"name":"Carapace Inlaid Drape","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[404,0,607,0,0,237,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"5":237,"10":289,"22":933},"isBase":true}}}, +{"id":87352,"name":"Cloak of the Unending Swarm","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[404,0,607,0,0,0,0,250,0,0,0,282,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"7":250,"11":282,"22":933},"isBase":true}}}, +{"id":87353,"name":"Cloak of Collective Thought","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,607,404,250,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"4":250,"6":282,"22":933},"isBase":true}}}, +{"id":87354,"name":"Drape of the Burning Signal","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,607,404,0,250,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"5":250,"6":282,"22":933},"isBase":true}}}, +{"id":87355,"name":"Mantid Exterminator's Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,404,607,0,0,0,250,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"1":404,"2":607,"6":250,"11":282,"22":933},"isBase":true}}}, +{"id":87356,"name":"Badge of the Amber Siege","icon":"inv_jewelry_amulet_03","type":2,"stats":[404,0,607,0,0,0,0,0,0,0,300,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"10":300,"11":217},"isBase":true}}}, +{"id":87357,"name":"Bridge Breaker Medallion","icon":"inv_jewelry_necklace_80","type":2,"stats":[404,0,607,0,0,0,293,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"6":293,"11":230},"isBase":true}}}, +{"id":87358,"name":"Hardened Resin Pendant","icon":"inv_jewelry_necklace_75","type":2,"stats":[0,0,607,404,0,0,243,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"6":243,"11":285},"isBase":true}}}, +{"id":87359,"name":"Mantid Eye Amulet","icon":"inv_wand_03","type":2,"stats":[0,0,607,404,0,0,293,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"6":293,"7":230},"isBase":true}}}, +{"id":87360,"name":"Saboteur's Locket","icon":"inv_jewelry_necklace_91","type":2,"stats":[0,404,607,0,0,0,304,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"1":404,"2":607,"6":304,"11":211},"isBase":true}}}, +{"id":87361,"name":"Martial Purification Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[539,0,808,0,0,0,0,0,0,324,0,380,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"0":539,"2":808,"9":324,"11":380,"22":2821},"isBase":true}}}, +{"id":87362,"name":"Gauntlets of Righteous Conviction","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[539,0,808,0,0,0,0,0,281,0,0,405,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"0":539,"2":808,"8":281,"11":405,"22":2821},"isBase":true}}}, +{"id":87363,"name":"Zealous Fervor Handguards","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,808,539,0,0,0,324,0,0,0,380,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"7":324,"11":380,"22":2821},"isBase":true}}}, +{"id":87364,"name":"Gloves of Sanctity","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,808,539,307,0,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"4":307,"6":391,"22":2066},"isBase":true}}}, +{"id":87365,"name":"Beneficent Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,808,539,290,0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,1485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"4":290,"11":400,"22":1485},"isBase":true}}}, +{"id":87366,"name":"Scarlet Visionary Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,808,539,386,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"4":386,"11":315,"22":1166},"isBase":true}}}, +{"id":87367,"name":"Gloves of Fiery Purification","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,808,539,0,0,333,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"6":333,"7":375,"22":1166},"isBase":true}}}, +{"id":87368,"name":"Gauntlets of Bloody Judgment","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,539,808,0,0,0,0,307,0,0,0,391,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"1":539,"2":808,"7":307,"11":391,"22":2066},"isBase":true}}}, +{"id":87369,"name":"Crimson Monk Handwraps","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,539,808,0,0,0,0,380,0,0,0,324,0,0,0,0,0,0,0,0,0,0,1485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"1":539,"2":808,"7":380,"11":324,"22":1485},"isBase":true}}}, +{"id":87370,"name":"Waistguard of the Phalanx","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[539,0,808,0,0,0,0,0,0,0,410,273,0,0,0,0,0,0,0,0,0,0,2539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"0":539,"2":808,"10":410,"11":273,"22":2539},"isBase":true}}}, +{"id":87371,"name":"Scarlet Champion's Belt","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[539,0,808,0,0,0,0,307,0,0,0,391,0,0,0,0,0,0,0,0,0,0,2539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"0":539,"2":808,"7":307,"11":391,"22":2539},"isBase":true}}}, +{"id":87372,"name":"Verdone's Chewed Waistplate","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,808,539,0,0,391,0,0,0,0,307,0,0,0,0,0,0,0,0,0,0,2539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"6":391,"11":307,"22":2539},"isBase":true}}}, +{"id":87373,"name":"Belt of Singed Shame","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,808,539,307,0,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"4":307,"11":391,"22":1859},"isBase":true}}}, +{"id":87374,"name":"Bucket Tosser's Girdle","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,808,539,0,0,400,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"6":400,"11":290,"22":1336},"isBase":true}}}, +{"id":87375,"name":"Cord of Bloody Evangelism","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,808,539,365,0,0,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"4":365,"7":350,"22":1050},"isBase":true}}}, +{"id":87376,"name":"Scholarly Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,808,539,0,290,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"2":808,"3":539,"5":290,"11":400,"22":1050},"isBase":true}}}, +{"id":87377,"name":"Scarlet Archer's Links","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,539,808,0,0,0,370,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"1":539,"2":808,"6":370,"7":342,"22":1859},"isBase":true}}}, +{"id":87378,"name":"Loksey's Lost Belt","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,539,808,0,0,0,386,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1025,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1025,"stats":{"1":539,"2":808,"6":386,"11":315,"22":1336},"isBase":true}}}, +{"id":87379,"name":"Runed Deathbone Chestplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[726,0,1088,0,0,0,0,0,0,0,460,498,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"10":460,"11":498,"22":4514},"isBase":true}}}, +{"id":87380,"name":"Carver's Bloodsplattered Chestpiece","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[726,0,1088,0,0,0,512,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"6":512,"7":436,"22":4514},"isBase":true}}}, +{"id":87381,"name":"Coldforge Carapace","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1088,726,526,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":526,"11":413,"22":4514},"isBase":true}}}, +{"id":87382,"name":"Patchwork Flesh Armor","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1088,726,0,0,379,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"6":379,"7":545,"22":3305},"isBase":true}}}, +{"id":87383,"name":"Ghoulskin Vestments","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1088,726,0,0,0,472,0,0,0,491,0,0,0,0,0,0,0,0,0,0,2376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"7":472,"11":491,"22":2376},"isBase":true}}}, +{"id":87384,"name":"Darkmaster's Spare Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1088,726,0,0,0,526,0,0,0,413,0,0,0,0,0,0,0,0,0,0,1866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"7":526,"11":413,"22":1866},"isBase":true}}}, +{"id":87385,"name":"Empowered Necropile Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1088,726,0,401,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"5":401,"7":532,"22":1866},"isBase":true}}}, +{"id":87386,"name":"Inscribed Bloodmail Hauberk","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,726,1088,0,0,0,436,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"6":436,"8":512,"22":3305},"isBase":true}}}, +{"id":87387,"name":"Foul Cadaverous Armor","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,726,1088,0,0,460,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"5":460,"7":498,"22":2376},"isBase":true}}}, +{"id":87402,"name":"Ornate Battleplate of the Master","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,0,0,732,0,0,857,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"8":432,"11":568,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"8":668,"11":795,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"8":699,"11":825,"22":5588},"upgradeStep":1}}}, +{"id":87403,"name":"Chestplate of Limitless Faith","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1977,1158,892,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":592,"7":408,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":828,"7":635,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":859,"7":665,"22":5588},"upgradeStep":1}}}, +{"id":87404,"name":"Gauntlets of Unbound Devotion","icon":"inv_glove_plate_raidpaladin_l_01","type":7,"armorType":4,"stats":[0,0,1469,899,639,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"7":366,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":591,"7":535,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":614,"7":557,"22":3493},"upgradeStep":1}}}, +{"id":87405,"name":"Unyielding Bloodplate","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,0,0,0,831,0,847,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":535,"11":551,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"9":767,"11":783,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"9":798,"11":814,"22":5588},"upgradeStep":1}}}, +{"id":87406,"name":"Gauntlets of Battle Command","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,0,0,0,0,0,589,637,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"10":369,"11":417,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"10":542,"11":590,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"10":565,"11":613,"22":3493},"upgradeStep":1}}}, +{"id":87407,"name":"Bloodforged Warfists","icon":"inv_gauntlet_plate_raidwarrior_l_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":433,"6":353,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":606,"6":526,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":629,"6":549,"22":3493},"upgradeStep":1}}}, +{"id":87417,"name":"Staff of Broken Hopes","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1109,739,0,500,0,0,0,0,0,481,0,0,4235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"weaponDamageMin":3566,"weaponDamageMax":5349,"weaponSpeed":3.3,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"weaponDamageMin":3566,"weaponDamageMax":5349,"stats":{"2":1109,"3":739,"5":500,"11":481,"14":4235},"isBase":true}}}, +{"id":87418,"name":"Lerah's Ribsmasher","icon":"inv_mace_2h_pandung_c_01","type":13,"weaponType":4,"handType":4,"stats":[797,0,1195,0,0,0,0,505,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"weaponSpeed":3.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":8382,"weaponDamageMax":12574,"stats":{"0":797,"2":1195,"7":505,"8":547},"isBase":true}}}, +{"id":87419,"name":"Kaleiki's Lost Training Staff","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,797,1195,0,0,0,453,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":5588,"weaponDamageMax":8383,"weaponSpeed":2.4,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":5588,"weaponDamageMax":8383,"stats":{"1":797,"2":1195,"6":453,"11":577},"isBase":true}}}, +{"id":87420,"name":"Ritter's Rat Render","icon":"inv_polearm_2h_pandung_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,680,1020,0,0,0,0,467,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1293,"weaponDamageMin":5216,"weaponDamageMax":9689,"weaponSpeed":3,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":1293,"weaponDamageMin":5216,"weaponDamageMax":9689,"stats":{"1":680,"2":1020,"7":467,"8":431},"isBase":true}}}, +{"id":87421,"name":"Fellworth's Repetitive Greataxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[631,0,947,0,0,0,349,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"weaponDamageMin":6640,"weaponDamageMax":9961,"weaponSpeed":3.6,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"weaponDamageMin":6640,"weaponDamageMax":9961,"stats":{"0":631,"2":947,"6":349,"7":463},"isBase":true}}}, +{"id":87422,"name":"Matsuba's Breadmaker","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,816,544,384,0,327,0,0,0,0,0,0,0,3115,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"weaponDamageMin":2622,"weaponDamageMax":3933,"weaponSpeed":3.3,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"weaponDamageMin":2622,"weaponDamageMax":3933,"stats":{"2":816,"3":544,"4":384,"6":327,"14":3115},"isBase":true}}}, +{"id":87423,"name":"Bjam's Door-Breaker","icon":"inv_sword_2h_pandung_c_01","type":13,"weaponType":9,"handType":4,"stats":[544,0,816,0,0,394,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"weaponDamageMin":6038,"weaponDamageMax":9058,"weaponSpeed":3.8,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"weaponDamageMin":6038,"weaponDamageMax":9058,"stats":{"0":544,"2":816,"5":394,"6":309},"isBase":true}}}, +{"id":87424,"name":"Cryptwarden's Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[797,0,1195,0,0,0,562,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":797,"2":1195,"6":562,"7":479,"22":4693},"isBase":true}}}, +{"id":87425,"name":"Chestguard of the Solicitious Pandaren","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1109,739,468,0,0,508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":739,"4":468,"7":508,"22":2394},"isBase":true}}}, +{"id":87426,"name":"Deathspite Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[544,0,816,0,0,368,0,0,353,0,0,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"stats":{"0":544,"2":816,"5":368,"8":353,"22":3965},"isBase":true}}}, +{"id":87427,"name":"Blade-Dulling Greatcloak","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[444,0,666,0,0,232,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"0":444,"2":666,"5":232,"9":333,"22":970},"isBase":true}}}, +{"id":87428,"name":"Aquino's Cloak of Unity","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,379,568,0,0,228,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"1":379,"2":568,"5":228,"6":267,"22":907},"isBase":true}}}, +{"id":87429,"name":"Drape of Flowing Gauze","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,618,412,275,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"2":618,"3":412,"4":275,"6":275,"22":941},"isBase":true}}}, +{"id":87430,"name":"Brilliant Cloak of Wu the Younger","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[412,0,618,0,0,0,287,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"0":412,"2":618,"6":287,"7":254,"22":941},"isBase":true}}}, +{"id":87431,"name":"Roffle's Flowing Raiment","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,490,327,0,0,221,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":621,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":621,"stats":{"2":490,"3":327,"6":221,"7":212,"22":848},"isBase":true}}}, +{"id":87432,"name":"Tesslah's Ticking Treads","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,505,758,0,0,312,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":961,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":961,"stats":{"1":505,"2":758,"5":312,"7":352,"22":1588},"isBase":true}}}, +{"id":87433,"name":"Blackfooted Greatboots","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[505,0,758,0,0,0,352,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":961,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":961,"stats":{"0":505,"2":758,"6":352,"7":312,"22":3017},"isBase":true}}}, +{"id":87434,"name":"Sandals of Sympathetic Healing","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,704,469,327,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":892,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":892,"stats":{"2":704,"3":469,"4":327,"7":290,"22":1207},"isBase":true}}}, +{"id":87435,"name":"Treads of Exotic Mastery","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,469,704,0,0,0,282,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":892,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":892,"stats":{"1":469,"2":704,"6":282,"7":331,"22":2137},"isBase":true}}}, +{"id":87436,"name":"Sollerets of Immovability","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[435,0,653,0,0,0,303,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,2820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"0":435,"2":653,"6":303,"8":269,"22":2820},"isBase":true}}}, +{"id":87437,"name":"Anaxo's Multi-Layered Seal","icon":"inv_jewelry_ring_140","type":11,"stats":[0,0,666,444,0,0,0,326,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"7":326,"11":246},"isBase":true}}}, +{"id":87438,"name":"Signet of the Binding Wall","icon":"inv_jewelry_ring_153","type":11,"stats":[0,0,568,379,215,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"2":568,"3":379,"4":215,"6":274},"isBase":true}}}, +{"id":87439,"name":"Pestilential Ring","icon":"inv_jewelry_ring_154","type":11,"stats":[379,0,568,0,0,0,271,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"0":379,"2":568,"6":271,"7":221},"isBase":true}}}, +{"id":87440,"name":"Band of Pricking Needles","icon":"inv_jewelry_ring_83","type":11,"stats":[0,327,490,0,0,0,212,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":621,"ilvl":417,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":621,"stats":{"1":327,"2":490,"6":212,"7":221},"isBase":true}}}, +{"id":87441,"name":"Seal of a Thousand Scars","icon":"inv_jewelry_ring_131","type":11,"stats":[267,0,529,0,0,0,352,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":669,"ilvl":425,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":669,"stats":{"0":267,"2":529,"6":352,"8":178},"isBase":true}}}, +{"id":87442,"name":"Signet of the Scorned","icon":"inv_jewelry_ring_38","type":11,"stats":[230,0,455,0,0,153,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":576,"ilvl":409,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":576,"stats":{"0":230,"2":455,"5":153,"7":303},"isBase":true}}}, +{"id":87443,"name":"Syrio's Gloves of Tutelage","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,550,824,0,0,295,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1045,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1045,"stats":{"1":550,"2":824,"5":295,"11":408,"22":1496},"isBase":true}}}, +{"id":87444,"name":"Wind-Kissed Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,418,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":418,"7":356,"22":1213},"isBase":true}}}, +{"id":87445,"name":"Gauntlets of Blurring Fingers","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[550,0,824,0,0,0,0,348,0,0,0,377,0,0,0,0,0,0,0,0,0,0,2844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1045,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1045,"stats":{"0":550,"2":824,"7":348,"11":377,"22":2844},"isBase":true}}}, +{"id":87446,"name":"Gauntlets of the Solemn Charge","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[550,0,824,0,0,0,0,0,0,403,304,0,0,0,0,0,0,0,0,0,0,0,2844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1045,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1045,"stats":{"0":550,"2":824,"9":403,"10":304,"22":2844},"isBase":true}}}, +{"id":87447,"name":"Toad-Slime Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,606,404,0,0,269,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1022,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":768,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":768,"stats":{"2":606,"3":404,"6":269,"7":269,"22":1022},"isBase":true}}}, +{"id":87448,"name":"Toremu's Crackling Grips","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,653,435,303,0,0,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"2":653,"3":435,"4":303,"7":269,"22":1877},"isBase":true}}}, +{"id":87449,"name":"Errick's Woundbinder Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,653,435,234,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"2":653,"3":435,"4":234,"7":323,"22":2564},"isBase":true}}}, +{"id":87450,"name":"Hood of Alchemical Vapors","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1109,499,0,0,0,336,0,0,0,395,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":499,"7":336,"11":395,"22":1528},"isBase":true}}}, +{"id":87451,"name":"Helm of Elemental Binding","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,1195,557,372,0,0,0,0,0,0,435,0,0,0,0,0,0,0,0,0,0,2792,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":557,"4":372,"11":435,"22":2792},"isBase":true}}}, +{"id":87452,"name":"Zom's Misty Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,557,1195,0,0,0,0,346,0,0,0,450,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":557,"2":1195,"7":346,"11":450,"22":2007},"isBase":true}}}, +{"id":87453,"name":"Endwyn's Toothy Visage","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[440,0,1020,0,0,385,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,3566,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1293,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":1293,"stats":{"0":440,"2":1020,"5":385,"8":246,"22":3566},"isBase":true}}}, +{"id":87454,"name":"Light-Sealed Casque","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,1109,499,388,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3697,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"2":1109,"3":499,"4":388,"7":348,"22":3697},"isBase":true}}}, +{"id":87455,"name":"Davidian's All-Seeing Eyes","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[391,0,947,0,0,259,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3449,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"stats":{"0":391,"2":947,"5":259,"7":325,"22":3449},"isBase":true}}}, +{"id":87456,"name":"Hexu's Amplifying Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,484,816,0,0,245,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"stats":{"1":484,"2":816,"5":245,"6":383,"22":2358},"isBase":true}}}, +{"id":87457,"name":"Record of Mysterious Deeds","icon":"inv_offhand_1h_pandung_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,666,444,288,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":288,"7":300},"isBase":true}}}, +{"id":87458,"name":"Bone-Inlaid Fan","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,568,379,0,260,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"2":568,"3":379,"5":260,"6":240},"isBase":true}}}, +{"id":87459,"name":"Dills' Primal Leggings","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,739,1109,0,0,0,500,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,2915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1406,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1406,"stats":{"1":739,"2":1109,"6":500,"8":481,"22":2915},"isBase":true}}}, +{"id":87460,"name":"Legplates of the Wandering Warrior","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[586,0,879,0,0,396,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1114,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":1114,"stats":{"0":586,"2":879,"5":396,"6":381,"22":3589},"isBase":true}}}, +{"id":87461,"name":"Greatheart Pants","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[480,0,947,0,0,320,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,3715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"stats":{"0":480,"2":947,"5":320,"8":631,"22":3715},"isBase":true}}}, +{"id":87462,"name":"Leggings of Perfect Balance","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,631,947,0,0,0,0,359,457,0,0,0,0,0,0,0,0,0,0,0,0,0,1955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"stats":{"1":631,"2":947,"7":359,"8":457,"22":1955},"isBase":true}}}, +{"id":87463,"name":"Very Manly Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,947,631,0,339,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"stats":{"2":947,"3":631,"5":339,"7":469,"22":1536},"isBase":true}}}, +{"id":87464,"name":"Leggings of the Scorched Man","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,816,544,389,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"stats":{"2":816,"3":544,"4":389,"7":318,"22":2539},"isBase":true}}}, +{"id":87465,"name":"Solianti's Insect Smasher","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,476,317,196,0,221,0,0,0,0,0,0,0,4238,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":603,"weaponDamageMin":1612,"weaponDamageMax":2995,"weaponSpeed":2.3,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":603,"weaponDamageMin":1612,"weaponDamageMax":2995,"stats":{"2":476,"3":317,"4":196,"6":221,"14":4238},"isBase":true}}}, +{"id":87466,"name":"Ritualistic Sickle","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,405,270,0,0,180,180,0,0,0,0,0,0,3612,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":514,"weaponDamageMin":1137,"weaponDamageMax":2112,"weaponSpeed":1.9,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":514,"weaponDamageMin":1137,"weaponDamageMax":2112,"stats":{"2":405,"3":270,"6":180,"7":180,"14":3612},"isBase":true}}}, +{"id":87467,"name":"Ravenclaw Harbinger","icon":"inv_knife_1h_pandung_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,349,233,0,0,158,151,0,0,0,0,0,0,3113,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":825,"weaponDamageMax":1532,"weaponSpeed":1.6,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":443,"weaponDamageMin":825,"weaponDamageMax":1532,"stats":{"2":349,"3":233,"6":158,"7":151,"14":3113},"isBase":true}}}, +{"id":87468,"name":"Shiny Hozen Rock Holder","icon":"inv_jewelry_necklace_89","type":2,"stats":[0,0,618,412,0,0,222,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"2":618,"3":412,"6":222,"7":306},"isBase":true}}}, +{"id":87469,"name":"Astrylian's Cheerful Charm","icon":"inv_jewelry_necklace_89","type":2,"stats":[0,444,666,0,0,296,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"5":296,"8":296},"isBase":true}}}, +{"id":87470,"name":"Scabripper Necklace","icon":"inv_jewelry_necklace_87","type":2,"stats":[379,0,568,0,0,274,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"0":379,"2":568,"5":274,"8":215},"isBase":true}}}, +{"id":87471,"name":"Stitcher's Spare Needles","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,528,352,261,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":669,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":669,"stats":{"2":528,"3":352,"4":261,"6":189},"isBase":true}}}, +{"id":87472,"name":"Gaze of the Serpent","icon":"inv_jewelry_necklace_86","type":2,"stats":[352,0,528,0,0,217,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":669,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":669,"stats":{"0":352,"2":528,"5":217,"7":245},"isBase":true}}}, +{"id":87473,"name":"Necklace of the Eternal Watch","icon":"inv_jewelry_necklace_40","type":2,"stats":[327,0,490,0,0,0,218,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":621,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":621,"stats":{"0":327,"2":490,"6":218,"8":218},"isBase":true}}}, +{"id":87474,"name":"Ennadee's Twirling Longbow","icon":"inv_bow_1h_pandung_c_01","type":14,"rangedWeaponType":1,"stats":[0,797,1195,0,0,0,555,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":5908,"weaponDamageMax":10973,"weaponSpeed":2.9,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":5908,"weaponDamageMax":10973,"stats":{"1":797,"2":1195,"6":555,"11":492},"isBase":true}}}, +{"id":87475,"name":"Wand of Stultifying Smoke","icon":"inv_wand_1h_pandung_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,437,291,0,206,0,175,0,0,0,0,0,0,3894,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":554,"weaponDamageMin":1160,"weaponDamageMax":2156,"weaponSpeed":1.8,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":554,"weaponDamageMin":1160,"weaponDamageMax":2156,"stats":{"2":437,"3":291,"5":206,"7":175,"14":3894},"isBase":true}}}, +{"id":87476,"name":"Wall Guardian's Longrifle","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,631,947,0,0,433,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1200,"weaponDamageMin":4680,"weaponDamageMax":8693,"weaponSpeed":2.9,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":1200,"weaponDamageMin":4680,"weaponDamageMax":8693,"stats":{"1":631,"2":947,"5":433,"6":400},"isBase":true}}}, +{"id":87477,"name":"Penate's Penance-Procuring Pistol","icon":"inv_firearm_2h_rifle_pandung_c_01","type":14,"rangedWeaponType":3,"stats":[0,544,816,0,0,0,0,318,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1034,"weaponDamageMin":4032,"weaponDamageMax":7489,"weaponSpeed":2.9,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":1034,"weaponDamageMin":4032,"weaponDamageMax":7489,"stats":{"1":544,"2":816,"7":318,"11":389},"isBase":true}}}, +{"id":87478,"name":"Wand of the Exiled Path","icon":"inv_wand_1h_pandung_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,376,251,184,0,139,0,0,0,0,0,0,0,3352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":477,"weaponDamageMin":999,"weaponDamageMax":1857,"weaponSpeed":1.8,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":477,"weaponDamageMin":999,"weaponDamageMax":1857,"stats":{"2":376,"3":251,"4":184,"6":139,"14":3352},"isBase":true}}}, +{"id":87484,"name":"Robes of the Quiet Isle","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1020,680,0,0,460,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1293,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":1293,"stats":{"2":1020,"3":680,"6":460,"7":442,"22":1815},"isBase":true}}}, +{"id":87485,"name":"Robes of Forgone Hope","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,879,586,362,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1114,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":1114,"stats":{"2":879,"3":586,"4":362,"6":408,"22":1696},"isBase":true}}}, +{"id":87486,"name":"Skyrider's Shining Shield","icon":"inv_shield_pandung_c_01","type":13,"weaponType":7,"handType":3,"stats":[412,0,618,0,0,0,0,0,0,0,222,306,0,0,0,0,0,0,0,0,0,0,14594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":784,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":784,"stats":{"0":412,"2":618,"10":222,"11":306,"22":14594},"isBase":true}}}, +{"id":87487,"name":"Turpster's Sonorous Shield","icon":"inv_shield_pandung_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,666,444,305,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":305,"7":281,"22":15053},"isBase":true}}}, +{"id":87488,"name":"Don Carlos' Drifting Shield","icon":"inv_shield_pandung_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,490,327,0,0,237,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":621,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":621,"stats":{"2":490,"3":327,"6":237,"7":186,"22":13158},"isBase":true}}}, +{"id":87489,"name":"Fletcher's Sharpening Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,592,888,0,0,300,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"5":300,"6":450,"22":2577},"isBase":true}}}, +{"id":87490,"name":"Orb-Bound Shoulders","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,758,505,320,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":961,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":961,"stats":{"2":758,"3":505,"4":320,"6":347,"22":1361},"isBase":true}}}, +{"id":87491,"name":"Spaulders of Five Rings","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,653,435,0,262,0,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"2":653,"3":435,"5":262,"7":307,"22":1272},"isBase":true}}}, +{"id":87492,"name":"Mantle of Bestial Force","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,435,653,0,0,0,283,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"1":435,"2":653,"6":283,"7":295,"22":1619},"isBase":true}}}, +{"id":87493,"name":"Enokian Growth Shoulderguards","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,704,469,322,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":892,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":892,"stats":{"2":704,"3":469,"4":322,"7":297,"22":1676},"isBase":true}}}, +{"id":87494,"name":"Shoulderguards of Honest Labor","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[404,0,606,0,0,0,223,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":768,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":768,"stats":{"0":404,"2":606,"6":223,"7":296,"22":2974},"isBase":true}}}, +{"id":87495,"name":"Gerp's Perfect Arrow","icon":"inv_ammo_arrow_05","type":12,"stats":[0,0,0,0,0,0,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1045,"ilvl":442,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":1045,"stats":{"6":697},"isBase":true}}}, +{"id":87496,"name":"Daelo's Final Words","icon":"inv_jewelry_trinket_17","type":12,"stats":[0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"5":751},"isBase":true}}}, +{"id":87497,"name":"Core of Decency","icon":"inv_jewelry_trinket_20","type":12,"stats":[0,0,0,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":961,"ilvl":433,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":961,"stats":{"4":641},"isBase":true}}}, +{"id":87498,"name":"Spiritwhisper Conch","icon":"inv_misc_coin_14","type":12,"stats":[0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":768,"ilvl":409,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":768,"stats":{"3":512},"isBase":true}}}, +{"id":87499,"name":"Grakl's Gleaming Talisman","icon":"inv_misc_trinketpanda_09","type":12,"stats":[0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":768,"ilvl":409,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":768,"stats":{"3":512},"isBase":true}}}, +{"id":87500,"name":"Brooch of Munificent Deeds","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"2":828},"isBase":true}}}, +{"id":87501,"name":"Unbreakable Waistplate","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[592,0,888,0,0,300,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":592,"2":888,"5":300,"9":450,"22":2640},"isBase":true}}}, +{"id":87502,"name":"Repression Belt","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,888,592,0,385,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"5":385,"7":401,"22":1091},"isBase":true}}}, +{"id":87503,"name":"Repin's Ammo-Laden Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,505,758,0,0,366,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":961,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":961,"stats":{"1":505,"2":758,"5":366,"6":288,"22":1808},"isBase":true}}}, +{"id":87504,"name":"Waistguard of Flaming Words","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[435,0,653,0,0,0,299,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"0":435,"2":653,"6":299,"7":276,"22":2307},"isBase":true}}}, +{"id":87505,"name":"Spirit-Speaking Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,704,469,297,0,0,322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1749,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":892,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":892,"stats":{"2":704,"3":469,"4":297,"7":322,"22":1749},"isBase":true}}}, +{"id":87506,"name":"Cheng's Irrepressible Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,606,404,285,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":768,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":768,"stats":{"2":606,"3":404,"4":285,"11":243,"22":2230},"isBase":true}}}, +{"id":87507,"name":"Melador's Mercurial Wrap","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,653,435,283,0,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":828,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":828,"stats":{"2":653,"3":435,"4":283,"6":295,"22":1214},"isBase":true}}}, +{"id":87508,"name":"Lhakaz's Missing Ribspreader","icon":"inv_knife_1h_pandung_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,317,476,0,0,0,201,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":603,"weaponDamageMin":2885,"weaponDamageMax":4328,"weaponSpeed":1.8,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":603,"weaponDamageMin":2885,"weaponDamageMax":4328,"stats":{"1":317,"2":476,"6":201,"11":218},"isBase":true}}}, +{"id":87509,"name":"Fist of Fate","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,341,512,0,0,0,0,0,222,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"8":222,"11":231},"isBase":true}}}, +{"id":87510,"name":"Buc-Zakai Bugslicer","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[270,0,405,0,0,193,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":514,"weaponDamageMin":3112,"weaponDamageMax":5780,"weaponSpeed":2.6,"ilvl":425,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"425":{"randPropPoints":514,"weaponDamageMin":3112,"weaponDamageMax":5780,"stats":{"0":270,"2":405,"5":193,"6":158},"isBase":true}}}, +{"id":87511,"name":"Horrifying Meatsaw","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[291,0,437,0,0,203,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":554,"weaponDamageMin":3353,"weaponDamageMax":6228,"weaponSpeed":2.6,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":554,"weaponDamageMin":3353,"weaponDamageMax":6228,"stats":{"0":291,"2":437,"5":203,"8":180},"isBase":true}}}, +{"id":87512,"name":"Porter's Tooth-Marked Mace","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,317,476,0,0,0,233,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":603,"weaponDamageMin":3646,"weaponDamageMax":6772,"weaponSpeed":2.6,"ilvl":442,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"442":{"randPropPoints":603,"weaponDamageMin":3646,"weaponDamageMax":6772,"stats":{"1":317,"2":476,"6":233,"7":175},"isBase":true}}}, +{"id":87513,"name":"Axe of the Iron Price","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,251,376,0,0,0,175,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":477,"weaponDamageMin":2888,"weaponDamageMax":5365,"weaponSpeed":2.6,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":477,"weaponDamageMin":2888,"weaponDamageMax":5365,"stats":{"1":251,"2":376,"6":175,"7":155},"isBase":true}}}, +{"id":87514,"name":"Sharpened Multi-Prong Dagger","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,251,376,0,0,0,131,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":477,"weaponDamageMin":2285,"weaponDamageMax":3429,"weaponSpeed":1.8,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":477,"weaponDamageMin":2285,"weaponDamageMax":3429,"stats":{"1":251,"2":376,"6":131,"8":188},"isBase":true}}}, +{"id":87515,"name":"Ced's Crusher","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,233,349,0,0,155,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":2681,"weaponDamageMax":4980,"weaponSpeed":2.6,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":443,"weaponDamageMin":2681,"weaponDamageMax":4980,"stats":{"1":233,"2":349,"5":155,"6":155},"isBase":true}}}, +{"id":87516,"name":"Scalebreaker Axe","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,233,349,0,0,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":2681,"weaponDamageMax":4980,"weaponSpeed":2.6,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":443,"weaponDamageMin":2681,"weaponDamageMax":4980,"stats":{"1":233,"2":349,"5":177,"7":118},"isBase":true}}}, +{"id":87517,"name":"Bracers of Rolling Fields","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,666,444,0,0,0,326,0,0,0,246,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"7":326,"11":246,"22":1081},"isBase":true}}}, +{"id":87518,"name":"Bracers of the Neux Dawn","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,568,379,240,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":720,"ilvl":433,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"433":{"randPropPoints":720,"stats":{"2":568,"3":379,"4":240,"7":260,"22":1920},"isBase":true}}}, +{"id":87519,"name":"Misty Morning Wristguards","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,327,490,0,0,0,230,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":621,"ilvl":417,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"417":{"randPropPoints":621,"stats":{"1":327,"2":490,"6":230,"7":196,"22":1314},"isBase":true}}}, +{"id":87520,"name":"Glowing Wind Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,454,303,225,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":576,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":576,"stats":{"2":454,"3":303,"4":225,"11":163,"22":716},"isBase":true}}}, +{"id":87521,"name":"Zoid's Scorched Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[303,0,454,0,0,0,225,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,1735,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":576,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":576,"stats":{"0":303,"2":454,"6":225,"8":163,"22":1735},"isBase":true}}}, +{"id":87522,"name":"Star-Carrier Bracers","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,303,454,0,0,153,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":576,"ilvl":409,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"409":{"randPropPoints":576,"stats":{"1":303,"2":454,"5":153,"6":230,"22":912},"isBase":true}}}, +{"id":87542,"name":"Mogu'Dar, Blade of the Thousand Slaves","icon":"inv_sword_2h_pandung_c_01","type":13,"weaponType":9,"handType":4,"stats":[1094,0,1641,0,0,792,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6143,"otherName":"Xin the Weaponmaster"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"5":634,"6":498}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"0":1015,"2":1523,"5":735,"6":577}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"0":1054,"2":1581,"5":764,"6":600},"upgradeStep":1}}}, +{"id":87543,"name":"Ka'eng, Breath of the Shadow","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,469,703,0,0,0,352,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5918,"otherName":"Taran Zhu"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":282,"8":196}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"1":435,"2":652,"6":327,"8":227}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"1":452,"2":678,"6":339,"8":236},"upgradeStep":1}}}, +{"id":87544,"name":"Je'lyu, Spirit of the Serpent","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,703,469,282,0,0,0,0,0,0,331,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":2489,"weaponDamageMax":4623,"weaponSpeed":2.4,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5956,"otherName":"Sha of Doubt"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":225,"11":265,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":2310,"weaponDamageMax":4291,"stats":{"2":652,"3":435,"4":261,"11":307,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":2398,"weaponDamageMax":4454,"stats":{"2":678,"3":452,"4":272,"11":319,"14":6037},"upgradeStep":1}}}, +{"id":87545,"name":"Inelava, Spirit of Inebriation","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[469,0,703,0,0,237,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5963,"otherName":"Yan-Zhu the Uncasked"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":190,"11":285}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"0":435,"2":652,"5":220,"11":331}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"0":452,"2":678,"5":229,"11":343},"upgradeStep":1}}}, +{"id":87546,"name":"Klatith, Fangs of the Swarm","icon":"inv_bow_1h_pandung_c_01","type":14,"rangedWeaponType":1,"stats":[0,1094,1641,0,0,0,729,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":8390,"weaponDamageMax":15582,"weaponSpeed":3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":5976,"otherName":"Raigonn"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":583,"7":583}},"476":{"randPropPoints":1930,"weaponDamageMin":7787,"weaponDamageMax":14463,"stats":{"1":1015,"2":1522,"6":677,"7":677}},"480":{"randPropPoints":2004,"weaponDamageMin":8083,"weaponDamageMax":15012,"stats":{"1":1054,"2":1581,"6":703,"7":703},"upgradeStep":1}}}, +{"id":87547,"name":"Tolakesh, Horn of the Black Ox","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,469,703,0,0,317,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3733,"weaponDamageMax":6934,"weaponSpeed":1.8,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"5":254,"8":244}},"476":{"randPropPoints":827,"weaponDamageMin":3465,"weaponDamageMax":6436,"stats":{"1":435,"2":652,"5":294,"8":283}},"480":{"randPropPoints":859,"weaponDamageMin":3597,"weaponDamageMax":6680,"stats":{"1":452,"2":678,"5":306,"8":294},"upgradeStep":1}}}, +{"id":87550,"name":"Vithrak, Gaze of the Deadman","icon":"inv_misc_bone_skull_01","type":11,"stats":[0,0,914,610,0,0,0,412,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6052,"otherName":"Flameweaver Koegler"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"7":383,"11":368}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"7":397,"11":381},"upgradeStep":1}}}, +{"id":87551,"name":"Helios, Durand's Soul of Purity","icon":"inv_jewelry_necklace_106","type":2,"stats":[610,0,914,0,0,386,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":796,"otherName":"High Inquisitor Whitemane"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":309,"7":335}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"5":359,"7":388}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"5":372,"7":403},"upgradeStep":1}}}, +{"id":87569,"name":"The Horseman's Horrific Hood","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[1019,0,1179,0,0,445,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4220,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":837,"2":997,"5":352,"6":465,"22":3959}},"470":{"randPropPoints":1825,"stats":{"0":934,"2":1094,"5":401,"6":526,"22":4104}},"474":{"randPropPoints":1895,"stats":{"0":976,"2":1136,"5":423,"6":553,"22":4162},"upgradeStep":1}}}, +{"id":87570,"name":"The Horseman's Sinister Slicer","icon":"inv_sword_07","type":13,"weaponType":9,"handType":2,"stats":[0,296,831,0,0,296,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":250,"2":703,"5":250,"8":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":274,"2":771,"5":274,"8":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":285,"2":801,"5":285,"8":285},"upgradeStep":1}}}, +{"id":87571,"name":"Brawler's Statue","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"470":{"randPropPoints":1356,"stats":{"9":904}},"474":{"randPropPoints":1408,"stats":{"9":939},"upgradeStep":1}}}, +{"id":87572,"name":"Mithril Wristwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"470":{"randPropPoints":1356,"stats":{"6":904}},"474":{"randPropPoints":1408,"stats":{"6":939},"upgradeStep":1}}}, +{"id":87573,"name":"Thousand-Year Pickled Egg","icon":"inv_egg_02","type":12,"stats":[0,0,0,974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"470":{"randPropPoints":1356,"stats":{"3":904}},"474":{"randPropPoints":1408,"stats":{"3":939},"upgradeStep":1}}}, +{"id":87574,"name":"Coren's Cold Chromium Coaster","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"470":{"randPropPoints":1356,"stats":{"6":904}},"474":{"randPropPoints":1408,"stats":{"6":939},"upgradeStep":1}}}, +{"id":87575,"name":"Bubbliest Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,1461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"470":{"randPropPoints":1356,"stats":{"2":1356}},"474":{"randPropPoints":1408,"stats":{"2":1408},"upgradeStep":1}}}, +{"id":87576,"name":"Bitterest Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,1461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1461,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"470":{"randPropPoints":1356,"stats":{"2":1356}},"474":{"randPropPoints":1408,"stats":{"2":1408},"upgradeStep":1}}}, +{"id":87586,"name":"Forest Trickster's Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,750,500,0,0,343,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":343,"7":317,"22":1367},"isBase":true}}}, +{"id":87587,"name":"Orchard Tender's Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,750,500,0,0,376,0,0,0,0,261,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":376,"11":261,"22":1754},"isBase":true}}}, +{"id":87588,"name":"Leggings of Spiritsong Melody","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,750,500,0,0,376,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":376,"7":261,"22":2461},"isBase":true}}}, +{"id":87589,"name":"Leggings of Fractured Reflection","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,750,500,0,0,371,0,0,0,0,269,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"6":371,"11":269,"22":3380},"isBase":true}}}, +{"id":87590,"name":"Jade Heart Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,750,500,0,338,0,325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"2":750,"3":500,"5":338,"7":325,"22":1367},"isBase":true}}}, +{"id":87591,"name":"Tian Trainee Leggings","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,500,750,0,0,0,0,317,0,0,0,343,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"1":500,"2":750,"7":317,"11":343,"22":1754},"isBase":true}}}, +{"id":87592,"name":"Grookin' Grookin' Trousers","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,500,750,0,0,0,343,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,2461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"1":500,"2":750,"6":343,"11":317,"22":2461},"isBase":true}}}, +{"id":87593,"name":"Gan Shi Warlord Legguards","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[500,0,750,0,0,0,0,0,0,367,0,277,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"0":500,"2":750,"9":367,"11":277,"22":3380},"isBase":true}}}, +{"id":87594,"name":"Leggings of Forgotten War","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[500,0,750,0,0,358,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":951,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":951,"stats":{"0":500,"2":750,"5":358,"6":293,"22":3380},"isBase":true}}}, +{"id":87595,"name":"Gloves of Burrow Spelunking","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,408,611,0,0,0,0,295,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"7":295,"11":232,"22":1308},"isBase":true}}}, +{"id":87596,"name":"Mudmug's Mitts","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,408,611,0,0,0,288,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"1":408,"2":611,"6":288,"11":245,"22":1820},"isBase":true}}}, +{"id":87597,"name":"Gloves of Congealed Mist","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,611,408,0,0,206,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":206,"7":310,"22":1028},"isBase":true}}}, +{"id":87598,"name":"Monstrous Silk Gloves","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,611,408,0,0,295,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":295,"7":232,"22":1028},"isBase":true}}}, +{"id":87599,"name":"Grower's Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,611,408,0,0,252,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":252,"11":284,"22":1308},"isBase":true}}}, +{"id":87600,"name":"Marshsong Gloves","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,611,408,0,0,265,0,0,0,0,276,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":265,"11":276,"22":1820},"isBase":true}}}, +{"id":87601,"name":"Plough Driving Grips","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,611,408,0,0,225,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"2":611,"3":408,"6":225,"7":299,"22":2486},"isBase":true}}}, +{"id":87602,"name":"Grain Warden's Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[408,0,611,0,0,0,0,232,0,0,0,295,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":408,"2":611,"7":232,"11":295,"22":2486},"isBase":true}}}, +{"id":87603,"name":"Thunderfall Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[408,0,611,0,0,0,0,0,0,291,0,238,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"ilvl":410,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"410":{"randPropPoints":775,"stats":{"0":408,"2":611,"9":291,"11":238,"22":2486},"isBase":true}}}, +{"id":87604,"name":"Beachcomber's Hat","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,904,603,0,0,0,353,0,0,0,431,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"7":353,"11":431,"22":1396},"isBase":true}}}, +{"id":87605,"name":"Crest of the Red Crane","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,904,603,0,0,0,315,0,0,0,453,0,0,0,0,0,0,0,0,0,0,1777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"7":315,"11":453,"22":1777},"isBase":true}}}, +{"id":87606,"name":"Tidehunter Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,904,603,0,0,315,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,2473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":315,"11":453,"22":2473},"isBase":true}}}, +{"id":87607,"name":"Unearthed Dojani Headcover","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,904,603,0,0,372,0,0,0,0,420,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":372,"11":420,"22":3377},"isBase":true}}}, +{"id":87608,"name":"Korjan Mystic's Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,904,603,0,0,408,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,1396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"2":904,"3":603,"6":408,"11":392,"22":1396},"isBase":true}}}, +{"id":87609,"name":"Brushstalker Helm","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,603,904,0,0,0,353,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"1":603,"2":904,"6":353,"7":431,"22":1777},"isBase":true}}}, +{"id":87610,"name":"Deepwild Hunting Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,603,904,0,0,372,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"1":603,"2":904,"5":372,"6":420,"22":2473},"isBase":true}}}, +{"id":87611,"name":"Shen-zin Shell Headguard","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[603,0,904,0,0,0,0,0,0,448,324,0,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"0":603,"2":904,"9":448,"10":324,"22":3377},"isBase":true}}}, +{"id":87612,"name":"Ancient Krasari Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[603,0,904,0,0,0,448,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,3377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"ilvl":420,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"stats":{"0":603,"2":904,"6":448,"11":324,"22":3377},"isBase":true}}}, +{"id":87613,"name":"Frozen Zandalari Bracer","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,369,553,0,0,234,0,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"1":369,"2":553,"5":234,"7":253,"22":998},"isBase":true}}}, +{"id":87614,"name":"Kafa Picker's Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,369,553,0,0,234,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"1":369,"2":553,"5":234,"11":253,"22":1389},"isBase":true}}}, +{"id":87615,"name":"Yakwasher's Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,553,369,0,0,246,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"6":246,"11":246,"22":784},"isBase":true}}}, +{"id":87616,"name":"Mountain Trailblazer's Cuffs","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,553,369,260,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":260,"6":222,"22":784},"isBase":true}}}, +{"id":87617,"name":"Bracers of the Serene Mountaintop","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,553,369,246,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":246,"7":246,"22":998},"isBase":true}}}, +{"id":87618,"name":"Ice Encrusted Bracer","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,553,369,210,0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"4":210,"11":267,"22":1389},"isBase":true}}}, +{"id":87619,"name":"Terracotta Guardian's Bracer","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,553,369,0,0,280,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"2":553,"3":369,"6":280,"11":187,"22":1897},"isBase":true}}}, +{"id":87620,"name":"Bracers of the Frozen Summit","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[369,0,553,0,0,0,228,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"0":369,"2":553,"6":228,"7":257,"22":1897},"isBase":true}}}, +{"id":87621,"name":"Wristguards of Great Fortune","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[369,0,553,0,0,0,0,0,0,228,257,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":701,"ilvl":430,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"430":{"randPropPoints":701,"stats":{"0":369,"2":553,"9":228,"10":257,"22":1897},"isBase":true}}}, +{"id":87622,"name":"Yoke of Niuzao","icon":"inv_jewelry_necklace_92","type":2,"stats":[404,0,607,0,0,0,0,0,0,0,300,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"10":300,"11":217},"isBase":true}}}, +{"id":87623,"name":"Razor-Sharp Chitin Choker","icon":"inv_jewelry_necklace_85","type":2,"stats":[404,0,607,0,0,0,293,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"6":293,"11":230},"isBase":true}}}, +{"id":87624,"name":"Yaungol Mist-Shaman's Amulet","icon":"inv_jewelry_necklace_86","type":2,"stats":[0,0,607,404,0,0,243,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"6":243,"11":285},"isBase":true}}}, +{"id":87625,"name":"Congealed Mist Amulet","icon":"inv_jewelry_necklace_74","type":2,"stats":[0,0,607,404,0,0,293,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"6":293,"7":230},"isBase":true}}}, +{"id":87626,"name":"Suna's Shattered Locket","icon":"inv_jewelry_necklace_87","type":2,"stats":[0,404,607,0,0,0,304,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"1":404,"2":607,"6":304,"11":211},"isBase":true}}}, +{"id":87627,"name":"Kunchong Carapace Chestguard","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[726,0,1088,0,0,0,0,0,0,0,460,498,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"10":460,"11":498,"22":4514},"isBase":true}}}, +{"id":87628,"name":"Spinebreaker Chestpiece","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[726,0,1088,0,0,0,512,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"6":512,"7":436,"22":4514},"isBase":true}}}, +{"id":87629,"name":"Chestplate of Manifest Dread","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1088,726,526,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,4514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":526,"11":413,"22":4514},"isBase":true}}}, +{"id":87630,"name":"Chestpiece of Twinkling Stars","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1088,726,0,0,379,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"6":379,"7":545,"22":3305},"isBase":true}}}, +{"id":87631,"name":"Jiao-Skin Tunic","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1088,726,0,0,0,472,0,0,0,491,0,0,0,0,0,0,0,0,0,0,2376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"7":472,"11":491,"22":2376},"isBase":true}}}, +{"id":87632,"name":"Fearsworn Chestpiece","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,726,1088,0,0,0,436,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"6":436,"8":512,"22":3305},"isBase":true}}}, +{"id":87633,"name":"Sharkskin Armor","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,726,1088,0,0,460,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"5":460,"7":498,"22":2376},"isBase":true}}}, +{"id":87634,"name":"Mazu's Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,0,0,0,577,0,0,0,453,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"7":577,"11":453,"22":1940},"isBase":true}}}, +{"id":87635,"name":"Amber-Starched Robes","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1195,797,0,441,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"5":441,"7":584,"22":1940},"isBase":true}}}, +{"id":87636,"name":"Cloak of the Forgotten Emperor","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[404,0,607,0,0,237,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"5":237,"10":289,"22":933},"isBase":true}}}, +{"id":87637,"name":"Jade Harbinger's Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[404,0,607,0,0,0,0,250,0,0,0,282,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"7":250,"11":282,"22":933},"isBase":true}}}, +{"id":87638,"name":"Cloak of Tranquil Clouds","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,607,404,250,0,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"4":250,"6":282,"22":933},"isBase":true}}}, +{"id":87639,"name":"Tattered Guo-Lai Dynasty Cloak","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,607,404,0,250,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"5":250,"6":282,"22":933},"isBase":true}}}, +{"id":87640,"name":"Softfoot's Drape","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,404,607,0,0,0,250,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"1":404,"2":607,"6":250,"11":282,"22":933},"isBase":true}}}, +{"id":87641,"name":"Yaungol Battle Barrier","icon":"inv_shield_pandariaquest_b_01","type":13,"weaponType":7,"handType":3,"stats":[336,0,503,0,0,0,0,0,0,0,224,224,0,0,0,0,0,0,0,0,0,0,13330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":638,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":638,"stats":{"0":336,"2":503,"10":224,"11":224,"22":13330},"isBase":true}}}, +{"id":87642,"name":"Darkstaff of Annihilation","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,904,603,0,408,392,0,0,0,0,0,0,0,3452,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"weaponDamageMin":2993,"weaponDamageMax":4490,"weaponSpeed":3.4,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"weaponDamageMin":2993,"weaponDamageMax":4490,"stats":{"2":904,"3":603,"5":408,"6":392,"14":3452},"isBase":true}}}, +{"id":87643,"name":"Fangcracker Battlemace","icon":"inv_mace_2h_pandung_c_01","type":13,"weaponType":4,"handType":4,"stats":[603,0,904,0,0,0,305,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"weaponDamageMin":6338,"weaponDamageMax":9508,"weaponSpeed":3.6,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"weaponDamageMin":6338,"weaponDamageMax":9508,"stats":{"0":603,"2":904,"6":305,"8":458},"isBase":true}}}, +{"id":87646,"name":"Needlefang Throatripper","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,258,387,0,0,151,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"weaponSpeed":2.6,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"stats":{"1":258,"2":387,"5":151,"6":185},"isBase":true}}}, +{"id":87649,"name":"Pool-Stirrer","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,387,258,147,0,0,0,0,0,0,187,0,0,3451,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"weaponSpeed":2.6,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"stats":{"2":387,"3":258,"4":147,"11":187,"14":3451},"isBase":true}}}, +{"id":87650,"name":"Fishsticker Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,603,904,0,0,353,431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"weaponDamageMin":4621,"weaponDamageMax":8583,"weaponSpeed":3,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"weaponDamageMin":4621,"weaponDamageMax":8583,"stats":{"1":603,"2":904,"5":353,"6":431},"isBase":true}}}, +{"id":87651,"name":"Pathwalker Greatstaff","icon":"inv_stave_2h_430nightelf_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,603,904,0,0,343,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"weaponDamageMin":5810,"weaponDamageMax":8715,"weaponSpeed":3.3,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":1146,"weaponDamageMin":5810,"weaponDamageMax":8715,"stats":{"1":603,"2":904,"5":343,"6":437},"isBase":true}}}, +{"id":87652,"name":"Ook-Breaker Mace","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[258,0,387,0,0,0,185,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"weaponSpeed":2.6,"ilvl":420,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"420":{"randPropPoints":491,"weaponDamageMin":2970,"weaponDamageMax":5517,"stats":{"0":258,"2":387,"6":185,"7":151},"isBase":true}}}, +{"id":87695,"name":"Treads of Edward the Odd","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1219,813,475,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"11":464,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":441,"11":539,"22":2597}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":458,"11":560,"22":2633},"upgradeStep":1}}}, +{"id":87780,"name":"Martar's Magnifying Glass","icon":"inv_misc_spyglass_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":706,"ilvl":400,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"400":{"randPropPoints":706,"isBase":true}}}, +{"id":87822,"name":"Zor'lok's Fizzing Chestguard","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1328,2232,0,0,0,0,0,790,0,0,984,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"8":432,"11":545,"22":3568}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"8":727,"11":907,"22":4210}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"8":758,"11":945,"22":4262},"upgradeStep":1}}}, +{"id":87823,"name":"Zor'lok's Fizzing Chestguard","icon":"inv_chest_mail_raidhunter_j_01","type":5,"armorType":3,"stats":[0,1007,1751,0,0,0,0,0,603,0,0,755,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"8":432,"11":545,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"8":554,"11":695,"22":3869}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"8":578,"11":724,"22":3921},"upgradeStep":1}}}, +{"id":87824,"name":"Zor'lok's Fizzing Chestguard","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,0,0,691,0,0,863,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"8":432,"11":545,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"8":635,"11":795,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"8":663,"11":828,"22":4092},"upgradeStep":1}}}, +{"id":87825,"name":"Grips of Terra Cotta","icon":"inv_glove_mail_raidhunter_l_01","type":7,"armorType":3,"stats":[0,955,1553,0,0,0,0,747,485,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":2230}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":690,"8":447,"22":2574}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":718,"8":465,"22":2607},"upgradeStep":1}}}, +{"id":87826,"name":"Grips of Terra Cotta","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,733,1219,0,0,0,0,578,372,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"7":533,"8":342,"22":2361}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"7":555,"8":357,"22":2394},"upgradeStep":1}}}, +{"id":87827,"name":"Grips of Terra Cotta","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,837,1376,0,0,0,0,657,425,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":2230}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"7":607,"8":391,"22":2467}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"7":631,"8":408,"22":2500},"upgradeStep":1}}}, +{"id":88010,"name":"Plainshawk Cap","icon":"inv_helm_leather_panda_b_02","type":1,"armorType":2,"stats":[0,495,743,0,0,0,0,0,345,0,0,306,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"8":345,"11":306,"22":1622},"isBase":true}}}, +{"id":88011,"name":"Wild Plains Headguard","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,495,743,0,0,0,266,0,368,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"6":266,"8":368,"22":2277},"isBase":true}}}, +{"id":88012,"name":"Gilded Fan Silk Cap","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,743,495,0,0,0,314,0,0,0,340,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"7":314,"11":340,"22":1263},"isBase":true}}}, +{"id":88013,"name":"Silkmasters' Satin Cap","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,743,495,363,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":363,"6":274,"22":1263},"isBase":true}}}, +{"id":88014,"name":"Sunsoaked Cap","icon":"inv_helm_leather_panda_b_02","type":1,"armorType":2,"stats":[0,0,743,495,368,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":368,"6":266,"22":1622},"isBase":true}}}, +{"id":88015,"name":"Huangtze Scale Headguard","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,0,743,495,363,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":363,"7":274,"22":2277},"isBase":true}}}, +{"id":88016,"name":"Paoquan Burnished Cap","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[0,0,743,495,377,0,0,0,0,0,0,251,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":377,"11":251,"22":3129},"isBase":true}}}, +{"id":88017,"name":"Sunsong Armored Cap","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[495,0,743,0,0,363,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"5":363,"7":274,"22":3129},"isBase":true}}}, +{"id":88018,"name":"Thunderfoot Heavy Cap","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[495,0,743,0,0,0,0,0,350,298,0,0,0,0,0,0,0,0,0,0,0,0,3129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"8":350,"9":298,"22":3129},"isBase":true}}}, +{"id":88019,"name":"Sunsong Armored Pauldrons","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[368,0,552,0,0,267,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":267,"6":209,"22":2888},"isBase":true}}}, +{"id":88020,"name":"Thunderfoot Heavy Pauldrons","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[368,0,552,0,0,0,0,0,256,0,0,227,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"8":256,"11":227,"22":2888},"isBase":true}}}, +{"id":88021,"name":"Wild Plains Pauldrons","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,368,552,0,0,270,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":270,"7":204,"22":2102},"isBase":true}}}, +{"id":88022,"name":"Plainshawk Pauldron","icon":"inv_shoulder_leather_panda_b_02","type":3,"armorType":2,"stats":[0,368,552,0,0,267,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":267,"6":209,"22":1497},"isBase":true}}}, +{"id":88023,"name":"Gilded Fan Silk Pauldrons","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,552,368,0,267,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"5":267,"7":209,"22":1166},"isBase":true}}}, +{"id":88024,"name":"Paoquan Burnished Pauldrons","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[0,0,552,368,263,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":263,"7":215,"22":2888},"isBase":true}}}, +{"id":88025,"name":"Huangtze Scale Pauldrons","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,0,552,368,260,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":260,"11":221,"22":2102},"isBase":true}}}, +{"id":88026,"name":"Sunsoaked Pauldron","icon":"inv_shoulder_leather_panda_b_02","type":3,"armorType":2,"stats":[0,0,552,368,256,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":256,"7":227,"22":1497},"isBase":true}}}, +{"id":88027,"name":"Silkmasters' Satin Pauldrons","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,552,368,253,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":253,"7":233,"22":1166},"isBase":true}}}, +{"id":88028,"name":"Sunsong Vest","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[495,0,743,0,0,0,0,290,354,0,0,0,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"7":290,"8":354,"22":3851},"isBase":true}}}, +{"id":88029,"name":"Thunderfoot Vest","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[495,0,743,0,0,350,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"0":495,"2":743,"5":350,"9":298,"22":3851},"isBase":true}}}, +{"id":88030,"name":"Wild Plains Breastplate","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,495,743,0,0,340,0,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"5":340,"7":314,"22":2803},"isBase":true}}}, +{"id":88031,"name":"Plainshawk Vest","icon":"inv_chest_leather_panda_b_02","type":5,"armorType":2,"stats":[0,495,743,0,0,345,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"1":495,"2":743,"5":345,"6":306,"22":1996},"isBase":true}}}, +{"id":88032,"name":"Paoquan Vest","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[0,0,743,495,363,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":363,"7":274,"22":3851},"isBase":true}}}, +{"id":88033,"name":"Huangtze Scale Vest","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,0,743,495,359,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":359,"11":282,"22":2803},"isBase":true}}}, +{"id":88034,"name":"Sunsoaked Vest","icon":"inv_chest_leather_panda_b_02","type":5,"armorType":2,"stats":[0,0,743,495,354,0,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":942,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":942,"stats":{"2":743,"3":495,"4":354,"6":290,"22":1996},"isBase":true}}}, +{"id":88035,"name":"Dojani Shoes","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[368,0,552,0,0,253,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":253,"6":233,"22":2648},"isBase":true}}}, +{"id":88036,"name":"Korjan Shoes","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[368,0,552,0,0,253,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":253,"9":233,"22":2648},"isBase":true}}}, +{"id":88037,"name":"Sarjun Boots","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,368,552,0,0,0,0,227,256,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":227,"8":256,"22":1927},"isBase":true}}}, +{"id":88038,"name":"Riverblade Shoes","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,368,552,0,0,253,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":253,"11":233,"22":1372},"isBase":true}}}, +{"id":88039,"name":"Angkhal Shoes","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,552,368,0,0,0,245,0,0,0,245,0,0,0,0,0,0,0,0,0,0,1069,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"7":245,"11":245,"22":1069},"isBase":true}}}, +{"id":88040,"name":"Narsong Shoes","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[0,0,552,368,256,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":256,"7":227,"22":2648},"isBase":true}}}, +{"id":88041,"name":"Deepwild Greaves","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,0,552,368,273,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":273,"7":198,"22":1927},"isBase":true}}}, +{"id":88042,"name":"Mortbreath Shoes","icon":"inv_boots_leather_panda_b_02","type":10,"armorType":2,"stats":[0,0,552,368,253,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":253,"7":233,"22":1372},"isBase":true}}}, +{"id":88043,"name":"Nayeli Shoes","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,552,368,249,0,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1069,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":249,"6":239,"22":1069},"isBase":true}}}, +{"id":88044,"name":"Dojani Waistband","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[368,0,552,0,0,0,0,227,256,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"7":227,"8":256,"22":2166},"isBase":true}}}, +{"id":88045,"name":"Korjan Waistband","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[368,0,552,0,0,249,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":249,"11":239,"22":2166},"isBase":true}}}, +{"id":88046,"name":"Sarjun Belt","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,368,552,0,0,0,0,198,273,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"7":198,"8":273,"22":1576},"isBase":true}}}, +{"id":88047,"name":"Riverblade Waistband","icon":"inv_belt_leather_panda_b_02","type":8,"armorType":2,"stats":[0,368,552,0,0,0,239,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"6":239,"8":249,"22":1123},"isBase":true}}}, +{"id":88048,"name":"Angkhal Waistband","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,552,368,0,0,277,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"6":277,"7":192,"22":874},"isBase":true}}}, +{"id":88049,"name":"Narsong Waistband","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[0,0,552,368,253,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":253,"7":233,"22":2166},"isBase":true}}}, +{"id":88050,"name":"Deepwild Belt","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,0,552,368,260,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":260,"11":221,"22":1576},"isBase":true}}}, +{"id":88051,"name":"Mortbreath Waistband","icon":"inv_belt_leather_panda_b_02","type":8,"armorType":2,"stats":[0,0,552,368,260,0,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":260,"6":221,"22":1123},"isBase":true}}}, +{"id":88052,"name":"Nayeli Waistband","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,552,368,270,0,204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":270,"6":204,"22":874},"isBase":true}}}, +{"id":88053,"name":"Dojani Handwraps","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[368,0,552,0,0,249,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"5":249,"11":239,"22":2407},"isBase":true}}}, +{"id":88054,"name":"Korjan Handwraps","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[368,0,552,0,0,0,0,0,256,227,0,0,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"0":368,"2":552,"8":256,"9":227,"22":2407},"isBase":true}}}, +{"id":88055,"name":"Sarjun Handwraps","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,368,552,0,0,256,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":256,"6":227,"22":1752},"isBase":true}}}, +{"id":88056,"name":"Riverblade Handwraps","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,368,552,0,0,263,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"1":368,"2":552,"5":263,"11":215,"22":1248},"isBase":true}}}, +{"id":88057,"name":"Angkhal Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,0,239,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"5":239,"7":249,"22":971},"isBase":true}}}, +{"id":88058,"name":"Narsong Handwraps","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[0,0,552,368,249,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,2407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":249,"11":239,"22":2407},"isBase":true}}}, +{"id":88059,"name":"Deepwild Handguards","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,0,552,368,253,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":253,"11":233,"22":1752},"isBase":true}}}, +{"id":88060,"name":"Mortbreath Handwraps","icon":"inv_glove_leather_panda_b_02","type":7,"armorType":2,"stats":[0,0,552,368,256,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":256,"7":227,"22":1248},"isBase":true}}}, +{"id":88061,"name":"Nayeli Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,552,368,260,0,0,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":552,"3":368,"4":260,"11":221,"22":971},"isBase":true}}}, +{"id":88062,"name":"Wallwatcher Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[318,0,476,0,0,230,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"5":230,"7":181,"22":1771},"isBase":true}}}, +{"id":88063,"name":"Summit Guardian Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[318,0,476,0,0,218,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"0":318,"2":476,"5":218,"10":201,"22":1771},"isBase":true}}}, +{"id":88064,"name":"Yak Herder Wristwraps","icon":"inv_bracer_mail_panda_b_01black","type":6,"armorType":3,"stats":[0,318,476,0,0,224,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"5":224,"6":191,"22":1297},"isBase":true}}}, +{"id":88065,"name":"Silentleaf Wristwraps","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,318,476,0,0,221,0,0,0,0,0,196,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"1":318,"2":476,"5":221,"11":196,"22":932},"isBase":true}}}, +{"id":88066,"name":"Mindbender Wristwraps","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,476,318,0,0,0,233,0,0,0,176,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"7":233,"11":176,"22":732},"isBase":true}}}, +{"id":88067,"name":"Serenity Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[0,0,476,318,239,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":239,"11":166,"22":1771},"isBase":true}}}, +{"id":88068,"name":"Dreaming Spirit Wristwraps","icon":"inv_bracer_mail_panda_b_01black","type":6,"armorType":3,"stats":[0,0,476,318,218,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":218,"6":201,"22":1297},"isBase":true}}}, +{"id":88069,"name":"Mushan Hide Wristwraps","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,0,476,318,221,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":221,"7":196,"22":932},"isBase":true}}}, +{"id":88070,"name":"Waterfall Wristwraps","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,476,318,233,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":233,"7":176,"22":732},"isBase":true}}}, +{"id":88071,"name":"Wallwatcher Cap","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[570,0,854,0,0,0,0,0,385,0,0,370,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"8":385,"11":370,"22":3289},"isBase":true}}}, +{"id":88072,"name":"Summit Guardian Cap","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[570,0,854,0,0,0,0,0,402,0,0,342,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"8":402,"11":342,"22":3289},"isBase":true}}}, +{"id":88073,"name":"Yak Herder Cap","icon":"inv_helmet_mail_panda_b_01black","type":1,"armorType":3,"stats":[0,570,854,0,0,0,0,0,407,0,0,333,0,0,0,0,0,0,0,0,0,0,2409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"8":407,"11":333,"22":2409},"isBase":true}}}, +{"id":88074,"name":"Silentleaf Cap","icon":"inv_helmet_leather_panda_b_01","type":1,"armorType":2,"stats":[0,570,854,0,0,413,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"5":413,"11":324,"22":1731},"isBase":true}}}, +{"id":88075,"name":"Mindbender Cap","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,854,570,0,370,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"5":370,"11":385,"22":1360},"isBase":true}}}, +{"id":88076,"name":"Serenity Cap","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,854,570,413,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":413,"7":324,"22":3289},"isBase":true}}}, +{"id":88077,"name":"Dreaming Spirit Cap","icon":"inv_helmet_mail_panda_b_01black","type":1,"armorType":3,"stats":[0,0,854,570,418,0,0,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":418,"7":315,"22":2409},"isBase":true}}}, +{"id":88078,"name":"Mushan Hide Cap","icon":"inv_helmet_leather_panda_b_01","type":1,"armorType":2,"stats":[0,0,854,570,413,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":413,"6":324,"22":1731},"isBase":true}}}, +{"id":88079,"name":"Waterfall Cap","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,854,570,407,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":407,"6":333,"22":1360},"isBase":true}}}, +{"id":88080,"name":"Wallwatcher Vest","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[570,0,854,0,0,396,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"5":396,"11":352,"22":4049},"isBase":true}}}, +{"id":88081,"name":"Summit Guardian Vest","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[570,0,854,0,0,0,0,0,396,0,352,0,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"0":570,"2":854,"8":396,"10":352,"22":4049},"isBase":true}}}, +{"id":88082,"name":"Yak Herder Vest","icon":"inv_chest_mail_panda_b_01black","type":5,"armorType":3,"stats":[0,570,854,0,0,423,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,2964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"5":423,"11":306,"22":2964},"isBase":true}}}, +{"id":88083,"name":"Silentleaf Vest","icon":"inv_chest_leather_panda_b_01","type":5,"armorType":2,"stats":[0,570,854,0,0,0,315,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,2131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"1":570,"2":854,"6":315,"8":418,"22":2131},"isBase":true}}}, +{"id":88084,"name":"Serenity Vest","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,854,570,402,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":402,"6":342,"22":4049},"isBase":true}}}, +{"id":88085,"name":"Dreaming Spirit Vest","icon":"inv_chest_mail_panda_b_01black","type":5,"armorType":3,"stats":[0,0,854,570,396,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":396,"7":352,"22":2964},"isBase":true}}}, +{"id":88086,"name":"Mushan Hide Vest","icon":"inv_chest_leather_panda_b_01","type":5,"armorType":2,"stats":[0,0,854,570,391,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,2131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1083,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":1083,"stats":{"2":854,"3":570,"4":391,"11":361,"22":2131},"isBase":true}}}, +{"id":88087,"name":"Palewind Pauldron","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[487,0,730,0,0,0,0,353,277,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"7":353,"8":277,"22":3238},"isBase":true}}}, +{"id":88088,"name":"Temple Guardian Pauldron","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[487,0,730,0,0,330,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"5":330,"10":317,"22":3238},"isBase":true}}}, +{"id":88089,"name":"Osul Peak Pauldron","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,487,730,0,0,0,0,0,362,0,0,262,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"8":362,"11":262,"22":2371},"isBase":true}}}, +{"id":88090,"name":"Steppebeast Pauldrons","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,487,730,0,0,0,0,262,0,0,0,362,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"7":262,"11":362,"22":1704},"isBase":true}}}, +{"id":88091,"name":"Swampwalker Pauldrons","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,730,487,0,339,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"5":339,"11":301,"22":1339},"isBase":true}}}, +{"id":88092,"name":"Goldtalon Pauldron","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[0,0,730,487,0,0,269,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":269,"7":357,"22":3238},"isBase":true}}}, +{"id":88093,"name":"Earthmover Pauldron","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,0,730,487,293,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":293,"7":344,"22":2371},"isBase":true}}}, +{"id":88094,"name":"Mistlurker Pauldrons","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,0,730,487,301,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":301,"11":339,"22":1704},"isBase":true}}}, +{"id":88095,"name":"Mistborne Pauldrons","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,730,487,293,0,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":293,"7":344,"22":1339},"isBase":true}}}, +{"id":88096,"name":"Palewind Pantaloons","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[655,0,983,0,0,0,415,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"6":415,"8":450,"22":3777},"isBase":true}}}, +{"id":88097,"name":"Temple Guardian Pantaloons","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[655,0,983,0,0,0,0,0,342,492,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"0":655,"2":983,"8":342,"9":492,"22":3777},"isBase":true}}}, +{"id":88098,"name":"Osul Peak Legguards","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,655,983,0,0,342,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":342,"6":492,"22":2766},"isBase":true}}}, +{"id":88099,"name":"Steppebeast Pantaloons","icon":"inv_pants_leather_panda_b_01","type":9,"armorType":2,"stats":[0,655,983,0,0,481,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"1":655,"2":983,"5":481,"6":362,"22":1988},"isBase":true}}}, +{"id":88100,"name":"Swampwalker Pantaloons","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,983,655,0,462,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"5":462,"11":394,"22":1562},"isBase":true}}}, +{"id":88101,"name":"Goldtalon Pantaloons","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[0,0,983,655,0,0,362,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"6":362,"7":481,"22":3777},"isBase":true}}}, +{"id":88102,"name":"Earthmover Kilt","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,983,655,383,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":383,"7":469,"22":2766},"isBase":true}}}, +{"id":88103,"name":"Mistlurker Pantaloons","icon":"inv_pants_leather_panda_b_01","type":9,"armorType":2,"stats":[0,0,983,655,404,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"4":404,"7":456,"22":1988},"isBase":true}}}, +{"id":88104,"name":"Mistborne Pantaloons","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,983,655,0,0,0,456,0,0,0,404,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"2":983,"3":655,"7":456,"11":404,"22":1562},"isBase":true}}}, +{"id":88105,"name":"Palewind Waistband","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[487,0,730,0,0,344,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"5":344,"6":293,"22":2428},"isBase":true}}}, +{"id":88106,"name":"Temple Guardian Waistband","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[487,0,730,0,0,0,0,0,339,0,301,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"0":487,"2":730,"8":339,"10":301,"22":2428},"isBase":true}}}, +{"id":88107,"name":"Osul Peak Waistguard","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,487,730,0,0,262,0,362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"5":262,"7":362,"22":1778},"isBase":true}}}, +{"id":88108,"name":"Steppebeast Waistband","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,487,730,0,0,293,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"1":487,"2":730,"5":293,"7":344,"22":1278},"isBase":true}}}, +{"id":88109,"name":"Swampwalker Waistband","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,730,487,0,330,0,0,0,0,0,317,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"5":330,"11":317,"22":1004},"isBase":true}}}, +{"id":88110,"name":"Goldtalon Waistband","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[0,0,730,487,0,0,339,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"6":339,"11":301,"22":2428},"isBase":true}}}, +{"id":88111,"name":"Earthmover Belt","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,0,730,487,293,0,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":293,"6":344,"22":1778},"isBase":true}}}, +{"id":88112,"name":"Mistlurker Waistband","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,0,730,487,254,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":254,"7":366,"22":1278},"isBase":true}}}, +{"id":88113,"name":"Mistborne Waistband","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,730,487,317,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"2":730,"3":487,"4":317,"11":330,"22":1004},"isBase":true}}}, +{"id":88114,"name":"Coldbite Shoes","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[524,0,786,0,0,355,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"5":355,"6":341,"22":3066},"isBase":true}}}, +{"id":88115,"name":"Bladesworn Shoes","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[524,0,786,0,0,0,0,0,341,355,0,0,0,0,0,0,0,0,0,0,0,0,3066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"8":341,"9":355,"22":3066},"isBase":true}}}, +{"id":88116,"name":"Wind-Reaver Shoes","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,524,786,0,0,0,0,0,394,0,0,274,0,0,0,0,0,0,0,0,0,0,2245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"8":394,"11":274,"22":2245},"isBase":true}}}, +{"id":88117,"name":"Ghost Fox Shoes","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,524,786,0,0,0,0,389,282,0,0,0,0,0,0,0,0,0,0,0,0,0,1614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"7":389,"8":282,"22":1614},"isBase":true}}}, +{"id":88118,"name":"Dreadspinner Shoes","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,786,524,0,290,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"5":290,"11":385,"22":1268},"isBase":true}}}, +{"id":88119,"name":"Lucidity Shoes","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,786,524,282,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,3066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":282,"11":389,"22":3066},"isBase":true}}}, +{"id":88120,"name":"Withered Wood Shoes","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,0,786,524,0,0,380,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,2245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"6":380,"11":298,"22":2245},"isBase":true}}}, +{"id":88121,"name":"Sapfly Shoes","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,0,786,524,0,0,0,298,0,0,0,380,0,0,0,0,0,0,0,0,0,0,1614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"7":298,"11":380,"22":1614},"isBase":true}}}, +{"id":88122,"name":"Motherseed Shoes","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,786,524,332,0,0,0,0,0,0,360,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":332,"11":360,"22":1268},"isBase":true}}}, +{"id":88123,"name":"Coldbite Handwraps","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[524,0,786,0,0,394,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"5":394,"6":274,"22":2788},"isBase":true}}}, +{"id":88124,"name":"Bladesworn Handwraps","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[524,0,786,0,0,0,0,0,0,315,0,370,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"0":524,"2":786,"9":315,"11":370,"22":2788},"isBase":true}}}, +{"id":88125,"name":"Wind-Reaver Handwraps","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,524,786,0,0,298,0,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"5":298,"7":380,"22":2041},"isBase":true}}}, +{"id":88126,"name":"Ghost Fox Handwraps","icon":"inv_gauntlets_leather_panda_b_01","type":7,"armorType":2,"stats":[0,524,786,0,0,315,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"1":524,"2":786,"5":315,"11":370,"22":1467},"isBase":true}}}, +{"id":88127,"name":"Dreadspinner Handwraps","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,786,524,0,365,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"5":365,"7":324,"22":1153},"isBase":true}}}, +{"id":88128,"name":"Lucidity Handwraps","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,786,524,370,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,2788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":370,"11":315,"22":2788},"isBase":true}}}, +{"id":88129,"name":"Withered Wood Handguards","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,0,786,524,380,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,2041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"4":380,"11":298,"22":2041},"isBase":true}}}, +{"id":88130,"name":"Sapfly Handwraps","icon":"inv_gauntlets_leather_panda_b_01","type":7,"armorType":2,"stats":[0,0,786,524,0,0,389,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"6":389,"11":282,"22":1467},"isBase":true}}}, +{"id":88131,"name":"Motherseed Handwraps","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,786,524,0,0,0,307,0,0,0,375,0,0,0,0,0,0,0,0,0,0,1153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":997,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":997,"stats":{"2":786,"3":524,"7":307,"11":375,"22":1153},"isBase":true}}}, +{"id":88132,"name":"Coldbite Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[393,0,590,0,0,0,0,0,296,0,0,205,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"8":296,"11":205,"22":1951},"isBase":true}}}, +{"id":88133,"name":"Bladesworn Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[393,0,590,0,0,274,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"0":393,"2":590,"5":274,"10":243,"22":1951},"isBase":true}}}, +{"id":88134,"name":"Wind-Reaver Wristwraps","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,393,590,0,0,0,0,218,289,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"7":218,"8":289,"22":1429},"isBase":true}}}, +{"id":88135,"name":"Ghost Fox Wristwraps","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,393,590,0,0,0,0,270,249,0,0,0,0,0,0,0,0,0,0,0,0,0,1027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"1":393,"2":590,"7":270,"8":249,"22":1027},"isBase":true}}}, +{"id":88136,"name":"Dreadspinner Wristwraps","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,590,393,0,0,0,243,0,0,0,274,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"7":243,"11":274,"22":807},"isBase":true}}}, +{"id":88137,"name":"Lucidity Wristwraps","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[0,0,590,393,0,0,289,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":289,"7":218,"22":1951},"isBase":true}}}, +{"id":88138,"name":"Withered Wood Wristwraps","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,0,590,393,0,0,0,249,0,0,0,270,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"7":249,"11":270,"22":1429},"isBase":true}}}, +{"id":88139,"name":"Sapfly Wristwraps","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,0,590,393,278,0,0,0,0,0,0,236,0,0,0,0,0,0,0,0,0,0,1027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":278,"11":236,"22":1027},"isBase":true}}}, +{"id":88140,"name":"Motherseed Wristwraps","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,590,393,0,0,236,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"6":236,"7":278,"22":807},"isBase":true}}}, +{"id":88149,"name":"The Gloaming Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":4267,"weaponDamageMax":6401,"weaponSpeed":1.8,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118},"476":{"randPropPoints":827,"weaponDamageMin":3960,"weaponDamageMax":5941},"480":{"randPropPoints":859,"weaponDamageMin":4111,"weaponDamageMax":6167,"upgradeStep":1}}}, +{"id":88150,"name":"Krol Scimitar","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,469,703,0,0,274,0,335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":219,"7":268}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"1":435,"2":652,"5":254,"7":311}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"1":452,"2":678,"5":264,"7":323},"upgradeStep":1}}}, +{"id":88166,"name":"Wicked Witch's Signet","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,865,576,384,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"6":325}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"4":357,"6":357}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"4":370,"6":370},"upgradeStep":1}}}, +{"id":88167,"name":"Band of the Petrified Pumpkin","icon":"inv_misc_bag_28_halloween","type":11,"stats":[576,0,865,0,0,0,407,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"7":293}},"470":{"randPropPoints":1017,"stats":{"0":535,"2":802,"6":377,"7":321}},"474":{"randPropPoints":1056,"stats":{"0":555,"2":833,"6":392,"7":334},"upgradeStep":1}}}, +{"id":88168,"name":"Seal of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,576,865,0,0,337,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"6":349}},"470":{"randPropPoints":1017,"stats":{"1":535,"2":802,"5":313,"6":382}},"474":{"randPropPoints":1056,"stats":{"1":555,"2":833,"5":325,"6":397},"upgradeStep":1}}}, +{"id":88169,"name":"The Horseman's Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,865,576,0,337,0,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1096,"ilvl":470,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"7":349}},"470":{"randPropPoints":1017,"stats":{"2":802,"3":535,"5":313,"7":382}},"474":{"randPropPoints":1056,"stats":{"2":833,"3":555,"5":325,"7":397},"upgradeStep":1}}}, +{"id":88170,"name":"Cataclysmic Gladiator's Ornamented Battlerobe","icon":"inv_chest_plate_pvppaladin_d_01","type":5,"armorType":4,"stats":[0,0,683,415,264,0,0,304,0,0,0,0,0,0,0,0,182,0,0,0,0,0,3751,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":866,"ilvl":390,"phase":1,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"390":{"randPropPoints":866,"stats":{"2":683,"3":415,"4":264,"7":304,"16":182,"22":3751},"isBase":true}}}, +{"id":88171,"name":"Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":1591},"isBase":true}}}, +{"id":88172,"name":"Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2068},"isBase":true}}}, +{"id":88173,"name":"Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":2227},"isBase":true}}}, +{"id":88174,"name":"Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":2545},"isBase":true}}}, +{"id":88175,"name":"Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":1909},"isBase":true}}}, +{"id":88176,"name":"Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":1591},"isBase":true}}}, +{"id":88177,"name":"Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":2068},"isBase":true}}}, +{"id":88178,"name":"Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2227},"isBase":true}}}, +{"id":88179,"name":"Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":2545},"isBase":true}}}, +{"id":88180,"name":"Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":1909},"isBase":true}}}, +{"id":88368,"name":"Flamelager's Summer Keg","icon":"inv_cask_03","type":12,"stats":[0,0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"7":406},"isBase":true}}}, +{"id":88369,"name":"Alerage's Reserve Keg","icon":"inv_cask_02","type":12,"stats":[0,0,0,0,0,0,406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"6":406},"isBase":true}}}, +{"id":88371,"name":"Watermelon Bomb","icon":"inv_misc_food_22","type":12,"stats":[0,0,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"2":700},"isBase":true}}}, +{"id":88376,"name":"Orange Painted Turnip","icon":"inv_misc_food_54","type":12,"stats":[0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"6":467},"isBase":true}}}, +{"id":88378,"name":"Mothallus' Spinneret","icon":"spell_nature_web","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":700,"ilvl":399,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":700,"stats":{"11":467},"isBase":true}}}, +{"id":88568,"name":"Contender's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,888,592,0,0,423,0,0,0,0,346,0,0,0,0,236,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":423,"11":346,"16":236,"22":1389},"isBase":true}}}, +{"id":88569,"name":"Contender's Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,888,592,0,0,375,0,0,0,0,406,0,0,0,0,236,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":375,"11":406,"16":236,"22":1698},"isBase":true}}}, +{"id":88570,"name":"Contender's Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,666,444,0,0,300,0,0,0,0,288,0,0,0,0,177,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"6":300,"11":288,"16":177,"22":1081},"isBase":true}}}, +{"id":88571,"name":"Contender's Chestguard","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,1195,797,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,2470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":466,"11":570,"16":318,"22":2470},"isBase":true}}}, +{"id":88572,"name":"Contender's Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,888,592,0,0,418,0,0,0,0,356,0,0,0,0,236,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":418,"11":356,"16":236,"22":1544},"isBase":true}}}, +{"id":88573,"name":"Contender's Helm","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,1195,797,0,0,466,0,0,0,0,570,0,0,0,0,318,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":466,"11":570,"16":318,"22":2007},"isBase":true}}}, +{"id":88574,"name":"Contender's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,1195,797,0,0,492,0,0,0,0,555,0,0,0,0,318,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":797,"6":492,"11":555,"16":318,"22":2161},"isBase":true}}}, +{"id":88575,"name":"Contender's Shoulders","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,888,592,0,0,412,0,0,0,0,365,0,0,0,0,236,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Contender's Defense","setId":1121,"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"6":412,"11":365,"16":236,"22":1852},"isBase":true}}}, +{"id":88577,"name":"Explosive Barrel","icon":"inv_cask_03","type":12,"stats":[0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":805,"ilvl":414,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":805,"stats":{"6":537},"isBase":true}}}, +{"id":88583,"name":"Ban's Bag of Bombs","icon":"inv_misc_blackironbomb","type":12,"stats":[0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"6":617},"isBase":true}}}, +{"id":88585,"name":"Dislodged Stinger","icon":"spell_nature_nullifypoison","type":12,"stats":[0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"7":617},"isBase":true}}}, +{"id":88590,"name":"Nurong's Gun","icon":"ability_vehicle_siegeenginecannon","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"11":617},"isBase":true}}}, +{"id":88690,"name":"Bamboo Leaf Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[240,0,360,0,0,162,0,0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"5":162,"11":156,"22":1613},"isBase":true}}}, +{"id":88691,"name":"Bamboo Plate Armplates","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[240,0,360,0,0,0,0,0,162,0,0,156,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"8":162,"11":156,"22":1613},"isBase":true}}}, +{"id":88692,"name":"Fox Grove Bracers","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,240,360,0,0,0,156,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"6":156,"8":162,"22":1163},"isBase":true}}}, +{"id":88693,"name":"Bamboo Plate Armwraps","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,240,360,0,0,0,162,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"6":162,"8":156,"22":818},"isBase":true}}}, +{"id":88694,"name":"Bamboo Strip Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,360,240,0,165,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"5":165,"7":152,"22":628},"isBase":true}}}, +{"id":88695,"name":"Bamboo Strip Bracers","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[0,0,360,240,182,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":182,"7":121,"22":1613},"isBase":true}}}, +{"id":88696,"name":"Jade Witch Armguards","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,0,360,240,182,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":182,"6":121,"22":1163},"isBase":true}}}, +{"id":88697,"name":"Bamboo Leaf Bindings","icon":"inv_bracer_leather_panda_b_02","type":6,"armorType":2,"stats":[0,0,360,240,182,0,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":182,"11":121,"22":818},"isBase":true}}}, +{"id":88698,"name":"Bamboo Fiber Cuffs","icon":"inv_bracer_cloth_panda_b_02","type":6,"armorType":1,"stats":[0,0,360,240,182,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":182,"7":121,"22":628},"isBase":true}}}, +{"id":88699,"name":"Wikket Surcoat","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[240,0,360,0,0,162,0,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"5":162,"7":156,"22":718},"isBase":true}}}, +{"id":88700,"name":"Wikket Drape","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[240,0,360,0,0,165,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"5":165,"9":152,"22":718},"isBase":true}}}, +{"id":88701,"name":"Wikket Cape","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,240,360,0,0,148,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"5":148,"6":167,"22":718},"isBase":true}}}, +{"id":88702,"name":"Wikket Cloak","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,0,360,240,0,152,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"5":152,"11":165,"22":718},"isBase":true}}}, +{"id":88703,"name":"Wikket Wrap","icon":"inv_cape_pandaria_b_01","type":4,"armorType":1,"stats":[0,0,360,240,156,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":156,"7":162,"22":718},"isBase":true}}}, +{"id":88704,"name":"Meow Meow Band","icon":"inv_jewelry_ring_124","type":11,"stats":[240,0,360,0,0,148,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"5":148,"7":167},"isBase":true}}}, +{"id":88705,"name":"Jade Smasher Band","icon":"inv_jewelry_ring_123","type":11,"stats":[240,0,360,0,0,0,0,0,144,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"0":240,"2":360,"8":144,"11":169},"isBase":true}}}, +{"id":88706,"name":"Windfur Band","icon":"inv_jewelry_ring_123","type":11,"stats":[0,240,360,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"1":240,"2":360,"5":160,"7":160},"isBase":true}}}, +{"id":88707,"name":"Windfur Ring","icon":"inv_jewelry_ring_123","type":11,"stats":[0,0,360,240,0,165,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"5":165,"6":152},"isBase":true}}}, +{"id":88708,"name":"An's Ring","icon":"inv_jewelry_ring_123","type":11,"stats":[0,0,360,240,144,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":144,"7":169},"isBase":true}}}, +{"id":88709,"name":"Bamboo Plate Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[320,0,480,0,0,208,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,2304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":609,"ilvl":384,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":609,"stats":{"0":320,"2":480,"5":208,"11":217,"22":2304},"isBase":true}}}, +{"id":88723,"name":"Sturdy Yaungol Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[597,0,895,0,0,0,410,0,0,0,0,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1135,"weaponDamageMin":6279,"weaponDamageMax":9420,"weaponSpeed":3.6,"ilvl":419,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"419":{"randPropPoints":1135,"weaponDamageMin":6279,"weaponDamageMax":9420,"stats":{"0":597,"2":895,"6":410,"11":378},"isBase":true}}}, +{"id":88741,"name":"Gloves of Red Feathers","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1376,917,536,0,0,0,0,0,0,656,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"11":464,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":498,"11":609,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":517,"11":632,"22":1412},"upgradeStep":1}}}, +{"id":88742,"name":"Sunspeaker's Flared Gloves","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1376,917,0,621,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":440,"6":422,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"5":576,"6":553,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"5":598,"6":574,"22":1412},"upgradeStep":1}}}, +{"id":88743,"name":"Ogo's Elder Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,0,1376,917,0,0,0,611,0,0,0,611,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":1602}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"7":568,"11":568,"22":1773}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"7":589,"11":589,"22":1797},"upgradeStep":1}}}, +{"id":88744,"name":"Fingers of the Loneliest Monk","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,638,0,0,566,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"8":452,"11":401,"22":1602}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"8":593,"11":526,"22":1773}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"8":615,"11":545,"22":1797},"upgradeStep":1}}}, +{"id":88745,"name":"Sentinel Commander's Gauntlets","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,917,1376,0,0,493,0,0,0,0,0,681,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":349,"11":482,"22":2230}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"5":458,"11":632,"22":2467}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"5":475,"11":656,"22":2500},"upgradeStep":1}}}, +{"id":88746,"name":"Gloves of the Overwhelming Swarm","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,656,536,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"10":464,"11":380,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"10":609,"11":498,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"10":632,"11":517,"22":3414},"upgradeStep":1}}}, +{"id":88747,"name":"Streetfighter's Iron Knuckles","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,647,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":458,"7":390,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"6":601,"7":512,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"6":623,"7":531,"22":3414},"upgradeStep":1}}}, +{"id":88748,"name":"Ravenmane's Gloves","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,1376,917,0,0,0,596,0,0,0,621,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":422,"11":440,"22":2230}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"7":553,"11":576,"22":2467}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"7":574,"11":598,"22":2500},"upgradeStep":1}}}, +{"id":88749,"name":"Gauntlets of Jade Sutras","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[0,0,1376,917,664,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":471,"11":370,"22":3045}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":617,"11":484,"22":3370}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":640,"11":503,"22":3414},"upgradeStep":1}}}, +{"id":88862,"name":"Tankiss Warstompers","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,656,0,536,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":464,"8":380,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"6":609,"8":498,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"6":632,"8":517,"22":3756},"upgradeStep":1}}}, +{"id":88864,"name":"Yu'lon Guardian Boots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,465,697,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"10":494,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"9":431,"10":647,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"9":448,"10":671,"22":3756},"upgradeStep":1}}}, +{"id":88865,"name":"Bramblestaff Boots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1376,917,664,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":471,"7":370,"22":3350}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":617,"7":484,"22":3707}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":640,"7":503,"22":3756},"upgradeStep":1}}}, +{"id":88866,"name":"Steps of the War Serpent","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,917,1376,0,0,566,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":401,"11":452,"22":2453}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"5":526,"11":593,"22":2714}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"5":545,"11":615,"22":2750},"upgradeStep":1}}}, +{"id":88867,"name":"Sandals of the Elder Sage","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1376,917,551,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"6":458,"22":2453}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":512,"6":601,"22":2714}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":531,"6":623,"22":2750},"upgradeStep":1}}}, +{"id":88868,"name":"Tukka-Tuk's Hairy Boots","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,917,1376,0,0,647,0,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"7":390,"22":1763}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"5":601,"7":512,"22":1951}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"5":623,"7":531,"22":1977},"upgradeStep":1}}}, +{"id":88876,"name":"Boots of the High Adept","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1376,917,0,0,630,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":446,"11":412,"22":1763}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"6":584,"11":539,"22":1951}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"6":606,"11":560,"22":1977},"upgradeStep":1}}}, +{"id":88877,"name":"Storm-Sing Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1376,917,611,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":568,"11":568,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":589,"11":589,"22":1553},"upgradeStep":1}}}, +{"id":88878,"name":"Void Flame Slippers","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1376,917,0,596,621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":422,"6":440,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"5":553,"6":576,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"5":574,"6":598,"22":1553},"upgradeStep":1}}}, +{"id":88879,"name":"Braided Black and White Bracer","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[688,0,1032,0,0,0,479,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":339,"8":301,"22":2132}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"6":444,"8":394,"22":2359}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"6":461,"8":409,"22":2390},"upgradeStep":1}}}, +{"id":88880,"name":"Battle Shadow Bracers","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[523,0,1032,0,0,348,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"10":488,"22":2132}},"489":{"randPropPoints":1214,"stats":{"0":485,"2":958,"5":323,"10":638,"22":2359}},"493":{"randPropPoints":1260,"stats":{"0":504,"2":994,"5":336,"10":663,"22":2390},"upgradeStep":1}}}, +{"id":88881,"name":"Fallen Sentinel Bracers","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,1032,688,0,0,498,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":353,"11":277,"22":2132}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":463,"11":363,"22":2359}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":480,"11":377,"22":2390},"upgradeStep":1}}}, +{"id":88882,"name":"Tiger-Striped Wristguards","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,688,1032,0,0,0,0,348,0,0,0,523,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":247,"11":371,"22":1561}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"7":323,"11":485,"22":1727}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"7":336,"11":504,"22":1750},"upgradeStep":1}}}, +{"id":88883,"name":"Brewmaster Chani's Bracers","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,0,1032,688,0,0,511,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":362,"7":262,"22":1561}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":474,"7":343,"22":1727}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":492,"7":356,"22":1750},"upgradeStep":1}}}, +{"id":88884,"name":"Quillpaw Family Bracers","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,688,1032,0,0,459,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"6":325,"22":1122}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":426,"6":426,"22":1241}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":442,"6":442,"22":1258},"upgradeStep":1}}}, +{"id":88885,"name":"Clever Ashyo's Armbands","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,1032,688,0,0,402,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":285,"11":349,"22":1122}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":373,"11":457,"22":1241}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":388,"11":474,"22":1258},"upgradeStep":1}}}, +{"id":88892,"name":"Bracers of Inlaid Jade","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1032,688,485,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"6":293,"22":881}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":451,"6":384,"22":975}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":468,"6":398,"22":988},"upgradeStep":1}}}, +{"id":88893,"name":"Minh's Beaten Bracers","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1032,688,0,436,0,0,0,0,0,472,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335,"22":881}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":405,"11":438,"22":975}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":420,"11":455,"22":988},"upgradeStep":1}}}, +{"id":88995,"name":"Shado-Pan Dragon Gun","icon":"inv_misc_dragonkite_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":89055,"name":"Klaxxi Lash of the Rescinder","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[837,0,1376,0,0,0,571,0,0,0,0,571,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":393,"11":393,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":771,"2":1277,"6":528,"11":528,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":804,"2":1325,"6":549,"11":549,"22":3073},"upgradeStep":1}}}, +{"id":89056,"name":"Klaxxi Lash of the Consumer","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[576,0,1376,0,0,496,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":384,"2":974,"5":340,"10":609,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":529,"2":1277,"5":458,"10":811,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":552,"2":1325,"5":477,"10":844,"22":3073},"upgradeStep":1}}}, +{"id":89057,"name":"Klaxxi Lash of the Doubter","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1376,837,0,0,0,425,0,0,0,657,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":289,"11":454,"22":2741}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"7":391,"11":607,"22":3033}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"7":408,"11":631,"22":3073},"upgradeStep":1}}}, +{"id":89058,"name":"Klaxxi Lash of the Winnower","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,837,1376,0,0,0,0,496,0,0,0,616,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":340,"11":424,"22":2007}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"7":458,"11":569,"22":2221}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"7":477,"11":592,"22":2250},"upgradeStep":1}}}, +{"id":89059,"name":"Klaxxi Lash of the Precursor","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1376,837,0,0,0,571,0,0,0,571,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":393,"11":393,"22":2007}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"7":528,"11":528,"22":2221}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"7":549,"11":549,"22":2250},"upgradeStep":1}}}, +{"id":89060,"name":"Klaxxi Lash of the Borrower","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,837,1376,0,0,0,425,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":289,"11":454,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"6":391,"11":607,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"6":408,"11":631,"22":1617},"upgradeStep":1}}}, +{"id":89061,"name":"Klaxxi Lash of the Harbinger","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1376,837,590,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"6":372,"22":1442}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":544,"6":499,"22":1596}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":566,"6":520,"22":1617},"upgradeStep":1}}}, +{"id":89062,"name":"Klaxxi Lash of the Orator","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1376,837,0,624,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":431,"6":330,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"5":577,"6":444,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"5":600,"6":463,"22":1271},"upgradeStep":1}}}, +{"id":89063,"name":"Klaxxi Lash of the Seeker","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1376,837,624,0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":577,"7":444,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":600,"7":463,"22":1271},"upgradeStep":1}}}, +{"id":89064,"name":"Bloodseeker's Solitaire","icon":"inv_jewelry_necklace_107","type":2,"stats":[688,0,1032,0,0,0,0,485,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":344,"11":293}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"7":451,"11":384}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"7":468,"11":398},"upgradeStep":1}}}, +{"id":89065,"name":"Choker of the Klaxxi'va","icon":"inv_jewelry_necklace_98","type":2,"stats":[0,688,1032,0,0,391,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"6":353}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":363,"6":463}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":377,"6":480},"upgradeStep":1}}}, +{"id":89066,"name":"Paragon's Pale Pendant","icon":"inv_jewelry_necklace_107","type":2,"stats":[523,0,1032,0,0,348,0,0,0,0,688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"10":488}},"489":{"randPropPoints":1214,"stats":{"0":485,"2":958,"5":323,"10":638}},"493":{"randPropPoints":1260,"stats":{"0":504,"2":994,"5":336,"10":663},"upgradeStep":1}}}, +{"id":89067,"name":"Links of the Lucid","icon":"inv_jewelry_necklace_97","type":2,"stats":[0,0,1032,688,425,0,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"7":339}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":394,"7":444}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":409,"7":461},"upgradeStep":1}}}, +{"id":89068,"name":"Wire of the Wakener","icon":"inv_jewelry_necklace_94","type":2,"stats":[0,0,1032,688,0,498,0,0,0,0,0,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":353,"11":277}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":463,"11":363}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":480,"11":377},"upgradeStep":1}}}, +{"id":89069,"name":"Ring of the Golden Stair","icon":"inv_jewelry_ring_147","type":11,"stats":[688,0,1032,0,0,0,425,0,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"8":339}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"6":394,"8":444}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"6":409,"8":461},"upgradeStep":1}}}, +{"id":89070,"name":"Anji's Keepsake","icon":"inv_misc_epicring_b3","type":11,"stats":[0,688,1032,0,0,348,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":247,"7":371}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":323,"7":485}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":336,"7":504},"upgradeStep":1}}}, +{"id":89071,"name":"Alani's Inflexible Ring","icon":"inv_jewelry_ring_146","type":11,"stats":[688,0,1032,0,0,0,0,0,0,505,380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":358,"10":270}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"9":468,"10":353}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"9":486,"10":367},"upgradeStep":1}}}, +{"id":89072,"name":"Simple Harmonius Ring","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,1032,688,0,466,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":330,"7":317}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":432,"7":415}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":448,"7":431},"upgradeStep":1}}}, +{"id":89073,"name":"Leven's Circle of Hope","icon":"inv_jewelry_ring_143","type":11,"stats":[0,0,1032,688,348,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":323,"6":485}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":336,"6":504},"upgradeStep":1}}}, +{"id":89074,"name":"Cloak of the Dark Disciple","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[688,0,1032,0,0,0,391,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":277,"11":353,"22":1007}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"6":363,"11":463,"22":1115}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"6":377,"11":480,"22":1129},"upgradeStep":1}}}, +{"id":89075,"name":"Yi's Cloak of Courage","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[688,0,1032,0,0,0,0,0,0,0,492,402,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":349,"11":285,"22":1007}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"10":457,"11":373,"22":1115}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"10":474,"11":388,"22":1129},"upgradeStep":1}}}, +{"id":89076,"name":"Blackguard Cape","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,688,1032,0,0,479,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":339,"11":301,"22":1007}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":444,"11":394,"22":1115}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":461,"11":409,"22":1129},"upgradeStep":1}}}, +{"id":89077,"name":"Cloak of Snow Blossoms","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,1032,688,0,459,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"11":325,"22":1007}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":426,"11":426,"22":1115}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":442,"11":442,"22":1129},"upgradeStep":1}}}, +{"id":89078,"name":"Sagewhisper's Wrap","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1032,688,523,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"7":247,"22":1007}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":485,"7":323,"22":1115}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":504,"7":336,"22":1129},"upgradeStep":1}}}, +{"id":89079,"name":"Lao-Chin's Liquid Courage","icon":"inv_drink_16","type":12,"stats":[0,0,1744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"489":{"randPropPoints":1619,"stats":{"2":1619}},"493":{"randPropPoints":1680,"stats":{"2":1680},"upgradeStep":1}}}, +{"id":89080,"name":"Scroll of Revered Ancestors","icon":"trade_archaeology_highborne_scroll","type":12,"stats":[0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"489":{"randPropPoints":1619,"stats":{"3":1079}},"493":{"randPropPoints":1680,"stats":{"3":1120},"upgradeStep":1}}}, +{"id":89081,"name":"Blossom of Pure Snow","icon":"item_herbd","type":12,"stats":[0,0,0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"489":{"randPropPoints":1619,"stats":{"3":1079}},"493":{"randPropPoints":1680,"stats":{"3":1120},"upgradeStep":1}}}, +{"id":89082,"name":"Hawkmaster's Talon","icon":"inv_misc_monsterhorn_08","type":12,"stats":[0,1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"489":{"randPropPoints":1619,"stats":{"1":1079}},"493":{"randPropPoints":1680,"stats":{"1":1120},"upgradeStep":1}}}, +{"id":89083,"name":"Iron Belly Wok","icon":"achievement_cooking_masterofthewok","type":12,"stats":[1163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"489":{"randPropPoints":1619,"stats":{"0":1079}},"493":{"randPropPoints":1680,"stats":{"0":1120},"upgradeStep":1}}}, +{"id":89087,"name":"Poisoncrafter's Kilt","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1852,1155,722,0,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":500,"6":569,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1066,"4":667,"6":758,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1110,"4":694,"6":788,"22":1976},"upgradeStep":1}}}, +{"id":89088,"name":"Leggings of the Poisoned Soul","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1852,1155,0,722,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"5":500,"6":569,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1066,"5":667,"6":758,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1110,"5":694,"6":788,"22":1976},"upgradeStep":1}}}, +{"id":89089,"name":"Wind-Reaver Greaves","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1852,1155,796,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":552,"11":528,"22":2243}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1066,"4":736,"11":705,"22":2483}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1110,"4":765,"11":733,"22":2516},"upgradeStep":1}}}, +{"id":89090,"name":"Dreadsworn Slayer Legs","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,1155,1852,0,0,0,866,0,0,0,0,643,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"6":602,"11":444,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":1066,"2":1719,"6":801,"11":594,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1110,"2":1784,"6":833,"11":618,"22":2516},"upgradeStep":1}}}, +{"id":89091,"name":"Swarmkeeper's Leggings","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1852,1155,783,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":543,"6":543,"22":3122}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1066,"4":724,"6":724,"22":3454}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1110,"4":753,"6":753,"22":3500},"upgradeStep":1}}}, +{"id":89092,"name":"Locust Swarm Legguards","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,1155,1852,0,0,0,586,0,0,0,0,898,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"6":403,"11":625,"22":3122}},"489":{"randPropPoints":2179,"stats":{"1":1066,"2":1719,"6":540,"11":831,"22":3454}},"493":{"randPropPoints":2262,"stats":{"1":1110,"2":1784,"6":563,"11":864,"22":3500},"upgradeStep":1}}}, +{"id":89093,"name":"Kovok's Riven Legguards","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[858,0,1852,0,0,0,0,0,586,1195,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":585,"2":1312,"8":403,"9":835,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":791,"2":1719,"8":540,"9":1106,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":824,"2":1784,"8":563,"9":1150,"22":4780},"upgradeStep":1}}}, +{"id":89094,"name":"Ambersmith Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1852,1155,796,0,0,0,0,0,0,763,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":552,"11":528,"22":4263}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1066,"4":736,"11":705,"22":4717}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1110,"4":765,"11":733,"22":4780},"upgradeStep":1}}}, +{"id":89095,"name":"Legguards of the Unscathed","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1155,0,1852,0,0,0,0,877,0,0,0,624,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"7":609,"11":430,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1066,"2":1719,"7":811,"11":576,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1110,"2":1784,"7":843,"11":599,"22":4780},"upgradeStep":1}}}, +{"id":89096,"name":"Six Pool's Open Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[0,0,1852,995,743,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":485,"6":412,"22":3959}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":680,"6":570,"22":4380}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":711,"6":596,"22":4439},"upgradeStep":1}}}, +{"id":89216,"name":"Yi's Least Favorite Helmet","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,743,0,622,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":485,"11":412,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"9":680,"11":570,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"9":711,"11":596,"22":4439},"upgradeStep":1}}}, +{"id":89232,"name":"Mogu Rune of Paralysis","icon":"inv_jewelry_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809},"isBase":true}}}, +{"id":89280,"name":"Voice Amplyifying Greathelm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,806,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":542,"8":344,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"6":741,"8":494,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"6":773,"8":518,"22":4439},"upgradeStep":1}}}, +{"id":89291,"name":"Hawkmaster's Headguard","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,995,1852,0,0,622,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":412,"6":485,"22":2899}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"5":570,"6":680,"22":3208}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"5":596,"6":711,"22":3250},"upgradeStep":1}}}, +{"id":89296,"name":"Nightwatcher's Helm","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,0,1852,995,751,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2899}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":689,"6":569,"22":3208}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":719,"6":595,"22":3250},"upgradeStep":1}}}, +{"id":89300,"name":"Red Smoke Bandana","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,995,1852,0,0,723,0,0,0,0,0,676,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":488,"11":432,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"5":665,"11":616,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"5":693,"11":645,"22":2336},"upgradeStep":1}}}, +{"id":89308,"name":"Snowdrift Helm","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,0,1852,995,530,0,794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":347,"6":521,"22":2083}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":484,"6":727,"22":2305}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":507,"6":760,"22":2336},"upgradeStep":1}}}, +{"id":89337,"name":"Firecracker Corona","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1852,995,0,658,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":448,"6":449,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"5":606,"6":644,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"5":632,"6":675,"22":1835},"upgradeStep":1}}}, +{"id":89338,"name":"Yalia's Cowl","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1852,995,787,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":529,"7":368,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":724,"7":526,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":755,"7":552,"22":1835},"upgradeStep":1}}}, +{"id":89339,"name":"Tenderheart Shoulders","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1376,837,590,0,0,0,0,0,0,541,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"11":372,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":544,"11":499,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":566,"11":520,"22":1694},"upgradeStep":1}}}, +{"id":89340,"name":"Mantle of the Golden Sun","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1376,837,0,633,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":436,"6":319,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"5":585,"6":431,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"5":608,"6":449,"22":1694},"upgradeStep":1}}}, +{"id":89341,"name":"Imperion Spaulders","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,837,1376,0,0,556,581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"6":400,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"5":513,"6":536,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"5":534,"6":558,"22":2156},"upgradeStep":1}}}, +{"id":89342,"name":"Whitepetal Shouldergarb","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,0,1376,837,0,0,607,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"11":350,"22":1923}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"6":561,"11":472,"22":2128}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"6":583,"11":491,"22":2156},"upgradeStep":1}}}, +{"id":89343,"name":"Mindbender Shoulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,0,1376,837,0,0,0,453,0,0,0,641,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":309,"11":442,"22":2676}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"7":418,"11":592,"22":2961}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"7":435,"11":616,"22":3000},"upgradeStep":1}}}, +{"id":89344,"name":"Windwalker Spaulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,837,1376,0,0,511,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":350,"7":418,"22":2676}},"489":{"randPropPoints":1619,"stats":{"1":771,"2":1277,"5":472,"7":561,"22":2961}},"493":{"randPropPoints":1680,"stats":{"1":804,"2":1325,"5":491,"7":583,"22":3000},"upgradeStep":1}}}, +{"id":89345,"name":"Stonetoe Spaulders","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[837,0,1376,0,0,453,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":309,"6":442,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":771,"2":1277,"5":418,"6":592,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":804,"2":1325,"5":435,"6":616,"22":4097},"upgradeStep":1}}}, +{"id":89346,"name":"Shoulders of Autumnlight","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[576,0,1376,0,0,0,0,0,496,877,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":384,"2":974,"8":340,"9":609,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":529,"2":1277,"8":458,"9":811,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":552,"2":1325,"8":477,"9":844,"22":4097},"upgradeStep":1}}}, +{"id":89347,"name":"Paleblade Shoulderguards","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[0,0,1376,837,0,0,657,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":454,"11":289,"22":3654}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"6":607,"11":391,"22":4043}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"6":631,"11":408,"22":4097},"upgradeStep":1}}}, +{"id":89392,"name":"Amber Spine of Klaxxi'vess","icon":"inv_knife_1h_mantid_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,671,448,291,0,0,303,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":1781,"weaponDamageMax":3309,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":375,"4":244,"7":254,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1535,"weaponDamageMax":2851,"stats":{"2":578,"3":385,"4":251,"7":261,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1653,"weaponDamageMax":3072,"stats":{"2":623,"3":415,"4":270,"7":281,"14":5552},"upgradeStep":1}}}, +{"id":89393,"name":"Amber Slicer of Klaxxi'vess","icon":"inv_knife_1h_mantid_02","type":13,"weaponType":2,"handType":2,"stats":[0,448,671,0,0,0,0,303,0,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":3563,"weaponDamageMax":6619,"weaponSpeed":1.8,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"7":254,"11":244}},"463":{"randPropPoints":733,"weaponDamageMin":3070,"weaponDamageMax":5702,"stats":{"1":385,"2":578,"7":261,"11":251}},"471":{"randPropPoints":790,"weaponDamageMin":3307,"weaponDamageMax":6143,"stats":{"1":415,"2":623,"7":281,"11":270},"upgradeStep":1}}}, +{"id":89394,"name":"Amber Spear of Klaxxi'vess","icon":"inv_polearm_2h_mantid_01","type":13,"weaponType":6,"handType":4,"stats":[0,1044,1566,0,0,717,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"5":600,"7":554}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"1":899,"2":1349,"5":617,"7":570}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"1":969,"2":1454,"5":665,"7":614},"upgradeStep":1}}}, +{"id":89395,"name":"Amber Scythe of Klaxxi'vess","icon":"inv_staff_2h_mantid_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1566,1044,0,0,0,756,0,0,0,594,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":5186,"weaponDamageMax":7780,"weaponSpeed":3.4,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4345,"weaponDamageMax":6518,"stats":{"2":1312,"3":875,"7":634,"11":498,"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4468,"weaponDamageMax":6702,"stats":{"2":1349,"3":899,"7":652,"11":512,"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4813,"weaponDamageMax":7221,"stats":{"2":1454,"3":969,"7":702,"11":551,"14":5551},"upgradeStep":1}}}, +{"id":89396,"name":"Amber Espada of Klaxxi'vess","icon":"inv_sword_1h_mantid_01","type":13,"weaponType":9,"handType":2,"stats":[448,0,671,0,0,0,324,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":272,"11":213}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"6":279,"11":219}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"6":301,"11":236},"upgradeStep":1}}}, +{"id":89397,"name":"Amber Saber of Klaxxi'vess","icon":"inv_sword_1h_mantid_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,671,448,0,0,0,324,0,0,0,255,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":2573,"weaponDamageMax":4780,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"7":272,"11":213,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":2217,"weaponDamageMax":4118,"stats":{"2":578,"3":385,"7":279,"11":219,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":2388,"weaponDamageMax":4437,"stats":{"2":623,"3":415,"7":301,"11":236,"14":5552},"upgradeStep":1}}}, +{"id":89398,"name":"Amber Flammard of Klaxxi'vess","icon":"inv_sword_2h_mantid_01","type":13,"weaponType":9,"handType":4,"stats":[1044,0,1566,0,0,0,529,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":443,"7":665}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"6":456,"7":683}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"6":491,"7":737},"upgradeStep":1}}}, +{"id":89399,"name":"Amber Sprayer of Klaxxi'vess","icon":"inv_firearm_2h_rifle_pandaraid_d_02","type":14,"rangedWeaponType":3,"stats":[0,1044,1566,0,0,0,717,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":8008,"weaponDamageMax":14873,"weaponSpeed":3,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":600,"11":554}},"463":{"randPropPoints":1710,"weaponDamageMin":6899,"weaponDamageMax":12813,"stats":{"1":899,"2":1349,"6":617,"11":570}},"471":{"randPropPoints":1843,"weaponDamageMin":7433,"weaponDamageMax":13805,"stats":{"1":969,"2":1454,"6":665,"11":614},"upgradeStep":1}}}, +{"id":89400,"name":"Amber Sledge of Klaxxi'vess","icon":"inv_mace_1h_pandariatradeskill_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,448,671,0,0,0,255,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":213,"11":272}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"6":219,"11":279}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"6":236,"11":301},"upgradeStep":1}}}, +{"id":89420,"name":"Dawnblade's Chestguard","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1075,0,1852,0,0,756,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"gemSockets":[3,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":512,"8":488,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":986,"2":1719,"5":696,"8":665,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1030,"2":1784,"5":725,"8":693,"22":5463},"upgradeStep":1}}}, +{"id":89421,"name":"Cuirass of the Twin Monoliths","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[723,0,1852,0,0,0,0,0,642,1155,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"gemSockets":[3,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":465,"2":1312,"8":432,"9":795,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":660,"2":1719,"8":590,"9":1066,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":691,"2":1784,"8":616,"9":1110,"22":5463},"upgradeStep":1}}}, +{"id":89423,"name":"Battleguard of Guo-Lai","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[0,0,1852,1075,780,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"7":460,"22":4872}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":718,"7":627,"22":5391}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":748,"7":654,"22":5463},"upgradeStep":1}}}, +{"id":89424,"name":"Fan of Fiery Winds","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1032,688,402,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":373,"7":457}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":388,"7":474},"upgradeStep":1}}}, +{"id":89425,"name":"Fan of Fiery Winds","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1164,776,454,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":421,"7":515}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":437,"7":535},"upgradeStep":1}}}, +{"id":89426,"name":"Fan of Fiery Winds","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,357,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":331,"7":405}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":343,"7":420},"upgradeStep":1}}}, +{"id":89429,"name":"Robes of the Setting Sun","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,0,1852,1075,0,0,858,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":3568}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"6":791,"11":500,"22":3948}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"6":824,"11":523,"22":4000},"upgradeStep":1}}}, +{"id":89430,"name":"Breastplate of the Golden Pagoda","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,1075,1852,0,0,0,0,702,0,0,0,780,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":474,"11":529,"22":3568}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"7":646,"11":718,"22":3948}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"7":674,"11":748,"22":4000},"upgradeStep":1}}}, +{"id":89431,"name":"Softfoot Silentwrap","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,1075,1852,0,0,603,0,0,826,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":404,"8":562,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"5":554,"8":761,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"5":578,"8":793,"22":2875},"upgradeStep":1}}}, +{"id":89432,"name":"Mistfall Robes","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,0,1852,1075,0,0,756,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":512,"11":488,"22":2564}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"6":696,"11":665,"22":2837}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"6":725,"11":693,"22":2875},"upgradeStep":1}}}, +{"id":89433,"name":"Vestments of Thundering Skies","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1852,1075,0,780,0,702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":529,"7":474,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"5":718,"7":646,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"5":748,"7":674,"22":2259},"upgradeStep":1}}}, +{"id":89434,"name":"Robe of the Five Sisters","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1852,1075,642,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"11":545,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":986,"4":590,"11":740,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1030,"4":616,"11":771,"22":2259},"upgradeStep":1}}}, +{"id":89435,"name":"Greenstone Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":2132}},"463":{"randPropPoints":953,"stats":{"22":2155}},"471":{"randPropPoints":1027,"stats":{"22":2218},"upgradeStep":1}}}, +{"id":89437,"name":"Greenstone Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"463":{"randPropPoints":1270,"stats":{"22":3386}},"471":{"randPropPoints":1369,"stats":{"22":3485},"upgradeStep":1}}}, +{"id":89438,"name":"Greenstone Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"463":{"randPropPoints":1270,"stats":{"22":3694}},"471":{"randPropPoints":1369,"stats":{"22":3802},"upgradeStep":1}}}, +{"id":89439,"name":"Greenstone Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"463":{"randPropPoints":1710,"stats":{"22":4310}},"471":{"randPropPoints":1843,"stats":{"22":4435},"upgradeStep":1}}}, +{"id":89440,"name":"Greenstone Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"463":{"randPropPoints":1710,"stats":{"22":4002}},"471":{"randPropPoints":1843,"stats":{"22":4119},"upgradeStep":1}}}, +{"id":89441,"name":"Greenstone Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"463":{"randPropPoints":1270,"stats":{"22":2771}},"471":{"randPropPoints":1369,"stats":{"22":2851},"upgradeStep":1}}}, +{"id":89442,"name":"Greenstone Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"463":{"randPropPoints":1270,"stats":{"22":3079}},"471":{"randPropPoints":1369,"stats":{"22":3168},"upgradeStep":1}}}, +{"id":89443,"name":"Greenstone Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"463":{"randPropPoints":1710,"stats":{"22":4926}},"471":{"randPropPoints":1843,"stats":{"22":5069},"upgradeStep":1}}}, +{"id":89444,"name":"Mogu-Wrought Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"463":{"randPropPoints":1710,"stats":{"22":4926}},"471":{"randPropPoints":1843,"stats":{"22":5069},"upgradeStep":1}}}, +{"id":89445,"name":"Mogu-Wrought Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"463":{"randPropPoints":1270,"stats":{"22":3079}},"471":{"randPropPoints":1369,"stats":{"22":3168},"upgradeStep":1}}}, +{"id":89446,"name":"Mogu-Wrought Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"463":{"randPropPoints":1270,"stats":{"22":2771}},"471":{"randPropPoints":1369,"stats":{"22":2851},"upgradeStep":1}}}, +{"id":89447,"name":"Mogu-Wrought Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"463":{"randPropPoints":1710,"stats":{"22":4002}},"471":{"randPropPoints":1843,"stats":{"22":4119},"upgradeStep":1}}}, +{"id":89448,"name":"Mogu-Wrought Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"463":{"randPropPoints":1710,"stats":{"22":4310}},"471":{"randPropPoints":1843,"stats":{"22":4435},"upgradeStep":1}}}, +{"id":89449,"name":"Mogu-Wrought Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3909,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"463":{"randPropPoints":1270,"stats":{"22":3694}},"471":{"randPropPoints":1369,"stats":{"22":3802},"upgradeStep":1}}}, +{"id":89450,"name":"Mogu-Wrought Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"463":{"randPropPoints":1270,"stats":{"22":3386}},"471":{"randPropPoints":1369,"stats":{"22":3485},"upgradeStep":1}}}, +{"id":89451,"name":"Mogu-Wrought Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":2132}},"463":{"randPropPoints":953,"stats":{"22":2155}},"471":{"randPropPoints":1027,"stats":{"22":2218},"upgradeStep":1}}}, +{"id":89452,"name":"Stormbrew Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"463":{"randPropPoints":1710,"stats":{"22":3607}},"471":{"randPropPoints":1843,"stats":{"22":3712},"upgradeStep":1}}}, +{"id":89453,"name":"Stormbrew Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"463":{"randPropPoints":1270,"stats":{"22":2705}},"471":{"randPropPoints":1369,"stats":{"22":2784},"upgradeStep":1}}}, +{"id":89454,"name":"Stormbrew Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"463":{"randPropPoints":1710,"stats":{"22":3156}},"471":{"randPropPoints":1843,"stats":{"22":3248},"upgradeStep":1}}}, +{"id":89455,"name":"Stormbrew Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"463":{"randPropPoints":1710,"stats":{"22":2931}},"471":{"randPropPoints":1843,"stats":{"22":3016},"upgradeStep":1}}}, +{"id":89456,"name":"Stormbrew Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"463":{"randPropPoints":1270,"stats":{"22":2480}},"471":{"randPropPoints":1369,"stats":{"22":2552},"upgradeStep":1}}}, +{"id":89457,"name":"Stormbrew Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"463":{"randPropPoints":1270,"stats":{"22":2254}},"471":{"randPropPoints":1369,"stats":{"22":2320},"upgradeStep":1}}}, +{"id":89458,"name":"Stormbrew Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1561}},"463":{"randPropPoints":953,"stats":{"22":1578}},"471":{"randPropPoints":1027,"stats":{"22":1624},"upgradeStep":1}}}, +{"id":89459,"name":"Stormbrew Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"463":{"randPropPoints":1270,"stats":{"22":2029}},"471":{"randPropPoints":1369,"stats":{"22":2088},"upgradeStep":1}}}, +{"id":89460,"name":"Scarshell Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"463":{"randPropPoints":1270,"stats":{"22":2029}},"471":{"randPropPoints":1369,"stats":{"22":2088},"upgradeStep":1}}}, +{"id":89461,"name":"Scarshell Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1561}},"463":{"randPropPoints":953,"stats":{"22":1578}},"471":{"randPropPoints":1027,"stats":{"22":1624},"upgradeStep":1}}}, +{"id":89462,"name":"Scarshell Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"463":{"randPropPoints":1270,"stats":{"22":2254}},"471":{"randPropPoints":1369,"stats":{"22":2320},"upgradeStep":1}}}, +{"id":89463,"name":"Scarshell Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"463":{"randPropPoints":1270,"stats":{"22":2480}},"471":{"randPropPoints":1369,"stats":{"22":2552},"upgradeStep":1}}}, +{"id":89464,"name":"Scarshell Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"463":{"randPropPoints":1710,"stats":{"22":2931}},"471":{"randPropPoints":1843,"stats":{"22":3016},"upgradeStep":1}}}, +{"id":89465,"name":"Scarshell Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"463":{"randPropPoints":1710,"stats":{"22":3156}},"471":{"randPropPoints":1843,"stats":{"22":3248},"upgradeStep":1}}}, +{"id":89466,"name":"Scarshell Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"463":{"randPropPoints":1270,"stats":{"22":2705}},"471":{"randPropPoints":1369,"stats":{"22":2784},"upgradeStep":1}}}, +{"id":89467,"name":"Scarshell Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"463":{"randPropPoints":1710,"stats":{"22":3607}},"471":{"randPropPoints":1843,"stats":{"22":3712},"upgradeStep":1}}}, +{"id":89468,"name":"Forgotten Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"463":{"randPropPoints":1270,"stats":{"22":1458}},"471":{"randPropPoints":1369,"stats":{"22":1501},"upgradeStep":1}}}, +{"id":89469,"name":"Forgotten Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2057,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"463":{"randPropPoints":1270,"stats":{"22":1944}},"471":{"randPropPoints":1369,"stats":{"22":2001},"upgradeStep":1}}}, +{"id":89470,"name":"Forgotten Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"463":{"randPropPoints":1710,"stats":{"22":2592}},"471":{"randPropPoints":1843,"stats":{"22":2668},"upgradeStep":1}}}, +{"id":89471,"name":"Forgotten Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"463":{"randPropPoints":1710,"stats":{"22":2106}},"471":{"randPropPoints":1843,"stats":{"22":2167},"upgradeStep":1}}}, +{"id":89472,"name":"Forgotten Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"463":{"randPropPoints":1270,"stats":{"22":1620}},"471":{"randPropPoints":1369,"stats":{"22":1667},"upgradeStep":1}}}, +{"id":89473,"name":"Forgotten Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"463":{"randPropPoints":1710,"stats":{"22":2268}},"471":{"randPropPoints":1843,"stats":{"22":2334},"upgradeStep":1}}}, +{"id":89474,"name":"Forgotten Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"463":{"randPropPoints":1270,"stats":{"22":1782}},"471":{"randPropPoints":1369,"stats":{"22":1834},"upgradeStep":1}}}, +{"id":89475,"name":"Forgotten Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1122}},"463":{"randPropPoints":953,"stats":{"22":1134}},"471":{"randPropPoints":1027,"stats":{"22":1167},"upgradeStep":1}}}, +{"id":89476,"name":"Hozen-Crafted Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1122}},"463":{"randPropPoints":953,"stats":{"22":1134}},"471":{"randPropPoints":1027,"stats":{"22":1167},"upgradeStep":1}}}, +{"id":89477,"name":"Hozen-Crafted Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"463":{"randPropPoints":1270,"stats":{"22":1782}},"471":{"randPropPoints":1369,"stats":{"22":1834},"upgradeStep":1}}}, +{"id":89478,"name":"Hozen-Crafted Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"463":{"randPropPoints":1710,"stats":{"22":2268}},"471":{"randPropPoints":1843,"stats":{"22":2334},"upgradeStep":1}}}, +{"id":89479,"name":"Hozen-Crafted Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"463":{"randPropPoints":1270,"stats":{"22":1620}},"471":{"randPropPoints":1369,"stats":{"22":1667},"upgradeStep":1}}}, +{"id":89480,"name":"Hozen-Crafted Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"463":{"randPropPoints":1710,"stats":{"22":2106}},"471":{"randPropPoints":1843,"stats":{"22":2167},"upgradeStep":1}}}, +{"id":89481,"name":"Hozen-Crafted Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"463":{"randPropPoints":1710,"stats":{"22":2592}},"471":{"randPropPoints":1843,"stats":{"22":2668},"upgradeStep":1}}}, +{"id":89482,"name":"Hozen-Crafted Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2057,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"463":{"randPropPoints":1270,"stats":{"22":1944}},"471":{"randPropPoints":1369,"stats":{"22":2001},"upgradeStep":1}}}, +{"id":89483,"name":"Hozen-Crafted Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"463":{"randPropPoints":1270,"stats":{"22":1458}},"471":{"randPropPoints":1369,"stats":{"22":1501},"upgradeStep":1}}}, +{"id":89484,"name":"Firewool Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":881}},"463":{"randPropPoints":953,"stats":{"22":891}},"471":{"randPropPoints":1027,"stats":{"22":917},"upgradeStep":1}}}, +{"id":89485,"name":"Firewool Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"463":{"randPropPoints":1270,"stats":{"22":1527}},"471":{"randPropPoints":1369,"stats":{"22":1572},"upgradeStep":1}}}, +{"id":89486,"name":"Firewool Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"463":{"randPropPoints":1270,"stats":{"22":1400}},"471":{"randPropPoints":1369,"stats":{"22":1441},"upgradeStep":1}}}, +{"id":89487,"name":"Firewool Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"463":{"randPropPoints":1710,"stats":{"22":2037}},"471":{"randPropPoints":1843,"stats":{"22":2096},"upgradeStep":1}}}, +{"id":89488,"name":"Firewool Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"463":{"randPropPoints":1710,"stats":{"22":1782}},"471":{"randPropPoints":1843,"stats":{"22":1834},"upgradeStep":1}}}, +{"id":89489,"name":"Firewool Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"463":{"randPropPoints":1270,"stats":{"22":1273}},"471":{"randPropPoints":1369,"stats":{"22":1310},"upgradeStep":1}}}, +{"id":89490,"name":"Firewool Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"463":{"randPropPoints":1710,"stats":{"22":1655}},"471":{"randPropPoints":1843,"stats":{"22":1703},"upgradeStep":1}}}, +{"id":89491,"name":"Firewool Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"463":{"randPropPoints":1270,"stats":{"22":1146}},"471":{"randPropPoints":1369,"stats":{"22":1179},"upgradeStep":1}}}, +{"id":89492,"name":"Brewmoon Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"463":{"randPropPoints":1270,"stats":{"22":1146}},"471":{"randPropPoints":1369,"stats":{"22":1179},"upgradeStep":1}}}, +{"id":89493,"name":"Brewmoon Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"463":{"randPropPoints":1710,"stats":{"22":1655}},"471":{"randPropPoints":1843,"stats":{"22":1703},"upgradeStep":1}}}, +{"id":89494,"name":"Brewmoon Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"463":{"randPropPoints":1270,"stats":{"22":1273}},"471":{"randPropPoints":1369,"stats":{"22":1310},"upgradeStep":1}}}, +{"id":89495,"name":"Brewmoon Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"463":{"randPropPoints":1710,"stats":{"22":1782}},"471":{"randPropPoints":1843,"stats":{"22":1834},"upgradeStep":1}}}, +{"id":89496,"name":"Brewmoon Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"463":{"randPropPoints":1710,"stats":{"22":2037}},"471":{"randPropPoints":1843,"stats":{"22":2096},"upgradeStep":1}}}, +{"id":89497,"name":"Brewmoon Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"463":{"randPropPoints":1270,"stats":{"22":1400}},"471":{"randPropPoints":1369,"stats":{"22":1441},"upgradeStep":1}}}, +{"id":89498,"name":"Brewmoon Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"463":{"randPropPoints":1270,"stats":{"22":1527}},"471":{"randPropPoints":1369,"stats":{"22":1572},"upgradeStep":1}}}, +{"id":89499,"name":"Brewmoon Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":881}},"463":{"randPropPoints":953,"stats":{"22":891}},"471":{"randPropPoints":1027,"stats":{"22":917},"upgradeStep":1}}}, +{"id":89500,"name":"Fireheart Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"463":{"randPropPoints":953,"stats":{"22":1018}},"471":{"randPropPoints":1027,"stats":{"22":1048},"upgradeStep":1}}}, +{"id":89501,"name":"Brewmoon Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"463":{"randPropPoints":953,"stats":{"22":1018}},"471":{"randPropPoints":1027,"stats":{"22":1048},"upgradeStep":1}}}, +{"id":89502,"name":"Stormbound Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"463":{"randPropPoints":953,"stats":{"22":1018}},"471":{"randPropPoints":1027,"stats":{"22":1048},"upgradeStep":1}}}, +{"id":89503,"name":"Greenstone Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"463":{"randPropPoints":953,"stats":{"22":1018}},"471":{"randPropPoints":1027,"stats":{"22":1048},"upgradeStep":1}}}, +{"id":89504,"name":"Stormbound Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89505,"name":"Greenstone Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89506,"name":"Fireheart Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89507,"name":"Brewmoon Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89508,"name":"Fireheart Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89509,"name":"Brewmoon Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89510,"name":"Stormbound Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89511,"name":"Greenstone Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"463":{"randPropPoints":953},"471":{"randPropPoints":1027,"upgradeStep":1}}}, +{"id":89522,"name":"Mark of the Dancing Crane","icon":"inv_jewelry_ring_142","type":11,"stats":[0,478,717,0,0,0,311,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":311,"7":324},"isBase":true}}}, +{"id":89523,"name":"Etched Golden Loop","icon":"inv_jewelry_ring_132","type":11,"stats":[0,0,717,478,0,257,0,0,0,0,0,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":257,"11":355},"isBase":true}}}, +{"id":89524,"name":"Sorcerer-King's Seal","icon":"inv_jewelry_ring_151","type":11,"stats":[0,0,717,478,319,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":319,"11":319},"isBase":true}}}, +{"id":89525,"name":"Thunderstone Ring","icon":"inv_jewelry_ring_133","type":11,"stats":[478,0,717,0,0,264,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":264,"10":351},"isBase":true}}}, +{"id":89526,"name":"Signet of the Slumbering Emperor","icon":"inv_jewelry_ring_139","type":11,"stats":[478,0,717,0,0,0,264,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":264,"7":351},"isBase":true}}}, +{"id":89527,"name":"Amulet of Swirling Mists","icon":"inv_jewelry_necklace_85","type":2,"stats":[0,478,717,0,0,0,0,319,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":319,"11":319},"isBase":true}}}, +{"id":89528,"name":"Necklace of Jade Pearls","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,717,478,0,280,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":280,"6":342},"isBase":true}}}, +{"id":89529,"name":"Pendant of Endless Inquisition","icon":"inv_jewelry_necklace_87","type":2,"stats":[0,0,717,478,328,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":328,"6":303},"isBase":true}}}, +{"id":89530,"name":"Triumphant Conqueror's Chain","icon":"inv_jewelry_necklace_82","type":2,"stats":[478,0,717,0,0,328,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":328,"6":303},"isBase":true}}}, +{"id":89531,"name":"Gorget of Usurped Kings","icon":"inv_jewelry_necklace_92","type":2,"stats":[478,0,717,0,0,287,0,0,0,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":287,"9":337},"isBase":true}}}, +{"id":89532,"name":"Bladesong Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,478,717,0,0,0,328,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":328,"7":303,"22":1000},"isBase":true}}}, +{"id":89533,"name":"Cloak of Ancient Curses","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,717,478,0,272,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":272,"7":346,"22":1000},"isBase":true}}}, +{"id":89534,"name":"Pressed Flower Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,717,478,272,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":272,"7":346,"22":1000},"isBase":true}}}, +{"id":89535,"name":"Ribcracker's Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[478,0,717,0,0,250,0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":250,"7":359,"22":1000},"isBase":true}}}, +{"id":89537,"name":"Cloak of the Silent Mountain","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[478,0,717,0,0,0,0,0,319,0,319,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"8":319,"10":319,"22":1000},"isBase":true}}}, +{"id":89611,"name":"Quilen Statuette","icon":"archaeology_5_0_quilenstatuette","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"463":{"randPropPoints":1270,"stats":{"11":847}},"471":{"randPropPoints":1369,"stats":{"11":913},"upgradeStep":1}}}, +{"id":89642,"name":"Bracers of Eternal Resolve","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,717,478,359,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":359,"6":250,"22":875},"isBase":true}}}, +{"id":89643,"name":"Tranquility Bindings","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,717,478,0,0,351,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":351,"7":264,"22":875},"isBase":true}}}, +{"id":89644,"name":"Sudden Insight Bracers","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,717,478,0,0,328,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":328,"11":303,"22":1113},"isBase":true}}}, +{"id":89645,"name":"Cruel Mercy Bracers","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,478,717,0,0,0,355,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":355,"11":257,"22":1113},"isBase":true}}}, +{"id":89646,"name":"Runoff Wristguards","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,0,717,478,351,0,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":351,"6":264,"22":1549},"isBase":true}}}, +{"id":89647,"name":"Entombed Traitor's Wristguards","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,478,717,0,0,0,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":342,"8":280,"22":1549},"isBase":true}}}, +{"id":89648,"name":"Bracers of Inner Light","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,717,478,0,0,0,311,0,0,0,324,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":311,"11":324,"22":2116},"isBase":true}}}, +{"id":89649,"name":"Serrated Forearm Guards","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[478,0,717,0,0,0,0,0,351,0,0,264,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"8":351,"11":264,"22":2116},"isBase":true}}}, +{"id":89650,"name":"Emperor's Riding Gloves","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,957,638,394,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":638,"4":394,"7":444,"22":1250},"isBase":true}}}, +{"id":89651,"name":"Krompf's Fine-Tuning Gloves","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,957,638,0,462,0,363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":638,"5":462,"7":363,"22":1250},"isBase":true}}}, +{"id":89652,"name":"Wandering Friar's Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,0,957,638,404,0,0,0,0,0,0,438,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":638,"4":404,"11":438,"22":1591},"isBase":true}}}, +{"id":89653,"name":"Surehand Grips","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,638,957,0,0,0,432,0,0,0,0,415,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":638,"2":957,"6":432,"11":415,"22":1591},"isBase":true}}}, +{"id":89654,"name":"Gloves of Forgotten Wisdom","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,957,638,0,0,485,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":638,"6":485,"7":323,"22":2213},"isBase":true}}}, +{"id":89655,"name":"Brushcutter's Gloves","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,638,957,0,0,353,468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":638,"2":957,"5":353,"6":468,"22":2213},"isBase":true}}}, +{"id":89656,"name":"Gauntlets of Restraint","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[0,0,957,638,373,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":638,"4":373,"6":456,"22":3023},"isBase":true}}}, +{"id":89657,"name":"Wall Breaker Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[638,0,957,0,0,0,0,456,373,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":638,"2":957,"7":456,"8":373,"22":3023},"isBase":true}}}, +{"id":89658,"name":"Subversive Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1287,858,448,0,0,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"4":448,"11":645,"22":1750},"isBase":true}}}, +{"id":89659,"name":"Leggings of Unfinished Conquest","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1287,858,0,516,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"5":516,"6":606,"22":1750},"isBase":true}}}, +{"id":89660,"name":"Brambleguard Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1287,858,0,0,614,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"6":614,"7":502,"22":2227},"isBase":true}}}, +{"id":89661,"name":"Tough Mushanhide Leggings","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,858,1287,0,0,475,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":858,"2":1287,"5":475,"11":630,"22":2227},"isBase":true}}}, +{"id":89662,"name":"Snowpack Waders","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1287,858,0,0,530,0,0,0,0,597,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"6":530,"11":597,"22":3099},"isBase":true}}}, +{"id":89663,"name":"Leggings of Twisted Vines","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,858,1287,0,0,488,0,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":858,"2":1287,"5":488,"11":622,"22":3099},"isBase":true}}}, +{"id":89664,"name":"Valiant's Shinguards","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1287,858,572,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"4":572,"7":572,"22":4232},"isBase":true}}}, +{"id":89665,"name":"Leggings of Ponderous Advance","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[858,0,1287,0,0,0,606,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":858,"2":1287,"6":606,"11":516,"22":4232},"isBase":true}}}, +{"id":89666,"name":"Vestment of the Ascendant Tribe","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,0,1287,858,645,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"4":645,"7":448,"22":2545},"isBase":true}}}, +{"id":89667,"name":"Refurbished Zandalari Vestment","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,858,1287,0,0,0,0,597,530,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":858,"2":1287,"7":597,"8":530,"22":2545},"isBase":true}}}, +{"id":89668,"name":"Mountain Stream Ringmail","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,0,1287,858,589,0,0,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"4":589,"7":544,"22":3541},"isBase":true}}}, +{"id":89669,"name":"Undergrowth Stalker Chestpiece","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,858,1287,0,0,0,0,0,589,0,0,544,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":858,"2":1287,"8":589,"11":544,"22":3541},"isBase":true}}}, +{"id":89670,"name":"Inner Serenity Chestplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[0,0,1287,858,0,0,637,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"6":637,"11":461,"22":4836},"isBase":true}}}, +{"id":89671,"name":"Chestplate of the Stone Lion","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[858,0,1287,0,0,461,0,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":858,"2":1287,"5":461,"11":637,"22":4836},"isBase":true}}}, +{"id":89672,"name":"Robe of Quiet Meditation","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1287,858,0,0,0,589,0,0,0,544,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"7":589,"11":544,"22":2000},"isBase":true}}}, +{"id":89673,"name":"Robe of Eternal Dynasty","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1287,858,0,572,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":858,"5":572,"11":572,"22":2000},"isBase":true}}}, +{"id":89684,"name":"Umbrella of Chi-Ji","icon":"archaeology_5_0_umbrellaofchiji","type":13,"weaponType":5,"handType":3,"stats":[0,0,873,582,0,0,0,388,0,0,0,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1106,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":325,"11":325}},"463":{"randPropPoints":953,"stats":{"2":752,"3":501,"7":334,"11":334}},"471":{"randPropPoints":1027,"stats":{"2":810,"3":540,"7":360,"11":360},"upgradeStep":1}}}, +{"id":89685,"name":"Spear of Xuen","icon":"archaeology_5_0_spearofxuen","type":13,"weaponType":6,"handType":4,"stats":[0,1044,1566,0,0,0,696,0,0,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"1":899,"2":1349,"6":600,"11":600}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"1":969,"2":1454,"6":646,"11":646},"upgradeStep":1}}}, +{"id":89766,"name":"Stonefang Chestguard","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,1075,1852,0,0,0,858,0,546,0,0,0,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":3568}},"489":{"randPropPoints":2179,"stats":{"1":986,"2":1719,"6":791,"8":500,"22":3948}},"493":{"randPropPoints":2262,"stats":{"1":1030,"2":1784,"6":824,"8":523,"22":4000},"upgradeStep":1}}}, +{"id":89767,"name":"Ruby-Linked Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1376,837,0,425,0,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":289,"11":454,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"5":391,"11":607,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"5":408,"11":631,"22":1271},"upgradeStep":1}}}, +{"id":89768,"name":"Claws of Amethyst","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1376,837,0,0,624,0,0,0,0,482,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":431,"11":330,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"6":577,"11":444,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"6":600,"11":463,"22":1412},"upgradeStep":1}}}, +{"id":89802,"name":"Feng's Seal of Binding","icon":"inv_jewelry_ring_144","type":11,"stats":[0,688,1032,0,0,0,466,0,0,0,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"11":317}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"6":432,"11":415}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"6":448,"11":431},"upgradeStep":1}}}, +{"id":89803,"name":"Feng's Ring of Dreams","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1032,688,402,0,0,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"11":349}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":373,"11":457}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":388,"11":474},"upgradeStep":1}}}, +{"id":89817,"name":"Bonded Soul Bracers","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[688,0,1032,0,0,0,0,485,413,0,0,0,0,0,0,0,0,0,0,0,0,0,2421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":344,"8":293,"22":2132}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"7":451,"8":384,"22":2359}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"7":468,"8":398,"22":2390},"upgradeStep":1}}}, +{"id":89818,"name":"Bracers of Violent Meditation","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,688,1032,0,0,391,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"6":353,"22":1122}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":363,"6":463,"22":1241}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":377,"6":480,"22":1258},"upgradeStep":1}}}, +{"id":89819,"name":"Mindshard Drape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1032,688,0,0,447,0,0,0,0,466,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"11":330,"22":1007}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":415,"11":432,"22":1115}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":431,"11":448,"22":1129},"upgradeStep":1}}}, +{"id":89820,"name":"Dreadeye Gaze","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,995,1852,0,0,783,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":525,"7":372,"22":2899}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"5":720,"7":530,"22":3208}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"5":751,"7":556,"22":3250},"upgradeStep":1}}}, +{"id":89821,"name":"Crown of Keening Stars","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[0,0,1852,995,696,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":452,"6":468,"22":3959}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"4":636,"6":645,"22":4380}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"4":665,"6":673,"22":4439},"upgradeStep":1}}}, +{"id":89822,"name":"Galaxyfire Girdle","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1376,837,616,0,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":424,"6":340,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":771,"4":569,"6":458,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":804,"4":592,"6":477,"22":1271},"upgradeStep":1}}}, +{"id":89823,"name":"Chestguard of Eternal Vigilance","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[778,0,1852,0,0,0,0,0,546,0,1155,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"8":363,"10":795,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":711,"2":1719,"8":500,"10":1066,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":744,"2":1784,"8":523,"10":1110,"22":5463},"upgradeStep":1}}}, +{"id":89824,"name":"Band of Bursting Novas","icon":"inv_misc_epicring_a1","type":11,"stats":[688,0,1032,0,0,0,0,0,498,391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":353,"9":277}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"8":463,"9":363}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"8":480,"9":377},"upgradeStep":1}}}, +{"id":89825,"name":"Enameled Grips of Solemnity","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,1376,917,681,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":482,"6":349,"22":2230}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"4":632,"6":458,"22":2467}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"4":656,"6":475,"22":2500},"upgradeStep":1}}}, +{"id":89826,"name":"Warbelt of Sealed Pods","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[819,0,1469,0,0,0,477,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":290,"8":391,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":749,"2":1363,"6":437,"8":578,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":783,"2":1414,"6":456,"8":603,"22":3143},"upgradeStep":1}}}, +{"id":89827,"name":"Pheromone-Coated Choker","icon":"inv_jewelry_necklace_103","type":2,"stats":[0,734,1101,0,0,0,0,406,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":377,"11":500}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":391,"11":519},"upgradeStep":1}}}, +{"id":89828,"name":"Pauldrons of the Broken Blade","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[664,0,1469,0,0,456,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":611,"2":1363,"5":420,"10":869,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":637,"2":1414,"5":438,"10":903,"22":4191},"upgradeStep":1}}}, +{"id":89829,"name":"Scent-Soaked Sandals","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,1469,899,643,0,0,0,0,0,0,557,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":410,"11":358,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":593,"11":514,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":617,"11":535,"22":1588},"upgradeStep":1}}}, +{"id":89830,"name":"Sword Dancer's Leggings","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"8":363,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"7":850,"8":540,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"7":885,"8":563,"22":3580},"upgradeStep":1}}}, +{"id":89831,"name":"Hood of Stilled Winds","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,717,773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":444,"7":465,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":659,"7":708,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":688,"7":740,"22":2389},"upgradeStep":1}}}, +{"id":89832,"name":"Garalon's Graven Carapace","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,628,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":390,"6":569,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"5":578,"6":828,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"5":602,"6":863,"22":5588},"upgradeStep":1}}}, +{"id":89833,"name":"Shoulders of Foaming Fluids","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1469,899,596,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"7":400,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":551,"7":575,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":573,"7":598,"22":1733},"upgradeStep":1}}}, +{"id":89834,"name":"Vestments of Steaming Ichor","icon":"inv_robe_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,799,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":735,"6":735,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":766,"6":766,"22":4092},"upgradeStep":1}}}, +{"id":89835,"name":"Hood of Dark Dreams","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,528,0,0,0,902,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":303,"11":565,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":480,"11":830,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":503,"11":865,"22":3325},"upgradeStep":1}}}, +{"id":89836,"name":"Shadow Heart Spaulders","icon":"inv_shoulder_leather_raidrogue_l_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,623,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":400,"7":382,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":575,"7":551,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":598,"7":573,"22":2206},"upgradeStep":1}}}, +{"id":89837,"name":"Legplates of Regal Reinforcement","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,0,0,0,812,777,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"10":488,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"9":748,"10":715,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"9":779,"10":745,"22":4890},"upgradeStep":1}}}, +{"id":89839,"name":"Shadowgrip Girdle","icon":"inv_belt_mail_raidhunter_l_01","type":8,"armorType":3,"stats":[0,819,1469,0,0,0,629,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":391,"7":290,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":749,"2":1363,"6":578,"7":437,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":783,"2":1414,"6":603,"7":456,"22":2302},"upgradeStep":1}}}, +{"id":89841,"name":"Legguards of Failing Purification","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,712,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"11":537,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"5":655,"11":783,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"5":683,"11":816,"22":2573},"upgradeStep":1}}}, +{"id":89842,"name":"Gauntlets of the Shadow's Caress","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,0,564,642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":361,"7":412,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":521,"7":593,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":542,"7":616,"22":1838},"upgradeStep":1}}}, +{"id":89843,"name":"Grasps of Serpentine Might","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[664,0,1469,0,0,0,0,0,456,0,939,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"10":609,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":611,"2":1363,"8":420,"10":869,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":637,"2":1414,"8":438,"10":903,"22":3493},"upgradeStep":1}}}, +{"id":89883,"name":"Shoulderpads of Twisted Fate","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,621,0,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":401,"7":385,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":574,"7":558,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":597,"7":581,"22":1733},"upgradeStep":1}}}, +{"id":89884,"name":"Fear-Blackened Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1977,1158,837,0,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"6":460,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"6":675,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"6":704,"22":2573},"upgradeStep":1}}}, +{"id":89885,"name":"Waterborne Shoulderguards","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,632,0,580,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"8":372,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":584,"8":536,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":607,"8":557,"22":3069},"upgradeStep":1}}}, +{"id":89886,"name":"Wrap of Instant Petrification","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":363,"6":585,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"5":540,"6":850,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"5":563,"6":885,"22":2941},"upgradeStep":1}}}, +{"id":89887,"name":"Robes of Pinioned Eyes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,887,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":562,"11":404,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":817,"11":597,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":851,"11":622,"22":2311},"upgradeStep":1}}}, +{"id":89917,"name":"Pheromone-Coated Choker","icon":"inv_jewelry_necklace_103","type":2,"stats":[0,829,1243,0,0,0,0,458,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358}},"509":{"randPropPoints":1463,"stats":{"1":769,"2":1154,"7":426,"11":564}},"513":{"randPropPoints":1518,"stats":{"1":798,"2":1198,"7":442,"11":586},"upgradeStep":1}}}, +{"id":89918,"name":"Scent-Soaked Sandals","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,1657,1025,732,0,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":410,"11":358,"22":1385}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":676,"11":584,"22":1634}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":703,"11":608,"22":1655},"upgradeStep":1}}}, +{"id":89919,"name":"Warbelt of Sealed Pods","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[945,0,1657,0,0,0,549,0,720,0,0,0,0,0,0,0,0,0,0,0,0,0,3315,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":290,"8":391,"22":2741}},"509":{"randPropPoints":1950,"stats":{"0":866,"2":1538,"6":503,"8":663,"22":3234}},"513":{"randPropPoints":2024,"stats":{"0":904,"2":1597,"6":526,"8":691,"22":3274},"upgradeStep":1}}}, +{"id":89920,"name":"Sword Dancer's Leggings","icon":"inv_pant_mail_raidhunter_l_01","type":9,"armorType":3,"stats":[0,1328,2232,0,0,0,0,1051,674,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"8":363,"22":3122}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"7":969,"8":619,"22":3684}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"7":1009,"8":646,"22":3730},"upgradeStep":1}}}, +{"id":89921,"name":"Pauldrons of the Broken Blade","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[760,0,1657,0,0,520,0,0,0,0,1065,0,0,0,0,0,0,0,0,0,0,0,4419,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"509":{"randPropPoints":1950,"stats":{"0":699,"2":1538,"5":479,"10":986,"22":4312}},"513":{"randPropPoints":2024,"stats":{"0":729,"2":1597,"5":499,"10":1024,"22":4366},"upgradeStep":1}}}, +{"id":89922,"name":"Hood of Stilled Winds","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,2232,1248,0,0,822,892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2520,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":444,"7":465,"22":2083}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"6":756,"7":817,"22":2458}},"513":{"randPropPoints":2725,"stats":{"2":2149,"3":1193,"6":789,"7":854,"22":2489},"upgradeStep":1}}}, +{"id":89923,"name":"Garalon's Graven Carapace","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1328,0,2232,0,0,720,1025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5893,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":390,"6":569,"22":4872}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"5":662,"6":945,"22":5749}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"5":690,"6":984,"22":5821},"upgradeStep":1}}}, +{"id":89924,"name":"Shoulders of Foaming Fluids","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1657,1025,678,0,0,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"7":400,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"4":627,"7":654,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"4":652,"7":680,"22":1805},"upgradeStep":1}}}, +{"id":89925,"name":"Vestments of Steaming Ichor","icon":"inv_robe_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,2232,1328,912,0,912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4315,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":3568}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":840,"6":840,"22":4210}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":875,"6":875,"22":4262},"upgradeStep":1}}}, +{"id":89926,"name":"Shadow Heart Spaulders","icon":"inv_shoulder_leather_dungeonleather_c_05","type":3,"armorType":2,"stats":[0,1025,1657,0,0,0,708,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2326,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":400,"7":382,"22":1923}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":654,"7":627,"22":2269}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":680,"7":652,"22":2298},"upgradeStep":1}}}, +{"id":89927,"name":"Hood of Dark Dreams","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,2232,1248,0,0,0,614,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":303,"11":565,"22":2899}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1140,"7":559,"11":949,"22":3421}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1193,"7":586,"11":989,"22":3463},"upgradeStep":1}}}, +{"id":89928,"name":"Legplates of Regal Reinforcement","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1328,0,2232,0,0,0,0,0,0,927,887,0,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"10":488,"22":4263}},"509":{"randPropPoints":2625,"stats":{"0":1220,"2":2071,"9":854,"10":817,"22":5031}},"513":{"randPropPoints":2725,"stats":{"0":1273,"2":2150,"9":890,"10":851,"22":5093},"upgradeStep":1}}}, +{"id":89929,"name":"Stonefang Chestguard","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1234,2091,0,0,0,979,0,626,0,0,0,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":3568}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":903,"8":575,"22":4118}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":940,"8":600,"22":4171},"upgradeStep":1}}}, +{"id":89930,"name":"Ruby-Linked Girdle","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,1553,955,0,485,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":289,"11":454,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":447,"11":690,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":465,"11":718,"22":1325},"upgradeStep":1}}}, +{"id":89931,"name":"Claws of Amethyst","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,710,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":431,"11":330,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":656,"11":507,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":683,"11":528,"22":1472},"upgradeStep":1}}}, +{"id":89932,"name":"Feng's Seal of Binding","icon":"inv_jewelry_ring_144","type":11,"stats":[0,776,1164,0,0,0,525,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"11":317}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"6":488,"11":468}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"6":506,"11":486},"upgradeStep":1}}}, +{"id":89933,"name":"Feng's Ring of Dreams","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1164,776,454,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"11":349}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":421,"11":515}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":437,"11":535},"upgradeStep":1}}}, +{"id":89934,"name":"Bonded Soul Bracers","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[776,0,1164,0,0,0,0,548,467,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":344,"8":293,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"7":508,"8":433,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"7":528,"8":449,"22":2492},"upgradeStep":1}}}, +{"id":89935,"name":"Bracers of Violent Meditation","icon":"inv_bracer_leather_raidrogue_l_01","type":6,"armorType":2,"stats":[0,776,1164,0,0,442,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"6":353,"22":1122}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"5":410,"6":522,"22":1295}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"5":425,"6":542,"22":1311},"upgradeStep":1}}}, +{"id":89936,"name":"Mindshard Drape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1164,776,0,0,504,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"11":330,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":468,"11":488,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"6":486,"11":506,"22":1177},"upgradeStep":1}}}, +{"id":89937,"name":"Band of Bursting Novas","icon":"inv_misc_epicring_a1","type":11,"stats":[776,0,1164,0,0,0,0,0,562,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":353,"9":277}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"8":522,"9":410}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"8":542,"9":425},"upgradeStep":1}}}, +{"id":89938,"name":"Galaxyfire Girdle","icon":"inv_belt_robe_raidmage_j_01","type":8,"armorType":1,"stats":[0,0,1553,955,701,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":424,"6":340,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":647,"6":522,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":673,"6":544,"22":1325},"upgradeStep":1}}}, +{"id":89939,"name":"Crown of Keening Stars","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,2090,1154,803,0,806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":452,"6":468,"22":3959}},"502":{"randPropPoints":2460,"stats":{"2":1940,"3":1054,"4":736,"6":741,"22":4570}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":769,"6":773,"22":4628},"upgradeStep":1}}}, +{"id":89940,"name":"Dreadeye Gaze","icon":"inv_helm_mail_raidhunter_l_01","type":1,"armorType":3,"stats":[0,1154,2091,0,0,897,0,675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":525,"7":372,"22":2899}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":825,"7":617,"22":3346}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":860,"7":645,"22":3389},"upgradeStep":1}}}, +{"id":89941,"name":"Chestguard of Eternal Vigilance","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[899,0,2091,0,0,0,0,0,626,0,1314,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"8":363,"10":795,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":823,"2":1941,"8":575,"10":1214,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":860,"2":2014,"8":600,"10":1263,"22":5696},"upgradeStep":1}}}, +{"id":89942,"name":"Enameled Grips of Solemnity","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1553,1035,769,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":482,"6":349,"22":2230}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":713,"6":516,"22":2574}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":741,"6":536,"22":2607},"upgradeStep":1}}}, +{"id":89943,"name":"Legguards of Failing Purification","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1328,2232,0,0,814,0,0,0,0,0,970,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"11":537,"22":2243}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"5":750,"11":894,"22":2647}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"5":781,"11":931,"22":2680},"upgradeStep":1}}}, +{"id":89944,"name":"Waterborne Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,1025,1657,0,0,0,718,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,3236,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"8":372,"22":2676}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":664,"8":610,"22":3157}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":691,"8":634,"22":3197},"upgradeStep":1}}}, +{"id":89945,"name":"Gauntlets of the Shadow's Caress","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,1025,1657,0,0,0,642,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":361,"7":412,"22":1602}},"509":{"randPropPoints":1950,"stats":{"1":946,"2":1538,"6":593,"7":674,"22":1891}},"513":{"randPropPoints":2024,"stats":{"1":984,"2":1597,"6":617,"7":701,"22":1915},"upgradeStep":1}}}, +{"id":89946,"name":"Grasps of Serpentine Might","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[760,0,1657,0,0,0,0,0,520,0,1065,0,0,0,0,0,0,0,0,0,0,0,3683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"10":609,"22":3045}},"509":{"randPropPoints":1950,"stats":{"0":699,"2":1538,"8":479,"10":986,"22":3593}},"513":{"randPropPoints":2024,"stats":{"0":729,"2":1597,"8":499,"10":1024,"22":3638},"upgradeStep":1}}}, +{"id":89947,"name":"Shoulderpads of Twisted Fate","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1657,1025,0,705,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":401,"7":385,"22":1511}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":946,"5":652,"7":636,"22":1783}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":984,"5":678,"7":662,"22":1805},"upgradeStep":1}}}, +{"id":89948,"name":"Fear-Blackened Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,2232,1328,956,0,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2713,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"6":460,"22":2243}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":881,"6":772,"22":2647}},"513":{"randPropPoints":2725,"stats":{"2":2150,"3":1273,"4":918,"6":805,"22":2680},"upgradeStep":1}}}, +{"id":89949,"name":"Robes of Pinioned Eyes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,2232,1328,1011,0,0,0,0,0,0,743,0,0,0,0,0,0,0,0,0,0,2436,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":562,"11":404,"22":2014}},"509":{"randPropPoints":2625,"stats":{"2":2071,"3":1220,"4":933,"11":684,"22":2377}},"513":{"randPropPoints":2725,"stats":{"2":2149,"3":1273,"4":971,"11":713,"22":2407},"upgradeStep":1}}}, +{"id":89950,"name":"Wrap of Instant Petrification","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1328,2232,0,0,674,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3101,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2829,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":363,"6":585,"22":2564}},"509":{"randPropPoints":2625,"stats":{"1":1220,"2":2071,"5":619,"6":969,"22":3026}},"513":{"randPropPoints":2725,"stats":{"1":1273,"2":2150,"5":646,"6":1009,"22":3063},"upgradeStep":1}}}, +{"id":89951,"name":"Shadowgrip Girdle","icon":"inv_belt_mail_raidhunter_l_01","type":8,"armorType":3,"stats":[0,945,1657,0,0,0,720,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2427,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":391,"7":290,"22":2007}},"509":{"randPropPoints":1950,"stats":{"1":866,"2":1538,"6":663,"7":503,"22":2368}},"513":{"randPropPoints":2024,"stats":{"1":904,"2":1597,"6":691,"7":526,"22":2398},"upgradeStep":1}}}, +{"id":89952,"name":"Pheromone-Coated Choker","icon":"inv_jewelry_necklace_103","type":2,"stats":[0,651,976,0,0,0,0,360,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":334,"11":443}},"487":{"randPropPoints":1192,"stats":{"1":627,"2":940,"7":347,"11":460},"upgradeStep":1}}}, +{"id":89953,"name":"Scent-Soaked Sandals","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,1301,787,564,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":410,"11":358,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":520,"11":452,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":756,"4":542,"11":470,"22":1522},"upgradeStep":1}}}, +{"id":89954,"name":"Warbelt of Sealed Pods","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[707,0,1301,0,0,0,413,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,3053,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Imperial Vizier Zor'lok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":290,"8":391,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":645,"2":1208,"6":378,"8":503,"22":2972}},"487":{"randPropPoints":1589,"stats":{"0":676,"2":1254,"6":395,"8":525,"22":3012},"upgradeStep":1}}}, +{"id":89955,"name":"Sword Dancer's Leggings","icon":"inv_pants_mail_dungeonmail_c_05","type":9,"armorType":3,"stats":[0,1007,1751,0,0,0,0,807,511,0,0,0,0,0,0,0,0,0,0,0,0,0,3477,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"8":363,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"7":744,"8":469,"22":3385}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"7":775,"8":490,"22":3431},"upgradeStep":1}}}, +{"id":89956,"name":"Pauldrons of the Broken Blade","icon":"inv_shoulders_plate_raidwarrior_l_01","type":3,"armorType":4,"stats":[579,0,1301,0,0,399,0,0,0,0,827,0,0,0,0,0,0,0,0,0,0,0,4070,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":289,"10":609,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":532,"2":1208,"5":368,"10":765,"22":3963}},"487":{"randPropPoints":1589,"stats":{"0":555,"2":1254,"5":383,"10":796,"22":4017},"upgradeStep":1}}}, +{"id":89957,"name":"Hood of Stilled Winds","icon":"inv_helm_leather_raiddruid_l_01","type":1,"armorType":2,"stats":[0,0,1751,927,0,0,625,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2321,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":444,"7":465,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"6":573,"7":611,"22":2259}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"6":598,"7":639,"22":2290},"upgradeStep":1}}}, +{"id":89958,"name":"Garalon's Graven Carapace","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[1007,0,1751,0,0,548,787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":390,"6":569,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"5":503,"6":725,"22":5284}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"5":525,"6":755,"22":5356},"upgradeStep":1}}}, +{"id":89959,"name":"Shoulders of Foaming Fluids","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,1301,787,524,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"7":400,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"4":483,"7":505,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"4":503,"7":526,"22":1661},"upgradeStep":1}}}, +{"id":89960,"name":"Vestments of Steaming Ichor","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1751,1007,698,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Garalon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":643,"6":643,"22":3869}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":670,"6":670,"22":3921},"upgradeStep":1}}}, +{"id":89961,"name":"Shadow Heart Spaulders","icon":"inv_shoulder_leather_raidrogue_l_01","type":3,"armorType":2,"stats":[0,787,1301,0,0,0,547,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2142,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":400,"7":382,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":505,"7":483,"22":2086}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":526,"7":503,"22":2114},"upgradeStep":1}}}, +{"id":89962,"name":"Hood of Dark Dreams","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1751,927,0,0,0,451,0,0,0,787,0,0,0,0,0,0,0,0,0,0,3229,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":303,"11":565,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":844,"7":409,"11":724,"22":3144}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":885,"7":430,"11":755,"22":3186},"upgradeStep":1}}}, +{"id":89963,"name":"Legplates of Regal Reinforcement","icon":"inv_pants_plate_raidwarrior_l_01","type":9,"armorType":4,"stats":[1007,0,1751,0,0,0,0,0,0,710,679,0,0,0,0,0,0,0,0,0,0,0,4749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Grand Empress Shek'zeer"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":512,"10":488,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":924,"2":1626,"9":654,"10":624,"22":4623}},"487":{"randPropPoints":2139,"stats":{"0":965,"2":1687,"9":681,"10":651,"22":4686},"upgradeStep":1}}}, +{"id":89964,"name":"Stonefang Chestguard","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,934,1641,0,0,0,751,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1523,"6":691,"8":434,"22":3777}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1581,"6":721,"8":454,"22":3830},"upgradeStep":1}}}, +{"id":89965,"name":"Ruby-Linked Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,733,0,372,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":289,"11":454,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"5":342,"11":533,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"5":357,"11":555,"22":1216},"upgradeStep":1}}}, +{"id":89966,"name":"Claws of Amethyst","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1219,733,0,0,549,0,0,0,0,422,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Stone Guard"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":431,"11":330,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"6":506,"11":389,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"6":527,"11":406,"22":1352},"upgradeStep":1}}}, +{"id":89967,"name":"Feng's Seal of Binding","icon":"inv_jewelry_ring_144","type":11,"stats":[0,610,914,0,0,0,412,0,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"11":317}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"6":383,"11":368}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"6":397,"11":381},"upgradeStep":1}}}, +{"id":89968,"name":"Feng's Ring of Dreams","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,914,610,357,0,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Feng the Accursed"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"11":349}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":331,"11":405}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":343,"11":420},"upgradeStep":1}}}, +{"id":89969,"name":"Bonded Soul Bracers","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[610,0,914,0,0,0,0,430,366,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Gara'jal the Spiritbinder"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":344,"8":293,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"7":399,"8":340,"22":2257}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"7":414,"8":353,"22":2288},"upgradeStep":1}}}, +{"id":89970,"name":"Bracers of Violent Meditation","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,610,914,0,0,347,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"6":353,"22":1122}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"5":322,"6":410,"22":1188}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"5":334,"6":425,"22":1204},"upgradeStep":1}}}, +{"id":89971,"name":"Mindshard Drape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,914,610,0,0,396,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"The Spirit Kings"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"11":330,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":368,"11":383,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"6":381,"11":397,"22":1081},"upgradeStep":1}}}, +{"id":89972,"name":"Band of Bursting Novas","icon":"inv_misc_epicring_a1","type":11,"stats":[610,0,914,0,0,0,0,0,442,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":353,"9":277}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"8":410,"9":322}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"8":425,"9":334},"upgradeStep":1}}}, +{"id":89973,"name":"Galaxyfire Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,733,541,0,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":424,"6":340,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":674,"4":499,"6":401,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":703,"4":520,"6":418,"22":1216},"upgradeStep":1}}}, +{"id":89974,"name":"Crown of Keening Stars","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[0,0,1641,854,600,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Elegon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":452,"6":468,"22":3959}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":775,"4":547,"6":560,"22":4191}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":814,"4":573,"6":585,"22":4250},"upgradeStep":1}}}, +{"id":89975,"name":"Dreadeye Gaze","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,854,1641,0,0,682,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":525,"7":372,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1523,"5":626,"7":454,"22":3069}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1581,"5":654,"7":476,"22":3112},"upgradeStep":1}}}, +{"id":89976,"name":"Chestguard of Eternal Vigilance","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[671,0,1641,0,0,0,0,0,474,0,1014,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"8":363,"10":795,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":611,"2":1523,"8":434,"10":935,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":641,"2":1581,"8":454,"10":974,"22":5230},"upgradeStep":1}}}, +{"id":89977,"name":"Enameled Grips of Solemnity","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,1219,813,603,0,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6125,"otherName":"Will of the Emperor"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":482,"6":349,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":560,"6":405,"22":2361}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":581,"6":421,"22":2394},"upgradeStep":1}}}, +{"id":89978,"name":"Legguards of Failing Purification","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1007,1751,0,0,622,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"11":537,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"5":571,"11":685,"22":2433}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"5":596,"11":714,"22":2466},"upgradeStep":1}}}, +{"id":89979,"name":"Waterborne Shoulderguards","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,787,1301,0,0,0,555,0,509,0,0,0,0,0,0,0,0,0,0,0,0,0,2980,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"8":372,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":513,"8":470,"22":2902}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":534,"8":489,"22":2941},"upgradeStep":1}}}, +{"id":89980,"name":"Gauntlets of the Shadow's Caress","icon":"inv_gauntlets_leather_raidrogue_l_01","type":7,"armorType":2,"stats":[0,787,1301,0,0,0,495,564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":361,"7":412,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":725,"2":1208,"6":457,"7":520,"22":1738}},"487":{"randPropPoints":1589,"stats":{"1":756,"2":1254,"6":476,"7":542,"22":1761},"upgradeStep":1}}}, +{"id":89981,"name":"Grasps of Serpentine Might","icon":"inv_gauntlets_plate_raiddeathknight_l_01","type":7,"armorType":4,"stats":[579,0,1301,0,0,0,0,0,399,0,827,0,0,0,0,0,0,0,0,0,0,0,3392,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"8":289,"10":609,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":532,"2":1208,"8":368,"10":765,"22":3302}},"487":{"randPropPoints":1589,"stats":{"0":555,"2":1254,"8":383,"10":796,"22":3347},"upgradeStep":1}}}, +{"id":89982,"name":"Shoulderpads of Twisted Fate","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,1301,787,0,546,0,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":401,"7":385,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":725,"5":505,"7":489,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":1253,"3":756,"5":525,"7":509,"22":1661},"upgradeStep":1}}}, +{"id":89983,"name":"Fear-Blackened Leggings","icon":"inv_pants_leather_raiddruid_l_01","type":9,"armorType":2,"stats":[0,0,1751,1007,733,0,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2499,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Tsulong"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"6":460,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":675,"6":589,"22":2433}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":703,"6":614,"22":2466},"upgradeStep":1}}}, +{"id":89984,"name":"Robes of Pinioned Eyes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1751,1007,776,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":562,"11":404,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":924,"4":715,"11":520,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":1687,"3":965,"4":745,"11":542,"22":2214},"upgradeStep":1}}}, +{"id":89985,"name":"Wrap of Instant Petrification","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1007,1751,0,0,511,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":363,"6":585,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":924,"2":1626,"5":469,"6":744,"22":2781}},"487":{"randPropPoints":2139,"stats":{"1":965,"2":1687,"5":490,"6":775,"22":2818},"upgradeStep":1}}}, +{"id":89986,"name":"Shadowgrip Girdle","icon":"inv_belt_mail_dungeonmail_c_05","type":8,"armorType":3,"stats":[0,707,1301,0,0,0,548,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2235,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Sha of Fear"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":391,"7":290,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":645,"2":1208,"6":503,"7":378,"22":2176}},"487":{"randPropPoints":1589,"stats":{"1":676,"2":1254,"6":525,"7":395,"22":2206},"upgradeStep":1}}}, +{"id":90010,"name":"Cranedancer's Staff","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1195,797,0,0,0,539,0,0,0,518,0,0,4563,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"stats":{"2":1195,"3":797,"7":539,"11":518,"14":4563},"isBase":true}}}, +{"id":90011,"name":"Staff of the White Tigerlord","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,797,1195,0,0,428,0,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"stats":{"1":797,"2":1195,"5":428,"7":592},"isBase":true}}}, +{"id":90012,"name":"Staff of Ox-Hoof Thunder","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,797,1195,0,0,0,0,547,0,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"stats":{"1":797,"2":1195,"7":547,"9":505},"isBase":true}}}, +{"id":90017,"name":"Theramore Arcanist's Hat","icon":"inv_misc_desecrated_clothhelm","type":1,"armorType":1,"stats":[0,0,646,431,287,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"4":287,"6":287,"22":1167},"isBase":true}}}, +{"id":90018,"name":"Squallshaper's Hat","icon":"inv_misc_desecrated_clothhelm","type":1,"armorType":1,"stats":[0,0,646,431,0,287,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"5":287,"11":287,"22":1167},"isBase":true}}}, +{"id":90019,"name":"Rok'nah Hag's Hat","icon":"inv_misc_desecrated_clothhelm","type":1,"armorType":1,"stats":[0,0,646,431,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"6":287,"7":287,"22":1167},"isBase":true}}}, +{"id":90020,"name":"Rok'nah Skirmisher's Helm","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":2,"stats":[0,431,646,0,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":431,"2":646,"6":287,"7":287,"22":1519},"isBase":true}}}, +{"id":90021,"name":"Rok'nah Raider's Helm","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":2,"stats":[0,0,646,431,287,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"4":287,"7":287,"22":1519},"isBase":true}}}, +{"id":90022,"name":"Rok'nah Wolfstalker's Helm","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":3,"stats":[0,371,646,0,0,0,257,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"1":371,"2":646,"6":257,"7":257,"22":2160},"isBase":true}}}, +{"id":90023,"name":"Rok'nah Wolfcaller's Helm","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":3,"stats":[0,0,646,431,259,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,2160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"4":259,"11":304,"22":2160},"isBase":true}}}, +{"id":90024,"name":"Silver Circlet","icon":"inv_crown_02","type":1,"armorType":4,"stats":[0,0,646,431,287,0,0,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"2":646,"3":431,"4":287,"11":287,"22":2995},"isBase":true}}}, +{"id":90025,"name":"Black Circlet","icon":"inv_crown_02","type":1,"armorType":4,"stats":[431,0,646,0,0,0,287,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"6":287,"11":287,"22":2995},"isBase":true}}}, +{"id":90026,"name":"Golden Circlet","icon":"inv_crown_02","type":1,"armorType":4,"stats":[431,0,646,0,0,0,0,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,2995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"stats":{"0":431,"2":646,"9":287,"10":287,"22":2995},"isBase":true}}}, +{"id":90027,"name":"Skirmisher's Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,431,646,0,0,0,287,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4154,"weaponDamageMax":6232,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4154,"weaponDamageMax":6232,"stats":{"1":431,"2":646,"6":287,"7":287},"isBase":true}}}, +{"id":90028,"name":"Overseer's Handaxe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1307,"weaponDamageMax":2428,"weaponSpeed":1.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1307,"weaponDamageMax":2428,"stats":{"1":185,"2":277,"6":123,"11":123},"isBase":true}}}, +{"id":90029,"name":"Marine's Rifle","icon":"inv_weapon_rifle_41","type":14,"rangedWeaponType":3,"stats":[0,431,646,0,0,0,287,0,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4563,"weaponDamageMax":4564,"weaponSpeed":2.9,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4563,"weaponDamageMax":4564,"stats":{"1":431,"2":646,"6":287,"11":287},"isBase":true}}}, +{"id":90030,"name":"Captain's Cutlass","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[185,0,277,0,0,0,0,0,0,123,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"9":123,"10":123},"isBase":true}}}, +{"id":90031,"name":"Staff of the Faithful","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,287,0,0,287,0,0,0,0,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"stats":{"2":646,"3":431,"4":287,"7":287,"14":2467},"isBase":true}}}, +{"id":90032,"name":"Grunt's Greataxe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[431,0,646,0,0,0,0,287,0,0,0,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"weaponSpeed":3.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":4532,"weaponDamageMax":6798,"stats":{"0":431,"2":646,"7":287,"11":287},"isBase":true}}}, +{"id":90033,"name":"Marksman's Blade","icon":"ability_steelmelee","type":13,"weaponType":2,"handType":2,"stats":[0,185,277,0,0,123,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":1307,"weaponDamageMax":2428,"weaponSpeed":1.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":1307,"weaponDamageMax":2428,"stats":{"1":185,"2":277,"5":123,"6":123},"isBase":true}}}, +{"id":90034,"name":"Archmage's Staff","icon":"inv_staff_85","type":13,"weaponType":8,"handType":4,"stats":[0,0,646,431,0,287,0,0,0,0,0,287,0,0,2467,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"weaponSpeed":3.3,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":819,"weaponDamageMin":2077,"weaponDamageMax":3116,"stats":{"2":646,"3":431,"5":287,"11":287,"14":2467},"isBase":true}}}, +{"id":90035,"name":"Sailor's Scimitar","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[185,0,277,0,0,123,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"weaponSpeed":2.6,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":351,"weaponDamageMin":2124,"weaponDamageMax":3945,"stats":{"0":185,"2":277,"5":123,"7":123},"isBase":true}}}, +{"id":90036,"name":"Blood Guard's Shield","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,360,240,160,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,12302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":384,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"384":{"randPropPoints":456,"stats":{"2":360,"3":240,"4":160,"11":160,"22":12302},"isBase":true}}}, +{"id":90076,"name":"Boggeo's Thorns","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,454,302,0,0,0,222,0,0,0,167,0,0,4041,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1204,"weaponDamageMax":2238,"weaponSpeed":1.8,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":1204,"weaponDamageMax":2238,"stats":{"2":454,"3":302,"7":222,"11":167,"14":4041},"isBase":true}}}, +{"id":90077,"name":"Oracle's Blade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,454,302,211,0,187,0,0,0,0,0,0,0,4041,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1204,"weaponDamageMax":2238,"weaponSpeed":1.8,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":575,"weaponDamageMin":1204,"weaponDamageMax":2238,"stats":{"2":454,"3":302,"4":211,"6":187,"14":4041},"isBase":true}}}, +{"id":90087,"name":"Lobstmourne","icon":"inv_misc_birdbeck_02","type":13,"weaponType":3,"handType":2,"stats":[0,341,512,0,0,244,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"5":244,"11":200},"isBase":true}}}, +{"id":90104,"name":"Wakener's Light","icon":"inv_offhand_1h_pandariaquest_b_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,590,393,262,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"4":262,"6":262},"isBase":true}}}, +{"id":90105,"name":"Chronicle of a Hundred Wars","icon":"inv_offhand_1h_pandariatradeskill_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,590,393,0,0,0,262,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":748,"ilvl":437,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"437":{"randPropPoints":748,"stats":{"2":590,"3":393,"7":262,"11":262},"isBase":true}}}, +{"id":90118,"name":"Bland Blade","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2830,"weaponDamageMin":24463,"weaponDamageMax":24463,"weaponSpeed":2.6,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":6160,"weaponDamageMax":6161},"600":{"randPropPoints":2627,"weaponDamageMin":22706,"weaponDamageMax":22706},"604":{"randPropPoints":2727,"weaponDamageMin":23568,"weaponDamageMax":23569,"upgradeStep":1}}}, +{"id":90176,"name":"Flintlocke's Blasthammer","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,1167,1751,0,0,0,801,740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":8956,"weaponDamageMax":16633,"weaponSpeed":3,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"6":600,"7":554}},"483":{"randPropPoints":2061,"weaponDamageMin":8312,"weaponDamageMax":15438,"stats":{"1":1084,"2":1626,"6":744,"7":687}},"487":{"randPropPoints":2139,"weaponDamageMin":8628,"weaponDamageMax":16024,"stats":{"1":1125,"2":1687,"6":772,"7":713},"upgradeStep":1}}}, +{"id":90285,"name":"Peacebreaker's Leather Helm","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":1439},"isBase":true}}}, +{"id":90286,"name":"Peacebreaker's Ringmail Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,0,578,385,195,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":195,"7":293,"22":2071},"isBase":true}}}, +{"id":90287,"name":"Peacebreaker's Hide Helm","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1439},"isBase":true}}}, +{"id":90288,"name":"Peacebreaker's Satin Cowl","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,578,385,238,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":238,"7":268,"22":1093},"isBase":true}}}, +{"id":90289,"name":"Peacebreaker's Silk Cowl","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,578,385,0,0,283,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"7":213,"22":1093},"isBase":true}}}, +{"id":90290,"name":"Peacebreaker's Chain Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":2071},"isBase":true}}}, +{"id":90292,"name":"Peacebreaker's Burnished Headcover","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,578,385,244,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":244,"6":265,"22":2891},"isBase":true}}}, +{"id":90293,"name":"Peacebreaker's Armored Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[385,0,578,0,0,257,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":257,"11":257,"22":2891},"isBase":true}}}, +{"id":90294,"name":"Peacebreaker's Heavy Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,207,0,286,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"9":207,"11":286,"22":2891},"isBase":true}}}, +{"id":90295,"name":"Leather Tunic of Eminent Domain","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":1771},"isBase":true}}}, +{"id":90296,"name":"Chain Armor of Eminent Domain","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,385,578,0,0,0,244,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":244,"11":265,"22":2548},"isBase":true}}}, +{"id":90297,"name":"Silk Robe of Eminent Domain","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,578,385,0,0,0,272,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"7":272,"11":232,"22":1346},"isBase":true}}}, +{"id":90298,"name":"Satin Robe of Eminent Domain","icon":"inv_chest_robe_common_c_01v2","type":5,"armorType":1,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1346},"isBase":true}}}, +{"id":90299,"name":"Hide Tunic of Eminent Domain","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,578,385,0,0,265,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":265,"7":244,"22":1771},"isBase":true}}}, +{"id":90300,"name":"Ringmail Armor of Eminent Domain","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,578,385,213,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"6":283,"22":2548},"isBase":true}}}, +{"id":90301,"name":"Burnished Chestguard of Eminent Domain","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,578,385,290,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90302,"name":"Armored Chestpiece of Eminent Domain","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[385,0,578,0,0,0,290,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"6":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90303,"name":"Heavy Chestpiece of Eminent Domain","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,290,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90304,"name":"Honorary Combat Engineer's Leather Trousers","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,385,578,0,0,0,207,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":207,"7":286,"22":1550},"isBase":true}}}, +{"id":90305,"name":"Honorary Combat Engineer's Chain Leggings","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":2230},"isBase":true}}}, +{"id":90306,"name":"Honorary Combat Engineer's Silk Trousers","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,578,385,0,0,290,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":290,"7":201,"22":1177},"isBase":true}}}, +{"id":90307,"name":"Honorary Combat Engineer's Satin Leggings","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,578,385,0,0,283,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"11":213,"22":1177},"isBase":true}}}, +{"id":90308,"name":"Honorary Combat Engineer's Hide Leggings","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,578,385,268,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":268,"11":238,"22":1550},"isBase":true}}}, +{"id":90309,"name":"Honorary Combat Engineer's Ringmail Leggings","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,578,385,213,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"11":283,"22":2230},"isBase":true}}}, +{"id":90310,"name":"Honorary Combat Engineer's Burnished Legplates","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,578,385,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":232,"7":272,"22":3114},"isBase":true}}}, +{"id":90311,"name":"Honorary Combat Engineer's Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[385,0,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"7":195,"11":293,"22":3114},"isBase":true}}}, +{"id":90312,"name":"Honorary Combat Engineer's Heavy Legplates","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[385,0,578,0,0,232,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":232,"8":272,"22":3114},"isBase":true}}}, +{"id":90313,"name":"Landfall Leather Boots","icon":"inv_boots_leather_03a","type":10,"armorType":2,"stats":[0,286,429,0,0,0,0,0,167,0,0,205,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"8":167,"11":205,"22":1218},"isBase":true}}}, +{"id":90314,"name":"Landfall Chain Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,286,429,0,0,0,167,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":167,"11":205,"22":1752},"isBase":true}}}, +{"id":90315,"name":"Landfall Silk Treads","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,429,286,0,0,215,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"11":149,"22":925},"isBase":true}}}, +{"id":90316,"name":"Landfall Satin Treads","icon":"inv_boots_leather_04b","type":10,"armorType":1,"stats":[0,0,429,286,0,0,212,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":212,"7":154,"22":925},"isBase":true}}}, +{"id":90317,"name":"Landfall Moccasins","icon":"inv_boots_leather_04b","type":10,"armorType":2,"stats":[0,0,429,286,181,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":181,"7":196,"22":1218},"isBase":true}}}, +{"id":90318,"name":"Landfall Sabatons","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,429,286,149,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":149,"6":215,"22":1752},"isBase":true}}}, +{"id":90319,"name":"Landfall Burnished Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,429,286,202,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":202,"6":172,"22":2447},"isBase":true}}}, +{"id":90320,"name":"Landfall Warboots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[286,0,429,0,0,0,215,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":215,"8":149,"22":2447},"isBase":true}}}, +{"id":90321,"name":"Landfall Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,202,172,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":202,"11":172,"22":2447},"isBase":true}}}, +{"id":90322,"name":"Parachute Cord Slicer","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,118,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":118,"11":97},"isBase":true}}}, +{"id":90323,"name":"Spare Gunship Cannon","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,385,578,0,0,0,238,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"stats":{"1":385,"2":578,"6":238,"7":268},"isBase":true}}}, +{"id":90324,"name":"Land Claimer's Cudgel","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,0,94,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"7":94,"11":120},"isBase":true}}}, +{"id":90325,"name":"Staff of the Mist Navigator","icon":"inv_weapon_halberd_31","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,232,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"stats":{"1":385,"2":578,"6":232,"11":272},"isBase":true}}}, +{"id":90326,"name":"Staff of Rolling Thunder","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,0,261,0,0,0,251,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"7":261,"11":251,"14":2208},"isBase":true}}}, +{"id":90327,"name":"Stormcaller's Warclub","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,248,165,117,0,0,99,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"4":117,"7":99,"14":2207},"isBase":true}}}, +{"id":90328,"name":"Trench Medic's Staff","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,257,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"4":257,"11":257,"14":2208},"isBase":true}}}, +{"id":90329,"name":"Garrosh's Vanguard Battleaxe","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,115,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":115,"7":102},"isBase":true}}}, +{"id":90330,"name":"Smoldering Gunship Strut","icon":"inv_mace_104","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,276,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"7":276,"11":225},"isBase":true}}}, +{"id":90331,"name":"Face Smasher Warhammer","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,99,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"9":99,"10":117},"isBase":true}}}, +{"id":90332,"name":"Zin'jun's Dwarf-Cleaver","icon":"inv_axe_35","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,89,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":89,"11":123},"isBase":true}}}, +{"id":90333,"name":"Scavenged Rotor Blade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,113,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":113,"7":105},"isBase":true}}}, +{"id":90334,"name":"Cannonball-Dented Shield","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,155,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":155,"11":122,"22":12103},"isBase":true}}}, +{"id":90335,"name":"Hozen-Thunking Mace","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,99,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"7":99,"11":117},"isBase":true}}}, +{"id":90336,"name":"Gunship Armory Greataxe","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[385,0,578,0,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":232,"7":272},"isBase":true}}}, +{"id":90337,"name":"Marine's Boarding Plank","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,161,112,0,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":161,"10":112,"22":12103},"isBase":true}}}, +{"id":90338,"name":"Peacebreaker's Leather Helm","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":1439},"isBase":true}}}, +{"id":90339,"name":"Peacebreaker's Chain Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,385,578,0,0,290,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"5":290,"11":201,"22":2071},"isBase":true}}}, +{"id":90340,"name":"Peacebreaker's Silk Cowl","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,578,385,0,0,283,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"7":213,"22":1093},"isBase":true}}}, +{"id":90341,"name":"Peacebreaker's Satin Hood","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,578,385,238,0,0,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":238,"7":268,"22":1093},"isBase":true}}}, +{"id":90342,"name":"Peacebreaker's Hide Helm","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1439},"isBase":true}}}, +{"id":90343,"name":"Peacebreaker's Ringmail Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,578,385,195,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":195,"7":293,"22":2071},"isBase":true}}}, +{"id":90344,"name":"Peacebreaker's Burnished Headcover","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,578,385,244,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":244,"6":265,"22":2891},"isBase":true}}}, +{"id":90345,"name":"Peacebreaker's Armored Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[385,0,578,0,0,257,0,0,0,0,0,257,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":257,"11":257,"22":2891},"isBase":true}}}, +{"id":90346,"name":"Peacebreaker's Heavy Helm","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,207,0,286,0,0,0,0,0,0,0,0,0,0,2891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"9":207,"11":286,"22":2891},"isBase":true}}}, +{"id":90347,"name":"Leather Tunic of Eminent Domain","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":1771},"isBase":true}}}, +{"id":90348,"name":"Chain Armor of Eminent Domain","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,385,578,0,0,0,244,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":244,"11":265,"22":2548},"isBase":true}}}, +{"id":90349,"name":"Silk Robe of Eminent Domain","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,578,385,0,0,0,272,0,0,0,232,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"7":272,"11":232,"22":1346},"isBase":true}}}, +{"id":90350,"name":"Satin Robe of Eminent Domain","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,578,385,225,0,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":225,"6":276,"22":1346},"isBase":true}}}, +{"id":90351,"name":"Hide Robe of Eminent Domain","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,578,385,0,0,265,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":265,"7":244,"22":1771},"isBase":true}}}, +{"id":90352,"name":"Ringmail Armor of Eminent Domain","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,578,385,213,0,283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"6":283,"22":2548},"isBase":true}}}, +{"id":90353,"name":"Burnished Chestguard of Eminent Domain","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,578,385,290,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90354,"name":"Armored Chestpiece of Eminent Domain","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[385,0,578,0,0,0,290,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"6":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90355,"name":"Heavy Chestpiece of Eminent Domain","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[385,0,578,0,0,0,0,0,0,0,290,201,0,0,0,0,0,0,0,0,0,0,3559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"10":290,"11":201,"22":3559},"isBase":true}}}, +{"id":90356,"name":"Honorary Combat Engineer's Leather Trousers","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,385,578,0,0,0,207,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"6":207,"7":286,"22":1550},"isBase":true}}}, +{"id":90357,"name":"Honorary Combat Engineer's Chain Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,385,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"1":385,"2":578,"7":195,"11":293,"22":2230},"isBase":true}}}, +{"id":90358,"name":"Honorary Combat Engineer's Silk Trousers","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,578,385,0,0,290,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":290,"7":201,"22":1177},"isBase":true}}}, +{"id":90359,"name":"Honorary Combat Engineer's Satin Leggings","icon":"inv_pants_plate_23","type":9,"armorType":1,"stats":[0,0,578,385,0,0,283,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":283,"11":213,"22":1177},"isBase":true}}}, +{"id":90360,"name":"Honorary Combat Engineer's Hide Leggings","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,578,385,268,0,0,0,0,0,0,238,0,0,0,0,0,0,0,0,0,0,1550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":268,"11":238,"22":1550},"isBase":true}}}, +{"id":90361,"name":"Honorary Combat Engineer's Ringmail Kilt","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,578,385,213,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"4":213,"11":283,"22":2230},"isBase":true}}}, +{"id":90362,"name":"Honorary Combat Engineer's Burnished Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,578,385,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"2":578,"3":385,"6":232,"7":272,"22":3114},"isBase":true}}}, +{"id":90363,"name":"Honorary Combat Engineer's Legplates","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[385,0,578,0,0,0,0,195,0,0,0,293,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"7":195,"11":293,"22":3114},"isBase":true}}}, +{"id":90364,"name":"Honorary Combat Engineer's Heavy Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[385,0,578,0,0,232,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,3114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"stats":{"0":385,"2":578,"5":232,"8":272,"22":3114},"isBase":true}}}, +{"id":90365,"name":"Landfall Leather Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,286,429,0,0,0,0,0,167,0,0,205,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"8":167,"11":205,"22":1218},"isBase":true}}}, +{"id":90366,"name":"Landfall Chain Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,286,429,0,0,0,167,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"1":286,"2":429,"6":167,"11":205,"22":1752},"isBase":true}}}, +{"id":90367,"name":"Landfall Silk Treads","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,429,286,0,0,215,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":215,"11":149,"22":925},"isBase":true}}}, +{"id":90368,"name":"Landfall Satin Treads","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,429,286,0,0,212,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"6":212,"7":154,"22":925},"isBase":true}}}, +{"id":90369,"name":"Landfall Moccasins","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,429,286,181,0,0,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":181,"7":196,"22":1218},"isBase":true}}}, +{"id":90370,"name":"Landfall Sabatons","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,429,286,149,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":149,"6":215,"22":1752},"isBase":true}}}, +{"id":90371,"name":"Landfall Burnished Greaves","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,429,286,202,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"2":429,"3":286,"4":202,"6":172,"22":2447},"isBase":true}}}, +{"id":90372,"name":"Landfall Warboots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[286,0,429,0,0,0,215,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"6":215,"8":149,"22":2447},"isBase":true}}}, +{"id":90373,"name":"Landfall Plate Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[286,0,429,0,0,0,0,0,0,0,202,172,0,0,0,0,0,0,0,0,0,0,2447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":544,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"randPropPoints":544,"stats":{"0":286,"2":429,"10":202,"11":172,"22":2447},"isBase":true}}}, +{"id":90374,"name":"Sully's Hotwiring Knife","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,118,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":118,"11":97},"isBase":true}}}, +{"id":90375,"name":"Airship Marine's Sharpshooter","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,385,578,0,0,0,238,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"weaponSpeed":2.9,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":2856,"weaponDamageMax":5305,"stats":{"1":385,"2":578,"6":238,"7":268},"isBase":true}}}, +{"id":90376,"name":"Barricade-Breaker Cudgel","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,165,248,0,0,0,0,94,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"7":94,"11":120},"isBase":true}}}, +{"id":90377,"name":"Fogcutter Staff","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,385,578,0,0,0,232,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":3715,"weaponDamageMax":5573,"stats":{"1":385,"2":578,"6":232,"11":272},"isBase":true}}}, +{"id":90378,"name":"Staff of the Skymagi","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,0,0,0,261,0,0,0,251,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"7":261,"11":251,"14":2208},"isBase":true}}}, +{"id":90379,"name":"Mystic Perpetual Motion Mace","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,248,165,117,0,0,99,0,0,0,0,0,0,2207,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":1.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":248,"3":165,"4":117,"7":99,"14":2207},"isBase":true}}}, +{"id":90380,"name":"Skyfire Medic's Staff","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,578,385,257,0,0,0,0,0,0,257,0,0,2208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"weaponSpeed":3.3,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":1857,"weaponDamageMax":2786,"stats":{"2":578,"3":385,"4":257,"11":257,"14":2208},"isBase":true}}}, +{"id":90381,"name":"Shock Trooper Battleaxe","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[165,0,248,0,0,0,115,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"6":115,"7":102},"isBase":true}}}, +{"id":90382,"name":"Captain Rogers' Polite Knocking Stick","icon":"inv_mace_106","type":13,"weaponType":4,"handType":4,"stats":[385,0,578,0,0,0,0,276,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"7":276,"11":225},"isBase":true}}}, +{"id":90383,"name":"Skyfire Trooper's Mace","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[165,0,248,0,0,0,0,0,0,99,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"9":99,"10":117},"isBase":true}}}, +{"id":90384,"name":"Peon-Chopping Axe","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,165,248,0,0,0,89,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"1":165,"2":248,"6":89,"11":123},"isBase":true}}}, +{"id":90385,"name":"Mishka's Bandage Cutter","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,165,248,0,0,0,113,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"weaponSpeed":1.8,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1315,"weaponDamageMax":2442,"stats":{"1":165,"2":248,"6":113,"7":105},"isBase":true}}}, +{"id":90386,"name":"Recovery Team Shield","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,322,215,155,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":408,"stats":{"2":322,"3":215,"4":155,"11":122,"22":12103},"isBase":true}}}, +{"id":90387,"name":"Crashed Gyrocopter Rotor","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[165,0,248,0,0,0,0,99,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"weaponSpeed":2.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":314,"weaponDamageMin":1899,"weaponDamageMax":3528,"stats":{"0":165,"2":248,"7":99,"11":117},"isBase":true}}}, +{"id":90388,"name":"Greatsword of Kofinna Kottr","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[385,0,578,0,0,0,232,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"weaponSpeed":3.6,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":733,"weaponDamageMin":4052,"weaponDamageMax":6079,"stats":{"0":385,"2":578,"6":232,"7":272},"isBase":true}}}, +{"id":90389,"name":"Skyguardian's Shield","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[215,0,322,0,0,0,0,0,0,161,112,0,0,0,0,0,0,0,0,0,0,0,12103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":408,"ilvl":372,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"randPropPoints":408,"stats":{"0":215,"2":322,"9":161,"10":112,"22":12103},"isBase":true}}}, +{"id":90408,"name":"Free Spirit Hood","icon":"inv_helmet_cloth_challengepriest_d_01","type":1,"armorType":1,"stats":[0,0,1977,1078,633,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":388,"7":498,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":581,"7":753,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":606,"7":787,"22":1877},"upgradeStep":1}}}, +{"id":90409,"name":"Sky-Sear Cowl","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,686,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":434,"6":458,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"5":632,"6":710,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"5":658,"6":744,"22":1877},"upgradeStep":1}}}, +{"id":90410,"name":"Cap of Wandering Pride","icon":"inv_helmet_leather_raiddruid_k_01","type":1,"armorType":2,"stats":[0,0,1977,1078,847,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":529,"6":368,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":779,"6":571,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":812,"6":599,"22":2389},"upgradeStep":1}}}, +{"id":90411,"name":"Facemask of Unrepentant Banditry","icon":"inv_helmet_leather_raidrogue_l_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,837,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":529,"11":380,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"5":772,"11":595,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"5":804,"11":624,"22":2389},"upgradeStep":1}}}, +{"id":90412,"name":"Helm of Restoring Wind","icon":"inv_helm_mail_raidshaman_l_01","type":1,"armorType":3,"stats":[0,0,1977,1078,737,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":448,"6":472,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":675,"6":708,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":705,"6":739,"22":3325},"upgradeStep":1}}}, +{"id":90413,"name":"Crest of the Grand Warband","icon":"inv_helmet_mail_dungeonmail_c_05","type":1,"armorType":3,"stats":[0,1078,1977,0,0,867,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":542,"6":344,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"5":797,"6":537,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"5":831,"6":562,"22":3325},"upgradeStep":1}}}, +{"id":90414,"name":"Greathelm of the Monstrous Mushan","icon":"inv_helm_plate_raiddeathknight_k_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,890,0,548,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":557,"8":316,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"6":819,"8":498,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"6":854,"8":523,"22":4540},"upgradeStep":1}}}, +{"id":90415,"name":"Giantfoot Headguard","icon":"inv_helm_plate_raidwarrior_l_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,0,739,0,779,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"11":483,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"9":675,"11":715,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"9":706,"11":746,"22":4540},"upgradeStep":1}}}, +{"id":90416,"name":"Crown of Ranging Invasion","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,1977,1078,528,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":303,"6":565,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"4":480,"6":830,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"4":503,"6":865,"22":4540},"upgradeStep":1}}}, +{"id":90417,"name":"Robes of Blue Skies","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,1977,1158,837,0,0,0,0,0,0,733,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":529,"11":460,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":772,"11":675,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":804,"11":704,"22":2311},"upgradeStep":1}}}, +{"id":90418,"name":"Robes of the Lightning Rider","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,887,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":562,"7":404,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"5":817,"7":597,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"5":851,"7":622,"22":2311},"upgradeStep":1}}}, +{"id":90419,"name":"Fireproofed Chestguard","icon":"inv_chest_leather_raidmonk_l_01","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,922,0,0,0,0,588,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":850,"11":540,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":885,"11":563,"22":2941},"upgradeStep":1}}}, +{"id":90420,"name":"Flameshot Wrap","icon":"inv_chest_leather_raidrogue_l_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,863,0,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":545,"8":432,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"5":795,"8":635,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"5":828,"8":663,"22":2941},"upgradeStep":1}}}, +{"id":90421,"name":"Chain of Unsiezed Skies","icon":"inv_chest_mail_raidhunter_l_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,0,910,0,0,0,608,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":577,"11":376,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"7":839,"11":558,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"7":874,"11":583,"22":4092},"upgradeStep":1}}}, +{"id":90422,"name":"Armor of the Single Cloud","icon":"inv_chest_mail_raidshaman_l_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,777,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":488,"11":512,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":715,"11":748,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":745,"11":779,"22":4092},"upgradeStep":1}}}, +{"id":90423,"name":"Chestguard of the Unbowed Back","icon":"inv_chest_plate_raidpaladin_l_01","type":5,"armorType":4,"stats":[0,0,1977,1158,588,0,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":363,"7":585,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":540,"7":850,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":563,"7":885,"22":5588},"upgradeStep":1}}}, +{"id":90424,"name":"Ravaging Warrior's Chestplate","icon":"inv_chest_plate_raiddeathknight_l_01","type":5,"armorType":4,"stats":[842,0,1977,0,0,0,0,0,588,1238,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"8":363,"9":795,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":770,"2":1835,"8":540,"9":1143,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":805,"2":1904,"8":563,"9":1190,"22":5588},"upgradeStep":1}}}, +{"id":90425,"name":"Carapace of Crushed Conviction","icon":"inv_chest_plate_raidwarrior_l_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,887,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":562,"8":404,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"5":817,"8":597,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"5":851,"8":622,"22":5588},"upgradeStep":1}}}, +{"id":90429,"name":"Necklace of Imbued Fury","icon":"inv_jewelry_necklace_95","type":2,"stats":[0,0,1101,734,0,453,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":421,"11":474}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":437,"11":492},"upgradeStep":1}}}, +{"id":90430,"name":"Stomphowl Pendant","icon":"inv_jewelry_necklace_108","type":2,"stats":[0,0,1101,734,518,0,0,441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":481,"7":410}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":499,"7":425},"upgradeStep":1}}}, +{"id":90431,"name":"Saddlebinder Links","icon":"inv_jewelry_necklace_97","type":2,"stats":[558,0,1101,0,0,372,0,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"5":247,"9":488}},"496":{"randPropPoints":1296,"stats":{"0":518,"2":1022,"5":345,"9":682}},"500":{"randPropPoints":1345,"stats":{"0":538,"2":1061,"5":358,"9":707},"upgradeStep":1}}}, +{"id":90432,"name":"Hellrider's Choker","icon":"inv_jewelry_necklace_100","type":2,"stats":[0,734,1101,0,0,489,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"6":325}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":454,"6":454}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":472,"6":472},"upgradeStep":1}}}, +{"id":90433,"name":"Mushan Rider's Collar","icon":"inv_jewelry_necklace_100","type":2,"stats":[734,0,1101,0,0,0,0,372,0,0,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":247,"11":371}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":345,"11":518}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":358,"11":538},"upgradeStep":1}}}, +{"id":90434,"name":"Steaming Seal of Flame","icon":"inv_jewelry_ring_150","type":11,"stats":[0,0,1101,734,532,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"6":277}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":494,"6":388}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":512,"6":402},"upgradeStep":1}}}, +{"id":90435,"name":"Ring of Wretched Flames","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,1101,734,0,395,0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":262,"7":362}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":366,"7":506}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":380,"7":525},"upgradeStep":1}}}, +{"id":90436,"name":"Circle of Scaled Fury","icon":"inv_jewelry_ring_149","type":11,"stats":[734,0,1101,0,0,0,0,0,0,453,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":301,"10":339}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"9":421,"10":474}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"9":437,"10":492},"upgradeStep":1}}}, +{"id":90437,"name":"Hereditary Saurok Loop","icon":"inv_jewelry_ring_145","type":11,"stats":[0,734,1101,0,0,465,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":309,"7":335}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":432,"7":468}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":448,"7":486},"upgradeStep":1}}}, +{"id":90438,"name":"Signet of the Bandit Lord","icon":"inv_misc_epicring_b2","type":11,"stats":[734,0,1101,0,0,0,372,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":247,"8":371}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":345,"8":518}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":358,"8":538},"upgradeStep":1}}}, +{"id":90439,"name":"Open Steppe Sandals","icon":"inv_boot_bracer_raidmage_l_01","type":10,"armorType":1,"stats":[0,0,1469,979,0,589,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":390,"6":458,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"5":546,"6":641,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"5":567,"6":665,"22":1588},"upgradeStep":1}}}, +{"id":90440,"name":"Slippers of Fiery Retribution","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,1469,979,744,0,0,0,0,0,0,496,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":494,"11":329,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":691,"11":460,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":717,"11":478,"22":1588},"upgradeStep":1}}}, +{"id":90441,"name":"Stompdodger Boots","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1469,979,0,0,620,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":412,"11":446,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"6":576,"11":624,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"6":597,"11":647,"22":2022},"upgradeStep":1}}}, +{"id":90442,"name":"Flamefoot Tabi","icon":"inv_boot_leather_raidrogue_l_01","type":10,"armorType":2,"stats":[0,979,1469,0,0,557,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":370,"7":471,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":517,"7":658,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":536,"7":683,"22":2022},"upgradeStep":1}}}, +{"id":90443,"name":"Burnmender Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1469,979,700,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"6":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":650,"6":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":674,"6":552,"22":2813},"upgradeStep":1}}}, +{"id":90444,"name":"Treads of Gentle Nudges","icon":"inv_boot_mail_raidhunter_l_01","type":10,"armorType":3,"stats":[0,979,1469,0,0,653,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":433,"11":433,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":606,"11":606,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":629,"11":629,"22":2813},"upgradeStep":1}}}, +{"id":90445,"name":"Firerider Treads","icon":"inv_boot_plate_raidpaladin_l_01","type":10,"armorType":4,"stats":[0,0,1469,979,636,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":422,"7":440,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":591,"7":615,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":613,"7":638,"22":3842},"upgradeStep":1}}}, +{"id":90446,"name":"Silverspur Warboots","icon":"inv_boots_plate_raidwarrior_l_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,718,542,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":476,"10":359,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"9":667,"10":503,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"9":692,"10":522,"22":3842},"upgradeStep":1}}}, +{"id":90447,"name":"Stompers of Vigorous Stomping","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,663,0,636,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":440,"8":422,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":615,"8":591,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":638,"8":613,"22":3842},"upgradeStep":1}}}, +{"id":90448,"name":"Cannonfire Cord","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,1469,899,533,0,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"7":424,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":492,"7":610,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":512,"7":634,"22":1300},"upgradeStep":1}}}, +{"id":90449,"name":"Belt of Detonation","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,613,613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":393,"6":393,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":566,"6":566,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":589,"6":589,"22":1300},"upgradeStep":1}}}, +{"id":90450,"name":"Carrot-Holder Belt","icon":"inv_belt_leather_raiddruid_l_01","type":8,"armorType":2,"stats":[0,0,1469,899,687,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":635,"6":449,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":660,"6":467,"22":1654},"upgradeStep":1}}}, +{"id":90451,"name":"Cannoneer's Gunpowder Carrier","icon":"inv_belt_leather_raidrogue_l_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,669,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":431,"11":330,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":618,"11":477,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":643,"11":496,"22":1654},"upgradeStep":1}}}, +{"id":90452,"name":"Sparkmaker Girdle","icon":"inv_belt_mail_raidshaman_l_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,0,486,0,0,0,687,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":309,"11":442,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":449,"11":635,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":467,"11":660,"22":2302},"upgradeStep":1}}}, +{"id":90453,"name":"Girdle of the Raging Rider","icon":"inv_belt_mail_raidhunter_l_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,0,642,0,0,0,564,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":412,"11":361,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":593,"11":521,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":616,"11":542,"22":2302},"upgradeStep":1}}}, +{"id":90454,"name":"Girdle of the Galloping Giant","icon":"inv_belt_plate_raidpaladin_l_01","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,0,613,0,0,0,613,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":393,"11":393,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":566,"11":566,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":589,"11":589,"22":3143},"upgradeStep":1}}}, +{"id":90455,"name":"Greatbelt of Livid Fury","icon":"inv_belt_plate_raiddeathknight_l_01","type":8,"armorType":4,"stats":[620,0,1469,0,0,533,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":384,"2":974,"5":340,"9":609,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":570,"2":1363,"5":492,"9":869,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":594,"2":1414,"5":512,"9":903,"22":3143},"upgradeStep":1}}}, +{"id":90456,"name":"Cord of Crazed Strength","icon":"inv_belt_plate_raidwarrior_l_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,669,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Salyis's Warband"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":431,"11":330,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":618,"11":477,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":643,"11":496,"22":3143},"upgradeStep":1}}}, +{"id":90459,"name":"Liuyang's Light-Lit Longshank","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,341,512,0,0,0,222,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"weaponSpeed":1.8,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"stats":{"1":341,"2":512,"6":222,"11":231},"isBase":true}}}, +{"id":90460,"name":"Cloudbender Kobo's Chilled Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,797,1195,0,0,0,0,404,0,0,0,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":8440,"weaponDamageMax":8441,"weaponSpeed":2.9,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":8440,"weaponDamageMax":8441,"stats":{"1":797,"2":1195,"7":404,"11":606},"isBase":true}}}, +{"id":90461,"name":"Jol'Grum's Frozen Mace","icon":"inv_mace_1h_pandung_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,512,341,183,0,253,0,0,0,0,0,0,0,4561,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1208,"weaponDamageMax":2245,"weaponSpeed":1.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":1208,"weaponDamageMax":2245,"stats":{"2":512,"3":341,"4":183,"6":253,"14":4561},"isBase":true}}}, +{"id":90462,"name":"Liuyang's Lovely Longstaff","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1195,797,0,0,0,555,0,0,0,492,0,0,4563,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":3842,"weaponDamageMax":5763,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":3842,"weaponDamageMax":5763,"stats":{"2":1195,"3":797,"7":555,"11":492,"14":4563},"isBase":true}}}, +{"id":90463,"name":"Chagan's Cheery Chopper","icon":"inv_axe_1h_pandung_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,341,512,0,0,0,250,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"6":250,"7":189},"isBase":true}}}, +{"id":90464,"name":"Satay's Stabbing Sword","icon":"inv_sword_2h_pandung_c_01","type":13,"weaponType":9,"handType":4,"stats":[797,0,1195,0,0,0,505,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"stats":{"0":797,"2":1195,"6":505,"7":547},"isBase":true}}}, +{"id":90465,"name":"Scar-Shell's Scintillating Staff","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,797,1195,0,0,0,0,492,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"weaponSpeed":3.3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":7684,"weaponDamageMax":11526,"stats":{"1":797,"2":1195,"7":492,"11":555},"isBase":true}}}, +{"id":90466,"name":"Maki's Mashing Mace","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[341,0,512,0,0,0,0,0,244,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"0":341,"2":512,"8":244,"11":200},"isBase":true}}}, +{"id":90467,"name":"Bureaucrat's Handbook","icon":"inv_offhand_1h_pandariatradeskill_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,476,318,212,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":212,"7":212},"isBase":true}}}, +{"id":90468,"name":"Mayor's Hand Fan","icon":"inv_offhand_1h_pandariatradeskill_c_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,476,318,0,0,212,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":212,"7":212},"isBase":true}}}, +{"id":90472,"name":"Windwool Belt","icon":"inv_belt_cloth_panda_b_01_green","type":8,"armorType":1,"stats":[0,0,641,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"2":641,"3":427,"22":946},"isBase":true}}}, +{"id":90473,"name":"Windwool Boots","icon":"inv_boots_cloth_panda_b_01_green","type":10,"armorType":1,"stats":[0,0,641,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"2":641,"3":427,"22":1156},"isBase":true}}}, +{"id":90474,"name":"Windwool Bracers","icon":"inv_bracer_cloth_panda_b_01_green","type":6,"armorType":1,"stats":[0,0,480,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"stats":{"2":480,"3":320,"22":736},"isBase":true}}}, +{"id":90475,"name":"Windwool Pants","icon":"inv_pants_cloth_panda_b_01_green","type":9,"armorType":1,"stats":[0,0,863,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"2":863,"3":575,"22":1471},"isBase":true}}}, +{"id":90476,"name":"Windwool Gloves","icon":"inv_gloves_cloth_panda_b_01_green","type":7,"armorType":1,"stats":[0,0,641,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"2":641,"3":427,"22":1051},"isBase":true}}}, +{"id":90477,"name":"Windwool Tunic","icon":"inv_chest_cloth_panda_b_01_green","type":5,"armorType":1,"stats":[0,0,863,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1681,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"2":863,"3":575,"22":1681},"isBase":true}}}, +{"id":90478,"name":"Windwool Shoulders","icon":"inv_shoulder_cloth_panda_b_01_green","type":3,"armorType":1,"stats":[0,0,641,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"2":641,"3":427,"22":1261},"isBase":true}}}, +{"id":90479,"name":"Windwool Hood","icon":"inv_helmet_cloth_panda_b_01_green","type":1,"armorType":1,"stats":[0,0,863,575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"2":863,"3":575,"22":1366},"isBase":true}}}, +{"id":90480,"name":"Stormscale Belt","icon":"inv_belt_mail_panda_b_01green","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1675},"isBase":true}}}, +{"id":90481,"name":"Stormscale Boots","icon":"inv_boots_mail_panda_b_01green","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":2047},"isBase":true}}}, +{"id":90482,"name":"Stormscale Bracers","icon":"inv_bracer_mail_panda_b_01green","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"stats":{"22":1303},"isBase":true}}}, +{"id":90483,"name":"Stormscale Chestguard","icon":"inv_chest_mail_panda_b_01green","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":2978},"isBase":true}}}, +{"id":90484,"name":"Stormscale Gloves","icon":"inv_gauntlets_mail_panda_b_01green","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1861,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1861},"isBase":true}}}, +{"id":90485,"name":"Stormscale Helm","icon":"inv_helmet_mail_panda_b_01green","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":2419},"isBase":true}}}, +{"id":90486,"name":"Stormscale Leggings","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":2605},"isBase":true}}}, +{"id":90487,"name":"Stormscale Shoulders","icon":"inv_shoulder_mail_panda_b_01green","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":2233},"isBase":true}}}, +{"id":90488,"name":"Shomi's Crane","icon":"inv_offhand_1h_pandariaquest_b_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,476,318,0,0,212,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"6":212,"11":212},"isBase":true}}}, +{"id":90489,"name":"Shomi's Fan","icon":"inv_offhand_1h_pandariatradeskill_c_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,476,318,212,0,0,0,0,0,0,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":604,"ilvl":414,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"414":{"randPropPoints":604,"stats":{"2":476,"3":318,"4":212,"11":212},"isBase":true}}}, +{"id":90490,"name":"Misthide Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1605},"isBase":true}}}, +{"id":90491,"name":"Misthide Leggings","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":1872},"isBase":true}}}, +{"id":90492,"name":"Misthide Helm","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":1739},"isBase":true}}}, +{"id":90493,"name":"Misthide Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1337},"isBase":true}}}, +{"id":90494,"name":"Misthide Chestguard","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1094,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":1094,"stats":{"22":2140},"isBase":true}}}, +{"id":90495,"name":"Misthide Bracers","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"stats":{"22":936},"isBase":true}}}, +{"id":90496,"name":"Misthide Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1471},"isBase":true}}}, +{"id":90497,"name":"Misthide Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":812,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":812,"stats":{"22":1204},"isBase":true}}}, +{"id":90503,"name":"Regail's Band of the Endless","icon":"inv_jewelry_ring_143","type":11,"stats":[0,885,1327,0,0,0,616,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"7":301}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231,"6":571,"7":507}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279,"6":593,"7":526},"upgradeStep":1}}}, +{"id":90504,"name":"Legguards of Failing Purification","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1428,2382,0,0,874,0,0,0,0,0,1040,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"11":537,"22":2243}},"516":{"randPropPoints":2802,"stats":{"1":1314,"2":2210,"5":806,"11":960,"22":2705}},"520":{"randPropPoints":2909,"stats":{"1":1370,"2":2295,"5":840,"11":1000,"22":2738},"upgradeStep":1}}}, +{"id":90505,"name":"Waterborne Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_05","type":3,"armorType":3,"stats":[0,1100,1770,0,0,0,770,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"8":372,"22":2676}},"516":{"randPropPoints":2082,"stats":{"1":1015,"2":1642,"6":712,"8":654,"22":3226}},"520":{"randPropPoints":2161,"stats":{"1":1056,"2":1705,"6":740,"8":680,"22":3266},"upgradeStep":1}}}, +{"id":90506,"name":"Bracers of Defiled Earth","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[885,0,1327,0,0,448,0,0,0,0,0,672,0,0,0,0,0,0,0,0,0,0,2633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"11":371,"22":2132}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"5":416,"11":624,"22":2570}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"5":432,"11":648,"22":2602},"upgradeStep":1}}}, +{"id":90507,"name":"Deepwater Greatboots","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[817,0,1770,0,0,566,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,4137,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":297,"10":601,"22":3350}},"516":{"randPropPoints":2082,"stats":{"0":752,"2":1642,"5":523,"10":1047,"22":4039}},"520":{"randPropPoints":2161,"stats":{"0":784,"2":1705,"5":544,"10":1088,"22":4088},"upgradeStep":1}}}, +{"id":90508,"name":"Shackle of Eversparks","icon":"inv_jewelry_necklace_111","type":2,"stats":[885,0,1327,0,0,641,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"8":277}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"5":595,"8":467}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"5":618,"8":485},"upgradeStep":1}}}, +{"id":90509,"name":"Kaolan's Withering Necklace","icon":"inv_jewelry_necklace_105","type":2,"stats":[885,0,1327,0,0,0,0,0,0,590,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"9":547,"10":547}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"9":568,"10":568},"upgradeStep":1}}}, +{"id":90510,"name":"Cuffs of the Corrupted Waters","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1327,885,590,0,0,0,0,0,0,590,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":881}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"4":547,"11":547,"22":1063}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"4":568,"11":568,"22":1076},"upgradeStep":1}}}, +{"id":90511,"name":"Watersoul Signet","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1327,885,517,0,0,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"4":480,"7":587}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"4":499,"7":610},"upgradeStep":1}}}, +{"id":90512,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1327,885,0,0,0,560,0,0,0,607,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"7":520,"11":564,"22":1214}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"7":540,"11":585,"22":1229},"upgradeStep":1}}}, +{"id":90513,"name":"Regail's Crackling Dagger","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1021,601,0,0,358,0,0,0,0,447,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2710,"weaponDamageMax":5033,"weaponSpeed":1.8,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"6":179,"11":228,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2515,"weaponDamageMax":4671,"stats":{"2":947,"3":552,"6":329,"11":412,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2610,"weaponDamageMax":4849,"stats":{"2":984,"3":576,"6":344,"11":429,"14":8764},"upgradeStep":1}}}, +{"id":90514,"name":"Asani's Uncleansed Sandals","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1770,1100,699,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"7":414,"22":1763}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1015,"4":646,"7":720,"22":2125}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1056,"4":672,"7":748,"22":2151},"upgradeStep":1}}}, +{"id":90515,"name":"Lightning Prisoner's Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1770,1100,550,0,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":281,"7":462,"22":2453}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1015,"4":507,"7":800,"22":2957}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1056,"4":528,"7":832,"22":2993},"upgradeStep":1}}}, +{"id":90516,"name":"Casque of Expelled Corruption","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,2381,1348,840,0,0,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1234,"4":770,"7":926,"22":4773}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1290,"4":804,"7":965,"22":4831},"upgradeStep":1}}}, +{"id":90517,"name":"Regail's Band of the Endless","icon":"inv_jewelry_ring_143","type":11,"stats":[0,784,1175,0,0,0,545,484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":339,"7":301}},"503":{"randPropPoints":1383,"stats":{"1":727,"2":1091,"6":506,"7":449}},"507":{"randPropPoints":1436,"stats":{"1":755,"2":1133,"6":526,"7":466},"upgradeStep":1}}}, +{"id":90518,"name":"Legguards of Failing Purification","icon":"inv_pants_leather_raidrogue_l_01","type":9,"armorType":2,"stats":[0,1247,2110,0,0,766,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,2664,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2675,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"11":537,"22":2243}},"503":{"randPropPoints":2483,"stats":{"1":1146,"2":1959,"5":705,"11":841,"22":2598}},"507":{"randPropPoints":2577,"stats":{"1":1195,"2":2033,"5":735,"11":876,"22":2631},"upgradeStep":1}}}, +{"id":90519,"name":"Waterborne Shoulderguards","icon":"inv_shoulder_mail_raidshaman_l_01","type":3,"armorType":3,"stats":[0,965,1568,0,0,0,677,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,3177,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1987,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":406,"8":372,"22":2676}},"503":{"randPropPoints":1844,"stats":{"1":890,"2":1455,"6":626,"8":574,"22":3098}},"507":{"randPropPoints":1914,"stats":{"1":927,"2":1510,"6":651,"8":598,"22":3138},"upgradeStep":1}}}, +{"id":90520,"name":"Bracers of Defiled Earth","icon":"inv_bracer_plate_raiddeathknight_l_01","type":6,"armorType":4,"stats":[784,0,1175,0,0,397,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,2531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"11":371,"22":2132}},"503":{"randPropPoints":1383,"stats":{"0":727,"2":1091,"5":368,"11":553,"22":2468}},"507":{"randPropPoints":1436,"stats":{"0":755,"2":1133,"5":383,"11":574,"22":2500},"upgradeStep":1}}}, +{"id":90521,"name":"Deepwater Greatboots","icon":"inv_boots_plate_raiddeathknight_l_01","type":10,"armorType":4,"stats":[714,0,1568,0,0,497,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,0,3977,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1987,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":414,"2":974,"5":297,"10":601,"22":3350}},"503":{"randPropPoints":1844,"stats":{"0":657,"2":1455,"5":459,"10":922,"22":3879}},"507":{"randPropPoints":1914,"stats":{"0":685,"2":1510,"5":478,"10":959,"22":3928},"upgradeStep":1}}}, +{"id":90522,"name":"Shackle of Eversparks","icon":"inv_jewelry_necklace_111","type":2,"stats":[784,0,1175,0,0,568,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"8":277}},"503":{"randPropPoints":1383,"stats":{"0":727,"2":1091,"5":527,"8":414}},"507":{"randPropPoints":1436,"stats":{"0":755,"2":1133,"5":547,"8":430},"upgradeStep":1}}}, +{"id":90523,"name":"Kaolan's Withering Necklace","icon":"inv_jewelry_necklace_105","type":2,"stats":[784,0,1175,0,0,0,0,0,0,522,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"503":{"randPropPoints":1383,"stats":{"0":727,"2":1091,"9":485,"10":485}},"507":{"randPropPoints":1436,"stats":{"0":755,"2":1133,"9":503,"10":503},"upgradeStep":1}}}, +{"id":90524,"name":"Cuffs of the Corrupted Waters","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,1175,784,522,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":881}},"503":{"randPropPoints":1383,"stats":{"2":1091,"3":727,"4":485,"11":485,"22":1021}},"507":{"randPropPoints":1436,"stats":{"2":1133,"3":755,"4":503,"11":503,"22":1034},"upgradeStep":1}}}, +{"id":90525,"name":"Watersoul Signet","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,1175,784,458,0,0,560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"7":349}},"503":{"randPropPoints":1383,"stats":{"2":1091,"3":727,"4":425,"7":520}},"507":{"randPropPoints":1436,"stats":{"2":1133,"3":755,"4":442,"7":540},"upgradeStep":1}}}, +{"id":90526,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1175,784,0,0,0,496,0,0,0,538,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"503":{"randPropPoints":1383,"stats":{"2":1091,"3":727,"7":461,"11":499,"22":1166}},"507":{"randPropPoints":1436,"stats":{"2":1133,"3":755,"7":478,"11":518,"22":1181},"upgradeStep":1}}}, +{"id":90527,"name":"Regail's Crackling Dagger","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,904,523,0,0,313,0,0,0,0,391,0,0,8054,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1146,"weaponDamageMin":2400,"weaponDamageMax":4459,"weaponSpeed":1.8,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"6":179,"11":228,"14":5011}},"503":{"randPropPoints":1064,"weaponDamageMin":2228,"weaponDamageMax":4139,"stats":{"2":839,"3":480,"6":287,"11":360,"14":7478}},"507":{"randPropPoints":1104,"weaponDamageMin":2313,"weaponDamageMax":4296,"stats":{"2":871,"3":501,"6":300,"11":375,"14":7759},"upgradeStep":1}}}, +{"id":90528,"name":"Asani's Uncleansed Sandals","icon":"inv_boots_leather_raiddruid_l_01","type":10,"armorType":2,"stats":[0,0,1568,965,614,0,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1987,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":364,"7":414,"22":1763}},"503":{"randPropPoints":1844,"stats":{"2":1455,"3":890,"4":566,"7":634,"22":2041}},"507":{"randPropPoints":1914,"stats":{"2":1510,"3":927,"4":590,"7":659,"22":2067},"upgradeStep":1}}}, +{"id":90529,"name":"Lightning Prisoner's Boots","icon":"inv_boots_mail_raidshaman_l_01","type":10,"armorType":3,"stats":[0,0,1568,965,481,0,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1987,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":281,"7":462,"22":2453}},"503":{"randPropPoints":1844,"stats":{"2":1455,"3":890,"4":443,"7":705,"22":2840}},"507":{"randPropPoints":1914,"stats":{"2":1510,"3":927,"4":462,"7":733,"22":2876},"upgradeStep":1}}}, +{"id":90530,"name":"Casque of Expelled Corruption","icon":"inv_helmet_plate_raidpaladin_l_01","type":1,"armorType":4,"stats":[0,0,2110,1167,728,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4700,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2675,"ilvl":503,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6067,"otherName":"Protectors of the Endless"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":400,"7":509,"22":3959}},"503":{"randPropPoints":2483,"stats":{"2":1959,"3":1066,"4":666,"7":809,"22":4584}},"507":{"randPropPoints":2577,"stats":{"2":2033,"3":1115,"4":696,"7":843,"22":4642},"upgradeStep":1}}}, +{"id":90542,"name":"Safari Journal","icon":"inv_offhand_1h_pandariatradeskill_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,414,276,0,0,184,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"11":184},"isBase":true}}}, +{"id":90545,"name":"Safari Lantern","icon":"inv_offhand_1h_pandariaquest_b_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,414,276,184,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":184,"7":184},"isBase":true}}}, +{"id":90546,"name":"Red Crane Scepter","icon":"inv_offhand_1h_pandariaquest_b_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,414,276,184,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"4":184,"6":184},"isBase":true}}}, +{"id":90547,"name":"Lantern of Hope","icon":"inv_offhand_1h_pandariaquest_b_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,414,276,0,0,184,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":525,"ilvl":399,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"399":{"randPropPoints":525,"stats":{"2":414,"3":276,"6":184,"7":184},"isBase":true}}}, +{"id":90570,"name":"Legguards of Sleeting Arrows","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,1094,1641,0,0,657,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"5":526,"11":617,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":1015,"2":1522,"5":610,"11":716,"22":3305}},"480":{"randPropPoints":2004,"stats":{"1":1054,"2":1581,"5":633,"11":744,"22":3351},"upgradeStep":1}}}, +{"id":90571,"name":"Scroll of Whispered Secrets","icon":"inv_misc_book_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,430,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":399,"11":340}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":414,"11":353},"upgradeStep":1}}}, +{"id":90572,"name":"Kilt of Pandaren Promises","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,1641,1094,657,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":526,"7":617,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":1015,"4":610,"7":716,"22":3305}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":1054,"4":633,"7":744,"22":3351},"upgradeStep":1}}}, +{"id":90573,"name":"Wang's Unshakable Smile","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,1641,1094,640,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":512,"7":625,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":1015,"4":594,"7":726,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":1054,"4":616,"7":754,"22":1757},"upgradeStep":1}}}, +{"id":90574,"name":"Etoshia's Elegant Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,1219,813,581,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"7":380,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":539,"7":441,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":560,"7":458,"22":1352},"upgradeStep":1}}}, +{"id":90575,"name":"Sutiru's Brazen Bulwark","icon":"inv_shield_pandung_c_01","type":13,"weaponType":7,"handType":3,"stats":[610,0,914,0,0,0,0,0,0,0,366,430,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":293,"11":344,"22":15628}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"10":340,"11":399,"22":16546}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"10":353,"11":414,"22":16776},"upgradeStep":1}}}, +{"id":90576,"name":"Spaulders of the Scorned","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[813,0,1219,0,0,0,0,0,0,0,488,573,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"10":390,"11":458,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":754,"2":1131,"10":453,"11":532,"22":3869}},"480":{"randPropPoints":1489,"stats":{"0":783,"2":1175,"10":471,"11":553,"22":3923},"upgradeStep":1}}}, +{"id":90577,"name":"Boblet's Bouncing Hauberk","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[831,0,1641,0,0,772,0,0,0,0,657,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":665,"2":1312,"5":617,"10":526,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":771,"2":1522,"5":716,"10":610,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":801,"2":1581,"5":744,"10":633,"22":5230},"upgradeStep":1}}}, +{"id":90578,"name":"Zom's Rain-Stained Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[436,0,914,0,0,0,0,0,357,610,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":349,"2":731,"8":285,"9":488,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":405,"2":849,"8":331,"9":566,"22":1066}},"480":{"randPropPoints":1116,"stats":{"0":420,"2":880,"8":343,"9":587,"22":1081},"upgradeStep":1}}}, +{"id":90579,"name":"Legplates of Durable Dreams","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[1094,0,1641,0,0,657,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":526,"7":617,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":1015,"2":1522,"5":610,"7":716,"22":4514}},"480":{"randPropPoints":2004,"stats":{"0":1054,"2":1581,"5":633,"7":744,"22":4576},"upgradeStep":1}}}, +{"id":90580,"name":"Cristof's Crushing Cloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[610,0,914,0,0,0,447,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":358,"7":270,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"6":415,"7":313,"22":1066}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"6":431,"7":325,"22":1081},"upgradeStep":1}}}, +{"id":90581,"name":"Jan-Ho's Unwavering Seal","icon":"inv_misc_epicring_b1","type":11,"stats":[610,0,914,0,0,0,0,412,0,0,0,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":330,"11":317}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"7":383,"11":368}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"7":397,"11":381},"upgradeStep":1}}}, +{"id":90582,"name":"Buc-Zakai Memento","icon":"inv_jewelry_necklace_109","type":2,"stats":[610,0,914,0,0,0,0,347,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":277,"11":353}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"7":322,"11":410}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"7":334,"11":425},"upgradeStep":1}}}, +{"id":90583,"name":"Don Guerrero's Glorious Choker","icon":"inv_jewelry_necklace_112","type":2,"stats":[0,610,914,0,0,0,0,309,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":247,"11":371}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"7":287,"11":430}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"7":297,"11":446},"upgradeStep":1}}}, +{"id":90584,"name":"Perculia's Peculiar Signet","icon":"inv_misc_epicring_a1","type":11,"stats":[0,610,914,0,0,347,0,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"7":353}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"5":322,"7":410}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"5":334,"7":425},"upgradeStep":1}}}, +{"id":90585,"name":"Vulajin's Vicious Breastplate","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,1094,1641,0,0,0,622,0,0,0,0,792,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":498,"11":634,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":1015,"2":1522,"6":577,"11":735,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":1054,"2":1581,"6":600,"11":764,"22":2752},"upgradeStep":1}}}, +{"id":90586,"name":"Dory's Pageantry","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,610,914,0,0,376,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":301,"6":339,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":849,"5":349,"6":394,"22":1066}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"5":362,"6":409,"22":1081},"upgradeStep":1}}}, +{"id":90587,"name":"Natli's Fireheart Robe","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,1641,1094,0,782,657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"5":625,"6":526,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1522,"3":1015,"5":726,"6":610,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1581,"3":1054,"5":754,"6":633,"22":2162},"upgradeStep":1}}}, +{"id":90588,"name":"Rittsyn's Ruinblasters","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,1219,813,0,0,581,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":464,"7":380,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"6":539,"7":441,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"6":560,"7":458,"22":1352},"upgradeStep":1}}}, +{"id":90589,"name":"Dirl's Drafty Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,914,610,386,0,0,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":309,"7":335,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":359,"7":388,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":372,"7":403,"22":1081},"upgradeStep":1}}}, +{"id":90590,"name":"Dorian's Necklace of Burgeoning Dreams","icon":"inv_jewelry_necklace_106","type":2,"stats":[0,0,914,610,0,0,0,430,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":344,"11":293}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"7":399,"11":340}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"7":414,"11":353},"upgradeStep":1}}}, +{"id":90591,"name":"Ring of the Shipwrecked Prince","icon":"inv_misc_epicring_a2","type":11,"stats":[0,0,914,610,0,386,418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"6":335}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"5":359,"6":388}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"5":372,"6":403},"upgradeStep":1}}}, +{"id":90592,"name":"Ferocious Necklace of the Golden Lotus","icon":"inv_jewelry_necklace_114","type":2,"stats":[688,0,1032,0,0,0,348,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":247,"11":371}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"6":323,"11":485}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"6":336,"11":504},"upgradeStep":1}}}, +{"id":90593,"name":"Delicate Necklace of the Golden Lotus","icon":"inv_jewelry_necklace_113","type":2,"stats":[0,688,1032,0,0,0,459,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"11":325}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"6":426,"11":426}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"6":442,"11":442},"upgradeStep":1}}}, +{"id":90594,"name":"Durable Necklace of the Golden Lotus","icon":"inv_jewelry_necklace_107","type":2,"stats":[523,0,1032,0,0,0,0,0,0,0,688,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":371,"2":731,"10":488,"11":247}},"489":{"randPropPoints":1214,"stats":{"0":485,"2":958,"10":638,"11":323}},"493":{"randPropPoints":1260,"stats":{"0":504,"2":994,"10":663,"11":336},"upgradeStep":1}}}, +{"id":90595,"name":"Mending Necklace of the Golden Lotus","icon":"inv_jewelry_necklace_108","type":2,"stats":[0,0,1032,688,485,0,0,0,0,0,0,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":451,"11":384}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":468,"11":398},"upgradeStep":1}}}, +{"id":90596,"name":"Burning Necklace of the Golden Lotus","icon":"inv_jewelry_necklace_103","type":2,"stats":[0,0,1032,688,0,425,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":394,"6":444}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":409,"6":461},"upgradeStep":1}}}, +{"id":90597,"name":"Delicate Chestguard of the Golden Lotus","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,1044,1566,0,0,0,766,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":642,"11":484,"22":2564}},"463":{"randPropPoints":1710,"stats":{"1":899,"2":1349,"6":660,"11":497,"22":2592}},"471":{"randPropPoints":1843,"stats":{"1":969,"2":1454,"6":711,"11":536,"22":2668},"upgradeStep":1}}}, +{"id":90598,"name":"Crackling Chain of the Golden Lotus","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,1566,1044,678,0,706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":568,"6":592,"22":3568}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":899,"4":584,"6":609,"22":3607}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":969,"4":630,"6":656,"22":3712},"upgradeStep":1}}}, +{"id":90599,"name":"Warming Chestguard of the Golden Lotus","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1566,1044,696,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":583,"6":583,"22":2564}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":899,"4":600,"6":600,"22":2592}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":969,"4":646,"6":646,"22":2668},"upgradeStep":1}}}, +{"id":90600,"name":"Ferocious Plate of the Golden Lotus","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[1044,0,1566,0,0,644,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":540,"6":609,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":899,"2":1349,"5":555,"6":626,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":969,"2":1454,"5":598,"6":675,"22":5069},"upgradeStep":1}}}, +{"id":90601,"name":"Bonded Plate of the Golden Lotus","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,1566,1044,747,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":625,"7":512,"22":4872}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":899,"4":643,"7":526,"22":4926}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":969,"4":693,"7":567,"22":5069},"upgradeStep":1}}}, +{"id":90602,"name":"Deadeye Chain of the Golden Lotus","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,1044,1566,0,0,0,561,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":470,"7":649,"22":3568}},"463":{"randPropPoints":1710,"stats":{"1":899,"2":1349,"6":483,"7":668,"22":3607}},"471":{"randPropPoints":1843,"stats":{"1":969,"2":1454,"6":521,"7":720,"22":3712},"upgradeStep":1}}}, +{"id":90603,"name":"Durable Plate of the Golden Lotus","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[1044,0,1566,0,0,0,0,0,0,0,594,756,0,0,0,0,0,0,0,0,0,0,5212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"10":498,"11":634,"22":4872}},"463":{"randPropPoints":1710,"stats":{"0":899,"2":1349,"10":512,"11":652,"22":4926}},"471":{"randPropPoints":1843,"stats":{"0":969,"2":1454,"10":551,"11":702,"22":5069},"upgradeStep":1}}}, +{"id":90607,"name":"Burning Robes of the Golden Lotus","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1566,1044,0,706,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"5":592,"7":568,"22":2014}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":899,"5":609,"7":584,"22":2037}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":969,"5":656,"7":630,"22":2096},"upgradeStep":1}}}, +{"id":90609,"name":"Mending Robes of the Golden Lotus","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,1566,1044,793,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":665,"6":443,"22":2014}},"463":{"randPropPoints":1710,"stats":{"2":1349,"3":899,"4":683,"6":456,"22":2037}},"471":{"randPropPoints":1843,"stats":{"2":1454,"3":969,"4":737,"6":491,"22":2096},"upgradeStep":1}}}, +{"id":90614,"name":"Delicate Mark of the Golden Lotus","icon":"inv_jewelry_ring_138","type":11,"stats":[0,404,607,0,0,263,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"1":404,"2":607,"5":263,"7":274},"isBase":true}}}, +{"id":90615,"name":"Burning Mark of the Golden Lotus","icon":"inv_jewelry_ring_152","type":11,"stats":[0,0,607,404,0,217,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"5":217,"6":300},"isBase":true}}}, +{"id":90616,"name":"Mending Mark of the Golden Lotus","icon":"inv_jewelry_ring_151","type":11,"stats":[0,0,607,404,270,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"2":607,"3":404,"4":270,"7":270},"isBase":true}}}, +{"id":90617,"name":"Ferocious Mark of the Golden Lotus","icon":"inv_jewelry_ring_136","type":11,"stats":[404,0,607,0,0,224,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"5":224,"7":297},"isBase":true}}}, +{"id":90618,"name":"Durable Mark of the Golden Lotus","icon":"inv_jewelry_ring_134","type":11,"stats":[404,0,607,0,0,0,0,0,0,224,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":769,"ilvl":440,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":769,"stats":{"0":404,"2":607,"9":224,"10":297},"isBase":true}}}, +{"id":90717,"name":"Qu'nas' Apocryphal Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[726,0,1088,0,0,0,460,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"6":460,"7":498,"22":3950},"isBase":true}}}, +{"id":90718,"name":"Torik-Ethis' Bloodied Legguards","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[726,0,1088,0,0,0,0,0,0,484,484,0,0,0,0,0,0,0,0,0,0,0,3950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"0":726,"2":1088,"9":484,"10":484,"22":3950},"isBase":true}}}, +{"id":90719,"name":"Go-Kan's Golden Trousers","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,726,1088,0,0,0,424,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"6":424,"7":519,"22":2892},"isBase":true}}}, +{"id":90720,"name":"Silent Leggings of the Ghostpaw","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,726,1088,0,0,0,0,0,460,0,0,498,0,0,0,0,0,0,0,0,0,0,2079,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"1":726,"2":1088,"8":460,"11":498,"22":2079},"isBase":true}}}, +{"id":90721,"name":"Cournith Waterstrider's Silken Finery","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1088,726,0,526,413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"5":526,"6":413,"22":1633},"isBase":true}}}, +{"id":90722,"name":"Torik-Ethis' Gilded Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1088,726,505,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":505,"6":448,"22":3950},"isBase":true}}}, +{"id":90723,"name":"Arness's Scaled Leggings","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1088,726,472,0,0,0,0,0,0,491,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":472,"11":491,"22":2892},"isBase":true}}}, +{"id":90724,"name":"Spriggin's Sproggin' Leggin'","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1088,726,448,0,0,505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2079,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":448,"7":505,"22":2079},"isBase":true}}}, +{"id":90725,"name":"Gaarn's Leggings of Infestation","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1088,726,532,0,0,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1380,"ilvl":440,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"440":{"randPropPoints":1380,"stats":{"2":1088,"3":726,"4":532,"7":401,"22":1633},"isBase":true}}}, +{"id":90738,"name":"Kaz'tik's Stormseizer Gauntlets","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1469,979,691,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"6":390,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":641,"6":546,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":665,"6":567,"22":2557},"upgradeStep":1}}}, +{"id":90739,"name":"Kaz'tik's Stormseizer Gauntlets","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1301,867,612,0,521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"6":390,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":568,"6":484,"22":2418}},"487":{"randPropPoints":1589,"stats":{"2":1254,"3":836,"4":590,"6":502,"22":2451},"upgradeStep":1}}}, +{"id":90740,"name":"Kaz'tik's Stormseizer Gauntlets","icon":"inv_glove_mail_raidshaman_l_01","type":7,"armorType":3,"stats":[0,0,1657,1105,780,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2101,"ilvl":509,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6297,"otherName":"Blade Lord Ta'yak"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"6":390,"22":2230}},"509":{"randPropPoints":1950,"stats":{"2":1538,"3":1026,"4":724,"6":616,"22":2631}},"513":{"randPropPoints":2024,"stats":{"2":1597,"3":1064,"4":751,"6":640,"22":2664},"upgradeStep":1}}}, +{"id":90858,"name":"Seal of the Prime","icon":"inv_jewelry_ring_143","type":11,"stats":[0,0,1032,688,348,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"11":371}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"4":323,"11":485}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"4":336,"11":504},"upgradeStep":1}}}, +{"id":90859,"name":"Seal of the Lucid","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,1032,688,0,523,0,0,0,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"11":247}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":485,"11":323}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":504,"11":336},"upgradeStep":1}}}, +{"id":90860,"name":"Seal of the Unscathed","icon":"inv_jewelry_ring_146","type":11,"stats":[688,0,1032,0,0,0,0,0,0,466,0,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":330,"11":317}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"9":432,"11":415}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"9":448,"11":431},"upgradeStep":1}}}, +{"id":90861,"name":"Seal of the Windreaver","icon":"inv_misc_epicring_b3","type":11,"stats":[0,688,1032,0,0,523,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":371,"6":247}},"489":{"randPropPoints":1214,"stats":{"1":638,"2":958,"5":485,"6":323}},"493":{"randPropPoints":1260,"stats":{"1":663,"2":994,"5":504,"6":336},"upgradeStep":1}}}, +{"id":90862,"name":"Seal of the Bloodseeker","icon":"inv_jewelry_ring_147","type":11,"stats":[688,0,1032,0,0,0,0,348,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":247,"8":371}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":958,"7":323,"8":485}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"7":336,"8":504},"upgradeStep":1}}}, +{"id":90904,"name":"Ornate Band","icon":"inv_jewelry_ring_125","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"isBase":true}}}, +{"id":90905,"name":"Shadowfire Necklace","icon":"inv_jewelry_necklace_109","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":609,"ilvl":415,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"415":{"randPropPoints":609,"isBase":true}}}, +{"id":90906,"name":"Treads of Ardent Antagonism","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,813,1219,0,0,0,550,0,0,0,0,528,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":440,"11":422,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"6":510,"11":490,"22":2597}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"6":530,"11":509,"22":2633},"upgradeStep":1}}}, +{"id":90907,"name":"Boots of Unbreakable Umbrage","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1219,813,0,0,502,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":401,"11":452,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"6":465,"11":525,"22":2597}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"6":483,"11":545,"22":2633},"upgradeStep":1}}}, +{"id":90908,"name":"Crushing Treads of Anger","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1219,813,542,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":503,"11":503,"22":1866}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":522,"11":522,"22":1892},"upgradeStep":1}}}, +{"id":90909,"name":"Intemperate Greatboots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1219,813,573,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"6":390,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":532,"6":453,"22":3547}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":553,"6":471,"22":3596},"upgradeStep":1}}}, +{"id":90910,"name":"Mindfire Sollerets","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[813,0,1219,0,0,0,0,0,0,581,475,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":464,"10":380,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":754,"2":1131,"9":539,"10":441,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":783,"2":1175,"9":560,"10":458,"22":3596},"upgradeStep":1}}}, +{"id":90911,"name":"Furyheart Treads","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1219,813,475,0,0,0,0,0,0,581,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"11":464,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":441,"11":539,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":458,"11":560,"22":1487},"upgradeStep":1}}}, +{"id":90912,"name":"Angerforged Stompers","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[813,0,1219,0,0,0,0,618,0,0,0,412,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"7":494,"11":329,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":754,"2":1131,"7":573,"11":382,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":783,"2":1175,"7":595,"11":397,"22":3596},"upgradeStep":1}}}, +{"id":90913,"name":"Sandals of the Shadow","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1219,813,0,515,0,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":412,"7":446,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"5":478,"7":518,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"5":496,"7":538,"22":1487},"upgradeStep":1}}}, +{"id":90914,"name":"Boots of Raging Haze","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,813,1219,0,0,0,462,0,0,0,0,589,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":370,"11":471,"22":1763}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"6":429,"11":546,"22":1866}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"6":446,"11":567,"22":1892},"upgradeStep":1}}}, +{"id":91087,"name":"Tyrannical Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias2_c_01alliance","type":13,"weaponType":1,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91088,"name":"Tyrannical Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias2_c_01silver","type":13,"weaponType":1,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91089,"name":"Tyrannical Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91090,"name":"Tyrannical Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91091,"name":"Tyrannical Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91092,"name":"Tyrannical Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91093,"name":"Tyrannical Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91094,"name":"Tyrannical Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91095,"name":"Tyrannical Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91096,"name":"Tyrannical Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91097,"name":"Tyrannical Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91098,"name":"Tyrannical Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91099,"name":"Tyrannical Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91100,"name":"Tyrannical Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":91101,"name":"Tyrannical Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":91102,"name":"Tyrannical Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":91103,"name":"Tyrannical Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":399,"11":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":414,"11":506},"upgradeStep":1}}}, +{"id":91104,"name":"Tyrannical Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91105,"name":"Tyrannical Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":91106,"name":"Tyrannical Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":91107,"name":"Tyrannical Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91108,"name":"Tyrannical Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91109,"name":"Tyrannical Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1300},"upgradeStep":1}}}, +{"id":91110,"name":"Tyrannical Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1300},"upgradeStep":1}}}, +{"id":91111,"name":"Tyrannical Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_f_01belt","type":8,"armorType":1,"stats":[0,0,1469,899,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":91112,"name":"Tyrannical Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_f_01belt","type":8,"armorType":1,"stats":[0,0,1469,899,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":91113,"name":"Tyrannical Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":91114,"name":"Tyrannical Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":91115,"name":"Tyrannical Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":91116,"name":"Tyrannical Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":91117,"name":"Tyrannical Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_f_01boot","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":1588},"upgradeStep":1}}}, +{"id":91118,"name":"Tyrannical Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_f_01boot","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":1588},"upgradeStep":1}}}, +{"id":91119,"name":"Tyrannical Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":91120,"name":"Tyrannical Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":91121,"name":"Tyrannical Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_f_01bracer","type":6,"armorType":1,"stats":[0,0,1101,734,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":91122,"name":"Tyrannical Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1011},"upgradeStep":1}}}, +{"id":91123,"name":"Tyrannical Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":91124,"name":"Tyrannical Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":91125,"name":"Tyrannical Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":91126,"name":"Tyrannical Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1155},"upgradeStep":1}}}, +{"id":91127,"name":"Tyrannical Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias2_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480},"upgradeStep":1}}}, +{"id":91128,"name":"Tyrannical Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias2_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480},"upgradeStep":1}}}, +{"id":91129,"name":"Tyrannical Gladiator's Barrier","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91130,"name":"Tyrannical Gladiator's Barrier","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91131,"name":"Tyrannical Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91132,"name":"Tyrannical Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91133,"name":"Tyrannical Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias2_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,0,0,895,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"6":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"6":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":91134,"name":"Tyrannical Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias2_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,0,0,895,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"6":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"6":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":91135,"name":"Tyrannical Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":91136,"name":"Tyrannical Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":506,"11":414},"upgradeStep":1}}}, +{"id":91137,"name":"Tyrannical Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":91138,"name":"Tyrannical Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":91139,"name":"Tyrannical Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"7":414},"upgradeStep":1}}}, +{"id":91140,"name":"Tyrannical Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":91141,"name":"Tyrannical Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480},"upgradeStep":1}}}, +{"id":91142,"name":"Tyrannical Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480},"upgradeStep":1}}}, +{"id":91143,"name":"Tyrannical Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91144,"name":"Tyrannical Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91145,"name":"Tyrannical Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91146,"name":"Tyrannical Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91147,"name":"Tyrannical Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91148,"name":"Tyrannical Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91149,"name":"Tyrannical Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91150,"name":"Tyrannical Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91151,"name":"Tyrannical Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91152,"name":"Tyrannical Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91153,"name":"Tyrannical Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91154,"name":"Tyrannical Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91155,"name":"Tyrannical Gladiator's Dreadplate Shoulders","icon":"inv_shoulders_plate_pvpdeathknight_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91156,"name":"Tyrannical Gladiator's Dreadplate Shoulders","icon":"inv_shoulders_plate_pvpdeathknight_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91157,"name":"Tyrannical Gladiator's Dragonhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91158,"name":"Tyrannical Gladiator's Dragonhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91159,"name":"Tyrannical Gladiator's Dragonhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91160,"name":"Tyrannical Gladiator's Dragonhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91161,"name":"Tyrannical Gladiator's Dragonhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91162,"name":"Tyrannical Gladiator's Dragonhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91163,"name":"Tyrannical Gladiator's Dragonhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91164,"name":"Tyrannical Gladiator's Dragonhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91165,"name":"Tyrannical Gladiator's Dragonhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91166,"name":"Tyrannical Gladiator's Dragonhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91167,"name":"Tyrannical Gladiator's Belt of Meditation","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":91168,"name":"Tyrannical Gladiator's Belt of Meditation","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":91169,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":91170,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":91171,"name":"Tyrannical Gladiator's Bindings of Meditation","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":91172,"name":"Tyrannical Gladiator's Kodohide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":91173,"name":"Tyrannical Gladiator's Kodohide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":91174,"name":"Tyrannical Gladiator's Kodohide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91175,"name":"Tyrannical Gladiator's Kodohide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91176,"name":"Tyrannical Gladiator's Kodohide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":91177,"name":"Tyrannical Gladiator's Kodohide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":91178,"name":"Tyrannical Gladiator's Kodohide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91179,"name":"Tyrannical Gladiator's Kodohide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91180,"name":"Tyrannical Gladiator's Kodohide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91181,"name":"Tyrannical Gladiator's Kodohide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91182,"name":"Tyrannical Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03alliance","type":13,"weaponType":8,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":7847,"weaponDamageMax":11771,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":7560,"weaponDamageMax":11340,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91183,"name":"Tyrannical Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03red","type":13,"weaponType":8,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":7847,"weaponDamageMax":11771,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":7560,"weaponDamageMax":11340,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91184,"name":"Tyrannical Gladiator's Belt of Cruelty","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":91185,"name":"Tyrannical Gladiator's Belt of Cruelty","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":91186,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":91187,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":91188,"name":"Tyrannical Gladiator's Bindings of Prowess","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1287},"upgradeStep":1}}}, +{"id":91189,"name":"Tyrannical Gladiator's Wyrmhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91190,"name":"Tyrannical Gladiator's Wyrmhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91191,"name":"Tyrannical Gladiator's Wyrmhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":2389},"upgradeStep":1}}}, +{"id":91192,"name":"Tyrannical Gladiator's Wyrmhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":2389},"upgradeStep":1}}}, +{"id":91193,"name":"Tyrannical Gladiator's Wyrmhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2573},"upgradeStep":1}}}, +{"id":91194,"name":"Tyrannical Gladiator's Wyrmhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2573},"upgradeStep":1}}}, +{"id":91195,"name":"Tyrannical Gladiator's Wyrmhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91196,"name":"Tyrannical Gladiator's Wyrmhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91197,"name":"Tyrannical Gladiator's Wyrmhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91198,"name":"Tyrannical Gladiator's Wyrmhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91199,"name":"Tyrannical Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91200,"name":"Tyrannical Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91201,"name":"Tyrannical Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91202,"name":"Tyrannical Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91203,"name":"Tyrannical Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91204,"name":"Tyrannical Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91205,"name":"Tyrannical Gladiator's Redoubt","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91206,"name":"Tyrannical Gladiator's Redoubt","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91207,"name":"Tyrannical Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias2_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,895,0,0,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"4":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"4":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":91208,"name":"Tyrannical Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias2_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,895,0,0,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"4":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"4":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":91209,"name":"Tyrannical Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":91210,"name":"Tyrannical Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":91211,"name":"Tyrannical Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":91212,"name":"Tyrannical Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":91213,"name":"Tyrannical Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":91214,"name":"Tyrannical Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":91215,"name":"Tyrannical Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":91216,"name":"Tyrannical Gladiator's Sabatons of Cruelty","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":91217,"name":"Tyrannical Gladiator's Sabatons of Cruelty","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":91218,"name":"Tyrannical Gladiator's Sabatons of Alacrity","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":91219,"name":"Tyrannical Gladiator's Sabatons of Alacrity","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":91220,"name":"Tyrannical Gladiator's Wristguards of Alacrity","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1790},"upgradeStep":1}}}, +{"id":91221,"name":"Tyrannical Gladiator's Wristguards of Accuracy","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":91222,"name":"Tyrannical Gladiator's Chain Armor","icon":"inv_mail_pvphunter_f_01chest","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":91223,"name":"Tyrannical Gladiator's Chain Armor","icon":"inv_mail_pvphunter_f_01chest","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":91224,"name":"Tyrannical Gladiator's Chain Gauntlets","icon":"inv_mail_pvphunter_f_01glove","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91225,"name":"Tyrannical Gladiator's Chain Gauntlets","icon":"inv_mail_pvphunter_f_01glove","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91226,"name":"Tyrannical Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91227,"name":"Tyrannical Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91228,"name":"Tyrannical Gladiator's Chain Leggings","icon":"inv_mail_pvphunter_f_01pant","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":91229,"name":"Tyrannical Gladiator's Chain Leggings","icon":"inv_mail_pvphunter_f_01pant","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":91230,"name":"Tyrannical Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":91231,"name":"Tyrannical Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":91232,"name":"Tyrannical Gladiator's Silk Handguards","icon":"inv_gloves_cloth_pvpmage_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91233,"name":"Tyrannical Gladiator's Silk Handguards","icon":"inv_gloves_cloth_pvpmage_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91234,"name":"Tyrannical Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91235,"name":"Tyrannical Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91236,"name":"Tyrannical Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":91237,"name":"Tyrannical Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":91238,"name":"Tyrannical Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91239,"name":"Tyrannical Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91240,"name":"Tyrannical Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":91241,"name":"Tyrannical Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":91242,"name":"Tyrannical Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":91243,"name":"Tyrannical Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":91244,"name":"Tyrannical Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":91245,"name":"Tyrannical Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":91246,"name":"Tyrannical Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":91247,"name":"Tyrannical Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91248,"name":"Tyrannical Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91249,"name":"Tyrannical Gladiator's Ironskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91250,"name":"Tyrannical Gladiator's Ironskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91251,"name":"Tyrannical Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91252,"name":"Tyrannical Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91253,"name":"Tyrannical Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91254,"name":"Tyrannical Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91255,"name":"Tyrannical Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91256,"name":"Tyrannical Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91257,"name":"Tyrannical Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":91258,"name":"Tyrannical Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":91259,"name":"Tyrannical Gladiator's Copperskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91260,"name":"Tyrannical Gladiator's Copperskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91261,"name":"Tyrannical Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":91262,"name":"Tyrannical Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":91263,"name":"Tyrannical Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91264,"name":"Tyrannical Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":91265,"name":"Tyrannical Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91266,"name":"Tyrannical Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":91267,"name":"Tyrannical Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_f_01white","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91268,"name":"Tyrannical Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_f_01bronze","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91269,"name":"Tyrannical Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_f_01white","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91270,"name":"Tyrannical Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_f_01bronze","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91271,"name":"Tyrannical Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_f_01white","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91272,"name":"Tyrannical Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_f_01bronze","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91273,"name":"Tyrannical Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_f_01white","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91274,"name":"Tyrannical Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_f_01bronze","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91275,"name":"Tyrannical Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_f_01white","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91276,"name":"Tyrannical Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_f_01bronze","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91277,"name":"Tyrannical Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_f_01white","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":3143},"upgradeStep":1}}}, +{"id":91278,"name":"Tyrannical Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_f_01bronze","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":3143},"upgradeStep":1}}}, +{"id":91279,"name":"Tyrannical Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_f_01white","type":8,"armorType":4,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":91280,"name":"Tyrannical Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_f_01bronze","type":8,"armorType":4,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":91281,"name":"Tyrannical Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_f_01white","type":10,"armorType":4,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":91282,"name":"Tyrannical Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_f_01bronze","type":10,"armorType":4,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":91283,"name":"Tyrannical Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_f_01white","type":10,"armorType":4,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":91284,"name":"Tyrannical Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_f_01bronze","type":10,"armorType":4,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":91285,"name":"Tyrannical Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_f_01white","type":6,"armorType":4,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":2445},"upgradeStep":1}}}, +{"id":91286,"name":"Tyrannical Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_f_01white","type":6,"armorType":4,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":2445},"upgradeStep":1}}}, +{"id":91287,"name":"Tyrannical Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_f_01white","type":5,"armorType":4,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91288,"name":"Tyrannical Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_f_01bronze","type":5,"armorType":4,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91289,"name":"Tyrannical Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_f_01white","type":7,"armorType":4,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":3493},"upgradeStep":1}}}, +{"id":91290,"name":"Tyrannical Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_f_01bronze","type":7,"armorType":4,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":3493},"upgradeStep":1}}}, +{"id":91291,"name":"Tyrannical Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_f_01white","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91292,"name":"Tyrannical Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_f_01bronze","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91293,"name":"Tyrannical Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_f_01white","type":9,"armorType":4,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4890},"upgradeStep":1}}}, +{"id":91294,"name":"Tyrannical Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_f_01bronze","type":9,"armorType":4,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4890},"upgradeStep":1}}}, +{"id":91295,"name":"Tyrannical Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_f_01white","type":3,"armorType":4,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":4191},"upgradeStep":1}}}, +{"id":91296,"name":"Tyrannical Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_f_01bronze","type":3,"armorType":4,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":4191},"upgradeStep":1}}}, +{"id":91297,"name":"Tyrannical Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":91298,"name":"Tyrannical Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":91299,"name":"Tyrannical Gladiator's Girdle of Prowess","icon":"inv_belt_pvpwarrior_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,573,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"11":570,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"11":594,"22":3143},"upgradeStep":1}}}, +{"id":91300,"name":"Tyrannical Gladiator's Girdle of Prowess","icon":"inv_belt_pvpwarrior_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,573,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"11":570,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"11":594,"22":3143},"upgradeStep":1}}}, +{"id":91301,"name":"Tyrannical Gladiator's Warboots of Cruelty","icon":"inv_boots_pvpwarrior_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":91302,"name":"Tyrannical Gladiator's Warboots of Cruelty","icon":"inv_boots_pvpwarrior_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":91303,"name":"Tyrannical Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpdeathknight_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":91304,"name":"Tyrannical Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpdeathknight_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":91305,"name":"Tyrannical Gladiator's Armplates of Proficiency","icon":"inv_bracers_pvpwarrior_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506,"22":2445},"upgradeStep":1}}}, +{"id":91306,"name":"Tyrannical Gladiator's Armplates of Alacrity","icon":"inv_bracers_plate_pvpdeathknight_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":487,"11":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":506,"11":414,"22":2445},"upgradeStep":1}}}, +{"id":91307,"name":"Tyrannical Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91308,"name":"Tyrannical Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":91309,"name":"Tyrannical Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1444},"upgradeStep":1}}}, +{"id":91310,"name":"Tyrannical Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1444},"upgradeStep":1}}}, +{"id":91311,"name":"Tyrannical Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91312,"name":"Tyrannical Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91313,"name":"Tyrannical Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2022},"upgradeStep":1}}}, +{"id":91314,"name":"Tyrannical Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2022},"upgradeStep":1}}}, +{"id":91315,"name":"Tyrannical Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91316,"name":"Tyrannical Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91317,"name":"Tyrannical Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":91318,"name":"Tyrannical Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":91319,"name":"Tyrannical Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91320,"name":"Tyrannical Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91321,"name":"Tyrannical Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":1877},"upgradeStep":1}}}, +{"id":91322,"name":"Tyrannical Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":1877},"upgradeStep":1}}}, +{"id":91323,"name":"Tyrannical Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2022},"upgradeStep":1}}}, +{"id":91324,"name":"Tyrannical Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2022},"upgradeStep":1}}}, +{"id":91325,"name":"Tyrannical Gladiator's Satin Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91326,"name":"Tyrannical Gladiator's Satin Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91327,"name":"Tyrannical Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":91328,"name":"Tyrannical Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":91335,"name":"Tyrannical Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":91336,"name":"Tyrannical Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":91337,"name":"Tyrannical Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":91338,"name":"Tyrannical Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":91339,"name":"Tyrannical Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1287},"upgradeStep":1}}}, +{"id":91340,"name":"Tyrannical Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91341,"name":"Tyrannical Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":91342,"name":"Tyrannical Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91343,"name":"Tyrannical Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":91344,"name":"Tyrannical Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91345,"name":"Tyrannical Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":91346,"name":"Tyrannical Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91347,"name":"Tyrannical Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":91348,"name":"Tyrannical Gladiator's Leather Spaulders","icon":"inv_shoulders_leather_pvprogue_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91349,"name":"Tyrannical Gladiator's Leather Spaulders","icon":"inv_shoulders_leather_pvprogue_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":91350,"name":"Tyrannical Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":91351,"name":"Tyrannical Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":91352,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":91353,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":91354,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":91355,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":91356,"name":"Tyrannical Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1790},"upgradeStep":1}}}, +{"id":91357,"name":"Tyrannical Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":91358,"name":"Tyrannical Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":91359,"name":"Tyrannical Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":91360,"name":"Tyrannical Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":2557},"upgradeStep":1}}}, +{"id":91361,"name":"Tyrannical Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":2557},"upgradeStep":1}}}, +{"id":91362,"name":"Tyrannical Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91363,"name":"Tyrannical Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91364,"name":"Tyrannical Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":3580},"upgradeStep":1}}}, +{"id":91365,"name":"Tyrannical Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":3580},"upgradeStep":1}}}, +{"id":91366,"name":"Tyrannical Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":91367,"name":"Tyrannical Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":91368,"name":"Tyrannical Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":91369,"name":"Tyrannical Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":91370,"name":"Tyrannical Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91371,"name":"Tyrannical Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91372,"name":"Tyrannical Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91373,"name":"Tyrannical Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":91374,"name":"Tyrannical Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":91375,"name":"Tyrannical Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":91376,"name":"Tyrannical Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":91377,"name":"Tyrannical Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":91378,"name":"Tyrannical Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":91379,"name":"Tyrannical Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":91380,"name":"Tyrannical Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":91381,"name":"Tyrannical Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":91382,"name":"Tyrannical Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91383,"name":"Tyrannical Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":91384,"name":"Tyrannical Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":3325},"upgradeStep":1}}}, +{"id":91385,"name":"Tyrannical Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":3325},"upgradeStep":1}}}, +{"id":91386,"name":"Tyrannical Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":3580},"upgradeStep":1}}}, +{"id":91387,"name":"Tyrannical Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":3580},"upgradeStep":1}}}, +{"id":91388,"name":"Tyrannical Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":91389,"name":"Tyrannical Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":91390,"name":"Tyrannical Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias2_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":5237,"weaponDamageMax":7857,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":5046,"weaponDamageMax":7570,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91391,"name":"Tyrannical Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias2_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":5237,"weaponDamageMax":7857,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":5046,"weaponDamageMax":7570,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91392,"name":"Tyrannical Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91393,"name":"Tyrannical Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91394,"name":"Tyrannical Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91395,"name":"Tyrannical Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91396,"name":"Tyrannical Gladiator's Render","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91397,"name":"Tyrannical Gladiator's Render","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91398,"name":"Tyrannical Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias2_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":3072,"weaponDamageMax":5706,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91399,"name":"Tyrannical Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias2_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":3072,"weaponDamageMax":5706,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91400,"name":"Tyrannical Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91401,"name":"Tyrannical Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91402,"name":"Tyrannical Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,384,0,0,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"4":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"4":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91403,"name":"Tyrannical Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,384,0,0,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"4":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"4":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":91404,"name":"Tyrannical Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91405,"name":"Tyrannical Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91406,"name":"Tyrannical Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91407,"name":"Tyrannical Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91408,"name":"Tyrannical Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":7565,"weaponDamageMax":11349,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91409,"name":"Tyrannical Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":7565,"weaponDamageMax":11349,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":91410,"name":"Tyrannical Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91411,"name":"Tyrannical Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"7":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"7":506,"22":1155},"upgradeStep":1}}}, +{"id":91412,"name":"Tyrannical Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":91413,"name":"Tyrannical Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":91414,"name":"Tyrannical Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"7":414},"upgradeStep":1}}}, +{"id":91415,"name":"Tyrannical Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":91416,"name":"Tyrannical Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":91417,"name":"Tyrannical Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":91418,"name":"Tyrannical Gladiator's Shield Wall","icon":"inv_shield_pvppandarias2_c_01","type":13,"weaponType":7,"handType":3,"stats":[748,0,1122,0,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"0":694,"2":1041,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91419,"name":"Tyrannical Gladiator's Shield Wall","icon":"inv_shield_pvppandarias2_c_01","type":13,"weaponType":7,"handType":3,"stats":[748,0,1122,0,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"0":694,"2":1041,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":91420,"name":"Tyrannical Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_f_01glove","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91421,"name":"Tyrannical Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_f_01glove","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":91422,"name":"Tyrannical Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_f_01helm","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91423,"name":"Tyrannical Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_f_01helm","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":91424,"name":"Tyrannical Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_f_01pant","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":91425,"name":"Tyrannical Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_f_01pant","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":91426,"name":"Tyrannical Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_f_01robe","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91427,"name":"Tyrannical Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_f_01robe","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":91428,"name":"Tyrannical Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_f_01shoulder","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":91429,"name":"Tyrannical Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_f_01shoulder","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":91430,"name":"Tyrannical Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91431,"name":"Tyrannical Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":91432,"name":"Tyrannical Gladiator's Plate Gauntlets","icon":"inv_gauntlet_pvpwarrior_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91433,"name":"Tyrannical Gladiator's Plate Gauntlets","icon":"inv_gauntlet_pvpwarrior_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":91434,"name":"Tyrannical Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91435,"name":"Tyrannical Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":91436,"name":"Tyrannical Gladiator's Plate Legguards","icon":"inv_pants_pvpwarrior_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91437,"name":"Tyrannical Gladiator's Plate Legguards","icon":"inv_pants_pvpwarrior_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":91438,"name":"Tyrannical Gladiator's Plate Shoulders","icon":"inv_shoulders_plate_pvpwarrior_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91439,"name":"Tyrannical Gladiator's Plate Shoulders","icon":"inv_shoulders_plate_pvpwarrior_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":91440,"name":"Malevolent Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91442,"name":"Malevolent Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91444,"name":"Malevolent Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":4,"stats":[1034,0,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"0":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"0":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91446,"name":"Malevolent Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91448,"name":"Malevolent Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91450,"name":"Malevolent Gladiator's Quickblade","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91452,"name":"Malevolent Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91453,"name":"Malevolent Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,610,976,0,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":349,"7":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":405,"7":331,"22":1066}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"6":420,"7":343,"22":1081},"upgradeStep":1}}}, +{"id":91454,"name":"Malevolent Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,610,976,0,0,357,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":331,"11":405,"22":1066}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"5":343,"11":420,"22":1081},"upgradeStep":1}}}, +{"id":91455,"name":"Malevolent Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,610,976,0,0,0,357,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":285,"8":349}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":331,"8":405}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"6":343,"8":420},"upgradeStep":1}}}, +{"id":91456,"name":"Malevolent Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,610,976,0,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":285,"11":349}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":331,"11":405}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"7":343,"11":420},"upgradeStep":1}}}, +{"id":91457,"name":"Malevolent Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91458,"name":"Malevolent Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,610,976,0,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"6":420,"7":343},"upgradeStep":1}}}, +{"id":91459,"name":"Malevolent Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,610,976,0,0,436,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"11":331}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"5":420,"11":343},"upgradeStep":1}}}, +{"id":91460,"name":"Malevolent Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91462,"name":"Malevolent Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,1301,733,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":480,"11":458,"22":1216},"upgradeStep":1}}}, +{"id":91464,"name":"Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,1301,733,0,501,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":384,"7":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":459,"7":441,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"5":480,"7":458,"22":1216},"upgradeStep":1}}}, +{"id":91466,"name":"Malevolent Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,1301,733,501,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"7":458,"22":1216},"upgradeStep":1}}}, +{"id":91468,"name":"Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,1301,733,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":480,"11":458,"22":1487},"upgradeStep":1}}}, +{"id":91470,"name":"Malevolent Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,1301,733,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":458,"7":480,"22":1487},"upgradeStep":1}}}, +{"id":91472,"name":"Malevolent Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,1301,733,501,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"11":458,"22":1487},"upgradeStep":1}}}, +{"id":91474,"name":"Malevolent Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,976,610,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"5":349,"6":285,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"5":405,"6":331,"22":933}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"5":420,"6":343,"22":946},"upgradeStep":1}}}, +{"id":91475,"name":"Malevolent Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_e_01","type":6,"armorType":1,"stats":[0,0,976,610,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":933}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":343,"11":420,"22":946},"upgradeStep":1}}}, +{"id":91476,"name":"Malevolent Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,976,610,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":933}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"6":343,"22":946},"upgradeStep":1}}}, +{"id":91477,"name":"Malevolent Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,610,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"7":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"7":331,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"6":420,"7":343,"22":1081},"upgradeStep":1}}}, +{"id":91478,"name":"Malevolent Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,610,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":343,"11":420,"22":1081},"upgradeStep":1}}}, +{"id":91479,"name":"Malevolent Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,976,610,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1066}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"6":343,"22":1081},"upgradeStep":1}}}, +{"id":91480,"name":"Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,0,0,406,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":286}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":377,"11":332}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"6":391,"11":344},"upgradeStep":1}}}, +{"id":91482,"name":"Malevolent Gladiator's Barrier","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,914,610,0,0,406,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":377,"11":274,"22":16546}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"6":391,"11":284,"22":16776},"upgradeStep":1}}}, +{"id":91484,"name":"Malevolent Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1569,"weaponDamageMax":2914,"weaponSpeed":1.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1456,"weaponDamageMax":2705,"stats":{"2":617,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1511,"weaponDamageMax":2808,"stats":{"2":641,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":91486,"name":"Malevolent Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias1_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1552,1034,0,0,690,0,0,0,0,690,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":3022,"weaponDamageMax":4534,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"470":{"randPropPoints":1825,"weaponDamageMin":2805,"weaponDamageMax":4208,"stats":{"2":1440,"3":960,"6":640,"11":640,"14":5497}},"474":{"randPropPoints":1895,"weaponDamageMin":2912,"weaponDamageMax":4368,"stats":{"2":1495,"3":997,"6":664,"11":664,"14":5708},"upgradeStep":1}}}, +{"id":91488,"name":"Malevolent Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,610,0,0,436,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"11":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"6":420,"11":343},"upgradeStep":1}}}, +{"id":91489,"name":"Malevolent Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,610,0,0,0,436,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":405,"11":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":420,"11":343},"upgradeStep":1}}}, +{"id":91490,"name":"Malevolent Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,976,610,436,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"7":343},"upgradeStep":1}}}, +{"id":91491,"name":"Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,610,0,0,436,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"11":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"6":420,"11":343},"upgradeStep":1}}}, +{"id":91492,"name":"Malevolent Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,610,0,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"5":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"5":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"5":420,"7":343},"upgradeStep":1}}}, +{"id":91493,"name":"Malevolent Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,976,610,436,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"7":343},"upgradeStep":1}}}, +{"id":91494,"name":"Malevolent Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,914,610,406,0,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":286}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"11":332}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":391,"11":344},"upgradeStep":1}}}, +{"id":91496,"name":"Malevolent Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,710,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1863,"weaponDamageMax":3461,"weaponSpeed":1.9,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":600,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1729,"weaponDamageMax":3212,"stats":{"2":659,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1795,"weaponDamageMax":3334,"stats":{"2":684,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":91498,"name":"Malevolent Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,1034,1657,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1401,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1537,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1596,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91500,"name":"Malevolent Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[934,0,1752,0,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":543,"7":703,"22":5230},"upgradeStep":1}}}, +{"id":91502,"name":"Malevolent Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[733,0,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"5":442,"6":522,"22":3269},"upgradeStep":1}}}, +{"id":91504,"name":"Malevolent Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[854,0,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"480":{"randPropPoints":2004,"stats":{"0":814,"2":1688,"8":703,"11":463,"22":4250},"upgradeStep":1}}}, +{"id":91506,"name":"Malevolent Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[934,0,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":703,"7":543,"22":4576},"upgradeStep":1}}}, +{"id":91508,"name":"Malevolent Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[733,0,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"7":522,"8":442,"22":3923},"upgradeStep":1}}}, +{"id":91510,"name":"Malevolent Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,733,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":442,"6":522,"22":1720},"upgradeStep":1}}}, +{"id":91512,"name":"Malevolent Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,854,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1688,"8":703,"11":463,"22":2236},"upgradeStep":1}}}, +{"id":91514,"name":"Malevolent Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,934,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":703,"7":543,"22":2408},"upgradeStep":1}}}, +{"id":91516,"name":"Malevolent Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,934,1752,0,0,0,569,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":543,"11":703,"22":2752},"upgradeStep":1}}}, +{"id":91518,"name":"Malevolent Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,733,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"7":522,"8":442,"22":2064},"upgradeStep":1}}}, +{"id":91520,"name":"Malevolent Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,733,501,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":1527}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"7":458,"22":1548},"upgradeStep":1}}}, +{"id":91522,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,733,501,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":1866}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"11":458,"22":1892},"upgradeStep":1}}}, +{"id":91524,"name":"Malevolent Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,976,610,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1188}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"6":343,"22":1204},"upgradeStep":1}}}, +{"id":91525,"name":"Malevolent Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,733,462,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"7":522,"22":1720},"upgradeStep":1}}}, +{"id":91527,"name":"Malevolent Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":2206}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":2236},"upgradeStep":1}}}, +{"id":91529,"name":"Malevolent Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2375}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2408},"upgradeStep":1}}}, +{"id":91531,"name":"Malevolent Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1752,934,569,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"4":543,"7":703,"22":2752},"upgradeStep":1}}}, +{"id":91533,"name":"Malevolent Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,733,462,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2036}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"11":522,"22":2064},"upgradeStep":1}}}, +{"id":91535,"name":"Malevolent Gladiator's Staff","icon":"inv_staff_2h_pvppandarias1_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":6045,"weaponDamageMax":9068,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":5610,"weaponDamageMax":8416,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":5824,"weaponDamageMax":8736,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91537,"name":"Malevolent Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1301,733,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1527}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":480,"11":458,"22":1548},"upgradeStep":1}}}, +{"id":91539,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1301,733,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":1866}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":458,"7":480,"22":1892},"upgradeStep":1}}}, +{"id":91541,"name":"Malevolent Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,976,610,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1122}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1188}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":343,"11":420,"22":1204},"upgradeStep":1}}}, +{"id":91542,"name":"Malevolent Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1301,733,462,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"6":522,"22":1720},"upgradeStep":1}}}, +{"id":91544,"name":"Malevolent Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1752,854,0,0,0,489,0,0,0,729,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":2206}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"7":463,"11":703,"22":2236},"upgradeStep":1}}}, +{"id":91546,"name":"Malevolent Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1752,934,0,0,0,729,0,0,0,569,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":2375}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"7":703,"11":543,"22":2408},"upgradeStep":1}}}, +{"id":91548,"name":"Malevolent Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2752},"upgradeStep":1}}}, +{"id":91550,"name":"Malevolent Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1301,733,0,0,0,462,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":2036}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"7":442,"11":522,"22":2064},"upgradeStep":1}}}, +{"id":91552,"name":"Malevolent Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,443,710,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":3530,"weaponDamageMax":6557,"weaponSpeed":1.8,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":600,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":3277,"weaponDamageMax":6086,"stats":{"1":411,"2":659,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":3401,"weaponDamageMax":6317,"stats":{"1":427,"2":684,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91554,"name":"Malevolent Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":9067,"weaponDamageMax":13602,"weaponSpeed":3,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":8416,"weaponDamageMax":12625,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":8736,"weaponDamageMax":13104,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91556,"name":"Malevolent Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias1_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,665,443,0,0,296,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1569,"weaponDamageMax":2914,"weaponSpeed":1.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1456,"weaponDamageMax":2705,"stats":{"2":617,"3":411,"6":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1511,"weaponDamageMax":2808,"stats":{"2":641,"3":427,"6":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":91558,"name":"Malevolent Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,914,610,406,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"11":274,"22":16546}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":391,"11":284,"22":16776},"upgradeStep":1}}}, +{"id":91560,"name":"Malevolent Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias1_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1552,1034,690,0,0,0,0,0,0,690,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":3022,"weaponDamageMax":4534,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"470":{"randPropPoints":1825,"weaponDamageMin":2805,"weaponDamageMax":4208,"stats":{"2":1440,"3":960,"4":640,"11":640,"14":5497}},"474":{"randPropPoints":1895,"weaponDamageMin":2912,"weaponDamageMax":4368,"stats":{"2":1495,"3":997,"4":664,"11":664,"14":5708},"upgradeStep":1}}}, +{"id":91562,"name":"Malevolent Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"480":{"randPropPoints":1489,"stats":{"6":993},"upgradeStep":1}}}, +{"id":91563,"name":"Malevolent Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"480":{"randPropPoints":1489,"stats":{"2":1175},"upgradeStep":1}}}, +{"id":91564,"name":"Malevolent Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"480":{"randPropPoints":1489,"stats":{"4":993},"upgradeStep":1}}}, +{"id":91565,"name":"Malevolent Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,733,1301,0,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":2125}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"6":480,"11":458,"22":2154},"upgradeStep":1}}}, +{"id":91567,"name":"Malevolent Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,733,1301,0,0,501,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":384,"7":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":459,"7":441,"22":2125}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":480,"7":458,"22":2154},"upgradeStep":1}}}, +{"id":91569,"name":"Malevolent Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,733,1301,0,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":2597}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"6":480,"11":458,"22":2633},"upgradeStep":1}}}, +{"id":91571,"name":"Malevolent Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,733,1301,0,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":380,"7":384,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":441,"7":459,"22":2597}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"6":458,"7":480,"22":2633},"upgradeStep":1}}}, +{"id":91573,"name":"Malevolent Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,610,976,0,0,0,0,436,0,0,0,357,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":349,"11":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":405,"11":331,"22":1653}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"7":420,"11":343,"22":1675},"upgradeStep":1}}}, +{"id":91574,"name":"Malevolent Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,610,976,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"6":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"6":331,"22":1653}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"5":420,"6":343,"22":1675},"upgradeStep":1}}}, +{"id":91575,"name":"Malevolent Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,934,1752,0,0,0,569,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":3777}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":543,"11":703,"22":3830},"upgradeStep":1}}}, +{"id":91577,"name":"Malevolent Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,733,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":2361}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":442,"6":522,"22":2394},"upgradeStep":1}}}, +{"id":91579,"name":"Malevolent Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,854,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":3069}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1688,"8":703,"11":463,"22":3112},"upgradeStep":1}}}, +{"id":91581,"name":"Malevolent Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,934,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":3305}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":703,"7":543,"22":3351},"upgradeStep":1}}}, +{"id":91583,"name":"Malevolent Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,733,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":2676}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2833}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"7":522,"8":442,"22":2872},"upgradeStep":1}}}, +{"id":91585,"name":"Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,1301,733,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":423,"6":503,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"5":442,"6":522,"22":1352},"upgradeStep":1}}}, +{"id":91587,"name":"Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":1757},"upgradeStep":1}}}, +{"id":91589,"name":"Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1752,934,0,0,0,569,0,0,0,729,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":423,"11":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":517,"11":677,"22":1866}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"7":543,"11":703,"22":1892},"upgradeStep":1}}}, +{"id":91591,"name":"Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2162},"upgradeStep":1}}}, +{"id":91593,"name":"Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,1301,733,0,0,0,542,0,0,0,462,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":433,"11":353,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":503,"11":423,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"7":522,"11":442,"22":1622},"upgradeStep":1}}}, +{"id":91595,"name":"Malevolent Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,733,1301,0,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":1527}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"6":480,"11":458,"22":1548},"upgradeStep":1}}}, +{"id":91597,"name":"Malevolent Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,733,1219,0,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"6":441,"7":459,"22":1866}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1175,"6":458,"7":480,"22":1892},"upgradeStep":1}}}, +{"id":91599,"name":"Malevolent Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_e_01","type":6,"armorType":2,"stats":[0,610,976,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"6":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"6":331,"22":1188}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"5":420,"6":343,"22":1204},"upgradeStep":1}}}, +{"id":91600,"name":"Malevolent Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,733,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":442,"6":522,"22":1720},"upgradeStep":1}}}, +{"id":91602,"name":"Malevolent Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,854,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1688,"8":703,"11":463,"22":2236},"upgradeStep":1}}}, +{"id":91604,"name":"Malevolent Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,934,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":703,"7":543,"22":2408},"upgradeStep":1}}}, +{"id":91606,"name":"Malevolent Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,733,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"7":522,"8":442,"22":2064},"upgradeStep":1}}}, +{"id":91608,"name":"Malevolent Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,934,1752,0,0,0,569,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":543,"11":703,"22":2752},"upgradeStep":1}}}, +{"id":91610,"name":"Malevolent Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,1301,733,462,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"7":522,"22":1720},"upgradeStep":1}}}, +{"id":91612,"name":"Malevolent Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":2206}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":2236},"upgradeStep":1}}}, +{"id":91614,"name":"Malevolent Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2375}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2408},"upgradeStep":1}}}, +{"id":91616,"name":"Malevolent Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,1301,733,462,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2036}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"11":522,"22":2064},"upgradeStep":1}}}, +{"id":91618,"name":"Malevolent Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1752,934,569,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"4":543,"7":703,"22":2752},"upgradeStep":1}}}, +{"id":91620,"name":"Malevolent Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[934,0,1752,0,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":543,"7":703,"22":5230},"upgradeStep":1}}}, +{"id":91622,"name":"Malevolent Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[733,0,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"5":442,"6":522,"22":3269},"upgradeStep":1}}}, +{"id":91624,"name":"Malevolent Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[854,0,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"480":{"randPropPoints":2004,"stats":{"0":814,"2":1688,"8":703,"11":463,"22":4250},"upgradeStep":1}}}, +{"id":91626,"name":"Malevolent Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[934,0,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":703,"7":543,"22":4576},"upgradeStep":1}}}, +{"id":91628,"name":"Malevolent Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[733,0,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"7":522,"8":442,"22":3923},"upgradeStep":1}}}, +{"id":91630,"name":"Malevolent Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,733,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":2902}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":480,"11":458,"22":2942},"upgradeStep":1}}}, +{"id":91632,"name":"Malevolent Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1301,733,501,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":2902}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"7":458,"22":2942},"upgradeStep":1}}}, +{"id":91634,"name":"Malevolent Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,733,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":3547}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":458,"7":480,"22":3596},"upgradeStep":1}}}, +{"id":91636,"name":"Malevolent Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1301,733,501,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":3547}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"11":458,"22":3596},"upgradeStep":1}}}, +{"id":91638,"name":"Malevolent Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,976,610,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":2132}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":2257}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":343,"11":420,"22":2288},"upgradeStep":1}}}, +{"id":91639,"name":"Malevolent Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,976,610,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":2132}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":2257}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"6":343,"22":2288},"upgradeStep":1}}}, +{"id":91640,"name":"Malevolent Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1752,934,569,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":5159}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"4":543,"7":703,"22":5230},"upgradeStep":1}}}, +{"id":91642,"name":"Malevolent Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,1301,733,462,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":3224}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"7":522,"22":3269},"upgradeStep":1}}}, +{"id":91644,"name":"Malevolent Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":4191}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":4250},"upgradeStep":1}}}, +{"id":91646,"name":"Malevolent Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":4263}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":4514}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":4576},"upgradeStep":1}}}, +{"id":91648,"name":"Malevolent Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,1301,733,462,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":3654}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":3869}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"11":522,"22":3923},"upgradeStep":1}}}, +{"id":91650,"name":"Malevolent Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[733,0,1301,0,0,501,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":384,"7":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":459,"7":441,"22":2902}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"5":480,"7":458,"22":2942},"upgradeStep":1}}}, +{"id":91652,"name":"Malevolent Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[733,0,1301,0,0,0,475,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":380,"11":384,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":441,"11":459,"22":2902}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"6":458,"11":480,"22":2942},"upgradeStep":1}}}, +{"id":91654,"name":"Malevolent Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[733,0,1301,0,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":384,"11":380,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":459,"11":441,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"6":480,"11":458,"22":3596},"upgradeStep":1}}}, +{"id":91656,"name":"Malevolent Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[733,0,1301,0,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":380,"7":384,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":441,"7":459,"22":3547}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"6":458,"7":480,"22":3596},"upgradeStep":1}}}, +{"id":91658,"name":"Malevolent Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_e_01","type":6,"armorType":4,"stats":[610,0,976,0,0,0,357,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"8":349,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"8":405,"22":2257}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"6":343,"8":420,"22":2288},"upgradeStep":1}}}, +{"id":91659,"name":"Malevolent Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_e_01","type":6,"armorType":4,"stats":[610,0,976,0,0,0,0,436,0,0,0,357,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"7":349,"11":285,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"7":405,"11":331,"22":2257}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"7":420,"11":343,"22":2288},"upgradeStep":1}}}, +{"id":91660,"name":"Malevolent Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1034,1552,0,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1967,"weaponDamageMin":10881,"weaponDamageMax":16322,"weaponSpeed":3.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"470":{"randPropPoints":1825,"weaponDamageMin":10099,"weaponDamageMax":15150,"stats":{"1":960,"2":1440,"6":640,"11":640}},"474":{"randPropPoints":1895,"weaponDamageMin":10483,"weaponDamageMax":15725,"stats":{"1":997,"2":1495,"6":664,"11":664},"upgradeStep":1}}}, +{"id":91662,"name":"Malevolent Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,733,462,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"7":522,"22":1352},"upgradeStep":1}}}, +{"id":91664,"name":"Malevolent Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":1757},"upgradeStep":1}}}, +{"id":91666,"name":"Malevolent Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":1866}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":1892},"upgradeStep":1}}}, +{"id":91668,"name":"Malevolent Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1752,934,569,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"4":543,"7":703,"22":2162},"upgradeStep":1}}}, +{"id":91670,"name":"Malevolent Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,733,462,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"11":522,"22":1622},"upgradeStep":1}}}, +{"id":91672,"name":"Malevolent Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1301,733,462,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"6":522,"22":1352},"upgradeStep":1}}}, +{"id":91674,"name":"Malevolent Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1752,854,0,0,0,489,0,0,0,729,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"7":463,"11":703,"22":1757},"upgradeStep":1}}}, +{"id":91676,"name":"Malevolent Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1752,934,0,0,0,729,0,0,0,569,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":1866}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"7":703,"11":543,"22":1892},"upgradeStep":1}}}, +{"id":91678,"name":"Malevolent Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2162},"upgradeStep":1}}}, +{"id":91680,"name":"Malevolent Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1301,733,0,0,0,462,0,0,0,542,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"7":442,"11":522,"22":1622},"upgradeStep":1}}}, +{"id":91682,"name":"Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"480":{"randPropPoints":1489,"stats":{"6":993},"upgradeStep":1}}}, +{"id":91683,"name":"Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"480":{"randPropPoints":1489,"stats":{"6":993},"upgradeStep":1}}}, +{"id":91684,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"476":{"randPropPoints":1434,"stats":{"11":956}},"480":{"randPropPoints":1489,"stats":{"11":993},"upgradeStep":1}}}, +{"id":91685,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"480":{"randPropPoints":1489,"stats":{"2":1175},"upgradeStep":1}}}, +{"id":91686,"name":"Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"480":{"randPropPoints":1489,"stats":{"4":993},"upgradeStep":1}}}, +{"id":91687,"name":"Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"480":{"randPropPoints":1489,"stats":{"4":993},"upgradeStep":1}}}, +{"id":91688,"name":"Malevolent Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,733,1301,0,0,501,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":384,"7":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":459,"7":441,"22":1527}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":480,"7":458,"22":1548},"upgradeStep":1}}}, +{"id":91690,"name":"Malevolent Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,733,1301,0,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":1763}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":1866}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"6":480,"11":458,"22":1892},"upgradeStep":1}}}, +{"id":91692,"name":"Malevolent Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_e_01","type":6,"armorType":2,"stats":[0,610,976,0,0,0,0,436,0,0,0,357,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":349,"11":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":405,"11":331,"22":1188}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":940,"7":420,"11":343,"22":1204},"upgradeStep":1}}}, +{"id":91693,"name":"Malevolent Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,934,1752,0,0,0,569,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":543,"11":703,"22":2752},"upgradeStep":1}}}, +{"id":91695,"name":"Malevolent Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,733,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":442,"6":522,"22":1720},"upgradeStep":1}}}, +{"id":91697,"name":"Malevolent Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,854,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1688,"8":703,"11":463,"22":2236},"upgradeStep":1}}}, +{"id":91699,"name":"Malevolent Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,934,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":703,"7":543,"22":2408},"upgradeStep":1}}}, +{"id":91701,"name":"Malevolent Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,733,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"7":522,"8":442,"22":2064},"upgradeStep":1}}}, +{"id":91703,"name":"Malevolent Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,733,501,0,0,475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":2125}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"7":458,"22":2154},"upgradeStep":1}}}, +{"id":91705,"name":"Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,733,0,0,475,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":2597}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":458,"7":480,"22":2633},"upgradeStep":1}}}, +{"id":91707,"name":"Malevolent Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1301,733,501,0,0,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":2597}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":480,"11":458,"22":2633},"upgradeStep":1}}}, +{"id":91709,"name":"Malevolent Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,976,610,0,0,0,357,0,0,0,436,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1561}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1653}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"7":343,"11":420,"22":1675},"upgradeStep":1}}}, +{"id":91710,"name":"Malevolent Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,976,610,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1653}},"480":{"randPropPoints":1116,"stats":{"2":940,"3":587,"4":420,"6":343,"22":1675},"upgradeStep":1}}}, +{"id":91711,"name":"Malevolent Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1752,934,569,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":3777}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"4":543,"7":703,"22":3830},"upgradeStep":1}}}, +{"id":91713,"name":"Malevolent Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,733,462,0,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":2361}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"7":522,"22":2394},"upgradeStep":1}}}, +{"id":91715,"name":"Malevolent Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":3069}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":3112},"upgradeStep":1}}}, +{"id":91717,"name":"Malevolent Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":3305}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":3351},"upgradeStep":1}}}, +{"id":91719,"name":"Malevolent Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,733,462,0,0,0,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":2676}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2833}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"11":522,"22":2872},"upgradeStep":1}}}, +{"id":91721,"name":"Malevolent Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,934,1752,0,0,0,569,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":3777}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":543,"11":703,"22":3830},"upgradeStep":1}}}, +{"id":91723,"name":"Malevolent Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,733,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":2361}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"5":442,"6":522,"22":2394},"upgradeStep":1}}}, +{"id":91725,"name":"Malevolent Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,854,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":3069}},"480":{"randPropPoints":2004,"stats":{"1":814,"2":1688,"8":703,"11":463,"22":3112},"upgradeStep":1}}}, +{"id":91727,"name":"Malevolent Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,934,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":3305}},"480":{"randPropPoints":2004,"stats":{"1":894,"2":1688,"6":703,"7":543,"22":3351},"upgradeStep":1}}}, +{"id":91729,"name":"Malevolent Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,733,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":2676}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2833}},"480":{"randPropPoints":1489,"stats":{"1":703,"2":1254,"7":522,"8":442,"22":2872},"upgradeStep":1}}}, +{"id":91731,"name":"Malevolent Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1301,733,0,0,501,0,0,0,0,475,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":2125}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"6":480,"11":458,"22":2154},"upgradeStep":1}}}, +{"id":91733,"name":"Malevolent Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":3777}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":3830},"upgradeStep":1}}}, +{"id":91735,"name":"Malevolent Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1301,733,462,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":2361}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"4":442,"6":522,"22":2394},"upgradeStep":1}}}, +{"id":91737,"name":"Malevolent Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1752,854,0,0,0,489,0,0,0,729,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":3069}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"7":463,"11":703,"22":3112},"upgradeStep":1}}}, +{"id":91739,"name":"Malevolent Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1752,934,0,0,0,729,0,0,0,569,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":3305}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"7":703,"11":543,"22":3351},"upgradeStep":1}}}, +{"id":91741,"name":"Malevolent Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1301,733,0,0,0,462,0,0,0,542,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":2676}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":2833}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"7":442,"11":522,"22":2872},"upgradeStep":1}}}, +{"id":91743,"name":"Malevolent Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias1_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":4035,"weaponDamageMax":6053,"weaponSpeed":1.8,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":3745,"weaponDamageMax":5618,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":3887,"weaponDamageMax":5831,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91745,"name":"Malevolent Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91747,"name":"Malevolent Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,443,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91749,"name":"Malevolent Gladiator's Render","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91751,"name":"Malevolent Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91753,"name":"Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91754,"name":"Malevolent Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91755,"name":"Malevolent Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,710,443,296,0,0,0,0,0,0,296,0,0,5925,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":1863,"weaponDamageMax":3461,"weaponSpeed":1.9,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":600,"3":375,"4":250,"11":250,"14":5011}},"470":{"randPropPoints":782,"weaponDamageMin":1729,"weaponDamageMax":3212,"stats":{"2":659,"3":411,"4":274,"11":274,"14":5496}},"474":{"randPropPoints":812,"weaponDamageMin":1795,"weaponDamageMax":3334,"stats":{"2":684,"3":427,"4":285,"11":285,"14":5707},"upgradeStep":1}}}, +{"id":91757,"name":"Malevolent Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91759,"name":"Malevolent Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91761,"name":"Malevolent Gladiator's Slicer","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[443,0,665,0,0,0,296,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5828,"weaponDamageMax":8743,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"470":{"randPropPoints":782,"weaponDamageMin":5409,"weaponDamageMax":8115,"stats":{"0":411,"2":617,"6":274,"11":274}},"474":{"randPropPoints":812,"weaponDamageMin":5615,"weaponDamageMax":8423,"stats":{"0":427,"2":641,"6":285,"11":285},"upgradeStep":1}}}, +{"id":91763,"name":"Malevolent Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91764,"name":"Malevolent Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[610,0,976,0,0,0,357,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"7":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"7":405,"22":1066}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"6":343,"7":420,"22":1081},"upgradeStep":1}}}, +{"id":91765,"name":"Malevolent Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[610,0,976,0,0,357,0,0,0,0,0,436,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":331,"11":405,"22":1066}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"5":343,"11":420,"22":1081},"upgradeStep":1}}}, +{"id":91766,"name":"Malevolent Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[610,0,976,0,0,0,357,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"8":349}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"8":405}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"6":343,"8":420},"upgradeStep":1}}}, +{"id":91767,"name":"Malevolent Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[610,0,976,0,0,436,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"5":420,"7":343},"upgradeStep":1}}}, +{"id":91768,"name":"Malevolent Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"480":{"randPropPoints":1489,"upgradeStep":1}}}, +{"id":91769,"name":"Malevolent Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[610,0,976,0,0,0,436,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":405,"7":331}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"6":420,"7":343},"upgradeStep":1}}}, +{"id":91770,"name":"Malevolent Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[610,0,976,0,0,436,0,0,0,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":405,"11":331}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":940,"5":420,"11":343},"upgradeStep":1}}}, +{"id":91771,"name":"Malevolent Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[610,0,914,0,0,0,406,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,17006,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"6":377,"11":274,"22":16546}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"6":391,"11":284,"22":16776},"upgradeStep":1}}}, +{"id":91773,"name":"Malevolent Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,1301,733,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":423,"6":503,"22":1333}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"5":442,"6":522,"22":1352},"upgradeStep":1}}}, +{"id":91775,"name":"Malevolent Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1752,854,0,0,729,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":814,"6":703,"11":463,"22":1757},"upgradeStep":1}}}, +{"id":91777,"name":"Malevolent Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1752,934,0,0,0,569,0,0,0,729,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":423,"11":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":517,"11":677,"22":1866}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"7":543,"11":703,"22":1892},"upgradeStep":1}}}, +{"id":91779,"name":"Malevolent Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1752,934,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"480":{"randPropPoints":2004,"stats":{"2":1688,"3":894,"6":543,"7":703,"22":2162},"upgradeStep":1}}}, +{"id":91781,"name":"Malevolent Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,1301,733,0,0,0,542,0,0,0,462,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":433,"11":353,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":503,"11":423,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":1254,"3":703,"7":522,"11":442,"22":1622},"upgradeStep":1}}}, +{"id":91783,"name":"Malevolent Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[934,0,1752,0,0,0,569,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":543,"7":703,"22":5230},"upgradeStep":1}}}, +{"id":91785,"name":"Malevolent Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[733,0,1301,0,0,462,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"5":442,"6":522,"22":3269},"upgradeStep":1}}}, +{"id":91787,"name":"Malevolent Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[854,0,1752,0,0,0,0,0,729,0,0,489,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"480":{"randPropPoints":2004,"stats":{"0":814,"2":1688,"8":703,"11":463,"22":4250},"upgradeStep":1}}}, +{"id":91789,"name":"Malevolent Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[934,0,1752,0,0,0,729,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"480":{"randPropPoints":2004,"stats":{"0":894,"2":1688,"6":703,"7":543,"22":4576},"upgradeStep":1}}}, +{"id":91791,"name":"Malevolent Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[733,0,1301,0,0,0,0,542,462,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"480":{"randPropPoints":1489,"stats":{"0":703,"2":1254,"7":522,"8":442,"22":3923},"upgradeStep":1}}}, +{"id":92726,"name":"Bipsi's Gloves","icon":"inv_glove_robe_dungeonrobe_c_05","type":7,"armorType":1,"stats":[0,0,454,301,0,0,0,202,0,0,0,202,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":378,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":575,"stats":{"2":454,"3":301,"7":202,"11":202,"22":869},"isBase":true}}}, +{"id":92782,"name":"Steadfast Footman's Medallion","icon":"pvpcurrency-conquest-alliance","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92783,"name":"Mark of the Hardened Grunt","icon":"pvpcurrency-conquest-horde","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92784,"name":"SI:7 Operative's Manual","icon":"inv_misc_book_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92785,"name":"Kor'kron Book of Hurting","icon":"inv_misc_book_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92786,"name":"Alliance Insignia of Conquering","icon":"achievement_pvp_o_a","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92787,"name":"Horde Insignia of Conquering","icon":"achievement_pvp_o_h","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"483":{"randPropPoints":1531},"487":{"randPropPoints":1589,"upgradeStep":1}}}, +{"id":92814,"name":"Bladesnap Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":2053},"isBase":true}}}, +{"id":92815,"name":"Bladesnap Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":3226},"isBase":true}}}, +{"id":92816,"name":"Bladesnap Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":3520},"isBase":true}}}, +{"id":92817,"name":"Bladesnap Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":4106},"isBase":true}}}, +{"id":92818,"name":"Bladesnap Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3813},"isBase":true}}}, +{"id":92819,"name":"Bladesnap Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2640},"isBase":true}}}, +{"id":92820,"name":"Bladesnap Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2933},"isBase":true}}}, +{"id":92821,"name":"Bladesnap Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":4693},"isBase":true}}}, +{"id":92822,"name":"Jinyu-Forged Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":4693},"isBase":true}}}, +{"id":92823,"name":"Jinyu-Forged Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2933},"isBase":true}}}, +{"id":92824,"name":"Jinyu-Forged Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2640},"isBase":true}}}, +{"id":92825,"name":"Jinyu-Forged Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3813},"isBase":true}}}, +{"id":92826,"name":"Jinyu-Forged Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":4106},"isBase":true}}}, +{"id":92827,"name":"Jinyu-Forged Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":3520},"isBase":true}}}, +{"id":92828,"name":"Jinyu-Forged Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":3226},"isBase":true}}}, +{"id":92829,"name":"Jinyu-Forged Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":2053},"isBase":true}}}, +{"id":92830,"name":"Earthstriker Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3436},"isBase":true}}}, +{"id":92831,"name":"Earthstriker Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2577},"isBase":true}}}, +{"id":92832,"name":"Earthstriker Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3007},"isBase":true}}}, +{"id":92833,"name":"Earthstriker Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2792},"isBase":true}}}, +{"id":92834,"name":"Earthstriker Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2363},"isBase":true}}}, +{"id":92835,"name":"Earthstriker Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2148},"isBase":true}}}, +{"id":92836,"name":"Earthstriker Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":1503},"isBase":true}}}, +{"id":92837,"name":"Earthstriker Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1933},"isBase":true}}}, +{"id":92838,"name":"Danio-Scale Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1933},"isBase":true}}}, +{"id":92839,"name":"Danio-Scale Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":1503},"isBase":true}}}, +{"id":92840,"name":"Danio-Scale Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2148},"isBase":true}}}, +{"id":92841,"name":"Danio-Scale Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2363},"isBase":true}}}, +{"id":92842,"name":"Danio-Scale Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2792},"isBase":true}}}, +{"id":92843,"name":"Danio-Scale Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3007},"isBase":true}}}, +{"id":92844,"name":"Danio-Scale Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":2577},"isBase":true}}}, +{"id":92845,"name":"Danio-Scale Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":3436},"isBase":true}}}, +{"id":92846,"name":"Hozen-Speed Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1389},"isBase":true}}}, +{"id":92847,"name":"Hozen-Speed Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1852},"isBase":true}}}, +{"id":92848,"name":"Hozen-Speed Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2470},"isBase":true}}}, +{"id":92849,"name":"Hozen-Speed Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2007},"isBase":true}}}, +{"id":92850,"name":"Hozen-Speed Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1544},"isBase":true}}}, +{"id":92851,"name":"Hozen-Speed Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2161},"isBase":true}}}, +{"id":92852,"name":"Hozen-Speed Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1698},"isBase":true}}}, +{"id":92853,"name":"Hozen-Speed Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":1081},"isBase":true}}}, +{"id":92854,"name":"Jinyu-Polished Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":1081},"isBase":true}}}, +{"id":92855,"name":"Jinyu-Polished Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1698},"isBase":true}}}, +{"id":92856,"name":"Jinyu-Polished Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2161},"isBase":true}}}, +{"id":92857,"name":"Jinyu-Polished Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1544},"isBase":true}}}, +{"id":92858,"name":"Jinyu-Polished Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2007},"isBase":true}}}, +{"id":92859,"name":"Jinyu-Polished Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":2470},"isBase":true}}}, +{"id":92860,"name":"Jinyu-Polished Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1852},"isBase":true}}}, +{"id":92861,"name":"Jinyu-Polished Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1389},"isBase":true}}}, +{"id":92862,"name":"Cordwoven Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":849},"isBase":true}}}, +{"id":92863,"name":"Cordwoven Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1455},"isBase":true}}}, +{"id":92864,"name":"Cordwoven Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1334},"isBase":true}}}, +{"id":92865,"name":"Cordwoven Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1940},"isBase":true}}}, +{"id":92866,"name":"Cordwoven Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1698},"isBase":true}}}, +{"id":92867,"name":"Cordwoven Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1213},"isBase":true}}}, +{"id":92868,"name":"Cordwoven Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1577},"isBase":true}}}, +{"id":92869,"name":"Cordwoven Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1091},"isBase":true}}}, +{"id":92870,"name":"Bubblebrew Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1091},"isBase":true}}}, +{"id":92871,"name":"Bubblebrew Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1577},"isBase":true}}}, +{"id":92872,"name":"Bubblebrew Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1213},"isBase":true}}}, +{"id":92873,"name":"Bubblebrew Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1698},"isBase":true}}}, +{"id":92874,"name":"Bubblebrew Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"22":1940},"isBase":true}}}, +{"id":92875,"name":"Bubblebrew Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1334},"isBase":true}}}, +{"id":92876,"name":"Bubblebrew Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"22":1455},"isBase":true}}}, +{"id":92877,"name":"Bubblebrew Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":849},"isBase":true}}}, +{"id":92878,"name":"Lavasoul Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":970},"isBase":true}}}, +{"id":92879,"name":"Bubblebrew Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":970},"isBase":true}}}, +{"id":92880,"name":"Stormcrier Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":970},"isBase":true}}}, +{"id":92881,"name":"Bladesnap Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"22":970},"isBase":true}}}, +{"id":92882,"name":"Stormcrier Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92883,"name":"Bladesnap Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92884,"name":"Lavasoul Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92885,"name":"Bubblebrew Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92886,"name":"Lavasoul Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92887,"name":"Bubblebrew Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92888,"name":"Stormcrier Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":92889,"name":"Bladesnap Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":844,"isBase":true}}}, +{"id":93048,"name":"Brewcarrier Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"476":{"randPropPoints":1076,"stats":{"22":1066}},"480":{"randPropPoints":1116,"stats":{"22":1081},"upgradeStep":1}}}, +{"id":93049,"name":"Mogubreaker Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"476":{"randPropPoints":1930,"stats":{"22":2715}},"480":{"randPropPoints":2004,"stats":{"22":2752},"upgradeStep":1}}}, +{"id":93050,"name":"Mogubreaker Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"476":{"randPropPoints":1434,"stats":{"22":1866}},"480":{"randPropPoints":1489,"stats":{"22":1892},"upgradeStep":1}}}, +{"id":93051,"name":"Mogubreaker Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"476":{"randPropPoints":1434,"stats":{"22":1697}},"480":{"randPropPoints":1489,"stats":{"22":1720},"upgradeStep":1}}}, +{"id":93052,"name":"Mogubreaker Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"476":{"randPropPoints":1930,"stats":{"22":2206}},"480":{"randPropPoints":2004,"stats":{"22":2236},"upgradeStep":1}}}, +{"id":93053,"name":"Mogubreaker Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"476":{"randPropPoints":1930,"stats":{"22":2375}},"480":{"randPropPoints":2004,"stats":{"22":2408},"upgradeStep":1}}}, +{"id":93054,"name":"Mogubreaker Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"476":{"randPropPoints":1434,"stats":{"22":2036}},"480":{"randPropPoints":1489,"stats":{"22":2064},"upgradeStep":1}}}, +{"id":93055,"name":"Mogubreaker Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"476":{"randPropPoints":1434,"stats":{"22":1527}},"480":{"randPropPoints":1489,"stats":{"22":1548},"upgradeStep":1}}}, +{"id":93056,"name":"Mogubreaker Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1122}},"476":{"randPropPoints":1076,"stats":{"22":1188}},"480":{"randPropPoints":1116,"stats":{"22":1204},"upgradeStep":1}}}, +{"id":93057,"name":"Stormshaper Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"476":{"randPropPoints":1930,"stats":{"22":3777}},"480":{"randPropPoints":2004,"stats":{"22":3830},"upgradeStep":1}}}, +{"id":93058,"name":"Stormshaper Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"476":{"randPropPoints":1434,"stats":{"22":2597}},"480":{"randPropPoints":1489,"stats":{"22":2633},"upgradeStep":1}}}, +{"id":93059,"name":"Stormshaper Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"476":{"randPropPoints":1434,"stats":{"22":2361}},"480":{"randPropPoints":1489,"stats":{"22":2394},"upgradeStep":1}}}, +{"id":93060,"name":"Stormshaper Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"476":{"randPropPoints":1930,"stats":{"22":3069}},"480":{"randPropPoints":2004,"stats":{"22":3112},"upgradeStep":1}}}, +{"id":93061,"name":"Stormshaper Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"476":{"randPropPoints":1930,"stats":{"22":3305}},"480":{"randPropPoints":2004,"stats":{"22":3351},"upgradeStep":1}}}, +{"id":93062,"name":"Stormshaper Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"476":{"randPropPoints":1434,"stats":{"22":2833}},"480":{"randPropPoints":1489,"stats":{"22":2872},"upgradeStep":1}}}, +{"id":93063,"name":"Stormshaper Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"476":{"randPropPoints":1434,"stats":{"22":2125}},"480":{"randPropPoints":1489,"stats":{"22":2154},"upgradeStep":1}}}, +{"id":93064,"name":"Stormshaper Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1561}},"476":{"randPropPoints":1076,"stats":{"22":1653}},"480":{"randPropPoints":1116,"stats":{"22":1675},"upgradeStep":1}}}, +{"id":93065,"name":"Brewcarrier Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93066,"name":"Brewcarrier Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93067,"name":"Firebinder Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"476":{"randPropPoints":1076,"stats":{"22":1066}},"480":{"randPropPoints":1116,"stats":{"22":1081},"upgradeStep":1}}}, +{"id":93068,"name":"Yak Wool Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"476":{"randPropPoints":1930,"stats":{"22":2133}},"480":{"randPropPoints":2004,"stats":{"22":2162},"upgradeStep":1}}}, +{"id":93069,"name":"Yak Wool Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"476":{"randPropPoints":1434,"stats":{"22":1466}},"480":{"randPropPoints":1489,"stats":{"22":1487},"upgradeStep":1}}}, +{"id":93070,"name":"Yak Wool Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"476":{"randPropPoints":1434,"stats":{"22":1333}},"480":{"randPropPoints":1489,"stats":{"22":1352},"upgradeStep":1}}}, +{"id":93071,"name":"Yak Wool Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"476":{"randPropPoints":1930,"stats":{"22":1733}},"480":{"randPropPoints":2004,"stats":{"22":1757},"upgradeStep":1}}}, +{"id":93072,"name":"Yak Wool Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"476":{"randPropPoints":1930,"stats":{"22":1866}},"480":{"randPropPoints":2004,"stats":{"22":1892},"upgradeStep":1}}}, +{"id":93073,"name":"Yak Wool Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"476":{"randPropPoints":1434,"stats":{"22":1600}},"480":{"randPropPoints":1489,"stats":{"22":1622},"upgradeStep":1}}}, +{"id":93074,"name":"Yak Wool Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"476":{"randPropPoints":1434,"stats":{"22":1200}},"480":{"randPropPoints":1489,"stats":{"22":1216},"upgradeStep":1}}}, +{"id":93075,"name":"Yak Wool Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":881}},"476":{"randPropPoints":1076,"stats":{"22":933}},"480":{"randPropPoints":1116,"stats":{"22":946},"upgradeStep":1}}}, +{"id":93076,"name":"Firebinder Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93077,"name":"Firebinder Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93078,"name":"Hozen-Stitched Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"476":{"randPropPoints":1930,"stats":{"22":2715}},"480":{"randPropPoints":2004,"stats":{"22":2752},"upgradeStep":1}}}, +{"id":93079,"name":"Hozen-Stitched Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"476":{"randPropPoints":1434,"stats":{"22":1866}},"480":{"randPropPoints":1489,"stats":{"22":1892},"upgradeStep":1}}}, +{"id":93080,"name":"Hozen-Stitched Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"476":{"randPropPoints":1434,"stats":{"22":1697}},"480":{"randPropPoints":1489,"stats":{"22":1720},"upgradeStep":1}}}, +{"id":93081,"name":"Hozen-Stitched Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"476":{"randPropPoints":1930,"stats":{"22":2206}},"480":{"randPropPoints":2004,"stats":{"22":2236},"upgradeStep":1}}}, +{"id":93082,"name":"Hozen-Stitched Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"476":{"randPropPoints":1930,"stats":{"22":2375}},"480":{"randPropPoints":2004,"stats":{"22":2408},"upgradeStep":1}}}, +{"id":93083,"name":"Hozen-Stitched Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"476":{"randPropPoints":1434,"stats":{"22":2036}},"480":{"randPropPoints":1489,"stats":{"22":2064},"upgradeStep":1}}}, +{"id":93084,"name":"Hozen-Stitched Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"476":{"randPropPoints":1434,"stats":{"22":1527}},"480":{"randPropPoints":1489,"stats":{"22":1548},"upgradeStep":1}}}, +{"id":93085,"name":"Hozen-Stitched Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1122}},"476":{"randPropPoints":1076,"stats":{"22":1188}},"480":{"randPropPoints":1116,"stats":{"22":1204},"upgradeStep":1}}}, +{"id":93086,"name":"Swashbuckling Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"476":{"randPropPoints":1930,"stats":{"22":3777}},"480":{"randPropPoints":2004,"stats":{"22":3830},"upgradeStep":1}}}, +{"id":93087,"name":"Swashbuckling Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"476":{"randPropPoints":1434,"stats":{"22":2597}},"480":{"randPropPoints":1489,"stats":{"22":2633},"upgradeStep":1}}}, +{"id":93088,"name":"Swashbuckling Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"476":{"randPropPoints":1434,"stats":{"22":2361}},"480":{"randPropPoints":1489,"stats":{"22":2394},"upgradeStep":1}}}, +{"id":93089,"name":"Swashbuckling Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"476":{"randPropPoints":1930,"stats":{"22":3069}},"480":{"randPropPoints":2004,"stats":{"22":3112},"upgradeStep":1}}}, +{"id":93090,"name":"Swashbuckling Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"476":{"randPropPoints":1930,"stats":{"22":3305}},"480":{"randPropPoints":2004,"stats":{"22":3351},"upgradeStep":1}}}, +{"id":93091,"name":"Swashbuckling Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"476":{"randPropPoints":1434,"stats":{"22":2833}},"480":{"randPropPoints":1489,"stats":{"22":2872},"upgradeStep":1}}}, +{"id":93092,"name":"Swashbuckling Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"476":{"randPropPoints":1434,"stats":{"22":2125}},"480":{"randPropPoints":1489,"stats":{"22":2154},"upgradeStep":1}}}, +{"id":93093,"name":"Swashbuckling Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1561}},"476":{"randPropPoints":1076,"stats":{"22":1653}},"480":{"randPropPoints":1116,"stats":{"22":1675},"upgradeStep":1}}}, +{"id":93094,"name":"Yaungolian Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"476":{"randPropPoints":1930,"stats":{"22":5159}},"480":{"randPropPoints":2004,"stats":{"22":5230},"upgradeStep":1}}}, +{"id":93095,"name":"Yaungolian Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"476":{"randPropPoints":1434,"stats":{"22":3547}},"480":{"randPropPoints":1489,"stats":{"22":3596},"upgradeStep":1}}}, +{"id":93096,"name":"Yaungolian Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"476":{"randPropPoints":1434,"stats":{"22":3224}},"480":{"randPropPoints":1489,"stats":{"22":3269},"upgradeStep":1}}}, +{"id":93097,"name":"Yaungolian Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"476":{"randPropPoints":1930,"stats":{"22":4191}},"480":{"randPropPoints":2004,"stats":{"22":4250},"upgradeStep":1}}}, +{"id":93098,"name":"Yaungolian Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"476":{"randPropPoints":1930,"stats":{"22":4514}},"480":{"randPropPoints":2004,"stats":{"22":4576},"upgradeStep":1}}}, +{"id":93099,"name":"Yaungolian Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"476":{"randPropPoints":1434,"stats":{"22":3869}},"480":{"randPropPoints":1489,"stats":{"22":3923},"upgradeStep":1}}}, +{"id":93100,"name":"Yaungolian Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"476":{"randPropPoints":1434,"stats":{"22":2902}},"480":{"randPropPoints":1489,"stats":{"22":2942},"upgradeStep":1}}}, +{"id":93101,"name":"Yaungolian Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":2132}},"476":{"randPropPoints":1076,"stats":{"22":2257}},"480":{"randPropPoints":1116,"stats":{"22":2288},"upgradeStep":1}}}, +{"id":93102,"name":"Brewfather Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"476":{"randPropPoints":1076,"stats":{"22":1066}},"480":{"randPropPoints":1116,"stats":{"22":1081},"upgradeStep":1}}}, +{"id":93103,"name":"Brewfather Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"476":{"randPropPoints":1930,"stats":{"22":2133}},"480":{"randPropPoints":2004,"stats":{"22":2162},"upgradeStep":1}}}, +{"id":93104,"name":"Brewfather Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"476":{"randPropPoints":1434,"stats":{"22":1466}},"480":{"randPropPoints":1489,"stats":{"22":1487},"upgradeStep":1}}}, +{"id":93105,"name":"Brewfather Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"476":{"randPropPoints":1434,"stats":{"22":1333}},"480":{"randPropPoints":1489,"stats":{"22":1352},"upgradeStep":1}}}, +{"id":93106,"name":"Brewfather Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"476":{"randPropPoints":1930,"stats":{"22":1733}},"480":{"randPropPoints":2004,"stats":{"22":1757},"upgradeStep":1}}}, +{"id":93107,"name":"Brewfather Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"476":{"randPropPoints":1930,"stats":{"22":1866}},"480":{"randPropPoints":2004,"stats":{"22":1892},"upgradeStep":1}}}, +{"id":93108,"name":"Brewfather Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"476":{"randPropPoints":1434,"stats":{"22":1600}},"480":{"randPropPoints":1489,"stats":{"22":1622},"upgradeStep":1}}}, +{"id":93109,"name":"Brewfather Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"476":{"randPropPoints":1434,"stats":{"22":1200}},"480":{"randPropPoints":1489,"stats":{"22":1216},"upgradeStep":1}}}, +{"id":93110,"name":"Brewfather Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":881}},"476":{"randPropPoints":1076,"stats":{"22":933}},"480":{"randPropPoints":1116,"stats":{"22":946},"upgradeStep":1}}}, +{"id":93111,"name":"Brewfather Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93112,"name":"Brewfather Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93113,"name":"Lightning Rod Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":1007}},"476":{"randPropPoints":1076,"stats":{"22":1066}},"480":{"randPropPoints":1116,"stats":{"22":1081},"upgradeStep":1}}}, +{"id":93114,"name":"Lightning Rod Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93115,"name":"Lightning Rod Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"476":{"randPropPoints":1930,"stats":{"22":5159}},"480":{"randPropPoints":2004,"stats":{"22":5230},"upgradeStep":1}}}, +{"id":93116,"name":"Lightning Rod Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"476":{"randPropPoints":1434,"stats":{"22":3547}},"480":{"randPropPoints":1489,"stats":{"22":3596},"upgradeStep":1}}}, +{"id":93117,"name":"Lightning Rod Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"476":{"randPropPoints":1434,"stats":{"22":3224}},"480":{"randPropPoints":1489,"stats":{"22":3269},"upgradeStep":1}}}, +{"id":93118,"name":"Lightning Rod Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"476":{"randPropPoints":1930,"stats":{"22":4191}},"480":{"randPropPoints":2004,"stats":{"22":4250},"upgradeStep":1}}}, +{"id":93119,"name":"Lightning Rod Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"476":{"randPropPoints":1930,"stats":{"22":4514}},"480":{"randPropPoints":2004,"stats":{"22":4576},"upgradeStep":1}}}, +{"id":93120,"name":"Lightning Rod Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"476":{"randPropPoints":1434,"stats":{"22":3869}},"480":{"randPropPoints":1489,"stats":{"22":3923},"upgradeStep":1}}}, +{"id":93121,"name":"Lightning Rod Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"476":{"randPropPoints":1434,"stats":{"22":2902}},"480":{"randPropPoints":1489,"stats":{"22":2942},"upgradeStep":1}}}, +{"id":93122,"name":"Lightning Rod Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":2132}},"476":{"randPropPoints":1076,"stats":{"22":2257}},"480":{"randPropPoints":1116,"stats":{"22":2288},"upgradeStep":1}}}, +{"id":93123,"name":"Lightning Rod Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"476":{"randPropPoints":1076},"480":{"randPropPoints":1116,"upgradeStep":1}}}, +{"id":93125,"name":"Scavenged Pandaren Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93126,"name":"Scavenged Pandaren Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5979,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1985,"weaponDamageMin":5339,"weaponDamageMax":8009,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4472,"weaponDamageMax":6709,"stats":{"14":5009}},"463":{"randPropPoints":1710,"weaponDamageMin":4599,"weaponDamageMax":6899,"stats":{"14":5151}},"471":{"randPropPoints":1843,"weaponDamageMin":4955,"weaponDamageMax":7433,"stats":{"14":5551},"upgradeStep":1}}}, +{"id":93127,"name":"Scavenged Pandaren Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93128,"name":"Scavenged Pandaren Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93129,"name":"Scavenged Pandaren Staff","icon":"inv_staff_2h_pandariaquest_b_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93130,"name":"Scavenged Pandaren Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93131,"name":"Scavenged Pandaren Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":851,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":1.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1449,"weaponDamageMax":2693,"stats":{"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1562,"weaponDamageMax":2901,"stats":{"14":5552},"upgradeStep":1}}}, +{"id":93132,"name":"Scavenged Pandaren Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":851,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":1.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1449,"weaponDamageMax":2693,"stats":{"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1562,"weaponDamageMax":2901,"stats":{"14":5552},"upgradeStep":1}}}, +{"id":93133,"name":"Scavenged Pandaren Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":851,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":1.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1449,"weaponDamageMax":2693,"stats":{"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1562,"weaponDamageMax":2901,"stats":{"14":5552},"upgradeStep":1}}}, +{"id":93134,"name":"Scavenged Pandaren Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":7207,"weaponDamageMax":13386,"weaponSpeed":2.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6038,"weaponDamageMax":11214},"463":{"randPropPoints":1710,"weaponDamageMin":6209,"weaponDamageMax":11532},"471":{"randPropPoints":1843,"weaponDamageMin":6690,"weaponDamageMax":12424,"upgradeStep":1}}}, +{"id":93135,"name":"Scavenged Pandaren Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":7207,"weaponDamageMax":13386,"weaponSpeed":2.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6038,"weaponDamageMax":11214},"463":{"randPropPoints":1710,"weaponDamageMin":6209,"weaponDamageMax":11532},"471":{"randPropPoints":1843,"weaponDamageMin":6690,"weaponDamageMax":12424,"upgradeStep":1}}}, +{"id":93136,"name":"Scavenged Pandaren Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93137,"name":"Scavenged Pandaren Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93138,"name":"Scavenged Pandaren Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":851,"weaponDamageMin":3365,"weaponDamageMax":6251,"weaponSpeed":1.7,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2819,"weaponDamageMax":5237},"463":{"randPropPoints":733,"weaponDamageMin":2899,"weaponDamageMax":5385},"471":{"randPropPoints":790,"weaponDamageMin":3124,"weaponDamageMax":5802,"upgradeStep":1}}}, +{"id":93139,"name":"Scavenged Pandaren Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93140,"name":"Scavenged Pandaren Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93141,"name":"Scavenged Pandaren Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10678,"weaponDamageMax":16017,"weaponSpeed":3.5,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418},"463":{"randPropPoints":1710,"weaponDamageMin":9199,"weaponDamageMax":13799},"471":{"randPropPoints":1843,"weaponDamageMin":9911,"weaponDamageMax":14867,"upgradeStep":1}}}, +{"id":93142,"name":"Scavenged Pandaren Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93143,"name":"Scavenged Pandaren Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93144,"name":"Scavenged Pandaren Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93145,"name":"Scavenged Pandaren Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"upgradeStep":1}}}, +{"id":93243,"name":"Signet of the Shieldwall","icon":"inv_jewelry_ring_149","type":11,"stats":[0,734,1101,0,0,0,558,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":371,"11":247}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":518,"11":345}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":538,"11":358},"upgradeStep":1}}}, +{"id":93244,"name":"Band of the Shieldwall","icon":"inv_jewelry_ring_152","type":11,"stats":[0,0,1101,734,0,0,497,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":461,"7":443}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":479,"7":460},"upgradeStep":1}}}, +{"id":93245,"name":"Loop of the Shieldwall","icon":"inv_jewelry_ring_144","type":11,"stats":[0,0,1101,734,558,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"6":247}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":518,"6":345}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":538,"6":358},"upgradeStep":1}}}, +{"id":93246,"name":"Circle of the Shieldwall","icon":"inv_jewelry_ring_133","type":11,"stats":[734,0,1101,0,0,0,453,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"7":339}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":421,"7":474}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":437,"7":492},"upgradeStep":1}}}, +{"id":93247,"name":"Seal of the Shieldwall","icon":"inv_jewelry_ring_138","type":11,"stats":[734,0,1101,0,0,0,0,0,406,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":270,"9":358}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"8":377,"9":500}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"8":391,"9":519},"upgradeStep":1}}}, +{"id":93248,"name":"Dominator's Signet","icon":"inv_jewelry_ring_149","type":11,"stats":[0,734,1101,0,0,0,558,0,0,0,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":371,"11":247}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":518,"11":345}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":538,"11":358},"upgradeStep":1}}}, +{"id":93249,"name":"Dominator's Band","icon":"inv_jewelry_ring_152","type":11,"stats":[0,0,1101,734,0,0,497,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":461,"7":443}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":479,"7":460},"upgradeStep":1}}}, +{"id":93250,"name":"Dominator's Loop","icon":"inv_jewelry_ring_144","type":11,"stats":[0,0,1101,734,558,0,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"6":247}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":518,"6":345}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":538,"6":358},"upgradeStep":1}}}, +{"id":93251,"name":"Dominator's Circle","icon":"inv_jewelry_ring_133","type":11,"stats":[734,0,1101,0,0,0,453,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"7":339}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":421,"7":474}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":437,"7":492},"upgradeStep":1}}}, +{"id":93252,"name":"Dominator's Seal","icon":"inv_jewelry_ring_138","type":11,"stats":[734,0,1101,0,0,0,0,0,406,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":270,"9":358}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"8":377,"9":500}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"8":391,"9":519},"upgradeStep":1}}}, +{"id":93253,"name":"Woundripper Medallion","icon":"inv_ammo_arrow_05","type":12,"stats":[0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"496":{"randPropPoints":1728,"stats":{"1":1152}},"500":{"randPropPoints":1793,"stats":{"1":1195},"upgradeStep":1}}}, +{"id":93254,"name":"Static-Caster's Medallion","icon":"ability_vehicle_electrocharge","type":12,"stats":[0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"496":{"randPropPoints":1728,"stats":{"7":1152}},"500":{"randPropPoints":1793,"stats":{"7":1195},"upgradeStep":1}}}, +{"id":93255,"name":"Cutstitcher Medallion","icon":"item_spellcloththread","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":93256,"name":"Skullrender Medallion","icon":"inv_misc_bone_skull_02","type":12,"stats":[1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"496":{"randPropPoints":1728,"stats":{"0":1152}},"500":{"randPropPoints":1793,"stats":{"0":1195},"upgradeStep":1}}}, +{"id":93257,"name":"Medallion of Mystifying Vapors","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"496":{"randPropPoints":1728,"stats":{"9":1152}},"500":{"randPropPoints":1793,"stats":{"9":1195},"upgradeStep":1}}}, +{"id":93258,"name":"Arrowflight Medallion","icon":"inv_ammo_arrow_05","type":12,"stats":[0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"496":{"randPropPoints":1728,"stats":{"1":1152}},"500":{"randPropPoints":1793,"stats":{"1":1195},"upgradeStep":1}}}, +{"id":93259,"name":"Shock-Charger Medallion","icon":"ability_vehicle_electrocharge","type":12,"stats":[0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"496":{"randPropPoints":1728,"stats":{"7":1152}},"500":{"randPropPoints":1793,"stats":{"7":1195},"upgradeStep":1}}}, +{"id":93260,"name":"Heartwarmer Medallion","icon":"spell_holy_pureofheart","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":93261,"name":"Helmbreaker Medallion","icon":"inv_misc_bone_skull_02","type":12,"stats":[1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"496":{"randPropPoints":1728,"stats":{"0":1152}},"500":{"randPropPoints":1793,"stats":{"0":1195},"upgradeStep":1}}}, +{"id":93262,"name":"Vaporshield Medallion","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"496":{"randPropPoints":1728,"stats":{"9":1152}},"500":{"randPropPoints":1793,"stats":{"9":1195},"upgradeStep":1}}}, +{"id":93263,"name":"Groundbreaker Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,496,744,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"10":494,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"9":460,"10":691,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"9":478,"10":717,"22":3842},"upgradeStep":1}}}, +{"id":93264,"name":"Cragchewer Sollerets","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,700,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":464,"8":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":650,"8":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":674,"8":552,"22":3842},"upgradeStep":1}}}, +{"id":93265,"name":"Scar Swallower Greatboots","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1469,979,709,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":471,"7":370,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":658,"7":517,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":683,"7":536,"22":3842},"upgradeStep":1}}}, +{"id":93266,"name":"Boots of the Healing Stream","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1469,979,589,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"6":458,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":546,"6":641,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":567,"6":665,"22":2813},"upgradeStep":1}}}, +{"id":93267,"name":"Greaves of Manifest Destiny","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,979,1469,0,0,604,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":401,"11":452,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":561,"11":633,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":582,"11":656,"22":2813},"upgradeStep":1}}}, +{"id":93268,"name":"Treads of Rejuvenating Mists","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1469,979,0,0,672,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":446,"11":412,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"6":624,"11":576,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"6":647,"11":597,"22":2022},"upgradeStep":1}}}, +{"id":93269,"name":"Troll-Toe Tabi","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,979,1469,0,0,691,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"7":390,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"7":546,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"7":567,"22":2022},"upgradeStep":1}}}, +{"id":93270,"name":"Slippers of Soothing Balm","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,653,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":606,"11":606,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":629,"11":629,"22":1588},"upgradeStep":1}}}, +{"id":93271,"name":"Beach-Born Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,0,636,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":422,"6":440,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"5":591,"6":615,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"5":613,"6":638,"22":1588},"upgradeStep":1}}}, +{"id":93272,"name":"Sabatons of the Sullied Shore","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,496,744,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"10":494,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"9":460,"10":691,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"9":478,"10":717,"22":3842},"upgradeStep":1}}}, +{"id":93273,"name":"Sea-Soaked Sollerets","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,700,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":464,"8":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"6":650,"8":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"6":674,"8":552,"22":3842},"upgradeStep":1}}}, +{"id":93274,"name":"Greatboots of Flashing Light","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1469,979,709,0,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":471,"7":370,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":658,"7":517,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":683,"7":536,"22":3842},"upgradeStep":1}}}, +{"id":93275,"name":"Totem-Binder Boots","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1469,979,589,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"6":458,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":546,"6":641,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":567,"6":665,"22":2813},"upgradeStep":1}}}, +{"id":93276,"name":"Odlaw's Everwalkers","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,979,1469,0,0,604,0,0,0,0,0,682,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":401,"11":452,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":561,"11":633,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":582,"11":656,"22":2813},"upgradeStep":1}}}, +{"id":93277,"name":"Statue Summoner's Treads","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1469,979,0,0,672,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":446,"11":412,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"6":624,"11":576,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"6":647,"11":597,"22":2022},"upgradeStep":1}}}, +{"id":93278,"name":"Crab-Leather Tabi","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,979,1469,0,0,691,0,589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":458,"7":390,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"5":641,"7":546,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"5":665,"7":567,"22":2022},"upgradeStep":1}}}, +{"id":93279,"name":"Shieldwarden Slippers","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,653,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"4":606,"11":606,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"4":629,"11":629,"22":1588},"upgradeStep":1}}}, +{"id":93280,"name":"Sandals of Oiled Silk","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,0,636,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":422,"6":440,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"5":591,"6":615,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"5":613,"6":638,"22":1588},"upgradeStep":1}}}, +{"id":93323,"name":"Kwon's Crushing Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,613,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":393,"11":393,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":566,"11":566,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":589,"11":589,"22":3143},"upgradeStep":1}}}, +{"id":93324,"name":"Immovable Waistplate","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[620,0,1469,0,0,533,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":384,"2":974,"5":340,"10":609,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":570,"2":1363,"5":492,"10":869,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":594,"2":1414,"5":512,"10":903,"22":3143},"upgradeStep":1}}}, +{"id":93325,"name":"Divide's Greatheart Clasp","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,0,456,0,0,0,704,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":289,"11":454,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":420,"11":651,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":438,"11":677,"22":3143},"upgradeStep":1}}}, +{"id":93326,"name":"Shigi's Chain of Cheerful Summons","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,0,533,0,0,0,660,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":340,"11":424,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":492,"11":610,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":512,"11":634,"22":2302},"upgradeStep":1}}}, +{"id":93327,"name":"Bloodbinder Links","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,0,613,0,0,0,613,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":393,"11":393,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":566,"11":566,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":589,"11":589,"22":2302},"upgradeStep":1}}}, +{"id":93328,"name":"Prevenge's Dagger-Carrier","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,456,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":289,"11":454,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":420,"11":651,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":438,"11":677,"22":1654},"upgradeStep":1}}}, +{"id":93329,"name":"Bambrick's Striking Strap","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1469,899,632,0,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"6":372,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":584,"6":536,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":607,"6":557,"22":1654},"upgradeStep":1}}}, +{"id":93330,"name":"Chang's Changing Cord","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,669,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":431,"6":330,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":618,"6":477,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":643,"6":496,"22":1300},"upgradeStep":1}}}, +{"id":93331,"name":"Sash of Surehandedness","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,899,669,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":618,"7":477,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":643,"7":496,"22":1300},"upgradeStep":1}}}, +{"id":93332,"name":"Girdle of Crushing Strength","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,613,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":393,"11":393,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":566,"11":566,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":589,"11":589,"22":3143},"upgradeStep":1}}}, +{"id":93333,"name":"Waistplate of Immobility","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[620,0,1469,0,0,533,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":384,"2":974,"5":340,"10":609,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":570,"2":1363,"5":492,"10":869,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":594,"2":1414,"5":512,"10":903,"22":3143},"upgradeStep":1}}}, +{"id":93334,"name":"Divide's Loyal Clasp","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,0,456,0,0,0,704,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":289,"11":454,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":420,"11":651,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":438,"11":677,"22":3143},"upgradeStep":1}}}, +{"id":93335,"name":"Chain of Flaming Arrows","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,0,533,0,0,0,660,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":340,"11":424,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":492,"11":610,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":512,"11":634,"22":2302},"upgradeStep":1}}}, +{"id":93336,"name":"Links of Bonded Blood","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,0,613,0,0,0,613,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":393,"11":393,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":566,"11":566,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":589,"11":589,"22":2302},"upgradeStep":1}}}, +{"id":93337,"name":"Prevenge's Swashbuckling Cinch","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,456,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":289,"11":454,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":420,"11":651,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":438,"11":677,"22":1654},"upgradeStep":1}}}, +{"id":93338,"name":"Soothing Straps","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1469,899,632,0,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":406,"6":372,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":584,"6":536,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":607,"6":557,"22":1654},"upgradeStep":1}}}, +{"id":93339,"name":"Bon-iy's Unbreakable Cord","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,669,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":431,"6":330,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":618,"6":477,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":643,"6":496,"22":1300},"upgradeStep":1}}}, +{"id":93340,"name":"Sash of Bouncing Power","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,899,669,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":618,"7":477,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":643,"7":496,"22":1300},"upgradeStep":1}}}, +{"id":93341,"name":"Dominator's Deadeye Badge","icon":"ability_hunter_focusedaim","type":12,"stats":[0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":809},"isBase":true}}}, +{"id":93342,"name":"Dominator's Arcane Badge","icon":"inv_trinket_naxxramas02","type":12,"stats":[0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"3":809},"isBase":true}}}, +{"id":93343,"name":"Dominator's Mending Badge","icon":"inv_misc_trinketpanda_06","type":12,"stats":[0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"3":809},"isBase":true}}}, +{"id":93344,"name":"Dominator's Knightly Badge","icon":"inv_jewelry_trinket_14","type":12,"stats":[809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":809},"isBase":true}}}, +{"id":93345,"name":"Dominator's Durable Badge","icon":"inv_jewelry_trinket_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"9":809},"isBase":true}}}, +{"id":93346,"name":"Deadeye Badge of the Shieldwall","icon":"ability_hunter_focusedaim","type":12,"stats":[0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":809},"isBase":true}}}, +{"id":93347,"name":"Arcane Badge of the Shieldwall","icon":"inv_trinket_naxxramas02","type":12,"stats":[0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"3":809},"isBase":true}}}, +{"id":93348,"name":"Mending Badge of the Shieldwall","icon":"inv_misc_trinketpanda_06","type":12,"stats":[0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"3":809},"isBase":true}}}, +{"id":93349,"name":"Knightly Badge of the Shieldwall","icon":"inv_jewelry_trinket_14","type":12,"stats":[809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":809},"isBase":true}}}, +{"id":93350,"name":"Durable Badge of the Shieldwall","icon":"inv_jewelry_trinket_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"9":809},"isBase":true}}}, +{"id":93387,"name":"Akama's Seal of Courage","icon":"inv_jewelry_ring_149","type":11,"stats":[0,0,1032,688,0,402,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":285,"6":349}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"5":373,"6":457}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"5":388,"6":474},"upgradeStep":1}}}, +{"id":93391,"name":"Heartbreak Charm","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,949,633,0,0,411,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":317,"7":330}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"6":381,"7":397}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"6":396,"7":412},"upgradeStep":1}}}, +{"id":93392,"name":"Winking Eye of Love","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,949,633,411,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"6":330}},"480":{"randPropPoints":1116,"stats":{"2":880,"3":587,"4":381,"6":397}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"4":396,"6":412},"upgradeStep":1}}}, +{"id":93393,"name":"Sweet Perfume Broach","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,633,949,0,0,0,380,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"6":353,"7":414}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":914,"6":366,"7":430},"upgradeStep":1}}}, +{"id":93394,"name":"Choker of the Pure Heart","icon":"inv_jewelry_necklace_45","type":2,"stats":[633,0,949,0,0,434,401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"6":309}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"5":403,"6":372}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":914,"5":418,"6":386},"upgradeStep":1}}}, +{"id":93395,"name":"Shard of Pirouetting Happiness","icon":"inv_jewelry_necklace_02","type":2,"stats":[633,0,949,0,0,320,0,0,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"9":371}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"5":297,"9":446}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":914,"5":309,"9":463},"upgradeStep":1}}}, +{"id":93413,"name":"Crafted Dreadful Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93414,"name":"Crafted Dreadful Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93415,"name":"Crafted Dreadful Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":4,"stats":[850,0,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"0":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93416,"name":"Crafted Dreadful Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93417,"name":"Crafted Dreadful Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93418,"name":"Crafted Dreadful Gladiator's Quickblade","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93419,"name":"Crafted Dreadful Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93420,"name":"Crafted Dreadful Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,478,717,0,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":342,"7":280,"22":1000},"isBase":true}}}, +{"id":93421,"name":"Crafted Dreadful Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,478,717,0,0,280,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":280,"11":342,"22":1000},"isBase":true}}}, +{"id":93422,"name":"Crafted Dreadful Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,478,717,0,0,0,280,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":280,"8":342},"isBase":true}}}, +{"id":93423,"name":"Crafted Dreadful Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,478,717,0,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":280,"11":342},"isBase":true}}}, +{"id":93424,"name":"Crafted Dreadful Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93425,"name":"Crafted Dreadful Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,478,717,0,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"6":342,"7":280},"isBase":true}}}, +{"id":93426,"name":"Crafted Dreadful Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,478,717,0,0,342,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"11":280},"isBase":true}}}, +{"id":93427,"name":"Crafted Dreadful Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,850,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93428,"name":"Crafted Dreadful Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"22":1125},"isBase":true}}}, +{"id":93429,"name":"Crafted Dreadful Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,957,558,0,376,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":376,"7":373,"22":1125},"isBase":true}}}, +{"id":93430,"name":"Crafted Dreadful Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"22":1125},"isBase":true}}}, +{"id":93431,"name":"Crafted Dreadful Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"22":1375},"isBase":true}}}, +{"id":93432,"name":"Crafted Dreadful Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"22":1375},"isBase":true}}}, +{"id":93433,"name":"Crafted Dreadful Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"22":1375},"isBase":true}}}, +{"id":93434,"name":"Crafted Dreadful Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,717,478,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":342,"6":280,"22":875},"isBase":true}}}, +{"id":93435,"name":"Crafted Dreadful Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_e_01","type":6,"armorType":1,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"22":875},"isBase":true}}}, +{"id":93436,"name":"Crafted Dreadful Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"22":875},"isBase":true}}}, +{"id":93437,"name":"Crafted Dreadful Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"7":280,"22":1000},"isBase":true}}}, +{"id":93438,"name":"Crafted Dreadful Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"22":1000},"isBase":true}}}, +{"id":93439,"name":"Crafted Dreadful Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"22":1000},"isBase":true}}}, +{"id":93440,"name":"Crafted Dreadful Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,711,474,0,0,316,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"6":316,"11":316},"isBase":true}}}, +{"id":93441,"name":"Crafted Dreadful Gladiator's Barrier - UNUSED","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,711,474,0,0,316,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"6":316,"11":316,"22":15455},"isBase":true}}}, +{"id":93442,"name":"Crafted Dreadful Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,547,364,0,0,243,0,0,0,0,243,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"weaponSpeed":1.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"stats":{"2":547,"3":364,"6":243,"11":243,"14":4871},"isBase":true}}}, +{"id":93443,"name":"Crafted Dreadful Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias1_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1275,850,0,0,567,0,0,0,0,567,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"stats":{"2":1275,"3":850,"6":567,"11":567,"14":4871},"isBase":true}}}, +{"id":93444,"name":"Crafted Dreadful Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,0,0,342,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"11":280},"isBase":true}}}, +{"id":93445,"name":"Crafted Dreadful Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,0,0,0,342,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":342,"11":280},"isBase":true}}}, +{"id":93446,"name":"Crafted Dreadful Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,717,478,342,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"7":280},"isBase":true}}}, +{"id":93447,"name":"Crafted Dreadful Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,0,0,342,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"6":342,"11":280},"isBase":true}}}, +{"id":93448,"name":"Crafted Dreadful Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,0,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"5":342,"7":280},"isBase":true}}}, +{"id":93449,"name":"Crafted Dreadful Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,717,478,342,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"7":280},"isBase":true}}}, +{"id":93450,"name":"Crafted Dreadful Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,711,474,316,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"4":316,"11":316},"isBase":true}}}, +{"id":93451,"name":"Crafted Dreadful Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,547,364,0,0,243,0,0,0,0,243,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"weaponSpeed":1.9,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"stats":{"2":547,"3":364,"6":243,"11":243,"14":4871},"isBase":true}}}, +{"id":93452,"name":"Crafted Dreadful Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvp410_c_01","type":14,"rangedWeaponType":2,"stats":[0,850,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93453,"name":"Crafted Dreadful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"22":4836},"isBase":true}}}, +{"id":93454,"name":"Crafted Dreadful Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"22":3023},"isBase":true}}}, +{"id":93455,"name":"Crafted Dreadful Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"22":3929},"isBase":true}}}, +{"id":93456,"name":"Crafted Dreadful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"22":4232},"isBase":true}}}, +{"id":93457,"name":"Crafted Dreadful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"22":3627},"isBase":true}}}, +{"id":93458,"name":"Crafted Dreadful Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":1591},"isBase":true}}}, +{"id":93459,"name":"Crafted Dreadful Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93460,"name":"Crafted Dreadful Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":2227},"isBase":true}}}, +{"id":93461,"name":"Crafted Dreadful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":2545},"isBase":true}}}, +{"id":93462,"name":"Crafted Dreadful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":1909},"isBase":true}}}, +{"id":93463,"name":"Crafted Dreadful Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"22":1432},"isBase":true}}}, +{"id":93464,"name":"Crafted Dreadful Gladiator's Leather Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"22":1750},"isBase":true}}}, +{"id":93465,"name":"Crafted Dreadful Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"22":1113},"isBase":true}}}, +{"id":93466,"name":"Crafted Dreadful Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":1591},"isBase":true}}}, +{"id":93467,"name":"Crafted Dreadful Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93468,"name":"Crafted Dreadful Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2227},"isBase":true}}}, +{"id":93469,"name":"Crafted Dreadful Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":2545},"isBase":true}}}, +{"id":93470,"name":"Crafted Dreadful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":1909},"isBase":true}}}, +{"id":93471,"name":"Crafted Dreadful Gladiator's Staff","icon":"inv_staff_2h_pvppandarias1_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,850,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":4970,"weaponDamageMax":7456,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":4970,"weaponDamageMax":7456,"stats":{"1":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93472,"name":"Crafted Dreadful Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"22":1432},"isBase":true}}}, +{"id":93473,"name":"Crafted Dreadful Gladiator's Leather Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"22":1750},"isBase":true}}}, +{"id":93474,"name":"Crafted Dreadful Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"22":1113},"isBase":true}}}, +{"id":93475,"name":"Crafted Dreadful Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"22":1591},"isBase":true}}}, +{"id":93476,"name":"Crafted Dreadful Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"22":2068},"isBase":true}}}, +{"id":93477,"name":"Crafted Dreadful Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"22":2227},"isBase":true}}}, +{"id":93478,"name":"Crafted Dreadful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2545},"isBase":true}}}, +{"id":93479,"name":"Crafted Dreadful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"22":1909},"isBase":true}}}, +{"id":93480,"name":"Crafted Dreadful Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":2903,"weaponDamageMax":5392,"weaponSpeed":1.8,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":2903,"weaponDamageMax":5392,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93481,"name":"Crafted Dreadful Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,850,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"weaponSpeed":3,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":7456,"weaponDamageMax":11185,"stats":{"1":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93482,"name":"Crafted Dreadful Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias1_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,547,364,0,0,243,0,0,0,0,243,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"weaponSpeed":1.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1290,"weaponDamageMax":2396,"stats":{"2":547,"3":364,"6":243,"11":243,"14":4871},"isBase":true}}}, +{"id":93483,"name":"Crafted Dreadful Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,711,474,316,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"2":711,"3":474,"4":316,"11":316,"22":15455},"isBase":true}}}, +{"id":93484,"name":"Crafted Dreadful Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias1_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1275,850,567,0,0,0,0,0,0,567,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"weaponSpeed":2,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":2485,"weaponDamageMax":3728,"stats":{"2":1275,"3":850,"4":567,"11":567,"14":4871},"isBase":true}}}, +{"id":93485,"name":"Crafted Dreadful Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809},"isBase":true}}}, +{"id":93486,"name":"Crafted Dreadful Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957},"isBase":true}}}, +{"id":93487,"name":"Crafted Dreadful Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809},"isBase":true}}}, +{"id":93488,"name":"Crafted Dreadful Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"22":1992},"isBase":true}}}, +{"id":93489,"name":"Crafted Dreadful Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,558,957,0,0,376,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":376,"7":373,"22":1992},"isBase":true}}}, +{"id":93490,"name":"Crafted Dreadful Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"22":2435},"isBase":true}}}, +{"id":93491,"name":"Crafted Dreadful Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,558,957,0,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":373,"7":376,"22":2435},"isBase":true}}}, +{"id":93492,"name":"Crafted Dreadful Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,478,717,0,0,0,0,342,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":342,"11":280,"22":1549},"isBase":true}}}, +{"id":93493,"name":"Crafted Dreadful Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,478,717,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"6":280,"22":1549},"isBase":true}}}, +{"id":93494,"name":"Crafted Dreadful Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":3541},"isBase":true}}}, +{"id":93495,"name":"Crafted Dreadful Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":2213},"isBase":true}}}, +{"id":93496,"name":"Crafted Dreadful Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2877},"isBase":true}}}, +{"id":93497,"name":"Crafted Dreadful Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":3099},"isBase":true}}}, +{"id":93498,"name":"Crafted Dreadful Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":2656},"isBase":true}}}, +{"id":93499,"name":"Crafted Dreadful Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,957,558,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":345,"6":425,"22":1250},"isBase":true}}}, +{"id":93500,"name":"Crafted Dreadful Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":1625},"isBase":true}}}, +{"id":93501,"name":"Crafted Dreadful Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,412,0,0,0,572,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":412,"11":572,"22":1750},"isBase":true}}}, +{"id":93502,"name":"Crafted Dreadful Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2000},"isBase":true}}}, +{"id":93503,"name":"Crafted Dreadful Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,425,0,0,0,345,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":425,"11":345,"22":1500},"isBase":true}}}, +{"id":93504,"name":"Crafted Dreadful Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"22":1432},"isBase":true}}}, +{"id":93505,"name":"Crafted Dreadful Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,558,957,0,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":373,"7":376,"22":1750},"isBase":true}}}, +{"id":93506,"name":"Crafted Dreadful Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_e_01","type":6,"armorType":2,"stats":[0,478,717,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"5":342,"6":280,"22":1113},"isBase":true}}}, +{"id":93507,"name":"Crafted Dreadful Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":1591},"isBase":true}}}, +{"id":93508,"name":"Crafted Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":1591},"isBase":true}}}, +{"id":93509,"name":"Crafted Dreadful Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93510,"name":"Crafted Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93511,"name":"Crafted Dreadful Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":2227},"isBase":true}}}, +{"id":93512,"name":"Crafted Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":2227},"isBase":true}}}, +{"id":93513,"name":"Crafted Dreadful Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":1909},"isBase":true}}}, +{"id":93514,"name":"Crafted Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":1909},"isBase":true}}}, +{"id":93515,"name":"Crafted Dreadful Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":2545},"isBase":true}}}, +{"id":93516,"name":"Crafted Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":2545},"isBase":true}}}, +{"id":93517,"name":"Crafted Dreadful Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":1591},"isBase":true}}}, +{"id":93518,"name":"Crafted Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":1591},"isBase":true}}}, +{"id":93519,"name":"Crafted Dreadful Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93520,"name":"Crafted Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93521,"name":"Crafted Dreadful Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2227},"isBase":true}}}, +{"id":93522,"name":"Crafted Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2227},"isBase":true}}}, +{"id":93523,"name":"Crafted Dreadful Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":1909},"isBase":true}}}, +{"id":93524,"name":"Crafted Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":1909},"isBase":true}}}, +{"id":93525,"name":"Crafted Dreadful Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":2545},"isBase":true}}}, +{"id":93526,"name":"Crafted Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[11],"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":2545},"isBase":true}}}, +{"id":93527,"name":"Crafted Dreadful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"22":4836},"isBase":true}}}, +{"id":93528,"name":"Crafted Dreadful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"22":3023},"isBase":true}}}, +{"id":93529,"name":"Crafted Dreadful Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"22":3929},"isBase":true}}}, +{"id":93530,"name":"Crafted Dreadful Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"22":4232},"isBase":true}}}, +{"id":93531,"name":"Crafted Dreadful Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"22":3627},"isBase":true}}}, +{"id":93532,"name":"Crafted Dreadful Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"22":2720},"isBase":true}}}, +{"id":93533,"name":"Crafted Dreadful Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"22":2720},"isBase":true}}}, +{"id":93534,"name":"Crafted Dreadful Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"22":3325},"isBase":true}}}, +{"id":93535,"name":"Crafted Dreadful Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"22":3325},"isBase":true}}}, +{"id":93536,"name":"Crafted Dreadful Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"22":2116},"isBase":true}}}, +{"id":93537,"name":"Crafted Dreadful Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"22":2116},"isBase":true}}}, +{"id":93538,"name":"Crafted Dreadful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":4836},"isBase":true}}}, +{"id":93539,"name":"Crafted Dreadful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":3023},"isBase":true}}}, +{"id":93540,"name":"Crafted Dreadful Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":3929},"isBase":true}}}, +{"id":93541,"name":"Crafted Dreadful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":4232},"isBase":true}}}, +{"id":93542,"name":"Crafted Dreadful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":3627},"isBase":true}}}, +{"id":93543,"name":"Crafted Dreadful Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[558,0,957,0,0,376,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":376,"7":373,"22":2720},"isBase":true}}}, +{"id":93544,"name":"Crafted Dreadful Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[558,0,957,0,0,0,373,0,0,0,0,376,0,0,0,0,0,0,0,0,0,0,2720,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":373,"11":376,"22":2720},"isBase":true}}}, +{"id":93545,"name":"Crafted Dreadful Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[558,0,957,0,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":376,"11":373,"22":3325},"isBase":true}}}, +{"id":93546,"name":"Crafted Dreadful Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[558,0,957,0,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"6":373,"7":376,"22":3325},"isBase":true}}}, +{"id":93547,"name":"Crafted Dreadful Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_e_01","type":6,"armorType":4,"stats":[478,0,717,0,0,0,280,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"8":342,"22":2116},"isBase":true}}}, +{"id":93548,"name":"Crafted Dreadful Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_e_01","type":6,"armorType":4,"stats":[478,0,717,0,0,0,0,342,0,0,0,280,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"7":342,"11":280,"22":2116},"isBase":true}}}, +{"id":93549,"name":"Crafted Dreadful Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,850,1275,0,0,0,567,0,0,0,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"weaponSpeed":3.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":1617,"weaponDamageMin":8947,"weaponDamageMax":13421,"stats":{"1":850,"2":1275,"6":567,"11":567},"isBase":true}}}, +{"id":93550,"name":"Crafted Dreadful Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":1250},"isBase":true}}}, +{"id":93551,"name":"Crafted Dreadful Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":1625},"isBase":true}}}, +{"id":93552,"name":"Crafted Dreadful Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":1750},"isBase":true}}}, +{"id":93553,"name":"Crafted Dreadful Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":2000},"isBase":true}}}, +{"id":93554,"name":"Crafted Dreadful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":1500},"isBase":true}}}, +{"id":93555,"name":"Crafted Dreadful Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"22":1250},"isBase":true}}}, +{"id":93556,"name":"Crafted Dreadful Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"22":1625},"isBase":true}}}, +{"id":93557,"name":"Crafted Dreadful Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"22":1750},"isBase":true}}}, +{"id":93558,"name":"Crafted Dreadful Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2000},"isBase":true}}}, +{"id":93559,"name":"Crafted Dreadful Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"22":1500},"isBase":true}}}, +{"id":93560,"name":"Crafted Dreadful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809},"isBase":true}}}, +{"id":93561,"name":"Crafted Dreadful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"6":809},"isBase":true}}}, +{"id":93562,"name":"Crafted Dreadful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"11":809},"isBase":true}}}, +{"id":93563,"name":"Crafted Dreadful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957},"isBase":true}}}, +{"id":93564,"name":"Crafted Dreadful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809},"isBase":true}}}, +{"id":93565,"name":"Crafted Dreadful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"4":809},"isBase":true}}}, +{"id":93566,"name":"Crafted Dreadful Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,558,957,0,0,376,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":376,"7":373,"22":1432},"isBase":true}}}, +{"id":93567,"name":"Crafted Dreadful Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,558,957,0,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"6":376,"11":373,"22":1750},"isBase":true}}}, +{"id":93568,"name":"Crafted Dreadful Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_e_01","type":6,"armorType":2,"stats":[0,478,717,0,0,0,0,342,0,0,0,280,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"1":478,"2":717,"7":342,"11":280,"22":1113},"isBase":true}}}, +{"id":93569,"name":"Crafted Dreadful Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":2545},"isBase":true}}}, +{"id":93570,"name":"Crafted Dreadful Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":1591},"isBase":true}}}, +{"id":93571,"name":"Crafted Dreadful Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2068,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2068},"isBase":true}}}, +{"id":93572,"name":"Crafted Dreadful Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2227,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":2227},"isBase":true}}}, +{"id":93573,"name":"Crafted Dreadful Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":1909},"isBase":true}}}, +{"id":93574,"name":"Crafted Dreadful Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,957,558,376,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"7":373,"22":1992},"isBase":true}}}, +{"id":93575,"name":"Crafted Dreadful Gladiator's Mail Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,957,558,0,0,373,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":373,"7":376,"22":2435},"isBase":true}}}, +{"id":93576,"name":"Crafted Dreadful Gladiator's Mail Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,957,558,376,0,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,2435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":376,"11":373,"22":2435},"isBase":true}}}, +{"id":93577,"name":"Crafted Dreadful Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,717,478,0,0,0,280,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"7":280,"11":342,"22":1549},"isBase":true}}}, +{"id":93578,"name":"Crafted Dreadful Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,717,478,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":717,"3":478,"4":342,"6":280,"22":1549},"isBase":true}}}, +{"id":93579,"name":"Crafted Dreadful Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1287,698,412,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"4":412,"7":572,"22":3541},"isBase":true}}}, +{"id":93580,"name":"Crafted Dreadful Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,957,558,345,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"7":425,"22":2213},"isBase":true}}}, +{"id":93581,"name":"Crafted Dreadful Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":2877},"isBase":true}}}, +{"id":93582,"name":"Crafted Dreadful Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":3099},"isBase":true}}}, +{"id":93583,"name":"Crafted Dreadful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,957,558,345,0,0,0,0,0,0,425,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"11":425,"22":2656},"isBase":true}}}, +{"id":93584,"name":"Crafted Dreadful Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,698,1287,0,0,0,412,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":412,"11":572,"22":3541},"isBase":true}}}, +{"id":93585,"name":"Crafted Dreadful Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,558,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"5":345,"6":425,"22":2213},"isBase":true}}}, +{"id":93586,"name":"Crafted Dreadful Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,618,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":618,"2":1287,"8":572,"11":332,"22":2877},"isBase":true}}}, +{"id":93587,"name":"Crafted Dreadful Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,698,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"1":698,"2":1287,"6":572,"7":412,"22":3099},"isBase":true}}}, +{"id":93588,"name":"Crafted Dreadful Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,558,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"1":558,"2":957,"7":425,"8":345,"22":2656},"isBase":true}}}, +{"id":93589,"name":"Crafted Dreadful Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,957,558,0,0,376,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,1992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"6":376,"11":373,"22":1992},"isBase":true}}}, +{"id":93590,"name":"Crafted Dreadful Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":3541},"isBase":true}}}, +{"id":93591,"name":"Crafted Dreadful Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,957,558,345,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"4":345,"6":425,"22":2213},"isBase":true}}}, +{"id":93592,"name":"Crafted Dreadful Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1287,618,0,0,0,332,0,0,0,572,0,0,0,0,0,0,0,0,0,0,2877,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"7":332,"11":572,"22":2877},"isBase":true}}}, +{"id":93593,"name":"Crafted Dreadful Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1287,698,0,0,0,572,0,0,0,412,0,0,0,0,0,0,0,0,0,0,3099,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":572,"11":412,"22":3099},"isBase":true}}}, +{"id":93594,"name":"Crafted Dreadful Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,957,558,0,0,0,345,0,0,0,425,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":345,"11":425,"22":2656},"isBase":true}}}, +{"id":93595,"name":"Crafted Dreadful Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias1_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":3318,"weaponDamageMax":4977,"weaponSpeed":1.8,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":3318,"weaponDamageMax":4977,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93596,"name":"Crafted Dreadful Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93597,"name":"Crafted Dreadful Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,364,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"1":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93598,"name":"Crafted Dreadful Gladiator's Render","icon":"inv_hand_1h_pvppandarias1_c_01","type":13,"weaponType":3,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93599,"name":"Crafted Dreadful Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93600,"name":"Crafted Dreadful Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93601,"name":"Crafted Dreadful Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93602,"name":"Crafted Dreadful Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,547,364,243,0,0,0,0,0,0,243,0,0,4871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"weaponSpeed":1.9,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":1532,"weaponDamageMax":2846,"stats":{"2":547,"3":364,"4":243,"11":243,"14":4871},"isBase":true}}}, +{"id":93603,"name":"Crafted Dreadful Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias1_d_01","type":13,"weaponType":1,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93604,"name":"Crafted Dreadful Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias1_d_01","type":13,"weaponType":4,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4193,"weaponDamageMax":7788,"stats":{"0":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93605,"name":"Crafted Dreadful Gladiator's Slicer","icon":"sword_1h_pvppandarias1_c_01","type":13,"weaponType":9,"handType":2,"stats":[364,0,547,0,0,0,243,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":693,"weaponDamageMin":4792,"weaponDamageMax":7189,"weaponSpeed":2.6,"ilvl":457,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":693,"weaponDamageMin":4792,"weaponDamageMax":7189,"stats":{"0":364,"2":547,"6":243,"11":243},"isBase":true}}}, +{"id":93606,"name":"Crafted Dreadful Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93607,"name":"Crafted Dreadful Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[478,0,717,0,0,0,280,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"7":342,"22":1000},"isBase":true}}}, +{"id":93608,"name":"Crafted Dreadful Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[478,0,717,0,0,280,0,0,0,0,0,342,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":280,"11":342,"22":1000},"isBase":true}}}, +{"id":93609,"name":"Crafted Dreadful Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[478,0,717,0,0,0,280,0,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":280,"8":342},"isBase":true}}}, +{"id":93610,"name":"Crafted Dreadful Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[478,0,717,0,0,342,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":342,"7":280},"isBase":true}}}, +{"id":93611,"name":"Crafted Dreadful Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"458":{"randPropPoints":1213,"isBase":true}}}, +{"id":93612,"name":"Crafted Dreadful Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[478,0,717,0,0,0,342,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"6":342,"7":280},"isBase":true}}}, +{"id":93613,"name":"Crafted Dreadful Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[478,0,717,0,0,342,0,0,0,0,0,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"0":478,"2":717,"5":342,"11":280},"isBase":true}}}, +{"id":93614,"name":"Crafted Dreadful Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[474,0,711,0,0,0,316,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,15455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":901,"ilvl":457,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"457":{"randPropPoints":901,"stats":{"0":474,"2":711,"6":316,"11":316,"22":15455},"isBase":true}}}, +{"id":93615,"name":"Crafted Dreadful Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,957,558,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1250,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"5":345,"6":425,"22":1250},"isBase":true}}}, +{"id":93616,"name":"Crafted Dreadful Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1287,618,0,0,572,0,0,0,0,332,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":618,"6":572,"11":332,"22":1625},"isBase":true}}}, +{"id":93617,"name":"Crafted Dreadful Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1287,698,0,0,0,412,0,0,0,572,0,0,0,0,0,0,0,0,0,0,1750,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"7":412,"11":572,"22":1750},"isBase":true}}}, +{"id":93618,"name":"Crafted Dreadful Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1287,698,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"2":1287,"3":698,"6":412,"7":572,"22":2000},"isBase":true}}}, +{"id":93619,"name":"Crafted Dreadful Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,957,558,0,0,0,425,0,0,0,345,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"2":957,"3":558,"7":425,"11":345,"22":1500},"isBase":true}}}, +{"id":93620,"name":"Crafted Dreadful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[698,0,1287,0,0,0,412,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":412,"7":572,"22":4836},"isBase":true}}}, +{"id":93621,"name":"Crafted Dreadful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[558,0,957,0,0,345,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3023,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"5":345,"6":425,"22":3023},"isBase":true}}}, +{"id":93622,"name":"Crafted Dreadful Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[618,0,1287,0,0,0,0,0,572,0,0,332,0,0,0,0,0,0,0,0,0,0,3929,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":618,"2":1287,"8":572,"11":332,"22":3929},"isBase":true}}}, +{"id":93623,"name":"Crafted Dreadful Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[698,0,1287,0,0,0,572,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4232,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1632,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1632,"stats":{"0":698,"2":1287,"6":572,"7":412,"22":4232},"isBase":true}}}, +{"id":93624,"name":"Crafted Dreadful Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[558,0,957,0,0,0,0,425,345,0,0,0,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1213,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"458":{"randPropPoints":1213,"stats":{"0":558,"2":957,"7":425,"8":345,"22":3627},"isBase":true}}}, +{"id":93625,"name":"Miniature Winter Veil Tree","icon":"inv_knife_1h_common_b_01green","type":13,"weaponType":2,"handType":2,"stats":[0,485,730,0,0,324,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":925,"weaponDamageMin":3875,"weaponDamageMax":7197,"weaponSpeed":1.8,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":374,"2":562,"5":250,"7":250}},"480":{"randPropPoints":859,"weaponDamageMin":3597,"weaponDamageMax":6680,"stats":{"1":450,"2":677,"5":301,"7":301}},"484":{"randPropPoints":891,"weaponDamageMin":3733,"weaponDamageMax":6934,"stats":{"1":467,"2":703,"5":312,"7":312},"upgradeStep":1}}}, +{"id":94028,"name":"Zandalari Head-Cleaver","icon":"inv_axe_35","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":2485,"weaponDamageMax":4615,"weaponSpeed":2,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2485,"weaponDamageMax":4615,"isBase":true}}}, +{"id":94029,"name":"Faded Spirit-Wrencher Shoulders","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"weaponSpeed":2.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1339},"isBase":true}}}, +{"id":94030,"name":"Primordial Bloodsoaked Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3777},"isBase":true}}}, +{"id":94031,"name":"Primordial Bloodsoaked Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":3238},"isBase":true}}}, +{"id":94032,"name":"Primordial Bloodsoaked Gauntlets","icon":"inv_gauntlets_14","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2698},"isBase":true}}}, +{"id":94033,"name":"Primordial Bloodsoaked Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2968},"isBase":true}}}, +{"id":94034,"name":"Primordial Bloodsoaked Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":4317},"isBase":true}}}, +{"id":94035,"name":"Primordial Bloodsoaked Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2428},"isBase":true}}}, +{"id":94036,"name":"Forgotten Peacekeeper Leggings","icon":"inv_pants_plate_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3777},"isBase":true}}}, +{"id":94037,"name":"Forgotten Peacekeeper Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2968},"isBase":true}}}, +{"id":94038,"name":"Forgotten Peacekeeper Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2698},"isBase":true}}}, +{"id":94039,"name":"Forgotten Peacekeeper Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":4317},"isBase":true}}}, +{"id":94040,"name":"Forgotten Peacekeeper Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2428},"isBase":true}}}, +{"id":94041,"name":"Forgotten Peacekeeper Armguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1889},"isBase":true}}}, +{"id":94042,"name":"Forgotten Peacekeeper Shoulders","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":3238},"isBase":true}}}, +{"id":94043,"name":"Primordial Bloodsoaked Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1889},"isBase":true}}}, +{"id":94044,"name":"Discarded Swampstalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1420},"isBase":true}}}, +{"id":94045,"name":"Discarded Swampstalker Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1278},"isBase":true}}}, +{"id":94046,"name":"Discarded Swampstalker Headband","icon":"inv_belt_24","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1846},"isBase":true}}}, +{"id":94047,"name":"Discarded Swampstalker Leggings","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1988},"isBase":true}}}, +{"id":94048,"name":"Discarded Swampstalker Shoulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1704},"isBase":true}}}, +{"id":94049,"name":"Discarded Swampstalker Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1562},"isBase":true}}}, +{"id":94050,"name":"Discarded Swampstalker Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2272},"isBase":true}}}, +{"id":94051,"name":"Discarded Swampstalker Wrists","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":994},"isBase":true}}}, +{"id":94052,"name":"Battered Saurscale Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3161},"isBase":true}}}, +{"id":94053,"name":"Battered Saurscale Leggings","icon":"inv_pants_12","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2766},"isBase":true}}}, +{"id":94054,"name":"Battered Saurscale Gloves","icon":"inv_gauntlets_24","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1976},"isBase":true}}}, +{"id":94055,"name":"Battered Saurscale Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1383},"isBase":true}}}, +{"id":94056,"name":"Battered Saurscale Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1778},"isBase":true}}}, +{"id":94057,"name":"Battered Saurscale Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2173},"isBase":true}}}, +{"id":94058,"name":"Exiled Dabbler's Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1785},"isBase":true}}}, +{"id":94059,"name":"Exiled Dabbler's Cinch","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1004},"isBase":true}}}, +{"id":94060,"name":"Exiled Dabbler's Mantle","icon":"inv_shoulder_17","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1339},"isBase":true}}}, +{"id":94061,"name":"Exiled Dabbler's Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1562},"isBase":true}}}, +{"id":94062,"name":"Exiled Dabbler's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1116},"isBase":true}}}, +{"id":94063,"name":"Exiled Dabbler's Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":781},"isBase":true}}}, +{"id":94064,"name":"Forlorn Loa-Binder Robe","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1785},"isBase":true}}}, +{"id":94065,"name":"Faded Spirit-Wrencher Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1785},"isBase":true}}}, +{"id":94066,"name":"Forlorn Loa-Binder Cage","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1450},"isBase":true}}}, +{"id":94067,"name":"Forlorn Loa-Binder Shoulders","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1339},"isBase":true}}}, +{"id":94070,"name":"Timeworn Shadowtooth Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1562},"isBase":true}}}, +{"id":94071,"name":"Timeworn Shadowtooth Grips","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1420},"isBase":true}}}, +{"id":94072,"name":"Timeworn Shadowtooth Cuirass","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2272},"isBase":true}}}, +{"id":94073,"name":"Timeworn Shadowtooth Wristwraps","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":994},"isBase":true}}}, +{"id":94074,"name":"Timeworn Shadowtooth Trousers","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1988},"isBase":true}}}, +{"id":94075,"name":"Timeworn Shadowtooth Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1278},"isBase":true}}}, +{"id":94076,"name":"Timeworn Shadowtooth Shoulderpads","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1704},"isBase":true}}}, +{"id":94077,"name":"Brittle Flamereaver Mask","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2568},"isBase":true}}}, +{"id":94078,"name":"Brittle Flamereaver Treads","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2173},"isBase":true}}}, +{"id":94079,"name":"Brittle Flamereaver Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1778,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1778},"isBase":true}}}, +{"id":94080,"name":"Brittle Flamereaver Pauldrons","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2371},"isBase":true}}}, +{"id":94081,"name":"Brittle Flamereaver Hauberk","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3161},"isBase":true}}}, +{"id":94082,"name":"Brittle Flamereaver Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":2766},"isBase":true}}}, +{"id":94083,"name":"Brittle Flamereaver Gloves","icon":"inv_gauntlets_68","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1976},"isBase":true}}}, +{"id":94084,"name":"Brittle Flamereaver Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1383},"isBase":true}}}, +{"id":94085,"name":"Tarnished Fanatic's Battlevest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":4317},"isBase":true}}}, +{"id":94086,"name":"Tarnished Fanatic's Warboots","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2968},"isBase":true}}}, +{"id":94087,"name":"Tarnished Fanatic's Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2428},"isBase":true}}}, +{"id":94088,"name":"Tarnished Fanatic's Wargreaves","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3777},"isBase":true}}}, +{"id":94089,"name":"Tarnished Fanatic's Deathgrips","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2698},"isBase":true}}}, +{"id":94090,"name":"Tarnished Fanatic's Shackles","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":1889},"isBase":true}}}, +{"id":94091,"name":"Tarnished Fanatic's Pauldrons","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":3238},"isBase":true}}}, +{"id":94092,"name":"Rustic Voodoo Wand","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":1118,"weaponDamageMax":2077,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":1118,"weaponDamageMax":2077,"isBase":true}}}, +{"id":94093,"name":"Saur-Singer Spellblade","icon":"inv_sword_109","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":1118,"weaponDamageMax":2077,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":1118,"weaponDamageMax":2077,"isBase":true}}}, +{"id":94094,"name":"Hexbelcher Rifle","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":4858,"weaponDamageMax":9023,"weaponSpeed":2.9,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":4858,"weaponDamageMax":9023,"isBase":true}}}, +{"id":94095,"name":"Thunder Eagle Staff","icon":"inv_staff_63","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"weaponDamageMin":3063,"weaponDamageMax":4595,"weaponSpeed":3.2,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":3063,"weaponDamageMax":4595,"isBase":true}}}, +{"id":94096,"name":"Discarded Strikeblade","icon":"inv_weapon_shortblade_65","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"isBase":true}}}, +{"id":94097,"name":"Defective Soulgem Staff","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":1246,"weaponDamageMin":5744,"weaponDamageMax":8616,"weaponSpeed":3,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":5744,"weaponDamageMax":8616,"isBase":true}}}, +{"id":94098,"name":"Dull Hawktalons","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"weaponSpeed":2.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":3230,"weaponDamageMax":6000,"isBase":true}}}, +{"id":94099,"name":"Corroded Hacker","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":2982,"weaponDamageMax":5538,"weaponSpeed":2.4,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2982,"weaponDamageMax":5538,"isBase":true}}}, +{"id":94100,"name":"Weighty Stone Axe","icon":"inv_axe_34","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":5361,"weaponDamageMax":8042,"weaponSpeed":2.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":5361,"weaponDamageMax":8042,"isBase":true}}}, +{"id":94101,"name":"Restrung Voodoo Bow","icon":"inv_weapon_bow_32","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":5026,"weaponDamageMax":9334,"weaponSpeed":3,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":5026,"weaponDamageMax":9334,"isBase":true}}}, +{"id":94102,"name":"Chiseled Fangs","icon":"inv_weapon_shortblade_30","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":534,"weaponDamageMin":2360,"weaponDamageMax":4384,"weaponSpeed":1.9,"ilvl":429,"phase":1,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2360,"weaponDamageMax":4384,"isBase":true}}}, +{"id":94103,"name":"Ritual Headcleaver Halberd","icon":"inv_weapon_halberd_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"weaponSpeed":3.5,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":6701,"weaponDamageMax":10052,"isBase":true}}}, +{"id":94104,"name":"Sky-Shaper Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"weaponDamageMin":3063,"weaponDamageMax":4595,"weaponSpeed":3.2,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"weaponDamageMin":3063,"weaponDamageMax":4595,"isBase":true}}}, +{"id":94211,"name":"Tarnished Fanatic's Headcover","icon":"inv_helmet_114","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3508},"isBase":true}}}, +{"id":94212,"name":"Hex-Caster Gavel","icon":"inv_mace_32","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":534,"weaponDamageMin":994,"weaponDamageMax":1846,"weaponSpeed":1.6,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":994,"weaponDamageMax":1846,"isBase":true}}}, +{"id":94213,"name":"Bloodtusk Shoulderpads","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":1704},"isBase":true}}}, +{"id":94214,"name":"Loa-Binder Disc","icon":"inv_shield_43","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":13847},"isBase":true}}}, +{"id":94215,"name":"Saurjaw Dagger","icon":"inv_weapon_shortblade_60","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":534,"weaponDamageMin":2556,"weaponDamageMax":3834,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2556,"weaponDamageMax":3834,"isBase":true}}}, +{"id":94216,"name":"Lifestep Treads","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":926,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":926,"stats":{"22":2173},"isBase":true}}}, +{"id":94217,"name":"Stubby Talonblade","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"weaponSpeed":1.8,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":534,"weaponDamageMin":2236,"weaponDamageMax":4154,"isBase":true}}}, +{"id":94218,"name":"Skyking Bulwark","icon":"inv_shield_42","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":694,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":694,"stats":{"22":13847},"isBase":true}}}, +{"id":94261,"name":"Deathbog Hauberk","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":3161},"isBase":true}}}, +{"id":94262,"name":"Faded Spirit-Wrencher Cage","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1450},"isBase":true}}}, +{"id":94263,"name":"Haunted Steel Greaves","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1871,1087,835,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":769,"7":560,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":802,"7":585,"22":4162},"upgradeStep":1}}}, +{"id":94264,"name":"Haunted Steel Headcover","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2519,1439,975,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":439,"6":487,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":895,"6":943,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":934,"6":982,"22":4919},"upgradeStep":1}}}, +{"id":94265,"name":"Haunted Steel Treads","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1087,0,1871,0,0,0,0,812,0,0,0,650,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":384,"11":300,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"7":748,"11":597,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"7":779,"11":623,"22":4162},"upgradeStep":1}}}, +{"id":94266,"name":"Haunted Steel Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,1025,0,0,0,940,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":465,"11":444,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"7":941,"11":866,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"7":982,"11":902,"22":4919},"upgradeStep":1}}}, +{"id":94267,"name":"Haunted Steel Warboots","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1087,0,1871,0,0,812,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"11":300,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"5":748,"11":597,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"5":779,"11":623,"22":4162},"upgradeStep":1}}}, +{"id":94268,"name":"Haunted Steel Headguard","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,0,1073,859,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":490,"11":402,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"10":985,"11":791,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"10":1028,"11":824,"22":4919},"upgradeStep":1}}}, +{"id":94269,"name":"Quilen Hide Boots","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1087,1871,0,0,690,0,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":321,"7":372,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":634,"7":726,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":662,"7":757,"22":2190},"upgradeStep":1}}}, +{"id":94270,"name":"Quilen Hide Helm","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,995,0,992,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"8":448,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":917,"8":911,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":955,"8":951,"22":2588},"upgradeStep":1}}}, +{"id":94271,"name":"Dreadrunner Sabatons","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1087,1871,0,0,710,0,0,0,0,0,776,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":332,"11":366,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":653,"11":715,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":681,"11":745,"22":3048},"upgradeStep":1}}}, +{"id":94272,"name":"Dreadrunner Helm","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,759,0,0,0,0,1151,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":326,"11":553,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":694,"11":1061,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":726,"11":1105,"22":3602},"upgradeStep":1}}}, +{"id":94273,"name":"Spirit Keeper Footguards","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,1871,1087,788,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"11":321,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":726,"11":634,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":757,"11":662,"22":2190},"upgradeStep":1}}}, +{"id":94274,"name":"Spirit Keeper Helm","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2519,1439,732,0,0,0,0,0,0,1166,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":312,"11":561,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":669,"11":1075,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":700,"11":1119,"22":2588},"upgradeStep":1}}}, +{"id":94275,"name":"Cloud Serpent Sabatons","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1871,1087,776,0,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":366,"11":332,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":715,"11":653,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":745,"11":681,"22":3048},"upgradeStep":1}}}, +{"id":94276,"name":"Cloud Serpent Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2519,1439,865,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":382,"6":521,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":793,"6":1004,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":828,"6":1046,"22":3602},"upgradeStep":1}}}, +{"id":94277,"name":"Falling Blossom Treads","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1871,1087,0,824,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"11":290,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"5":759,"11":579,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"5":791,"11":604,"22":1721},"upgradeStep":1}}}, +{"id":94278,"name":"Falling Blossom Cowl","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,838,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":368,"11":529,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":767,"11":1018,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":802,"11":1061,"22":2034},"upgradeStep":1}}}, +{"id":94279,"name":"Falling Blossom Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1871,1087,752,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":692,"7":692,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":721,"7":721,"22":1721},"upgradeStep":1}}}, +{"id":94280,"name":"Falling Blossom Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,838,0,0,0,0,0,0,1105,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":368,"11":529,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":767,"11":1018,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":802,"11":1061,"22":2034},"upgradeStep":1}}}, +{"id":94301,"name":"Tyrannical Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94302,"name":"Tyrannical Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":94303,"name":"Tyrannical Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94304,"name":"Tyrannical Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94305,"name":"Tyrannical Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":94306,"name":"Tyrannical Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":94307,"name":"Tyrannical Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03horde","type":13,"weaponType":8,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":7847,"weaponDamageMax":11771,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":7560,"weaponDamageMax":11340,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94308,"name":"Tyrannical Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,384,0,0,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"4":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"4":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":94309,"name":"Tyrannical Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94310,"name":"Tyrannical Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias2_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":3072,"weaponDamageMax":5706,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":94311,"name":"Tyrannical Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94312,"name":"Tyrannical Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94313,"name":"Tyrannical Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias2_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,0,0,895,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"6":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"6":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":94314,"name":"Tyrannical Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94315,"name":"Tyrannical Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias2_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":5237,"weaponDamageMax":7857,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":5046,"weaponDamageMax":7570,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94316,"name":"Tyrannical Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94317,"name":"Tyrannical Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94318,"name":"Tyrannical Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":7565,"weaponDamageMax":11349,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94319,"name":"Tyrannical Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94320,"name":"Tyrannical Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias2_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,895,0,0,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"4":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"4":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":94321,"name":"Tyrannical Gladiator's Render","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94322,"name":"Tyrannical Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94323,"name":"Tyrannical Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias2_c_01horde","type":13,"weaponType":1,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94324,"name":"Tyrannical Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94325,"name":"Tyrannical Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":94326,"name":"Tyrannical Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":94327,"name":"Tyrannical Gladiator's Wyrmhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":94328,"name":"Tyrannical Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1444},"upgradeStep":1}}}, +{"id":94329,"name":"Tyrannical Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":94330,"name":"Tyrannical Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":94331,"name":"Tyrannical Gladiator's Plate Gauntlets","icon":"inv_gauntlet_pvpwarrior_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":94332,"name":"Tyrannical Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":94333,"name":"Tyrannical Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_f_01boot","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":1588},"upgradeStep":1}}}, +{"id":94334,"name":"Tyrannical Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2022},"upgradeStep":1}}}, +{"id":94335,"name":"Tyrannical Gladiator's Satin Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":94336,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":94337,"name":"Tyrannical Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":94338,"name":"Tyrannical Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":94339,"name":"Tyrannical Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":94340,"name":"Tyrannical Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":94341,"name":"Tyrannical Gladiator's Copperskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":94342,"name":"Tyrannical Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":94343,"name":"Tyrannical Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_f_01red","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":94344,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":94345,"name":"Tyrannical Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_f_01red","type":5,"armorType":4,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":94346,"name":"Tyrannical Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94347,"name":"Tyrannical Gladiator's Wyrmhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":2389},"upgradeStep":1}}}, +{"id":94348,"name":"Tyrannical Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_f_01red","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":94349,"name":"Tyrannical Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94350,"name":"Tyrannical Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":94351,"name":"Tyrannical Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_f_01red","type":10,"armorType":4,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":94352,"name":"Tyrannical Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_f_01red","type":10,"armorType":4,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":94353,"name":"Tyrannical Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":94354,"name":"Tyrannical Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"7":414},"upgradeStep":1}}}, +{"id":94355,"name":"Tyrannical Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":94356,"name":"Tyrannical Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94357,"name":"Tyrannical Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":94358,"name":"Tyrannical Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":94359,"name":"Tyrannical Gladiator's Sabatons of Alacrity","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":94360,"name":"Tyrannical Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":94361,"name":"Tyrannical Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"496":{"randPropPoints":1728,"stats":{"11":1152}},"500":{"randPropPoints":1793,"stats":{"11":1195},"upgradeStep":1}}}, +{"id":94362,"name":"Tyrannical Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":94363,"name":"Tyrannical Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"7":414},"upgradeStep":1}}}, +{"id":94364,"name":"Tyrannical Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":94365,"name":"Tyrannical Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":94366,"name":"Tyrannical Gladiator's Dreadplate Shoulders","icon":"inv_shoulders_plate_pvpdeathknight_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":94367,"name":"Tyrannical Gladiator's Dragonhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":94368,"name":"Tyrannical Gladiator's Dragonhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":94369,"name":"Tyrannical Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":94370,"name":"Tyrannical Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":94371,"name":"Tyrannical Gladiator's Kodohide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":94372,"name":"Tyrannical Gladiator's Kodohide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":94373,"name":"Tyrannical Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94374,"name":"Tyrannical Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":94375,"name":"Tyrannical Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_f_01robe","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":94376,"name":"Tyrannical Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_f_01belt","type":8,"armorType":1,"stats":[0,0,1469,899,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":94377,"name":"Tyrannical Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":94378,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":94379,"name":"Tyrannical Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1790},"upgradeStep":1}}}, +{"id":94380,"name":"Tyrannical Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":94381,"name":"Tyrannical Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":94382,"name":"Tyrannical Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":94383,"name":"Tyrannical Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":94384,"name":"Tyrannical Gladiator's Chain Leggings","icon":"inv_mail_pvphunter_f_01pant","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":94385,"name":"Tyrannical Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":94386,"name":"Tyrannical Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":94387,"name":"Tyrannical Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":94388,"name":"Tyrannical Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":94389,"name":"Tyrannical Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":94390,"name":"Tyrannical Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":94391,"name":"Tyrannical Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":94392,"name":"Tyrannical Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":94393,"name":"Tyrannical Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":94394,"name":"Tyrannical Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":94395,"name":"Tyrannical Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":399,"11":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":414,"11":506},"upgradeStep":1}}}, +{"id":94396,"name":"Tyrannical Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":94397,"name":"Tyrannical Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":94398,"name":"Tyrannical Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_f_01shoulder","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":94399,"name":"Tyrannical Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":94400,"name":"Tyrannical Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1300},"upgradeStep":1}}}, +{"id":94401,"name":"Tyrannical Gladiator's Plate Shoulders","icon":"inv_shoulders_plate_pvpwarrior_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":94402,"name":"Tyrannical Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":94403,"name":"Tyrannical Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_f_01bracer","type":6,"armorType":1,"stats":[0,0,1101,734,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":94404,"name":"Tyrannical Gladiator's Wristguards of Alacrity","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1790},"upgradeStep":1}}}, +{"id":94405,"name":"Tyrannical Gladiator's Chain Armor","icon":"inv_mail_pvphunter_f_01chest","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":94406,"name":"Tyrannical Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":94407,"name":"Tyrannical Gladiator's Bindings of Meditation","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":94408,"name":"Tyrannical Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":94409,"name":"Tyrannical Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":3325},"upgradeStep":1}}}, +{"id":94410,"name":"Tyrannical Gladiator's Belt of Cruelty","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":94411,"name":"Tyrannical Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_f_01red","type":6,"armorType":4,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":2445},"upgradeStep":1}}}, +{"id":94412,"name":"Tyrannical Gladiator's Wyrmhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":94413,"name":"Tyrannical Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_f_01red","type":3,"armorType":4,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":4191},"upgradeStep":1}}}, +{"id":94414,"name":"Tyrannical Gladiator's Warboots of Cruelty","icon":"inv_boots_pvpwarrior_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":94415,"name":"Tyrannical Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94416,"name":"Tyrannical Gladiator's Wyrmhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":94417,"name":"Tyrannical Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":94418,"name":"Tyrannical Gladiator's Armplates of Proficiency","icon":"inv_bracers_pvpwarrior_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506,"22":2445},"upgradeStep":1}}}, +{"id":94419,"name":"Tyrannical Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":94420,"name":"Tyrannical Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2022},"upgradeStep":1}}}, +{"id":94421,"name":"Tyrannical Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":94422,"name":"Tyrannical Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":94423,"name":"Tyrannical Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":94424,"name":"Tyrannical Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":94425,"name":"Tyrannical Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":94426,"name":"Tyrannical Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":94427,"name":"Tyrannical Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":94428,"name":"Tyrannical Gladiator's Ironskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":94429,"name":"Tyrannical Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":94430,"name":"Tyrannical Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":94431,"name":"Tyrannical Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":94432,"name":"Tyrannical Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":94433,"name":"Tyrannical Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":94434,"name":"Tyrannical Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":94435,"name":"Tyrannical Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":3580},"upgradeStep":1}}}, +{"id":94436,"name":"Tyrannical Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":94437,"name":"Tyrannical Gladiator's Kodohide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":94438,"name":"Tyrannical Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_f_01red","type":7,"armorType":4,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":3493},"upgradeStep":1}}}, +{"id":94439,"name":"Tyrannical Gladiator's Bindings of Prowess","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1287},"upgradeStep":1}}}, +{"id":94440,"name":"Tyrannical Gladiator's Girdle of Prowess","icon":"inv_belt_pvpwarrior_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,573,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"11":570,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"11":594,"22":3143},"upgradeStep":1}}}, +{"id":94441,"name":"Tyrannical Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_f_01glove","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":94442,"name":"Tyrannical Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_f_01helm","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":94443,"name":"Tyrannical Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":94444,"name":"Tyrannical Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":94445,"name":"Tyrannical Gladiator's Sabatons of Cruelty","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":94446,"name":"Tyrannical Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":94447,"name":"Tyrannical Gladiator's Leather Spaulders","icon":"inv_shoulders_leather_pvprogue_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":94448,"name":"Tyrannical Gladiator's Plate Legguards","icon":"inv_pants_pvpwarrior_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":94449,"name":"Tyrannical Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1011},"upgradeStep":1}}}, +{"id":94450,"name":"Tyrannical Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":94451,"name":"Tyrannical Gladiator's Silk Handguards","icon":"inv_gloves_cloth_pvpmage_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":94452,"name":"Tyrannical Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":94453,"name":"Tyrannical Gladiator's Chain Gauntlets","icon":"inv_mail_pvphunter_f_01glove","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":94454,"name":"Tyrannical Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":94455,"name":"Tyrannical Gladiator's Dragonhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":94456,"name":"Tyrannical Gladiator's Dragonhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":94457,"name":"Tyrannical Gladiator's Dragonhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":94458,"name":"Tyrannical Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":94459,"name":"Tyrannical Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":94460,"name":"Tyrannical Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_f_01red","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":94461,"name":"Tyrannical Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpdeathknight_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":94462,"name":"Tyrannical Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":94463,"name":"Tyrannical Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_f_01red","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":94464,"name":"Tyrannical Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_f_01red","type":8,"armorType":4,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":94465,"name":"Tyrannical Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":94466,"name":"Tyrannical Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":94467,"name":"Tyrannical Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":1877},"upgradeStep":1}}}, +{"id":94468,"name":"Tyrannical Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":94469,"name":"Tyrannical Gladiator's Wristguards of Accuracy","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":94470,"name":"Tyrannical Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1287},"upgradeStep":1}}}, +{"id":94471,"name":"Tyrannical Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_f_01pant","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":94472,"name":"Tyrannical Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1155},"upgradeStep":1}}}, +{"id":94473,"name":"Tyrannical Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":506,"11":414},"upgradeStep":1}}}, +{"id":94474,"name":"Tyrannical Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":94475,"name":"Tyrannical Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":94476,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":94477,"name":"Tyrannical Gladiator's Kodohide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":94478,"name":"Tyrannical Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":94479,"name":"Tyrannical Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":94480,"name":"Tyrannical Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_f_01red","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":3143},"upgradeStep":1}}}, +{"id":94481,"name":"Tyrannical Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_f_01red","type":6,"armorType":4,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":2445},"upgradeStep":1}}}, +{"id":94482,"name":"Tyrannical Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":94483,"name":"Tyrannical Gladiator's Wyrmhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2573},"upgradeStep":1}}}, +{"id":94484,"name":"Tyrannical Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_f_01red","type":9,"armorType":4,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4890},"upgradeStep":1}}}, +{"id":94485,"name":"Tyrannical Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"7":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"7":506,"22":1155},"upgradeStep":1}}}, +{"id":94486,"name":"Tyrannical Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":94487,"name":"Tyrannical Gladiator's Armplates of Alacrity","icon":"inv_bracers_plate_pvpdeathknight_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":487,"11":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":506,"11":414,"22":2445},"upgradeStep":1}}}, +{"id":94488,"name":"Tyrannical Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":94489,"name":"Tyrannical Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":94490,"name":"Tyrannical Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":2557},"upgradeStep":1}}}, +{"id":94491,"name":"Tyrannical Gladiator's Belt of Meditation","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":94492,"name":"Tyrannical Gladiator's Kodohide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":94493,"name":"Tyrannical Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":94494,"name":"Tyrannical Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":94495,"name":"Tyrannical Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_f_01red","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":94496,"name":"Tyrannical Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_f_01red","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":94497,"name":"Tyrannical Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":3580},"upgradeStep":1}}}, +{"id":94498,"name":"Tyrannical Gladiator's Redoubt","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":94499,"name":"Tyrannical Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480},"upgradeStep":1}}}, +{"id":94500,"name":"Tyrannical Gladiator's Shield Wall","icon":"inv_shield_pvppandarias2_c_01","type":13,"weaponType":7,"handType":3,"stats":[748,0,1122,0,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"0":694,"2":1041,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":94501,"name":"Tyrannical Gladiator's Barrier","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":94502,"name":"Tyrannical Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias2_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480},"upgradeStep":1}}}, +{"id":94507,"name":"Steadfast Talisman of the Shado-Pan Assault","icon":"spell_arcane_arcanetactics","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"522":{"randPropPoints":2201,"stats":{"11":1467}},"526":{"randPropPoints":2285,"stats":{"11":1523},"upgradeStep":1}}}, +{"id":94508,"name":"Brutal Talisman of the Shado-Pan Assault","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"522":{"randPropPoints":2201,"stats":{"8":1467}},"526":{"randPropPoints":2285,"stats":{"8":1523},"upgradeStep":1}}}, +{"id":94509,"name":"Soothing Talisman of the Shado-Pan Assault","icon":"inv_elemental_primal_life","type":12,"stats":[0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"522":{"randPropPoints":2201,"stats":{"3":1467}},"526":{"randPropPoints":2285,"stats":{"3":1523},"upgradeStep":1}}}, +{"id":94510,"name":"Volatile Talisman of the Shado-Pan Assault","icon":"ability_hunter_posthaste","type":12,"stats":[0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"522":{"randPropPoints":2201,"stats":{"3":1467}},"526":{"randPropPoints":2285,"stats":{"3":1523},"upgradeStep":1}}}, +{"id":94511,"name":"Vicious Talisman of the Shado-Pan Assault","icon":"ability_paladin_speedoflight","type":12,"stats":[0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"522":{"randPropPoints":2201,"stats":{"5":1467}},"526":{"randPropPoints":2285,"stats":{"5":1523},"upgradeStep":1}}}, +{"id":94512,"name":"Renataki's Soul Charm","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"522":{"randPropPoints":2201,"stats":{"8":1467}},"526":{"randPropPoints":2285,"stats":{"8":1523},"upgradeStep":1}}}, +{"id":94513,"name":"Wushoolay's Final Choice","icon":"spell_nature_chainlightning","type":12,"stats":[0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"522":{"randPropPoints":2201,"stats":{"5":1467}},"526":{"randPropPoints":2285,"stats":{"5":1523},"upgradeStep":1}}}, +{"id":94514,"name":"Horridon's Last Gasp","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"522":{"randPropPoints":2201,"stats":{"3":1467}},"526":{"randPropPoints":2285,"stats":{"3":1523},"upgradeStep":1}}}, +{"id":94515,"name":"Fabled Feather of Ji-Kun","icon":"ability_priest_angelicfeather","type":12,"stats":[0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"522":{"randPropPoints":2201,"stats":{"5":1467}},"526":{"randPropPoints":2285,"stats":{"5":1523},"upgradeStep":1}}}, +{"id":94516,"name":"Fortitude of the Zandalari","icon":"spell_holy_mindvision","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"522":{"randPropPoints":2201,"stats":{"11":1467}},"526":{"randPropPoints":2285,"stats":{"11":1523},"upgradeStep":1}}}, +{"id":94518,"name":"Delicate Vial of the Sanguinaire","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"522":{"randPropPoints":2201,"stats":{"9":1467}},"526":{"randPropPoints":2285,"stats":{"9":1523},"upgradeStep":1}}}, +{"id":94519,"name":"Primordius' Talisman of Rage","icon":"ability_warrior_rampage","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":94520,"name":"Inscribed Bag of Hydra-Spawn","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":94521,"name":"Breath of the Hydra","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"522":{"randPropPoints":2201,"stats":{"7":1467}},"526":{"randPropPoints":2285,"stats":{"7":1523},"upgradeStep":1}}}, +{"id":94522,"name":"Talisman of Bloodlust","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"522":{"randPropPoints":2201,"stats":{"1":1467}},"526":{"randPropPoints":2285,"stats":{"1":1523},"upgradeStep":1}}}, +{"id":94523,"name":"Bad Juju","icon":"trade_archaeology_troll_voodoodoll","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"522":{"randPropPoints":2201,"stats":{"11":1467}},"526":{"randPropPoints":2285,"stats":{"11":1523},"upgradeStep":1}}}, +{"id":94524,"name":"Unerring Vision of Lei Shen","icon":"ability_hunter_focusedaim","type":12,"stats":[0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"522":{"randPropPoints":2201,"stats":{"3":1467}},"526":{"randPropPoints":2285,"stats":{"3":1523},"upgradeStep":1}}}, +{"id":94525,"name":"Stolen Relic of Zuldazar","icon":"spell_fire_twilightfireward","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":94526,"name":"Spark of Zandalar","icon":"spell_nature_lightningshield","type":12,"stats":[0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"522":{"randPropPoints":2201,"stats":{"7":1467}},"526":{"randPropPoints":2285,"stats":{"7":1523},"upgradeStep":1}}}, +{"id":94527,"name":"Ji-Kun's Rising Winds","icon":"spell_holy_heal","type":12,"stats":[0,0,0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"522":{"randPropPoints":2201,"stats":{"8":1467}},"526":{"randPropPoints":2285,"stats":{"8":1523},"upgradeStep":1}}}, +{"id":94528,"name":"Soul Barrier","icon":"spell_warlock_demonsoul","type":12,"stats":[0,0,2372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"522":{"randPropPoints":2201,"stats":{"2":2201}},"526":{"randPropPoints":2285,"stats":{"2":2285},"upgradeStep":1}}}, +{"id":94529,"name":"Gaze of the Twins","icon":"spell_shadow_spectralsight","type":12,"stats":[1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"522":{"randPropPoints":2201,"stats":{"0":1467}},"526":{"randPropPoints":2285,"stats":{"0":1523},"upgradeStep":1}}}, +{"id":94530,"name":"Lightning-Imbued Chalice","icon":"spell_mage_runeofpower","type":12,"stats":[0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"522":{"randPropPoints":2201,"stats":{"3":1467}},"526":{"randPropPoints":2285,"stats":{"3":1523},"upgradeStep":1}}}, +{"id":94531,"name":"Cha-Ye's Essence of Brilliance","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":94532,"name":"Rune of Re-Origination","icon":"inv_offhand_1h_ulduarraid_d_01","type":12,"stats":[0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"522":{"randPropPoints":2201,"stats":{"1":1467}},"526":{"randPropPoints":2285,"stats":{"1":1523},"upgradeStep":1}}}, +{"id":94575,"name":"The Planar Edge, Reborn","icon":"inv_axe_1h_blacksmithing_01","type":13,"weaponType":1,"handType":2,"stats":[448,0,671,0,0,298,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":250,"8":250}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"5":257,"8":257}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"5":277,"8":277},"upgradeStep":1}}}, +{"id":94576,"name":"Lunar Crescent, Reborn","icon":"inv_axe_50","type":13,"weaponType":1,"handType":4,"stats":[1044,0,1566,0,0,0,0,696,0,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"7":583,"11":583}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"7":600,"11":600}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"7":646,"11":646},"upgradeStep":1}}}, +{"id":94577,"name":"Black Planar Edge, Reborn","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[469,0,703,0,0,312,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":250,"8":250}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"0":435,"2":652,"5":290,"8":290}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"0":452,"2":677,"5":301,"8":301},"upgradeStep":1}}}, +{"id":94578,"name":"Mooncleaver, Reborn","icon":"inv_axe_51","type":13,"weaponType":1,"handType":4,"stats":[1094,0,1640,0,0,0,0,729,0,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"7":583,"11":583}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"0":1015,"2":1522,"7":677,"11":677}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"0":1054,"2":1581,"7":703,"11":703},"upgradeStep":1}}}, +{"id":94579,"name":"Wicked Edge of the Planes, Reborn","icon":"inv_axe_1h_blacksmithing_03","type":13,"weaponType":1,"handType":2,"stats":[597,0,896,0,0,398,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"5":250,"8":250}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"5":370,"8":370}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":575,"2":863,"5":384,"8":384},"upgradeStep":1}}}, +{"id":94580,"name":"Bloodmoon, Reborn","icon":"inv_axe_52","type":13,"weaponType":1,"handType":4,"stats":[1394,0,2090,0,0,0,0,929,0,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"7":583,"11":583}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"7":862,"11":862}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1343,"2":2014,"7":895,"11":895},"upgradeStep":1}}}, +{"id":94581,"name":"Drakefist Hammer, Reborn","icon":"inv_mace_37","type":13,"weaponType":4,"handType":2,"stats":[0,0,671,448,298,0,0,298,0,0,0,0,0,0,5981,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":1583,"weaponDamageMax":2942,"weaponSpeed":1.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"4":250,"7":250,"14":5011}},"463":{"randPropPoints":733,"weaponDamageMin":1364,"weaponDamageMax":2534,"stats":{"2":578,"3":385,"4":257,"7":257,"14":5152}},"471":{"randPropPoints":790,"weaponDamageMin":1470,"weaponDamageMax":2730,"stats":{"2":623,"3":415,"4":277,"7":277,"14":5552},"upgradeStep":1}}}, +{"id":94582,"name":"Thunder, Reborn","icon":"inv_mace_2h_blacksmithing_01","type":13,"weaponType":4,"handType":4,"stats":[0,1044,1566,0,0,696,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"5":583,"8":583}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"1":899,"2":1349,"5":600,"8":600}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"1":969,"2":1454,"5":646,"8":646},"upgradeStep":1}}}, +{"id":94583,"name":"Deep Thunder, Reborn","icon":"inv_mace_2h_blacksmithing_02","type":13,"weaponType":4,"handType":4,"stats":[0,1094,1640,0,0,729,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"5":583,"8":583}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"1":1015,"2":1522,"5":677,"8":677}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"1":1054,"2":1581,"5":703,"8":703},"upgradeStep":1}}}, +{"id":94584,"name":"Dragonmaw, Reborn","icon":"inv_mace_38","type":13,"weaponType":4,"handType":2,"stats":[0,0,703,469,312,0,0,312,0,0,0,0,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":1659,"weaponDamageMax":3082,"weaponSpeed":1.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"4":250,"7":250,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":1540,"weaponDamageMax":2860,"stats":{"2":652,"3":435,"4":290,"7":290,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":1598,"weaponDamageMax":2969,"stats":{"2":677,"3":452,"4":301,"7":301,"14":6037},"upgradeStep":1}}}, +{"id":94585,"name":"Dragonstrike, Reborn","icon":"inv_mace_39","type":13,"weaponType":4,"handType":2,"stats":[0,0,896,597,398,0,0,398,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2114,"weaponDamageMax":3927,"weaponSpeed":1.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"4":250,"7":250,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"4":370,"7":370,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"stats":{"2":863,"3":575,"4":384,"7":384,"14":7689},"upgradeStep":1}}}, +{"id":94586,"name":"Stormherald, Reborn","icon":"inv_mace_2h_blacksmithing_03","type":13,"weaponType":4,"handType":4,"stats":[0,1394,2090,0,0,929,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"5":583,"8":583}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"5":862,"8":862}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"1":1343,"2":2014,"5":895,"8":895},"upgradeStep":1}}}, +{"id":94587,"name":"Fireguard, Reborn","icon":"inv_sword_1h_blacksmithing_01","type":13,"weaponType":9,"handType":2,"stats":[0,448,671,0,0,298,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":250,"8":250}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"1":385,"2":578,"5":257,"8":257}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"1":415,"2":623,"5":277,"8":277},"upgradeStep":1}}}, +{"id":94588,"name":"Lionheart Blade, Reborn","icon":"inv_sword_2h_blacksmithing_01","type":13,"weaponType":9,"handType":4,"stats":[1044,0,1566,0,0,696,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":10983,"weaponDamageMax":16475,"weaponSpeed":3.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"5":583,"8":583}},"463":{"randPropPoints":1710,"weaponDamageMin":9462,"weaponDamageMax":14193,"stats":{"0":899,"2":1349,"5":600,"8":600}},"471":{"randPropPoints":1843,"weaponDamageMin":10194,"weaponDamageMax":15291,"stats":{"0":969,"2":1454,"5":646,"8":646},"upgradeStep":1}}}, +{"id":94589,"name":"Blazeguard, Reborn","icon":"inv_sword_1h_blacksmithing_02","type":13,"weaponType":9,"handType":2,"stats":[0,469,703,0,0,312,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":250,"8":250}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"1":435,"2":652,"5":290,"8":290}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"1":452,"2":677,"5":301,"8":301},"upgradeStep":1}}}, +{"id":94590,"name":"Lionheart Champion, Reborn","icon":"inv_sword_2h_blacksmithing_02","type":13,"weaponType":9,"handType":4,"stats":[1094,0,1640,0,0,729,0,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"5":583,"8":583}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"0":1015,"2":1522,"5":677,"8":677}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"0":1054,"2":1581,"5":703,"8":703},"upgradeStep":1}}}, +{"id":94591,"name":"Blazefury, Reborn","icon":"inv_sword_1h_blacksmithing_03","type":13,"weaponType":9,"handType":2,"stats":[0,597,896,0,0,398,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":250,"8":250}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"5":370,"8":370}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":575,"2":863,"5":384,"8":384},"upgradeStep":1}}}, +{"id":94592,"name":"Lionheart Executioner, Reborn","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":4,"stats":[1394,0,2090,0,0,929,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"5":583,"8":583}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"5":862,"8":862}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1343,"2":2014,"5":895,"8":895},"upgradeStep":1}}}, +{"id":94706,"name":"Cera's Impalers","icon":"inv_weapon_shortblade_60","type":13,"weaponType":2,"handType":2,"stats":[0,469,703,0,0,0,0,326,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":4267,"weaponDamageMax":6401,"weaponSpeed":1.8,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"7":261,"11":231}},"476":{"randPropPoints":827,"weaponDamageMin":3960,"weaponDamageMax":5941,"stats":{"1":435,"2":652,"7":303,"11":268}},"480":{"randPropPoints":859,"weaponDamageMin":4111,"weaponDamageMax":6167,"stats":{"1":452,"2":678,"7":314,"11":279},"upgradeStep":1}}}, +{"id":94707,"name":"Teng's Reach","icon":"inv_polearm_2h_pandaguard_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,1094,1641,0,0,0,812,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":10548,"weaponDamageMax":15822,"weaponSpeed":3.3,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":875,"2":1312,"6":649,"7":470}},"476":{"randPropPoints":1930,"weaponDamageMin":9790,"weaponDamageMax":14686,"stats":{"1":1015,"2":1523,"6":754,"7":546}},"480":{"randPropPoints":2004,"weaponDamageMin":10162,"weaponDamageMax":15243,"stats":{"1":1054,"2":1581,"6":783,"7":567},"upgradeStep":1}}}, +{"id":94708,"name":"Saurok Ritualist's Sacrificial Dagger","icon":"inv_weapon_shortblade_30","type":13,"weaponType":2,"handType":2,"stats":[0,0,703,469,0,0,348,0,0,0,0,252,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3941,"weaponDamageMax":7319,"weaponSpeed":1.9,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3151,"weaponDamageMax":5853,"stats":{"2":562,"3":375,"6":278,"11":202,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":3658,"weaponDamageMax":6794,"stats":{"2":652,"3":435,"6":323,"11":234,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":3797,"weaponDamageMax":7052,"stats":{"2":678,"3":452,"6":335,"11":243,"14":6037},"upgradeStep":1}}}, +{"id":94709,"name":"Talonblade of Akil'amon","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,469,703,0,0,0,0,331,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":3733,"weaponDamageMax":6934,"weaponSpeed":1.8,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"7":265,"8":225}},"476":{"randPropPoints":827,"weaponDamageMin":3465,"weaponDamageMax":6436,"stats":{"1":435,"2":652,"7":307,"8":261}},"480":{"randPropPoints":859,"weaponDamageMin":3597,"weaponDamageMax":6680,"stats":{"1":452,"2":678,"7":319,"8":272},"upgradeStep":1}}}, +{"id":94720,"name":"Vengeance of Kor'dok","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[469,0,703,0,0,0,267,339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":5393,"weaponDamageMax":10016,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":213,"7":272}},"476":{"randPropPoints":827,"weaponDamageMin":5005,"weaponDamageMax":9297,"stats":{"0":435,"2":652,"6":247,"7":315}},"480":{"randPropPoints":859,"weaponDamageMin":5195,"weaponDamageMax":9650,"stats":{"0":452,"2":678,"6":257,"7":327},"upgradeStep":1}}}, +{"id":94722,"name":"Worldbreaker's Stormscythe","icon":"inv_axe_1h_thunderisleraid_d_031","type":13,"weaponType":1,"handType":2,"stats":[639,0,1079,0,0,500,0,0,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":242,"8":156}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":588,"2":1002,"5":462,"8":309}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":613,"2":1040,"5":481,"8":322},"upgradeStep":1}}}, +{"id":94723,"name":"Chestplate of Violent Detonation","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,1073,0,0,0,0,0,984,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"11":474,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":990,"11":907,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":1030,"11":945,"22":6054},"upgradeStep":1}}}, +{"id":94724,"name":"Lightning-Eye Hood","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,956,0,0,0,1009,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":460,"11":449,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"7":882,"11":925,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"7":918,"11":966,"22":2588},"upgradeStep":1}}}, +{"id":94725,"name":"Static-Shot Shoulderguards","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,875,650,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":436,"8":319,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":809,"8":600,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":842,"8":625,"22":3325},"upgradeStep":1}}}, +{"id":94726,"name":"Cloudbreaker Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1087,0,1871,0,0,0,0,731,0,0,0,764,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":342,"11":360,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"7":672,"11":703,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"7":701,"11":733,"22":3405},"upgradeStep":1}}}, +{"id":94727,"name":"Bracers of Constant Implosion","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[856,0,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"22":2649},"upgradeStep":1}}}, +{"id":94728,"name":"Spearman's Jingling Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,0,1089,956,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":529,"8":460,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":1005,"8":882,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1046,"8":918,"22":3879},"upgradeStep":1}}}, +{"id":94729,"name":"Jin'rokh's Soulcrystal","icon":"inv_jewelry_ring_172","type":11,"stats":[936,0,1403,0,0,0,0,0,562,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"9":344}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"8":522,"9":613}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"8":542,"9":636},"upgradeStep":1}}}, +{"id":94730,"name":"Soulblade of the Breaking Storm","icon":"inv_sword_1h_zandalari_c_02blue","type":13,"weaponType":9,"handType":2,"stats":[0,0,1079,639,392,0,468,0,0,0,0,0,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3502,"weaponDamageMax":6505,"weaponSpeed":2.2,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"4":185,"6":225,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3251,"weaponDamageMax":6038,"stats":{"2":1002,"3":588,"4":361,"6":431,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3374,"weaponDamageMax":6267,"stats":{"2":1040,"3":613,"4":377,"6":449,"14":9263},"upgradeStep":1}}}, +{"id":94731,"name":"Robes of Static Bursts","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,875,0,0,0,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":418,"11":554,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":807,"11":1049,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":840,"11":1092,"22":2503},"upgradeStep":1}}}, +{"id":94732,"name":"Infinitely Conducting Bracers","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1403,936,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":508,"6":621,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":527,"6":645,"22":1394},"upgradeStep":1}}}, +{"id":94733,"name":"Fissure-Split Shoulderwraps","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,758,808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":380,"6":398,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":701,"6":747,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":729,"6":777,"22":1877},"upgradeStep":1}}}, +{"id":94734,"name":"Ionized Yojamban Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2519,1519,0,0,796,0,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":376,"11":577,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":733,"11":1091,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":764,"11":1135,"22":6054},"upgradeStep":1}}}, +{"id":94735,"name":"Drape of Booming Nights","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1403,936,686,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"6":270,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":637,"6":480,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":661,"6":499,"22":1252},"upgradeStep":1}}}, +{"id":94736,"name":"Ghostbinder Greatboots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1871,1167,867,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":801,"7":608,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":834,"7":633,"22":3048},"upgradeStep":1}}}, +{"id":94737,"name":"Lightningweaver Gauntlets","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,816,0,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":406,"11":372,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":755,"11":693,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":785,"11":721,"22":1564},"upgradeStep":1}}}, +{"id":94738,"name":"Jin'rokh's Dreamshard","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1403,936,0,577,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":536,"6":604}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":556,"6":627},"upgradeStep":1}}}, +{"id":94739,"name":"Al'set's Tormented Leggings","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,796,0,0,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":376,"11":577,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"5":733,"11":1091,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"5":764,"11":1135,"22":2190},"upgradeStep":1}}}, +{"id":94740,"name":"Jalak's Maelstrom Staff","icon":"inv_stave_2h_thunderisleraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1599,2519,0,0,1137,0,0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":16192,"weaponDamageMax":24289,"weaponSpeed":3.3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"5":584,"11":490}},"522":{"randPropPoints":2963,"weaponDamageMin":15029,"weaponDamageMax":22544,"stats":{"1":1478,"2":2338,"5":1054,"11":923}},"526":{"randPropPoints":3076,"weaponDamageMin":15600,"weaponDamageMax":23400,"stats":{"1":1538,"2":2427,"5":1094,"11":961},"upgradeStep":1}}}, +{"id":94741,"name":"Sul'lithuz Sandmail","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,0,1137,0,0,0,875,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":554,"11":418,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":1049,"11":807,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1092,"11":840,"22":4433},"upgradeStep":1}}}, +{"id":94742,"name":"Frozen Warlord's Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"8":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"8":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"8":527,"22":2649},"upgradeStep":1}}}, +{"id":94743,"name":"Bindings of Multiplicative Strikes","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,936,1403,0,0,0,633,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"7":317,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":588,"7":564,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":610,"7":586,"22":1394},"upgradeStep":1}}}, +{"id":94744,"name":"Puncture-Proof Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,979,1019,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"9":899,"10":939,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"9":938,"10":978,"22":4919},"upgradeStep":1}}}, +{"id":94745,"name":"Horn-Rimmed Doomcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[936,0,1403,0,0,624,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":325,"11":325,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":579,"11":579,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":601,"11":601,"22":1252},"upgradeStep":1}}}, +{"id":94746,"name":"Talisman of Living Poison","icon":"inv_jewelry_necklace_119","type":2,"stats":[0,936,1403,0,0,0,0,651,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":604,"8":536}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":627,"8":556},"upgradeStep":1}}}, +{"id":94747,"name":"Bloodlord's Bloodsoaked Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,0,875,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":418,"11":554,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"7":807,"11":1049,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"7":840,"11":1092,"22":5297},"upgradeStep":1}}}, +{"id":94748,"name":"Wastewalker's Sandblasted Drape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,936,1403,0,0,686,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":358,"7":270,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":637,"7":480,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":661,"7":499,"22":1252},"upgradeStep":1}}}, +{"id":94749,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1599,0,993,0,1121,0,0,0,0,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":8096,"weaponDamageMax":12144,"weaponSpeed":3.3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"5":510,"7":553,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":7514,"weaponDamageMax":11272,"stats":{"2":2338,"3":1478,"5":921,"7":1036,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":7800,"weaponDamageMax":11700,"stats":{"2":2427,"3":1538,"5":956,"7":1078,"14":9265},"upgradeStep":1}}}, +{"id":94750,"name":"Vaccinator's Armwraps","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,624,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"7":579,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"7":601,"22":1095},"upgradeStep":1}}}, +{"id":94751,"name":"Armplates of the Vanquished Abomination","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1403,936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"22":2649},"upgradeStep":1}}}, +{"id":94752,"name":"Flamecaster's Burning Crown","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1105,860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":545,"7":364,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":1021,"7":786,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":1062,"7":822,"22":2034},"upgradeStep":1}}}, +{"id":94753,"name":"Spaulders of Dinomancy","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1871,1167,886,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":819,"7":582,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":852,"7":606,"22":2389},"upgradeStep":1}}}, +{"id":94754,"name":"Horridon's Tusk Fragment","icon":"inv_jewelry_necklace_141","type":2,"stats":[0,0,1403,936,532,0,0,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":494,"11":629}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":513,"11":653},"upgradeStep":1}}}, +{"id":94755,"name":"Venomlord's Totemic Wand","icon":"inv_wand_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,639,0,0,447,428,0,0,0,0,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"7":204,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":588,"6":412,"7":394,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":613,"6":429,"7":410,"14":9263},"upgradeStep":1}}}, +{"id":94756,"name":"Roots of Rampaging Earth","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,1073,0,0,0,0,984,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"11":474,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":990,"11":907,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1030,"11":945,"22":2788},"upgradeStep":1}}}, +{"id":94757,"name":"Fingers of the Night","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1167,886,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":819,"6":582,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":852,"6":606,"22":2770},"upgradeStep":1}}}, +{"id":94758,"name":"Zerat, Malakk's Soulburning Greatsword","icon":"inv_sword_2h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1599,0,2519,0,0,1198,860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"5":593,"6":440}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1478,"2":2338,"5":1107,"6":797}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1538,"2":2427,"5":1151,"6":828},"upgradeStep":1}}}, +{"id":94759,"name":"Kura-Kura, Kazra'jin's Skullcleaver","icon":"inv_axe_1h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,639,1079,0,0,0,440,0,0,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":588,"2":1002,"6":405,"11":405}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":613,"2":1040,"6":422,"11":422},"upgradeStep":1}}}, +{"id":94760,"name":"Amun-Thoth, Sul's Spiritrending Talons","icon":"inv_hand_1h_thunderisleraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,1079,639,481,0,0,0,0,0,0,369,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":295,"4":232,"11":173,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136,"stats":{"2":1002,"3":588,"4":444,"11":340,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"stats":{"2":1040,"3":613,"4":462,"11":354,"14":9263},"upgradeStep":1}}}, +{"id":94761,"name":"Zandalari Robes of the Final Rite","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,956,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"6":529,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"5":882,"6":1005,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"5":918,"6":1046,"22":2503},"upgradeStep":1}}}, +{"id":94762,"name":"Mar'li's Bloodstained Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1871,1167,856,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":791,"6":627,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":823,"6":652,"22":1721},"upgradeStep":1}}}, +{"id":94763,"name":"Gaze of Gara'jal","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,979,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":899,"7":939,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":938,"7":978,"22":3602},"upgradeStep":1}}}, +{"id":94764,"name":"Overloaded Bladebreaker Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,771,0,0,0,0,1196,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"10":585,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":709,"10":1104,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":739,"10":1149,"22":6054},"upgradeStep":1}}}, +{"id":94765,"name":"Robes of Treacherous Ground","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2519,1519,796,0,0,0,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":376,"11":577,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":733,"11":1091,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":764,"11":1135,"22":3186},"upgradeStep":1}}}, +{"id":94766,"name":"Talisman of Angry Spirits","icon":"inv_jewelry_necklace_139","type":2,"stats":[936,0,1403,0,0,0,642,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":335,"11":309}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":596,"11":550}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":619,"11":571},"upgradeStep":1}}}, +{"id":94767,"name":"Loa-Ridden Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1403,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"22":1939},"upgradeStep":1}}}, +{"id":94768,"name":"Shellsplitter Greataxe","icon":"inv_axe_1h_thunderisleraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[639,0,1079,0,0,475,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"6":179}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":588,"2":1002,"5":438,"6":351}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":613,"2":1040,"5":456,"6":365},"upgradeStep":1}}}, +{"id":94769,"name":"Shattered Tortoiseshell Longbow","icon":"inv_bow_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1599,2519,0,0,1024,0,0,1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":12880,"weaponDamageMax":23921,"weaponSpeed":3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"5":514,"8":560}},"522":{"randPropPoints":2963,"weaponDamageMin":11955,"weaponDamageMax":22203,"stats":{"1":1478,"2":2338,"5":947,"8":1030}},"526":{"randPropPoints":3076,"weaponDamageMin":12409,"weaponDamageMax":23046,"stats":{"1":1538,"2":2427,"5":985,"8":1070},"upgradeStep":1}}}, +{"id":94770,"name":"Rockfall Ribwraps","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,929,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"6":537,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":857,"6":1020,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":892,"6":1062,"22":3186},"upgradeStep":1}}}, +{"id":94771,"name":"Shell-Coated Wristplates","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,0,0,695,503,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":362,"10":262,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":645,"10":467,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":669,"10":485,"22":2649},"upgradeStep":1}}}, +{"id":94772,"name":"Quakestompers","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,779,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":720,"7":735,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":749,"7":765,"22":3048},"upgradeStep":1}}}, +{"id":94773,"name":"Shoulderguards of Centripetal Destruction","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,908,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":454,"7":289,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":840,"7":546,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":873,"7":569,"22":4540},"upgradeStep":1}}}, +{"id":94774,"name":"Beakbreaker Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,0,0,0,642,0,593,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"11":309,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":596,"11":550,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":619,"11":571,"22":1252},"upgradeStep":1}}}, +{"id":94775,"name":"Beady-Eye Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,856,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"22":1939},"upgradeStep":1}}}, +{"id":94776,"name":"Amulet of the Primal Turtle","icon":"inv_jewelry_necklace_118","type":2,"stats":[856,0,1403,0,0,434,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":207,"6":331}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"5":400,"6":620}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"5":417,"6":645},"upgradeStep":1}}}, +{"id":94777,"name":"Grips of Vampiric Cruelty","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,771,0,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"7":400,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":712,"7":743,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"5":741,"7":773,"22":1991},"upgradeStep":1}}}, +{"id":94778,"name":"Tortos' Discarded Shell","icon":"inv_shield_thunderisleraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,856,644,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":328,"7":229,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":597,"7":458,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":620,"7":478,"22":19418},"upgradeStep":1}}}, +{"id":94779,"name":"Robes of Concussive Shocks","icon":"inv_robe_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2519,1519,1039,0,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":959,"7":959,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":998,"7":998,"22":3186},"upgradeStep":1}}}, +{"id":94780,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,0,792,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":732,"7":732,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":761,"7":761,"22":1564},"upgradeStep":1}}}, +{"id":94781,"name":"Azure Shell Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,686,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":358,"11":270,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":637,"11":480,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":661,"11":499,"22":1095},"upgradeStep":1}}}, +{"id":94782,"name":"Stonegaze Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,1121,0,811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":538,"6":354,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":1033,"6":743,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1076,"6":776,"22":2034},"upgradeStep":1}}}, +{"id":94783,"name":"Spaulders of Quaking Fear","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1871,1167,897,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":448,"7":299,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":830,"7":564,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":863,"7":587,"22":3325},"upgradeStep":1}}}, +{"id":94784,"name":"Refreshing Abalone Girdle","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1871,1087,788,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"7":321,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":726,"7":634,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":757,"7":662,"22":3405},"upgradeStep":1}}}, +{"id":94785,"name":"Shimmershell Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,577,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"11":339,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":536,"11":604,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":556,"11":627,"22":1252},"upgradeStep":1}}}, +{"id":94786,"name":"Vampire Bat-Hide Bracers","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,0,1403,936,660,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":613,"7":522,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":636,"7":542,"22":1394},"upgradeStep":1}}}, +{"id":94787,"name":"Tortos' Shellseizers","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1871,1167,690,0,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":637,"6":788,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":663,"6":819,"22":3784},"upgradeStep":1}}}, +{"id":94788,"name":"Megaera's Poisoned Fang","icon":"inv_knife_1h_thunderisleraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,639,1079,0,0,369,0,0,0,0,0,481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":5731,"weaponDamageMax":10645,"weaponSpeed":1.8,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":173,"11":232}},"522":{"randPropPoints":1270,"weaponDamageMin":5320,"weaponDamageMax":9880,"stats":{"1":588,"2":1002,"5":340,"11":444}},"526":{"randPropPoints":1318,"weaponDamageMin":5522,"weaponDamageMax":10255,"stats":{"1":613,"2":1040,"5":354,"11":462},"upgradeStep":1}}}, +{"id":94789,"name":"Rot-Proof Greatplate","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,0,0,0,1039,0,1039,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":503,"11":503,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"9":959,"11":959,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"9":998,"11":998,"22":6054},"upgradeStep":1}}}, +{"id":94790,"name":"Grips of Cinderflesh","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,0,0,730,0,0,0,828,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":361,"11":412,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":674,"11":766,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":702,"11":797,"22":2770},"upgradeStep":1}}}, +{"id":94791,"name":"Poisonblood Bladeshoulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,792,0,0,0,792,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":393,"11":393,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":732,"11":732,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":761,"11":761,"22":2389},"upgradeStep":1}}}, +{"id":94792,"name":"Plated Toothbreaker Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1087,0,1871,0,0,0,0,0,0,752,752,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":353,"10":353,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"9":692,"10":692,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"9":721,"10":721,"22":3405},"upgradeStep":1}}}, +{"id":94793,"name":"Hydraskull Choker","icon":"inv_jewelry_necklace_125","type":2,"stats":[936,0,1403,0,0,0,0,0,0,703,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":366,"10":254}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":652,"10":453}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":677,"10":470},"upgradeStep":1}}}, +{"id":94794,"name":"Quadra-Head Brooch","icon":"inv_jewelry_necklace_140","type":2,"stats":[0,856,1403,0,0,584,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":285,"11":285}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"5":539,"11":539}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"5":561,"11":561},"upgradeStep":1}}}, +{"id":94795,"name":"Spinescale Seal","icon":"inv_jewelry_ring_164","type":11,"stats":[936,0,1403,0,0,633,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"6":317}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":588,"6":564}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":610,"6":586},"upgradeStep":1}}}, +{"id":94796,"name":"Fetish of the Hydra","icon":"inv_offhand_1h_thunderisleraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,856,0,611,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"6":261}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"5":564,"6":496}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"5":587,"6":516},"upgradeStep":1}}}, +{"id":94797,"name":"Chain of Consuming Magic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1519,1167,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":569,"11":390,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":1077,"11":758,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1121,"11":790,"22":4433},"upgradeStep":1}}}, +{"id":94798,"name":"Ice-Scored Treads","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1871,1167,784,0,0,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"11":401,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":724,"11":740,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":753,"11":769,"22":4162},"upgradeStep":1}}}, +{"id":94799,"name":"Sandals of Arcane Fury","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,796,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":392,"6":390,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":735,"6":720,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":765,"6":749,"22":1721},"upgradeStep":1}}}, +{"id":94800,"name":"Hood of Smoldering Flesh","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2519,1439,1089,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"6":382,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":1004,"6":793,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1046,"6":828,"22":2588},"upgradeStep":1}}}, +{"id":94801,"name":"Gleaming-Eye Shoulderpads","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,771,0,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"6":400,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":712,"6":743,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":741,"6":773,"22":1877},"upgradeStep":1}}}, +{"id":94802,"name":"Links of the Bifurcated Tongue","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":2493},"upgradeStep":1}}}, +{"id":94803,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,1403,936,0,624,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":579,"6":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":601,"6":601},"upgradeStep":1}}}, +{"id":94804,"name":"Frostborn Wristwraps","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1403,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"22":1095},"upgradeStep":1}}}, +{"id":94805,"name":"Giorgio's Caduceus of Pure Moods","icon":"inv_stave_2h_thunderisleraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1599,1168,0,0,913,0,0,0,0,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":8096,"weaponDamageMax":12144,"weaponSpeed":3.3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":578,"7":468,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":7514,"weaponDamageMax":11272,"stats":{"2":2338,"3":1478,"4":1079,"7":846,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":7800,"weaponDamageMax":11700,"stats":{"2":2427,"3":1538,"4":1123,"7":879,"14":9265},"upgradeStep":1}}}, +{"id":94806,"name":"Robe of Midnight Down","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,0,875,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":418,"11":554,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"7":807,"11":1049,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"7":840,"11":1092,"22":2503},"upgradeStep":1}}}, +{"id":94807,"name":"Egg-Shard Grips","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,592,0,908,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":546,"10":840,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":569,"10":873,"22":3784},"upgradeStep":1}}}, +{"id":94808,"name":"Grasp of the Ruthless Mother","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1247,750,0,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"11":458,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":696,"11":817,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":722,"11":848,"22":2770},"upgradeStep":1}}}, +{"id":94809,"name":"Crown of Potentiated Birth","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2519,1439,1176,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":565,"7":303,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":1084,"7":649,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1129,"7":679,"22":4919},"upgradeStep":1}}}, +{"id":94810,"name":"Talonrender Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,1089,956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"6":460,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":1005,"6":882,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":1046,"6":918,"22":6054},"upgradeStep":1}}}, +{"id":94811,"name":"Featherflight Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1087,1871,0,0,0,0,846,591,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":402,"8":269,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"7":779,"8":542,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"7":812,"8":566,"22":1792},"upgradeStep":1}}}, +{"id":94812,"name":"Pinionfeather Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,856,1403,0,0,0,568,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":277,"11":290,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"6":524,"11":548,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"6":546,"11":570,"22":1252},"upgradeStep":1}}}, +{"id":94813,"name":"Cord of Cacophonous Cawing","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,1871,1087,0,812,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"7":300,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"5":748,"7":597,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"5":779,"7":623,"22":1408},"upgradeStep":1}}}, +{"id":94814,"name":"Durumu's Baleful Gaze","icon":"inv_bow_2h_crossbow_thunderisleraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1599,2519,0,0,0,1145,969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"6":577,"7":486}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1478,"2":2338,"6":1060,"7":897}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1538,"2":2427,"6":1102,"7":932},"upgradeStep":1}}}, +{"id":94815,"name":"Legplates of the Dark Parasite","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,0,1121,902,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"8":432,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"7":1034,"8":831,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"7":1077,"8":866,"22":5297},"upgradeStep":1}}}, +{"id":94816,"name":"Crimson Bloom Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,1167,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":569,"6":390,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":1077,"6":758,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":1121,"6":790,"22":2788},"upgradeStep":1}}}, +{"id":94817,"name":"Treads of the Blind Eye","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,0,738,820,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":369,"10":404,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"9":682,"10":758,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"9":710,"10":789,"22":4162},"upgradeStep":1}}}, +{"id":94818,"name":"Aberrant Chestguard of Torment","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,1089,956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"6":1005,"7":882,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"6":1046,"7":918,"22":4433},"upgradeStep":1}}}, +{"id":94819,"name":"Links of the Disintegrator","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,1087,1871,0,0,0,800,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":378,"7":310,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"6":737,"7":616,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"6":768,"7":642,"22":2493},"upgradeStep":1}}}, +{"id":94820,"name":"Caustic Spike Bracers","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[856,0,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"22":2649},"upgradeStep":1}}}, +{"id":94821,"name":"Artery Rippers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1087,0,1871,0,0,0,0,0,0,715,780,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":326,"10":376,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"9":656,"10":719,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"9":685,"10":749,"22":3784},"upgradeStep":1}}}, +{"id":94822,"name":"Reinforced Mirror-Sheen Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[856,0,1403,0,0,0,0,0,0,671,434,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":331,"10":207,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"9":620,"10":400,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"9":645,"10":417,"22":1252},"upgradeStep":1}}}, +{"id":94823,"name":"Drakkari Decapitator","icon":"inv_axe_82","type":13,"weaponType":1,"handType":4,"stats":[1094,0,1640,0,0,0,751,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11507,"weaponDamageMax":17261,"weaponSpeed":3.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":600,"7":554}},"476":{"randPropPoints":1930,"weaponDamageMin":10680,"weaponDamageMax":16021,"stats":{"0":1015,"2":1522,"6":697,"7":643}},"480":{"randPropPoints":2004,"weaponDamageMin":11086,"weaponDamageMax":16629,"stats":{"0":1054,"2":1581,"6":723,"7":668},"upgradeStep":1}}}, +{"id":94824,"name":"Gaze of Qi'nor","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1641,1094,0,792,0,622,0,0,0,0,0,0,6265,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":5114,"weaponDamageMax":7671,"weaponSpeed":3.2,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4089,"weaponDamageMax":6134,"stats":{"2":1312,"3":875,"5":634,"7":498,"14":5009}},"476":{"randPropPoints":1930,"weaponDamageMin":4746,"weaponDamageMax":7120,"stats":{"2":1523,"3":1015,"5":735,"7":577,"14":5813}},"480":{"randPropPoints":2004,"weaponDamageMin":4927,"weaponDamageMax":7391,"stats":{"2":1581,"3":1054,"5":764,"7":600,"14":6036},"upgradeStep":1}}}, +{"id":94825,"name":"Lightning Snare","icon":"inv_mace_1h_pandariatradeskill_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,703,469,339,0,0,0,0,0,0,267,0,0,6262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":891,"weaponDamageMin":2696,"weaponDamageMax":5008,"weaponSpeed":2.6,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"4":272,"11":213,"14":5011}},"476":{"randPropPoints":827,"weaponDamageMin":2502,"weaponDamageMax":4648,"stats":{"2":652,"3":435,"4":315,"11":247,"14":5812}},"480":{"randPropPoints":859,"weaponDamageMin":2597,"weaponDamageMax":4825,"stats":{"2":678,"3":452,"4":327,"11":257,"14":6037},"upgradeStep":1}}}, +{"id":94826,"name":"Mogu Sportsman's Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,1094,1640,0,0,0,792,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2080,"weaponDamageMin":11586,"weaponDamageMax":11587,"weaponSpeed":2.9,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9265,"weaponDamageMax":9265,"stats":{"1":875,"2":1312,"6":634,"7":498}},"476":{"randPropPoints":1930,"weaponDamageMin":10754,"weaponDamageMax":10755,"stats":{"1":1015,"2":1522,"6":735,"7":577}},"480":{"randPropPoints":2004,"weaponDamageMin":11163,"weaponDamageMax":11163,"stats":{"1":1054,"2":1581,"6":764,"7":600},"upgradeStep":1}}}, +{"id":94922,"name":"Ritual Dagger of the Mind's Eye","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,639,475,0,381,0,0,0,0,0,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2865,"weaponDamageMax":5322,"weaponSpeed":1.8,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":228,"6":179,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2660,"weaponDamageMax":4940,"stats":{"2":1002,"3":588,"4":438,"6":351,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2761,"weaponDamageMax":5128,"stats":{"2":1040,"3":613,"4":456,"6":365,"14":9263},"upgradeStep":1}}}, +{"id":94923,"name":"Leggings of Pulsing Blood","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,1196,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1104,"11":709,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1149,"11":739,"22":2190},"upgradeStep":1}}}, +{"id":94924,"name":"Iceshatter Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1871,1087,819,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":753,"11":576,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":786,"11":601,"22":3784},"upgradeStep":1}}}, +{"id":94925,"name":"Lifedrainer's Sordid Grip","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,1871,1087,0,634,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"7":400,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"5":581,"7":764,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"5":607,"7":795,"22":1564},"upgradeStep":1}}}, +{"id":94926,"name":"Vein-Cover Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1403,936,703,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"7":254,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":652,"7":453,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":677,"7":470,"22":1939},"upgradeStep":1}}}, +{"id":94927,"name":"Sandals of the Starving Eye","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,1871,1167,844,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"6":348,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":780,"6":645,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":811,"6":671,"22":2190},"upgradeStep":1}}}, +{"id":94928,"name":"Chilblain Spaulders","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,750,0,0,0,0,816,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":372,"11":406,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":693,"11":755,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":721,"11":785,"22":1877},"upgradeStep":1}}}, +{"id":94929,"name":"Deadly Glare Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1403,856,0,0,553,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":269,"7":295,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"6":510,"7":556,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"6":531,"7":579,"22":1252},"upgradeStep":1}}}, +{"id":94930,"name":"Legplates of Re-Emergence","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2519,1519,0,0,956,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":460,"7":529,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":882,"7":1005,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":918,"7":1046,"22":5297},"upgradeStep":1}}}, +{"id":94931,"name":"Durumu's Captive Eyeball","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,1403,856,639,0,472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"6":238}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":588,"6":437}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":613,"6":454},"upgradeStep":1}}}, +{"id":94937,"name":"Acid-Spine Bonemace","icon":"inv_mace_1h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[639,0,1079,0,0,0,0,0,0,481,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":7642,"weaponDamageMax":14193,"weaponSpeed":2.4,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":295,"2":562,"9":232,"10":173}},"522":{"randPropPoints":1270,"weaponDamageMin":7093,"weaponDamageMax":13173,"stats":{"0":588,"2":1002,"9":444,"10":340}},"526":{"randPropPoints":1318,"weaponDamageMin":7362,"weaponDamageMax":13674,"stats":{"0":613,"2":1040,"9":462,"10":354},"upgradeStep":1}}}, +{"id":94938,"name":"Pathogenic Gauntlets","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1087,0,1871,0,0,614,0,840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":274,"7":407,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"5":563,"7":775,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"5":588,"7":807,"22":3784},"upgradeStep":1}}}, +{"id":94939,"name":"Gloves of Cushioned Air","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1087,1871,0,0,0,614,0,0,0,0,840,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":274,"11":407,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"6":563,"11":775,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"6":588,"11":807,"22":1991},"upgradeStep":1}}}, +{"id":94940,"name":"Bracers of Mutagenic Fervor","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,0,518,0,0,0,686,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":480,"11":637,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":499,"11":661,"22":1939},"upgradeStep":1}}}, +{"id":94941,"name":"Metabolically Boosted Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,0,771,804,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":382,"10":400,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"9":712,"10":743,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"9":741,"10":773,"22":4540},"upgradeStep":1}}}, +{"id":94942,"name":"Hydra-Scale Bloodcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[856,0,1403,0,0,0,620,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":304,"8":253,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"6":573,"8":482,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"6":596,"8":502,"22":1252},"upgradeStep":1}}}, +{"id":94943,"name":"Synapse-String Handguards","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1087,1871,0,0,0,768,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"7":337,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"6":708,"7":676,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"6":737,"7":705,"22":2770},"upgradeStep":1}}}, +{"id":94944,"name":"Black Blood Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,0,0,0,1011,1056,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":488,"10":512,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"9":933,"10":975,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"9":971,"10":1015,"22":5297},"upgradeStep":1}}}, +{"id":94945,"name":"Greatshield of the Gloaming","icon":"inv_shield_thunderisleraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[856,0,1403,0,0,0,0,0,0,592,0,569,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"11":266,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"9":548,"11":524,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"9":570,"11":546,"22":19418},"upgradeStep":1}}}, +{"id":94946,"name":"Leggings of the Malformed Sapling","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2519,1519,1121,0,902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"6":432,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":1034,"6":831,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1077,"6":866,"22":2788},"upgradeStep":1}}}, +{"id":94947,"name":"Helix-Breaker Gloves","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1087,808,0,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":375,"6":306,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":743,"6":595,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":775,"6":620,"22":1564},"upgradeStep":1}}}, +{"id":94948,"name":"Bracers of Fragile Bone","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,633,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":588,"7":564,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":610,"7":586,"22":1095},"upgradeStep":1}}}, +{"id":94949,"name":"Clear-Mind Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,0,1016,0,0,0,971,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"7":935,"11":893,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"7":975,"11":931,"22":3602},"upgradeStep":1}}}, +{"id":94950,"name":"Spaulders of Primordial Growth","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1871,1167,908,0,0,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"7":289,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":840,"7":546,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":873,"7":569,"22":4540},"upgradeStep":1}}}, +{"id":94951,"name":"Robes of Mutagenic Blood","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,1073,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"7":474,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":990,"7":907,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1030,"7":945,"22":2503},"upgradeStep":1}}}, +{"id":94952,"name":"Bonemender Bracers","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1403,936,608,0,0,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":564,"7":588,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":586,"7":610,"22":2649},"upgradeStep":1}}}, +{"id":94953,"name":"Leggings of Ebon Veins","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,1039,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":959,"6":959,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":998,"6":998,"22":2190},"upgradeStep":1}}}, +{"id":94954,"name":"Hand of the Dark Animus","icon":"inv_mace_1h_thunderisleraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,639,1079,0,0,0,0,481,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":232,"8":173}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":588,"2":1002,"7":444,"8":340}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":613,"2":1040,"7":462,"8":354},"upgradeStep":1}}}, +{"id":94955,"name":"Athame of the Sanguine Ritual","icon":"inv_knife_1h_thunderisleraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,639,0,0,0,440,0,0,0,440,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2865,"weaponDamageMax":5322,"weaponSpeed":1.8,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"7":210,"11":210,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2660,"weaponDamageMax":4940,"stats":{"2":1002,"3":588,"7":405,"11":405,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2761,"weaponDamageMax":5128,"stats":{"2":1040,"3":613,"7":422,"11":422,"14":9263},"upgradeStep":1}}}, +{"id":94956,"name":"Matter-Swapped Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2519,1519,1073,0,0,0,0,0,0,984,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"11":474,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":990,"11":907,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1030,"11":945,"22":5297},"upgradeStep":1}}}, +{"id":94957,"name":"Anima-Ringed Fingers","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1871,1087,760,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"6":348,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":699,"6":669,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":729,"6":697,"22":1991},"upgradeStep":1}}}, +{"id":94958,"name":"Crown of the Golden Golem","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,1061,882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":485,"7":412,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"6":974,"7":811,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"6":1017,"7":846,"22":4919},"upgradeStep":1}}}, +{"id":94959,"name":"Hood of the Crimson Wake","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,0,979,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"7":899,"11":939,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"7":938,"11":978,"22":2034},"upgradeStep":1}}}, +{"id":94960,"name":"Constantly Accelerating Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1403,856,522,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":253,"7":304,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":482,"7":573,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":502,"7":596,"22":1252},"upgradeStep":1}}}, +{"id":94961,"name":"Gore-Soaked Gear","icon":"inv_jewelry_ring_180","type":11,"stats":[0,856,1403,0,0,0,605,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"7":269}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"6":557,"7":492}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"6":581,"7":511},"upgradeStep":1}}}, +{"id":94962,"name":"Worldbinder Leggings","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,823,0,0,0,0,1167,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":390,"11":569,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"6":758,"11":1077,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"6":790,"11":1121,"22":2788},"upgradeStep":1}}}, +{"id":94963,"name":"Voice of the Quilen","icon":"inv_firearm_2h_rifle_thunderisleraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1679,2439,0,0,1051,0,1096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":12880,"weaponDamageMax":23921,"weaponSpeed":3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1232,"5":528,"7":552}},"522":{"randPropPoints":2963,"weaponDamageMin":11955,"weaponDamageMax":22203,"stats":{"1":1558,"2":2258,"5":973,"7":1015}},"526":{"randPropPoints":3076,"weaponDamageMin":12409,"weaponDamageMax":23046,"stats":{"1":1618,"2":2347,"5":1011,"7":1055},"upgradeStep":1}}}, +{"id":94964,"name":"Qon's Flaming Scimitar","icon":"inv_sword_1h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[639,0,1079,0,0,0,0,0,440,0,0,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":210,"11":210}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":588,"2":1002,"8":405,"11":405}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":613,"2":1040,"8":422,"11":422},"upgradeStep":1}}}, +{"id":94965,"name":"Orb of Arcing Lightning","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,856,663,0,0,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":612,"7":413}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":637,"7":430},"upgradeStep":1}}}, +{"id":94966,"name":"Saddle-Scarred Leggings","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,1121,0,0,0,0,0,0,902,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":1034,"11":831,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1077,"11":866,"22":2190},"upgradeStep":1}}}, +{"id":94967,"name":"Spurs of the Storm Cavalry","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,784,0,0,0,0,800,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":385,"11":401,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":724,"11":740,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":753,"11":769,"22":2190},"upgradeStep":1}}}, +{"id":94968,"name":"Dam'ren's Frozen Footguards","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,682,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":332,"7":432,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":629,"7":796,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":655,"7":827,"22":1721},"upgradeStep":1}}}, +{"id":94969,"name":"Ro'shak's Molten Chain","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1519,1039,0,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":959,"7":959,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":998,"7":998,"22":4433},"upgradeStep":1}}}, +{"id":94970,"name":"Quet'zal's Crackling Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1871,1087,710,0,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"6":366,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":653,"6":715,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":681,"6":745,"22":1408},"upgradeStep":1}}}, +{"id":94971,"name":"Iron Qon's Boot Knife","icon":"inv_knife_1h_thunderisleraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,639,1079,0,0,324,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":5731,"weaponDamageMax":10645,"weaponSpeed":1.8,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":150,"7":245}},"522":{"randPropPoints":1270,"weaponDamageMin":5320,"weaponDamageMax":9880,"stats":{"1":588,"2":1002,"5":298,"7":468}},"526":{"randPropPoints":1318,"weaponDamageMin":5522,"weaponDamageMax":10255,"stats":{"1":613,"2":1040,"5":311,"7":487},"upgradeStep":1}}}, +{"id":94972,"name":"Rein-Binder's Fists","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1087,0,1871,0,0,0,830,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"7":285,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"6":763,"7":558,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"6":796,"7":582,"22":3784},"upgradeStep":1}}}, +{"id":94973,"name":"Wu-Lai, Bladed Fan of the Consorts","icon":"inv_hand_1h_thunderisleraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,639,1079,0,0,0,404,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":191,"7":221}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":588,"2":1002,"6":372,"7":425}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":613,"2":1040,"6":388,"7":443},"upgradeStep":1}}}, +{"id":94974,"name":"Suen-Wo, Spire of the Falling Sun","icon":"inv_stave_2h_thunderisleraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1599,0,0,0,1185,0,0,0,918,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":8096,"weaponDamageMax":12144,"weaponSpeed":3.3,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"7":609,"11":448,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":7514,"weaponDamageMax":11272,"stats":{"2":2338,"3":1478,"7":1098,"11":847,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":7800,"weaponDamageMax":11700,"stats":{"2":2427,"3":1538,"7":1141,"11":882,"14":9265},"upgradeStep":1}}}, +{"id":94975,"name":"Legguards of Scintillating Scales","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,1039,0,0,0,0,1039,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":503,"11":503,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":959,"11":959,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":998,"11":998,"22":3879},"upgradeStep":1}}}, +{"id":94976,"name":"Tidal Force Treads","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,878,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":434,"7":317,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":811,"7":590,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":844,"7":614,"22":4162},"upgradeStep":1}}}, +{"id":94977,"name":"Robes of the Moon Lotus","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,1039,0,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":959,"7":959,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":998,"7":998,"22":2503},"upgradeStep":1}}}, +{"id":94978,"name":"Girdle of Night and Day","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,0,1871,1087,752,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":692,"7":692,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":721,"7":721,"22":1792},"upgradeStep":1}}}, +{"id":94979,"name":"Bracers of the Midnight Comet","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,856,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"22":1394},"upgradeStep":1}}}, +{"id":94980,"name":"Passionfire Choker","icon":"inv_jewelry_necklace_123","type":2,"stats":[0,0,1403,856,553,0,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":269,"6":295}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":510,"6":556}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":531,"6":579},"upgradeStep":1}}}, +{"id":94981,"name":"Moonjade Necklace","icon":"inv_jewelry_necklace_120","type":2,"stats":[856,0,1403,0,0,0,0,0,584,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"9":285}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"8":539,"9":539}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"8":561,"9":561},"upgradeStep":1}}}, +{"id":94982,"name":"Uroe, Harbinger of Terror","icon":"inv_axe_2h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1599,0,2519,0,0,0,1212,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":601,"11":427}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1478,"2":2338,"6":1120,"11":773}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1538,"2":2427,"6":1165,"11":803},"upgradeStep":1}}}, +{"id":94983,"name":"Shan-Dun, Breaker of Hope","icon":"inv_polearm_2h_thunderisleraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1599,2519,0,0,0,0,1055,1103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"8":567}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"1":1478,"2":2338,"7":975,"8":1023}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"1":1538,"2":2427,"7":1014,"8":1062},"upgradeStep":1}}}, +{"id":94984,"name":"Doomed Crown of Lei Shen","icon":"achievement_boss_leishen","type":1,"armorType":4,"stats":[1439,0,2519,0,0,751,0,0,0,0,0,1136,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":343,"11":525,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"5":689,"11":1044,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"5":719,"11":1089,"22":4919},"upgradeStep":1}}}, +{"id":94985,"name":"Legplates of Whipping Ionization","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,1089,0,854,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":513,"11":384,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"9":1002,"11":783,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"9":1045,"11":818,"22":5297},"upgradeStep":1}}}, +{"id":94986,"name":"Conduit-Breaker Chain Leggings","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1439,2519,0,0,0,1007,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":471,"7":455,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":927,"7":911,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":966,"7":950,"22":3879},"upgradeStep":1}}}, +{"id":94987,"name":"Fusion Slasher Chestguard","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,984,0,0,0,0,1073,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"6":907,"11":990,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"6":945,"11":1030,"22":3186},"upgradeStep":1}}}, +{"id":94988,"name":"Torall, Rod of the Shattered Throne","icon":"inv_mace_1h_thunderisleraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,999,719,507,0,0,324,0,0,0,0,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3821,"weaponDamageMax":7096,"weaponSpeed":2.4,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":482,"3":375,"4":245,"7":150,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3546,"weaponDamageMax":6587,"stats":{"2":922,"3":668,"4":468,"7":298,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3681,"weaponDamageMax":6837,"stats":{"2":960,"3":693,"4":487,"7":311,"14":9263},"upgradeStep":1}}}, +{"id":94989,"name":"Lei Shen's Grounded Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2519,1519,1039,0,0,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":959,"7":959,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":998,"7":998,"22":6054},"upgradeStep":1}}}, +{"id":94990,"name":"Legwraps of Cardinality","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2519,1439,0,739,1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":331,"6":537,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":677,"6":1056,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":707,"6":1101,"22":2190},"upgradeStep":1}}}, +{"id":94991,"name":"Grips of Slicing Electricity","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1871,1087,819,0,0,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":753,"11":576,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":786,"11":601,"22":1991},"upgradeStep":1}}}, +{"id":94992,"name":"Leggings of the Violent Gale","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2519,1439,1119,0,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"11":358,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":1029,"11":726,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1073,"11":758,"22":3879},"upgradeStep":1}}}, +{"id":94993,"name":"Gloves of the Maimed Vizier","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1087,852,0,0,0,0,0,0,568,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":398,"11":265,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":784,"11":522,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":817,"11":545,"22":1564},"upgradeStep":1}}}, +{"id":94994,"name":"Soul Prism of Lei Shen","icon":"inv_jewelry_necklace_136","type":2,"stats":[0,0,1403,776,631,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":328,"4":291,"7":167}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":708,"4":580,"7":360}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":741,"4":605,"7":377},"upgradeStep":1}}}, +{"id":94995,"name":"Detonation Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,2233,1329,1042,0,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":418,"11":253,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":962,"11":647,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":1001,"11":675,"22":1487},"upgradeStep":1}}}, +{"id":94996,"name":"Vita-Binder Wrap","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,2233,1329,0,736,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":285,"6":386,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"5":679,"6":930,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"5":707,"6":969,"22":1487},"upgradeStep":1}}}, +{"id":94997,"name":"Worldbender Waistband","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,2233,1329,1042,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":418,"6":253,"22":1442}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":962,"6":647,"22":1872}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":1001,"6":675,"22":1893},"upgradeStep":1}}}, +{"id":94998,"name":"Strap of Murderous Strikes","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1329,2233,0,0,0,987,0,0,0,0,799,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":394,"11":294,"22":1442}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"6":911,"11":735,"22":1872}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"6":948,"11":766,"22":1893},"upgradeStep":1}}}, +{"id":94999,"name":"Longdraw Chain Belt","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,2233,1329,0,0,0,1001,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":400,"11":284,"22":2007}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"7":924,"11":712,"22":2604}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"7":962,"11":743,"22":2634},"upgradeStep":1}}}, +{"id":95000,"name":"Jingling Fetishgirdle","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1329,2233,0,0,0,0,904,0,0,0,912,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":358,"11":344,"22":2007}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"7":834,"11":839,"22":2604}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"7":868,"11":875,"22":2634},"upgradeStep":1}}}, +{"id":95001,"name":"Bubbling Anima Belt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,2233,1329,929,0,897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":369,"6":337,"22":2741}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":857,"6":825,"22":3556}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":892,"6":860,"22":3597},"upgradeStep":1}}}, +{"id":95002,"name":"Cracklesnap Clasp","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1329,0,2233,0,0,799,0,0,0,0,987,0,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":294,"10":394,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"5":735,"10":911,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"5":766,"10":948,"22":3597},"upgradeStep":1}}}, +{"id":95003,"name":"Flare-Forged Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1329,0,2233,0,0,0,1015,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":407,"11":274,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"6":937,"11":690,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"6":975,"11":720,"22":3597},"upgradeStep":1}}}, +{"id":95004,"name":"Starwalker Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,2233,1329,0,0,920,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":374,"11":328,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"6":850,"11":823,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"6":884,"11":859,"22":1818},"upgradeStep":1}}}, +{"id":95005,"name":"Treads of Delicate Fascia","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,2233,1329,994,0,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":370,"11":301,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":914,"11":695,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":953,"11":723,"22":1818},"upgradeStep":1}}}, +{"id":95006,"name":"Roots of Pain","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,2233,1329,0,0,735,0,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":258,"11":423,"22":1763}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"6":674,"11":953,"22":2287}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"6":704,"11":991,"22":2313},"upgradeStep":1}}}, +{"id":95007,"name":"Twist-Toe Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1329,2233,0,0,0,0,871,924,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"8":340,"22":1763}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"7":805,"8":850,"22":2287}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"7":838,"8":887,"22":2313},"upgradeStep":1}}}, +{"id":95008,"name":"World-Mote Sabatons","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,2233,1329,924,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":340,"6":353,"22":2453}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":850,"6":805,"22":3183}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":887,"6":838,"22":3219},"upgradeStep":1}}}, +{"id":95009,"name":"Treads of the Sanguine Volley","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1329,2233,0,0,0,776,0,0,0,0,980,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":311,"11":364,"22":2453}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"6":716,"11":902,"22":3183}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"6":746,"11":940,"22":3219},"upgradeStep":1}}}, +{"id":95010,"name":"Hypersensitive Sollerets","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,2233,1329,939,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":346,"6":342,"22":3350}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":863,"6":783,"22":4347}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":900,"6":814,"22":4396},"upgradeStep":1}}}, +{"id":95011,"name":"Lightning-Walker Clawfeet","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1329,0,2233,0,0,0,0,0,0,799,0,967,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":322,"11":359,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"9":738,"11":889,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"9":768,"11":927,"22":4396},"upgradeStep":1}}}, +{"id":95012,"name":"Sabatons of the Superior Being","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1329,0,2233,0,0,0,896,0,920,0,0,0,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":328,"8":374,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"6":823,"8":850,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"6":859,"8":884,"22":4396},"upgradeStep":1}}}, +{"id":95013,"name":"Black Night Thundercloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1675,1036,704,0,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":285,"11":285,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":651,"11":651,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":677,"11":677,"22":1322},"upgradeStep":1}}}, +{"id":95014,"name":"Red Sky Cloudcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1675,1036,0,758,0,613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":309,"7":245,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"5":701,"7":566,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"5":730,"7":589,"22":1322},"upgradeStep":1}}}, +{"id":95015,"name":"Grey Wind Mistcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1036,1675,0,0,0,667,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":269,"7":295,"22":1007}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"6":617,"7":672,"22":1307}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"6":642,"7":699,"22":1322},"upgradeStep":1}}}, +{"id":95016,"name":"White Snow Skycloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1036,0,1675,0,0,0,0,0,758,0,613,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":309,"10":245,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"8":701,"10":566,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"8":730,"10":589,"22":1322},"upgradeStep":1}}}, +{"id":95017,"name":"Yellow Dawn Lightningcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1036,0,1675,0,0,0,686,716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":277,"7":290,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"6":634,"7":661,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"6":659,"7":688,"22":1322},"upgradeStep":1}}}, +{"id":95018,"name":"Ra-den's Evolving Signet","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1675,1036,713,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":658,"7":624}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":685,"7":648},"upgradeStep":1}}}, +{"id":95019,"name":"Ra-den's Summoning Band","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1675,1036,0,554,0,803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":206,"7":342}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"5":509,"7":744}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"5":531,"7":773},"upgradeStep":1}}}, +{"id":95020,"name":"Ra-den's Contemplative Loop","icon":"inv_jewelry_ring_168","type":11,"stats":[1036,0,1675,0,0,0,0,0,0,745,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":289,"10":261}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"9":687,"10":574}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"9":716,"10":596},"upgradeStep":1}}}, +{"id":95021,"name":"Ra-den's Swift Seal","icon":"inv_jewelry_ring_170","type":11,"stats":[0,1036,1675,0,0,761,0,625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":323,"7":237}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"5":706,"7":576}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"5":733,"7":600},"upgradeStep":1}}}, +{"id":95022,"name":"Ra-den's Ruinous Ring","icon":"inv_jewelry_ring_168","type":11,"stats":[1036,0,1675,0,0,0,0,813,536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"phase":2,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":346,"8":198}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"7":754,"8":493}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"7":783,"8":514},"upgradeStep":1}}}, +{"id":95023,"name":"Legplates of Lightning Blood","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1764,0,3006,0,0,926,0,0,0,0,0,1386,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":336,"11":537,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"5":851,"11":1277,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"5":888,"11":1331,"22":5595},"upgradeStep":1}}}, +{"id":95024,"name":"Time-Lost Greaves","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,3006,1764,1332,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"6":378,"22":4263}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1228,"6":938,"22":5532}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1279,"6":979,"22":5595},"upgradeStep":1}}}, +{"id":95025,"name":"Archaic Protector's Legguards","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1764,0,3006,0,0,0,0,0,0,0,1236,1183,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":472,"11":448,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"10":1139,"11":1089,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"10":1187,"11":1135,"22":5595},"upgradeStep":1}}}, +{"id":95026,"name":"Sparkstring Chain Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1764,3006,0,0,0,1117,0,0,0,0,1275,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":420,"11":489,"22":3122}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"6":1028,"11":1175,"22":4051}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"6":1072,"11":1224,"22":4097},"upgradeStep":1}}}, +{"id":95027,"name":"Legguards of Awaked Repair","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,3006,1764,1332,0,1020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"6":378,"22":3122}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1228,"6":938,"22":4051}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1279,"6":979,"22":4097},"upgradeStep":1}}}, +{"id":95028,"name":"Cosmicfire Legwraps","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1764,3006,0,0,0,0,0,957,0,0,1368,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":350,"11":529,"22":2243}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"8":880,"11":1261,"22":2911}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"8":918,"11":1314,"22":2944},"upgradeStep":1}}}, +{"id":95029,"name":"Kilt of Perpetual Genuflection","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,3006,1764,1368,0,0,0,0,0,0,957,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":529,"11":350,"22":2243}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1261,"11":880,"22":2911}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1314,"11":918,"22":2944},"upgradeStep":1}}}, +{"id":95030,"name":"Leggings of the Discarded Warning","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,3006,1764,0,0,0,1236,0,0,0,1183,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1139,"11":1089,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1187,"11":1135,"22":2313},"upgradeStep":1}}}, +{"id":95031,"name":"Legguards of Surreal Visions","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,3006,1764,1350,0,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":522,"7":364,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1245,"7":909,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1297,"7":948,"22":2313},"upgradeStep":1}}}, +{"id":95032,"name":"Robes of Contagious Time","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,3006,1764,0,0,0,1236,0,0,0,1183,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2564}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1139,"11":1089,"22":3327}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1187,"11":1135,"22":3365},"upgradeStep":1}}}, +{"id":95033,"name":"Chestguard of Coruscating Blades","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1764,3006,0,0,0,1183,1236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":448,"7":472,"22":2564}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"6":1089,"7":1139,"22":3327}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"6":1135,"7":1187,"22":3365},"upgradeStep":1}}}, +{"id":95034,"name":"Scales of Shaped Flesh","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1764,3006,0,0,895,0,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":323,"7":545,"22":3568}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"5":822,"7":1294,"22":4629}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"5":858,"7":1348,"22":4682},"upgradeStep":1}}}, +{"id":95035,"name":"Chains of Counted Souls","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,3006,1764,0,0,0,1332,0,0,0,1020,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":514,"11":378,"22":3568}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1228,"11":938,"22":4629}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1279,"11":979,"22":4682},"upgradeStep":1}}}, +{"id":95036,"name":"Nova-Binder Breastplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,3006,1764,0,0,0,1236,0,0,0,1183,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":4872}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1139,"11":1089,"22":6322}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1187,"11":1135,"22":6394},"upgradeStep":1}}}, +{"id":95037,"name":"Planet-Birthed Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1764,0,3006,0,0,0,0,0,895,0,1403,0,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"8":822,"10":1294,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"8":858,"10":1348,"22":6394},"upgradeStep":1}}}, +{"id":95038,"name":"Carapace of the Core","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1764,0,3006,0,0,0,1256,1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":480,"7":434,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"6":1157,"7":1059,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"6":1206,"7":1104,"22":6394},"upgradeStep":1}}}, +{"id":95039,"name":"Starburner Robes","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,3006,1764,0,0,0,1294,0,0,0,1085,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":497,"11":406,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1193,"11":998,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1243,"11":1041,"22":2644},"upgradeStep":1}}}, +{"id":95040,"name":"Robes of Nova","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,3006,1764,0,895,0,1403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ra-den"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"5":822,"7":1294,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"5":858,"7":1348,"22":2644},"upgradeStep":1}}}, +{"id":95050,"name":"The Brassiest Knuckle","icon":"inv_jewelry_ring_03","type":11,"stats":[610,0,914,0,0,0,0,0,357,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":285,"11":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"8":331,"11":331}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"8":343,"11":343},"upgradeStep":1}}}, +{"id":95051,"name":"The Brassiest Knuckle","icon":"inv_jewelry_ring_03","type":11,"stats":[610,0,914,0,0,0,0,0,357,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":285,"11":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"8":331,"11":331}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"8":343,"11":343},"upgradeStep":1}}}, +{"id":95060,"name":"Abandoned Spaulders of Arrowflight","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,592,0,0,0,908,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":289,"11":454,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":546,"11":840,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":569,"11":873,"22":3325},"upgradeStep":1}}}, +{"id":95061,"name":"Lost Shoulders of Fire","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,639,0,878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":317,"7":434,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":590,"7":811,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":614,"7":844,"22":1877},"upgradeStep":1}}}, +{"id":95062,"name":"Forgotten Mantle of the Sun","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1871,1167,0,0,0,750,0,0,0,816,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":372,"11":406,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":693,"11":755,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"7":721,"11":785,"22":2389},"upgradeStep":1}}}, +{"id":95063,"name":"Reconstructed Furious Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,816,0,0,0,750,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":755,"11":693,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"7":785,"11":721,"22":4540},"upgradeStep":1}}}, +{"id":95064,"name":"Abandoned Spaulders of Renewal","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1871,1167,0,0,771,0,0,0,0,804,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"11":400,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":712,"11":743,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":741,"11":773,"22":3325},"upgradeStep":1}}}, +{"id":95065,"name":"Forgotten Mantle of the Moon","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,908,592,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":840,"8":546,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":873,"8":569,"22":2389},"upgradeStep":1}}}, +{"id":95066,"name":"Lost Shoulders of Healing","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,864,0,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":799,"7":619,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":831,"7":644,"22":1877},"upgradeStep":1}}}, +{"id":95067,"name":"Lost Shoulders of Fluidity","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,792,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":732,"7":732,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":761,"7":761,"22":1877},"upgradeStep":1}}}, +{"id":95068,"name":"Reconstructed Bloody Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,592,0,908,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":546,"10":840,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":569,"10":873,"22":4540},"upgradeStep":1}}}, +{"id":95069,"name":"Reconstructed Holy Shoulderplates","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1871,1167,0,0,0,804,0,0,0,771,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":743,"11":712,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"7":773,"11":741,"22":4540},"upgradeStep":1}}}, +{"id":95074,"name":"Hauberk of Gleaming Fire","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2519,1519,1073,0,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"6":474,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":990,"6":907,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1030,"6":945,"22":6054},"upgradeStep":1}}}, +{"id":95075,"name":"Gianttooth Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,1073,0,0,984,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"8":474,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":990,"8":907,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":1030,"8":945,"22":6054},"upgradeStep":1}}}, +{"id":95076,"name":"Breastplate of Brutal Strikes","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1041,0,2519,0,0,849,0,0,0,1152,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":465,"2":1312,"5":404,"9":562,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":954,"2":2338,"5":782,"9":1063,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":997,"2":2427,"5":815,"9":1107,"22":6054},"upgradeStep":1}}}, +{"id":95077,"name":"Roofstalker Shadowwrap","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,984,0,0,1073,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":474,"8":520,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":907,"8":990,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":945,"8":1030,"22":3186},"upgradeStep":1}}}, +{"id":95078,"name":"Raiment of Silent Stars","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2519,1519,1073,0,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"6":474,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":990,"6":907,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1030,"6":945,"22":3186},"upgradeStep":1}}}, +{"id":95079,"name":"Carapace of Segmented Scale","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,1105,0,0,929,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":537,"8":446,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":1020,"8":857,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":1062,"8":892,"22":4433},"upgradeStep":1}}}, +{"id":95080,"name":"Skinsealer Tunic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1519,1073,0,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"6":474,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":990,"6":907,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1030,"6":945,"22":4433},"upgradeStep":1}}}, +{"id":95081,"name":"Fire Support Robes","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,1089,0,0,0,0,956,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":529,"11":460,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1005,"11":882,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1046,"11":918,"22":2503},"upgradeStep":1}}}, +{"id":95082,"name":"Robes of Misty Bindings","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,1073,0,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"6":474,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":990,"6":907,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":1030,"6":945,"22":2503},"upgradeStep":1}}}, +{"id":95083,"name":"Swordhook Slingbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,730,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":361,"11":412,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":674,"11":766,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":702,"11":797,"22":3405},"upgradeStep":1}}}, +{"id":95084,"name":"Reinforced Spiritplate Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,631,0,0,0,886,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":309,"9":442,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":582,"9":819,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":606,"9":852,"22":3405},"upgradeStep":1}}}, +{"id":95085,"name":"Waistplate of Channeled Mending","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1871,1167,864,0,0,0,0,0,0,670,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"11":330,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":799,"11":619,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":831,"11":644,"22":3405},"upgradeStep":1}}}, +{"id":95086,"name":"Nightflight Chain","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,670,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":330,"7":431,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":619,"7":799,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"5":644,"7":831,"22":2493},"upgradeStep":1}}}, +{"id":95087,"name":"Cracklebite Links","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1871,1167,690,0,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":637,"6":788,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":663,"6":819,"22":2493},"upgradeStep":1}}}, +{"id":95088,"name":"Darkfang Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,792,0,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":393,"7":393,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":732,"7":732,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"5":761,"7":761,"22":1792},"upgradeStep":1}}}, +{"id":95089,"name":"Martiean's Splitleaf Girdle","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,1871,1167,730,0,0,0,0,0,0,828,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":361,"11":412,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":674,"11":766,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":702,"11":797,"22":1792},"upgradeStep":1}}}, +{"id":95090,"name":"Firestrike Cord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,804,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":400,"11":382,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":743,"11":712,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":773,"11":741,"22":1408},"upgradeStep":1}}}, +{"id":95091,"name":"Girdle of Glowing Light","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,710,0,0,840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":350,"7":418,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":656,"7":777,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":682,"7":808,"22":1408},"upgradeStep":1}}}, +{"id":95095,"name":"Targetblinder Spaulders","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1247,1871,0,0,0,832,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":433,"7":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"6":772,"7":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"6":801,"7":801,"22":3325},"upgradeStep":1}}}, +{"id":95096,"name":"Shoulders of Demonic Dreams","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1871,1247,0,926,0,0,0,0,0,671,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":482,"11":349,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"5":859,"11":622,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"5":892,"11":646,"22":1877},"upgradeStep":1}}}, +{"id":95097,"name":"Heartroot Shoulderguards","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1871,1247,690,0,915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":359,"6":476,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":640,"6":849,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":665,"6":882,"22":2389},"upgradeStep":1}}}, +{"id":95098,"name":"Sightblinder Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1247,0,1871,0,0,948,632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":494,"6":329,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"5":880,"6":586,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"5":913,"6":609,"22":4540},"upgradeStep":1}}}, +{"id":95099,"name":"Lightning Strike Mantle","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1871,1247,710,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":370,"6":471,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":659,"6":839,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":684,"6":871,"22":3325},"upgradeStep":1}}}, +{"id":95100,"name":"Wallwalker Spaulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1247,1871,0,0,0,892,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":464,"11":380,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"6":828,"11":677,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"6":859,"11":703,"22":2389},"upgradeStep":1}}}, +{"id":95101,"name":"Halo-Graced Mantle","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1247,690,0,915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":359,"6":476,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":640,"6":849,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":665,"6":882,"22":1877},"upgradeStep":1}}}, +{"id":95102,"name":"Frost-Kissed Shoulderwraps","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1871,1247,0,0,880,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":458,"7":390,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"6":817,"7":696,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"6":848,"7":722,"22":1877},"upgradeStep":1}}}, +{"id":95103,"name":"Sparksmasher Pauldrons","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1247,0,1871,0,0,832,0,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":433,"9":433,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"5":772,"9":772,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"5":801,"9":801,"22":4540},"upgradeStep":1}}}, +{"id":95104,"name":"Shoulderguards of Potentiation","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1871,1247,750,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"6":458,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":696,"6":817,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":722,"6":848,"22":4540},"upgradeStep":1}}}, +{"id":95105,"name":"Ghostbinder Grips","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1247,671,0,926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":349,"6":482,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":622,"6":859,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":646,"6":892,"22":1564},"upgradeStep":1}}}, +{"id":95106,"name":"Flameweaver Handwraps","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1871,1247,0,0,0,868,0,0,0,770,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":452,"11":401,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":806,"11":714,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":837,"11":742,"22":1564},"upgradeStep":1}}}, +{"id":95107,"name":"Gloves of Enduring Renewal","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1871,1247,0,0,811,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":422,"7":440,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"6":752,"7":783,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"6":781,"7":813,"22":1991},"upgradeStep":1}}}, +{"id":95108,"name":"Daggerfinger Clutches","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1247,1871,0,0,948,0,0,0,0,0,632,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":494,"11":329,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"5":880,"11":586,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"5":913,"11":609,"22":1991},"upgradeStep":1}}}, +{"id":95109,"name":"Gauntlets of the Longbow","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1247,1871,0,0,750,0,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":390,"11":458,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"5":696,"11":817,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"5":722,"11":848,"22":2770},"upgradeStep":1}}}, +{"id":95110,"name":"Stoneward Handguards","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1247,0,1871,0,0,0,0,0,0,0,856,790,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"10":446,"11":412,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"10":795,"11":733,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"10":825,"11":761,"22":3784},"upgradeStep":1}}}, +{"id":95111,"name":"Bloodstained Skullsqueezers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1247,0,1871,0,0,0,880,0,0,0,0,750,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":458,"11":390,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"6":817,"11":696,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"6":848,"11":722,"22":3784},"upgradeStep":1}}}, +{"id":95112,"name":"Totemshaper Gloves","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1247,0,0,0,750,0,0,0,880,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":390,"11":458,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":696,"11":817,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":722,"11":848,"22":2770},"upgradeStep":1}}}, +{"id":95113,"name":"Touch of Soothing Mists","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1871,1247,0,0,0,832,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":772,"11":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":801,"11":801,"22":3784},"upgradeStep":1}}}, +{"id":95114,"name":"Spikeshard Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"11":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"11":527,"22":1252},"upgradeStep":1}}}, +{"id":95115,"name":"Many-Layered Scalecloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[936,0,1403,0,0,633,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"9":317,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":588,"9":564,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":610,"9":586,"22":1252},"upgradeStep":1}}}, +{"id":95116,"name":"Longshot Forestcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,936,1403,0,0,0,0,0,608,0,0,633,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":317,"11":330,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"8":564,"11":588,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"8":586,"11":610,"22":1252},"upgradeStep":1}}}, +{"id":95117,"name":"Shadowspike Cloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1403,936,0,624,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"11":325,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":579,"11":579,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":601,"11":601,"22":1252},"upgradeStep":1}}}, +{"id":95118,"name":"Dreamweaver Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1403,936,577,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"6":339,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":536,"6":604,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":556,"6":627,"22":1252},"upgradeStep":1}}}, +{"id":95119,"name":"Thunderbreaker Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1599,0,2519,0,0,0,0,0,889,1192,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"8":444,"9":602,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1478,"2":2338,"8":822,"9":1103,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1538,"2":2427,"8":855,"9":1147,"22":5297},"upgradeStep":1}}}, +{"id":95120,"name":"Legguards of Renewal","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2519,1599,0,0,0,1096,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":552,"11":528,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1478,"7":1015,"11":973,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1538,"7":1055,"11":1011,"22":5297},"upgradeStep":1}}}, +{"id":95121,"name":"Vaultbreaker Greaves","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1599,0,2519,0,0,0,969,0,1145,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"6":486,"8":577,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1478,"2":2338,"6":897,"8":1060,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1538,"2":2427,"6":932,"8":1102,"22":5297},"upgradeStep":1}}}, +{"id":95122,"name":"Wisp-Weave Pantaloons","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2519,1599,1024,0,1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"4":514,"6":560,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1478,"4":947,"6":1030,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1538,"4":985,"6":1070,"22":2190},"upgradeStep":1}}}, +{"id":95123,"name":"Charfire Leggings","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2519,1599,0,1222,836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"5":617,"6":416,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1478,"5":1131,"6":773,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1538,"5":1175,"6":804,"22":2190},"upgradeStep":1}}}, +{"id":95124,"name":"Trousers of Waning Shadow","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2519,1599,0,0,0,1051,0,0,0,1096,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":528,"11":552,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1478,"7":973,"11":1015,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1538,"7":1011,"11":1055,"22":2788},"upgradeStep":1}}}, +{"id":95125,"name":"Legguards of Hidden Knives","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1599,2519,0,0,0,1079,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"6":543,"7":543,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1478,"2":2338,"6":999,"7":999,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1538,"2":2427,"6":1038,"7":1038,"22":2788},"upgradeStep":1}}}, +{"id":95126,"name":"Kilt of Rising Thunder","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2519,1599,0,0,0,1096,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"7":552,"11":528,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1478,"7":1015,"11":973,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1538,"7":1055,"11":1011,"22":3879},"upgradeStep":1}}}, +{"id":95127,"name":"Homeguard Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1599,2519,0,0,1096,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"5":552,"11":528,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1478,"2":2338,"5":1015,"11":973,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1538,"2":2427,"5":1055,"11":1011,"22":3879},"upgradeStep":1}}}, +{"id":95128,"name":"Bonecrusher Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,660,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"8":293,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":613,"8":522,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":636,"8":542,"22":2649},"upgradeStep":1}}}, +{"id":95129,"name":"Axebinder Wristguards","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,0,0,624,624,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":579,"10":579,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":601,"10":601,"22":2649},"upgradeStep":1}}}, +{"id":95130,"name":"Softscar Armplates","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1403,936,488,0,0,0,0,0,0,703,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":254,"11":366,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":453,"11":652,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":470,"11":677,"22":2649},"upgradeStep":1}}}, +{"id":95131,"name":"Powderburn Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,703,0,0,0,0,488,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":366,"11":254,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":652,"11":453,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":677,"11":470,"22":1939},"upgradeStep":1}}}, +{"id":95132,"name":"Spiritcaller Cuffs","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1403,936,562,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":293,"6":344,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":522,"6":613,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":542,"6":636,"22":1939},"upgradeStep":1}}}, +{"id":95133,"name":"Willow-Weave Armbands","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,624,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":325,"7":325,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":579,"7":579,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":601,"7":601,"22":1394},"upgradeStep":1}}}, +{"id":95134,"name":"Hearthfire Armwraps","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1403,936,686,0,0,0,0,0,0,518,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"11":270,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":637,"11":480,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":661,"11":499,"22":1394},"upgradeStep":1}}}, +{"id":95135,"name":"Bracers of Shielding Thought","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,577,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":301,"11":339,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":536,"11":604,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":556,"11":627,"22":1095},"upgradeStep":1}}}, +{"id":95136,"name":"Troll-Burner Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,577,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":536,"11":604,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":556,"11":627,"22":1095},"upgradeStep":1}}}, +{"id":95137,"name":"Seal of the Shado-Pan Assault","icon":"inv_jewelry_ring_166","type":11,"stats":[0,936,1403,0,0,0,532,0,0,0,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"11":353}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":494,"11":629}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":513,"11":653},"upgradeStep":1}}}, +{"id":95138,"name":"Signet of the Shado-Pan Assault","icon":"inv_jewelry_ring_167","type":11,"stats":[0,0,1403,936,0,0,624,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"7":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"7":601},"upgradeStep":1}}}, +{"id":95139,"name":"Ring of the Shado-Pan Assault","icon":"inv_jewelry_ring_167","type":11,"stats":[0,0,1403,936,660,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":613,"7":522}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":636,"7":542},"upgradeStep":1}}}, +{"id":95140,"name":"Band of the Shado-Pan Assault","icon":"inv_jewelry_ring_165","type":11,"stats":[936,0,1403,0,0,0,503,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":262,"7":362}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":467,"7":645}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":485,"7":669},"upgradeStep":1}}}, +{"id":95141,"name":"Loop of the Shado-Pan Assault","icon":"inv_jewelry_ring_165","type":11,"stats":[936,0,1403,0,0,0,0,0,0,562,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":293,"11":344}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":522,"11":613}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":542,"11":636},"upgradeStep":1}}}, +{"id":95142,"name":"Striker's Battletags","icon":"inv_jewelry_necklace_134","type":2,"stats":[936,0,1403,0,0,0,0,660,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":344,"11":293}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":613,"11":522}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":636,"11":542},"upgradeStep":1}}}, +{"id":95143,"name":"Flanker's Battletags","icon":"inv_jewelry_necklace_133","type":2,"stats":[0,936,1403,0,0,562,0,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":293,"7":344}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":522,"7":613}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":542,"7":636},"upgradeStep":1}}}, +{"id":95144,"name":"Vanguard's Battletags","icon":"inv_jewelry_necklace_134","type":2,"stats":[936,0,1403,0,0,651,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":339,"10":301}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":604,"10":536}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":627,"10":556},"upgradeStep":1}}}, +{"id":95145,"name":"Mender's Battletags","icon":"inv_jewelry_necklace_132","type":2,"stats":[0,0,1403,936,518,0,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"6":358}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":480,"6":637}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":499,"6":661},"upgradeStep":1}}}, +{"id":95146,"name":"Destroyer's Battletags","icon":"inv_jewelry_necklace_132","type":2,"stats":[0,0,1403,936,0,651,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":604,"11":536}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":627,"11":556},"upgradeStep":1}}}, +{"id":95147,"name":"Fancifully Frilled Tunic","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2519,1519,1011,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":488,"11":512,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":933,"11":975,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":971,"11":1015,"22":3186},"upgradeStep":1}}}, +{"id":95148,"name":"Vest of the Bordomorono","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,0,875,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":418,"11":554,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":807,"11":1049,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":840,"11":1092,"22":3186},"upgradeStep":1}}}, +{"id":95149,"name":"Gorgoraptor Scale Chest","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,0,1011,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":933,"11":975,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":971,"11":1015,"22":4433},"upgradeStep":1}}}, +{"id":95150,"name":"Mail of the Mosschopper","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1519,1011,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":488,"11":512,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":933,"11":975,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":971,"11":1015,"22":4433},"upgradeStep":1}}}, +{"id":95151,"name":"Scorched Spiritfire Drape","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2519,1519,1011,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":488,"11":512,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":933,"11":975,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":971,"11":1015,"22":6054},"upgradeStep":1}}}, +{"id":95152,"name":"Breastplate of the Iguanocolossus","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1116,0,2519,0,0,0,0,0,902,1121,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":505,"2":1312,"8":432,"9":545,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1024,"2":2338,"8":831,"9":1034,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1069,"2":2427,"8":866,"9":1077,"22":6054},"upgradeStep":1}}}, +{"id":95153,"name":"Tyrant King Battleplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,956,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":460,"8":529,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":882,"8":1005,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":918,"8":1046,"22":6054},"upgradeStep":1}}}, +{"id":95163,"name":"Ring of Shamuru","icon":"inv_jewelry_ring_174","type":11,"stats":[0,0,1403,936,678,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"6":277}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":629,"6":494}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":653,"6":513},"upgradeStep":1}}}, +{"id":95164,"name":"Eye of Oondasta","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,1403,936,0,0,0,577,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":301,"11":339}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":536,"11":604}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":556,"11":627},"upgradeStep":1}}}, +{"id":95165,"name":"Achillobator Ring","icon":"inv_jewelry_ring_161","type":11,"stats":[936,0,1403,0,0,0,0,0,518,0,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":270,"10":358}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"8":480,"10":637}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"8":499,"10":661},"upgradeStep":1}}}, +{"id":95166,"name":"Forzarra's Last Meal","icon":"inv_jewelry_ring_179","type":11,"stats":[0,936,1403,0,0,0,0,0,695,0,0,503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"8":362,"11":262}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"8":645,"11":467}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"8":669,"11":485},"upgradeStep":1}}}, +{"id":95167,"name":"Ring of King Kangrom","icon":"inv_jewelry_ring_173","type":11,"stats":[936,0,1403,0,0,0,711,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":371,"8":247}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":660,"8":440}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":685,"8":457},"upgradeStep":1}}}, +{"id":95177,"name":"Choker of Stygimolochy","icon":"inv_jewelry_necklace_124","type":2,"stats":[0,0,1403,936,608,0,0,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":564,"7":588}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":586,"7":610},"upgradeStep":1}}}, +{"id":95178,"name":"Lootraptor's Amulet","icon":"inv_jewelry_necklace_131","type":2,"stats":[936,0,1403,0,0,0,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":285,"11":349}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"9":508,"11":621}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"9":527,"11":645},"upgradeStep":1}}}, +{"id":95179,"name":"Necklace of the Hazillosaurus","icon":"inv_jewelry_necklace_125","type":2,"stats":[0,936,1403,0,0,0,503,0,0,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":262,"11":362}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":467,"11":645}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":485,"11":669},"upgradeStep":1}}}, +{"id":95180,"name":"Overcompensating Chain of the Alpha Male","icon":"inv_jewelry_necklace_121","type":2,"stats":[936,0,1403,0,0,0,608,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"7":330}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":564,"7":588}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":586,"7":610},"upgradeStep":1}}}, +{"id":95181,"name":"Amulet of the Titanorex","icon":"inv_jewelry_necklace_127","type":2,"stats":[0,0,1403,936,0,651,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"6":301}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":604,"6":536}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":627,"6":556},"upgradeStep":1}}}, +{"id":95182,"name":"Robes of Zalmoxes","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,1011,0,0,0,0,0,0,1056,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":488,"11":512,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":933,"11":975,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":971,"11":1015,"22":2503},"upgradeStep":1}}}, +{"id":95183,"name":"Waistband of Elder Falcarius","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,1137,875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":554,"7":418,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1049,"7":807,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1092,"7":840,"22":2503},"upgradeStep":1}}}, +{"id":95184,"name":"Girdle of Dimorphodontics","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,792,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":732,"7":732,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":761,"7":761,"22":1408},"upgradeStep":1}}}, +{"id":95185,"name":"Terrorful Weave","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,0,886,0,0,0,631,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":442,"11":309,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":819,"11":582,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"7":852,"11":606,"22":1408},"upgradeStep":1}}}, +{"id":95186,"name":"Belt of Crushed Dreams","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,1871,1167,670,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":330,"6":431,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":619,"6":799,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":644,"6":831,"22":1792},"upgradeStep":1}}}, +{"id":95187,"name":"Girdle of the Derrodoccus","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,0,0,804,0,0,771,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":400,"11":382,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"8":743,"11":712,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"8":773,"11":741,"22":1792},"upgradeStep":1}}}, +{"id":95188,"name":"Belt of the Arch Avimimus","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1871,1167,886,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":819,"7":582,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":852,"7":606,"22":2493},"upgradeStep":1}}}, +{"id":95189,"name":"Belt of the Dying Diemetradon","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,0,771,0,804,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":382,"8":400,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":712,"8":743,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":741,"8":773,"22":2493},"upgradeStep":1}}}, +{"id":95190,"name":"Waistband of Furious Stomping","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,0,690,0,0,0,852,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":340,"11":424,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":637,"11":788,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"7":663,"11":819,"22":3405},"upgradeStep":1}}}, +{"id":95191,"name":"Voolar's Bloodied Belt","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,611,897,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":299,"9":448,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":564,"9":830,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":587,"9":863,"22":3405},"upgradeStep":1}}}, +{"id":95192,"name":"Belt of the Tyrannotitan","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,828,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":412,"7":361,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":766,"7":674,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":797,"7":702,"22":3405},"upgradeStep":1}}}, +{"id":95193,"name":"Gloves of Varsoon the Greater","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1247,690,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":359,"11":476,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":640,"11":849,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":665,"11":882,"22":1564},"upgradeStep":1}}}, +{"id":95194,"name":"Gloves of Tyranomancy","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1871,1247,0,844,811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":440,"6":422,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"5":783,"6":752,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"5":813,"6":781,"22":1564},"upgradeStep":1}}}, +{"id":95195,"name":"Gloves of Unliving Fossil","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1871,1247,0,0,0,730,0,0,0,892,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":380,"11":464,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":677,"11":828,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":703,"11":859,"22":1991},"upgradeStep":1}}}, +{"id":95196,"name":"Gloves of Gastric Rumbling","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1247,1871,0,0,0,0,811,0,0,0,844,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":422,"11":440,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"7":752,"11":783,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"7":781,"11":813,"22":1991},"upgradeStep":1}}}, +{"id":95197,"name":"Therapsid Scale Gloves","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1247,1871,0,0,710,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":370,"6":471,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"5":659,"6":839,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"5":684,"6":871,"22":2770},"upgradeStep":1}}}, +{"id":95198,"name":"Vulcanodon Gauntlets","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1247,0,1871,0,0,671,0,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":349,"11":482,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"5":622,"11":859,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"5":646,"11":892,"22":3784},"upgradeStep":1}}}, +{"id":95199,"name":"Carnotaur Battlegloves","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1247,0,1871,0,0,0,0,770,868,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"7":401,"8":452,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"7":714,"8":806,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"7":742,"8":837,"22":3784},"upgradeStep":1}}}, +{"id":95200,"name":"Orndo Mando's Gloves","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1247,0,0,811,844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":422,"7":440,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"6":752,"7":783,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"6":781,"7":813,"22":2770},"upgradeStep":1}}}, +{"id":95201,"name":"Skullsmashing Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1871,1247,0,0,632,948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Oondasta"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":329,"7":494,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"6":586,"7":880,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"6":609,"7":913,"22":3784},"upgradeStep":1}}}, +{"id":95202,"name":"Necklace of the Terra-Cotta Archer","icon":"inv_jewelry_necklace_128","type":2,"stats":[0,856,1403,0,0,0,593,568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":290,"7":277}},"522":{"randPropPoints":1651,"stats":{"1":788,"2":1302,"6":548,"7":524}},"526":{"randPropPoints":1714,"stats":{"1":821,"2":1352,"6":570,"7":546},"upgradeStep":1}}}, +{"id":95203,"name":"Necklace of the Terra-Cotta Invoker","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1403,856,0,611,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"7":261}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"5":564,"7":496}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"5":587,"7":516},"upgradeStep":1}}}, +{"id":95204,"name":"Necklace of the Terra-Cotta Mender","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1403,856,620,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":304,"11":253}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":573,"11":482}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":596,"11":502},"upgradeStep":1}}}, +{"id":95205,"name":"Necklace of the Terra-Cotta Vanquisher","icon":"inv_jewelry_necklace_130","type":2,"stats":[856,0,1403,0,0,629,0,0,0,0,0,507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":309,"11":245}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"5":581,"11":468}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"5":605,"11":487},"upgradeStep":1}}}, +{"id":95206,"name":"Necklace of the Terra-Cotta Protector","icon":"inv_jewelry_necklace_130","type":2,"stats":[856,0,1403,0,0,0,0,0,434,0,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":207,"10":331}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"8":400,"10":620}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"8":417,"10":645},"upgradeStep":1}}}, +{"id":95207,"name":"Abandoned Zandalari Firecord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,670,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":330,"6":431,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":619,"6":799,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"5":644,"6":831,"22":1408},"upgradeStep":1}}}, +{"id":95208,"name":"Abandoned Zandalari Shadowgirdle","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,908,0,0,0,0,0,0,592,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":840,"11":546,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":873,"11":569,"22":1408},"upgradeStep":1}}}, +{"id":95209,"name":"Abandoned Zandalari Silentbelt","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,852,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":424,"7":340,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":788,"7":637,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":819,"7":663,"22":1792},"upgradeStep":1}}}, +{"id":95210,"name":"Abandoned Zandalari Moonstrap","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,1871,1167,0,0,886,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":442,"7":309,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":819,"7":582,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":852,"7":606,"22":1792},"upgradeStep":1}}}, +{"id":95211,"name":"Abandoned Zandalari Arrowlinks","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,690,0,0,0,0,0,852,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":340,"11":424,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":637,"11":788,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"5":663,"11":819,"22":2493},"upgradeStep":1}}}, +{"id":95212,"name":"Abandoned Zandalari Waterchain","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1871,1167,0,0,840,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"7":350,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":777,"7":656,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":808,"7":682,"22":2493},"upgradeStep":1}}}, +{"id":95213,"name":"Abandoned Zandalari Greatbelt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,792,0,0,0,0,792,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"11":393,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":732,"11":732,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":761,"11":761,"22":3405},"upgradeStep":1}}}, +{"id":95214,"name":"Abandoned Zandalari Goreplate","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,771,804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":382,"6":400,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":712,"6":743,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":741,"6":773,"22":3405},"upgradeStep":1}}}, +{"id":95215,"name":"Abandoned Zandalari Bucklebreaker","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,0,670,0,864,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":330,"11":431,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"9":619,"11":799,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"9":644,"11":831,"22":3405},"upgradeStep":1}}}, +{"id":95216,"name":"Vaultwalker Sabatons","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1871,1247,0,0,0,832,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":772,"11":772,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":801,"11":801,"22":4162},"upgradeStep":1}}}, +{"id":95217,"name":"Locksmasher Greaves","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1247,0,1871,0,0,651,0,937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":339,"7":488,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"5":604,"7":870,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"5":627,"7":903,"22":4162},"upgradeStep":1}}}, +{"id":95218,"name":"Columnbreaker Stompers","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1247,0,1871,0,0,0,0,0,811,0,0,844,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":422,"11":440,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1158,"2":1736,"8":752,"11":783,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1202,"2":1803,"8":781,"11":813,"22":4162},"upgradeStep":1}}}, +{"id":95219,"name":"Spiderweb Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1247,1871,0,0,0,926,0,671,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":482,"8":349,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"6":859,"8":622,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"6":892,"8":646,"22":2190},"upgradeStep":1}}}, +{"id":95220,"name":"Scalehide Spurs","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,1247,1871,0,0,0,0,832,832,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":433,"8":433,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1158,"2":1736,"7":772,"8":772,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1202,"2":1803,"7":801,"8":801,"22":3048},"upgradeStep":1}}}, +{"id":95221,"name":"Deeproot Treads","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,1871,1247,880,0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"4":817,"7":696,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"4":848,"7":722,"22":2190},"upgradeStep":1}}}, +{"id":95222,"name":"Spiritbound Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1871,1247,0,0,832,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"6":772,"11":772,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"6":801,"11":801,"22":3048},"upgradeStep":1}}}, +{"id":95223,"name":"Silentflame Sandals","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,1871,1247,0,690,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":359,"11":476,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"5":640,"11":849,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"5":665,"11":882,"22":1721},"upgradeStep":1}}}, +{"id":95224,"name":"Home-Warding Slippers","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1871,1247,0,0,0,790,0,0,0,856,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":412,"11":446,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1158,"7":733,"11":795,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1202,"7":761,"11":825,"22":1721},"upgradeStep":1}}}, +{"id":95225,"name":"Breastplate of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,862,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"7":791,"8":994,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"7":826,"8":1037,"22":6054},"upgradeStep":1}}}, +{"id":95226,"name":"Gauntlets of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,844,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":780,"6":645,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":811,"6":671,"22":3784},"upgradeStep":1}}}, +{"id":95227,"name":"Helmet of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,1056,0,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"5":975,"7":853,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"5":1015,"7":891,"22":4919},"upgradeStep":1}}}, +{"id":95228,"name":"Greaves of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1097,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"6":1009,"11":847,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"6":1052,"11":880,"22":5297},"upgradeStep":1}}}, +{"id":95229,"name":"Pauldrons of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,0,0,0,650,0,0,812,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"8":597,"11":748,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"8":623,"11":779,"22":4540},"upgradeStep":1}}}, +{"id":95230,"name":"Chestguard of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,971,1016,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"9":893,"10":935,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"9":931,"10":975,"22":6054},"upgradeStep":1}}}, +{"id":95231,"name":"Handguards of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,584,916,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":538,"9":848,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":561,"9":881,"22":3784},"upgradeStep":1}}}, +{"id":95232,"name":"Faceguard of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,691,0,0,1196,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"8":629,"11":1104,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"8":659,"11":1149,"22":4919},"upgradeStep":1}}}, +{"id":95233,"name":"Legguards of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,809,0,0,0,0,1192,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":742,"10":1103,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":775,"10":1147,"22":5297},"upgradeStep":1}}}, +{"id":95234,"name":"Shoulderguards of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,752,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"5":692,"11":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"5":721,"11":721,"22":4540},"upgradeStep":1}}}, +{"id":95235,"name":"Raiment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1016,0,0,971,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"8":935,"11":893,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"8":975,"11":931,"22":3186},"upgradeStep":1}}}, +{"id":95236,"name":"Grips of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,1167,1871,0,0,0,808,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":747,"8":701,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":777,"8":729,"22":1991},"upgradeStep":1}}}, +{"id":95237,"name":"Headpiece of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,999,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"5":919,"7":919,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"5":958,"7":958,"22":2588},"upgradeStep":1}}}, +{"id":95238,"name":"Legguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,0,1051,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":973,"11":935,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1011,"11":975,"22":2788},"upgradeStep":1}}}, +{"id":95239,"name":"Spaulders of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,1087,1871,0,0,670,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":616,"6":737,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":642,"6":768,"22":2389},"upgradeStep":1}}}, +{"id":95240,"name":"Handwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1871,1167,836,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":774,"7":666,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":805,"7":694,"22":1991},"upgradeStep":1}}}, +{"id":95241,"name":"Helm of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2519,1439,1065,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":980,"11":817,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1022,"11":852,"22":2588},"upgradeStep":1}}}, +{"id":95242,"name":"Legwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2519,1519,1033,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":950,"7":947,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":990,"7":985,"22":2788},"upgradeStep":1}}}, +{"id":95243,"name":"Robes of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2519,1439,0,0,999,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":919,"7":919,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":958,"7":958,"22":3186},"upgradeStep":1}}}, +{"id":95244,"name":"Mantle of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":2389},"upgradeStep":1}}}, +{"id":95245,"name":"Gloves of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1871,1167,0,0,758,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":701,"11":747,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":729,"11":777,"22":1991},"upgradeStep":1}}}, +{"id":95246,"name":"Cover of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2519,1439,1033,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":950,"7":867,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":990,"7":905,"22":2588},"upgradeStep":1}}}, +{"id":95247,"name":"Leggings of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,1145,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1060,"7":817,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1102,"7":852,"22":2788},"upgradeStep":1}}}, +{"id":95248,"name":"Vestment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2519,1439,916,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":842,"11":965,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":878,"11":1006,"22":3186},"upgradeStep":1}}}, +{"id":95249,"name":"Shoulderwraps of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1871,1087,0,0,710,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"6":653,"7":715,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"6":681,"7":745,"22":2389},"upgradeStep":1}}}, +{"id":95250,"name":"Tunic of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1439,2519,0,0,0,1033,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":950,"8":867,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":990,"8":905,"22":3186},"upgradeStep":1}}}, +{"id":95251,"name":"Handguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,1167,1871,0,0,0,0,800,784,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":740,"8":724,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":769,"8":753,"22":1991},"upgradeStep":1}}}, +{"id":95252,"name":"Headguard of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,1016,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":935,"11":893,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":975,"11":931,"22":2588},"upgradeStep":1}}}, +{"id":95253,"name":"Breeches of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1519,2519,0,0,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":919,"7":999,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":958,"7":1038,"22":2788},"upgradeStep":1}}}, +{"id":95254,"name":"Shoulderguards of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,1087,1871,0,0,571,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":524,"6":790,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":547,"6":823,"22":2389},"upgradeStep":1}}}, +{"id":95255,"name":"Saurok Stalker's Tunic","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1016,0,0,971,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"8":935,"11":893,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"8":975,"11":931,"22":4433},"upgradeStep":1}}}, +{"id":95256,"name":"Saurok Stalker's Gloves","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,0,808,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":747,"8":701,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":777,"8":729,"22":2770},"upgradeStep":1}}}, +{"id":95257,"name":"Saurok Stalker's Headguard","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,999,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"5":919,"7":919,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"5":958,"7":958,"22":3602},"upgradeStep":1}}}, +{"id":95258,"name":"Saurok Stalker's Legguards","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,0,1051,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":973,"11":935,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1011,"11":975,"22":3879},"upgradeStep":1}}}, +{"id":95259,"name":"Saurok Stalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1087,1871,0,0,670,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":616,"6":737,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":642,"6":768,"22":3325},"upgradeStep":1}}}, +{"id":95260,"name":"Gloves of the Chromatic Hydra","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,0,758,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":701,"11":747,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":729,"11":777,"22":1564},"upgradeStep":1}}}, +{"id":95261,"name":"Hood of the Chromatic Hydra","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,1033,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":950,"7":867,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":990,"7":905,"22":2034},"upgradeStep":1}}}, +{"id":95262,"name":"Leggings of the Chromatic Hydra","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,1145,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1060,"7":817,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1102,"7":852,"22":2190},"upgradeStep":1}}}, +{"id":95263,"name":"Robes of the Chromatic Hydra","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2519,1439,0,916,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":842,"11":965,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":878,"11":1006,"22":2503},"upgradeStep":1}}}, +{"id":95264,"name":"Mantle of the Chromatic Hydra","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1871,1087,0,0,710,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"6":653,"7":715,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"6":681,"7":745,"22":1877},"upgradeStep":1}}}, +{"id":95265,"name":"Fire-Charm Tunic","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1016,0,0,971,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"8":935,"11":893,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"8":975,"11":931,"22":3186},"upgradeStep":1}}}, +{"id":95266,"name":"Fire-Charm Grips","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,0,808,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":747,"8":701,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":777,"8":729,"22":1991},"upgradeStep":1}}}, +{"id":95267,"name":"Fire-Charm Headpiece","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,999,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"5":919,"7":919,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"5":958,"7":958,"22":2588},"upgradeStep":1}}}, +{"id":95268,"name":"Fire-Charm Leggings","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,0,1051,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":973,"11":935,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1011,"11":975,"22":2788},"upgradeStep":1}}}, +{"id":95269,"name":"Fire-Charm Spaulders","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1087,1871,0,0,670,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":616,"6":737,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":642,"6":768,"22":2389},"upgradeStep":1}}}, +{"id":95270,"name":"Fire-Charm Handwraps","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1871,1167,836,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":774,"7":666,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":805,"7":694,"22":1991},"upgradeStep":1}}}, +{"id":95271,"name":"Fire-Charm Helm","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2519,1439,1065,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":980,"11":817,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1022,"11":852,"22":2588},"upgradeStep":1}}}, +{"id":95272,"name":"Fire-Charm Legwraps","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2519,1519,1033,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":950,"7":947,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":990,"7":985,"22":2788},"upgradeStep":1}}}, +{"id":95273,"name":"Fire-Charm Vest","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2519,1439,0,0,999,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":919,"7":919,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":958,"7":958,"22":3186},"upgradeStep":1}}}, +{"id":95274,"name":"Fire-Charm Mantle","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":2389},"upgradeStep":1}}}, +{"id":95275,"name":"Fire-Charm Chestguard","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1439,2519,0,0,0,1033,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":950,"8":867,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":990,"8":905,"22":3186},"upgradeStep":1}}}, +{"id":95276,"name":"Fire-Charm Gauntlets","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,0,0,800,784,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":740,"8":724,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"7":769,"8":753,"22":1991},"upgradeStep":1}}}, +{"id":95277,"name":"Fire-Charm Crown","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,1016,0,0,0,0,971,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"6":935,"11":893,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"6":975,"11":931,"22":2588},"upgradeStep":1}}}, +{"id":95278,"name":"Fire-Charm Legguards","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"5":919,"7":999,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"5":958,"7":1038,"22":2788},"upgradeStep":1}}}, +{"id":95279,"name":"Fire-Charm Shoulderguards","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1087,1871,0,0,571,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":524,"6":790,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":547,"6":823,"22":2389},"upgradeStep":1}}}, +{"id":95280,"name":"Lightning Emperor's Battleplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,862,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"7":791,"8":994,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"7":826,"8":1037,"22":6054},"upgradeStep":1}}}, +{"id":95281,"name":"Lightning Emperor's Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,844,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":780,"6":645,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":811,"6":671,"22":3784},"upgradeStep":1}}}, +{"id":95282,"name":"Lightning Emperor's Helmet","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,1056,0,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"5":975,"7":853,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"5":1015,"7":891,"22":4919},"upgradeStep":1}}}, +{"id":95283,"name":"Lightning Emperor's Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1097,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"6":1009,"11":847,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"6":1052,"11":880,"22":5297},"upgradeStep":1}}}, +{"id":95284,"name":"Lightning Emperor's Pauldrons","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,0,0,0,650,0,0,812,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"8":597,"11":748,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"8":623,"11":779,"22":4540},"upgradeStep":1}}}, +{"id":95285,"name":"Lightning Emperor's Breastplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2519,1439,0,0,999,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":919,"7":919,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":958,"7":958,"22":6054},"upgradeStep":1}}}, +{"id":95286,"name":"Lightning Emperor's Gloves","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1871,1167,836,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":774,"7":666,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":805,"7":694,"22":3784},"upgradeStep":1}}}, +{"id":95287,"name":"Lightning Emperor's Headguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2519,1439,1065,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":980,"11":817,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1022,"11":852,"22":4919},"upgradeStep":1}}}, +{"id":95288,"name":"Lightning Emperor's Greaves","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2519,1519,1033,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":950,"7":947,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":990,"7":985,"22":5297},"upgradeStep":1}}}, +{"id":95289,"name":"Lightning Emperor's Mantle","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":4540},"upgradeStep":1}}}, +{"id":95290,"name":"Lightning Emperor's Chestguard","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,971,1016,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"9":893,"10":935,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"9":931,"10":975,"22":6054},"upgradeStep":1}}}, +{"id":95291,"name":"Lightning Emperor's Handguards","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,584,916,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":538,"9":848,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":561,"9":881,"22":3784},"upgradeStep":1}}}, +{"id":95292,"name":"Lightning Emperor's Faceguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,691,0,0,1196,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"8":629,"11":1104,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"8":659,"11":1149,"22":4919},"upgradeStep":1}}}, +{"id":95293,"name":"Lightning Emperor's Legguards","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,809,0,0,0,0,1192,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":742,"10":1103,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":775,"10":1147,"22":5297},"upgradeStep":1}}}, +{"id":95294,"name":"Lightning Emperor's Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,752,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"5":692,"11":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"5":721,"11":721,"22":4540},"upgradeStep":1}}}, +{"id":95295,"name":"Handwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,836,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":774,"7":666,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":805,"7":694,"22":1564},"upgradeStep":1}}}, +{"id":95296,"name":"Cowl of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,1065,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":980,"11":817,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1022,"11":852,"22":2034},"upgradeStep":1}}}, +{"id":95297,"name":"Legwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,1033,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":950,"7":947,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":990,"7":985,"22":2190},"upgradeStep":1}}}, +{"id":95298,"name":"Robes of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1439,0,0,999,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":919,"7":919,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":958,"7":958,"22":2503},"upgradeStep":1}}}, +{"id":95299,"name":"Mantle of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":1877},"upgradeStep":1}}}, +{"id":95300,"name":"Gloves of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,0,0,758,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":701,"11":747,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":729,"11":777,"22":1564},"upgradeStep":1}}}, +{"id":95301,"name":"Hood of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,1033,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":950,"7":867,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":990,"7":905,"22":2034},"upgradeStep":1}}}, +{"id":95302,"name":"Leggings of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,1145,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1060,"7":817,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1102,"7":852,"22":2190},"upgradeStep":1}}}, +{"id":95303,"name":"Raiment of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2519,1439,916,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":842,"11":965,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":878,"11":1006,"22":2503},"upgradeStep":1}}}, +{"id":95304,"name":"Shoulderguards of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1087,0,0,710,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"6":653,"7":715,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"6":681,"7":745,"22":1877},"upgradeStep":1}}}, +{"id":95305,"name":"Nine-Tailed Tunic","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1016,0,0,971,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"8":935,"11":893,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"8":975,"11":931,"22":3186},"upgradeStep":1}}}, +{"id":95306,"name":"Nine-Tailed Gloves","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,0,808,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":747,"8":701,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":777,"8":729,"22":1991},"upgradeStep":1}}}, +{"id":95307,"name":"Nine-Tailed Helmet","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,999,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"5":919,"7":919,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"5":958,"7":958,"22":2588},"upgradeStep":1}}}, +{"id":95308,"name":"Nine-Tailed Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,0,1051,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":973,"11":935,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1011,"11":975,"22":2788},"upgradeStep":1}}}, +{"id":95309,"name":"Nine-Tailed Spaulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1087,1871,0,0,670,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":616,"6":737,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":642,"6":768,"22":2389},"upgradeStep":1}}}, +{"id":95310,"name":"Tunic of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1439,0,0,999,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"6":919,"7":919,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"6":958,"7":958,"22":4433},"upgradeStep":1}}}, +{"id":95311,"name":"Handwraps of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1167,836,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":774,"7":666,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"4":805,"7":694,"22":2770},"upgradeStep":1}}}, +{"id":95312,"name":"Faceguard of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2519,1439,1065,0,0,0,0,0,0,889,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":980,"11":817,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":1022,"11":852,"22":3602},"upgradeStep":1}}}, +{"id":95313,"name":"Legwraps of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2519,1519,1033,0,0,1024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"4":950,"7":947,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"4":990,"7":985,"22":3879},"upgradeStep":1}}}, +{"id":95314,"name":"Mantle of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1871,1087,764,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"4":703,"11":672,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"4":733,"11":701,"22":3325},"upgradeStep":1}}}, +{"id":95315,"name":"Cuirass of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1016,0,0,971,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"8":935,"11":893,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"8":975,"11":931,"22":4433},"upgradeStep":1}}}, +{"id":95316,"name":"Grips of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,0,808,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":747,"8":701,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":777,"8":729,"22":2770},"upgradeStep":1}}}, +{"id":95317,"name":"Helmet of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,999,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2338,"5":919,"7":919,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2427,"5":958,"7":958,"22":3602},"upgradeStep":1}}}, +{"id":95318,"name":"Legguards of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,0,1051,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2338,"7":973,"11":935,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2427,"7":1011,"11":975,"22":3879},"upgradeStep":1}}}, +{"id":95319,"name":"Spaulders of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1087,1871,0,0,670,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":998,"2":1736,"5":616,"6":737,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1042,"2":1803,"5":642,"6":768,"22":3325},"upgradeStep":1}}}, +{"id":95320,"name":"Hauberk of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2519,1439,916,0,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":842,"11":965,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":878,"11":1006,"22":4433},"upgradeStep":1}}}, +{"id":95321,"name":"Gloves of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1871,1167,0,0,758,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":701,"11":747,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":729,"11":777,"22":2770},"upgradeStep":1}}}, +{"id":95322,"name":"Headpiece of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2519,1439,1033,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"4":950,"7":867,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"4":990,"7":905,"22":3602},"upgradeStep":1}}}, +{"id":95323,"name":"Kilt of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,1145,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1060,"7":817,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1102,"7":852,"22":3879},"upgradeStep":1}}}, +{"id":95324,"name":"Shoulderwraps of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1871,1087,0,0,710,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"6":653,"7":715,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"6":681,"7":745,"22":3325},"upgradeStep":1}}}, +{"id":95325,"name":"Gloves of the Thousandfold Hells","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,0,758,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":701,"11":747,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":729,"11":777,"22":1564},"upgradeStep":1}}}, +{"id":95326,"name":"Hood of the Thousandfold Hells","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,1033,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":950,"7":867,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":990,"7":905,"22":2034},"upgradeStep":1}}}, +{"id":95327,"name":"Leggings of the Thousandfold Hells","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,1145,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1398,"6":1060,"7":817,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1458,"6":1102,"7":852,"22":2190},"upgradeStep":1}}}, +{"id":95328,"name":"Robes of the Thousandfold Hells","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2519,1439,0,916,0,0,0,0,0,1049,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2338,"3":1318,"5":842,"11":965,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2427,"3":1378,"5":878,"11":1006,"22":2503},"upgradeStep":1}}}, +{"id":95329,"name":"Mantle of the Thousandfold Hells","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1871,1087,0,0,710,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":998,"6":653,"7":715,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1042,"6":681,"7":745,"22":1877},"upgradeStep":1}}}, +{"id":95330,"name":"Helmet of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,1056,0,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"5":975,"7":853,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"5":1015,"7":891,"22":4919},"upgradeStep":1}}}, +{"id":95331,"name":"Battleplate of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,862,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"7":791,"8":994,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"7":826,"8":1037,"22":6054},"upgradeStep":1}}}, +{"id":95332,"name":"Gauntlets of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,844,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":780,"6":645,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":811,"6":671,"22":3784},"upgradeStep":1}}}, +{"id":95333,"name":"Legplates of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1097,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"6":1009,"11":847,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"6":1052,"11":880,"22":5297},"upgradeStep":1}}}, +{"id":95334,"name":"Pauldrons of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,0,0,0,650,0,0,812,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"8":597,"11":748,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"8":623,"11":779,"22":4540},"upgradeStep":1}}}, +{"id":95335,"name":"Chestguard of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,0,971,1016,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"9":893,"10":935,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"9":931,"10":975,"22":6054},"upgradeStep":1}}}, +{"id":95336,"name":"Handguards of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,0,0,0,584,916,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"8":538,"9":848,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"8":561,"9":881,"22":3784},"upgradeStep":1}}}, +{"id":95337,"name":"Faceguard of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,691,0,0,1196,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"8":629,"11":1104,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"8":659,"11":1149,"22":4919},"upgradeStep":1}}}, +{"id":95338,"name":"Legguards of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,809,0,0,0,0,1192,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"sources":[{"drop":{"otherName":"Nalak, The Storm Lord"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2338,"5":742,"10":1103,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2427,"5":775,"10":1147,"22":5297},"upgradeStep":1}}}, +{"id":95339,"name":"Shoulderguards of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1087,0,1871,0,0,752,0,0,0,0,0,752,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":998,"2":1736,"5":692,"11":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1042,"2":1803,"5":721,"11":721,"22":4540},"upgradeStep":1}}}, +{"id":95391,"name":"Mantid Sky Reaver","icon":"inv_sword_1h_mantidarch_c_01","type":13,"weaponType":9,"handType":2,"stats":[448,0,671,0,0,0,0,298,0,0,0,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":851,"weaponDamageMin":5147,"weaponDamageMax":9560,"weaponSpeed":2.6,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"7":250,"11":250}},"463":{"randPropPoints":733,"weaponDamageMin":4434,"weaponDamageMax":8236,"stats":{"0":385,"2":578,"7":257,"11":257}},"471":{"randPropPoints":790,"weaponDamageMin":4777,"weaponDamageMax":8873,"stats":{"0":415,"2":623,"7":277,"11":277},"upgradeStep":1}}}, +{"id":95392,"name":"Sonic Pulse Generator","icon":"inv_firearm_2h_rifle_archaeology_d_01","type":14,"rangedWeaponType":3,"stats":[0,1044,1566,0,0,0,0,696,0,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"weaponDamageMin":7741,"weaponDamageMax":14377,"weaponSpeed":2.9,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6485,"weaponDamageMax":12045,"stats":{"1":875,"2":1312,"7":583,"11":583}},"463":{"randPropPoints":1710,"weaponDamageMin":6669,"weaponDamageMax":12386,"stats":{"1":899,"2":1349,"7":600,"11":600}},"471":{"randPropPoints":1843,"weaponDamageMin":7185,"weaponDamageMax":13345,"stats":{"1":969,"2":1454,"7":646,"11":646},"upgradeStep":1}}}, +{"id":95425,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,902,633,422,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":695,"3":488,"4":325,"7":325,"22":1007}},"480":{"randPropPoints":1116,"stats":{"2":836,"3":587,"4":391,"7":391,"22":1081}},"484":{"randPropPoints":1159,"stats":{"2":869,"3":610,"4":406,"7":406,"22":1096},"upgradeStep":1}}}, +{"id":95426,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,2461,0,0,0,729,729,0,0,0,0,0,0,6503,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2159,"weaponDamageMin":5308,"weaponDamageMax":7963,"weaponSpeed":3.2,"ilvl":480,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4089,"weaponDamageMax":6134,"stats":{"2":1896,"6":562,"7":562,"14":5009}},"480":{"randPropPoints":2004,"weaponDamageMin":4927,"weaponDamageMax":7391,"stats":{"2":2285,"6":677,"7":677,"14":6036}},"484":{"randPropPoints":2080,"weaponDamageMin":5114,"weaponDamageMax":7671,"stats":{"2":2371,"6":702,"7":702,"14":6265},"upgradeStep":1}}}, +{"id":95427,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[635,0,947,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,1111,1326,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":489,"2":730,"9":387,"22":1007,"23":1022}},"480":{"randPropPoints":1116,"stats":{"0":589,"2":879,"9":466,"22":1081,"23":1230}},"484":{"randPropPoints":1159,"stats":{"0":611,"2":913,"9":484,"22":1096,"23":1278},"upgradeStep":1}}}, +{"id":95428,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,902,633,0,0,422,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":695,"3":488,"6":325,"7":325,"22":1007}},"480":{"randPropPoints":1116,"stats":{"2":836,"3":587,"6":391,"7":391,"22":1081}},"484":{"randPropPoints":1159,"stats":{"2":869,"3":610,"6":406,"7":406,"22":1096},"upgradeStep":1}}}, +{"id":95429,"name":"The Frost Lord's Battle Shroud","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[633,0,949,0,0,0,422,0,422,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"6":325,"8":325,"22":1007}},"480":{"randPropPoints":1116,"stats":{"0":587,"2":880,"6":391,"8":391,"22":1081}},"484":{"randPropPoints":1159,"stats":{"0":609,"2":914,"6":406,"8":406,"22":1096},"upgradeStep":1}}}, +{"id":95430,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,633,949,0,0,0,481,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1203,"ilvl":480,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":371,"7":247,"22":1007}},"480":{"randPropPoints":1116,"stats":{"1":587,"2":880,"6":446,"7":297,"22":1081}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":914,"6":463,"7":309,"22":1096},"upgradeStep":1}}}, +{"id":95472,"name":"Ultimate Protection of the Emperor","icon":"inv_shield_mogu_c_01","type":13,"weaponType":7,"handType":3,"stats":[856,0,1403,0,0,0,0,0,0,0,605,531,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":285,"11":269,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"10":557,"11":492,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"10":581,"11":511,"22":19418},"upgradeStep":1}}}, +{"id":95473,"name":"Lei Shen's Orb of Command","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,856,0,0,638,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":313,"7":237}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"6":589,"7":454}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"6":613,"7":473},"upgradeStep":1}}}, +{"id":95498,"name":"Bo-Ris, Horror in the Night","icon":"inv_polearm_2h_mogu_c_01","type":13,"weaponType":6,"handType":4,"stats":[1599,0,2519,0,0,0,0,0,945,0,0,1169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":462,"11":601}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1478,"2":2338,"8":873,"11":1084}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1538,"2":2427,"8":908,"11":1126},"upgradeStep":1}}}, +{"id":95499,"name":"Invocation of the Dawn","icon":"inv_mace_2h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,2519,1679,0,0,1036,0,0,0,0,1169,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":8832,"weaponDamageMax":13248,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4600,"weaponDamageMax":6901,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":8197,"weaponDamageMax":12297,"stats":{"2":2338,"3":1558,"6":962,"11":1085,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":8509,"weaponDamageMax":12764,"stats":{"2":2427,"3":1618,"6":998,"11":1126,"14":9265},"upgradeStep":1}}}, +{"id":95500,"name":"Jerthud, Graceful Hand of the Savior","icon":"inv_mace_1h_zandalari_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,1079,639,336,0,0,0,0,0,0,500,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3821,"weaponDamageMax":7096,"weaponSpeed":2.4,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3546,"weaponDamageMax":6587,"stats":{"2":1002,"3":588,"4":309,"11":462,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3681,"weaponDamageMax":6837,"stats":{"2":1040,"3":613,"4":322,"11":481,"14":9263},"upgradeStep":1}}}, +{"id":95501,"name":"Fyn's Flickering Dagger","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,719,999,0,0,0,0,475,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":5731,"weaponDamageMax":10645,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":482,"7":228,"8":179}},"522":{"randPropPoints":1270,"weaponDamageMin":5320,"weaponDamageMax":9880,"stats":{"1":668,"2":922,"7":438,"8":351}},"526":{"randPropPoints":1318,"weaponDamageMin":5522,"weaponDamageMax":10255,"stats":{"1":693,"2":960,"7":456,"8":365},"upgradeStep":1}}}, +{"id":95502,"name":"Do-tharak, the Swordbreaker","icon":"inv_sword_1h_mogu_c_01","type":13,"weaponType":9,"handType":2,"stats":[639,0,1079,0,0,347,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":162,"11":238}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":588,"2":1002,"5":319,"11":456}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":613,"2":1040,"5":333,"11":475},"upgradeStep":1}}}, +{"id":95503,"name":"Miracoran, the Vehement Chord","icon":"inv_bow_1h_zandalari_c_01","type":14,"rangedWeaponType":1,"stats":[0,1599,2519,0,0,0,0,863,0,0,0,1207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":12880,"weaponDamageMax":23921,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":430,"11":609}},"522":{"randPropPoints":2963,"weaponDamageMin":11955,"weaponDamageMax":22203,"stats":{"1":1478,"2":2338,"7":798,"11":1117}},"526":{"randPropPoints":3076,"weaponDamageMin":12409,"weaponDamageMax":23046,"stats":{"1":1538,"2":2427,"7":830,"11":1161},"upgradeStep":1}}}, +{"id":95504,"name":"Zeeg's Ancient Kegsmasher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,639,1079,0,0,0,0,0,494,0,0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":7642,"weaponDamageMax":14193,"weaponSpeed":2.4,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"1":295,"2":562,"8":238,"11":162}},"522":{"randPropPoints":1270,"weaponDamageMin":7093,"weaponDamageMax":13173,"stats":{"1":588,"2":1002,"8":456,"11":319}},"526":{"randPropPoints":1318,"weaponDamageMin":7362,"weaponDamageMax":13674,"stats":{"1":613,"2":1040,"8":475,"11":333},"upgradeStep":1}}}, +{"id":95505,"name":"Greatsword of Frozen Hells","icon":"inv_sword_2h_mogu_c_01","type":13,"weaponType":9,"handType":4,"stats":[1599,0,2519,0,0,0,1020,1105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1478,"2":2338,"6":946,"7":1021}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1538,"2":2427,"6":982,"7":1062},"upgradeStep":1}}}, +{"id":95506,"name":"Nadagast's Exsanguinator","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,639,0,447,428,0,0,0,0,0,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2865,"weaponDamageMax":5322,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2660,"weaponDamageMax":4940,"stats":{"2":1002,"3":588,"5":412,"6":394,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2761,"weaponDamageMax":5128,"stats":{"2":1040,"3":613,"5":429,"6":410,"14":9263},"upgradeStep":1}}}, +{"id":95507,"name":"Darkwood Spiritstaff","icon":"inv_staff_2h_zandalari_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,1599,2519,0,0,0,966,0,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":16192,"weaponDamageMax":24289,"weaponSpeed":3.3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":496,"11":561}},"522":{"randPropPoints":2963,"weaponDamageMin":15029,"weaponDamageMax":22544,"stats":{"1":1478,"2":2338,"6":895,"11":1050}},"526":{"randPropPoints":3076,"weaponDamageMin":15600,"weaponDamageMax":23400,"stats":{"1":1538,"2":2427,"6":930,"11":1093},"upgradeStep":1}}}, +{"id":95510,"name":"Sign of the Bloodied God","icon":"inv_jewelry_ring_163","type":11,"stats":[0,936,1403,0,0,0,0,624,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":601,"11":601},"upgradeStep":1}}}, +{"id":95511,"name":"Durumu's Severed Tentacle","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[856,0,1403,0,0,578,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":271,"9":293}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"5":532,"9":534}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"5":555,"9":555},"upgradeStep":1}}}, +{"id":95512,"name":"Ro'shak's Remembrance","icon":"inv_jewelry_ring_168","type":11,"stats":[0,0,1403,856,0,0,670,0,0,0,0,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":342,"11":206}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"6":621,"11":416}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"6":645,"11":435},"upgradeStep":1}}}, +{"id":95513,"name":"Band of the Scaled Tyrant","icon":"inv_jewelry_ring_177","type":11,"stats":[856,0,1403,0,0,516,0,614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":261,"7":289}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"5":478,"7":565}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"5":497,"7":589},"upgradeStep":1}}}, +{"id":95514,"name":"Petrified Eye of the Basilisk","icon":"inv_jewelry_ring_178","type":11,"stats":[0,0,1403,936,711,0,0,0,0,0,0,474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"11":247}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":660,"11":440}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":685,"11":457},"upgradeStep":1}}}, +{"id":95515,"name":"Shield of Twinned Despair","icon":"inv_shield_zandalari_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,856,679,0,0,0,0,0,0,439,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":346,"11":198,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":788,"4":629,"11":403,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":821,"4":653,"11":421,"22":19418},"upgradeStep":1}}}, +{"id":95516,"name":"Visage of the Doomed","icon":"inv_shield_zandalari_c_02","type":13,"weaponType":7,"handType":3,"stats":[856,0,1403,0,0,0,0,0,0,487,631,0,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":246,"10":298,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":788,"2":1302,"9":451,"10":581,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":821,"2":1352,"9":469,"10":605,"22":19418},"upgradeStep":1}}}, +{"id":95517,"name":"Shan'ze Scholar's Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,573,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":532,"7":453,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":553,"7":471,"22":1216},"upgradeStep":1}}}, +{"id":95518,"name":"Pain-Binder Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,0,542,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":433,"7":433,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"5":503,"7":503,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"5":522,"7":522,"22":1216},"upgradeStep":1}}}, +{"id":95519,"name":"Skumblade-Tooth Girdle","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,813,1219,0,0,528,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":422,"7":440,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"5":490,"7":510,"22":1527}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"5":509,"7":530,"22":1548},"upgradeStep":1}}}, +{"id":95520,"name":"Girdle of Shan'ze Glory","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1219,813,566,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"11":401,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":525,"11":465,"22":2902}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":545,"11":483,"22":2942},"upgradeStep":1}}}, +{"id":95521,"name":"Cinch of the Dead Forest's Vigil","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1219,813,610,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":488,"11":339,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":567,"11":394,"22":1527}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":588,"11":409,"22":1548},"upgradeStep":1}}}, +{"id":95522,"name":"Rotting Bog Cinch","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,813,1219,0,0,449,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":359,"8":476,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"5":417,"8":553,"22":2125}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"5":433,"8":574,"22":2154},"upgradeStep":1}}}, +{"id":95523,"name":"Belt of Loa Charms","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,0,0,596,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":476,"7":359,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"6":553,"7":417,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"6":574,"7":433,"22":1216},"upgradeStep":1}}}, +{"id":95524,"name":"Thunder Caressed Waistguard","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[813,0,1219,0,0,0,0,0,550,0,0,528,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":440,"11":422,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":754,"2":1131,"8":510,"11":490,"22":2902}},"480":{"randPropPoints":1489,"stats":{"0":783,"2":1175,"8":530,"11":509,"22":2942},"upgradeStep":1}}}, +{"id":95525,"name":"Skumblade Ritualist Links","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1219,813,566,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"7":401,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":525,"7":465,"22":2125}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":545,"7":483,"22":2154},"upgradeStep":1}}}, +{"id":95526,"name":"Shan'ze Scholar's Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,573,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":532,"7":453,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":553,"7":471,"22":1216},"upgradeStep":1}}}, +{"id":95527,"name":"Pain-Binder Girdle","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,0,542,0,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":433,"7":433,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"5":503,"7":503,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"5":522,"7":522,"22":1216},"upgradeStep":1}}}, +{"id":95528,"name":"Skumblade-Tooth Girdle","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,813,1219,0,0,528,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":422,"7":440,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"5":490,"7":510,"22":1527}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"5":509,"7":530,"22":1548},"upgradeStep":1}}}, +{"id":95529,"name":"Girdle of Shan'ze Glory","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1219,813,566,0,0,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"11":401,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":525,"11":465,"22":2902}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":545,"11":483,"22":2942},"upgradeStep":1}}}, +{"id":95530,"name":"Cinch of the Dead Forest's Vigil","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1219,813,610,0,0,0,0,0,0,424,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":488,"11":339,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":567,"11":394,"22":1527}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":588,"11":409,"22":1548},"upgradeStep":1}}}, +{"id":95531,"name":"Rotting Bog Cinch","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,813,1219,0,0,449,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":359,"8":476,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":754,"2":1131,"5":417,"8":553,"22":2125}},"480":{"randPropPoints":1489,"stats":{"1":783,"2":1175,"5":433,"8":574,"22":2154},"upgradeStep":1}}}, +{"id":95532,"name":"Belt of Loa Charms","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1219,813,0,0,596,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":476,"7":359,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"6":553,"7":417,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"6":574,"7":433,"22":1216},"upgradeStep":1}}}, +{"id":95533,"name":"Thunder Caressed Waistguard","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[813,0,1219,0,0,0,0,0,550,0,0,528,0,0,0,0,0,0,0,0,0,0,2982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":440,"11":422,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":754,"2":1131,"8":510,"11":490,"22":2902}},"480":{"randPropPoints":1489,"stats":{"0":783,"2":1175,"8":530,"11":509,"22":2942},"upgradeStep":1}}}, +{"id":95534,"name":"Skumblade Ritualist Links","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1219,813,566,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":452,"7":401,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1131,"3":754,"4":525,"7":465,"22":2125}},"480":{"randPropPoints":1489,"stats":{"2":1175,"3":783,"4":545,"7":483,"22":2154},"upgradeStep":1}}}, +{"id":95535,"name":"Legplates of the Lightning Throne","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1439,0,2519,0,0,0,1164,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":553,"7":315,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2338,"6":1072,"7":661,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2427,"6":1117,"7":691,"22":5297},"upgradeStep":1}}}, +{"id":95624,"name":"Sign of the Bloodied God","icon":"inv_jewelry_ring_163","type":11,"stats":[0,776,1164,0,0,0,0,517,0,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"7":480,"11":480}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"7":499,"11":499},"upgradeStep":1}}}, +{"id":95625,"name":"Renataki's Soul Charm","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"502":{"randPropPoints":1827,"stats":{"8":1218}},"506":{"randPropPoints":1897,"stats":{"8":1265},"upgradeStep":1}}}, +{"id":95626,"name":"Lightning-Eye Hood","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,0,0,780,0,0,0,810,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":460,"11":449,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"7":719,"11":741,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"7":749,"11":775,"22":2435},"upgradeStep":1}}}, +{"id":95627,"name":"Spearman's Jingling Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1234,2091,0,0,0,0,890,780,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":529,"8":460,"22":3122}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":821,"8":719,"22":3603}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":855,"8":749,"22":3649},"upgradeStep":1}}}, +{"id":95628,"name":"Static-Shot Shoulderguards","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,955,1553,0,0,0,0,720,533,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":436,"8":319,"22":2676}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":665,"8":491,"22":3089}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":692,"8":512,"22":3128},"upgradeStep":1}}}, +{"id":95629,"name":"Cloudbreaker Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[875,0,1553,0,0,0,0,593,0,0,0,621,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":342,"11":360,"22":2741}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"7":544,"11":570,"22":3164}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"7":568,"11":595,"22":3204},"upgradeStep":1}}}, +{"id":95630,"name":"Chestplate of Violent Detonation","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1234,0,2091,0,0,877,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"11":474,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":808,"11":740,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":842,"11":771,"22":5696},"upgradeStep":1}}}, +{"id":95631,"name":"Bracers of Constant Implosion","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[696,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"22":2492},"upgradeStep":1}}}, +{"id":95632,"name":"Worldbreaker's Stormscythe","icon":"inv_axe_1h_thunderisleraid_d_031","type":13,"weaponType":1,"handType":2,"stats":[517,0,896,0,0,409,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":242,"8":156}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":474,"2":832,"5":376,"8":249}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":495,"2":863,"5":392,"8":260},"upgradeStep":1}}}, +{"id":95633,"name":"Jin'rokh's Soulcrystal","icon":"inv_jewelry_ring_172","type":11,"stats":[776,0,1164,0,0,0,0,0,467,548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"9":344}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"8":433,"9":508}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"8":449,"9":528},"upgradeStep":1}}}, +{"id":95634,"name":"Lightningweaver Gauntlets","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,671,0,0,0,0,0,616,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":406,"11":372,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":620,"11":569,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":645,"11":592,"22":1472},"upgradeStep":1}}}, +{"id":95635,"name":"Al'set's Tormented Leggings","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2091,1234,0,647,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":376,"11":577,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"5":595,"11":892,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"5":621,"11":929,"22":2061},"upgradeStep":1}}}, +{"id":95636,"name":"Fissure-Split Shoulderwraps","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1553,955,0,624,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":380,"6":398,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":577,"6":612,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":600,"6":637,"22":1766},"upgradeStep":1}}}, +{"id":95637,"name":"Robes of Static Bursts","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2091,1234,713,0,0,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":418,"11":554,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":656,"11":857,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":684,"11":893,"22":2355},"upgradeStep":1}}}, +{"id":95638,"name":"Jin'rokh's Dreamshard","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1164,776,0,479,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"5":445,"6":502}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"5":462,"6":521},"upgradeStep":1}}}, +{"id":95639,"name":"Drape of Booming Nights","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1164,776,569,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"6":270,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":529,"6":399,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":549,"6":414,"22":1177},"upgradeStep":1}}}, +{"id":95640,"name":"Soulblade of the Breaking Storm","icon":"inv_sword_1h_zandalari_c_02purple","type":13,"weaponType":9,"handType":2,"stats":[0,0,896,517,319,0,382,0,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2907,"weaponDamageMax":5399,"weaponSpeed":2.2,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"4":185,"6":225,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2698,"weaponDamageMax":5011,"stats":{"2":832,"3":474,"4":293,"6":351,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2800,"weaponDamageMax":5202,"stats":{"2":863,"3":495,"4":306,"6":366,"14":7689},"upgradeStep":1}}}, +{"id":95641,"name":"Horridon's Last Gasp","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"502":{"randPropPoints":1827,"stats":{"3":1218}},"506":{"randPropPoints":1897,"stats":{"3":1265},"upgradeStep":1}}}, +{"id":95642,"name":"Infinitely Conducting Bracers","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1164,776,454,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349,"22":1122}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":421,"6":515,"22":1295}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":437,"6":535,"22":1311},"upgradeStep":1}}}, +{"id":95643,"name":"Ghostbinder Greatboots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1553,955,712,0,0,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":2453}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":657,"7":499,"22":2831}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":684,"7":520,"22":2867},"upgradeStep":1}}}, +{"id":95644,"name":"Ionized Yojamban Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2091,1234,0,0,647,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":376,"11":577,"22":4872}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":595,"11":892,"22":5624}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":621,"11":929,"22":5696},"upgradeStep":1}}}, +{"id":95645,"name":"Wastewalker's Sandblasted Drape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,776,1164,0,0,569,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":358,"7":270,"22":1007}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"5":529,"7":399,"22":1163}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"5":549,"7":414,"22":1177},"upgradeStep":1}}}, +{"id":95646,"name":"Talisman of Living Poison","icon":"inv_jewelry_necklace_119","type":2,"stats":[0,776,1164,0,0,0,0,540,479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"7":502,"8":445}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"7":521,"8":462},"upgradeStep":1}}}, +{"id":95647,"name":"Jalak's Maelstrom Staff","icon":"inv_stave_2h_thunderisleraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1314,2091,0,0,941,0,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":13439,"weaponDamageMax":20159,"weaponSpeed":3.3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"5":584,"11":490}},"502":{"randPropPoints":2460,"weaponDamageMin":12474,"weaponDamageMax":18711,"stats":{"1":1214,"2":1941,"5":872,"11":756}},"506":{"randPropPoints":2553,"weaponDamageMin":12947,"weaponDamageMax":19422,"stats":{"1":1263,"2":2014,"5":906,"11":787},"upgradeStep":1}}}, +{"id":95648,"name":"Bindings of Multiplicative Strikes","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,776,1164,0,0,0,525,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"7":317,"22":1122}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"6":488,"7":468,"22":1295}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"6":506,"7":486,"22":1311},"upgradeStep":1}}}, +{"id":95649,"name":"Sul'lithuz Sandmail","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1234,2091,0,0,0,0,930,0,0,0,713,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":554,"11":418,"22":3568}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":857,"11":656,"22":4118}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":893,"11":684,"22":4171},"upgradeStep":1}}}, +{"id":95650,"name":"Frozen Warlord's Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[776,0,1164,0,0,0,0,555,454,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"8":285,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"7":515,"8":421,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"7":535,"8":437,"22":2492},"upgradeStep":1}}}, +{"id":95651,"name":"Bloodlord's Bloodsoaked Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,0,713,0,0,0,930,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":418,"11":554,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"7":656,"11":857,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"7":684,"11":893,"22":4984},"upgradeStep":1}}}, +{"id":95652,"name":"Puncture-Proof Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,0,789,829,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"9":722,"10":762,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"9":755,"10":795,"22":4628},"upgradeStep":1}}}, +{"id":95653,"name":"Horn-Rimmed Doomcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[776,0,1164,0,0,517,0,0,0,0,0,517,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":325,"11":325,"22":1007}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"5":480,"11":480,"22":1163}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"5":499,"11":499,"22":1177},"upgradeStep":1}}}, +{"id":95654,"name":"Spark of Zandalar","icon":"spell_nature_lightningshield","type":12,"stats":[0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"502":{"randPropPoints":1827,"stats":{"7":1218}},"506":{"randPropPoints":1897,"stats":{"7":1265},"upgradeStep":1}}}, +{"id":95655,"name":"Flamecaster's Burning Crown","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2091,1154,0,0,906,684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":545,"7":364,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":837,"7":623,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":871,"7":653,"22":1913},"upgradeStep":1}}}, +{"id":95656,"name":"Vaccinator's Armwraps","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1164,776,517,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":881}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"7":480,"22":1017}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":499,"7":499,"22":1030},"upgradeStep":1}}}, +{"id":95657,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2091,1314,0,822,0,919,0,0,0,0,0,0,7982,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":6719,"weaponDamageMax":10080,"weaponSpeed":3.3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"5":510,"7":553,"14":5009}},"502":{"randPropPoints":2460,"weaponDamageMin":6237,"weaponDamageMax":9356,"stats":{"2":1941,"3":1214,"5":762,"7":849,"14":7410}},"506":{"randPropPoints":2553,"weaponDamageMin":6473,"weaponDamageMax":9711,"stats":{"2":2014,"3":1263,"5":791,"7":883,"14":7690},"upgradeStep":1}}}, +{"id":95658,"name":"Horridon's Tusk Fragment","icon":"inv_jewelry_necklace_141","type":2,"stats":[0,0,1164,776,442,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":410,"11":522}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":425,"11":542},"upgradeStep":1}}}, +{"id":95659,"name":"Petrified Eye of the Basilisk","icon":"inv_jewelry_ring_178","type":11,"stats":[0,0,1164,776,590,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"11":247}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":548,"11":365}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":568,"11":379},"upgradeStep":1}}}, +{"id":95660,"name":"Venomlord's Totemic Wand","icon":"inv_wand_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,896,517,0,0,364,348,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2510,"weaponDamageMax":4663,"weaponSpeed":1.9,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"7":204,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":832,"3":474,"6":335,"7":320,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"stats":{"2":863,"3":495,"6":349,"7":334,"14":7689},"upgradeStep":1}}}, +{"id":95661,"name":"Roots of Rampaging Earth","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2091,1234,0,0,877,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"11":474,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":808,"11":740,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":842,"11":771,"22":2623},"upgradeStep":1}}}, +{"id":95662,"name":"Spaulders of Dinomancy","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1553,955,729,0,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":673,"7":476,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":701,"7":496,"22":2248},"upgradeStep":1}}}, +{"id":95663,"name":"Legguards of Scintillating Scales","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2091,1234,0,0,849,0,0,0,0,849,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":503,"11":503,"22":3122}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":782,"11":782,"22":3603}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":815,"11":815,"22":3649},"upgradeStep":1}}}, +{"id":95664,"name":"Armplates of the Vanquished Abomination","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1164,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"22":2461}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"22":2492},"upgradeStep":1}}}, +{"id":95665,"name":"Bad Juju","icon":"trade_archaeology_troll_voodoodoll","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"502":{"randPropPoints":1827,"stats":{"11":1218}},"506":{"randPropPoints":1897,"stats":{"11":1265},"upgradeStep":1}}}, +{"id":95666,"name":"Kura-Kura, Kazra'jin's Skullcleaver","icon":"inv_axe_1h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,517,896,0,0,0,358,0,0,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":474,"2":832,"6":330,"11":330}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":495,"2":863,"6":344,"11":344},"upgradeStep":1}}}, +{"id":95667,"name":"Mar'li's Bloodstained Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1553,955,702,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":648,"6":515,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":675,"6":536,"22":1619},"upgradeStep":1}}}, +{"id":95668,"name":"Zandalari Robes of the Final Rite","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2091,1234,0,780,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"6":529,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"5":719,"6":821,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"5":749,"6":855,"22":2355},"upgradeStep":1}}}, +{"id":95669,"name":"Wushoolay's Final Choice","icon":"spell_nature_chainlightning","type":12,"stats":[0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"502":{"randPropPoints":1827,"stats":{"5":1218}},"506":{"randPropPoints":1897,"stats":{"5":1265},"upgradeStep":1}}}, +{"id":95670,"name":"Amun-Thoth, Sul's Spiritrending Talons","icon":"inv_hand_1h_thunderisleraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,896,517,393,0,0,0,0,0,0,300,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":3435,"weaponDamageMax":6381,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":295,"4":232,"11":173,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":832,"3":474,"4":362,"11":275,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"stats":{"2":863,"3":495,"4":377,"11":287,"14":7689},"upgradeStep":1}}}, +{"id":95671,"name":"Robes of Treacherous Ground","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2091,1234,647,0,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":376,"11":577,"22":2564}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":595,"11":892,"22":2960}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":621,"11":929,"22":2997},"upgradeStep":1}}}, +{"id":95672,"name":"Gaze of Gara'jal","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1154,2091,0,0,0,789,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":722,"7":762,"22":3346}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":755,"7":795,"22":3389},"upgradeStep":1}}}, +{"id":95673,"name":"Loa-Ridden Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1164,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":1561}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"22":1802}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"22":1825},"upgradeStep":1}}}, +{"id":95674,"name":"Overloaded Bladebreaker Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1234,0,2091,0,0,626,0,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"10":585,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":575,"10":903,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":600,"10":940,"22":5696},"upgradeStep":1}}}, +{"id":95675,"name":"Zerat, Malakk's Soulburning Greatsword","icon":"inv_sword_2h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1314,0,2091,0,0,983,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"5":593,"6":440}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1214,"2":1941,"5":908,"6":659}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1263,"2":2014,"5":945,"6":685},"upgradeStep":1}}}, +{"id":95676,"name":"Talisman of Angry Spirits","icon":"inv_jewelry_necklace_139","type":2,"stats":[776,0,1164,0,0,0,533,0,0,0,0,492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":335,"11":309}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":495,"11":456}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"6":513,"11":474},"upgradeStep":1}}}, +{"id":95677,"name":"Fortitude of the Zandalari","icon":"spell_holy_mindvision","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"502":{"randPropPoints":1827,"stats":{"11":1218}},"506":{"randPropPoints":1897,"stats":{"11":1265},"upgradeStep":1}}}, +{"id":95678,"name":"Shattered Tortoiseshell Longbow","icon":"inv_bow_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1314,2091,0,0,843,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":10690,"weaponDamageMax":19854,"weaponSpeed":3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"5":514,"8":560}},"502":{"randPropPoints":2460,"weaponDamageMin":9922,"weaponDamageMax":18428,"stats":{"1":1214,"2":1941,"5":780,"8":848}},"506":{"randPropPoints":2553,"weaponDamageMin":10299,"weaponDamageMax":19128,"stats":{"1":1263,"2":2014,"5":811,"8":882},"upgradeStep":1}}}, +{"id":95679,"name":"Rockfall Ribwraps","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1234,2091,0,0,758,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"6":537,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"5":698,"6":833,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"5":727,"6":867,"22":2997},"upgradeStep":1}}}, +{"id":95680,"name":"Grips of Vampiric Cruelty","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,955,1553,0,0,633,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"7":400,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"5":584,"7":610,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"5":608,"7":635,"22":1873},"upgradeStep":1}}}, +{"id":95681,"name":"Beady-Eye Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,696,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1561}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"22":1802}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"22":1825},"upgradeStep":1}}}, +{"id":95682,"name":"Quakestompers","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,955,1553,0,0,0,641,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":592,"7":602,"22":2831}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":616,"7":627,"22":2867},"upgradeStep":1}}}, +{"id":95683,"name":"Shoulderguards of Centripetal Destruction","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[955,0,1553,0,0,0,747,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":454,"7":289,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"6":690,"7":447,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"6":718,"7":465,"22":4272},"upgradeStep":1}}}, +{"id":95684,"name":"Shell-Coated Wristplates","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[776,0,1164,0,0,0,0,0,0,576,417,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":362,"10":262,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"9":535,"10":387,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"9":555,"10":402,"22":2492},"upgradeStep":1}}}, +{"id":95685,"name":"Amulet of the Primal Turtle","icon":"inv_jewelry_necklace_118","type":2,"stats":[696,0,1164,0,0,353,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":207,"6":331}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"5":325,"6":508}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"5":339,"6":528},"upgradeStep":1}}}, +{"id":95686,"name":"Shellsplitter Greataxe","icon":"inv_axe_1h_thunderisleraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[517,0,896,0,0,387,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"6":179}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":474,"2":832,"5":356,"6":284}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":495,"2":863,"5":371,"6":297},"upgradeStep":1}}}, +{"id":95687,"name":"Beakbreaker Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[776,0,1164,0,0,0,0,0,0,533,0,492,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"11":309,"22":1007}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"9":495,"11":456,"22":1163}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"9":513,"11":474,"22":1177},"upgradeStep":1}}}, +{"id":95688,"name":"Azure Shell Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1164,776,0,0,569,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":358,"11":270,"22":881}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":529,"11":399,"22":1017}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"6":549,"11":414,"22":1030},"upgradeStep":1}}}, +{"id":95689,"name":"Stonegaze Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2091,1154,914,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":538,"6":354,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":841,"6":592,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":877,"6":620,"22":1913},"upgradeStep":1}}}, +{"id":95690,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,650,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":601,"7":601,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":625,"7":625,"22":1472},"upgradeStep":1}}}, +{"id":95691,"name":"Shimmershell Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1164,776,0,0,479,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"11":339,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":445,"11":502,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"6":462,"11":521,"22":1177},"upgradeStep":1}}}, +{"id":95692,"name":"Tortos' Discarded Shell","icon":"inv_shield_thunderisleraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1164,696,532,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":328,"7":229,"22":15628}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":492,"7":369,"22":18040}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":512,"7":385,"22":18269},"upgradeStep":1}}}, +{"id":95693,"name":"Vampire Bat-Hide Bracers","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,0,1164,776,548,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":1122}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":508,"7":433,"22":1295}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":528,"7":449,"22":1311},"upgradeStep":1}}}, +{"id":95694,"name":"Robes of Concussive Shocks","icon":"inv_robe_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2091,1234,849,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2564}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":782,"7":782,"22":2960}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":815,"7":815,"22":2997},"upgradeStep":1}}}, +{"id":95695,"name":"Spaulders of Quaking Fear","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1553,955,738,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":448,"7":299,"22":2676}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":682,"7":462,"22":3089}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":710,"7":481,"22":3128},"upgradeStep":1}}}, +{"id":95696,"name":"Refreshing Abalone Girdle","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1553,875,641,0,0,559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"7":321,"22":2741}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":589,"7":513,"22":3164}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":614,"7":536,"22":3204},"upgradeStep":1}}}, +{"id":95697,"name":"Tortos' Shellseizers","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1553,955,566,0,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":3045}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":522,"6":647,"22":3515}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":544,"6":673,"22":3560},"upgradeStep":1}}}, +{"id":95698,"name":"Megaera's Poisoned Fang","icon":"inv_knife_1h_thunderisleraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,517,896,0,0,300,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":4757,"weaponDamageMax":8835,"weaponSpeed":1.8,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":173,"11":232}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":474,"2":832,"5":275,"11":362}},"506":{"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"stats":{"1":495,"2":863,"5":287,"11":377},"upgradeStep":1}}}, +{"id":95699,"name":"Quadra-Head Brooch","icon":"inv_jewelry_necklace_140","type":2,"stats":[0,696,1164,0,0,477,0,0,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":285,"11":285}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"5":440,"11":440}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"5":459,"11":459},"upgradeStep":1}}}, +{"id":95700,"name":"Poisonblood Bladeshoulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,955,1553,0,0,0,0,650,0,0,0,650,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":393,"11":393,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":601,"11":601,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":625,"11":625,"22":2248},"upgradeStep":1}}}, +{"id":95701,"name":"Grips of Cinderflesh","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,955,1553,0,0,0,0,599,0,0,0,681,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":361,"11":412,"22":2230}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":553,"11":629,"22":2574}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":576,"11":654,"22":2607},"upgradeStep":1}}}, +{"id":95702,"name":"Plated Toothbreaker Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,0,610,610,0,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":353,"10":353,"22":2741}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"9":561,"10":561,"22":3164}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"9":585,"10":585,"22":3204},"upgradeStep":1}}}, +{"id":95703,"name":"Rot-Proof Greatplate","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1234,0,2091,0,0,0,0,0,0,849,0,849,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":503,"11":503,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"9":782,"11":782,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"9":815,"11":815,"22":5696},"upgradeStep":1}}}, +{"id":95704,"name":"Spinescale Seal","icon":"inv_jewelry_ring_164","type":11,"stats":[776,0,1164,0,0,525,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"6":317}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"5":488,"6":468}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"5":506,"6":486},"upgradeStep":1}}}, +{"id":95705,"name":"Hydraskull Choker","icon":"inv_jewelry_necklace_125","type":2,"stats":[776,0,1164,0,0,0,0,0,0,583,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":366,"10":254}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"9":541,"10":376}},"506":{"randPropPoints":1422,"stats":{"0":748,"2":1122,"9":562,"10":390},"upgradeStep":1}}}, +{"id":95706,"name":"Sandals of Arcane Fury","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1553,955,0,653,641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":392,"6":390,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":602,"6":592,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":627,"6":616,"22":1619},"upgradeStep":1}}}, +{"id":95707,"name":"Gleaming-Eye Shoulderpads","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1553,955,633,0,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"6":400,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":584,"6":610,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":608,"6":635,"22":1766},"upgradeStep":1}}}, +{"id":95708,"name":"Frostborn Wristwraps","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1164,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":881}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"22":1017}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"22":1030},"upgradeStep":1}}}, +{"id":95709,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,1164,776,0,517,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"5":480,"6":480}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"5":499,"6":499},"upgradeStep":1}}}, +{"id":95710,"name":"Fetish of the Hydra","icon":"inv_offhand_1h_thunderisleraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1164,696,0,500,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"6":261}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"5":462,"6":405}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"5":481,"6":422},"upgradeStep":1}}}, +{"id":95711,"name":"Breath of the Hydra","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"502":{"randPropPoints":1827,"stats":{"7":1218}},"506":{"randPropPoints":1897,"stats":{"7":1265},"upgradeStep":1}}}, +{"id":95712,"name":"Inscribed Bag of Hydra-Spawn","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"502":{"randPropPoints":1827,"stats":{"4":1218}},"506":{"randPropPoints":1897,"stats":{"4":1265},"upgradeStep":1}}}, +{"id":95713,"name":"Hood of Smoldering Flesh","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2091,1154,887,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"6":382,"22":2083}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":817,"6":634,"22":2405}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":851,"6":663,"22":2435},"upgradeStep":1}}}, +{"id":95714,"name":"Links of the Bifurcated Tongue","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2007}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":2316}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":2346},"upgradeStep":1}}}, +{"id":95715,"name":"Chain of Consuming Magic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2091,1234,955,0,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":569,"11":390,"22":3568}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":881,"11":615,"22":4118}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":917,"11":642,"22":4171},"upgradeStep":1}}}, +{"id":95716,"name":"Ice-Scored Treads","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1553,955,642,0,0,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"11":401,"22":3350}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":593,"11":609,"22":3867}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":617,"11":633,"22":3916},"upgradeStep":1}}}, +{"id":95717,"name":"Pinionfeather Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,696,1164,0,0,0,464,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":277,"11":290,"22":1007}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"6":428,"11":448,"22":1163}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"6":446,"11":466,"22":1177},"upgradeStep":1}}}, +{"id":95718,"name":"Cord of Cacophonous Cawing","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,1553,875,0,661,0,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"7":300,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"5":607,"7":482,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"5":633,"7":504,"22":1325},"upgradeStep":1}}}, +{"id":95719,"name":"Robe of Midnight Down","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2091,1234,0,0,0,713,0,0,0,930,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":418,"11":554,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"7":656,"11":857,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"7":684,"11":893,"22":2355},"upgradeStep":1}}}, +{"id":95720,"name":"Giorgio's Caduceus of Pure Moods","icon":"inv_stave_2h_thunderisleraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2091,1314,958,0,0,755,0,0,0,0,0,0,7982,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":6719,"weaponDamageMax":10080,"weaponSpeed":3.3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":578,"7":468,"14":5009}},"502":{"randPropPoints":2460,"weaponDamageMin":6237,"weaponDamageMax":9356,"stats":{"2":1941,"3":1214,"4":885,"7":700,"14":7410}},"506":{"randPropPoints":2553,"weaponDamageMin":6473,"weaponDamageMax":9711,"stats":{"2":2014,"3":1263,"4":921,"7":727,"14":7690},"upgradeStep":1}}}, +{"id":95721,"name":"Featherflight Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,875,1553,0,0,0,0,689,477,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":402,"8":269,"22":1442}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"7":633,"8":436,"22":1665}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"7":661,"8":456,"22":1686},"upgradeStep":1}}}, +{"id":95722,"name":"Grasp of the Ruthless Mother","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1553,1035,622,0,0,0,0,0,0,731,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"11":458,"22":2230}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":578,"11":678,"22":2574}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":600,"11":704,"22":2607},"upgradeStep":1}}}, +{"id":95723,"name":"Crown of Potentiated Birth","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2091,1154,959,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":565,"7":303,"22":3959}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":883,"7":515,"22":4570}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":920,"7":540,"22":4628},"upgradeStep":1}}}, +{"id":95724,"name":"Talonrender Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1234,0,2091,0,0,890,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"6":460,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":821,"6":719,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":855,"6":749,"22":5696},"upgradeStep":1}}}, +{"id":95725,"name":"Egg-Shard Grips","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,485,0,747,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"8":447,"10":690,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"8":465,"10":718,"22":3560},"upgradeStep":1}}}, +{"id":95726,"name":"Fabled Feather of Ji-Kun","icon":"ability_priest_angelicfeather","type":12,"stats":[0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"502":{"randPropPoints":1827,"stats":{"5":1218}},"506":{"randPropPoints":1897,"stats":{"5":1265},"upgradeStep":1}}}, +{"id":95727,"name":"Ji-Kun's Rising Winds","icon":"spell_holy_heal","type":12,"stats":[0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"502":{"randPropPoints":1827,"stats":{"8":1218}},"506":{"randPropPoints":1897,"stats":{"8":1265},"upgradeStep":1}}}, +{"id":95728,"name":"Durumu's Baleful Gaze","icon":"inv_bow_2h_crossbow_thunderisleraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1314,2091,0,0,0,943,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":12217,"weaponDamageMax":18327,"weaponSpeed":3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"6":577,"7":486}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1214,"2":1941,"6":873,"7":738}},"506":{"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"stats":{"1":1263,"2":2014,"6":907,"7":767},"upgradeStep":1}}}, +{"id":95729,"name":"Crimson Bloom Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1234,2091,0,0,955,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":569,"6":390,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"5":881,"6":615,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"5":917,"6":642,"22":2623},"upgradeStep":1}}}, +{"id":95730,"name":"Links of the Disintegrator","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,875,1553,0,0,0,651,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":378,"7":310,"22":2007}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"6":598,"7":498,"22":2316}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"6":624,"7":520,"22":2346},"upgradeStep":1}}}, +{"id":95731,"name":"Aberrant Chestguard of Torment","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1234,2091,0,0,0,890,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":3568}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":821,"7":719,"22":4118}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":855,"7":749,"22":4171},"upgradeStep":1}}}, +{"id":95732,"name":"Caustic Spike Bracers","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[696,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"22":2461}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"22":2492},"upgradeStep":1}}}, +{"id":95733,"name":"Legplates of the Dark Parasite","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,0,917,735,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"8":432,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"7":845,"8":677,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"7":880,"8":705,"22":4984},"upgradeStep":1}}}, +{"id":95734,"name":"Treads of the Blind Eye","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,0,607,673,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":369,"10":404,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"9":561,"10":621,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"9":584,"10":646,"22":3916},"upgradeStep":1}}}, +{"id":95735,"name":"Artery Rippers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,0,577,637,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":326,"10":376,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"9":528,"10":586,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"9":552,"10":611,"22":3560},"upgradeStep":1}}}, +{"id":95736,"name":"Reinforced Mirror-Sheen Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[696,0,1164,0,0,0,0,0,0,550,353,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":331,"10":207,"22":1007}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"9":508,"10":325,"22":1163}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"9":528,"10":339,"22":1177},"upgradeStep":1}}}, +{"id":95737,"name":"Durumu's Severed Tentacle","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[696,0,1164,0,0,469,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":271,"9":293}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"5":431,"9":440}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"5":449,"9":458},"upgradeStep":1}}}, +{"id":95738,"name":"Lifedrainer's Sordid Grip","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,1553,875,0,510,0,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"7":400,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"5":466,"7":623,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"5":488,"7":649,"22":1472},"upgradeStep":1}}}, +{"id":95739,"name":"Leggings of Pulsing Blood","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2091,1234,0,0,979,0,0,0,0,626,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":903,"11":575,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":940,"11":600,"22":2061},"upgradeStep":1}}}, +{"id":95740,"name":"Chilblain Spaulders","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1553,955,0,0,616,0,0,0,0,671,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":372,"11":406,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":569,"11":620,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":592,"11":645,"22":1766},"upgradeStep":1}}}, +{"id":95741,"name":"Deadly Glare Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1164,696,0,0,452,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":269,"7":295,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"6":416,"7":455,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"6":434,"7":473,"22":1177},"upgradeStep":1}}}, +{"id":95742,"name":"Durumu's Captive Eyeball","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,1164,696,519,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"6":238}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":477,"6":360}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":498,"6":374},"upgradeStep":1}}}, +{"id":95743,"name":"Ritual Dagger of the Mind's Eye","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,896,517,387,0,309,0,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2378,"weaponDamageMax":4417,"weaponSpeed":1.8,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":228,"6":179,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2207,"weaponDamageMax":4100,"stats":{"2":832,"3":474,"4":356,"6":284,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2291,"weaponDamageMax":4256,"stats":{"2":863,"3":495,"4":371,"6":297,"14":7689},"upgradeStep":1}}}, +{"id":95744,"name":"Sandals of the Starving Eye","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,1553,955,693,0,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"6":348,"22":1763}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":639,"6":530,"22":2035}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":665,"6":552,"22":2061},"upgradeStep":1}}}, +{"id":95745,"name":"Vein-Cover Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1164,776,583,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"7":254,"22":1561}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":541,"7":376,"22":1802}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":562,"7":390,"22":1825},"upgradeStep":1}}}, +{"id":95746,"name":"Iceshatter Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1553,875,664,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":3045}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":609,"11":467,"22":3515}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":636,"11":488,"22":3560},"upgradeStep":1}}}, +{"id":95747,"name":"Legplates of Re-Emergence","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2091,1234,0,0,780,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":460,"7":529,"22":4263}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":719,"7":821,"22":4921}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":749,"7":855,"22":4984},"upgradeStep":1}}}, +{"id":95748,"name":"Talisman of Bloodlust","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"502":{"randPropPoints":1827,"stats":{"1":1218}},"506":{"randPropPoints":1897,"stats":{"1":1265},"upgradeStep":1}}}, +{"id":95749,"name":"Gloves of Cushioned Air","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,875,1553,0,0,0,493,0,0,0,0,686,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":274,"11":407,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"6":451,"11":632,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"6":472,"11":659,"22":1873},"upgradeStep":1}}}, +{"id":95750,"name":"Bracers of Mutagenic Fervor","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,776,1164,0,0,0,0,429,0,0,0,569,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358,"22":1561}},"502":{"randPropPoints":1370,"stats":{"1":720,"2":1081,"7":399,"11":529,"22":1802}},"506":{"randPropPoints":1422,"stats":{"1":748,"2":1122,"7":414,"11":549,"22":1825},"upgradeStep":1}}}, +{"id":95751,"name":"Synapse-String Handguards","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,875,1553,0,0,0,626,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"7":337,"22":2230}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"6":577,"7":545,"22":2574}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"6":601,"7":569,"22":2607},"upgradeStep":1}}}, +{"id":95752,"name":"Pathogenic Gauntlets","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[875,0,1553,0,0,493,0,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":274,"7":407,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"5":451,"7":632,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"5":472,"7":659,"22":3560},"upgradeStep":1}}}, +{"id":95753,"name":"Black Blood Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,0,0,0,826,863,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":488,"10":512,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"9":761,"10":796,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"9":793,"10":829,"22":4984},"upgradeStep":1}}}, +{"id":95754,"name":"Metabolically Boosted Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,0,633,661,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":382,"10":400,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"9":584,"10":610,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"9":608,"10":635,"22":4272},"upgradeStep":1}}}, +{"id":95755,"name":"Hydra-Scale Bloodcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[696,0,1164,0,0,0,508,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":304,"8":253,"22":1007}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"6":468,"8":393,"22":1163}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"6":488,"8":409,"22":1177},"upgradeStep":1}}}, +{"id":95756,"name":"Band of the Scaled Tyrant","icon":"inv_jewelry_ring_177","type":11,"stats":[696,0,1164,0,0,426,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":261,"7":289}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"5":394,"7":458}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"5":409,"7":478},"upgradeStep":1}}}, +{"id":95757,"name":"Primordius' Talisman of Rage","icon":"ability_warrior_rampage","type":12,"stats":[0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"502":{"randPropPoints":1827,"stats":{"6":1218}},"506":{"randPropPoints":1897,"stats":{"6":1265},"upgradeStep":1}}}, +{"id":95758,"name":"Acid-Spine Bonemace","icon":"inv_mace_1h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[517,0,896,0,0,0,0,0,0,393,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6343,"weaponDamageMax":11780,"weaponSpeed":2.4,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":295,"2":562,"9":232,"10":173}},"502":{"randPropPoints":1054,"weaponDamageMin":5887,"weaponDamageMax":10934,"stats":{"0":474,"2":832,"9":362,"10":275}},"506":{"randPropPoints":1094,"weaponDamageMin":6110,"weaponDamageMax":11349,"stats":{"0":495,"2":863,"9":377,"10":287},"upgradeStep":1}}}, +{"id":95759,"name":"Robes of Mutagenic Blood","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2091,1234,0,0,877,803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"7":474,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":808,"7":740,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":842,"7":771,"22":2355},"upgradeStep":1}}}, +{"id":95760,"name":"Helix-Breaker Gloves","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1553,875,654,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":375,"6":306,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":600,"6":483,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":627,"6":504,"22":1472},"upgradeStep":1}}}, +{"id":95761,"name":"Leggings of Ebon Veins","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2091,1234,849,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":782,"6":782,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":815,"6":815,"22":2061},"upgradeStep":1}}}, +{"id":95762,"name":"Bracers of Fragile Bone","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1164,776,0,0,525,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317,"22":881}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":488,"7":468,"22":1017}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"6":506,"7":486,"22":1030},"upgradeStep":1}}}, +{"id":95763,"name":"Stolen Relic of Zuldazar","icon":"spell_fire_twilightfireward","type":12,"stats":[0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"502":{"randPropPoints":1827,"stats":{"4":1218}},"506":{"randPropPoints":1897,"stats":{"4":1265},"upgradeStep":1}}}, +{"id":95764,"name":"Leggings of the Malformed Sapling","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2091,1234,917,0,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"6":432,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":845,"6":677,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":880,"6":705,"22":2623},"upgradeStep":1}}}, +{"id":95765,"name":"Clear-Mind Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2091,1154,0,0,0,823,0,0,0,786,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2899}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"7":756,"11":721,"22":3346}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"7":789,"11":753,"22":3389},"upgradeStep":1}}}, +{"id":95766,"name":"Bonemender Bracers","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1164,776,504,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330,"22":2132}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":468,"7":488,"22":2461}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":748,"4":486,"7":506,"22":2492},"upgradeStep":1}}}, +{"id":95767,"name":"Spaulders of Primordial Growth","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1553,955,747,0,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"7":289,"22":3654}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":690,"7":447,"22":4218}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":718,"7":465,"22":4272},"upgradeStep":1}}}, +{"id":95768,"name":"Greatshield of the Gloaming","icon":"inv_shield_thunderisleraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[696,0,1164,0,0,0,0,0,0,488,0,461,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"11":266,"22":15628}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"9":452,"11":424,"22":18040}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"9":470,"11":442,"22":18269},"upgradeStep":1}}}, +{"id":95769,"name":"Gore-Soaked Gear","icon":"inv_jewelry_ring_180","type":11,"stats":[0,696,1164,0,0,0,491,438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"7":269}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"6":451,"7":405}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"6":471,"7":421},"upgradeStep":1}}}, +{"id":95770,"name":"Hand of the Dark Animus","icon":"inv_mace_1h_thunderisleraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,517,896,0,0,0,0,393,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":232,"8":173}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":474,"2":832,"7":362,"8":275}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":495,"2":863,"7":377,"8":287},"upgradeStep":1}}}, +{"id":95771,"name":"Hood of the Crimson Wake","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2091,1154,0,0,0,789,0,0,0,829,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"7":722,"11":762,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"7":755,"11":795,"22":1913},"upgradeStep":1}}}, +{"id":95772,"name":"Cha-Ye's Essence of Brilliance","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"502":{"randPropPoints":1827,"stats":{"6":1218}},"506":{"randPropPoints":1897,"stats":{"6":1265},"upgradeStep":1}}}, +{"id":95773,"name":"Constantly Accelerating Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1164,696,427,0,0,508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1192,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":253,"7":304,"22":1007}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":393,"7":468,"22":1163}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":409,"7":488,"22":1177},"upgradeStep":1}}}, +{"id":95774,"name":"Athame of the Sanguine Ritual","icon":"inv_knife_1h_thunderisleraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,896,517,0,0,0,358,0,0,0,358,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2378,"weaponDamageMax":4417,"weaponSpeed":1.8,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"7":210,"11":210,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2207,"weaponDamageMax":4100,"stats":{"2":832,"3":474,"7":330,"11":330,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2291,"weaponDamageMax":4256,"stats":{"2":863,"3":495,"7":344,"11":344,"14":7689},"upgradeStep":1}}}, +{"id":95775,"name":"Worldbinder Leggings","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1234,2091,0,0,0,669,0,0,0,0,955,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":390,"11":569,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":615,"11":881,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":642,"11":917,"22":2623},"upgradeStep":1}}}, +{"id":95776,"name":"Anima-Ringed Fingers","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1553,875,615,0,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"6":348,"22":1602}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":564,"6":545,"22":1850}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":589,"6":568,"22":1873},"upgradeStep":1}}}, +{"id":95777,"name":"Matter-Swapped Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2091,1234,877,0,0,0,0,0,0,803,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"11":474,"22":4263}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":808,"11":740,"22":4921}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":842,"11":771,"22":4984},"upgradeStep":1}}}, +{"id":95778,"name":"Crown of the Golden Golem","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,0,857,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":485,"7":412,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"6":785,"7":657,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"6":820,"7":685,"22":4628},"upgradeStep":1}}}, +{"id":95779,"name":"Delicate Vial of the Sanguinaire","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"502":{"randPropPoints":1827,"stats":{"9":1218}},"506":{"randPropPoints":1897,"stats":{"9":1265},"upgradeStep":1}}}, +{"id":95780,"name":"Iron Qon's Boot Knife","icon":"inv_knife_1h_thunderisleraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,517,896,0,0,263,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":4757,"weaponDamageMax":8835,"weaponSpeed":1.8,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":150,"7":245}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":474,"2":832,"5":241,"7":381}},"506":{"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"stats":{"1":495,"2":863,"5":251,"7":397},"upgradeStep":1}}}, +{"id":95781,"name":"Voice of the Quilen","icon":"inv_firearm_2h_rifle_thunderisleraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1394,2011,0,0,866,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":10690,"weaponDamageMax":19854,"weaponSpeed":3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1232,"5":528,"7":552}},"502":{"randPropPoints":2460,"weaponDamageMin":9922,"weaponDamageMax":18428,"stats":{"1":1294,"2":1861,"5":801,"7":836}},"506":{"randPropPoints":2553,"weaponDamageMin":10299,"weaponDamageMax":19128,"stats":{"1":1343,"2":1934,"5":833,"7":869},"upgradeStep":1}}}, +{"id":95782,"name":"Quet'zal's Crackling Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1553,875,576,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"6":366,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":529,"6":580,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":552,"6":605,"22":1325},"upgradeStep":1}}}, +{"id":95783,"name":"Saddle-Scarred Leggings","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2091,1234,917,0,0,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":845,"11":677,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":880,"11":705,"22":2061},"upgradeStep":1}}}, +{"id":95784,"name":"Dam'ren's Frozen Footguards","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1553,955,0,558,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":332,"7":432,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":514,"7":655,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":536,"7":681,"22":1619},"upgradeStep":1}}}, +{"id":95785,"name":"Ro'shak's Remembrance","icon":"inv_jewelry_ring_168","type":11,"stats":[0,0,1164,696,0,0,553,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":342,"11":206}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"6":513,"11":335}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"6":533,"11":350},"upgradeStep":1}}}, +{"id":95786,"name":"Orb of Arcing Lightning","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1164,696,543,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":501,"7":336}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":522,"7":350},"upgradeStep":1}}}, +{"id":95787,"name":"Spurs of the Storm Cavalry","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,955,1553,0,0,0,642,0,0,0,0,658,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":385,"11":401,"22":1763}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":593,"11":609,"22":2035}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":617,"11":633,"22":2061},"upgradeStep":1}}}, +{"id":95788,"name":"Ro'shak's Molten Chain","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2091,1234,849,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":3568}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":782,"7":782,"22":4118}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":815,"7":815,"22":4171},"upgradeStep":1}}}, +{"id":95789,"name":"Rein-Binder's Fists","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[875,0,1553,0,0,0,673,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"7":285,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"6":617,"7":452,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"6":645,"7":472,"22":3560},"upgradeStep":1}}}, +{"id":95790,"name":"Qon's Flaming Scimitar","icon":"inv_sword_1h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[517,0,896,0,0,0,0,0,358,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":210,"11":210}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":474,"2":832,"8":330,"11":330}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":495,"2":863,"8":344,"11":344},"upgradeStep":1}}}, +{"id":95791,"name":"Wu-Lai, Bladed Fan of the Consorts","icon":"inv_hand_1h_thunderisleraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,517,896,0,0,0,329,376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":191,"7":221}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":474,"2":832,"6":302,"7":346}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":495,"2":863,"6":315,"7":361},"upgradeStep":1}}}, +{"id":95792,"name":"Robes of the Moon Lotus","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2091,1234,849,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":782,"7":782,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":815,"7":815,"22":2355},"upgradeStep":1}}}, +{"id":95793,"name":"Passionfire Choker","icon":"inv_jewelry_necklace_123","type":2,"stats":[0,0,1164,696,452,0,493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":269,"6":295}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":416,"6":455}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":434,"6":473},"upgradeStep":1}}}, +{"id":95794,"name":"Shield of Twinned Despair","icon":"inv_shield_zandalari_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1164,696,560,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":346,"11":198,"22":15628}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":519,"11":323,"22":18040}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":539,"11":338,"22":18269},"upgradeStep":1}}}, +{"id":95795,"name":"Suen-Wo, Spire of the Falling Sun","icon":"inv_stave_2h_thunderisleraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2091,1314,0,0,0,981,0,0,0,751,0,0,7982,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":6719,"weaponDamageMax":10080,"weaponSpeed":3.3,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"7":609,"11":448,"14":5009}},"502":{"randPropPoints":2460,"weaponDamageMin":6237,"weaponDamageMax":9356,"stats":{"2":1941,"3":1214,"7":909,"11":693,"14":7410}},"506":{"randPropPoints":2553,"weaponDamageMin":6473,"weaponDamageMax":9711,"stats":{"2":2014,"3":1263,"7":944,"11":721,"14":7690},"upgradeStep":1}}}, +{"id":95796,"name":"Bracers of the Midnight Comet","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,696,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1122}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"22":1295}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"22":1311},"upgradeStep":1}}}, +{"id":95797,"name":"Girdle of Night and Day","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,0,1553,875,610,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":561,"7":561,"22":1665}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":585,"7":585,"22":1686},"upgradeStep":1}}}, +{"id":95798,"name":"Tidal Force Treads","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[955,0,1553,0,0,0,721,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":434,"7":317,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"6":665,"7":484,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"6":693,"7":504,"22":3916},"upgradeStep":1}}}, +{"id":95799,"name":"Gaze of the Twins","icon":"spell_shadow_spectralsight","type":12,"stats":[1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"502":{"randPropPoints":1827,"stats":{"0":1218}},"506":{"randPropPoints":1897,"stats":{"0":1265},"upgradeStep":1}}}, +{"id":95800,"name":"Moonjade Necklace","icon":"inv_jewelry_necklace_120","type":2,"stats":[696,0,1164,0,0,0,0,0,477,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"9":285}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"8":440,"9":440}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"8":459,"9":459},"upgradeStep":1}}}, +{"id":95801,"name":"Fingers of the Night","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1553,955,729,0,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":2230}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":673,"6":476,"22":2574}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":701,"6":496,"22":2607},"upgradeStep":1}}}, +{"id":95802,"name":"Rune of Re-Origination","icon":"inv_offhand_1h_ulduarraid_d_01","type":12,"stats":[0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"502":{"randPropPoints":1827,"stats":{"1":1218}},"506":{"randPropPoints":1897,"stats":{"1":1265},"upgradeStep":1}}}, +{"id":95803,"name":"Shan-Dun, Breaker of Hope","icon":"inv_polearm_2h_thunderisleraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1314,2091,0,0,0,0,865,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"8":567}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1214,"2":1941,"7":798,"8":846}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"1":1263,"2":2014,"7":831,"8":879},"upgradeStep":1}}}, +{"id":95804,"name":"Fusion Slasher Chestguard","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1234,2091,0,0,0,803,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"6":740,"11":808,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"6":771,"11":842,"22":2997},"upgradeStep":1}}}, +{"id":95805,"name":"Conduit-Breaker Chain Leggings","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1154,2091,0,0,0,817,801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":471,"7":455,"22":3122}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":750,"7":734,"22":3603}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":783,"7":767,"22":3649},"upgradeStep":1}}}, +{"id":95806,"name":"Doomed Crown of Lei Shen","icon":"achievement_boss_leishen","type":1,"armorType":4,"stats":[1154,0,2091,0,0,606,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":343,"11":525,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"5":555,"11":843,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"5":580,"11":880,"22":4628},"upgradeStep":1}}}, +{"id":95807,"name":"Legplates of the Lightning Throne","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1154,0,2091,0,0,0,947,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":553,"7":315,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"6":871,"7":527,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"6":908,"7":552,"22":4984},"upgradeStep":1}}}, +{"id":95808,"name":"Legplates of Whipping Ionization","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,0,885,0,687,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":513,"11":384,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"9":813,"11":629,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"9":848,"11":657,"22":4984},"upgradeStep":1}}}, +{"id":95809,"name":"Uroe, Harbinger of Terror","icon":"inv_axe_2h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1314,0,2091,0,0,0,995,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":601,"11":427}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1214,"2":1941,"6":919,"11":639}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1263,"2":2014,"6":956,"11":664},"upgradeStep":1}}}, +{"id":95810,"name":"Ultimate Protection of the Emperor","icon":"inv_shield_mogu_c_01","type":13,"weaponType":7,"handType":3,"stats":[696,0,1164,0,0,0,0,0,0,0,491,438,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":285,"11":269,"22":15628}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"10":451,"11":405,"22":18040}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"10":471,"11":421,"22":18269},"upgradeStep":1}}}, +{"id":95811,"name":"Soul Barrier","icon":"spell_warlock_demonsoul","type":12,"stats":[0,0,1969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"502":{"randPropPoints":1827,"stats":{"2":1827}},"506":{"randPropPoints":1897,"stats":{"2":1897},"upgradeStep":1}}}, +{"id":95812,"name":"Legwraps of Cardinality","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2091,1154,0,594,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":331,"6":537,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":543,"6":855,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":568,"6":892,"22":2061},"upgradeStep":1}}}, +{"id":95813,"name":"Gloves of the Maimed Vizier","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1553,875,691,0,0,0,0,0,0,461,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":398,"11":265,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":634,"11":423,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":662,"11":441,"22":1472},"upgradeStep":1}}}, +{"id":95814,"name":"Unerring Vision of Lei Shen","icon":"ability_hunter_focusedaim","type":12,"stats":[0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"502":{"randPropPoints":1827,"stats":{"3":1218}},"506":{"randPropPoints":1897,"stats":{"3":1265},"upgradeStep":1}}}, +{"id":95815,"name":"Torall, Rod of the Shattered Throne","icon":"inv_mace_1h_thunderisleraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,816,597,414,0,0,263,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":3171,"weaponDamageMax":5890,"weaponSpeed":2.4,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":482,"3":375,"4":245,"7":150,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2943,"weaponDamageMax":5467,"stats":{"2":752,"3":554,"4":381,"7":241,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":3055,"weaponDamageMax":5674,"stats":{"2":783,"3":575,"4":397,"7":251,"14":7689},"upgradeStep":1}}}, +{"id":95816,"name":"Soul Prism of Lei Shen","icon":"inv_jewelry_necklace_136","type":2,"stats":[0,0,1164,616,510,0,0,313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":328,"4":291,"7":167}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":560,"4":468,"7":285}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":588,"4":488,"7":299},"upgradeStep":1}}}, +{"id":95817,"name":"Lightning-Imbued Chalice","icon":"spell_mage_runeofpower","type":12,"stats":[0,0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"502":{"randPropPoints":1827,"stats":{"3":1218}},"506":{"randPropPoints":1897,"stats":{"3":1265},"upgradeStep":1}}}, +{"id":95818,"name":"Lei Shen's Orb of Command","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1164,696,0,0,522,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":313,"7":237}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"6":482,"7":370}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"6":502,"7":385},"upgradeStep":1}}}, +{"id":95819,"name":"Grips of Slicing Electricity","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1553,875,664,0,0,0,0,0,0,509,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":1602}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":609,"11":467,"22":1850}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":636,"11":488,"22":1873},"upgradeStep":1}}}, +{"id":95820,"name":"Leggings of the Violent Gale","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2091,1154,907,0,0,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"11":358,"22":3122}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":833,"11":583,"22":3603}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":869,"11":610,"22":3649},"upgradeStep":1}}}, +{"id":95821,"name":"Lei Shen's Grounded Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2091,1234,849,0,0,849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":4872}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":782,"7":782,"22":5624}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":815,"7":815,"22":5696},"upgradeStep":1}}}, +{"id":95825,"name":"Breastplate of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,695,877,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"7":637,"8":805,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"7":665,"8":840,"22":5696},"upgradeStep":1}}}, +{"id":95826,"name":"Gauntlets of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,693,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"5":639,"6":530,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"5":665,"6":552,"22":3560},"upgradeStep":1}}}, +{"id":95827,"name":"Helmet of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,863,0,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"5":796,"7":681,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"5":829,"7":713,"22":4628},"upgradeStep":1}}}, +{"id":95828,"name":"Greaves of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,890,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"6":817,"11":696,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"6":853,"11":724,"22":4984},"upgradeStep":1}}}, +{"id":95829,"name":"Pauldrons of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,526,0,0,661,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"8":482,"11":607,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"8":504,"11":633,"22":4272},"upgradeStep":1}}}, +{"id":95830,"name":"Chestguard of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,0,786,823,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"9":721,"10":756,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"9":753,"10":789,"22":5696},"upgradeStep":1}}}, +{"id":95831,"name":"Handguards of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,477,755,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"8":439,"9":698,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"8":457,"9":726,"22":3560},"upgradeStep":1}}}, +{"id":95832,"name":"Faceguard of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,546,0,0,979,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"8":495,"11":903,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"8":520,"11":940,"22":4628},"upgradeStep":1}}}, +{"id":95833,"name":"Legguards of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,651,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":596,"10":909,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":623,"10":945,"22":4984},"upgradeStep":1}}}, +{"id":95834,"name":"Shoulderguards of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,610,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"5":561,"11":561,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"5":585,"11":585,"22":4272},"upgradeStep":1}}}, +{"id":95835,"name":"Raiment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1154,2091,0,0,0,0,0,823,0,0,786,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"8":756,"11":721,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"8":789,"11":753,"22":2997},"upgradeStep":1}}}, +{"id":95836,"name":"Grips of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,955,1553,0,0,0,663,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":612,"8":577,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":637,"8":600,"22":1873},"upgradeStep":1}}}, +{"id":95837,"name":"Headpiece of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,809,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":742,"7":742,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":775,"7":775,"22":2435},"upgradeStep":1}}}, +{"id":95838,"name":"Legguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1234,2091,0,0,0,0,866,0,0,0,823,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":801,"11":756,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":833,"11":789,"22":2623},"upgradeStep":1}}}, +{"id":95839,"name":"Spaulders of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,875,1553,0,0,542,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":498,"6":598,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":520,"6":624,"22":2248},"upgradeStep":1}}}, +{"id":95840,"name":"Handwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1553,955,689,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":637,"7":545,"22":1850}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":662,"7":568,"22":1873},"upgradeStep":1}}}, +{"id":95841,"name":"Helm of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2091,1154,863,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":793,"11":658,"22":2405}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":827,"11":687,"22":2435},"upgradeStep":1}}}, +{"id":95842,"name":"Legwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2091,1234,837,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":768,"7":780,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":802,"7":811,"22":2623},"upgradeStep":1}}}, +{"id":95843,"name":"Robes of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2091,1154,0,0,809,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":742,"7":742,"22":2960}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":775,"7":775,"22":2997},"upgradeStep":1}}}, +{"id":95844,"name":"Mantle of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":2248},"upgradeStep":1}}}, +{"id":95845,"name":"Gloves of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1553,955,0,0,624,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1602}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":577,"11":612,"22":1850}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":600,"11":637,"22":1873},"upgradeStep":1}}}, +{"id":95846,"name":"Cover of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2091,1154,837,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2083}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":768,"7":700,"22":2405}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":802,"7":731,"22":2435},"upgradeStep":1}}}, +{"id":95847,"name":"Leggings of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2091,1234,0,0,943,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":873,"7":658,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":907,"7":687,"22":2623},"upgradeStep":1}}}, +{"id":95848,"name":"Vestment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2091,1154,740,0,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2564}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":679,"11":781,"22":2960}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":709,"11":815,"22":2997},"upgradeStep":1}}}, +{"id":95849,"name":"Shoulderwraps of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1553,875,0,0,576,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"6":529,"7":580,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"6":552,"7":605,"22":2248},"upgradeStep":1}}}, +{"id":95850,"name":"Tunic of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1154,2091,0,0,0,837,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":768,"8":700,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":802,"8":731,"22":2997},"upgradeStep":1}}}, +{"id":95851,"name":"Handguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,955,1553,0,0,0,0,658,642,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":609,"8":593,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":633,"8":617,"22":1873},"upgradeStep":1}}}, +{"id":95852,"name":"Headguard of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,0,823,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":756,"11":721,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":789,"11":753,"22":2435},"upgradeStep":1}}}, +{"id":95853,"name":"Breeches of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1234,2091,0,0,809,0,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"5":742,"7":822,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"5":775,"7":855,"22":2623},"upgradeStep":1}}}, +{"id":95854,"name":"Shoulderguards of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,875,1553,0,0,460,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":422,"6":642,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":441,"6":670,"22":2248},"upgradeStep":1}}}, +{"id":95858,"name":"Invocation of the Dawn","icon":"inv_mace_2h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,2091,1394,0,0,860,0,0,0,0,970,0,0,7982,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":7330,"weaponDamageMax":10996,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4600,"weaponDamageMax":6901,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"502":{"randPropPoints":2460,"weaponDamageMin":6804,"weaponDamageMax":10206,"stats":{"2":1941,"3":1294,"6":799,"11":901,"14":7410}},"506":{"randPropPoints":2553,"weaponDamageMin":7062,"weaponDamageMax":10594,"stats":{"2":2014,"3":1343,"6":829,"11":935,"14":7690},"upgradeStep":1}}}, +{"id":95859,"name":"Miracoran, the Vehement Chord","icon":"inv_bow_1h_zandalari_c_01","type":14,"rangedWeaponType":1,"stats":[0,1314,2091,0,0,0,0,709,0,0,0,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":10690,"weaponDamageMax":19854,"weaponSpeed":3,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":430,"11":609}},"502":{"randPropPoints":2460,"weaponDamageMin":9922,"weaponDamageMax":18428,"stats":{"1":1214,"2":1941,"7":655,"11":921}},"506":{"randPropPoints":2553,"weaponDamageMin":10299,"weaponDamageMax":19128,"stats":{"1":1263,"2":2014,"7":682,"11":957},"upgradeStep":1}}}, +{"id":95860,"name":"Fyn's Flickering Dagger","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,597,816,0,0,0,0,387,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":4757,"weaponDamageMax":8835,"weaponSpeed":1.8,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":482,"7":228,"8":179}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":752,"7":356,"8":284}},"506":{"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"stats":{"1":575,"2":783,"7":371,"8":297},"upgradeStep":1}}}, +{"id":95861,"name":"Zeeg's Ancient Kegsmasher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,517,896,0,0,0,0,0,404,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6343,"weaponDamageMax":11780,"weaponSpeed":2.4,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"1":295,"2":562,"8":238,"11":162}},"502":{"randPropPoints":1054,"weaponDamageMin":5887,"weaponDamageMax":10934,"stats":{"1":474,"2":832,"8":372,"11":258}},"506":{"randPropPoints":1094,"weaponDamageMin":6110,"weaponDamageMax":11349,"stats":{"1":495,"2":863,"8":387,"11":269},"upgradeStep":1}}}, +{"id":95862,"name":"Darkwood Spiritstaff","icon":"inv_staff_2h_zandalari_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,1314,2091,0,0,0,799,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":13439,"weaponDamageMax":20159,"weaponSpeed":3.3,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":496,"11":561}},"502":{"randPropPoints":2460,"weaponDamageMin":12474,"weaponDamageMax":18711,"stats":{"1":1214,"2":1941,"6":741,"11":861}},"506":{"randPropPoints":2553,"weaponDamageMin":12947,"weaponDamageMax":19422,"stats":{"1":1263,"2":2014,"6":769,"11":896},"upgradeStep":1}}}, +{"id":95863,"name":"Lost Shoulders of Fire","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1553,955,0,525,0,721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":317,"7":434,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":484,"7":665,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":504,"7":693,"22":1766},"upgradeStep":1}}}, +{"id":95864,"name":"Lost Shoulders of Healing","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1553,955,710,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":656,"7":507,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":683,"7":528,"22":1766},"upgradeStep":1}}}, +{"id":95865,"name":"Lost Shoulders of Fluidity","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1553,955,0,0,650,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":601,"7":601,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":625,"7":625,"22":1766},"upgradeStep":1}}}, +{"id":95866,"name":"Nadagast's Exsanguinator","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,896,517,0,364,348,0,0,0,0,0,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":2378,"weaponDamageMax":4417,"weaponSpeed":1.8,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2207,"weaponDamageMax":4100,"stats":{"2":832,"3":474,"5":335,"6":320,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":2291,"weaponDamageMax":4256,"stats":{"2":863,"3":495,"5":349,"6":334,"14":7689},"upgradeStep":1}}}, +{"id":95867,"name":"Jerthud, Graceful Hand of the Savior","icon":"inv_mace_1h_zandalari_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,896,517,272,0,0,0,0,0,0,409,0,0,7984,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":3171,"weaponDamageMax":5890,"weaponSpeed":2.4,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"502":{"randPropPoints":1054,"weaponDamageMin":2943,"weaponDamageMax":5467,"stats":{"2":832,"3":474,"4":249,"11":376,"14":7408}},"506":{"randPropPoints":1094,"weaponDamageMin":3055,"weaponDamageMax":5674,"stats":{"2":863,"3":495,"4":260,"11":392,"14":7689},"upgradeStep":1}}}, +{"id":95868,"name":"Forgotten Mantle of the Moon","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,955,1553,0,0,0,0,747,485,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":690,"8":447,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":718,"8":465,"22":2248},"upgradeStep":1}}}, +{"id":95869,"name":"Forgotten Mantle of the Sun","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1553,955,0,0,0,616,0,0,0,671,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":372,"11":406,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"7":569,"11":620,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"7":592,"11":645,"22":2248},"upgradeStep":1}}}, +{"id":95870,"name":"Abandoned Spaulders of Arrowflight","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,955,1553,0,0,0,0,485,0,0,0,747,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":289,"11":454,"22":2676}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":447,"11":690,"22":3089}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":465,"11":718,"22":3128},"upgradeStep":1}}}, +{"id":95871,"name":"Abandoned Spaulders of Renewal","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1553,955,0,0,633,0,0,0,0,661,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"11":400,"22":2676}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":584,"11":610,"22":3089}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":608,"11":635,"22":3128},"upgradeStep":1}}}, +{"id":95872,"name":"Reconstructed Holy Shoulderplates","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1553,955,0,0,0,661,0,0,0,633,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":3654}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"7":610,"11":584,"22":4218}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"7":635,"11":608,"22":4272},"upgradeStep":1}}}, +{"id":95873,"name":"Reconstructed Furious Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[955,0,1553,0,0,0,0,671,0,0,0,616,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"7":620,"11":569,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"7":645,"11":592,"22":4272},"upgradeStep":1}}}, +{"id":95874,"name":"Reconstructed Bloody Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,485,0,747,0,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"8":447,"10":690,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"8":465,"10":718,"22":4272},"upgradeStep":1}}}, +{"id":95875,"name":"Greatsword of Frozen Hells","icon":"inv_sword_2h_mogu_c_01","type":13,"weaponType":9,"handType":4,"stats":[1314,0,2091,0,0,0,844,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1214,"2":1941,"6":783,"7":837}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1263,"2":2014,"6":813,"7":871},"upgradeStep":1}}}, +{"id":95876,"name":"Do-tharak, the Swordbreaker","icon":"inv_sword_1h_pandaraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[517,0,896,0,0,281,0,0,0,0,0,404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":162,"11":238}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":474,"2":832,"5":258,"11":372}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"0":495,"2":863,"5":269,"11":387},"upgradeStep":1}}}, +{"id":95877,"name":"Bo-Ris, Horror in the Night","icon":"inv_polearm_2h_mogu_c_01","type":13,"weaponType":6,"handType":4,"stats":[1314,0,2091,0,0,0,0,0,774,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"weaponDamageMin":14661,"weaponDamageMax":21992,"weaponSpeed":3.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":462,"11":601}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1214,"2":1941,"8":714,"11":897}},"506":{"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"stats":{"0":1263,"2":2014,"8":743,"11":931},"upgradeStep":1}}}, +{"id":95878,"name":"Visage of the Doomed","icon":"inv_shield_zandalari_c_02","type":13,"weaponType":7,"handType":3,"stats":[696,0,1164,0,0,0,0,0,0,401,512,0,0,0,0,0,0,0,0,0,0,0,18499,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":246,"10":298,"22":15628}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"9":371,"10":471,"22":18040}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"9":386,"10":491,"22":18269},"upgradeStep":1}}}, +{"id":95882,"name":"Saurok Stalker's Tunic","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1154,2091,0,0,0,0,0,823,0,0,786,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"8":756,"11":721,"22":4118}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"8":789,"11":753,"22":4171},"upgradeStep":1}}}, +{"id":95883,"name":"Saurok Stalker's Gloves","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,955,1553,0,0,0,663,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":612,"8":577,"22":2574}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":637,"8":600,"22":2607},"upgradeStep":1}}}, +{"id":95884,"name":"Saurok Stalker's Headguard","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1154,2091,0,0,809,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":742,"7":742,"22":3346}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":775,"7":775,"22":3389},"upgradeStep":1}}}, +{"id":95885,"name":"Saurok Stalker's Legguards","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1234,2091,0,0,0,0,866,0,0,0,823,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":801,"11":756,"22":3603}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":833,"11":789,"22":3649},"upgradeStep":1}}}, +{"id":95886,"name":"Saurok Stalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,875,1553,0,0,542,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":498,"6":598,"22":3089}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":520,"6":624,"22":3128},"upgradeStep":1}}}, +{"id":95890,"name":"Gloves of the Chromatic Hydra","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,624,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":577,"11":612,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":600,"11":637,"22":1472},"upgradeStep":1}}}, +{"id":95891,"name":"Hood of the Chromatic Hydra","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2091,1154,0,837,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":768,"7":700,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":802,"7":731,"22":1913},"upgradeStep":1}}}, +{"id":95892,"name":"Leggings of the Chromatic Hydra","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2091,1234,0,0,943,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":873,"7":658,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":907,"7":687,"22":2061},"upgradeStep":1}}}, +{"id":95893,"name":"Robes of the Chromatic Hydra","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2091,1154,0,740,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":679,"11":781,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":709,"11":815,"22":2355},"upgradeStep":1}}}, +{"id":95894,"name":"Mantle of the Chromatic Hydra","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1553,875,0,0,576,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"6":529,"7":580,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"6":552,"7":605,"22":1766},"upgradeStep":1}}}, +{"id":95895,"name":"Fire-Charm Tunic","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1154,2091,0,0,0,0,0,823,0,0,786,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"8":756,"11":721,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"8":789,"11":753,"22":2997},"upgradeStep":1}}}, +{"id":95896,"name":"Fire-Charm Grips","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,955,1553,0,0,0,663,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":612,"8":577,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":637,"8":600,"22":1873},"upgradeStep":1}}}, +{"id":95897,"name":"Fire-Charm Headpiece","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,809,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":742,"7":742,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":775,"7":775,"22":2435},"upgradeStep":1}}}, +{"id":95898,"name":"Fire-Charm Leggings","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1234,2091,0,0,0,0,866,0,0,0,823,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":801,"11":756,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":833,"11":789,"22":2623},"upgradeStep":1}}}, +{"id":95899,"name":"Fire-Charm Spaulders","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,875,1553,0,0,542,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":498,"6":598,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":520,"6":624,"22":2248},"upgradeStep":1}}}, +{"id":95900,"name":"Fire-Charm Handwraps","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1553,955,689,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":637,"7":545,"22":1850}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":662,"7":568,"22":1873},"upgradeStep":1}}}, +{"id":95901,"name":"Fire-Charm Helm","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2091,1154,863,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":793,"11":658,"22":2405}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":827,"11":687,"22":2435},"upgradeStep":1}}}, +{"id":95902,"name":"Fire-Charm Legwraps","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2091,1234,837,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":768,"7":780,"22":2590}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":802,"7":811,"22":2623},"upgradeStep":1}}}, +{"id":95903,"name":"Fire-Charm Vest","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2091,1154,0,0,809,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":742,"7":742,"22":2960}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":775,"7":775,"22":2997},"upgradeStep":1}}}, +{"id":95904,"name":"Fire-Charm Mantle","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":2220}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":2248},"upgradeStep":1}}}, +{"id":95905,"name":"Fire-Charm Chestguard","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1154,2091,0,0,0,837,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":768,"8":700,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":802,"8":731,"22":2997},"upgradeStep":1}}}, +{"id":95906,"name":"Fire-Charm Gauntlets","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,955,1553,0,0,0,0,658,642,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"7":609,"8":593,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"7":633,"8":617,"22":1873},"upgradeStep":1}}}, +{"id":95907,"name":"Fire-Charm Crown","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,0,823,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"6":756,"11":721,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"6":789,"11":753,"22":2435},"upgradeStep":1}}}, +{"id":95908,"name":"Fire-Charm Legguards","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1234,2091,0,0,809,0,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"5":742,"7":822,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"5":775,"7":855,"22":2623},"upgradeStep":1}}}, +{"id":95909,"name":"Fire-Charm Shoulderguards","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,875,1553,0,0,460,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":422,"6":642,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":441,"6":670,"22":2248},"upgradeStep":1}}}, +{"id":95910,"name":"Lightning Emperor's Battleplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,695,877,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"7":637,"8":805,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"7":665,"8":840,"22":5696},"upgradeStep":1}}}, +{"id":95911,"name":"Lightning Emperor's Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,693,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"5":639,"6":530,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"5":665,"6":552,"22":3560},"upgradeStep":1}}}, +{"id":95912,"name":"Lightning Emperor's Helmet","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,863,0,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"5":796,"7":681,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"5":829,"7":713,"22":4628},"upgradeStep":1}}}, +{"id":95913,"name":"Lightning Emperor's Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,890,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"6":817,"11":696,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"6":853,"11":724,"22":4984},"upgradeStep":1}}}, +{"id":95914,"name":"Lightning Emperor's Pauldrons","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,526,0,0,661,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"8":482,"11":607,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"8":504,"11":633,"22":4272},"upgradeStep":1}}}, +{"id":95915,"name":"Lightning Emperor's Breastplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2091,1154,0,0,809,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":4872}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":742,"7":742,"22":5624}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":775,"7":775,"22":5696},"upgradeStep":1}}}, +{"id":95916,"name":"Lightning Emperor's Gloves","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1553,955,689,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":3045}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":637,"7":545,"22":3515}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":662,"7":568,"22":3560},"upgradeStep":1}}}, +{"id":95917,"name":"Lightning Emperor's Headguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2091,1154,863,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":3959}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":793,"11":658,"22":4570}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":827,"11":687,"22":4628},"upgradeStep":1}}}, +{"id":95918,"name":"Lightning Emperor's Greaves","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2091,1234,837,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":4263}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":768,"7":780,"22":4921}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":802,"7":811,"22":4984},"upgradeStep":1}}}, +{"id":95919,"name":"Lightning Emperor's Mantle","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":3654}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":4218}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":4272},"upgradeStep":1}}}, +{"id":95920,"name":"Lightning Emperor's Chestguard","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,0,786,823,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"9":721,"10":756,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"9":753,"10":789,"22":5696},"upgradeStep":1}}}, +{"id":95921,"name":"Lightning Emperor's Handguards","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,477,755,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"8":439,"9":698,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"8":457,"9":726,"22":3560},"upgradeStep":1}}}, +{"id":95922,"name":"Lightning Emperor's Faceguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,546,0,0,979,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"8":495,"11":903,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"8":520,"11":940,"22":4628},"upgradeStep":1}}}, +{"id":95923,"name":"Lightning Emperor's Legguards","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,651,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":596,"10":909,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":623,"10":945,"22":4984},"upgradeStep":1}}}, +{"id":95924,"name":"Lightning Emperor's Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,610,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"5":561,"11":561,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"5":585,"11":585,"22":4272},"upgradeStep":1}}}, +{"id":95925,"name":"Handwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1553,955,689,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":637,"7":545,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":662,"7":568,"22":1472},"upgradeStep":1}}}, +{"id":95926,"name":"Cowl of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2091,1154,863,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":793,"11":658,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":827,"11":687,"22":1913},"upgradeStep":1}}}, +{"id":95927,"name":"Legwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2091,1234,837,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":768,"7":780,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":802,"7":811,"22":2061},"upgradeStep":1}}}, +{"id":95928,"name":"Robes of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2091,1154,0,0,809,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":742,"7":742,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":775,"7":775,"22":2355},"upgradeStep":1}}}, +{"id":95929,"name":"Mantle of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":1766},"upgradeStep":1}}}, +{"id":95930,"name":"Gloves of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,624,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":577,"11":612,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":600,"11":637,"22":1472},"upgradeStep":1}}}, +{"id":95931,"name":"Hood of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2091,1154,837,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":768,"7":700,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":802,"7":731,"22":1913},"upgradeStep":1}}}, +{"id":95932,"name":"Leggings of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2091,1234,0,0,943,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":873,"7":658,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":907,"7":687,"22":2061},"upgradeStep":1}}}, +{"id":95933,"name":"Raiment of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2091,1154,740,0,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":679,"11":781,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":709,"11":815,"22":2355},"upgradeStep":1}}}, +{"id":95934,"name":"Shoulderguards of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1553,875,0,0,576,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"6":529,"7":580,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"6":552,"7":605,"22":1766},"upgradeStep":1}}}, +{"id":95935,"name":"Nine-Tailed Tunic","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1154,2091,0,0,0,0,0,823,0,0,786,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"8":756,"11":721,"22":2960}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"8":789,"11":753,"22":2997},"upgradeStep":1}}}, +{"id":95936,"name":"Nine-Tailed Gloves","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,955,1553,0,0,0,663,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,1897,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":612,"8":577,"22":1850}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":637,"8":600,"22":1873},"upgradeStep":1}}}, +{"id":95937,"name":"Nine-Tailed Helmet","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1154,2091,0,0,809,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2466,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":742,"7":742,"22":2405}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":775,"7":775,"22":2435},"upgradeStep":1}}}, +{"id":95938,"name":"Nine-Tailed Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1234,2091,0,0,0,0,866,0,0,0,823,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":801,"11":756,"22":2590}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":833,"11":789,"22":2623},"upgradeStep":1}}}, +{"id":95939,"name":"Nine-Tailed Spaulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,875,1553,0,0,542,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2276,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":498,"6":598,"22":2220}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":520,"6":624,"22":2248},"upgradeStep":1}}}, +{"id":95940,"name":"Tunic of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2091,1154,0,0,809,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":3568}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"6":742,"7":742,"22":4118}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"6":775,"7":775,"22":4171},"upgradeStep":1}}}, +{"id":95941,"name":"Handwraps of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1553,955,689,0,0,591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":2230}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":637,"7":545,"22":2574}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":662,"7":568,"22":2607},"upgradeStep":1}}}, +{"id":95942,"name":"Faceguard of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2091,1154,863,0,0,0,0,0,0,718,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2899}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":793,"11":658,"22":3346}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":827,"11":687,"22":3389},"upgradeStep":1}}}, +{"id":95943,"name":"Legwraps of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2091,1234,837,0,0,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":3122}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"4":768,"7":780,"22":3603}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"4":802,"7":811,"22":3649},"upgradeStep":1}}}, +{"id":95944,"name":"Mantle of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1553,875,621,0,0,0,0,0,0,593,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2676}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"4":570,"11":544,"22":3089}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"4":595,"11":568,"22":3128},"upgradeStep":1}}}, +{"id":95945,"name":"Cuirass of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1154,2091,0,0,0,0,0,823,0,0,786,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"8":756,"11":721,"22":4118}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"8":789,"11":753,"22":4171},"upgradeStep":1}}}, +{"id":95946,"name":"Grips of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,955,1553,0,0,0,663,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":612,"8":577,"22":2574}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":637,"8":600,"22":2607},"upgradeStep":1}}}, +{"id":95947,"name":"Helmet of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,1154,2091,0,0,809,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"502":{"randPropPoints":2460,"stats":{"1":1054,"2":1941,"5":742,"7":742,"22":3346}},"506":{"randPropPoints":2553,"stats":{"1":1103,"2":2014,"5":775,"7":775,"22":3389},"upgradeStep":1}}}, +{"id":95948,"name":"Legguards of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1234,2091,0,0,0,0,866,0,0,0,823,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"502":{"randPropPoints":2460,"stats":{"1":1134,"2":1941,"7":801,"11":756,"22":3603}},"506":{"randPropPoints":2553,"stats":{"1":1183,"2":2014,"7":833,"11":789,"22":3649},"upgradeStep":1}}}, +{"id":95949,"name":"Spaulders of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,875,1553,0,0,542,651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"502":{"randPropPoints":1827,"stats":{"1":801,"2":1441,"5":498,"6":598,"22":3089}},"506":{"randPropPoints":1897,"stats":{"1":838,"2":1497,"5":520,"6":624,"22":3128},"upgradeStep":1}}}, +{"id":95950,"name":"Hauberk of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2091,1154,740,0,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,4223,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":3568}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":679,"11":781,"22":4118}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":709,"11":815,"22":4171},"upgradeStep":1}}}, +{"id":95951,"name":"Gloves of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1553,955,0,0,624,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,2639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":2230}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":577,"11":612,"22":2574}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":600,"11":637,"22":2607},"upgradeStep":1}}}, +{"id":95952,"name":"Headpiece of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2091,1154,837,0,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3431,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2899}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"4":768,"7":700,"22":3346}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"4":802,"7":731,"22":3389},"upgradeStep":1}}}, +{"id":95953,"name":"Kilt of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2091,1234,0,0,943,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":3122}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":873,"7":658,"22":3603}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":907,"7":687,"22":3649},"upgradeStep":1}}}, +{"id":95954,"name":"Shoulderwraps of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1553,875,0,0,576,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":2676}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"6":529,"7":580,"22":3089}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"6":552,"7":605,"22":3128},"upgradeStep":1}}}, +{"id":95958,"name":"Necklace of the Terra-Cotta Archer","icon":"inv_jewelry_necklace_128","type":2,"stats":[0,696,1164,0,0,0,485,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":290,"7":277}},"502":{"randPropPoints":1370,"stats":{"1":640,"2":1081,"6":448,"7":428}},"506":{"randPropPoints":1422,"stats":{"1":668,"2":1122,"6":466,"7":446},"upgradeStep":1}}}, +{"id":95959,"name":"Spiderweb Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1035,1553,0,0,0,769,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":482,"8":349,"22":1763}},"502":{"randPropPoints":1827,"stats":{"1":961,"2":1441,"6":713,"8":516,"22":2035}},"506":{"randPropPoints":1897,"stats":{"1":998,"2":1497,"6":741,"8":536,"22":2061},"upgradeStep":1}}}, +{"id":95960,"name":"Scalehide Spurs","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,1035,1553,0,0,0,0,690,690,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":433,"8":433,"22":2453}},"502":{"randPropPoints":1827,"stats":{"1":961,"2":1441,"7":641,"8":641,"22":2831}},"506":{"randPropPoints":1897,"stats":{"1":998,"2":1497,"7":665,"8":665,"22":2867},"upgradeStep":1}}}, +{"id":95961,"name":"Abandoned Zandalari Firecord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,1553,955,0,549,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":330,"6":431,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"5":507,"6":656,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"5":528,"6":683,"22":1325},"upgradeStep":1}}}, +{"id":95962,"name":"Abandoned Zandalari Shadowgirdle","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1553,955,747,0,0,0,0,0,0,485,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"4":690,"11":447,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"4":718,"11":465,"22":1325},"upgradeStep":1}}}, +{"id":95963,"name":"Silentflame Sandals","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,1553,1035,0,573,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":359,"11":476,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"5":531,"11":705,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"5":552,"11":732,"22":1619},"upgradeStep":1}}}, +{"id":95964,"name":"Necklace of the Terra-Cotta Invoker","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1164,696,0,500,0,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"7":261}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"5":462,"7":405}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"5":481,"7":422},"upgradeStep":1}}}, +{"id":95965,"name":"Home-Warding Slippers","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1553,1035,0,0,0,656,0,0,0,711,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":412,"11":446,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"7":609,"11":660,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"7":632,"11":685,"22":1619},"upgradeStep":1}}}, +{"id":95966,"name":"Deeproot Treads","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,1553,1035,731,0,0,622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1763}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":678,"7":578,"22":2035}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":704,"7":600,"22":2061},"upgradeStep":1}}}, +{"id":95967,"name":"Spiritbound Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1553,1035,0,0,690,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":2453}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"6":641,"11":641,"22":2831}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"6":665,"11":665,"22":2867},"upgradeStep":1}}}, +{"id":95968,"name":"Vaultwalker Sabatons","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1553,1035,0,0,0,690,0,0,0,690,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3350}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"7":641,"11":641,"22":3867}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"7":665,"11":665,"22":3916},"upgradeStep":1}}}, +{"id":95969,"name":"Necklace of the Terra-Cotta Mender","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1164,696,508,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":304,"11":253}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":640,"4":468,"11":393}},"506":{"randPropPoints":1422,"stats":{"2":1122,"3":668,"4":488,"11":409},"upgradeStep":1}}}, +{"id":95970,"name":"Abandoned Zandalari Silentbelt","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,955,1553,0,0,0,701,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":424,"7":340,"22":1442}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"6":647,"7":522,"22":1665}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"6":673,"7":544,"22":1686},"upgradeStep":1}}}, +{"id":95971,"name":"Abandoned Zandalari Moonstrap","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,1553,955,0,0,729,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":442,"7":309,"22":1442}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":673,"7":476,"22":1665}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":701,"7":496,"22":1686},"upgradeStep":1}}}, +{"id":95972,"name":"Abandoned Zandalari Arrowlinks","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,955,1553,0,0,566,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":340,"11":424,"22":2007}},"502":{"randPropPoints":1827,"stats":{"1":881,"2":1441,"5":522,"11":647,"22":2316}},"506":{"randPropPoints":1897,"stats":{"1":918,"2":1497,"5":544,"11":673,"22":2346},"upgradeStep":1}}}, +{"id":95973,"name":"Abandoned Zandalari Waterchain","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1553,955,0,0,691,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"7":350,"22":2007}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":638,"7":538,"22":2316}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":664,"7":560,"22":2346},"upgradeStep":1}}}, +{"id":95974,"name":"Abandoned Zandalari Greatbelt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1553,955,0,0,650,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"11":393,"22":2741}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":601,"11":601,"22":3164}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":625,"11":625,"22":3204},"upgradeStep":1}}}, +{"id":95975,"name":"Abandoned Zandalari Goreplate","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[955,0,1553,0,0,633,661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":382,"6":400,"22":2741}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"5":584,"6":610,"22":3164}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"5":608,"6":635,"22":3204},"upgradeStep":1}}}, +{"id":95976,"name":"Abandoned Zandalari Bucklebreaker","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,0,549,0,710,0,0,0,0,0,0,0,0,0,0,3244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":330,"11":431,"22":2741}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"9":507,"11":656,"22":3164}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"9":528,"11":683,"22":3204},"upgradeStep":1}}}, +{"id":95977,"name":"Necklace of the Terra-Cotta Vanquisher","icon":"inv_jewelry_necklace_130","type":2,"stats":[696,0,1164,0,0,515,0,0,0,0,0,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":309,"11":245}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"5":475,"11":381}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"5":495,"11":397},"upgradeStep":1}}}, +{"id":95978,"name":"Locksmasher Greaves","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1035,0,1553,0,0,540,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":339,"7":488,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":961,"2":1441,"5":502,"7":722,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":998,"2":1497,"5":521,"7":750,"22":3916},"upgradeStep":1}}}, +{"id":95979,"name":"Columnbreaker Stompers","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1035,0,1553,0,0,0,0,0,673,0,0,701,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":422,"11":440,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":961,"2":1441,"8":624,"11":650,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":998,"2":1497,"8":648,"11":675,"22":3916},"upgradeStep":1}}}, +{"id":95980,"name":"Necklace of the Terra-Cotta Protector","icon":"inv_jewelry_necklace_130","type":2,"stats":[696,0,1164,0,0,0,0,0,353,0,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":207,"10":331}},"502":{"randPropPoints":1370,"stats":{"0":640,"2":1081,"8":325,"10":508}},"506":{"randPropPoints":1422,"stats":{"0":668,"2":1122,"8":339,"10":528},"upgradeStep":1}}}, +{"id":95981,"name":"Gloves of the Thousandfold Hells","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,1553,955,0,0,624,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,1490,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":881,"6":577,"11":612,"22":1453}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":918,"6":600,"11":637,"22":1472},"upgradeStep":1}}}, +{"id":95982,"name":"Hood of the Thousandfold Hells","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2091,1154,0,837,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":768,"7":700,"22":1889}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":802,"7":731,"22":1913},"upgradeStep":1}}}, +{"id":95983,"name":"Leggings of the Thousandfold Hells","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2091,1234,0,0,943,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1134,"6":873,"7":658,"22":2035}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1183,"6":907,"7":687,"22":2061},"upgradeStep":1}}}, +{"id":95984,"name":"Robes of the Thousandfold Hells","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2091,1154,0,740,0,0,0,0,0,850,0,0,0,0,0,0,0,0,0,0,2385,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"502":{"randPropPoints":2460,"stats":{"2":1941,"3":1054,"5":679,"11":781,"22":2325}},"506":{"randPropPoints":2553,"stats":{"2":2014,"3":1103,"5":709,"11":815,"22":2355},"upgradeStep":1}}}, +{"id":95985,"name":"Mantle of the Thousandfold Hells","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1553,875,0,0,576,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":801,"6":529,"7":580,"22":1744}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":838,"6":552,"7":605,"22":1766},"upgradeStep":1}}}, +{"id":95986,"name":"Helmet of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,863,0,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"5":796,"7":681,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"5":829,"7":713,"22":4628},"upgradeStep":1}}}, +{"id":95987,"name":"Battleplate of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,695,877,0,0,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"7":637,"8":805,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"7":665,"8":840,"22":5696},"upgradeStep":1}}}, +{"id":95988,"name":"Gauntlets of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,693,574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"5":639,"6":530,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"5":665,"6":552,"22":3560},"upgradeStep":1}}}, +{"id":95989,"name":"Legplates of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,0,890,0,0,0,0,753,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"6":817,"11":696,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"6":853,"11":724,"22":4984},"upgradeStep":1}}}, +{"id":95990,"name":"Pauldrons of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,0,0,0,526,0,0,661,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"8":482,"11":607,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"8":504,"11":633,"22":4272},"upgradeStep":1}}}, +{"id":95991,"name":"Chestguard of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,0,786,823,0,0,0,0,0,0,0,0,0,0,0,5767,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"9":721,"10":756,"22":5624}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"9":753,"10":789,"22":5696},"upgradeStep":1}}}, +{"id":95992,"name":"Handguards of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[955,0,1553,0,0,0,0,0,477,755,0,0,0,0,0,0,0,0,0,0,0,0,3605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"502":{"randPropPoints":1827,"stats":{"0":881,"2":1441,"8":439,"9":698,"22":3515}},"506":{"randPropPoints":1897,"stats":{"0":918,"2":1497,"8":457,"9":726,"22":3560},"upgradeStep":1}}}, +{"id":95993,"name":"Faceguard of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1154,0,2091,0,0,0,0,0,546,0,0,979,0,0,0,0,0,0,0,0,0,0,4686,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"502":{"randPropPoints":2460,"stats":{"0":1054,"2":1941,"8":495,"11":903,"22":4570}},"506":{"randPropPoints":2553,"stats":{"0":1103,"2":2014,"8":520,"11":940,"22":4628},"upgradeStep":1}}}, +{"id":95994,"name":"Legguards of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1234,0,2091,0,0,651,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,0,5046,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2650,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"502":{"randPropPoints":2460,"stats":{"0":1134,"2":1941,"5":596,"10":909,"22":4921}},"506":{"randPropPoints":2553,"stats":{"0":1183,"2":2014,"5":623,"10":945,"22":4984},"upgradeStep":1}}}, +{"id":95995,"name":"Shoulderguards of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[875,0,1553,0,0,610,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,4325,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"502":{"randPropPoints":1827,"stats":{"0":801,"2":1441,"5":561,"11":561,"22":4218}},"506":{"randPropPoints":1897,"stats":{"0":838,"2":1497,"5":585,"11":585,"22":4272},"upgradeStep":1}}}, +{"id":95996,"name":"Sign of the Bloodied God","icon":"inv_jewelry_ring_163","type":11,"stats":[0,989,1484,0,0,0,0,659,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":612,"11":612}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":635,"11":635},"upgradeStep":1}}}, +{"id":95997,"name":"Renataki's Soul Charm","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"528":{"randPropPoints":2328,"stats":{"8":1552}},"532":{"randPropPoints":2416,"stats":{"8":1611},"upgradeStep":1}}}, +{"id":95998,"name":"Lightning-Eye Hood","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,0,1016,0,0,0,1076,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":460,"11":449,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":937,"11":987,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":976,"11":1031,"22":2634},"upgradeStep":1}}}, +{"id":95999,"name":"Spearman's Jingling Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1615,2663,0,0,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":529,"8":460,"22":3122}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"7":1067,"8":937,"22":3902}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"7":1111,"8":976,"22":3948},"upgradeStep":1}}}, +{"id":96000,"name":"Static-Shot Shoulderguards","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1239,1979,0,0,0,0,928,690,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":436,"8":319,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":858,"8":637,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":892,"8":663,"22":3384},"upgradeStep":1}}}, +{"id":96001,"name":"Cloudbreaker Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,0,0,777,0,0,0,813,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":342,"11":360,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"7":716,"11":749,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"7":746,"11":780,"22":3466},"upgradeStep":1}}}, +{"id":96002,"name":"Chestplate of Violent Detonation","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1615,0,2663,0,0,1139,0,0,0,0,0,1045,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"11":474,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"5":1051,"11":964,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"5":1094,"11":1004,"22":6161},"upgradeStep":1}}}, +{"id":96003,"name":"Bracers of Constant Implosion","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[909,0,1484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"22":2696},"upgradeStep":1}}}, +{"id":96004,"name":"Worldbreaker's Stormscythe","icon":"inv_axe_1h_thunderisleraid_d_031","type":13,"weaponType":1,"handType":2,"stats":[681,0,1142,0,0,532,0,0,357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":242,"8":156}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"5":491,"8":329}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"5":511,"8":343},"upgradeStep":1}}}, +{"id":96005,"name":"Jin'rokh's Soulcrystal","icon":"inv_jewelry_ring_172","type":11,"stats":[989,0,1484,0,0,0,0,0,595,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"9":344}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"8":552,"9":648}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"8":573,"9":672},"upgradeStep":1}}}, +{"id":96006,"name":"Lightningweaver Gauntlets","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1979,1239,0,865,0,0,0,0,0,796,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":406,"11":372,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":800,"11":736,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":832,"11":765,"22":1592},"upgradeStep":1}}}, +{"id":96007,"name":"Al'set's Tormented Leggings","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2663,1615,0,847,0,0,0,0,0,1254,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":376,"11":577,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"5":780,"11":1158,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"5":813,"11":1205,"22":2229},"upgradeStep":1}}}, +{"id":96008,"name":"Fissure-Split Shoulderwraps","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1979,1239,0,804,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":380,"6":398,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":744,"6":792,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":773,"6":824,"22":1911},"upgradeStep":1}}}, +{"id":96009,"name":"Robes of Static Bursts","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2663,1615,930,0,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":418,"11":554,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":858,"11":1114,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":893,"11":1159,"22":2547},"upgradeStep":1}}}, +{"id":96010,"name":"Jin'rokh's Dreamshard","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1484,989,0,611,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":567,"6":639}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":588,"6":663},"upgradeStep":1}}}, +{"id":96011,"name":"Drape of Booming Nights","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1484,989,726,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"6":270,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":674,"6":508,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":699,"6":527,"22":1274},"upgradeStep":1}}}, +{"id":96012,"name":"Soulblade of the Breaking Storm","icon":"inv_sword_1h_zandalari_c_02blue","type":13,"weaponType":9,"handType":2,"stats":[0,0,1142,681,417,0,497,0,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3704,"weaponDamageMax":6879,"weaponSpeed":2.2,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"4":185,"6":225,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3438,"weaponDamageMax":6385,"stats":{"2":1059,"3":626,"4":385,"6":458,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3568,"weaponDamageMax":6627,"stats":{"2":1100,"3":653,"4":401,"6":477,"14":9797},"upgradeStep":1}}}, +{"id":96013,"name":"Horridon's Last Gasp","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"528":{"randPropPoints":2328,"stats":{"3":1552}},"532":{"randPropPoints":2416,"stats":{"3":1611},"upgradeStep":1}}}, +{"id":96014,"name":"Infinitely Conducting Bracers","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1484,989,579,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349,"22":1122}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":537,"6":657,"22":1402}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":557,"6":681,"22":1419},"upgradeStep":1}}}, +{"id":96015,"name":"Ghostbinder Greatboots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1979,1239,920,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":2453}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":850,"7":645,"22":3066}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":884,"7":671,"22":3102},"upgradeStep":1}}}, +{"id":96016,"name":"Ionized Yojamban Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2663,1615,0,0,847,0,0,0,0,1254,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":376,"11":577,"22":4872}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":780,"11":1158,"22":6090}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":813,"11":1205,"22":6161},"upgradeStep":1}}}, +{"id":96017,"name":"Wastewalker's Sandblasted Drape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,989,1484,0,0,726,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":358,"7":270,"22":1007}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"5":674,"7":508,"22":1259}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"5":699,"7":527,"22":1274},"upgradeStep":1}}}, +{"id":96018,"name":"Talisman of Living Poison","icon":"inv_jewelry_necklace_119","type":2,"stats":[0,989,1484,0,0,0,0,689,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":639,"8":567}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":663,"8":588},"upgradeStep":1}}}, +{"id":96019,"name":"Jalak's Maelstrom Staff","icon":"inv_stave_2h_thunderisleraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1695,2663,0,0,1203,0,0,0,0,0,1061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":17123,"weaponDamageMax":25685,"weaponSpeed":3.3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"5":584,"11":490}},"528":{"randPropPoints":3134,"weaponDamageMin":15893,"weaponDamageMax":23840,"stats":{"1":1568,"2":2472,"5":1115,"11":980}},"532":{"randPropPoints":3253,"weaponDamageMin":16497,"weaponDamageMax":24746,"stats":{"1":1631,"2":2566,"5":1158,"11":1020},"upgradeStep":1}}}, +{"id":96020,"name":"Bindings of Multiplicative Strikes","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,989,1484,0,0,0,669,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"7":317,"22":1122}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"6":621,"7":597,"22":1402}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"6":645,"7":619,"22":1419},"upgradeStep":1}}}, +{"id":96021,"name":"Sul'lithuz Sandmail","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1615,2663,0,0,0,0,1206,0,0,0,930,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":554,"11":418,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"7":1114,"11":858,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"7":1159,"11":893,"22":4511},"upgradeStep":1}}}, +{"id":96022,"name":"Frozen Warlord's Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,0,707,579,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"8":285,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"7":657,"8":537,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"7":681,"8":557,"22":2696},"upgradeStep":1}}}, +{"id":96023,"name":"Bloodlord's Bloodsoaked Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,0,930,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":418,"11":554,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"7":858,"11":1114,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"7":893,"11":1159,"22":5391},"upgradeStep":1}}}, +{"id":96024,"name":"Puncture-Proof Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,1044,1084,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"9":959,"10":999,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"9":1001,"10":1041,"22":5006},"upgradeStep":1}}}, +{"id":96025,"name":"Horn-Rimmed Doomcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,659,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":325,"11":325,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":612,"11":612,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":635,"11":635,"22":1274},"upgradeStep":1}}}, +{"id":96026,"name":"Spark of Zandalar","icon":"spell_nature_lightningshield","type":12,"stats":[0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"528":{"randPropPoints":2328,"stats":{"7":1552}},"532":{"randPropPoints":2416,"stats":{"7":1611},"upgradeStep":1}}}, +{"id":96027,"name":"Flamecaster's Burning Crown","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,1172,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":545,"7":364,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":1083,"7":841,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":1127,"7":880,"22":2070},"upgradeStep":1}}}, +{"id":96028,"name":"Vaccinator's Armwraps","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1484,989,659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":612,"7":612,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":635,"7":635,"22":1114},"upgradeStep":1}}}, +{"id":96029,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,0,1051,0,1189,0,0,0,0,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"5":510,"7":553,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"5":975,"7":1099,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"5":1012,"7":1143,"14":9798},"upgradeStep":1}}}, +{"id":96030,"name":"Horridon's Tusk Fragment","icon":"inv_jewelry_necklace_141","type":2,"stats":[0,0,1484,989,563,0,0,0,0,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":522,"11":665}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":542,"11":690},"upgradeStep":1}}}, +{"id":96031,"name":"Petrified Eye of the Basilisk","icon":"inv_jewelry_ring_178","type":11,"stats":[0,0,1484,989,752,0,0,0,0,0,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"11":247}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":698,"11":465}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":724,"11":483},"upgradeStep":1}}}, +{"id":96032,"name":"Venomlord's Totemic Wand","icon":"inv_wand_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1142,681,0,0,475,455,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3199,"weaponDamageMax":5941,"weaponSpeed":1.9,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"7":204,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2969,"weaponDamageMax":5514,"stats":{"2":1059,"3":626,"6":438,"7":419,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3081,"weaponDamageMax":5724,"stats":{"2":1100,"3":653,"6":456,"7":436,"14":9797},"upgradeStep":1}}}, +{"id":96033,"name":"Roots of Rampaging Earth","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2663,1615,0,0,1139,0,0,0,0,1045,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"11":474,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1051,"11":964,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1094,"11":1004,"22":2837},"upgradeStep":1}}}, +{"id":96034,"name":"Spaulders of Dinomancy","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,1979,1239,939,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":869,"7":618,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":903,"7":643,"22":2432},"upgradeStep":1}}}, +{"id":96035,"name":"Legguards of Scintillating Scales","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2663,1615,0,0,1104,0,0,0,0,1104,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":503,"11":503,"22":3122}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1019,"11":1019,"22":3902}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1061,"11":1061,"22":3948},"upgradeStep":1}}}, +{"id":96036,"name":"Armplates of the Vanquished Abomination","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1484,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"22":2664}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"22":2696},"upgradeStep":1}}}, +{"id":96037,"name":"Bad Juju","icon":"trade_archaeology_troll_voodoodoll","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"528":{"randPropPoints":2328,"stats":{"11":1552}},"532":{"randPropPoints":2416,"stats":{"11":1611},"upgradeStep":1}}}, +{"id":96038,"name":"Kura-Kura, Kazra'jin's Skullcleaver","icon":"inv_axe_1h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,681,1142,0,0,0,467,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"6":431,"11":431}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"6":449,"11":449},"upgradeStep":1}}}, +{"id":96039,"name":"Mar'li's Bloodstained Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1979,1239,908,0,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":839,"6":665,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":872,"6":691,"22":1751},"upgradeStep":1}}}, +{"id":96040,"name":"Zandalari Robes of the Final Rite","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2663,1615,0,1016,1156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"6":529,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"5":937,"6":1067,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"5":976,"6":1111,"22":2547},"upgradeStep":1}}}, +{"id":96041,"name":"Wushoolay's Final Choice","icon":"spell_nature_chainlightning","type":12,"stats":[0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"528":{"randPropPoints":2328,"stats":{"5":1552}},"532":{"randPropPoints":2416,"stats":{"5":1611},"upgradeStep":1}}}, +{"id":96042,"name":"Amun-Thoth, Sul's Spiritrending Talons","icon":"inv_hand_1h_thunderisleraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,1142,681,511,0,0,0,0,0,0,393,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":4377,"weaponDamageMax":8130,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":295,"4":232,"11":173,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":4063,"weaponDamageMax":7546,"stats":{"2":1059,"3":626,"4":472,"11":362,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":4217,"weaponDamageMax":7832,"stats":{"2":1100,"3":653,"4":491,"11":377,"14":9797},"upgradeStep":1}}}, +{"id":96043,"name":"Robes of Treacherous Ground","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2663,1615,847,0,0,0,0,0,0,1254,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":376,"11":577,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":780,"11":1158,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":813,"11":1205,"22":3242},"upgradeStep":1}}}, +{"id":96044,"name":"Gaze of Gara'jal","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1535,2663,0,0,0,1044,1084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":959,"7":999,"22":3623}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1001,"7":1041,"22":3666},"upgradeStep":1}}}, +{"id":96045,"name":"Loa-Ridden Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1484,909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":1561}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"22":1951}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"22":1974},"upgradeStep":1}}}, +{"id":96046,"name":"Overloaded Bladebreaker Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1615,0,2663,0,0,819,0,0,0,0,1269,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"10":585,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"5":755,"10":1173,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"5":787,"10":1220,"22":6161},"upgradeStep":1}}}, +{"id":96047,"name":"Zerat, Malakk's Soulburning Greatsword","icon":"inv_sword_2h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1695,0,2663,0,0,1270,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"5":593,"6":440}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"5":1174,"6":844}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"5":1221,"6":877},"upgradeStep":1}}}, +{"id":96048,"name":"Talisman of Angry Spirits","icon":"inv_jewelry_necklace_139","type":2,"stats":[989,0,1484,0,0,0,679,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":335,"11":309}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"6":630,"11":582}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"6":654,"11":604},"upgradeStep":1}}}, +{"id":96049,"name":"Fortitude of the Zandalari","icon":"spell_holy_mindvision","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"528":{"randPropPoints":2328,"stats":{"11":1552}},"532":{"randPropPoints":2416,"stats":{"11":1611},"upgradeStep":1}}}, +{"id":96050,"name":"Shattered Tortoiseshell Longbow","icon":"inv_bow_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1695,2663,0,0,1085,0,0,1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"5":514,"8":560}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1568,"2":2472,"5":1004,"8":1091}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1631,"2":2566,"5":1044,"8":1134},"upgradeStep":1}}}, +{"id":96051,"name":"Rockfall Ribwraps","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1615,2663,0,0,987,1173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"6":537,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"5":911,"6":1083,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"5":948,"6":1127,"22":3242},"upgradeStep":1}}}, +{"id":96052,"name":"Grips of Vampiric Cruelty","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1239,1979,0,0,817,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"7":400,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"5":756,"7":789,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"5":786,"7":820,"22":2026},"upgradeStep":1}}}, +{"id":96053,"name":"Beady-Eye Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,909,1484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1561}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"22":1951}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"22":1974},"upgradeStep":1}}}, +{"id":96054,"name":"Quakestompers","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1239,1979,0,0,0,825,845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"6":764,"7":781,"22":3066}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"6":794,"7":812,"22":3102},"upgradeStep":1}}}, +{"id":96055,"name":"Shoulderguards of Centripetal Destruction","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1239,0,1979,0,0,0,962,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":454,"7":289,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"6":891,"7":580,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"6":926,"7":604,"22":4621},"upgradeStep":1}}}, +{"id":96056,"name":"Shell-Coated Wristplates","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,0,0,0,735,532,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":362,"10":262,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"9":682,"10":494,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"9":708,"10":512,"22":2696},"upgradeStep":1}}}, +{"id":96057,"name":"Amulet of the Primal Turtle","icon":"inv_jewelry_necklace_118","type":2,"stats":[909,0,1484,0,0,461,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":207,"6":331}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":425,"6":658}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":443,"6":684},"upgradeStep":1}}}, +{"id":96058,"name":"Shellsplitter Greataxe","icon":"inv_axe_1h_thunderisleraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[681,0,1142,0,0,504,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"6":179}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"5":465,"6":373}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"5":484,"6":389},"upgradeStep":1}}}, +{"id":96059,"name":"Beakbreaker Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,0,0,0,0,679,0,627,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"11":309,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"9":630,"11":582,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"9":654,"11":604,"22":1274},"upgradeStep":1}}}, +{"id":96060,"name":"Azure Shell Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1484,989,0,0,726,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":358,"11":270,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"6":674,"11":508,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"6":699,"11":527,"22":1114},"upgradeStep":1}}}, +{"id":96061,"name":"Stonegaze Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2663,1535,1190,0,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":538,"6":354,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1098,"6":794,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1143,"6":829,"22":2070},"upgradeStep":1}}}, +{"id":96062,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,1979,1239,0,0,839,839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":776,"7":776,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":807,"7":807,"22":1592},"upgradeStep":1}}}, +{"id":96063,"name":"Shimmershell Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1484,989,0,0,611,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"11":339,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"6":567,"11":639,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"6":588,"11":663,"22":1274},"upgradeStep":1}}}, +{"id":96064,"name":"Tortos' Discarded Shell","icon":"inv_shield_thunderisleraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1484,909,682,0,0,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":328,"7":229,"22":15628}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":632,"7":488,"22":19533}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":656,"7":509,"22":19762},"upgradeStep":1}}}, +{"id":96065,"name":"Vampire Bat-Hide Bracers","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,0,1484,989,698,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":1122}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":648,"7":552,"22":1402}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":672,"7":573,"22":1419},"upgradeStep":1}}}, +{"id":96066,"name":"Robes of Concussive Shocks","icon":"inv_robe_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2663,1615,1104,0,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1019,"7":1019,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1061,"7":1061,"22":3242},"upgradeStep":1}}}, +{"id":96067,"name":"Spaulders of Quaking Fear","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1979,1239,951,0,0,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":448,"7":299,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":880,"7":599,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":915,"7":623,"22":3384},"upgradeStep":1}}}, +{"id":96068,"name":"Refreshing Abalone Girdle","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1979,1159,838,0,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"7":321,"22":2741}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":772,"7":676,"22":3425}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":804,"7":704,"22":3466},"upgradeStep":1}}}, +{"id":96069,"name":"Tortos' Shellseizers","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1979,1239,731,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":676,"6":836,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":703,"6":869,"22":3851},"upgradeStep":1}}}, +{"id":96070,"name":"Megaera's Poisoned Fang","icon":"inv_knife_1h_thunderisleraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,681,1142,0,0,393,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":173,"11":232}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":626,"2":1059,"5":362,"11":472}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":653,"2":1100,"5":377,"11":491},"upgradeStep":1}}}, +{"id":96071,"name":"Quadra-Head Brooch","icon":"inv_jewelry_necklace_140","type":2,"stats":[0,909,1484,0,0,619,0,0,0,0,0,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":285,"11":285}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"5":572,"11":572}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"5":595,"11":595},"upgradeStep":1}}}, +{"id":96072,"name":"Poisonblood Bladeshoulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1239,1979,0,0,0,0,839,0,0,0,839,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":393,"11":393,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":776,"11":776,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":807,"11":807,"22":2432},"upgradeStep":1}}}, +{"id":96073,"name":"Grips of Cinderflesh","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1239,1979,0,0,0,0,774,0,0,0,878,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":361,"11":412,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":716,"11":812,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":744,"11":844,"22":2820},"upgradeStep":1}}}, +{"id":96074,"name":"Plated Toothbreaker Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,799,799,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":353,"10":353,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"9":736,"10":736,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"9":767,"10":767,"22":3466},"upgradeStep":1}}}, +{"id":96075,"name":"Rot-Proof Greatplate","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1615,0,2663,0,0,0,0,0,0,1104,0,1104,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":503,"11":503,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"9":1019,"11":1019,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"9":1061,"11":1061,"22":6161},"upgradeStep":1}}}, +{"id":96076,"name":"Spinescale Seal","icon":"inv_jewelry_ring_164","type":11,"stats":[989,0,1484,0,0,669,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"6":317}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":621,"6":597}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":645,"6":619},"upgradeStep":1}}}, +{"id":96077,"name":"Hydraskull Choker","icon":"inv_jewelry_necklace_125","type":2,"stats":[989,0,1484,0,0,0,0,0,0,743,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":366,"10":254}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"9":690,"10":479}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"9":716,"10":497},"upgradeStep":1}}}, +{"id":96078,"name":"Sandals of Arcane Fury","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1979,1239,0,845,825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":392,"6":390,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":781,"6":764,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":812,"6":794,"22":1751},"upgradeStep":1}}}, +{"id":96079,"name":"Gleaming-Eye Shoulderpads","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1239,817,0,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"6":400,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":756,"6":789,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":786,"6":820,"22":1911},"upgradeStep":1}}}, +{"id":96080,"name":"Frostborn Wristwraps","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1484,909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"22":1114},"upgradeStep":1}}}, +{"id":96081,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,1484,989,0,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":612,"6":612}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":635,"6":635},"upgradeStep":1}}}, +{"id":96082,"name":"Fetish of the Hydra","icon":"inv_offhand_1h_thunderisleraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,0,649,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"6":261}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"5":599,"6":527}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"5":623,"6":548},"upgradeStep":1}}}, +{"id":96083,"name":"Breath of the Hydra","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"528":{"randPropPoints":2328,"stats":{"7":1552}},"532":{"randPropPoints":2416,"stats":{"7":1611},"upgradeStep":1}}}, +{"id":96084,"name":"Inscribed Bag of Hydra-Spawn","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"528":{"randPropPoints":2328,"stats":{"4":1552}},"532":{"randPropPoints":2416,"stats":{"4":1611},"upgradeStep":1}}}, +{"id":96085,"name":"Hood of Smoldering Flesh","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2663,1535,1157,0,923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"6":382,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1067,"6":847,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1111,"6":884,"22":2634},"upgradeStep":1}}}, +{"id":96086,"name":"Links of the Bifurcated Tongue","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1979,1159,813,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2007}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":749,"11":716,"22":2508}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":780,"11":746,"22":2538},"upgradeStep":1}}}, +{"id":96087,"name":"Chain of Consuming Magic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2663,1615,1238,0,0,0,0,0,0,874,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":569,"11":390,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1144,"11":806,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1190,"11":840,"22":4511},"upgradeStep":1}}}, +{"id":96088,"name":"Ice-Scored Treads","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1979,1239,831,0,0,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"11":401,"22":3350}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":768,"11":784,"22":4187}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":799,"11":815,"22":4236},"upgradeStep":1}}}, +{"id":96089,"name":"Pinionfeather Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,909,1484,0,0,0,603,0,0,0,0,629,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":277,"11":290,"22":1007}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"6":557,"11":581,"22":1259}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"6":579,"11":605,"22":1274},"upgradeStep":1}}}, +{"id":96090,"name":"Cord of Cacophonous Cawing","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,1979,1159,0,863,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"7":300,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":796,"7":636,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":829,"7":663,"22":1433},"upgradeStep":1}}}, +{"id":96091,"name":"Robe of Midnight Down","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2663,1615,0,0,0,930,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":418,"11":554,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"7":858,"11":1114,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"7":893,"11":1159,"22":2547},"upgradeStep":1}}}, +{"id":96092,"name":"Giorgio's Caduceus of Pure Moods","icon":"inv_stave_2h_thunderisleraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,1238,0,0,966,0,0,0,0,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":578,"7":468,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"4":1145,"7":896,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"4":1191,"7":930,"14":9798},"upgradeStep":1}}}, +{"id":96093,"name":"Featherflight Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1159,1979,0,0,0,0,899,629,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":402,"8":269,"22":1442}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":829,"8":578,"22":1803}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":863,"8":603,"22":1824},"upgradeStep":1}}}, +{"id":96094,"name":"Grasp of the Ruthless Mother","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1979,1319,793,0,0,0,0,0,0,931,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"11":458,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"4":736,"11":864,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"4":764,"11":897,"22":2820},"upgradeStep":1}}}, +{"id":96095,"name":"Crown of Potentiated Birth","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2663,1535,1249,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":565,"7":303,"22":3959}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1153,"7":695,"22":4948}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1200,"7":727,"22":5006},"upgradeStep":1}}}, +{"id":96096,"name":"Talonrender Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1615,0,2663,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"6":460,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"5":1067,"6":937,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"5":1111,"6":976,"22":6161},"upgradeStep":1}}}, +{"id":96097,"name":"Egg-Shard Grips","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"8":580,"10":891,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"8":604,"10":926,"22":3851},"upgradeStep":1}}}, +{"id":96098,"name":"Fabled Feather of Ji-Kun","icon":"ability_priest_angelicfeather","type":12,"stats":[0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"528":{"randPropPoints":2328,"stats":{"5":1552}},"532":{"randPropPoints":2416,"stats":{"5":1611},"upgradeStep":1}}}, +{"id":96099,"name":"Ji-Kun's Rising Winds","icon":"spell_holy_heal","type":12,"stats":[0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"528":{"randPropPoints":2328,"stats":{"8":1552}},"532":{"randPropPoints":2416,"stats":{"8":1611},"upgradeStep":1}}}, +{"id":96100,"name":"Durumu's Baleful Gaze","icon":"inv_bow_2h_crossbow_thunderisleraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1695,2663,0,0,0,1213,1027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":15566,"weaponDamageMax":23350,"weaponSpeed":3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"6":577,"7":486}},"528":{"randPropPoints":3134,"weaponDamageMin":14448,"weaponDamageMax":21673,"stats":{"1":1568,"2":2472,"6":1123,"7":951}},"532":{"randPropPoints":3253,"weaponDamageMin":14997,"weaponDamageMax":22496,"stats":{"1":1631,"2":2566,"6":1167,"7":988},"upgradeStep":1}}}, +{"id":96101,"name":"Crimson Bloom Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1615,2663,0,0,1238,874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":569,"6":390,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"5":1144,"6":806,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"5":1190,"6":840,"22":2837},"upgradeStep":1}}}, +{"id":96102,"name":"Links of the Disintegrator","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,1159,1979,0,0,0,851,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":378,"7":310,"22":2007}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":784,"7":656,"22":2508}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":817,"7":684,"22":2538},"upgradeStep":1}}}, +{"id":96103,"name":"Aberrant Chestguard of Torment","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1615,2663,0,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1067,"7":937,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1111,"7":976,"22":4511},"upgradeStep":1}}}, +{"id":96104,"name":"Caustic Spike Bracers","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[909,0,1484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"22":2696},"upgradeStep":1}}}, +{"id":96105,"name":"Legplates of the Dark Parasite","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,0,1190,958,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"8":432,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"7":1099,"8":884,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"7":1143,"8":921,"22":5391},"upgradeStep":1}}}, +{"id":96106,"name":"Treads of the Blind Eye","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,0,782,870,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":369,"10":404,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"9":724,"10":804,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"9":752,"10":836,"22":4236},"upgradeStep":1}}}, +{"id":96107,"name":"Artery Rippers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,761,829,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":326,"10":376,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"9":700,"10":765,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"9":730,"10":796,"22":3851},"upgradeStep":1}}}, +{"id":96108,"name":"Reinforced Mirror-Sheen Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[909,0,1484,0,0,0,0,0,0,712,461,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":331,"10":207,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"9":658,"10":425,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"9":684,"10":443,"22":1274},"upgradeStep":1}}}, +{"id":96109,"name":"Durumu's Severed Tentacle","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[909,0,1484,0,0,615,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":271,"9":293}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":566,"9":566}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":590,"9":588},"upgradeStep":1}}}, +{"id":96110,"name":"Lifedrainer's Sordid Grip","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,675,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"7":400,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":620,"7":812,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":647,"7":845,"22":1592},"upgradeStep":1}}}, +{"id":96111,"name":"Leggings of Pulsing Blood","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2663,1615,0,0,1269,0,0,0,0,819,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1173,"11":755,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1220,"11":787,"22":2229},"upgradeStep":1}}}, +{"id":96112,"name":"Chilblain Spaulders","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1979,1239,0,0,796,0,0,0,0,865,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":372,"11":406,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":736,"11":800,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":765,"11":832,"22":1911},"upgradeStep":1}}}, +{"id":96113,"name":"Deadly Glare Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1484,909,0,0,587,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":269,"7":295,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"6":542,"7":590,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"6":564,"7":614,"22":1274},"upgradeStep":1}}}, +{"id":96114,"name":"Durumu's Captive Eyeball","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,1484,909,679,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"6":238}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":626,"6":463}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":652,"6":481},"upgradeStep":1}}}, +{"id":96115,"name":"Ritual Dagger of the Mind's Eye","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1142,681,504,0,405,0,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3030,"weaponDamageMax":5628,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":228,"6":179,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2812,"weaponDamageMax":5224,"stats":{"2":1059,"3":626,"4":465,"6":373,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":2919,"weaponDamageMax":5422,"stats":{"2":1100,"3":653,"4":484,"6":389,"14":9797},"upgradeStep":1}}}, +{"id":96116,"name":"Sandals of the Starving Eye","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,1979,1239,895,0,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"6":348,"22":1763}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":828,"6":684,"22":2203}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":861,"6":711,"22":2229},"upgradeStep":1}}}, +{"id":96117,"name":"Vein-Cover Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1484,989,743,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"7":254,"22":1561}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":690,"7":479,"22":1951}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":716,"7":497,"22":1974},"upgradeStep":1}}}, +{"id":96118,"name":"Iceshatter Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,1979,1159,872,0,0,0,0,0,0,666,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":802,"11":613,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":836,"11":639,"22":3851},"upgradeStep":1}}}, +{"id":96119,"name":"Legplates of Re-Emergence","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2663,1615,0,0,1016,1156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":460,"7":529,"22":4263}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":937,"7":1067,"22":5328}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":976,"7":1111,"22":5391},"upgradeStep":1}}}, +{"id":96120,"name":"Talisman of Bloodlust","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"528":{"randPropPoints":2328,"stats":{"1":1552}},"532":{"randPropPoints":2416,"stats":{"1":1611},"upgradeStep":1}}}, +{"id":96121,"name":"Gloves of Cushioned Air","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,654,0,0,0,0,892,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":274,"11":407,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":601,"11":823,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":627,"11":856,"22":2026},"upgradeStep":1}}}, +{"id":96122,"name":"Bracers of Mutagenic Fervor","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,989,1484,0,0,0,0,547,0,0,0,726,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358,"22":1561}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":508,"11":674,"22":1951}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":527,"11":699,"22":1974},"upgradeStep":1}}}, +{"id":96123,"name":"Synapse-String Handguards","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1159,1979,0,0,0,815,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"7":337,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":752,"7":720,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":783,"7":751,"22":2820},"upgradeStep":1}}}, +{"id":96124,"name":"Pathogenic Gauntlets","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,654,0,892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":274,"7":407,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":601,"7":823,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":627,"7":856,"22":3851},"upgradeStep":1}}}, +{"id":96125,"name":"Black Blood Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,0,0,0,1074,1122,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":488,"10":512,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"9":991,"10":1035,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"9":1032,"10":1078,"22":5391},"upgradeStep":1}}}, +{"id":96126,"name":"Metabolically Boosted Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,0,817,853,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":382,"10":400,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"9":756,"10":789,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"9":786,"10":820,"22":4621},"upgradeStep":1}}}, +{"id":96127,"name":"Hydra-Scale Bloodcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[909,0,1484,0,0,0,658,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":304,"8":253,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"6":608,"8":512,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"6":632,"8":533,"22":1274},"upgradeStep":1}}}, +{"id":96128,"name":"Band of the Scaled Tyrant","icon":"inv_jewelry_ring_177","type":11,"stats":[909,0,1484,0,0,547,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":261,"7":289}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":506,"7":601}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":526,"7":626},"upgradeStep":1}}}, +{"id":96129,"name":"Primordius' Talisman of Rage","icon":"ability_warrior_rampage","type":12,"stats":[0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"528":{"randPropPoints":2328,"stats":{"6":1552}},"532":{"randPropPoints":2416,"stats":{"6":1611},"upgradeStep":1}}}, +{"id":96130,"name":"Acid-Spine Bonemace","icon":"inv_mace_1h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[681,0,1142,0,0,0,0,0,0,511,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8081,"weaponDamageMax":15009,"weaponSpeed":2.4,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":295,"2":562,"9":232,"10":173}},"528":{"randPropPoints":1343,"weaponDamageMin":7501,"weaponDamageMax":13931,"stats":{"0":626,"2":1059,"9":472,"10":362}},"532":{"randPropPoints":1394,"weaponDamageMin":7786,"weaponDamageMax":14460,"stats":{"0":653,"2":1100,"9":491,"10":377},"upgradeStep":1}}}, +{"id":96131,"name":"Robes of Mutagenic Blood","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2663,1615,0,0,1139,1045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"7":474,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1051,"7":964,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1094,"7":1004,"22":2547},"upgradeStep":1}}}, +{"id":96132,"name":"Helix-Breaker Gloves","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,860,0,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":375,"6":306,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":791,"6":633,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":824,"6":659,"22":1592},"upgradeStep":1}}}, +{"id":96133,"name":"Leggings of Ebon Veins","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2663,1615,1104,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1019,"6":1019,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1061,"6":1061,"22":2229},"upgradeStep":1}}}, +{"id":96134,"name":"Bracers of Fragile Bone","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1484,989,0,0,669,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"6":621,"7":597,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"6":645,"7":619,"22":1114},"upgradeStep":1}}}, +{"id":96135,"name":"Stolen Relic of Zuldazar","icon":"spell_fire_twilightfireward","type":12,"stats":[0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"528":{"randPropPoints":2328,"stats":{"4":1552}},"532":{"randPropPoints":2416,"stats":{"4":1611},"upgradeStep":1}}}, +{"id":96136,"name":"Leggings of the Malformed Sapling","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2663,1615,1190,0,958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"6":432,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"6":884,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"6":921,"22":2837},"upgradeStep":1}}}, +{"id":96137,"name":"Clear-Mind Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2663,1535,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2899}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":995,"11":951,"22":3623}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":1038,"11":992,"22":3666},"upgradeStep":1}}}, +{"id":96138,"name":"Bonemender Bracers","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1484,989,643,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330,"22":2132}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":597,"7":621,"22":2664}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":619,"7":645,"22":2696},"upgradeStep":1}}}, +{"id":96139,"name":"Spaulders of Primordial Growth","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1979,1239,962,0,0,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"7":289,"22":3654}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":891,"7":580,"22":4567}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":926,"7":604,"22":4621},"upgradeStep":1}}}, +{"id":96140,"name":"Greatshield of the Gloaming","icon":"inv_shield_thunderisleraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,0,627,0,605,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"11":266,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"9":581,"11":557,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"9":603,"11":581,"22":19762},"upgradeStep":1}}}, +{"id":96141,"name":"Gore-Soaked Gear","icon":"inv_jewelry_ring_180","type":11,"stats":[0,909,1484,0,0,0,643,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"7":269}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"6":593,"7":521}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"6":617,"7":541},"upgradeStep":1}}}, +{"id":96142,"name":"Hand of the Dark Animus","icon":"inv_mace_1h_thunderisleraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,681,1142,0,0,0,0,511,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":232,"8":173}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"7":472,"8":362}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"7":491,"8":377},"upgradeStep":1}}}, +{"id":96143,"name":"Hood of the Crimson Wake","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,0,1044,0,0,0,1084,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":959,"11":999,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":1001,"11":1041,"22":2070},"upgradeStep":1}}}, +{"id":96144,"name":"Cha-Ye's Essence of Brilliance","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"528":{"randPropPoints":2328,"stats":{"6":1552}},"532":{"randPropPoints":2416,"stats":{"6":1611},"upgradeStep":1}}}, +{"id":96145,"name":"Constantly Accelerating Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1484,909,555,0,0,658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":253,"7":304,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":512,"7":608,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":533,"7":632,"22":1274},"upgradeStep":1}}}, +{"id":96146,"name":"Athame of the Sanguine Ritual","icon":"inv_knife_1h_thunderisleraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1142,681,0,0,0,467,0,0,0,467,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3030,"weaponDamageMax":5628,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"7":210,"11":210,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2812,"weaponDamageMax":5224,"stats":{"2":1059,"3":626,"7":431,"11":431,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":2919,"weaponDamageMax":5422,"stats":{"2":1100,"3":653,"7":449,"11":449,"14":9797},"upgradeStep":1}}}, +{"id":96147,"name":"Worldbinder Leggings","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,874,0,0,0,0,1238,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":390,"11":569,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":806,"11":1144,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":840,"11":1190,"22":2837},"upgradeStep":1}}}, +{"id":96148,"name":"Anima-Ringed Fingers","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,1979,1159,809,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"6":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"6":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"6":741,"22":2026},"upgradeStep":1}}}, +{"id":96149,"name":"Matter-Swapped Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2663,1615,1139,0,0,0,0,0,0,1045,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"11":474,"22":4263}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1051,"11":964,"22":5328}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1094,"11":1004,"22":5391},"upgradeStep":1}}}, +{"id":96150,"name":"Crown of the Golden Golem","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,1130,938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":485,"7":412,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":1039,"7":864,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":1083,"7":901,"22":5006},"upgradeStep":1}}}, +{"id":96151,"name":"Delicate Vial of the Sanguinaire","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"528":{"randPropPoints":2328,"stats":{"9":1552}},"532":{"randPropPoints":2416,"stats":{"9":1611},"upgradeStep":1}}}, +{"id":96152,"name":"Iron Qon's Boot Knife","icon":"inv_knife_1h_thunderisleraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,681,1142,0,0,345,0,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":150,"7":245}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":626,"2":1059,"5":318,"7":497}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":653,"2":1100,"5":331,"7":517},"upgradeStep":1}}}, +{"id":96153,"name":"Voice of the Quilen","icon":"inv_firearm_2h_rifle_thunderisleraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1775,2583,0,0,1114,0,1162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1232,"5":528,"7":552}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1648,"2":2392,"5":1031,"7":1075}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1711,"2":2486,"5":1072,"7":1118},"upgradeStep":1}}}, +{"id":96154,"name":"Quet'zal's Crackling Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1979,1159,756,0,825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"6":366,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":696,"6":760,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":725,"6":792,"22":1433},"upgradeStep":1}}}, +{"id":96155,"name":"Saddle-Scarred Leggings","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":2229},"upgradeStep":1}}}, +{"id":96156,"name":"Dam'ren's Frozen Footguards","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1979,1239,0,723,0,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":332,"7":432,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":668,"7":844,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":695,"7":877,"22":1751},"upgradeStep":1}}}, +{"id":96157,"name":"Ro'shak's Remembrance","icon":"inv_jewelry_ring_168","type":11,"stats":[0,0,1484,909,0,0,710,0,0,0,0,483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":342,"11":206}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"6":658,"11":444}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"6":683,"11":463},"upgradeStep":1}}}, +{"id":96158,"name":"Orb of Arcing Lightning","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,703,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":650,"7":439}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":676,"7":457},"upgradeStep":1}}}, +{"id":96159,"name":"Spurs of the Storm Cavalry","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,1239,1979,0,0,0,831,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":385,"11":401,"22":1763}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"6":768,"11":784,"22":2203}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"6":799,"11":815,"22":2229},"upgradeStep":1}}}, +{"id":96160,"name":"Ro'shak's Molten Chain","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2663,1615,1104,0,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1019,"7":1019,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1061,"7":1061,"22":4511},"upgradeStep":1}}}, +{"id":96161,"name":"Rein-Binder's Fists","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,883,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"7":285,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"6":813,"7":594,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"6":847,"7":619,"22":3851},"upgradeStep":1}}}, +{"id":96162,"name":"Qon's Flaming Scimitar","icon":"inv_sword_1h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[681,0,1142,0,0,0,0,0,467,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":210,"11":210}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"8":431,"11":431}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"8":449,"11":449},"upgradeStep":1}}}, +{"id":96163,"name":"Wu-Lai, Bladed Fan of the Consorts","icon":"inv_hand_1h_thunderisleraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,681,1142,0,0,0,430,490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":191,"7":221}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"6":396,"7":452}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"6":412,"7":470},"upgradeStep":1}}}, +{"id":96164,"name":"Robes of the Moon Lotus","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2663,1615,1104,0,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1019,"7":1019,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1061,"7":1061,"22":2547},"upgradeStep":1}}}, +{"id":96165,"name":"Passionfire Choker","icon":"inv_jewelry_necklace_123","type":2,"stats":[0,0,1484,909,587,0,639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":269,"6":295}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":542,"6":590}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":564,"6":614},"upgradeStep":1}}}, +{"id":96166,"name":"Shield of Twinned Despair","icon":"inv_shield_zandalari_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1484,909,719,0,0,0,0,0,0,468,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":346,"11":198,"22":15628}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":666,"11":430,"22":19533}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":692,"11":448,"22":19762},"upgradeStep":1}}}, +{"id":96167,"name":"Suen-Wo, Spire of the Falling Sun","icon":"inv_stave_2h_thunderisleraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,0,0,0,1254,0,0,0,974,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"7":609,"11":448,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"7":1163,"11":900,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"7":1207,"11":937,"14":9798},"upgradeStep":1}}}, +{"id":96168,"name":"Bracers of the Midnight Comet","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,909,1484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1122}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"22":1402}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"22":1419},"upgradeStep":1}}}, +{"id":96169,"name":"Girdle of Night and Day","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,0,1979,1159,799,0,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":736,"7":736,"22":1803}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":767,"7":767,"22":1824},"upgradeStep":1}}}, +{"id":96170,"name":"Tidal Force Treads","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,0,931,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":434,"7":317,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"6":861,"7":626,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"6":895,"7":651,"22":4236},"upgradeStep":1}}}, +{"id":96171,"name":"Gaze of the Twins","icon":"spell_shadow_spectralsight","type":12,"stats":[1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"528":{"randPropPoints":2328,"stats":{"0":1552}},"532":{"randPropPoints":2416,"stats":{"0":1611},"upgradeStep":1}}}, +{"id":96172,"name":"Moonjade Necklace","icon":"inv_jewelry_necklace_120","type":2,"stats":[909,0,1484,0,0,0,0,0,619,619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"9":285}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"8":572,"9":572}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"8":595,"9":595},"upgradeStep":1}}}, +{"id":96173,"name":"Fingers of the Night","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,1979,1239,939,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":869,"6":618,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":903,"6":643,"22":2820},"upgradeStep":1}}}, +{"id":96174,"name":"Rune of Re-Origination","icon":"inv_offhand_1h_ulduarraid_d_01","type":12,"stats":[0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"528":{"randPropPoints":2328,"stats":{"1":1552}},"532":{"randPropPoints":2416,"stats":{"1":1611},"upgradeStep":1}}}, +{"id":96175,"name":"Shan-Dun, Breaker of Hope","icon":"inv_polearm_2h_thunderisleraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1695,2663,0,0,0,0,1120,1168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"8":567}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"1":1568,"2":2472,"7":1035,"8":1083}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"1":1631,"2":2566,"7":1077,"8":1125},"upgradeStep":1}}}, +{"id":96176,"name":"Fusion Slasher Chestguard","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1615,2663,0,0,0,1045,0,0,0,0,1139,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":964,"11":1051,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1004,"11":1094,"22":3242},"upgradeStep":1}}}, +{"id":96177,"name":"Conduit-Breaker Chain Leggings","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1535,2663,0,0,0,1072,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":471,"7":455,"22":3122}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":987,"7":971,"22":3902}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1029,"7":1013,"22":3948},"upgradeStep":1}}}, +{"id":96178,"name":"Doomed Crown of Lei Shen","icon":"achievement_boss_leishen","type":1,"armorType":4,"stats":[1535,0,2663,0,0,799,0,0,0,0,0,1209,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":343,"11":525,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"5":735,"11":1113,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"5":767,"11":1160,"22":5006},"upgradeStep":1}}}, +{"id":96179,"name":"Legplates of the Lightning Throne","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1535,0,2663,0,0,0,1237,771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":553,"7":315,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":1141,"7":707,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":1188,"7":739,"22":5391},"upgradeStep":1}}}, +{"id":96180,"name":"Legplates of Whipping Ionization","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,1158,0,910,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":513,"11":384,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"9":1067,"11":836,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"9":1111,"11":873,"22":5391},"upgradeStep":1}}}, +{"id":96181,"name":"Uroe, Harbinger of Terror","icon":"inv_axe_2h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1695,0,2663,0,0,0,1285,0,0,0,0,883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":601,"11":427}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"6":1189,"11":819}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"6":1236,"11":851},"upgradeStep":1}}}, +{"id":96182,"name":"Ultimate Protection of the Emperor","icon":"inv_shield_mogu_c_01","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,0,0,643,563,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":285,"11":269,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"10":593,"11":521,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"10":617,"11":541,"22":19762},"upgradeStep":1}}}, +{"id":96183,"name":"Soul Barrier","icon":"spell_warlock_demonsoul","type":12,"stats":[0,0,2508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"528":{"randPropPoints":2328,"stats":{"2":2328}},"532":{"randPropPoints":2416,"stats":{"2":2416},"upgradeStep":1}}}, +{"id":96184,"name":"Legwraps of Cardinality","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2663,1535,0,787,1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":331,"6":537,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"5":723,"6":1125,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"5":755,"6":1172,"22":2229},"upgradeStep":1}}}, +{"id":96185,"name":"Gloves of the Maimed Vizier","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,906,0,0,0,0,0,0,604,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":398,"11":265,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":835,"11":556,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":870,"11":580,"22":1592},"upgradeStep":1}}}, +{"id":96186,"name":"Unerring Vision of Lei Shen","icon":"ability_hunter_focusedaim","type":12,"stats":[0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"528":{"randPropPoints":2328,"stats":{"3":1552}},"532":{"randPropPoints":2416,"stats":{"3":1611},"upgradeStep":1}}}, +{"id":96187,"name":"Torall, Rod of the Shattered Throne","icon":"inv_mace_1h_thunderisleraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1062,761,538,0,0,345,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":4040,"weaponDamageMax":7504,"weaponSpeed":2.4,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":482,"3":375,"4":245,"7":150,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3750,"weaponDamageMax":6965,"stats":{"2":979,"3":706,"4":497,"7":318,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3893,"weaponDamageMax":7230,"stats":{"2":1020,"3":733,"4":517,"7":331,"14":9797},"upgradeStep":1}}}, +{"id":96188,"name":"Soul Prism of Lei Shen","icon":"inv_jewelry_necklace_136","type":2,"stats":[0,0,1484,829,672,0,0,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":328,"4":291,"7":167}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":758,"4":618,"7":385}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":793,"4":644,"7":403},"upgradeStep":1}}}, +{"id":96189,"name":"Lightning-Imbued Chalice","icon":"spell_mage_runeofpower","type":12,"stats":[0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"528":{"randPropPoints":2328,"stats":{"3":1552}},"532":{"randPropPoints":2416,"stats":{"3":1611},"upgradeStep":1}}}, +{"id":96190,"name":"Lei Shen's Orb of Command","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,0,0,677,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":313,"7":237}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"6":625,"7":482}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"6":650,"7":502},"upgradeStep":1}}}, +{"id":96191,"name":"Grips of Slicing Electricity","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,1979,1159,872,0,0,0,0,0,0,666,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":802,"11":613,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":836,"11":639,"22":2026},"upgradeStep":1}}}, +{"id":96192,"name":"Leggings of the Violent Gale","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2663,1535,1190,0,0,0,0,0,0,842,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"11":358,"22":3122}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1096,"11":774,"22":3902}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1142,"11":808,"22":3948},"upgradeStep":1}}}, +{"id":96193,"name":"Lei Shen's Grounded Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2663,1615,1104,0,0,1104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":4872}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1019,"7":1019,"22":6090}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1061,"7":1061,"22":6161},"upgradeStep":1}}}, +{"id":96230,"name":"Invocation of the Dawn","icon":"inv_mace_2h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,2663,1775,0,0,1096,0,0,0,0,1236,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":9340,"weaponDamageMax":14010,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4600,"weaponDamageMax":6901,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":8669,"weaponDamageMax":13004,"stats":{"2":2472,"3":1648,"6":1017,"11":1147,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8998,"weaponDamageMax":13498,"stats":{"2":2566,"3":1711,"6":1056,"11":1191,"14":9798},"upgradeStep":1}}}, +{"id":96231,"name":"Miracoran, the Vehement Chord","icon":"inv_bow_1h_zandalari_c_01","type":14,"rangedWeaponType":1,"stats":[0,1695,2663,0,0,0,0,914,0,0,0,1278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":430,"11":609}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1568,"2":2472,"7":846,"11":1184}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1631,"2":2566,"7":880,"11":1230},"upgradeStep":1}}}, +{"id":96232,"name":"Fyn's Flickering Dagger","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,761,1062,0,0,0,0,504,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":482,"7":228,"8":179}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":706,"2":979,"7":465,"8":373}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":733,"2":1020,"7":484,"8":389},"upgradeStep":1}}}, +{"id":96233,"name":"Zeeg's Ancient Kegsmasher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,681,1142,0,0,0,0,0,525,0,0,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8081,"weaponDamageMax":15009,"weaponSpeed":2.4,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"1":295,"2":562,"8":238,"11":162}},"528":{"randPropPoints":1343,"weaponDamageMin":7501,"weaponDamageMax":13931,"stats":{"1":626,"2":1059,"8":484,"11":340}},"532":{"randPropPoints":1394,"weaponDamageMin":7786,"weaponDamageMax":14460,"stats":{"1":653,"2":1100,"8":504,"11":354},"upgradeStep":1}}}, +{"id":96234,"name":"Darkwood Spiritstaff","icon":"inv_staff_2h_zandalari_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,1695,2663,0,0,0,1022,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":17123,"weaponDamageMax":25685,"weaponSpeed":3.3,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":496,"11":561}},"528":{"randPropPoints":3134,"weaponDamageMin":15893,"weaponDamageMax":23840,"stats":{"1":1568,"2":2472,"6":948,"11":1115}},"532":{"randPropPoints":3253,"weaponDamageMin":16497,"weaponDamageMax":24746,"stats":{"1":1631,"2":2566,"6":985,"11":1159},"upgradeStep":1}}}, +{"id":96235,"name":"Lost Shoulders of Fire","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,1979,1239,0,677,0,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":317,"7":434,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":626,"7":861,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":651,"7":895,"22":1911},"upgradeStep":1}}}, +{"id":96236,"name":"Lost Shoulders of Healing","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1239,916,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":847,"7":657,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":880,"7":683,"22":1911},"upgradeStep":1}}}, +{"id":96237,"name":"Lost Shoulders of Fluidity","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,1979,1239,0,0,839,839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":776,"7":776,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":807,"7":807,"22":1911},"upgradeStep":1}}}, +{"id":96238,"name":"Nadagast's Exsanguinator","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1142,681,0,475,455,0,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3030,"weaponDamageMax":5628,"weaponSpeed":1.8,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2812,"weaponDamageMax":5224,"stats":{"2":1059,"3":626,"5":438,"6":419,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":2919,"weaponDamageMax":5422,"stats":{"2":1100,"3":653,"5":456,"6":436,"14":9797},"upgradeStep":1}}}, +{"id":96239,"name":"Jerthud, Graceful Hand of the Savior","icon":"inv_mace_1h_zandalari_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,1142,681,357,0,0,0,0,0,0,532,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":4040,"weaponDamageMax":7504,"weaponSpeed":2.4,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3750,"weaponDamageMax":6965,"stats":{"2":1059,"3":626,"4":329,"11":491,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3893,"weaponDamageMax":7230,"stats":{"2":1100,"3":653,"4":343,"11":511,"14":9797},"upgradeStep":1}}}, +{"id":96240,"name":"Forgotten Mantle of the Moon","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1239,1979,0,0,0,0,962,628,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":891,"8":580,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":926,"8":604,"22":2432},"upgradeStep":1}}}, +{"id":96241,"name":"Forgotten Mantle of the Sun","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,1979,1239,0,0,0,796,0,0,0,865,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":372,"11":406,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":736,"11":800,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":765,"11":832,"22":2432},"upgradeStep":1}}}, +{"id":96242,"name":"Abandoned Spaulders of Arrowflight","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1239,1979,0,0,0,0,628,0,0,0,962,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":289,"11":454,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":580,"11":891,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":604,"11":926,"22":3384},"upgradeStep":1}}}, +{"id":96243,"name":"Abandoned Spaulders of Renewal","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,1979,1239,0,0,817,0,0,0,0,853,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"11":400,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":756,"11":789,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":786,"11":820,"22":3384},"upgradeStep":1}}}, +{"id":96244,"name":"Reconstructed Holy Shoulderplates","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,1979,1239,0,0,0,853,0,0,0,817,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":3654}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":789,"11":756,"22":4567}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":820,"11":786,"22":4621},"upgradeStep":1}}}, +{"id":96245,"name":"Reconstructed Furious Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1239,0,1979,0,0,0,0,865,0,0,0,796,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"7":800,"11":736,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"7":832,"11":765,"22":4621},"upgradeStep":1}}}, +{"id":96246,"name":"Reconstructed Bloody Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,628,0,962,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"8":580,"10":891,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"8":604,"10":926,"22":4621},"upgradeStep":1}}}, +{"id":96247,"name":"Greatsword of Frozen Hells","icon":"inv_sword_2h_mogu_c_01","type":13,"weaponType":9,"handType":4,"stats":[1695,0,2663,0,0,0,1080,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"6":1001,"7":1083}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"6":1040,"7":1127},"upgradeStep":1}}}, +{"id":96248,"name":"Do-tharak, the Swordbreaker","icon":"inv_sword_1h_mogu_c_01","type":13,"weaponType":9,"handType":2,"stats":[681,0,1142,0,0,369,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":162,"11":238}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"5":340,"11":484}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"5":354,"11":504},"upgradeStep":1}}}, +{"id":96249,"name":"Bo-Ris, Horror in the Night","icon":"inv_polearm_2h_mogu_c_01","type":13,"weaponType":6,"handType":4,"stats":[1695,0,2663,0,0,0,0,0,1003,0,0,1237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":462,"11":601}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"8":927,"11":1147}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"8":964,"11":1191},"upgradeStep":1}}}, +{"id":96250,"name":"Visage of the Doomed","icon":"inv_shield_zandalari_c_02","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,0,516,671,0,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":246,"10":298,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"9":478,"10":618,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"9":496,"10":644,"22":19762},"upgradeStep":1}}}, +{"id":96330,"name":"Necklace of the Terra-Cotta Archer","icon":"inv_jewelry_necklace_128","type":2,"stats":[0,909,1484,0,0,0,629,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":290,"7":277}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"6":581,"7":557}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"6":605,"7":579},"upgradeStep":1}}}, +{"id":96331,"name":"Spiderweb Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1319,1979,0,0,0,979,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":482,"8":349,"22":1763}},"528":{"randPropPoints":2328,"stats":{"1":1224,"2":1837,"6":909,"8":658,"22":2203}},"532":{"randPropPoints":2416,"stats":{"1":1271,"2":1906,"6":943,"8":683,"22":2229},"upgradeStep":1}}}, +{"id":96332,"name":"Scalehide Spurs","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,1319,1979,0,0,0,0,879,879,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":433,"8":433,"22":2453}},"528":{"randPropPoints":2328,"stats":{"1":1224,"2":1837,"7":816,"8":816,"22":3066}},"532":{"randPropPoints":2416,"stats":{"1":1271,"2":1906,"7":847,"8":847,"22":3102},"upgradeStep":1}}}, +{"id":96333,"name":"Abandoned Zandalari Firecord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,1979,1239,0,710,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":330,"6":431,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":657,"6":847,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":683,"6":880,"22":1433},"upgradeStep":1}}}, +{"id":96334,"name":"Abandoned Zandalari Shadowgirdle","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,1979,1239,962,0,0,0,0,0,0,628,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":891,"11":580,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":926,"11":604,"22":1433},"upgradeStep":1}}}, +{"id":96335,"name":"Silentflame Sandals","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,1979,1319,0,730,0,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":359,"11":476,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"5":677,"11":898,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"5":703,"11":932,"22":1751},"upgradeStep":1}}}, +{"id":96336,"name":"Necklace of the Terra-Cotta Invoker","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1484,909,0,649,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"7":261}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"5":599,"7":527}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"5":623,"7":548},"upgradeStep":1}}}, +{"id":96337,"name":"Home-Warding Slippers","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1979,1319,0,0,0,836,0,0,0,905,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":412,"11":446,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"7":776,"11":840,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"7":805,"11":872,"22":1751},"upgradeStep":1}}}, +{"id":96338,"name":"Deeproot Treads","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,1979,1319,931,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1763}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"4":864,"7":736,"22":2203}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"4":897,"7":764,"22":2229},"upgradeStep":1}}}, +{"id":96339,"name":"Spiritbound Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1979,1319,0,0,879,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":2453}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"6":816,"11":816,"22":3066}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"6":847,"11":847,"22":3102},"upgradeStep":1}}}, +{"id":96340,"name":"Vaultwalker Sabatons","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1979,1319,0,0,0,879,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3350}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1224,"7":816,"11":816,"22":4187}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1271,"7":847,"11":847,"22":4236},"upgradeStep":1}}}, +{"id":96341,"name":"Necklace of the Terra-Cotta Mender","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1484,909,658,0,0,0,0,0,0,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":304,"11":253}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":608,"11":512}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":632,"11":533},"upgradeStep":1}}}, +{"id":96342,"name":"Abandoned Zandalari Silentbelt","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,1239,1979,0,0,0,903,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":424,"7":340,"22":1442}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"6":836,"7":676,"22":1803}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"6":869,"7":703,"22":1824},"upgradeStep":1}}}, +{"id":96343,"name":"Abandoned Zandalari Moonstrap","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,1979,1239,0,0,939,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":442,"7":309,"22":1442}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":869,"7":618,"22":1803}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":903,"7":643,"22":1824},"upgradeStep":1}}}, +{"id":96344,"name":"Abandoned Zandalari Arrowlinks","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1239,1979,0,0,731,0,0,0,0,0,903,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":340,"11":424,"22":2007}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"5":676,"11":836,"22":2508}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"5":703,"11":869,"22":2538},"upgradeStep":1}}}, +{"id":96345,"name":"Abandoned Zandalari Waterchain","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,1979,1239,0,0,891,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"7":350,"22":2007}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":824,"7":696,"22":2508}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":857,"7":724,"22":2538},"upgradeStep":1}}}, +{"id":96346,"name":"Abandoned Zandalari Greatbelt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,1979,1239,0,0,839,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"11":393,"22":2741}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":776,"11":776,"22":3425}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":807,"11":807,"22":3466},"upgradeStep":1}}}, +{"id":96347,"name":"Abandoned Zandalari Goreplate","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1239,0,1979,0,0,817,853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":382,"6":400,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"5":756,"6":789,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"5":786,"6":820,"22":3466},"upgradeStep":1}}}, +{"id":96348,"name":"Abandoned Zandalari Bucklebreaker","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,0,710,0,916,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":330,"11":431,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"9":657,"11":847,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"9":683,"11":880,"22":3466},"upgradeStep":1}}}, +{"id":96349,"name":"Necklace of the Terra-Cotta Vanquisher","icon":"inv_jewelry_necklace_130","type":2,"stats":[909,0,1484,0,0,667,0,0,0,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":309,"11":245}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":617,"11":497}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":641,"11":517},"upgradeStep":1}}}, +{"id":96350,"name":"Locksmasher Greaves","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1319,0,1979,0,0,688,0,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":339,"7":488,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1224,"2":1837,"5":639,"7":920,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1271,"2":1906,"5":663,"7":955,"22":4236},"upgradeStep":1}}}, +{"id":96351,"name":"Columnbreaker Stompers","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1319,0,1979,0,0,0,0,0,857,0,0,893,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":422,"11":440,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1224,"2":1837,"8":796,"11":829,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1271,"2":1906,"8":826,"11":860,"22":4236},"upgradeStep":1}}}, +{"id":96352,"name":"Necklace of the Terra-Cotta Protector","icon":"inv_jewelry_necklace_130","type":2,"stats":[909,0,1484,0,0,0,0,0,461,0,712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":207,"10":331}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"8":425,"10":658}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"8":443,"10":684},"upgradeStep":1}}}, +{"id":96368,"name":"Sign of the Bloodied God","icon":"inv_jewelry_ring_163","type":11,"stats":[0,1056,1584,0,0,0,0,704,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"7":654,"11":654}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"7":678,"11":678},"upgradeStep":1}}}, +{"id":96369,"name":"Renataki's Soul Charm","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"535":{"randPropPoints":2485,"stats":{"8":1657}},"539":{"randPropPoints":2579,"stats":{"8":1719},"upgradeStep":1}}}, +{"id":96370,"name":"Lightning-Eye Hood","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,0,0,1090,0,0,0,1159,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":460,"11":449,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"7":1006,"11":1065,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"7":1047,"11":1111,"22":2688},"upgradeStep":1}}}, +{"id":96371,"name":"Spearman's Jingling Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1735,2843,0,0,0,0,1239,1090,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":529,"8":460,"22":3122}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1145,"8":1006,"22":3982}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1191,"8":1047,"22":4028},"upgradeStep":1}}}, +{"id":96372,"name":"Static-Shot Shoulderguards","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1328,2112,0,0,0,0,993,739,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":436,"8":319,"22":2676}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":919,"8":683,"22":3413}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":955,"8":710,"22":3452},"upgradeStep":1}}}, +{"id":96373,"name":"Cloudbreaker Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1248,0,2112,0,0,0,0,835,0,0,0,873,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":342,"11":360,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"7":769,"11":804,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"7":802,"11":838,"22":3536},"upgradeStep":1}}}, +{"id":96374,"name":"Chestplate of Violent Detonation","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1735,0,2843,0,0,1221,0,0,0,0,0,1121,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"11":474,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":1128,"11":1035,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":1173,"11":1077,"22":6287},"upgradeStep":1}}}, +{"id":96375,"name":"Bracers of Constant Implosion","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[976,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"22":2750},"upgradeStep":1}}}, +{"id":96376,"name":"Worldbreaker's Stormscythe","icon":"inv_axe_1h_thunderisleraid_d_031","type":13,"weaponType":1,"handType":2,"stats":[733,0,1219,0,0,570,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":242,"8":156}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"0":674,"2":1131,"5":527,"8":354}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"0":703,"2":1174,"5":548,"8":368},"upgradeStep":1}}}, +{"id":96377,"name":"Jin'rokh's Soulcrystal","icon":"inv_jewelry_ring_172","type":11,"stats":[1056,0,1584,0,0,0,0,0,635,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"9":344}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"8":589,"9":692}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"8":611,"9":718},"upgradeStep":1}}}, +{"id":96378,"name":"Lightningweaver Gauntlets","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,2112,1328,0,926,0,0,0,0,0,852,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":406,"11":372,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":857,"11":788,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":891,"11":819,"22":1625},"upgradeStep":1}}}, +{"id":96379,"name":"Al'set's Tormented Leggings","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2843,1735,0,909,0,0,0,0,0,1344,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":376,"11":577,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"5":838,"11":1242,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"5":873,"11":1292,"22":2274},"upgradeStep":1}}}, +{"id":96380,"name":"Fissure-Split Shoulderwraps","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,2112,1328,0,860,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":380,"6":398,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":796,"6":849,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":827,"6":883,"22":1949},"upgradeStep":1}}}, +{"id":96381,"name":"Robes of Static Bursts","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2843,1735,998,0,0,0,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":418,"11":554,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":921,"11":1194,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":959,"11":1243,"22":2599},"upgradeStep":1}}}, +{"id":96382,"name":"Jin'rokh's Dreamshard","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1584,1056,0,652,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"5":605,"6":682}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"5":628,"6":708},"upgradeStep":1}}}, +{"id":96383,"name":"Drape of Booming Nights","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1584,1056,775,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"6":270,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":719,"6":542,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":746,"6":563,"22":1300},"upgradeStep":1}}}, +{"id":96384,"name":"Soulblade of the Breaking Storm","icon":"inv_sword_1h_zandalari_c_02red","type":13,"weaponType":9,"handType":2,"stats":[0,0,1219,733,448,0,533,0,0,0,0,0,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":3953,"weaponDamageMax":7343,"weaponSpeed":2.2,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"4":185,"6":225,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":3669,"weaponDamageMax":6815,"stats":{"2":1131,"3":674,"4":413,"6":492,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":3809,"weaponDamageMax":7074,"stats":{"2":1174,"3":703,"4":430,"6":512,"14":10458},"upgradeStep":1}}}, +{"id":96385,"name":"Horridon's Last Gasp","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"535":{"randPropPoints":2485,"stats":{"3":1657}},"539":{"randPropPoints":2579,"stats":{"3":1719},"upgradeStep":1}}}, +{"id":96386,"name":"Infinitely Conducting Bracers","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1584,1056,618,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349,"22":1122}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":573,"6":701,"22":1431}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":595,"6":727,"22":1447},"upgradeStep":1}}}, +{"id":96387,"name":"Ghostbinder Greatboots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,2112,1328,985,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":2453}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":911,"7":691,"22":3129}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":947,"7":718,"22":3165},"upgradeStep":1}}}, +{"id":96388,"name":"Ionized Yojamban Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2843,1735,0,0,909,0,0,0,0,1344,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Jin'rokh the Breaker"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":376,"11":577,"22":4872}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":838,"11":1242,"22":6215}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":873,"11":1292,"22":6287},"upgradeStep":1}}}, +{"id":96389,"name":"Wastewalker's Sandblasted Drape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1056,1584,0,0,775,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":358,"7":270,"22":1007}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"5":719,"7":542,"22":1285}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"5":746,"7":563,"22":1300},"upgradeStep":1}}}, +{"id":96390,"name":"Talisman of Living Poison","icon":"inv_jewelry_necklace_119","type":2,"stats":[0,1056,1584,0,0,0,0,735,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"7":682,"8":605}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"7":708,"8":628},"upgradeStep":1}}}, +{"id":96391,"name":"Jalak's Maelstrom Staff","icon":"inv_stave_2h_thunderisleraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1815,2843,0,0,1285,0,0,0,0,0,1137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":18277,"weaponDamageMax":27416,"weaponSpeed":3.3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"5":584,"11":490}},"535":{"randPropPoints":3345,"weaponDamageMin":16964,"weaponDamageMax":25447,"stats":{"1":1679,"2":2639,"5":1192,"11":1051}},"539":{"randPropPoints":3472,"weaponDamageMin":17608,"weaponDamageMax":26413,"stats":{"1":1746,"2":2739,"5":1237,"11":1093},"upgradeStep":1}}}, +{"id":96392,"name":"Bindings of Multiplicative Strikes","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,1056,1584,0,0,0,715,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"7":317,"22":1122}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"6":663,"7":637,"22":1431}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"6":688,"7":661,"22":1447},"upgradeStep":1}}}, +{"id":96393,"name":"Sul'lithuz Sandmail","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1735,2843,0,0,0,0,1293,0,0,0,998,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":554,"11":418,"22":3568}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1194,"11":921,"22":4551}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1243,"11":959,"22":4603},"upgradeStep":1}}}, +{"id":96394,"name":"Frozen Warlord's Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[1056,0,1584,0,0,0,0,755,618,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"8":285,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"7":701,"8":573,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"7":727,"8":595,"22":2750},"upgradeStep":1}}}, +{"id":96395,"name":"Bloodlord's Bloodsoaked Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,0,998,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":418,"11":554,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"7":921,"11":1194,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"7":959,"11":1243,"22":5501},"upgradeStep":1}}}, +{"id":96396,"name":"Puncture-Proof Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,1124,1164,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"9":1033,"10":1073,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"9":1077,"10":1117,"22":5108},"upgradeStep":1}}}, +{"id":96397,"name":"Horn-Rimmed Doomcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1056,0,1584,0,0,704,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":325,"11":325,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"5":654,"11":654,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"5":678,"11":678,"22":1300},"upgradeStep":1}}}, +{"id":96398,"name":"Spark of Zandalar","icon":"spell_nature_lightningshield","type":12,"stats":[0,0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"535":{"randPropPoints":2485,"stats":{"7":1657}},"539":{"randPropPoints":2579,"stats":{"7":1719},"upgradeStep":1}}}, +{"id":96399,"name":"Flamecaster's Burning Crown","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,0,1255,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":545,"7":364,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1161,"7":910,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1207,"7":951,"22":2112},"upgradeStep":1}}}, +{"id":96400,"name":"Vaccinator's Armwraps","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1584,1056,704,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":654,"7":654,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":678,"7":678,"22":1137},"upgradeStep":1}}}, +{"id":96401,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2843,1815,0,1123,0,1273,0,0,0,0,0,0,10856,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":9138,"weaponDamageMax":13708,"weaponSpeed":3.3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"5":510,"7":553,"14":5009}},"535":{"randPropPoints":3345,"weaponDamageMin":8482,"weaponDamageMax":12724,"stats":{"2":2639,"3":1679,"5":1041,"7":1177,"14":10075}},"539":{"randPropPoints":3472,"weaponDamageMin":8804,"weaponDamageMax":13207,"stats":{"2":2739,"3":1746,"5":1081,"7":1224,"14":10458},"upgradeStep":1}}}, +{"id":96402,"name":"Horridon's Tusk Fragment","icon":"inv_jewelry_necklace_141","type":2,"stats":[0,0,1584,1056,601,0,0,0,0,0,0,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":558,"11":710}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":579,"11":737},"upgradeStep":1}}}, +{"id":96403,"name":"Petrified Eye of the Basilisk","icon":"inv_jewelry_ring_178","type":11,"stats":[0,0,1584,1056,803,0,0,0,0,0,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"11":247}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":745,"11":497}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":773,"11":515},"upgradeStep":1}}}, +{"id":96404,"name":"Venomlord's Totemic Wand","icon":"inv_wand_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1219,733,0,0,510,488,0,0,0,0,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":3414,"weaponDamageMax":6341,"weaponSpeed":1.9,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"7":204,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":3169,"weaponDamageMax":5886,"stats":{"2":1131,"3":674,"6":470,"7":450,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":3289,"weaponDamageMax":6109,"stats":{"2":1174,"3":703,"6":490,"7":469,"14":10458},"upgradeStep":1}}}, +{"id":96405,"name":"Roots of Rampaging Earth","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2843,1735,0,0,1221,0,0,0,0,1121,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"11":474,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1128,"11":1035,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1173,"11":1077,"22":2895},"upgradeStep":1}}}, +{"id":96406,"name":"Spaulders of Dinomancy","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,2112,1328,1005,0,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":930,"7":663,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":967,"7":689,"22":2481},"upgradeStep":1}}}, +{"id":96407,"name":"Legguards of Scintillating Scales","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2843,1735,0,0,1184,0,0,0,0,1184,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":503,"11":503,"22":3122}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1093,"11":1093,"22":3982}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1137,"11":1137,"22":4028},"upgradeStep":1}}}, +{"id":96408,"name":"Armplates of the Vanquished Abomination","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Horridon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":2719}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":2750},"upgradeStep":1}}}, +{"id":96409,"name":"Bad Juju","icon":"trade_archaeology_troll_voodoodoll","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"535":{"randPropPoints":2485,"stats":{"11":1657}},"539":{"randPropPoints":2579,"stats":{"11":1719},"upgradeStep":1}}}, +{"id":96410,"name":"Kura-Kura, Kazra'jin's Skullcleaver","icon":"inv_axe_1h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,733,1219,0,0,0,502,0,0,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"1":674,"2":1131,"6":463,"11":463}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"1":703,"2":1174,"6":482,"11":482},"upgradeStep":1}}}, +{"id":96411,"name":"Mar'li's Bloodstained Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,2112,1328,972,0,769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":899,"6":712,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":935,"6":740,"22":1787},"upgradeStep":1}}}, +{"id":96412,"name":"Zandalari Robes of the Final Rite","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2843,1735,0,1090,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"6":529,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"5":1006,"6":1145,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"5":1047,"6":1191,"22":2599},"upgradeStep":1}}}, +{"id":96413,"name":"Wushoolay's Final Choice","icon":"spell_nature_chainlightning","type":12,"stats":[0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"535":{"randPropPoints":2485,"stats":{"5":1657}},"539":{"randPropPoints":2579,"stats":{"5":1719},"upgradeStep":1}}}, +{"id":96414,"name":"Amun-Thoth, Sul's Spiritrending Talons","icon":"inv_hand_1h_thunderisleraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,1219,733,549,0,0,0,0,0,0,422,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":4672,"weaponDamageMax":8678,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":295,"4":232,"11":173,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":4337,"weaponDamageMax":8054,"stats":{"2":1131,"3":674,"4":506,"11":389,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":4501,"weaponDamageMax":8360,"stats":{"2":1174,"3":703,"4":527,"11":405,"14":10458},"upgradeStep":1}}}, +{"id":96415,"name":"Robes of Treacherous Ground","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2843,1735,909,0,0,0,0,0,0,1344,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":376,"11":577,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":838,"11":1242,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":873,"11":1292,"22":3308},"upgradeStep":1}}}, +{"id":96416,"name":"Gaze of Gara'jal","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1655,2843,0,0,0,1124,1164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1033,"7":1073,"22":3697}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1077,"7":1117,"22":3740},"upgradeStep":1}}}, +{"id":96417,"name":"Loa-Ridden Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1584,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":1561}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"22":1991}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"22":2014},"upgradeStep":1}}}, +{"id":96418,"name":"Overloaded Bladebreaker Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1735,0,2843,0,0,880,0,0,0,0,1361,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"10":585,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":811,"10":1257,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":845,"10":1308,"22":6287},"upgradeStep":1}}}, +{"id":96419,"name":"Zerat, Malakk's Soulburning Greatsword","icon":"inv_sword_2h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1815,0,2843,0,0,1360,973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":19939,"weaponDamageMax":29909,"weaponSpeed":3.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"5":593,"6":440}},"535":{"randPropPoints":3345,"weaponDamageMin":18506,"weaponDamageMax":27760,"stats":{"0":1679,"2":2639,"5":1258,"6":902}},"539":{"randPropPoints":3472,"weaponDamageMin":19209,"weaponDamageMax":28815,"stats":{"0":1746,"2":2739,"5":1308,"6":937},"upgradeStep":1}}}, +{"id":96420,"name":"Talisman of Angry Spirits","icon":"inv_jewelry_necklace_139","type":2,"stats":[1056,0,1584,0,0,0,725,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":335,"11":309}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"6":673,"11":621}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"6":698,"11":644},"upgradeStep":1}}}, +{"id":96421,"name":"Fortitude of the Zandalari","icon":"spell_holy_mindvision","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Council of Elders"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"535":{"randPropPoints":2485,"stats":{"11":1657}},"539":{"randPropPoints":2579,"stats":{"11":1719},"upgradeStep":1}}}, +{"id":96422,"name":"Shattered Tortoiseshell Longbow","icon":"inv_bow_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1815,2843,0,0,1161,0,0,1261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":14539,"weaponDamageMax":27001,"weaponSpeed":3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"5":514,"8":560}},"535":{"randPropPoints":3345,"weaponDamageMin":13494,"weaponDamageMax":25062,"stats":{"1":1679,"2":2639,"5":1075,"8":1168}},"539":{"randPropPoints":3472,"weaponDamageMin":14007,"weaponDamageMax":26013,"stats":{"1":1746,"2":2739,"5":1117,"8":1213},"upgradeStep":1}}}, +{"id":96423,"name":"Rockfall Ribwraps","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1735,2843,0,0,1059,1257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"6":537,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"5":977,"6":1161,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"5":1017,"6":1208,"22":3308},"upgradeStep":1}}}, +{"id":96424,"name":"Grips of Vampiric Cruelty","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1328,2112,0,0,875,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"7":400,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"5":809,"7":844,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"5":842,"7":878,"22":2068},"upgradeStep":1}}}, +{"id":96425,"name":"Beady-Eye Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,976,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1561}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"22":1991}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"22":2014},"upgradeStep":1}}}, +{"id":96426,"name":"Quakestompers","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1328,2112,0,0,0,883,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":817,"7":836,"22":3129}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":850,"7":870,"22":3165},"upgradeStep":1}}}, +{"id":96427,"name":"Shoulderguards of Centripetal Destruction","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1328,0,2112,0,0,0,1030,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":454,"7":289,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"6":953,"7":622,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"6":991,"7":647,"22":4715},"upgradeStep":1}}}, +{"id":96428,"name":"Shell-Coated Wristplates","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[1056,0,1584,0,0,0,0,0,0,784,568,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":362,"10":262,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"9":728,"10":527,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"9":755,"10":547,"22":2750},"upgradeStep":1}}}, +{"id":96429,"name":"Amulet of the Primal Turtle","icon":"inv_jewelry_necklace_118","type":2,"stats":[976,0,1584,0,0,495,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":207,"6":331}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"5":457,"6":705}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"5":475,"6":733},"upgradeStep":1}}}, +{"id":96430,"name":"Shellsplitter Greataxe","icon":"inv_axe_1h_thunderisleraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[733,0,1219,0,0,541,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"6":179}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"0":674,"2":1131,"5":499,"6":401}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"0":703,"2":1174,"5":520,"6":418},"upgradeStep":1}}}, +{"id":96431,"name":"Beakbreaker Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1056,0,1584,0,0,0,0,0,0,725,0,669,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"11":309,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"9":673,"11":621,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"9":698,"11":644,"22":1300},"upgradeStep":1}}}, +{"id":96432,"name":"Azure Shell Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1584,1056,0,0,775,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":358,"11":270,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"6":719,"11":542,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"6":746,"11":563,"22":1137},"upgradeStep":1}}}, +{"id":96433,"name":"Stonegaze Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2843,1655,1277,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":538,"6":354,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1178,"6":857,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1227,"6":895,"22":2112},"upgradeStep":1}}}, +{"id":96434,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,2112,1328,0,0,899,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":831,"7":831,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":864,"7":864,"22":1625},"upgradeStep":1}}}, +{"id":96435,"name":"Shimmershell Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1584,1056,0,0,652,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"11":339,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"6":605,"11":682,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"6":628,"11":708,"22":1300},"upgradeStep":1}}}, +{"id":96436,"name":"Tortos' Discarded Shell","icon":"inv_shield_thunderisleraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1584,976,729,0,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20394,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":328,"7":229,"22":15628}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":676,"7":525,"22":19935}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":702,"7":547,"22":20165},"upgradeStep":1}}}, +{"id":96437,"name":"Vampire Bat-Hide Bracers","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,0,1584,1056,745,0,0,635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":1122}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":692,"7":589,"22":1431}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":718,"7":611,"22":1447},"upgradeStep":1}}}, +{"id":96438,"name":"Robes of Concussive Shocks","icon":"inv_robe_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2843,1735,1184,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1093,"7":1093,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1137,"7":1137,"22":3308},"upgradeStep":1}}}, +{"id":96439,"name":"Spaulders of Quaking Fear","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2112,1328,1018,0,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":448,"7":299,"22":2676}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":942,"7":642,"22":3413}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":979,"7":668,"22":3452},"upgradeStep":1}}}, +{"id":96440,"name":"Refreshing Abalone Girdle","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,2112,1248,900,0,0,789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"7":321,"22":2741}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":830,"7":727,"22":3496}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":864,"7":757,"22":3536},"upgradeStep":1}}}, +{"id":96441,"name":"Tortos' Shellseizers","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,2112,1328,783,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Tortos"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":3045}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":724,"6":895,"22":3884}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":753,"6":930,"22":3929},"upgradeStep":1}}}, +{"id":96442,"name":"Megaera's Poisoned Fang","icon":"inv_knife_1h_thunderisleraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,733,1219,0,0,422,0,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":6469,"weaponDamageMax":12015,"weaponSpeed":1.8,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":173,"11":232}},"535":{"randPropPoints":1434,"weaponDamageMin":6005,"weaponDamageMax":11152,"stats":{"1":674,"2":1131,"5":389,"11":506}},"539":{"randPropPoints":1488,"weaponDamageMin":6233,"weaponDamageMax":11576,"stats":{"1":703,"2":1174,"5":405,"11":527},"upgradeStep":1}}}, +{"id":96443,"name":"Quadra-Head Brooch","icon":"inv_jewelry_necklace_140","type":2,"stats":[0,976,1584,0,0,664,0,0,0,0,0,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":285,"11":285}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"5":614,"11":614}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"5":638,"11":638},"upgradeStep":1}}}, +{"id":96444,"name":"Poisonblood Bladeshoulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1328,2112,0,0,0,0,899,0,0,0,899,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":393,"11":393,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":831,"11":831,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":864,"11":864,"22":2481},"upgradeStep":1}}}, +{"id":96445,"name":"Grips of Cinderflesh","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1328,2112,0,0,0,0,829,0,0,0,940,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":361,"11":412,"22":2230}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":767,"11":870,"22":2844}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":797,"11":904,"22":2877},"upgradeStep":1}}}, +{"id":96446,"name":"Plated Toothbreaker Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1248,0,2112,0,0,0,0,0,0,859,859,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":353,"10":353,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"9":791,"10":791,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"9":824,"10":824,"22":3536},"upgradeStep":1}}}, +{"id":96447,"name":"Rot-Proof Greatplate","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1735,0,2843,0,0,0,0,0,0,1184,0,1184,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":503,"11":503,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"9":1093,"11":1093,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"9":1137,"11":1137,"22":6287},"upgradeStep":1}}}, +{"id":96448,"name":"Spinescale Seal","icon":"inv_jewelry_ring_164","type":11,"stats":[1056,0,1584,0,0,715,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"6":317}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"5":663,"6":637}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"5":688,"6":661},"upgradeStep":1}}}, +{"id":96449,"name":"Hydraskull Choker","icon":"inv_jewelry_necklace_125","type":2,"stats":[1056,0,1584,0,0,0,0,0,0,793,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":366,"10":254}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"9":736,"10":512}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"9":764,"10":531},"upgradeStep":1}}}, +{"id":96450,"name":"Sandals of Arcane Fury","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,2112,1328,0,905,883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":392,"6":390,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":836,"6":817,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":870,"6":850,"22":1787},"upgradeStep":1}}}, +{"id":96451,"name":"Gleaming-Eye Shoulderpads","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2112,1328,875,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"6":400,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":809,"6":844,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":842,"6":878,"22":1949},"upgradeStep":1}}}, +{"id":96452,"name":"Frostborn Wristwraps","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1584,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"22":1137},"upgradeStep":1}}}, +{"id":96453,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,1584,1056,0,704,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"5":654,"6":654}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"5":678,"6":678},"upgradeStep":1}}}, +{"id":96454,"name":"Fetish of the Hydra","icon":"inv_offhand_1h_thunderisleraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1584,976,0,695,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"6":261}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"5":642,"6":565}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"5":668,"6":588},"upgradeStep":1}}}, +{"id":96455,"name":"Breath of the Hydra","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"535":{"randPropPoints":2485,"stats":{"7":1657}},"539":{"randPropPoints":2579,"stats":{"7":1719},"upgradeStep":1}}}, +{"id":96456,"name":"Inscribed Bag of Hydra-Spawn","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"535":{"randPropPoints":2485,"stats":{"4":1657}},"539":{"randPropPoints":2579,"stats":{"4":1719},"upgradeStep":1}}}, +{"id":96457,"name":"Hood of Smoldering Flesh","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2843,1655,1241,0,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"6":382,"22":2083}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1145,"6":913,"22":2657}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1192,"6":953,"22":2688},"upgradeStep":1}}}, +{"id":96458,"name":"Links of the Bifurcated Tongue","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2007}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":2560}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":2589},"upgradeStep":1}}}, +{"id":96459,"name":"Chain of Consuming Magic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2843,1735,1327,0,0,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":569,"11":390,"22":3568}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1226,"11":866,"22":4551}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1276,"11":902,"22":4603},"upgradeStep":1}}}, +{"id":96460,"name":"Ice-Scored Treads","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,2112,1328,891,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Megaera"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"11":401,"22":3350}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":823,"11":839,"22":4273}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":856,"11":872,"22":4322},"upgradeStep":1}}}, +{"id":96461,"name":"Pinionfeather Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,976,1584,0,0,0,646,0,0,0,0,675,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":277,"11":290,"22":1007}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"6":597,"11":623,"22":1285}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"6":621,"11":648,"22":1300},"upgradeStep":1}}}, +{"id":96462,"name":"Cord of Cacophonous Cawing","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,2112,1248,0,927,0,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"7":300,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"5":855,"7":684,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"5":890,"7":713,"22":1462},"upgradeStep":1}}}, +{"id":96463,"name":"Robe of Midnight Down","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2843,1735,0,0,0,998,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":418,"11":554,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"7":921,"11":1194,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"7":959,"11":1243,"22":2599},"upgradeStep":1}}}, +{"id":96464,"name":"Giorgio's Caduceus of Pure Moods","icon":"inv_stave_2h_thunderisleraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2843,1815,1326,0,0,1032,0,0,0,0,0,0,10856,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":9138,"weaponDamageMax":13708,"weaponSpeed":3.3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":578,"7":468,"14":5009}},"535":{"randPropPoints":3345,"weaponDamageMin":8482,"weaponDamageMax":12724,"stats":{"2":2639,"3":1679,"4":1227,"7":957,"14":10075}},"539":{"randPropPoints":3472,"weaponDamageMin":8804,"weaponDamageMax":13207,"stats":{"2":2739,"3":1746,"4":1275,"7":994,"14":10458},"upgradeStep":1}}}, +{"id":96465,"name":"Featherflight Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1248,2112,0,0,0,0,965,677,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":402,"8":269,"22":1442}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"7":890,"8":623,"22":1840}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"7":927,"8":649,"22":1861},"upgradeStep":1}}}, +{"id":96466,"name":"Grasp of the Ruthless Mother","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2112,1408,846,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"11":458,"22":2230}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"4":786,"11":922,"22":2844}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"4":815,"11":957,"22":2877},"upgradeStep":1}}}, +{"id":96467,"name":"Crown of Potentiated Birth","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2843,1655,1341,0,0,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":565,"7":303,"22":3959}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1237,"7":751,"22":5050}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1288,"7":785,"22":5108},"upgradeStep":1}}}, +{"id":96468,"name":"Talonrender Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1735,0,2843,0,0,1239,1090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"6":460,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":1145,"6":1006,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":1191,"6":1047,"22":6287},"upgradeStep":1}}}, +{"id":96469,"name":"Egg-Shard Grips","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,673,0,1030,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"8":622,"10":953,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"8":647,"10":991,"22":3929},"upgradeStep":1}}}, +{"id":96470,"name":"Fabled Feather of Ji-Kun","icon":"ability_priest_angelicfeather","type":12,"stats":[0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"535":{"randPropPoints":2485,"stats":{"5":1657}},"539":{"randPropPoints":2579,"stats":{"5":1719},"upgradeStep":1}}}, +{"id":96471,"name":"Ji-Kun's Rising Winds","icon":"spell_holy_heal","type":12,"stats":[0,0,0,0,0,0,0,0,1784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Ji-Kun"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"535":{"randPropPoints":2485,"stats":{"8":1657}},"539":{"randPropPoints":2579,"stats":{"8":1719},"upgradeStep":1}}}, +{"id":96472,"name":"Durumu's Baleful Gaze","icon":"inv_bow_2h_crossbow_thunderisleraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1815,2843,0,0,0,1297,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":16616,"weaponDamageMax":24924,"weaponSpeed":3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"6":577,"7":486}},"535":{"randPropPoints":3345,"weaponDamageMin":15422,"weaponDamageMax":23134,"stats":{"1":1679,"2":2639,"6":1201,"7":1017}},"539":{"randPropPoints":3472,"weaponDamageMin":16008,"weaponDamageMax":24012,"stats":{"1":1746,"2":2739,"6":1248,"7":1057},"upgradeStep":1}}}, +{"id":96473,"name":"Crimson Bloom Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1735,2843,0,0,1327,939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":569,"6":390,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"5":1226,"6":866,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"5":1276,"6":902,"22":2895},"upgradeStep":1}}}, +{"id":96474,"name":"Links of the Disintegrator","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,1248,2112,0,0,0,913,766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":378,"7":310,"22":2007}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"6":842,"7":706,"22":2560}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"6":877,"7":735,"22":2589},"upgradeStep":1}}}, +{"id":96475,"name":"Aberrant Chestguard of Torment","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1735,2843,0,0,0,1239,1090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":3568}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"6":1145,"7":1006,"22":4551}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"6":1191,"7":1047,"22":4603},"upgradeStep":1}}}, +{"id":96476,"name":"Caustic Spike Bracers","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[976,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"22":2750},"upgradeStep":1}}}, +{"id":96477,"name":"Legplates of the Dark Parasite","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,0,1275,1029,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"8":432,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"7":1178,"8":949,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"7":1226,"8":988,"22":5501},"upgradeStep":1}}}, +{"id":96478,"name":"Treads of the Blind Eye","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,0,837,932,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":369,"10":404,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"9":775,"10":862,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"9":805,"10":896,"22":4322},"upgradeStep":1}}}, +{"id":96479,"name":"Artery Rippers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1248,0,2112,0,0,0,0,0,0,819,889,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":326,"10":376,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"9":753,"10":820,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"9":786,"10":854,"22":3929},"upgradeStep":1}}}, +{"id":96480,"name":"Reinforced Mirror-Sheen Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[976,0,1584,0,0,0,0,0,0,763,495,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":331,"10":207,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"9":705,"10":457,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"9":733,"10":475,"22":1300},"upgradeStep":1}}}, +{"id":96481,"name":"Durumu's Severed Tentacle","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[976,0,1584,0,0,661,0,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":271,"9":293}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"5":609,"9":605}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"5":634,"9":628},"upgradeStep":1}}}, +{"id":96482,"name":"Lifedrainer's Sordid Grip","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,2112,1248,0,727,0,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"7":400,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"5":668,"7":871,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"5":697,"7":906,"22":1625},"upgradeStep":1}}}, +{"id":96483,"name":"Leggings of Pulsing Blood","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2843,1735,0,0,1361,0,0,0,0,880,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1257,"11":811,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1308,"11":845,"22":2274},"upgradeStep":1}}}, +{"id":96484,"name":"Chilblain Spaulders","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,2112,1328,0,0,852,0,0,0,0,926,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":372,"11":406,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":788,"11":857,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":819,"11":891,"22":1949},"upgradeStep":1}}}, +{"id":96485,"name":"Deadly Glare Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1584,976,0,0,629,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":269,"7":295,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"6":581,"7":633,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"6":604,"7":658,"22":1300},"upgradeStep":1}}}, +{"id":96486,"name":"Durumu's Captive Eyeball","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,1584,976,729,0,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"6":238}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":672,"6":496}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":700,"6":515},"upgradeStep":1}}}, +{"id":96487,"name":"Ritual Dagger of the Mind's Eye","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1219,733,541,0,435,0,0,0,0,0,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":3234,"weaponDamageMax":6008,"weaponSpeed":1.8,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":228,"6":179,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":3002,"weaponDamageMax":5576,"stats":{"2":1131,"3":674,"4":499,"6":401,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":3116,"weaponDamageMax":5788,"stats":{"2":1174,"3":703,"4":520,"6":418,"14":10458},"upgradeStep":1}}}, +{"id":96488,"name":"Sandals of the Starving Eye","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,2112,1328,959,0,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"6":348,"22":1763}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":887,"6":732,"22":2249}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":922,"6":761,"22":2274},"upgradeStep":1}}}, +{"id":96489,"name":"Vein-Cover Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1584,1056,793,0,0,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"7":254,"22":1561}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":736,"7":512,"22":1991}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":764,"7":531,"22":2014},"upgradeStep":1}}}, +{"id":96490,"name":"Iceshatter Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,2112,1248,937,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":3045}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":863,"11":659,"22":3884}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":899,"11":686,"22":3929},"upgradeStep":1}}}, +{"id":96491,"name":"Legplates of Re-Emergence","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2843,1735,0,0,1090,1239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Durumu the Forgotten"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":460,"7":529,"22":4263}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1006,"7":1145,"22":5438}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1047,"7":1191,"22":5501},"upgradeStep":1}}}, +{"id":96492,"name":"Talisman of Bloodlust","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"535":{"randPropPoints":2485,"stats":{"1":1657}},"539":{"randPropPoints":2579,"stats":{"1":1719},"upgradeStep":1}}}, +{"id":96493,"name":"Gloves of Cushioned Air","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1248,2112,0,0,0,705,0,0,0,0,956,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":274,"11":407,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"6":648,"11":883,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"6":676,"11":919,"22":2068},"upgradeStep":1}}}, +{"id":96494,"name":"Bracers of Mutagenic Fervor","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,1056,1584,0,0,0,0,584,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358,"22":1561}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"7":542,"11":719,"22":1991}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"7":563,"11":746,"22":2014},"upgradeStep":1}}}, +{"id":96495,"name":"Synapse-String Handguards","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1248,2112,0,0,0,875,843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"7":337,"22":2230}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"6":807,"7":775,"22":2844}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"6":840,"7":808,"22":2877},"upgradeStep":1}}}, +{"id":96496,"name":"Pathogenic Gauntlets","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1248,0,2112,0,0,705,0,956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":274,"7":407,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"5":648,"7":883,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"5":676,"7":919,"22":3929},"upgradeStep":1}}}, +{"id":96497,"name":"Black Blood Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,0,0,0,1152,1203,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":488,"10":512,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"9":1063,"10":1110,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"9":1107,"10":1156,"22":5501},"upgradeStep":1}}}, +{"id":96498,"name":"Metabolically Boosted Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,0,875,913,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":382,"10":400,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"9":809,"10":844,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"9":842,"10":878,"22":4715},"upgradeStep":1}}}, +{"id":96499,"name":"Hydra-Scale Bloodcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[976,0,1584,0,0,0,705,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":304,"8":253,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"6":652,"8":549,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"6":678,"8":571,"22":1300},"upgradeStep":1}}}, +{"id":96500,"name":"Band of the Scaled Tyrant","icon":"inv_jewelry_ring_177","type":11,"stats":[976,0,1584,0,0,585,0,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":261,"7":289}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"5":542,"7":646}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"5":563,"7":673},"upgradeStep":1}}}, +{"id":96501,"name":"Primordius' Talisman of Rage","icon":"ability_warrior_rampage","type":12,"stats":[0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"535":{"randPropPoints":2485,"stats":{"6":1657}},"539":{"randPropPoints":2579,"stats":{"6":1719},"upgradeStep":1}}}, +{"id":96502,"name":"Acid-Spine Bonemace","icon":"inv_mace_1h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[733,0,1219,0,0,0,0,0,0,549,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":8626,"weaponDamageMax":16020,"weaponSpeed":2.4,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":295,"2":562,"9":232,"10":173}},"535":{"randPropPoints":1434,"weaponDamageMin":8006,"weaponDamageMax":14870,"stats":{"0":674,"2":1131,"9":506,"10":389}},"539":{"randPropPoints":1488,"weaponDamageMin":8310,"weaponDamageMax":15434,"stats":{"0":703,"2":1174,"9":527,"10":405},"upgradeStep":1}}}, +{"id":96503,"name":"Robes of Mutagenic Blood","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2843,1735,0,0,1221,1121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"7":474,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1128,"7":1035,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1173,"7":1077,"22":2599},"upgradeStep":1}}}, +{"id":96504,"name":"Helix-Breaker Gloves","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2112,1248,924,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":375,"6":306,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":851,"6":680,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":887,"6":708,"22":1625},"upgradeStep":1}}}, +{"id":96505,"name":"Leggings of Ebon Veins","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2843,1735,1184,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1093,"6":1093,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1137,"6":1137,"22":2274},"upgradeStep":1}}}, +{"id":96506,"name":"Bracers of Fragile Bone","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1584,1056,0,0,715,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"6":663,"7":637,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"6":688,"7":661,"22":1137},"upgradeStep":1}}}, +{"id":96507,"name":"Stolen Relic of Zuldazar","icon":"spell_fire_twilightfireward","type":12,"stats":[0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"535":{"randPropPoints":2485,"stats":{"4":1657}},"539":{"randPropPoints":2579,"stats":{"4":1719},"upgradeStep":1}}}, +{"id":96508,"name":"Leggings of the Malformed Sapling","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2843,1735,1275,0,1029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"6":432,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1178,"6":949,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1226,"6":988,"22":2895},"upgradeStep":1}}}, +{"id":96509,"name":"Clear-Mind Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2843,1655,0,0,0,1163,0,0,0,1112,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2899}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"7":1070,"11":1023,"22":3697}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"7":1116,"11":1067,"22":3740},"upgradeStep":1}}}, +{"id":96510,"name":"Bonemender Bracers","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1584,1056,686,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330,"22":2132}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"4":637,"7":663,"22":2719}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"4":661,"7":688,"22":2750},"upgradeStep":1}}}, +{"id":96511,"name":"Spaulders of Primordial Growth","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,2112,1328,1030,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"7":289,"22":3654}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":953,"7":622,"22":4661}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":991,"7":647,"22":4715},"upgradeStep":1}}}, +{"id":96512,"name":"Greatshield of the Gloaming","icon":"inv_shield_thunderisleraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[976,0,1584,0,0,0,0,0,0,670,0,651,0,0,0,0,0,0,0,0,0,0,20394,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Primordius"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"11":266,"22":15628}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"9":621,"11":599,"22":19935}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"9":645,"11":624,"22":20165},"upgradeStep":1}}}, +{"id":96513,"name":"Gore-Soaked Gear","icon":"inv_jewelry_ring_180","type":11,"stats":[0,976,1584,0,0,0,691,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"7":269}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"6":637,"7":557}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"6":663,"7":579},"upgradeStep":1}}}, +{"id":96514,"name":"Hand of the Dark Animus","icon":"inv_mace_1h_thunderisleraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,733,1219,0,0,0,0,549,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":232,"8":173}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"1":674,"2":1131,"7":506,"8":389}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"1":703,"2":1174,"7":527,"8":405},"upgradeStep":1}}}, +{"id":96515,"name":"Hood of the Crimson Wake","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,0,0,1124,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"7":1033,"11":1073,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"7":1077,"11":1117,"22":2112},"upgradeStep":1}}}, +{"id":96516,"name":"Cha-Ye's Essence of Brilliance","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"535":{"randPropPoints":2485,"stats":{"6":1657}},"539":{"randPropPoints":2579,"stats":{"6":1719},"upgradeStep":1}}}, +{"id":96517,"name":"Constantly Accelerating Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1584,976,595,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":253,"7":304,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":549,"7":652,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":571,"7":678,"22":1300},"upgradeStep":1}}}, +{"id":96518,"name":"Athame of the Sanguine Ritual","icon":"inv_knife_1h_thunderisleraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1219,733,0,0,0,502,0,0,0,502,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":3234,"weaponDamageMax":6008,"weaponSpeed":1.8,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"7":210,"11":210,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":3002,"weaponDamageMax":5576,"stats":{"2":1131,"3":674,"7":463,"11":463,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":3116,"weaponDamageMax":5788,"stats":{"2":1174,"3":703,"7":482,"11":482,"14":10458},"upgradeStep":1}}}, +{"id":96519,"name":"Worldbinder Leggings","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1735,2843,0,0,0,939,0,0,0,0,1327,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":390,"11":569,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"6":866,"11":1226,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"6":902,"11":1276,"22":2895},"upgradeStep":1}}}, +{"id":96520,"name":"Anima-Ringed Fingers","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,2112,1248,870,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"6":348,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":801,"6":764,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":835,"6":795,"22":2068},"upgradeStep":1}}}, +{"id":96521,"name":"Matter-Swapped Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2843,1735,1221,0,0,0,0,0,0,1121,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"11":474,"22":4263}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1128,"11":1035,"22":5438}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1173,"11":1077,"22":5501},"upgradeStep":1}}}, +{"id":96522,"name":"Crown of the Golden Golem","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,1215,1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":485,"7":412,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"6":1118,"7":929,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"6":1166,"7":968,"22":5108},"upgradeStep":1}}}, +{"id":96523,"name":"Delicate Vial of the Sanguinaire","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,1784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Dark Animus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"535":{"randPropPoints":2485,"stats":{"9":1657}},"539":{"randPropPoints":2579,"stats":{"9":1719},"upgradeStep":1}}}, +{"id":96524,"name":"Iron Qon's Boot Knife","icon":"inv_knife_1h_thunderisleraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,733,1219,0,0,372,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":6469,"weaponDamageMax":12015,"weaponSpeed":1.8,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":150,"7":245}},"535":{"randPropPoints":1434,"weaponDamageMin":6005,"weaponDamageMax":11152,"stats":{"1":674,"2":1131,"5":342,"7":533}},"539":{"randPropPoints":1488,"weaponDamageMin":6233,"weaponDamageMax":11576,"stats":{"1":703,"2":1174,"5":356,"7":555},"upgradeStep":1}}}, +{"id":96525,"name":"Voice of the Quilen","icon":"inv_firearm_2h_rifle_thunderisleraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1895,2763,0,0,1192,0,1243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":14539,"weaponDamageMax":27001,"weaponSpeed":3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1232,"5":528,"7":552}},"535":{"randPropPoints":3345,"weaponDamageMin":13494,"weaponDamageMax":25062,"stats":{"1":1759,"2":2559,"5":1103,"7":1150}},"539":{"randPropPoints":3472,"weaponDamageMin":14007,"weaponDamageMax":26013,"stats":{"1":1826,"2":2659,"5":1147,"7":1196},"upgradeStep":1}}}, +{"id":96526,"name":"Quet'zal's Crackling Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,2112,1248,812,0,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"6":366,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":748,"6":817,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":779,"6":851,"22":1462},"upgradeStep":1}}}, +{"id":96527,"name":"Saddle-Scarred Leggings","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2843,1735,1275,0,0,0,0,0,0,1029,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1178,"11":949,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1226,"11":988,"22":2274},"upgradeStep":1}}}, +{"id":96528,"name":"Dam'ren's Frozen Footguards","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,2112,1328,0,775,0,975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":332,"7":432,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":716,"7":903,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":745,"7":938,"22":1787},"upgradeStep":1}}}, +{"id":96529,"name":"Ro'shak's Remembrance","icon":"inv_jewelry_ring_168","type":11,"stats":[0,0,1584,976,0,0,759,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":342,"11":206}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"6":703,"11":478}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"6":730,"11":499},"upgradeStep":1}}}, +{"id":96530,"name":"Orb of Arcing Lightning","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1584,976,753,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":696,"7":472}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":724,"7":491},"upgradeStep":1}}}, +{"id":96531,"name":"Spurs of the Storm Cavalry","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,1328,2112,0,0,0,891,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":385,"11":401,"22":1763}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":823,"11":839,"22":2249}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":856,"11":872,"22":2274},"upgradeStep":1}}}, +{"id":96532,"name":"Ro'shak's Molten Chain","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2843,1735,1184,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":3568}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1093,"7":1093,"22":4551}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1137,"7":1137,"22":4603},"upgradeStep":1}}}, +{"id":96533,"name":"Rein-Binder's Fists","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1248,0,2112,0,0,0,949,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"7":285,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"6":874,"7":639,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"6":911,"7":665,"22":3929},"upgradeStep":1}}}, +{"id":96534,"name":"Qon's Flaming Scimitar","icon":"inv_sword_1h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[733,0,1219,0,0,0,0,0,502,0,0,502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Iron Qon"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":210,"11":210}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"0":674,"2":1131,"8":463,"11":463}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"0":703,"2":1174,"8":482,"11":482},"upgradeStep":1}}}, +{"id":96535,"name":"Wu-Lai, Bladed Fan of the Consorts","icon":"inv_hand_1h_thunderisleraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,733,1219,0,0,0,462,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":191,"7":221}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"1":674,"2":1131,"6":425,"7":485}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"1":703,"2":1174,"6":443,"7":505},"upgradeStep":1}}}, +{"id":96536,"name":"Robes of the Moon Lotus","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2843,1735,1184,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1093,"7":1093,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1137,"7":1137,"22":2599},"upgradeStep":1}}}, +{"id":96537,"name":"Passionfire Choker","icon":"inv_jewelry_necklace_123","type":2,"stats":[0,0,1584,976,629,0,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":269,"6":295}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":581,"6":633}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":604,"6":658},"upgradeStep":1}}}, +{"id":96538,"name":"Shield of Twinned Despair","icon":"inv_shield_zandalari_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1584,976,768,0,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,20394,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":346,"11":198,"22":15628}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":712,"11":463,"22":19935}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":739,"11":483,"22":20165},"upgradeStep":1}}}, +{"id":96539,"name":"Suen-Wo, Spire of the Falling Sun","icon":"inv_stave_2h_thunderisleraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2843,1815,0,0,0,1339,0,0,0,1045,0,0,10856,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":9138,"weaponDamageMax":13708,"weaponSpeed":3.3,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"7":609,"11":448,"14":5009}},"535":{"randPropPoints":3345,"weaponDamageMin":8482,"weaponDamageMax":12724,"stats":{"2":2639,"3":1679,"7":1242,"11":965,"14":10075}},"539":{"randPropPoints":3472,"weaponDamageMin":8804,"weaponDamageMax":13207,"stats":{"2":2739,"3":1746,"7":1290,"11":1004,"14":10458},"upgradeStep":1}}}, +{"id":96540,"name":"Bracers of the Midnight Comet","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,976,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1122}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"22":1431}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"22":1447},"upgradeStep":1}}}, +{"id":96541,"name":"Girdle of Night and Day","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,0,2112,1248,859,0,0,859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":791,"7":791,"22":1840}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":824,"7":824,"22":1861},"upgradeStep":1}}}, +{"id":96542,"name":"Tidal Force Treads","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1328,0,2112,0,0,0,997,725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":434,"7":317,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"6":922,"7":671,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"6":959,"7":697,"22":4322},"upgradeStep":1}}}, +{"id":96543,"name":"Gaze of the Twins","icon":"spell_shadow_spectralsight","type":12,"stats":[1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"535":{"randPropPoints":2485,"stats":{"0":1657}},"539":{"randPropPoints":2579,"stats":{"0":1719},"upgradeStep":1}}}, +{"id":96544,"name":"Moonjade Necklace","icon":"inv_jewelry_necklace_120","type":2,"stats":[976,0,1584,0,0,0,0,0,664,664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"9":285}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"8":614,"9":614}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"8":638,"9":638},"upgradeStep":1}}}, +{"id":96545,"name":"Fingers of the Night","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2112,1328,1005,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Twin Consorts"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":2230}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":930,"6":663,"22":2844}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":967,"6":689,"22":2877},"upgradeStep":1}}}, +{"id":96546,"name":"Rune of Re-Origination","icon":"inv_offhand_1h_ulduarraid_d_01","type":12,"stats":[0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"535":{"randPropPoints":2485,"stats":{"1":1657}},"539":{"randPropPoints":2579,"stats":{"1":1719},"upgradeStep":1}}}, +{"id":96547,"name":"Shan-Dun, Breaker of Hope","icon":"inv_polearm_2h_thunderisleraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1815,2843,0,0,0,0,1200,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":19939,"weaponDamageMax":29909,"weaponSpeed":3.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"8":567}},"535":{"randPropPoints":3345,"weaponDamageMin":18506,"weaponDamageMax":27760,"stats":{"1":1679,"2":2639,"7":1109,"8":1157}},"539":{"randPropPoints":3472,"weaponDamageMin":19209,"weaponDamageMax":28815,"stats":{"1":1746,"2":2739,"7":1153,"8":1201},"upgradeStep":1}}}, +{"id":96548,"name":"Fusion Slasher Chestguard","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1735,2843,0,0,0,1121,0,0,0,0,1221,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"6":1035,"11":1128,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"6":1077,"11":1173,"22":3308},"upgradeStep":1}}}, +{"id":96549,"name":"Conduit-Breaker Chain Leggings","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1655,2843,0,0,0,1152,1136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":471,"7":455,"22":3122}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1061,"7":1045,"22":3982}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1105,"7":1089,"22":4028},"upgradeStep":1}}}, +{"id":96550,"name":"Doomed Crown of Lei Shen","icon":"achievement_boss_leishen","type":1,"armorType":4,"stats":[1655,0,2843,0,0,860,0,0,0,0,0,1301,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":343,"11":525,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"5":791,"11":1197,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"5":825,"11":1248,"22":5108},"upgradeStep":1}}}, +{"id":96551,"name":"Legplates of the Lightning Throne","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1655,0,2843,0,0,0,1329,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":553,"7":315,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"6":1225,"7":763,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"6":1276,"7":797,"22":5501},"upgradeStep":1}}}, +{"id":96552,"name":"Legplates of Whipping Ionization","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,1243,0,981,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":513,"11":384,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"9":1146,"11":901,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"9":1194,"11":940,"22":5501},"upgradeStep":1}}}, +{"id":96553,"name":"Uroe, Harbinger of Terror","icon":"inv_axe_2h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1815,0,2843,0,0,0,1377,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":19939,"weaponDamageMax":29909,"weaponSpeed":3.6,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":601,"11":427}},"535":{"randPropPoints":3345,"weaponDamageMin":18506,"weaponDamageMax":27760,"stats":{"0":1679,"2":2639,"6":1273,"11":875}},"539":{"randPropPoints":3472,"weaponDamageMin":19209,"weaponDamageMax":28815,"stats":{"0":1746,"2":2739,"6":1324,"11":909},"upgradeStep":1}}}, +{"id":96554,"name":"Ultimate Protection of the Emperor","icon":"inv_shield_mogu_c_01","type":13,"weaponType":7,"handType":3,"stats":[976,0,1584,0,0,0,0,0,0,0,691,602,0,0,0,0,0,0,0,0,0,0,20394,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":285,"11":269,"22":15628}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"10":637,"11":557,"22":19935}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"10":663,"11":579,"22":20165},"upgradeStep":1}}}, +{"id":96555,"name":"Soul Barrier","icon":"spell_warlock_demonsoul","type":12,"stats":[0,0,2677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"535":{"randPropPoints":2485,"stats":{"2":2485}},"539":{"randPropPoints":2579,"stats":{"2":2579},"upgradeStep":1}}}, +{"id":96556,"name":"Legwraps of Cardinality","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2843,1655,0,848,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":331,"6":537,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"5":779,"6":1209,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"5":813,"6":1260,"22":2274},"upgradeStep":1}}}, +{"id":96557,"name":"Gloves of the Maimed Vizier","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2112,1248,974,0,0,0,0,0,0,649,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":398,"11":265,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":897,"11":598,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":935,"11":623,"22":1625},"upgradeStep":1}}}, +{"id":96558,"name":"Unerring Vision of Lei Shen","icon":"ability_hunter_focusedaim","type":12,"stats":[0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"535":{"randPropPoints":2485,"stats":{"3":1657}},"539":{"randPropPoints":2579,"stats":{"3":1719},"upgradeStep":1}}}, +{"id":96559,"name":"Torall, Rod of the Shattered Throne","icon":"inv_mace_1h_thunderisleraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1139,813,578,0,0,372,0,0,0,0,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":4313,"weaponDamageMax":8010,"weaponSpeed":2.4,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":482,"3":375,"4":245,"7":150,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":4003,"weaponDamageMax":7435,"stats":{"2":1051,"3":754,"4":533,"7":342,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":4155,"weaponDamageMax":7717,"stats":{"2":1094,"3":783,"4":555,"7":356,"14":10458},"upgradeStep":1}}}, +{"id":96560,"name":"Soul Prism of Lei Shen","icon":"inv_jewelry_necklace_136","type":2,"stats":[0,0,1584,896,723,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":328,"4":291,"7":167}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":820,"4":665,"7":417}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":857,"4":693,"7":435},"upgradeStep":1}}}, +{"id":96561,"name":"Lightning-Imbued Chalice","icon":"spell_mage_runeofpower","type":12,"stats":[0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"535":{"randPropPoints":2485,"stats":{"3":1657}},"539":{"randPropPoints":2579,"stats":{"3":1719},"upgradeStep":1}}}, +{"id":96562,"name":"Lei Shen's Orb of Command","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1584,976,0,0,725,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":313,"7":237}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"6":670,"7":518}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"6":697,"7":539},"upgradeStep":1}}}, +{"id":96563,"name":"Grips of Slicing Electricity","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,2112,1248,937,0,0,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":863,"11":659,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":899,"11":686,"22":2068},"upgradeStep":1}}}, +{"id":96564,"name":"Leggings of the Violent Gale","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2843,1655,1279,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"11":358,"22":3122}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1178,"11":834,"22":3982}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1228,"11":870,"22":4028},"upgradeStep":1}}}, +{"id":96565,"name":"Lei Shen's Grounded Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2843,1735,1184,0,0,1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6622,"otherName":"Lei Shen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":4872}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1093,"7":1093,"22":6215}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1137,"7":1137,"22":6287},"upgradeStep":1}}}, +{"id":96569,"name":"Breastplate of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,989,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"7":909,"8":1138,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"7":948,"8":1186,"22":6287},"upgradeStep":1}}}, +{"id":96570,"name":"Gauntlets of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,959,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"5":887,"6":732,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"5":922,"6":761,"22":3929},"upgradeStep":1}}}, +{"id":96571,"name":"Helmet of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,1203,0,1072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"5":1110,"7":983,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"5":1156,"7":1027,"22":5108},"upgradeStep":1}}}, +{"id":96572,"name":"Greaves of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,1253,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"6":1154,"11":961,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"6":1203,"11":999,"22":5501},"upgradeStep":1}}}, +{"id":96573,"name":"Pauldrons of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,0,0,0,743,0,0,927,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Battleplate of the All-Consuming Maw","setId":1152,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"8":684,"11":855,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"8":713,"11":890,"22":4715},"upgradeStep":1}}}, +{"id":96574,"name":"Chestguard of the All-Consuming Maw","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,1112,1163,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"9":1023,"10":1070,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"9":1067,"10":1116,"22":6287},"upgradeStep":1}}}, +{"id":96575,"name":"Handguards of the All-Consuming Maw","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,665,1038,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"8":614,"9":961,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"8":639,"9":999,"22":3929},"upgradeStep":1}}}, +{"id":96576,"name":"Faceguard of the All-Consuming Maw","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,800,0,0,1361,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"8":731,"11":1257,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"8":765,"11":1308,"22":5108},"upgradeStep":1}}}, +{"id":96577,"name":"Legguards of the All-Consuming Maw","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,928,0,0,0,0,1350,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":853,"10":1251,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":890,"10":1299,"22":5501},"upgradeStep":1}}}, +{"id":96578,"name":"Shoulderguards of the All-Consuming Maw","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,859,0,0,0,0,0,859,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[10],"setName":"Plate of the All-Consuming Maw","setId":1151,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"5":791,"11":791,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"5":824,"11":824,"22":4715},"upgradeStep":1}}}, +{"id":96579,"name":"Raiment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1655,2843,0,0,0,0,0,1163,0,0,1112,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"8":1070,"11":1023,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"8":1116,"11":1067,"22":3308},"upgradeStep":1}}}, +{"id":96580,"name":"Grips of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,1328,2112,0,0,0,918,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":849,"8":796,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":883,"8":827,"22":2068},"upgradeStep":1}}}, +{"id":96581,"name":"Headpiece of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,1144,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"5":1053,"7":1053,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"5":1097,"7":1097,"22":2688},"upgradeStep":1}}}, +{"id":96582,"name":"Legguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1735,2843,0,0,0,0,1192,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1103,"11":1070,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1147,"11":1116,"22":2895},"upgradeStep":1}}}, +{"id":96583,"name":"Spaulders of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,1248,2112,0,0,766,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Haunted Forest","setId":1153,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":706,"6":842,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":735,"6":877,"22":2481},"upgradeStep":1}}}, +{"id":96584,"name":"Handwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,2112,1328,948,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":878,"7":759,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":912,"7":789,"22":2068},"upgradeStep":1}}}, +{"id":96585,"name":"Helm of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2843,1655,1217,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1121,"11":937,"22":2657}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1168,"11":977,"22":2688},"upgradeStep":1}}}, +{"id":96586,"name":"Legwraps of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2843,1735,1181,0,0,1161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1088,"7":1075,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1133,"7":1117,"22":2895},"upgradeStep":1}}}, +{"id":96587,"name":"Robes of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2843,1655,0,0,1144,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1053,"7":1053,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1097,"7":1097,"22":3308},"upgradeStep":1}}}, +{"id":96588,"name":"Mantle of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Haunted Forest","setId":1154,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":2481},"upgradeStep":1}}}, +{"id":96589,"name":"Gloves of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,2112,1328,0,0,860,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":796,"11":849,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":827,"11":883,"22":2068},"upgradeStep":1}}}, +{"id":96590,"name":"Cover of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,0,2843,1655,1181,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2083}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1088,"7":995,"22":2657}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1133,"7":1037,"22":2688},"upgradeStep":1}}}, +{"id":96591,"name":"Leggings of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,2843,1735,0,0,1297,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1201,"7":937,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1248,"7":977,"22":2895},"upgradeStep":1}}}, +{"id":96592,"name":"Vestment of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,2843,1655,1050,0,0,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":966,"11":1105,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1007,"11":1151,"22":3308},"upgradeStep":1}}}, +{"id":96593,"name":"Shoulderwraps of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,2112,1248,0,0,812,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Haunted Forest","setId":1155,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"6":748,"7":817,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"6":779,"7":851,"22":2481},"upgradeStep":1}}}, +{"id":96594,"name":"Tunic of the Haunted Forest","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,1655,2843,0,0,0,1181,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1088,"8":995,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1133,"8":1037,"22":3308},"upgradeStep":1}}}, +{"id":96595,"name":"Handguards of the Haunted Forest","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,1328,2112,0,0,0,0,907,891,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":839,"8":823,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":872,"8":856,"22":2068},"upgradeStep":1}}}, +{"id":96596,"name":"Headguard of the Haunted Forest","icon":"inv_helm_leather_raiddruid_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,0,1163,0,0,0,0,1112,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1070,"11":1023,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1116,"11":1067,"22":2688},"upgradeStep":1}}}, +{"id":96597,"name":"Breeches of the Haunted Forest","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1735,2843,0,0,1144,0,1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"5":1053,"7":1133,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"5":1097,"7":1177,"22":2895},"upgradeStep":1}}}, +{"id":96598,"name":"Shoulderguards of the Haunted Forest","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,1248,2112,0,0,655,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1],"setName":"Armor of the Haunted Forest","setId":1156,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":602,"6":902,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":628,"6":939,"22":2481},"upgradeStep":1}}}, +{"id":96602,"name":"Invocation of the Dawn","icon":"inv_mace_2h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,2843,1895,0,0,1170,0,0,0,0,1319,0,0,10856,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":9969,"weaponDamageMax":14954,"weaponSpeed":3.6,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4600,"weaponDamageMax":6901,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"535":{"randPropPoints":3345,"weaponDamageMin":9253,"weaponDamageMax":13880,"stats":{"2":2639,"3":1759,"6":1086,"11":1225,"14":10075}},"539":{"randPropPoints":3472,"weaponDamageMin":9604,"weaponDamageMax":14407,"stats":{"2":2739,"3":1826,"6":1127,"11":1271,"14":10458},"upgradeStep":1}}}, +{"id":96603,"name":"Miracoran, the Vehement Chord","icon":"inv_bow_1h_zandalari_c_01","type":14,"rangedWeaponType":1,"stats":[0,1815,2843,0,0,0,0,979,0,0,0,1367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":14539,"weaponDamageMax":27001,"weaponSpeed":3,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":430,"11":609}},"535":{"randPropPoints":3345,"weaponDamageMin":13494,"weaponDamageMax":25062,"stats":{"1":1679,"2":2639,"7":906,"11":1266}},"539":{"randPropPoints":3472,"weaponDamageMin":14007,"weaponDamageMax":26013,"stats":{"1":1746,"2":2739,"7":942,"11":1316},"upgradeStep":1}}}, +{"id":96604,"name":"Fyn's Flickering Dagger","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,813,1139,0,0,0,0,541,435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":6469,"weaponDamageMax":12015,"weaponSpeed":1.8,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":482,"7":228,"8":179}},"535":{"randPropPoints":1434,"weaponDamageMin":6005,"weaponDamageMax":11152,"stats":{"1":754,"2":1051,"7":499,"8":401}},"539":{"randPropPoints":1488,"weaponDamageMin":6233,"weaponDamageMax":11576,"stats":{"1":783,"2":1094,"7":520,"8":418},"upgradeStep":1}}}, +{"id":96605,"name":"Zeeg's Ancient Kegsmasher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,733,1219,0,0,0,0,0,563,0,0,397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":8626,"weaponDamageMax":16020,"weaponSpeed":2.4,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"1":295,"2":562,"8":238,"11":162}},"535":{"randPropPoints":1434,"weaponDamageMin":8006,"weaponDamageMax":14870,"stats":{"1":674,"2":1131,"8":520,"11":365}},"539":{"randPropPoints":1488,"weaponDamageMin":8310,"weaponDamageMax":15434,"stats":{"1":703,"2":1174,"8":541,"11":381},"upgradeStep":1}}}, +{"id":96606,"name":"Darkwood Spiritstaff","icon":"inv_staff_2h_zandalari_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,1815,2843,0,0,0,1093,0,0,0,0,1291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":18277,"weaponDamageMax":27416,"weaponSpeed":3.3,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":496,"11":561}},"535":{"randPropPoints":3345,"weaponDamageMin":16964,"weaponDamageMax":25447,"stats":{"1":1679,"2":2639,"6":1013,"11":1194}},"539":{"randPropPoints":3472,"weaponDamageMin":17608,"weaponDamageMax":26413,"stats":{"1":1746,"2":2739,"6":1052,"11":1242},"upgradeStep":1}}}, +{"id":96607,"name":"Lost Shoulders of Fire","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,2112,1328,0,725,0,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":317,"7":434,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":671,"7":922,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":697,"7":959,"22":1949},"upgradeStep":1}}}, +{"id":96608,"name":"Lost Shoulders of Healing","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2112,1328,980,0,0,761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":907,"7":704,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":943,"7":732,"22":1949},"upgradeStep":1}}}, +{"id":96609,"name":"Lost Shoulders of Fluidity","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,2112,1328,0,0,899,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":831,"7":831,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":864,"7":864,"22":1949},"upgradeStep":1}}}, +{"id":96610,"name":"Nadagast's Exsanguinator","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1219,733,0,510,488,0,0,0,0,0,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":3234,"weaponDamageMax":6008,"weaponSpeed":1.8,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":3002,"weaponDamageMax":5576,"stats":{"2":1131,"3":674,"5":470,"6":450,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":3116,"weaponDamageMax":5788,"stats":{"2":1174,"3":703,"5":490,"6":469,"14":10458},"upgradeStep":1}}}, +{"id":96611,"name":"Jerthud, Graceful Hand of the Savior","icon":"inv_mace_1h_zandalari_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,1219,733,384,0,0,0,0,0,0,570,0,0,10859,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":4313,"weaponDamageMax":8010,"weaponSpeed":2.4,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"535":{"randPropPoints":1434,"weaponDamageMin":4003,"weaponDamageMax":7435,"stats":{"2":1131,"3":674,"4":354,"11":527,"14":10078}},"539":{"randPropPoints":1488,"weaponDamageMin":4155,"weaponDamageMax":7717,"stats":{"2":1174,"3":703,"4":368,"11":548,"14":10458},"upgradeStep":1}}}, +{"id":96612,"name":"Forgotten Mantle of the Moon","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1328,2112,0,0,0,0,1030,673,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":953,"8":622,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":991,"8":647,"22":2481},"upgradeStep":1}}}, +{"id":96613,"name":"Forgotten Mantle of the Sun","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,2112,1328,0,0,0,852,0,0,0,926,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":372,"11":406,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"7":788,"11":857,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"7":819,"11":891,"22":2481},"upgradeStep":1}}}, +{"id":96614,"name":"Abandoned Spaulders of Arrowflight","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1328,2112,0,0,0,0,673,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":289,"11":454,"22":2676}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":622,"11":953,"22":3413}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":647,"11":991,"22":3452},"upgradeStep":1}}}, +{"id":96615,"name":"Abandoned Spaulders of Renewal","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2112,1328,0,0,875,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"11":400,"22":2676}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":809,"11":844,"22":3413}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":842,"11":878,"22":3452},"upgradeStep":1}}}, +{"id":96616,"name":"Reconstructed Holy Shoulderplates","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,2112,1328,0,0,0,913,0,0,0,875,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":3654}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"7":844,"11":809,"22":4661}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"7":878,"11":842,"22":4715},"upgradeStep":1}}}, +{"id":96617,"name":"Reconstructed Furious Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1328,0,2112,0,0,0,0,926,0,0,0,852,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"7":857,"11":788,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"7":891,"11":819,"22":4715},"upgradeStep":1}}}, +{"id":96618,"name":"Reconstructed Bloody Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,673,0,1030,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"8":622,"10":953,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"8":647,"10":991,"22":4715},"upgradeStep":1}}}, +{"id":96619,"name":"Greatsword of Frozen Hells","icon":"inv_sword_2h_mogu_c_01","type":13,"weaponType":9,"handType":4,"stats":[1815,0,2843,0,0,0,1154,1255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":19939,"weaponDamageMax":29909,"weaponSpeed":3.6,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"535":{"randPropPoints":3345,"weaponDamageMin":18506,"weaponDamageMax":27760,"stats":{"0":1679,"2":2639,"6":1070,"7":1161}},"539":{"randPropPoints":3472,"weaponDamageMin":19209,"weaponDamageMax":28815,"stats":{"0":1746,"2":2739,"6":1111,"7":1207},"upgradeStep":1}}}, +{"id":96620,"name":"Do-tharak, the Swordbreaker","icon":"inv_sword_1h_mogu_c_01","type":13,"weaponType":9,"handType":2,"stats":[733,0,1219,0,0,397,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":162,"11":238}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"0":674,"2":1131,"5":365,"11":520}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"0":703,"2":1174,"5":381,"11":541},"upgradeStep":1}}}, +{"id":96621,"name":"Bo-Ris, Horror in the Night","icon":"inv_polearm_2h_mogu_c_01","type":13,"weaponType":6,"handType":4,"stats":[1815,0,2843,0,0,0,0,0,1075,0,0,1321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"weaponDamageMin":19939,"weaponDamageMax":29909,"weaponSpeed":3.6,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":462,"11":601}},"535":{"randPropPoints":3345,"weaponDamageMin":18506,"weaponDamageMax":27760,"stats":{"0":1679,"2":2639,"8":993,"11":1225}},"539":{"randPropPoints":3472,"weaponDamageMin":19209,"weaponDamageMax":28815,"stats":{"0":1746,"2":2739,"8":1033,"11":1272},"upgradeStep":1}}}, +{"id":96622,"name":"Visage of the Doomed","icon":"inv_shield_zandalari_c_02","type":13,"weaponType":7,"handType":3,"stats":[976,0,1584,0,0,0,0,0,0,552,720,0,0,0,0,0,0,0,0,0,0,0,20394,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":246,"10":298,"22":15628}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"9":511,"10":664,"22":19935}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"9":531,"10":691,"22":20165},"upgradeStep":1}}}, +{"id":96626,"name":"Saurok Stalker's Tunic","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1655,2843,0,0,0,0,0,1163,0,0,1112,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"8":1070,"11":1023,"22":4551}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"8":1116,"11":1067,"22":4603},"upgradeStep":1}}}, +{"id":96627,"name":"Saurok Stalker's Gloves","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1328,2112,0,0,0,918,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":849,"8":796,"22":2844}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":883,"8":827,"22":2877},"upgradeStep":1}}}, +{"id":96628,"name":"Saurok Stalker's Headguard","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1655,2843,0,0,1144,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"5":1053,"7":1053,"22":3697}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"5":1097,"7":1097,"22":3740},"upgradeStep":1}}}, +{"id":96629,"name":"Saurok Stalker's Legguards","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1735,2843,0,0,0,0,1192,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1103,"11":1070,"22":3982}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1147,"11":1116,"22":4028},"upgradeStep":1}}}, +{"id":96630,"name":"Saurok Stalker's Spaulders","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1248,2112,0,0,766,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Saurok Stalker","setId":1157,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":706,"6":842,"22":3413}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":735,"6":877,"22":3452},"upgradeStep":1}}}, +{"id":96634,"name":"Gloves of the Chromatic Hydra","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,2112,1328,0,0,860,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":796,"11":849,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":827,"11":883,"22":1625},"upgradeStep":1}}}, +{"id":96635,"name":"Hood of the Chromatic Hydra","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,1181,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"5":1088,"7":995,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"5":1133,"7":1037,"22":2112},"upgradeStep":1}}}, +{"id":96636,"name":"Leggings of the Chromatic Hydra","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,2843,1735,0,0,1297,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1201,"7":937,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1248,"7":977,"22":2274},"upgradeStep":1}}}, +{"id":96637,"name":"Robes of the Chromatic Hydra","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,2843,1655,0,1050,0,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"5":966,"11":1105,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"5":1007,"11":1151,"22":2599},"upgradeStep":1}}}, +{"id":96638,"name":"Mantle of the Chromatic Hydra","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,2112,1248,0,0,812,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[3],"setName":"Regalia of the Chromatic Hydra","setId":1158,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"6":748,"7":817,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"6":779,"7":851,"22":1949},"upgradeStep":1}}}, +{"id":96639,"name":"Fire-Charm Tunic","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1655,2843,0,0,0,0,0,1163,0,0,1112,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"8":1070,"11":1023,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"8":1116,"11":1067,"22":3308},"upgradeStep":1}}}, +{"id":96640,"name":"Fire-Charm Grips","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1328,2112,0,0,0,918,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":849,"8":796,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":883,"8":827,"22":2068},"upgradeStep":1}}}, +{"id":96641,"name":"Fire-Charm Headpiece","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,1144,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"5":1053,"7":1053,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"5":1097,"7":1097,"22":2688},"upgradeStep":1}}}, +{"id":96642,"name":"Fire-Charm Leggings","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1735,2843,0,0,0,0,1192,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1103,"11":1070,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1147,"11":1116,"22":2895},"upgradeStep":1}}}, +{"id":96643,"name":"Fire-Charm Spaulders","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1248,2112,0,0,766,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Battlegear","setId":1159,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":706,"6":842,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":735,"6":877,"22":2481},"upgradeStep":1}}}, +{"id":96644,"name":"Fire-Charm Handwraps","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,2112,1328,948,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":878,"7":759,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":912,"7":789,"22":2068},"upgradeStep":1}}}, +{"id":96645,"name":"Fire-Charm Helm","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,2843,1655,1217,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2083}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1121,"11":937,"22":2657}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1168,"11":977,"22":2688},"upgradeStep":1}}}, +{"id":96646,"name":"Fire-Charm Legwraps","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,2843,1735,1181,0,0,1161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1088,"7":1075,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1133,"7":1117,"22":2895},"upgradeStep":1}}}, +{"id":96647,"name":"Fire-Charm Vest","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,2843,1655,0,0,1144,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1053,"7":1053,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1097,"7":1097,"22":3308},"upgradeStep":1}}}, +{"id":96648,"name":"Fire-Charm Mantle","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Vestments","setId":1160,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":2481},"upgradeStep":1}}}, +{"id":96649,"name":"Fire-Charm Chestguard","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1655,2843,0,0,0,1181,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":480,"8":434,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1088,"8":995,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1133,"8":1037,"22":3308},"upgradeStep":1}}}, +{"id":96650,"name":"Fire-Charm Gauntlets","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1328,2112,0,0,0,0,907,891,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"8":385,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"7":839,"8":823,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"7":872,"8":856,"22":2068},"upgradeStep":1}}}, +{"id":96651,"name":"Fire-Charm Crown","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,0,1163,0,0,0,0,1112,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"11":448,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"6":1070,"11":1023,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"6":1116,"11":1067,"22":2688},"upgradeStep":1}}}, +{"id":96652,"name":"Fire-Charm Legguards","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,1735,2843,0,0,1144,0,1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":463,"7":543,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"5":1053,"7":1133,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"5":1097,"7":1177,"22":2895},"upgradeStep":1}}}, +{"id":96653,"name":"Fire-Charm Shoulderguards","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1248,2112,0,0,655,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[11],"setName":"Fire-Charm Armor","setId":1161,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":259,"6":408,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":602,"6":902,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":628,"6":939,"22":2481},"upgradeStep":1}}}, +{"id":96654,"name":"Lightning Emperor's Battleplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,989,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"7":909,"8":1138,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"7":948,"8":1186,"22":6287},"upgradeStep":1}}}, +{"id":96655,"name":"Lightning Emperor's Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,959,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"5":887,"6":732,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"5":922,"6":761,"22":3929},"upgradeStep":1}}}, +{"id":96656,"name":"Lightning Emperor's Helmet","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,1203,0,1072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"5":1110,"7":983,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"5":1156,"7":1027,"22":5108},"upgradeStep":1}}}, +{"id":96657,"name":"Lightning Emperor's Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,1253,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"6":1154,"11":961,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"6":1203,"11":999,"22":5501},"upgradeStep":1}}}, +{"id":96658,"name":"Lightning Emperor's Pauldrons","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,0,0,0,743,0,0,927,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Battlegear of the Lightning Emperor","setId":1162,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"8":684,"11":855,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"8":713,"11":890,"22":4715},"upgradeStep":1}}}, +{"id":96659,"name":"Lightning Emperor's Breastplate","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,2843,1655,0,0,1144,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":4872}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1053,"7":1053,"22":6215}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1097,"7":1097,"22":6287},"upgradeStep":1}}}, +{"id":96660,"name":"Lightning Emperor's Gloves","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,2112,1328,948,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":3045}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":878,"7":759,"22":3884}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":912,"7":789,"22":3929},"upgradeStep":1}}}, +{"id":96661,"name":"Lightning Emperor's Headguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,2843,1655,1217,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":3959}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1121,"11":937,"22":5050}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1168,"11":977,"22":5108},"upgradeStep":1}}}, +{"id":96662,"name":"Lightning Emperor's Greaves","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,2843,1735,1181,0,0,1161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":4263}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1088,"7":1075,"22":5438}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1133,"7":1117,"22":5501},"upgradeStep":1}}}, +{"id":96663,"name":"Lightning Emperor's Mantle","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Vestments of the Lightning Emperor","setId":1163,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":3654}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":4661}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":4715},"upgradeStep":1}}}, +{"id":96664,"name":"Lightning Emperor's Chestguard","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,1112,1163,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"9":1023,"10":1070,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"9":1067,"10":1116,"22":6287},"upgradeStep":1}}}, +{"id":96665,"name":"Lightning Emperor's Handguards","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,665,1038,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"8":614,"9":961,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"8":639,"9":999,"22":3929},"upgradeStep":1}}}, +{"id":96666,"name":"Lightning Emperor's Faceguard","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,800,0,0,1361,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"8":731,"11":1257,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"8":765,"11":1308,"22":5108},"upgradeStep":1}}}, +{"id":96667,"name":"Lightning Emperor's Legguards","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,928,0,0,0,0,1350,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":853,"10":1251,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":890,"10":1299,"22":5501},"upgradeStep":1}}}, +{"id":96668,"name":"Lightning Emperor's Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,859,0,0,0,0,0,859,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[4],"setName":"Plate of the Lightning Emperor","setId":1164,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"5":791,"11":791,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"5":824,"11":824,"22":4715},"upgradeStep":1}}}, +{"id":96669,"name":"Handwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2112,1328,948,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":878,"7":759,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":912,"7":789,"22":1625},"upgradeStep":1}}}, +{"id":96670,"name":"Cowl of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2843,1655,1217,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1121,"11":937,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1168,"11":977,"22":2112},"upgradeStep":1}}}, +{"id":96671,"name":"Legwraps of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2843,1735,1181,0,0,1161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1088,"7":1075,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1133,"7":1117,"22":2274},"upgradeStep":1}}}, +{"id":96672,"name":"Robes of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2843,1655,0,0,1144,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1053,"7":1053,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1097,"7":1097,"22":2599},"upgradeStep":1}}}, +{"id":96673,"name":"Mantle of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Vestments of the Exorcist","setId":1165,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":1949},"upgradeStep":1}}}, +{"id":96674,"name":"Gloves of the Exorcist","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2112,1328,0,0,860,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":796,"11":849,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":827,"11":883,"22":1625},"upgradeStep":1}}}, +{"id":96675,"name":"Hood of the Exorcist","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,2843,1655,1181,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1088,"7":995,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1133,"7":1037,"22":2112},"upgradeStep":1}}}, +{"id":96676,"name":"Leggings of the Exorcist","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,2843,1735,0,0,1297,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1201,"7":937,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1248,"7":977,"22":2274},"upgradeStep":1}}}, +{"id":96677,"name":"Raiment of the Exorcist","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,2843,1655,1050,0,0,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":966,"11":1105,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1007,"11":1151,"22":2599},"upgradeStep":1}}}, +{"id":96678,"name":"Shoulderguards of the Exorcist","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2112,1248,0,0,812,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[5],"setName":"Regalia of the Exorcist","setId":1166,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"6":748,"7":817,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"6":779,"7":851,"22":1949},"upgradeStep":1}}}, +{"id":96679,"name":"Nine-Tailed Tunic","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1655,2843,0,0,0,0,0,1163,0,0,1112,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"8":1070,"11":1023,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"8":1116,"11":1067,"22":3308},"upgradeStep":1}}}, +{"id":96680,"name":"Nine-Tailed Gloves","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1328,2112,0,0,0,918,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":849,"8":796,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":883,"8":827,"22":2068},"upgradeStep":1}}}, +{"id":96681,"name":"Nine-Tailed Helmet","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,1144,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"5":1053,"7":1053,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"5":1097,"7":1097,"22":2688},"upgradeStep":1}}}, +{"id":96682,"name":"Nine-Tailed Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1735,2843,0,0,0,0,1192,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1103,"11":1070,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1147,"11":1116,"22":2895},"upgradeStep":1}}}, +{"id":96683,"name":"Nine-Tailed Spaulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1248,2112,0,0,766,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[6],"setName":"Nine-Tail Battlegear","setId":1167,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":706,"6":842,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":735,"6":877,"22":2481},"upgradeStep":1}}}, +{"id":96684,"name":"Tunic of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2843,1655,0,0,1144,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"7":463,"22":3568}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"6":1053,"7":1053,"22":4551}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"6":1097,"7":1097,"22":4603},"upgradeStep":1}}}, +{"id":96685,"name":"Handwraps of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2112,1328,948,0,0,821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":420,"7":353,"22":2230}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":878,"7":759,"22":2844}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":912,"7":789,"22":2877},"upgradeStep":1}}}, +{"id":96686,"name":"Faceguard of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2843,1655,1217,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"11":406,"22":2899}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1121,"11":937,"22":3697}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1168,"11":977,"22":3740},"upgradeStep":1}}}, +{"id":96687,"name":"Legwraps of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2843,1735,1181,0,0,1161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":480,"7":514,"22":3122}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"4":1088,"7":1075,"22":3982}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"4":1133,"7":1117,"22":4028},"upgradeStep":1}}}, +{"id":96688,"name":"Mantle of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2112,1248,873,0,0,0,0,0,0,835,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Witch Doctor","setId":1168,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2676}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"4":804,"11":769,"22":3413}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"4":838,"11":802,"22":3452},"upgradeStep":1}}}, +{"id":96689,"name":"Cuirass of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1655,2843,0,0,0,0,0,1163,0,0,1112,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":472,"11":448,"22":3568}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"8":1070,"11":1023,"22":4551}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"8":1116,"11":1067,"22":4603},"upgradeStep":1}}}, +{"id":96690,"name":"Grips of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1328,2112,0,0,0,918,0,860,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":398,"8":380,"22":2230}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":849,"8":796,"22":2844}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":883,"8":827,"22":2877},"upgradeStep":1}}}, +{"id":96691,"name":"Helmet of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,1655,2843,0,0,1144,0,1144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"5":463,"7":463,"22":2899}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"5":1053,"7":1053,"22":3697}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"5":1097,"7":1097,"22":3740},"upgradeStep":1}}}, +{"id":96692,"name":"Legguards of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1735,2843,0,0,0,0,1192,0,0,0,1163,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":528,"11":472,"22":3122}},"535":{"randPropPoints":3345,"stats":{"1":1599,"2":2639,"7":1103,"11":1070,"22":3982}},"539":{"randPropPoints":3472,"stats":{"1":1666,"2":2739,"7":1147,"11":1116,"22":4028},"upgradeStep":1}}}, +{"id":96693,"name":"Spaulders of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1248,2112,0,0,766,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Witch Doctor","setId":1169,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":310,"6":378,"22":2676}},"535":{"randPropPoints":2485,"stats":{"1":1147,"2":1960,"5":706,"6":842,"22":3413}},"539":{"randPropPoints":2579,"stats":{"1":1196,"2":2035,"5":735,"6":877,"22":3452},"upgradeStep":1}}}, +{"id":96694,"name":"Hauberk of the Witch Doctor","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,2843,1655,1050,0,0,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":420,"11":489,"22":3568}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":966,"11":1105,"22":4551}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1007,"11":1151,"22":4603},"upgradeStep":1}}}, +{"id":96695,"name":"Gloves of the Witch Doctor","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2112,1328,0,0,860,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":2230}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":796,"11":849,"22":2844}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":827,"11":883,"22":2877},"upgradeStep":1}}}, +{"id":96696,"name":"Headpiece of the Witch Doctor","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,2843,1655,1181,0,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":480,"7":434,"22":2899}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"4":1088,"7":995,"22":3697}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"4":1133,"7":1037,"22":3740},"upgradeStep":1}}}, +{"id":96697,"name":"Kilt of the Witch Doctor","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,2843,1735,0,0,1297,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":3122}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1201,"7":937,"22":3982}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1248,"7":977,"22":4028},"upgradeStep":1}}}, +{"id":96698,"name":"Shoulderwraps of the Witch Doctor","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2112,1248,0,0,812,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Witch Doctor","setId":1170,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":2676}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"6":748,"7":817,"22":3413}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"6":779,"7":851,"22":3452},"upgradeStep":1}}}, +{"id":96702,"name":"Necklace of the Terra-Cotta Archer","icon":"inv_jewelry_necklace_128","type":2,"stats":[0,976,1584,0,0,0,675,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":290,"7":277}},"535":{"randPropPoints":1864,"stats":{"1":900,"2":1471,"6":623,"7":597}},"539":{"randPropPoints":1934,"stats":{"1":937,"2":1526,"6":648,"7":621},"upgradeStep":1}}}, +{"id":96703,"name":"Spiderweb Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1408,2112,0,0,0,1045,0,757,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":482,"8":349,"22":1763}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"6":970,"8":703,"22":2249}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"6":1007,"8":729,"22":2274},"upgradeStep":1}}}, +{"id":96704,"name":"Scalehide Spurs","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,1408,2112,0,0,0,0,939,939,0,0,0,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":433,"8":433,"22":2453}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"7":871,"8":871,"22":3129}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"7":904,"8":904,"22":3165},"upgradeStep":1}}}, +{"id":96705,"name":"Abandoned Zandalari Firecord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,2112,1328,0,761,980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":330,"6":431,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"5":704,"6":907,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"5":732,"6":943,"22":1462},"upgradeStep":1}}}, +{"id":96706,"name":"Abandoned Zandalari Shadowgirdle","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,2112,1328,1030,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"4":953,"11":622,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"4":991,"11":647,"22":1462},"upgradeStep":1}}}, +{"id":96707,"name":"Silentflame Sandals","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,2112,1408,0,779,0,0,0,0,0,1033,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":359,"11":476,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"5":723,"11":959,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"5":750,"11":995,"22":1787},"upgradeStep":1}}}, +{"id":96708,"name":"Necklace of the Terra-Cotta Invoker","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1584,976,0,695,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"7":261}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"5":642,"7":565}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"5":668,"7":588},"upgradeStep":1}}}, +{"id":96709,"name":"Home-Warding Slippers","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,2112,1408,0,0,0,892,0,0,0,966,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":412,"11":446,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"7":828,"11":897,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"7":859,"11":931,"22":1787},"upgradeStep":1}}}, +{"id":96710,"name":"Deeproot Treads","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,2112,1408,993,0,0,846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1763}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"4":922,"7":786,"22":2249}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"4":957,"7":815,"22":2274},"upgradeStep":1}}}, +{"id":96711,"name":"Spiritbound Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,2112,1408,0,0,939,0,0,0,0,939,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":2453}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"6":871,"11":871,"22":3129}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"6":904,"11":904,"22":3165},"upgradeStep":1}}}, +{"id":96712,"name":"Vaultwalker Sabatons","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,2112,1408,0,0,0,939,0,0,0,939,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3350}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"7":871,"11":871,"22":4273}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"7":904,"11":904,"22":4322},"upgradeStep":1}}}, +{"id":96713,"name":"Necklace of the Terra-Cotta Mender","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1584,976,705,0,0,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":304,"11":253}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":900,"4":652,"11":549}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":937,"4":678,"11":571},"upgradeStep":1}}}, +{"id":96714,"name":"Abandoned Zandalari Silentbelt","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,1328,2112,0,0,0,967,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":424,"7":340,"22":1442}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"6":895,"7":724,"22":1840}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"6":930,"7":753,"22":1861},"upgradeStep":1}}}, +{"id":96715,"name":"Abandoned Zandalari Moonstrap","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,2112,1328,0,0,1005,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":442,"7":309,"22":1442}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":930,"7":663,"22":1840}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":967,"7":689,"22":1861},"upgradeStep":1}}}, +{"id":96716,"name":"Abandoned Zandalari Arrowlinks","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1328,2112,0,0,783,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":340,"11":424,"22":2007}},"535":{"randPropPoints":2485,"stats":{"1":1227,"2":1960,"5":724,"11":895,"22":2560}},"539":{"randPropPoints":2579,"stats":{"1":1276,"2":2035,"5":753,"11":930,"22":2589},"upgradeStep":1}}}, +{"id":96717,"name":"Abandoned Zandalari Waterchain","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,2112,1328,0,0,953,806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"7":350,"22":2007}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":882,"7":746,"22":2560}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":917,"7":775,"22":2589},"upgradeStep":1}}}, +{"id":96718,"name":"Abandoned Zandalari Greatbelt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,2112,1328,0,0,899,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"11":393,"22":2741}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":831,"11":831,"22":3496}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":864,"11":864,"22":3536},"upgradeStep":1}}}, +{"id":96719,"name":"Abandoned Zandalari Goreplate","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1328,0,2112,0,0,875,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":382,"6":400,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"5":809,"6":844,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"5":842,"6":878,"22":3536},"upgradeStep":1}}}, +{"id":96720,"name":"Abandoned Zandalari Bucklebreaker","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,0,761,0,980,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":330,"11":431,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"9":704,"11":907,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"9":732,"11":943,"22":3536},"upgradeStep":1}}}, +{"id":96721,"name":"Necklace of the Terra-Cotta Vanquisher","icon":"inv_jewelry_necklace_130","type":2,"stats":[976,0,1584,0,0,715,0,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":309,"11":245}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"5":661,"11":533}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"5":687,"11":555},"upgradeStep":1}}}, +{"id":96722,"name":"Locksmasher Greaves","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1408,0,2112,0,0,735,0,1058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":339,"7":488,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"5":682,"7":982,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"5":708,"7":1019,"22":4322},"upgradeStep":1}}}, +{"id":96723,"name":"Columnbreaker Stompers","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,915,0,0,953,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":422,"11":440,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"8":849,"11":884,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"8":882,"11":918,"22":4322},"upgradeStep":1}}}, +{"id":96724,"name":"Necklace of the Terra-Cotta Protector","icon":"inv_jewelry_necklace_130","type":2,"stats":[976,0,1584,0,0,0,0,0,495,0,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":207,"10":331}},"535":{"randPropPoints":1864,"stats":{"0":900,"2":1471,"8":457,"10":705}},"539":{"randPropPoints":1934,"stats":{"0":937,"2":1526,"8":475,"10":733},"upgradeStep":1}}}, +{"id":96725,"name":"Gloves of the Thousandfold Hells","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,2112,1328,0,0,860,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"11":398,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1227,"6":796,"11":849,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1276,"6":827,"11":883,"22":1625},"upgradeStep":1}}}, +{"id":96726,"name":"Hood of the Thousandfold Hells","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,1181,0,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":480,"7":434,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"5":1088,"7":995,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"5":1133,"7":1037,"22":2112},"upgradeStep":1}}}, +{"id":96727,"name":"Leggings of the Thousandfold Hells","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,2843,1735,0,0,1297,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":577,"7":406,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1599,"6":1201,"7":937,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1666,"6":1248,"7":977,"22":2274},"upgradeStep":1}}}, +{"id":96728,"name":"Robes of the Thousandfold Hells","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,2843,1655,0,1050,0,0,0,0,0,1199,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":420,"11":489,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"5":966,"11":1105,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"5":1007,"11":1151,"22":2599},"upgradeStep":1}}}, +{"id":96729,"name":"Mantle of the Thousandfold Hells","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,2112,1248,0,0,812,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Thousandfold Hells","setId":1171,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"7":366,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1147,"6":748,"7":817,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1196,"6":779,"7":851,"22":1949},"upgradeStep":1}}}, +{"id":96730,"name":"Helmet of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,1203,0,1072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":512,"7":408,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"5":1110,"7":983,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"5":1156,"7":1027,"22":5108},"upgradeStep":1}}}, +{"id":96731,"name":"Battleplate of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,989,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":392,"8":505,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"7":909,"8":1138,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"7":948,"8":1186,"22":6287},"upgradeStep":1}}}, +{"id":96732,"name":"Gauntlets of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,959,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":416,"6":348,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"5":887,"6":732,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"5":922,"6":761,"22":3929},"upgradeStep":1}}}, +{"id":96733,"name":"Legplates of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,0,1253,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":514,"11":458,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"6":1154,"11":961,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"6":1203,"11":999,"22":5501},"upgradeStep":1}}}, +{"id":96734,"name":"Pauldrons of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,0,0,0,743,0,0,927,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Last Mogu","setId":1172,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":300,"11":384,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"8":684,"11":855,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"8":713,"11":890,"22":4715},"upgradeStep":1}}}, +{"id":96735,"name":"Chestguard of the Last Mogu","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,1112,1163,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"9":1023,"10":1070,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"9":1067,"10":1116,"22":6287},"upgradeStep":1}}}, +{"id":96736,"name":"Handguards of the Last Mogu","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1328,0,2112,0,0,0,0,0,665,1038,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":281,"9":462,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1227,"2":1960,"8":614,"9":961,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1276,"2":2035,"8":639,"9":999,"22":3929},"upgradeStep":1}}}, +{"id":96737,"name":"Faceguard of the Last Mogu","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,800,0,0,1361,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":283,"11":585,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"8":731,"11":1257,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"8":765,"11":1308,"22":5108},"upgradeStep":1}}}, +{"id":96738,"name":"Legguards of the Last Mogu","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1735,0,2843,0,0,928,0,0,0,0,1350,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":364,"10":602,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1599,"2":2639,"5":853,"10":1251,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1666,"2":2739,"5":890,"10":1299,"22":5501},"upgradeStep":1}}}, +{"id":96739,"name":"Shoulderguards of the Last Mogu","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1248,0,2112,0,0,859,0,0,0,0,0,859,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[9],"setName":"Plate of the Last Mogu","setId":1173,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":353,"11":353,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1147,"2":1960,"5":791,"11":791,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1196,"2":2035,"5":824,"11":824,"22":4715},"upgradeStep":1}}}, +{"id":96740,"name":"Sign of the Bloodied God","icon":"inv_jewelry_ring_163","type":11,"stats":[0,1116,1675,0,0,0,0,744,0,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"541":{"randPropPoints":1971,"stats":{"1":1037,"2":1555,"7":691,"11":691}},"545":{"randPropPoints":2046,"stats":{"1":1076,"2":1614,"7":717,"11":717},"upgradeStep":1}}}, +{"id":96741,"name":"Renataki's Soul Charm","icon":"ability_warrior_bladestorm","type":12,"stats":[0,0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"541":{"randPropPoints":2628,"stats":{"8":1752}},"545":{"randPropPoints":2728,"stats":{"8":1819},"upgradeStep":1}}}, +{"id":96742,"name":"Lightning-Eye Hood","icon":"inv_helm_leather_raidrogue_m_01","type":1,"armorType":2,"stats":[0,1764,3006,0,0,0,0,1157,0,0,0,1235,0,0,0,0,0,0,0,0,0,0,2765,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":460,"11":449,"22":2083}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"7":1068,"11":1135,"22":2703}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"7":1112,"11":1184,"22":2734},"upgradeStep":1}}}, +{"id":96743,"name":"Spearman's Jingling Leggings","icon":"inv_pant_mail_raidhunter_m_01","type":9,"armorType":3,"stats":[0,1844,3006,0,0,0,0,1315,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":529,"8":460,"22":3122}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"7":1215,"8":1068,"22":4051}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"7":1264,"8":1112,"22":4097},"upgradeStep":1}}}, +{"id":96744,"name":"Static-Shot Shoulderguards","icon":"inv_shoulder_mail_raidhunter_m_01","type":3,"armorType":3,"stats":[0,1409,2233,0,0,0,0,1052,784,0,0,0,0,0,0,0,0,0,0,0,0,0,3551,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":436,"8":319,"22":2676}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"7":974,"8":724,"22":3472}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"7":1012,"8":754,"22":3511},"upgradeStep":1}}}, +{"id":96745,"name":"Cloudbreaker Greatbelt","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1329,0,2233,0,0,0,0,888,0,0,0,928,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":342,"11":360,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"7":818,"11":855,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"7":852,"11":891,"22":3597},"upgradeStep":1}}}, +{"id":96746,"name":"Chestplate of Violent Detonation","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1844,0,3006,0,0,1296,0,0,0,0,0,1190,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":520,"11":474,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"5":1197,"11":1099,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"5":1246,"11":1144,"22":6394},"upgradeStep":1}}}, +{"id":96747,"name":"Bracers of Constant Implosion","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[1036,0,1675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"22":2766}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"22":2797},"upgradeStep":1}}}, +{"id":96748,"name":"Worldbreaker's Stormscythe","icon":"inv_axe_1h_thunderisleraid_d_031","type":13,"weaponType":1,"handType":2,"stats":[779,0,1288,0,0,605,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":242,"8":156}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"0":717,"2":1196,"5":559,"8":376}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"0":748,"2":1242,"5":582,"8":392},"upgradeStep":1}}}, +{"id":96749,"name":"Jin'rokh's Soulcrystal","icon":"inv_jewelry_ring_172","type":11,"stats":[1116,0,1675,0,0,0,0,0,671,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"9":344}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"8":623,"9":731}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"8":647,"9":759},"upgradeStep":1}}}, +{"id":96750,"name":"Lightningweaver Gauntlets","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,2233,1409,0,982,0,0,0,0,0,903,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":406,"11":372,"22":1259}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":909,"11":836,"22":1634}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":945,"11":869,"22":1652},"upgradeStep":1}}}, +{"id":96751,"name":"Al'set's Tormented Leggings","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,3006,1844,0,966,0,0,0,0,0,1426,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":376,"11":577,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"5":891,"11":1317,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"5":928,"11":1371,"22":2313},"upgradeStep":1}}}, +{"id":96752,"name":"Fissure-Split Shoulderwraps","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,2233,1409,0,911,974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":380,"6":398,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":844,"6":901,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":877,"6":937,"22":1983},"upgradeStep":1}}}, +{"id":96753,"name":"Robes of Static Bursts","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,3006,1844,1060,0,0,0,0,0,0,1372,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":418,"11":554,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":978,"11":1268,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1019,"11":1319,"22":2644},"upgradeStep":1}}}, +{"id":96754,"name":"Jin'rokh's Dreamshard","icon":"inv_jewelry_ring_169","type":11,"stats":[0,0,1675,1116,0,689,777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"6":339}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"5":640,"6":722}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"5":664,"6":749},"upgradeStep":1}}}, +{"id":96755,"name":"Drape of Booming Nights","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1675,1116,819,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":358,"6":270,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":760,"6":573,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":789,"6":595,"22":1322},"upgradeStep":1}}}, +{"id":96756,"name":"Soulblade of the Breaking Storm","icon":"inv_sword_1h_zandalari_c_02red","type":13,"weaponType":9,"handType":2,"stats":[0,0,1288,779,476,0,566,0,0,0,0,0,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":4181,"weaponDamageMax":7765,"weaponSpeed":2.2,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"4":185,"6":225,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":3880,"weaponDamageMax":7207,"stats":{"2":1196,"3":717,"4":439,"6":523,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":4028,"weaponDamageMax":7481,"stats":{"2":1242,"3":748,"4":458,"6":544,"14":11062},"upgradeStep":1}}}, +{"id":96757,"name":"Horridon's Last Gasp","icon":"spell_nature_eyeofthestorm","type":12,"stats":[0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"541":{"randPropPoints":2628,"stats":{"3":1752}},"545":{"randPropPoints":2728,"stats":{"3":1819},"upgradeStep":1}}}, +{"id":96758,"name":"Infinitely Conducting Bracers","icon":"inv_bracer_leather_raidmonk_m_01","type":6,"armorType":2,"stats":[0,0,1675,1116,653,0,798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"6":349,"22":1122}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":606,"6":741,"22":1456}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":629,"6":770,"22":1472},"upgradeStep":1}}}, +{"id":96759,"name":"Ghostbinder Greatboots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,2233,1409,1044,0,0,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":2453}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":966,"7":732,"22":3183}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1004,"7":762,"22":3219},"upgradeStep":1}}}, +{"id":96760,"name":"Ionized Yojamban Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,3006,1844,0,0,966,0,0,0,0,1426,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":376,"11":577,"22":4872}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":891,"11":1317,"22":6322}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":928,"11":1371,"22":6394},"upgradeStep":1}}}, +{"id":96761,"name":"Wastewalker's Sandblasted Drape","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1116,1675,0,0,819,0,618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":358,"7":270,"22":1007}},"541":{"randPropPoints":1971,"stats":{"1":1037,"2":1555,"5":760,"7":573,"22":1307}},"545":{"randPropPoints":2046,"stats":{"1":1076,"2":1614,"5":789,"7":595,"22":1322},"upgradeStep":1}}}, +{"id":96762,"name":"Talisman of Living Poison","icon":"inv_jewelry_necklace_119","type":2,"stats":[0,1116,1675,0,0,0,0,777,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":339,"8":301}},"541":{"randPropPoints":1971,"stats":{"1":1037,"2":1555,"7":722,"8":640}},"545":{"randPropPoints":2046,"stats":{"1":1076,"2":1614,"7":749,"8":664},"upgradeStep":1}}}, +{"id":96763,"name":"Jalak's Maelstrom Staff","icon":"inv_stave_2h_thunderisleraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1924,3006,0,0,1360,0,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":19328,"weaponDamageMax":28993,"weaponSpeed":3.3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"5":584,"11":490}},"541":{"randPropPoints":3537,"weaponDamageMin":17940,"weaponDamageMax":26910,"stats":{"1":1780,"2":2790,"5":1261,"11":1115}},"545":{"randPropPoints":3672,"weaponDamageMin":18621,"weaponDamageMax":27932,"stats":{"1":1851,"2":2897,"5":1310,"11":1160},"upgradeStep":1}}}, +{"id":96764,"name":"Bindings of Multiplicative Strikes","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,1116,1675,0,0,0,756,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":330,"7":317,"22":1122}},"541":{"randPropPoints":1971,"stats":{"1":1037,"2":1555,"6":701,"7":674,"22":1456}},"545":{"randPropPoints":2046,"stats":{"1":1076,"2":1614,"6":728,"7":699,"22":1472},"upgradeStep":1}}}, +{"id":96765,"name":"Sul'lithuz Sandmail","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,1844,3006,0,0,0,0,1372,0,0,0,1060,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":554,"11":418,"22":3568}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"7":1268,"11":978,"22":4629}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"7":1319,"11":1019,"22":4682},"upgradeStep":1}}}, +{"id":96766,"name":"Frozen Warlord's Bracers","icon":"inv_bracer_plate_raidwarrior_m_01","type":6,"armorType":4,"stats":[1116,0,1675,0,0,0,0,798,653,0,0,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"8":285,"22":2132}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"7":741,"8":606,"22":2766}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"7":770,"8":629,"22":2797},"upgradeStep":1}}}, +{"id":96767,"name":"Bloodlord's Bloodsoaked Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1844,0,3006,0,0,0,0,1060,0,0,0,1372,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":418,"11":554,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"7":978,"11":1268,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"7":1019,"11":1319,"22":5595},"upgradeStep":1}}}, +{"id":96768,"name":"Puncture-Proof Greathelm","icon":"inv_helmet_plate_raidwarrior_m_01","type":1,"armorType":4,"stats":[1764,0,3006,0,0,0,0,0,0,1196,1236,0,0,0,0,0,0,0,0,0,0,0,5253,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":443,"10":483,"22":3959}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"9":1100,"10":1140,"22":5137}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"9":1147,"10":1187,"22":5195},"upgradeStep":1}}}, +{"id":96769,"name":"Horn-Rimmed Doomcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1116,0,1675,0,0,744,0,0,0,0,0,744,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":325,"11":325,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"5":691,"11":691,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"5":717,"11":717,"22":1322},"upgradeStep":1}}}, +{"id":96770,"name":"Spark of Zandalar","icon":"spell_nature_lightningshield","type":12,"stats":[0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"541":{"randPropPoints":2628,"stats":{"7":1752}},"545":{"randPropPoints":2728,"stats":{"7":1819},"upgradeStep":1}}}, +{"id":96771,"name":"Flamecaster's Burning Crown","icon":"inv_helm_cloth_raidmage_m_01","type":1,"armorType":1,"stats":[0,0,3006,1764,0,0,1331,1061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2172,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":545,"7":364,"22":1637}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"6":1231,"7":972,"22":2124}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"6":1280,"7":1016,"22":2148},"upgradeStep":1}}}, +{"id":96772,"name":"Vaccinator's Armwraps","icon":"inv_cloth_raidpriest_m_01bracer","type":6,"armorType":1,"stats":[0,0,1675,1116,744,0,0,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":881}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":691,"7":691,"22":1144}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":717,"7":717,"22":1157},"upgradeStep":1}}}, +{"id":96773,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,3006,1924,0,1189,0,1350,0,0,0,0,0,0,11479,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":9664,"weaponDamageMax":14496,"weaponSpeed":3.3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"5":510,"7":553,"14":5009}},"541":{"randPropPoints":3537,"weaponDamageMin":8970,"weaponDamageMax":13455,"stats":{"2":2790,"3":1780,"5":1102,"7":1249,"14":10654}},"545":{"randPropPoints":3672,"weaponDamageMin":9310,"weaponDamageMax":13966,"stats":{"2":2897,"3":1851,"5":1145,"7":1299,"14":11060},"upgradeStep":1}}}, +{"id":96774,"name":"Horridon's Tusk Fragment","icon":"inv_jewelry_necklace_141","type":2,"stats":[0,0,1675,1116,635,0,0,0,0,0,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"11":353}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":590,"11":751}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":612,"11":780},"upgradeStep":1}}}, +{"id":96775,"name":"Petrified Eye of the Basilisk","icon":"inv_jewelry_ring_178","type":11,"stats":[0,0,1675,1116,849,0,0,0,0,0,0,566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":371,"11":247}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":788,"11":525}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":818,"11":545},"upgradeStep":1}}}, +{"id":96776,"name":"Venomlord's Totemic Wand","icon":"inv_wand_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1288,779,0,0,541,518,0,0,0,0,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":3610,"weaponDamageMax":6706,"weaponSpeed":1.9,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"7":204,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":3351,"weaponDamageMax":6224,"stats":{"2":1196,"3":717,"6":500,"7":478,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":3478,"weaponDamageMax":6461,"stats":{"2":1242,"3":748,"6":520,"7":498,"14":11062},"upgradeStep":1}}}, +{"id":96777,"name":"Roots of Rampaging Earth","icon":"inv_pant_leather_raidmonk_m_01","type":9,"armorType":2,"stats":[0,0,3006,1844,0,0,1296,0,0,0,0,1190,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"11":474,"22":2243}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":1197,"11":1099,"22":2911}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":1246,"11":1144,"22":2944},"upgradeStep":1}}}, +{"id":96778,"name":"Spaulders of Dinomancy","icon":"inv_shoulder_leather_raiddruid_m_01","type":3,"armorType":2,"stats":[0,0,2233,1409,1066,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"7":309,"22":1923}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":986,"7":703,"22":2495}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1025,"7":731,"22":2524},"upgradeStep":1}}}, +{"id":96779,"name":"Legguards of Scintillating Scales","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,3006,1844,0,0,1256,0,0,0,0,1256,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":503,"11":503,"22":3122}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":1160,"11":1160,"22":4051}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":1207,"11":1207,"22":4097},"upgradeStep":1}}}, +{"id":96780,"name":"Armplates of the Vanquished Abomination","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1675,1116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"22":2766}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"22":2797},"upgradeStep":1}}}, +{"id":96781,"name":"Bad Juju","icon":"trade_archaeology_troll_voodoodoll","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"541":{"randPropPoints":2628,"stats":{"11":1752}},"545":{"randPropPoints":2728,"stats":{"11":1819},"upgradeStep":1}}}, +{"id":96782,"name":"Kura-Kura, Kazra'jin's Skullcleaver","icon":"inv_axe_1h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,779,1288,0,0,0,533,0,0,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"1":717,"2":1196,"6":492,"11":492}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"1":748,"2":1242,"6":512,"11":512},"upgradeStep":1}}}, +{"id":96783,"name":"Mar'li's Bloodstained Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,2233,1409,1031,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":423,"6":338,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":953,"6":754,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":991,"6":784,"22":1818},"upgradeStep":1}}}, +{"id":96784,"name":"Zandalari Robes of the Final Rite","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,3006,1844,0,1157,1315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":460,"6":529,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"5":1068,"6":1215,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"5":1112,"6":1264,"22":2644},"upgradeStep":1}}}, +{"id":96785,"name":"Wushoolay's Final Choice","icon":"spell_nature_chainlightning","type":12,"stats":[0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"541":{"randPropPoints":2628,"stats":{"5":1752}},"545":{"randPropPoints":2728,"stats":{"5":1819},"upgradeStep":1}}}, +{"id":96786,"name":"Amun-Thoth, Sul's Spiritrending Talons","icon":"inv_hand_1h_thunderisleraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,1288,779,582,0,0,0,0,0,0,449,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":4941,"weaponDamageMax":9177,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":295,"4":232,"11":173,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":4586,"weaponDamageMax":8518,"stats":{"2":1196,"3":717,"4":538,"11":414,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":4760,"weaponDamageMax":8841,"stats":{"2":1242,"3":748,"4":560,"11":431,"14":11062},"upgradeStep":1}}}, +{"id":96787,"name":"Robes of Treacherous Ground","icon":"inv_leather_raiddruid_m_01robe","type":5,"armorType":2,"stats":[0,0,3006,1844,966,0,0,0,0,0,0,1426,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":376,"11":577,"22":2564}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":891,"11":1317,"22":3327}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":928,"11":1371,"22":3365},"upgradeStep":1}}}, +{"id":96788,"name":"Gaze of Gara'jal","icon":"inv_helm_mail_raidhunter_m_01","type":1,"armorType":3,"stats":[0,1764,3006,0,0,0,1196,1236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3847,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":443,"7":483,"22":2899}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"6":1100,"7":1140,"22":3761}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"6":1147,"7":1187,"22":3804},"upgradeStep":1}}}, +{"id":96789,"name":"Loa-Ridden Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1675,1036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":1561}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"22":2025}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"22":2048},"upgradeStep":1}}}, +{"id":96790,"name":"Overloaded Bladebreaker Cuirass","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1844,0,3006,0,0,935,0,0,0,0,1443,0,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":363,"10":585,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"5":862,"10":1334,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"5":898,"10":1388,"22":6394},"upgradeStep":1}}}, +{"id":96791,"name":"Zerat, Malakk's Soulburning Greatsword","icon":"inv_sword_2h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1924,0,3006,0,0,1442,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":21085,"weaponDamageMax":31628,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"5":593,"6":440}},"541":{"randPropPoints":3537,"weaponDamageMin":19571,"weaponDamageMax":29357,"stats":{"0":1780,"2":2790,"5":1333,"6":955}},"545":{"randPropPoints":3672,"weaponDamageMin":20314,"weaponDamageMax":30471,"stats":{"0":1851,"2":2897,"5":1387,"6":992},"upgradeStep":1}}}, +{"id":96792,"name":"Talisman of Angry Spirits","icon":"inv_jewelry_necklace_139","type":2,"stats":[1116,0,1675,0,0,0,766,0,0,0,0,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":335,"11":309}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"6":712,"11":657}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"6":739,"11":682},"upgradeStep":1}}}, +{"id":96793,"name":"Fortitude of the Zandalari","icon":"spell_holy_mindvision","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"541":{"randPropPoints":2628,"stats":{"11":1752}},"545":{"randPropPoints":2728,"stats":{"11":1818},"upgradeStep":1}}}, +{"id":96794,"name":"Shattered Tortoiseshell Longbow","icon":"inv_bow_1h_thunderisleraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1924,3006,0,0,1230,0,0,1336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":15374,"weaponDamageMax":28553,"weaponSpeed":3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"5":514,"8":560}},"541":{"randPropPoints":3537,"weaponDamageMin":14270,"weaponDamageMax":26502,"stats":{"1":1780,"2":2790,"5":1139,"8":1237}},"545":{"randPropPoints":3672,"weaponDamageMin":14812,"weaponDamageMax":27509,"stats":{"1":1851,"2":2897,"5":1184,"8":1286},"upgradeStep":1}}}, +{"id":96795,"name":"Rockfall Ribwraps","icon":"inv_chest_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,1844,3006,0,0,1125,1334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":446,"6":537,"22":2564}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"5":1038,"6":1233,"22":3327}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"5":1081,"6":1283,"22":3365},"upgradeStep":1}}}, +{"id":96796,"name":"Grips of Vampiric Cruelty","icon":"inv_glove_leather_raidrogue_m_01","type":7,"armorType":2,"stats":[0,1409,2233,0,0,928,0,968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":382,"7":400,"22":1602}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"5":858,"7":895,"22":2079}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"5":892,"7":931,"22":2103},"upgradeStep":1}}}, +{"id":96797,"name":"Beady-Eye Bracers","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,1036,1675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1561}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"22":2025}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"22":2048},"upgradeStep":1}}}, +{"id":96798,"name":"Quakestompers","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1409,2233,0,0,0,936,960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":390,"7":392,"22":2453}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"6":866,"7":887,"22":3183}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"6":900,"7":923,"22":3219},"upgradeStep":1}}}, +{"id":96799,"name":"Shoulderguards of Centripetal Destruction","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1409,0,2233,0,0,0,1092,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":454,"7":289,"22":3654}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"6":1010,"7":660,"22":4742}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"6":1050,"7":687,"22":4795},"upgradeStep":1}}}, +{"id":96800,"name":"Shell-Coated Wristplates","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[1116,0,1675,0,0,0,0,0,0,829,600,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":362,"10":262,"22":2132}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"9":770,"10":557,"22":2766}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"9":799,"10":578,"22":2797},"upgradeStep":1}}}, +{"id":96801,"name":"Amulet of the Primal Turtle","icon":"inv_jewelry_necklace_118","type":2,"stats":[1036,0,1675,0,0,526,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":207,"6":331}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"5":485,"6":748}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"5":505,"6":778},"upgradeStep":1}}}, +{"id":96802,"name":"Shellsplitter Greataxe","icon":"inv_axe_1h_thunderisleraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[779,0,1288,0,0,574,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"6":179}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"0":717,"2":1196,"5":530,"6":426}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"0":748,"2":1242,"5":552,"6":444},"upgradeStep":1}}}, +{"id":96803,"name":"Beakbreaker Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1116,0,1675,0,0,0,0,0,0,766,0,707,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":335,"11":309,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"9":712,"11":657,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"9":739,"11":682,"22":1322},"upgradeStep":1}}}, +{"id":96804,"name":"Azure Shell Bracers","icon":"inv_bracer_cloth_raidmage_m_01","type":6,"armorType":1,"stats":[0,0,1675,1116,0,0,819,0,0,0,0,618,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":358,"11":270,"22":881}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"6":760,"11":573,"22":1144}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"6":789,"11":595,"22":1157},"upgradeStep":1}}}, +{"id":96805,"name":"Stonegaze Hood","icon":"inv_cloth_raidpriest_m_01helm","type":1,"armorType":1,"stats":[0,0,3006,1764,1356,0,996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2172,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":538,"6":354,"22":1637}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1252,"6":914,"22":2124}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1303,"6":955,"22":2148},"upgradeStep":1}}}, +{"id":96806,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,2233,1409,0,0,953,953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1259}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":881,"7":881,"22":1634}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":916,"7":916,"22":1652},"upgradeStep":1}}}, +{"id":96807,"name":"Shimmershell Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1675,1116,0,0,689,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":301,"11":339,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"6":640,"11":722,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"6":664,"11":749,"22":1322},"upgradeStep":1}}}, +{"id":96808,"name":"Tortos' Discarded Shell","icon":"inv_shield_thunderisleraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1675,1036,772,0,0,607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20739,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":328,"7":229,"22":15628}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":715,"7":559,"22":20279}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":743,"7":583,"22":20509},"upgradeStep":1}}}, +{"id":96809,"name":"Vampire Bat-Hide Bracers","icon":"inv_leather_raiddruid_m_01bracer","type":6,"armorType":2,"stats":[0,0,1675,1116,788,0,0,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":1122}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":731,"7":623,"22":1456}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":759,"7":647,"22":1472},"upgradeStep":1}}}, +{"id":96810,"name":"Robes of Concussive Shocks","icon":"inv_robe_leather_raidmonk_m_01","type":5,"armorType":2,"stats":[0,0,3006,1844,1256,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2564}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1160,"7":1160,"22":3327}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1207,"7":1207,"22":3365},"upgradeStep":1}}}, +{"id":96811,"name":"Spaulders of Quaking Fear","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2233,1409,1079,0,0,737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3551,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":448,"7":299,"22":2676}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":998,"7":681,"22":3472}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1038,"7":709,"22":3511},"upgradeStep":1}}}, +{"id":96812,"name":"Refreshing Abalone Girdle","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,2233,1329,956,0,0,839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"7":321,"22":2741}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":882,"7":773,"22":3556}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":919,"7":806,"22":3597},"upgradeStep":1}}}, +{"id":96813,"name":"Tortos' Shellseizers","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,2233,1409,831,0,1025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":340,"6":424,"22":3045}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":768,"6":948,"22":3951}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":799,"6":986,"22":3996},"upgradeStep":1}}}, +{"id":96814,"name":"Megaera's Poisoned Fang","icon":"inv_knife_1h_thunderisleraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,779,1288,0,0,449,0,0,0,0,0,582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":6841,"weaponDamageMax":12706,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":173,"11":232}},"541":{"randPropPoints":1516,"weaponDamageMin":6350,"weaponDamageMax":11794,"stats":{"1":717,"2":1196,"5":414,"11":538}},"545":{"randPropPoints":1574,"weaponDamageMin":6591,"weaponDamageMax":12241,"stats":{"1":748,"2":1242,"5":431,"11":560},"upgradeStep":1}}}, +{"id":96815,"name":"Quadra-Head Brooch","icon":"inv_jewelry_necklace_140","type":2,"stats":[0,1036,1675,0,0,704,0,0,0,0,0,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":285,"11":285}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"5":651,"11":651}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"5":677,"11":677},"upgradeStep":1}}}, +{"id":96816,"name":"Poisonblood Bladeshoulders","icon":"inv_shoulder_leather_raidrogue_m_01","type":3,"armorType":2,"stats":[0,1409,2233,0,0,0,0,953,0,0,0,953,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":393,"11":393,"22":1923}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"7":881,"11":881,"22":2495}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"7":916,"11":916,"22":2524},"upgradeStep":1}}}, +{"id":96817,"name":"Grips of Cinderflesh","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,1409,2233,0,0,0,0,879,0,0,0,996,0,0,0,0,0,0,0,0,0,0,2959,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":361,"11":412,"22":2230}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"7":813,"11":922,"22":2893}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"7":846,"11":959,"22":2926},"upgradeStep":1}}}, +{"id":96818,"name":"Plated Toothbreaker Girdle","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1329,0,2233,0,0,0,0,0,0,913,913,0,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":353,"10":353,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"9":841,"10":841,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"9":876,"10":876,"22":3597},"upgradeStep":1}}}, +{"id":96819,"name":"Rot-Proof Greatplate","icon":"inv_chest_plate_deathknight_m_01","type":5,"armorType":4,"stats":[1844,0,3006,0,0,0,0,0,0,1256,0,1256,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":503,"11":503,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"9":1160,"11":1160,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"9":1207,"11":1207,"22":6394},"upgradeStep":1}}}, +{"id":96820,"name":"Spinescale Seal","icon":"inv_jewelry_ring_164","type":11,"stats":[1116,0,1675,0,0,756,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":330,"6":317}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"5":701,"6":674}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"5":728,"6":699},"upgradeStep":1}}}, +{"id":96821,"name":"Hydraskull Choker","icon":"inv_jewelry_necklace_125","type":2,"stats":[1116,0,1675,0,0,0,0,0,0,839,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":366,"10":254}},"541":{"randPropPoints":1971,"stats":{"0":1037,"2":1555,"9":779,"10":541}},"545":{"randPropPoints":2046,"stats":{"0":1076,"2":1614,"9":808,"10":562},"upgradeStep":1}}}, +{"id":96822,"name":"Sandals of Arcane Fury","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,2233,1409,0,960,936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":392,"6":390,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":887,"6":866,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":923,"6":900,"22":1818},"upgradeStep":1}}}, +{"id":96823,"name":"Gleaming-Eye Shoulderpads","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2233,1409,928,0,968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":382,"6":400,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":858,"6":895,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":892,"6":931,"22":1983},"upgradeStep":1}}}, +{"id":96824,"name":"Frostborn Wristwraps","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1675,1036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"22":881}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"22":1144}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"22":1157},"upgradeStep":1}}}, +{"id":96825,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,1675,1116,0,744,744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"5":691,"6":691}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"5":717,"6":717},"upgradeStep":1}}}, +{"id":96826,"name":"Fetish of the Hydra","icon":"inv_offhand_1h_thunderisleraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1675,1036,0,737,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"6":261}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"5":682,"6":600}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"5":709,"6":624},"upgradeStep":1}}}, +{"id":96827,"name":"Breath of the Hydra","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"541":{"randPropPoints":2628,"stats":{"7":1752}},"545":{"randPropPoints":2728,"stats":{"7":1819},"upgradeStep":1}}}, +{"id":96828,"name":"Inscribed Bag of Hydra-Spawn","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"541":{"randPropPoints":2628,"stats":{"4":1752}},"545":{"randPropPoints":2728,"stats":{"4":1819},"upgradeStep":1}}}, +{"id":96829,"name":"Hood of Smoldering Flesh","icon":"inv_helm_leather_raidmonk_m_01","type":1,"armorType":2,"stats":[0,0,3006,1764,1318,0,1061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2765,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"6":382,"22":2083}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1217,"6":974,"22":2703}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1267,"6":1017,"22":2734},"upgradeStep":1}}}, +{"id":96830,"name":"Links of the Bifurcated Tongue","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,2233,1329,928,0,0,0,0,0,0,888,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2007}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":855,"11":818,"22":2604}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":891,"11":852,"22":2634},"upgradeStep":1}}}, +{"id":96831,"name":"Chain of Consuming Magic","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,3006,1844,1408,0,0,0,0,0,0,997,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":569,"11":390,"22":3568}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1301,"11":920,"22":4629}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1354,"11":958,"22":4682},"upgradeStep":1}}}, +{"id":96832,"name":"Ice-Scored Treads","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,2233,1409,945,0,0,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"11":401,"22":3350}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":873,"11":889,"22":4347}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":908,"11":924,"22":4396},"upgradeStep":1}}}, +{"id":96833,"name":"Pinionfeather Greatcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1036,1675,0,0,0,686,0,0,0,0,716,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":277,"11":290,"22":1007}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"6":634,"11":661,"22":1307}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"6":659,"11":688,"22":1322},"upgradeStep":1}}}, +{"id":96834,"name":"Cord of Cacophonous Cawing","icon":"inv_belt_cloth_raidwarlock_m_01","type":8,"armorType":1,"stats":[0,0,2233,1329,0,985,0,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"7":300,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"5":908,"7":728,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"5":946,"7":759,"22":1487},"upgradeStep":1}}}, +{"id":96835,"name":"Robe of Midnight Down","icon":"inv_chest_cloth_raidmage_m_01","type":5,"armorType":1,"stats":[0,0,3006,1844,0,0,0,1060,0,0,0,1372,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":418,"11":554,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"7":978,"11":1268,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"7":1019,"11":1319,"22":2644},"upgradeStep":1}}}, +{"id":96836,"name":"Giorgio's Caduceus of Pure Moods","icon":"inv_stave_2h_thunderisleraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,3006,1924,1406,0,0,1093,0,0,0,0,0,0,11479,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":9664,"weaponDamageMax":14496,"weaponSpeed":3.3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":578,"7":468,"14":5009}},"541":{"randPropPoints":3537,"weaponDamageMin":8970,"weaponDamageMax":13455,"stats":{"2":2790,"3":1780,"4":1301,"7":1013,"14":10654}},"545":{"randPropPoints":3672,"weaponDamageMin":9310,"weaponDamageMax":13966,"stats":{"2":2897,"3":1851,"4":1353,"7":1052,"14":11060},"upgradeStep":1}}}, +{"id":96837,"name":"Featherflight Belt","icon":"inv_belt_leather_raidrogue_m_01","type":8,"armorType":2,"stats":[0,1329,2233,0,0,0,0,1026,720,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":402,"8":269,"22":1442}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"7":946,"8":663,"22":1872}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"7":985,"8":691,"22":1893},"upgradeStep":1}}}, +{"id":96838,"name":"Grasp of the Ruthless Mother","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2233,1489,895,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,2959,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":390,"11":458,"22":2230}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"4":831,"11":975,"22":2893}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"4":862,"11":1012,"22":2926},"upgradeStep":1}}}, +{"id":96839,"name":"Crown of Potentiated Birth","icon":"inv_helmet_plate_raidpaladin_m_01","type":1,"armorType":4,"stats":[0,0,3006,1764,1423,0,0,875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5253,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":565,"7":303,"22":3959}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1314,"7":802,"22":5137}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1368,"7":838,"22":5195},"upgradeStep":1}}}, +{"id":96840,"name":"Talonrender Chestplate","icon":"inv_chest_plate_raidwarrior_m_01","type":5,"armorType":4,"stats":[1844,0,3006,0,0,1315,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"6":460,"22":4872}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"5":1215,"6":1068,"22":6322}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"5":1264,"6":1112,"22":6394},"upgradeStep":1}}}, +{"id":96841,"name":"Egg-Shard Grips","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1409,0,2233,0,0,0,0,0,714,0,1092,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3045}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"8":660,"10":1010,"22":3951}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"8":687,"10":1050,"22":3996},"upgradeStep":1}}}, +{"id":96842,"name":"Fabled Feather of Ji-Kun","icon":"ability_priest_angelicfeather","type":12,"stats":[0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"5":823}},"541":{"randPropPoints":2628,"stats":{"5":1752}},"545":{"randPropPoints":2728,"stats":{"5":1819},"upgradeStep":1}}}, +{"id":96843,"name":"Ji-Kun's Rising Winds","icon":"spell_holy_heal","type":12,"stats":[0,0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"8":823}},"541":{"randPropPoints":2628,"stats":{"8":1752}},"545":{"randPropPoints":2728,"stats":{"8":1818},"upgradeStep":1}}}, +{"id":96844,"name":"Durumu's Baleful Gaze","icon":"inv_bow_2h_crossbow_thunderisleraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1924,3006,0,0,0,1374,1165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":17571,"weaponDamageMax":26357,"weaponSpeed":3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"6":577,"7":486}},"541":{"randPropPoints":3537,"weaponDamageMin":16309,"weaponDamageMax":24464,"stats":{"1":1780,"2":2790,"6":1273,"7":1078}},"545":{"randPropPoints":3672,"weaponDamageMin":16928,"weaponDamageMax":25393,"stats":{"1":1851,"2":2897,"6":1323,"7":1121},"upgradeStep":1}}}, +{"id":96845,"name":"Crimson Bloom Legguards","icon":"inv_pant_leather_raidrogue_m_01","type":9,"armorType":2,"stats":[0,1844,3006,0,0,1408,997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"5":569,"6":390,"22":2243}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"5":1301,"6":920,"22":2911}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"5":1354,"6":958,"22":2944},"upgradeStep":1}}}, +{"id":96846,"name":"Links of the Disintegrator","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,1329,2233,0,0,0,971,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":378,"7":310,"22":2007}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"6":895,"7":751,"22":2604}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"6":932,"7":782,"22":2634},"upgradeStep":1}}}, +{"id":96847,"name":"Aberrant Chestguard of Torment","icon":"inv_chest_mail_raidhunter_m_01","type":5,"armorType":3,"stats":[0,1844,3006,0,0,0,1315,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":3568}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"6":1215,"7":1068,"22":4629}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"6":1264,"7":1112,"22":4682},"upgradeStep":1}}}, +{"id":96848,"name":"Caustic Spike Bracers","icon":"inv_bracer_plate_deathknight_m_01","type":6,"armorType":4,"stats":[1036,0,1675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"22":2132}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"22":2766}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"22":2797},"upgradeStep":1}}}, +{"id":96849,"name":"Legplates of the Dark Parasite","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1844,0,3006,0,0,0,0,1353,1092,0,0,0,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"7":545,"8":432,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"7":1250,"8":1008,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"7":1301,"8":1050,"22":5595},"upgradeStep":1}}}, +{"id":96850,"name":"Treads of the Blind Eye","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1409,0,2233,0,0,0,0,0,0,887,988,0,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":369,"10":404,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"9":821,"10":914,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"9":854,"10":951,"22":4396},"upgradeStep":1}}}, +{"id":96851,"name":"Artery Rippers","icon":"inv_gloves_plate_raidwarrior_m_01","type":7,"armorType":4,"stats":[1329,0,2233,0,0,0,0,0,0,872,944,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":326,"10":376,"22":3045}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"9":802,"10":871,"22":3951}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"9":836,"10":907,"22":3996},"upgradeStep":1}}}, +{"id":96852,"name":"Reinforced Mirror-Sheen Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1036,0,1675,0,0,0,0,0,0,809,526,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":331,"10":207,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"9":748,"10":485,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"9":778,"10":505,"22":1322},"upgradeStep":1}}}, +{"id":96853,"name":"Durumu's Severed Tentacle","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[1036,0,1675,0,0,702,0,0,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":271,"9":293}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"5":648,"9":641}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"5":675,"9":666},"upgradeStep":1}}}, +{"id":96854,"name":"Lifedrainer's Sordid Grip","icon":"inv_glove_cloth_raidwarlock_m_01","type":7,"armorType":1,"stats":[0,0,2233,1329,0,775,0,1001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"7":400,"22":1259}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"5":712,"7":924,"22":1634}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"5":743,"7":962,"22":1652},"upgradeStep":1}}}, +{"id":96855,"name":"Leggings of Pulsing Blood","icon":"inv_pant_cloth_raidwarlock_m_01","type":9,"armorType":1,"stats":[0,0,3006,1844,0,0,1443,0,0,0,0,935,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":585,"11":363,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":1334,"11":862,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":1388,"11":898,"22":2313},"upgradeStep":1}}}, +{"id":96856,"name":"Chilblain Spaulders","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,2233,1409,0,0,903,0,0,0,0,982,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":372,"11":406,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":836,"11":909,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":869,"11":945,"22":1983},"upgradeStep":1}}}, +{"id":96857,"name":"Deadly Glare Cape","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1675,1036,0,0,667,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":269,"7":295,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"6":617,"7":672,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"6":642,"7":699,"22":1322},"upgradeStep":1}}}, +{"id":96858,"name":"Durumu's Captive Eyeball","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,1675,1036,775,0,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"6":238}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":715,"6":525}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":744,"6":546},"upgradeStep":1}}}, +{"id":96859,"name":"Ritual Dagger of the Mind's Eye","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1288,779,574,0,462,0,0,0,0,0,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":3420,"weaponDamageMax":6353,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"4":228,"6":179,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":3175,"weaponDamageMax":5897,"stats":{"2":1196,"3":717,"4":530,"6":426,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":3295,"weaponDamageMax":6121,"stats":{"2":1242,"3":748,"4":552,"6":444,"14":11062},"upgradeStep":1}}}, +{"id":96860,"name":"Sandals of the Starving Eye","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,2233,1409,1017,0,839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":416,"6":348,"22":1763}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":940,"6":776,"22":2287}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":978,"6":807,"22":2313},"upgradeStep":1}}}, +{"id":96861,"name":"Vein-Cover Bracers","icon":"inv_bracer_mail_raidshaman_m_01","type":6,"armorType":3,"stats":[0,0,1675,1116,839,0,0,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"7":254,"22":1561}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":779,"7":541,"22":2025}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":808,"7":562,"22":2048},"upgradeStep":1}}}, +{"id":96862,"name":"Iceshatter Gauntlets","icon":"inv_glove_plate_raidpaladin_m_01","type":7,"armorType":4,"stats":[0,0,2233,1329,996,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":3045}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":918,"11":700,"22":3951}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":956,"11":730,"22":3996},"upgradeStep":1}}}, +{"id":96863,"name":"Legplates of Re-Emergence","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,3006,1844,0,0,1157,1315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":460,"7":529,"22":4263}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":1068,"7":1215,"22":5532}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":1112,"7":1264,"22":5595},"upgradeStep":1}}}, +{"id":96864,"name":"Talisman of Bloodlust","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"541":{"randPropPoints":2628,"stats":{"1":1752}},"545":{"randPropPoints":2728,"stats":{"1":1819},"upgradeStep":1}}}, +{"id":96865,"name":"Gloves of Cushioned Air","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,1329,2233,0,0,0,751,0,0,0,0,1015,0,0,0,0,0,0,0,0,0,0,2127,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":274,"11":407,"22":1602}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"6":690,"11":937,"22":2079}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"6":720,"11":975,"22":2103},"upgradeStep":1}}}, +{"id":96866,"name":"Bracers of Mutagenic Fervor","icon":"inv_bracer_mail_raidhunter_m_01","type":6,"armorType":3,"stats":[0,1116,1675,0,0,0,0,618,0,0,0,819,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":270,"11":358,"22":1561}},"541":{"randPropPoints":1971,"stats":{"1":1037,"2":1555,"7":573,"11":760,"22":2025}},"545":{"randPropPoints":2046,"stats":{"1":1076,"2":1614,"7":595,"11":789,"22":2048},"upgradeStep":1}}}, +{"id":96867,"name":"Synapse-String Handguards","icon":"inv_glove_mail_raidhunter_m_01","type":7,"armorType":3,"stats":[0,1329,2233,0,0,0,929,897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2959,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"7":337,"22":2230}},"541":{"randPropPoints":2628,"stats":{"1":1222,"2":2073,"6":857,"7":825,"22":2893}},"545":{"randPropPoints":2728,"stats":{"1":1275,"2":2152,"6":892,"7":860,"22":2926},"upgradeStep":1}}}, +{"id":96868,"name":"Pathogenic Gauntlets","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1329,0,2233,0,0,751,0,1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":274,"7":407,"22":3045}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"5":690,"7":937,"22":3951}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"5":720,"7":975,"22":3996},"upgradeStep":1}}}, +{"id":96869,"name":"Black Blood Legplates","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1844,0,3006,0,0,0,0,0,0,1223,1276,0,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":488,"10":512,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1700,"2":2790,"9":1129,"10":1179,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1771,"2":2897,"9":1175,"10":1227,"22":5595},"upgradeStep":1}}}, +{"id":96870,"name":"Metabolically Boosted Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1409,0,2233,0,0,0,0,0,0,928,968,0,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":382,"10":400,"22":3654}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"9":858,"10":895,"22":4742}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"9":892,"10":931,"22":4795},"upgradeStep":1}}}, +{"id":96871,"name":"Hydra-Scale Bloodcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1036,0,1675,0,0,0,748,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":304,"8":253,"22":1007}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"6":691,"8":583,"22":1307}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"6":719,"8":607,"22":1322},"upgradeStep":1}}}, +{"id":96872,"name":"Band of the Scaled Tyrant","icon":"inv_jewelry_ring_177","type":11,"stats":[1036,0,1675,0,0,619,0,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":261,"7":289}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"5":574,"7":687}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"5":596,"7":716},"upgradeStep":1}}}, +{"id":96873,"name":"Primordius' Talisman of Rage","icon":"ability_warrior_rampage","type":12,"stats":[0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"541":{"randPropPoints":2628,"stats":{"6":1752}},"545":{"randPropPoints":2728,"stats":{"6":1819},"upgradeStep":1}}}, +{"id":96874,"name":"Acid-Spine Bonemace","icon":"inv_mace_1h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[779,0,1288,0,0,0,0,0,0,582,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9122,"weaponDamageMax":16942,"weaponSpeed":2.4,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":295,"2":562,"9":232,"10":173}},"541":{"randPropPoints":1516,"weaponDamageMin":8467,"weaponDamageMax":15725,"stats":{"0":717,"2":1196,"9":538,"10":414}},"545":{"randPropPoints":1574,"weaponDamageMin":8788,"weaponDamageMax":16322,"stats":{"0":748,"2":1242,"9":560,"10":431},"upgradeStep":1}}}, +{"id":96875,"name":"Robes of Mutagenic Blood","icon":"inv_robe_cloth_raidwarlock_m_01","type":5,"armorType":1,"stats":[0,0,3006,1844,0,0,1296,1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":520,"7":474,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"6":1197,"7":1099,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"6":1246,"7":1144,"22":2644},"upgradeStep":1}}}, +{"id":96876,"name":"Helix-Breaker Gloves","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2233,1329,983,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":375,"6":306,"22":1259}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":905,"6":722,"22":1634}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":943,"6":752,"22":1652},"upgradeStep":1}}}, +{"id":96877,"name":"Leggings of Ebon Veins","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,3006,1844,1256,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"6":503,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1160,"6":1160,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1207,"6":1207,"22":2313},"upgradeStep":1}}}, +{"id":96878,"name":"Bracers of Fragile Bone","icon":"inv_bracer_cloth_raidwarlock_m_01","type":6,"armorType":1,"stats":[0,0,1675,1116,0,0,756,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":330,"7":317,"22":881}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"6":701,"7":674,"22":1144}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"6":728,"7":699,"22":1157},"upgradeStep":1}}}, +{"id":96879,"name":"Stolen Relic of Zuldazar","icon":"spell_fire_twilightfireward","type":12,"stats":[0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"541":{"randPropPoints":2628,"stats":{"4":1752}},"545":{"randPropPoints":2728,"stats":{"4":1819},"upgradeStep":1}}}, +{"id":96880,"name":"Leggings of the Malformed Sapling","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,0,3006,1844,1353,0,1092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"6":432,"22":2243}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1250,"6":1008,"22":2911}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1301,"6":1050,"22":2944},"upgradeStep":1}}}, +{"id":96881,"name":"Clear-Mind Helm","icon":"inv_helm_mail_raidshaman_m_01","type":1,"armorType":3,"stats":[0,0,3006,1764,0,0,0,1236,0,0,0,1183,0,0,0,0,0,0,0,0,0,0,3847,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":472,"11":448,"22":2899}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1139,"11":1089,"22":3761}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1187,"11":1135,"22":3804},"upgradeStep":1}}}, +{"id":96882,"name":"Bonemender Bracers","icon":"inv_bracer_plate_raidpaladin_m_01","type":6,"armorType":4,"stats":[0,0,1675,1116,726,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2829,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":317,"7":330,"22":2132}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":1037,"4":674,"7":701,"22":2766}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":1076,"4":699,"7":728,"22":2797},"upgradeStep":1}}}, +{"id":96883,"name":"Spaulders of Primordial Growth","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,2233,1409,1092,0,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"7":289,"22":3654}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":1010,"7":660,"22":4742}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1050,"7":687,"22":4795},"upgradeStep":1}}}, +{"id":96884,"name":"Greatshield of the Gloaming","icon":"inv_shield_thunderisleraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1036,0,1675,0,0,0,0,0,0,710,0,692,0,0,0,0,0,0,0,0,0,0,20739,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"11":266,"22":15628}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"9":658,"11":637,"22":20279}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"9":683,"11":664,"22":20509},"upgradeStep":1}}}, +{"id":96885,"name":"Gore-Soaked Gear","icon":"inv_jewelry_ring_180","type":11,"stats":[0,1036,1675,0,0,0,734,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"7":269}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"6":677,"7":590}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"6":706,"7":613},"upgradeStep":1}}}, +{"id":96886,"name":"Hand of the Dark Animus","icon":"inv_mace_1h_thunderisleraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,779,1288,0,0,0,0,582,449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":232,"8":173}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"1":717,"2":1196,"7":538,"8":414}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"1":748,"2":1242,"7":560,"8":431},"upgradeStep":1}}}, +{"id":96887,"name":"Hood of the Crimson Wake","icon":"inv_helm_cloth_raidwarlock_m_01","type":1,"armorType":1,"stats":[0,0,3006,1764,0,0,0,1196,0,0,0,1236,0,0,0,0,0,0,0,0,0,0,2172,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":443,"11":483,"22":1637}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"7":1100,"11":1140,"22":2124}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"7":1147,"11":1187,"22":2148},"upgradeStep":1}}}, +{"id":96888,"name":"Cha-Ye's Essence of Brilliance","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"541":{"randPropPoints":2628,"stats":{"6":1752}},"545":{"randPropPoints":2728,"stats":{"6":1819},"upgradeStep":1}}}, +{"id":96889,"name":"Constantly Accelerating Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1675,1036,631,0,0,748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1337,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":253,"7":304,"22":1007}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":583,"7":691,"22":1307}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":607,"7":719,"22":1322},"upgradeStep":1}}}, +{"id":96890,"name":"Athame of the Sanguine Ritual","icon":"inv_knife_1h_thunderisleraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1288,779,0,0,0,533,0,0,0,533,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":3420,"weaponDamageMax":6353,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"7":210,"11":210,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":3175,"weaponDamageMax":5897,"stats":{"2":1196,"3":717,"7":492,"11":492,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":3295,"weaponDamageMax":6121,"stats":{"2":1242,"3":748,"7":512,"11":512,"14":11062},"upgradeStep":1}}}, +{"id":96891,"name":"Worldbinder Leggings","icon":"inv_leather_raiddruid_m_01pant","type":9,"armorType":2,"stats":[0,1844,3006,0,0,0,997,0,0,0,0,1408,0,0,0,0,0,0,0,0,0,0,2977,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":390,"11":569,"22":2243}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"6":920,"11":1301,"22":2911}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"6":958,"11":1354,"22":2944},"upgradeStep":1}}}, +{"id":96892,"name":"Anima-Ringed Fingers","icon":"inv_leather_raiddruid_m_01glove","type":7,"armorType":2,"stats":[0,0,2233,1329,926,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"6":348,"22":1602}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":853,"6":812,"22":2079}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":889,"6":845,"22":2103},"upgradeStep":1}}}, +{"id":96893,"name":"Matter-Swapped Legplates","icon":"inv_pants_plate_raidpaladin_m_01","type":9,"armorType":4,"stats":[0,0,3006,1844,1296,0,0,0,0,0,0,1190,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":520,"11":474,"22":4263}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1197,"11":1099,"22":5532}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1246,"11":1144,"22":5595},"upgradeStep":1}}}, +{"id":96894,"name":"Crown of the Golden Golem","icon":"inv_helmet_plate_deathknight_m_01","type":1,"armorType":4,"stats":[1764,0,3006,0,0,0,1293,1072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5253,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":485,"7":412,"22":3959}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"6":1190,"7":988,"22":5137}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"6":1241,"7":1030,"22":5195},"upgradeStep":1}}}, +{"id":96895,"name":"Delicate Vial of the Sanguinaire","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"541":{"randPropPoints":2628,"stats":{"9":1752}},"545":{"randPropPoints":2728,"stats":{"9":1818},"upgradeStep":1}}}, +{"id":96896,"name":"Iron Qon's Boot Knife","icon":"inv_knife_1h_thunderisleraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,779,1288,0,0,395,0,613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":6841,"weaponDamageMax":12706,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":150,"7":245}},"541":{"randPropPoints":1516,"weaponDamageMin":6350,"weaponDamageMax":11794,"stats":{"1":717,"2":1196,"5":364,"7":566}},"545":{"randPropPoints":1574,"weaponDamageMin":6591,"weaponDamageMax":12241,"stats":{"1":748,"2":1242,"5":379,"7":589},"upgradeStep":1}}}, +{"id":96897,"name":"Voice of the Quilen","icon":"inv_firearm_2h_rifle_thunderisleraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,2004,2926,0,0,1263,0,1316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":15374,"weaponDamageMax":28553,"weaponSpeed":3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1232,"5":528,"7":552}},"541":{"randPropPoints":3537,"weaponDamageMin":14270,"weaponDamageMax":26502,"stats":{"1":1860,"2":2710,"5":1169,"7":1219}},"545":{"randPropPoints":3672,"weaponDamageMin":14812,"weaponDamageMax":27509,"stats":{"1":1931,"2":2817,"5":1215,"7":1267},"upgradeStep":1}}}, +{"id":96898,"name":"Quet'zal's Crackling Cord","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,2233,1329,863,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"6":366,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":796,"6":869,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":829,"6":905,"22":1487},"upgradeStep":1}}}, +{"id":96899,"name":"Saddle-Scarred Leggings","icon":"inv_cloth_raidpriest_m_01pant","type":9,"armorType":1,"stats":[0,0,3006,1844,1353,0,0,0,0,0,0,1092,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1250,"11":1008,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1301,"11":1050,"22":2313},"upgradeStep":1}}}, +{"id":96900,"name":"Dam'ren's Frozen Footguards","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,2233,1409,0,823,0,1033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":332,"7":432,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":760,"7":956,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":791,"7":994,"22":1818},"upgradeStep":1}}}, +{"id":96901,"name":"Ro'shak's Remembrance","icon":"inv_jewelry_ring_168","type":11,"stats":[0,0,1675,1036,0,0,803,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":342,"11":206}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"6":744,"11":509}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"6":773,"11":531},"upgradeStep":1}}}, +{"id":96902,"name":"Orb of Arcing Lightning","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1675,1036,799,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":739,"7":501}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":768,"7":522},"upgradeStep":1}}}, +{"id":96903,"name":"Spurs of the Storm Cavalry","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,1409,2233,0,0,0,945,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":385,"11":401,"22":1763}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"6":873,"11":889,"22":2287}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"6":908,"11":924,"22":2313},"upgradeStep":1}}}, +{"id":96904,"name":"Ro'shak's Molten Chain","icon":"inv_chest_mail_raidshaman_m_01","type":5,"armorType":3,"stats":[0,0,3006,1844,1256,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4734,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":3568}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1160,"7":1160,"22":4629}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1207,"7":1207,"22":4682},"upgradeStep":1}}}, +{"id":96905,"name":"Rein-Binder's Fists","icon":"inv_gloves_plate_deathknight_m_01","type":7,"armorType":4,"stats":[1329,0,2233,0,0,0,1010,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4041,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"7":285,"22":3045}},"541":{"randPropPoints":2628,"stats":{"0":1222,"2":2073,"6":930,"7":679,"22":3951}},"545":{"randPropPoints":2728,"stats":{"0":1275,"2":2152,"6":969,"7":707,"22":3996},"upgradeStep":1}}}, +{"id":96906,"name":"Qon's Flaming Scimitar","icon":"inv_sword_1h_thunderisleraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[779,0,1288,0,0,0,0,0,533,0,0,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":210,"11":210}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"0":717,"2":1196,"8":492,"11":492}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"0":748,"2":1242,"8":512,"11":512},"upgradeStep":1}}}, +{"id":96907,"name":"Wu-Lai, Bladed Fan of the Consorts","icon":"inv_hand_1h_thunderisleraid_d_02","type":13,"weaponType":3,"handType":2,"stats":[0,779,1288,0,0,0,490,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":191,"7":221}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"1":717,"2":1196,"6":452,"7":515}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"1":748,"2":1242,"6":471,"7":536},"upgradeStep":1}}}, +{"id":96908,"name":"Robes of the Moon Lotus","icon":"inv_cloth_raidpriest_m_01robe","type":5,"armorType":1,"stats":[0,0,3006,1844,1256,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2673,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":2014}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1160,"7":1160,"22":2614}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1207,"7":1207,"22":2644},"upgradeStep":1}}}, +{"id":96909,"name":"Passionfire Choker","icon":"inv_jewelry_necklace_123","type":2,"stats":[0,0,1675,1036,667,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":269,"6":295}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":617,"6":672}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":642,"6":699},"upgradeStep":1}}}, +{"id":96910,"name":"Shield of Twinned Despair","icon":"inv_shield_zandalari_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1675,1036,813,0,0,0,0,0,0,536,0,0,0,0,0,0,0,0,0,0,20739,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":346,"11":198,"22":15628}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":754,"11":493,"22":20279}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":783,"11":514,"22":20509},"upgradeStep":1}}}, +{"id":96911,"name":"Suen-Wo, Spire of the Falling Sun","icon":"inv_stave_2h_thunderisleraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,3006,1924,0,0,0,1417,0,0,0,1108,0,0,11479,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":9664,"weaponDamageMax":14496,"weaponSpeed":3.3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"7":609,"11":448,"14":5009}},"541":{"randPropPoints":3537,"weaponDamageMin":8970,"weaponDamageMax":13455,"stats":{"2":2790,"3":1780,"7":1314,"11":1024,"14":10654}},"545":{"randPropPoints":3672,"weaponDamageMin":9310,"weaponDamageMax":13966,"stats":{"2":2897,"3":1851,"7":1365,"11":1066,"14":11060},"upgradeStep":1}}}, +{"id":96912,"name":"Bracers of the Midnight Comet","icon":"inv_bracer_leather_raidrogue_m_01","type":6,"armorType":2,"stats":[0,1036,1675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"22":1122}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"22":1456}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"22":1472},"upgradeStep":1}}}, +{"id":96913,"name":"Girdle of Night and Day","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,0,2233,1329,913,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1442}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":841,"7":841,"22":1872}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":876,"7":876,"22":1893},"upgradeStep":1}}}, +{"id":96914,"name":"Tidal Force Treads","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1409,0,2233,0,0,0,1058,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":434,"7":317,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"6":978,"7":711,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"6":1017,"7":739,"22":4396},"upgradeStep":1}}}, +{"id":96915,"name":"Gaze of the Twins","icon":"spell_shadow_spectralsight","type":12,"stats":[1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"541":{"randPropPoints":2628,"stats":{"0":1752}},"545":{"randPropPoints":2728,"stats":{"0":1819},"upgradeStep":1}}}, +{"id":96916,"name":"Moonjade Necklace","icon":"inv_jewelry_necklace_120","type":2,"stats":[1036,0,1675,0,0,0,0,0,704,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"9":285}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"8":651,"9":651}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"8":677,"9":677},"upgradeStep":1}}}, +{"id":96917,"name":"Fingers of the Night","icon":"inv_glove_mail_raidshaman_m_01","type":7,"armorType":3,"stats":[0,0,2233,1409,1066,0,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2959,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":442,"6":309,"22":2230}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":986,"6":703,"22":2893}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1025,"6":731,"22":2926},"upgradeStep":1}}}, +{"id":96918,"name":"Rune of Re-Origination","icon":"inv_offhand_1h_ulduarraid_d_01","type":12,"stats":[0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"541":{"randPropPoints":2628,"stats":{"1":1752}},"545":{"randPropPoints":2728,"stats":{"1":1819},"upgradeStep":1}}}, +{"id":96919,"name":"Shan-Dun, Breaker of Hope","icon":"inv_polearm_2h_thunderisleraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1924,3006,0,0,0,0,1272,1320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":21085,"weaponDamageMax":31628,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"8":567}},"541":{"randPropPoints":3537,"weaponDamageMin":19571,"weaponDamageMax":29357,"stats":{"1":1780,"2":2790,"7":1176,"8":1224}},"545":{"randPropPoints":3672,"weaponDamageMin":20314,"weaponDamageMax":30471,"stats":{"1":1851,"2":2897,"7":1223,"8":1271},"upgradeStep":1}}}, +{"id":96920,"name":"Fusion Slasher Chestguard","icon":"inv_chest_leather_raidrogue_m_01","type":5,"armorType":2,"stats":[0,1844,3006,0,0,0,1190,0,0,0,0,1296,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2564}},"541":{"randPropPoints":3537,"stats":{"1":1700,"2":2790,"6":1099,"11":1197,"22":3327}},"545":{"randPropPoints":3672,"stats":{"1":1771,"2":2897,"6":1144,"11":1246,"22":3365},"upgradeStep":1}}}, +{"id":96921,"name":"Conduit-Breaker Chain Leggings","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,1764,3006,0,0,0,1224,1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":471,"7":455,"22":3122}},"541":{"randPropPoints":3537,"stats":{"1":1620,"2":2790,"6":1128,"7":1112,"22":4051}},"545":{"randPropPoints":3672,"stats":{"1":1691,"2":2897,"6":1175,"7":1159,"22":4097},"upgradeStep":1}}}, +{"id":96922,"name":"Doomed Crown of Lei Shen","icon":"achievement_boss_leishen","type":1,"armorType":4,"stats":[1764,0,3006,0,0,915,0,0,0,0,0,1383,0,0,0,0,0,0,0,0,0,0,5253,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"5":343,"11":525,"22":3959}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"5":842,"11":1274,"22":5137}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"5":878,"11":1328,"22":5195},"upgradeStep":1}}}, +{"id":96923,"name":"Legplates of the Lightning Throne","icon":"inv_pants_plate_raidwarrior_m_01","type":9,"armorType":4,"stats":[1764,0,3006,0,0,0,1411,887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":553,"7":315,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"6":1302,"7":814,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"6":1356,"7":850,"22":5595},"upgradeStep":1}}}, +{"id":96924,"name":"Legplates of Whipping Ionization","icon":"inv_pants_plate_deathknight_m_01","type":9,"armorType":4,"stats":[1764,0,3006,0,0,0,0,0,0,1321,0,1044,0,0,0,0,0,0,0,0,0,0,5657,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":513,"11":384,"22":4263}},"541":{"randPropPoints":3537,"stats":{"0":1620,"2":2790,"9":1218,"11":960,"22":5532}},"545":{"randPropPoints":3672,"stats":{"0":1691,"2":2897,"9":1269,"11":1002,"22":5595},"upgradeStep":1}}}, +{"id":96925,"name":"Uroe, Harbinger of Terror","icon":"inv_axe_2h_thunderisleraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1924,0,3006,0,0,0,1459,0,0,0,0,999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":21085,"weaponDamageMax":31628,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":601,"11":427}},"541":{"randPropPoints":3537,"weaponDamageMin":19571,"weaponDamageMax":29357,"stats":{"0":1780,"2":2790,"6":1350,"11":926}},"545":{"randPropPoints":3672,"weaponDamageMin":20314,"weaponDamageMax":30471,"stats":{"0":1851,"2":2897,"6":1404,"11":962},"upgradeStep":1}}}, +{"id":96926,"name":"Ultimate Protection of the Emperor","icon":"inv_shield_mogu_c_01","type":13,"weaponType":7,"handType":3,"stats":[1036,0,1675,0,0,0,0,0,0,0,734,637,0,0,0,0,0,0,0,0,0,0,20739,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":285,"11":269,"22":15628}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"10":677,"11":590,"22":20279}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"10":706,"11":613,"22":20509},"upgradeStep":1}}}, +{"id":96927,"name":"Soul Barrier","icon":"spell_warlock_demonsoul","type":12,"stats":[0,0,2831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"541":{"randPropPoints":2628,"stats":{"2":2628}},"545":{"randPropPoints":2728,"stats":{"2":2728},"upgradeStep":1}}}, +{"id":96928,"name":"Legwraps of Cardinality","icon":"inv_pant_cloth_raidmage_m_01","type":9,"armorType":1,"stats":[0,0,3006,1764,0,903,1395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":331,"6":537,"22":1763}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"5":830,"6":1286,"22":2287}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"5":866,"6":1340,"22":2313},"upgradeStep":1}}}, +{"id":96929,"name":"Gloves of the Maimed Vizier","icon":"inv_cloth_raidpriest_m_01glove","type":7,"armorType":1,"stats":[0,0,2233,1329,1036,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,1671,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":398,"11":265,"22":1259}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":954,"11":636,"22":1634}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":994,"11":663,"22":1652},"upgradeStep":1}}}, +{"id":96930,"name":"Unerring Vision of Lei Shen","icon":"ability_hunter_focusedaim","type":12,"stats":[0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"541":{"randPropPoints":2628,"stats":{"3":1752}},"545":{"randPropPoints":2728,"stats":{"3":1819},"upgradeStep":1}}}, +{"id":96931,"name":"Torall, Rod of the Shattered Throne","icon":"inv_mace_1h_thunderisleraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1208,859,613,0,0,395,0,0,0,0,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":4561,"weaponDamageMax":8471,"weaponSpeed":2.4,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":482,"3":375,"4":245,"7":150,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":4233,"weaponDamageMax":7862,"stats":{"2":1116,"3":797,"4":566,"7":364,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":4394,"weaponDamageMax":8161,"stats":{"2":1162,"3":828,"4":589,"7":379,"14":11062},"upgradeStep":1}}}, +{"id":96932,"name":"Soul Prism of Lei Shen","icon":"inv_jewelry_necklace_136","type":2,"stats":[0,0,1675,956,769,0,0,486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":328,"4":291,"7":167}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":877,"4":708,"7":445}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":916,"4":738,"7":465},"upgradeStep":1}}}, +{"id":96933,"name":"Lightning-Imbued Chalice","icon":"spell_mage_runeofpower","type":12,"stats":[0,0,0,1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"541":{"randPropPoints":2628,"stats":{"3":1752}},"545":{"randPropPoints":2728,"stats":{"3":1819},"upgradeStep":1}}}, +{"id":96934,"name":"Lei Shen's Orb of Command","icon":"inv_offhand_1h_thunderisleraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1675,1036,0,0,769,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":313,"7":237}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"6":711,"7":550}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"6":740,"7":572},"upgradeStep":1}}}, +{"id":96935,"name":"Grips of Slicing Electricity","icon":"inv_glove_leather_raidmonk_m_01","type":7,"armorType":2,"stats":[0,0,2233,1329,996,0,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,2127,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"11":295,"22":1602}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1222,"4":918,"11":700,"22":2079}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1275,"4":956,"11":730,"22":2103},"upgradeStep":1}}}, +{"id":96936,"name":"Leggings of the Violent Gale","icon":"inv_pant_mail_raidshaman_m_01","type":9,"armorType":3,"stats":[0,0,3006,1764,1360,0,0,0,0,0,0,965,0,0,0,0,0,0,0,0,0,0,4143,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":521,"11":358,"22":3122}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1620,"4":1253,"11":888,"22":4051}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1691,"4":1306,"11":926,"22":4097},"upgradeStep":1}}}, +{"id":96937,"name":"Lei Shen's Grounded Carapace","icon":"inv_chest_plate_raidpaladin_m_01","type":5,"armorType":4,"stats":[0,0,3006,1844,1256,0,0,1256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6466,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":503,"7":503,"22":4872}},"541":{"randPropPoints":3537,"stats":{"2":2790,"3":1700,"4":1160,"7":1160,"22":6322}},"545":{"randPropPoints":3672,"stats":{"2":2897,"3":1771,"4":1207,"7":1207,"22":6394},"upgradeStep":1}}}, +{"id":96974,"name":"Invocation of the Dawn","icon":"inv_mace_2h_thunderisleraid_d_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,3006,2004,0,0,1237,0,0,0,0,1395,0,0,11479,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":10542,"weaponDamageMax":15814,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4600,"weaponDamageMax":6901,"stats":{"2":1312,"3":875,"6":540,"11":609,"14":5009}},"541":{"randPropPoints":3537,"weaponDamageMin":9785,"weaponDamageMax":14678,"stats":{"2":2790,"3":1860,"6":1148,"11":1295,"14":10654}},"545":{"randPropPoints":3672,"weaponDamageMin":10157,"weaponDamageMax":15236,"stats":{"2":2897,"3":1931,"6":1192,"11":1344,"14":11060},"upgradeStep":1}}}, +{"id":96975,"name":"Miracoran, the Vehement Chord","icon":"inv_bow_1h_zandalari_c_01","type":14,"rangedWeaponType":1,"stats":[0,1924,3006,0,0,0,0,1037,0,0,0,1448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":15374,"weaponDamageMax":28553,"weaponSpeed":3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":430,"11":609}},"541":{"randPropPoints":3537,"weaponDamageMin":14270,"weaponDamageMax":26502,"stats":{"1":1780,"2":2790,"7":960,"11":1341}},"545":{"randPropPoints":3672,"weaponDamageMin":14812,"weaponDamageMax":27509,"stats":{"1":1851,"2":2897,"7":998,"11":1394},"upgradeStep":1}}}, +{"id":96976,"name":"Fyn's Flickering Dagger","icon":"inv_knife_1h_thunderisleraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,859,1208,0,0,0,0,574,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":6841,"weaponDamageMax":12706,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":482,"7":228,"8":179}},"541":{"randPropPoints":1516,"weaponDamageMin":6350,"weaponDamageMax":11794,"stats":{"1":797,"2":1116,"7":530,"8":426}},"545":{"randPropPoints":1574,"weaponDamageMin":6591,"weaponDamageMax":12241,"stats":{"1":828,"2":1162,"7":552,"8":444},"upgradeStep":1}}}, +{"id":96977,"name":"Zeeg's Ancient Kegsmasher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,779,1288,0,0,0,0,0,598,0,0,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9122,"weaponDamageMax":16942,"weaponSpeed":2.4,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"1":295,"2":562,"8":238,"11":162}},"541":{"randPropPoints":1516,"weaponDamageMin":8467,"weaponDamageMax":15725,"stats":{"1":717,"2":1196,"8":552,"11":389}},"545":{"randPropPoints":1574,"weaponDamageMin":8788,"weaponDamageMax":16322,"stats":{"1":748,"2":1242,"8":575,"11":405},"upgradeStep":1}}}, +{"id":96978,"name":"Darkwood Spiritstaff","icon":"inv_staff_2h_zandalari_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,1924,3006,0,0,0,1156,0,0,0,0,1369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":19328,"weaponDamageMax":28993,"weaponSpeed":3.3,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":496,"11":561}},"541":{"randPropPoints":3537,"weaponDamageMin":17940,"weaponDamageMax":26910,"stats":{"1":1780,"2":2790,"6":1072,"11":1266}},"545":{"randPropPoints":3672,"weaponDamageMin":18621,"weaponDamageMax":27932,"stats":{"1":1851,"2":2897,"6":1114,"11":1317},"upgradeStep":1}}}, +{"id":96979,"name":"Lost Shoulders of Fire","icon":"inv_shoulder_cloth_raidmage_m_01","type":3,"armorType":1,"stats":[0,0,2233,1409,0,768,0,1058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":317,"7":434,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":711,"7":978,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":739,"7":1017,"22":1983},"upgradeStep":1}}}, +{"id":96980,"name":"Lost Shoulders of Healing","icon":"inv_cloth_raidpriest_m_01shoulder","type":3,"armorType":1,"stats":[0,0,2233,1409,1039,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":431,"7":330,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":961,"7":746,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":999,"7":776,"22":1983},"upgradeStep":1}}}, +{"id":96981,"name":"Lost Shoulders of Fluidity","icon":"inv_shoulder_cloth_raidwarlock_m_01","type":3,"armorType":1,"stats":[0,0,2233,1409,0,0,953,953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"7":393,"22":1511}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":881,"7":881,"22":1961}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":916,"7":916,"22":1983},"upgradeStep":1}}}, +{"id":96982,"name":"Nadagast's Exsanguinator","icon":"inv_knife_1h_pandaraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1288,779,0,541,518,0,0,0,0,0,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":3420,"weaponDamageMax":6353,"weaponSpeed":1.8,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":3175,"weaponDamageMax":5897,"stats":{"2":1196,"3":717,"5":500,"6":478,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":3295,"weaponDamageMax":6121,"stats":{"2":1242,"3":748,"5":520,"6":498,"14":11062},"upgradeStep":1}}}, +{"id":96983,"name":"Jerthud, Graceful Hand of the Savior","icon":"inv_mace_1h_zandalari_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,1288,779,408,0,0,0,0,0,0,605,0,0,11477,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":4561,"weaponDamageMax":8471,"weaponSpeed":2.4,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"541":{"randPropPoints":1516,"weaponDamageMin":4233,"weaponDamageMax":7862,"stats":{"2":1196,"3":717,"4":376,"11":559,"14":10655}},"545":{"randPropPoints":1574,"weaponDamageMin":4394,"weaponDamageMax":8161,"stats":{"2":1242,"3":748,"4":392,"11":582,"14":11062},"upgradeStep":1}}}, +{"id":96984,"name":"Forgotten Mantle of the Moon","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,1409,2233,0,0,0,0,1092,714,0,0,0,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":454,"8":289,"22":1923}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"7":1010,"8":660,"22":2495}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"7":1050,"8":687,"22":2524},"upgradeStep":1}}}, +{"id":96985,"name":"Forgotten Mantle of the Sun","icon":"inv_shoulder_leather_raidmonk_m_01","type":3,"armorType":2,"stats":[0,0,2233,1409,0,0,0,903,0,0,0,982,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":372,"11":406,"22":1923}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"7":836,"11":909,"22":2495}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"7":869,"11":945,"22":2524},"upgradeStep":1}}}, +{"id":96986,"name":"Abandoned Spaulders of Arrowflight","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,1409,2233,0,0,0,0,714,0,0,0,1092,0,0,0,0,0,0,0,0,0,0,3551,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":289,"11":454,"22":2676}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"7":660,"11":1010,"22":3472}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"7":687,"11":1050,"22":3511},"upgradeStep":1}}}, +{"id":96987,"name":"Abandoned Spaulders of Renewal","icon":"inv_shoulder_mail_raidshaman_m_01","type":3,"armorType":3,"stats":[0,0,2233,1409,0,0,928,0,0,0,0,968,0,0,0,0,0,0,0,0,0,0,3551,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":382,"11":400,"22":2676}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":858,"11":895,"22":3472}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":892,"11":931,"22":3511},"upgradeStep":1}}}, +{"id":96988,"name":"Reconstructed Holy Shoulderplates","icon":"inv_shoulder_plate_raidpaladin_m_01","type":3,"armorType":4,"stats":[0,0,2233,1409,0,0,0,968,0,0,0,928,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":400,"11":382,"22":3654}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"7":895,"11":858,"22":4742}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"7":931,"11":892,"22":4795},"upgradeStep":1}}}, +{"id":96989,"name":"Reconstructed Furious Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_m_01","type":3,"armorType":4,"stats":[1409,0,2233,0,0,0,0,982,0,0,0,903,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":406,"11":372,"22":3654}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"7":909,"11":836,"22":4742}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"7":945,"11":869,"22":4795},"upgradeStep":1}}}, +{"id":96990,"name":"Reconstructed Bloody Shoulderplates","icon":"inv_shoulder_plate_deathknight_m_01","type":3,"armorType":4,"stats":[1409,0,2233,0,0,0,0,0,714,0,1092,0,0,0,0,0,0,0,0,0,0,0,4849,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":289,"10":454,"22":3654}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"8":660,"10":1010,"22":4742}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"8":687,"10":1050,"22":4795},"upgradeStep":1}}}, +{"id":96991,"name":"Greatsword of Frozen Hells","icon":"inv_sword_2h_mogu_c_01","type":13,"weaponType":9,"handType":4,"stats":[1924,0,3006,0,0,0,1221,1331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":21085,"weaponDamageMax":31628,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"541":{"randPropPoints":3537,"weaponDamageMin":19571,"weaponDamageMax":29357,"stats":{"0":1780,"2":2790,"6":1132,"7":1231}},"545":{"randPropPoints":3672,"weaponDamageMin":20314,"weaponDamageMax":30471,"stats":{"0":1851,"2":2897,"6":1176,"7":1280},"upgradeStep":1}}}, +{"id":96992,"name":"Do-tharak, the Swordbreaker","icon":"inv_sword_1h_mogu_c_01","type":13,"weaponType":9,"handType":2,"stats":[779,0,1288,0,0,422,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":162,"11":238}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"0":717,"2":1196,"5":389,"11":552}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"0":748,"2":1242,"5":405,"11":575},"upgradeStep":1}}}, +{"id":96993,"name":"Bo-Ris, Horror in the Night","icon":"inv_polearm_2h_mogu_c_01","type":13,"weaponType":6,"handType":4,"stats":[1924,0,3006,0,0,0,0,0,1141,0,0,1398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3811,"weaponDamageMin":21085,"weaponDamageMax":31628,"weaponSpeed":3.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":462,"11":601}},"541":{"randPropPoints":3537,"weaponDamageMin":19571,"weaponDamageMax":29357,"stats":{"0":1780,"2":2790,"8":1054,"11":1297}},"545":{"randPropPoints":3672,"weaponDamageMin":20314,"weaponDamageMax":30471,"stats":{"0":1851,"2":2897,"8":1097,"11":1347},"upgradeStep":1}}}, +{"id":96994,"name":"Visage of the Doomed","icon":"inv_shield_zandalari_c_02","type":13,"weaponType":7,"handType":3,"stats":[1036,0,1675,0,0,0,0,0,0,584,765,0,0,0,0,0,0,0,0,0,0,0,20739,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":246,"10":298,"22":15628}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"9":541,"10":706,"22":20279}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"9":562,"10":735,"22":20509},"upgradeStep":1}}}, +{"id":97074,"name":"Necklace of the Terra-Cotta Archer","icon":"inv_jewelry_necklace_128","type":2,"stats":[0,1036,1675,0,0,0,716,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":290,"7":277}},"541":{"randPropPoints":1971,"stats":{"1":957,"2":1555,"6":661,"7":634}},"545":{"randPropPoints":2046,"stats":{"1":996,"2":1614,"6":688,"7":659},"upgradeStep":1}}}, +{"id":97075,"name":"Spiderweb Tabi","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1489,2233,0,0,0,1106,0,800,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":482,"8":349,"22":1763}},"541":{"randPropPoints":2628,"stats":{"1":1382,"2":2073,"6":1026,"8":743,"22":2287}},"545":{"randPropPoints":2728,"stats":{"1":1435,"2":2152,"6":1065,"8":771,"22":2313},"upgradeStep":1}}}, +{"id":97076,"name":"Scalehide Spurs","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,1489,2233,0,0,0,0,993,993,0,0,0,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":433,"8":433,"22":2453}},"541":{"randPropPoints":2628,"stats":{"1":1382,"2":2073,"7":921,"8":921,"22":3183}},"545":{"randPropPoints":2728,"stats":{"1":1435,"2":2152,"7":956,"8":956,"22":3219},"upgradeStep":1}}}, +{"id":97077,"name":"Abandoned Zandalari Firecord","icon":"inv_belt_cloth_raidmage_m_01","type":8,"armorType":1,"stats":[0,0,2233,1409,0,807,1039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":330,"6":431,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"5":746,"6":961,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"5":776,"6":999,"22":1487},"upgradeStep":1}}}, +{"id":97078,"name":"Abandoned Zandalari Shadowgirdle","icon":"inv_cloth_raidpriest_m_01belt","type":8,"armorType":1,"stats":[0,0,2233,1409,1092,0,0,0,0,0,0,714,0,0,0,0,0,0,0,0,0,0,1504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":454,"11":289,"22":1133}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"4":1010,"11":660,"22":1470}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"4":1050,"11":687,"22":1487},"upgradeStep":1}}}, +{"id":97079,"name":"Silentflame Sandals","icon":"inv_boot_cloth_raidwarlock_m_01","type":10,"armorType":1,"stats":[0,0,2233,1489,0,824,0,0,0,0,0,1092,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":359,"11":476,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"5":764,"11":1014,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"5":794,"11":1052,"22":1818},"upgradeStep":1}}}, +{"id":97080,"name":"Necklace of the Terra-Cotta Invoker","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1675,1036,0,737,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":299,"7":261}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"5":682,"7":600}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"5":709,"7":624},"upgradeStep":1}}}, +{"id":97081,"name":"Home-Warding Slippers","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,2233,1489,0,0,0,943,0,0,0,1022,0,0,0,0,0,0,0,0,0,0,1838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":412,"11":446,"22":1385}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"7":876,"11":949,"22":1797}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"7":909,"11":985,"22":1818},"upgradeStep":1}}}, +{"id":97082,"name":"Deeproot Treads","icon":"inv_leather_raiddruid_m_01boot","type":10,"armorType":2,"stats":[0,0,2233,1489,1051,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"7":390,"22":1763}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"4":975,"7":831,"22":2287}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"4":1012,"7":862,"22":2313},"upgradeStep":1}}}, +{"id":97083,"name":"Spiritbound Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,2233,1489,0,0,993,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,3255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":2453}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"6":921,"11":921,"22":3183}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"6":956,"11":956,"22":3219},"upgradeStep":1}}}, +{"id":97084,"name":"Vaultwalker Sabatons","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,2233,1489,0,0,0,993,0,0,0,993,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":3350}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1382,"7":921,"11":921,"22":4347}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1435,"7":956,"11":956,"22":4396},"upgradeStep":1}}}, +{"id":97085,"name":"Necklace of the Terra-Cotta Mender","icon":"inv_jewelry_necklace_129","type":2,"stats":[0,0,1675,1036,748,0,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":304,"11":253}},"541":{"randPropPoints":1971,"stats":{"2":1555,"3":957,"4":691,"11":583}},"545":{"randPropPoints":2046,"stats":{"2":1614,"3":996,"4":719,"11":607},"upgradeStep":1}}}, +{"id":97086,"name":"Abandoned Zandalari Silentbelt","icon":"inv_leather_raiddruid_m_01belt","type":8,"armorType":2,"stats":[0,1409,2233,0,0,0,1025,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":424,"7":340,"22":1442}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"6":948,"7":768,"22":1872}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"6":986,"7":799,"22":1893},"upgradeStep":1}}}, +{"id":97087,"name":"Abandoned Zandalari Moonstrap","icon":"inv_belt_leather_raidmonk_m_01","type":8,"armorType":2,"stats":[0,0,2233,1409,0,0,1066,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":442,"7":309,"22":1442}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":986,"7":703,"22":1872}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":1025,"7":731,"22":1893},"upgradeStep":1}}}, +{"id":97088,"name":"Abandoned Zandalari Arrowlinks","icon":"inv_belt_mail_raidhunter_m_01","type":8,"armorType":3,"stats":[0,1409,2233,0,0,831,0,0,0,0,0,1025,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":340,"11":424,"22":2007}},"541":{"randPropPoints":2628,"stats":{"1":1302,"2":2073,"5":768,"11":948,"22":2604}},"545":{"randPropPoints":2728,"stats":{"1":1355,"2":2152,"5":799,"11":986,"22":2634},"upgradeStep":1}}}, +{"id":97089,"name":"Abandoned Zandalari Waterchain","icon":"inv_belt_mail_raidshaman_m_01","type":8,"armorType":3,"stats":[0,0,2233,1409,0,0,1011,855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2663,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":418,"7":350,"22":2007}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":935,"7":791,"22":2604}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":972,"7":822,"22":2634},"upgradeStep":1}}}, +{"id":97090,"name":"Abandoned Zandalari Greatbelt","icon":"inv_belt_plate_raidpaladin_m_01","type":8,"armorType":4,"stats":[0,0,2233,1409,0,0,953,0,0,0,0,953,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":393,"11":393,"22":2741}},"541":{"randPropPoints":2628,"stats":{"2":2073,"3":1302,"6":881,"11":881,"22":3556}},"545":{"randPropPoints":2728,"stats":{"2":2152,"3":1355,"6":916,"11":916,"22":3597},"upgradeStep":1}}}, +{"id":97091,"name":"Abandoned Zandalari Goreplate","icon":"inv_belt_plate_deathknight_m_01","type":8,"armorType":4,"stats":[1409,0,2233,0,0,928,968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":382,"6":400,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"5":858,"6":895,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"5":892,"6":931,"22":3597},"upgradeStep":1}}}, +{"id":97092,"name":"Abandoned Zandalari Bucklebreaker","icon":"inv_belt_plate_raidwarrior_m_01","type":8,"armorType":4,"stats":[1409,0,2233,0,0,0,0,0,0,807,0,1039,0,0,0,0,0,0,0,0,0,0,3637,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"9":330,"11":431,"22":2741}},"541":{"randPropPoints":2628,"stats":{"0":1302,"2":2073,"9":746,"11":961,"22":3556}},"545":{"randPropPoints":2728,"stats":{"0":1355,"2":2152,"9":776,"11":999,"22":3597},"upgradeStep":1}}}, +{"id":97093,"name":"Necklace of the Terra-Cotta Vanquisher","icon":"inv_jewelry_necklace_130","type":2,"stats":[1036,0,1675,0,0,758,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":309,"11":245}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"5":701,"11":566}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"5":730,"11":589},"upgradeStep":1}}}, +{"id":97094,"name":"Locksmasher Greaves","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1489,0,2233,0,0,777,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":339,"7":488,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1382,"2":2073,"5":721,"7":1038,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1435,"2":2152,"5":749,"7":1078,"22":4396},"upgradeStep":1}}}, +{"id":97095,"name":"Columnbreaker Stompers","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1489,0,2233,0,0,0,0,0,968,0,0,1008,0,0,0,0,0,0,0,0,0,0,4445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2831,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":422,"11":440,"22":3350}},"541":{"randPropPoints":2628,"stats":{"0":1382,"2":2073,"8":898,"11":935,"22":4347}},"545":{"randPropPoints":2728,"stats":{"0":1435,"2":2152,"8":932,"11":971,"22":4396},"upgradeStep":1}}}, +{"id":97096,"name":"Necklace of the Terra-Cotta Protector","icon":"inv_jewelry_necklace_130","type":2,"stats":[1036,0,1675,0,0,0,0,0,526,0,809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2123,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":207,"10":331}},"541":{"randPropPoints":1971,"stats":{"0":957,"2":1555,"8":485,"10":748}},"545":{"randPropPoints":2046,"stats":{"0":996,"2":1614,"8":505,"10":778},"upgradeStep":1}}}, +{"id":97126,"name":"Tia-Tia, the Scything Star","icon":"inv_hand_1h_thunderisleraid_d_03","type":13,"weaponType":3,"handType":2,"stats":[0,639,1079,0,0,447,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":214,"8":204}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":588,"2":1002,"5":412,"8":394}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":613,"2":1040,"5":429,"8":410},"upgradeStep":1}}}, +{"id":97127,"name":"Tia-Tia, the Scything Star","icon":"inv_hand_1h_thunderisleraid_d_03","type":13,"weaponType":3,"handType":2,"stats":[0,733,1219,0,0,510,0,0,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"weaponDamageMin":9345,"weaponDamageMax":17356,"weaponSpeed":2.6,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":214,"8":204}},"535":{"randPropPoints":1434,"weaponDamageMin":8674,"weaponDamageMax":16109,"stats":{"1":674,"2":1131,"5":470,"8":450}},"539":{"randPropPoints":1488,"weaponDamageMin":9003,"weaponDamageMax":16721,"stats":{"1":703,"2":1174,"5":490,"8":469},"upgradeStep":1}}}, +{"id":97128,"name":"Tia-Tia, the Scything Star","icon":"inv_hand_1h_thunderisleraid_d_03","type":13,"weaponType":3,"handType":2,"stats":[0,681,1142,0,0,475,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":214,"8":204}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"5":438,"8":419}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"5":456,"8":436},"upgradeStep":1}}}, +{"id":97129,"name":"Tia-Tia, the Scything Star","icon":"inv_hand_1h_thunderisleraid_d_03","type":13,"weaponType":3,"handType":2,"stats":[0,517,896,0,0,364,0,0,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1136,"weaponDamageMin":6871,"weaponDamageMax":12762,"weaponSpeed":2.6,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":214,"8":204}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":474,"2":832,"5":335,"8":320}},"506":{"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"stats":{"1":495,"2":863,"5":349,"8":334},"upgradeStep":1}}}, +{"id":97130,"name":"Tia-Tia, the Scything Star","icon":"inv_hand_1h_thunderisleraid_d_03","type":13,"weaponType":3,"handType":2,"stats":[0,779,1288,0,0,541,0,0,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1633,"weaponDamageMin":9882,"weaponDamageMax":18353,"weaponSpeed":2.6,"ilvl":541,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":214,"8":204}},"541":{"randPropPoints":1516,"weaponDamageMin":9172,"weaponDamageMax":17035,"stats":{"1":717,"2":1196,"5":500,"8":478}},"545":{"randPropPoints":1574,"weaponDamageMin":9521,"weaponDamageMax":17682,"stats":{"1":748,"2":1242,"5":520,"8":498},"upgradeStep":1}}}, +{"id":97187,"name":"Refurbished Band of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[0,734,1101,0,0,0,0,497,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":461,"11":443}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":479,"11":460},"upgradeStep":1}}}, +{"id":97188,"name":"Restored Hexxer's Signet","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,1101,734,0,465,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":432,"11":468}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":448,"11":486},"upgradeStep":1}}}, +{"id":97189,"name":"Ancient Primalist's Seal","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,1101,734,406,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"7":358}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":377,"7":500}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":391,"7":519},"upgradeStep":1}}}, +{"id":97190,"name":"Refurbished Seal of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[734,0,1101,0,0,0,545,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":362,"11":262}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":506,"11":366}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":525,"11":380},"upgradeStep":1}}}, +{"id":97191,"name":"Ancient Overlord's Onyx Band","icon":"inv_jewelry_ring_39","type":11,"stats":[734,0,1101,0,0,0,0,0,0,0,511,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":339,"11":301}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"10":474,"11":421}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"10":492,"11":437},"upgradeStep":1}}}, +{"id":97192,"name":"Refurbished Band of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[0,734,1101,0,0,0,0,497,0,0,0,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":461,"11":443}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":479,"11":460},"upgradeStep":1}}}, +{"id":97193,"name":"Restored Hexxer's Signet","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,1101,734,0,465,0,0,0,0,0,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":432,"11":468}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":448,"11":486},"upgradeStep":1}}}, +{"id":97194,"name":"Ancient Primalist's Seal","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,1101,734,406,0,0,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":270,"7":358}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":377,"7":500}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":391,"7":519},"upgradeStep":1}}}, +{"id":97195,"name":"Refurbished Seal of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[734,0,1101,0,0,0,545,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":362,"11":262}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":506,"11":366}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":525,"11":380},"upgradeStep":1}}}, +{"id":97196,"name":"Ancient Overlord's Onyx Band","icon":"inv_jewelry_ring_39","type":11,"stats":[734,0,1101,0,0,0,0,0,0,0,511,453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":339,"11":301}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"10":474,"11":421}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"10":492,"11":437},"upgradeStep":1}}}, +{"id":97203,"name":"Thunder-Chaser Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"6":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"6":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"6":506,"22":1155},"upgradeStep":1}}}, +{"id":97204,"name":"Static-Collecting Cloak","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,504,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":335,"7":309,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":468,"7":432,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":486,"7":448,"22":1155},"upgradeStep":1}}}, +{"id":97205,"name":"Shan'ze Gravetender Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1101,734,518,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":481,"11":410,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":499,"11":425,"22":1155},"upgradeStep":1}}}, +{"id":97206,"name":"Shan'ze Partisan's Greatcloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,497,477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":330,"7":317,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":461,"7":443,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":479,"7":460,"22":1155},"upgradeStep":1}}}, +{"id":97207,"name":"Cloak of the Immortal Guardian","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,453,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"10":339,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":421,"10":474,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":437,"10":492,"22":1155},"upgradeStep":1}}}, +{"id":97208,"name":"Thunder-Chaser Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"6":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"6":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"6":506,"22":1155},"upgradeStep":1}}}, +{"id":97209,"name":"Static-Collecting Cloak","icon":"inv_cape_pandaria_c_02","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,504,465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":335,"7":309,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":468,"7":432,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":486,"7":448,"22":1155},"upgradeStep":1}}}, +{"id":97210,"name":"Shan'ze Gravetender Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1101,734,518,0,0,0,0,0,0,441,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"11":293,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":481,"11":410,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":499,"11":425,"22":1155},"upgradeStep":1}}}, +{"id":97211,"name":"Shan'ze Partisan's Greatcloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[734,0,1101,0,0,477,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":317,"6":330,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":443,"6":461,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":460,"6":479,"22":1155},"upgradeStep":1}}}, +{"id":97212,"name":"Cloak of the Immortal Guardian","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,453,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"10":339,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":421,"10":474,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":437,"10":492,"22":1155},"upgradeStep":1}}}, +{"id":97290,"name":"Fallout-Filtering Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,108,56,42,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1985,"ilvl":463,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":44,"4":34,"7":29,"22":1637}},"463":{"randPropPoints":1710,"stats":{"2":93,"3":45,"4":35,"7":30,"22":1655}},"471":{"randPropPoints":1843,"stats":{"2":100,"3":51,"4":38,"7":33,"22":1703},"upgradeStep":1}}}, +{"id":97291,"name":"Korven's Amber-Sealed Beetle","icon":"trade_archaeology_insect-in-amber","type":2,"stats":[0,0,76,51,29,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":20,"6":24}},"496":{"randPropPoints":1296,"stats":{"2":70,"3":47,"4":27,"6":34}},"500":{"randPropPoints":1345,"stats":{"2":73,"3":49,"4":28,"6":35},"upgradeStep":1}}}, +{"id":97292,"name":"Shoulders of Foaming Fluids","icon":"inv_shoulder_cloth_challengepriest_d_01","type":3,"armorType":1,"stats":[0,0,101,62,42,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"4":27,"7":28,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":94,"3":57,"4":38,"7":40,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":97,"3":60,"4":40,"7":42,"22":1733},"upgradeStep":1}}}, +{"id":97293,"name":"Drape of Gathering Clouds","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,76,51,30,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":20,"11":24,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":70,"3":47,"4":28,"11":33,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":73,"3":49,"4":29,"11":34,"22":1155},"upgradeStep":1}}}, +{"id":97294,"name":"Robes of Pinioned Eyes","icon":"inv_chest_cloth_challengepriest_d_01","type":5,"armorType":1,"stats":[0,0,120,69,54,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":49,"4":39,"11":28,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":112,"3":64,"4":49,"11":36,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":116,"3":66,"4":52,"11":38,"22":2214},"upgradeStep":1}}}, +{"id":97295,"name":"Darting Damselfly Cuffs","icon":"inv_bracer_cloth_challengepriest_d_01","type":6,"armorType":1,"stats":[0,0,76,51,37,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":24,"7":19,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":70,"3":47,"4":34,"7":27,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":73,"3":49,"4":35,"7":28,"22":1011},"upgradeStep":1}}}, +{"id":97296,"name":"Kri'tak, Imperial Scepter of the Swarm","icon":"inv_mace_1h_pandaraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,54,36,25,0,23,0,0,0,0,0,0,0,478,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":988,"weaponDamageMin":2757,"weaponDamageMax":5122,"weaponSpeed":2.4,"ilvl":487,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":39,"3":26,"4":18,"6":16,"14":345}},"487":{"randPropPoints":917,"weaponDamageMin":2559,"weaponDamageMax":4754,"stats":{"2":50,"3":33,"4":23,"6":21,"14":443}},"491":{"randPropPoints":951,"weaponDamageMin":2656,"weaponDamageMax":4934,"stats":{"2":52,"3":34,"4":24,"6":22,"14":460},"upgradeStep":1}}}, +{"id":97297,"name":"Fan of Fiery Winds","icon":"inv_offhand_1h_pandariatradeskill_c_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,71,47,27,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":19,"7":24}},"489":{"randPropPoints":1214,"stats":{"2":66,"3":44,"4":25,"7":31}},"493":{"randPropPoints":1260,"stats":{"2":68,"3":46,"4":26,"7":33},"upgradeStep":1}}}, +{"id":97298,"name":"Gloves of Grasping Claws","icon":"inv_gauntlets_cloth_challengepriest_d_01","type":7,"armorType":1,"stats":[0,0,101,62,40,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"4":26,"6":29,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":94,"3":57,"4":36,"6":41,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":97,"3":60,"4":38,"6":43,"22":1444},"upgradeStep":1}}}, +{"id":97299,"name":"Belt of Embodied Terror","icon":"inv_belt_cloth_challengepriest_d_01","type":8,"armorType":1,"stats":[0,0,89,49,39,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":34,"4":28,"11":20,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":44,"4":35,"11":25,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":47,"4":37,"11":27,"22":1246},"upgradeStep":1}}}, +{"id":97300,"name":"Jade Dust Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,127,74,49,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":49,"4":33,"11":36,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":118,"3":68,"4":44,"11":48,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":123,"3":71,"4":47,"11":51,"22":1976},"upgradeStep":1}}}, +{"id":97301,"name":"Scent-Soaked Sandals","icon":"inv_boots_cloth_challengepriest_d_01","type":10,"armorType":1,"stats":[0,0,101,62,44,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"4":28,"11":25,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":94,"3":57,"4":41,"11":35,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":97,"3":60,"4":43,"11":37,"22":1588},"upgradeStep":1}}}, +{"id":97302,"name":"Feng's Ring of Dreams","icon":"inv_jewelry_ring_148","type":11,"stats":[0,0,63,42,24,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1159,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":20,"11":24}},"476":{"randPropPoints":1076,"stats":{"2":58,"3":39,"4":23,"11":28}},"480":{"randPropPoints":1116,"stats":{"2":60,"3":40,"4":24,"11":29},"upgradeStep":1}}}, +{"id":97303,"name":"Circuit of the Frail Soul","icon":"inv_jewelry_ring_146","type":11,"stats":[0,0,71,47,33,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":34,"4":23,"6":21}},"489":{"randPropPoints":1214,"stats":{"2":66,"3":44,"4":31,"6":27}},"493":{"randPropPoints":1260,"stats":{"2":68,"3":46,"4":32,"6":28},"upgradeStep":1}}}, +{"id":97304,"name":"Empty Fruit Barrel","icon":"inv_cask_02","type":12,"stats":[0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1475,"ilvl":463,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":57}},"463":{"randPropPoints":1270,"stats":{"4":58}},"471":{"randPropPoints":1369,"stats":{"4":63},"upgradeStep":1}}}, +{"id":97305,"name":"Jade Courtesan Figurine","icon":"spell_brokenheart","type":12,"stats":[0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":57}},"489":{"randPropPoints":1619,"stats":{"3":74}},"493":{"randPropPoints":1680,"stats":{"3":77},"upgradeStep":1}}}, +{"id":97515,"name":"Malevolent Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,120,64,0,0,54,0,0,0,0,38,0,0,0,0,32,0,0,0,0,0,1823,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":44,"6":40,"11":24,"16":24,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":112,"3":58,"6":50,"11":33,"16":30,"22":1775}},"487":{"randPropPoints":2139,"stats":{"2":116,"3":61,"6":52,"11":36,"16":31,"22":1799},"upgradeStep":1}}}, +{"id":97516,"name":"Dreadful Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,49,33,23,0,0,19,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":49,"3":33,"4":23,"7":19,"16":15},"isBase":true}}}, +{"id":97517,"name":"Malevolent Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,89,55,0,0,0,35,0,0,0,40,0,0,0,0,24,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"7":25,"11":30,"16":18,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"7":31,"11":37,"16":22,"22":1639}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"7":33,"11":38,"16":23,"22":1661},"upgradeStep":1}}}, +{"id":97518,"name":"Dreadful Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,49,33,0,0,0,19,0,0,0,23,0,0,0,0,15,0,0,0,0,0,1000,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":49,"3":33,"7":19,"11":23,"16":15,"22":1000},"isBase":true}}}, +{"id":97520,"name":"Malevolent Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,120,69,0,0,43,54,0,0,0,0,0,0,0,0,32,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":49,"6":29,"7":40,"16":24,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":112,"3":63,"6":39,"7":50,"16":30,"22":2185}},"487":{"randPropPoints":2139,"stats":{"2":116,"3":66,"6":41,"7":52,"16":31,"22":2214},"upgradeStep":1}}}, +{"id":97521,"name":"Malevolent Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,67,45,32,0,26,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"4":24,"6":20,"16":13,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":62,"3":41,"4":30,"6":24,"16":17,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":65,"3":43,"4":31,"6":25,"16":17,"22":969},"upgradeStep":1}}}, +{"id":97522,"name":"Malevolent Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,89,55,35,0,40,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"4":25,"6":30,"16":18,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"4":31,"6":37,"16":22,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"4":33,"6":38,"16":23,"22":1384},"upgradeStep":1}}}, +{"id":97523,"name":"Malevolent Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,89,55,0,0,38,0,0,0,0,35,0,0,0,0,24,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"6":27,"11":26,"16":18,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"6":34,"11":32,"16":22,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"6":36,"11":34,"16":23,"22":1246},"upgradeStep":1}}}, +{"id":97525,"name":"Malevolent Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,120,69,0,0,0,54,0,0,0,43,0,0,0,0,32,0,0,0,0,0,1963,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"ilvl":483,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":49,"7":40,"11":29,"16":24,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":112,"3":63,"7":50,"11":39,"16":30,"22":1912}},"487":{"randPropPoints":2139,"stats":{"2":116,"3":66,"7":52,"11":41,"16":31,"22":1938},"upgradeStep":1}}}, +{"id":97526,"name":"Malevolent Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,89,55,0,0,35,38,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"6":26,"7":27,"16":18,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"6":32,"7":34,"16":22,"22":1502}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"6":34,"7":36,"16":23,"22":1522},"upgradeStep":1}}}, +{"id":97527,"name":"Dreadful Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,49,33,23,0,0,19,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":49,"3":33,"4":23,"7":19,"16":15},"isBase":true}}}, +{"id":97528,"name":"Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,67,45,0,0,32,0,0,0,0,26,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"6":24,"11":20,"16":13}},"483":{"randPropPoints":1148,"stats":{"2":62,"3":41,"6":30,"11":24,"16":17}},"487":{"randPropPoints":1192,"stats":{"2":65,"3":43,"6":31,"11":25,"16":17},"upgradeStep":1}}}, +{"id":97529,"name":"Dreadful Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,49,33,23,0,0,19,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":909,"ilvl":458,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"458":{"randPropPoints":909,"stats":{"2":49,"3":33,"4":23,"7":19,"16":15},"isBase":true}}}, +{"id":97531,"name":"Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"16":18}},"483":{"randPropPoints":1531,"stats":{"16":22}},"487":{"randPropPoints":1589,"stats":{"16":23},"upgradeStep":1}}}, +{"id":97532,"name":"Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"16":18}},"491":{"randPropPoints":1649,"stats":{"16":24}},"495":{"randPropPoints":1712,"stats":{"16":25},"upgradeStep":1}}}, +{"id":97533,"name":"Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":57,"16":18}},"483":{"randPropPoints":1531,"stats":{"6":70,"16":22}},"487":{"randPropPoints":1589,"stats":{"6":73,"16":23},"upgradeStep":1}}}, +{"id":97625,"name":"Unbending Spirit Coif","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2899}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":3208}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":3250},"upgradeStep":1}}}, +{"id":97626,"name":"Unbending Spirit Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2230}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2467}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":2500},"upgradeStep":1}}}, +{"id":97627,"name":"Unbending Spirit Boots","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2453}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2714}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":2750},"upgradeStep":1}}}, +{"id":97628,"name":"Unbending Spirit Vest","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":3568}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":3948}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":4000},"upgradeStep":1}}}, +{"id":97629,"name":"Unbending Spirit Cord","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2007}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2221}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":2250},"upgradeStep":1}}}, +{"id":97630,"name":"Unbending Spirit Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2676}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2961}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":3000},"upgradeStep":1}}}, +{"id":97631,"name":"Unbending Spirit Kilt","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":3122}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":3454}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":3500},"upgradeStep":1}}}, +{"id":97632,"name":"Insurrection Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97633,"name":"Disowner's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2875},"upgradeStep":1}}}, +{"id":97634,"name":"Secessionist's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97635,"name":"Malcontent's Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2564}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2837}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2875},"upgradeStep":1}}}, +{"id":97636,"name":"Tallgrass Guerilla's Tunic","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3568}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":3948}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":4000},"upgradeStep":1}}}, +{"id":97637,"name":"Insurrection Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97638,"name":"Perjurious Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1553},"upgradeStep":1}}}, +{"id":97639,"name":"Disowner's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1951}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1977},"upgradeStep":1}}}, +{"id":97640,"name":"Secessionist's Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97641,"name":"Reformationist's Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1553},"upgradeStep":1}}}, +{"id":97642,"name":"Dissident's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1533}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1553},"upgradeStep":1}}}, +{"id":97643,"name":"Tallgrass Guerilla's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2453}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2714}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2750},"upgradeStep":1}}}, +{"id":97644,"name":"Malcontent's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1763}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1951}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1977},"upgradeStep":1}}}, +{"id":97645,"name":"Insurrection Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97646,"name":"Perjurious Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1412},"upgradeStep":1}}}, +{"id":97647,"name":"Disowner's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1773}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1797},"upgradeStep":1}}}, +{"id":97648,"name":"Reformationist's Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1412},"upgradeStep":1}}}, +{"id":97649,"name":"Dissident's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1393}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1412},"upgradeStep":1}}}, +{"id":97650,"name":"Secessionist's Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97651,"name":"Tallgrass Guerilla's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2230}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2467}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2500},"upgradeStep":1}}}, +{"id":97652,"name":"Malcontent's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1602}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1773}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1797},"upgradeStep":1}}}, +{"id":97653,"name":"Perjurious Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":1835},"upgradeStep":1}}}, +{"id":97654,"name":"Insurrection Helm","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97655,"name":"Disowner's Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":2336},"upgradeStep":1}}}, +{"id":97656,"name":"Secessionist's Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97657,"name":"Reformationist's Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":1835},"upgradeStep":1}}}, +{"id":97658,"name":"Dissident's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1859,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":1811}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":1835},"upgradeStep":1}}}, +{"id":97659,"name":"Tallgrass Guerilla's Cap","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2899}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":3208}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":3250},"upgradeStep":1}}}, +{"id":97660,"name":"Malcontent's Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2083}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":2305}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":2336},"upgradeStep":1}}}, +{"id":97661,"name":"Insurrection Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97662,"name":"Perjurious Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":1976},"upgradeStep":1}}}, +{"id":97663,"name":"Disowner's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2516},"upgradeStep":1}}}, +{"id":97664,"name":"Reformationist's Skirt","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":1976},"upgradeStep":1}}}, +{"id":97665,"name":"Secessionist's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97666,"name":"Dissident's Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":1976},"upgradeStep":1}}}, +{"id":97667,"name":"Tallgrass Guerilla's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3122}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":3454}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":3500},"upgradeStep":1}}}, +{"id":97668,"name":"Malcontent's Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2243}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2483}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2516},"upgradeStep":1}}}, +{"id":97669,"name":"Perjurious Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2259},"upgradeStep":1}}}, +{"id":97670,"name":"Reformationist's Robe","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2259},"upgradeStep":1}}}, +{"id":97671,"name":"Dissident's Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2259},"upgradeStep":1}}}, +{"id":97672,"name":"Insurrection Spaulders","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97673,"name":"Perjurious Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1694},"upgradeStep":1}}}, +{"id":97674,"name":"Reformationist's Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1694},"upgradeStep":1}}}, +{"id":97675,"name":"Disowner's Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2156},"upgradeStep":1}}}, +{"id":97676,"name":"Secessionist's Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97677,"name":"Dissident's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1672}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1694},"upgradeStep":1}}}, +{"id":97678,"name":"Tallgrass Guerilla's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2676}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2961}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":3000},"upgradeStep":1}}}, +{"id":97679,"name":"Malcontent's Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1923}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2128}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":2156},"upgradeStep":1}}}, +{"id":97680,"name":"Insurrection Belt","icon":"inv_belt_34","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97681,"name":"Perjurious Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1271},"upgradeStep":1}}}, +{"id":97682,"name":"Disowner's Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1617},"upgradeStep":1}}}, +{"id":97683,"name":"Reformationist's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1271},"upgradeStep":1}}}, +{"id":97684,"name":"Secessionist's Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97685,"name":"Tallgrass Guerilla's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2007}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2221}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2250},"upgradeStep":1}}}, +{"id":97686,"name":"Dissident's Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1254}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1271},"upgradeStep":1}}}, +{"id":97687,"name":"Malcontent's Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1442}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1596}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1617},"upgradeStep":1}}}, +{"id":97688,"name":"Crimson Schism Chestpiece","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2875},"upgradeStep":1}}}, +{"id":97689,"name":"Crimson Schism Pauldrons","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2156},"upgradeStep":1}}}, +{"id":97690,"name":"Crimson Schism Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2516},"upgradeStep":1}}}, +{"id":97691,"name":"Crimson Schism Cord","icon":"inv_belt_87v2","type":8,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1617},"upgradeStep":1}}}, +{"id":97692,"name":"Crimson Schism Headpiece","icon":"inv_helmet_175v2","type":1,"armorType":2,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":2336},"upgradeStep":1}}}, +{"id":97693,"name":"Crimson Schism Mitts","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1773}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1797},"upgradeStep":1}}}, +{"id":97696,"name":"Crimson Schism Slippers","icon":"inv_boots_leather_11v2","type":10,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1951}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1977},"upgradeStep":1}}}, +{"id":97722,"name":"Insubordination Breastplate","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97723,"name":"Insubordination Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97724,"name":"Insubordination Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97725,"name":"Insubordination Helm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97726,"name":"Insubordination Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97727,"name":"Insubordination Shoulderpads","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97728,"name":"Insubordination Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97733,"name":"Insubordination Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97734,"name":"Insubordination Helm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97735,"name":"Insubordination Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97736,"name":"Insubordination Shoulderpads","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97737,"name":"Insubordination Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97738,"name":"Insubordination Breastplate","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97739,"name":"Insubordination Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97740,"name":"Malcontent's Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1617},"upgradeStep":1}}}, +{"id":97741,"name":"Malcontent's Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2516},"upgradeStep":1}}}, +{"id":97742,"name":"Malcontent's Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2156},"upgradeStep":1}}}, +{"id":97743,"name":"Malcontent's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1951}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1977},"upgradeStep":1}}}, +{"id":97744,"name":"Malcontent's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1773}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1797},"upgradeStep":1}}}, +{"id":97745,"name":"Malcontent's Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":2336},"upgradeStep":1}}}, +{"id":97746,"name":"Malcontent's Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2875},"upgradeStep":1}}}, +{"id":97747,"name":"Crimson Schism Chestpiece","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2564}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2837}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2875},"upgradeStep":1}}}, +{"id":97748,"name":"Crimson Schism Slippers","icon":"inv_boots_leather_11v2","type":10,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1763}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1951}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1977},"upgradeStep":1}}}, +{"id":97749,"name":"Crimson Schism Mitts","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1602}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1773}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1797},"upgradeStep":1}}}, +{"id":97750,"name":"Crimson Schism Headpiece","icon":"inv_helmet_175v2","type":1,"armorType":2,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2083}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":2305}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":2336},"upgradeStep":1}}}, +{"id":97751,"name":"Crimson Schism Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2243}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":2483}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":2516},"upgradeStep":1}}}, +{"id":97752,"name":"Crimson Schism Pauldrons","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1923}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":2128}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":2156},"upgradeStep":1}}}, +{"id":97753,"name":"Crimson Schism Cord","icon":"inv_belt_87v2","type":8,"armorType":2,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1442}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":1596}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":1617},"upgradeStep":1}}}, +{"id":97754,"name":"Crimson Schism Chestpiece","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2913,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2564}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2837}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2875},"upgradeStep":1}}}, +{"id":97755,"name":"Crimson Schism Slippers","icon":"inv_boots_leather_11v2","type":10,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1951}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1977},"upgradeStep":1}}}, +{"id":97756,"name":"Crimson Schism Mitts","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1773}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1797},"upgradeStep":1}}}, +{"id":97757,"name":"Crimson Schism Headpiece","icon":"inv_helmet_175v2","type":1,"armorType":2,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2366,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":2305}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":2336},"upgradeStep":1}}}, +{"id":97758,"name":"Crimson Schism Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2243}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":2483}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":2516},"upgradeStep":1}}}, +{"id":97759,"name":"Crimson Schism Pauldrons","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2128}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2156},"upgradeStep":1}}}, +{"id":97760,"name":"Crimson Schism Cord","icon":"inv_belt_87v2","type":8,"armorType":2,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":1596}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":1617},"upgradeStep":1}}}, +{"id":97761,"name":"Insurrection Spaulders","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97762,"name":"Insurrection Belt","icon":"inv_belt_34","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97763,"name":"Insurrection Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97764,"name":"Insurrection Helm","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97765,"name":"Insurrection Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97766,"name":"Insurrection Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97767,"name":"Insurrection Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97768,"name":"Unbending Spirit Kilt","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3122}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":3454}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":3500},"upgradeStep":1}}}, +{"id":97769,"name":"Unbending Spirit Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2676}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2961}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":3000},"upgradeStep":1}}}, +{"id":97770,"name":"Unbending Spirit Cord","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2007}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2221}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2250},"upgradeStep":1}}}, +{"id":97771,"name":"Unbending Spirit Vest","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,1235,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3568}},"489":{"randPropPoints":2179,"stats":{"1":1146,"2":1719,"22":3948}},"493":{"randPropPoints":2262,"stats":{"1":1190,"2":1784,"22":4000},"upgradeStep":1}}}, +{"id":97772,"name":"Unbending Spirit Boots","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2786,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2453}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2714}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2750},"upgradeStep":1}}}, +{"id":97773,"name":"Unbending Spirit Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,917,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2230}},"489":{"randPropPoints":1619,"stats":{"1":851,"2":1277,"22":2467}},"493":{"randPropPoints":1680,"stats":{"1":884,"2":1325,"22":2500},"upgradeStep":1}}}, +{"id":97774,"name":"Unbending Spirit Coif","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,995,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3293,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2899}},"489":{"randPropPoints":2179,"stats":{"1":906,"2":1719,"22":3208}},"493":{"randPropPoints":2262,"stats":{"1":950,"2":1784,"22":3250},"upgradeStep":1}}}, +{"id":97775,"name":"Secessionist's Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3045}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":3370}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":3414},"upgradeStep":1}}}, +{"id":97776,"name":"Secessionist's Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,1852,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":3959}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":906,"22":4380}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":950,"22":4439},"upgradeStep":1}}}, +{"id":97777,"name":"Secessionist's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":4872}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":5391}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":5463},"upgradeStep":1}}}, +{"id":97778,"name":"Secessionist's Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3350}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":3707}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":3756},"upgradeStep":1}}}, +{"id":97779,"name":"Secessionist's Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2741}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":3033}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":3073},"upgradeStep":1}}}, +{"id":97780,"name":"Secessionist's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,1852,1235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":4263}},"489":{"randPropPoints":2179,"stats":{"2":1719,"3":1146,"22":4717}},"493":{"randPropPoints":2262,"stats":{"2":1784,"3":1190,"22":4780},"upgradeStep":1}}}, +{"id":97781,"name":"Secessionist's Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,1376,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3654}},"489":{"randPropPoints":1619,"stats":{"2":1277,"3":851,"22":4043}},"493":{"randPropPoints":1680,"stats":{"2":1325,"3":884,"22":4097},"upgradeStep":1}}}, +{"id":97782,"name":"Secessionist's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":5391}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":5463},"upgradeStep":1}}}, +{"id":97783,"name":"Secessionist's Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3707}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3756},"upgradeStep":1}}}, +{"id":97784,"name":"Secessionist's Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3370}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3414},"upgradeStep":1}}}, +{"id":97785,"name":"Secessionist's Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[995,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4497,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"489":{"randPropPoints":2179,"stats":{"0":906,"2":1719,"22":4380}},"493":{"randPropPoints":2262,"stats":{"0":950,"2":1784,"22":4439},"upgradeStep":1}}}, +{"id":97786,"name":"Secessionist's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[1235,0,1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"489":{"randPropPoints":2179,"stats":{"0":1146,"2":1719,"22":4717}},"493":{"randPropPoints":2262,"stats":{"0":1190,"2":1784,"22":4780},"upgradeStep":1}}}, +{"id":97787,"name":"Secessionist's Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":4043}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":4097},"upgradeStep":1}}}, +{"id":97788,"name":"Secessionist's Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[917,0,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"489":{"randPropPoints":1619,"stats":{"0":851,"2":1277,"22":3033}},"493":{"randPropPoints":1680,"stats":{"0":884,"2":1325,"22":3073},"upgradeStep":1}}}, +{"id":97826,"name":"Latent Kor'kron Chestpiece","icon":"inv_chest_chain_12","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97827,"name":"Latent Kor'kron Boots","icon":"inv_boots_05","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97828,"name":"Latent Kor'kron Gloves","icon":"inv_gauntlets_04","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97829,"name":"Latent Kor'kron Helm","icon":"inv_helmet_15","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97830,"name":"Latent Kor'kron Leggings","icon":"inv_pants_02","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97831,"name":"Latent Kor'kron Spaulders","icon":"inv_shoulder_30","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97832,"name":"Latent Kor'kron Belt","icon":"inv_belt_02","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"489":{},"493":{"upgradeStep":1}}}, +{"id":97833,"name":"Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,130,64,0,0,58,0,0,0,0,36,0,0,0,0,34,0,0,0,0,0,1871,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":38,"6":40,"11":18,"16":24,"22":1637}},"491":{"randPropPoints":2220,"stats":{"2":120,"3":58,"6":54,"11":31,"16":32,"22":1823}},"495":{"randPropPoints":2304,"stats":{"2":125,"3":61,"6":56,"11":34,"16":33,"22":1847},"upgradeStep":1}}}, +{"id":97834,"name":"Malevolent Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,72,48,0,0,34,0,0,0,0,28,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1333,"ilvl":491,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"6":24,"11":20,"16":13}},"491":{"randPropPoints":1237,"stats":{"2":67,"3":45,"6":32,"11":26,"16":18}},"495":{"randPropPoints":1284,"stats":{"2":70,"3":46,"6":33,"11":27,"16":18},"upgradeStep":1}}}, +{"id":97835,"name":"Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,96,59,0,0,0,43,0,0,0,38,0,0,0,0,26,0,0,0,0,0,1727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"7":30,"11":25,"16":18,"22":1511}},"491":{"randPropPoints":1649,"stats":{"2":89,"3":55,"7":40,"11":35,"16":24,"22":1683}},"495":{"randPropPoints":1712,"stats":{"2":93,"3":57,"7":41,"11":36,"16":25,"22":1705},"upgradeStep":1}}}, +{"id":97836,"name":"Malevolent Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,72,48,0,0,0,28,0,0,0,34,0,0,0,0,19,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1333,"ilvl":491,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"7":20,"11":24,"16":13,"22":1007}},"491":{"randPropPoints":1237,"stats":{"2":67,"3":45,"7":26,"11":32,"16":18,"22":1122}},"495":{"randPropPoints":1284,"stats":{"2":70,"3":46,"7":27,"11":33,"16":18,"22":1137},"upgradeStep":1}}}, +{"id":97837,"name":"Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,130,76,0,0,48,58,0,0,0,0,0,0,0,0,34,0,0,0,0,0,2303,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":50,"6":30,"7":40,"16":24,"22":2014}},"491":{"randPropPoints":2220,"stats":{"2":120,"3":70,"6":44,"7":54,"16":32,"22":2244}},"495":{"randPropPoints":2304,"stats":{"2":125,"3":73,"6":46,"7":56,"16":33,"22":2274},"upgradeStep":1}}}, +{"id":97838,"name":"Malevolent Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,67,45,0,32,26,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"5":24,"6":20,"16":13,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":62,"3":41,"5":30,"6":24,"16":17,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":65,"3":43,"5":31,"6":25,"16":17,"22":969},"upgradeStep":1}}}, +{"id":97839,"name":"Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,89,55,0,35,40,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"5":25,"6":30,"16":18,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"5":32,"6":37,"16":22,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"5":33,"6":38,"16":23,"22":1384},"upgradeStep":1}}}, +{"id":97840,"name":"Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,89,55,0,38,0,35,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"5":27,"7":26,"16":18,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":83,"3":50,"5":34,"7":32,"16":22,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":86,"3":52,"5":36,"7":34,"16":23,"22":1246},"upgradeStep":1}}}, +{"id":97841,"name":"Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,130,76,0,0,0,48,0,0,0,58,0,0,0,0,34,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":90,"3":50,"7":30,"11":40,"16":24,"22":1763}},"491":{"randPropPoints":2220,"stats":{"2":120,"3":70,"7":44,"11":54,"16":32,"22":1963}},"495":{"randPropPoints":2304,"stats":{"2":125,"3":73,"7":46,"11":56,"16":33,"22":1989},"upgradeStep":1}}}, +{"id":97842,"name":"Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,96,59,0,0,41,0,0,0,0,37,0,0,0,0,26,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":67,"3":40,"6":27,"11":26,"16":18,"22":1385}},"491":{"randPropPoints":1649,"stats":{"2":89,"3":55,"6":38,"11":35,"16":24,"22":1543}},"495":{"randPropPoints":1712,"stats":{"2":93,"3":57,"6":39,"11":36,"16":25,"22":1563},"upgradeStep":1}}}, +{"id":97843,"name":"Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,70,46,0,0,33,0,0,0,0,27,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1284,"ilvl":487,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"6":24,"11":20,"16":13}},"487":{"randPropPoints":1192,"stats":{"2":65,"3":43,"6":31,"11":25,"16":17}},"491":{"randPropPoints":1237,"stats":{"2":67,"3":45,"6":32,"11":26,"16":18},"upgradeStep":1}}}, +{"id":97844,"name":"Malevolent Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,67,45,0,32,0,26,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"5":24,"7":20,"16":13}},"483":{"randPropPoints":1148,"stats":{"2":62,"3":41,"5":30,"7":24,"16":17}},"487":{"randPropPoints":1192,"stats":{"2":65,"3":43,"5":31,"7":25,"16":17},"upgradeStep":1}}}, +{"id":97845,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":57,"16":18}},"483":{"randPropPoints":1531,"stats":{"11":70,"16":22}},"487":{"randPropPoints":1589,"stats":{"11":73,"16":23},"upgradeStep":1}}}, +{"id":97846,"name":"Malevolent Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,59,39,0,0,26,0,0,0,0,0,0,0,528,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":39,"3":26,"6":17,"14":344,"16":17}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":55,"3":37,"6":24,"14":491,"16":24}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":57,"3":38,"6":25,"14":509,"16":25},"upgradeStep":1}}}, +{"id":97847,"name":"Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,72,48,0,0,32,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":50,"3":33,"6":22,"16":17}},"490":{"randPropPoints":1225,"stats":{"2":66,"3":44,"6":30,"16":23}},"494":{"randPropPoints":1272,"stats":{"2":69,"3":46,"6":31,"16":24},"upgradeStep":1}}}, +{"id":97923,"name":"Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,74,37,0,0,33,0,0,0,0,21,0,0,0,0,20,0,0,0,0,0,1871,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":22,"6":23,"11":11,"16":14,"22":1637}},"491":{"randPropPoints":2220,"stats":{"2":69,"3":34,"6":30,"11":18,"16":18,"22":1823}},"495":{"randPropPoints":2304,"stats":{"2":71,"3":35,"6":32,"11":20,"16":19,"22":1847},"upgradeStep":1}}}, +{"id":97924,"name":"Malevolent Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,41,27,0,0,20,0,0,0,0,16,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1333,"ilvl":491,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"6":14,"11":11,"16":8}},"491":{"randPropPoints":1237,"stats":{"2":38,"3":25,"6":18,"11":15,"16":10}},"495":{"randPropPoints":1284,"stats":{"2":40,"3":26,"6":19,"11":15,"16":11},"upgradeStep":1}}}, +{"id":97925,"name":"Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,55,33,0,0,0,24,0,0,0,20,0,0,0,0,15,0,0,0,0,0,1727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"7":17,"11":13,"16":10,"22":1511}},"491":{"randPropPoints":1649,"stats":{"2":51,"3":30,"7":23,"11":19,"16":14,"22":1683}},"495":{"randPropPoints":1712,"stats":{"2":53,"3":31,"7":23,"11":19,"16":14,"22":1705},"upgradeStep":1}}}, +{"id":97926,"name":"Malevolent Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,41,27,0,0,0,16,0,0,0,20,0,0,0,0,11,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1333,"ilvl":491,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"7":11,"11":14,"16":8,"22":1007}},"491":{"randPropPoints":1237,"stats":{"2":38,"3":25,"7":15,"11":18,"16":10,"22":1122}},"495":{"randPropPoints":1284,"stats":{"2":40,"3":26,"7":15,"11":19,"16":11,"22":1137},"upgradeStep":1}}}, +{"id":97927,"name":"Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,74,41,0,0,25,33,0,0,0,0,0,0,0,0,20,0,0,0,0,0,2303,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":26,"6":15,"7":23,"16":14,"22":2014}},"491":{"randPropPoints":2220,"stats":{"2":69,"3":38,"6":22,"7":30,"16":18,"22":2244}},"495":{"randPropPoints":2304,"stats":{"2":71,"3":39,"6":24,"7":32,"16":19,"22":2274},"upgradeStep":1}}}, +{"id":97928,"name":"Malevolent Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,38,25,0,18,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":14,"6":11,"16":8,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":35,"3":24,"5":17,"6":14,"16":9,"22":956}},"487":{"randPropPoints":1192,"stats":{"2":37,"3":25,"5":18,"6":14,"16":10,"22":969},"upgradeStep":1}}}, +{"id":97929,"name":"Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,51,30,0,19,23,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1402,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":13,"6":17,"16":10,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":47,"3":28,"5":17,"6":21,"16":13,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":49,"3":29,"5":18,"6":22,"16":13,"22":1384},"upgradeStep":1}}}, +{"id":97930,"name":"Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,51,30,0,20,0,20,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1262,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":14,"7":15,"16":10,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":47,"3":28,"5":19,"7":18,"16":13,"22":1229}},"487":{"randPropPoints":1589,"stats":{"2":49,"3":29,"5":19,"7":19,"16":13,"22":1246},"upgradeStep":1}}}, +{"id":97931,"name":"Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,74,41,0,0,0,25,0,0,0,33,0,0,0,0,20,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2392,"ilvl":491,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":26,"7":15,"11":23,"16":14,"22":1763}},"491":{"randPropPoints":2220,"stats":{"2":69,"3":38,"7":22,"11":30,"16":18,"22":1963}},"495":{"randPropPoints":2304,"stats":{"2":71,"3":39,"7":24,"11":32,"16":19,"22":1989},"upgradeStep":1}}}, +{"id":97932,"name":"Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,55,33,0,0,22,0,0,0,0,21,0,0,0,0,15,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"6":14,"11":15,"16":10,"22":1385}},"491":{"randPropPoints":1649,"stats":{"2":51,"3":30,"6":20,"11":20,"16":14,"22":1543}},"495":{"randPropPoints":1712,"stats":{"2":53,"3":31,"6":21,"11":21,"16":14,"22":1563},"upgradeStep":1}}}, +{"id":97933,"name":"Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,40,26,0,0,19,0,0,0,0,15,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1284,"ilvl":487,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"6":14,"11":11,"16":8}},"487":{"randPropPoints":1192,"stats":{"2":37,"3":25,"6":18,"11":14,"16":10}},"491":{"randPropPoints":1237,"stats":{"2":38,"3":25,"6":18,"11":15,"16":10},"upgradeStep":1}}}, +{"id":97934,"name":"Malevolent Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,38,25,0,18,0,15,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":14,"7":11,"16":8}},"483":{"randPropPoints":1148,"stats":{"2":35,"3":24,"5":17,"7":14,"16":9}},"487":{"randPropPoints":1192,"stats":{"2":37,"3":25,"5":18,"7":14,"16":10},"upgradeStep":1}}}, +{"id":97935,"name":"Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":32,"16":10}},"483":{"randPropPoints":1531,"stats":{"11":40,"16":13}},"487":{"randPropPoints":1589,"stats":{"11":41,"16":13},"upgradeStep":1}}}, +{"id":97936,"name":"Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1777,"ilvl":491,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"16":10}},"491":{"randPropPoints":1649,"stats":{"16":14}},"495":{"randPropPoints":1712,"stats":{"16":14},"upgradeStep":1}}}, +{"id":97944,"name":"Malevolent Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias1_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,34,23,0,0,15,0,0,0,0,0,0,0,301,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":22,"3":15,"6":10,"14":196,"16":10}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":31,"3":21,"6":14,"14":280,"16":14}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":33,"3":22,"6":14,"14":290,"16":14},"upgradeStep":1}}}, +{"id":97945,"name":"Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,41,27,0,0,18,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1320,"ilvl":490,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"6":13,"16":10}},"490":{"randPropPoints":1225,"stats":{"2":38,"3":25,"6":17,"16":13}},"494":{"randPropPoints":1272,"stats":{"2":39,"3":26,"6":17,"16":13},"upgradeStep":1}}}, +{"id":98006,"name":"Hood of the Burning Scroll","icon":"inv_helm_raidmage_l_01","type":1,"armorType":1,"stats":[0,0,77,40,0,0,25,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":22,"6":15,"11":18,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":72,"3":36,"6":23,"11":28,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":75,"3":38,"6":24,"11":29,"22":1877},"upgradeStep":1}}}, +{"id":98007,"name":"Megaera's Shining Eye","icon":"inv_jewelry_necklace_126","type":2,"stats":[0,0,55,37,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":13,"6":13}},"522":{"randPropPoints":1651,"stats":{"2":51,"3":34,"5":23,"6":23}},"526":{"randPropPoints":1714,"stats":{"2":53,"3":35,"5":23,"6":23},"upgradeStep":1}}}, +{"id":98008,"name":"Mantle of the Burning Scroll","icon":"inv_shoulder_raidmage_l_01","type":3,"armorType":1,"stats":[0,0,58,34,0,25,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":17,"11":13,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":53,"3":32,"5":23,"11":20,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":55,"3":33,"5":24,"11":21,"22":1733},"upgradeStep":1}}}, +{"id":98009,"name":"Stormwake Mistcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,46,31,0,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1504,"ilvl":504,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":11,"6":14,"22":1007}},"504":{"randPropPoints":1396,"stats":{"2":43,"3":29,"5":16,"6":21,"22":1170}},"508":{"randPropPoints":1449,"stats":{"2":45,"3":30,"5":17,"6":22,"22":1185},"upgradeStep":1}}}, +{"id":98010,"name":"Robes of the Burning Scroll","icon":"inv_robe_raidmage_l_01","type":5,"armorType":1,"stats":[0,0,83,48,0,0,35,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2399,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2700,"ilvl":504,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":26,"6":20,"7":17,"22":2014}},"504":{"randPropPoints":2506,"stats":{"2":77,"3":44,"6":32,"7":27,"22":2340}},"508":{"randPropPoints":2601,"stats":{"2":80,"3":46,"6":34,"7":28,"22":2370},"upgradeStep":1}}}, +{"id":98011,"name":"Attenuating Bracers","icon":"inv_bracer_cloth_raidwarlock_l_01","type":6,"armorType":1,"stats":[0,0,43,29,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"7":13,"11":12,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":40,"3":27,"7":18,"11":17,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":42,"3":28,"7":19,"11":18,"22":1011},"upgradeStep":1}}}, +{"id":98012,"name":"Dinomancer's Spiritbinding Spire","icon":"inv_stave_2h_thunderisleraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,99,62,0,40,0,43,0,0,0,0,0,0,377,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":8096,"weaponDamageMax":12144,"weaponSpeed":3.3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":51,"3":30,"5":21,"7":21,"14":196}},"522":{"randPropPoints":2963,"weaponDamageMin":7514,"weaponDamageMax":11272,"stats":{"2":92,"3":57,"5":36,"7":40,"14":350}},"526":{"randPropPoints":3076,"weaponDamageMin":7800,"weaponDamageMax":11700,"stats":{"2":95,"3":59,"5":38,"7":42,"14":363},"upgradeStep":1}}}, +{"id":98013,"name":"Crystal-Claw Gloves","icon":"inv_glove_cloth_raidmage_m_01","type":7,"armorType":1,"stats":[0,0,73,45,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"6":15,"7":15,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":68,"3":41,"6":28,"7":28,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":71,"3":43,"6":29,"7":29,"22":1564},"upgradeStep":1}}}, +{"id":98014,"name":"Ruby-Linked Girdle","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,63,38,0,19,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,1358,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2043,"ilvl":506,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":11,"11":17,"22":1133}},"506":{"randPropPoints":1897,"stats":{"2":59,"3":35,"5":18,"11":28,"22":1325}},"510":{"randPropPoints":1969,"stats":{"2":61,"3":37,"5":18,"11":29,"22":1341},"upgradeStep":1}}}, +{"id":98015,"name":"Leggings of the Burning Scroll","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,77,48,0,0,0,32,0,0,0,32,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":30,"7":21,"11":21,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":72,"3":44,"7":30,"11":30,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":75,"3":46,"7":31,"11":31,"22":2022},"upgradeStep":1}}}, +{"id":98016,"name":"Sandals of the Unbidden","icon":"inv_boot_cloth_raidwarlock_l_01","type":10,"armorType":1,"stats":[0,0,62,37,0,20,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,1650,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2006,"ilvl":504,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":11,"11":18,"22":1385}},"504":{"randPropPoints":1862,"stats":{"2":58,"3":34,"5":18,"11":27,"22":1609}},"508":{"randPropPoints":1932,"stats":{"2":60,"3":36,"5":19,"11":29,"22":1629},"upgradeStep":1}}}, +{"id":98017,"name":"Signet of the Shado-Pan Assault","icon":"inv_jewelry_ring_167","type":11,"stats":[0,0,55,37,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"6":13,"7":13}},"522":{"randPropPoints":1651,"stats":{"2":51,"3":34,"6":23,"7":23}},"526":{"randPropPoints":1714,"stats":{"2":53,"3":35,"6":23,"7":23},"upgradeStep":1}}}, +{"id":98018,"name":"Fragment of Fear Made Flesh","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,43,29,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":11,"6":14}},"496":{"randPropPoints":1296,"stats":{"2":40,"3":27,"5":16,"6":19}},"500":{"randPropPoints":1345,"stats":{"2":42,"3":28,"5":16,"6":20},"upgradeStep":1}}}, +{"id":98019,"name":"Light of the Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":12,"stats":[0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2121,"ilvl":510,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":32}},"510":{"randPropPoints":1969,"stats":{"7":51}},"514":{"randPropPoints":2043,"stats":{"7":53},"upgradeStep":1}}}, +{"id":98020,"name":"Essence of Terror","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2006,"ilvl":504,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":32}},"504":{"randPropPoints":1862,"stats":{"3":49}},"508":{"randPropPoints":1932,"stats":{"3":50},"upgradeStep":1}}}, +{"id":98029,"name":"Amulet of Seven Curses","icon":"inv_jewelry_necklace_99","type":2,"stats":[0,0,46,30,0,21,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1476,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":13,"6":12}},"502":{"randPropPoints":1370,"stats":{"2":42,"3":28,"5":20,"6":17}},"506":{"randPropPoints":1422,"stats":{"2":44,"3":29,"5":20,"6":18},"upgradeStep":1}}}, +{"id":98030,"name":"Cloak of Overwhelming Corruption","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,46,31,0,0,0,20,0,0,0,21,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1490,"ilvl":503,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"7":12,"11":13,"22":1007}},"503":{"randPropPoints":1383,"stats":{"2":43,"3":28,"7":18,"11":20,"22":1166}},"507":{"randPropPoints":1436,"stats":{"2":44,"3":30,"7":19,"11":20,"22":1181},"upgradeStep":1}}}, +{"id":98042,"name":"Twisting Wind Bracers","icon":"inv_bracer_raidmage_l_01","type":6,"armorType":1,"stats":[0,0,49,32,0,21,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1576,"ilvl":509,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":12,"7":13,"22":881}},"509":{"randPropPoints":1463,"stats":{"2":45,"3":30,"5":20,"7":20,"22":1040}},"513":{"randPropPoints":1518,"stats":{"2":47,"3":31,"5":20,"7":21,"22":1053},"upgradeStep":1}}}, +{"id":98043,"name":"Jin'ya, Orb of the Waterspeaker","icon":"inv_staff_2h_pandaraidsha_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,56,0,0,34,39,0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2700,"weaponDamageMin":6846,"weaponDamageMax":10269,"weaponSpeed":3.3,"ilvl":504,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":51,"3":34,"6":21,"7":24,"14":196}},"504":{"randPropPoints":2506,"weaponDamageMin":6354,"weaponDamageMax":9532,"stats":{"2":77,"3":52,"6":32,"7":36,"14":296}},"508":{"randPropPoints":2601,"weaponDamageMin":6595,"weaponDamageMax":9894,"stats":{"2":80,"3":54,"6":33,"7":37,"14":307},"upgradeStep":1}}}, +{"id":98044,"name":"Gloves of the Burning Scroll","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,70,47,0,27,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2264,"ilvl":517,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":25,"5":15,"7":18,"22":1259}},"517":{"randPropPoints":2101,"stats":{"2":65,"3":43,"5":25,"7":31,"22":1523}},"521":{"randPropPoints":2181,"stats":{"2":67,"3":45,"5":26,"7":32,"22":1541},"upgradeStep":1}}}, +{"id":98045,"name":"Ruby-Linked Girdle","icon":"inv_belt_cloth_raidwarlock_l_01","type":8,"armorType":1,"stats":[0,0,61,37,0,18,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,1341,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"5":11,"11":17,"22":1133}},"502":{"randPropPoints":1827,"stats":{"2":56,"3":34,"5":17,"11":27,"22":1308}},"506":{"randPropPoints":1897,"stats":{"2":59,"3":35,"5":18,"11":28,"22":1325},"upgradeStep":1}}}, +{"id":98046,"name":"Dreadwoven Leggings of Failure","icon":"inv_pant_raidmage_l_01","type":9,"armorType":1,"stats":[0,0,77,44,0,28,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":26,"5":17,"7":20,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":72,"3":40,"5":26,"7":29,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":75,"3":42,"5":27,"7":31,"22":2022},"upgradeStep":1}}}, +{"id":98047,"name":"Sandals of the Shadow","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,48,32,0,20,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":25,"5":16,"7":17,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":44,"3":30,"5":19,"7":20,"22":1466}},"480":{"randPropPoints":1489,"stats":{"2":46,"3":31,"5":20,"7":21,"22":1487},"upgradeStep":1}}}, +{"id":98048,"name":"Simple Harmonius Ring","icon":"inv_jewelry_ring_147","type":11,"stats":[0,0,40,27,0,18,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":13,"7":12}},"489":{"randPropPoints":1214,"stats":{"2":38,"3":25,"5":17,"7":16}},"493":{"randPropPoints":1260,"stats":{"2":39,"3":26,"5":18,"7":17},"upgradeStep":1}}}, +{"id":98049,"name":"Relic of Yu'lon","icon":"inv_inscription_trinket_dragon","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":32}},"476":{"randPropPoints":1434,"stats":{"3":37}},"480":{"randPropPoints":1489,"stats":{"3":39},"upgradeStep":1}}}, +{"id":98050,"name":"Light of the Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":12,"stats":[0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1744,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":32}},"489":{"randPropPoints":1619,"stats":{"7":42}},"493":{"randPropPoints":1680,"stats":{"7":44},"upgradeStep":1}}}, +{"id":98064,"name":"Sky-Sear Cowl","icon":"inv_helmet_cloth_raidwarlock_l_01","type":1,"armorType":1,"stats":[0,0,77,40,0,26,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":22,"5":16,"6":17,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":72,"3":36,"5":24,"6":26,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":75,"3":38,"5":25,"6":28,"22":1877},"upgradeStep":1}}}, +{"id":98065,"name":"Destroyer's Battletags","icon":"inv_jewelry_necklace_132","type":2,"stats":[0,0,55,37,0,25,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":13,"11":12}},"522":{"randPropPoints":1651,"stats":{"2":51,"3":34,"5":24,"11":21}},"526":{"randPropPoints":1714,"stats":{"2":53,"3":35,"5":25,"11":22},"upgradeStep":1}}}, +{"id":98066,"name":"Shadowsummoner Spaulders","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,48,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1644,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":21,"6":15,"7":15,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":44,"3":26,"6":17,"7":18,"22":1600}},"480":{"randPropPoints":1489,"stats":{"2":46,"3":27,"6":18,"7":19,"22":1622},"upgradeStep":1}}}, +{"id":98067,"name":"Stormwake Mistcloak","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,38,25,0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":11,"6":14,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":35,"3":24,"5":13,"6":17,"22":1092}},"487":{"randPropPoints":1192,"stats":{"2":37,"3":25,"5":14,"6":18,"22":1107},"upgradeStep":1}}}, +{"id":98068,"name":"Imperial Ghostbinder's Robes","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,73,40,0,0,30,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":26,"6":20,"11":17,"22":2014}},"489":{"randPropPoints":2179,"stats":{"2":67,"3":37,"6":27,"11":24,"22":2229}},"493":{"randPropPoints":2262,"stats":{"2":70,"3":39,"6":28,"11":25,"22":2259},"upgradeStep":1}}}, +{"id":98069,"name":"Minh's Beaten Bracers","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,40,27,0,17,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":12,"11":13,"22":881}},"489":{"randPropPoints":1214,"stats":{"2":38,"3":25,"5":16,"11":17,"22":975}},"493":{"randPropPoints":1260,"stats":{"2":39,"3":26,"5":17,"11":18,"22":988},"upgradeStep":1}}}, +{"id":98070,"name":"Jin'ya, Orb of the Waterspeaker","icon":"inv_staff_2h_pandaraidsha_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,46,0,0,28,32,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[7],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2220,"weaponDamageMin":5629,"weaponDamageMax":8444,"weaponSpeed":3.3,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":51,"3":34,"6":21,"7":24,"14":196}},"483":{"randPropPoints":2061,"weaponDamageMin":5225,"weaponDamageMax":7838,"stats":{"2":64,"3":42,"6":26,"7":29,"14":243}},"487":{"randPropPoints":2139,"weaponDamageMin":5423,"weaponDamageMax":8135,"stats":{"2":66,"3":44,"6":27,"7":31,"14":252},"upgradeStep":1}}}, +{"id":98071,"name":"Gloves of the Burning Scroll","icon":"inv_glove_raidmage_l_01","type":7,"armorType":1,"stats":[0,0,51,34,0,20,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1649,"ilvl":483,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":25,"5":15,"7":18,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":47,"3":32,"5":19,"7":23,"22":1365}},"487":{"randPropPoints":1589,"stats":{"2":49,"3":33,"5":19,"7":23,"22":1384},"upgradeStep":1}}}, +{"id":98072,"name":"Orbital Belt","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,48,24,0,0,0,17,0,0,0,17,0,0,0,0,0,0,0,0,0,0,1233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1545,"ilvl":476,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":38,"3":17,"7":13,"11":13,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":44,"3":22,"7":16,"11":16,"22":1200}},"480":{"randPropPoints":1489,"stats":{"2":46,"3":23,"7":16,"11":16,"22":1216},"upgradeStep":1}}}, +{"id":98073,"name":"Leggings of the Poisoned Soul","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,73,44,0,28,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2002,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":51,"3":30,"5":19,"6":22,"22":1763}},"489":{"randPropPoints":2179,"stats":{"2":67,"3":41,"5":26,"6":29,"22":1950}},"493":{"randPropPoints":2262,"stats":{"2":70,"3":43,"5":27,"6":30,"22":1976},"upgradeStep":1}}}, +{"id":98074,"name":"Fragment of Fear Made Flesh","icon":"inv_jewelry_ring_145","type":11,"stats":[0,0,38,25,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1237,"ilvl":483,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":29,"3":19,"5":11,"6":14}},"483":{"randPropPoints":1148,"stats":{"2":35,"3":24,"5":14,"6":17}},"487":{"randPropPoints":1192,"stats":{"2":37,"3":25,"5":14,"6":18},"upgradeStep":1}}}, +{"id":98075,"name":"Relic of Yu'lon","icon":"inv_inscription_trinket_dragon","type":12,"stats":[0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":484,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":32}},"484":{"randPropPoints":1545,"stats":{"3":40}},"488":{"randPropPoints":1604,"stats":{"3":42},"upgradeStep":1}}}, +{"id":98076,"name":"Essence of Terror","icon":"inv_misc_pvp_trinket","type":12,"stats":[0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":32}},"496":{"randPropPoints":1728,"stats":{"3":45}},"500":{"randPropPoints":1793,"stats":{"3":47},"upgradeStep":1}}}, +{"id":98137,"name":"Treads of Reticence","icon":"inv_boot_mail_raidhunter_m_01","type":10,"armorType":3,"stats":[0,1035,1553,0,0,0,0,673,0,0,0,701,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":422,"11":440,"22":2453}},"502":{"randPropPoints":1827,"stats":{"1":961,"2":1441,"7":624,"11":650,"22":2831}},"506":{"randPropPoints":1897,"stats":{"1":998,"2":1497,"7":648,"11":675,"22":2867},"upgradeStep":1}}}, +{"id":98138,"name":"Unpretentious Boots","icon":"inv_boot_mail_raidshaman_m_01","type":10,"armorType":3,"stats":[0,0,1553,1035,0,0,0,721,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":452,"11":401,"22":2453}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"7":669,"11":593,"22":2831}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"7":694,"11":616,"22":2867},"upgradeStep":1}}}, +{"id":98139,"name":"Treads of Respect","icon":"inv_boot_leather_raidmonk_m_01","type":10,"armorType":2,"stats":[0,0,1553,1035,731,0,0,0,0,0,0,622,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":458,"11":390,"22":1763}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":678,"11":578,"22":2035}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":704,"11":600,"22":2061},"upgradeStep":1}}}, +{"id":98140,"name":"Boots of Boundless Patience","icon":"inv_boot_plate_raidpaladin_m_01","type":10,"armorType":4,"stats":[0,0,1553,1035,769,0,557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":482,"6":349,"22":3350}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":713,"6":516,"22":3867}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":741,"6":536,"22":3916},"upgradeStep":1}}}, +{"id":98141,"name":"Sabatons of the Humble","icon":"inv_boots_plate_raidwarrior_m_01","type":10,"armorType":4,"stats":[1035,0,1553,0,0,0,0,0,0,0,741,606,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"10":464,"11":380,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":961,"2":1441,"10":687,"11":562,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":998,"2":1497,"10":713,"11":584,"22":3916},"upgradeStep":1}}}, +{"id":98142,"name":"Modest Sandals","icon":"inv_cloth_raidpriest_m_01boot","type":10,"armorType":1,"stats":[0,0,1553,1035,741,0,0,0,0,0,0,606,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"11":380,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"4":687,"11":562,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"4":713,"11":584,"22":1619},"upgradeStep":1}}}, +{"id":98143,"name":"Subservient Greatboots","icon":"inv_boots_plate_deathknight_m_01","type":10,"armorType":4,"stats":[1035,0,1553,0,0,0,778,0,0,0,0,540,0,0,0,0,0,0,0,0,0,0,3965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":488,"11":339,"22":3350}},"502":{"randPropPoints":1827,"stats":{"0":961,"2":1441,"6":722,"11":502,"22":3867}},"506":{"randPropPoints":1897,"stats":{"0":998,"2":1497,"6":750,"11":521,"22":3916},"upgradeStep":1}}}, +{"id":98144,"name":"Unassuming Slippers","icon":"inv_boot_cloth_raidmage_m_01","type":10,"armorType":1,"stats":[0,0,1553,1035,0,711,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":446,"6":412,"22":1385}},"502":{"randPropPoints":1827,"stats":{"2":1441,"3":961,"5":660,"6":609,"22":1599}},"506":{"randPropPoints":1897,"stats":{"2":1497,"3":998,"5":685,"6":632,"22":1619},"upgradeStep":1}}}, +{"id":98145,"name":"Self-Effacing Boots","icon":"inv_boot_leather_raidrogue_m_01","type":10,"armorType":2,"stats":[0,1035,1553,0,0,589,0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,2087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1969,"ilvl":502,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":370,"8":471,"22":1763}},"502":{"randPropPoints":1827,"stats":{"1":961,"2":1441,"5":547,"8":696,"22":2035}},"506":{"randPropPoints":1897,"stats":{"1":998,"2":1497,"5":568,"8":723,"22":2061},"upgradeStep":1}}}, +{"id":98146,"name":"Oxhorn Bladebreaker","icon":"inv_cape_pandaria_oxtank_d_01","type":4,"armorType":1,"stats":[1855,0,2902,0,0,0,0,0,0,992,992,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":230,"10":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"0":1716,"2":2694,"9":918,"10":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"0":1784,"2":2797,"9":955,"10":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98147,"name":"Tigerclaw Cape","icon":"inv_cape_pandaria_tigermelee_d_01","type":4,"armorType":1,"stats":[1855,0,2902,0,0,0,992,992,0,0,0,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":230,"7":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"0":1716,"2":2694,"6":918,"7":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"0":1784,"2":2797,"6":955,"7":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98148,"name":"Tigerfang Wrap","icon":"inv_cape_pandaria_tigermelee_d_01","type":4,"armorType":1,"stats":[0,1855,2902,0,0,0,992,992,0,0,0,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":230,"7":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"1":1716,"2":2694,"6":918,"7":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"1":1784,"2":2797,"6":955,"7":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98149,"name":"Cranewing Cloak","icon":"inv_cape_pandaria_cranehealer_d_01","type":4,"armorType":1,"stats":[0,0,2902,1855,992,0,0,992,0,0,0,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":230,"7":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"2":2694,"3":1716,"4":918,"7":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"2":2797,"3":1784,"4":955,"7":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98150,"name":"Jadefire Drape","icon":"inv_cape_pandaria_dragoncaster_d_01","type":4,"armorType":1,"stats":[0,0,2902,1855,0,0,992,992,0,0,0,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":230,"7":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"2":2694,"3":1716,"6":918,"7":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"2":2797,"3":1784,"6":955,"7":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98172,"name":"Mist Splitter's Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,885,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1007}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231,"22":1214}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279,"22":1229},"upgradeStep":1}}}, +{"id":98173,"name":"Tidesplitter Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2564}},"516":{"randPropPoints":2802,"stats":{"1":1474,"2":2210,"22":3092}},"520":{"randPropPoints":2909,"stats":{"1":1530,"2":2295,"22":3129},"upgradeStep":1}}}, +{"id":98174,"name":"Tidesplitter Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":2125}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":2151},"upgradeStep":1}}}, +{"id":98175,"name":"Tidesplitter Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":1932}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":1956},"upgradeStep":1}}}, +{"id":98176,"name":"Tidesplitter Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,1268,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2573,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":555,"2":1312,"22":2083}},"516":{"randPropPoints":2802,"stats":{"1":1154,"2":2210,"22":2512}},"520":{"randPropPoints":2909,"stats":{"1":1210,"2":2295,"22":2543},"upgradeStep":1}}}, +{"id":98177,"name":"Tidesplitter Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":2243}},"516":{"randPropPoints":2802,"stats":{"1":1474,"2":2210,"22":2705}},"520":{"randPropPoints":2909,"stats":{"1":1530,"2":2295,"22":2738},"upgradeStep":1}}}, +{"id":98178,"name":"Tidesplitter Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":2319}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":2347},"upgradeStep":1}}}, +{"id":98179,"name":"Tidesplitter Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":1739}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":1760},"upgradeStep":1}}}, +{"id":98180,"name":"Tidesplitter Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,885,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1122}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231,"22":1353}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279,"22":1369},"upgradeStep":1}}}, +{"id":98181,"name":"Perpetual Static Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3568}},"516":{"randPropPoints":2802,"stats":{"1":1474,"2":2210,"22":4302}},"520":{"randPropPoints":2909,"stats":{"1":1530,"2":2295,"22":4354},"upgradeStep":1}}}, +{"id":98182,"name":"Perpetual Static Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2453}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":2957}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":2993},"upgradeStep":1}}}, +{"id":98183,"name":"Perpetual Static Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2230}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":2689}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":2721},"upgradeStep":1}}}, +{"id":98184,"name":"Perpetual Static Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,1268,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3580,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":555,"2":1312,"22":2899}},"516":{"randPropPoints":2802,"stats":{"1":1154,"2":2210,"22":3495}},"520":{"randPropPoints":2909,"stats":{"1":1210,"2":2295,"22":3538},"upgradeStep":1}}}, +{"id":98185,"name":"Perpetual Static Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"22":3122}},"516":{"randPropPoints":2802,"stats":{"1":1474,"2":2210,"22":3764}},"520":{"randPropPoints":2909,"stats":{"1":1530,"2":2295,"22":3810},"upgradeStep":1}}}, +{"id":98186,"name":"Perpetual Static Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2676}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":3226}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":3266},"upgradeStep":1}}}, +{"id":98187,"name":"Perpetual Static Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,1180,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2007}},"516":{"randPropPoints":2082,"stats":{"1":1095,"2":1642,"22":2420}},"520":{"randPropPoints":2161,"stats":{"1":1136,"2":1705,"22":2449},"upgradeStep":1}}}, +{"id":98188,"name":"Perpetual Static Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,885,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1561}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231,"22":1882}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279,"22":1905},"upgradeStep":1}}}, +{"id":98189,"name":"Mist Splitter's Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,885,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279},"upgradeStep":1}}}, +{"id":98190,"name":"Mist Splitter's Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,885,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"1":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"1":852,"2":1279},"upgradeStep":1}}}, +{"id":98191,"name":"Sha-Seeker Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1214}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1229},"upgradeStep":1}}}, +{"id":98192,"name":"Jinyu Seer's Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2014}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":2429}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":2459},"upgradeStep":1}}}, +{"id":98193,"name":"Jinyu Seer's Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1670}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1690},"upgradeStep":1}}}, +{"id":98194,"name":"Jinyu Seer's Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1518}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1537},"upgradeStep":1}}}, +{"id":98195,"name":"Jinyu Seer's Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,2382,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":555,"22":1637}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1154,"22":1974}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1210,"22":1998},"upgradeStep":1}}}, +{"id":98196,"name":"Jinyu Seer's Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":1763}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":2125}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":2151},"upgradeStep":1}}}, +{"id":98197,"name":"Jinyu Seer's Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1822}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1844},"upgradeStep":1}}}, +{"id":98198,"name":"Jinyu Seer's Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1366}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1383},"upgradeStep":1}}}, +{"id":98199,"name":"Jinyu Seer's Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1063}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1076},"upgradeStep":1}}}, +{"id":98200,"name":"Sha-Seeker Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98201,"name":"Sha-Seeker Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98202,"name":"Ale-Boiled Jerkin","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2564}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":3092}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":3129},"upgradeStep":1}}}, +{"id":98203,"name":"Ale-Boiled Boots","icon":"inv_boots_leather_dungeonleather_c_06","type":10,"armorType":2,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1763}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":2125}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":2151},"upgradeStep":1}}}, +{"id":98204,"name":"Ale-Boiled Gloves","icon":"inv_gauntlets_leather_dungeonleather_c_06","type":7,"armorType":2,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1602}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1932}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1956},"upgradeStep":1}}}, +{"id":98205,"name":"Ale-Boiled Hood","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,2382,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2573,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":555,"22":2083}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1154,"22":2512}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1210,"22":2543},"upgradeStep":1}}}, +{"id":98206,"name":"Ale-Boiled Britches","icon":"inv_pants_leather_dungeonleather_c_06","type":9,"armorType":2,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2243}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":2705}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":2738},"upgradeStep":1}}}, +{"id":98207,"name":"Ale-Boiled Shoulders","icon":"inv_shoulder_leather_dungeonleather_c_06","type":3,"armorType":2,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1923}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":2319}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":2347},"upgradeStep":1}}}, +{"id":98208,"name":"Ale-Boiled Waistband","icon":"inv_belt_leather_dungeonleather_c_06","type":8,"armorType":2,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1442}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1739}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1760},"upgradeStep":1}}}, +{"id":98209,"name":"Ale-Boiled Bindings","icon":"inv_bracer_leather_dungeonleather_c_06","type":6,"armorType":2,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1122}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1353}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1369},"upgradeStep":1}}}, +{"id":98210,"name":"Mountaineer's Vest","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":3568}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":4302}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":4354},"upgradeStep":1}}}, +{"id":98211,"name":"Mountaineer's Greaves","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2453}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":2957}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":2993},"upgradeStep":1}}}, +{"id":98212,"name":"Mountaineer's Gauntlets","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2230}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":2689}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":2721},"upgradeStep":1}}}, +{"id":98213,"name":"Mountaineer's Helm","icon":"inv_helm_mail_dungeonmail_c_06","type":1,"armorType":3,"stats":[0,0,2382,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3580,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":555,"22":2899}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1154,"22":3495}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1210,"22":3538},"upgradeStep":1}}}, +{"id":98214,"name":"Mountaineer's Legguards","icon":"inv_pant_mail_dungeonmail_c_06","type":9,"armorType":3,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":3122}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":3764}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":3810},"upgradeStep":1}}}, +{"id":98215,"name":"Mountaineer's Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_06","type":3,"armorType":3,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2676}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":3226}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":3266},"upgradeStep":1}}}, +{"id":98216,"name":"Mountaineer's Belt","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2007}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":2420}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":2449},"upgradeStep":1}}}, +{"id":98217,"name":"Mountaineer's Bracers","icon":"inv_bracer_mail_dungeonmail_c_06","type":6,"armorType":3,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1561}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1882}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1905},"upgradeStep":1}}}, +{"id":98218,"name":"Lightning Pillar Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":4872}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":5875}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":5946},"upgradeStep":1}}}, +{"id":98219,"name":"Lightning Pillar Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3350}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":4039}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":4088},"upgradeStep":1}}}, +{"id":98220,"name":"Lightning Pillar Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3045}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":3672}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":3716},"upgradeStep":1}}}, +{"id":98221,"name":"Lightning Pillar Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[0,0,2382,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":555,"22":3959}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1154,"22":4773}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1210,"22":4831},"upgradeStep":1}}}, +{"id":98222,"name":"Lightning Pillar Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":4263}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":5140}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":5203},"upgradeStep":1}}}, +{"id":98223,"name":"Lightning Pillar Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3654}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":4406}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":4460},"upgradeStep":1}}}, +{"id":98224,"name":"Lightning Pillar Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2741}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":3305}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":3345},"upgradeStep":1}}}, +{"id":98225,"name":"Lightning Pillar Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":2570}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":2602},"upgradeStep":1}}}, +{"id":98226,"name":"Heartlander's Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1214}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1229},"upgradeStep":1}}}, +{"id":98227,"name":"Heartlander's Robe","icon":"inv_chest_cloth_dungeoncloth_c_06","type":5,"armorType":1,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":2014}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":2429}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":2459},"upgradeStep":1}}}, +{"id":98228,"name":"Heartlander's Sandals","icon":"inv_boots_cloth_dungeoncloth_c_06","type":10,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1670}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1690},"upgradeStep":1}}}, +{"id":98229,"name":"Heartlander's Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1518}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1537},"upgradeStep":1}}}, +{"id":98230,"name":"Heartlander's Cowl","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,2382,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":555,"22":1637}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1154,"22":1974}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1210,"22":1998},"upgradeStep":1}}}, +{"id":98231,"name":"Heartlander's Leggings","icon":"inv_pants_cloth_dungeoncloth_c_06","type":9,"armorType":1,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"22":1763}},"516":{"randPropPoints":2802,"stats":{"2":2210,"3":1474,"22":2125}},"520":{"randPropPoints":2909,"stats":{"2":2295,"3":1530,"22":2151},"upgradeStep":1}}}, +{"id":98232,"name":"Heartlander's Shoulderpads","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1822}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1844},"upgradeStep":1}}}, +{"id":98233,"name":"Heartlander's Cord","icon":"inv_belt_cloth_dungeoncloth_c_06","type":8,"armorType":1,"stats":[0,0,1770,1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"516":{"randPropPoints":2082,"stats":{"2":1642,"3":1095,"22":1366}},"520":{"randPropPoints":2161,"stats":{"2":1705,"3":1136,"22":1383},"upgradeStep":1}}}, +{"id":98234,"name":"Heartlander's Wristwraps","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":1063}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":1076},"upgradeStep":1}}}, +{"id":98235,"name":"Heartlander's Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98236,"name":"Heartlander's Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98237,"name":"Doubtcrusher Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"22":1214}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"22":1229},"upgradeStep":1}}}, +{"id":98238,"name":"Doubtcrusher Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279},"upgradeStep":1}}}, +{"id":98239,"name":"Doubtcrusher Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"516":{"randPropPoints":2802,"stats":{"0":1474,"2":2210,"22":5875}},"520":{"randPropPoints":2909,"stats":{"0":1530,"2":2295,"22":5946},"upgradeStep":1}}}, +{"id":98240,"name":"Doubtcrusher Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":4039}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":4088},"upgradeStep":1}}}, +{"id":98241,"name":"Doubtcrusher Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":3672}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":3716},"upgradeStep":1}}}, +{"id":98242,"name":"Doubtcrusher Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[1268,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":555,"2":1312,"22":3959}},"516":{"randPropPoints":2802,"stats":{"0":1154,"2":2210,"22":4773}},"520":{"randPropPoints":2909,"stats":{"0":1210,"2":2295,"22":4831},"upgradeStep":1}}}, +{"id":98243,"name":"Doubtcrusher Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"516":{"randPropPoints":2802,"stats":{"0":1474,"2":2210,"22":5140}},"520":{"randPropPoints":2909,"stats":{"0":1530,"2":2295,"22":5203},"upgradeStep":1}}}, +{"id":98244,"name":"Doubtcrusher Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":4406}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":4460},"upgradeStep":1}}}, +{"id":98245,"name":"Doubtcrusher Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":3305}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":3345},"upgradeStep":1}}}, +{"id":98246,"name":"Doubtcrusher Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"22":2570}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"22":2602},"upgradeStep":1}}}, +{"id":98247,"name":"Doubtcrusher Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279},"upgradeStep":1}}}, +{"id":98248,"name":"Thunder Bastion Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"22":1214}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"22":1229},"upgradeStep":1}}}, +{"id":98249,"name":"Thunder Bastion Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279},"upgradeStep":1}}}, +{"id":98250,"name":"Thunder Bastion Breastplate","icon":"inv_chest_plate_dungeonplate_c_07","type":5,"armorType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4872}},"516":{"randPropPoints":2802,"stats":{"0":1474,"2":2210,"22":5875}},"520":{"randPropPoints":2909,"stats":{"0":1530,"2":2295,"22":5946},"upgradeStep":1}}}, +{"id":98251,"name":"Thunder Bastion Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":4039}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":4088},"upgradeStep":1}}}, +{"id":98252,"name":"Thunder Bastion Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_07","type":7,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":3672}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":3716},"upgradeStep":1}}}, +{"id":98253,"name":"Thunder Bastion Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[1268,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":555,"2":1312,"22":3959}},"516":{"randPropPoints":2802,"stats":{"0":1154,"2":2210,"22":4773}},"520":{"randPropPoints":2909,"stats":{"0":1210,"2":2295,"22":4831},"upgradeStep":1}}}, +{"id":98254,"name":"Thunder Bastion Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"22":4263}},"516":{"randPropPoints":2802,"stats":{"0":1474,"2":2210,"22":5140}},"520":{"randPropPoints":2909,"stats":{"0":1530,"2":2295,"22":5203},"upgradeStep":1}}}, +{"id":98255,"name":"Thunder Bastion Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":4406}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":4460},"upgradeStep":1}}}, +{"id":98256,"name":"Thunder Bastion Girdle","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[1180,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2243,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"516":{"randPropPoints":2082,"stats":{"0":1095,"2":1642,"22":3305}},"520":{"randPropPoints":2161,"stats":{"0":1136,"2":1705,"22":3345},"upgradeStep":1}}}, +{"id":98257,"name":"Thunder Bastion Vambraces","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"22":2570}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"22":2602},"upgradeStep":1}}}, +{"id":98258,"name":"Thunder Bastion Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279},"upgradeStep":1}}}, +{"id":98260,"name":"Immaculate Pandaren Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"1":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"1":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"1":1530,"2":2295},"upgradeStep":1}}}, +{"id":98261,"name":"Immaculate Pandaren Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":8120,"weaponDamageMax":12180,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4472,"weaponDamageMax":6709,"stats":{"2":1312,"3":875,"14":5010}},"516":{"randPropPoints":2802,"weaponDamageMin":7536,"weaponDamageMax":11305,"stats":{"2":2210,"3":1474,"14":8441}},"520":{"randPropPoints":2909,"weaponDamageMin":7822,"weaponDamageMax":11734,"stats":{"2":2295,"3":1530,"14":8763},"upgradeStep":1}}}, +{"id":98262,"name":"Immaculate Pandaren Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98263,"name":"Immaculate Pandaren Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98264,"name":"Immaculate Pandaren Staff","icon":"inv_staff_2h_pandariaquest_b_04","type":13,"weaponType":8,"handType":4,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"1":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"1":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"1":1530,"2":2295},"upgradeStep":1}}}, +{"id":98265,"name":"Immaculate Pandaren Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98266,"name":"Immaculate Pandaren Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98267,"name":"Immaculate Pandaren Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":10962,"weaponDamageMax":20358,"weaponSpeed":2.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6038,"weaponDamageMax":11214,"stats":{"1":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":10174,"weaponDamageMax":18896,"stats":{"1":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":10561,"weaponDamageMax":19613,"stats":{"1":1530,"2":2295},"upgradeStep":1}}}, +{"id":98268,"name":"Immaculate Pandaren Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,1021,681,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2375,"weaponDamageMax":4412,"stats":{"2":947,"3":632,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2465,"weaponDamageMax":4579,"stats":{"2":984,"3":656,"14":8764},"upgradeStep":1}}}, +{"id":98269,"name":"Immaculate Pandaren Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,1588,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":10962,"weaponDamageMax":20358,"weaponSpeed":2.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6038,"weaponDamageMax":11214,"stats":{"1":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":10174,"weaponDamageMax":18896,"stats":{"1":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":10561,"weaponDamageMax":19613,"stats":{"1":1530,"2":2295},"upgradeStep":1}}}, +{"id":98270,"name":"Immaculate Pandaren Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1021,681,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2375,"weaponDamageMax":4412,"stats":{"2":947,"3":632,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2465,"weaponDamageMax":4579,"stats":{"2":984,"3":656,"14":8764},"upgradeStep":1}}}, +{"id":98271,"name":"Immaculate Pandaren Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[0,681,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"1":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"1":656,"2":984},"upgradeStep":1}}}, +{"id":98272,"name":"Immaculate Pandaren Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,681,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"1":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"1":656,"2":984},"upgradeStep":1}}}, +{"id":98273,"name":"Immaculate Pandaren Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98274,"name":"Immaculate Pandaren Mace","icon":"inv_mace_1h_pandariaquest_b_03","type":13,"weaponType":4,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98275,"name":"Immaculate Pandaren Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,681,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":5118,"weaponDamageMax":9507,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2819,"weaponDamageMax":5237,"stats":{"1":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":4751,"weaponDamageMax":8824,"stats":{"1":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":4931,"weaponDamageMax":9159,"stats":{"1":656,"2":984},"upgradeStep":1}}}, +{"id":98276,"name":"Immaculate Pandaren Scepter","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,1021,681,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2375,"weaponDamageMax":4412,"stats":{"2":947,"3":632,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2465,"weaponDamageMax":4579,"stats":{"2":984,"3":656,"14":8764},"upgradeStep":1}}}, +{"id":98277,"name":"Immaculate Pandaren Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98278,"name":"Immaculate Pandaren Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98279,"name":"Immaculate Pandaren Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,681,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"1":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"1":656,"2":984},"upgradeStep":1}}}, +{"id":98280,"name":"Immaculate Pandaren Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,681,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"1":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"1":656,"2":984},"upgradeStep":1}}}, +{"id":98312,"name":"Immaculate Pandaren Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98313,"name":"Immaculate Pandaren Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98314,"name":"Immaculate Pandaren Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98315,"name":"Immaculate Pandaren Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[1588,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":16240,"weaponDamageMax":24360,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8945,"weaponDamageMax":13418,"stats":{"0":875,"2":1312}},"516":{"randPropPoints":2802,"weaponDamageMin":15073,"weaponDamageMax":22610,"stats":{"0":1474,"2":2210}},"520":{"randPropPoints":2909,"weaponDamageMin":15645,"weaponDamageMax":23469,"stats":{"0":1530,"2":2295},"upgradeStep":1}}}, +{"id":98316,"name":"Immaculate Pandaren Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98317,"name":"Immaculate Pandaren Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98318,"name":"Immaculate Pandaren Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[681,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":7829,"weaponDamageMax":14540,"weaponSpeed":2.6,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562}},"516":{"randPropPoints":1201,"weaponDamageMin":7266,"weaponDamageMax":13495,"stats":{"0":632,"2":947}},"520":{"randPropPoints":1247,"weaponDamageMin":7542,"weaponDamageMax":14008,"stats":{"0":656,"2":984},"upgradeStep":1}}}, +{"id":98319,"name":"Immaculate Pandaren Staff","icon":"inv_staff_2h_pandariaquest_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2382,1588,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3019,"weaponDamageMin":8120,"weaponDamageMax":12180,"weaponSpeed":3.5,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4472,"weaponDamageMax":6709,"stats":{"2":1312,"3":875,"14":5010}},"516":{"randPropPoints":2802,"weaponDamageMin":7536,"weaponDamageMax":11305,"stats":{"2":2210,"3":1474,"14":8441}},"520":{"randPropPoints":2909,"weaponDamageMin":7822,"weaponDamageMax":11734,"stats":{"2":2295,"3":1530,"14":8763},"upgradeStep":1}}}, +{"id":98320,"name":"Immaculate Pandaren Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,1021,681,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2375,"weaponDamageMax":4412,"stats":{"2":947,"3":632,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2465,"weaponDamageMax":4579,"stats":{"2":984,"3":656,"14":8764},"upgradeStep":1}}}, +{"id":98321,"name":"Immaculate Pandaren Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,1021,681,0,0,0,0,0,0,0,0,0,0,9094,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1294,"weaponDamageMin":2559,"weaponDamageMax":4753,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"14":5011}},"516":{"randPropPoints":1201,"weaponDamageMin":2375,"weaponDamageMax":4412,"stats":{"2":947,"3":632,"14":8441}},"520":{"randPropPoints":1247,"weaponDamageMin":2465,"weaponDamageMax":4579,"stats":{"2":984,"3":656,"14":8764},"upgradeStep":1}}}, +{"id":98322,"name":"Immaculate Pandaren Shield","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":15628}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821,"22":18844}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852,"22":19073},"upgradeStep":1}}}, +{"id":98323,"name":"Immaculate Pandaren Protector","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[885,0,1327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":15628}},"516":{"randPropPoints":1561,"stats":{"0":821,"2":1231,"22":18844}},"520":{"randPropPoints":1621,"stats":{"0":852,"2":1279,"22":19073},"upgradeStep":1}}}, +{"id":98324,"name":"Immaculate Pandaren Cane","icon":"inv_offhand_1h_pandariaquest_b_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98325,"name":"Immaculate Pandaren Rod","icon":"inv_offhand_1h_pandariaquest_b_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1327,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1682,"weaponSpeed":1.7,"ilvl":516,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"516":{"randPropPoints":1561,"stats":{"2":1231,"3":821}},"520":{"randPropPoints":1621,"stats":{"2":1279,"3":852},"upgradeStep":1}}}, +{"id":98335,"name":"Oxhoof Greatcloak","icon":"inv_cape_pandaria_oxtank_d_01","type":4,"armorType":1,"stats":[0,1855,2902,0,0,0,992,0,0,992,0,992,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3679,"ilvl":600,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":230,"9":230,"11":230,"22":1007}},"600":{"randPropPoints":3415,"stats":{"1":1716,"2":2694,"6":918,"9":918,"11":918,"22":1525}},"604":{"randPropPoints":3545,"stats":{"1":1784,"2":2797,"6":955,"9":955,"11":955,"22":1540},"upgradeStep":1}}}, +{"id":98599,"name":"White Cloud Leggings","icon":"inv_pants_robe_panprog_b_01","type":9,"armorType":1,"stats":[0,0,3362,2081,1055,0,0,1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":363,"7":585,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":974,"7":1501,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1014,"7":1561,"22":2391},"upgradeStep":1}}}, +{"id":98600,"name":"Pennyroyal Leggings","icon":"inv_pant_leather_panprog_b_01","type":9,"armorType":2,"stats":[0,0,3362,2081,1055,0,0,1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":363,"7":585,"22":2243}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":974,"7":1501,"22":3010}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1014,"7":1561,"22":3043},"upgradeStep":1}}}, +{"id":98601,"name":"Krasari Prowler Britches","icon":"inv_pant_mail_panprog_b_01","type":9,"armorType":3,"stats":[0,0,3362,2081,1055,0,0,1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":363,"7":585,"22":3122}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":974,"7":1501,"22":4188}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1014,"7":1561,"22":4234},"upgradeStep":1}}}, +{"id":98602,"name":"Blessed Trillium Greaves","icon":"inv_pants_plate_41v1","type":9,"armorType":4,"stats":[0,0,3362,2081,1055,0,0,1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":363,"7":585,"22":4263}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":974,"7":1501,"22":5720}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1014,"7":1561,"22":5783},"upgradeStep":1}}}, +{"id":98603,"name":"Leggings of the Night Sky","icon":"inv_pants_robe_panprog_b_01","type":9,"armorType":1,"stats":[0,0,3362,2081,0,1055,0,1624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"5":363,"7":585,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"5":974,"7":1501,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"5":1014,"7":1561,"22":2391},"upgradeStep":1}}}, +{"id":98604,"name":"Snow Lily Britches","icon":"inv_pant_leather_panprog_b_01","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,0,1414,0,0,0,1414,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":503,"11":503,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"7":1307,"11":1307,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"7":1360,"11":1360,"22":3043},"upgradeStep":1}}}, +{"id":98605,"name":"Gorge Stalker Legplates","icon":"inv_pant_mail_panprog_b_01","type":9,"armorType":3,"stats":[0,2081,3362,0,0,0,1459,1340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":520,"7":474,"22":3122}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1348,"7":1238,"22":4188}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1402,"7":1288,"22":4234},"upgradeStep":1}}}, +{"id":98606,"name":"Protector's Trillium Legguards","icon":"inv_pants_plate_40","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,0,0,0,0,1414,1414,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"10":503,"11":503,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"10":1307,"11":1307,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"10":1360,"11":1360,"22":5783},"upgradeStep":1}}}, +{"id":98607,"name":"Avenger's Trillium Legplates","icon":"inv_pants_plate_40v3","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,1414,0,0,0,0,1414,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":503,"11":503,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"6":1307,"11":1307,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"6":1360,"11":1360,"22":5783},"upgradeStep":1}}}, +{"id":98608,"name":"White Cloud Belt","icon":"inv_belt_robe_panprog_b_01","type":8,"armorType":1,"stats":[0,0,2498,1505,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"7":342,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":966,"7":925,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":962,"22":1537},"upgradeStep":1}}}, +{"id":98609,"name":"Pennyroyal Belt","icon":"inv_belt_leather_panprog_b_01","type":8,"armorType":2,"stats":[0,0,2498,1505,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"7":342,"22":1442}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":966,"7":925,"22":1935}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":962,"22":1956},"upgradeStep":1}}}, +{"id":98610,"name":"Krasari Prowler Belt","icon":"inv_belt_mail_panprog_b_01","type":8,"armorType":3,"stats":[0,0,2498,1505,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"7":342,"22":2007}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":966,"7":925,"22":2693}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":962,"22":2722},"upgradeStep":1}}}, +{"id":98611,"name":"Blessed Trillium Belt","icon":"inv_belt_96v1","type":8,"armorType":4,"stats":[0,0,2498,1505,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"7":342,"22":2741}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":966,"7":925,"22":3677}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":962,"22":3717},"upgradeStep":1}}}, +{"id":98612,"name":"Belt of the Night Sky","icon":"inv_belt_robe_panprog_b_01","type":8,"armorType":1,"stats":[0,0,2498,1505,0,1047,0,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":360,"7":342,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":966,"7":925,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":1005,"7":962,"22":1537},"upgradeStep":1}}}, +{"id":98613,"name":"Snow Lily Belt","icon":"inv_belt_leather_panprog_b_01","type":8,"armorType":2,"stats":[0,1505,2498,0,0,1047,0,0,0,0,0,1002,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":360,"11":342,"22":1442}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":966,"11":925,"22":1935}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":1005,"11":962,"22":1956},"upgradeStep":1}}}, +{"id":98614,"name":"Gorge Stalker Belt","icon":"inv_belt_mail_panprog_b_01","type":8,"armorType":3,"stats":[0,1505,2498,0,0,1047,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":360,"6":342,"22":2007}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":966,"6":925,"22":2693}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":1005,"6":962,"22":2722},"upgradeStep":1}}}, +{"id":98615,"name":"Protector's Trillium Waistguard","icon":"inv_belt_93","type":8,"armorType":4,"stats":[1505,0,2498,0,0,1047,0,0,0,0,1002,0,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":360,"10":342,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":966,"10":925,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":1005,"10":962,"22":3717},"upgradeStep":1}}}, +{"id":98616,"name":"Avenger's Trillium Waistplate","icon":"inv_belt_93v3","type":8,"armorType":4,"stats":[1505,0,2498,0,0,1047,1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":360,"6":342,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":966,"6":925,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":1005,"6":962,"22":3717},"upgradeStep":1}}}, +{"id":98755,"name":"Crafted Malevolent Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98756,"name":"Crafted Malevolent Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,656,1051,0,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":349,"7":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":405,"7":331,"22":1066}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"6":436,"7":357,"22":1096},"upgradeStep":1}}}, +{"id":98757,"name":"Crafted Malevolent Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,656,1051,0,0,384,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":331,"11":405,"22":1066}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"5":357,"11":436,"22":1096},"upgradeStep":1}}}, +{"id":98758,"name":"Crafted Malevolent Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,656,1051,0,0,0,384,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":285,"8":349}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":331,"8":405}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"6":357,"8":436},"upgradeStep":1}}}, +{"id":98759,"name":"Crafted Malevolent Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,656,1051,0,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":285,"11":349}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":331,"11":405}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"7":357,"11":436},"upgradeStep":1}}}, +{"id":98760,"name":"Crafted Malevolent Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98761,"name":"Crafted Malevolent Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,656,1051,0,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"6":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"6":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"6":436,"7":357},"upgradeStep":1}}}, +{"id":98762,"name":"Crafted Malevolent Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,656,1051,0,0,469,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"11":331}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"5":436,"11":357},"upgradeStep":1}}}, +{"id":98763,"name":"Crafted Malevolent Gladiator's Cord of Cruelty","icon":"inv_belt_robe_pvpmage_e_01","type":8,"armorType":1,"stats":[0,0,1402,796,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1200}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":501,"11":475,"22":1233},"upgradeStep":1}}}, +{"id":98764,"name":"Crafted Malevolent Gladiator's Cord of Accuracy","icon":"inv_belt_pvpwarlock_e_01","type":8,"armorType":1,"stats":[0,0,1402,796,0,546,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":384,"7":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":459,"7":441,"22":1200}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"5":501,"7":475,"22":1233},"upgradeStep":1}}}, +{"id":98765,"name":"Crafted Malevolent Gladiator's Cord of Meditation","icon":"inv_belt_cloth_raidpriest_l_01","type":8,"armorType":1,"stats":[0,0,1402,796,546,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":1133}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":1200}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"7":475,"22":1233},"upgradeStep":1}}}, +{"id":98766,"name":"Crafted Malevolent Gladiator's Treads of Cruelty","icon":"inv_boot_robe_pvpmage_e_01","type":10,"armorType":1,"stats":[0,0,1402,796,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1466}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":501,"11":475,"22":1507},"upgradeStep":1}}}, +{"id":98767,"name":"Crafted Malevolent Gladiator's Treads of Alacrity","icon":"inv_boots_pvpwarlock_e_01","type":10,"armorType":1,"stats":[0,0,1402,796,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":1466}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":475,"7":501,"22":1507},"upgradeStep":1}}}, +{"id":98768,"name":"Crafted Malevolent Gladiator's Treads of Meditation","icon":"inv_boot_cloth_raidpriest_l_01","type":10,"armorType":1,"stats":[0,0,1402,796,546,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":1385}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":1466}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"11":475,"22":1507},"upgradeStep":1}}}, +{"id":98769,"name":"Crafted Malevolent Gladiator's Cuffs of Accuracy","icon":"inv_bracer_pvpwarlock_e_01","type":6,"armorType":1,"stats":[0,0,1051,656,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"5":349,"6":285,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"5":405,"6":331,"22":933}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"5":436,"6":357,"22":959},"upgradeStep":1}}}, +{"id":98770,"name":"Crafted Malevolent Gladiator's Cuffs of Prowess","icon":"inv_bracer_robe_pvpmage_e_01","type":6,"armorType":1,"stats":[0,0,1051,656,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":933}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":357,"11":436,"22":959},"upgradeStep":1}}}, +{"id":98771,"name":"Crafted Malevolent Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_raidpriest_l_01","type":6,"armorType":1,"stats":[0,0,1051,656,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":881}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":933}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"6":357,"22":959},"upgradeStep":1}}}, +{"id":98772,"name":"Crafted Malevolent Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1051,656,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"7":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"7":331,"22":1066}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"6":436,"7":357,"22":1096},"upgradeStep":1}}}, +{"id":98773,"name":"Crafted Malevolent Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1051,656,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1066}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":357,"11":436,"22":1096},"upgradeStep":1}}}, +{"id":98774,"name":"Crafted Malevolent Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1051,656,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1007}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1066}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"6":357,"22":1096},"upgradeStep":1}}}, +{"id":98775,"name":"Crafted Malevolent Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,985,656,0,0,438,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":286}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":377,"11":332}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"6":406,"11":357},"upgradeStep":1}}}, +{"id":98776,"name":"Crafted Malevolent Gladiator's Barrier","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,985,656,0,0,438,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,17465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"6":377,"11":274,"22":16546}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"6":406,"11":295,"22":17006},"upgradeStep":1}}}, +{"id":98777,"name":"Crafted Malevolent Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1051,656,0,0,469,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"11":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"6":436,"11":357},"upgradeStep":1}}}, +{"id":98778,"name":"Crafted Malevolent Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1051,656,0,0,0,469,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":405,"11":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":436,"11":357},"upgradeStep":1}}}, +{"id":98779,"name":"Crafted Malevolent Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1051,656,469,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"7":357},"upgradeStep":1}}}, +{"id":98780,"name":"Crafted Malevolent Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1051,656,0,0,469,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"6":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"6":405,"11":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"6":436,"11":357},"upgradeStep":1}}}, +{"id":98781,"name":"Crafted Malevolent Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1051,656,0,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"5":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"5":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"5":436,"7":357},"upgradeStep":1}}}, +{"id":98782,"name":"Crafted Malevolent Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1051,656,469,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"7":357},"upgradeStep":1}}}, +{"id":98783,"name":"Crafted Malevolent Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,985,656,438,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":286}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"11":332}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"4":406,"11":357},"upgradeStep":1}}}, +{"id":98784,"name":"Crafted Malevolent Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_e_01","type":5,"armorType":4,"stats":[1019,0,1887,0,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":569,"7":729,"22":5302},"upgradeStep":1}}}, +{"id":98785,"name":"Crafted Malevolent Gladiator's Dreadplate Gauntlets","icon":"inv_glove_plate_pvpdeathknight_e_01","type":7,"armorType":4,"stats":[796,0,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"5":462,"6":542,"22":3314},"upgradeStep":1}}}, +{"id":98786,"name":"Crafted Malevolent Gladiator's Dreadplate Helm","icon":"inv_helmet_plate_pvpdeathknight_e_01","type":1,"armorType":4,"stats":[939,0,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,4424,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"484":{"randPropPoints":2080,"stats":{"0":854,"2":1752,"8":729,"11":489,"22":4308},"upgradeStep":1}}}, +{"id":98787,"name":"Crafted Malevolent Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_e_01","type":9,"armorType":4,"stats":[1019,0,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":729,"7":569,"22":4639},"upgradeStep":1}}}, +{"id":98788,"name":"Crafted Malevolent Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_e_01","type":3,"armorType":4,"stats":[796,0,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,4084,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"7":542,"8":462,"22":3976},"upgradeStep":1}}}, +{"id":98789,"name":"Crafted Malevolent Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,796,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":462,"6":542,"22":1744},"upgradeStep":1}}}, +{"id":98790,"name":"Crafted Malevolent Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,939,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"484":{"randPropPoints":2080,"stats":{"1":854,"2":1752,"8":729,"11":489,"22":2267},"upgradeStep":1}}}, +{"id":98791,"name":"Crafted Malevolent Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,1019,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":729,"7":569,"22":2441},"upgradeStep":1}}}, +{"id":98792,"name":"Crafted Malevolent Gladiator's Dragonhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,1019,1887,0,0,0,626,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":569,"11":729,"22":2790},"upgradeStep":1}}}, +{"id":98793,"name":"Crafted Malevolent Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,796,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"7":542,"8":462,"22":2093},"upgradeStep":1}}}, +{"id":98794,"name":"Crafted Malevolent Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1402,796,546,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1612,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":1527}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"7":475,"22":1569},"upgradeStep":1}}}, +{"id":98795,"name":"Crafted Malevolent Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1402,796,546,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":1866}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"11":475,"22":1918},"upgradeStep":1}}}, +{"id":98796,"name":"Crafted Malevolent Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,1051,656,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1188}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"6":357,"22":1221},"upgradeStep":1}}}, +{"id":98797,"name":"Crafted Malevolent Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1402,796,504,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"7":542,"22":1744},"upgradeStep":1}}}, +{"id":98798,"name":"Crafted Malevolent Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":2206}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":2267},"upgradeStep":1}}}, +{"id":98799,"name":"Crafted Malevolent Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2375}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2441},"upgradeStep":1}}}, +{"id":98800,"name":"Crafted Malevolent Gladiator's Kodohide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1887,1019,626,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"4":569,"7":729,"22":2790},"upgradeStep":1}}}, +{"id":98801,"name":"Crafted Malevolent Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1402,796,504,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2036}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"11":542,"22":2093},"upgradeStep":1}}}, +{"id":98802,"name":"Crafted Malevolent Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_e_01","type":8,"armorType":2,"stats":[0,0,1402,796,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1612,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":1527}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":501,"11":475,"22":1569},"upgradeStep":1}}}, +{"id":98803,"name":"Crafted Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_e_01","type":10,"armorType":2,"stats":[0,0,1402,796,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":1763}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":1866}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":475,"7":501,"22":1918},"upgradeStep":1}}}, +{"id":98804,"name":"Crafted Malevolent Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_e_01","type":6,"armorType":2,"stats":[0,0,1051,656,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1122}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1188}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":357,"11":436,"22":1221},"upgradeStep":1}}}, +{"id":98805,"name":"Crafted Malevolent Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_e_01","type":7,"armorType":2,"stats":[0,0,1402,796,504,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"6":542,"22":1744},"upgradeStep":1}}}, +{"id":98806,"name":"Crafted Malevolent Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_e_01","type":1,"armorType":2,"stats":[0,0,1887,939,0,0,0,546,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":2206}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"7":489,"11":729,"22":2267},"upgradeStep":1}}}, +{"id":98807,"name":"Crafted Malevolent Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_e_01","type":9,"armorType":2,"stats":[0,0,1887,1019,0,0,0,786,0,0,0,626,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":2375}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"7":729,"11":569,"22":2441},"upgradeStep":1}}}, +{"id":98808,"name":"Crafted Malevolent Gladiator's Wyrmhide Robes","icon":"inv_robe_leather_pvpdruid_e_01","type":5,"armorType":2,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2790},"upgradeStep":1}}}, +{"id":98809,"name":"Crafted Malevolent Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_e_01","type":3,"armorType":2,"stats":[0,0,1402,796,0,0,0,504,0,0,0,584,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":2036}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"7":462,"11":542,"22":2093},"upgradeStep":1}}}, +{"id":98810,"name":"Crafted Malevolent Gladiator's Redoubt","icon":"inv_shield_pvppandarias1_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,985,656,438,0,0,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,17465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"2":849,"3":566,"4":377,"11":274,"22":16546}},"484":{"randPropPoints":1159,"stats":{"2":914,"3":610,"4":406,"11":295,"22":17006},"upgradeStep":1}}}, +{"id":98811,"name":"Crafted Malevolent Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"484":{"randPropPoints":1545,"stats":{"6":1030},"upgradeStep":1}}}, +{"id":98812,"name":"Crafted Malevolent Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"484":{"randPropPoints":1545,"stats":{"2":1219},"upgradeStep":1}}}, +{"id":98813,"name":"Crafted Malevolent Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"484":{"randPropPoints":1545,"stats":{"4":1030},"upgradeStep":1}}}, +{"id":98814,"name":"Crafted Malevolent Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,796,1402,0,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":2125}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"6":501,"11":475,"22":2184},"upgradeStep":1}}}, +{"id":98815,"name":"Crafted Malevolent Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_e_01","type":8,"armorType":3,"stats":[0,796,1402,0,0,546,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":384,"7":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":459,"7":441,"22":2125}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":501,"7":475,"22":2184},"upgradeStep":1}}}, +{"id":98816,"name":"Crafted Malevolent Gladiator's Sabatons of Cruelty","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,796,1402,0,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,2741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":2597}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"6":501,"11":475,"22":2669},"upgradeStep":1}}}, +{"id":98817,"name":"Crafted Malevolent Gladiator's Sabatons of Alacrity","icon":"inv_boot_mail_pvphunter_e_01","type":10,"armorType":3,"stats":[0,796,1402,0,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":380,"7":384,"22":2453}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":441,"7":459,"22":2597}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"6":475,"7":501,"22":2669},"upgradeStep":1}}}, +{"id":98818,"name":"Crafted Malevolent Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,656,1051,0,0,0,0,469,0,0,0,384,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":349,"11":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":405,"11":331,"22":1653}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"7":436,"11":357,"22":1698},"upgradeStep":1}}}, +{"id":98819,"name":"Crafted Malevolent Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_e_01","type":6,"armorType":3,"stats":[0,656,1051,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"6":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"6":331,"22":1653}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"5":436,"6":357,"22":1698},"upgradeStep":1}}}, +{"id":98820,"name":"Crafted Malevolent Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_e_01","type":5,"armorType":3,"stats":[0,1019,1887,0,0,0,626,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,3987,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":3777}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":569,"11":729,"22":3882},"upgradeStep":1}}}, +{"id":98821,"name":"Crafted Malevolent Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_e_01","type":7,"armorType":3,"stats":[0,796,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":2361}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":462,"6":542,"22":2426},"upgradeStep":1}}}, +{"id":98822,"name":"Crafted Malevolent Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_e_01","type":1,"armorType":3,"stats":[0,939,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,3239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":3069}},"484":{"randPropPoints":2080,"stats":{"1":854,"2":1752,"8":729,"11":489,"22":3154},"upgradeStep":1}}}, +{"id":98823,"name":"Crafted Malevolent Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_e_01","type":9,"armorType":3,"stats":[0,1019,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":3305}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":729,"7":569,"22":3397},"upgradeStep":1}}}, +{"id":98824,"name":"Crafted Malevolent Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_e_01","type":3,"armorType":3,"stats":[0,796,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":2676}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2833}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"7":542,"8":462,"22":2912},"upgradeStep":1}}}, +{"id":98825,"name":"Crafted Malevolent Gladiator's Silk Handguards","icon":"inv_glove_robe_pvpmage_e_01","type":7,"armorType":1,"stats":[0,0,1402,796,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":423,"6":503,"22":1333}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"5":462,"6":542,"22":1370},"upgradeStep":1}}}, +{"id":98826,"name":"Crafted Malevolent Gladiator's Silk Cowl","icon":"inv_helm_robe_pvpmage_e_01","type":1,"armorType":1,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,1829,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":1781},"upgradeStep":1}}}, +{"id":98827,"name":"Crafted Malevolent Gladiator's Silk Trousers","icon":"inv_pant_robe_pvpmage_e_01","type":9,"armorType":1,"stats":[0,0,1887,1019,0,0,0,626,0,0,0,786,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":423,"11":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":517,"11":677,"22":1866}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"7":569,"11":729,"22":1918},"upgradeStep":1}}}, +{"id":98828,"name":"Crafted Malevolent Gladiator's Silk Robe","icon":"inv_chest_robe_pvpmage_e_01","type":5,"armorType":1,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2192},"upgradeStep":1}}}, +{"id":98829,"name":"Crafted Malevolent Gladiator's Silk Amice","icon":"inv_shoulder_robe_pvpmage_e_01","type":3,"armorType":1,"stats":[0,0,1402,796,0,0,0,584,0,0,0,504,0,0,0,0,0,0,0,0,0,0,1688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":433,"11":353,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":503,"11":423,"22":1600}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"7":542,"11":462,"22":1644},"upgradeStep":1}}}, +{"id":98830,"name":"Crafted Malevolent Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_e_01","type":8,"armorType":2,"stats":[0,796,1402,0,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1612,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":1527}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"6":501,"11":475,"22":1569},"upgradeStep":1}}}, +{"id":98831,"name":"Crafted Malevolent Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvpmonk_e_01","type":10,"armorType":2,"stats":[0,796,1314,0,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1131,"6":441,"7":459,"22":1866}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1219,"6":475,"7":501,"22":1918},"upgradeStep":1}}}, +{"id":98832,"name":"Crafted Malevolent Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_e_01","type":6,"armorType":2,"stats":[0,656,1051,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"5":349,"6":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"5":405,"6":331,"22":1188}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"5":436,"6":357,"22":1221},"upgradeStep":1}}}, +{"id":98833,"name":"Crafted Malevolent Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,796,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":462,"6":542,"22":1744},"upgradeStep":1}}}, +{"id":98834,"name":"Crafted Malevolent Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,939,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"484":{"randPropPoints":2080,"stats":{"1":854,"2":1752,"8":729,"11":489,"22":2267},"upgradeStep":1}}}, +{"id":98835,"name":"Crafted Malevolent Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,1019,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":729,"7":569,"22":2441},"upgradeStep":1}}}, +{"id":98836,"name":"Crafted Malevolent Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,796,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"7":542,"8":462,"22":2093},"upgradeStep":1}}}, +{"id":98837,"name":"Crafted Malevolent Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,1019,1887,0,0,0,626,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":569,"11":729,"22":2790},"upgradeStep":1}}}, +{"id":98838,"name":"Crafted Malevolent Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_e_01","type":7,"armorType":2,"stats":[0,0,1402,796,504,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"7":542,"22":1744},"upgradeStep":1}}}, +{"id":98839,"name":"Crafted Malevolent Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_e_01","type":1,"armorType":2,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":2206}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":2267},"upgradeStep":1}}}, +{"id":98840,"name":"Crafted Malevolent Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_e_01","type":9,"armorType":2,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2243}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2375}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2441},"upgradeStep":1}}}, +{"id":98841,"name":"Crafted Malevolent Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_e_01","type":3,"armorType":2,"stats":[0,0,1402,796,504,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1923}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2036}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"11":542,"22":2093},"upgradeStep":1}}}, +{"id":98842,"name":"Crafted Malevolent Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_e_01","type":5,"armorType":2,"stats":[0,0,1887,1019,626,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"4":569,"7":729,"22":2790},"upgradeStep":1}}}, +{"id":98843,"name":"Crafted Malevolent Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[1019,0,1887,0,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":569,"7":729,"22":5302},"upgradeStep":1}}}, +{"id":98844,"name":"Crafted Malevolent Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[796,0,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"5":462,"6":542,"22":3314},"upgradeStep":1}}}, +{"id":98845,"name":"Crafted Malevolent Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[939,0,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,4424,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"484":{"randPropPoints":2080,"stats":{"0":854,"2":1752,"8":729,"11":489,"22":4308},"upgradeStep":1}}}, +{"id":98846,"name":"Crafted Malevolent Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[1019,0,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":729,"7":569,"22":4639},"upgradeStep":1}}}, +{"id":98847,"name":"Crafted Malevolent Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[796,0,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,4084,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"7":542,"8":462,"22":3976},"upgradeStep":1}}}, +{"id":98848,"name":"Crafted Malevolent Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1402,796,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":2902}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":501,"11":475,"22":2982},"upgradeStep":1}}}, +{"id":98849,"name":"Crafted Malevolent Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_e_01","type":8,"armorType":4,"stats":[0,0,1402,796,546,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":2902}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"7":475,"22":2982},"upgradeStep":1}}}, +{"id":98850,"name":"Crafted Malevolent Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1402,796,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":3547}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":475,"7":501,"22":3645},"upgradeStep":1}}}, +{"id":98851,"name":"Crafted Malevolent Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_e_01","type":10,"armorType":4,"stats":[0,0,1402,796,546,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,3743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":3350}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":3547}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"11":475,"22":3645},"upgradeStep":1}}}, +{"id":98852,"name":"Crafted Malevolent Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,1051,656,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,2382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":2132}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":2257}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":357,"11":436,"22":2320},"upgradeStep":1}}}, +{"id":98853,"name":"Crafted Malevolent Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_e_01","type":6,"armorType":4,"stats":[0,0,1051,656,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":2132}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":2257}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"6":357,"22":2320},"upgradeStep":1}}}, +{"id":98854,"name":"Crafted Malevolent Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_e_01","type":5,"armorType":4,"stats":[0,0,1887,1019,626,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":5159}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"4":569,"7":729,"22":5302},"upgradeStep":1}}}, +{"id":98855,"name":"Crafted Malevolent Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_e_01","type":7,"armorType":4,"stats":[0,0,1402,796,504,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":3224}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"7":542,"22":3314},"upgradeStep":1}}}, +{"id":98856,"name":"Crafted Malevolent Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_e_01","type":1,"armorType":4,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,4424,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":4191}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":4308},"upgradeStep":1}}}, +{"id":98857,"name":"Crafted Malevolent Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_e_01","type":9,"armorType":4,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":4263}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":4514}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":4639},"upgradeStep":1}}}, +{"id":98858,"name":"Crafted Malevolent Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_e_01","type":3,"armorType":4,"stats":[0,0,1402,796,504,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,4084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":3654}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":3869}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"11":542,"22":3976},"upgradeStep":1}}}, +{"id":98859,"name":"Crafted Malevolent Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_e_01","type":8,"armorType":4,"stats":[796,0,1402,0,0,546,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":384,"7":380,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":459,"7":441,"22":2902}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"5":501,"7":475,"22":2982},"upgradeStep":1}}}, +{"id":98860,"name":"Crafted Malevolent Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_e_01","type":8,"armorType":4,"stats":[796,0,1402,0,0,0,512,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,3063,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":380,"11":384,"22":2741}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":441,"11":459,"22":2902}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"6":475,"11":501,"22":2982},"upgradeStep":1}}}, +{"id":98861,"name":"Crafted Malevolent Gladiator's Warboots of Cruelty","icon":"inv_boot_plate_pvpdeathknight_e_01","type":10,"armorType":4,"stats":[796,0,1402,0,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,3743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":384,"11":380,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":459,"11":441,"22":3547}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"6":501,"11":475,"22":3645},"upgradeStep":1}}}, +{"id":98862,"name":"Crafted Malevolent Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_e_01","type":10,"armorType":4,"stats":[796,0,1402,0,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"6":380,"7":384,"22":3350}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"6":441,"7":459,"22":3547}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"6":475,"7":501,"22":3645},"upgradeStep":1}}}, +{"id":98863,"name":"Crafted Malevolent Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_e_01","type":6,"armorType":4,"stats":[656,0,1051,0,0,0,384,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,2382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"8":349,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"8":405,"22":2257}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"6":357,"8":436,"22":2320},"upgradeStep":1}}}, +{"id":98864,"name":"Crafted Malevolent Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_e_01","type":6,"armorType":4,"stats":[656,0,1051,0,0,0,0,469,0,0,0,384,0,0,0,0,0,0,0,0,0,0,2382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"7":349,"11":285,"22":2132}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"7":405,"11":331,"22":2257}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"7":436,"11":357,"22":2320},"upgradeStep":1}}}, +{"id":98865,"name":"Crafted Malevolent Gladiator's Mooncloth Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1402,796,504,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":1333}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"7":542,"22":1370},"upgradeStep":1}}}, +{"id":98866,"name":"Crafted Malevolent Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,1829,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":1781},"upgradeStep":1}}}, +{"id":98867,"name":"Crafted Malevolent Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":1866}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":1918},"upgradeStep":1}}}, +{"id":98868,"name":"Crafted Malevolent Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1887,1019,626,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":2133}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"4":569,"7":729,"22":2192},"upgradeStep":1}}}, +{"id":98869,"name":"Crafted Malevolent Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1402,796,504,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,1688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":1600}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"11":542,"22":1644},"upgradeStep":1}}}, +{"id":98870,"name":"Crafted Malevolent Gladiator's Satin Gloves","icon":"inv_gauntlet_cloth_raidpriest_l_01","type":7,"armorType":1,"stats":[0,0,1402,796,504,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":1333}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"6":542,"22":1370},"upgradeStep":1}}}, +{"id":98871,"name":"Crafted Malevolent Gladiator's Satin Hood","icon":"inv_helm_cloth_raidpriest_l_01","type":1,"armorType":1,"stats":[0,0,1887,939,0,0,0,546,0,0,0,786,0,0,0,0,0,0,0,0,0,0,1829,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":1733}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"7":489,"11":729,"22":1781},"upgradeStep":1}}}, +{"id":98872,"name":"Crafted Malevolent Gladiator's Satin Leggings","icon":"inv_pant_cloth_raidpriest_l_01","type":9,"armorType":1,"stats":[0,0,1887,1019,0,0,0,786,0,0,0,626,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":1866}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"7":729,"11":569,"22":1918},"upgradeStep":1}}}, +{"id":98873,"name":"Crafted Malevolent Gladiator's Satin Robe","icon":"inv_robe_cloth_raidpriest_l_01","type":5,"armorType":1,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2192},"upgradeStep":1}}}, +{"id":98874,"name":"Crafted Malevolent Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_raidpriest_l_01","type":3,"armorType":1,"stats":[0,0,1402,796,0,0,0,504,0,0,0,584,0,0,0,0,0,0,0,0,0,0,1688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":1600}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"7":462,"11":542,"22":1644},"upgradeStep":1}}}, +{"id":98875,"name":"Crafted Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"484":{"randPropPoints":1545,"stats":{"6":1030},"upgradeStep":1}}}, +{"id":98876,"name":"Crafted Malevolent Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"476":{"randPropPoints":1434,"stats":{"6":956}},"484":{"randPropPoints":1545,"stats":{"6":1030},"upgradeStep":1}}}, +{"id":98877,"name":"Crafted Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"484":{"randPropPoints":1545,"stats":{"2":1219},"upgradeStep":1}}}, +{"id":98878,"name":"Crafted Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"484":{"randPropPoints":1545,"stats":{"2":1219},"upgradeStep":1}}}, +{"id":98879,"name":"Crafted Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"484":{"randPropPoints":1545,"stats":{"4":1030},"upgradeStep":1}}}, +{"id":98880,"name":"Crafted Malevolent Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"476":{"randPropPoints":1434,"stats":{"4":956}},"484":{"randPropPoints":1545,"stats":{"4":1030},"upgradeStep":1}}}, +{"id":98881,"name":"Crafted Malevolent Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_e_01","type":8,"armorType":2,"stats":[0,796,1402,0,0,546,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1612,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":384,"7":380,"22":1442}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":459,"7":441,"22":1527}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":501,"7":475,"22":1569},"upgradeStep":1}}}, +{"id":98882,"name":"Crafted Malevolent Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_e_01","type":10,"armorType":2,"stats":[0,796,1402,0,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"6":384,"11":380,"22":1763}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"6":459,"11":441,"22":1866}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"6":501,"11":475,"22":1918},"upgradeStep":1}}}, +{"id":98883,"name":"Crafted Malevolent Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_e_01","type":6,"armorType":2,"stats":[0,656,1051,0,0,0,0,469,0,0,0,384,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":781,"7":349,"11":285,"22":1122}},"476":{"randPropPoints":1076,"stats":{"1":566,"2":906,"7":405,"11":331,"22":1188}},"484":{"randPropPoints":1159,"stats":{"1":610,"2":976,"7":436,"11":357,"22":1221},"upgradeStep":1}}}, +{"id":98884,"name":"Crafted Malevolent Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_e_01","type":5,"armorType":2,"stats":[0,1019,1887,0,0,0,626,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,2865,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":2564}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":2715}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":569,"11":729,"22":2790},"upgradeStep":1}}}, +{"id":98885,"name":"Crafted Malevolent Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_e_01","type":7,"armorType":2,"stats":[0,796,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":1602}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":1697}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":462,"6":542,"22":1744},"upgradeStep":1}}}, +{"id":98886,"name":"Crafted Malevolent Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_e_01","type":1,"armorType":2,"stats":[0,939,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,2328,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2083}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":2206}},"484":{"randPropPoints":2080,"stats":{"1":854,"2":1752,"8":729,"11":489,"22":2267},"upgradeStep":1}}}, +{"id":98887,"name":"Crafted Malevolent Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_e_01","type":9,"armorType":2,"stats":[0,1019,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":2243}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":2375}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":729,"7":569,"22":2441},"upgradeStep":1}}}, +{"id":98888,"name":"Crafted Malevolent Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_e_01","type":3,"armorType":2,"stats":[0,796,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2149,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":1923}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2036}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"7":542,"8":462,"22":2093},"upgradeStep":1}}}, +{"id":98889,"name":"Crafted Malevolent Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1402,796,546,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"7":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"7":441,"22":2125}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"7":475,"22":2184},"upgradeStep":1}}}, +{"id":98890,"name":"Crafted Malevolent Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1402,796,0,0,512,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":380,"7":384,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":441,"7":459,"22":2597}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":475,"7":501,"22":2669},"upgradeStep":1}}}, +{"id":98891,"name":"Crafted Malevolent Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_e_01","type":10,"armorType":3,"stats":[0,0,1402,796,546,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,2741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":384,"11":380,"22":2453}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":459,"11":441,"22":2597}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":501,"11":475,"22":2669},"upgradeStep":1}}}, +{"id":98892,"name":"Crafted Malevolent Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,1051,656,0,0,0,384,0,0,0,469,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"7":285,"11":349,"22":1561}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"7":331,"11":405,"22":1653}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"7":357,"11":436,"22":1698},"upgradeStep":1}}}, +{"id":98893,"name":"Crafted Malevolent Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_e_01","type":6,"armorType":3,"stats":[0,0,1051,656,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":781,"3":488,"4":349,"6":285,"22":1561}},"476":{"randPropPoints":1076,"stats":{"2":906,"3":566,"4":405,"6":331,"22":1653}},"484":{"randPropPoints":1159,"stats":{"2":976,"3":610,"4":436,"6":357,"22":1698},"upgradeStep":1}}}, +{"id":98894,"name":"Crafted Malevolent Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1887,1019,626,0,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3987,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"4":423,"7":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"4":517,"7":677,"22":3777}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"4":569,"7":729,"22":3882},"upgradeStep":1}}}, +{"id":98895,"name":"Crafted Malevolent Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1402,796,504,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"7":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"7":503,"22":2361}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"7":542,"22":2426},"upgradeStep":1}}}, +{"id":98896,"name":"Crafted Malevolent Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,3239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":3069}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":3154},"upgradeStep":1}}}, +{"id":98897,"name":"Crafted Malevolent Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":3305}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":3397},"upgradeStep":1}}}, +{"id":98898,"name":"Crafted Malevolent Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1402,796,504,0,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,2990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"11":433,"22":2676}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"11":503,"22":2833}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"11":542,"22":2912},"upgradeStep":1}}}, +{"id":98899,"name":"Crafted Malevolent Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,1019,1887,0,0,0,626,0,0,0,0,786,0,0,0,0,0,0,0,0,0,0,3987,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":423,"11":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":517,"11":677,"22":3777}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":569,"11":729,"22":3882},"upgradeStep":1}}}, +{"id":98900,"name":"Crafted Malevolent Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,796,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"5":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"5":423,"6":503,"22":2361}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"5":462,"6":542,"22":2426},"upgradeStep":1}}}, +{"id":98901,"name":"Crafted Malevolent Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,939,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,3239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1401,"8":583,"11":343,"22":2899}},"476":{"randPropPoints":1930,"stats":{"1":775,"2":1625,"8":677,"11":437,"22":3069}},"484":{"randPropPoints":2080,"stats":{"1":854,"2":1752,"8":729,"11":489,"22":3154},"upgradeStep":1}}}, +{"id":98902,"name":"Crafted Malevolent Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,1019,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1401,"6":583,"7":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"1":855,"2":1625,"6":677,"7":517,"22":3305}},"484":{"randPropPoints":2080,"stats":{"1":934,"2":1752,"6":729,"7":569,"22":3397},"upgradeStep":1}}}, +{"id":98903,"name":"Crafted Malevolent Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,796,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,2990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":1040,"7":433,"8":353,"22":2676}},"476":{"randPropPoints":1434,"stats":{"1":674,"2":1208,"7":503,"8":423,"22":2833}},"484":{"randPropPoints":1545,"stats":{"1":733,"2":1301,"7":542,"8":462,"22":2912},"upgradeStep":1}}}, +{"id":98904,"name":"Crafted Malevolent Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_e_01","type":8,"armorType":3,"stats":[0,0,1402,796,0,0,546,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"6":384,"11":380,"22":2007}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"6":459,"11":441,"22":2125}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"6":501,"11":475,"22":2184},"upgradeStep":1}}}, +{"id":98905,"name":"Crafted Malevolent Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_e_01","type":5,"armorType":3,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3987,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":3568}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":3777}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":3882},"upgradeStep":1}}}, +{"id":98906,"name":"Crafted Malevolent Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_e_01","type":7,"armorType":3,"stats":[0,0,1402,796,504,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2492,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"4":353,"6":433,"22":2230}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"4":423,"6":503,"22":2361}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"4":462,"6":542,"22":2426},"upgradeStep":1}}}, +{"id":98907,"name":"Crafted Malevolent Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_e_01","type":1,"armorType":3,"stats":[0,0,1887,939,0,0,0,546,0,0,0,786,0,0,0,0,0,0,0,0,0,0,3239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"7":343,"11":583,"22":2899}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"7":437,"11":677,"22":3069}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"7":489,"11":729,"22":3154},"upgradeStep":1}}}, +{"id":98908,"name":"Crafted Malevolent Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_e_01","type":9,"armorType":3,"stats":[0,0,1887,1019,0,0,0,786,0,0,0,626,0,0,0,0,0,0,0,0,0,0,3489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":583,"11":423,"22":3122}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":677,"11":517,"22":3305}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"7":729,"11":569,"22":3397},"upgradeStep":1}}}, +{"id":98909,"name":"Crafted Malevolent Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_e_01","type":3,"armorType":3,"stats":[0,0,1402,796,0,0,0,504,0,0,0,584,0,0,0,0,0,0,0,0,0,0,2990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":353,"11":433,"22":2676}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":423,"11":503,"22":2833}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"7":462,"11":542,"22":2912},"upgradeStep":1}}}, +{"id":98910,"name":"Crafted Malevolent Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98911,"name":"Crafted Malevolent Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98912,"name":"Crafted Malevolent Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98913,"name":"Crafted Malevolent Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[656,0,1051,0,0,0,384,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"7":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"7":405,"22":1066}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"6":357,"7":436,"22":1096},"upgradeStep":1}}}, +{"id":98914,"name":"Crafted Malevolent Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[656,0,1051,0,0,384,0,0,0,0,0,469,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":285,"11":349,"22":1007}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":331,"11":405,"22":1066}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"5":357,"11":436,"22":1096},"upgradeStep":1}}}, +{"id":98915,"name":"Crafted Malevolent Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[656,0,1051,0,0,0,384,0,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":285,"8":349}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":331,"8":405}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"6":357,"8":436},"upgradeStep":1}}}, +{"id":98916,"name":"Crafted Malevolent Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[656,0,1051,0,0,469,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"5":436,"7":357},"upgradeStep":1}}}, +{"id":98917,"name":"Crafted Malevolent Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235},"476":{"randPropPoints":1434},"484":{"randPropPoints":1545,"upgradeStep":1}}}, +{"id":98918,"name":"Crafted Malevolent Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[656,0,1051,0,0,0,469,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"6":349,"7":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"6":405,"7":331}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"6":436,"7":357},"upgradeStep":1}}}, +{"id":98919,"name":"Crafted Malevolent Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[656,0,1051,0,0,469,0,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":781,"5":349,"11":285}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":906,"5":405,"11":331}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":976,"5":436,"11":357},"upgradeStep":1}}}, +{"id":98920,"name":"Crafted Malevolent Gladiator's Shield Wall","icon":"inv_shield_pvppandarias1_c_01","type":13,"weaponType":7,"handType":3,"stats":[656,0,985,0,0,0,438,0,0,0,0,318,0,0,0,0,0,0,0,0,0,0,17465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1248,"ilvl":476,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":236,"22":15628}},"476":{"randPropPoints":1076,"stats":{"0":566,"2":849,"6":377,"11":274,"22":16546}},"484":{"randPropPoints":1159,"stats":{"0":610,"2":914,"6":406,"11":295,"22":17006},"upgradeStep":1}}}, +{"id":98921,"name":"Crafted Malevolent Gladiator's Felweave Handguards","icon":"inv_glove_pvpwarlock_e_01","type":7,"armorType":1,"stats":[0,0,1402,796,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"5":353,"6":433,"22":1259}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"5":423,"6":503,"22":1333}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"5":462,"6":542,"22":1370},"upgradeStep":1}}}, +{"id":98922,"name":"Crafted Malevolent Gladiator's Felweave Cowl","icon":"inv_helmet_pvpwarlock_e_01","type":1,"armorType":1,"stats":[0,0,1887,939,0,0,786,0,0,0,0,546,0,0,0,0,0,0,0,0,0,0,1829,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":635,"6":583,"11":343,"22":1637}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":775,"6":677,"11":437,"22":1733}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":854,"6":729,"11":489,"22":1781},"upgradeStep":1}}}, +{"id":98923,"name":"Crafted Malevolent Gladiator's Felweave Trousers","icon":"inv_pant_pvpwarlock_e_01","type":9,"armorType":1,"stats":[0,0,1887,1019,0,0,0,626,0,0,0,786,0,0,0,0,0,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"7":423,"11":583,"22":1763}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"7":517,"11":677,"22":1866}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"7":569,"11":729,"22":1918},"upgradeStep":1}}}, +{"id":98924,"name":"Crafted Malevolent Gladiator's Felweave Raiment","icon":"inv_chest_pvpwarlock_e_01","type":5,"armorType":1,"stats":[0,0,1887,1019,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1401,"3":715,"6":423,"7":583,"22":2014}},"476":{"randPropPoints":1930,"stats":{"2":1625,"3":855,"6":517,"7":677,"22":2133}},"484":{"randPropPoints":2080,"stats":{"2":1752,"3":934,"6":569,"7":729,"22":2192},"upgradeStep":1}}}, +{"id":98925,"name":"Crafted Malevolent Gladiator's Felweave Amice","icon":"inv_shoulder_pvpwarlock_e_01","type":3,"armorType":1,"stats":[0,0,1402,796,0,0,0,584,0,0,0,504,0,0,0,0,0,0,0,0,0,0,1688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1040,"3":569,"7":433,"11":353,"22":1511}},"476":{"randPropPoints":1434,"stats":{"2":1208,"3":674,"7":503,"11":423,"22":1600}},"484":{"randPropPoints":1545,"stats":{"2":1301,"3":733,"7":542,"11":462,"22":1644},"upgradeStep":1}}}, +{"id":98926,"name":"Crafted Malevolent Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_e_01","type":5,"armorType":4,"stats":[1019,0,1887,0,0,0,626,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5445,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":423,"7":583,"22":4872}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":517,"7":677,"22":5159}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":569,"7":729,"22":5302},"upgradeStep":1}}}, +{"id":98927,"name":"Crafted Malevolent Gladiator's Plate Gauntlets","icon":"inv_gauntlets_plate_pvpwarrior_e_01","type":7,"armorType":4,"stats":[796,0,1402,0,0,504,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3403,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"5":353,"6":433,"22":3045}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"5":423,"6":503,"22":3224}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"5":462,"6":542,"22":3314},"upgradeStep":1}}}, +{"id":98928,"name":"Crafted Malevolent Gladiator's Plate Helm","icon":"inv_helmet_plate_pvpwarrior_e_01","type":1,"armorType":4,"stats":[939,0,1887,0,0,0,0,0,786,0,0,546,0,0,0,0,0,0,0,0,0,0,4424,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1401,"8":583,"11":343,"22":3959}},"476":{"randPropPoints":1930,"stats":{"0":775,"2":1625,"8":677,"11":437,"22":4191}},"484":{"randPropPoints":2080,"stats":{"0":854,"2":1752,"8":729,"11":489,"22":4308},"upgradeStep":1}}}, +{"id":98929,"name":"Crafted Malevolent Gladiator's Plate Legguards","icon":"inv_plate_pants_pvpwarrior_e_01","type":9,"armorType":4,"stats":[1019,0,1887,0,0,0,786,626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2241,"ilvl":476,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1401,"6":583,"7":423,"22":4263}},"476":{"randPropPoints":1930,"stats":{"0":855,"2":1625,"6":677,"7":517,"22":4514}},"484":{"randPropPoints":2080,"stats":{"0":934,"2":1752,"6":729,"7":569,"22":4639},"upgradeStep":1}}}, +{"id":98930,"name":"Crafted Malevolent Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_e_01","type":3,"armorType":4,"stats":[796,0,1402,0,0,0,0,584,504,0,0,0,0,0,0,0,0,0,0,0,0,0,4084,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":1040,"7":433,"8":353,"22":3654}},"476":{"randPropPoints":1434,"stats":{"0":674,"2":1208,"7":503,"8":423,"22":3869}},"484":{"randPropPoints":1545,"stats":{"0":733,"2":1301,"7":542,"8":462,"22":3976},"upgradeStep":1}}}, +{"id":98977,"name":"Spaulders of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":3384},"upgradeStep":1}}}, +{"id":98978,"name":"Shoulderguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":2432},"upgradeStep":1}}}, +{"id":98979,"name":"Headguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2663,1535,1150,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3959}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"11":844,"22":4948}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"11":881,"22":5006},"upgradeStep":1}}}, +{"id":98980,"name":"Greaves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":4263}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":5328}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":5391},"upgradeStep":1}}}, +{"id":98981,"name":"Breeches of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1269,0,819,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1173,"8":755,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1220,"8":787,"22":2837},"upgradeStep":1}}}, +{"id":98982,"name":"Gloves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,1979,1159,809,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"11":712,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"11":741,"22":3851},"upgradeStep":1}}}, +{"id":98983,"name":"Helmet of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,1535,2663,0,0,0,0,1005,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2899}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":924,"11":1011,"22":3623}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":964,"11":1054,"22":3666},"upgradeStep":1}}}, +{"id":98984,"name":"Legguards of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,1615,2663,0,0,0,0,1074,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"7":991,"11":1035,"22":3902}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"7":1032,"11":1078,"22":3948},"upgradeStep":1}}}, +{"id":98985,"name":"Helmet of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1116,0,0,0,976,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":1027,"11":897,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1071,"11":936,"22":5006},"upgradeStep":1}}}, +{"id":98986,"name":"Legplates of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,1190,958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"6":1099,"7":884,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"6":1143,"7":921,"22":5391},"upgradeStep":1}}}, +{"id":98987,"name":"Pauldrons of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":98988,"name":"Handwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,1979,1159,809,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"7":712,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"7":741,"22":2820},"upgradeStep":1}}}, +{"id":98989,"name":"Faceguard of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2663,1535,1150,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2899}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"7":844,"22":3623}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"7":881,"22":3666},"upgradeStep":1}}}, +{"id":98990,"name":"Legwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":3902}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":3948},"upgradeStep":1}}}, +{"id":98991,"name":"Mantle of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,1979,1159,863,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":796,"11":636,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":829,"11":663,"22":3384},"upgradeStep":1}}}, +{"id":98992,"name":"Cuirass of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,1535,2663,0,0,0,0,1064,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":463,"11":463,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":979,"11":979,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":1021,"11":1021,"22":4511},"upgradeStep":1}}}, +{"id":98993,"name":"Grips of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1159,1979,0,0,0,0,772,0,0,0,809,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":712,"11":744,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":741,"11":776,"22":2820},"upgradeStep":1}}}, +{"id":98994,"name":"Gloves of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,1979,1159,0,0,809,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":744,"7":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":776,"7":741,"22":2026},"upgradeStep":1}}}, +{"id":98995,"name":"Cover of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,2663,1535,0,0,862,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":364,"7":522,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":792,"7":1089,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":826,"7":1135,"22":2634},"upgradeStep":1}}}, +{"id":98996,"name":"Leggings of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,2663,1615,0,0,1173,0,0,0,0,987,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1083,"11":911,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1127,"11":948,"22":2837},"upgradeStep":1}}}, +{"id":98997,"name":"Vestment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2663,1535,0,0,0,1116,0,0,0,976,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":489,"11":420,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":1027,"11":897,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":1071,"11":936,"22":3242},"upgradeStep":1}}}, +{"id":98998,"name":"Shoulderwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,1979,1159,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":540,"7":851,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":564,"7":886,"22":2432},"upgradeStep":1}}}, +{"id":98999,"name":"Tunic of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,1150,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1059,"7":844,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1103,"7":881,"22":3242},"upgradeStep":1}}}, +{"id":99000,"name":"Handguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,815,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"8":337,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":752,"8":720,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":783,"8":751,"22":2026},"upgradeStep":1}}}, +{"id":99001,"name":"Headguard of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,1082,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":995,"7":951,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1038,"7":992,"22":2634},"upgradeStep":1}}}, +{"id":99002,"name":"Gauntlets of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1159,0,1979,0,0,592,0,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"7":424,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":543,"7":856,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":567,"7":891,"22":3851},"upgradeStep":1}}}, +{"id":99003,"name":"Breastplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2663,1535,1064,0,0,1064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"7":463,"22":4872}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":979,"7":979,"22":6090}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1021,"7":1021,"22":6161},"upgradeStep":1}}}, +{"id":99004,"name":"Raiment of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2663,1535,0,0,976,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":897,"11":1027,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":936,"11":1071,"22":2547},"upgradeStep":1}}}, +{"id":99005,"name":"Shoulderguards of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1159,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":540,"7":851,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":564,"7":886,"22":1911},"upgradeStep":1}}}, +{"id":99006,"name":"Tunic of the Barbed Assassin","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":472,"11":448,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":995,"11":951,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":1038,"11":992,"22":3242},"upgradeStep":1}}}, +{"id":99007,"name":"Gloves of the Barbed Assassin","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,0,772,0,0,0,809,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":712,"11":744,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":741,"11":776,"22":2026},"upgradeStep":1}}}, +{"id":99008,"name":"Helmet of the Barbed Assassin","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,0,1005,0,0,0,1099,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":924,"11":1011,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":964,"11":1054,"22":2634},"upgradeStep":1}}}, +{"id":99009,"name":"Legguards of the Barbed Assassin","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1067,"7":937,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1111,"7":976,"22":2837},"upgradeStep":1}}}, +{"id":99010,"name":"Spaulders of the Barbed Assassin","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":2432},"upgradeStep":1}}}, +{"id":99011,"name":"Tunic of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2663,1535,1150,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"11":844,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"11":881,"22":4511},"upgradeStep":1}}}, +{"id":99012,"name":"Handwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,1979,1159,809,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"7":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"7":741,"22":2026},"upgradeStep":1}}}, +{"id":99013,"name":"Helm of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,2663,1535,1150,0,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"7":844,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"7":881,"22":2634},"upgradeStep":1}}}, +{"id":99014,"name":"Legwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":2837},"upgradeStep":1}}}, +{"id":99015,"name":"Robes of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2663,1535,1150,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"11":844,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"11":881,"22":3242},"upgradeStep":1}}}, +{"id":99016,"name":"Mantle of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,1979,1159,863,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":796,"11":636,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":829,"11":663,"22":2432},"upgradeStep":1}}}, +{"id":99017,"name":"Robes of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2663,1535,1064,0,0,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":979,"11":979,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1021,"11":1021,"22":2547},"upgradeStep":1}}}, +{"id":99018,"name":"Mantle of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1159,863,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":796,"11":636,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":829,"11":663,"22":1911},"upgradeStep":1}}}, +{"id":99019,"name":"Gloves of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,0,0,0,809,0,0,0,772,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"7":744,"11":712,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"7":776,"11":741,"22":1592},"upgradeStep":1}}}, +{"id":99020,"name":"Hood of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,834,1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":766,"7":1104,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":800,"7":1150,"22":2070},"upgradeStep":1}}}, +{"id":99021,"name":"Leggings of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,2663,1615,0,0,1173,0,0,0,0,987,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1083,"11":911,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1127,"11":948,"22":2229},"upgradeStep":1}}}, +{"id":99022,"name":"Spaulders of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":2432},"upgradeStep":1}}}, +{"id":99023,"name":"Handwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,809,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"11":712,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"11":741,"22":1592},"upgradeStep":1}}}, +{"id":99024,"name":"Cowl of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2663,1535,1150,0,0,0,0,0,0,918,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"11":844,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"11":881,"22":2070},"upgradeStep":1}}}, +{"id":99025,"name":"Legwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":2229},"upgradeStep":1}}}, +{"id":99026,"name":"Legguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,0,0,0,1156,0,1016,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"9":1067,"11":937,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"9":1111,"11":976,"22":5391},"upgradeStep":1}}}, +{"id":99027,"name":"Shoulderguards of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":99028,"name":"Handguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,938,572,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":430,"8":233,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"7":867,"8":524,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"7":902,"8":548,"22":3851},"upgradeStep":1}}}, +{"id":99029,"name":"Faceguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1064,0,0,1064,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":463,"10":463,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":979,"10":979,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1021,"10":1021,"22":5006},"upgradeStep":1}}}, +{"id":99030,"name":"Shoulderguards of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":99031,"name":"Chestguard of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,779,0,0,1229,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"8":715,"11":1133,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"8":747,"11":1180,"22":6161},"upgradeStep":1}}}, +{"id":99032,"name":"Faceguard of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,0,1064,1064,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"10":979,"11":979,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"10":1021,"11":1021,"22":5006},"upgradeStep":1}}}, +{"id":99033,"name":"Legguards of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,1156,0,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"10":460,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"5":1067,"10":937,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"5":1111,"10":976,"22":5391},"upgradeStep":1}}}, +{"id":99034,"name":"Gauntlets of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,592,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"6":424,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":543,"6":856,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":567,"6":891,"22":3851},"upgradeStep":1}}}, +{"id":99035,"name":"Legplates of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,1190,958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"6":1099,"7":884,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"6":1143,"7":921,"22":5391},"upgradeStep":1}}}, +{"id":99036,"name":"Pauldrons of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":99037,"name":"Chestguard of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,779,0,0,1229,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"8":715,"11":1133,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"8":747,"11":1180,"22":6161},"upgradeStep":1}}}, +{"id":99038,"name":"Handguards of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,572,0,0,938,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":524,"11":867,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":548,"11":902,"22":3851},"upgradeStep":1}}}, +{"id":99039,"name":"Legguards of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,0,0,0,1156,0,1016,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"9":1067,"11":937,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"9":1111,"11":976,"22":5391},"upgradeStep":1}}}, +{"id":99040,"name":"Shoulderguards of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":99041,"name":"Raiment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,1116,0,0,0,0,976,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1027,"11":897,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1071,"11":936,"22":3242},"upgradeStep":1}}}, +{"id":99042,"name":"Grips of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,809,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":744,"11":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":776,"11":741,"22":2026},"upgradeStep":1}}}, +{"id":99043,"name":"Headpiece of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,1064,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":979,"11":979,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1021,"11":1021,"22":2634},"upgradeStep":1}}}, +{"id":99044,"name":"Legguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1067,"7":937,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1111,"7":976,"22":2837},"upgradeStep":1}}}, +{"id":99045,"name":"Mantle of the Horned Nightmare","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,1979,1159,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":540,"7":851,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":564,"7":886,"22":1911},"upgradeStep":1}}}, +{"id":99046,"name":"Helmet of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,976,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":420,"11":489,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":897,"11":1027,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":936,"11":1071,"22":5006},"upgradeStep":1}}}, +{"id":99047,"name":"Battleplate of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":995,"11":951,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1038,"11":992,"22":6161},"upgradeStep":1}}}, +{"id":99048,"name":"Handguards of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,572,0,0,938,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":524,"11":867,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":548,"11":902,"22":3851},"upgradeStep":1}}}, +{"id":99049,"name":"Faceguard of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,0,1064,1064,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"10":979,"11":979,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"10":1021,"11":1021,"22":5006},"upgradeStep":1}}}, +{"id":99050,"name":"Legguards of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1269,0,819,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1173,"8":755,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1220,"8":787,"22":2837},"upgradeStep":1}}}, +{"id":99051,"name":"Shoulderguards of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":2432},"upgradeStep":1}}}, +{"id":99052,"name":"Battleplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":995,"11":951,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1038,"11":992,"22":6161},"upgradeStep":1}}}, +{"id":99053,"name":"Gloves of the Horned Nightmare","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,0,0,809,0,0,0,772,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"7":744,"11":712,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"7":776,"11":741,"22":1592},"upgradeStep":1}}}, +{"id":99054,"name":"Hood of the Horned Nightmare","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,0,1214,0,0,0,807,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":537,"11":336,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":1118,"11":740,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":1165,"11":773,"22":2070},"upgradeStep":1}}}, +{"id":99055,"name":"Leggings of the Horned Nightmare","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,2663,1615,0,0,1173,0,0,0,0,987,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1083,"11":911,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1127,"11":948,"22":2229},"upgradeStep":1}}}, +{"id":99056,"name":"Robes of the Horned Nightmare","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,2663,1535,0,0,976,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":897,"11":1027,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":936,"11":1071,"22":2547},"upgradeStep":1}}}, +{"id":99057,"name":"Helmet of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1116,0,0,0,976,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":1027,"11":897,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1071,"11":936,"22":5006},"upgradeStep":1}}}, +{"id":99058,"name":"Greaves of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1615,0,2663,0,0,0,1190,958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1488,"2":2472,"6":1099,"7":884,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1551,"2":2566,"6":1143,"7":921,"22":5391},"upgradeStep":1}}}, +{"id":99059,"name":"Pauldrons of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,813,0,0,777,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":749,"11":716,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":780,"11":746,"22":4621},"upgradeStep":1}}}, +{"id":99060,"name":"Chestguard of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,779,0,0,1229,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"8":715,"11":1133,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"8":747,"11":1180,"22":6161},"upgradeStep":1}}}, +{"id":99061,"name":"Vest of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,2663,1535,1150,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"6":844,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"6":881,"22":3242},"upgradeStep":1}}}, +{"id":99062,"name":"Mantle of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,1979,1159,863,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":796,"11":636,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":829,"11":663,"22":2432},"upgradeStep":1}}}, +{"id":99063,"name":"Chestguard of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,1150,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1059,"7":844,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1103,"7":881,"22":3242},"upgradeStep":1}}}, +{"id":99064,"name":"Gauntlets of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,0,815,783,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":369,"8":337,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":752,"8":720,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":783,"8":751,"22":2026},"upgradeStep":1}}}, +{"id":99065,"name":"Crown of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,1082,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":995,"7":951,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1038,"7":992,"22":2634},"upgradeStep":1}}}, +{"id":99066,"name":"Breastplate of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":995,"11":951,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1038,"11":992,"22":6161},"upgradeStep":1}}}, +{"id":99067,"name":"Gauntlets of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,592,0,0,0,0,0,927,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"11":424,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":543,"11":856,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":567,"11":891,"22":3851},"upgradeStep":1}}}, +{"id":99068,"name":"Handwraps of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,1979,1159,809,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":744,"7":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":776,"7":741,"22":2026},"upgradeStep":1}}}, +{"id":99069,"name":"Helm of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2663,1535,1150,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"6":844,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"6":881,"22":2634},"upgradeStep":1}}}, +{"id":99070,"name":"Legwraps of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":2837},"upgradeStep":1}}}, +{"id":99071,"name":"Tunic of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,1116,0,0,0,0,976,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1027,"11":897,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1071,"11":936,"22":3242},"upgradeStep":1}}}, +{"id":99072,"name":"Grips of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,809,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":744,"11":712,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":776,"11":741,"22":2026},"upgradeStep":1}}}, +{"id":99073,"name":"Headpiece of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,1064,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":979,"11":979,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1021,"11":1021,"22":2634},"upgradeStep":1}}}, +{"id":99074,"name":"Leggings of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1156,1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1067,"7":937,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1111,"7":976,"22":2837},"upgradeStep":1}}}, +{"id":99075,"name":"Spaulders of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":2432},"upgradeStep":1}}}, +{"id":99076,"name":"Mantle of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,1979,1159,863,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":3654}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":796,"11":636,"22":4567}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":829,"11":663,"22":4621},"upgradeStep":1}}}, +{"id":99077,"name":"Chronomancer Leggings","icon":"inv_pant_cloth_raidmage_n_01","type":9,"armorType":1,"stats":[0,0,2663,1615,0,0,1173,0,0,0,0,987,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"6":1083,"11":911,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"6":1127,"11":948,"22":2229},"upgradeStep":1}}}, +{"id":99078,"name":"Chronomancer Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2663,1535,0,0,976,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":897,"11":1027,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":936,"11":1071,"22":2547},"upgradeStep":1}}}, +{"id":99079,"name":"Chronomancer Mantle","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,1979,1159,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":540,"7":851,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":564,"7":886,"22":1911},"upgradeStep":1}}}, +{"id":99080,"name":"Headguard of the Unblinking Vigil","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1535,2663,0,0,0,1082,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2899}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":995,"7":951,"22":3623}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1038,"7":992,"22":3666},"upgradeStep":1}}}, +{"id":99081,"name":"Legguards of the Unblinking Vigil","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,1615,2663,0,0,0,0,1074,0,0,0,1122,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"7":991,"11":1035,"22":3902}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"7":1032,"11":1078,"22":3948},"upgradeStep":1}}}, +{"id":99082,"name":"Spaulders of the Unblinking Vigil","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1159,1979,0,0,0,0,922,588,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":851,"8":540,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":886,"8":564,"22":3384},"upgradeStep":1}}}, +{"id":99083,"name":"Chronomancer Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,0,809,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":744,"7":712,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":776,"7":741,"22":1592},"upgradeStep":1}}}, +{"id":99084,"name":"Chronomancer Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,834,1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":766,"7":1104,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":800,"7":1150,"22":2070},"upgradeStep":1}}}, +{"id":99085,"name":"Tunic of the Unblinking Vigil","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1535,2663,0,0,0,1082,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":995,"7":951,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1038,"7":992,"22":4511},"upgradeStep":1}}}, +{"id":99086,"name":"Gloves of the Unblinking Vigil","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1159,1979,0,0,0,809,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"7":348,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":744,"7":712,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":776,"7":741,"22":2820},"upgradeStep":1}}}, +{"id":99087,"name":"Hauberk of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2663,1535,0,0,976,0,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":897,"11":1027,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":936,"11":1071,"22":4511},"upgradeStep":1}}}, +{"id":99088,"name":"Gloves of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,1979,1159,0,0,0,809,0,0,0,772,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"7":744,"11":712,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"7":776,"11":741,"22":2820},"upgradeStep":1}}}, +{"id":99089,"name":"Headpiece of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2663,1535,0,0,0,862,0,0,0,1182,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":364,"11":522,"22":2899}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":792,"11":1089,"22":3623}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":826,"11":1135,"22":3666},"upgradeStep":1}}}, +{"id":99090,"name":"Leggings of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2663,1615,1190,0,0,0,0,0,0,958,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1099,"11":884,"22":3902}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1143,"11":921,"22":3948},"upgradeStep":1}}}, +{"id":99091,"name":"Shoulderwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,1979,1159,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":540,"7":851,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":564,"7":886,"22":3384},"upgradeStep":1}}}, +{"id":99092,"name":"Gloves of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2498,1505,0,0,0,1047,0,0,0,991,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":2230}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"7":965,"11":915,"22":2992}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"7":1005,"11":952,"22":3024},"upgradeStep":1}}}, +{"id":99093,"name":"Headpiece of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3362,2001,0,0,0,1120,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":364,"11":522,"22":2899}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"7":1031,"11":1406,"22":3889}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"7":1074,"11":1464,"22":3932},"upgradeStep":1}}}, +{"id":99094,"name":"Leggings of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":4188}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":4234},"upgradeStep":1}}}, +{"id":99095,"name":"Shoulderwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2498,1505,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":2676}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":703,"7":1095,"22":3590}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":733,"7":1139,"22":3629},"upgradeStep":1}}}, +{"id":99096,"name":"Gloves of the Horned Nightmare","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,0,0,1047,0,0,0,991,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"7":965,"11":915,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"7":1005,"11":952,"22":1708},"upgradeStep":1}}}, +{"id":99097,"name":"Hood of the Horned Nightmare","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3362,2001,0,0,0,1564,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":537,"11":336,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"7":1443,"11":966,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"7":1502,"11":1007,"22":2220},"upgradeStep":1}}}, +{"id":99098,"name":"Leggings of the Horned Nightmare","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3362,2081,0,0,1502,0,0,0,0,1267,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"6":1388,"11":1170,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"6":1444,"11":1218,"22":2391},"upgradeStep":1}}}, +{"id":99099,"name":"Legwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":4188}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":4234},"upgradeStep":1}}}, +{"id":99100,"name":"Mantle of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2498,1505,1111,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":2676}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1025,"11":824,"22":3590}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1067,"11":858,"22":3629},"upgradeStep":1}}}, +{"id":99101,"name":"Cuirass of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,2001,3362,0,0,0,0,1374,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":463,"11":463,"22":3568}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1267,"11":1267,"22":4787}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1320,"11":1320,"22":4839},"upgradeStep":1}}}, +{"id":99102,"name":"Grips of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1505,2498,0,0,0,0,991,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":2230}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":915,"11":965,"22":2992}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":952,"11":1005,"22":3024},"upgradeStep":1}}}, +{"id":99103,"name":"Helmet of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,2001,3362,0,0,0,0,1300,0,0,0,1419,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2899}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1198,"11":1308,"22":3889}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1248,"11":1362,"22":3932},"upgradeStep":1}}}, +{"id":99104,"name":"Legguards of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,2081,3362,0,0,0,0,1377,0,0,0,1437,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"7":1272,"11":1328,"22":4188}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"7":1323,"11":1381,"22":4234},"upgradeStep":1}}}, +{"id":99105,"name":"Spaulders of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":3590}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":3629},"upgradeStep":1}}}, +{"id":99106,"name":"Hauberk of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3362,2001,0,0,1263,0,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":3568}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1164,"11":1328,"22":4787}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1213,"11":1383,"22":4839},"upgradeStep":1}}}, +{"id":99107,"name":"Tunic of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3362,2001,1483,0,0,0,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3568}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"11":1097,"22":4787}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"11":1143,"22":4839},"upgradeStep":1}}}, +{"id":99108,"name":"Handwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2498,1505,1047,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":2230}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":965,"7":915,"22":2992}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":952,"22":3024},"upgradeStep":1}}}, +{"id":99109,"name":"Faceguard of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3362,2001,1483,0,0,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2899}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"7":1097,"22":3889}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"7":1143,"22":3932},"upgradeStep":1}}}, +{"id":99110,"name":"Raiment of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3362,2001,0,0,1263,0,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1164,"11":1328,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1213,"11":1383,"22":2732},"upgradeStep":1}}}, +{"id":99111,"name":"Shoulderguards of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2498,1505,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":703,"7":1095,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":733,"7":1139,"22":2049},"upgradeStep":1}}}, +{"id":99112,"name":"Tunic of the Barbed Assassin","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":472,"11":448,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1288,"11":1232,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1341,"11":1283,"22":3478},"upgradeStep":1}}}, +{"id":99113,"name":"Gloves of the Barbed Assassin","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,0,991,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":915,"11":965,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":952,"11":1005,"22":2174},"upgradeStep":1}}}, +{"id":99114,"name":"Helmet of the Barbed Assassin","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,0,1300,0,0,0,1419,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1198,"11":1308,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1248,"11":1362,"22":2826},"upgradeStep":1}}}, +{"id":99115,"name":"Legguards of the Barbed Assassin","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1480,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1368,"7":1204,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1423,"7":1253,"22":3043},"upgradeStep":1}}}, +{"id":99116,"name":"Spaulders of the Barbed Assassin","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":2608},"upgradeStep":1}}}, +{"id":99117,"name":"Cowl of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3362,2001,1483,0,0,0,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"11":1097,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"11":1143,"22":2220},"upgradeStep":1}}}, +{"id":99118,"name":"Legwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":2391},"upgradeStep":1}}}, +{"id":99119,"name":"Robes of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3362,2001,1374,0,0,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1267,"11":1267,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1320,"11":1320,"22":2732},"upgradeStep":1}}}, +{"id":99120,"name":"Mantle of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2498,1505,1111,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1025,"11":824,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1067,"11":858,"22":2049},"upgradeStep":1}}}, +{"id":99121,"name":"Gloves of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2498,1505,0,0,0,1047,0,0,0,991,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"7":965,"11":915,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"7":1005,"11":952,"22":1708},"upgradeStep":1}}}, +{"id":99122,"name":"Hood of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3362,2001,0,0,1085,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":998,"7":1425,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1041,"7":1483,"22":2220},"upgradeStep":1}}}, +{"id":99123,"name":"Leggings of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,3362,2081,0,0,1502,0,0,0,0,1267,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"6":1388,"11":1170,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"6":1444,"11":1218,"22":2391},"upgradeStep":1}}}, +{"id":99124,"name":"Greaves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":4263}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":5720}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":5783},"upgradeStep":1}}}, +{"id":99125,"name":"Mantle of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2498,1505,1111,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":3654}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1025,"11":824,"22":4903}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1067,"11":858,"22":4957},"upgradeStep":1}}}, +{"id":99126,"name":"Chestguard of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,1015,0,0,1584,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"8":934,"11":1461,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"8":974,"11":1521,"22":6609},"upgradeStep":1}}}, +{"id":99127,"name":"Handguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,1201,747,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":430,"8":233,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"7":1111,"8":687,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"7":1155,"8":717,"22":4131},"upgradeStep":1}}}, +{"id":99128,"name":"Faceguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1374,0,0,1374,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":463,"10":463,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1267,"10":1267,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1320,"10":1320,"22":5370},"upgradeStep":1}}}, +{"id":99129,"name":"Legguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,0,0,0,1480,0,1303,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"9":1368,"11":1204,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"9":1423,"11":1253,"22":5783},"upgradeStep":1}}}, +{"id":99130,"name":"Shoulderguards of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99131,"name":"Handwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2498,1505,1047,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":965,"11":915,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"11":952,"22":1708},"upgradeStep":1}}}, +{"id":99132,"name":"Pauldrons of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99133,"name":"Breastplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3362,2001,1374,0,0,1374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"7":463,"22":4872}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1267,"7":1267,"22":6537}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1320,"7":1320,"22":6609},"upgradeStep":1}}}, +{"id":99134,"name":"Gloves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2498,1505,1047,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":3045}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":965,"11":915,"22":4086}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"11":952,"22":4131},"upgradeStep":1}}}, +{"id":99135,"name":"Headguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3362,2001,1483,0,0,0,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3959}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"11":1097,"22":5311}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"11":1143,"22":5370},"upgradeStep":1}}}, +{"id":99136,"name":"Battleplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1288,"11":1232,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1341,"11":1283,"22":6609},"upgradeStep":1}}}, +{"id":99137,"name":"Gauntlets of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1505,0,2498,0,0,773,0,1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"7":424,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":711,"7":1097,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":741,"7":1141,"22":4131},"upgradeStep":1}}}, +{"id":99138,"name":"Helmet of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1440,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1328,"11":1164,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1383,"11":1213,"22":5370},"upgradeStep":1}}}, +{"id":99139,"name":"Legplates of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,1523,1231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"6":1408,"7":1137,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"6":1464,"7":1183,"22":5783},"upgradeStep":1}}}, +{"id":99140,"name":"Chestguard of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,1483,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1368,"7":1097,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1424,"7":1143,"22":3478},"upgradeStep":1}}}, +{"id":99141,"name":"Gauntlets of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1046,1014,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":369,"8":337,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":966,"8":934,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1005,"8":973,"22":2174},"upgradeStep":1}}}, +{"id":99142,"name":"Crown of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,1397,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1288,"7":1232,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1341,"7":1283,"22":2826},"upgradeStep":1}}}, +{"id":99143,"name":"Legguards of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1624,0,1055,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1501,"8":974,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1561,"8":1014,"22":3043},"upgradeStep":1}}}, +{"id":99144,"name":"Shoulderguards of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":2608},"upgradeStep":1}}}, +{"id":99145,"name":"Leggings of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1480,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1368,"7":1204,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1423,"7":1253,"22":3043},"upgradeStep":1}}}, +{"id":99146,"name":"Spaulders of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":2608},"upgradeStep":1}}}, +{"id":99147,"name":"Handwraps of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2498,1505,1047,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":965,"7":915,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":952,"22":2174},"upgradeStep":1}}}, +{"id":99148,"name":"Helm of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3362,2001,1483,0,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2083}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"6":1097,"22":2795}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"6":1143,"22":2826},"upgradeStep":1}}}, +{"id":99149,"name":"Legwraps of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":3010}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":3043},"upgradeStep":1}}}, +{"id":99150,"name":"Vest of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,3362,2001,1483,0,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2564}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"6":1097,"22":3440}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"6":1143,"22":3478},"upgradeStep":1}}}, +{"id":99151,"name":"Mantle of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2498,1505,1111,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1025,"11":824,"22":2580}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1067,"11":858,"22":2608},"upgradeStep":1}}}, +{"id":99152,"name":"Chronomancer Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3362,2001,0,0,1263,0,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1164,"11":1328,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1213,"11":1383,"22":2732},"upgradeStep":1}}}, +{"id":99153,"name":"Chronomancer Mantle","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2498,1505,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":703,"7":1095,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":733,"7":1139,"22":2049},"upgradeStep":1}}}, +{"id":99154,"name":"Tunic of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,1440,0,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1328,"11":1164,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1383,"11":1213,"22":3478},"upgradeStep":1}}}, +{"id":99155,"name":"Grips of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,1047,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":965,"11":915,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1005,"11":952,"22":2174},"upgradeStep":1}}}, +{"id":99156,"name":"Headpiece of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,1374,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1267,"11":1267,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1320,"11":1320,"22":2826},"upgradeStep":1}}}, +{"id":99157,"name":"Headguard of the Unblinking Vigil","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2001,3362,0,0,0,1397,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2899}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1288,"7":1232,"22":3889}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1341,"7":1283,"22":3932},"upgradeStep":1}}}, +{"id":99158,"name":"Legguards of the Unblinking Vigil","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2081,3362,0,0,0,0,1377,0,0,0,1437,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"7":1272,"11":1328,"22":4188}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"7":1323,"11":1381,"22":4234},"upgradeStep":1}}}, +{"id":99159,"name":"Spaulders of the Unblinking Vigil","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":3590}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":3629},"upgradeStep":1}}}, +{"id":99160,"name":"Chronomancer Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,0,1047,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":965,"7":915,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":1005,"7":952,"22":1708},"upgradeStep":1}}}, +{"id":99161,"name":"Chronomancer Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3362,2001,0,0,1085,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":998,"7":1425,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1041,"7":1483,"22":2220},"upgradeStep":1}}}, +{"id":99162,"name":"Chronomancer Leggings","icon":"inv_pant_cloth_raidmage_n_01","type":9,"armorType":1,"stats":[0,0,3362,2081,0,0,1502,0,0,0,0,1267,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"6":1388,"11":1170,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"6":1444,"11":1218,"22":2391},"upgradeStep":1}}}, +{"id":99163,"name":"Handguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,1046,0,1014,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"8":337,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":966,"8":934,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1005,"8":973,"22":2174},"upgradeStep":1}}}, +{"id":99164,"name":"Headguard of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,1397,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1288,"7":1232,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1341,"7":1283,"22":2826},"upgradeStep":1}}}, +{"id":99165,"name":"Breeches of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1624,0,1055,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1501,"8":974,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1561,"8":1014,"22":3043},"upgradeStep":1}}}, +{"id":99166,"name":"Shoulderguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":2608},"upgradeStep":1}}}, +{"id":99167,"name":"Tunic of the Unblinking Vigil","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2001,3362,0,0,0,1397,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":3568}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1288,"7":1232,"22":4787}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1341,"7":1283,"22":4839},"upgradeStep":1}}}, +{"id":99168,"name":"Gloves of the Unblinking Vigil","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1505,2498,0,0,0,1047,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"7":348,"22":2230}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":965,"7":915,"22":2992}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1005,"7":952,"22":3024},"upgradeStep":1}}}, +{"id":99169,"name":"Shoulderwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2498,1505,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1923}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":703,"7":1095,"22":2580}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":733,"7":1139,"22":2608},"upgradeStep":1}}}, +{"id":99170,"name":"Tunic of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,1483,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1368,"7":1097,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1424,"7":1143,"22":3478},"upgradeStep":1}}}, +{"id":99171,"name":"Legwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,3362,2081,1523,0,0,0,0,0,0,1231,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1408,"11":1137,"22":3010}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1464,"11":1183,"22":3043},"upgradeStep":1}}}, +{"id":99172,"name":"Robes of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3362,2001,1483,0,0,0,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":2564}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"11":1097,"22":3440}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"11":1143,"22":3478},"upgradeStep":1}}}, +{"id":99173,"name":"Mantle of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2498,1505,1111,0,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1025,"11":824,"22":2580}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1067,"11":858,"22":2608},"upgradeStep":1}}}, +{"id":99174,"name":"Gloves of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2498,1505,0,0,1047,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":965,"7":915,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":1005,"7":952,"22":2174},"upgradeStep":1}}}, +{"id":99175,"name":"Cover of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,3362,2001,0,0,1120,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":364,"7":522,"22":2083}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1031,"7":1406,"22":2795}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1074,"7":1464,"22":2826},"upgradeStep":1}}}, +{"id":99176,"name":"Leggings of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,3362,2081,0,0,1502,0,0,0,0,1267,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":2243}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"6":1388,"11":1170,"22":3010}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"6":1444,"11":1218,"22":3043},"upgradeStep":1}}}, +{"id":99177,"name":"Vestment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3362,2001,0,0,0,1440,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":489,"11":420,"22":2564}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"7":1328,"11":1164,"22":3440}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"7":1383,"11":1213,"22":3478},"upgradeStep":1}}}, +{"id":99178,"name":"Helm of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,3362,2001,1483,0,0,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2083}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"7":1097,"22":2795}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"7":1143,"22":2826},"upgradeStep":1}}}, +{"id":99179,"name":"Shoulderguards of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99180,"name":"Raiment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,1440,0,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1328,"11":1164,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1383,"11":1213,"22":3478},"upgradeStep":1}}}, +{"id":99181,"name":"Grips of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,1047,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":965,"11":915,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1005,"11":952,"22":2174},"upgradeStep":1}}}, +{"id":99182,"name":"Headpiece of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,1374,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1267,"11":1267,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1320,"11":1320,"22":2826},"upgradeStep":1}}}, +{"id":99183,"name":"Legguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1480,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1368,"7":1204,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1423,"7":1253,"22":3043},"upgradeStep":1}}}, +{"id":99184,"name":"Spaulders of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1185,763,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1095,"8":703,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1139,"8":733,"22":2608},"upgradeStep":1}}}, +{"id":99185,"name":"Handwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2498,1505,1047,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":965,"7":915,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1005,"7":952,"22":2174},"upgradeStep":1}}}, +{"id":99186,"name":"Greaves of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,1523,1231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"6":1408,"7":1137,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"6":1464,"7":1183,"22":5783},"upgradeStep":1}}}, +{"id":99187,"name":"Pauldrons of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99188,"name":"Chestguard of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,1015,0,0,1584,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"8":934,"11":1461,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"8":974,"11":1521,"22":6609},"upgradeStep":1}}}, +{"id":99189,"name":"Handguards of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,747,0,0,1201,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":687,"11":1111,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":717,"11":1155,"22":4131},"upgradeStep":1}}}, +{"id":99190,"name":"Faceguard of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,0,0,1374,1374,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"10":1267,"11":1267,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"10":1320,"11":1320,"22":5370},"upgradeStep":1}}}, +{"id":99191,"name":"Legguards of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,0,0,0,1480,0,1303,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"9":1368,"11":1204,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"9":1423,"11":1253,"22":5783},"upgradeStep":1}}}, +{"id":99192,"name":"Breastplate of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1288,"11":1232,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1341,"11":1283,"22":6609},"upgradeStep":1}}}, +{"id":99193,"name":"Gauntlets of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,773,0,0,0,0,0,1187,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"11":424,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":711,"11":1097,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":741,"11":1141,"22":4131},"upgradeStep":1}}}, +{"id":99194,"name":"Helmet of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1440,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1328,"11":1164,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1383,"11":1213,"22":5370},"upgradeStep":1}}}, +{"id":99195,"name":"Legguards of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2081,0,3362,0,0,1480,0,0,0,0,1303,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"10":460,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"5":1368,"10":1204,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"5":1423,"10":1253,"22":5783},"upgradeStep":1}}}, +{"id":99196,"name":"Shoulderguards of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99197,"name":"Battleplate of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1288,"11":1232,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1341,"11":1283,"22":6609},"upgradeStep":1}}}, +{"id":99198,"name":"Gauntlets of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,773,1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"6":424,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":711,"6":1097,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":741,"6":1141,"22":4131},"upgradeStep":1}}}, +{"id":99199,"name":"Legplates of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2081,0,3362,0,0,0,1523,1231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1920,"2":3121,"6":1408,"7":1137,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1999,"2":3239,"6":1464,"7":1183,"22":5783},"upgradeStep":1}}}, +{"id":99200,"name":"Pauldrons of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,1047,0,0,1002,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":966,"11":925,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":1005,"11":962,"22":4957},"upgradeStep":1}}}, +{"id":99201,"name":"Chestguard of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,1015,0,0,1584,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"8":934,"11":1461,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"8":974,"11":1521,"22":6609},"upgradeStep":1}}}, +{"id":99202,"name":"Handguards of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,747,0,0,1201,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":687,"11":1111,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":717,"11":1155,"22":4131},"upgradeStep":1}}}, +{"id":99203,"name":"Faceguard of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,0,0,1374,1374,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"10":1267,"11":1267,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"10":1320,"11":1320,"22":5370},"upgradeStep":1}}}, +{"id":99204,"name":"Robes of the Horned Nightmare","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,3362,2001,0,0,1263,0,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1164,"11":1328,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1213,"11":1383,"22":2732},"upgradeStep":1}}}, +{"id":99205,"name":"Mantle of the Horned Nightmare","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2498,1505,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":703,"7":1095,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":733,"7":1139,"22":2049},"upgradeStep":1}}}, +{"id":99206,"name":"Helmet of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,1263,0,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":420,"11":489,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"6":1164,"11":1328,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"6":1213,"11":1383,"22":5370},"upgradeStep":1}}}, +{"id":99322,"name":"Spaulders of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":2700},"upgradeStep":1}}}, +{"id":99323,"name":"Faceguard of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,0,0,1567,1567,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"10":1445,"11":1445,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"10":1505,"11":1505,"22":5559},"upgradeStep":1}}}, +{"id":99324,"name":"Legguards of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2370,0,3795,0,0,0,0,0,0,1681,0,1482,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"9":1555,"11":1369,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"9":1617,"11":1425,"22":5986},"upgradeStep":1}}}, +{"id":99325,"name":"Shoulderguards of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99326,"name":"Raiment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,1641,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1515,"11":1329,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1577,"11":1385,"22":3600},"upgradeStep":1}}}, +{"id":99327,"name":"Grips of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,1194,0,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1101,"11":1041,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1147,"11":1083,"22":2250},"upgradeStep":1}}}, +{"id":99328,"name":"Headpiece of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,1567,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1445,"11":1445,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1505,"11":1505,"22":2925},"upgradeStep":1}}}, +{"id":99329,"name":"Legguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1681,1482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1555,"7":1369,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1617,"7":1425,"22":3150},"upgradeStep":1}}}, +{"id":99330,"name":"Chestguard of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,1162,0,0,1803,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"8":1069,"11":1665,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"8":1115,"11":1733,"22":6842},"upgradeStep":1}}}, +{"id":99331,"name":"Handguards of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,856,0,0,1365,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":788,"11":1262,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":821,"11":1312,"22":4276},"upgradeStep":1}}}, +{"id":99332,"name":"Headpiece of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3795,2290,0,0,0,1280,0,0,0,1736,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":364,"11":522,"22":2899}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"7":1179,"11":1603,"22":4028}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"7":1228,"11":1668,"22":4070},"upgradeStep":1}}}, +{"id":99333,"name":"Leggings of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":4338}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":4383},"upgradeStep":1}}}, +{"id":99334,"name":"Shoulderwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2820,1720,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":2676}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":804,"7":1246,"22":3718}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":837,"7":1296,"22":3757},"upgradeStep":1}}}, +{"id":99335,"name":"Breastplate of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1469,"11":1406,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1530,"11":1464,"22":6842},"upgradeStep":1}}}, +{"id":99336,"name":"Gauntlets of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,885,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"11":424,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":815,"11":1247,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":849,"11":1296,"22":4276},"upgradeStep":1}}}, +{"id":99337,"name":"Helmet of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1641,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1515,"11":1329,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1577,"11":1385,"22":5559},"upgradeStep":1}}}, +{"id":99338,"name":"Greaves of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2370,0,3795,0,0,0,1729,1400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"6":1599,"7":1293,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"6":1663,"7":1346,"22":5986},"upgradeStep":1}}}, +{"id":99339,"name":"Pauldrons of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99340,"name":"Grips of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1720,2820,0,0,0,0,1127,0,0,0,1194,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":2230}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1041,"11":1101,"22":3098}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1083,"11":1147,"22":3131},"upgradeStep":1}}}, +{"id":99341,"name":"Helmet of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,2290,3795,0,0,0,0,1483,0,0,0,1617,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2899}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1368,"11":1492,"22":4028}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1424,"11":1553,"22":4070},"upgradeStep":1}}}, +{"id":99342,"name":"Legguards of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,2370,3795,0,0,0,0,1564,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"7":1446,"11":1509,"22":4338}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"7":1504,"11":1570,"22":4383},"upgradeStep":1}}}, +{"id":99343,"name":"Spaulders of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":3718}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":3757},"upgradeStep":1}}}, +{"id":99344,"name":"Hauberk of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3795,2290,0,0,1442,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":3568}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1329,"11":1515,"22":4957}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1385,"11":1577,"22":5010},"upgradeStep":1}}}, +{"id":99345,"name":"Gloves of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2820,1720,0,0,0,1194,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":2230}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"7":1101,"11":1041,"22":3098}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"7":1147,"11":1083,"22":3131},"upgradeStep":1}}}, +{"id":99346,"name":"Mantle of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2820,1720,1264,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":2676}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1168,"11":940,"22":3718}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1215,"11":979,"22":3757},"upgradeStep":1}}}, +{"id":99347,"name":"Cuirass of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,2290,3795,0,0,0,0,1567,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":463,"11":463,"22":3568}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1445,"11":1445,"22":4957}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1505,"11":1505,"22":5010},"upgradeStep":1}}}, +{"id":99348,"name":"Helmet of the Barbed Assassin","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,0,1483,0,0,0,1617,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1368,"11":1492,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1424,"11":1553,"22":2925},"upgradeStep":1}}}, +{"id":99349,"name":"Legguards of the Barbed Assassin","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1681,1482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1555,"7":1369,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1617,"7":1425,"22":3150},"upgradeStep":1}}}, +{"id":99350,"name":"Spaulders of the Barbed Assassin","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":2700},"upgradeStep":1}}}, +{"id":99351,"name":"Tunic of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3795,2290,1689,0,0,0,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3568}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"11":1253,"22":4957}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"11":1306,"22":5010},"upgradeStep":1}}}, +{"id":99352,"name":"Handwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2820,1720,1194,0,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":2230}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1101,"7":1041,"22":3098}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1147,"7":1083,"22":3131},"upgradeStep":1}}}, +{"id":99353,"name":"Faceguard of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3795,2290,1689,0,0,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2899}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"7":1253,"22":4028}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"7":1306,"22":4070},"upgradeStep":1}}}, +{"id":99354,"name":"Legwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":4338}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":4383},"upgradeStep":1}}}, +{"id":99355,"name":"Gloves of the Barbed Assassin","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1127,0,0,0,1194,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1041,"11":1101,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1083,"11":1147,"22":2250},"upgradeStep":1}}}, +{"id":99356,"name":"Tunic of the Barbed Assassin","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":472,"11":448,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1469,"11":1406,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1530,"11":1464,"22":3600},"upgradeStep":1}}}, +{"id":99357,"name":"Robes of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3795,2290,1567,0,0,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1445,"11":1445,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1505,"11":1505,"22":2829},"upgradeStep":1}}}, +{"id":99358,"name":"Mantle of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2820,1720,1264,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1168,"11":940,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1215,"11":979,"22":2122},"upgradeStep":1}}}, +{"id":99359,"name":"Gloves of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2820,1720,0,0,0,1194,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"7":1101,"11":1041,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"7":1147,"11":1083,"22":1768},"upgradeStep":1}}}, +{"id":99360,"name":"Hood of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3795,2290,0,0,1240,1759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1142,"7":1624,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1190,"7":1690,"22":2298},"upgradeStep":1}}}, +{"id":99361,"name":"Leggings of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,3795,2370,0,0,1705,0,0,0,0,1441,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"6":1577,"11":1331,"22":2449}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"6":1640,"11":1385,"22":2475},"upgradeStep":1}}}, +{"id":99362,"name":"Raiment of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3795,2290,0,0,1442,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1329,"11":1515,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1385,"11":1577,"22":2829},"upgradeStep":1}}}, +{"id":99363,"name":"Shoulderguards of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2820,1720,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":804,"7":1246,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":837,"7":1296,"22":2122},"upgradeStep":1}}}, +{"id":99364,"name":"Shoulderguards of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99365,"name":"Handwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2820,1720,1194,0,0,0,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1101,"11":1041,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1147,"11":1083,"22":1768},"upgradeStep":1}}}, +{"id":99366,"name":"Cowl of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3795,2290,1689,0,0,0,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"11":1253,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"11":1306,"22":2298},"upgradeStep":1}}}, +{"id":99367,"name":"Legwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":2449}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":2475},"upgradeStep":1}}}, +{"id":99368,"name":"Chestguard of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,1162,0,0,1803,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"8":1069,"11":1665,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"8":1115,"11":1733,"22":6842},"upgradeStep":1}}}, +{"id":99369,"name":"Handguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,1365,856,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":430,"8":233,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"7":1262,"8":788,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"7":1312,"8":821,"22":4276},"upgradeStep":1}}}, +{"id":99370,"name":"Faceguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1567,0,0,1567,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":463,"10":463,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1445,"10":1445,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1505,"10":1505,"22":5559},"upgradeStep":1}}}, +{"id":99371,"name":"Legguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[2370,0,3795,0,0,0,0,0,0,1681,0,1482,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"9":1555,"11":1369,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"9":1617,"11":1425,"22":5986},"upgradeStep":1}}}, +{"id":99372,"name":"Legplates of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[2370,0,3795,0,0,0,1729,1400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"6":1599,"7":1293,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"6":1663,"7":1346,"22":5986},"upgradeStep":1}}}, +{"id":99373,"name":"Pauldrons of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99374,"name":"Breastplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3795,2290,1567,0,0,1567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"7":463,"22":4872}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1445,"7":1445,"22":6770}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1505,"7":1505,"22":6842},"upgradeStep":1}}}, +{"id":99375,"name":"Gloves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2820,1720,1194,0,0,0,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":3045}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1101,"11":1041,"22":4231}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1147,"11":1083,"22":4276},"upgradeStep":1}}}, +{"id":99376,"name":"Headguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3795,2290,1689,0,0,0,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3959}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"11":1253,"22":5501}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"11":1306,"22":5559},"upgradeStep":1}}}, +{"id":99377,"name":"Greaves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":4263}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":5924}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":5986},"upgradeStep":1}}}, +{"id":99378,"name":"Mantle of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2820,1720,1264,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":3654}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1168,"11":940,"22":5077}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1215,"11":979,"22":5131},"upgradeStep":1}}}, +{"id":99379,"name":"Helmet of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1641,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1515,"11":1329,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1577,"11":1385,"22":5559},"upgradeStep":1}}}, +{"id":99380,"name":"Gauntlets of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1720,0,2820,0,0,885,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"7":424,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":815,"7":1247,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":849,"7":1296,"22":4276},"upgradeStep":1}}}, +{"id":99381,"name":"Mantle of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2820,1720,1264,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1168,"11":940,"22":2672}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1215,"11":979,"22":2700},"upgradeStep":1}}}, +{"id":99382,"name":"Chestguard of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,1689,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1559,"7":1253,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1623,"7":1306,"22":3600},"upgradeStep":1}}}, +{"id":99383,"name":"Gauntlets of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1189,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":369,"8":337,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1099,"8":1067,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1143,"8":1111,"22":2250},"upgradeStep":1}}}, +{"id":99384,"name":"Crown of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,1592,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1469,"7":1406,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1530,"7":1464,"22":2925},"upgradeStep":1}}}, +{"id":99385,"name":"Legguards of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1843,0,1202,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1705,"8":1109,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1773,"8":1155,"22":3150},"upgradeStep":1}}}, +{"id":99386,"name":"Shoulderguards of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":2700},"upgradeStep":1}}}, +{"id":99387,"name":"Battleplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1469,"11":1406,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1530,"11":1464,"22":6842},"upgradeStep":1}}}, +{"id":99388,"name":"Handwraps of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2820,1720,1194,0,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1101,"7":1041,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1147,"7":1083,"22":2250},"upgradeStep":1}}}, +{"id":99389,"name":"Helm of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3795,2290,1689,0,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2083}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"6":1253,"22":2895}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"6":1306,"22":2925},"upgradeStep":1}}}, +{"id":99390,"name":"Legwraps of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":3117}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":3150},"upgradeStep":1}}}, +{"id":99391,"name":"Vest of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,3795,2290,1689,0,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2564}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"6":1253,"22":3563}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"6":1306,"22":3600},"upgradeStep":1}}}, +{"id":99392,"name":"Grips of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,1194,0,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1101,"11":1041,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1147,"11":1083,"22":2250},"upgradeStep":1}}}, +{"id":99393,"name":"Headpiece of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,1567,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1445,"11":1445,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1505,"11":1505,"22":2925},"upgradeStep":1}}}, +{"id":99394,"name":"Leggings of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1681,1482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1555,"7":1369,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1617,"7":1425,"22":3150},"upgradeStep":1}}}, +{"id":99395,"name":"Spaulders of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":2700},"upgradeStep":1}}}, +{"id":99396,"name":"Tunic of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,1641,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1515,"11":1329,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1577,"11":1385,"22":3600},"upgradeStep":1}}}, +{"id":99397,"name":"Chronomancer Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,0,1194,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1101,"7":1041,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1147,"7":1083,"22":1768},"upgradeStep":1}}}, +{"id":99398,"name":"Chronomancer Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3795,2290,0,0,1240,1759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1142,"7":1624,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1190,"7":1690,"22":2298},"upgradeStep":1}}}, +{"id":99399,"name":"Chronomancer Leggings","icon":"inv_pant_cloth_raidmage_n_01","type":9,"armorType":1,"stats":[0,0,3795,2370,0,0,1705,0,0,0,0,1441,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"6":1577,"11":1331,"22":2449}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"6":1640,"11":1385,"22":2475},"upgradeStep":1}}}, +{"id":99400,"name":"Chronomancer Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3795,2290,0,0,1442,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1329,"11":1515,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1385,"11":1577,"22":2829},"upgradeStep":1}}}, +{"id":99401,"name":"Chronomancer Mantle","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2820,1720,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":804,"7":1246,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":837,"7":1296,"22":2122},"upgradeStep":1}}}, +{"id":99402,"name":"Headguard of the Unblinking Vigil","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2290,3795,0,0,0,1592,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2899}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1469,"7":1406,"22":4028}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1530,"7":1464,"22":4070},"upgradeStep":1}}}, +{"id":99403,"name":"Legguards of the Unblinking Vigil","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2370,3795,0,0,0,0,1564,0,0,0,1632,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"7":1446,"11":1509,"22":4338}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"7":1504,"11":1570,"22":4383},"upgradeStep":1}}}, +{"id":99404,"name":"Spaulders of the Unblinking Vigil","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":3718}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":3757},"upgradeStep":1}}}, +{"id":99405,"name":"Tunic of the Unblinking Vigil","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2290,3795,0,0,0,1592,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":3568}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1469,"7":1406,"22":4957}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1530,"7":1464,"22":5010},"upgradeStep":1}}}, +{"id":99406,"name":"Gloves of the Unblinking Vigil","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1720,2820,0,0,0,1194,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"7":348,"22":2230}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1101,"7":1041,"22":3098}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1147,"7":1083,"22":3131},"upgradeStep":1}}}, +{"id":99407,"name":"Shoulderguards of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99408,"name":"Handguards of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,856,0,0,1365,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":788,"11":1262,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":821,"11":1312,"22":4276},"upgradeStep":1}}}, +{"id":99409,"name":"Faceguard of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,0,0,1567,1567,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"10":1445,"11":1445,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"10":1505,"11":1505,"22":5559},"upgradeStep":1}}}, +{"id":99410,"name":"Legguards of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2370,0,3795,0,0,1681,0,0,0,0,1482,0,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"10":460,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"5":1555,"10":1369,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"5":1617,"10":1425,"22":5986},"upgradeStep":1}}}, +{"id":99411,"name":"Battleplate of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1469,"11":1406,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1530,"11":1464,"22":6842},"upgradeStep":1}}}, +{"id":99412,"name":"Gauntlets of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,885,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"6":424,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":815,"6":1247,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":849,"6":1296,"22":4276},"upgradeStep":1}}}, +{"id":99413,"name":"Legplates of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2370,0,3795,0,0,0,1729,1400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2188,"2":3522,"6":1599,"7":1293,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2278,"2":3657,"6":1663,"7":1346,"22":5986},"upgradeStep":1}}}, +{"id":99414,"name":"Pauldrons of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,1192,0,0,1142,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":1101,"11":1054,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":1145,"11":1097,"22":5131},"upgradeStep":1}}}, +{"id":99415,"name":"Chestguard of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,1162,0,0,1803,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"8":1069,"11":1665,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"8":1115,"11":1733,"22":6842},"upgradeStep":1}}}, +{"id":99416,"name":"Robes of the Horned Nightmare","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,3795,2290,0,0,1442,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1329,"11":1515,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1385,"11":1577,"22":2829},"upgradeStep":1}}}, +{"id":99417,"name":"Mantle of the Horned Nightmare","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2820,1720,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":804,"7":1246,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":837,"7":1296,"22":2122},"upgradeStep":1}}}, +{"id":99418,"name":"Helmet of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,1442,0,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":420,"11":489,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"6":1329,"11":1515,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"6":1385,"11":1577,"22":5559},"upgradeStep":1}}}, +{"id":99419,"name":"Tunic of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,1689,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1559,"7":1253,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1623,"7":1306,"22":3600},"upgradeStep":1}}}, +{"id":99420,"name":"Handguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,1189,0,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"8":337,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1099,"8":1067,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1143,"8":1111,"22":2250},"upgradeStep":1}}}, +{"id":99421,"name":"Headguard of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,1592,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1469,"7":1406,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1530,"7":1464,"22":2925},"upgradeStep":1}}}, +{"id":99422,"name":"Breeches of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1843,0,1202,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1705,"8":1109,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1773,"8":1155,"22":3150},"upgradeStep":1}}}, +{"id":99423,"name":"Shoulderguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1349,872,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1246,"8":804,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1296,"8":837,"22":2700},"upgradeStep":1}}}, +{"id":99424,"name":"Gloves of the Horned Nightmare","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,0,0,1194,0,0,0,1127,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"7":1101,"11":1041,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"7":1147,"11":1083,"22":1768},"upgradeStep":1}}}, +{"id":99425,"name":"Hood of the Horned Nightmare","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3795,2290,0,0,0,1781,0,0,0,1201,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":537,"11":336,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"7":1644,"11":1106,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"7":1711,"11":1152,"22":2298},"upgradeStep":1}}}, +{"id":99426,"name":"Leggings of the Horned Nightmare","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3795,2370,0,0,1705,0,0,0,0,1441,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"6":1577,"11":1331,"22":2449}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"6":1640,"11":1385,"22":2475},"upgradeStep":1}}}, +{"id":99427,"name":"Vestment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3795,2290,0,0,0,1641,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":489,"11":420,"22":2564}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"7":1515,"11":1329,"22":3563}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"7":1577,"11":1385,"22":3600},"upgradeStep":1}}}, +{"id":99428,"name":"Shoulderwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2820,1720,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1923}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":804,"7":1246,"22":2672}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":837,"7":1296,"22":2700},"upgradeStep":1}}}, +{"id":99429,"name":"Legwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,3795,2370,1729,0,0,0,0,0,0,1400,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1599,"11":1293,"22":3117}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1663,"11":1346,"22":3150},"upgradeStep":1}}}, +{"id":99430,"name":"Robes of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3795,2290,1689,0,0,0,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":2564}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"11":1253,"22":3563}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"11":1306,"22":3600},"upgradeStep":1}}}, +{"id":99431,"name":"Mantle of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2820,1720,1264,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1168,"11":940,"22":2672}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1215,"11":979,"22":2700},"upgradeStep":1}}}, +{"id":99432,"name":"Gloves of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2820,1720,0,0,1194,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1101,"7":1041,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1147,"7":1083,"22":2250},"upgradeStep":1}}}, +{"id":99433,"name":"Cover of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,3795,2290,0,0,1280,1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":364,"7":522,"22":2083}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1179,"7":1603,"22":2895}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1228,"7":1668,"22":2925},"upgradeStep":1}}}, +{"id":99434,"name":"Leggings of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,3795,2370,0,0,1705,0,0,0,0,1441,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":2243}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"6":1577,"11":1331,"22":3117}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"6":1640,"11":1385,"22":3150},"upgradeStep":1}}}, +{"id":99435,"name":"Handwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2820,1720,1194,0,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1101,"7":1041,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1147,"7":1083,"22":2250},"upgradeStep":1}}}, +{"id":99436,"name":"Helm of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,3795,2290,1689,0,0,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2083}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"7":1253,"22":2895}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"7":1306,"22":2925},"upgradeStep":1}}}, +{"id":99552,"name":"Handwraps of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2213,1315,917,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":844,"7":803,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":879,"7":836,"22":2097},"upgradeStep":1}}}, +{"id":99553,"name":"Helm of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2979,1746,1300,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2083}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"6":958,"22":2696}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"6":999,"22":2726},"upgradeStep":1}}}, +{"id":99554,"name":"Legwraps of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":2903}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":2936},"upgradeStep":1}}}, +{"id":99555,"name":"Tunic of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,1262,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1163,"11":1018,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1212,"11":1061,"22":3355},"upgradeStep":1}}}, +{"id":99556,"name":"Grips of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,917,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":844,"11":803,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":879,"11":836,"22":2097},"upgradeStep":1}}}, +{"id":99557,"name":"Faceguard of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,0,0,1204,1204,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"10":1109,"11":1109,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"10":1155,"11":1155,"22":5181},"upgradeStep":1}}}, +{"id":99558,"name":"Legguards of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1826,0,2979,0,0,1302,0,0,0,0,1146,0,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"5":529,"10":460,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"5":1203,"10":1058,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"5":1252,"10":1101,"22":5579},"upgradeStep":1}}}, +{"id":99559,"name":"Gauntlets of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,674,1044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"6":424,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":619,"6":964,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":646,"6":1004,"22":3985},"upgradeStep":1}}}, +{"id":99560,"name":"Legplates of the Prehistoric Marauder","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1826,0,2979,0,0,0,1340,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"6":1238,"7":998,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"6":1288,"7":1039,"22":5579},"upgradeStep":1}}}, +{"id":99561,"name":"Pauldrons of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99562,"name":"Chestguard of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,886,0,0,1389,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"8":814,"11":1281,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"8":849,"11":1334,"22":6376},"upgradeStep":1}}}, +{"id":99563,"name":"Handguards of the Prehistoric Marauder","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,651,0,0,1057,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":597,"11":976,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":624,"11":1016,"22":3985},"upgradeStep":1}}}, +{"id":99564,"name":"Legguards of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1826,0,2979,0,0,0,0,0,0,1302,0,1146,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"9":1203,"11":1058,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"9":1252,"11":1101,"22":5579},"upgradeStep":1}}}, +{"id":99565,"name":"Shoulderguards of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":2517},"upgradeStep":1}}}, +{"id":99566,"name":"Battleplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1127,"11":1078,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1175,"11":1123,"22":6376},"upgradeStep":1}}}, +{"id":99567,"name":"Gloves of the Horned Nightmare","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,0,0,917,0,0,0,871,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"7":844,"11":803,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"7":879,"11":836,"22":1648},"upgradeStep":1}}}, +{"id":99568,"name":"Hood of the Horned Nightmare","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,2979,1746,0,0,0,1372,0,0,0,917,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":537,"11":336,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"7":1265,"11":842,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"7":1317,"11":879,"22":2142},"upgradeStep":1}}}, +{"id":99569,"name":"Leggings of the Horned Nightmare","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,2979,1826,0,0,1321,0,0,0,0,1114,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"6":1221,"11":1028,"22":2281}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"6":1270,"11":1070,"22":2307},"upgradeStep":1}}}, +{"id":99570,"name":"Robes of the Horned Nightmare","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,2979,1746,0,0,1106,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1018,"11":1163,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1061,"11":1212,"22":2636},"upgradeStep":1}}}, +{"id":99571,"name":"Helmet of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1262,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1163,"11":1018,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1212,"11":1061,"22":5181},"upgradeStep":1}}}, +{"id":99572,"name":"Greaves of Cyclopean Dread","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1826,0,2979,0,0,0,1340,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"6":1238,"7":998,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"6":1288,"7":1039,"22":5579},"upgradeStep":1}}}, +{"id":99573,"name":"Legguards of the Unblinking Vigil","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,1826,2979,0,0,0,0,1211,0,0,0,1264,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"7":1118,"11":1167,"22":4039}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"7":1163,"11":1215,"22":4085},"upgradeStep":1}}}, +{"id":99574,"name":"Spaulders of the Unblinking Vigil","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":3462}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":3502},"upgradeStep":1}}}, +{"id":99575,"name":"Chronomancer Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,0,917,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":844,"7":803,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":879,"7":836,"22":1648},"upgradeStep":1}}}, +{"id":99576,"name":"Chronomancer Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2979,1746,0,0,947,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":871,"7":1249,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":908,"7":1301,"22":2142},"upgradeStep":1}}}, +{"id":99577,"name":"Tunic of the Unblinking Vigil","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1746,2979,0,0,0,1224,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":3568}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1127,"7":1078,"22":4616}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1175,"7":1123,"22":4669},"upgradeStep":1}}}, +{"id":99578,"name":"Gloves of the Unblinking Vigil","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1315,2213,0,0,0,917,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"7":348,"22":2230}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":844,"7":803,"22":2885}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":879,"7":836,"22":2918},"upgradeStep":1}}}, +{"id":99579,"name":"Hauberk of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2979,1746,0,0,1106,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":3568}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1018,"11":1163,"22":4616}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1061,"11":1212,"22":4669},"upgradeStep":1}}}, +{"id":99580,"name":"Gloves of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2213,1315,0,0,0,917,0,0,0,871,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":2230}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"7":844,"11":803,"22":2885}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"7":879,"11":836,"22":2918},"upgradeStep":1}}}, +{"id":99581,"name":"Legwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":2243}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":2903}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":2936},"upgradeStep":1}}}, +{"id":99582,"name":"Robes of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2979,1746,1300,0,0,0,0,0,0,1041,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":2564}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"11":958,"22":3318}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"11":999,"22":3355},"upgradeStep":1}}}, +{"id":99583,"name":"Mantle of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2213,1315,975,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":899,"11":721,"22":2488}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":936,"11":751,"22":2517},"upgradeStep":1}}}, +{"id":99584,"name":"Robes of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2979,1746,1204,0,0,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1109,"11":1109,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1155,"11":1155,"22":2636},"upgradeStep":1}}}, +{"id":99585,"name":"Mantle of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2213,1315,975,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":899,"11":721,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":936,"11":751,"22":1977},"upgradeStep":1}}}, +{"id":99586,"name":"Gloves of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2213,1315,0,0,0,917,0,0,0,871,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":350,"11":348,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"7":844,"11":803,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"7":879,"11":836,"22":1648},"upgradeStep":1}}}, +{"id":99587,"name":"Hood of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2979,1746,0,0,947,1355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":350,"7":529,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":871,"7":1249,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":908,"7":1301,"22":2142},"upgradeStep":1}}}, +{"id":99588,"name":"Leggings of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,2979,1826,0,0,1321,0,0,0,0,1114,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"6":1221,"11":1028,"22":2281}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"6":1270,"11":1070,"22":2307},"upgradeStep":1}}}, +{"id":99589,"name":"Spaulders of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":2517},"upgradeStep":1}}}, +{"id":99590,"name":"Handwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2213,1315,917,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":844,"11":803,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":879,"11":836,"22":1648},"upgradeStep":1}}}, +{"id":99591,"name":"Cowl of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2979,1746,1300,0,0,0,0,0,0,1041,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"11":958,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"11":999,"22":2142},"upgradeStep":1}}}, +{"id":99592,"name":"Legwraps of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01pant","type":9,"armorType":1,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Vestments of Ternion Glory","setId":1187,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":1763}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":2281}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":2307},"upgradeStep":1}}}, +{"id":99593,"name":"Legguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[1826,0,2979,0,0,0,0,0,0,1302,0,1146,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"9":529,"11":460,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"9":1203,"11":1058,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"9":1252,"11":1101,"22":5579},"upgradeStep":1}}}, +{"id":99594,"name":"Shoulderguards of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99595,"name":"Handguards of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,1057,651,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":430,"8":233,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"7":976,"8":597,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"7":1016,"8":624,"22":3985},"upgradeStep":1}}}, +{"id":99596,"name":"Faceguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1204,0,0,1204,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":463,"10":463,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1109,"10":1109,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1155,"10":1155,"22":5181},"upgradeStep":1}}}, +{"id":99597,"name":"Shoulderguards of the Prehistoric Marauder","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Plate of the Prehistoric Marauder","setId":1179,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99598,"name":"Chestguard of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,886,0,0,1389,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Plate of Winged Triumph","setId":1188,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"8":814,"11":1281,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"8":849,"11":1334,"22":6376},"upgradeStep":1}}}, +{"id":99599,"name":"Headpiece of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,1204,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1109,"11":1109,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1155,"11":1155,"22":2726},"upgradeStep":1}}}, +{"id":99600,"name":"Legguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1302,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1203,"7":1058,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1252,"7":1101,"22":2936},"upgradeStep":1}}}, +{"id":99601,"name":"Mantle of the Horned Nightmare","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2213,1315,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[8],"setName":"Regalia of the Horned Nightmare","setId":1181,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":613,"7":960,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":640,"7":1000,"22":1977},"upgradeStep":1}}}, +{"id":99602,"name":"Helmet of the Prehistoric Marauder","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,1106,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":420,"11":489,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"6":1018,"11":1163,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"6":1061,"11":1212,"22":5181},"upgradeStep":1}}}, +{"id":99603,"name":"Battleplate of the Prehistoric Marauder","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[9],"setName":"Battleplate of the Prehistoric Marauder","setId":1180,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1127,"11":1078,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1175,"11":1123,"22":6376},"upgradeStep":1}}}, +{"id":99604,"name":"Handguards of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,651,0,0,1057,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":233,"11":430,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":597,"11":976,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":624,"11":1016,"22":3985},"upgradeStep":1}}}, +{"id":99605,"name":"Faceguard of Cyclopean Dread","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,0,0,1204,1204,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":463,"11":463,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"10":1109,"11":1109,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"10":1155,"11":1155,"22":5181},"upgradeStep":1}}}, +{"id":99606,"name":"Legguards of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1429,0,926,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1321,"8":854,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1374,"8":889,"22":2936},"upgradeStep":1}}}, +{"id":99607,"name":"Crown of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,1224,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1127,"7":1078,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1175,"7":1123,"22":2726},"upgradeStep":1}}}, +{"id":99608,"name":"Breastplate of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1127,"11":1078,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1175,"11":1123,"22":6376},"upgradeStep":1}}}, +{"id":99609,"name":"Gauntlets of Cyclopean Dread","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,674,0,0,0,0,0,1044,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"11":424,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":619,"11":964,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":646,"11":1004,"22":3985},"upgradeStep":1}}}, +{"id":99610,"name":"Breeches of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1429,0,926,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":585,"8":363,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1321,"8":854,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1374,"8":889,"22":2936},"upgradeStep":1}}}, +{"id":99611,"name":"Handwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2213,1315,917,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":2230}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":844,"7":803,"22":2885}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":879,"7":836,"22":2918},"upgradeStep":1}}}, +{"id":99612,"name":"Faceguard of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2979,1746,1300,0,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2899}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"7":958,"22":3751}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"7":999,"22":3793},"upgradeStep":1}}}, +{"id":99613,"name":"Legwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":4039}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":4085},"upgradeStep":1}}}, +{"id":99614,"name":"Mantle of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2213,1315,975,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":2676}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":899,"11":721,"22":3462}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":936,"11":751,"22":3502},"upgradeStep":1}}}, +{"id":99615,"name":"Cuirass of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,1746,2979,0,0,0,0,1204,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":463,"11":463,"22":3568}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":1109,"11":1109,"22":4616}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":1155,"11":1155,"22":4669},"upgradeStep":1}}}, +{"id":99616,"name":"Grips of Celestial Harmony","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1315,2213,0,0,0,0,871,0,0,0,917,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":2230}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":803,"11":844,"22":2885}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":836,"11":879,"22":2918},"upgradeStep":1}}}, +{"id":99617,"name":"Gloves of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2213,1315,0,0,917,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":350,"7":348,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":844,"7":803,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":879,"7":836,"22":2097},"upgradeStep":1}}}, +{"id":99618,"name":"Cover of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,2979,1746,0,0,978,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":364,"7":522,"22":2083}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":900,"7":1232,"22":2696}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":938,"7":1284,"22":2726},"upgradeStep":1}}}, +{"id":99619,"name":"Leggings of the Shattered Vale","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,2979,1826,0,0,1321,0,0,0,0,1114,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":2243}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"6":1221,"11":1028,"22":2903}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"6":1270,"11":1070,"22":2936},"upgradeStep":1}}}, +{"id":99620,"name":"Vestment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2979,1746,0,0,0,1262,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":489,"11":420,"22":2564}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"7":1163,"11":1018,"22":3318}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"7":1212,"11":1061,"22":3355},"upgradeStep":1}}}, +{"id":99621,"name":"Shoulderwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2213,1315,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Regalia of the Shattered Vale","setId":1197,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1923}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":613,"7":960,"22":2488}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":640,"7":1000,"22":2517},"upgradeStep":1}}}, +{"id":99622,"name":"Tunic of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,1300,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1198,"7":958,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1248,"7":999,"22":3355},"upgradeStep":1}}}, +{"id":99623,"name":"Handguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,919,0,887,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":369,"8":337,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":849,"8":817,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":883,"8":851,"22":2097},"upgradeStep":1}}}, +{"id":99624,"name":"Headguard of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,1224,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1127,"7":1078,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1175,"7":1123,"22":2726},"upgradeStep":1}}}, +{"id":99625,"name":"Gauntlets of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1315,0,2213,0,0,674,0,1044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":243,"7":424,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":619,"7":964,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":646,"7":1004,"22":3985},"upgradeStep":1}}}, +{"id":99626,"name":"Breastplate of Winged Triumph","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2979,1746,1204,0,0,1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"7":463,"22":4872}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1109,"7":1109,"22":6304}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1155,"7":1155,"22":6376},"upgradeStep":1}}}, +{"id":99627,"name":"Raiment of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2979,1746,0,0,1106,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1018,"11":1163,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1061,"11":1212,"22":2636},"upgradeStep":1}}}, +{"id":99628,"name":"Shoulderguards of the Ternion Glory","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2213,1315,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[5],"setName":"Regalia of Ternion Glory","setId":1186,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":613,"7":960,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":640,"7":1000,"22":1977},"upgradeStep":1}}}, +{"id":99629,"name":"Tunic of the Barbed Assassin","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":472,"11":448,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":1127,"11":1078,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":1175,"11":1123,"22":3355},"upgradeStep":1}}}, +{"id":99630,"name":"Gloves of the Barbed Assassin","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,0,871,0,0,0,917,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":348,"11":350,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":803,"11":844,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":836,"11":879,"22":2097},"upgradeStep":1}}}, +{"id":99631,"name":"Helmet of the Barbed Assassin","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,0,1138,0,0,0,1243,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":1048,"11":1145,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":1092,"11":1193,"22":2726},"upgradeStep":1}}}, +{"id":99632,"name":"Raiment of the Shattered Vale","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,1262,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1163,"11":1018,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1212,"11":1061,"22":3355},"upgradeStep":1}}}, +{"id":99633,"name":"Grips of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,917,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Battlegear of the Shattered Vale","setId":1199,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":350,"11":348,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":844,"11":803,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":879,"11":836,"22":2097},"upgradeStep":1}}}, +{"id":99634,"name":"Legguards of the Barbed Assassin","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1302,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1203,"7":1058,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1252,"7":1101,"22":2936},"upgradeStep":1}}}, +{"id":99635,"name":"Spaulders of the Barbed Assassin","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[6],"setName":"Barbed Assassin Battlegear","setId":1185,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":2517},"upgradeStep":1}}}, +{"id":99636,"name":"Tunic of Celestial Harmony","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2979,1746,1300,0,0,0,0,0,0,1041,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Vestment","setId":1184,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3568}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"11":958,"22":4616}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"11":999,"22":4669},"upgradeStep":1}}}, +{"id":99637,"name":"Handwraps of the Shattered Vale","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2213,1315,917,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"7":348,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":844,"7":803,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":879,"7":836,"22":2097},"upgradeStep":1}}}, +{"id":99638,"name":"Helm of the Shattered Vale","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,0,2979,1746,1300,0,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Vestments of the Shattered Vale","setId":1198,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"7":392,"22":2083}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"7":958,"22":2696}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"7":999,"22":2726},"upgradeStep":1}}}, +{"id":99639,"name":"Pauldrons of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Battleplate of Cyclopean Dread","setId":1200,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99640,"name":"Chestguard of Cyclopean Dread","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,886,0,0,1389,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"11":545,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"8":814,"11":1281,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"8":849,"11":1334,"22":6376},"upgradeStep":1}}}, +{"id":99641,"name":"Vest of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,2979,1746,1300,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":2564}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"6":958,"22":3318}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"6":999,"22":3355},"upgradeStep":1}}}, +{"id":99642,"name":"Mantle of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2213,1315,975,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Vestments of Seven Sacred Seals","setId":1192,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":1923}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":899,"11":721,"22":2488}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":936,"11":751,"22":2517},"upgradeStep":1}}}, +{"id":99643,"name":"Chestguard of Seven Sacred Seals","icon":"inv_chest_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,1300,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":505,"7":392,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1198,"7":958,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1248,"7":999,"22":3355},"upgradeStep":1}}}, +{"id":99644,"name":"Gauntlets of Seven Sacred Seals","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,0,919,887,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Armor of Seven Sacred Seals","setId":1191,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":369,"8":337,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":849,"8":817,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":883,"8":851,"22":2097},"upgradeStep":1}}}, +{"id":99645,"name":"Headpiece of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2979,1746,0,0,0,978,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":364,"11":522,"22":2899}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"7":900,"11":1232,"22":3751}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"7":938,"11":1284,"22":3793},"upgradeStep":1}}}, +{"id":99646,"name":"Leggings of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":3122}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":4039}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":4085},"upgradeStep":1}}}, +{"id":99647,"name":"Shoulderwraps of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2213,1315,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Regalia","setId":1182,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":2676}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":613,"7":960,"22":3462}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":640,"7":1000,"22":3502},"upgradeStep":1}}}, +{"id":99648,"name":"Gloves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2213,1315,917,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":350,"11":348,"22":3045}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":844,"11":803,"22":3940}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":879,"11":836,"22":3985},"upgradeStep":1}}}, +{"id":99649,"name":"Helmet of Celestial Harmony","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,1746,2979,0,0,0,0,1138,0,0,0,1243,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":434,"11":480,"22":2899}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":1048,"11":1145,"22":3751}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":1092,"11":1193,"22":3793},"upgradeStep":1}}}, +{"id":99650,"name":"Legguards of Celestial Harmony","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,1826,2979,0,0,0,0,1211,0,0,0,1264,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":488,"11":512,"22":3122}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"7":1118,"11":1167,"22":4039}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"7":1163,"11":1215,"22":4085},"upgradeStep":1}}}, +{"id":99651,"name":"Helmet of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1262,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":489,"11":420,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1163,"11":1018,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1212,"11":1061,"22":5181},"upgradeStep":1}}}, +{"id":99652,"name":"Shoulderguards of Cyclopean Dread","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[10],"setName":"Plate of Cyclopean Dread","setId":1201,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99653,"name":"Headpiece of Seven Sacred Seals","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,1204,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":463,"11":463,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1109,"11":1109,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1155,"11":1155,"22":2726},"upgradeStep":1}}}, +{"id":99654,"name":"Leggings of Seven Sacred Seals","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1302,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"7":460,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1203,"7":1058,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1252,"7":1101,"22":2936},"upgradeStep":1}}}, +{"id":99655,"name":"Spaulders of Seven Sacred Seals","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[11],"setName":"Battlegear of Seven Sacred Seals","setId":1193,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":2517},"upgradeStep":1}}}, +{"id":99656,"name":"Mantle of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2213,1315,975,0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":384,"11":300,"22":3654}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":899,"11":721,"22":4728}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":936,"11":751,"22":4782},"upgradeStep":1}}}, +{"id":99657,"name":"Chronomancer Leggings","icon":"inv_pant_cloth_raidmage_n_01","type":9,"armorType":1,"stats":[0,0,2979,1826,0,0,1321,0,0,0,0,1114,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":537,"11":446,"22":1763}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"6":1221,"11":1028,"22":2281}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"6":1270,"11":1070,"22":2307},"upgradeStep":1}}}, +{"id":99658,"name":"Chronomancer Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2979,1746,0,0,1106,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":420,"11":489,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1018,"11":1163,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1061,"11":1212,"22":2636},"upgradeStep":1}}}, +{"id":99659,"name":"Chronomancer Mantle","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2213,1315,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[3],"setName":"Chronomancer Regalia","setId":1194,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":249,"7":414,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":613,"7":960,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":640,"7":1000,"22":1977},"upgradeStep":1}}}, +{"id":99660,"name":"Headguard of the Unblinking Vigil","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1746,2979,0,0,0,1224,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[2],"setName":"Battlegear of the Unblinking Vigil","setId":1195,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":472,"7":448,"22":2899}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1127,"7":1078,"22":3751}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1175,"7":1123,"22":3793},"upgradeStep":1}}}, +{"id":99661,"name":"Legplates of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[1826,0,2979,0,0,0,1340,1081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":545,"7":432,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1683,"2":2765,"6":1238,"7":998,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1753,"2":2870,"6":1288,"7":1039,"22":5579},"upgradeStep":1}}}, +{"id":99662,"name":"Pauldrons of Winged Triumph","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,918,0,0,879,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Winged Triumph","setId":1190,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":360,"11":342,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":846,"11":810,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":882,"11":844,"22":4782},"upgradeStep":1}}}, +{"id":99663,"name":"Spaulders of Celestial Harmony","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[7],"setName":"Celestial Harmony Battlegear","setId":1183,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":2676}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":3462}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":3502},"upgradeStep":1}}}, +{"id":99664,"name":"Shoulderguards of the Shattered Vale","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,1041,667,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1],"setName":"Armor of the Shattered Vale","setId":1196,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":414,"8":249,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":960,"8":613,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":1000,"8":640,"22":2517},"upgradeStep":1}}}, +{"id":99665,"name":"Headguard of Winged Triumph","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2979,1746,1300,0,0,0,0,0,0,1041,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"11":392,"22":3959}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"11":958,"22":5122}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"11":999,"22":5181},"upgradeStep":1}}}, +{"id":99666,"name":"Greaves of Winged Triumph","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,2979,1826,1340,0,0,0,0,0,0,1081,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"quality":4,"classAllowlist":[4],"setName":"Vestments of Winged Triumph","setId":1189,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":545,"11":432,"22":4263}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1238,"11":998,"22":5516}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1288,"11":1039,"22":5579},"upgradeStep":1}}}, +{"id":99766,"name":"Tyrannical Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias2_c_01alliance","type":13,"weaponType":1,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99767,"name":"Tyrannical Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99768,"name":"Tyrannical Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99769,"name":"Tyrannical Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99770,"name":"Tyrannical Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99771,"name":"Tyrannical Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99772,"name":"Tyrannical Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99773,"name":"Tyrannical Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":99774,"name":"Tyrannical Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":99775,"name":"Tyrannical Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":99776,"name":"Tyrannical Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":399,"11":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":414,"11":506},"upgradeStep":1}}}, +{"id":99777,"name":"Tyrannical Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99778,"name":"Tyrannical Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":99779,"name":"Tyrannical Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":99780,"name":"Tyrannical Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99781,"name":"Tyrannical Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1300},"upgradeStep":1}}}, +{"id":99782,"name":"Tyrannical Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_f_01belt","type":8,"armorType":1,"stats":[0,0,1469,899,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":99783,"name":"Tyrannical Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":99784,"name":"Tyrannical Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":99785,"name":"Tyrannical Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_f_01boot","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":1588},"upgradeStep":1}}}, +{"id":99786,"name":"Tyrannical Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":99787,"name":"Tyrannical Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_f_01bracer","type":6,"armorType":1,"stats":[0,0,1101,734,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":99788,"name":"Tyrannical Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1011},"upgradeStep":1}}}, +{"id":99789,"name":"Tyrannical Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":99790,"name":"Tyrannical Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":99791,"name":"Tyrannical Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":99792,"name":"Tyrannical Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1155},"upgradeStep":1}}}, +{"id":99793,"name":"Tyrannical Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias2_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480},"upgradeStep":1}}}, +{"id":99794,"name":"Tyrannical Gladiator's Barrier","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":99795,"name":"Tyrannical Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99796,"name":"Tyrannical Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias2_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,0,0,895,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"6":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"6":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":99797,"name":"Tyrannical Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":99798,"name":"Tyrannical Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":506,"11":414},"upgradeStep":1}}}, +{"id":99799,"name":"Tyrannical Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":99800,"name":"Tyrannical Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":99801,"name":"Tyrannical Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"7":414},"upgradeStep":1}}}, +{"id":99802,"name":"Tyrannical Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":99803,"name":"Tyrannical Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480},"upgradeStep":1}}}, +{"id":99804,"name":"Tyrannical Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99805,"name":"Tyrannical Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99806,"name":"Tyrannical Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":99807,"name":"Tyrannical Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":99808,"name":"Tyrannical Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":99809,"name":"Tyrannical Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":99810,"name":"Tyrannical Gladiator's Dreadplate Shoulders","icon":"inv_shoulders_plate_pvpdeathknight_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":99811,"name":"Tyrannical Gladiator's Dragonhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":99812,"name":"Tyrannical Gladiator's Dragonhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":99813,"name":"Tyrannical Gladiator's Dragonhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":99814,"name":"Tyrannical Gladiator's Dragonhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":99815,"name":"Tyrannical Gladiator's Dragonhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":99816,"name":"Tyrannical Gladiator's Belt of Meditation","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":99817,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":99818,"name":"Tyrannical Gladiator's Bindings of Meditation","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":99819,"name":"Tyrannical Gladiator's Kodohide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":99820,"name":"Tyrannical Gladiator's Kodohide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":99821,"name":"Tyrannical Gladiator's Kodohide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":99822,"name":"Tyrannical Gladiator's Kodohide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":99823,"name":"Tyrannical Gladiator's Kodohide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":99824,"name":"Tyrannical Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03alliance","type":13,"weaponType":8,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":7847,"weaponDamageMax":11771,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":7560,"weaponDamageMax":11340,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99825,"name":"Tyrannical Gladiator's Belt of Cruelty","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":99826,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":99827,"name":"Tyrannical Gladiator's Bindings of Prowess","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1287},"upgradeStep":1}}}, +{"id":99828,"name":"Tyrannical Gladiator's Wyrmhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":99829,"name":"Tyrannical Gladiator's Wyrmhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":2389},"upgradeStep":1}}}, +{"id":99830,"name":"Tyrannical Gladiator's Wyrmhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2573},"upgradeStep":1}}}, +{"id":99831,"name":"Tyrannical Gladiator's Wyrmhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":99832,"name":"Tyrannical Gladiator's Wyrmhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":99833,"name":"Tyrannical Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99834,"name":"Tyrannical Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99835,"name":"Tyrannical Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99836,"name":"Tyrannical Gladiator's Redoubt","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":99837,"name":"Tyrannical Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias2_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,895,0,0,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"4":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"4":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":99838,"name":"Tyrannical Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":99839,"name":"Tyrannical Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":99840,"name":"Tyrannical Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":99841,"name":"Tyrannical Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":99842,"name":"Tyrannical Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":99843,"name":"Tyrannical Gladiator's Sabatons of Cruelty","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":99844,"name":"Tyrannical Gladiator's Sabatons of Alacrity","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":99845,"name":"Tyrannical Gladiator's Wristguards of Alacrity","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1790},"upgradeStep":1}}}, +{"id":99846,"name":"Tyrannical Gladiator's Wristguards of Accuracy","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":99847,"name":"Tyrannical Gladiator's Chain Armor","icon":"inv_mail_pvphunter_f_01chest","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":99848,"name":"Tyrannical Gladiator's Chain Gauntlets","icon":"inv_mail_pvphunter_f_01glove","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":99849,"name":"Tyrannical Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":99850,"name":"Tyrannical Gladiator's Chain Leggings","icon":"inv_mail_pvphunter_f_01pant","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":99851,"name":"Tyrannical Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":99852,"name":"Tyrannical Gladiator's Silk Handguards","icon":"inv_gloves_cloth_pvpmage_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":99853,"name":"Tyrannical Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":99854,"name":"Tyrannical Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":99855,"name":"Tyrannical Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":99856,"name":"Tyrannical Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":99857,"name":"Tyrannical Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":99858,"name":"Tyrannical Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":99859,"name":"Tyrannical Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":99860,"name":"Tyrannical Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":99861,"name":"Tyrannical Gladiator's Ironskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":99862,"name":"Tyrannical Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":99863,"name":"Tyrannical Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":99864,"name":"Tyrannical Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":99865,"name":"Tyrannical Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":99866,"name":"Tyrannical Gladiator's Copperskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":99867,"name":"Tyrannical Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":99868,"name":"Tyrannical Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":99869,"name":"Tyrannical Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":99870,"name":"Tyrannical Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_f_01white","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":99871,"name":"Tyrannical Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_f_01white","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":99872,"name":"Tyrannical Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_f_01white","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":99873,"name":"Tyrannical Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_f_01white","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":99874,"name":"Tyrannical Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_f_01white","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":99875,"name":"Tyrannical Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_f_01white","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":3143},"upgradeStep":1}}}, +{"id":99876,"name":"Tyrannical Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_f_01white","type":8,"armorType":4,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":99877,"name":"Tyrannical Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_f_01white","type":10,"armorType":4,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":99878,"name":"Tyrannical Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_f_01white","type":10,"armorType":4,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":99879,"name":"Tyrannical Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_f_01white","type":6,"armorType":4,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":2445},"upgradeStep":1}}}, +{"id":99880,"name":"Tyrannical Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_f_01white","type":6,"armorType":4,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":2445},"upgradeStep":1}}}, +{"id":99881,"name":"Tyrannical Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_f_01white","type":5,"armorType":4,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":99882,"name":"Tyrannical Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_f_01white","type":7,"armorType":4,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":3493},"upgradeStep":1}}}, +{"id":99883,"name":"Tyrannical Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_f_01white","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":99884,"name":"Tyrannical Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_f_01white","type":9,"armorType":4,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4890},"upgradeStep":1}}}, +{"id":99885,"name":"Tyrannical Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_f_01white","type":3,"armorType":4,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":4191},"upgradeStep":1}}}, +{"id":99886,"name":"Tyrannical Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":99887,"name":"Tyrannical Gladiator's Girdle of Prowess","icon":"inv_belt_pvpwarrior_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,573,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"11":570,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"11":594,"22":3143},"upgradeStep":1}}}, +{"id":99888,"name":"Tyrannical Gladiator's Warboots of Cruelty","icon":"inv_boots_pvpwarrior_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":99889,"name":"Tyrannical Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpdeathknight_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":99890,"name":"Tyrannical Gladiator's Armplates of Proficiency","icon":"inv_bracers_pvpwarrior_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506,"22":2445},"upgradeStep":1}}}, +{"id":99891,"name":"Tyrannical Gladiator's Armplates of Alacrity","icon":"inv_bracers_plate_pvpdeathknight_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":487,"11":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":506,"11":414,"22":2445},"upgradeStep":1}}}, +{"id":99892,"name":"Tyrannical Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99893,"name":"Tyrannical Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1444},"upgradeStep":1}}}, +{"id":99894,"name":"Tyrannical Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":99895,"name":"Tyrannical Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2022},"upgradeStep":1}}}, +{"id":99896,"name":"Tyrannical Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":99897,"name":"Tyrannical Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":99898,"name":"Tyrannical Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":99899,"name":"Tyrannical Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":1877},"upgradeStep":1}}}, +{"id":99900,"name":"Tyrannical Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2022},"upgradeStep":1}}}, +{"id":99901,"name":"Tyrannical Gladiator's Satin Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":99902,"name":"Tyrannical Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":99903,"name":"Tyrannical Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":99904,"name":"Tyrannical Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":99905,"name":"Tyrannical Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1287},"upgradeStep":1}}}, +{"id":99906,"name":"Tyrannical Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":99907,"name":"Tyrannical Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":99908,"name":"Tyrannical Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":99909,"name":"Tyrannical Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":99910,"name":"Tyrannical Gladiator's Leather Spaulders","icon":"inv_shoulders_leather_pvprogue_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":99911,"name":"Tyrannical Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":99912,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":99913,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":99914,"name":"Tyrannical Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1790},"upgradeStep":1}}}, +{"id":99915,"name":"Tyrannical Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":99916,"name":"Tyrannical Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":99917,"name":"Tyrannical Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":2557},"upgradeStep":1}}}, +{"id":99918,"name":"Tyrannical Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":99919,"name":"Tyrannical Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":3580},"upgradeStep":1}}}, +{"id":99920,"name":"Tyrannical Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":99921,"name":"Tyrannical Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":99922,"name":"Tyrannical Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":99923,"name":"Tyrannical Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":99924,"name":"Tyrannical Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":99925,"name":"Tyrannical Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":99926,"name":"Tyrannical Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":99927,"name":"Tyrannical Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":99928,"name":"Tyrannical Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":99929,"name":"Tyrannical Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":3325},"upgradeStep":1}}}, +{"id":99930,"name":"Tyrannical Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":3580},"upgradeStep":1}}}, +{"id":99931,"name":"Tyrannical Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":99932,"name":"Tyrannical Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias2_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":5237,"weaponDamageMax":7857,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":5046,"weaponDamageMax":7570,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99933,"name":"Tyrannical Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99934,"name":"Tyrannical Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99935,"name":"Tyrannical Gladiator's Render","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99936,"name":"Tyrannical Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias2_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":3072,"weaponDamageMax":5706,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99937,"name":"Tyrannical Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99938,"name":"Tyrannical Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99939,"name":"Tyrannical Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,384,0,0,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"4":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"4":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99940,"name":"Tyrannical Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99941,"name":"Tyrannical Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99942,"name":"Tyrannical Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":7565,"weaponDamageMax":11349,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99943,"name":"Tyrannical Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99944,"name":"Tyrannical Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"7":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"7":506,"22":1155},"upgradeStep":1}}}, +{"id":99945,"name":"Tyrannical Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":99946,"name":"Tyrannical Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":99947,"name":"Tyrannical Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"7":414},"upgradeStep":1}}}, +{"id":99948,"name":"Tyrannical Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":99949,"name":"Tyrannical Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":99950,"name":"Tyrannical Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":99951,"name":"Tyrannical Gladiator's Shield Wall","icon":"inv_shield_pvppandarias2_c_01","type":13,"weaponType":7,"handType":3,"stats":[748,0,1122,0,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"0":694,"2":1041,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":99952,"name":"Tyrannical Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_f_01glove","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":99953,"name":"Tyrannical Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_f_01helm","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":99954,"name":"Tyrannical Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_f_01pant","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":99955,"name":"Tyrannical Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_f_01robe","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":99956,"name":"Tyrannical Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_f_01shoulder","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":99957,"name":"Tyrannical Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":99958,"name":"Tyrannical Gladiator's Plate Gauntlets","icon":"inv_gauntlet_pvpwarrior_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":99959,"name":"Tyrannical Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":99960,"name":"Tyrannical Gladiator's Plate Legguards","icon":"inv_pants_pvpwarrior_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":99961,"name":"Tyrannical Gladiator's Plate Shoulders","icon":"inv_shoulders_plate_pvpwarrior_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":99962,"name":"Tyrannical Gladiator's Shiv","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":4583,"weaponDamageMax":8512,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4254,"weaponDamageMax":7900,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":4415,"weaponDamageMax":8200,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99963,"name":"Tyrannical Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99964,"name":"Tyrannical Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias1_d_01","type":14,"rangedWeaponType":1,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99965,"name":"Tyrannical Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99966,"name":"Tyrannical Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99967,"name":"Tyrannical Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias2_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2036,"weaponDamageMax":3783,"weaponSpeed":1.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":1890,"weaponDamageMax":3511,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":1962,"weaponDamageMax":3645,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99968,"name":"Tyrannical Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03horde","type":13,"weaponType":8,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":7847,"weaponDamageMax":11771,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":7283,"weaponDamageMax":10925,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":7560,"weaponDamageMax":11340,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99969,"name":"Tyrannical Gladiator's Baton of Light","icon":"inv_wand_1h_pvp410_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,863,575,384,0,0,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":2418,"weaponDamageMax":4492,"weaponSpeed":1.9,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":2245,"weaponDamageMax":4170,"stats":{"2":801,"3":534,"4":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":2330,"weaponDamageMax":4328,"stats":{"2":831,"3":554,"4":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99970,"name":"Tyrannical Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias1_c_01","type":14,"rangedWeaponType":3,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99971,"name":"Tyrannical Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias2_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,863,575,0,0,384,0,0,0,0,384,0,0,7689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":3310,"weaponDamageMax":6147,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"498":{"randPropPoints":1016,"weaponDamageMin":3072,"weaponDamageMax":5706,"stats":{"2":801,"3":534,"6":356,"11":356,"14":7141}},"502":{"randPropPoints":1054,"weaponDamageMin":3189,"weaponDamageMax":5922,"stats":{"2":831,"3":554,"6":370,"11":370,"14":7408},"upgradeStep":1}}}, +{"id":99972,"name":"Tyrannical Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99973,"name":"Tyrannical Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99974,"name":"Tyrannical Gladiator's Battle Staff","icon":"inv_stave_2h_pvppandarias2_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,0,0,895,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"6":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"6":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":99975,"name":"Tyrannical Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99976,"name":"Tyrannical Gladiator's Shanker","icon":"inv_knife_1h_pvppandarias2_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":5237,"weaponDamageMax":7857,"weaponSpeed":1.8,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":4861,"weaponDamageMax":7293,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":5046,"weaponDamageMax":7570,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99977,"name":"Tyrannical Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99978,"name":"Tyrannical Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias2_c_01","type":13,"weaponType":1,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99979,"name":"Tyrannical Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":7565,"weaponDamageMax":11349,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":7022,"weaponDamageMax":10534,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":7289,"weaponDamageMax":10934,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99980,"name":"Tyrannical Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias1_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99981,"name":"Tyrannical Gladiator's Energy Staff","icon":"inv_stave_2h_pvppandarias2_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2014,1343,895,0,0,0,0,0,0,895,0,0,7690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":3923,"weaponDamageMax":5885,"weaponSpeed":2,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"498":{"randPropPoints":2370,"weaponDamageMin":3641,"weaponDamageMax":5463,"stats":{"2":1869,"3":1246,"4":831,"11":831,"14":7139}},"502":{"randPropPoints":2460,"weaponDamageMin":3780,"weaponDamageMax":5670,"stats":{"2":1940,"3":1294,"4":862,"11":862,"14":7410},"upgradeStep":1}}}, +{"id":99982,"name":"Tyrannical Gladiator's Render","icon":"inv_hand_1h_pvppandarias2_c_01","type":13,"weaponType":3,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99983,"name":"Tyrannical Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias2_c_01","type":13,"weaponType":4,"handType":2,"stats":[575,0,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"0":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"0":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99984,"name":"Tyrannical Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias2_c_01horde","type":13,"weaponType":1,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99985,"name":"Tyrannical Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1343,0,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":14124,"weaponDamageMax":21187,"weaponSpeed":3.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":13110,"weaponDamageMax":19666,"stats":{"0":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":13608,"weaponDamageMax":20412,"stats":{"0":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99986,"name":"Tyrannical Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias2_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,575,863,0,0,0,384,0,0,0,0,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1094,"weaponDamageMin":6620,"weaponDamageMax":12295,"weaponSpeed":2.6,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"498":{"randPropPoints":1016,"weaponDamageMin":6144,"weaponDamageMax":11412,"stats":{"1":534,"2":801,"6":356,"11":356}},"502":{"randPropPoints":1054,"weaponDamageMin":6378,"weaponDamageMax":11845,"stats":{"1":554,"2":831,"6":370,"11":370},"upgradeStep":1}}}, +{"id":99987,"name":"Tyrannical Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1343,2014,0,0,0,895,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2553,"weaponDamageMin":11770,"weaponDamageMax":17656,"weaponSpeed":3,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"498":{"randPropPoints":2370,"weaponDamageMin":10925,"weaponDamageMax":16388,"stats":{"1":1246,"2":1869,"6":831,"11":831}},"502":{"randPropPoints":2460,"weaponDamageMin":11340,"weaponDamageMax":17010,"stats":{"1":1294,"2":1940,"6":862,"11":862},"upgradeStep":1}}}, +{"id":99988,"name":"Tyrannical Gladiator's Wyrmhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":99989,"name":"Tyrannical Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1444},"upgradeStep":1}}}, +{"id":99990,"name":"Tyrannical Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":99991,"name":"Tyrannical Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":99992,"name":"Tyrannical Gladiator's Plate Gauntlets","icon":"inv_gauntlet_pvpwarrior_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":99993,"name":"Tyrannical Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":99994,"name":"Tyrannical Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_f_01boot","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":1588},"upgradeStep":1}}}, +{"id":99996,"name":"Tyrannical Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2022},"upgradeStep":1}}}, +{"id":99998,"name":"Tyrannical Gladiator's Satin Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":100001,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":100004,"name":"Tyrannical Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":100006,"name":"Tyrannical Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":100009,"name":"Tyrannical Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":100010,"name":"Tyrannical Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":100011,"name":"Tyrannical Gladiator's Copperskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":100012,"name":"Tyrannical Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":100013,"name":"Tyrannical Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_plate_pvppaladin_f_01red","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":100014,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":100015,"name":"Tyrannical Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_f_01red","type":5,"armorType":4,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":100016,"name":"Tyrannical Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100017,"name":"Tyrannical Gladiator's Wyrmhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":2389},"upgradeStep":1}}}, +{"id":100018,"name":"Tyrannical Gladiator's Ornamented Headcover","icon":"inv_helmet_plate_pvppaladin_f_01red","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":100019,"name":"Tyrannical Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100020,"name":"Tyrannical Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":100021,"name":"Tyrannical Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_f_01red","type":10,"armorType":4,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":100022,"name":"Tyrannical Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_f_01red","type":10,"armorType":4,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":100023,"name":"Tyrannical Gladiator's Girdle of Accuracy","icon":"inv_belt_plate_pvpdeathknight_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":100024,"name":"Tyrannical Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"7":414},"upgradeStep":1}}}, +{"id":100025,"name":"Tyrannical Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":100026,"name":"Tyrannical Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100027,"name":"Tyrannical Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":100028,"name":"Tyrannical Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_f_01","type":8,"armorType":3,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":100029,"name":"Tyrannical Gladiator's Sabatons of Alacrity","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":100030,"name":"Tyrannical Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":100031,"name":"Tyrannical Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":100032,"name":"Tyrannical Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":100033,"name":"Tyrannical Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"7":414},"upgradeStep":1}}}, +{"id":100034,"name":"Tyrannical Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_f_01","type":7,"armorType":4,"stats":[899,0,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"5":526,"6":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"5":549,"6":629,"22":3493},"upgradeStep":1}}}, +{"id":100035,"name":"Tyrannical Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":100036,"name":"Tyrannical Gladiator's Dreadplate Shoulders","icon":"inv_shoulders_plate_pvpdeathknight_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":100037,"name":"Tyrannical Gladiator's Dragonhide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":100038,"name":"Tyrannical Gladiator's Dragonhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":100039,"name":"Tyrannical Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_f_01","type":3,"armorType":3,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":3069},"upgradeStep":1}}}, +{"id":100040,"name":"Tyrannical Gladiator's Ironskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":100041,"name":"Tyrannical Gladiator's Kodohide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":1838},"upgradeStep":1}}}, +{"id":100042,"name":"Tyrannical Gladiator's Kodohide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":100043,"name":"Tyrannical Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100044,"name":"Tyrannical Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":100045,"name":"Tyrannical Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_f_01robe","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":100046,"name":"Tyrannical Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_f_01belt","type":8,"armorType":1,"stats":[0,0,1469,899,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":100047,"name":"Tyrannical Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":100048,"name":"Tyrannical Gladiator's Footguards of Alacrity","icon":"inv_boots_mail_pvpshaman_f_01","type":10,"armorType":3,"stats":[0,0,1469,899,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":532,"7":570,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":552,"7":594,"22":2813},"upgradeStep":1}}}, +{"id":100049,"name":"Tyrannical Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_f_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1790},"upgradeStep":1}}}, +{"id":100050,"name":"Tyrannical Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":100051,"name":"Tyrannical Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":100052,"name":"Tyrannical Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":2302},"upgradeStep":1}}}, +{"id":100053,"name":"Tyrannical Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":100054,"name":"Tyrannical Gladiator's Chain Leggings","icon":"inv_mail_pvphunter_f_01pant","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":100055,"name":"Tyrannical Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":100056,"name":"Tyrannical Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":100057,"name":"Tyrannical Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":100058,"name":"Tyrannical Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"496":{"randPropPoints":1728,"stats":{"4":1152}},"500":{"randPropPoints":1793,"stats":{"4":1195},"upgradeStep":1}}}, +{"id":100059,"name":"Tyrannical Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":100060,"name":"Tyrannical Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":100061,"name":"Tyrannical Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_f_01","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":100062,"name":"Tyrannical Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":100063,"name":"Tyrannical Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_f_01","type":8,"armorType":3,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":2302},"upgradeStep":1}}}, +{"id":100064,"name":"Tyrannical Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":100065,"name":"Tyrannical Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,734,1101,0,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":399,"11":487}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":414,"11":506},"upgradeStep":1}}}, +{"id":100066,"name":"Tyrannical Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":100067,"name":"Tyrannical Gladiator's Mooncloth Robe","icon":"inv_robe_cloth_pvppriest_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":100068,"name":"Tyrannical Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_f_01shoulder","type":3,"armorType":1,"stats":[0,0,1469,899,0,0,0,653,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":606,"11":526,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":629,"11":549,"22":1733},"upgradeStep":1}}}, +{"id":100069,"name":"Tyrannical Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,734,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":100070,"name":"Tyrannical Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1300},"upgradeStep":1}}}, +{"id":100071,"name":"Tyrannical Gladiator's Plate Shoulders","icon":"inv_shoulders_plate_pvpwarrior_f_01","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":100072,"name":"Tyrannical Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":100073,"name":"Tyrannical Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_f_01bracer","type":6,"armorType":1,"stats":[0,0,1101,734,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"5":487,"6":399,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"5":506,"6":414,"22":1011},"upgradeStep":1}}}, +{"id":100074,"name":"Tyrannical Gladiator's Wristguards of Alacrity","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1790},"upgradeStep":1}}}, +{"id":100075,"name":"Tyrannical Gladiator's Chain Armor","icon":"inv_mail_pvphunter_f_01chest","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":100076,"name":"Tyrannical Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":100077,"name":"Tyrannical Gladiator's Bindings of Meditation","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":100078,"name":"Tyrannical Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":100079,"name":"Tyrannical Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":3325},"upgradeStep":1}}}, +{"id":100080,"name":"Tyrannical Gladiator's Belt of Cruelty","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":1654},"upgradeStep":1}}}, +{"id":100081,"name":"Tyrannical Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_f_01red","type":6,"armorType":4,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":2445},"upgradeStep":1}}}, +{"id":100082,"name":"Tyrannical Gladiator's Wyrmhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":100083,"name":"Tyrannical Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_f_01red","type":3,"armorType":4,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":4191},"upgradeStep":1}}}, +{"id":100084,"name":"Tyrannical Gladiator's Warboots of Cruelty","icon":"inv_boots_pvpwarrior_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":570,"11":532,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":594,"11":552,"22":3842},"upgradeStep":1}}}, +{"id":100085,"name":"Tyrannical Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100086,"name":"Tyrannical Gladiator's Wyrmhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,0,1469,899,0,0,0,573,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"7":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"7":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":100087,"name":"Tyrannical Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":506,"7":414},"upgradeStep":1}}}, +{"id":100088,"name":"Tyrannical Gladiator's Armplates of Proficiency","icon":"inv_bracers_pvpwarrior_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506,"22":2445},"upgradeStep":1}}}, +{"id":100089,"name":"Tyrannical Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":100090,"name":"Tyrannical Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_f_01","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2022},"upgradeStep":1}}}, +{"id":100091,"name":"Tyrannical Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"6":487,"7":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"6":506,"7":414,"22":1155},"upgradeStep":1}}}, +{"id":100092,"name":"Tyrannical Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"496":{"randPropPoints":1728,"stats":{"2":1363}},"500":{"randPropPoints":1793,"stats":{"2":1414},"upgradeStep":1}}}, +{"id":100093,"name":"Tyrannical Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,573,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":100094,"name":"Tyrannical Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_f_01","type":8,"armorType":2,"stats":[0,899,1469,0,0,620,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":100095,"name":"Tyrannical Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_f_01","type":8,"armorType":1,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1300},"upgradeStep":1}}}, +{"id":100096,"name":"Tyrannical Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":100097,"name":"Tyrannical Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1287},"upgradeStep":1}}}, +{"id":100098,"name":"Tyrannical Gladiator's Ironskin Helm","icon":"inv_helmet_leather_pvpmonk_f_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":100099,"name":"Tyrannical Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_f_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":100100,"name":"Tyrannical Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"8":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"8":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":100101,"name":"Tyrannical Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_f_01","type":5,"armorType":1,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2311},"upgradeStep":1}}}, +{"id":100102,"name":"Tyrannical Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_f_01","type":10,"armorType":2,"stats":[0,899,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":532,"7":570,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":552,"7":594,"22":2022},"upgradeStep":1}}}, +{"id":100103,"name":"Tyrannical Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":100104,"name":"Tyrannical Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_f_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":3325},"upgradeStep":1}}}, +{"id":100105,"name":"Tyrannical Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":3580},"upgradeStep":1}}}, +{"id":100106,"name":"Tyrannical Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":100107,"name":"Tyrannical Gladiator's Kodohide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":100108,"name":"Tyrannical Gladiator's Ornamented Gloves","icon":"inv_gauntlets_plate_pvppaladin_f_01red","type":7,"armorType":4,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":3493},"upgradeStep":1}}}, +{"id":100109,"name":"Tyrannical Gladiator's Bindings of Prowess","icon":"leather_pvpdruid_f_01bracer","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1287},"upgradeStep":1}}}, +{"id":100110,"name":"Tyrannical Gladiator's Girdle of Prowess","icon":"inv_belt_pvpwarrior_f_01","type":8,"armorType":4,"stats":[899,0,1469,0,0,0,573,0,0,0,0,620,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"11":570,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"11":594,"22":3143},"upgradeStep":1}}}, +{"id":100111,"name":"Tyrannical Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_f_01glove","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":100112,"name":"Tyrannical Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_f_01helm","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":1877},"upgradeStep":1}}}, +{"id":100113,"name":"Tyrannical Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_f_01","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":100114,"name":"Tyrannical Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_f_01","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":100115,"name":"Tyrannical Gladiator's Sabatons of Cruelty","icon":"inv_mail_pvphunter_f_01boot","type":10,"armorType":3,"stats":[0,899,1469,0,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"6":570,"11":532,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"6":594,"11":552,"22":2813},"upgradeStep":1}}}, +{"id":100116,"name":"Tyrannical Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_f_01","type":9,"armorType":2,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":2573},"upgradeStep":1}}}, +{"id":100117,"name":"Tyrannical Gladiator's Leather Spaulders","icon":"inv_shoulders_leather_pvprogue_f_01","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":100118,"name":"Tyrannical Gladiator's Plate Legguards","icon":"inv_pants_pvpwarrior_f_01","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":100119,"name":"Tyrannical Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_f_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1011},"upgradeStep":1}}}, +{"id":100120,"name":"Tyrannical Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_f_01","type":3,"armorType":3,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":3069},"upgradeStep":1}}}, +{"id":100121,"name":"Tyrannical Gladiator's Silk Handguards","icon":"inv_gloves_cloth_pvpmage_f_01","type":7,"armorType":1,"stats":[0,0,1469,899,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"5":526,"6":606,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"5":549,"6":629,"22":1444},"upgradeStep":1}}}, +{"id":100122,"name":"Tyrannical Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":100123,"name":"Tyrannical Gladiator's Chain Gauntlets","icon":"inv_mail_pvphunter_f_01glove","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":100124,"name":"Tyrannical Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"496":{"randPropPoints":1728,"stats":{"6":1152}},"500":{"randPropPoints":1793,"stats":{"6":1195},"upgradeStep":1}}}, +{"id":100125,"name":"Tyrannical Gladiator's Dragonhide Gloves","icon":"leather_pvpdruid_f_01glove","type":7,"armorType":2,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":1838},"upgradeStep":1}}}, +{"id":100126,"name":"Tyrannical Gladiator's Dragonhide Robes","icon":"leather_pvpdruid_f_01chest","type":5,"armorType":2,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":2941},"upgradeStep":1}}}, +{"id":100127,"name":"Tyrannical Gladiator's Dragonhide Spaulders","icon":"leather_pvpdruid_f_01shoulder","type":3,"armorType":2,"stats":[0,899,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"7":606,"8":526,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"7":629,"8":549,"22":2206},"upgradeStep":1}}}, +{"id":100128,"name":"Tyrannical Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,899,1469,0,0,573,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":829,"2":1363,"5":526,"6":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":863,"2":1414,"5":549,"6":629,"22":2557},"upgradeStep":1}}}, +{"id":100129,"name":"Tyrannical Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4092},"upgradeStep":1}}}, +{"id":100130,"name":"Tyrannical Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_f_01red","type":3,"armorType":4,"stats":[899,0,1469,0,0,0,0,653,573,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"7":606,"8":526,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"7":629,"8":549,"22":4191},"upgradeStep":1}}}, +{"id":100131,"name":"Tyrannical Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpdeathknight_f_01","type":10,"armorType":4,"stats":[899,0,1469,0,0,0,573,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":829,"2":1363,"6":532,"7":570,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":863,"2":1414,"6":552,"7":594,"22":3842},"upgradeStep":1}}}, +{"id":100132,"name":"Tyrannical Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[734,0,1101,0,0,525,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":506,"11":414},"upgradeStep":1}}}, +{"id":100133,"name":"Tyrannical Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_f_01red","type":5,"armorType":4,"stats":[1158,0,1977,0,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":655,"7":815,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":686,"7":846,"22":5588},"upgradeStep":1}}}, +{"id":100134,"name":"Tyrannical Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_f_01red","type":8,"armorType":4,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":3143},"upgradeStep":1}}}, +{"id":100135,"name":"Tyrannical Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[734,0,1101,0,0,0,429,0,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"8":487}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"8":506},"upgradeStep":1}}}, +{"id":100136,"name":"Tyrannical Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_f_01","type":3,"armorType":1,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":1733},"upgradeStep":1}}}, +{"id":100137,"name":"Tyrannical Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_f_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,639,0,0,0,879,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"7":575,"11":815,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"7":606,"11":846,"22":1877},"upgradeStep":1}}}, +{"id":100138,"name":"Tyrannical Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_f_01","type":10,"armorType":1,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":1588},"upgradeStep":1}}}, +{"id":100139,"name":"Tyrannical Gladiator's Wristguards of Accuracy","icon":"inv_mail_pvphunter_f_01bracer","type":6,"armorType":3,"stats":[0,734,1101,0,0,525,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"5":487,"6":399,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"5":506,"6":414,"22":1790},"upgradeStep":1}}}, +{"id":100140,"name":"Tyrannical Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_f_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"7":487,"11":399,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"7":506,"11":414,"22":1287},"upgradeStep":1}}}, +{"id":100141,"name":"Tyrannical Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_f_01pant","type":9,"armorType":1,"stats":[0,0,1977,1158,0,0,0,719,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":655,"11":815,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":686,"11":846,"22":2022},"upgradeStep":1}}}, +{"id":100142,"name":"Tyrannical Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":1155},"upgradeStep":1}}}, +{"id":100143,"name":"Tyrannical Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":506,"11":414},"upgradeStep":1}}}, +{"id":100144,"name":"Tyrannical Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1101,734,525,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"7":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"7":414},"upgradeStep":1}}}, +{"id":100145,"name":"Tyrannical Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_f_01","type":5,"armorType":3,"stats":[0,1158,1977,0,0,0,719,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":655,"11":815,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":686,"11":846,"22":4092},"upgradeStep":1}}}, +{"id":100146,"name":"Tyrannical Gladiator's Footguards of Meditation","icon":"leather_pvpdruid_f_01boot-copy","type":10,"armorType":2,"stats":[0,0,1469,899,620,0,0,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"11":532,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"11":552,"22":2022},"upgradeStep":1}}}, +{"id":100147,"name":"Tyrannical Gladiator's Kodohide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":100148,"name":"Tyrannical Gladiator's Copperskin Legguards","icon":"inv_pants_leather_pvpmonk_f_01","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":2573},"upgradeStep":1}}}, +{"id":100149,"name":"Tyrannical Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_f_01","type":5,"armorType":2,"stats":[0,0,1977,1158,719,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"4":655,"7":815,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"4":686,"7":846,"22":2941},"upgradeStep":1}}}, +{"id":100150,"name":"Tyrannical Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_f_01red","type":8,"armorType":4,"stats":[0,0,1469,899,0,0,620,0,0,0,0,573,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"6":570,"11":532,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"6":594,"11":552,"22":3143},"upgradeStep":1}}}, +{"id":100151,"name":"Tyrannical Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_f_01red","type":6,"armorType":4,"stats":[0,0,1101,734,525,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"4":487,"6":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"4":506,"6":414,"22":2445},"upgradeStep":1}}}, +{"id":100152,"name":"Tyrannical Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":100153,"name":"Tyrannical Gladiator's Wyrmhide Legguards","icon":"leather_pvpdruid_f_01pant","type":9,"armorType":2,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":2573},"upgradeStep":1}}}, +{"id":100154,"name":"Tyrannical Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_f_01red","type":9,"armorType":4,"stats":[0,0,1977,1158,0,0,719,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"6":655,"7":815,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"6":686,"7":846,"22":4890},"upgradeStep":1}}}, +{"id":100155,"name":"Tyrannical Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,429,525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"6":399,"7":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"6":414,"7":506,"22":1155},"upgradeStep":1}}}, +{"id":100156,"name":"Tyrannical Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[734,0,1101,0,0,429,0,0,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"5":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"5":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":100157,"name":"Tyrannical Gladiator's Armplates of Alacrity","icon":"inv_bracers_plate_pvpdeathknight_f_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,525,0,0,0,429,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"7":487,"11":399,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"7":506,"11":414,"22":2445},"upgradeStep":1}}}, +{"id":100158,"name":"Tyrannical Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,429,0,0,0,525,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"7":399,"11":487,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"7":414,"11":506,"22":1155},"upgradeStep":1}}}, +{"id":100159,"name":"Tyrannical Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1101,734,0,0,525,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"6":487,"11":399}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"6":506,"11":414},"upgradeStep":1}}}, +{"id":100160,"name":"Tyrannical Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_f_01","type":7,"armorType":3,"stats":[0,0,1469,899,573,0,0,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"7":606,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"7":629,"22":2557},"upgradeStep":1}}}, +{"id":100161,"name":"Tyrannical Gladiator's Belt of Meditation","icon":"leather_pvpdruid_f_01belt","type":8,"armorType":2,"stats":[0,0,1469,899,620,0,0,573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":570,"7":532,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":594,"7":552,"22":1654},"upgradeStep":1}}}, +{"id":100162,"name":"Tyrannical Gladiator's Kodohide Helm","icon":"leather_pvpdruid_f_01helm","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,879,0,0,0,0,639,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"6":815,"11":575,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"6":846,"11":606,"22":2389},"upgradeStep":1}}}, +{"id":100163,"name":"Tyrannical Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_f_01","type":3,"armorType":2,"stats":[0,0,1469,899,573,0,0,0,0,0,0,653,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":829,"4":526,"11":606,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":863,"4":549,"11":629,"22":2206},"upgradeStep":1}}}, +{"id":100164,"name":"Tyrannical Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,1158,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1063,"2":1835,"6":815,"7":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1110,"2":1904,"6":846,"7":686,"22":3580},"upgradeStep":1}}}, +{"id":100165,"name":"Tyrannical Gladiator's Scaled Helm","icon":"inv_helmet_plate_pvppaladin_f_01red","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,879,0,0,639,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"8":815,"11":575,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"8":846,"11":606,"22":4540},"upgradeStep":1}}}, +{"id":100166,"name":"Tyrannical Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_f_01red","type":9,"armorType":4,"stats":[1158,0,1977,0,0,0,879,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1063,"2":1835,"6":815,"7":655,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1110,"2":1904,"6":846,"7":686,"22":4890},"upgradeStep":1}}}, +{"id":100167,"name":"Tyrannical Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_f_01","type":9,"armorType":3,"stats":[0,0,1977,1158,0,0,0,879,0,0,0,719,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1063,"7":815,"11":655,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1110,"7":846,"11":686,"22":3580},"upgradeStep":1}}}, +{"id":100168,"name":"Tyrannical Gladiator's Redoubt","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":100169,"name":"Tyrannical Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias1_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,499,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"4":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"4":480,"11":480},"upgradeStep":1}}}, +{"id":100170,"name":"Tyrannical Gladiator's Shield Wall","icon":"inv_shield_pvppandarias2_c_01","type":13,"weaponType":7,"handType":3,"stats":[748,0,1122,0,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"0":694,"2":1041,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"0":720,"2":1081,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":100171,"name":"Tyrannical Gladiator's Barrier","icon":"inv_shield_pvppandarias2_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,18269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463,"22":17810}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480,"22":18040},"upgradeStep":1}}}, +{"id":100172,"name":"Tyrannical Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias2_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1122,748,0,0,499,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1422,"ilvl":498,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"498":{"randPropPoints":1320,"stats":{"2":1041,"3":694,"6":463,"11":463}},"502":{"randPropPoints":1370,"stats":{"2":1081,"3":720,"6":480,"11":480},"upgradeStep":1}}}, +{"id":100183,"name":"Grievous Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100184,"name":"Grievous Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"upgradeStep":1}}}, +{"id":100185,"name":"Grievous Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100186,"name":"Grievous Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"upgradeStep":1}}}, +{"id":100187,"name":"Grievous Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100188,"name":"Grievous Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"upgradeStep":1}}}, +{"id":100189,"name":"Grievous Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100190,"name":"Grievous Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100191,"name":"Grievous Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100192,"name":"Grievous Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100193,"name":"Grievous Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100194,"name":"Grievous Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100195,"name":"Grievous Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100196,"name":"Grievous Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":100197,"name":"Grievous Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100198,"name":"Grievous Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":100199,"name":"Grievous Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":508,"11":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":527,"11":645},"upgradeStep":1}}}, +{"id":100200,"name":"Grievous Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100201,"name":"Grievous Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":100202,"name":"Grievous Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":100203,"name":"Grievous Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100204,"name":"Grievous Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"upgradeStep":1}}}, +{"id":100205,"name":"Grievous Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1408},"upgradeStep":1}}}, +{"id":100206,"name":"Grievous Gladiator's Silk Cord","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"522":{"randPropPoints":2201,"stats":{"22":1391}},"526":{"randPropPoints":2285,"stats":{"22":1408},"upgradeStep":1}}}, +{"id":100207,"name":"Grievous Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":100208,"name":"Grievous Gladiator's Felweave Cord","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"522":{"randPropPoints":2201,"stats":{"22":1391}},"526":{"randPropPoints":2285,"stats":{"22":1408},"upgradeStep":1}}}, +{"id":100209,"name":"Grievous Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":100210,"name":"Grievous Gladiator's Mooncloth Cord","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"522":{"randPropPoints":2201,"stats":{"22":1391}},"526":{"randPropPoints":2285,"stats":{"22":1408},"upgradeStep":1}}}, +{"id":100211,"name":"Grievous Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":100212,"name":"Grievous Gladiator's Silk Treads","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"522":{"randPropPoints":2201,"stats":{"22":1700}},"526":{"randPropPoints":2285,"stats":{"22":1721},"upgradeStep":1}}}, +{"id":100213,"name":"Grievous Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":1721},"upgradeStep":1}}}, +{"id":100214,"name":"Grievous Gladiator's Felweave Treads","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"522":{"randPropPoints":2201,"stats":{"22":1700}},"526":{"randPropPoints":2285,"stats":{"22":1721},"upgradeStep":1}}}, +{"id":100215,"name":"Grievous Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":100216,"name":"Grievous Gladiator's Mooncloth Treads","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"522":{"randPropPoints":2201,"stats":{"22":1700}},"526":{"randPropPoints":2285,"stats":{"22":1721},"upgradeStep":1}}}, +{"id":100217,"name":"Grievous Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":100218,"name":"Grievous Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1095},"upgradeStep":1}}}, +{"id":100219,"name":"Grievous Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":100220,"name":"Grievous Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":100221,"name":"Grievous Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100222,"name":"Grievous Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1252},"upgradeStep":1}}}, +{"id":100223,"name":"Grievous Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601},"upgradeStep":1}}}, +{"id":100224,"name":"Grievous Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"522":{"randPropPoints":1651},"526":{"randPropPoints":1714,"upgradeStep":1}}}, +{"id":100225,"name":"Grievous Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100226,"name":"Grievous Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"522":{"randPropPoints":1651,"stats":{"22":19188}},"526":{"randPropPoints":1714,"stats":{"22":19418},"upgradeStep":1}}}, +{"id":100227,"name":"Grievous Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100228,"name":"Grievous Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"upgradeStep":1}}}, +{"id":100229,"name":"Grievous Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,0,0,1119,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"6":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"6":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":100230,"name":"Grievous Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"upgradeStep":1}}}, +{"id":100231,"name":"Grievous Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":100232,"name":"Grievous Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":645,"11":527},"upgradeStep":1}}}, +{"id":100233,"name":"Grievous Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":100234,"name":"Grievous Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":100235,"name":"Grievous Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"7":527},"upgradeStep":1}}}, +{"id":100236,"name":"Grievous Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":100237,"name":"Grievous Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601},"upgradeStep":1}}}, +{"id":100238,"name":"Grievous Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"522":{"randPropPoints":1651},"526":{"randPropPoints":1714,"upgradeStep":1}}}, +{"id":100239,"name":"Grievous Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100240,"name":"Grievous Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"upgradeStep":1}}}, +{"id":100241,"name":"Grievous Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100242,"name":"Grievous Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"upgradeStep":1}}}, +{"id":100243,"name":"Grievous Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100244,"name":"Grievous Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"522":{"randPropPoints":2963,"stats":{"22":5982}},"526":{"randPropPoints":3076,"stats":{"22":6054},"upgradeStep":1}}}, +{"id":100245,"name":"Grievous Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100246,"name":"Grievous Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"522":{"randPropPoints":2201,"stats":{"22":3739}},"526":{"randPropPoints":2285,"stats":{"22":3784},"upgradeStep":1}}}, +{"id":100247,"name":"Grievous Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100248,"name":"Grievous Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"522":{"randPropPoints":2963,"stats":{"22":4861}},"526":{"randPropPoints":3076,"stats":{"22":4919},"upgradeStep":1}}}, +{"id":100249,"name":"Grievous Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100250,"name":"Grievous Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"522":{"randPropPoints":2963,"stats":{"22":5234}},"526":{"randPropPoints":3076,"stats":{"22":5297},"upgradeStep":1}}}, +{"id":100251,"name":"Grievous Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100252,"name":"Grievous Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"522":{"randPropPoints":2201,"stats":{"22":4487}},"526":{"randPropPoints":2285,"stats":{"22":4540},"upgradeStep":1}}}, +{"id":100253,"name":"Grievous Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100254,"name":"Grievous Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100255,"name":"Grievous Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100256,"name":"Grievous Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100257,"name":"Grievous Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100258,"name":"Grievous Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100259,"name":"Grievous Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100260,"name":"Grievous Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100261,"name":"Grievous Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100262,"name":"Grievous Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100263,"name":"Grievous Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":100264,"name":"Grievous Gladiator's Kodohide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":100265,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":100266,"name":"Grievous Gladiator's Kodohide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100267,"name":"Grievous Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":100268,"name":"Grievous Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":100269,"name":"Grievous Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100270,"name":"Grievous Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100271,"name":"Grievous Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100272,"name":"Grievous Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":100273,"name":"Grievous Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100274,"name":"Grievous Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100275,"name":"Grievous Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100276,"name":"Grievous Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100277,"name":"Grievous Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100278,"name":"Grievous Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03alliance","type":13,"weaponType":8,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":9813,"weaponDamageMax":14720,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":9108,"weaponDamageMax":13663,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":9454,"weaponDamageMax":14182,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100279,"name":"Grievous Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03red","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":9813,"weaponDamageMax":14720,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668},"522":{"randPropPoints":2963,"weaponDamageMin":9108,"weaponDamageMax":13663},"526":{"randPropPoints":3076,"weaponDamageMin":9454,"weaponDamageMax":14182,"upgradeStep":1}}}, +{"id":100280,"name":"Grievous Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":100281,"name":"Grievous Gladiator's Wyrmhide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":100282,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":100283,"name":"Grievous Gladiator's Wyrmhide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100284,"name":"Grievous Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1394},"upgradeStep":1}}}, +{"id":100285,"name":"Grievous Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100286,"name":"Grievous Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100287,"name":"Grievous Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2588},"upgradeStep":1}}}, +{"id":100288,"name":"Grievous Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100289,"name":"Grievous Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2788},"upgradeStep":1}}}, +{"id":100290,"name":"Grievous Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100291,"name":"Grievous Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100292,"name":"Grievous Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100293,"name":"Grievous Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100294,"name":"Grievous Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100295,"name":"unused","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":5173,"weaponDamageMax":9608,"weaponSpeed":1.8,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":4801,"weaponDamageMax":8918,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":4984,"weaponDamageMax":9256,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100296,"name":"unused","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":5173,"weaponDamageMax":9608,"weaponSpeed":1.8,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":4801,"weaponDamageMax":8918,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":4984,"weaponDamageMax":9256,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100297,"name":"Grievous Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100298,"name":"Grievous Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"upgradeStep":1}}}, +{"id":100299,"name":"Grievous Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100300,"name":"Grievous Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"upgradeStep":1}}}, +{"id":100301,"name":"Grievous Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100302,"name":"Grievous Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"522":{"randPropPoints":1651,"stats":{"22":19188}},"526":{"randPropPoints":1714,"stats":{"22":19418},"upgradeStep":1}}}, +{"id":100303,"name":"Grievous Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,1119,0,0,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"4":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"4":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":100304,"name":"Grievous Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"upgradeStep":1}}}, +{"id":100305,"name":"Grievous Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":100306,"name":"Grievous Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":100307,"name":"Grievous Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":100308,"name":"Grievous Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":100309,"name":"Grievous Gladiator's Chain Links","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"522":{"randPropPoints":2201,"stats":{"22":2464}},"526":{"randPropPoints":2285,"stats":{"22":2493},"upgradeStep":1}}}, +{"id":100310,"name":"Grievous Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":100311,"name":"Grievous Gladiator's Linked Waistband","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"522":{"randPropPoints":2201,"stats":{"22":2464}},"526":{"randPropPoints":2285,"stats":{"22":2493},"upgradeStep":1}}}, +{"id":100312,"name":"Grievous Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":100313,"name":"Grievous Gladiator's Chain Sabatons","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"522":{"randPropPoints":2201,"stats":{"22":3011}},"526":{"randPropPoints":2285,"stats":{"22":3048},"upgradeStep":1}}}, +{"id":100314,"name":"Grievous Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":100315,"name":"Grievous Gladiator's Linked Sabatons","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"522":{"randPropPoints":2201,"stats":{"22":3011}},"526":{"randPropPoints":2285,"stats":{"22":3048},"upgradeStep":1}}}, +{"id":100316,"name":"Grievous Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1939},"upgradeStep":1}}}, +{"id":100317,"name":"Grievous Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":100318,"name":"Grievous Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":100319,"name":"Grievous Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"522":{"randPropPoints":2963,"stats":{"22":4380}},"526":{"randPropPoints":3076,"stats":{"22":4433},"upgradeStep":1}}}, +{"id":100320,"name":"Grievous Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100321,"name":"Grievous Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"522":{"randPropPoints":2201,"stats":{"22":2738}},"526":{"randPropPoints":2285,"stats":{"22":2770},"upgradeStep":1}}}, +{"id":100322,"name":"Grievous Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100323,"name":"Grievous Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"522":{"randPropPoints":2963,"stats":{"22":3559}},"526":{"randPropPoints":3076,"stats":{"22":3602},"upgradeStep":1}}}, +{"id":100324,"name":"Grievous Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":100325,"name":"Grievous Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"522":{"randPropPoints":2963,"stats":{"22":3833}},"526":{"randPropPoints":3076,"stats":{"22":3879},"upgradeStep":1}}}, +{"id":100326,"name":"Grievous Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":100327,"name":"Grievous Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"522":{"randPropPoints":2201,"stats":{"22":3285}},"526":{"randPropPoints":2285,"stats":{"22":3325},"upgradeStep":1}}}, +{"id":100328,"name":"Grievous Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100329,"name":"Grievous Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"522":{"randPropPoints":2201,"stats":{"22":1546}},"526":{"randPropPoints":2285,"stats":{"22":1564},"upgradeStep":1}}}, +{"id":100330,"name":"Grievous Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100331,"name":"Grievous Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"522":{"randPropPoints":2963,"stats":{"22":2010}},"526":{"randPropPoints":3076,"stats":{"22":2034},"upgradeStep":1}}}, +{"id":100332,"name":"Grievous Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":100333,"name":"Grievous Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"522":{"randPropPoints":2963,"stats":{"22":2164}},"526":{"randPropPoints":3076,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100334,"name":"Grievous Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100335,"name":"Grievous Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"522":{"randPropPoints":2963,"stats":{"22":2473}},"526":{"randPropPoints":3076,"stats":{"22":2503},"upgradeStep":1}}}, +{"id":100336,"name":"Grievous Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":100337,"name":"Grievous Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"522":{"randPropPoints":2201,"stats":{"22":1855}},"526":{"randPropPoints":2285,"stats":{"22":1877},"upgradeStep":1}}}, +{"id":100338,"name":"Grievous Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":100339,"name":"Grievous Gladiator's Ironskin Waistband","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":100340,"name":"Grievous Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":100341,"name":"Grievous Gladiator's Ironskin Boots","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100342,"name":"Grievous Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":100343,"name":"Grievous Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100344,"name":"Grievous Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100345,"name":"Grievous Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100346,"name":"Grievous Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100347,"name":"Grievous Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100348,"name":"Grievous Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100349,"name":"Grievous Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100350,"name":"Grievous Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100351,"name":"Grievous Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100352,"name":"Grievous Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100353,"name":"Grievous Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":100354,"name":"Grievous Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100355,"name":"Grievous Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100356,"name":"Grievous Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100357,"name":"Grievous Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":100358,"name":"Grievous Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100359,"name":"Grievous Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100360,"name":"Grievous Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100361,"name":"Grievous Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100362,"name":"Grievous Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100363,"name":"Grievous Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100364,"name":"Grievous Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"522":{"randPropPoints":2963,"stats":{"22":5982}},"526":{"randPropPoints":3076,"stats":{"22":6054},"upgradeStep":1}}}, +{"id":100365,"name":"Grievous Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100366,"name":"Grievous Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"522":{"randPropPoints":2201,"stats":{"22":3739}},"526":{"randPropPoints":2285,"stats":{"22":3784},"upgradeStep":1}}}, +{"id":100367,"name":"Grievous Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100368,"name":"Grievous Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"522":{"randPropPoints":2963,"stats":{"22":4861}},"526":{"randPropPoints":3076,"stats":{"22":4919},"upgradeStep":1}}}, +{"id":100369,"name":"Grievous Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100370,"name":"Grievous Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"522":{"randPropPoints":2963,"stats":{"22":5234}},"526":{"randPropPoints":3076,"stats":{"22":5297},"upgradeStep":1}}}, +{"id":100371,"name":"Grievous Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100372,"name":"Grievous Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"522":{"randPropPoints":2201,"stats":{"22":4487}},"526":{"randPropPoints":2285,"stats":{"22":4540},"upgradeStep":1}}}, +{"id":100373,"name":"Grievous Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":779,"11":703,"22":3405},"upgradeStep":1}}}, +{"id":100374,"name":"Grievous Gladiator's Scaled Clasp","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"522":{"randPropPoints":2201,"stats":{"22":3365}},"526":{"randPropPoints":2285,"stats":{"22":3405},"upgradeStep":1}}}, +{"id":100375,"name":"Grievous Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":100376,"name":"Grievous Gladiator's Ornamented Clasp","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"522":{"randPropPoints":2201,"stats":{"22":3365}},"526":{"randPropPoints":2285,"stats":{"22":3405},"upgradeStep":1}}}, +{"id":100377,"name":"Grievous Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":100378,"name":"Grievous Gladiator's Ornamented Greaves","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"522":{"randPropPoints":2201,"stats":{"22":4113}},"526":{"randPropPoints":2285,"stats":{"22":4162},"upgradeStep":1}}}, +{"id":100379,"name":"Grievous Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":100380,"name":"Grievous Gladiator's Scaled Greaves","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"522":{"randPropPoints":2201,"stats":{"22":4113}},"526":{"randPropPoints":2285,"stats":{"22":4162},"upgradeStep":1}}}, +{"id":100381,"name":"Grievous Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":2649},"upgradeStep":1}}}, +{"id":100382,"name":"Grievous Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":2649},"upgradeStep":1}}}, +{"id":100383,"name":"Grievous Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100384,"name":"Grievous Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"522":{"randPropPoints":2963,"stats":{"22":5982}},"526":{"randPropPoints":3076,"stats":{"22":6054},"upgradeStep":1}}}, +{"id":100385,"name":"Grievous Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":3784},"upgradeStep":1}}}, +{"id":100386,"name":"Grievous Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"522":{"randPropPoints":2201,"stats":{"22":3739}},"526":{"randPropPoints":2285,"stats":{"22":3784},"upgradeStep":1}}}, +{"id":100387,"name":"Grievous Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100388,"name":"Grievous Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"522":{"randPropPoints":2963,"stats":{"22":4861}},"526":{"randPropPoints":3076,"stats":{"22":4919},"upgradeStep":1}}}, +{"id":100389,"name":"Grievous Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":5297},"upgradeStep":1}}}, +{"id":100390,"name":"Grievous Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"522":{"randPropPoints":2963,"stats":{"22":5234}},"526":{"randPropPoints":3076,"stats":{"22":5297},"upgradeStep":1}}}, +{"id":100391,"name":"Grievous Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":4540},"upgradeStep":1}}}, +{"id":100392,"name":"Grievous Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"522":{"randPropPoints":2201,"stats":{"22":4487}},"526":{"randPropPoints":2285,"stats":{"22":4540},"upgradeStep":1}}}, +{"id":100393,"name":"Grievous Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":100394,"name":"Grievous Gladiator's Dreadplate Girdle","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"522":{"randPropPoints":2201,"stats":{"22":3365}},"526":{"randPropPoints":2285,"stats":{"22":3405},"upgradeStep":1}}}, +{"id":100395,"name":"Grievous Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,730,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"11":748,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"11":779,"22":3405},"upgradeStep":1}}}, +{"id":100396,"name":"Grievous Gladiator's Plate Girdle","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"522":{"randPropPoints":2201,"stats":{"22":3365}},"526":{"randPropPoints":2285,"stats":{"22":3405},"upgradeStep":1}}}, +{"id":100397,"name":"Grievous Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":100398,"name":"Grievous Gladiator's Plate Warboots","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"522":{"randPropPoints":2201,"stats":{"22":4113}},"526":{"randPropPoints":2285,"stats":{"22":4162},"upgradeStep":1}}}, +{"id":100399,"name":"Grievous Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":100400,"name":"Grievous Gladiator's Dreadplate Warboots","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"522":{"randPropPoints":2201,"stats":{"22":4113}},"526":{"randPropPoints":2285,"stats":{"22":4162},"upgradeStep":1}}}, +{"id":100401,"name":"Grievous Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645,"22":2649},"upgradeStep":1}}}, +{"id":100402,"name":"Grievous Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"11":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"11":527,"22":2649},"upgradeStep":1}}}, +{"id":100403,"name":"Grievous Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100404,"name":"Grievous Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"upgradeStep":1}}}, +{"id":100405,"name":"Grievous Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1564},"upgradeStep":1}}}, +{"id":100406,"name":"Grievous Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"522":{"randPropPoints":2201,"stats":{"22":1546}},"526":{"randPropPoints":2285,"stats":{"22":1564},"upgradeStep":1}}}, +{"id":100407,"name":"Grievous Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100408,"name":"Grievous Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"522":{"randPropPoints":2963,"stats":{"22":2010}},"526":{"randPropPoints":3076,"stats":{"22":2034},"upgradeStep":1}}}, +{"id":100409,"name":"Grievous Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2190},"upgradeStep":1}}}, +{"id":100410,"name":"Grievous Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"522":{"randPropPoints":2963,"stats":{"22":2164}},"526":{"randPropPoints":3076,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100411,"name":"Grievous Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100412,"name":"Grievous Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"522":{"randPropPoints":2963,"stats":{"22":2473}},"526":{"randPropPoints":3076,"stats":{"22":2503},"upgradeStep":1}}}, +{"id":100413,"name":"Grievous Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":100414,"name":"Grievous Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"522":{"randPropPoints":2201,"stats":{"22":1855}},"526":{"randPropPoints":2285,"stats":{"22":1877},"upgradeStep":1}}}, +{"id":100415,"name":"Grievous Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100416,"name":"Grievous Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"522":{"randPropPoints":2201,"stats":{"22":1546}},"526":{"randPropPoints":2285,"stats":{"22":1564},"upgradeStep":1}}}, +{"id":100417,"name":"Grievous Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2034},"upgradeStep":1}}}, +{"id":100418,"name":"Grievous Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"522":{"randPropPoints":2963,"stats":{"22":2010}},"526":{"randPropPoints":3076,"stats":{"22":2034},"upgradeStep":1}}}, +{"id":100419,"name":"Grievous Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2190},"upgradeStep":1}}}, +{"id":100420,"name":"Grievous Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"522":{"randPropPoints":2963,"stats":{"22":2164}},"526":{"randPropPoints":3076,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100421,"name":"Grievous Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100422,"name":"Grievous Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"522":{"randPropPoints":2963,"stats":{"22":2473}},"526":{"randPropPoints":3076,"stats":{"22":2503},"upgradeStep":1}}}, +{"id":100423,"name":"Grievous Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":100424,"name":"Grievous Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"522":{"randPropPoints":2201,"stats":{"22":1855}},"526":{"randPropPoints":2285,"stats":{"22":1877},"upgradeStep":1}}}, +{"id":100425,"name":"Grievous Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":100426,"name":"Grievous Gladiator's Leather Waistband","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":100427,"name":"Grievous Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":100428,"name":"Grievous Gladiator's Leather Boots","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100429,"name":"Grievous Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1394},"upgradeStep":1}}}, +{"id":100430,"name":"Grievous Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100431,"name":"Grievous Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"522":{"randPropPoints":2963,"stats":{"22":3148}},"526":{"randPropPoints":3076,"stats":{"22":3186},"upgradeStep":1}}}, +{"id":100432,"name":"Grievous Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100433,"name":"Grievous Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"522":{"randPropPoints":2201,"stats":{"22":1968}},"526":{"randPropPoints":2285,"stats":{"22":1991},"upgradeStep":1}}}, +{"id":100434,"name":"Grievous Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100435,"name":"Grievous Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"522":{"randPropPoints":2963,"stats":{"22":2558}},"526":{"randPropPoints":3076,"stats":{"22":2588},"upgradeStep":1}}}, +{"id":100436,"name":"Grievous Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100437,"name":"Grievous Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"522":{"randPropPoints":2963,"stats":{"22":2755}},"526":{"randPropPoints":3076,"stats":{"22":2788},"upgradeStep":1}}}, +{"id":100438,"name":"Grievous Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100439,"name":"Grievous Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"522":{"randPropPoints":2201,"stats":{"22":2361}},"526":{"randPropPoints":2285,"stats":{"22":2389},"upgradeStep":1}}}, +{"id":100440,"name":"Grievous Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":100441,"name":"Grievous Gladiator's Ringmail Waistguard","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"522":{"randPropPoints":2201,"stats":{"22":2464}},"526":{"randPropPoints":2285,"stats":{"22":2493},"upgradeStep":1}}}, +{"id":100442,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":100443,"name":"Grievous Gladiator's Ringmail Footguards","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"522":{"randPropPoints":2201,"stats":{"22":3011}},"526":{"randPropPoints":2285,"stats":{"22":3048},"upgradeStep":1}}}, +{"id":100444,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":100445,"name":"Grievous Gladiator's Mail Footguards","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"522":{"randPropPoints":2201,"stats":{"22":3011}},"526":{"randPropPoints":2285,"stats":{"22":3048},"upgradeStep":1}}}, +{"id":100446,"name":"Grievous Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1939},"upgradeStep":1}}}, +{"id":100447,"name":"Grievous Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":100448,"name":"Grievous Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":100449,"name":"Grievous Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"522":{"randPropPoints":2963,"stats":{"22":4380}},"526":{"randPropPoints":3076,"stats":{"22":4433},"upgradeStep":1}}}, +{"id":100450,"name":"Grievous Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":2770},"upgradeStep":1}}}, +{"id":100451,"name":"Grievous Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"522":{"randPropPoints":2201,"stats":{"22":2738}},"526":{"randPropPoints":2285,"stats":{"22":2770},"upgradeStep":1}}}, +{"id":100452,"name":"Grievous Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100453,"name":"Grievous Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"522":{"randPropPoints":2963,"stats":{"22":3559}},"526":{"randPropPoints":3076,"stats":{"22":3602},"upgradeStep":1}}}, +{"id":100454,"name":"Grievous Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3879},"upgradeStep":1}}}, +{"id":100455,"name":"Grievous Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"522":{"randPropPoints":2963,"stats":{"22":3833}},"526":{"randPropPoints":3076,"stats":{"22":3879},"upgradeStep":1}}}, +{"id":100456,"name":"Grievous Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":100457,"name":"Grievous Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"522":{"randPropPoints":2201,"stats":{"22":3285}},"526":{"randPropPoints":2285,"stats":{"22":3325},"upgradeStep":1}}}, +{"id":100458,"name":"Grievous Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":100459,"name":"Grievous Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"522":{"randPropPoints":2963,"stats":{"22":4380}},"526":{"randPropPoints":3076,"stats":{"22":4433},"upgradeStep":1}}}, +{"id":100460,"name":"Grievous Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100461,"name":"Grievous Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"522":{"randPropPoints":2201,"stats":{"22":2738}},"526":{"randPropPoints":2285,"stats":{"22":2770},"upgradeStep":1}}}, +{"id":100462,"name":"Grievous Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100463,"name":"Grievous Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"522":{"randPropPoints":2963,"stats":{"22":3559}},"526":{"randPropPoints":3076,"stats":{"22":3602},"upgradeStep":1}}}, +{"id":100464,"name":"Grievous Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":100465,"name":"Grievous Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"522":{"randPropPoints":2963,"stats":{"22":3833}},"526":{"randPropPoints":3076,"stats":{"22":3879},"upgradeStep":1}}}, +{"id":100466,"name":"Grievous Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":100467,"name":"Grievous Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"522":{"randPropPoints":2201,"stats":{"22":3285}},"526":{"randPropPoints":2285,"stats":{"22":3325},"upgradeStep":1}}}, +{"id":100468,"name":"Grievous Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":100469,"name":"Grievous Gladiator's Mail Waistguard","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"522":{"randPropPoints":2201,"stats":{"22":2464}},"526":{"randPropPoints":2285,"stats":{"22":2493},"upgradeStep":1}}}, +{"id":100470,"name":"Grievous Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":100471,"name":"Grievous Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"522":{"randPropPoints":2963,"stats":{"22":4380}},"526":{"randPropPoints":3076,"stats":{"22":4433},"upgradeStep":1}}}, +{"id":100472,"name":"Grievous Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100473,"name":"Grievous Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"522":{"randPropPoints":2201,"stats":{"22":2738}},"526":{"randPropPoints":2285,"stats":{"22":2770},"upgradeStep":1}}}, +{"id":100474,"name":"Grievous Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":3602},"upgradeStep":1}}}, +{"id":100475,"name":"Grievous Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"522":{"randPropPoints":2963,"stats":{"22":3559}},"526":{"randPropPoints":3076,"stats":{"22":3602},"upgradeStep":1}}}, +{"id":100476,"name":"Grievous Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":3879},"upgradeStep":1}}}, +{"id":100477,"name":"Grievous Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"522":{"randPropPoints":2963,"stats":{"22":3833}},"526":{"randPropPoints":3076,"stats":{"22":3879},"upgradeStep":1}}}, +{"id":100478,"name":"Grievous Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":100479,"name":"Grievous Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"522":{"randPropPoints":2201,"stats":{"22":3285}},"526":{"randPropPoints":2285,"stats":{"22":3325},"upgradeStep":1}}}, +{"id":100480,"name":"Grievous Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":6550,"weaponDamageMax":9826,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":6080,"weaponDamageMax":9120,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":6310,"weaponDamageMax":9466,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100481,"name":"Grievous Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":6550,"weaponDamageMax":9826,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118},"522":{"randPropPoints":1270,"weaponDamageMin":6080,"weaponDamageMax":9120},"526":{"randPropPoints":1318,"weaponDamageMin":6310,"weaponDamageMax":9466,"upgradeStep":1}}}, +{"id":100482,"name":"Grievous Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100483,"name":"Grievous Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100484,"name":"unused","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":7472,"weaponDamageMax":13878,"weaponSpeed":2.6,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":6935,"weaponDamageMax":12881,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":7199,"weaponDamageMax":13370,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100485,"name":"unused","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":7472,"weaponDamageMax":13878,"weaponSpeed":2.6,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":6935,"weaponDamageMax":12881,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":7199,"weaponDamageMax":13370,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100486,"name":"Grievous Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100487,"name":"Grievous Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100488,"name":"Grievous Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100489,"name":"Grievous Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"upgradeStep":1}}}, +{"id":100490,"name":"Grievous Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100491,"name":"Grievous Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100492,"name":"Grievous Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,480,0,0,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"4":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"4":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100493,"name":"Grievous Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"upgradeStep":1}}}, +{"id":100494,"name":"Grievous Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100495,"name":"Grievous Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100496,"name":"Grievous Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100497,"name":"Grievous Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"upgradeStep":1}}}, +{"id":100498,"name":"Grievous Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":9461,"weaponDamageMax":14193,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":8782,"weaponDamageMax":13173,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":9115,"weaponDamageMax":13674,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100499,"name":"Grievous Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":9461,"weaponDamageMax":14193,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393},"522":{"randPropPoints":1270,"weaponDamageMin":8782,"weaponDamageMax":13173},"526":{"randPropPoints":1318,"weaponDamageMin":9115,"weaponDamageMax":13674,"upgradeStep":1}}}, +{"id":100500,"name":"Grievous Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100501,"name":"Grievous Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,547,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"7":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"7":645,"22":1252},"upgradeStep":1}}}, +{"id":100502,"name":"Grievous Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100503,"name":"Grievous Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":100504,"name":"Grievous Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"7":527},"upgradeStep":1}}}, +{"id":100505,"name":"Grievous Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100506,"name":"Grievous Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":100507,"name":"Grievous Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":100508,"name":"Grievous Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[936,0,1403,0,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100509,"name":"Grievous Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"522":{"randPropPoints":1651,"stats":{"22":19188}},"526":{"randPropPoints":1714,"stats":{"22":19418},"upgradeStep":1}}}, +{"id":100510,"name":"Grievous Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100511,"name":"Grievous Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"522":{"randPropPoints":2201,"stats":{"22":1546}},"526":{"randPropPoints":2285,"stats":{"22":1564},"upgradeStep":1}}}, +{"id":100512,"name":"Grievous Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100513,"name":"Grievous Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"522":{"randPropPoints":2963,"stats":{"22":2010}},"526":{"randPropPoints":3076,"stats":{"22":2034},"upgradeStep":1}}}, +{"id":100514,"name":"Grievous Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":100515,"name":"Grievous Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"522":{"randPropPoints":2963,"stats":{"22":2164}},"526":{"randPropPoints":3076,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":100516,"name":"Grievous Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100517,"name":"Grievous Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"522":{"randPropPoints":2963,"stats":{"22":2473}},"526":{"randPropPoints":3076,"stats":{"22":2503},"upgradeStep":1}}}, +{"id":100518,"name":"Grievous Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":100519,"name":"Grievous Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"522":{"randPropPoints":2201,"stats":{"22":1855}},"526":{"randPropPoints":2285,"stats":{"22":1877},"upgradeStep":1}}}, +{"id":100520,"name":"Grievous Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100521,"name":"Grievous Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"522":{"randPropPoints":2963,"stats":{"22":5982}},"526":{"randPropPoints":3076,"stats":{"22":6054},"upgradeStep":1}}}, +{"id":100522,"name":"Grievous Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100523,"name":"Grievous Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"522":{"randPropPoints":2201,"stats":{"22":3739}},"526":{"randPropPoints":2285,"stats":{"22":3784},"upgradeStep":1}}}, +{"id":100524,"name":"Grievous Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100525,"name":"Grievous Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"522":{"randPropPoints":2963,"stats":{"22":4861}},"526":{"randPropPoints":3076,"stats":{"22":4919},"upgradeStep":1}}}, +{"id":100526,"name":"Grievous Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100527,"name":"Grievous Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"522":{"randPropPoints":2963,"stats":{"22":5234}},"526":{"randPropPoints":3076,"stats":{"22":5297},"upgradeStep":1}}}, +{"id":100528,"name":"Grievous Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100529,"name":"Grievous Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"522":{"randPropPoints":2201,"stats":{"22":4487}},"526":{"randPropPoints":2285,"stats":{"22":4540},"upgradeStep":1}}}, +{"id":100531,"name":"unused","icon":"inv_knife_1h_pvp410_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":5173,"weaponDamageMax":9608,"weaponSpeed":1.8,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":4801,"weaponDamageMax":8918,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":4984,"weaponDamageMax":9256,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100532,"name":"Grievous Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100533,"name":"Grievous Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100534,"name":"Grievous Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100535,"name":"Grievous Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100536,"name":"Grievous Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100537,"name":"Grievous Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03horde","type":13,"weaponType":8,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":9813,"weaponDamageMax":14720,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":9108,"weaponDamageMax":13663,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":9454,"weaponDamageMax":14182,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100538,"name":"Grievous Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,480,0,0,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"4":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"4":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100539,"name":"Grievous Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100540,"name":"Grievous Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":100541,"name":"Grievous Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100542,"name":"Grievous Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100543,"name":"Grievous Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,0,0,1119,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"6":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"6":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":100544,"name":"unused","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,649,974,0,0,0,433,0,0,0,0,433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1235,"weaponDamageMin":7472,"weaponDamageMax":13878,"weaponSpeed":2.6,"ilvl":511,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"511":{"randPropPoints":1146,"weaponDamageMin":6935,"weaponDamageMax":12881,"stats":{"1":603,"2":904,"6":402,"11":402}},"515":{"randPropPoints":1190,"weaponDamageMin":7199,"weaponDamageMax":13370,"stats":{"1":626,"2":939,"6":417,"11":417},"upgradeStep":1}}}, +{"id":100545,"name":"Grievous Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":6550,"weaponDamageMax":9826,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":6080,"weaponDamageMax":9120,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":6310,"weaponDamageMax":9466,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100546,"name":"Grievous Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100547,"name":"Grievous Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100548,"name":"Grievous Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":9461,"weaponDamageMax":14193,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":8782,"weaponDamageMax":13173,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":9115,"weaponDamageMax":13674,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100549,"name":"Grievous Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100550,"name":"Grievous Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,1119,0,0,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"4":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"4":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":100551,"name":"Grievous Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100552,"name":"Grievous Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100553,"name":"Grievous Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100554,"name":"Grievous Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100555,"name":"Grievous Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":100556,"name":"Grievous Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":100557,"name":"Grievous Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100558,"name":"Grievous Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1564},"upgradeStep":1}}}, +{"id":100559,"name":"Grievous Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":100560,"name":"Grievous Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":100561,"name":"Grievous Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100562,"name":"Grievous Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100563,"name":"Grievous Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":1721},"upgradeStep":1}}}, +{"id":100564,"name":"Grievous Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2190},"upgradeStep":1}}}, +{"id":100565,"name":"Grievous Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100566,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":100567,"name":"Grievous Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":100568,"name":"Grievous Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":100569,"name":"Grievous Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100570,"name":"Grievous Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":100571,"name":"Grievous Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100572,"name":"Grievous Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":100573,"name":"Grievous Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100574,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":100575,"name":"Grievous Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100576,"name":"Grievous Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100577,"name":"Grievous Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2588},"upgradeStep":1}}}, +{"id":100578,"name":"Grievous Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100579,"name":"Grievous Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100580,"name":"Grievous Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":100581,"name":"Grievous Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":100582,"name":"Grievous Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":100583,"name":"Grievous Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":100584,"name":"Grievous Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"7":527},"upgradeStep":1}}}, +{"id":100585,"name":"Grievous Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100586,"name":"Grievous Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100587,"name":"Grievous Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":100588,"name":"Grievous Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":100589,"name":"Grievous Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":100590,"name":"Grievous Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":100591,"name":"Grievous Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":100592,"name":"Grievous Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":100593,"name":"Grievous Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"7":527},"upgradeStep":1}}}, +{"id":100594,"name":"Grievous Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":100595,"name":"Grievous Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100596,"name":"Grievous Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100597,"name":"Grievous Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100598,"name":"Grievous Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100599,"name":"Grievous Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":100600,"name":"Grievous Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100601,"name":"Grievous Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":100602,"name":"Grievous Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100603,"name":"Grievous Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100604,"name":"Grievous Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":100605,"name":"Grievous Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100606,"name":"Grievous Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":100607,"name":"Grievous Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100608,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":100609,"name":"Grievous Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1939},"upgradeStep":1}}}, +{"id":100610,"name":"Grievous Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":100611,"name":"Grievous Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100612,"name":"Grievous Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":100613,"name":"Grievous Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":100614,"name":"Grievous Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":100615,"name":"Grievous Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":100616,"name":"Grievous Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":100617,"name":"Grievous Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":100618,"name":"Grievous Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":100619,"name":"Grievous Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":100620,"name":"Grievous Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":100621,"name":"Grievous Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100622,"name":"Grievous Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100623,"name":"Grievous Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":100624,"name":"Grievous Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":100625,"name":"Grievous Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":508,"11":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":527,"11":645},"upgradeStep":1}}}, +{"id":100626,"name":"Grievous Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":100627,"name":"Grievous Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100628,"name":"Grievous Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":100629,"name":"Grievous Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":100630,"name":"Grievous Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1408},"upgradeStep":1}}}, +{"id":100631,"name":"Grievous Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100632,"name":"Grievous Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":100633,"name":"Grievous Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":100634,"name":"Grievous Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1939},"upgradeStep":1}}}, +{"id":100635,"name":"Grievous Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":100636,"name":"Grievous Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100637,"name":"Grievous Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":100638,"name":"Grievous Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100639,"name":"Grievous Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":3602},"upgradeStep":1}}}, +{"id":100640,"name":"Grievous Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":100641,"name":"Grievous Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":2649},"upgradeStep":1}}}, +{"id":100642,"name":"Grievous Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100643,"name":"Grievous Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":4540},"upgradeStep":1}}}, +{"id":100644,"name":"Grievous Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":100645,"name":"Grievous Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100646,"name":"Grievous Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100647,"name":"Grievous Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":100648,"name":"Grievous Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645,"22":2649},"upgradeStep":1}}}, +{"id":100649,"name":"Grievous Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100650,"name":"Grievous Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2190},"upgradeStep":1}}}, +{"id":100651,"name":"Grievous Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":100652,"name":"Grievous Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":100653,"name":"Grievous Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100654,"name":"Grievous Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":100655,"name":"Grievous Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":100656,"name":"Grievous Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100657,"name":"Grievous Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":100658,"name":"Grievous Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100659,"name":"Grievous Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100660,"name":"Grievous Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100661,"name":"Grievous Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":100662,"name":"Grievous Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":100663,"name":"Grievous Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":100664,"name":"Grievous Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":100665,"name":"Grievous Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3879},"upgradeStep":1}}}, +{"id":100666,"name":"Grievous Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100667,"name":"Grievous Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100668,"name":"Grievous Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":3784},"upgradeStep":1}}}, +{"id":100669,"name":"Grievous Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1394},"upgradeStep":1}}}, +{"id":100670,"name":"Grievous Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,730,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"11":748,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"11":779,"22":3405},"upgradeStep":1}}}, +{"id":100671,"name":"Grievous Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100672,"name":"Grievous Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":100673,"name":"Grievous Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100674,"name":"Grievous Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100675,"name":"Grievous Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":100676,"name":"Grievous Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":100677,"name":"Grievous Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100678,"name":"Grievous Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100679,"name":"Grievous Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1095},"upgradeStep":1}}}, +{"id":100680,"name":"Grievous Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":100681,"name":"Grievous Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":100682,"name":"Grievous Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":100683,"name":"Grievous Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100684,"name":"Grievous Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":100685,"name":"Grievous Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":100686,"name":"Grievous Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":100687,"name":"Grievous Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":100688,"name":"Grievous Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":100689,"name":"Grievous Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":100690,"name":"Grievous Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":100691,"name":"Grievous Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":100692,"name":"Grievous Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":100693,"name":"Grievous Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":100694,"name":"Grievous Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":100695,"name":"Grievous Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":100696,"name":"Grievous Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":100697,"name":"Grievous Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2034},"upgradeStep":1}}}, +{"id":100698,"name":"Grievous Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":100699,"name":"Grievous Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":100700,"name":"Grievous Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1394},"upgradeStep":1}}}, +{"id":100701,"name":"Grievous Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":100702,"name":"Grievous Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1252},"upgradeStep":1}}}, +{"id":100703,"name":"Grievous Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":645,"11":527},"upgradeStep":1}}}, +{"id":100704,"name":"Grievous Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":100705,"name":"Grievous Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":100706,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":100707,"name":"Grievous Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":100708,"name":"Grievous Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":100709,"name":"Grievous Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":100710,"name":"Grievous Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":779,"11":703,"22":3405},"upgradeStep":1}}}, +{"id":100711,"name":"Grievous Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":2649},"upgradeStep":1}}}, +{"id":100712,"name":"Grievous Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":100713,"name":"Grievous Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2788},"upgradeStep":1}}}, +{"id":100714,"name":"Grievous Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":5297},"upgradeStep":1}}}, +{"id":100715,"name":"Grievous Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,547,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"7":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"7":645,"22":1252},"upgradeStep":1}}}, +{"id":100716,"name":"Grievous Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100717,"name":"Grievous Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"11":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"11":527,"22":2649},"upgradeStep":1}}}, +{"id":100718,"name":"Grievous Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":100719,"name":"Grievous Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":100720,"name":"Grievous Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":2770},"upgradeStep":1}}}, +{"id":100721,"name":"Grievous Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":100722,"name":"Grievous Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":100723,"name":"Grievous Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":100724,"name":"Grievous Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":100725,"name":"Grievous Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":100726,"name":"Grievous Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":100727,"name":"Grievous Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":3879},"upgradeStep":1}}}, +{"id":100728,"name":"Grievous Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100729,"name":"Grievous Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601},"upgradeStep":1}}}, +{"id":100730,"name":"Grievous Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[936,0,1403,0,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100731,"name":"Grievous Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":100732,"name":"Grievous Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601},"upgradeStep":1}}}, +{"id":100950,"name":"Engraved Amber Pendant","icon":"inv_jewelry_necklace_82","type":2,"stats":[0,444,666,0,0,0,305,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"6":305,"7":281},"isBase":true}}}, +{"id":100951,"name":"Flashfrozen Resin Globule","icon":"inv_jewelry_trinket_21","type":12,"stats":[0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"5":751},"isBase":true}}}, +{"id":100952,"name":"Hood of Viridian Residue","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,0,1195,557,386,0,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":557,"4":386,"6":410,"22":2007},"isBase":true}}}, +{"id":100953,"name":"Girdle of Soothing Detonation","icon":"inv_belt_plate_dungeonplate_c_07","type":8,"armorType":4,"stats":[0,0,888,592,346,0,423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":346,"6":423,"22":2640},"isBase":true}}}, +{"id":100954,"name":"Sap-Encrusted Legplates","icon":"inv_pants_plate_dungeonplate_c_07","type":9,"armorType":4,"stats":[717,0,1195,0,0,0,0,0,0,515,452,0,0,0,0,0,0,0,0,0,0,0,4106,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Vizier Jin'bak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":717,"2":1195,"9":515,"10":452,"22":4106},"isBase":true}}}, +{"id":100955,"name":"Siege-Captain's Scimitar","icon":"inv_sword_1h_pandung_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,341,512,0,0,247,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"5":247,"6":194},"isBase":true}}}, +{"id":100956,"name":"Bombardment Bracers","icon":"inv_bracer_cloth_dungeoncloth_c_06","type":6,"armorType":1,"stats":[0,0,666,444,274,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":274,"7":309,"22":849},"isBase":true}}}, +{"id":100957,"name":"Chestwrap of Arcing Flame","icon":"inv_chest_leather_dungeonleather_c_06","type":5,"armorType":2,"stats":[0,0,1195,717,478,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2470,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":717,"4":478,"6":499,"22":2470},"isBase":true}}}, +{"id":100958,"name":"Archer's Precision Grips","icon":"inv_glove_mail_dungeonmail_c_06","type":7,"armorType":3,"stats":[0,592,888,0,0,0,0,0,300,0,0,450,0,0,0,0,0,0,0,0,0,0,2148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"1":592,"2":888,"8":300,"11":450,"22":2148},"isBase":true}}}, +{"id":100959,"name":"Sightfinder Helm","icon":"inv_helmet_plate_dungeonplate_c_07","type":1,"armorType":4,"stats":[557,0,1195,0,0,0,301,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Commander Vo'jak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"0":557,"2":1195,"6":301,"11":484,"22":3813},"isBase":true}}}, +{"id":100960,"name":"Tempestuous Longbow","icon":"inv_bow_1h_pandung_c_01","type":14,"rangedWeaponType":1,"stats":[0,797,1195,0,0,531,531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":6112,"weaponDamageMax":11352,"weaponSpeed":3,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":6112,"weaponDamageMax":11352,"stats":{"1":797,"2":1195,"5":531,"6":531},"isBase":true}}}, +{"id":100961,"name":"Aerial Bombardment Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,444,666,0,0,225,337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"1":444,"2":666,"5":225,"6":337,"22":970},"isBase":true}}}, +{"id":100962,"name":"Breezebinder Handwraps","icon":"inv_gauntlets_cloth_dungeoncloth_c_06","type":7,"armorType":1,"stats":[0,0,888,592,440,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":440,"7":318,"22":1213},"isBase":true}}}, +{"id":100963,"name":"Vial of Ichorous Blood","icon":"inv_jewelry_trinket_08","type":12,"stats":[0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"3":751},"isBase":true}}}, +{"id":100964,"name":"Siegeworn Bracers","icon":"inv_bracer_plate_dungeonplate_c_07","type":6,"armorType":4,"stats":[0,0,666,444,246,0,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":844,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"General Pa'valak"}}],"scalingOptions":{"450":{"randPropPoints":844,"stats":{"2":666,"3":444,"4":246,"6":326,"22":2053},"isBase":true}}}, +{"id":100965,"name":"Ner'onok's Razor Katar","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,341,512,0,0,228,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"weaponSpeed":2.6,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":3928,"weaponDamageMax":7296,"stats":{"1":341,"2":512,"5":228,"8":228},"isBase":true}}}, +{"id":100966,"name":"Tolakesh, Horn of the Black Ox","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,341,512,0,0,231,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"weaponSpeed":1.8,"ilvl":450,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"450":{"randPropPoints":649,"weaponDamageMin":2719,"weaponDamageMax":5051,"stats":{"1":341,"2":512,"5":231,"8":222},"isBase":true}}}, +{"id":100967,"name":"Windblast Helm","icon":"inv_helmet_leather_dungeonleather_c_06","type":1,"armorType":2,"stats":[0,557,1195,0,0,0,0,451,0,0,0,371,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":557,"2":1195,"7":451,"11":371,"22":2007},"isBase":true}}}, +{"id":100968,"name":"Galedodger Chestguard","icon":"inv_chest_mail_dungeonmail_c_06","type":5,"armorType":3,"stats":[0,717,1195,0,0,0,0,0,376,0,0,559,0,0,0,0,0,0,0,0,0,0,3436,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"1":717,"2":1195,"8":376,"11":559,"22":3436},"isBase":true}}}, +{"id":100969,"name":"Anchoring Sabatons","icon":"inv_boots_plate_dungeonplate_c_07","type":10,"armorType":4,"stats":[512,0,888,0,0,0,378,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,3226,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":512,"2":888,"6":378,"8":316,"22":3226},"isBase":true}}}, +{"id":100970,"name":"Spaulders of Immovable Stone","icon":"inv_shoulder_plate_dungeonplate_c_07","type":3,"armorType":4,"stats":[512,0,888,0,0,0,0,0,0,383,306,0,0,0,0,0,0,0,0,0,0,0,3520,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"0":512,"2":888,"9":383,"10":306,"22":3520},"isBase":true}}}, +{"id":100971,"name":"Breezeswept Hood","icon":"inv_helmet_cloth_dungeoncloth_c_06","type":1,"armorType":1,"stats":[0,0,1195,557,0,0,0,411,0,0,0,411,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"stats":{"2":1195,"3":557,"7":411,"11":411,"22":1577},"isBase":true}}}, +{"id":100972,"name":"Whisperwind Spaulders","icon":"inv_shoulder_cloth_dungeoncloth_c_06","type":3,"armorType":1,"stats":[0,0,888,512,0,0,0,297,0,0,0,389,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":512,"7":297,"11":389,"22":1455},"isBase":true}}}, +{"id":100973,"name":"Gustwalker Staff","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1195,797,570,0,0,0,0,0,0,466,0,0,4563,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1515,"weaponDamageMin":3958,"weaponDamageMax":5938,"weaponSpeed":3.4,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1515,"weaponDamageMin":3958,"weaponDamageMax":5938,"stats":{"2":1195,"3":797,"4":570,"11":466,"14":4563},"isBase":true}}}, +{"id":100974,"name":"Belt of Totemic Binding","icon":"inv_belt_mail_dungeonmail_c_06","type":8,"armorType":3,"stats":[0,0,888,592,346,0,0,423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":592,"4":346,"7":423,"22":1933},"isBase":true}}}, +{"id":100975,"name":"Airbender Sandals","icon":"inv_boot_mail_dungeonmail_c_06","type":10,"armorType":3,"stats":[0,0,888,512,361,0,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2363,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1126,"ilvl":450,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6214,"otherName":"Wing Leader Ner'onok"}}],"scalingOptions":{"450":{"randPropPoints":1126,"stats":{"2":888,"3":512,"4":361,"7":345,"22":2363},"isBase":true}}}, +{"id":100976,"name":"Heart-Lesion Maul","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[1084,0,1626,0,0,0,0,0,0,634,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"weaponSpeed":3.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"9":512,"11":625}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"9":634,"11":775},"upgradeStep":1}}}, +{"id":100977,"name":"Heart-Lesion Breastplate","icon":"inv_chest_plate_panda_b_02yellow","type":5,"armorType":4,"stats":[1084,0,1626,0,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"6":583,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"6":723,"7":723,"22":5284},"upgradeStep":1}}}, +{"id":100978,"name":"Heart-Lesion Sabatons","icon":"inv_boots_plate_panda_b_02yellow","type":10,"armorType":4,"stats":[805,0,1208,0,0,576,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":464,"6":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"5":576,"6":471,"22":3633},"upgradeStep":1}}}, +{"id":100979,"name":"Heart-Lesion Gauntlets","icon":"inv_gauntlets_plate_panda_b_02yellow","type":7,"armorType":4,"stats":[805,0,1208,0,0,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"7":380,"8":464,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"7":471,"8":576,"22":3302},"upgradeStep":1}}}, +{"id":100980,"name":"Heart-Lesion Helm","icon":"inv_helmet_plate_panda_b_02yellow","type":1,"armorType":4,"stats":[1084,0,1626,0,0,723,0,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":583,"11":583,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":723,"11":723,"22":4293},"upgradeStep":1}}}, +{"id":100981,"name":"Heart-Lesion Legplates","icon":"inv_pants_plate_panda_b_02yellow","type":9,"armorType":4,"stats":[1084,0,1626,0,0,0,0,549,0,0,0,824,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"7":443,"11":665,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"7":549,"11":824,"22":4623},"upgradeStep":1}}}, +{"id":100982,"name":"Heart-Lesion Pauldrons","icon":"inv_shoulder_plate_panda_b_02yellow","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,471,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":380,"8":464,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":471,"8":576,"22":3963},"upgradeStep":1}}}, +{"id":100983,"name":"Heart-Lesion Girdle","icon":"inv_belt_plate_panda_b_02yellow","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":380,"11":464,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":471,"11":576,"22":2972},"upgradeStep":1}}}, +{"id":100984,"name":"Heart-Lesion Vambraces","icon":"inv_bracer_plate_panda_b_02yellow","type":6,"armorType":4,"stats":[604,0,906,0,0,0,0,459,0,0,0,306,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":371,"11":247,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"7":459,"11":306,"22":2312},"upgradeStep":1}}}, +{"id":100985,"name":"Heart-Lesion Blade","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[464,0,697,0,0,0,310,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"weaponSpeed":2.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"0":464,"2":697,"6":310,"11":310},"upgradeStep":1}}}, +{"id":100986,"name":"Heart-Lesion Cloak of Battle","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":100987,"name":"Heart-Lesion Pendant","icon":"inv_jewelry_necklace_73","type":2,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":100988,"name":"Heart-Lesion Ring of Might","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,459,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"7":371,"11":247}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"7":459,"11":306},"upgradeStep":1}}}, +{"id":100989,"name":"Heart-Lesion Band of Might","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":100990,"name":"Heart-Lesion Stone of Battle","icon":"inv_misc_trinketpanda_01","type":12,"stats":[1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"483":{"randPropPoints":1531,"stats":{"0":1021},"upgradeStep":1}}}, +{"id":100991,"name":"Heart-Lesion Idol of Battle","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021},"upgradeStep":1}}}, +{"id":100992,"name":"Heart-Lesion Chestguard","icon":"inv_chest_plate_panda_b_02purple","type":5,"armorType":4,"stats":[1084,0,1626,0,0,634,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":512,"9":625,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":634,"9":775,"22":5284},"upgradeStep":1}}}, +{"id":100993,"name":"Heart-Lesion Cloak of Stoicism","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[604,0,906,0,0,0,0,0,0,402,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":100994,"name":"Heart-Lesion Greaves","icon":"inv_boots_plate_panda_b_02purple","type":10,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,0,0,537,537,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"10":433,"11":433,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"10":537,"11":537,"22":3633},"upgradeStep":1}}}, +{"id":100995,"name":"Heart-Lesion Handguards","icon":"inv_gauntlets_plate_panda_b_02purple","type":7,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,471,0,576,0,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":380,"10":464,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":471,"10":576,"22":3302},"upgradeStep":1}}}, +{"id":100996,"name":"Heart-Lesion Faceguard","icon":"inv_helmet_plate_panda_b_02purple","type":1,"armorType":4,"stats":[1084,0,1626,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":583,"10":583,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":723,"10":723,"22":4293},"upgradeStep":1}}}, +{"id":100997,"name":"Heart-Lesion Legguards","icon":"inv_pants_plate_panda_b_02purple","type":9,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,0,549,0,824,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"9":443,"11":665,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"9":549,"11":824,"22":4623},"upgradeStep":1}}}, +{"id":100998,"name":"Heart-Lesion Amulet","icon":"inv_jewelry_necklace_62","type":2,"stats":[604,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":100999,"name":"Heart-Lesion Defender Idol","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101000,"name":"Heart-Lesion Ring of Stoicism","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,0,0,306,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":247,"11":371}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":306,"11":459},"upgradeStep":1}}}, +{"id":101001,"name":"Heart-Lesion Band of Stoicism","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101002,"name":"Heart-Lesion Defender Stone","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101003,"name":"Heart-Lesion Shoulderguards","icon":"inv_shoulder_plate_panda_b_02purple","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,471,0,0,576,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":380,"11":464,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":471,"11":576,"22":3963},"upgradeStep":1}}}, +{"id":101004,"name":"Heart-Lesion Waistband","icon":"inv_belt_plate_panda_b_02purple","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,0,612,0,408,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":494,"11":329,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"9":612,"11":408,"22":2972},"upgradeStep":1}}}, +{"id":101005,"name":"Heart-Lesion Armguards","icon":"inv_bracer_plate_panda_b_02purple","type":6,"armorType":4,"stats":[604,0,906,0,0,0,0,0,306,0,459,0,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":247,"10":371,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"8":306,"10":459,"22":2312},"upgradeStep":1}}}, +{"id":101006,"name":"Heart-Lesion Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[1084,0,1626,0,0,0,0,723,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"weaponSpeed":3.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"7":583,"11":583}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"7":723,"11":723},"upgradeStep":1}}}, +{"id":101007,"name":"Springrain Cloak of Rage","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,604,906,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"7":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"7":402,"22":1092},"upgradeStep":1}}}, +{"id":101008,"name":"Springrain Choker","icon":"inv_jewelry_necklace_71","type":2,"stats":[0,604,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101009,"name":"Springrain Idol of Rage","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101010,"name":"Springrain Ring of Onslaught","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101011,"name":"Springrain Band of Onslaught","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101012,"name":"Springrain Stone of Rage","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021},"upgradeStep":1}}}, +{"id":101013,"name":"Springrain Tunic","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,1626,1084,0,0,775,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":625,"11":512,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":775,"11":634,"22":2781},"upgradeStep":1}}}, +{"id":101014,"name":"Springrain Treads","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,1208,805,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"7":464,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"7":576,"22":1912},"upgradeStep":1}}}, +{"id":101015,"name":"Springrain Grips","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,1208,805,576,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"7":380,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":576,"7":471,"22":1738},"upgradeStep":1}}}, +{"id":101016,"name":"Springrain Headpiece","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,1626,1084,0,0,0,723,0,0,0,723,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"7":583,"11":583,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"7":723,"11":723,"22":2259},"upgradeStep":1}}}, +{"id":101017,"name":"Springrain Leggings","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,1626,1084,0,0,775,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":625,"7":512,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":775,"7":634,"22":2433},"upgradeStep":1}}}, +{"id":101018,"name":"Springrain Spaulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,1208,805,0,0,0,576,0,0,0,471,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":464,"11":380,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"7":576,"11":471,"22":2086},"upgradeStep":1}}}, +{"id":101019,"name":"Springrain Stave","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,0,0,0,723,0,0,0,723,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"7":583,"11":583,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"7":723,"11":723,"14":6208},"upgradeStep":1}}}, +{"id":101020,"name":"Springrain Belt","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,1208,805,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"11":464,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"11":576,"22":1564},"upgradeStep":1}}}, +{"id":101021,"name":"Springrain Bracers","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,906,604,0,459,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"11":247,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":459,"11":306,"22":1217},"upgradeStep":1}}}, +{"id":101022,"name":"Springrain Medallion","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,0,906,604,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101023,"name":"Springrain Idol of Destruction","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101024,"name":"Springrain Band of Destruction","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101025,"name":"Springrain Ring of Destruction","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101026,"name":"Springrain Stone of Destruction","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101027,"name":"Springrain Vest","icon":"inv_chest_leather_panda_b_01","type":5,"armorType":2,"stats":[0,1084,1626,0,0,0,634,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":512,"11":625,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":634,"11":775,"22":2781},"upgradeStep":1}}}, +{"id":101028,"name":"Springrain Footpads","icon":"inv_boots_leather_panda_b_01","type":10,"armorType":2,"stats":[0,805,1208,0,0,408,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":329,"7":494,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":408,"7":612,"22":1912},"upgradeStep":1}}}, +{"id":101029,"name":"Springrain Handguards","icon":"inv_gauntlets_leather_panda_b_01","type":7,"armorType":2,"stats":[0,805,1208,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":433,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":537,"6":537,"22":1738},"upgradeStep":1}}}, +{"id":101030,"name":"Springrain Helm","icon":"inv_helmet_leather_panda_b_01","type":1,"armorType":2,"stats":[0,1084,1626,0,0,0,0,723,0,0,0,723,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"7":583,"11":583,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"7":723,"11":723,"22":2259},"upgradeStep":1}}}, +{"id":101031,"name":"Springrain Legguards","icon":"inv_pants_leather_panda_b_01","type":9,"armorType":2,"stats":[0,1084,1626,0,0,0,824,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":665,"8":443,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":824,"8":549,"22":2433},"upgradeStep":1}}}, +{"id":101032,"name":"Springrain Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,1084,1626,0,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"483":{"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"stats":{"1":1084,"2":1626,"6":723,"11":723},"upgradeStep":1}}}, +{"id":101033,"name":"Springrain Pauldrons","icon":"inv_shoulder_leather_panda_b_01","type":3,"armorType":2,"stats":[0,805,1208,0,0,0,0,612,408,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":494,"8":329,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"7":612,"8":408,"22":2086},"upgradeStep":1}}}, +{"id":101034,"name":"Springrain Cord","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,805,1208,0,0,0,408,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":329,"11":494,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":408,"11":612,"22":1564},"upgradeStep":1}}}, +{"id":101035,"name":"Springrain Cuffs","icon":"inv_bracer_leather_panda_b_01","type":6,"armorType":2,"stats":[0,604,906,0,0,459,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":371,"8":247,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":459,"8":306,"22":1217},"upgradeStep":1}}}, +{"id":101036,"name":"Springrain Cloak of Wisdom","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101037,"name":"Springrain Necklace","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,906,604,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101038,"name":"Springrain Idol of Wisdom","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101039,"name":"Springrain Band of Wisdom","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101040,"name":"Springrain Ring of Wisdom","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101041,"name":"Springrain Stone of Wisdom","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101042,"name":"Springrain Cloak of Destruction","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101043,"name":"Springrain Jerkin","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,1626,1084,630,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":508,"7":508,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":630,"7":630,"22":2781},"upgradeStep":1}}}, +{"id":101044,"name":"Springrain Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,1208,805,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"11":464,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"11":576,"22":1912},"upgradeStep":1}}}, +{"id":101045,"name":"Springrain Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,1208,805,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"7":537,"22":1738},"upgradeStep":1}}}, +{"id":101046,"name":"Springrain Hood","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,1626,1084,634,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":512,"11":625,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":634,"11":775,"22":2259},"upgradeStep":1}}}, +{"id":101047,"name":"Springrain Britches","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,1626,1084,0,0,824,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":665,"11":443,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":824,"11":549,"22":2433},"upgradeStep":1}}}, +{"id":101048,"name":"Springrain Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,1208,805,471,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":2086},"upgradeStep":1}}}, +{"id":101049,"name":"Springrain Waistband","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,1208,805,537,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"7":433,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":537,"7":537,"22":1564},"upgradeStep":1}}}, +{"id":101050,"name":"Springrain Bindings","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,906,604,0,0,432,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353,"22":1217},"upgradeStep":1}}}, +{"id":101051,"name":"Springrain Staff","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,634,0,0,775,0,0,0,0,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"4":512,"7":625,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"4":634,"7":775,"14":6208},"upgradeStep":1}}}, +{"id":101052,"name":"Trailseeker Cloak of Rage","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,604,906,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"7":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"7":402,"22":1092},"upgradeStep":1}}}, +{"id":101053,"name":"Trailseeker Choker","icon":"inv_jewelry_necklace_71","type":2,"stats":[0,604,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101054,"name":"Trailseeker Idol of Rage","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101055,"name":"Trailseeker Band of Onslaught","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101056,"name":"Trailseeker Ring of Onslaught","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101057,"name":"Trailseeker Stone of Rage","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021},"upgradeStep":1}}}, +{"id":101058,"name":"Trailseeker Vest","icon":"inv_chest_mail_panda_b_01","type":5,"armorType":3,"stats":[0,1084,1626,0,0,0,723,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,3869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":583,"8":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":723,"8":723,"22":3869},"upgradeStep":1}}}, +{"id":101059,"name":"Trailseeker Greaves","icon":"inv_boots_mail_panda_b_01","type":10,"armorType":3,"stats":[0,805,1208,0,0,0,0,576,0,0,0,471,0,0,0,0,0,0,0,0,0,0,2660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":464,"11":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"7":576,"11":471,"22":2660},"upgradeStep":1}}}, +{"id":101060,"name":"Trailseeker Gauntlets","icon":"inv_gauntlets_mail_panda_b_01","type":7,"armorType":3,"stats":[0,805,1208,0,0,0,471,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":380,"8":464,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":471,"8":576,"22":2418},"upgradeStep":1}}}, +{"id":101061,"name":"Trailseeker Helm","icon":"inv_helmet_mail_panda_b_01","type":1,"armorType":3,"stats":[0,1084,1625,0,0,634,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,3144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1311,"5":512,"11":625,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1625,"5":634,"11":775,"22":3144},"upgradeStep":1}}}, +{"id":101062,"name":"Trailseeker Legguards","icon":"inv_pants_mail_panda_b_01","type":9,"armorType":3,"stats":[0,1084,1626,0,0,0,775,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":625,"11":512,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":775,"11":634,"22":3385},"upgradeStep":1}}}, +{"id":101063,"name":"Trailseeker Spaulders","icon":"inv_shoulder_mail_panda_b_01","type":3,"armorType":3,"stats":[0,805,1208,0,0,0,0,612,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":494,"11":329,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"7":612,"11":408,"22":2902},"upgradeStep":1}}}, +{"id":101064,"name":"Trailseeker Belt","icon":"inv_belt_mail_panda_b_01","type":8,"armorType":3,"stats":[0,805,1208,0,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":380,"7":464,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":471,"7":576,"22":2176},"upgradeStep":1}}}, +{"id":101065,"name":"Trailseeker Bracers","icon":"inv_bracer_mail_panda_b_01","type":6,"armorType":3,"stats":[0,604,906,0,0,432,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":432,"6":353,"22":1693},"upgradeStep":1}}}, +{"id":101066,"name":"Trailseeker Rifle","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,1084,1626,0,0,775,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":8312,"weaponDamageMax":15438,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"5":625,"7":512}},"483":{"randPropPoints":2061,"weaponDamageMin":8312,"weaponDamageMax":15438,"stats":{"1":1084,"2":1626,"5":775,"7":634},"upgradeStep":1}}}, +{"id":101067,"name":"RENAME Forestwalker Spear UNUSED","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1084,1626,0,0,0,634,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":512,"7":625}},"483":{"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"stats":{"1":1084,"2":1626,"6":634,"7":775},"upgradeStep":1}}}, +{"id":101068,"name":"Mountainsage Medallion","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,0,906,604,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101069,"name":"Mountainsage Idol of Destruction","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101070,"name":"Mountainsage Band of Destruction","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101071,"name":"Mountainsage Ring of Destruction","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101072,"name":"Mountainsage Stone of Destruction","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101073,"name":"Mountainsage Sandals","icon":"inv_boots_cloth_panda_b_02_blue","type":10,"armorType":1,"stats":[0,0,1208,805,0,408,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":329,"7":494,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":408,"7":612,"22":1502},"upgradeStep":1}}}, +{"id":101074,"name":"Mountainsage Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_blue","type":7,"armorType":1,"stats":[0,0,1208,805,0,0,537,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"11":537,"22":1365},"upgradeStep":1}}}, +{"id":101075,"name":"Mountainsage Hood","icon":"inv_helmet_cloth_panda_b_02_blue","type":1,"armorType":1,"stats":[0,0,1626,1084,0,0,0,634,0,0,0,775,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"7":512,"11":625,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"7":634,"11":775,"22":1775},"upgradeStep":1}}}, +{"id":101076,"name":"Mountainsage Leggings","icon":"inv_pants_cloth_panda_b_02_blue","type":9,"armorType":1,"stats":[0,0,1626,1084,0,634,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"5":512,"7":625,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"5":634,"7":775,"22":1912},"upgradeStep":1}}}, +{"id":101077,"name":"Mountainsage Robe","icon":"inv_chest_cloth_panda_b_02_blue","type":5,"armorType":1,"stats":[0,0,1626,1084,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"5":583,"6":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"5":723,"6":723,"22":2185},"upgradeStep":1}}}, +{"id":101078,"name":"Mountainsage Shoulderpads","icon":"inv_shoulder_cloth_panda_b_02_blue","type":3,"armorType":1,"stats":[0,0,1208,805,0,612,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":494,"11":329,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":612,"11":408,"22":1639},"upgradeStep":1}}}, +{"id":101079,"name":"Mountainsage Cord","icon":"inv_belt_cloth_panda_b_02_blue","type":8,"armorType":1,"stats":[0,0,1208,805,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"11":464,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"11":576,"22":1229},"upgradeStep":1}}}, +{"id":101080,"name":"Mountainsage Wristwraps","icon":"inv_bracer_cloth_panda_b_02_blue","type":6,"armorType":1,"stats":[0,0,906,604,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"6":325,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":402,"6":402,"22":956},"upgradeStep":1}}}, +{"id":101081,"name":"Mountainsage Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,697,464,0,0,310,310,0,0,0,0,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"weaponSpeed":1.7,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"6":250,"7":250,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"stats":{"2":697,"3":464,"6":310,"7":310,"14":6206},"upgradeStep":1}}}, +{"id":101082,"name":"Mountainsage Cloak of Destruction","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,906,604,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101083,"name":"Mountainsage Staff","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,0,0,0,723,0,0,0,723,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"7":583,"11":583,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"7":723,"11":723,"14":6208},"upgradeStep":1}}}, +{"id":101084,"name":"Mistdancer Amulet","icon":"inv_jewelry_necklace_62","type":2,"stats":[0,604,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101085,"name":"Mistdancer Band of Stoicism","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101086,"name":"Mistdancer Ring of Stoicism","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,0,0,0,306,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"9":247,"11":371}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"9":306,"11":459},"upgradeStep":1}}}, +{"id":101087,"name":"Mistdancer Defender Stone","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101088,"name":"Mistdancer Spire","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1084,1626,0,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"483":{"randPropPoints":2061,"weaponDamageMin":9500,"weaponDamageMax":14250,"stats":{"1":1084,"2":1626,"6":723,"11":723},"upgradeStep":1}}}, +{"id":101089,"name":"Mistdancer Defender Idol","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101090,"name":"Mistdancer Vest","icon":"inv_chest_leather_panda_b_01light","type":5,"armorType":2,"stats":[0,1084,1626,0,0,0,634,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":512,"11":625,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":634,"11":775,"22":2781},"upgradeStep":1}}}, +{"id":101091,"name":"Mistdancer Footpads","icon":"inv_boots_leather_panda_b_01light","type":10,"armorType":2,"stats":[0,805,1208,0,0,408,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":329,"7":494,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":408,"7":612,"22":1912},"upgradeStep":1}}}, +{"id":101092,"name":"Mistdancer Handguards","icon":"inv_gauntlets_leather_panda_b_01light","type":7,"armorType":2,"stats":[0,805,1208,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":433,"6":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":537,"6":537,"22":1738},"upgradeStep":1}}}, +{"id":101093,"name":"Mistdancer Helm","icon":"inv_helmet_leather_panda_b_01light","type":1,"armorType":2,"stats":[0,1084,1626,0,0,0,0,723,0,0,0,723,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"7":583,"11":583,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"7":723,"11":723,"22":2259},"upgradeStep":1}}}, +{"id":101094,"name":"Mistdancer Legguards","icon":"inv_pants_leather_panda_b_01light","type":9,"armorType":2,"stats":[0,1084,1626,0,0,0,824,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"6":665,"8":443,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"6":824,"8":549,"22":2433},"upgradeStep":1}}}, +{"id":101095,"name":"Mistdancer Pauldrons","icon":"inv_shoulder_leather_panda_b_01light","type":3,"armorType":2,"stats":[0,805,1208,0,0,0,0,612,408,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":494,"8":329,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"7":612,"8":408,"22":2086},"upgradeStep":1}}}, +{"id":101096,"name":"Mistdancer Cord","icon":"inv_belt_leather_panda_b_01light","type":8,"armorType":2,"stats":[0,805,1208,0,0,0,408,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":329,"11":494,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":408,"11":612,"22":1564},"upgradeStep":1}}}, +{"id":101097,"name":"Mistdancer Cuffs","icon":"inv_bracer_leather_panda_b_01light","type":6,"armorType":2,"stats":[0,604,906,0,0,459,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":371,"8":247,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"5":459,"8":306,"22":1217},"upgradeStep":1}}}, +{"id":101098,"name":"Mistdancer Boots","icon":"inv_boots_leather_panda_b_02_crimson","type":10,"armorType":2,"stats":[0,0,1208,805,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"11":464,"22":1763}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"11":576,"22":1912},"upgradeStep":1}}}, +{"id":101099,"name":"Mistdancer Gloves","icon":"inv_glove_leather_panda_b_02_crimson","type":7,"armorType":2,"stats":[0,0,1208,805,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"7":433,"22":1602}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"7":537,"22":1738},"upgradeStep":1}}}, +{"id":101100,"name":"Mistdancer Hood","icon":"inv_helm_leather_panda_b_02_crimson","type":1,"armorType":2,"stats":[0,0,1626,1084,634,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":512,"11":625,"22":2083}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":634,"11":775,"22":2259},"upgradeStep":1}}}, +{"id":101101,"name":"Mistdancer Cloak of Wisdom","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101102,"name":"Mistdancer Idol of Wisdom","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101103,"name":"Mistdancer Britches","icon":"inv_pants_leather_panda_b_02_crimson","type":9,"armorType":2,"stats":[0,0,1626,1084,0,0,824,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":665,"11":443,"22":2243}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":824,"11":549,"22":2433},"upgradeStep":1}}}, +{"id":101104,"name":"Mistdancer Necklace","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,906,604,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101105,"name":"Mistdancer Ring of Wisdom","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101106,"name":"Mistdancer Band of Wisdom","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101107,"name":"Mistdancer Stone of Wisdom","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101108,"name":"Mistdancer Shoulders","icon":"inv_shoulder_leather_panda_b_02_crimson","type":3,"armorType":2,"stats":[0,0,1208,805,471,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":380,"7":464,"22":1923}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":471,"7":576,"22":2086},"upgradeStep":1}}}, +{"id":101109,"name":"Mistdancer Staff","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,634,0,0,775,0,0,0,0,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"4":512,"7":625,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"4":634,"7":775,"14":6208},"upgradeStep":1}}}, +{"id":101110,"name":"Mistdancer Waistband","icon":"inv_belt_leather_panda_b_02_crimson","type":8,"armorType":2,"stats":[0,0,1208,805,537,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"7":433,"22":1442}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":537,"7":537,"22":1564},"upgradeStep":1}}}, +{"id":101111,"name":"Mistdancer Bindings","icon":"inv_bracer_leather_panda_b_02_crimson","type":6,"armorType":2,"stats":[0,0,906,604,0,0,432,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":1122}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353,"22":1217},"upgradeStep":1}}}, +{"id":101112,"name":"Mistdancer Sword","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,464,697,0,0,0,310,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"weaponSpeed":2.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"1":464,"2":697,"6":310,"11":310},"upgradeStep":1}}}, +{"id":101113,"name":"Mistdancer Idol of Rage","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101114,"name":"Mistdancer Choker","icon":"inv_jewelry_necklace_71","type":2,"stats":[0,604,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101115,"name":"Mistdancer Band of Onslaught","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101116,"name":"Mistdancer Ring of Onslaught","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101117,"name":"Mistdancer Stone of Rage","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021},"upgradeStep":1}}}, +{"id":101118,"name":"Mistdancer Cloak of Rage","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,604,906,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"7":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"7":402,"22":1092},"upgradeStep":1}}}, +{"id":101119,"name":"Mistdancer Jerkin","icon":"inv_chest_leather_panda_b_02_crimson","type":5,"armorType":2,"stats":[0,0,1626,1084,630,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":508,"7":508,"22":2564}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":630,"7":630,"22":2781},"upgradeStep":1}}}, +{"id":101120,"name":"Sunsoul Battleplate","icon":"inv_chest_plate_panda_b_01","type":5,"armorType":4,"stats":[1084,0,1626,0,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"6":583,"11":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"6":723,"11":723,"22":5284},"upgradeStep":1}}}, +{"id":101121,"name":"Sunsoul Sabatons","icon":"inv_boot_plate_panda_b_01","type":10,"armorType":4,"stats":[805,0,1208,0,0,0,0,576,471,0,0,0,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"7":464,"8":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"7":576,"8":471,"22":3633},"upgradeStep":1}}}, +{"id":101122,"name":"Sunsoul Gauntlets","icon":"inv_glove_plate_panda_b_01","type":7,"armorType":4,"stats":[805,0,1208,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":433,"6":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"5":537,"6":537,"22":3302},"upgradeStep":1}}}, +{"id":101123,"name":"Sunsoul Helm","icon":"inv_helmet_plate_panda_b_01","type":1,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,634,0,0,775,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"8":512,"11":625,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"8":634,"11":775,"22":4293},"upgradeStep":1}}}, +{"id":101124,"name":"Sunsoul Legplates","icon":"inv_pants_plate_panda_b_01","type":9,"armorType":4,"stats":[1084,0,1626,0,0,775,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":625,"7":512,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":775,"7":634,"22":4623},"upgradeStep":1}}}, +{"id":101125,"name":"Sunsoul Pauldrons","icon":"inv_shoulder_plate_panda_b_01","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,576,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":464,"7":380,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":576,"7":471,"22":3963},"upgradeStep":1}}}, +{"id":101126,"name":"Sunsoul Girdle","icon":"inv_belt_plate_panda_b_01","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,0,408,0,0,0,612,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"7":329,"11":494,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"7":408,"11":612,"22":2972},"upgradeStep":1}}}, +{"id":101127,"name":"Sunsoul Vambraces","icon":"inv_bracer_plate_panda_b_01","type":6,"armorType":4,"stats":[604,0,906,0,0,0,459,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":371,"11":247,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":459,"11":306,"22":2312},"upgradeStep":1}}}, +{"id":101128,"name":"Sunsoul Breastplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[0,0,1626,1084,723,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":583,"7":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":723,"7":723,"22":5284},"upgradeStep":1}}}, +{"id":101129,"name":"Sunsoul Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101130,"name":"Sunsoul Boots","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[0,0,1208,805,0,0,576,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":464,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":576,"11":471,"22":3633},"upgradeStep":1}}}, +{"id":101131,"name":"Sunsoul Gloves","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[0,0,1208,805,537,0,0,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"11":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":537,"11":537,"22":3302},"upgradeStep":1}}}, +{"id":101132,"name":"Sunsoul Headpiece","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[0,0,1626,1084,0,0,634,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":512,"7":625,"22":3959}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":634,"7":775,"22":4293},"upgradeStep":1}}}, +{"id":101133,"name":"Sunsoul Leggings","icon":"inv_pants_plate_panda_b_02","type":9,"armorType":4,"stats":[0,0,1626,1084,0,0,0,549,0,0,0,824,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"7":443,"11":665,"22":4263}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"7":549,"11":824,"22":4623},"upgradeStep":1}}}, +{"id":101134,"name":"Sunsoul Necklace","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,906,604,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101135,"name":"Sunsoul Idol of Wisdom","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101136,"name":"Sunsoul Ring of Wisdom","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101137,"name":"Sunsoul Band of Wisdom","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101138,"name":"Sunsoul Stone of Wisdom","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101139,"name":"Sunsoul Spaulders","icon":"inv_shoulder_plate_panda_b_02","type":3,"armorType":4,"stats":[0,0,1208,805,0,0,537,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":3654}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"11":537,"22":3963},"upgradeStep":1}}}, +{"id":101140,"name":"Sunsoul Belt","icon":"inv_belt_plate_panda_b_02","type":8,"armorType":4,"stats":[0,0,1208,805,0,0,0,471,0,0,0,576,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":380,"11":464,"22":2741}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"7":471,"11":576,"22":2972},"upgradeStep":1}}}, +{"id":101141,"name":"Sunsoul Armplates","icon":"inv_bracer_plate_panda_b_02","type":6,"armorType":4,"stats":[0,0,906,604,0,0,432,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285,"22":2132}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"11":353,"22":2312},"upgradeStep":1}}}, +{"id":101142,"name":"Sunsoul Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,697,464,332,0,0,272,0,0,0,0,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"weaponSpeed":2.4,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":268,"7":219,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"stats":{"2":697,"3":464,"4":332,"7":272,"14":6206},"upgradeStep":1}}}, +{"id":101143,"name":"Sunsoul Shield","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,906,604,0,0,0,353,0,0,0,432,0,0,0,0,0,0,0,0,0,0,16948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":15628}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":353,"11":432,"22":16948},"upgradeStep":1}}}, +{"id":101144,"name":"Sunsoul Sword","icon":"inv_sword_1h_pandariaquest_b_01","type":13,"weaponType":9,"handType":2,"stats":[464,0,697,0,0,0,0,0,0,310,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":4932,"weaponDamageMax":9160,"weaponSpeed":2.4,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"9":250,"10":250}},"483":{"randPropPoints":883,"weaponDamageMin":4932,"weaponDamageMax":9160,"stats":{"0":464,"2":697,"9":310,"10":310},"upgradeStep":1}}}, +{"id":101145,"name":"Sunsoul Bulwark","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[604,0,906,0,0,0,0,0,0,432,0,353,0,0,0,0,0,0,0,0,0,0,16948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":349,"11":285,"22":15628}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":432,"11":353,"22":16948},"upgradeStep":1}}}, +{"id":101146,"name":"Sunsoul Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[1084,0,1626,0,0,0,634,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"weaponSpeed":3.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":512,"11":625}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"6":634,"11":775},"upgradeStep":1}}}, +{"id":101147,"name":"Sunsoul Cloak of Battle","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101148,"name":"Sunsoul Pendant","icon":"inv_jewelry_necklace_73","type":2,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101149,"name":"Sunsoul Ring of Might","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,459,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"7":371,"11":247}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"7":459,"11":306},"upgradeStep":1}}}, +{"id":101150,"name":"Sunsoul Band of Might","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101151,"name":"Sunsoul Stone of Battle","icon":"inv_misc_trinketpanda_01","type":12,"stats":[1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"483":{"randPropPoints":1531,"stats":{"0":1021},"upgradeStep":1}}}, +{"id":101152,"name":"Sunsoul Idol of Battle","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021},"upgradeStep":1}}}, +{"id":101153,"name":"Sunsoul Chestguard","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"9":583,"10":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"9":723,"10":723,"22":5284},"upgradeStep":1}}}, +{"id":101154,"name":"Sunsoul Cloak of Stoicism","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[604,0,906,0,0,0,0,0,0,402,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101155,"name":"Sunsoul Greaves","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[805,0,1208,0,0,576,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":464,"11":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"5":576,"11":471,"22":3633},"upgradeStep":1}}}, +{"id":101156,"name":"Sunsoul Handguards","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,537,0,0,537,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":433,"11":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":537,"11":537,"22":3302},"upgradeStep":1}}}, +{"id":101157,"name":"Sunsoul Faceguard","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[1084,0,1626,0,0,775,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":625,"9":512,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":775,"9":634,"22":4293},"upgradeStep":1}}}, +{"id":101158,"name":"Sunsoul Legguards","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,775,0,634,0,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"8":625,"10":512,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"8":775,"10":634,"22":4623},"upgradeStep":1}}}, +{"id":101159,"name":"Sunsoul Amulet","icon":"inv_jewelry_necklace_62","type":2,"stats":[604,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101160,"name":"Sunsoul Defender Idol","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101161,"name":"Sunsoul Ring of Stoicism","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,0,0,306,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":247,"11":371}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":306,"11":459},"upgradeStep":1}}}, +{"id":101162,"name":"Sunsoul Band of Stoicism","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101163,"name":"Sunsoul Defender Stone","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101164,"name":"Sunsoul Shoulderguards","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,0,408,0,612,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"11":494,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"9":408,"11":612,"22":3963},"upgradeStep":1}}}, +{"id":101165,"name":"Sunsoul Waistband","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":433,"10":433,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"9":537,"10":537,"22":2972},"upgradeStep":1}}}, +{"id":101166,"name":"Sunsoul Armguards","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[604,0,906,0,0,0,0,0,0,0,432,353,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":349,"11":285,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"10":432,"11":353,"22":2312},"upgradeStep":1}}}, +{"id":101167,"name":"Communal Medallion","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,0,906,604,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101168,"name":"Communal Idol of Destruction","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101169,"name":"Communal Band of Destruction","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101170,"name":"Communal Ring of Destruction","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101171,"name":"Communal Stone of Destruction","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101172,"name":"Communal Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,697,464,0,0,310,310,0,0,0,0,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"weaponSpeed":1.7,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"6":250,"7":250,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"stats":{"2":697,"3":464,"6":310,"7":310,"14":6206},"upgradeStep":1}}}, +{"id":101173,"name":"Communal Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101174,"name":"Communal Sandals","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,1208,805,576,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"6":380,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":576,"6":471,"22":1502},"upgradeStep":1}}}, +{"id":101175,"name":"Communal Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,1208,805,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"7":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"7":537,"22":1365},"upgradeStep":1}}}, +{"id":101176,"name":"Communal Hood","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,1626,1084,0,0,549,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":443,"11":665,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":549,"11":824,"22":1775},"upgradeStep":1}}}, +{"id":101177,"name":"Communal Leggings","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,1626,1084,0,0,0,775,0,0,0,634,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"7":625,"11":512,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"7":775,"11":634,"22":1912},"upgradeStep":1}}}, +{"id":101178,"name":"Communal Necklace","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,906,604,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101179,"name":"Communal Idol of Wisdom","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101180,"name":"Communal Band of Wisdom","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101181,"name":"Communal Ring of Wisdom","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101182,"name":"Communal Vestments","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,1626,1084,824,0,0,549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":665,"7":443,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":824,"7":549,"22":2185},"upgradeStep":1}}}, +{"id":101183,"name":"Communal Stone of Wisdom","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101184,"name":"Communal Shoulderpads","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,1208,805,612,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":494,"11":329,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":612,"11":408,"22":1639},"upgradeStep":1}}}, +{"id":101185,"name":"Communal Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,1208,805,537,0,0,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":433,"7":433,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":537,"7":537,"22":1229},"upgradeStep":1}}}, +{"id":101186,"name":"Communal Wristwraps","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,906,604,432,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"11":285,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":432,"11":353,"22":956},"upgradeStep":1}}}, +{"id":101187,"name":"Communal Staff","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,775,0,0,634,0,0,0,0,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"4":625,"7":512,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"4":775,"7":634,"14":6208},"upgradeStep":1}}}, +{"id":101188,"name":"Communal Cloak of Destruction","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101189,"name":"Communal Boots","icon":"inv_boots_cloth_panda_b_01","type":10,"armorType":1,"stats":[0,0,1208,805,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"7":464,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"7":576,"22":1502},"upgradeStep":1}}}, +{"id":101190,"name":"Communal Gloves","icon":"inv_gloves_cloth_panda_b_01","type":7,"armorType":1,"stats":[0,0,1208,805,576,0,0,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"11":380,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":576,"11":471,"22":1365},"upgradeStep":1}}}, +{"id":101191,"name":"Communal Cowl","icon":"inv_helmet_cloth_panda_b_01","type":1,"armorType":1,"stats":[0,0,1626,1084,549,0,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":443,"7":665,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":549,"7":824,"22":1775},"upgradeStep":1}}}, +{"id":101192,"name":"Communal Pants","icon":"inv_pants_cloth_panda_b_01","type":9,"armorType":1,"stats":[0,0,1626,1084,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":583,"11":583,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":723,"11":723,"22":1912},"upgradeStep":1}}}, +{"id":101193,"name":"Communal Robe","icon":"inv_chest_cloth_panda_b_01","type":5,"armorType":1,"stats":[0,0,1626,1084,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,2185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":583,"11":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":723,"11":723,"22":2185},"upgradeStep":1}}}, +{"id":101194,"name":"Communal Mantle","icon":"inv_shoulder_cloth_panda_b_01","type":3,"armorType":1,"stats":[0,0,1208,805,0,0,612,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":494,"7":329,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":612,"7":408,"22":1639},"upgradeStep":1}}}, +{"id":101195,"name":"Communal Sash","icon":"inv_belt_cloth_panda_b_01","type":8,"armorType":1,"stats":[0,0,1208,805,0,0,0,471,0,0,0,576,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":380,"11":464,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"7":471,"11":576,"22":1229},"upgradeStep":1}}}, +{"id":101196,"name":"Communal Bindings","icon":"inv_bracer_cloth_panda_b_01","type":6,"armorType":1,"stats":[0,0,906,604,0,0,459,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":371,"11":247,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":459,"11":306,"22":956},"upgradeStep":1}}}, +{"id":101197,"name":"Communal Stave","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,0,0,0,775,0,0,0,634,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"7":625,"11":512,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"7":775,"11":634,"14":6208},"upgradeStep":1}}}, +{"id":101198,"name":"Lightdrinker Cloak of Rage","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,604,906,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"7":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"7":402,"22":1092},"upgradeStep":1}}}, +{"id":101199,"name":"Lightdrinker Choker","icon":"inv_jewelry_necklace_71","type":2,"stats":[0,604,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101200,"name":"Lightdrinker Idol of Rage","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101201,"name":"Lightdrinker Band of Onslaught","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101202,"name":"Lightdrinker Ring of Onslaught","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101203,"name":"Lightdrinker Stone of Rage","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021},"upgradeStep":1}}}, +{"id":101204,"name":"Lightdrinker Jerkin","icon":"inv_chest_leather_panda_b_01dark","type":5,"armorType":2,"stats":[0,1084,1626,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"5":583,"6":583,"22":2564}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"5":723,"6":723,"22":2781},"upgradeStep":1}}}, +{"id":101205,"name":"Lightdrinker Boots","icon":"inv_boots_leather_panda_b_01dark","type":10,"armorType":2,"stats":[0,805,1208,0,0,0,612,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":494,"8":329,"22":1763}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":612,"8":408,"22":1912},"upgradeStep":1}}}, +{"id":101206,"name":"Lightdrinker Gloves","icon":"inv_gauntlets_leather_panda_b_01dark","type":7,"armorType":2,"stats":[0,805,1208,0,0,0,0,576,0,0,0,471,0,0,0,0,0,0,0,0,0,0,1738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"7":464,"11":380,"22":1602}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"7":576,"11":471,"22":1738},"upgradeStep":1}}}, +{"id":101207,"name":"Lightdrinker Hood","icon":"inv_helmet_leather_panda_b_01dark","type":1,"armorType":2,"stats":[0,1084,1626,0,0,0,0,0,549,0,0,824,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"8":443,"11":665,"22":2083}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"8":549,"11":824,"22":2259},"upgradeStep":1}}}, +{"id":101208,"name":"Lightdrinker Britches","icon":"inv_pants_leather_panda_b_01dark","type":9,"armorType":2,"stats":[0,1084,1626,0,0,549,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"5":443,"7":665,"22":2243}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"5":549,"7":824,"22":2433},"upgradeStep":1}}}, +{"id":101209,"name":"Lightdrinker Shoulders","icon":"inv_shoulder_leather_panda_b_01dark","type":3,"armorType":2,"stats":[0,805,1208,0,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":433,"7":433,"22":1923}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":537,"7":537,"22":2086},"upgradeStep":1}}}, +{"id":101210,"name":"Lightdrinker Waistband","icon":"inv_belt_leather_panda_b_01dark","type":8,"armorType":2,"stats":[0,805,1208,0,0,0,408,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":329,"11":494,"22":1442}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":408,"11":612,"22":1564},"upgradeStep":1}}}, +{"id":101211,"name":"Lightdrinker Bindings","icon":"inv_bracer_leather_panda_b_01dark","type":6,"armorType":2,"stats":[0,604,906,0,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":371,"8":247,"22":1122}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":459,"8":306,"22":1217},"upgradeStep":1}}}, +{"id":101212,"name":"Lightdrinker Dagger","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,464,697,0,0,0,0,332,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":3699,"weaponDamageMax":6870,"weaponSpeed":1.8,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"7":268,"11":219}},"483":{"randPropPoints":883,"weaponDamageMin":3699,"weaponDamageMax":6870,"stats":{"1":464,"2":697,"7":332,"11":272},"upgradeStep":1}}}, +{"id":101213,"name":"Lightdrinker Shiv","icon":"inv_knife_1h_pandung_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,464,697,0,0,0,272,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":3699,"weaponDamageMax":6870,"weaponSpeed":1.8,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":375,"2":562,"6":219,"7":268}},"483":{"randPropPoints":883,"weaponDamageMin":3699,"weaponDamageMax":6870,"stats":{"1":464,"2":697,"6":272,"7":332},"upgradeStep":1}}}, +{"id":101214,"name":"Lightdrinker Sword","icon":"inv_sword_1h_pandariaquest_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,464,697,0,0,0,0,310,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"weaponSpeed":2.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"7":250,"11":250}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"1":464,"2":697,"7":310,"11":310},"upgradeStep":1}}}, +{"id":101215,"name":"Streamtalker Cloak of Rage","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,604,906,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":325,"7":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"6":402,"7":402,"22":1092},"upgradeStep":1}}}, +{"id":101216,"name":"Streamtalker Choker","icon":"inv_jewelry_necklace_71","type":2,"stats":[0,604,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101217,"name":"Streamtalker Idol of Rage","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101218,"name":"Streamtalker Band of Onslaught","icon":"inv_jewelry_ring_122","type":11,"stats":[0,603,906,0,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101219,"name":"Streamtalker Ring of Onslaught","icon":"inv_jewelry_ring_128","type":11,"stats":[0,603,906,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":487,"2":731,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"1":603,"2":906,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101220,"name":"Streamtalker Stone of Rage","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"483":{"randPropPoints":1531,"stats":{"1":1021},"upgradeStep":1}}}, +{"id":101221,"name":"Streamtalker Medallion","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,0,906,604,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101222,"name":"Streamtalker Idol of Destruction","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101223,"name":"Streamtalker Ring of Destruction","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101224,"name":"Streamtalker Band of Destruction","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101225,"name":"Streamtalker Stone of Destruction","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101226,"name":"Streamtalker Gavel","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,697,464,0,0,0,272,0,0,0,332,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"weaponSpeed":2.4,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"7":219,"11":268,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"stats":{"2":697,"3":464,"7":272,"11":332,"14":6206},"upgradeStep":1}}}, +{"id":101227,"name":"Streamtalker Tunic","icon":"inv_chest_mail_panda_b_02blue","type":5,"armorType":3,"stats":[0,0,1626,1084,0,0,0,723,0,0,0,723,0,0,0,0,0,0,0,0,0,0,3869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"7":583,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"7":723,"11":723,"22":3869},"upgradeStep":1}}}, +{"id":101228,"name":"Streamtalker Boots","icon":"inv_boots_mail_panda_b_02blue","type":10,"armorType":3,"stats":[0,0,1208,805,576,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"7":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":576,"7":471,"22":2660},"upgradeStep":1}}}, +{"id":101229,"name":"Streamtalker Gloves","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,0,1208,805,0,0,576,0,0,0,0,471,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":464,"11":380,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":576,"11":471,"22":2418},"upgradeStep":1}}}, +{"id":101230,"name":"Streamtalker Coif","icon":"inv_helmet_mail_panda_b_02blue","type":1,"armorType":3,"stats":[0,0,1625,1084,0,0,775,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1311,"3":875,"6":625,"7":512,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1625,"3":1084,"6":775,"7":634,"22":3144},"upgradeStep":1}}}, +{"id":101231,"name":"Streamtalker Legwraps","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,0,1626,1084,549,0,0,0,0,0,0,824,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":443,"11":665,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":549,"11":824,"22":3385},"upgradeStep":1}}}, +{"id":101232,"name":"Streamtalker Aegis","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,906,604,0,0,432,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":15628}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":432,"7":353,"22":16948},"upgradeStep":1}}}, +{"id":101233,"name":"Streamtalker Pauldrons","icon":"inv_shoulder_mail_panda_b_02blue","type":3,"armorType":3,"stats":[0,0,1208,805,0,0,612,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":494,"11":329,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":612,"11":408,"22":2902},"upgradeStep":1}}}, +{"id":101234,"name":"Streamtalker Belt","icon":"inv_belt_mail_panda_b_02blue","type":8,"armorType":3,"stats":[0,0,1208,805,0,0,0,612,0,0,0,408,0,0,0,0,0,0,0,0,0,0,2176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":494,"11":329,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"7":612,"11":408,"22":2176},"upgradeStep":1}}}, +{"id":101235,"name":"Streamtalker Armbands","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,0,906,604,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":371,"7":247,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":459,"7":306,"22":1693},"upgradeStep":1}}}, +{"id":101236,"name":"Streamtalker Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,464,697,0,0,0,310,0,0,0,0,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"weaponSpeed":2.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"483":{"randPropPoints":883,"weaponDamageMin":5343,"weaponDamageMax":9923,"stats":{"1":464,"2":697,"6":310,"11":310},"upgradeStep":1}}}, +{"id":101237,"name":"Streamtalker Chestguard","icon":"inv_chest_mail_panda_b_02red","type":5,"armorType":3,"stats":[0,1084,1626,0,0,0,0,0,723,0,0,723,0,0,0,0,0,0,0,0,0,0,3869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"8":583,"11":583,"22":3568}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"8":723,"11":723,"22":3869},"upgradeStep":1}}}, +{"id":101238,"name":"Streamtalker Greaves","icon":"inv_boots_mail_panda_b_02red","type":10,"armorType":3,"stats":[0,805,1208,0,0,576,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"5":464,"7":380,"22":2453}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"5":576,"7":471,"22":2660},"upgradeStep":1}}}, +{"id":101239,"name":"Streamtalker Handguards","icon":"inv_gloves_mail_panda_b_02red","type":7,"armorType":3,"stats":[0,805,1208,0,0,0,612,0,408,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":494,"8":329,"22":2230}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":612,"8":408,"22":2418},"upgradeStep":1}}}, +{"id":101240,"name":"Streamtalker Helm","icon":"inv_helmet_mail_panda_b_02red","type":1,"armorType":3,"stats":[0,1084,1625,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1311,"5":583,"6":583,"22":2899}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1625,"5":723,"6":723,"22":3144},"upgradeStep":1}}}, +{"id":101241,"name":"Streamtalker Legguards","icon":"inv_pants_mail_panda_b_02red","type":9,"armorType":3,"stats":[0,1084,1626,0,0,0,0,775,0,0,0,634,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":875,"2":1312,"7":625,"11":512,"22":3122}},"483":{"randPropPoints":2061,"stats":{"1":1084,"2":1626,"7":775,"11":634,"22":3385},"upgradeStep":1}}}, +{"id":101242,"name":"Streamtalker Shoulderguards","icon":"inv_shoulder_mail_panda_b_02red","type":3,"armorType":3,"stats":[0,805,1208,0,0,0,537,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":433,"11":433,"22":2676}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":537,"11":537,"22":2902},"upgradeStep":1}}}, +{"id":101243,"name":"Streamtalker Waistguard","icon":"inv_belt_mail_panda_b_02red","type":8,"armorType":3,"stats":[0,805,1208,0,0,0,408,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"6":329,"7":494,"22":2007}},"483":{"randPropPoints":1531,"stats":{"1":805,"2":1208,"6":408,"7":612,"22":2176},"upgradeStep":1}}}, +{"id":101244,"name":"Streamtalker Armguard","icon":"inv_bracer_mail_panda_b_02red","type":6,"armorType":3,"stats":[0,604,906,0,0,0,0,306,0,0,0,459,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":247,"11":371,"22":1561}},"483":{"randPropPoints":1148,"stats":{"1":604,"2":906,"7":306,"11":459,"22":1693},"upgradeStep":1}}}, +{"id":101245,"name":"Streamtalker Cloak of Wisdom","icon":"inv_cape_panprog_b_01","type":4,"armorType":1,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101246,"name":"Streamtalker Necklace","icon":"inv_jewelry_necklace_72","type":2,"stats":[0,0,906,604,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101247,"name":"Streamtalker Idol of Wisdom","icon":"inv_misc_trinketpanda_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101248,"name":"Streamtalker Ring of Wisdom","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"6":371,"7":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"6":459,"7":306},"upgradeStep":1}}}, +{"id":101249,"name":"Streamtalker Band of Wisdom","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,402,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"4":325,"7":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"4":402,"7":402},"upgradeStep":1}}}, +{"id":101250,"name":"Streamtalker Stone of Wisdom","icon":"inv_misc_trinketpanda_04","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101251,"name":"Streamtalker Cloak of Destruction","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"7":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101252,"name":"Streamtalker Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,697,464,310,0,0,310,0,0,0,0,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"weaponSpeed":2.4,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":375,"4":250,"7":250,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":2466,"weaponDamageMax":4580,"stats":{"2":697,"3":464,"4":310,"7":310,"14":6206},"upgradeStep":1}}}, +{"id":101253,"name":"Streamtalker Vest","icon":"inv_chest_mail_panda_b_02blue","type":5,"armorType":3,"stats":[0,0,1626,1084,775,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"4":625,"6":512,"22":3568}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"4":775,"6":634,"22":3869},"upgradeStep":1}}}, +{"id":101254,"name":"Streamtalker Sabatons","icon":"inv_boots_mail_panda_b_02blue","type":10,"armorType":3,"stats":[0,0,1208,805,0,0,0,537,0,0,0,537,0,0,0,0,0,0,0,0,0,0,2660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"7":433,"11":433,"22":2453}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"7":537,"11":537,"22":2660},"upgradeStep":1}}}, +{"id":101255,"name":"Streamtalker Grips","icon":"inv_gloves_mail_panda_b_02blue","type":7,"armorType":3,"stats":[0,0,1208,805,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"7":464,"22":2230}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"7":576,"22":2418},"upgradeStep":1}}}, +{"id":101256,"name":"Streamtalker Cowl","icon":"inv_helmet_mail_panda_b_02blue","type":1,"armorType":3,"stats":[0,0,1625,1084,634,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,3144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1311,"3":875,"4":512,"11":625,"22":2899}},"483":{"randPropPoints":2061,"stats":{"2":1625,"3":1084,"4":634,"11":775,"22":3144},"upgradeStep":1}}}, +{"id":101257,"name":"Streamtalker Leggings","icon":"inv_pants_mail_panda_b_02blue","type":9,"armorType":3,"stats":[0,0,1626,1084,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":583,"7":583,"22":3122}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":723,"7":723,"22":3385},"upgradeStep":1}}}, +{"id":101258,"name":"Streamtalker Shield","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,906,604,353,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,16948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":285,"11":349,"22":15628}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":353,"11":432,"22":16948},"upgradeStep":1}}}, +{"id":101259,"name":"Streamtalker Spaulders","icon":"inv_shoulder_mail_panda_b_02blue","type":3,"armorType":3,"stats":[0,0,1208,805,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":380,"11":464,"22":2676}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":471,"11":576,"22":2902},"upgradeStep":1}}}, +{"id":101260,"name":"Streamtalker Girdle","icon":"inv_belt_mail_panda_b_02blue","type":8,"armorType":3,"stats":[0,0,1208,805,576,0,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"4":464,"7":380,"22":2007}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"4":576,"7":471,"22":2176},"upgradeStep":1}}}, +{"id":101261,"name":"Streamtalker Bracers","icon":"inv_bracer_mail_panda_b_02blue","type":6,"armorType":3,"stats":[0,0,906,604,402,0,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":1561}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"4":402,"11":402,"22":1693},"upgradeStep":1}}}, +{"id":101262,"name":"Felsoul Medallion","icon":"inv_jewelry_necklace_66","type":2,"stats":[0,0,906,604,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101263,"name":"Felsoul Idol of Destruction","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"483":{"randPropPoints":1531,"stats":{"11":1021},"upgradeStep":1}}}, +{"id":101264,"name":"Felsoul Band of Destruction","icon":"inv_jewelry_ring_122","type":11,"stats":[0,0,906,603,0,0,0,402,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"7":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"7":402,"11":402},"upgradeStep":1}}}, +{"id":101265,"name":"Felsoul Ring of Destruction","icon":"inv_jewelry_ring_128","type":11,"stats":[0,0,906,603,0,459,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":487,"5":371,"6":247}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":603,"5":459,"6":306},"upgradeStep":1}}}, +{"id":101266,"name":"Felsoul Stone of Destruction","icon":"inv_misc_trinketpanda_01","type":12,"stats":[0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"483":{"randPropPoints":1531,"stats":{"3":1021},"upgradeStep":1}}}, +{"id":101267,"name":"Felsoul Sandals","icon":"inv_boots_cloth_panda_b_01_red","type":10,"armorType":1,"stats":[0,0,1208,805,0,408,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":329,"7":494,"22":1385}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":408,"7":612,"22":1502},"upgradeStep":1}}}, +{"id":101268,"name":"Felsoul Handwraps","icon":"inv_gloves_cloth_panda_b_01_red","type":7,"armorType":1,"stats":[0,0,1208,805,0,0,537,0,0,0,0,537,0,0,0,0,0,0,0,0,0,0,1365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":433,"11":433,"22":1259}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":537,"11":537,"22":1365},"upgradeStep":1}}}, +{"id":101269,"name":"Felsoul Cowl","icon":"inv_helmet_cloth_panda_b_01_red","type":1,"armorType":1,"stats":[0,0,1626,1084,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":583,"7":583,"22":1637}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":723,"7":723,"22":1775},"upgradeStep":1}}}, +{"id":101270,"name":"Felsoul Leggings","icon":"inv_pants_cloth_panda_b_01_red","type":9,"armorType":1,"stats":[0,0,1626,1084,0,0,634,775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"6":512,"7":625,"22":1763}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"6":634,"7":775,"22":1912},"upgradeStep":1}}}, +{"id":101271,"name":"Felsoul Robe","icon":"inv_chest_cloth_panda_b_01_red","type":5,"armorType":1,"stats":[0,0,1626,1084,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":875,"5":583,"6":583,"22":2014}},"483":{"randPropPoints":2061,"stats":{"2":1626,"3":1084,"5":723,"6":723,"22":2185},"upgradeStep":1}}}, +{"id":101272,"name":"Felsoul Shoulderpads","icon":"inv_shoulder_cloth_panda_b_01_red","type":3,"armorType":1,"stats":[0,0,1208,805,0,0,612,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"6":494,"7":329,"22":1511}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"6":612,"7":408,"22":1639},"upgradeStep":1}}}, +{"id":101273,"name":"Felsoul Cord","icon":"inv_belt_cloth_panda_b_01_red","type":8,"armorType":1,"stats":[0,0,1208,805,0,576,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"5":464,"6":380,"22":1133}},"483":{"randPropPoints":1531,"stats":{"2":1208,"3":805,"5":576,"6":471,"22":1229},"upgradeStep":1}}}, +{"id":101274,"name":"Felsoul Wristwraps","icon":"inv_bracer_cloth_panda_b_01_red","type":6,"armorType":1,"stats":[0,0,906,604,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"6":402,"7":402,"22":956},"upgradeStep":1}}}, +{"id":101275,"name":"Felsoul Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,697,464,0,0,310,310,0,0,0,0,0,0,6206,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"weaponSpeed":1.7,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1409,"weaponDamageMax":2618,"stats":{"2":562,"3":375,"6":250,"7":250,"14":5011}},"483":{"randPropPoints":883,"weaponDamageMin":1746,"weaponDamageMax":3244,"stats":{"2":697,"3":464,"6":310,"7":310,"14":6206},"upgradeStep":1}}}, +{"id":101276,"name":"Felsoul Cloak of Destruction","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[0,0,906,604,0,402,0,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"2":906,"3":604,"5":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101277,"name":"Felsoul Staff","icon":"inv_staff_2h_pandung_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,1626,1084,0,0,775,634,0,0,0,0,0,0,6208,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"weaponSpeed":3,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":3833,"weaponDamageMax":5751,"stats":{"2":1312,"3":875,"6":625,"7":512,"14":5009}},"483":{"randPropPoints":2061,"weaponDamageMin":4750,"weaponDamageMax":7125,"stats":{"2":1626,"3":1084,"6":775,"7":634,"14":6208},"upgradeStep":1}}}, +{"id":101278,"name":"Oathsworn Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[1084,0,1626,0,0,0,775,0,0,0,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"weaponSpeed":3.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":625,"11":512}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"6":775,"11":634},"upgradeStep":1}}}, +{"id":101279,"name":"Oathsworn Breastplate","icon":"inv_chest_plate_panda_b_02","type":5,"armorType":4,"stats":[1084,0,1626,0,0,723,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":583,"6":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":723,"6":723,"22":5284},"upgradeStep":1}}}, +{"id":101280,"name":"Oathsworn Sabatons","icon":"inv_boots_plate_panda_b_02","type":10,"armorType":4,"stats":[805,0,1208,0,0,576,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":464,"7":380,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"5":576,"7":471,"22":3633},"upgradeStep":1}}}, +{"id":101281,"name":"Oathsworn Gauntlets","icon":"inv_gauntlets_plate_panda_b_02","type":7,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,537,0,0,537,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":433,"11":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":537,"11":537,"22":3302},"upgradeStep":1}}}, +{"id":101282,"name":"Oathsworn Helm","icon":"inv_helmet_plate_panda_b_02","type":1,"armorType":4,"stats":[1084,0,1626,0,0,0,775,0,634,0,0,0,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"6":625,"8":512,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"6":775,"8":634,"22":4293},"upgradeStep":1}}}, +{"id":101283,"name":"Oathsworn Legplates","icon":"inv_pants_plate_panda_b_02green","type":9,"armorType":4,"stats":[1084,0,1626,0,0,0,0,775,0,0,0,634,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"7":625,"11":512,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"7":775,"11":634,"22":4623},"upgradeStep":1}}}, +{"id":101284,"name":"Oathsworn Pauldrons","icon":"inv_shoulder_plate_panda_b_02green","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,471,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":380,"7":464,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":471,"7":576,"22":3963},"upgradeStep":1}}}, +{"id":101285,"name":"Oathsworn Girdle","icon":"inv_belt_plate_panda_b_02green","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,408,0,0,0,0,612,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"6":329,"11":494,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"6":408,"11":612,"22":2972},"upgradeStep":1}}}, +{"id":101286,"name":"Oathsworn Vambraces","icon":"inv_bracer_plate_panda_b_02green","type":6,"armorType":4,"stats":[604,0,906,0,0,0,0,306,0,0,0,459,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":247,"11":371,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"7":306,"11":459,"22":2312},"upgradeStep":1}}}, +{"id":101287,"name":"Oathsworn Maul","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[1084,0,1626,0,0,0,723,0,0,0,0,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"weaponSpeed":3.6,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"483":{"randPropPoints":2061,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":1084,"2":1626,"6":723,"11":723},"upgradeStep":1}}}, +{"id":101288,"name":"Oathsworn Sword","icon":"inv_sword_1h_pandariaquest_b_03","type":13,"weaponType":9,"handType":2,"stats":[464,0,697,0,0,0,0,0,0,310,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":883,"weaponDamageMin":4932,"weaponDamageMax":9160,"weaponSpeed":2.4,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3980,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"9":250,"10":250}},"483":{"randPropPoints":883,"weaponDamageMin":4932,"weaponDamageMax":9160,"stats":{"0":464,"2":697,"9":310,"10":310},"upgradeStep":1}}}, +{"id":101289,"name":"Oathsworn Bulwark","icon":"inv_shield_pandariaquest_b_03","type":13,"weaponType":7,"handType":3,"stats":[604,0,906,0,0,0,0,0,0,353,0,432,0,0,0,0,0,0,0,0,0,0,16948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":285,"11":349,"22":15628}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":353,"11":432,"22":16948},"upgradeStep":1}}}, +{"id":101290,"name":"Oathsworn Cloak of Battle","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101291,"name":"Oathsworn Pendant","icon":"inv_jewelry_necklace_73","type":2,"stats":[604,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101292,"name":"Oathsworn Band of Might","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,402,0,0,0,0,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"6":325,"11":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"6":402,"11":402},"upgradeStep":1}}}, +{"id":101293,"name":"Oathsworn Ring of Might","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,459,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"7":371,"11":247}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"7":459,"11":306},"upgradeStep":1}}}, +{"id":101294,"name":"Oathsworn Stone of Battle","icon":"inv_misc_trinketpanda_01","type":12,"stats":[1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"483":{"randPropPoints":1531,"stats":{"0":1021},"upgradeStep":1}}}, +{"id":101295,"name":"Oathsworn Idol of Battle","icon":"inv_misc_trinketpanda_03","type":12,"stats":[0,0,0,0,0,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"483":{"randPropPoints":1531,"stats":{"6":1021},"upgradeStep":1}}}, +{"id":101296,"name":"Oathsworn Chestguard","icon":"inv_chest_plate_panda_b_01blue","type":5,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,0,723,0,723,0,0,0,0,0,0,0,0,0,0,5284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"9":583,"11":583,"22":4872}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"9":723,"11":723,"22":5284},"upgradeStep":1}}}, +{"id":101297,"name":"Oathsworn Cloak of Stoicism","icon":"inv_cape_panprog_b_02","type":4,"armorType":1,"stats":[604,0,906,0,0,0,0,0,0,402,0,402,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"11":325,"22":1007}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"11":402,"22":1092},"upgradeStep":1}}}, +{"id":101298,"name":"Oathsworn Greaves","icon":"inv_boot_plate_panda_b_01blue","type":10,"armorType":4,"stats":[805,0,1208,0,0,471,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,3633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"5":380,"10":464,"22":3350}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"5":471,"10":576,"22":3633},"upgradeStep":1}}}, +{"id":101299,"name":"Oathsworn Handguards","icon":"inv_glove_plate_panda_b_01blue","type":7,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,537,537,0,0,0,0,0,0,0,0,0,0,0,0,3302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":433,"9":433,"22":3045}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":537,"9":537,"22":3302},"upgradeStep":1}}}, +{"id":101300,"name":"Oathsworn Faceguard","icon":"inv_helm_plate_panda_b_01blue","type":1,"armorType":4,"stats":[1084,0,1626,0,0,0,0,0,0,0,775,634,0,0,0,0,0,0,0,0,0,0,4293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"10":625,"11":512,"22":3959}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"10":775,"11":634,"22":4293},"upgradeStep":1}}}, +{"id":101301,"name":"Oathsworn Legguards","icon":"inv_pant_plate_panda_b_01blue","type":9,"armorType":4,"stats":[1084,0,1626,0,0,824,0,0,0,0,549,0,0,0,0,0,0,0,0,0,0,0,4623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2061,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":875,"2":1312,"5":665,"10":443,"22":4263}},"483":{"randPropPoints":2061,"stats":{"0":1084,"2":1626,"5":824,"10":549,"22":4623},"upgradeStep":1}}}, +{"id":101302,"name":"Oathsworn Amulet","icon":"inv_jewelry_necklace_62","type":2,"stats":[604,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101303,"name":"Oathsworn Defender Idol","icon":"inv_misc_trinketpanda_05","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101304,"name":"Oathsworn Band of Stoicism","icon":"inv_jewelry_ring_122","type":11,"stats":[603,0,906,0,0,0,0,0,0,402,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":325,"10":325}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":402,"10":402},"upgradeStep":1}}}, +{"id":101305,"name":"Oathsworn Ring of Stoicism","icon":"inv_jewelry_ring_128","type":11,"stats":[603,0,906,0,0,0,0,0,0,306,0,459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":487,"2":731,"9":247,"11":371}},"483":{"randPropPoints":1148,"stats":{"0":603,"2":906,"9":306,"11":459},"upgradeStep":1}}}, +{"id":101306,"name":"Oathsworn Defender Stone","icon":"inv_misc_trinketpanda_07","type":12,"stats":[0,0,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"483":{"randPropPoints":1531,"stats":{"2":1531},"upgradeStep":1}}}, +{"id":101307,"name":"Oathsworn Shoulderguards","icon":"inv_shoulder_plate_panda_b_01blue","type":3,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,612,408,0,0,0,0,0,0,0,0,0,0,0,0,3963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"8":494,"9":329,"22":3654}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"8":612,"9":408,"22":3963},"upgradeStep":1}}}, +{"id":101308,"name":"Oathsworn Waistband","icon":"inv_belt_plate_panda_b_01blue","type":8,"armorType":4,"stats":[805,0,1208,0,0,0,0,0,0,408,0,612,0,0,0,0,0,0,0,0,0,0,2972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1531,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"9":329,"11":494,"22":2741}},"483":{"randPropPoints":1531,"stats":{"0":805,"2":1208,"9":408,"11":612,"22":2972},"upgradeStep":1}}}, +{"id":101309,"name":"Oathsworn Armguards","icon":"inv_bracer_plate_panda_b_01blue","type":6,"armorType":4,"stats":[604,0,906,0,0,0,0,0,0,0,459,306,0,0,0,0,0,0,0,0,0,0,2312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1148,"ilvl":483,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":371,"11":247,"22":2132}},"483":{"randPropPoints":1148,"stats":{"0":604,"2":906,"10":459,"11":306,"22":2312},"upgradeStep":1}}}, +{"id":101781,"name":"Fire-Chanter Bindings","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1122}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":1270}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1287},"upgradeStep":1}}}, +{"id":101782,"name":"Fire-Chanter Boots","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1763}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1996}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":2022},"upgradeStep":1}}}, +{"id":101783,"name":"Fire-Chanter Britches","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2243}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":2540}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2573},"upgradeStep":1}}}, +{"id":101784,"name":"Fire-Chanter Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1602}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1814}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1838},"upgradeStep":1}}}, +{"id":101785,"name":"Fire-Chanter Hood","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,0,1977,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2083}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"22":2359}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"22":2389},"upgradeStep":1}}}, +{"id":101786,"name":"Fire-Chanter Jerkin","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2564}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":2903}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2941},"upgradeStep":1}}}, +{"id":101787,"name":"Fire-Chanter Shoulders","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1923}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":2177}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":2206},"upgradeStep":1}}}, +{"id":101788,"name":"Fire-Chanter Waistband","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1442}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1633}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1654},"upgradeStep":1}}}, +{"id":101789,"name":"Cliffbreaker Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"22":5588},"upgradeStep":1}}}, +{"id":101790,"name":"Cliffbreaker Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"22":1155},"upgradeStep":1}}}, +{"id":101791,"name":"Cliffbreaker Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3493},"upgradeStep":1}}}, +{"id":101792,"name":"Cliffbreaker Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3143},"upgradeStep":1}}}, +{"id":101793,"name":"Cliffbreaker Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"22":4540},"upgradeStep":1}}}, +{"id":101794,"name":"Cliffbreaker Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"22":4890},"upgradeStep":1}}}, +{"id":101795,"name":"Cliffbreaker Choker","icon":"inv_jewelry_necklace_86","type":2,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061},"upgradeStep":1}}}, +{"id":101796,"name":"Cliffbreaker Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":4191},"upgradeStep":1}}}, +{"id":101797,"name":"Cliffbreaker Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3842},"upgradeStep":1}}}, +{"id":101798,"name":"Cliffbreaker Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061},"upgradeStep":1}}}, +{"id":101799,"name":"Cliffbreaker Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"22":2445},"upgradeStep":1}}}, +{"id":101800,"name":"Amaranthine Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1155},"upgradeStep":1}}}, +{"id":101801,"name":"Amaranthine Cord","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1300},"upgradeStep":1}}}, +{"id":101802,"name":"Amaranthine Cowl","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"22":1877},"upgradeStep":1}}}, +{"id":101803,"name":"Amaranthine Handwraps","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1444},"upgradeStep":1}}}, +{"id":101804,"name":"Amaranthine Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2022},"upgradeStep":1}}}, +{"id":101805,"name":"Amaranthine Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707},"upgradeStep":1}}}, +{"id":101806,"name":"Amaranthine Robe","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2311},"upgradeStep":1}}}, +{"id":101807,"name":"Amaranthine Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1588},"upgradeStep":1}}}, +{"id":101808,"name":"Amaranthine Shoulderpads","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1733},"upgradeStep":1}}}, +{"id":101809,"name":"Amaranthine Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707},"upgradeStep":1}}}, +{"id":101810,"name":"Amaranthine Wristwraps","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1011},"upgradeStep":1}}}, +{"id":101811,"name":"Cloudscorcher Belt","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1283}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1300},"upgradeStep":1}}}, +{"id":101812,"name":"Cloudscorcher Cowl","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,1977,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"22":1853}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"22":1877},"upgradeStep":1}}}, +{"id":101813,"name":"Cloudscorcher Handwraps","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1426}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1444},"upgradeStep":1}}}, +{"id":101814,"name":"Cloudscorcher Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":1763}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":1996}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2022},"upgradeStep":1}}}, +{"id":101815,"name":"Cloudscorcher Robe","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2014}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":2281}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":2311},"upgradeStep":1}}}, +{"id":101816,"name":"Cloudscorcher Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1568}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1588},"upgradeStep":1}}}, +{"id":101817,"name":"Cloudscorcher Shoulderpads","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":1711}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":1733},"upgradeStep":1}}}, +{"id":101818,"name":"Cloudscorcher Wristwraps","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":998}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1011},"upgradeStep":1}}}, +{"id":101819,"name":"Everbright Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":4872}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":5517}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":5588},"upgradeStep":1}}}, +{"id":101820,"name":"Everbright Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3045}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":3448}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":3493},"upgradeStep":1}}}, +{"id":101821,"name":"Everbright Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2741}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":3103}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":3143},"upgradeStep":1}}}, +{"id":101822,"name":"Everbright Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[0,0,1977,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":3959}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"22":4482}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"22":4540},"upgradeStep":1}}}, +{"id":101823,"name":"Everbright Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":4263}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":4827}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":4890},"upgradeStep":1}}}, +{"id":101824,"name":"Everbright Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3654}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":4137}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":4191},"upgradeStep":1}}}, +{"id":101825,"name":"Everbright Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3350}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":3793}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":3842},"upgradeStep":1}}}, +{"id":101826,"name":"Everbright Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":2414}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":2445},"upgradeStep":1}}}, +{"id":101827,"name":"Warmsun Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,734,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061},"upgradeStep":1}}}, +{"id":101828,"name":"Warmsun Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,734,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1007}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"22":1140}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"22":1155},"upgradeStep":1}}}, +{"id":101829,"name":"Warmsun Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,734,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061},"upgradeStep":1}}}, +{"id":101830,"name":"Ordon Legend-Keeper Belt","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2007}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":2272}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":2302},"upgradeStep":1}}}, +{"id":101831,"name":"Ordon Legend-Keeper Bracers","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1561}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":1767}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1790},"upgradeStep":1}}}, +{"id":101832,"name":"Ordon Legend-Keeper Gauntlets","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2230}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":2525}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":2557},"upgradeStep":1}}}, +{"id":101833,"name":"Ordon Legend-Keeper Greaves","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2453}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":2777}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":2813},"upgradeStep":1}}}, +{"id":101834,"name":"Ordon Legend-Keeper Helm","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,0,1977,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2899}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":983,"22":3282}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1030,"22":3325},"upgradeStep":1}}}, +{"id":101835,"name":"Ordon Legend-Keeper Legguards","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":3122}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":3535}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":3580},"upgradeStep":1}}}, +{"id":101836,"name":"Ordon Legend-Keeper Spaulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,0,1469,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2676}},"496":{"randPropPoints":1728,"stats":{"2":1363,"3":909,"22":3030}},"500":{"randPropPoints":1793,"stats":{"2":1414,"3":943,"22":3069},"upgradeStep":1}}}, +{"id":101837,"name":"Ordon Legend-Keeper Vest","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,0,1977,1238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":3568}},"496":{"randPropPoints":2326,"stats":{"2":1835,"3":1143,"22":4039}},"500":{"randPropPoints":2414,"stats":{"2":1904,"3":1190,"22":4092},"upgradeStep":1}}}, +{"id":101838,"name":"Crimsonscale Belt","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2007}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":2272}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":2302},"upgradeStep":1}}}, +{"id":101839,"name":"Crimsonscale Bracers","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,734,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1561}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"22":1767}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"22":1790},"upgradeStep":1}}}, +{"id":101840,"name":"Crimsonscale Gauntlets","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2230}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":2525}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":2557},"upgradeStep":1}}}, +{"id":101841,"name":"Crimsonscale Greaves","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2453}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":2777}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":2813},"upgradeStep":1}}}, +{"id":101842,"name":"Crimsonscale Helm","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,1078,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3367,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2899}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"22":3282}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"22":3325},"upgradeStep":1}}}, +{"id":101843,"name":"Crimsonscale Legguards","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,1238,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3626,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":3122}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"22":3535}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"22":3580},"upgradeStep":1}}}, +{"id":101844,"name":"Crimsonscale Spaulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2676}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":3030}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":3069},"upgradeStep":1}}}, +{"id":101845,"name":"Crimsonscale Vest","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,1238,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4144,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":3568}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"22":4039}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"22":4092},"upgradeStep":1}}}, +{"id":101848,"name":"Kiln-Stoker Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682,"22":1140}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707,"22":1155},"upgradeStep":1}}}, +{"id":101849,"name":"Kiln-Stoker Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707},"upgradeStep":1}}}, +{"id":101850,"name":"Kiln-Stoker Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,1101,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"496":{"randPropPoints":1296,"stats":{"2":1022,"3":682}},"500":{"randPropPoints":1345,"stats":{"2":1061,"3":707},"upgradeStep":1}}}, +{"id":101851,"name":"Elder Tortoiseshell Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5660,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4872}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"22":5517}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"22":5588},"upgradeStep":1}}}, +{"id":101852,"name":"Elder Tortoiseshell Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"22":1140}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"22":1155},"upgradeStep":1}}}, +{"id":101853,"name":"Elder Tortoiseshell Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3448}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3493},"upgradeStep":1}}}, +{"id":101854,"name":"Elder Tortoiseshell Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3103}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3143},"upgradeStep":1}}}, +{"id":101855,"name":"Elder Tortoiseshell Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[1078,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4599,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"496":{"randPropPoints":2326,"stats":{"0":983,"2":1835,"22":4482}},"500":{"randPropPoints":2414,"stats":{"0":1030,"2":1904,"22":4540},"upgradeStep":1}}}, +{"id":101856,"name":"Elder Tortoiseshell Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1238,0,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4952,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4263}},"496":{"randPropPoints":2326,"stats":{"0":1143,"2":1835,"22":4827}},"500":{"randPropPoints":2414,"stats":{"0":1190,"2":1904,"22":4890},"upgradeStep":1}}}, +{"id":101857,"name":"Elder Tortoiseshell Gorget","icon":"inv_jewelry_necklace_86","type":2,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061},"upgradeStep":1}}}, +{"id":101858,"name":"Elder Tortoiseshell Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":4137}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":4191},"upgradeStep":1}}}, +{"id":101859,"name":"Elder Tortoiseshell Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[979,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"496":{"randPropPoints":1728,"stats":{"0":909,"2":1363,"22":3793}},"500":{"randPropPoints":1793,"stats":{"0":943,"2":1414,"22":3842},"upgradeStep":1}}}, +{"id":101860,"name":"Elder Tortoiseshell Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061},"upgradeStep":1}}}, +{"id":101861,"name":"Elder Tortoiseshell Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[734,0,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"496":{"randPropPoints":1296,"stats":{"0":682,"2":1022,"22":2414}},"500":{"randPropPoints":1345,"stats":{"0":707,"2":1061,"22":2445},"upgradeStep":1}}}, +{"id":101862,"name":"Cranefeather Bindings","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,734,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1396,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1122}},"496":{"randPropPoints":1296,"stats":{"1":682,"2":1022,"22":1270}},"500":{"randPropPoints":1345,"stats":{"1":707,"2":1061,"22":1287},"upgradeStep":1}}}, +{"id":101863,"name":"Cranefeather Boots","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":1996}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":2022},"upgradeStep":1}}}, +{"id":101864,"name":"Cranefeather Britches","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,1238,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":2243}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"22":2540}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"22":2573},"upgradeStep":1}}}, +{"id":101865,"name":"Cranefeather Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":1814}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":1838},"upgradeStep":1}}}, +{"id":101866,"name":"Cranefeather Hood","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,1078,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2420,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"496":{"randPropPoints":2326,"stats":{"1":983,"2":1835,"22":2359}},"500":{"randPropPoints":2414,"stats":{"1":1030,"2":1904,"22":2389},"upgradeStep":1}}}, +{"id":101867,"name":"Cranefeather Jerkin","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,1238,1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2979,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2506,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":2564}},"496":{"randPropPoints":2326,"stats":{"1":1143,"2":1835,"22":2903}},"500":{"randPropPoints":2414,"stats":{"1":1190,"2":1904,"22":2941},"upgradeStep":1}}}, +{"id":101868,"name":"Cranefeather Shoulders","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":2177}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":2206},"upgradeStep":1}}}, +{"id":101869,"name":"Cranefeather Waistband","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,979,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"496":{"randPropPoints":1728,"stats":{"1":909,"2":1363,"22":1633}},"500":{"randPropPoints":1793,"stats":{"1":943,"2":1414,"22":1654},"upgradeStep":1}}}, +{"id":101870,"name":"Fire-Chanter Bindings","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1122}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1431}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":1447},"upgradeStep":1}}}, +{"id":101871,"name":"Fire-Chanter Boots","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1763}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":2249}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":2274},"upgradeStep":1}}}, +{"id":101872,"name":"Fire-Chanter Britches","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2243}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":2862}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":2895},"upgradeStep":1}}}, +{"id":101873,"name":"Fire-Chanter Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1602}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":2044}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":2068},"upgradeStep":1}}}, +{"id":101874,"name":"Fire-Chanter Hood","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,0,2843,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2083}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"22":2657}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"22":2688},"upgradeStep":1}}}, +{"id":101875,"name":"Fire-Chanter Jerkin","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2564}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":3271}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":3308},"upgradeStep":1}}}, +{"id":101876,"name":"Fire-Chanter Shoulders","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1923}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":2453}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":2481},"upgradeStep":1}}}, +{"id":101877,"name":"Fire-Chanter Waistband","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1442}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1840}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1861},"upgradeStep":1}}}, +{"id":101878,"name":"Cliffbreaker Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1815,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1679,"2":2639,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1746,"2":2739,"22":6287},"upgradeStep":1}}}, +{"id":101879,"name":"Cliffbreaker Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"22":1300},"upgradeStep":1}}}, +{"id":101880,"name":"Cliffbreaker Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":3929},"upgradeStep":1}}}, +{"id":101881,"name":"Cliffbreaker Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":3536},"upgradeStep":1}}}, +{"id":101882,"name":"Cliffbreaker Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"22":5108},"upgradeStep":1}}}, +{"id":101883,"name":"Cliffbreaker Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1815,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1679,"2":2639,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1746,"2":2739,"22":5501},"upgradeStep":1}}}, +{"id":101884,"name":"Cliffbreaker Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526},"upgradeStep":1}}}, +{"id":101885,"name":"Cliffbreaker Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":4715},"upgradeStep":1}}}, +{"id":101886,"name":"Cliffbreaker Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":4322},"upgradeStep":1}}}, +{"id":101887,"name":"Cliffbreaker Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526},"upgradeStep":1}}}, +{"id":101888,"name":"Cliffbreaker Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"22":2750},"upgradeStep":1}}}, +{"id":101889,"name":"Amaranthine Cloak","icon":"inv_cape_pandaria_c_03","type":4,"armorType":1,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":1300},"upgradeStep":1}}}, +{"id":101890,"name":"Amaranthine Cord","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1462},"upgradeStep":1}}}, +{"id":101891,"name":"Amaranthine Cowl","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"22":2112},"upgradeStep":1}}}, +{"id":101892,"name":"Amaranthine Handwraps","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1625},"upgradeStep":1}}}, +{"id":101893,"name":"Amaranthine Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":2274},"upgradeStep":1}}}, +{"id":101894,"name":"Amaranthine Necklace","icon":"inv_jewelry_necklace_90","type":2,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017},"upgradeStep":1}}}, +{"id":101895,"name":"Amaranthine Robe","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":2599},"upgradeStep":1}}}, +{"id":101896,"name":"Amaranthine Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1787},"upgradeStep":1}}}, +{"id":101897,"name":"Amaranthine Shoulderpads","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1949},"upgradeStep":1}}}, +{"id":101898,"name":"Amaranthine Signet","icon":"inv_jewelry_ring_133","type":11,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017},"upgradeStep":1}}}, +{"id":101899,"name":"Amaranthine Wristwraps","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":1137},"upgradeStep":1}}}, +{"id":101900,"name":"Cloudscorcher Belt","icon":"inv_belt_cloth_reputation_c_01","type":8,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1133}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1445}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1462},"upgradeStep":1}}}, +{"id":101901,"name":"Cloudscorcher Cowl","icon":"inv_helmet_cloth_reputation_c_01","type":1,"armorType":1,"stats":[0,0,2843,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2136,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":1637}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"22":2088}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"22":2112},"upgradeStep":1}}}, +{"id":101902,"name":"Cloudscorcher Handwraps","icon":"inv_gauntlets_cloth_reputation_c_01","type":7,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1259}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1606}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1625},"upgradeStep":1}}}, +{"id":101903,"name":"Cloudscorcher Leggings","icon":"inv_pants_cloth_reputation_c_01","type":9,"armorType":1,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":1763}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":2248}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":2274},"upgradeStep":1}}}, +{"id":101904,"name":"Cloudscorcher Robe","icon":"inv_chest_cloth_reputation_c_01","type":5,"armorType":1,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2629,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":2014}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":2570}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":2599},"upgradeStep":1}}}, +{"id":101905,"name":"Cloudscorcher Sandals","icon":"inv_boots_cloth_reputation_c_01","type":10,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1385}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1767}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1787},"upgradeStep":1}}}, +{"id":101906,"name":"Cloudscorcher Shoulderpads","icon":"inv_shoulder_cloth_reputation_c_01","type":3,"armorType":1,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":1511}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":1927}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":1949},"upgradeStep":1}}}, +{"id":101907,"name":"Cloudscorcher Wristwraps","icon":"inv_bracer_cloth_reputation_c_01","type":6,"armorType":1,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":881}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1124}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":1137},"upgradeStep":1}}}, +{"id":101908,"name":"Everbright Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":4872}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":6215}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":6287},"upgradeStep":1}}}, +{"id":101909,"name":"Everbright Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3045}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":3884}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":3929},"upgradeStep":1}}}, +{"id":101910,"name":"Everbright Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2741}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":3496}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":3536},"upgradeStep":1}}}, +{"id":101911,"name":"Everbright Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[0,0,2843,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":3959}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"22":5050}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"22":5108},"upgradeStep":1}}}, +{"id":101912,"name":"Everbright Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":4263}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":5438}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":5501},"upgradeStep":1}}}, +{"id":101913,"name":"Everbright Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3654}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":4661}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":4715},"upgradeStep":1}}}, +{"id":101914,"name":"Everbright Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":3350}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":4273}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":4322},"upgradeStep":1}}}, +{"id":101915,"name":"Everbright Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":2132}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":2719}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":2750},"upgradeStep":1}}}, +{"id":101916,"name":"Warmsun Choker","icon":"inv_jewelry_necklace_93","type":2,"stats":[0,1056,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526},"upgradeStep":1}}}, +{"id":101917,"name":"Warmsun Cloak","icon":"inv_cape_pandaria_c_01","type":4,"armorType":1,"stats":[0,1056,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1007}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"22":1285}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"22":1300},"upgradeStep":1}}}, +{"id":101918,"name":"Warmsun Ring","icon":"inv_jewelry_ring_131","type":11,"stats":[0,1056,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526},"upgradeStep":1}}}, +{"id":101919,"name":"Ordon Legend-Keeper Belt","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2007}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":2560}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":2589},"upgradeStep":1}}}, +{"id":101920,"name":"Ordon Legend-Keeper Bracers","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1561}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1991}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":2014},"upgradeStep":1}}}, +{"id":101921,"name":"Ordon Legend-Keeper Gauntlets","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2230}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":2844}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":2877},"upgradeStep":1}}}, +{"id":101922,"name":"Ordon Legend-Keeper Greaves","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2453}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":3129}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":3165},"upgradeStep":1}}}, +{"id":101923,"name":"Ordon Legend-Keeper Helm","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,0,2843,1655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"22":2899}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1519,"22":3697}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1586,"22":3740},"upgradeStep":1}}}, +{"id":101924,"name":"Ordon Legend-Keeper Legguards","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":3122}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":3982}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":4028},"upgradeStep":1}}}, +{"id":101925,"name":"Ordon Legend-Keeper Spaulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,0,2112,1408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":649,"22":2676}},"535":{"randPropPoints":2485,"stats":{"2":1960,"3":1307,"22":3413}},"539":{"randPropPoints":2579,"stats":{"2":2035,"3":1356,"22":3452},"upgradeStep":1}}}, +{"id":101926,"name":"Ordon Legend-Keeper Vest","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,0,2843,1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":795,"22":3568}},"535":{"randPropPoints":3345,"stats":{"2":2639,"3":1679,"22":4551}},"539":{"randPropPoints":3472,"stats":{"2":2739,"3":1746,"22":4603},"upgradeStep":1}}}, +{"id":101927,"name":"Crimsonscale Belt","icon":"inv_belt_mail_reputation_c_01","type":8,"armorType":3,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2007}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":2560}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":2589},"upgradeStep":1}}}, +{"id":101928,"name":"Crimsonscale Bracers","icon":"inv_bracer_mail_reputation_c_01","type":6,"armorType":3,"stats":[0,1056,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1561}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"22":1991}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"22":2014},"upgradeStep":1}}}, +{"id":101929,"name":"Crimsonscale Gauntlets","icon":"inv_glove_mail_reputation_c_01","type":7,"armorType":3,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2230}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":2844}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":2877},"upgradeStep":1}}}, +{"id":101930,"name":"Crimsonscale Greaves","icon":"inv_boot_mail_reputation_c_01","type":10,"armorType":3,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2453}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":3129}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":3165},"upgradeStep":1}}}, +{"id":101931,"name":"Crimsonscale Helm","icon":"inv_helm_mail_reputation_c_01","type":1,"armorType":3,"stats":[0,1655,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2899}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"22":3697}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"22":3740},"upgradeStep":1}}}, +{"id":101932,"name":"Crimsonscale Legguards","icon":"inv_pant_mail_reputation_c_01","type":9,"armorType":3,"stats":[0,1815,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,0,0,0,0],"gemSockets":[2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":3122}},"535":{"randPropPoints":3345,"stats":{"1":1679,"2":2639,"22":3982}},"539":{"randPropPoints":3472,"stats":{"1":1746,"2":2739,"22":4028},"upgradeStep":1}}}, +{"id":101933,"name":"Crimsonscale Spaulders","icon":"inv_shoulder_mail_reputation_c_01","type":3,"armorType":3,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":2676}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":3413}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":3452},"upgradeStep":1}}}, +{"id":101934,"name":"Crimsonscale Vest","icon":"inv_chest_mail_reputation_c_01","type":5,"armorType":3,"stats":[0,1815,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4656,0,0,0,0],"gemSockets":[3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":3568}},"535":{"randPropPoints":3345,"stats":{"1":1679,"2":2639,"22":4551}},"539":{"randPropPoints":3472,"stats":{"1":1746,"2":2739,"22":4603},"upgradeStep":1}}}, +{"id":101935,"name":"Kiln-Stoker Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"22":1007}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980,"22":1285}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017,"22":1300},"upgradeStep":1}}}, +{"id":101936,"name":"Kiln-Stoker Collar","icon":"inv_jewelry_necklace_84","type":2,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017},"upgradeStep":1}}}, +{"id":101937,"name":"Kiln-Stoker Ring","icon":"inv_jewelry_ring_136","type":11,"stats":[0,0,1584,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488}},"535":{"randPropPoints":1864,"stats":{"2":1471,"3":980}},"539":{"randPropPoints":1934,"stats":{"2":1526,"3":1017},"upgradeStep":1}}}, +{"id":101938,"name":"Elder Tortoiseshell Breastplate","icon":"inv_chest_plate_reputation_c_01","type":5,"armorType":4,"stats":[1815,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6358,0,0,0,0],"gemSockets":[3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4872}},"535":{"randPropPoints":3345,"stats":{"0":1679,"2":2639,"22":6215}},"539":{"randPropPoints":3472,"stats":{"0":1746,"2":2739,"22":6287},"upgradeStep":1}}}, +{"id":101939,"name":"Elder Tortoiseshell Drape","icon":"inv_cape_pandaria_c_04","type":4,"armorType":1,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":1007}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"22":1285}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"22":1300},"upgradeStep":1}}}, +{"id":101940,"name":"Elder Tortoiseshell Gauntlets","icon":"inv_glove_plate_reputation_c_01","type":7,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3045}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":3884}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":3929},"upgradeStep":1}}}, +{"id":101941,"name":"Elder Tortoiseshell Girdle","icon":"inv_belt_plate_reputation_c_01","type":8,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":2741}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":3496}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":3536},"upgradeStep":1}}}, +{"id":101942,"name":"Elder Tortoiseshell Helm","icon":"inv_helmet_plate_reputation_c_01","type":1,"armorType":4,"stats":[1655,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"22":3959}},"535":{"randPropPoints":3345,"stats":{"0":1519,"2":2639,"22":5050}},"539":{"randPropPoints":3472,"stats":{"0":1586,"2":2739,"22":5108},"upgradeStep":1}}}, +{"id":101943,"name":"Elder Tortoiseshell Legplates","icon":"inv_pants_plate_reputation_c_01","type":9,"armorType":4,"stats":[1815,0,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5563,0,0,0,0],"gemSockets":[2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":795,"2":1312,"22":4263}},"535":{"randPropPoints":3345,"stats":{"0":1679,"2":2639,"22":5438}},"539":{"randPropPoints":3472,"stats":{"0":1746,"2":2739,"22":5501},"upgradeStep":1}}}, +{"id":101944,"name":"Elder Tortoiseshell Neck","icon":"inv_jewelry_necklace_86","type":2,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526},"upgradeStep":1}}}, +{"id":101945,"name":"Elder Tortoiseshell Pauldrons","icon":"inv_shoulder_plate_reputation_c_01","type":3,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3654}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":4661}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":4715},"upgradeStep":1}}}, +{"id":101946,"name":"Elder Tortoiseshell Sabatons","icon":"inv_boot_plate_reputation_c_01","type":10,"armorType":4,"stats":[1408,0,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":649,"2":974,"22":3350}},"535":{"randPropPoints":2485,"stats":{"0":1307,"2":1960,"22":4273}},"539":{"randPropPoints":2579,"stats":{"0":1356,"2":2035,"22":4322},"upgradeStep":1}}}, +{"id":101947,"name":"Elder Tortoiseshell Seal","icon":"inv_jewelry_ring_154","type":11,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526},"upgradeStep":1}}}, +{"id":101948,"name":"Elder Tortoiseshell Vambraces","icon":"inv_bracer_plate_reputation_c_01","type":6,"armorType":4,"stats":[1056,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"22":2132}},"535":{"randPropPoints":1864,"stats":{"0":980,"2":1471,"22":2719}},"539":{"randPropPoints":1934,"stats":{"0":1017,"2":1526,"22":2750},"upgradeStep":1}}}, +{"id":101949,"name":"Cranefeather Bindings","icon":"inv_bracer_leather_reputation_c_01","type":6,"armorType":2,"stats":[0,1056,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2008,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"22":1122}},"535":{"randPropPoints":1864,"stats":{"1":980,"2":1471,"22":1431}},"539":{"randPropPoints":1934,"stats":{"1":1017,"2":1526,"22":1447},"upgradeStep":1}}}, +{"id":101950,"name":"Cranefeather Boots","icon":"inv_boot_leather_reputation_c_01","type":10,"armorType":2,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1763}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":2249}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":2274},"upgradeStep":1}}}, +{"id":101951,"name":"Cranefeather Britches","icon":"inv_pant_leather_reputation_c_01","type":9,"armorType":2,"stats":[0,1815,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,0,0,0,0],"gemSockets":[2],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":2243}},"535":{"randPropPoints":3345,"stats":{"1":1679,"2":2639,"22":2862}},"539":{"randPropPoints":3472,"stats":{"1":1746,"2":2739,"22":2895},"upgradeStep":1}}}, +{"id":101952,"name":"Cranefeather Gloves","icon":"inv_glove_leather_reputation_c_01","type":7,"armorType":2,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2091,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1602}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":2044}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":2068},"upgradeStep":1}}}, +{"id":101953,"name":"Cranefeather Hood","icon":"inv_helm_leather_reputation_c_01","type":1,"armorType":2,"stats":[0,1655,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2719,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"22":2083}},"535":{"randPropPoints":3345,"stats":{"1":1519,"2":2639,"22":2657}},"539":{"randPropPoints":3472,"stats":{"1":1586,"2":2739,"22":2688},"upgradeStep":1}}}, +{"id":101954,"name":"Cranefeather Jerkin","icon":"inv_chest_leather_reputation_c_01","type":5,"armorType":2,"stats":[0,1815,2843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3346,0,0,0,0],"gemSockets":[3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3604,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":795,"2":1312,"22":2564}},"535":{"randPropPoints":3345,"stats":{"1":1679,"2":2639,"22":3271}},"539":{"randPropPoints":3472,"stats":{"1":1746,"2":2739,"22":3308},"upgradeStep":1}}}, +{"id":101955,"name":"Cranefeather Shoulders","icon":"inv_shoulder_leather_reputation_c_01","type":3,"armorType":2,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1923}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":2453}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":2481},"upgradeStep":1}}}, +{"id":101956,"name":"Cranefeather Waistband","icon":"inv_belt_leather_reputation_c_01","type":8,"armorType":2,"stats":[0,1408,2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":649,"2":974,"22":1442}},"535":{"randPropPoints":2485,"stats":{"1":1307,"2":1960,"22":1840}},"539":{"randPropPoints":2579,"stats":{"1":1356,"2":2035,"22":1861},"upgradeStep":1}}}, +{"id":102138,"name":"Grievous Gladiator's Copperskin Boots","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":102139,"name":"Grievous Gladiator's Copperskin Waistband","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":102140,"name":"Grievous Gladiator's Satin Treads","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"522":{"randPropPoints":2201,"stats":{"22":1700}},"526":{"randPropPoints":2285,"stats":{"22":1721},"upgradeStep":1}}}, +{"id":102141,"name":"Grievous Gladiator's Satin Cord","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"522":{"randPropPoints":2201,"stats":{"22":1391}},"526":{"randPropPoints":2285,"stats":{"22":1408},"upgradeStep":1}}}, +{"id":102142,"name":"Grievous Gladiator's Dragonhide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"522":{"randPropPoints":2201,"stats":{"22":2164}},"526":{"randPropPoints":2285,"stats":{"22":2190},"upgradeStep":1}}}, +{"id":102143,"name":"Grievous Gladiator's Dragonhide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"522":{"randPropPoints":2201,"stats":{"22":1771}},"526":{"randPropPoints":2285,"stats":{"22":1792},"upgradeStep":1}}}, +{"id":102245,"name":"Qian-Le, Courage of Niuzao","icon":"inv_cape_pandaria_oxtank_d_02","type":4,"armorType":1,"stats":[0,1848,2902,0,0,0,989,0,989,0,0,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"1":465,"2":730,"6":249,"8":249,"11":249,"22":1007}},"600":{"stats":{"1":1716,"2":2694,"6":918,"8":918,"11":918,"22":1525}},"604":{"stats":{"1":1781,"2":2796,"6":952,"8":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102246,"name":"Xing-Ho, Breath of Yu'lon","icon":"inv_cape_pandaria_dragoncaster_d_02","type":4,"armorType":1,"stats":[0,0,2902,1848,0,0,989,989,0,0,0,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"2":730,"3":465,"6":249,"7":249,"11":249,"22":1007}},"600":{"stats":{"2":2694,"3":1716,"6":918,"7":918,"11":918,"22":1525}},"604":{"stats":{"2":2796,"3":1781,"6":952,"7":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102247,"name":"Jina-Kang, Kindness of Chi-Ji","icon":"inv_cape_pandaria_cranehealer_d_02","type":4,"armorType":1,"stats":[0,0,2902,1848,989,0,0,989,0,0,0,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"2":730,"3":465,"4":249,"7":249,"11":249,"22":1007}},"600":{"stats":{"2":2694,"3":1716,"4":918,"7":918,"11":918,"22":1525}},"604":{"stats":{"2":2796,"3":1781,"4":952,"7":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102248,"name":"Fen-Yu, Fury of Xuen","icon":"inv_cape_pandaria_tigermelee_d_02","type":4,"armorType":1,"stats":[0,1848,2902,0,0,0,989,989,0,0,0,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"1":465,"2":730,"6":249,"7":249,"11":249,"22":1007}},"600":{"stats":{"1":1716,"2":2694,"6":918,"7":918,"11":918,"22":1525}},"604":{"stats":{"1":1781,"2":2796,"6":952,"7":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102249,"name":"Gong-Lu, Strength of Xuen","icon":"inv_cape_pandaria_tigermelee_d_02","type":4,"armorType":1,"stats":[1848,0,2902,0,0,0,989,989,0,0,0,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"0":465,"2":730,"6":249,"7":249,"11":249,"22":1007}},"600":{"stats":{"0":1716,"2":2694,"6":918,"7":918,"11":918,"22":1525}},"604":{"stats":{"0":1781,"2":2796,"6":952,"7":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102250,"name":"Qian-Ying, Fortitude of Niuzao","icon":"inv_cape_pandaria_oxtank_d_02","type":4,"armorType":1,"stats":[1848,0,2902,0,0,0,0,0,989,0,989,989,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":600,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"stats":{"0":465,"2":730,"8":249,"10":249,"11":249,"22":1007}},"600":{"stats":{"0":1716,"2":2694,"8":918,"10":918,"11":918,"22":1525}},"604":{"stats":{"0":1781,"2":2796,"8":952,"10":952,"11":952,"22":1540},"upgradeStep":1}}}, +{"id":102263,"name":"Timeless Plate Chestpiece","icon":"inv_chest_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102264,"name":"Timeless Plate Boots","icon":"inv_boot_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102265,"name":"Timeless Plate Gloves","icon":"inv_glove_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102266,"name":"Timeless Plate Helm","icon":"inv_helmet_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102267,"name":"Timeless Plate Leggings","icon":"inv_pants_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102268,"name":"Timeless Plate Spaulders","icon":"inv_shoulder_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102269,"name":"Timeless Plate Belt","icon":"inv_belt_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102270,"name":"Timeless Mail Chestpiece","icon":"inv_chest_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102271,"name":"Timeless Mail Boots","icon":"inv_boot_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102272,"name":"Timeless Mail Gloves","icon":"inv_glove_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102273,"name":"Timeless Mail Helm","icon":"inv_helm_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102274,"name":"Timeless Mail Leggings","icon":"inv_pant_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102275,"name":"Timeless Mail Spaulders","icon":"inv_shoulder_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102276,"name":"Timeless Mail Belt","icon":"inv_belt_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102277,"name":"Timeless Leather Chestpiece","icon":"inv_chest_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102278,"name":"Timeless Leather Boots","icon":"inv_boot_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102279,"name":"Timeless Leather Gloves","icon":"inv_glove_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102280,"name":"Timeless Leather Helm","icon":"inv_helm_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102281,"name":"Timeless Leather Leggings","icon":"inv_pant_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102282,"name":"Timeless Leather Spaulders","icon":"inv_shoulder_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102283,"name":"Timeless Leather Belt","icon":"inv_belt_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102284,"name":"Timeless Cloth Robes","icon":"inv_chest_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102285,"name":"Timeless Cloth Boots","icon":"inv_boots_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102286,"name":"Timeless Cloth Gloves","icon":"inv_gauntlets_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102287,"name":"Timeless Cloth Helm","icon":"inv_helmet_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102288,"name":"Timeless Cloth Leggings","icon":"inv_pants_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102289,"name":"Timeless Cloth Spaulders","icon":"inv_shoulder_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102290,"name":"Timeless Cloth Belt","icon":"inv_belt_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102291,"name":"Timeless Signet","icon":"inv_jewelry_ring_146","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102292,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102293,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102294,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102295,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102296,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,3166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"553":{"randPropPoints":2939,"stats":{"2":2939}},"557":{"randPropPoints":3050,"stats":{"2":3050},"upgradeStep":1}}}, +{"id":102297,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"553":{"randPropPoints":2939,"stats":{"9":1959}},"557":{"randPropPoints":3050,"stats":{"9":2033},"upgradeStep":1}}}, +{"id":102298,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102299,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102300,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102301,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102302,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102303,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102304,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102305,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"553":{"randPropPoints":2939},"557":{"randPropPoints":3050,"upgradeStep":1}}}, +{"id":102306,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,3166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"553":{"randPropPoints":2939,"stats":{"2":2939}},"557":{"randPropPoints":3050,"stats":{"2":3050},"upgradeStep":1}}}, +{"id":102307,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,3166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"553":{"randPropPoints":2939,"stats":{"2":2939}},"557":{"randPropPoints":3050,"stats":{"2":3050},"upgradeStep":1}}}, +{"id":102308,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"553":{"randPropPoints":2939,"stats":{"0":1959}},"557":{"randPropPoints":3050,"stats":{"0":2033},"upgradeStep":1}}}, +{"id":102309,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"553":{"randPropPoints":2939,"stats":{"3":1959}},"557":{"randPropPoints":3050,"stats":{"3":2033},"upgradeStep":1}}}, +{"id":102310,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"553":{"randPropPoints":2939,"stats":{"7":1959}},"557":{"randPropPoints":3050,"stats":{"7":2033},"upgradeStep":1}}}, +{"id":102311,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"553":{"randPropPoints":2939,"stats":{"11":1959}},"557":{"randPropPoints":3050,"stats":{"11":2033},"upgradeStep":1}}}, +{"id":102312,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Agi DPS Trinket (5)","icon":"ability_warrior_bloodfrenzy","type":12,"stats":[0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"553":{"randPropPoints":2939,"stats":{"1":1959}},"557":{"randPropPoints":3050,"stats":{"1":2033},"upgradeStep":1}}}, +{"id":102313,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Hit Trinket (5)","icon":"spell_shadow_mindflay","type":12,"stats":[0,0,0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"553":{"randPropPoints":2939,"stats":{"3":1959}},"557":{"randPropPoints":3050,"stats":{"3":2033},"upgradeStep":1}}}, +{"id":102314,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Int Spirit Trinket (5)","icon":"ability_creature_poison_06","type":12,"stats":[0,0,0,2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"553":{"randPropPoints":2939,"stats":{"3":1959}},"557":{"randPropPoints":3050,"stats":{"3":2033},"upgradeStep":1}}}, +{"id":102315,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Str DPS Trinket (5)","icon":"ability_warrior_rampage","type":12,"stats":[2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"553":{"randPropPoints":2939,"stats":{"0":1959}},"557":{"randPropPoints":3050,"stats":{"0":2033},"upgradeStep":1}}}, +{"id":102316,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Boss X Loot X - Tank Trinket (5)","icon":"ability_deathwing_bloodcorruption_earth","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"553":{"randPropPoints":2939,"stats":{"11":1959}},"557":{"randPropPoints":3050,"stats":{"11":2033},"upgradeStep":1}}}, +{"id":102318,"name":"Timeless Cloak","icon":"inv_misc_cape_19","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102320,"name":"Timeless Plate Bracers","icon":"inv_bracer_plate_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102321,"name":"Timeless Cloth Bracers","icon":"inv_bracer_cloth_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102322,"name":"Timeless Leather Bracers","icon":"inv_bracer_leather_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102323,"name":"Timeless Mail Bracers","icon":"inv_bracer_mail_reputation_c_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":102348,"name":"Timeworn Shadowtooth Faceguard","icon":"inv_helmet_116","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":1246,"ilvl":429,"phase":1,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"429":{"randPropPoints":1246,"stats":{"22":1846},"isBase":true}}}, +{"id":102480,"name":"Gladiator's Medallion","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":102481,"name":"Gladiator's Emblem","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":102483,"name":"Crafted Malevolent Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinket_04","type":12,"stats":[0,0,1313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1665,"ilvl":476,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"476":{"randPropPoints":1434,"stats":{"2":1131}},"484":{"randPropPoints":1545,"stats":{"2":1219},"upgradeStep":1}}}, +{"id":102574,"name":"Axe of Ordos","icon":"inv_axe_2h_firelandsraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"weaponSpeed":3.6,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":775,"weaponDamageMin":4285,"weaponDamageMax":6429,"isBase":true}}}, +{"id":102590,"name":"Prideful Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":102591,"name":"Prideful Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102592,"name":"Prideful Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102593,"name":"Prideful Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":102594,"name":"Prideful Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":102595,"name":"Prideful Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03horde","type":13,"weaponType":8,"handType":4,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":12738,"weaponDamageMax":19108,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":11823,"weaponDamageMax":17736,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":12272,"weaponDamageMax":18409,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102596,"name":"Prideful Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1401,934,623,0,0,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769,"stats":{"2":1301,"3":867,"4":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"stats":{"2":1350,"3":900,"4":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":102597,"name":"Prideful Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102598,"name":"Prideful Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":5373,"weaponDamageMax":9979,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":4987,"weaponDamageMax":9263,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":5176,"weaponDamageMax":9614,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":102599,"name":"Prideful Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102600,"name":"Prideful Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102601,"name":"Prideful Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,3270,2180,0,0,1453,0,0,0,0,1453,0,0,12485,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868,"stats":{"2":3035,"3":2023,"6":1349,"11":1349,"14":11588}},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"stats":{"2":3150,"3":2100,"6":1400,"11":1400,"14":12027},"upgradeStep":1}}}, +{"id":102602,"name":"Prideful Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":8503,"weaponDamageMax":12755,"weaponSpeed":1.8,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":7892,"weaponDamageMax":11839,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":8192,"weaponDamageMax":12288,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102603,"name":"Prideful Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102604,"name":"Prideful Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102605,"name":"Prideful Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":12282,"weaponDamageMax":18424,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":11833,"weaponDamageMax":17750,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102606,"name":"Prideful Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102607,"name":"Prideful Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,3270,2180,1453,0,0,0,0,0,0,1453,0,0,12485,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868,"stats":{"2":3035,"3":2023,"4":1349,"11":1349,"14":11588}},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"stats":{"2":3150,"3":2100,"4":1400,"11":1400,"14":12027},"upgradeStep":1}}}, +{"id":102608,"name":"Prideful Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102609,"name":"Prideful Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102610,"name":"Prideful Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102611,"name":"Prideful Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102612,"name":"Prideful Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":102613,"name":"Prideful Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":102614,"name":"Prideful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":102615,"name":"Prideful Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":1694},"upgradeStep":1}}}, +{"id":102616,"name":"Prideful Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"550":{"randPropPoints":2858,"stats":{"4":1905}},"554":{"randPropPoints":2966,"stats":{"4":1977},"upgradeStep":1}}}, +{"id":102617,"name":"Prideful Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":2700},"upgradeStep":1}}}, +{"id":102618,"name":"Prideful Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":102619,"name":"Prideful Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":102620,"name":"Prideful Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":1863},"upgradeStep":1}}}, +{"id":102621,"name":"Prideful Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":2371},"upgradeStep":1}}}, +{"id":102622,"name":"Prideful Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":102623,"name":"Prideful Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":3264}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":3300},"upgradeStep":1}}}, +{"id":102624,"name":"Prideful Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":2100},"upgradeStep":1}}}, +{"id":102625,"name":"Prideful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"550":{"randPropPoints":2858,"stats":{"4":1905}},"554":{"randPropPoints":2966,"stats":{"4":1977},"upgradeStep":1}}}, +{"id":102626,"name":"Prideful Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":102627,"name":"Prideful Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":2156},"upgradeStep":1}}}, +{"id":102628,"name":"Prideful Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":102629,"name":"Prideful Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":3561}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":3600},"upgradeStep":1}}}, +{"id":102630,"name":"Prideful Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":102631,"name":"Prideful Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"550":{"randPropPoints":2858,"stats":{"2":2255,"3":1423,"6":879,"7":995,"22":2346}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":2372},"upgradeStep":1}}}, +{"id":102632,"name":"Prideful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":102633,"name":"Prideful Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102634,"name":"Prideful Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":2803},"upgradeStep":1}}}, +{"id":102635,"name":"Prideful Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":102636,"name":"Prideful Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102637,"name":"Prideful Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":3561}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":3600},"upgradeStep":1}}}, +{"id":102638,"name":"Prideful Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":4457}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":4507},"upgradeStep":1}}}, +{"id":102639,"name":"Prideful Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":4457}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":4507},"upgradeStep":1}}}, +{"id":102640,"name":"Prideful Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1539,0,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"5":995,"7":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":1036,"7":912,"22":3687},"upgradeStep":1}}}, +{"id":102641,"name":"Prideful Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[1214,0,1821,0,0,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":837,"7":684},"upgradeStep":1}}}, +{"id":102642,"name":"Prideful Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,1214,1821,0,0,710,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":102643,"name":"Prideful Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102644,"name":"Prideful Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,1214,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":837,"7":684},"upgradeStep":1}}}, +{"id":102645,"name":"Prideful Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1539,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":995,"7":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":1036,"7":912,"22":2700},"upgradeStep":1}}}, +{"id":102646,"name":"Prideful Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1539,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":879,"7":995,"22":3264}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":912,"7":1036,"22":3300},"upgradeStep":1}}}, +{"id":102647,"name":"Prideful Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":1940},"upgradeStep":1}}}, +{"id":102648,"name":"Prideful Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1293,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1189,"11":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1240,"11":1400,"22":2371},"upgradeStep":1}}}, +{"id":102649,"name":"Prideful Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,0,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"5":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"5":837,"7":684},"upgradeStep":1}}}, +{"id":102650,"name":"Prideful Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":102651,"name":"Prideful Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":102652,"name":"Prideful Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":102653,"name":"Prideful Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":102654,"name":"Prideful Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":102655,"name":"Prideful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":3561}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":3600},"upgradeStep":1}}}, +{"id":102656,"name":"Prideful Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":102657,"name":"Prideful Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":2156},"upgradeStep":1}}}, +{"id":102658,"name":"Prideful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":102659,"name":"Prideful Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102660,"name":"Prideful Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2255,"6":995,"11":879,"22":2346}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":2372},"upgradeStep":1}}}, +{"id":102661,"name":"Prideful Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":102662,"name":"Prideful Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,2429,1539,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":995,"7":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":1036,"7":912,"22":1525},"upgradeStep":1}}}, +{"id":102663,"name":"Prideful Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":102664,"name":"Prideful Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":3264}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":3300},"upgradeStep":1}}}, +{"id":102665,"name":"Prideful Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":2077}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":2100},"upgradeStep":1}}}, +{"id":102666,"name":"Prideful Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1186},"upgradeStep":1}}}, +{"id":102667,"name":"Prideful Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":102668,"name":"Prideful Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":2700},"upgradeStep":1}}}, +{"id":102669,"name":"Prideful Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"7":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"7":684,"22":1355},"upgradeStep":1}}}, +{"id":102670,"name":"Prideful Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":4200},"upgradeStep":1}}}, +{"id":102671,"name":"Prideful Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":2033},"upgradeStep":1}}}, +{"id":102672,"name":"Prideful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,2429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"550":{"randPropPoints":2858,"stats":{"2":2254}},"554":{"randPropPoints":2966,"stats":{"2":2340},"upgradeStep":1}}}, +{"id":102673,"name":"Prideful Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,1079,0,0,0,999,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":1002,"11":922,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":1040,"11":960,"22":2033},"upgradeStep":1}}}, +{"id":102674,"name":"Prideful Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,0,0,868,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"11":684},"upgradeStep":1}}}, +{"id":102675,"name":"Prideful Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":102676,"name":"Prideful Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":102677,"name":"Prideful Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":2700},"upgradeStep":1}}}, +{"id":102678,"name":"Prideful Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,1214,1821,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":659,"8":806}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":684,"8":837},"upgradeStep":1}}}, +{"id":102679,"name":"Prideful Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,1214,1821,0,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":659,"11":806}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":684,"11":837},"upgradeStep":1}}}, +{"id":102680,"name":"Prideful Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"550":{"randPropPoints":2858,"stats":{"6":1905}},"554":{"randPropPoints":2966,"stats":{"6":1977},"upgradeStep":1}}}, +{"id":102681,"name":"Prideful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":102682,"name":"Prideful Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,1079,0,0,0,999,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":1002,"11":922,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":1040,"11":960,"22":2033},"upgradeStep":1}}}, +{"id":102683,"name":"Prideful Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,1214,1821,0,0,868,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"11":684},"upgradeStep":1}}}, +{"id":102684,"name":"Prideful Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1525},"upgradeStep":1}}}, +{"id":102685,"name":"Prideful Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":102686,"name":"Prideful Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1863},"upgradeStep":1}}}, +{"id":102687,"name":"Prideful Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1821,1214,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"5":806,"6":659,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"5":837,"6":684,"22":1186},"upgradeStep":1}}}, +{"id":102688,"name":"Prideful Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,1214,1821,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":806,"11":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":837,"11":684,"22":2100},"upgradeStep":1}}}, +{"id":102689,"name":"Prideful Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":4800},"upgradeStep":1}}}, +{"id":102690,"name":"Prideful Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":102691,"name":"Prideful Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1509},"upgradeStep":1}}}, +{"id":102692,"name":"Prideful Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":102693,"name":"Prideful Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":3857}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":3900},"upgradeStep":1}}}, +{"id":102694,"name":"Prideful Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1940},"upgradeStep":1}}}, +{"id":102695,"name":"Prideful Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1822,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"550":{"randPropPoints":2143,"stats":{"2":1691,"3":1127,"7":659,"11":806,"22":2837}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":2868},"upgradeStep":1}}}, +{"id":102696,"name":"Prideful Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":102697,"name":"Prideful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":4863}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":4916},"upgradeStep":1}}}, +{"id":102698,"name":"Prideful Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1539,0,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":995,"11":879,"22":4457}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":1036,"11":912,"22":4507},"upgradeStep":1}}}, +{"id":102699,"name":"Prideful Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102700,"name":"Prideful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":102701,"name":"Prideful Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[1214,0,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":837,"7":684},"upgradeStep":1}}}, +{"id":102702,"name":"Prideful Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[1214,0,1822,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1691,"6":659,"8":806,"22":2837}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"8":837,"22":2868},"upgradeStep":1}}}, +{"id":102703,"name":"Prideful Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":102704,"name":"Prideful Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2371},"upgradeStep":1}}}, +{"id":102705,"name":"Prideful Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,1214,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":806,"7":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":837,"7":684,"22":1355},"upgradeStep":1}}}, +{"id":102706,"name":"Prideful Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,2429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"550":{"randPropPoints":2858,"stats":{"2":2254}},"554":{"randPropPoints":2966,"stats":{"2":2340},"upgradeStep":1}}}, +{"id":102707,"name":"Prideful Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":102708,"name":"Prideful Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1539,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":995,"7":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":1036,"7":912,"22":1940},"upgradeStep":1}}}, +{"id":102709,"name":"Prideful Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":1525},"upgradeStep":1}}}, +{"id":102710,"name":"Prideful Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":102711,"name":"Prideful Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,1214,1821,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"6":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"6":684,"22":1509},"upgradeStep":1}}}, +{"id":102712,"name":"Prideful Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":102713,"name":"Prideful Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":102714,"name":"Prideful Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":102715,"name":"Prideful Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":102716,"name":"Prideful Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1539,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2255,"6":879,"7":995,"22":2346}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":912,"7":1036,"22":2372},"upgradeStep":1}}}, +{"id":102717,"name":"Prideful Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":4800},"upgradeStep":1}}}, +{"id":102718,"name":"Prideful Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":102719,"name":"Prideful Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":4154}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":4200},"upgradeStep":1}}}, +{"id":102720,"name":"Prideful Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":102721,"name":"Prideful Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":102722,"name":"Prideful Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":4097},"upgradeStep":1}}}, +{"id":102723,"name":"Prideful Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1493}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1509},"upgradeStep":1}}}, +{"id":102724,"name":"Prideful Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1539,0,2429,0,0,0,947,0,0,0,0,1078,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":879,"11":995,"22":3647}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":912,"11":1036,"22":3687},"upgradeStep":1}}}, +{"id":102725,"name":"Prideful Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,2429,1539,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":102726,"name":"Prideful Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":102727,"name":"Prideful Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":102728,"name":"Prideful Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":102729,"name":"Prideful Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":3264}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":3300},"upgradeStep":1}}}, +{"id":102730,"name":"Prideful Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":102731,"name":"Prideful Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":102732,"name":"Prideful Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":102733,"name":"Prideful Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1186},"upgradeStep":1}}}, +{"id":102734,"name":"Prideful Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":3561}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":3600},"upgradeStep":1}}}, +{"id":102735,"name":"Prideful Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":102736,"name":"Prideful Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,868,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"7":684},"upgradeStep":1}}}, +{"id":102737,"name":"Prideful Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":102738,"name":"Prideful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"550":{"randPropPoints":2858,"stats":{"6":1905}},"554":{"randPropPoints":2966,"stats":{"6":1977},"upgradeStep":1}}}, +{"id":102739,"name":"Prideful Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":102740,"name":"Prideful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":102741,"name":"Prideful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":102742,"name":"Prideful Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":102743,"name":"Prideful Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":4800},"upgradeStep":1}}}, +{"id":102744,"name":"Prideful Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":102745,"name":"Prideful Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1539,0,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":879,"7":995,"22":4457}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":912,"7":1036,"22":4507},"upgradeStep":1}}}, +{"id":102746,"name":"Prideful Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[1214,0,1821,0,0,868,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":837,"11":684},"upgradeStep":1}}}, +{"id":102747,"name":"Prideful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":102748,"name":"Prideful Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":3687},"upgradeStep":1}}}, +{"id":102749,"name":"Prideful Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[1214,0,1821,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":659,"8":806}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"8":837},"upgradeStep":1}}}, +{"id":102750,"name":"Prideful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2033},"upgradeStep":1}}}, +{"id":102751,"name":"Prideful Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":2202},"upgradeStep":1}}}, +{"id":102752,"name":"Prideful Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":1863},"upgradeStep":1}}}, +{"id":102753,"name":"Prideful Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,1214,1821,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"6":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"6":684,"22":2100},"upgradeStep":1}}}, +{"id":102754,"name":"Prideful Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,1214,1821,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":806,"11":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":837,"11":684,"22":1509},"upgradeStep":1}}}, +{"id":102755,"name":"Prideful Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1293,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1189,"11":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1240,"11":1400,"22":2371},"upgradeStep":1}}}, +{"id":102756,"name":"Prideful Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1355},"upgradeStep":1}}}, +{"id":102757,"name":"Prideful Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":837,"11":684},"upgradeStep":1}}}, +{"id":102758,"name":"Prideful Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,868,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"7":684},"upgradeStep":1}}}, +{"id":102759,"name":"Prideful Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":4800},"upgradeStep":1}}}, +{"id":102760,"name":"Prideful Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":2346}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":2372},"upgradeStep":1}}}, +{"id":102761,"name":"Prideful Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3018},"upgradeStep":1}}}, +{"id":102762,"name":"Prideful Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3018},"upgradeStep":1}}}, +{"id":102763,"name":"Prideful Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":102764,"name":"Prideful Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"2":2255,"3":1423,"6":995,"11":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":3687},"upgradeStep":1}}}, +{"id":102765,"name":"Prideful Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":2837}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":2868},"upgradeStep":1}}}, +{"id":102766,"name":"Prideful Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":102767,"name":"Prideful Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":3018},"upgradeStep":1}}}, +{"id":102768,"name":"Prideful Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":5673}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":5736},"upgradeStep":1}}}, +{"id":102769,"name":"Prideful Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[1214,0,1821,0,0,0,710,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":659,"7":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"7":837,"22":1355},"upgradeStep":1}}}, +{"id":102770,"name":"Prideful Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[1214,0,1821,0,0,710,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":102771,"name":"Prideful Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[1214,0,1822,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1691,"7":806,"11":659,"22":2837}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"7":837,"11":684,"22":2868},"upgradeStep":1}}}, +{"id":102772,"name":"Prideful Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":102773,"name":"Prideful Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,0,0,868,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"11":684},"upgradeStep":1}}}, +{"id":102774,"name":"Prideful Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":3000},"upgradeStep":1}}}, +{"id":102775,"name":"Prideful Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":1940},"upgradeStep":1}}}, +{"id":102776,"name":"Prideful Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":102777,"name":"Prideful Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":102778,"name":"Prideful Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":4200},"upgradeStep":1}}}, +{"id":102779,"name":"Prideful Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":102780,"name":"Prideful Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":102781,"name":"Prideful Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":4200},"upgradeStep":1}}}, +{"id":102782,"name":"Prideful Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1821,1214,810,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":102783,"name":"Prideful Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1821,1214,810,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":751,"11":751}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":780,"11":780},"upgradeStep":1}}}, +{"id":102784,"name":"Prideful Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[1214,0,1821,0,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":102785,"name":"Prideful Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1821,1214,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":102786,"name":"Prideful Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1821,1214,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":751,"11":751}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":780,"11":780},"upgradeStep":1}}}, +{"id":102787,"name":"Grievous Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":102788,"name":"Grievous Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102789,"name":"Grievous Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102790,"name":"Grievous Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":102791,"name":"Grievous Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":102792,"name":"Grievous Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03horde","type":13,"weaponType":8,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":9813,"weaponDamageMax":14720,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":9108,"weaponDamageMax":13663,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":9454,"weaponDamageMax":14182,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102793,"name":"Grievous Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,480,0,0,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"4":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"4":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":102794,"name":"Grievous Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102795,"name":"Grievous Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":102796,"name":"Grievous Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102797,"name":"Grievous Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102798,"name":"Grievous Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,0,0,1119,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"6":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"6":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":102799,"name":"Grievous Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":6550,"weaponDamageMax":9826,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":6080,"weaponDamageMax":9120,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":6310,"weaponDamageMax":9466,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102800,"name":"Grievous Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102801,"name":"Grievous Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102802,"name":"Grievous Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":9461,"weaponDamageMax":14193,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":8782,"weaponDamageMax":13173,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":9115,"weaponDamageMax":13674,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102803,"name":"Grievous Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102804,"name":"Grievous Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,1119,0,0,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"4":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"4":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":102805,"name":"Grievous Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102806,"name":"Grievous Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102807,"name":"Grievous Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102808,"name":"Grievous Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102809,"name":"Grievous Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":102810,"name":"Grievous Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":102811,"name":"Grievous Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":102812,"name":"Grievous Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1564},"upgradeStep":1}}}, +{"id":102813,"name":"Grievous Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":102814,"name":"Grievous Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":102815,"name":"Grievous Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":102816,"name":"Grievous Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":102817,"name":"Grievous Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":1721},"upgradeStep":1}}}, +{"id":102818,"name":"Grievous Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2190},"upgradeStep":1}}}, +{"id":102819,"name":"Grievous Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":102820,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":102821,"name":"Grievous Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":102822,"name":"Grievous Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":102823,"name":"Grievous Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":102824,"name":"Grievous Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":102825,"name":"Grievous Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":102826,"name":"Grievous Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":102827,"name":"Grievous Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":102828,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":102829,"name":"Grievous Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":102830,"name":"Grievous Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102831,"name":"Grievous Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2588},"upgradeStep":1}}}, +{"id":102832,"name":"Grievous Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":102833,"name":"Grievous Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102834,"name":"Grievous Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":102835,"name":"Grievous Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":102836,"name":"Grievous Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":102837,"name":"Grievous Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":102838,"name":"Grievous Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"7":527},"upgradeStep":1}}}, +{"id":102839,"name":"Grievous Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":102840,"name":"Grievous Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102841,"name":"Grievous Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":102842,"name":"Grievous Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":102843,"name":"Grievous Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":102844,"name":"Grievous Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":102845,"name":"Grievous Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":102846,"name":"Grievous Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"7":527},"upgradeStep":1}}}, +{"id":102847,"name":"Grievous Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":102848,"name":"Grievous Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":102849,"name":"Grievous Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":102850,"name":"Grievous Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":102851,"name":"Grievous Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":102852,"name":"Grievous Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":102853,"name":"Grievous Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":102854,"name":"Grievous Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":102855,"name":"Grievous Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":102856,"name":"Grievous Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102857,"name":"Grievous Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":102858,"name":"Grievous Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":102859,"name":"Grievous Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":102860,"name":"Grievous Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":102861,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":102862,"name":"Grievous Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1939},"upgradeStep":1}}}, +{"id":102863,"name":"Grievous Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":102864,"name":"Grievous Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":102865,"name":"Grievous Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":102866,"name":"Grievous Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":102867,"name":"Grievous Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":102868,"name":"Grievous Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":102869,"name":"Grievous Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":102870,"name":"Grievous Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":102871,"name":"Grievous Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":102872,"name":"Grievous Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":102873,"name":"Grievous Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":102874,"name":"Grievous Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":102875,"name":"Grievous Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":102876,"name":"Grievous Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":508,"11":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":527,"11":645},"upgradeStep":1}}}, +{"id":102877,"name":"Grievous Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":102878,"name":"Grievous Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":102879,"name":"Grievous Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":102880,"name":"Grievous Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":102881,"name":"Grievous Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1408},"upgradeStep":1}}}, +{"id":102882,"name":"Grievous Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":102883,"name":"Grievous Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":102884,"name":"Grievous Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":102885,"name":"Grievous Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1939},"upgradeStep":1}}}, +{"id":102886,"name":"Grievous Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":102887,"name":"Grievous Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":102888,"name":"Grievous Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":102889,"name":"Grievous Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":102890,"name":"Grievous Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":3602},"upgradeStep":1}}}, +{"id":102891,"name":"Grievous Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":102892,"name":"Grievous Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":2649},"upgradeStep":1}}}, +{"id":102893,"name":"Grievous Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":102894,"name":"Grievous Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":4540},"upgradeStep":1}}}, +{"id":102895,"name":"Grievous Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":102896,"name":"Grievous Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102897,"name":"Grievous Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":102898,"name":"Grievous Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":102899,"name":"Grievous Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645,"22":2649},"upgradeStep":1}}}, +{"id":102900,"name":"Grievous Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":102901,"name":"Grievous Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2190},"upgradeStep":1}}}, +{"id":102902,"name":"Grievous Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":102903,"name":"Grievous Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":102904,"name":"Grievous Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":102905,"name":"Grievous Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":102906,"name":"Grievous Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":102907,"name":"Grievous Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":102908,"name":"Grievous Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":102909,"name":"Grievous Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":102910,"name":"Grievous Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":102911,"name":"Grievous Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":102912,"name":"Grievous Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":102913,"name":"Grievous Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":102914,"name":"Grievous Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":102915,"name":"Grievous Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":102916,"name":"Grievous Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3879},"upgradeStep":1}}}, +{"id":102917,"name":"Grievous Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":102918,"name":"Grievous Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":102919,"name":"Grievous Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":3784},"upgradeStep":1}}}, +{"id":102920,"name":"Grievous Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1394},"upgradeStep":1}}}, +{"id":102921,"name":"Grievous Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,730,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"11":748,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"11":779,"22":3405},"upgradeStep":1}}}, +{"id":102922,"name":"Grievous Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":102923,"name":"Grievous Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":102924,"name":"Grievous Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":102925,"name":"Grievous Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":102926,"name":"Grievous Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":102927,"name":"Grievous Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":102928,"name":"Grievous Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":102929,"name":"Grievous Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":102930,"name":"Grievous Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1095},"upgradeStep":1}}}, +{"id":102931,"name":"Grievous Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":102932,"name":"Grievous Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":102933,"name":"Grievous Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":102934,"name":"Grievous Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":102935,"name":"Grievous Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":102936,"name":"Grievous Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":102937,"name":"Grievous Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":102938,"name":"Grievous Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":102939,"name":"Grievous Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":102940,"name":"Grievous Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":102941,"name":"Grievous Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":102942,"name":"Grievous Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":102943,"name":"Grievous Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":102944,"name":"Grievous Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":102945,"name":"Grievous Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":102946,"name":"Grievous Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":102947,"name":"Grievous Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":102948,"name":"Grievous Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2034},"upgradeStep":1}}}, +{"id":102949,"name":"Grievous Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":102950,"name":"Grievous Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":102951,"name":"Grievous Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1394},"upgradeStep":1}}}, +{"id":102952,"name":"Grievous Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":102953,"name":"Grievous Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1252},"upgradeStep":1}}}, +{"id":102954,"name":"Grievous Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":645,"11":527},"upgradeStep":1}}}, +{"id":102955,"name":"Grievous Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":102956,"name":"Grievous Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":102957,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":102958,"name":"Grievous Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":102959,"name":"Grievous Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":102960,"name":"Grievous Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":102961,"name":"Grievous Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":779,"11":703,"22":3405},"upgradeStep":1}}}, +{"id":102962,"name":"Grievous Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":2649},"upgradeStep":1}}}, +{"id":102963,"name":"Grievous Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":102964,"name":"Grievous Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2788},"upgradeStep":1}}}, +{"id":102965,"name":"Grievous Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":5297},"upgradeStep":1}}}, +{"id":102966,"name":"Grievous Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,547,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"7":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"7":645,"22":1252},"upgradeStep":1}}}, +{"id":102967,"name":"Grievous Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":102968,"name":"Grievous Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"11":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"11":527,"22":2649},"upgradeStep":1}}}, +{"id":102969,"name":"Grievous Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":102970,"name":"Grievous Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":102971,"name":"Grievous Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":2770},"upgradeStep":1}}}, +{"id":102972,"name":"Grievous Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":102973,"name":"Grievous Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":102974,"name":"Grievous Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":102975,"name":"Grievous Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":102976,"name":"Grievous Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":102977,"name":"Grievous Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":102978,"name":"Grievous Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":3879},"upgradeStep":1}}}, +{"id":102979,"name":"Grievous Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":102980,"name":"Grievous Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601},"upgradeStep":1}}}, +{"id":102981,"name":"Grievous Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[936,0,1403,0,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":102982,"name":"Grievous Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":102983,"name":"Grievous Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601},"upgradeStep":1}}}, +{"id":102984,"name":"Prideful Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"upgradeStep":1}}}, +{"id":102985,"name":"Prideful Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"upgradeStep":1}}}, +{"id":102986,"name":"Prideful Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"upgradeStep":1}}}, +{"id":102987,"name":"Prideful Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":102988,"name":"Prideful Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":102989,"name":"Prideful Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":102990,"name":"Prideful Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"upgradeStep":1}}}, +{"id":102991,"name":"Prideful Gladiator's Silk Cord","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"550":{"randPropPoints":2858,"stats":{"22":1508}},"554":{"randPropPoints":2966,"stats":{"22":1525},"upgradeStep":1}}}, +{"id":102992,"name":"Prideful Gladiator's Felweave Cord","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"550":{"randPropPoints":2858,"stats":{"22":1508}},"554":{"randPropPoints":2966,"stats":{"22":1525},"upgradeStep":1}}}, +{"id":102993,"name":"Prideful Gladiator's Mooncloth Cord","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"550":{"randPropPoints":2858,"stats":{"22":1508}},"554":{"randPropPoints":2966,"stats":{"22":1525},"upgradeStep":1}}}, +{"id":102994,"name":"Prideful Gladiator's Silk Treads","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"550":{"randPropPoints":2858,"stats":{"22":1843}},"554":{"randPropPoints":2966,"stats":{"22":1863},"upgradeStep":1}}}, +{"id":102995,"name":"Prideful Gladiator's Felweave Treads","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"550":{"randPropPoints":2858,"stats":{"22":1843}},"554":{"randPropPoints":2966,"stats":{"22":1863},"upgradeStep":1}}}, +{"id":102996,"name":"Prideful Gladiator's Mooncloth Treads","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"550":{"randPropPoints":2858,"stats":{"22":1843}},"554":{"randPropPoints":2966,"stats":{"22":1863},"upgradeStep":1}}}, +{"id":102997,"name":"Prideful Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"550":{"randPropPoints":2143},"554":{"randPropPoints":2225,"upgradeStep":1}}}, +{"id":102998,"name":"Prideful Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"550":{"randPropPoints":2143,"stats":{"22":20796}},"554":{"randPropPoints":2225,"stats":{"22":21026},"upgradeStep":1}}}, +{"id":102999,"name":"Prideful Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"upgradeStep":1}}}, +{"id":103000,"name":"Prideful Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"upgradeStep":1}}}, +{"id":103001,"name":"Prideful Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927},"550":{"randPropPoints":2143},"554":{"randPropPoints":2225,"upgradeStep":1}}}, +{"id":103002,"name":"Prideful Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"upgradeStep":1}}}, +{"id":103003,"name":"Prideful Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"upgradeStep":1}}}, +{"id":103004,"name":"Prideful Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"550":{"randPropPoints":3847,"stats":{"22":6483}},"554":{"randPropPoints":3993,"stats":{"22":6555},"upgradeStep":1}}}, +{"id":103005,"name":"Prideful Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"550":{"randPropPoints":2858,"stats":{"22":4052}},"554":{"randPropPoints":2966,"stats":{"22":4097},"upgradeStep":1}}}, +{"id":103006,"name":"Prideful Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"550":{"randPropPoints":3847,"stats":{"22":5268}},"554":{"randPropPoints":3993,"stats":{"22":5326},"upgradeStep":1}}}, +{"id":103007,"name":"Prideful Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"550":{"randPropPoints":3847,"stats":{"22":5673}},"554":{"randPropPoints":3993,"stats":{"22":5736},"upgradeStep":1}}}, +{"id":103008,"name":"Prideful Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"550":{"randPropPoints":2858,"stats":{"22":4863}},"554":{"randPropPoints":2966,"stats":{"22":4916},"upgradeStep":1}}}, +{"id":103009,"name":"Prideful Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103010,"name":"Prideful Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103011,"name":"Prideful Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103012,"name":"Prideful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103013,"name":"Prideful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103014,"name":"Prideful Gladiator's Kodohide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103015,"name":"Prideful Gladiator's Kodohide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103016,"name":"Prideful Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103017,"name":"Prideful Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103018,"name":"Prideful Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103019,"name":"Prideful Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103020,"name":"Prideful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103021,"name":"Prideful Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03red","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":12738,"weaponDamageMax":19108,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668},"550":{"randPropPoints":3847,"weaponDamageMin":11823,"weaponDamageMax":17736},"554":{"randPropPoints":3993,"weaponDamageMin":12272,"weaponDamageMax":18409,"upgradeStep":1}}}, +{"id":103022,"name":"Prideful Gladiator's Wyrmhide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103023,"name":"Prideful Gladiator's Wyrmhide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103024,"name":"Prideful Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103025,"name":"Prideful Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103026,"name":"Prideful Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103027,"name":"Prideful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103028,"name":"Prideful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103029,"name":"Prideful Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"upgradeStep":1}}}, +{"id":103030,"name":"Prideful Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"upgradeStep":1}}}, +{"id":103031,"name":"Prideful Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"550":{"randPropPoints":2143,"stats":{"22":20796}},"554":{"randPropPoints":2225,"stats":{"22":21026},"upgradeStep":1}}}, +{"id":103032,"name":"Prideful Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"upgradeStep":1}}}, +{"id":103033,"name":"Prideful Gladiator's Chain Links","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"550":{"randPropPoints":2858,"stats":{"22":2670}},"554":{"randPropPoints":2966,"stats":{"22":2700},"upgradeStep":1}}}, +{"id":103034,"name":"Prideful Gladiator's Linked Waistband","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"550":{"randPropPoints":2858,"stats":{"22":2670}},"554":{"randPropPoints":2966,"stats":{"22":2700},"upgradeStep":1}}}, +{"id":103035,"name":"Prideful Gladiator's Chain Sabatons","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"550":{"randPropPoints":2858,"stats":{"22":3264}},"554":{"randPropPoints":2966,"stats":{"22":3300},"upgradeStep":1}}}, +{"id":103036,"name":"Prideful Gladiator's Linked Sabatons","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"550":{"randPropPoints":2858,"stats":{"22":3264}},"554":{"randPropPoints":2966,"stats":{"22":3300},"upgradeStep":1}}}, +{"id":103037,"name":"Prideful Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"550":{"randPropPoints":3847,"stats":{"22":4747}},"554":{"randPropPoints":3993,"stats":{"22":4800},"upgradeStep":1}}}, +{"id":103038,"name":"Prideful Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"550":{"randPropPoints":2858,"stats":{"22":2967}},"554":{"randPropPoints":2966,"stats":{"22":3000},"upgradeStep":1}}}, +{"id":103039,"name":"Prideful Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"550":{"randPropPoints":3847,"stats":{"22":3857}},"554":{"randPropPoints":3993,"stats":{"22":3900},"upgradeStep":1}}}, +{"id":103040,"name":"Prideful Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"550":{"randPropPoints":3847,"stats":{"22":4154}},"554":{"randPropPoints":3993,"stats":{"22":4200},"upgradeStep":1}}}, +{"id":103041,"name":"Prideful Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"550":{"randPropPoints":2858,"stats":{"22":3561}},"554":{"randPropPoints":2966,"stats":{"22":3600},"upgradeStep":1}}}, +{"id":103042,"name":"Prideful Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"550":{"randPropPoints":2858,"stats":{"22":1675}},"554":{"randPropPoints":2966,"stats":{"22":1694},"upgradeStep":1}}}, +{"id":103043,"name":"Prideful Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"550":{"randPropPoints":3847,"stats":{"22":2178}},"554":{"randPropPoints":3993,"stats":{"22":2202},"upgradeStep":1}}}, +{"id":103044,"name":"Prideful Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"550":{"randPropPoints":3847,"stats":{"22":2346}},"554":{"randPropPoints":3993,"stats":{"22":2371},"upgradeStep":1}}}, +{"id":103045,"name":"Prideful Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"550":{"randPropPoints":3847,"stats":{"22":2681}},"554":{"randPropPoints":3993,"stats":{"22":2710},"upgradeStep":1}}}, +{"id":103046,"name":"Prideful Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"550":{"randPropPoints":2858,"stats":{"22":2011}},"554":{"randPropPoints":2966,"stats":{"22":2033},"upgradeStep":1}}}, +{"id":103047,"name":"Prideful Gladiator's Ironskin Waistband","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103048,"name":"Prideful Gladiator's Ironskin Boots","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103049,"name":"Prideful Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103050,"name":"Prideful Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103051,"name":"Prideful Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103052,"name":"Prideful Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103053,"name":"Prideful Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103054,"name":"Prideful Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103055,"name":"Prideful Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103056,"name":"Prideful Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103057,"name":"Prideful Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103058,"name":"Prideful Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103059,"name":"Prideful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"550":{"randPropPoints":3847,"stats":{"22":6483}},"554":{"randPropPoints":3993,"stats":{"22":6555},"upgradeStep":1}}}, +{"id":103060,"name":"Prideful Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"550":{"randPropPoints":2858,"stats":{"22":4052}},"554":{"randPropPoints":2966,"stats":{"22":4097},"upgradeStep":1}}}, +{"id":103061,"name":"Prideful Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"550":{"randPropPoints":3847,"stats":{"22":5268}},"554":{"randPropPoints":3993,"stats":{"22":5326},"upgradeStep":1}}}, +{"id":103062,"name":"Prideful Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"550":{"randPropPoints":3847,"stats":{"22":5673}},"554":{"randPropPoints":3993,"stats":{"22":5736},"upgradeStep":1}}}, +{"id":103063,"name":"Prideful Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"550":{"randPropPoints":2858,"stats":{"22":4863}},"554":{"randPropPoints":2966,"stats":{"22":4916},"upgradeStep":1}}}, +{"id":103064,"name":"Prideful Gladiator's Scaled Clasp","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"550":{"randPropPoints":2858,"stats":{"22":3647}},"554":{"randPropPoints":2966,"stats":{"22":3687},"upgradeStep":1}}}, +{"id":103065,"name":"Prideful Gladiator's Ornamented Clasp","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"550":{"randPropPoints":2858,"stats":{"22":3647}},"554":{"randPropPoints":2966,"stats":{"22":3687},"upgradeStep":1}}}, +{"id":103066,"name":"Prideful Gladiator's Ornamented Greaves","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"550":{"randPropPoints":2858,"stats":{"22":4457}},"554":{"randPropPoints":2966,"stats":{"22":4507},"upgradeStep":1}}}, +{"id":103067,"name":"Prideful Gladiator's Scaled Greaves","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"550":{"randPropPoints":2858,"stats":{"22":4457}},"554":{"randPropPoints":2966,"stats":{"22":4507},"upgradeStep":1}}}, +{"id":103068,"name":"Prideful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"550":{"randPropPoints":3847,"stats":{"22":6483}},"554":{"randPropPoints":3993,"stats":{"22":6555},"upgradeStep":1}}}, +{"id":103069,"name":"Prideful Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"550":{"randPropPoints":2858,"stats":{"22":4052}},"554":{"randPropPoints":2966,"stats":{"22":4097},"upgradeStep":1}}}, +{"id":103070,"name":"Prideful Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"550":{"randPropPoints":3847,"stats":{"22":5268}},"554":{"randPropPoints":3993,"stats":{"22":5326},"upgradeStep":1}}}, +{"id":103071,"name":"Prideful Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"550":{"randPropPoints":3847,"stats":{"22":5673}},"554":{"randPropPoints":3993,"stats":{"22":5736},"upgradeStep":1}}}, +{"id":103072,"name":"Prideful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"550":{"randPropPoints":2858,"stats":{"22":4863}},"554":{"randPropPoints":2966,"stats":{"22":4916},"upgradeStep":1}}}, +{"id":103073,"name":"Prideful Gladiator's Dreadplate Girdle","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"550":{"randPropPoints":2858,"stats":{"22":3647}},"554":{"randPropPoints":2966,"stats":{"22":3687},"upgradeStep":1}}}, +{"id":103074,"name":"Prideful Gladiator's Plate Girdle","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2741}},"550":{"randPropPoints":2858,"stats":{"22":3647}},"554":{"randPropPoints":2966,"stats":{"22":3687},"upgradeStep":1}}}, +{"id":103075,"name":"Prideful Gladiator's Plate Warboots","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"550":{"randPropPoints":2858,"stats":{"22":4457}},"554":{"randPropPoints":2966,"stats":{"22":4507},"upgradeStep":1}}}, +{"id":103076,"name":"Prideful Gladiator's Dreadplate Warboots","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3350}},"550":{"randPropPoints":2858,"stats":{"22":4457}},"554":{"randPropPoints":2966,"stats":{"22":4507},"upgradeStep":1}}}, +{"id":103077,"name":"Prideful Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"upgradeStep":1}}}, +{"id":103078,"name":"Prideful Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"550":{"randPropPoints":2858,"stats":{"22":1675}},"554":{"randPropPoints":2966,"stats":{"22":1694},"upgradeStep":1}}}, +{"id":103079,"name":"Prideful Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"550":{"randPropPoints":3847,"stats":{"22":2178}},"554":{"randPropPoints":3993,"stats":{"22":2202},"upgradeStep":1}}}, +{"id":103080,"name":"Prideful Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"550":{"randPropPoints":3847,"stats":{"22":2346}},"554":{"randPropPoints":3993,"stats":{"22":2371},"upgradeStep":1}}}, +{"id":103081,"name":"Prideful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"550":{"randPropPoints":3847,"stats":{"22":2681}},"554":{"randPropPoints":3993,"stats":{"22":2710},"upgradeStep":1}}}, +{"id":103082,"name":"Prideful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"550":{"randPropPoints":2858,"stats":{"22":2011}},"554":{"randPropPoints":2966,"stats":{"22":2033},"upgradeStep":1}}}, +{"id":103083,"name":"Prideful Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"550":{"randPropPoints":2858,"stats":{"22":1675}},"554":{"randPropPoints":2966,"stats":{"22":1694},"upgradeStep":1}}}, +{"id":103084,"name":"Prideful Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"550":{"randPropPoints":3847,"stats":{"22":2178}},"554":{"randPropPoints":3993,"stats":{"22":2202},"upgradeStep":1}}}, +{"id":103085,"name":"Prideful Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"550":{"randPropPoints":3847,"stats":{"22":2346}},"554":{"randPropPoints":3993,"stats":{"22":2371},"upgradeStep":1}}}, +{"id":103086,"name":"Prideful Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"550":{"randPropPoints":3847,"stats":{"22":2681}},"554":{"randPropPoints":3993,"stats":{"22":2710},"upgradeStep":1}}}, +{"id":103087,"name":"Prideful Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"550":{"randPropPoints":2858,"stats":{"22":2011}},"554":{"randPropPoints":2966,"stats":{"22":2033},"upgradeStep":1}}}, +{"id":103088,"name":"Prideful Gladiator's Leather Waistband","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103089,"name":"Prideful Gladiator's Leather Boots","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103090,"name":"Prideful Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2564}},"550":{"randPropPoints":3847,"stats":{"22":3412}},"554":{"randPropPoints":3993,"stats":{"22":3450},"upgradeStep":1}}}, +{"id":103091,"name":"Prideful Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1602}},"550":{"randPropPoints":2858,"stats":{"22":2132}},"554":{"randPropPoints":2966,"stats":{"22":2156},"upgradeStep":1}}}, +{"id":103092,"name":"Prideful Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2083}},"550":{"randPropPoints":3847,"stats":{"22":2772}},"554":{"randPropPoints":3993,"stats":{"22":2803},"upgradeStep":1}}}, +{"id":103093,"name":"Prideful Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2243}},"550":{"randPropPoints":3847,"stats":{"22":2985}},"554":{"randPropPoints":3993,"stats":{"22":3018},"upgradeStep":1}}}, +{"id":103094,"name":"Prideful Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1923}},"550":{"randPropPoints":2858,"stats":{"22":2559}},"554":{"randPropPoints":2966,"stats":{"22":2587},"upgradeStep":1}}}, +{"id":103095,"name":"Prideful Gladiator's Ringmail Waistguard","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"550":{"randPropPoints":2858,"stats":{"22":2670}},"554":{"randPropPoints":2966,"stats":{"22":2700},"upgradeStep":1}}}, +{"id":103096,"name":"Prideful Gladiator's Ringmail Footguards","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"550":{"randPropPoints":2858,"stats":{"22":3264}},"554":{"randPropPoints":2966,"stats":{"22":3300},"upgradeStep":1}}}, +{"id":103097,"name":"Prideful Gladiator's Mail Footguards","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2453}},"550":{"randPropPoints":2858,"stats":{"22":3264}},"554":{"randPropPoints":2966,"stats":{"22":3300},"upgradeStep":1}}}, +{"id":103098,"name":"Prideful Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"550":{"randPropPoints":3847,"stats":{"22":4747}},"554":{"randPropPoints":3993,"stats":{"22":4800},"upgradeStep":1}}}, +{"id":103099,"name":"Prideful Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"550":{"randPropPoints":2858,"stats":{"22":2967}},"554":{"randPropPoints":2966,"stats":{"22":3000},"upgradeStep":1}}}, +{"id":103100,"name":"Prideful Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"550":{"randPropPoints":3847,"stats":{"22":3857}},"554":{"randPropPoints":3993,"stats":{"22":3900},"upgradeStep":1}}}, +{"id":103101,"name":"Prideful Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"550":{"randPropPoints":3847,"stats":{"22":4154}},"554":{"randPropPoints":3993,"stats":{"22":4200},"upgradeStep":1}}}, +{"id":103102,"name":"Prideful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"550":{"randPropPoints":2858,"stats":{"22":3561}},"554":{"randPropPoints":2966,"stats":{"22":3600},"upgradeStep":1}}}, +{"id":103103,"name":"Prideful Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"550":{"randPropPoints":3847,"stats":{"22":4747}},"554":{"randPropPoints":3993,"stats":{"22":4800},"upgradeStep":1}}}, +{"id":103104,"name":"Prideful Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"550":{"randPropPoints":2858,"stats":{"22":2967}},"554":{"randPropPoints":2966,"stats":{"22":3000},"upgradeStep":1}}}, +{"id":103105,"name":"Prideful Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"550":{"randPropPoints":3847,"stats":{"22":3857}},"554":{"randPropPoints":3993,"stats":{"22":3900},"upgradeStep":1}}}, +{"id":103106,"name":"Prideful Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"550":{"randPropPoints":3847,"stats":{"22":4154}},"554":{"randPropPoints":3993,"stats":{"22":4200},"upgradeStep":1}}}, +{"id":103107,"name":"Prideful Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"550":{"randPropPoints":2858,"stats":{"22":3561}},"554":{"randPropPoints":2966,"stats":{"22":3600},"upgradeStep":1}}}, +{"id":103108,"name":"Prideful Gladiator's Mail Waistguard","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2007}},"550":{"randPropPoints":2858,"stats":{"22":2670}},"554":{"randPropPoints":2966,"stats":{"22":2700},"upgradeStep":1}}}, +{"id":103109,"name":"Prideful Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3568}},"550":{"randPropPoints":3847,"stats":{"22":4747}},"554":{"randPropPoints":3993,"stats":{"22":4800},"upgradeStep":1}}}, +{"id":103110,"name":"Prideful Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2230}},"550":{"randPropPoints":2858,"stats":{"22":2967}},"554":{"randPropPoints":2966,"stats":{"22":3000},"upgradeStep":1}}}, +{"id":103111,"name":"Prideful Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2899}},"550":{"randPropPoints":3847,"stats":{"22":3857}},"554":{"randPropPoints":3993,"stats":{"22":3900},"upgradeStep":1}}}, +{"id":103112,"name":"Prideful Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3122}},"550":{"randPropPoints":3847,"stats":{"22":4154}},"554":{"randPropPoints":3993,"stats":{"22":4200},"upgradeStep":1}}}, +{"id":103113,"name":"Prideful Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":2676}},"550":{"randPropPoints":2858,"stats":{"22":3561}},"554":{"randPropPoints":2966,"stats":{"22":3600},"upgradeStep":1}}}, +{"id":103114,"name":"Prideful Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":8503,"weaponDamageMax":12755,"weaponSpeed":1.8,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118},"550":{"randPropPoints":1649,"weaponDamageMin":7892,"weaponDamageMax":11839},"554":{"randPropPoints":1711,"weaponDamageMin":8192,"weaponDamageMax":12288,"upgradeStep":1}}}, +{"id":103115,"name":"Prideful Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":103116,"name":"Prideful Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":103117,"name":"Prideful Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":5373,"weaponDamageMax":9979,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004},"550":{"randPropPoints":1649,"weaponDamageMin":4987,"weaponDamageMax":9263},"554":{"randPropPoints":1711,"weaponDamageMin":5176,"weaponDamageMax":9614,"upgradeStep":1}}}, +{"id":103118,"name":"Prideful Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"upgradeStep":1}}}, +{"id":103119,"name":"Prideful Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":103120,"name":"Prideful Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"upgradeStep":1}}}, +{"id":103121,"name":"Prideful Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":12282,"weaponDamageMax":18424,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393},"550":{"randPropPoints":1649,"weaponDamageMin":11400,"weaponDamageMax":17100},"554":{"randPropPoints":1711,"weaponDamageMin":11833,"weaponDamageMax":17750,"upgradeStep":1}}}, +{"id":103122,"name":"Prideful Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"22":15628}},"550":{"randPropPoints":2143,"stats":{"22":20796}},"554":{"randPropPoints":2225,"stats":{"22":21026},"upgradeStep":1}}}, +{"id":103123,"name":"Prideful Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1259}},"550":{"randPropPoints":2858,"stats":{"22":1675}},"554":{"randPropPoints":2966,"stats":{"22":1694},"upgradeStep":1}}}, +{"id":103124,"name":"Prideful Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1637}},"550":{"randPropPoints":3847,"stats":{"22":2178}},"554":{"randPropPoints":3993,"stats":{"22":2202},"upgradeStep":1}}}, +{"id":103125,"name":"Prideful Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":1763}},"550":{"randPropPoints":3847,"stats":{"22":2346}},"554":{"randPropPoints":3993,"stats":{"22":2371},"upgradeStep":1}}}, +{"id":103126,"name":"Prideful Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":2014}},"550":{"randPropPoints":3847,"stats":{"22":2681}},"554":{"randPropPoints":3993,"stats":{"22":2710},"upgradeStep":1}}}, +{"id":103127,"name":"Prideful Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1511}},"550":{"randPropPoints":2858,"stats":{"22":2011}},"554":{"randPropPoints":2966,"stats":{"22":2033},"upgradeStep":1}}}, +{"id":103128,"name":"Prideful Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4872}},"550":{"randPropPoints":3847,"stats":{"22":6483}},"554":{"randPropPoints":3993,"stats":{"22":6555},"upgradeStep":1}}}, +{"id":103129,"name":"Prideful Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3045}},"550":{"randPropPoints":2858,"stats":{"22":4052}},"554":{"randPropPoints":2966,"stats":{"22":4097},"upgradeStep":1}}}, +{"id":103130,"name":"Prideful Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":3959}},"550":{"randPropPoints":3847,"stats":{"22":5268}},"554":{"randPropPoints":3993,"stats":{"22":5326},"upgradeStep":1}}}, +{"id":103131,"name":"Prideful Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"22":4263}},"550":{"randPropPoints":3847,"stats":{"22":5673}},"554":{"randPropPoints":3993,"stats":{"22":5736},"upgradeStep":1}}}, +{"id":103132,"name":"Prideful Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":3654}},"550":{"randPropPoints":2858,"stats":{"22":4863}},"554":{"randPropPoints":2966,"stats":{"22":4916},"upgradeStep":1}}}, +{"id":103133,"name":"Prideful Gladiator's Copperskin Boots","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103134,"name":"Prideful Gladiator's Copperskin Waistband","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103135,"name":"Prideful Gladiator's Satin Treads","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1385}},"550":{"randPropPoints":2858,"stats":{"22":1843}},"554":{"randPropPoints":2966,"stats":{"22":1863},"upgradeStep":1}}}, +{"id":103136,"name":"Prideful Gladiator's Satin Cord","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1133}},"550":{"randPropPoints":2858,"stats":{"22":1508}},"554":{"randPropPoints":2966,"stats":{"22":1525},"upgradeStep":1}}}, +{"id":103137,"name":"Prideful Gladiator's Dragonhide Footguards","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1763}},"550":{"randPropPoints":2858,"stats":{"22":2346}},"554":{"randPropPoints":2966,"stats":{"22":2372},"upgradeStep":1}}}, +{"id":103138,"name":"Prideful Gladiator's Dragonhide Belt","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"22":1442}},"550":{"randPropPoints":2858,"stats":{"22":1919}},"554":{"randPropPoints":2966,"stats":{"22":1940},"upgradeStep":1}}}, +{"id":103139,"name":"Grievous Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103140,"name":"Grievous Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103141,"name":"Grievous Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[1679,0,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"0":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"0":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103142,"name":"Grievous Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103143,"name":"Grievous Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103144,"name":"Grievous Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103145,"name":"Grievous Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103146,"name":"Grievous Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":103147,"name":"Grievous Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,936,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":103148,"name":"Grievous Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":103149,"name":"Grievous Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,936,1403,0,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":508,"11":621}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":527,"11":645},"upgradeStep":1}}}, +{"id":103150,"name":"Grievous Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103151,"name":"Grievous Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":103152,"name":"Grievous Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,936,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":103153,"name":"Grievous Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103154,"name":"Grievous Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1408},"upgradeStep":1}}}, +{"id":103155,"name":"Grievous Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,1871,1167,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":103156,"name":"Grievous Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1391}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1408},"upgradeStep":1}}}, +{"id":103157,"name":"Grievous Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":103158,"name":"Grievous Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":1721},"upgradeStep":1}}}, +{"id":103159,"name":"Grievous Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":1700}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":1721},"upgradeStep":1}}}, +{"id":103160,"name":"Grievous Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1403,936,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":103161,"name":"Grievous Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1095},"upgradeStep":1}}}, +{"id":103162,"name":"Grievous Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[3,5,8],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1082}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1095},"upgradeStep":1}}}, +{"id":103163,"name":"Grievous Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"7":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"7":527,"22":1252},"upgradeStep":1}}}, +{"id":103164,"name":"Grievous Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":103165,"name":"Grievous Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1237}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1252},"upgradeStep":1}}}, +{"id":103166,"name":"Grievous Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601},"upgradeStep":1}}}, +{"id":103167,"name":"Grievous Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":103168,"name":"Grievous Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":103169,"name":"Grievous Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,0,0,1119,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"6":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"6":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":103170,"name":"Grievous Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":103171,"name":"Grievous Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":645,"11":527},"upgradeStep":1}}}, +{"id":103172,"name":"Grievous Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":103173,"name":"Grievous Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,0,669,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"6":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"6":645,"11":527},"upgradeStep":1}}}, +{"id":103174,"name":"Grievous Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"5":645,"7":527},"upgradeStep":1}}}, +{"id":103175,"name":"Grievous Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1403,936,669,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"7":527},"upgradeStep":1}}}, +{"id":103176,"name":"Grievous Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601},"upgradeStep":1}}}, +{"id":103177,"name":"Grievous Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":103178,"name":"Grievous Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103179,"name":"Grievous Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":103180,"name":"Grievous Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":103181,"name":"Grievous Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":103182,"name":"Grievous Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":103183,"name":"Grievous Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":103184,"name":"Grievous Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":103185,"name":"Grievous Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":103186,"name":"Grievous Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":103187,"name":"Grievous Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":103188,"name":"Grievous Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":103189,"name":"Grievous Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":103190,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":103191,"name":"Grievous Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":103192,"name":"Grievous Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":103193,"name":"Grievous Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":103194,"name":"Grievous Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":103195,"name":"Grievous Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":103196,"name":"Grievous Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":103197,"name":"Grievous Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03alliance","type":13,"weaponType":8,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":9813,"weaponDamageMax":14720,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":9108,"weaponDamageMax":13663,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":9454,"weaponDamageMax":14182,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103198,"name":"Grievous Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":103199,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":103200,"name":"Grievous Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1377}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1394},"upgradeStep":1}}}, +{"id":103201,"name":"Grievous Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":103202,"name":"Grievous Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2588},"upgradeStep":1}}}, +{"id":103203,"name":"Grievous Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2788},"upgradeStep":1}}}, +{"id":103204,"name":"Grievous Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":103205,"name":"Grievous Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":103206,"name":"Grievous Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":14720,"weaponDamageMax":22081,"weaponSpeed":3,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":13663,"weaponDamageMax":20495,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":14181,"weaponDamageMax":21273,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103207,"name":"Grievous Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":2547,"weaponDamageMax":4731,"weaponSpeed":1.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2364,"weaponDamageMax":4391,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2454,"weaponDamageMax":4558,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":103208,"name":"Grievous Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1403,936,624,0,0,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":103209,"name":"Grievous Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,2519,1679,1119,0,0,0,0,0,0,1119,0,0,9618,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":4906,"weaponDamageMax":7360,"weaponSpeed":2,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"522":{"randPropPoints":2963,"weaponDamageMin":4554,"weaponDamageMax":6832,"stats":{"2":2337,"3":1558,"4":1039,"11":1039,"14":8925}},"526":{"randPropPoints":3076,"weaponDamageMin":4727,"weaponDamageMax":7091,"stats":{"2":2426,"3":1618,"4":1078,"11":1078,"14":9265},"upgradeStep":1}}}, +{"id":103210,"name":"Grievous Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":103211,"name":"Grievous Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":103212,"name":"Grievous Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":103213,"name":"Grievous Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":103214,"name":"Grievous Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":103215,"name":"Grievous Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":103216,"name":"Grievous Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":103217,"name":"Grievous Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1939},"upgradeStep":1}}}, +{"id":103218,"name":"Grievous Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[2,7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":103219,"name":"Grievous Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":103220,"name":"Grievous Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":103221,"name":"Grievous Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":103222,"name":"Grievous Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":103223,"name":"Grievous Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":103224,"name":"Grievous Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":103225,"name":"Grievous Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":103226,"name":"Grievous Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":103227,"name":"Grievous Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":103228,"name":"Grievous Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":103229,"name":"Grievous Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"6":779,"11":703,"22":1792},"upgradeStep":1}}}, +{"id":103230,"name":"Grievous Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":677,"7":748,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":703,"7":779,"22":2190},"upgradeStep":1}}}, +{"id":103231,"name":"Grievous Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"5":621,"6":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"5":645,"6":527,"22":1394},"upgradeStep":1}}}, +{"id":103232,"name":"Grievous Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":103233,"name":"Grievous Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":103234,"name":"Grievous Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":103235,"name":"Grievous Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":103236,"name":"Grievous Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":103237,"name":"Grievous Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1991},"upgradeStep":1}}}, +{"id":103238,"name":"Grievous Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":103239,"name":"Grievous Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2755}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2788},"upgradeStep":1}}}, +{"id":103240,"name":"Grievous Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":2361}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":2389},"upgradeStep":1}}}, +{"id":103241,"name":"Grievous Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":3186},"upgradeStep":1}}}, +{"id":103242,"name":"Grievous Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":103243,"name":"Grievous Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":103244,"name":"Grievous Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":103245,"name":"Grievous Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":103246,"name":"Grievous Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":103247,"name":"Grievous Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1803,"3":1122,"6":779,"11":703,"22":3405},"upgradeStep":1}}}, +{"id":103248,"name":"Grievous Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":103249,"name":"Grievous Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":103250,"name":"Grievous Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":103251,"name":"Grievous Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":2649},"upgradeStep":1}}}, +{"id":103252,"name":"Grievous Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":2649},"upgradeStep":1}}}, +{"id":103253,"name":"Grievous Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":103254,"name":"Grievous Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":3784},"upgradeStep":1}}}, +{"id":103255,"name":"Grievous Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":103256,"name":"Grievous Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":5234}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":5297},"upgradeStep":1}}}, +{"id":103257,"name":"Grievous Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":4487}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":4540},"upgradeStep":1}}}, +{"id":103258,"name":"Grievous Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":748,"7":677,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"5":779,"7":703,"22":3405},"upgradeStep":1}}}, +{"id":103259,"name":"Grievous Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1167,0,1871,0,0,0,730,0,0,0,0,812,0,0,0,0,0,0,0,0,0,0,3446,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"11":748,"22":3365}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"11":779,"22":3405},"upgradeStep":1}}}, +{"id":103260,"name":"Grievous Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":748,"11":677,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":779,"11":703,"22":4162},"upgradeStep":1}}}, +{"id":103261,"name":"Grievous Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1167,0,1871,0,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4211,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"6":677,"7":748,"22":4113}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1803,"6":703,"7":779,"22":4162},"upgradeStep":1}}}, +{"id":103262,"name":"Grievous Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645,"22":2649},"upgradeStep":1}}}, +{"id":103263,"name":"Grievous Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[936,0,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"7":621,"11":508,"22":2617}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"7":645,"11":527,"22":2649},"upgradeStep":1}}}, +{"id":103264,"name":"Grievous Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,1679,2519,0,0,0,1119,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"weaponDamageMin":17664,"weaponDamageMax":26497,"weaponSpeed":3.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"522":{"randPropPoints":2963,"weaponDamageMin":16395,"weaponDamageMax":24594,"stats":{"1":1558,"2":2337,"6":1039,"11":1039}},"526":{"randPropPoints":3076,"weaponDamageMin":17018,"weaponDamageMax":25527,"stats":{"1":1618,"2":2426,"6":1078,"11":1078},"upgradeStep":1}}}, +{"id":103265,"name":"Grievous Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":1564},"upgradeStep":1}}}, +{"id":103266,"name":"Grievous Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":103267,"name":"Grievous Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2190},"upgradeStep":1}}}, +{"id":103268,"name":"Grievous Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":103269,"name":"Grievous Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":103270,"name":"Grievous Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":103271,"name":"Grievous Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":2034},"upgradeStep":1}}}, +{"id":103272,"name":"Grievous Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":2190},"upgradeStep":1}}}, +{"id":103273,"name":"Grievous Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":103274,"name":"Grievous Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":1877},"upgradeStep":1}}}, +{"id":103275,"name":"Grievous Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1167,1871,0,0,812,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":748,"7":677,"22":1771}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":779,"7":703,"22":1792},"upgradeStep":1}}}, +{"id":103276,"name":"Grievous Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1167,1871,0,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"6":748,"11":677,"22":2164}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1803,"6":779,"11":703,"22":2190},"upgradeStep":1}}}, +{"id":103277,"name":"Grievous Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,936,1403,0,0,0,0,669,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,6,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"522":{"randPropPoints":1651,"stats":{"1":868,"2":1302,"7":621,"11":508,"22":1377}},"526":{"randPropPoints":1714,"stats":{"1":901,"2":1352,"7":645,"11":527,"22":1394},"upgradeStep":1}}}, +{"id":103278,"name":"Grievous Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3224,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":3148}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":3186},"upgradeStep":1}}}, +{"id":103279,"name":"Grievous Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":1968}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":1991},"upgradeStep":1}}}, +{"id":103280,"name":"Grievous Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,2619,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":2558}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":2588},"upgradeStep":1}}}, +{"id":103281,"name":"Grievous Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":2755}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":2788},"upgradeStep":1}}}, +{"id":103282,"name":"Grievous Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,2418,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":2361}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":2389},"upgradeStep":1}}}, +{"id":103283,"name":"Grievous Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,812,0,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"7":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"7":703,"22":2493},"upgradeStep":1}}}, +{"id":103284,"name":"Grievous Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,0,0,730,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":677,"7":748,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":703,"7":779,"22":3048},"upgradeStep":1}}}, +{"id":103285,"name":"Grievous Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,1871,1167,812,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,3084,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":748,"11":677,"22":3011}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":779,"11":703,"22":3048},"upgradeStep":1}}}, +{"id":103286,"name":"Grievous Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,0,0,0,547,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"7":508,"11":621,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"7":527,"11":645,"22":1939},"upgradeStep":1}}}, +{"id":103287,"name":"Grievous Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1403,936,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"522":{"randPropPoints":1651,"stats":{"2":1302,"3":868,"4":621,"6":508,"22":1916}},"526":{"randPropPoints":1714,"stats":{"2":1352,"3":901,"4":645,"6":527,"22":1939},"upgradeStep":1}}}, +{"id":103288,"name":"Grievous Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,959,0,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"4":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"4":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":103289,"name":"Grievous Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"7":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"7":801,"22":2770},"upgradeStep":1}}}, +{"id":103290,"name":"Grievous Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":103291,"name":"Grievous Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":3879},"upgradeStep":1}}}, +{"id":103292,"name":"Grievous Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,752,0,0,0,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":103293,"name":"Grievous Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,1519,2519,0,0,0,959,0,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":879,"11":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":918,"11":1078,"22":4433},"upgradeStep":1}}}, +{"id":103294,"name":"Grievous Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1167,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"5":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"5":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":103295,"name":"Grievous Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1439,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"522":{"randPropPoints":2963,"stats":{"1":1318,"2":2337,"8":1039,"11":799,"22":3559}},"526":{"randPropPoints":3076,"stats":{"1":1378,"2":2426,"8":1078,"11":838,"22":3602},"upgradeStep":1}}}, +{"id":103296,"name":"Grievous Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,1519,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"1":1398,"2":2337,"6":1039,"7":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"1":1458,"2":2426,"6":1078,"7":918,"22":3879},"upgradeStep":1}}}, +{"id":103297,"name":"Grievous Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1167,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"522":{"randPropPoints":2201,"stats":{"1":1078,"2":1736,"7":772,"8":692,"22":3285}},"526":{"randPropPoints":2285,"stats":{"1":1122,"2":1802,"7":801,"8":721,"22":3325},"upgradeStep":1}}}, +{"id":103298,"name":"Grievous Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,1871,1167,0,0,812,0,0,0,0,730,0,0,0,0,0,0,0,0,0,0,2523,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"6":748,"11":677,"22":2464}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"6":779,"11":703,"22":2493},"upgradeStep":1}}}, +{"id":103299,"name":"Grievous Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4485,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":4380}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":4433},"upgradeStep":1}}}, +{"id":103300,"name":"Grievous Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,1871,1167,752,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"4":692,"6":772,"22":2738}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"4":721,"6":801,"22":2770},"upgradeStep":1}}}, +{"id":103301,"name":"Grievous Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,2519,1439,0,0,0,879,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,3644,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"7":799,"11":1039,"22":3559}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"7":838,"11":1078,"22":3602},"upgradeStep":1}}}, +{"id":103302,"name":"Grievous Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,2519,1519,0,0,0,1119,0,0,0,959,0,0,0,0,0,0,0,0,0,0,3925,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":1039,"11":879,"22":3833}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":1078,"11":918,"22":3879},"upgradeStep":1}}}, +{"id":103303,"name":"Grievous Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,1871,1167,0,0,0,752,0,0,0,832,0,0,0,0,0,0,0,0,0,0,3364,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":692,"11":772,"22":3285}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":721,"11":801,"22":3325},"upgradeStep":1}}}, +{"id":103304,"name":"Grievous Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":6550,"weaponDamageMax":9826,"weaponSpeed":1.8,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":6080,"weaponDamageMax":9120,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":6310,"weaponDamageMax":9466,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103305,"name":"Grievous Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,719,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"1":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"1":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103306,"name":"Grievous Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103307,"name":"Grievous Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1079,719,0,0,480,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":4139,"weaponDamageMax":7688,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":3842,"weaponDamageMax":7136,"stats":{"2":1002,"3":668,"6":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":3988,"weaponDamageMax":7407,"stats":{"2":1040,"3":693,"6":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":103308,"name":"Grievous Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103309,"name":"Grievous Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103310,"name":"Grievous Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1079,719,480,0,0,0,0,0,0,480,0,0,9615,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":3025,"weaponDamageMax":5618,"weaponSpeed":1.9,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"522":{"randPropPoints":1270,"weaponDamageMin":2807,"weaponDamageMax":5214,"stats":{"2":1002,"3":668,"4":445,"11":445,"14":8926}},"526":{"randPropPoints":1318,"weaponDamageMin":2914,"weaponDamageMax":5412,"stats":{"2":1040,"3":693,"4":462,"11":462,"14":9263},"upgradeStep":1}}}, +{"id":103311,"name":"Grievous Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103312,"name":"Grievous Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":8279,"weaponDamageMax":15376,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":7684,"weaponDamageMax":14271,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":7976,"weaponDamageMax":14813,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103313,"name":"Grievous Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[719,0,1079,0,0,0,480,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1368,"weaponDamageMin":9461,"weaponDamageMax":14193,"weaponSpeed":2.6,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"522":{"randPropPoints":1270,"weaponDamageMin":8782,"weaponDamageMax":13173,"stats":{"0":668,"2":1002,"6":445,"11":445}},"526":{"randPropPoints":1318,"weaponDamageMin":9115,"weaponDamageMax":13674,"stats":{"0":693,"2":1040,"6":462,"11":462},"upgradeStep":1}}}, +{"id":103314,"name":"Grievous Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103315,"name":"Grievous Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,0,547,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"7":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"7":645,"22":1252},"upgradeStep":1}}}, +{"id":103316,"name":"Grievous Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[936,0,1403,0,0,547,0,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":508,"11":621,"22":1237}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":527,"11":645,"22":1252},"upgradeStep":1}}}, +{"id":103317,"name":"Grievous Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,0,547,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":508,"8":621}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":527,"8":645},"upgradeStep":1}}}, +{"id":103318,"name":"Grievous Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[936,0,1403,0,0,669,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"7":527},"upgradeStep":1}}}, +{"id":103319,"name":"Grievous Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235},"522":{"randPropPoints":2201},"526":{"randPropPoints":2285,"upgradeStep":1}}}, +{"id":103320,"name":"Grievous Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,0,669,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":621,"7":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":645,"7":527},"upgradeStep":1}}}, +{"id":103321,"name":"Grievous Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[936,0,1403,0,0,669,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[4,9,10],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"5":621,"11":508}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"5":645,"11":527},"upgradeStep":1}}}, +{"id":103322,"name":"Grievous Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[936,0,1403,0,0,0,624,0,0,0,0,624,0,0,0,0,0,0,0,0,0,0,19648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1779,"ilvl":522,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"522":{"randPropPoints":1651,"stats":{"0":868,"2":1302,"6":579,"11":579,"22":19188}},"526":{"randPropPoints":1714,"stats":{"0":901,"2":1352,"6":601,"11":601,"22":19418},"upgradeStep":1}}}, +{"id":103323,"name":"Grievous Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,1871,1167,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"5":692,"6":772,"22":1546}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"5":721,"6":801,"22":1564},"upgradeStep":1}}}, +{"id":103324,"name":"Grievous Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,2519,1439,0,0,1119,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,2058,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1318,"6":1039,"11":799,"22":2010}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1378,"6":1078,"11":838,"22":2034},"upgradeStep":1}}}, +{"id":103325,"name":"Grievous Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,2519,1519,0,0,0,959,0,0,0,1119,0,0,0,0,0,0,0,0,0,0,2216,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"7":879,"11":1039,"22":2164}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"7":918,"11":1078,"22":2190},"upgradeStep":1}}}, +{"id":103326,"name":"Grievous Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,2519,1519,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2533,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"522":{"randPropPoints":2963,"stats":{"2":2337,"3":1398,"6":879,"7":1039,"22":2473}},"526":{"randPropPoints":3076,"stats":{"2":2426,"3":1458,"6":918,"7":1078,"22":2503},"upgradeStep":1}}}, +{"id":103327,"name":"Grievous Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,1871,1167,0,0,0,832,0,0,0,752,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"522":{"randPropPoints":2201,"stats":{"2":1736,"3":1078,"7":772,"11":692,"22":1855}},"526":{"randPropPoints":2285,"stats":{"2":1802,"3":1122,"7":801,"11":721,"22":1877},"upgradeStep":1}}}, +{"id":103328,"name":"Grievous Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[1519,0,2519,0,0,0,959,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6125,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":879,"7":1039,"22":5982}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":918,"7":1078,"22":6054},"upgradeStep":1}}}, +{"id":103329,"name":"Grievous Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1167,0,1871,0,0,752,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3828,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"5":692,"6":772,"22":3739}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"5":721,"6":801,"22":3784},"upgradeStep":1}}}, +{"id":103330,"name":"Grievous Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1439,0,2519,0,0,0,0,0,1119,0,0,879,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"522":{"randPropPoints":2963,"stats":{"0":1318,"2":2337,"8":1039,"11":799,"22":4861}},"526":{"randPropPoints":3076,"stats":{"0":1378,"2":2426,"8":1078,"11":838,"22":4919},"upgradeStep":1}}}, +{"id":103331,"name":"Grievous Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[1519,0,2519,0,0,0,1119,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5360,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3193,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"522":{"randPropPoints":2963,"stats":{"0":1398,"2":2337,"6":1039,"7":879,"22":5234}},"526":{"randPropPoints":3076,"stats":{"0":1458,"2":2426,"6":1078,"7":918,"22":5297},"upgradeStep":1}}}, +{"id":103332,"name":"Grievous Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1167,0,1871,0,0,0,0,832,752,0,0,0,0,0,0,0,0,0,0,0,0,0,4594,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"522":{"randPropPoints":2201,"stats":{"0":1078,"2":1736,"7":772,"8":692,"22":4487}},"526":{"randPropPoints":2285,"stats":{"0":1122,"2":1802,"7":801,"8":721,"22":4540},"upgradeStep":1}}}, +{"id":103333,"name":"Grievous Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"522":{"randPropPoints":2201,"stats":{"2":1736}},"526":{"randPropPoints":2285,"stats":{"2":1802},"upgradeStep":1}}}, +{"id":103334,"name":"Grievous Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"522":{"randPropPoints":2201,"stats":{"6":1467}},"526":{"randPropPoints":2285,"stats":{"6":1523},"upgradeStep":1}}}, +{"id":103335,"name":"Grievous Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,1581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2372,"ilvl":522,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":1,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"522":{"randPropPoints":2201,"stats":{"4":1467}},"526":{"randPropPoints":2285,"stats":{"4":1523},"upgradeStep":1}}}, +{"id":103336,"name":"Prideful Gladiator's Decapitator","icon":"inv_axe_2h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103337,"name":"Prideful Gladiator's Bonegrinder","icon":"inv_mace_2h_pvppandarias1_c_01","type":13,"weaponType":4,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103338,"name":"Prideful Gladiator's Greatsword","icon":"inv_sword_2h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":4,"stats":[2180,0,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"0":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"0":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103339,"name":"Prideful Gladiator's Cleaver","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103340,"name":"Prideful Gladiator's Pummeler","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103341,"name":"Prideful Gladiator's Quickblade","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103342,"name":"Prideful Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103343,"name":"Prideful Gladiator's Cape of Cruelty","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,1214,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":806,"7":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":837,"7":684,"22":1355},"upgradeStep":1}}}, +{"id":103344,"name":"Prideful Gladiator's Cape of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[0,1214,1821,0,0,710,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":103345,"name":"Prideful Gladiator's Necklace of Proficiency","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,1214,1821,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":285,"8":349}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":659,"8":806}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":684,"8":837},"upgradeStep":1}}}, +{"id":103346,"name":"Prideful Gladiator's Necklace of Prowess","icon":"inv_misc_pvp_neck_a2","type":2,"stats":[0,1214,1821,0,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":659,"11":806}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":684,"11":837},"upgradeStep":1}}}, +{"id":103347,"name":"Prideful Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103348,"name":"Prideful Gladiator's Ring of Cruelty","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,1214,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"6":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"6":837,"7":684},"upgradeStep":1}}}, +{"id":103349,"name":"Prideful Gladiator's Ring of Accuracy","icon":"inv_misc_pvp_ringc1","type":11,"stats":[0,1214,1821,0,0,868,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"11":684},"upgradeStep":1}}}, +{"id":103350,"name":"Prideful Gladiator's Longbow","icon":"inv_bow_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":1,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103351,"name":"Prideful Gladiator's Cord of Cruelty","icon":"inv_buckle_cloth_pvpmage_g_01","type":8,"armorType":1,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1525},"upgradeStep":1}}}, +{"id":103352,"name":"Prideful Gladiator's Cord of Accuracy","icon":"inv_cloth_pvpwarlock_g_01belt","type":8,"armorType":1,"stats":[0,0,2429,1539,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":384,"7":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":995,"7":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":1036,"7":912,"22":1525},"upgradeStep":1}}}, +{"id":103353,"name":"Prideful Gladiator's Cord of Meditation","icon":"inv_belt_cloth_pvppriest_g_01","type":8,"armorType":1,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1133}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":1508}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":1525},"upgradeStep":1}}}, +{"id":103354,"name":"Prideful Gladiator's Treads of Cruelty","icon":"inv_boot_cloth_pvpmage_g_01","type":10,"armorType":1,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1863},"upgradeStep":1}}}, +{"id":103355,"name":"Prideful Gladiator's Treads of Alacrity","icon":"inv_cloth_pvpwarlock_g_01boot","type":10,"armorType":1,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":1863},"upgradeStep":1}}}, +{"id":103356,"name":"Prideful Gladiator's Treads of Meditation","icon":"inv_boot_cloth_pvppriest_g_01","type":10,"armorType":1,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1385}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":1843}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":1863},"upgradeStep":1}}}, +{"id":103357,"name":"Prideful Gladiator's Cuffs of Accuracy","icon":"inv_cloth_pvpwarlock_g_01bracer","type":6,"armorType":1,"stats":[0,0,1821,1214,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"5":806,"6":659,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"5":837,"6":684,"22":1186},"upgradeStep":1}}}, +{"id":103358,"name":"Prideful Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_g_01","type":6,"armorType":1,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1186},"upgradeStep":1}}}, +{"id":103359,"name":"Prideful Gladiator's Cuffs of Meditation","icon":"inv_bracer_cloth_pvppriest_g_01","type":6,"armorType":1,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[3,5,8],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":881}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1173}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1186},"upgradeStep":1}}}, +{"id":103360,"name":"Prideful Gladiator's Drape of Cruelty","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"7":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"7":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"7":684,"22":1355},"upgradeStep":1}}}, +{"id":103361,"name":"Prideful Gladiator's Drape of Prowess","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":103362,"name":"Prideful Gladiator's Drape of Meditation","icon":"inv_cape_pandariapvp_d_01","type":4,"armorType":1,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1007}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1340}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1355},"upgradeStep":1}}}, +{"id":103363,"name":"Prideful Gladiator's Endgame","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1821,1214,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":751,"11":751}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":780,"11":780},"upgradeStep":1}}}, +{"id":103364,"name":"Prideful Gladiator's Barrier","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1821,1214,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":103365,"name":"Prideful Gladiator's Spellblade","icon":"inv_knife_1h_pvppandarias3_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":103366,"name":"Prideful Gladiator's Battle Staff","icon":"inv_staff_2h_pvppandarias3_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,3270,2180,0,0,1453,0,0,0,0,1453,0,0,12485,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868,"stats":{"2":3035,"3":2023,"6":1349,"11":1349,"14":11588}},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"stats":{"2":3150,"3":2100,"6":1400,"11":1400,"14":12027},"upgradeStep":1}}}, +{"id":103367,"name":"Prideful Gladiator's Pendant of Cruelty","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,0,0,868,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"11":684},"upgradeStep":1}}}, +{"id":103368,"name":"Prideful Gladiator's Pendant of Alacrity","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":837,"11":684},"upgradeStep":1}}}, +{"id":103369,"name":"Prideful Gladiator's Pendant of Meditation","icon":"inv_misc_pvp_neck_a3","type":2,"stats":[0,0,1821,1214,868,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"7":684},"upgradeStep":1}}}, +{"id":103370,"name":"Prideful Gladiator's Band of Cruelty","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,0,0,868,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"6":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"6":837,"11":684},"upgradeStep":1}}}, +{"id":103371,"name":"Prideful Gladiator's Band of Accuracy","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,0,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"5":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"5":837,"7":684},"upgradeStep":1}}}, +{"id":103372,"name":"Prideful Gladiator's Band of Meditation","icon":"inv_misc_pvp_ringc3","type":11,"stats":[0,0,1821,1214,868,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"7":684},"upgradeStep":1}}}, +{"id":103373,"name":"Prideful Gladiator's Reprieve","icon":"inv_offhand_1h_pvppandarias3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1821,1214,810,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":751,"11":751}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":780,"11":780},"upgradeStep":1}}}, +{"id":103374,"name":"Prideful Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":103375,"name":"Prideful Gladiator's Heavy Crossbow","icon":"inv_bow_2h_crossbow_pvppandarias2_c_01","type":14,"rangedWeaponType":2,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103376,"name":"Prideful Gladiator's Dreadplate Chestpiece","icon":"inv_plate_pvpdeathknight_g_01_chest","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":103377,"name":"Prideful Gladiator's Dreadplate Gauntlets","icon":"inv_plate_pvpdeathknight_g_01_glove","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":103378,"name":"Prideful Gladiator's Dreadplate Helm","icon":"inv_plate_pvpdeathknight_g_01_helm","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":103379,"name":"Prideful Gladiator's Dreadplate Legguards","icon":"inv_plate_pvpdeathknight_g_01_pant","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":103380,"name":"Prideful Gladiator's Dreadplate Shoulders","icon":"inv_plate_pvpdeathknight_g_01_shoulder","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":103381,"name":"Prideful Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":103382,"name":"Prideful Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":103383,"name":"Prideful Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":103384,"name":"Prideful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":103385,"name":"Prideful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":103386,"name":"Prideful Gladiator's Belt of Meditation","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":1940},"upgradeStep":1}}}, +{"id":103387,"name":"Prideful Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":1763}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":2346}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":2372},"upgradeStep":1}}}, +{"id":103388,"name":"Prideful Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":1509},"upgradeStep":1}}}, +{"id":103389,"name":"Prideful Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":2156},"upgradeStep":1}}}, +{"id":103390,"name":"Prideful Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":103391,"name":"Prideful Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3018},"upgradeStep":1}}}, +{"id":103392,"name":"Prideful Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":103393,"name":"Prideful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":103394,"name":"Prideful Gladiator's Staff","icon":"inv_stave_2h_pvppandarias2_c_03alliance","type":13,"weaponType":8,"handType":4,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":12738,"weaponDamageMax":19108,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":5111,"weaponDamageMax":7668,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":11823,"weaponDamageMax":17736,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":12272,"weaponDamageMax":18409,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103395,"name":"Prideful Gladiator's Belt of Cruelty","icon":"inv_buckle_leather_pvpdruid_g_01","type":8,"armorType":2,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":1940},"upgradeStep":1}}}, +{"id":103396,"name":"Prideful Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_g_01","type":10,"armorType":2,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":1763}},"550":{"randPropPoints":2858,"stats":{"2":2255,"3":1423,"6":879,"7":995,"22":2346}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":2372},"upgradeStep":1}}}, +{"id":103397,"name":"Prideful Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_g_01","type":6,"armorType":2,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1122}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":1493}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":1509},"upgradeStep":1}}}, +{"id":103398,"name":"Prideful Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":103399,"name":"Prideful Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":2803},"upgradeStep":1}}}, +{"id":103400,"name":"Prideful Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":3018},"upgradeStep":1}}}, +{"id":103401,"name":"Prideful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":103402,"name":"Prideful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":103403,"name":"Prideful Gladiator's Rifle","icon":"inv_firearm_2h_rifle_pvppandarias3_c_01","type":14,"rangedWeaponType":3,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":19108,"weaponDamageMax":28663,"weaponSpeed":3,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":17735,"weaponDamageMax":26604,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":18409,"weaponDamageMax":27614,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103404,"name":"Prideful Gladiator's Gavel","icon":"inv_mace_1h_pvppandarias3_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3306,"weaponDamageMax":6141,"weaponSpeed":1.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1326,"weaponDamageMax":2464,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3069,"weaponDamageMax":5700,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3185,"weaponDamageMax":5917,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":103405,"name":"Prideful Gladiator's Redoubt","icon":"inv_shield_pvppandarias3_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1821,1214,810,0,0,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":103406,"name":"Prideful Gladiator's Energy Staff","icon":"inv_staff_2h_pvppandarias3_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,3270,2180,1453,0,0,0,0,0,0,1453,0,0,12485,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":6369,"weaponDamageMax":9554,"weaponSpeed":2,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":2555,"weaponDamageMax":3834,"stats":{"2":1312,"3":875,"4":583,"11":583,"14":5009}},"550":{"randPropPoints":3847,"weaponDamageMin":5911,"weaponDamageMax":8868,"stats":{"2":3035,"3":2023,"4":1349,"11":1349,"14":11588}},"554":{"randPropPoints":3993,"weaponDamageMin":6136,"weaponDamageMax":9205,"stats":{"2":3150,"3":2100,"4":1400,"11":1400,"14":12027},"upgradeStep":1}}}, +{"id":103407,"name":"Prideful Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"550":{"randPropPoints":2858,"stats":{"6":1905}},"554":{"randPropPoints":2966,"stats":{"6":1977},"upgradeStep":1}}}, +{"id":103408,"name":"Prideful Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,2429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"550":{"randPropPoints":2858,"stats":{"2":2254}},"554":{"randPropPoints":2966,"stats":{"2":2340},"upgradeStep":1}}}, +{"id":103409,"name":"Prideful Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"550":{"randPropPoints":2858,"stats":{"4":1905}},"554":{"randPropPoints":2966,"stats":{"4":1977},"upgradeStep":1}}}, +{"id":103410,"name":"Prideful Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":2700},"upgradeStep":1}}}, +{"id":103411,"name":"Prideful Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_g_01","type":8,"armorType":3,"stats":[0,1539,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":995,"7":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":1036,"7":912,"22":2700},"upgradeStep":1}}}, +{"id":103412,"name":"Prideful Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":2453}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":3264}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":3300},"upgradeStep":1}}}, +{"id":103413,"name":"Prideful Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_g_01","type":10,"armorType":3,"stats":[0,1539,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":2453}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":879,"7":995,"22":3264}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":912,"7":1036,"22":3300},"upgradeStep":1}}}, +{"id":103414,"name":"Prideful Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,1214,1821,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":806,"11":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":837,"11":684,"22":2100},"upgradeStep":1}}}, +{"id":103415,"name":"Prideful Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_g_01","type":6,"armorType":3,"stats":[0,1214,1821,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[2,7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"6":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"6":684,"22":2100},"upgradeStep":1}}}, +{"id":103416,"name":"Prideful Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_g_01","type":5,"armorType":3,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":4800},"upgradeStep":1}}}, +{"id":103417,"name":"Prideful Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_g_01","type":7,"armorType":3,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":103418,"name":"Prideful Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_g_01","type":1,"armorType":3,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":103419,"name":"Prideful Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_g_01","type":9,"armorType":3,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":4200},"upgradeStep":1}}}, +{"id":103420,"name":"Prideful Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_g_01","type":3,"armorType":3,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":3561}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":3600},"upgradeStep":1}}}, +{"id":103421,"name":"Prideful Gladiator's Silk Handguards","icon":"inv_glove_cloth_pvpmage_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":103422,"name":"Prideful Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":103423,"name":"Prideful Gladiator's Silk Trousers","icon":"inv_pant_cloth_pvpmage_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1293,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1189,"11":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1240,"11":1400,"22":2371},"upgradeStep":1}}}, +{"id":103424,"name":"Prideful Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":103425,"name":"Prideful Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,1079,0,0,0,999,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":1002,"11":922,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":1040,"11":960,"22":2033},"upgradeStep":1}}}, +{"id":103426,"name":"Prideful Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvpmonk_g_01","type":8,"armorType":2,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"6":995,"11":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":1940},"upgradeStep":1}}}, +{"id":103427,"name":"Prideful Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvpmonk_g_01","type":10,"armorType":2,"stats":[0,1539,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":380,"7":384,"22":1763}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2255,"6":879,"7":995,"22":2346}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":912,"7":1036,"22":2372},"upgradeStep":1}}}, +{"id":103428,"name":"Prideful Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvpmonk_g_01","type":6,"armorType":2,"stats":[0,1214,1821,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"6":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"5":806,"6":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"5":837,"6":684,"22":1509},"upgradeStep":1}}}, +{"id":103429,"name":"Prideful Gladiator's Ironskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":103430,"name":"Prideful Gladiator's Ironskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":103431,"name":"Prideful Gladiator's Ironskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":103432,"name":"Prideful Gladiator's Ironskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":103433,"name":"Prideful Gladiator's Ironskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Ironskin","setId":1120,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":103434,"name":"Prideful Gladiator's Copperskin Gloves","icon":"inv_glove_leather_pvpmonk_g_01","type":7,"armorType":2,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":2156},"upgradeStep":1}}}, +{"id":103435,"name":"Prideful Gladiator's Copperskin Helm","icon":"inv_helm_leather_pvpmonk_g_01","type":1,"armorType":2,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":103436,"name":"Prideful Gladiator's Copperskin Legguards","icon":"inv_pant_leather_pvpmonk_g_01","type":9,"armorType":2,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2243}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2985}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":3018},"upgradeStep":1}}}, +{"id":103437,"name":"Prideful Gladiator's Copperskin Spaulders","icon":"inv_shoulder_leather_pvpmonk_g_01","type":3,"armorType":2,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1923}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2559}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2587},"upgradeStep":1}}}, +{"id":103438,"name":"Prideful Gladiator's Copperskin Tunic","icon":"inv_chest_leather_pvpmonk_g_01","type":5,"armorType":2,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[11],"setName":"Gladiator's Copperskin","setId":1119,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":3450},"upgradeStep":1}}}, +{"id":103439,"name":"Prideful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":103440,"name":"Prideful Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":103441,"name":"Prideful Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":103442,"name":"Prideful Gladiator's Scaled Legguards","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":103443,"name":"Prideful Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":103444,"name":"Prideful Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"2":2255,"3":1423,"6":995,"11":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":3687},"upgradeStep":1}}}, +{"id":103445,"name":"Prideful Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_g_01","type":8,"armorType":4,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":3687},"upgradeStep":1}}}, +{"id":103446,"name":"Prideful Gladiator's Greaves of Alacrity","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":3350}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":4457}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":4507},"upgradeStep":1}}}, +{"id":103447,"name":"Prideful Gladiator's Greaves of Meditation","icon":"inv_boot_plate_pvppaladin_g_01","type":10,"armorType":4,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":3350}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":4457}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":4507},"upgradeStep":1}}}, +{"id":103448,"name":"Prideful Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1822,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":2132}},"550":{"randPropPoints":2143,"stats":{"2":1691,"3":1127,"7":659,"11":806,"22":2837}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":2868},"upgradeStep":1}}}, +{"id":103449,"name":"Prideful Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_g_01","type":6,"armorType":4,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":2837}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":2868},"upgradeStep":1}}}, +{"id":103450,"name":"Prideful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_g_01","type":5,"armorType":4,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":103451,"name":"Prideful Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_g_01","type":7,"armorType":4,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":4097},"upgradeStep":1}}}, +{"id":103452,"name":"Prideful Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_g_01","type":1,"armorType":4,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":103453,"name":"Prideful Gladiator's Ornamented Legplates","icon":"inv_pant_plate_pvppaladin_g_01","type":9,"armorType":4,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":4263}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":5673}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":5736},"upgradeStep":1}}}, +{"id":103454,"name":"Prideful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_g_01","type":3,"armorType":4,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":3654}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":4863}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":4916},"upgradeStep":1}}}, +{"id":103455,"name":"Prideful Gladiator's Girdle of Accuracy","icon":"inv_plate_pvpdeathknight_g_01_belt","type":8,"armorType":4,"stats":[1539,0,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":384,"7":380,"22":2741}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"5":995,"7":879,"22":3647}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":1036,"7":912,"22":3687},"upgradeStep":1}}}, +{"id":103456,"name":"Prideful Gladiator's Girdle of Prowess","icon":"inv_plate_pvpwarrior_g_01belt","type":8,"armorType":4,"stats":[1539,0,2429,0,0,0,947,0,0,0,0,1078,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"11":384,"22":2741}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":879,"11":995,"22":3647}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":912,"11":1036,"22":3687},"upgradeStep":1}}}, +{"id":103457,"name":"Prideful Gladiator's Warboots of Cruelty","icon":"inv_plate_pvpwarrior_g_01boot","type":10,"armorType":4,"stats":[1539,0,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":384,"11":380,"22":3350}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":995,"11":879,"22":4457}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":1036,"11":912,"22":4507},"upgradeStep":1}}}, +{"id":103458,"name":"Prideful Gladiator's Warboots of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_boot","type":10,"armorType":4,"stats":[1539,0,2429,0,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":380,"7":384,"22":3350}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2255,"6":879,"7":995,"22":4457}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"6":912,"7":1036,"22":4507},"upgradeStep":1}}}, +{"id":103459,"name":"Prideful Gladiator's Armplates of Proficiency","icon":"inv_plate_pvpwarrior_g_01bracer","type":6,"armorType":4,"stats":[1214,0,1822,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349,"22":2132}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1691,"6":659,"8":806,"22":2837}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"8":837,"22":2868},"upgradeStep":1}}}, +{"id":103460,"name":"Prideful Gladiator's Armplates of Alacrity","icon":"inv_plate_pvpdeathknight_g_01_bracer","type":6,"armorType":4,"stats":[1214,0,1822,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,2899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":349,"11":285,"22":2132}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1691,"7":806,"11":659,"22":2837}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"7":837,"11":684,"22":2868},"upgradeStep":1}}}, +{"id":103461,"name":"Prideful Gladiator's Pike","icon":"inv_polearm_2h_pvppandarias3_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,2180,3270,0,0,0,1453,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"weaponDamageMin":22930,"weaponDamageMax":34395,"weaponSpeed":3.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":875,"2":1312,"6":583,"11":583}},"550":{"randPropPoints":3847,"weaponDamageMin":21283,"weaponDamageMax":31925,"stats":{"1":2023,"2":3035,"6":1349,"11":1349}},"554":{"randPropPoints":3993,"weaponDamageMin":22091,"weaponDamageMax":33137,"stats":{"1":2100,"2":3150,"6":1400,"11":1400},"upgradeStep":1}}}, +{"id":103462,"name":"Prideful Gladiator's Mooncloth Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":1694},"upgradeStep":1}}}, +{"id":103463,"name":"Prideful Gladiator's Mooncloth Helm","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":103464,"name":"Prideful Gladiator's Mooncloth Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2371},"upgradeStep":1}}}, +{"id":103465,"name":"Prideful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":103466,"name":"Prideful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":2033},"upgradeStep":1}}}, +{"id":103467,"name":"Prideful Gladiator's Satin Gloves","icon":"inv_glove_cloth_pvppriest_g_01","type":7,"armorType":1,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":103468,"name":"Prideful Gladiator's Satin Hood","icon":"inv_helm_cloth_pvppriest_g_01","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":2202},"upgradeStep":1}}}, +{"id":103469,"name":"Prideful Gladiator's Satin Leggings","icon":"inv_pant_cloth_pvppriest_g_01","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":2371},"upgradeStep":1}}}, +{"id":103470,"name":"Prideful Gladiator's Satin Robe","icon":"inv_chest_cloth_pvppriest_g_01","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":103471,"name":"Prideful Gladiator's Satin Mantle","icon":"inv_shoulder_cloth_pvppriest_g_01","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":2033},"upgradeStep":1}}}, +{"id":103472,"name":"Prideful Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_g_01","type":8,"armorType":2,"stats":[0,1539,2429,0,0,1078,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":384,"7":380,"22":1442}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":995,"7":879,"22":1919}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":1036,"7":912,"22":1940},"upgradeStep":1}}}, +{"id":103473,"name":"Prideful Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_g_01","type":10,"armorType":2,"stats":[0,1539,2429,0,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":384,"11":380,"22":1763}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2255,"6":995,"11":879,"22":2346}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"6":1036,"11":912,"22":2372},"upgradeStep":1}}}, +{"id":103474,"name":"Prideful Gladiator's Armwraps of Alacrity","icon":"inv_bracers_leather_pvprogue_g_01","type":6,"armorType":2,"stats":[0,1214,1821,0,0,0,0,868,0,0,0,710,0,0,0,0,0,0,0,0,0,0,1526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,6,11],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":349,"11":285,"22":1122}},"550":{"randPropPoints":2143,"stats":{"1":1127,"2":1690,"7":806,"11":659,"22":1493}},"554":{"randPropPoints":2225,"stats":{"1":1170,"2":1755,"7":837,"11":684,"22":1509},"upgradeStep":1}}}, +{"id":103475,"name":"Prideful Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_g_01","type":5,"armorType":2,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3487,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":2564}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":3412}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":3450},"upgradeStep":1}}}, +{"id":103476,"name":"Prideful Gladiator's Leather Gloves","icon":"inv_gauntlets_leather_pvprogue_g_01","type":7,"armorType":2,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":1602}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2132}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":2156},"upgradeStep":1}}}, +{"id":103477,"name":"Prideful Gladiator's Leather Helm","icon":"inv_helm_leather_pvprogue_g_01","type":1,"armorType":2,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2083}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":2772}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":2803},"upgradeStep":1}}}, +{"id":103478,"name":"Prideful Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_g_01","type":9,"armorType":2,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":2243}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":2985}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":3018},"upgradeStep":1}}}, +{"id":103479,"name":"Prideful Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_g_01","type":3,"armorType":2,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":1923}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":2559}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":2587},"upgradeStep":1}}}, +{"id":103480,"name":"Prideful Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,2429,1539,1078,0,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"7":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"7":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"7":912,"22":2700},"upgradeStep":1}}}, +{"id":103481,"name":"Prideful Gladiator's Footguards of Alacrity","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,2429,1539,0,0,947,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":380,"7":384,"22":2453}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":879,"7":995,"22":3264}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":912,"7":1036,"22":3300},"upgradeStep":1}}}, +{"id":103482,"name":"Prideful Gladiator's Footguards of Meditation","icon":"inv_boot_mail_pvpshaman_g_01","type":10,"armorType":3,"stats":[0,0,2429,1539,1078,0,0,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,3336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":384,"11":380,"22":2453}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":995,"11":879,"22":3264}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":1036,"11":912,"22":3300},"upgradeStep":1}}}, +{"id":103483,"name":"Prideful Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1821,1214,0,0,0,710,0,0,0,868,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":285,"11":349,"22":1561}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"7":659,"11":806,"22":2077}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"7":684,"11":837,"22":2100},"upgradeStep":1}}}, +{"id":103484,"name":"Prideful Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_g_01","type":6,"armorType":3,"stats":[0,0,1821,1214,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":1561}},"550":{"randPropPoints":2143,"stats":{"2":1690,"3":1127,"4":806,"6":659,"22":2077}},"554":{"randPropPoints":2225,"stats":{"2":1755,"3":1170,"4":837,"6":684,"22":2100},"upgradeStep":1}}}, +{"id":103485,"name":"Prideful Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,3270,2020,1293,0,0,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":423,"7":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"4":1189,"7":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"4":1240,"7":1400,"22":4800},"upgradeStep":1}}}, +{"id":103486,"name":"Prideful Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,2429,1539,999,0,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"7":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"7":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"7":1040,"22":3000},"upgradeStep":1}}}, +{"id":103487,"name":"Prideful Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":103488,"name":"Prideful Gladiator's Ringmail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3122}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":4154}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":4200},"upgradeStep":1}}}, +{"id":103489,"name":"Prideful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,2429,1539,999,0,0,0,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"11":433,"22":2676}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"11":1002,"22":3561}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"11":1040,"22":3600},"upgradeStep":1}}}, +{"id":103490,"name":"Prideful Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,2020,3270,0,0,0,1293,0,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":423,"11":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1189,"11":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1240,"11":1400,"22":4800},"upgradeStep":1}}}, +{"id":103491,"name":"Prideful Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,1539,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"5":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"5":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":103492,"name":"Prideful Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,1940,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"8":583,"11":343,"22":2899}},"550":{"randPropPoints":3847,"stats":{"1":1783,"2":3035,"8":1349,"11":1109,"22":3857}},"554":{"randPropPoints":3993,"stats":{"1":1860,"2":3150,"8":1400,"11":1160,"22":3900},"upgradeStep":1}}}, +{"id":103493,"name":"Prideful Gladiator's Linked Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,2020,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":583,"7":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"1":1863,"2":3035,"6":1349,"7":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"1":1940,"2":3150,"6":1400,"7":1240,"22":4200},"upgradeStep":1}}}, +{"id":103494,"name":"Prideful Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,1539,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":433,"8":353,"22":2676}},"550":{"randPropPoints":2858,"stats":{"1":1423,"2":2254,"7":1002,"8":922,"22":3561}},"554":{"randPropPoints":2966,"stats":{"1":1480,"2":2340,"7":1040,"8":960,"22":3600},"upgradeStep":1}}}, +{"id":103495,"name":"Prideful Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_g_01","type":8,"armorType":3,"stats":[0,0,2429,1539,0,0,1078,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":384,"11":380,"22":2007}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"6":995,"11":879,"22":2670}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"6":1036,"11":912,"22":2700},"upgradeStep":1}}}, +{"id":103496,"name":"Prideful Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_g_01","type":5,"armorType":3,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":3568}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":4747}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":4800},"upgradeStep":1}}}, +{"id":103497,"name":"Prideful Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_g_01","type":7,"armorType":3,"stats":[0,0,2429,1539,999,0,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":433,"22":2230}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"4":922,"6":1002,"22":2967}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"4":960,"6":1040,"22":3000},"upgradeStep":1}}}, +{"id":103498,"name":"Prideful Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,3270,1940,0,0,0,1213,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,3942,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":343,"11":583,"22":2899}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"7":1109,"11":1349,"22":3857}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"7":1160,"11":1400,"22":3900},"upgradeStep":1}}}, +{"id":103499,"name":"Prideful Gladiator's Mail Leggings","icon":"inv_kilt_mail_pvpshaman_g_01","type":9,"armorType":3,"stats":[0,0,3270,2020,0,0,0,1453,0,0,0,1293,0,0,0,0,0,0,0,0,0,0,4246,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":583,"11":423,"22":3122}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1349,"11":1189,"22":4154}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1400,"11":1240,"22":4200},"upgradeStep":1}}}, +{"id":103500,"name":"Prideful Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_g_01","type":3,"armorType":3,"stats":[0,0,2429,1539,0,0,0,999,0,0,0,1079,0,0,0,0,0,0,0,0,0,0,3639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":353,"11":433,"22":2676}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":922,"11":1002,"22":3561}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":960,"11":1040,"22":3600},"upgradeStep":1}}}, +{"id":103501,"name":"Prideful Gladiator's Shanker","icon":"knife_1h_pvppandarias3_c_01_icon","type":13,"weaponType":2,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":8503,"weaponDamageMax":12755,"weaponSpeed":1.8,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3412,"weaponDamageMax":5118,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":7892,"weaponDamageMax":11839,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":8192,"weaponDamageMax":12288,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103502,"name":"Prideful Gladiator's Ripper","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,934,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"1":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"1":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103503,"name":"Prideful Gladiator's Render","icon":"inv_hand_1h_pvppandarias3_c_01","type":13,"weaponType":3,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103504,"name":"Prideful Gladiator's Mageblade","icon":"inv_sword_1h_pvppandarias3_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,1401,934,0,0,623,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":5373,"weaponDamageMax":9979,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2156,"weaponDamageMax":4004,"stats":{"2":562,"3":375,"6":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":4987,"weaponDamageMax":9263,"stats":{"2":1301,"3":867,"6":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":5176,"weaponDamageMax":9614,"stats":{"2":1350,"3":900,"6":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":103505,"name":"Prideful Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103506,"name":"Prideful Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103507,"name":"Prideful Gladiator's Baton of Light","icon":"inv_wand_1h_pvppandarias3_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,1401,934,623,0,0,0,0,0,0,623,0,0,12482,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":3926,"weaponDamageMax":7293,"weaponSpeed":1.9,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":375,"4":250,"11":250,"14":5011}},"550":{"randPropPoints":1649,"weaponDamageMin":3644,"weaponDamageMax":6769,"stats":{"2":1301,"3":867,"4":578,"11":578,"14":11590}},"554":{"randPropPoints":1711,"weaponDamageMin":3783,"weaponDamageMax":7026,"stats":{"2":1350,"3":900,"4":600,"11":600,"14":12025},"upgradeStep":1}}}, +{"id":103508,"name":"Prideful Gladiator's Hacker","icon":"inv_axe_1h_pvppandarias3_c_01","type":13,"weaponType":1,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103509,"name":"Prideful Gladiator's Bonecracker","icon":"inv_mace_1h_pvppandarias3_c_01","type":13,"weaponType":4,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":10747,"weaponDamageMax":19959,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":9975,"weaponDamageMax":18525,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":10353,"weaponDamageMax":19229,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103510,"name":"Prideful Gladiator's Slicer","icon":"inv_sword_1h_pvppandarias3_c_01","type":13,"weaponType":9,"handType":2,"stats":[934,0,1401,0,0,0,623,0,0,0,0,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1776,"weaponDamageMin":12282,"weaponDamageMax":18424,"weaponSpeed":2.6,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4928,"weaponDamageMax":7393,"stats":{"0":375,"2":562,"6":250,"11":250}},"550":{"randPropPoints":1649,"weaponDamageMin":11400,"weaponDamageMax":17100,"stats":{"0":867,"2":1301,"6":578,"11":578}},"554":{"randPropPoints":1711,"weaponDamageMin":11833,"weaponDamageMax":17750,"stats":{"0":900,"2":1350,"6":600,"11":600},"upgradeStep":1}}}, +{"id":103511,"name":"Prideful Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103512,"name":"Prideful Gladiator's Cloak of Alacrity","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[1214,0,1821,0,0,0,710,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"7":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":659,"7":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"7":837,"22":1355},"upgradeStep":1}}}, +{"id":103513,"name":"Prideful Gladiator's Cloak of Prowess","icon":"inv_cape_pandariapvp_d_02","type":4,"armorType":1,"stats":[1214,0,1821,0,0,710,0,0,0,0,0,868,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":285,"11":349,"22":1007}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":659,"11":806,"22":1340}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":684,"11":837,"22":1355},"upgradeStep":1}}}, +{"id":103514,"name":"Prideful Gladiator's Choker of Proficiency","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[1214,0,1821,0,0,0,710,0,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":285,"8":349}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":659,"8":806}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":684,"8":837},"upgradeStep":1}}}, +{"id":103515,"name":"Prideful Gladiator's Choker of Accuracy","icon":"inv_misc_pvp_neck_a1","type":2,"stats":[1214,0,1821,0,0,868,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":837,"7":684},"upgradeStep":1}}}, +{"id":103516,"name":"Prideful Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235},"550":{"randPropPoints":2858},"554":{"randPropPoints":2966,"upgradeStep":1}}}, +{"id":103517,"name":"Prideful Gladiator's Signet of Cruelty","icon":"inv_misc_pvp_ringc2","type":11,"stats":[1214,0,1821,0,0,0,868,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":349,"7":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":806,"7":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":837,"7":684},"upgradeStep":1}}}, +{"id":103518,"name":"Prideful Gladiator's Signet of Accuracy","icon":"inv_misc_pvp_ringc2","type":11,"stats":[1214,0,1821,0,0,868,0,0,0,0,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[4,9,10],"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":349,"11":285}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"5":806,"11":659}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"5":837,"11":684},"upgradeStep":1}}}, +{"id":103519,"name":"Prideful Gladiator's Shield Wall","icon":"inv_shield_pvppandarias3_c_01","type":13,"weaponType":7,"handType":3,"stats":[1214,0,1821,0,0,0,810,0,0,0,0,810,0,0,0,0,0,0,0,0,0,0,21256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2309,"ilvl":550,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":325,"11":325,"22":15628}},"550":{"randPropPoints":2143,"stats":{"0":1127,"2":1690,"6":751,"11":751,"22":20796}},"554":{"randPropPoints":2225,"stats":{"0":1170,"2":1755,"6":780,"11":780,"22":21026},"upgradeStep":1}}}, +{"id":103520,"name":"Prideful Gladiator's Felweave Handguards","icon":"inv_cloth_pvpwarlock_g_01glove","type":7,"armorType":1,"stats":[0,0,2429,1539,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":353,"6":433,"22":1259}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"5":922,"6":1002,"22":1675}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"5":960,"6":1040,"22":1694},"upgradeStep":1}}}, +{"id":103521,"name":"Prideful Gladiator's Felweave Cowl","icon":"inv_cloth_pvpwarlock_g_01helm","type":1,"armorType":1,"stats":[0,0,3270,1940,0,0,1453,0,0,0,0,1213,0,0,0,0,0,0,0,0,0,0,2226,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":583,"11":343,"22":1637}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1783,"6":1349,"11":1109,"22":2178}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1860,"6":1400,"11":1160,"22":2202},"upgradeStep":1}}}, +{"id":103522,"name":"Prideful Gladiator's Felweave Trousers","icon":"inv_cloth_pvpwarlock_g_01pant","type":9,"armorType":1,"stats":[0,0,3270,2020,0,0,0,1293,0,0,0,1453,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":423,"11":583,"22":1763}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"7":1189,"11":1349,"22":2346}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"7":1240,"11":1400,"22":2371},"upgradeStep":1}}}, +{"id":103523,"name":"Prideful Gladiator's Felweave Raiment","icon":"inv_cloth_pvpwarlock_g_01robe","type":5,"armorType":1,"stats":[0,0,3270,2020,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2740,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"6":423,"7":583,"22":2014}},"550":{"randPropPoints":3847,"stats":{"2":3035,"3":1863,"6":1189,"7":1349,"22":2681}},"554":{"randPropPoints":3993,"stats":{"2":3150,"3":1940,"6":1240,"7":1400,"22":2710},"upgradeStep":1}}}, +{"id":103524,"name":"Prideful Gladiator's Felweave Amice","icon":"inv_cloth_pvpwarlock_g_01shoulder","type":3,"armorType":1,"stats":[0,0,2429,1539,0,0,0,1079,0,0,0,999,0,0,0,0,0,0,0,0,0,0,2055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":433,"11":353,"22":1511}},"550":{"randPropPoints":2858,"stats":{"2":2254,"3":1423,"7":1002,"11":922,"22":2011}},"554":{"randPropPoints":2966,"stats":{"2":2340,"3":1480,"7":1040,"11":960,"22":2033},"upgradeStep":1}}}, +{"id":103525,"name":"Prideful Gladiator's Plate Chestpiece","icon":"inv_plate_pvpwarrior_g_01chest","type":5,"armorType":4,"stats":[2020,0,3270,0,0,0,1293,1453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":423,"7":583,"22":4872}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1189,"7":1349,"22":6483}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1240,"7":1400,"22":6555},"upgradeStep":1}}}, +{"id":103526,"name":"Prideful Gladiator's Plate Gauntlets","icon":"inv_plate_pvpwarrior_g_01glove","type":7,"armorType":4,"stats":[1539,0,2429,0,0,999,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4142,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":353,"6":433,"22":3045}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"5":922,"6":1002,"22":4052}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"5":960,"6":1040,"22":4097},"upgradeStep":1}}}, +{"id":103527,"name":"Prideful Gladiator's Plate Helm","icon":"inv_plate_pvpwarrior_g_01helm","type":1,"armorType":4,"stats":[1940,0,3270,0,0,0,0,0,1453,0,0,1213,0,0,0,0,0,0,0,0,0,0,5384,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":583,"11":343,"22":3959}},"550":{"randPropPoints":3847,"stats":{"0":1783,"2":3035,"8":1349,"11":1109,"22":5268}},"554":{"randPropPoints":3993,"stats":{"0":1860,"2":3150,"8":1400,"11":1160,"22":5326},"upgradeStep":1}}}, +{"id":103528,"name":"Prideful Gladiator's Plate Legguards","icon":"inv_plate_pvpwarrior_g_01pant","type":9,"armorType":4,"stats":[2020,0,3270,0,0,0,1453,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5798,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4145,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"sources":[{"drop":{"otherName":"Chi-Ji, The Red Crane"}}],"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":715,"2":1312,"6":583,"7":423,"22":4263}},"550":{"randPropPoints":3847,"stats":{"0":1863,"2":3035,"6":1349,"7":1189,"22":5673}},"554":{"randPropPoints":3993,"stats":{"0":1940,"2":3150,"6":1400,"7":1240,"22":5736},"upgradeStep":1}}}, +{"id":103529,"name":"Prideful Gladiator's Plate Shoulders","icon":"inv_plate_pvpwarrior_g_01shoulder","type":3,"armorType":4,"stats":[1539,0,2429,0,0,0,0,1079,999,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"7":433,"8":353,"22":3654}},"550":{"randPropPoints":2858,"stats":{"0":1423,"2":2254,"7":1002,"8":922,"22":4863}},"554":{"randPropPoints":2966,"stats":{"0":1480,"2":2340,"7":1040,"8":960,"22":4916},"upgradeStep":1}}}, +{"id":103530,"name":"Prideful Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,2429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974}},"550":{"randPropPoints":2858,"stats":{"2":2254}},"554":{"randPropPoints":2966,"stats":{"2":2340},"upgradeStep":1}}}, +{"id":103531,"name":"Prideful Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"6":823}},"550":{"randPropPoints":2858,"stats":{"6":1905}},"554":{"randPropPoints":2966,"stats":{"6":1977},"upgradeStep":1}}}, +{"id":103532,"name":"Prideful Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3079,"ilvl":550,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Gladiator's Distinction","setId":1203,"factionRestriction":2,"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"4":823}},"550":{"randPropPoints":2858,"stats":{"4":1905}},"554":{"randPropPoints":2966,"stats":{"4":1977},"upgradeStep":1}}}, +{"id":103639,"name":"Pouch of White Ash","icon":"inv_misc_bag_09_black","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":103649,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[2161,0,3362,0,0,0,1295,0,0,0,0,1539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":23580,"weaponDamageMax":35370,"weaponSpeed":3.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"553":{"randPropPoints":3956,"weaponDamageMin":21886,"weaponDamageMax":32829,"stats":{"0":2000,"2":3121,"6":1201,"11":1424}},"557":{"randPropPoints":4106,"weaponDamageMin":22717,"weaponDamageMax":34076,"stats":{"0":2079,"2":3239,"6":1247,"11":1480},"upgradeStep":1}}}, +{"id":103678,"name":"Time-Lost Artifact","icon":"inv_misc_trinketpanda_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"496":{"randPropPoints":1728,"stats":{"11":1152}},"500":{"randPropPoints":1793,"stats":{"11":1195},"upgradeStep":1}}}, +{"id":103686,"name":"Discipline of Xuen","icon":"inv_pet_tigergodcub","type":12,"stats":[0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"496":{"randPropPoints":1728,"stats":{"1":1152}},"500":{"randPropPoints":1793,"stats":{"1":1195},"upgradeStep":1}}}, +{"id":103687,"name":"Yu'lon's Bite","icon":"inv_pet_jadeserpentpet","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":103688,"name":"Contemplation of Chi-Ji","icon":"inv_pet_cranegod","type":12,"stats":[0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"496":{"randPropPoints":1728,"stats":{"3":1152}},"500":{"randPropPoints":1793,"stats":{"3":1195},"upgradeStep":1}}}, +{"id":103689,"name":"Alacrity of Xuen","icon":"inv_pet_tigergodcub","type":12,"stats":[1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"496":{"randPropPoints":1728,"stats":{"0":1152}},"500":{"randPropPoints":1793,"stats":{"0":1195},"upgradeStep":1}}}, +{"id":103690,"name":"Resolve of Niuzao","icon":"inv_pet_yakgod","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"496":{"randPropPoints":1728,"stats":{"11":1152}},"500":{"randPropPoints":1793,"stats":{"11":1195},"upgradeStep":1}}}, +{"id":103726,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,2161,3362,0,0,0,1640,0,1119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":21615,"weaponDamageMax":32423,"weaponSpeed":3.3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"553":{"randPropPoints":3956,"weaponDamageMin":20062,"weaponDamageMax":30094,"stats":{"1":2000,"2":3121,"6":1517,"8":1038}},"557":{"randPropPoints":4106,"weaponDamageMin":20824,"weaponDamageMax":31236,"stats":{"1":2079,"2":3239,"6":1577,"8":1078},"upgradeStep":1}}}, +{"id":103727,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[881,0,1441,0,0,0,0,0,0,601,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"9":554,"10":554}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"9":577,"10":577},"upgradeStep":1}}}, +{"id":103728,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,1440,1263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1328,"7":1164,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1383,"7":1213,"22":2826},"upgradeStep":1}}}, +{"id":103729,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2001,3362,0,0,0,0,1483,0,0,0,1191,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1368,"11":1097,"22":2795}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1424,"11":1143,"22":2826},"upgradeStep":1}}}, +{"id":103730,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1585,2498,0,0,926,1159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"5":856,"6":1073,"22":3291}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"5":890,"6":1115,"22":3327},"upgradeStep":1}}}, +{"id":103731,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1585,2498,0,0,0,0,0,1034,0,0,1095,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"8":957,"11":1014,"22":3291}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"8":994,"11":1053,"22":3327},"upgradeStep":1}}}, +{"id":103732,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1585,2498,0,0,0,996,1111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"6":922,"7":1028,"22":3291}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"6":958,"7":1069,"22":3327},"upgradeStep":1}}}, +{"id":103733,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,1018,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"7":941,"11":950,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"7":978,"11":989,"22":4131},"upgradeStep":1}}}, +{"id":103734,"name":"Zoid's Molten Gauntlets","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,1140,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"11":285,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"6":1052,"11":767,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"6":1095,"11":798,"22":4131},"upgradeStep":1}}}, +{"id":103735,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,1095,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"6":1009,"7":840,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"6":1051,"7":874,"22":4131},"upgradeStep":1}}}, +{"id":103736,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,1120,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"6":1031,"7":1406,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"6":1074,"7":1464,"22":6609},"upgradeStep":1}}}, +{"id":103737,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,1462,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"6":1348,"11":1130,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"6":1404,"11":1178,"22":6609},"upgradeStep":1}}}, +{"id":103738,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1249,0,1874,0,0,927,0,671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":861,"7":623,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":893,"7":647,"22":2891},"upgradeStep":1}}}, +{"id":103739,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1249,0,1874,0,0,0,691,0,916,0,0,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"6":641,"8":850,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"6":666,"8":883,"22":2891},"upgradeStep":1}}}, +{"id":103740,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1249,0,1874,0,0,0,812,0,0,0,0,845,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"6":753,"11":784,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"6":782,"11":814,"22":2891},"upgradeStep":1}}}, +{"id":103741,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1249,0,1874,0,0,0,0,0,0,833,833,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"9":773,"10":773,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"9":802,"10":802,"22":2891},"upgradeStep":1}}}, +{"id":103742,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1249,0,1874,0,0,0,0,0,893,0,731,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"8":829,"10":678,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"8":861,"10":704,"22":2891},"upgradeStep":1}}}, +{"id":103743,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[1249,0,1874,0,0,905,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":840,"9":659,"22":2860}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":872,"9":685,"22":2891},"upgradeStep":1}}}, +{"id":103744,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1585,0,2498,0,0,953,0,0,0,0,1143,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"5":881,"10":1059,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"5":916,"10":1100,"22":4544},"upgradeStep":1}}}, +{"id":103745,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1585,0,2498,0,0,0,0,0,1111,996,0,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"8":1028,"9":922,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"8":1069,"9":958,"22":4544},"upgradeStep":1}}}, +{"id":103746,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Undetermined - Plate Str Tank Boot","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1585,0,2498,0,0,0,0,0,0,0,889,1173,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"10":327,"11":428,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"10":823,"11":1086,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"10":855,"11":1129,"22":4544},"upgradeStep":1}}}, +{"id":103747,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,0,763,1185,0,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"9":703,"10":1095,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"9":733,"10":1139,"22":4957},"upgradeStep":1}}}, +{"id":103748,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,867,0,0,0,0,0,1126,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":799,"11":1040,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":833,"11":1082,"22":4957},"upgradeStep":1}}}, +{"id":103749,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1249,1874,0,0,0,0,833,0,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"7":773,"11":773}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"7":802,"11":802},"upgradeStep":1}}}, +{"id":103750,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,1249,1874,0,0,0,751,881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"6":697,"7":818}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"6":723,"7":849},"upgradeStep":1}}}, +{"id":103751,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3362,2001,0,0,1374,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1267,"11":1267,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1320,"11":1320,"22":2220},"upgradeStep":1}}}, +{"id":103752,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2498,1505,1079,0,937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":995,"6":865,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1036,"6":900,"22":1708},"upgradeStep":1}}}, +{"id":103753,"name":"Seebo's Sainted Touch","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2498,1505,799,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":735,"11":1084,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":766,"11":1127,"22":1708},"upgradeStep":1}}}, +{"id":103754,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2498,1505,1125,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1038,"7":791,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1081,"7":823,"22":1708},"upgradeStep":1}}}, +{"id":103755,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2498,1505,1126,0,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1040,"6":799,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1082,"6":833,"22":2049},"upgradeStep":1}}}, +{"id":103756,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2498,1505,1030,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":950,"7":950,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":989,"7":989,"22":2049},"upgradeStep":1}}}, +{"id":103757,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1874,1249,633,0,949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":587,"6":881,"22":1505}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":610,"6":915,"22":1522},"upgradeStep":1}}}, +{"id":103758,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,1874,1249,869,0,0,771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":807,"7":715,"22":1505}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":838,"7":743,"22":1522},"upgradeStep":1}}}, +{"id":103759,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1874,1249,905,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":840,"11":659,"22":1505}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":872,"11":685,"22":1522},"upgradeStep":1}}}, +{"id":103760,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2498,1585,1062,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":982,"7":998,"22":2365}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":1021,"7":1037,"22":2391},"upgradeStep":1}}}, +{"id":103761,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2498,1585,0,0,0,1143,0,0,0,942,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"7":1057,"11":872,"22":2365}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"7":1099,"11":906,"22":2391},"upgradeStep":1}}}, +{"id":103762,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,2498,1585,980,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":906,"6":1044,"22":2365}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":942,"6":1085,"22":2391},"upgradeStep":1}}}, +{"id":103763,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2498,1505,1014,0,1046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":934,"6":966,"22":2992}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":973,"6":1005,"22":3024},"upgradeStep":1}}}, +{"id":103764,"name":"Marco's Crackling Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2498,1505,851,0,0,0,0,0,0,1142,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":274,"11":407,"22":2230}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":783,"11":1056,"22":2992}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":817,"11":1098,"22":3024},"upgradeStep":1}}}, +{"id":103765,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2498,1505,0,0,1110,0,0,0,0,883,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":1024,"11":815,"22":2992}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":1066,"11":849,"22":3024},"upgradeStep":1}}}, +{"id":103766,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2498,1585,1062,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":982,"7":998,"22":4494}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":1021,"7":1037,"22":4544},"upgradeStep":1}}}, +{"id":103767,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2498,1585,980,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":906,"6":1044,"22":4494}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":942,"6":1085,"22":4544},"upgradeStep":1}}}, +{"id":103768,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2498,1585,0,0,0,1143,0,0,0,942,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"7":1057,"11":872,"22":4494}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"7":1099,"11":906,"22":4544},"upgradeStep":1}}}, +{"id":103769,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1874,1249,0,833,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":773,"7":773,"22":1351}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":802,"7":802,"22":1366},"upgradeStep":1}}}, +{"id":103770,"name":"Drape of the Omega","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1874,1249,0,0,0,791,0,0,0,857,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"7":734,"11":796,"22":1351}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"7":762,"11":826,"22":1366},"upgradeStep":1}}}, +{"id":103771,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,1874,1169,874,0,0,0,0,0,0,636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":807,"11":589}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":840,"11":612},"upgradeStep":1}}}, +{"id":103772,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,1874,1169,841,0,695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":776,"6":643}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":808,"6":669},"upgradeStep":1}}}, +{"id":103773,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,1874,1169,805,0,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":743,"7":699}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":774,"7":727},"upgradeStep":1}}}, +{"id":103774,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,1874,1169,0,0,0,781,0,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"7":720,"11":737}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"7":750,"11":766},"upgradeStep":1}}}, +{"id":103775,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,881,1441,0,0,522,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"1":811,"2":1337,"5":481,"6":597}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"1":846,"2":1388,"5":501,"6":622},"upgradeStep":1}}}, +{"id":103776,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,2161,3362,0,0,1097,0,1664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":19650,"weaponDamageMax":29475,"weaponSpeed":3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"553":{"randPropPoints":3956,"weaponDamageMin":18238,"weaponDamageMax":27358,"stats":{"1":2000,"2":3121,"5":1015,"7":1541}},"557":{"randPropPoints":4106,"weaponDamageMin":18931,"weaponDamageMax":28397,"stats":{"1":2079,"2":3239,"5":1055,"7":1601},"upgradeStep":1}}}, +{"id":103777,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1585,2498,0,0,953,0,1143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"5":881,"7":1059,"22":2365}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"5":916,"7":1100,"22":2391},"upgradeStep":1}}}, +{"id":103778,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1585,2498,0,0,0,915,0,1158,0,0,0,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"6":847,"8":1072,"22":2365}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"6":881,"8":1114,"22":2391},"upgradeStep":1}}}, +{"id":103779,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1585,2498,0,0,0,0,1078,0,0,0,1062,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"553":{"randPropPoints":2939,"stats":{"1":1466,"2":2319,"7":998,"11":982,"22":2365}},"557":{"randPropPoints":3050,"stats":{"1":1524,"2":2406,"7":1037,"11":1021,"22":2391},"upgradeStep":1}}}, +{"id":103780,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1505,2498,0,0,0,1201,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":1111,"8":687,"22":2992}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1155,"8":717,"22":3024},"upgradeStep":1}}}, +{"id":103781,"name":"Keengrip Arrowpullers","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1505,2498,0,0,878,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":284,"7":400,"22":2230}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":808,"7":1041,"22":2992}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":842,"7":1083,"22":3024},"upgradeStep":1}}}, +{"id":103782,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1505,2498,0,0,0,0,1169,0,0,0,779,0,0,0,0,0,0,0,0,0,0,3057,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":1079,"11":719,"22":2992}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":1123,"11":749,"22":3024},"upgradeStep":1}}}, +{"id":103783,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,0,975,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"7":899,"11":981,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"7":936,"11":1021,"22":4957},"upgradeStep":1}}}, +{"id":103784,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1505,0,2498,0,0,0,1171,0,0,0,0,789,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"6":1081,"11":727,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"6":1125,"11":757,"22":4957},"upgradeStep":1}}}, +{"id":103785,"name":"Tusks of Mannoroth","icon":"inv_shoulder_plate_garrosh_d_01","type":3,"armorType":4,"stats":[1425,0,2498,0,0,0,1131,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":409,"2":974,"6":368,"11":219,"22":3654}},"553":{"randPropPoints":2939,"stats":{"0":1306,"2":2319,"6":1041,"11":687,"22":4903}},"557":{"randPropPoints":3050,"stats":{"0":1364,"2":2406,"6":1085,"11":717,"22":4957},"upgradeStep":1}}}, +{"id":103787,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1505,0,2498,0,0,1111,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":1025,"7":824,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":1067,"7":858,"22":3717},"upgradeStep":1}}}, +{"id":103788,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1505,0,2498,0,0,0,0,1030,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"7":950,"11":950,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"7":989,"11":989,"22":3717},"upgradeStep":1}}}, +{"id":103790,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,0,1047,991,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"9":965,"10":915,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"9":1005,"10":952,"22":4131},"upgradeStep":1}}}, +{"id":103791,"name":"Gauntlets of Discarded Time","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,799,0,1172,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":253,"10":418,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"8":735,"10":1084,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"8":766,"10":1127,"22":4131},"upgradeStep":1}}}, +{"id":103792,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,0,0,1046,1014,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"10":966,"11":934,"22":4086}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"10":1005,"11":973,"22":4131},"upgradeStep":1}}}, +{"id":103793,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[1249,0,1874,0,0,711,905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":659,"6":840}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":685,"6":872},"upgradeStep":1}}}, +{"id":103794,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[1169,0,1874,0,0,0,0,817,769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"7":757,"8":709}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"7":786,"8":738},"upgradeStep":1}}}, +{"id":103796,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[1169,0,1874,0,0,0,817,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"6":754,"7":681}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"6":785,"7":707},"upgradeStep":1}}}, +{"id":103798,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[1169,0,1874,0,0,863,0,0,0,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"5":797,"11":607}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"5":829,"11":631},"upgradeStep":1}}}, +{"id":103799,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1249,0,1874,0,0,0,0,0,751,0,881,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"8":697,"10":818,"22":1351}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"8":723,"10":849,"22":1366},"upgradeStep":1}}}, +{"id":103800,"name":"Turtleshell Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1249,0,1874,0,0,857,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309,"22":1007}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":796,"11":734,"22":1351}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":826,"11":762,"22":1366},"upgradeStep":1}}}, +{"id":103801,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1874,1169,898,0,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":831,"7":565}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":864,"7":588},"upgradeStep":1}}}, +{"id":103802,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3362,2001,0,1015,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"5":934,"7":1461,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"5":974,"7":1521,"22":2732},"upgradeStep":1}}}, +{"id":103803,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3362,2001,0,0,1300,1419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1198,"7":1308,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1248,"7":1362,"22":2732},"upgradeStep":1}}}, +{"id":103804,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2498,1585,0,795,0,1233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"5":735,"7":1143,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"5":765,"7":1187,"22":1879},"upgradeStep":1}}}, +{"id":103805,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2498,1585,0,0,0,1079,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"7":998,"11":973,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"7":1037,"11":1010,"22":1879},"upgradeStep":1}}}, +{"id":103806,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,2498,1585,0,0,926,0,0,0,0,1159,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"6":856,"11":1073,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"6":890,"11":1115,"22":1879},"upgradeStep":1}}}, +{"id":103807,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2498,1505,0,815,0,0,0,0,0,1156,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":751,"11":1068,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":782,"11":1111,"22":2049},"upgradeStep":1}}}, +{"id":103808,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2498,1505,0,763,0,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":703,"7":1095,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":733,"7":1139,"22":2049},"upgradeStep":1}}}, +{"id":103809,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1874,1249,869,0,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":807,"11":715,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":838,"11":743,"22":1195},"upgradeStep":1}}}, +{"id":103810,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1874,1249,0,0,833,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"6":773,"7":773,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"6":802,"7":802,"22":1195},"upgradeStep":1}}}, +{"id":103811,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1874,1249,881,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":818,"7":697,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":849,"7":723,"22":1195},"upgradeStep":1}}}, +{"id":103812,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2498,1585,1062,0,0,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":982,"7":998,"22":3291}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":1021,"7":1037,"22":3327},"upgradeStep":1}}}, +{"id":103813,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2498,1585,980,0,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":906,"6":1044,"22":3291}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":942,"6":1085,"22":3327},"upgradeStep":1}}}, +{"id":103814,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2498,1585,0,0,0,1143,0,0,0,942,0,0,0,0,0,0,0,0,0,0,3363,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"7":1057,"11":872,"22":3291}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"7":1099,"11":906,"22":3327},"upgradeStep":1}}}, +{"id":103815,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2498,1505,1002,0,1047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":925,"6":966,"22":3590}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":962,"6":1005,"22":3629},"upgradeStep":1}}}, +{"id":103816,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2498,1505,1095,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1011,"7":849,"22":3590}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1052,"7":884,"22":3629},"upgradeStep":1}}}, +{"id":103817,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2498,1505,1031,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":950,"7":941,"22":4086}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":989,"7":978,"22":4131},"upgradeStep":1}}}, +{"id":103818,"name":"Romy's Reliable Grips","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2498,1505,773,0,1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":243,"6":424,"22":3045}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":711,"6":1097,"22":4086}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":741,"6":1141,"22":4131},"upgradeStep":1}}}, +{"id":103819,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,2498,1505,0,0,0,883,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,4175,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"7":815,"11":1024,"22":4086}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"7":849,"11":1066,"22":4131},"upgradeStep":1}}}, +{"id":103820,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3362,2001,1015,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":934,"6":1461,"22":5311}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":974,"6":1521,"22":5370},"upgradeStep":1}}}, +{"id":103821,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3362,2001,1397,0,0,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1288,"7":1232,"22":5311}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1341,"7":1283,"22":5370},"upgradeStep":1}}}, +{"id":103822,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,1874,1249,0,893,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":829,"6":678}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":861,"6":704},"upgradeStep":1}}}, +{"id":103823,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,1874,1249,0,833,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":773,"7":773}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":802,"7":802},"upgradeStep":1}}}, +{"id":103824,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,1874,1249,0,771,0,0,0,0,0,869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":715,"11":807}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":743,"11":838},"upgradeStep":1}}}, +{"id":103825,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Wildcard - Int Hit Ring","icon":"inv_misc_ring_mop19","type":11,"stats":[0,0,1874,1249,0,0,938,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":366,"7":254}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"6":871,"7":605}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"6":904,"7":628},"upgradeStep":1}}}, +{"id":103826,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[881,0,1441,0,0,647,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"5":597,"11":481}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"5":622,"11":501},"upgradeStep":1}}}, +{"id":103827,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,881,1441,0,0,538,0,0,0,0,0,638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":7651,"weaponDamageMax":14209,"weaponSpeed":1.8,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"553":{"randPropPoints":1695,"weaponDamageMin":7101,"weaponDamageMax":13189,"stats":{"1":811,"2":1337,"5":496,"11":589}},"557":{"randPropPoints":1760,"weaponDamageMin":7371,"weaponDamageMax":13690,"stats":{"1":846,"2":1388,"5":516,"11":613},"upgradeStep":1}}}, +{"id":103828,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,881,1441,0,0,0,0,601,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":7651,"weaponDamageMax":14209,"weaponSpeed":1.8,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"553":{"randPropPoints":1695,"weaponDamageMin":7101,"weaponDamageMax":13189,"stats":{"1":811,"2":1337,"7":554,"11":554}},"557":{"randPropPoints":1760,"weaponDamageMin":7371,"weaponDamageMax":13690,"stats":{"1":846,"2":1388,"7":577,"11":577},"upgradeStep":1}}}, +{"id":103829,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,881,1441,0,0,0,629,0,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":7651,"weaponDamageMax":14209,"weaponSpeed":1.8,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"553":{"randPropPoints":1695,"weaponDamageMin":7101,"weaponDamageMax":13189,"stats":{"1":811,"2":1337,"6":581,"8":510}},"557":{"randPropPoints":1760,"weaponDamageMin":7371,"weaponDamageMax":13690,"stats":{"1":846,"2":1388,"6":604,"8":531},"upgradeStep":1}}}, +{"id":103830,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,851,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":783,"6":1056,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":817,"6":1098,"22":2174},"upgradeStep":1}}}, +{"id":103831,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,1031,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":950,"11":941,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":989,"11":978,"22":2174},"upgradeStep":1}}}, +{"id":103832,"name":"Siid's Silent Stranglers","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1505,2498,0,0,0,1140,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":386,"7":285,"22":1602}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":1052,"7":767,"22":2150}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1095,"7":798,"22":2174},"upgradeStep":1}}}, +{"id":103834,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,1050,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":966,"7":1443,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1007,"7":1502,"22":3478},"upgradeStep":1}}}, +{"id":103835,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2001,3362,0,0,0,0,1015,0,0,0,1584,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":934,"11":1461,"22":3440}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":974,"11":1521,"22":3478},"upgradeStep":1}}}, +{"id":103836,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1505,2498,0,0,0,0,1030,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":950,"11":950,"22":3590}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":989,"11":989,"22":3629},"upgradeStep":1}}}, +{"id":103837,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1505,2498,0,0,0,1141,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,3669,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":1054,"11":775,"22":3590}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1097,"11":807,"22":3629},"upgradeStep":1}}}, +{"id":103838,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2081,3362,0,0,0,1480,0,0,0,0,1303,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1368,"11":1204,"22":4188}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1423,"11":1253,"22":4234},"upgradeStep":1}}}, +{"id":103839,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,0,1374,1374,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"9":1267,"10":1267,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"9":1320,"10":1320,"22":5370},"upgradeStep":1}}}, +{"id":103840,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,1015,0,1584,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"8":934,"10":1461,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"8":974,"10":1521,"22":5370},"upgradeStep":1}}}, +{"id":103841,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,1169,1874,0,0,885,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"553":{"randPropPoints":2204,"stats":{"1":1079,"2":1739,"5":817,"6":571}},"557":{"randPropPoints":2288,"stats":{"1":1123,"2":1805,"5":851,"6":594},"upgradeStep":1}}}, +{"id":103842,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,1169,1874,0,0,0,0,0,781,0,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"553":{"randPropPoints":2204,"stats":{"1":1079,"2":1739,"8":720,"11":737}},"557":{"randPropPoints":2288,"stats":{"1":1123,"2":1805,"8":750,"11":766},"upgradeStep":1}}}, +{"id":103843,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,1169,1874,0,0,0,829,0,0,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"553":{"randPropPoints":2204,"stats":{"1":1079,"2":1739,"6":765,"11":662}},"557":{"randPropPoints":2288,"stats":{"1":1123,"2":1805,"6":797,"11":688},"upgradeStep":1}}}, +{"id":103844,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,1169,1874,0,0,0,0,775,0,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"553":{"randPropPoints":2204,"stats":{"1":1079,"2":1739,"7":718,"11":732}},"557":{"randPropPoints":2288,"stats":{"1":1123,"2":1805,"7":746,"11":762},"upgradeStep":1}}}, +{"id":103845,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1249,0,1874,0,0,0,0,916,0,0,0,691,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"7":850,"11":641,"22":1351}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"7":883,"11":666,"22":1366},"upgradeStep":1}}}, +{"id":103846,"name":"Aeth's Swiftcinder Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1249,0,1874,0,0,0,771,0,869,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"8":339,"22":1007}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"6":715,"8":807,"22":1351}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"6":743,"8":838,"22":1366},"upgradeStep":1}}}, +{"id":103847,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1874,1169,667,0,0,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,21428,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":614,"11":813,"22":20969}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":640,"11":845,"22":21198},"upgradeStep":1}}}, +{"id":103848,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1874,1169,769,0,0,817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21428,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"4":709,"7":757,"22":20969}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"4":738,"7":786,"22":21198},"upgradeStep":1}}}, +{"id":103849,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1874,1249,0,869,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":807,"11":715,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":838,"11":743,"22":1195},"upgradeStep":1}}}, +{"id":103850,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,1874,1249,0,916,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":850,"6":641,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":883,"6":666,"22":1195},"upgradeStep":1}}}, +{"id":103851,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1874,1249,0,0,0,845,0,0,0,812,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"7":784,"11":753,"22":1183}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"7":814,"11":782,"22":1195},"upgradeStep":1}}}, +{"id":103852,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,878,1127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":808,"6":1041,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":842,"6":1083,"22":1708},"upgradeStep":1}}}, +{"id":103853,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,0,1031,1018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":950,"7":941,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":989,"7":978,"22":1708},"upgradeStep":1}}}, +{"id":103854,"name":"Kalaena's Arcane Handwraps","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,747,0,1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":233,"7":430,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":687,"7":1111,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":717,"7":1155,"22":1708},"upgradeStep":1}}}, +{"id":103855,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2498,1505,1126,0,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1040,"6":799,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1082,"6":833,"22":1537},"upgradeStep":1}}}, +{"id":103856,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2498,1505,975,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":899,"11":981,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":936,"11":1021,"22":1537},"upgradeStep":1}}}, +{"id":103857,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2498,1505,0,0,975,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,2072,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":899,"11":981,"22":2027}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":936,"11":1021,"22":2049},"upgradeStep":1}}}, +{"id":103858,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2498,1505,0,0,1031,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":950,"11":941,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":989,"11":978,"22":2174},"upgradeStep":1}}}, +{"id":103859,"name":"Crimson Gauntlets of Death","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2498,1505,1079,0,937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":995,"6":865,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1036,"6":900,"22":2174},"upgradeStep":1}}}, +{"id":103860,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2498,1505,799,0,0,0,0,0,0,1172,0,0,0,0,0,0,0,0,0,0,2197,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":735,"11":1084,"22":2150}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":766,"11":1127,"22":2174},"upgradeStep":1}}}, +{"id":103861,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1874,1249,938,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":871,"6":605,"22":2094}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":904,"6":628,"22":2117},"upgradeStep":1}}}, +{"id":103862,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1874,1249,833,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":773,"7":773,"22":2094}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":802,"7":802,"22":2117},"upgradeStep":1}}}, +{"id":103863,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1874,1249,857,0,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":796,"11":734,"22":2094}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":826,"11":762,"22":2117},"upgradeStep":1}}}, +{"id":103864,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1874,1249,893,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":829,"6":678,"22":2860}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":861,"6":704,"22":2891},"upgradeStep":1}}}, +{"id":103865,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1874,1249,869,0,0,0,0,0,0,771,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":807,"11":715,"22":2860}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":838,"11":743,"22":2891},"upgradeStep":1}}}, +{"id":103866,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1874,1249,833,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":773,"7":773,"22":2860}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":802,"7":802,"22":2891},"upgradeStep":1}}}, +{"id":103867,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,1874,1249,0,791,0,0,0,0,0,857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":734,"11":796}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":762,"11":826},"upgradeStep":1}}}, +{"id":103868,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,1874,1249,0,949,0,633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"5":881,"7":587}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"5":915,"7":610},"upgradeStep":1}}}, +{"id":103869,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[2161,0,3362,0,0,0,1367,1496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":23580,"weaponDamageMax":35370,"weaponSpeed":3.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"553":{"randPropPoints":3956,"weaponDamageMin":21886,"weaponDamageMax":32829,"stats":{"0":2000,"2":3121,"6":1268,"7":1384}},"557":{"randPropPoints":4106,"weaponDamageMin":22717,"weaponDamageMax":34076,"stats":{"0":2079,"2":3239,"6":1317,"7":1439},"upgradeStep":1}}}, +{"id":103870,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1169,0,1874,0,0,0,0,0,0,769,817,0,0,0,0,0,0,0,0,0,0,0,21428,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"9":709,"10":757,"22":20969}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"9":738,"10":786,"22":21198},"upgradeStep":1}}}, +{"id":103871,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[1169,0,1874,0,0,0,0,0,0,0,647,889,0,0,0,0,0,0,0,0,0,0,21428,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"10":595,"11":824,"22":20969}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"10":621,"11":856,"22":21198},"upgradeStep":1}}}, +{"id":103872,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[1169,0,1874,0,0,0,0,0,829,0,0,715,0,0,0,0,0,0,0,0,0,0,21428,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"8":765,"11":662,"22":20969}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"8":797,"11":688,"22":21198},"upgradeStep":1}}}, +{"id":103873,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,3362,2161,0,0,1393,0,0,0,0,1501,0,0,12838,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":10807,"weaponDamageMax":16211,"weaponSpeed":3.3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"553":{"randPropPoints":3956,"weaponDamageMin":10031,"weaponDamageMax":15047,"stats":{"2":3121,"3":2000,"6":1288,"11":1392,"14":11916}},"557":{"randPropPoints":4106,"weaponDamageMin":10412,"weaponDamageMax":15618,"stats":{"2":3239,"3":2079,"6":1339,"11":1445,"14":12368},"upgradeStep":1}}}, +{"id":103874,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,3362,2161,0,0,1580,1224,0,0,0,0,0,0,12838,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":10807,"weaponDamageMax":16211,"weaponSpeed":3.3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"553":{"randPropPoints":3956,"weaponDamageMin":10031,"weaponDamageMax":15047,"stats":{"2":3121,"3":2000,"6":1462,"7":1135,"14":11916}},"557":{"randPropPoints":4106,"weaponDamageMin":10412,"weaponDamageMax":15618,"stats":{"2":3239,"3":2079,"6":1520,"7":1178,"14":12368},"upgradeStep":1}}}, +{"id":103875,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,3362,2161,1688,0,0,0,0,0,0,1071,0,0,12838,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":10807,"weaponDamageMax":16211,"weaponSpeed":3.3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"553":{"randPropPoints":3956,"weaponDamageMin":10031,"weaponDamageMax":15047,"stats":{"2":3121,"3":2000,"4":1565,"11":990,"14":11916}},"557":{"randPropPoints":4106,"weaponDamageMin":10412,"weaponDamageMax":15618,"stats":{"2":3239,"3":2079,"4":1625,"11":1030,"14":12368},"upgradeStep":1}}}, +{"id":103876,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3362,2001,1374,0,0,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1267,"11":1267,"22":2795}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1320,"11":1320,"22":2826},"upgradeStep":1}}}, +{"id":103877,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3362,2001,0,0,1337,0,0,0,0,1397,0,0,0,0,0,0,0,0,0,0,2856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1232,"11":1288,"22":2795}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1283,"11":1341,"22":2826},"upgradeStep":1}}}, +{"id":103878,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1585,0,2498,0,0,1062,1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"5":982,"6":998,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"5":1021,"6":1037,"22":4544},"upgradeStep":1}}}, +{"id":103879,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1585,0,2498,0,0,0,0,0,1188,0,0,863,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"8":1100,"11":799,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"8":1143,"11":830,"22":4544},"upgradeStep":1}}}, +{"id":103880,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1585,0,2498,0,0,0,1079,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4593,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"553":{"randPropPoints":2939,"stats":{"0":1466,"2":2319,"6":998,"7":973,"22":4494}},"557":{"randPropPoints":3050,"stats":{"0":1524,"2":2406,"6":1037,"7":1010,"22":4544},"upgradeStep":1}}}, +{"id":103881,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,1874,1249,845,0,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":784,"7":753}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":814,"7":782},"upgradeStep":1}}}, +{"id":103882,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,1874,1249,905,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":840,"11":659}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":872,"11":685},"upgradeStep":1}}}, +{"id":103883,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[1249,0,1874,0,0,938,0,0,0,652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":871,"9":605}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":904,"9":628},"upgradeStep":1}}}, +{"id":103884,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[1249,0,1874,0,0,0,0,0,833,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"8":773,"10":773}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"8":802,"10":802},"upgradeStep":1}}}, +{"id":103885,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,2161,3362,0,0,0,0,1095,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":17193,"weaponDamageMax":31931,"weaponSpeed":3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"553":{"randPropPoints":3956,"weaponDamageMin":15958,"weaponDamageMax":29638,"stats":{"1":2000,"2":3121,"7":1014,"11":1541}},"557":{"randPropPoints":4106,"weaponDamageMin":16564,"weaponDamageMax":30763,"stats":{"1":2079,"2":3239,"7":1054,"11":1601},"upgradeStep":1}}}, +{"id":103886,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,2161,3362,0,0,0,1563,1271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":17193,"weaponDamageMax":31931,"weaponSpeed":3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"553":{"randPropPoints":3956,"weaponDamageMin":15958,"weaponDamageMax":29638,"stats":{"1":2000,"2":3121,"6":1448,"7":1177}},"557":{"randPropPoints":4106,"weaponDamageMin":16564,"weaponDamageMax":30763,"stats":{"1":2079,"2":3239,"6":1504,"7":1223},"upgradeStep":1}}}, +{"id":103887,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1505,2498,0,0,1095,0,921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":1011,"7":849,"22":2693}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":1052,"7":884,"22":2722},"upgradeStep":1}}}, +{"id":103888,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1505,2498,0,0,0,948,1079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":874,"7":996,"22":2693}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":910,"7":1037,"22":2722},"upgradeStep":1}}}, +{"id":103889,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1249,1874,0,0,893,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"5":829,"7":678,"22":2094}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"5":861,"7":704,"22":2117},"upgradeStep":1}}}, +{"id":103890,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,1249,1874,0,0,0,711,0,905,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"6":659,"8":840,"22":2094}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"6":685,"8":872,"22":2117},"upgradeStep":1}}}, +{"id":103891,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1249,1874,0,0,0,0,812,0,0,0,845,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"7":753,"11":784,"22":2094}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"7":782,"11":814,"22":2117},"upgradeStep":1}}}, +{"id":103892,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1288,"11":1232,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1341,"11":1283,"22":5370},"upgradeStep":1}}}, +{"id":103893,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2001,0,3362,0,0,0,1504,1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5428,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"6":1387,"7":1064,"22":5311}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"6":1444,"7":1109,"22":5370},"upgradeStep":1}}}, +{"id":103894,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[1169,0,1874,0,0,0,0,0,0,796,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"9":737,"10":720}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"9":766,"10":750},"upgradeStep":1}}}, +{"id":103895,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[1169,0,1874,0,0,687,0,0,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"5":633,"9":802}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"5":659,"9":833},"upgradeStep":1}}}, +{"id":103896,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[1169,0,1874,0,0,0,0,0,829,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"8":765,"11":662}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"8":797,"11":688},"upgradeStep":1}}}, +{"id":103897,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Wildcard - Str Tank Ring","icon":"inv_misc_ring_mop10","type":11,"stats":[1169,0,1874,0,0,0,0,0,0,0,841,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":319,"11":245}},"553":{"randPropPoints":2204,"stats":{"0":1079,"2":1739,"10":780,"11":670}},"557":{"randPropPoints":2288,"stats":{"0":1123,"2":1805,"10":810,"11":698},"upgradeStep":1}}}, +{"id":103898,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2498,1505,0,1111,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":1025,"11":824,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":1067,"11":858,"22":1537},"upgradeStep":1}}}, +{"id":103899,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,2498,1505,0,1126,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"5":1040,"6":799,"22":1520}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"5":1082,"6":833,"22":1537},"upgradeStep":1}}}, +{"id":103900,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3362,2001,0,1015,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"5":934,"7":1461,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"5":974,"7":1521,"22":2220},"upgradeStep":1}}}, +{"id":103901,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3362,2001,0,0,0,1263,0,0,0,1440,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"7":1164,"11":1328,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"7":1213,"11":1383,"22":2220},"upgradeStep":1}}}, +{"id":103902,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2498,1585,1173,0,0,889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":1086,"7":823,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":1129,"7":855,"22":1879},"upgradeStep":1}}}, +{"id":103903,"name":"5.4 Raid - Normal - Siege of Orgrimmar - Wildcard - Cloth Int Spirit Boot","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2498,1585,899,0,1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":322,"6":439,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":831,"6":1088,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":865,"6":1130,"22":1879},"upgradeStep":1}}}, +{"id":103904,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2498,1585,953,0,0,0,0,0,0,1143,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1466,"4":881,"11":1059,"22":1858}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1524,"4":916,"11":1100,"22":1879},"upgradeStep":1}}}, +{"id":103905,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2498,1505,1126,0,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1040,"6":799,"22":1935}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1082,"6":833,"22":1956},"upgradeStep":1}}}, +{"id":103906,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,2498,1505,975,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":899,"11":981,"22":1935}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":936,"11":1021,"22":1956},"upgradeStep":1}}}, +{"id":103907,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3362,2081,1544,0,1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1427,"6":1104,"22":5720}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1484,"6":1149,"22":5783},"upgradeStep":1}}}, +{"id":103908,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,881,1441,0,0,0,610,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"1":811,"2":1337,"6":563,"7":539}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"1":846,"2":1388,"6":586,"7":562},"upgradeStep":1}}}, +{"id":103909,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1249,1874,0,0,0,711,0,905,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"6":659,"8":840,"22":1505}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"6":685,"8":872,"22":1522},"upgradeStep":1}}}, +{"id":103910,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,1249,1874,0,0,0,0,845,0,0,0,812,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"7":784,"11":753,"22":1505}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"7":814,"11":782,"22":1522},"upgradeStep":1}}}, +{"id":103911,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,1249,1874,0,0,893,0,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"5":829,"7":678,"22":1505}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"5":861,"7":704,"22":1522},"upgradeStep":1}}}, +{"id":103912,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,1141,0,0,0,0,841,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":1054,"11":775,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1097,"11":807,"22":2608},"upgradeStep":1}}}, +{"id":103913,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1505,2498,0,0,0,0,1030,0,0,0,1030,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"7":950,"11":950,"22":2580}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"7":989,"11":989,"22":2608},"upgradeStep":1}}}, +{"id":103914,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,0,1374,1374,0,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"9":1267,"10":1267,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"9":1320,"10":1320,"22":6609},"upgradeStep":1}}}, +{"id":103915,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2001,0,3362,0,0,0,0,0,0,0,1155,1504,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"10":1064,"11":1387,"22":6537}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"10":1109,"11":1444,"22":6609},"upgradeStep":1}}}, +{"id":103916,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[1249,0,1874,0,0,857,0,0,0,0,0,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"5":796,"11":734}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"5":826,"11":762},"upgradeStep":1}}}, +{"id":103917,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[1249,0,1874,0,0,0,881,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"553":{"randPropPoints":2204,"stats":{"0":1159,"2":1739,"6":818,"11":697}},"557":{"randPropPoints":2288,"stats":{"0":1203,"2":1805,"6":849,"11":723},"upgradeStep":1}}}, +{"id":103918,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1874,1169,0,0,793,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"6":733,"7":634}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"6":762,"7":659},"upgradeStep":1}}}, +{"id":103919,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,1874,1169,0,671,0,865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"5":619,"7":800}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"5":645,"7":832},"upgradeStep":1}}}, +{"id":103920,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1874,1169,0,0,0,772,0,0,0,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1079,"7":713,"11":744}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1123,"7":742,"11":774},"upgradeStep":1}}}, +{"id":103921,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3362,2081,0,0,0,1437,0,0,0,1377,0,0,0,0,0,0,0,0,0,0,2417,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"7":1328,"11":1272,"22":2365}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"7":1381,"11":1323,"22":2391},"upgradeStep":1}}}, +{"id":103922,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3362,2001,1462,0,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1348,"6":1130,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1404,"6":1178,"22":2732},"upgradeStep":1}}}, +{"id":103923,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3362,2001,1504,0,0,1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1387,"7":1064,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1444,"7":1109,"22":2732},"upgradeStep":1}}}, +{"id":103924,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2498,1505,1079,0,948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":996,"6":874,"22":2580}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1037,"6":910,"22":2608},"upgradeStep":1}}}, +{"id":103925,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2498,1505,1030,0,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2637,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":950,"7":950,"22":2580}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":989,"7":989,"22":2608},"upgradeStep":1}}}, +{"id":103926,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[881,0,1441,0,0,0,0,0,638,0,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"8":589,"10":496}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"8":613,"10":516},"upgradeStep":1}}}, +{"id":103927,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1505,2498,0,0,1095,0,921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"5":1011,"7":849,"22":1935}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"5":1052,"7":884,"22":1956},"upgradeStep":1}}}, +{"id":103928,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1505,2498,0,0,0,1079,948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"553":{"randPropPoints":2939,"stats":{"1":1386,"2":2319,"6":996,"7":874,"22":1935}},"557":{"randPropPoints":3050,"stats":{"1":1444,"2":2406,"6":1037,"7":910,"22":1956},"upgradeStep":1}}}, +{"id":103929,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2081,3362,0,0,0,1437,0,0,0,0,1377,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1328,"11":1272,"22":3010}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1381,"11":1323,"22":3043},"upgradeStep":1}}}, +{"id":103930,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2001,3362,0,0,0,0,1191,0,0,0,1483,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"7":1097,"11":1368,"22":3889}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"7":1143,"11":1424,"22":3932},"upgradeStep":1}}}, +{"id":103931,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2001,3362,0,0,0,1440,0,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"553":{"randPropPoints":3956,"stats":{"1":1840,"2":3121,"6":1328,"11":1164,"22":3889}},"557":{"randPropPoints":4106,"stats":{"1":1919,"2":3239,"6":1383,"11":1213,"22":3932},"upgradeStep":1}}}, +{"id":103932,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1505,0,2498,0,0,1079,0,0,0,0,0,948,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"5":996,"11":874,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"5":1037,"11":910,"22":3717},"upgradeStep":1}}}, +{"id":103933,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1505,0,2498,0,0,0,0,0,0,0,841,1141,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"553":{"randPropPoints":2939,"stats":{"0":1386,"2":2319,"10":775,"11":1054,"22":3677}},"557":{"randPropPoints":3050,"stats":{"0":1444,"2":2406,"10":807,"11":1097,"22":3717},"upgradeStep":1}}}, +{"id":103934,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1249,1874,0,0,0,0,731,0,0,0,893,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"7":678,"11":829,"22":1351}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"7":704,"11":861,"22":1366},"upgradeStep":1}}}, +{"id":103935,"name":"Cape of the Alpha","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1249,1874,0,0,845,812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":330,"6":317,"22":1007}},"553":{"randPropPoints":2204,"stats":{"1":1159,"2":1739,"5":784,"6":753,"22":1351}},"557":{"randPropPoints":2288,"stats":{"1":1203,"2":1805,"5":814,"6":782,"22":1366},"upgradeStep":1}}}, +{"id":103936,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1441,881,462,0,0,0,0,0,0,682,0,0,12841,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":5100,"weaponDamageMax":9473,"weaponSpeed":2.4,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"553":{"randPropPoints":1695,"weaponDamageMin":4734,"weaponDamageMax":8792,"stats":{"2":1337,"3":811,"4":425,"11":630,"14":11913}},"557":{"randPropPoints":1760,"weaponDamageMin":4914,"weaponDamageMax":9126,"stats":{"2":1388,"3":846,"4":443,"11":655,"14":12370},"upgradeStep":1}}}, +{"id":103937,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1441,881,610,0,0,584,0,0,0,0,0,0,12841,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":5100,"weaponDamageMax":9473,"weaponSpeed":2.4,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"553":{"randPropPoints":1695,"weaponDamageMin":4734,"weaponDamageMax":8792,"stats":{"2":1337,"3":811,"4":563,"7":539,"14":11913}},"557":{"randPropPoints":1760,"weaponDamageMin":4914,"weaponDamageMax":9126,"stats":{"2":1388,"3":846,"4":586,"7":562,"14":12370},"upgradeStep":1}}}, +{"id":103938,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3362,2001,1504,0,0,1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1387,"7":1064,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1444,"7":1109,"22":2220},"upgradeStep":1}}}, +{"id":103939,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3362,2001,1397,0,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2244,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1288,"6":1232,"22":2196}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1341,"6":1283,"22":2220},"upgradeStep":1}}}, +{"id":103940,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2498,1505,1126,0,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1040,"6":799,"22":2693}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1082,"6":833,"22":2722},"upgradeStep":1}}}, +{"id":103941,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2498,1505,975,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,2752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":899,"11":981,"22":2693}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":936,"11":1021,"22":2722},"upgradeStep":1}}}, +{"id":103942,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3362,2081,1544,0,1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4280,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1427,"6":1104,"22":4188}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1484,"6":1149,"22":4234},"upgradeStep":1}}}, +{"id":103943,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2498,1505,1030,0,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":950,"6":950,"22":4903}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":989,"6":989,"22":4957},"upgradeStep":1}}}, +{"id":103944,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2498,1505,1141,0,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5010,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1054,"7":775,"22":4903}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1097,"7":807,"22":4957},"upgradeStep":1}}}, +{"id":103945,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[2161,0,3362,0,0,0,0,0,1071,0,0,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":23580,"weaponDamageMax":35370,"weaponSpeed":3.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"553":{"randPropPoints":3956,"weaponDamageMin":21886,"weaponDamageMax":32829,"stats":{"0":2000,"2":3121,"8":990,"11":1565}},"557":{"randPropPoints":4106,"weaponDamageMin":22717,"weaponDamageMax":34076,"stats":{"0":2079,"2":3239,"8":1030,"11":1625},"upgradeStep":1}}}, +{"id":103946,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1441,881,0,0,638,538,0,0,0,0,0,0,12841,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":4675,"weaponDamageMax":8683,"weaponSpeed":2.2,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"553":{"randPropPoints":1695,"weaponDamageMin":4339,"weaponDamageMax":8060,"stats":{"2":1337,"3":811,"6":589,"7":496,"14":11913}},"557":{"randPropPoints":1760,"weaponDamageMin":4504,"weaponDamageMax":8366,"stats":{"2":1388,"3":846,"6":613,"7":516,"14":12370},"upgradeStep":1}}}, +{"id":103947,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,3362,2001,1397,0,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1288,"6":1232,"22":3440}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1341,"6":1283,"22":3478},"upgradeStep":1}}}, +{"id":103948,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3362,2001,1120,0,0,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3516,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1031,"7":1406,"22":3440}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1074,"7":1464,"22":3478},"upgradeStep":1}}}, +{"id":103949,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3362,2001,1015,0,1584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":934,"6":1461,"22":3889}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":974,"6":1521,"22":3932},"upgradeStep":1}}}, +{"id":103950,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3362,2001,1397,0,0,0,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,3974,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1288,"11":1232,"22":3889}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1341,"11":1283,"22":3932},"upgradeStep":1}}}, +{"id":103951,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[881,0,1441,0,0,629,553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"5":581,"6":510}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"5":604,"6":531},"upgradeStep":1}}}, +{"id":103952,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,2161,3362,0,0,0,0,1430,0,0,0,1478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":23580,"weaponDamageMax":35370,"weaponSpeed":3.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"553":{"randPropPoints":3956,"weaponDamageMin":21886,"weaponDamageMax":32829,"stats":{"1":2000,"2":3121,"7":1323,"11":1371}},"557":{"randPropPoints":4106,"weaponDamageMin":22717,"weaponDamageMax":34076,"stats":{"1":2079,"2":3239,"7":1376,"11":1424},"upgradeStep":1}}}, +{"id":103953,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,2161,3362,0,0,0,1417,0,0,0,0,1477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":17193,"weaponDamageMax":31931,"weaponSpeed":3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"553":{"randPropPoints":3956,"weaponDamageMin":15958,"weaponDamageMax":29638,"stats":{"1":2000,"2":3121,"6":1312,"11":1368}},"557":{"randPropPoints":4106,"weaponDamageMin":16564,"weaponDamageMax":30763,"stats":{"1":2079,"2":3239,"6":1363,"11":1421},"upgradeStep":1}}}, +{"id":103954,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2001,0,3362,0,0,0,1397,0,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"6":1288,"11":1232,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"6":1341,"11":1283,"22":5783},"upgradeStep":1}}}, +{"id":103955,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3362,2001,1120,0,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1031,"6":1406,"22":4787}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1074,"6":1464,"22":4839},"upgradeStep":1}}}, +{"id":103956,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3362,2001,1504,0,0,1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1387,"7":1064,"22":4787}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1444,"7":1109,"22":4839},"upgradeStep":1}}}, +{"id":103957,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3362,2001,1483,0,1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1368,"6":1097,"22":6537}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1424,"6":1143,"22":6609},"upgradeStep":1}}}, +{"id":103958,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3362,2001,1440,0,0,0,0,0,0,1263,0,0,0,0,0,0,0,0,0,0,6680,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"4":1328,"11":1164,"22":6537}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"4":1383,"11":1213,"22":6609},"upgradeStep":1}}}, +{"id":103959,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1874,1249,905,0,0,0,0,0,0,711,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":840,"11":659,"22":1351}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":872,"11":685,"22":1366},"upgradeStep":1}}}, +{"id":103960,"name":"Brave Niunai's Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1874,1249,833,0,0,833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2375,"ilvl":553,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1007}},"553":{"randPropPoints":2204,"stats":{"2":1739,"3":1159,"4":773,"7":773,"22":1351}},"557":{"randPropPoints":2288,"stats":{"2":1805,"3":1203,"4":802,"7":802,"22":1366},"upgradeStep":1}}}, +{"id":103961,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,881,1441,0,0,0,0,620,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"1":811,"2":1337,"7":572,"8":525}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"1":846,"2":1388,"7":595,"8":546},"upgradeStep":1}}}, +{"id":103962,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2081,3362,0,0,0,1544,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"6":1427,"11":1104,"22":4787}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"6":1484,"11":1149,"22":4839},"upgradeStep":1}}}, +{"id":103963,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2081,3362,0,0,0,0,1624,0,0,0,1055,0,0,0,0,0,0,0,0,0,0,4892,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"553":{"randPropPoints":3956,"stats":{"1":1920,"2":3121,"7":1501,"11":974,"22":4787}},"557":{"randPropPoints":4106,"stats":{"1":1999,"2":3239,"7":1561,"11":1014,"22":4839},"upgradeStep":1}}}, +{"id":103964,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1441,881,0,0,610,0,0,0,0,584,0,0,12841,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":4038,"weaponDamageMax":7499,"weaponSpeed":1.9,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"553":{"randPropPoints":1695,"weaponDamageMin":3748,"weaponDamageMax":6961,"stats":{"2":1337,"3":811,"6":563,"11":539,"14":11913}},"557":{"randPropPoints":1760,"weaponDamageMin":3890,"weaponDamageMax":7225,"stats":{"2":1388,"3":846,"6":586,"11":562,"14":12370},"upgradeStep":1}}}, +{"id":103965,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2498,1505,1126,0,867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":1040,"6":799,"22":3677}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":1082,"6":833,"22":3717},"upgradeStep":1}}}, +{"id":103966,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2498,1505,975,0,0,0,0,0,0,1063,0,0,0,0,0,0,0,0,0,0,3758,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"4":899,"11":981,"22":3677}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"4":936,"11":1021,"22":3717},"upgradeStep":1}}}, +{"id":103967,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,3362,2081,1544,0,1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3076,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1920,"4":1427,"6":1104,"22":3010}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1999,"4":1484,"6":1149,"22":3043},"upgradeStep":1}}}, +{"id":103968,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[2161,0,3362,0,0,0,0,1283,0,0,0,1566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":23580,"weaponDamageMax":35370,"weaponSpeed":3.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"553":{"randPropPoints":3956,"weaponDamageMin":21886,"weaponDamageMax":32829,"stats":{"0":2000,"2":3121,"7":1186,"11":1452}},"557":{"randPropPoints":4106,"weaponDamageMin":22717,"weaponDamageMax":34076,"stats":{"0":2079,"2":3239,"7":1234,"11":1508},"upgradeStep":1}}}, +{"id":103969,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[881,0,1441,0,0,0,0,610,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"7":563,"11":539}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"7":586,"11":562},"upgradeStep":1}}}, +{"id":103970,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2498,1505,0,0,1014,0,0,0,0,1046,0,0,0,0,0,0,0,0,0,0,1726,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3166,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"553":{"randPropPoints":2939,"stats":{"2":2319,"3":1386,"6":934,"11":966,"22":1689}},"557":{"randPropPoints":3050,"stats":{"2":2406,"3":1444,"6":973,"11":1005,"22":1708},"upgradeStep":1}}}, +{"id":103971,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,881,1441,0,0,0,601,0,0,0,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"1":811,"2":1337,"6":554,"11":554}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"1":846,"2":1388,"6":577,"11":577},"upgradeStep":1}}}, +{"id":103972,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[881,0,1441,0,0,0,601,0,601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":11051,"weaponDamageMax":20525,"weaponSpeed":2.6,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"553":{"randPropPoints":1695,"weaponDamageMin":10257,"weaponDamageMax":19050,"stats":{"0":811,"2":1337,"6":554,"8":554}},"557":{"randPropPoints":1760,"weaponDamageMin":10647,"weaponDamageMax":19774,"stats":{"0":846,"2":1388,"6":577,"8":577},"upgradeStep":1}}}, +{"id":103973,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1441,881,0,610,584,0,0,0,0,0,0,0,12841,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1827,"weaponDamageMin":3825,"weaponDamageMax":7105,"weaponSpeed":1.8,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"553":{"randPropPoints":1695,"weaponDamageMin":3550,"weaponDamageMax":6594,"stats":{"2":1337,"3":811,"5":563,"6":539,"14":11913}},"557":{"randPropPoints":1760,"weaponDamageMin":3685,"weaponDamageMax":6845,"stats":{"2":1388,"3":846,"5":586,"6":562,"14":12370},"upgradeStep":1}}}, +{"id":103974,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,2161,3362,0,0,0,1566,0,0,0,0,1283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"weaponDamageMin":21615,"weaponDamageMax":32423,"weaponSpeed":3.3,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"553":{"randPropPoints":3956,"weaponDamageMin":20062,"weaponDamageMax":30094,"stats":{"1":2000,"2":3121,"6":1452,"11":1186}},"557":{"randPropPoints":4106,"weaponDamageMin":20824,"weaponDamageMax":31236,"stats":{"1":2079,"2":3239,"6":1508,"11":1234},"upgradeStep":1}}}, +{"id":103982,"name":"Burden of Eternity","icon":"spell_monk_envelopingmist","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":535,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"535":{},"539":{"upgradeStep":1}}}, +{"id":103986,"name":"Discipline of Xuen","icon":"inv_pet_tigergodcub","type":12,"stats":[0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":823}},"535":{"randPropPoints":2485,"stats":{"1":1657}},"539":{"randPropPoints":2579,"stats":{"1":1719},"upgradeStep":1}}}, +{"id":103987,"name":"Yu'lon's Bite","icon":"inv_pet_jadeserpentpet","type":12,"stats":[0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"535":{"randPropPoints":2485,"stats":{"3":1657}},"539":{"randPropPoints":2579,"stats":{"3":1719},"upgradeStep":1}}}, +{"id":103988,"name":"Contemplation of Chi-Ji","icon":"inv_pet_cranegod","type":12,"stats":[0,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"535":{"randPropPoints":2485,"stats":{"3":1657}},"539":{"randPropPoints":2579,"stats":{"3":1719},"upgradeStep":1}}}, +{"id":103989,"name":"Alacrity of Xuen","icon":"inv_pet_tigergodcub","type":12,"stats":[1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"535":{"randPropPoints":2485,"stats":{"0":1657}},"539":{"randPropPoints":2579,"stats":{"0":1719},"upgradeStep":1}}}, +{"id":103990,"name":"Resolve of Niuzao","icon":"inv_pet_yakgod","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2677,"ilvl":535,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"535":{"randPropPoints":2485,"stats":{"11":1657}},"539":{"randPropPoints":2579,"stats":{"11":1719},"upgradeStep":1}}}, +{"id":104298,"name":"Ordon Death Chime","icon":"inv_misc_necklace_firelands_2","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":104308,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,3362,2001,0,0,1374,0,0,0,0,1374,0,0,0,0,0,0,0,0,0,0,2762,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"553":{"randPropPoints":3956,"stats":{"2":3121,"3":1840,"6":1267,"11":1267,"22":2703}},"557":{"randPropPoints":4106,"stats":{"2":3239,"3":1919,"6":1320,"11":1320,"22":2732},"upgradeStep":1}}}, +{"id":104311,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2001,0,3362,0,0,0,0,1397,0,0,0,1337,0,0,0,0,0,0,0,0,0,0,5845,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4262,"ilvl":553,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"553":{"randPropPoints":3956,"stats":{"0":1840,"2":3121,"7":1288,"11":1232,"22":5720}},"557":{"randPropPoints":4106,"stats":{"0":1919,"2":3239,"7":1341,"11":1283,"22":5783},"upgradeStep":1}}}, +{"id":104313,"name":"Golden Moss","icon":"inv_misc_necklacea6","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2006,"ilvl":496,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"504":{"randPropPoints":1862,"upgradeStep":1}}}, +{"id":104321,"name":"Captain Zvezdan's Lost Leg","icon":"inv_mace_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1862,"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"496":{"randPropPoints":1728},"500":{"randPropPoints":1793,"upgradeStep":1}}}, +{"id":104345,"name":"Timeless Lavalliere","icon":"inv_jewelry_necklace_70","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":104347,"name":"Timeless Curio","icon":"inv_misc_pvp_trinket","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":496,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"496":{},"500":{"upgradeStep":1}}}, +{"id":104399,"name":"Hellscream's Warbow","icon":"inv_bow_1h_pvphorde_a_01_upres","type":14,"rangedWeaponType":1,"stats":[0,2442,3903,0,0,0,0,1238,0,0,0,1897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4947,"weaponDamageMin":19957,"weaponDamageMax":37065,"weaponSpeed":3,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":715,"2":1312,"7":363,"11":585}},"569":{"randPropPoints":4592,"weaponDamageMin":18524,"weaponDamageMax":34402,"stats":{"1":2255,"2":3623,"7":1143,"11":1755}},"573":{"randPropPoints":4766,"weaponDamageMin":19227,"weaponDamageMax":35709,"stats":{"1":2346,"2":3760,"7":1190,"11":1825},"upgradeStep":1}}}, +{"id":104400,"name":"Hellscream's Razor","icon":"inv_knife_1h_pvphorde_a_01","type":13,"weaponType":2,"handType":2,"stats":[0,955,1672,0,0,0,696,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2120,"weaponDamageMin":8881,"weaponDamageMax":16494,"weaponSpeed":1.8,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":215,"2":562,"6":181,"7":151}},"569":{"randPropPoints":1968,"weaponDamageMin":8243,"weaponDamageMax":15309,"stats":{"1":875,"2":1553,"6":640,"7":559}},"573":{"randPropPoints":2043,"weaponDamageMin":8556,"weaponDamageMax":15890,"stats":{"1":914,"2":1612,"6":668,"7":583},"upgradeStep":1}}}, +{"id":104401,"name":"Hellscream's Doomblade","icon":"inv_sword_1h_pvphorde_a_01_upres","type":13,"weaponType":9,"handType":2,"stats":[955,0,1672,0,0,0,0,0,717,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2120,"weaponDamageMin":12828,"weaponDamageMax":23824,"weaponSpeed":2.6,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":215,"2":562,"8":188,"11":139}},"569":{"randPropPoints":1968,"weaponDamageMin":11906,"weaponDamageMax":22113,"stats":{"0":875,"2":1553,"8":660,"11":525}},"573":{"randPropPoints":2043,"weaponDamageMin":12359,"weaponDamageMax":22953,"stats":{"0":914,"2":1612,"8":688,"11":548},"upgradeStep":1}}}, +{"id":104402,"name":"Hellscream's Warmace","icon":"inv_hammer_1h_pvphorde_a_01red_upres","type":13,"weaponType":4,"handType":2,"stats":[0,0,1672,955,502,0,0,0,0,0,0,758,0,0,14900,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2120,"weaponDamageMin":5920,"weaponDamageMax":10996,"weaponSpeed":2.4,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":215,"4":116,"11":202,"14":5011}},"569":{"randPropPoints":1968,"weaponDamageMin":5495,"weaponDamageMax":10206,"stats":{"2":1553,"3":875,"4":460,"11":698,"14":13831}},"573":{"randPropPoints":2043,"weaponDamageMin":5704,"weaponDamageMax":10594,"stats":{"2":1612,"3":914,"4":481,"11":727,"14":14359},"upgradeStep":1}}}, +{"id":104403,"name":"Hellscream's Pig Sticker","icon":"inv_polearm_2h_pvphorde_a_01_upres","type":13,"weaponType":6,"handType":4,"stats":[0,2442,3903,0,0,0,0,1606,0,0,0,1702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4947,"weaponDamageMin":27370,"weaponDamageMax":41056,"weaponSpeed":3.6,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":715,"2":1312,"7":455,"11":551}},"569":{"randPropPoints":4592,"weaponDamageMin":25404,"weaponDamageMax":38107,"stats":{"1":2255,"2":3623,"7":1482,"11":1578}},"573":{"randPropPoints":4766,"weaponDamageMin":26369,"weaponDamageMax":39554,"stats":{"1":2346,"2":3760,"7":1543,"11":1639},"upgradeStep":1}}}, +{"id":104404,"name":"Hellscream's Cleaver","icon":"inv_axe_1h_pvphorde_d_01_upres","type":13,"weaponType":1,"handType":2,"stats":[0,955,1672,0,0,0,663,0,0,0,0,663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2120,"weaponDamageMin":12828,"weaponDamageMax":23824,"weaponSpeed":2.6,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":215,"2":562,"6":170,"11":170}},"569":{"randPropPoints":1968,"weaponDamageMin":11906,"weaponDamageMax":22113,"stats":{"1":875,"2":1553,"6":610,"11":610}},"573":{"randPropPoints":2043,"weaponDamageMin":12359,"weaponDamageMax":22953,"stats":{"1":914,"2":1612,"6":636,"11":636},"upgradeStep":1}}}, +{"id":104405,"name":"Hellscream's Decapitator","icon":"inv_axe_2h_pvphorde_a_01blackhigh","type":13,"weaponType":1,"handType":4,"stats":[2442,0,3903,0,0,0,1490,1733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4947,"weaponDamageMin":27370,"weaponDamageMax":41056,"weaponSpeed":3.6,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":715,"2":1312,"6":480,"7":497}},"569":{"randPropPoints":4592,"weaponDamageMin":25404,"weaponDamageMax":38107,"stats":{"0":2255,"2":3623,"6":1380,"7":1599}},"573":{"randPropPoints":4766,"weaponDamageMin":26369,"weaponDamageMax":39554,"stats":{"0":2346,"2":3760,"6":1434,"7":1664},"upgradeStep":1}}}, +{"id":104406,"name":"Hellscream's War Staff","icon":"inv_stave_2h_pvphorde_a_01_upres","type":13,"weaponType":8,"handType":4,"stats":[0,0,3903,2442,0,0,1563,0,0,0,0,1729,0,0,14901,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4947,"weaponDamageMin":12545,"weaponDamageMax":18818,"weaponSpeed":3.3,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":715,"6":440,"11":560,"14":5009}},"569":{"randPropPoints":4592,"weaponDamageMin":11643,"weaponDamageMax":17466,"stats":{"2":3623,"3":2255,"6":1442,"11":1602,"14":13832}},"573":{"randPropPoints":4766,"weaponDamageMin":12086,"weaponDamageMax":18129,"stats":{"2":3760,"3":2346,"6":1501,"11":1664,"14":14356},"upgradeStep":1}}}, +{"id":104407,"name":"Hellscream's Shield Wall","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[1289,0,2174,0,0,0,0,0,0,934,0,838,0,0,0,0,0,0,0,0,0,0,22347,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2756,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":328,"2":731,"9":293,"11":197,"22":15628}},"569":{"randPropPoints":2558,"stats":{"0":1185,"2":2018,"9":865,"11":769,"22":21887}},"573":{"randPropPoints":2655,"stats":{"0":1236,"2":2095,"9":899,"11":803,"22":22117},"upgradeStep":1}}}, +{"id":104408,"name":"Hellscream's Tome of Destruction","icon":"inv_misc_1h_book_c_02red_upres","type":13,"weaponType":5,"handType":3,"stats":[0,0,2174,1449,0,0,966,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2756,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":283}},"569":{"randPropPoints":2558,"stats":{"2":2018,"3":1345,"6":897,"7":782}},"573":{"randPropPoints":2655,"stats":{"2":2095,"3":1396,"6":931,"7":811},"upgradeStep":1}}}, +{"id":104409,"name":"Hellscream's Barrier","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[0,0,2174,1449,966,0,0,966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2756,"ilvl":569,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":15628}},"569":{"randPropPoints":2558,"stats":{"2":2018,"3":1345,"4":897,"7":897,"22":21887}},"573":{"randPropPoints":2655,"stats":{"2":2095,"3":1396,"4":931,"7":931,"22":22117},"upgradeStep":1}}}, +{"id":104411,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1409,2114,0,0,0,0,940,0,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"7":872,"11":872}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"7":905,"11":905},"upgradeStep":1}}}, +{"id":104412,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,2450,3795,0,0,0,1859,0,1266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":24398,"weaponDamageMax":36598,"weaponSpeed":3.3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"566":{"randPropPoints":4465,"weaponDamageMin":22645,"weaponDamageMax":33969,"stats":{"1":2268,"2":3522,"6":1721,"8":1173}},"570":{"randPropPoints":4635,"weaponDamageMin":23505,"weaponDamageMax":35259,"stats":{"1":2358,"2":3657,"6":1789,"8":1219},"upgradeStep":1}}}, +{"id":104413,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,1641,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1515,"7":1329,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1577,"7":1385,"22":2925},"upgradeStep":1}}}, +{"id":104414,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1800,2820,0,0,1051,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"5":972,"6":1216,"22":3408}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"5":1011,"6":1263,"22":3444},"upgradeStep":1}}}, +{"id":104415,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1409,0,2114,0,0,1047,0,758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":972,"7":703,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":1008,"7":730,"22":2993},"upgradeStep":1}}}, +{"id":104416,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,1280,1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"6":1179,"7":1603,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"6":1228,"7":1668,"22":6842},"upgradeStep":1}}}, +{"id":104417,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,1158,0,0,0,1176,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"7":1070,"11":1085,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"7":1113,"11":1129,"22":4276},"upgradeStep":1}}}, +{"id":104418,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1800,0,2820,0,0,1082,0,0,0,0,1294,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"566":{"randPropPoints":3317,"stats":{"0":1664,"2":2617,"5":1001,"10":1199,"22":4654}},"570":{"randPropPoints":3443,"stats":{"0":1731,"2":2716,"5":1040,"10":1246,"22":4704},"upgradeStep":1}}}, +{"id":104419,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1409,0,2114,0,0,0,0,0,0,940,940,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"9":872,"10":872,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"9":905,"10":905,"22":2993},"upgradeStep":1}}}, +{"id":104420,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,0,872,1349,0,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"9":804,"10":1246,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"9":837,"10":1296,"22":5131},"upgradeStep":1}}}, +{"id":104421,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[1004,0,1627,0,0,0,0,0,0,683,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"9":631,"10":631}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"9":656,"10":656},"upgradeStep":1}}}, +{"id":104422,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2820,1720,1230,0,1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1135,"6":985,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1182,"6":1024,"22":1768},"upgradeStep":1}}}, +{"id":104423,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2820,1720,1282,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"6":912,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"6":950,"22":2122},"upgradeStep":1}}}, +{"id":104424,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3795,2290,0,0,1567,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1445,"11":1445,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1505,"11":1505,"22":2298},"upgradeStep":1}}}, +{"id":104425,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,2114,1409,0,940,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":872,"7":872,"22":1400}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":905,"7":905,"22":1414},"upgradeStep":1}}}, +{"id":104426,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104427,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,2114,1329,995,0,0,0,0,0,0,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":919,"11":667}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":956,"11":693},"upgradeStep":1}}}, +{"id":104428,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2820,1800,1205,0,0,1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1115,"7":1131,"22":2449}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1159,"7":1175,"22":2475},"upgradeStep":1}}}, +{"id":104429,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,2114,1409,714,0,1071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":663,"6":994,"22":1559}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":688,"6":1032,"22":1575},"upgradeStep":1}}}, +{"id":104430,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2820,1720,1157,0,1189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1067,"6":1099,"22":3098}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1111,"6":1143,"22":3131},"upgradeStep":1}}}, +{"id":104431,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2820,1720,1111,0,0,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1025,"11":1117,"22":3808}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1067,"11":1163,"22":3848},"upgradeStep":1}}}, +{"id":104432,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2820,1800,1205,0,0,1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1115,"7":1131,"22":4654}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1159,"7":1175,"22":4704},"upgradeStep":1}}}, +{"id":104433,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,2450,3795,0,0,1243,0,1883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":22180,"weaponDamageMax":33271,"weaponSpeed":3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"566":{"randPropPoints":4465,"weaponDamageMin":20587,"weaponDamageMax":30881,"stats":{"1":2268,"2":3522,"5":1151,"7":1745}},"570":{"randPropPoints":4635,"weaponDamageMin":21368,"weaponDamageMax":32053,"stats":{"1":2358,"2":3657,"5":1196,"7":1813},"upgradeStep":1}}}, +{"id":104434,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,1004,1627,0,0,594,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"1":927,"2":1510,"5":549,"6":680}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"1":964,"2":1567,"5":571,"6":707},"upgradeStep":1}}}, +{"id":104435,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1800,2820,0,0,1082,0,1294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"5":1001,"7":1199,"22":2449}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"5":1040,"7":1246,"22":2475},"upgradeStep":1}}}, +{"id":104436,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1720,2820,0,0,0,1365,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1262,"8":788,"22":3098}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1312,"8":821,"22":3131},"upgradeStep":1}}}, +{"id":104437,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1720,0,2820,0,0,1264,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":1168,"7":940,"22":3808}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":1215,"7":979,"22":3848},"upgradeStep":1}}}, +{"id":104438,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,0,1111,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"7":1025,"11":1117,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"7":1067,"11":1163,"22":5131},"upgradeStep":1}}}, +{"id":104439,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,0,1194,1127,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"9":1101,"10":1041,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"9":1147,"10":1083,"22":4276},"upgradeStep":1}}}, +{"id":104440,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[1409,0,2114,0,0,802,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":744,"6":948}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":773,"6":984},"upgradeStep":1}}}, +{"id":104441,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1409,0,2114,0,0,0,0,0,847,0,995,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"8":786,"10":923,"22":1400}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"8":816,"10":958,"22":1414},"upgradeStep":1}}}, +{"id":104442,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,3574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"566":{"randPropPoints":3317,"stats":{"2":3317}},"570":{"randPropPoints":3443,"stats":{"2":3443},"upgradeStep":1}}}, +{"id":104443,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2820,1800,0,904,0,1397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1965,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"5":836,"7":1294,"22":1924}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"5":869,"7":1344,"22":1945},"upgradeStep":1}}}, +{"id":104444,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3795,2290,0,1162,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"5":1069,"7":1665,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"5":1115,"7":1733,"22":2829},"upgradeStep":1}}}, +{"id":104445,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2820,1720,0,930,0,0,0,0,0,1316,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":858,"11":1215,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":893,"11":1264,"22":2122},"upgradeStep":1}}}, +{"id":104446,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2114,1409,981,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":911,"11":808,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":945,"11":838,"22":1238},"upgradeStep":1}}}, +{"id":104447,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,2114,1409,0,1008,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":936,"6":765}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":971,"6":794},"upgradeStep":1}}}, +{"id":104448,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,2114,1329,1019,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":943,"7":643}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":980,"7":669},"upgradeStep":1}}}, +{"id":104449,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2820,1720,1228,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1134,"6":997,"22":2672}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1180,"6":1038,"22":2700},"upgradeStep":1}}}, +{"id":104450,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2820,1800,1205,0,0,1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1115,"7":1131,"22":3408}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1159,"7":1175,"22":3444},"upgradeStep":1}}}, +{"id":104451,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2820,1720,1142,0,1192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1054,"6":1101,"22":3718}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1097,"6":1145,"22":3757},"upgradeStep":1}}}, +{"id":104452,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2820,1720,1176,0,0,1158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1085,"7":1070,"22":4231}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1129,"7":1113,"22":4276},"upgradeStep":1}}}, +{"id":104453,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3795,2290,1162,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1069,"6":1665,"22":5501}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1115,"6":1733,"22":5559},"upgradeStep":1}}}, +{"id":104454,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,1004,1627,0,0,612,0,0,0,0,0,725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":8636,"weaponDamageMax":16039,"weaponSpeed":1.8,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"566":{"randPropPoints":1914,"weaponDamageMin":8016,"weaponDamageMax":14887,"stats":{"1":927,"2":1510,"5":565,"11":670}},"570":{"randPropPoints":1986,"weaponDamageMin":8320,"weaponDamageMax":15452,"stats":{"1":964,"2":1567,"5":588,"11":697},"upgradeStep":1}}}, +{"id":104455,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,1329,2114,0,0,1007,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"566":{"randPropPoints":2488,"stats":{"1":1228,"2":1963,"5":930,"6":647}},"570":{"randPropPoints":2582,"stats":{"1":1278,"2":2037,"5":968,"6":672},"upgradeStep":1}}}, +{"id":104456,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,1201,1781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1106,"7":1644,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1152,"7":1711,"22":3600},"upgradeStep":1}}}, +{"id":104457,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,973,1298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"5":896,"6":1200,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"5":934,"6":1248,"22":2250},"upgradeStep":1}}}, +{"id":104458,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2370,3795,0,0,0,1681,0,0,0,0,1482,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1555,"11":1369,"22":4338}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1617,"11":1425,"22":4383},"upgradeStep":1}}}, +{"id":104459,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1720,2820,0,0,0,0,1173,0,0,0,1173,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1083,"11":1083,"22":3718}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1127,"11":1127,"22":3757},"upgradeStep":1}}}, +{"id":104460,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1409,0,2114,0,0,0,916,0,0,0,0,954,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"6":850,"11":885,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"6":883,"11":919,"22":2993},"upgradeStep":1}}}, +{"id":104461,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,0,1567,1567,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"9":1445,"10":1445,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"9":1505,"10":1505,"22":5559},"upgradeStep":1}}}, +{"id":104462,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1409,0,2114,0,0,0,0,1034,0,0,0,780,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"7":960,"11":724,"22":1400}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"7":996,"11":751,"22":1414},"upgradeStep":1}}}, +{"id":104463,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104464,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[1004,0,1627,0,0,736,0,0,0,0,0,594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"5":680,"11":549}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"5":707,"11":571},"upgradeStep":1}}}, +{"id":104465,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,2114,1409,0,981,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":911,"11":808,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":945,"11":838,"22":1238},"upgradeStep":1}}}, +{"id":104466,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,1003,1280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":924,"6":1184,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":963,"6":1231,"22":1768},"upgradeStep":1}}}, +{"id":104467,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2820,1720,1282,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"6":912,"22":1575}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"6":950,"22":1591},"upgradeStep":1}}}, +{"id":104468,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2820,1720,0,0,1111,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1025,"11":1117,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1067,"11":1163,"22":2122},"upgradeStep":1}}}, +{"id":104469,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,2114,1409,0,893,0,0,0,0,0,967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":829,"11":898}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":860,"11":932},"upgradeStep":1}}}, +{"id":104470,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,2114,1329,760,0,0,0,0,0,0,992,0,0,0,0,0,0,0,0,0,0,22175,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":701,"11":920,"22":21715}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":730,"11":955,"22":21945},"upgradeStep":1}}}, +{"id":104471,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,2820,1800,1112,0,1276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1029,"6":1182,"22":2449}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1070,"6":1228,"22":2475},"upgradeStep":1}}}, +{"id":104472,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2820,1720,0,0,1176,0,0,0,0,1158,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1085,"11":1070,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1129,"11":1113,"22":2250},"upgradeStep":1}}}, +{"id":104473,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2114,1409,1059,0,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":983,"6":683,"22":2169}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":1020,"6":709,"22":2192},"upgradeStep":1}}}, +{"id":104474,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3795,2370,1753,0,1359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4429,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1621,"6":1256,"22":4338}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1686,"6":1307,"22":4383},"upgradeStep":1}}}, +{"id":104475,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2114,1409,1008,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":936,"6":765,"22":2962}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":971,"6":794,"22":2993},"upgradeStep":1}}}, +{"id":104476,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104477,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,2114,1409,954,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":885,"7":850}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":919,"7":883},"upgradeStep":1}}}, +{"id":104478,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104479,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,3795,2450,0,0,1580,0,0,0,0,1696,0,0,14491,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":12199,"weaponDamageMax":18299,"weaponSpeed":3.3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"566":{"randPropPoints":4465,"weaponDamageMin":11322,"weaponDamageMax":16984,"stats":{"2":3522,"3":2268,"6":1462,"11":1573,"14":13449}},"570":{"randPropPoints":4635,"weaponDamageMin":11752,"weaponDamageMax":17629,"stats":{"2":3657,"3":2358,"6":1520,"11":1634,"14":13961},"upgradeStep":1}}}, +{"id":104480,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3795,2290,1567,0,0,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1445,"11":1445,"22":2895}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1505,"11":1505,"22":2925},"upgradeStep":1}}}, +{"id":104481,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3795,2290,1592,0,0,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1469,"7":1406,"22":5501}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1530,"7":1464,"22":5559},"upgradeStep":1}}}, +{"id":104482,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1800,0,2820,0,0,1205,1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"566":{"randPropPoints":3317,"stats":{"0":1664,"2":2617,"5":1115,"6":1131,"22":4654}},"570":{"randPropPoints":3443,"stats":{"0":1731,"2":2716,"5":1159,"6":1175,"22":4704},"upgradeStep":1}}}, +{"id":104483,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[2450,0,3795,0,0,0,1546,1697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":26616,"weaponDamageMax":39925,"weaponSpeed":3.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"566":{"randPropPoints":4465,"weaponDamageMin":24704,"weaponDamageMax":37057,"stats":{"0":2268,"2":3522,"6":1433,"7":1571}},"570":{"randPropPoints":4635,"weaponDamageMin":25642,"weaponDamageMax":38464,"stats":{"0":2358,"2":3657,"6":1489,"7":1633},"upgradeStep":1}}}, +{"id":104484,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[1409,0,2114,0,0,1059,0,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":983,"9":683}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":1020,"9":709},"upgradeStep":1}}}, +{"id":104485,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1329,0,2114,0,0,0,0,0,0,876,924,0,0,0,0,0,0,0,0,0,0,0,22175,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"9":808,"10":856,"22":21715}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"9":841,"10":889,"22":21945},"upgradeStep":1}}}, +{"id":104486,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,2450,3795,0,0,0,0,1242,0,0,0,1883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":19407,"weaponDamageMax":36043,"weaponSpeed":3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"566":{"randPropPoints":4465,"weaponDamageMin":18013,"weaponDamageMax":33454,"stats":{"1":2268,"2":3522,"7":1149,"11":1745}},"570":{"randPropPoints":4635,"weaponDamageMin":18697,"weaponDamageMax":34725,"stats":{"1":2358,"2":3657,"7":1195,"11":1813},"upgradeStep":1}}}, +{"id":104487,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,1329,2114,0,0,0,0,0,890,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"566":{"randPropPoints":2488,"stats":{"1":1228,"2":1963,"8":821,"11":834}},"570":{"randPropPoints":2582,"stats":{"1":1278,"2":2037,"8":855,"11":867},"upgradeStep":1}}}, +{"id":104488,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1800,2820,0,0,0,1037,0,1314,0,0,0,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"6":960,"8":1216,"22":2449}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"6":998,"8":1264,"22":2475},"upgradeStep":1}}}, +{"id":104489,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,1176,0,0,0,0,1158,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1085,"11":1070,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1129,"11":1113,"22":2250},"upgradeStep":1}}}, +{"id":104490,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1720,2820,0,0,1246,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2847,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"5":1151,"7":969,"22":2788}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"5":1198,"7":1008,"22":2818},"upgradeStep":1}}}, +{"id":104491,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1409,2114,0,0,1008,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"5":936,"7":765,"22":2169}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"5":971,"7":794,"22":2192},"upgradeStep":1}}}, +{"id":104492,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1469,"11":1406,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1530,"11":1464,"22":5559},"upgradeStep":1}}}, +{"id":104493,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[1409,0,2114,0,0,1021,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":948,"9":744,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":984,"9":773,"22":2993},"upgradeStep":1}}}, +{"id":104494,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,989,0,0,0,0,0,1282,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":912,"11":1184,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":950,"11":1232,"22":5131},"upgradeStep":1}}}, +{"id":104495,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104496,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[1329,0,2114,0,0,0,0,0,0,900,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"9":834,"10":821}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"9":867,"10":855},"upgradeStep":1}}}, +{"id":104497,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2820,1800,0,0,0,1224,0,0,0,1190,0,0,0,0,0,0,0,0,0,0,1965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"7":1133,"11":1102,"22":1924}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"7":1177,"11":1145,"22":1945},"upgradeStep":1}}}, +{"id":104498,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,2114,1409,0,1034,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":960,"6":724,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":996,"6":751,"22":1238},"upgradeStep":1}}}, +{"id":104499,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3795,2290,0,1162,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"5":1069,"7":1665,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"5":1115,"7":1733,"22":2298},"upgradeStep":1}}}, +{"id":104500,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2820,1800,1331,0,0,1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1232,"7":933,"22":1924}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1280,"7":970,"22":1945},"upgradeStep":1}}}, +{"id":104501,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2820,1720,1173,0,0,1173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1083,"7":1083,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1127,"7":1127,"22":2122},"upgradeStep":1}}}, +{"id":104502,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,2114,1409,0,940,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":872,"7":872}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":905,"7":905},"upgradeStep":1}}}, +{"id":104503,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,3795,2450,1907,0,0,0,0,0,0,1218,0,0,14491,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":12199,"weaponDamageMax":18299,"weaponSpeed":3.3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"566":{"randPropPoints":4465,"weaponDamageMin":11322,"weaponDamageMax":16984,"stats":{"2":3522,"3":2268,"4":1769,"11":1125,"14":13449}},"570":{"randPropPoints":4635,"weaponDamageMin":11752,"weaponDamageMax":17629,"stats":{"2":3657,"3":2358,"4":1837,"11":1171,"14":13961},"upgradeStep":1}}}, +{"id":104504,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2820,1720,1282,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"6":912,"22":2004}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"6":950,"22":2025},"upgradeStep":1}}}, +{"id":104505,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2820,1720,0,0,1266,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1168,"11":928,"22":3098}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1216,"11":966,"22":3131},"upgradeStep":1}}}, +{"id":104506,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2114,1409,981,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":911,"11":808,"22":2962}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":945,"11":838,"22":2993},"upgradeStep":1}}}, +{"id":104507,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3795,2370,1753,0,1359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1621,"6":1256,"22":5924}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1686,"6":1307,"22":5986},"upgradeStep":1}}}, +{"id":104508,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,1004,1627,0,0,0,694,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"1":927,"2":1510,"6":641,"7":614}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"1":964,"2":1567,"6":667,"7":639},"upgradeStep":1}}}, +{"id":104509,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1409,2114,0,0,0,802,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"6":744,"8":948,"22":1559}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"6":773,"8":984,"22":1575},"upgradeStep":1}}}, +{"id":104510,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,1299,0,0,0,0,960,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1200,"11":885,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1248,"11":922,"22":2700},"upgradeStep":1}}}, +{"id":104511,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1800,2820,0,0,0,0,0,1174,0,0,1240,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"8":1086,"11":1149,"22":3408}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"8":1129,"11":1193,"22":3444},"upgradeStep":1}}}, +{"id":104512,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1720,2820,0,0,0,0,1333,0,0,0,888,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1230,"11":820,"22":3098}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1280,"11":853,"22":3131},"upgradeStep":1}}}, +{"id":104513,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1720,0,2820,0,0,0,0,1173,0,0,0,1173,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"7":1083,"11":1083,"22":3808}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"7":1127,"11":1127,"22":3848},"upgradeStep":1}}}, +{"id":104514,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1409,0,2114,0,0,0,780,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"6":724,"8":960,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"6":751,"8":996,"22":2993},"upgradeStep":1}}}, +{"id":104515,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,1248,1035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"6":1152,"7":956,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"6":1199,"7":995,"22":4276},"upgradeStep":1}}}, +{"id":104516,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,0,1567,1567,0,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"9":1445,"10":1445,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"9":1505,"10":1505,"22":6842},"upgradeStep":1}}}, +{"id":104517,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[1409,0,2114,0,0,967,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":898,"11":829}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":932,"11":860},"upgradeStep":1}}}, +{"id":104518,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,2382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"566":{"randPropPoints":3317,"stats":{"9":2211}},"570":{"randPropPoints":3443,"stats":{"9":2295},"upgradeStep":1}}}, +{"id":104519,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2820,1720,0,1264,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":1168,"11":940,"22":1575}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":1215,"11":979,"22":1591},"upgradeStep":1}}}, +{"id":104520,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3795,2370,0,0,0,1632,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"7":1509,"11":1446,"22":2449}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"7":1570,"11":1504,"22":2475},"upgradeStep":1}}}, +{"id":104521,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2114,1409,995,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":923,"7":786,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":958,"7":816,"22":1238},"upgradeStep":1}}}, +{"id":104522,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2820,1720,1283,0,0,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"7":901,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"7":938,"22":1768},"upgradeStep":1}}}, +{"id":104523,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3795,2290,1665,0,1401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1537,"6":1291,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1600,"6":1345,"22":2829},"upgradeStep":1}}}, +{"id":104524,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,2114,1329,917,0,0,854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":847,"7":792}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":881,"7":822},"upgradeStep":1}}}, +{"id":104525,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,2114,1329,0,0,900,779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"6":832,"7":720}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"6":865,"7":749},"upgradeStep":1}}}, +{"id":104526,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,2114,1409,1021,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":948,"11":744,"22":1559}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":984,"11":773,"22":1575},"upgradeStep":1}}}, +{"id":104527,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2820,1800,1112,0,1276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1029,"6":1182,"22":3408}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1070,"6":1228,"22":3444},"upgradeStep":1}}}, +{"id":104528,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2114,1409,967,0,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":898,"11":829,"22":2169}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":932,"11":860,"22":2192},"upgradeStep":1}}}, +{"id":104529,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2820,1800,1112,0,1276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1029,"6":1182,"22":4654}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1070,"6":1228,"22":4704},"upgradeStep":1}}}, +{"id":104530,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1409,2114,0,0,0,0,824,0,0,0,1008,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"7":765,"11":936,"22":1400}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"7":794,"11":971,"22":1414},"upgradeStep":1}}}, +{"id":104531,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104532,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1720,2820,0,0,1246,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2046,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"5":1151,"7":969,"22":2004}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"5":1198,"7":1008,"22":2025},"upgradeStep":1}}}, +{"id":104533,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2370,3795,0,0,0,1632,0,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1509,"11":1446,"22":3117}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1570,"11":1504,"22":3150},"upgradeStep":1}}}, +{"id":104534,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2290,3795,0,0,0,0,1360,0,0,0,1689,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1253,"11":1559,"22":4028}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1306,"11":1623,"22":4070},"upgradeStep":1}}}, +{"id":104535,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1800,0,2820,0,0,0,1224,1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"566":{"randPropPoints":3317,"stats":{"0":1664,"2":2617,"6":1133,"7":1102,"22":4654}},"570":{"randPropPoints":3443,"stats":{"0":1731,"2":2716,"6":1177,"7":1145,"22":4704},"upgradeStep":1}}}, +{"id":104536,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,1665,0,0,0,0,1401,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"6":1537,"11":1291,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"6":1600,"11":1345,"22":6842},"upgradeStep":1}}}, +{"id":104537,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1720,0,2820,0,0,1228,0,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"5":1134,"11":997,"22":3808}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"5":1180,"11":1038,"22":3848},"upgradeStep":1}}}, +{"id":104538,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[1329,0,2114,0,0,983,0,0,0,0,0,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"5":908,"11":687}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"5":944,"11":714},"upgradeStep":1}}}, +{"id":104539,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[1004,0,1627,0,0,0,0,0,725,0,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"8":670,"10":565}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"8":697,"10":588},"upgradeStep":1}}}, +{"id":104540,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[1329,0,2114,0,0,783,0,0,0,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"5":722,"9":907}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"5":752,"9":942},"upgradeStep":1}}}, +{"id":104541,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,2820,1800,0,0,1051,0,0,0,0,1312,0,0,0,0,0,0,0,0,0,0,1965,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"6":972,"11":1216,"22":1924}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"6":1011,"11":1263,"22":1945},"upgradeStep":1}}}, +{"id":104542,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3795,2290,1713,0,0,1319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1581,"7":1216,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1646,"7":1267,"22":2298},"upgradeStep":1}}}, +{"id":104543,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,2114,1409,0,1071,0,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":994,"7":663}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":1032,"7":688},"upgradeStep":1}}}, +{"id":104544,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104545,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1627,1004,526,0,0,0,0,0,0,775,0,0,14492,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":5757,"weaponDamageMax":10693,"weaponSpeed":2.4,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"566":{"randPropPoints":1914,"weaponDamageMin":5344,"weaponDamageMax":9925,"stats":{"2":1510,"3":927,"4":485,"11":716,"14":13452}},"570":{"randPropPoints":1986,"weaponDamageMin":5546,"weaponDamageMax":10302,"stats":{"2":1567,"3":964,"4":505,"11":745,"14":13958},"upgradeStep":1}}}, +{"id":104546,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3795,2290,0,0,1524,0,0,0,0,1592,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1406,"11":1469,"22":2895}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1464,"11":1530,"22":2925},"upgradeStep":1}}}, +{"id":104547,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2820,1720,1282,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2847,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"6":912,"22":2788}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"6":950,"22":2818},"upgradeStep":1}}}, +{"id":104548,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2820,1720,1246,0,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1151,"7":969,"22":3718}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1198,"7":1008,"22":3757},"upgradeStep":1}}}, +{"id":104549,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2114,1409,940,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":872,"7":872,"22":2962}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":905,"7":905,"22":2993},"upgradeStep":1}}}, +{"id":104550,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2820,1720,1173,0,1173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1083,"6":1083,"22":5077}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1127,"6":1127,"22":5131},"upgradeStep":1}}}, +{"id":104551,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,1004,1627,0,0,0,715,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":8636,"weaponDamageMax":16039,"weaponSpeed":1.8,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"566":{"randPropPoints":1914,"weaponDamageMin":8016,"weaponDamageMax":14887,"stats":{"1":927,"2":1510,"6":661,"8":581}},"570":{"randPropPoints":1986,"weaponDamageMin":8320,"weaponDamageMax":15452,"stats":{"1":964,"2":1567,"6":687,"8":605},"upgradeStep":1}}}, +{"id":104552,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2820,1800,1082,0,0,0,0,0,0,1294,0,0,0,0,0,0,0,0,0,0,1965,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"4":1001,"11":1199,"22":1924}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"4":1040,"11":1246,"22":1945},"upgradeStep":1}}}, +{"id":104553,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104554,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1627,1004,0,0,725,612,0,0,0,0,0,0,14492,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":5277,"weaponDamageMax":9802,"weaponSpeed":2.2,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"566":{"randPropPoints":1914,"weaponDamageMin":4898,"weaponDamageMax":9098,"stats":{"2":1510,"3":927,"6":670,"7":565,"14":13452}},"570":{"randPropPoints":1986,"weaponDamageMin":5084,"weaponDamageMax":9443,"stats":{"2":1567,"3":964,"6":697,"7":588,"14":13958},"upgradeStep":1}}}, +{"id":104555,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1720,2820,0,0,0,0,1173,0,0,0,1173,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"7":1083,"11":1083,"22":2672}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"7":1127,"11":1127,"22":2700},"upgradeStep":1}}}, +{"id":104556,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,3795,2290,1592,0,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1469,"6":1406,"22":3563}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1530,"6":1464,"22":3600},"upgradeStep":1}}}, +{"id":104557,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1800,2820,0,0,0,1128,1260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"6":1045,"7":1166,"22":3408}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"6":1086,"7":1212,"22":3444},"upgradeStep":1}}}, +{"id":104558,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3795,2290,1162,0,1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1069,"6":1665,"22":4028}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1115,"6":1733,"22":4070},"upgradeStep":1}}}, +{"id":104559,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[2450,0,3795,0,0,0,0,0,1218,0,0,1907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":26616,"weaponDamageMax":39925,"weaponSpeed":3.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"566":{"randPropPoints":4465,"weaponDamageMin":24704,"weaponDamageMax":37057,"stats":{"0":2268,"2":3522,"8":1125,"11":1769}},"570":{"randPropPoints":4635,"weaponDamageMin":25642,"weaponDamageMax":38464,"stats":{"0":2358,"2":3657,"8":1171,"11":1837},"upgradeStep":1}}}, +{"id":104560,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[1329,0,2114,0,0,0,0,0,944,0,0,808,0,0,0,0,0,0,0,0,0,0,22175,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"8":872,"11":749,"22":21715}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"8":907,"11":778,"22":21945},"upgradeStep":1}}}, +{"id":104561,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2820,1720,0,872,0,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2144,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":804,"7":1246,"22":2099}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":837,"7":1296,"22":2122},"upgradeStep":1}}}, +{"id":104562,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,1329,2114,0,0,0,944,0,0,0,0,808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"566":{"randPropPoints":2488,"stats":{"1":1228,"2":1963,"6":872,"11":749}},"570":{"randPropPoints":2582,"stats":{"1":1278,"2":2037,"6":907,"11":778},"upgradeStep":1}}}, +{"id":104563,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,2450,3795,0,0,0,1604,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":19407,"weaponDamageMax":36043,"weaponSpeed":3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"566":{"randPropPoints":4465,"weaponDamageMin":18013,"weaponDamageMax":33454,"stats":{"1":2268,"2":3522,"6":1486,"11":1549}},"570":{"randPropPoints":4635,"weaponDamageMin":18697,"weaponDamageMax":34725,"stats":{"1":2358,"2":3657,"6":1544,"11":1610},"upgradeStep":1}}}, +{"id":104564,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,2450,3795,0,0,0,0,1623,0,0,0,1671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":26616,"weaponDamageMax":39925,"weaponSpeed":3.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"566":{"randPropPoints":4465,"weaponDamageMin":24704,"weaponDamageMax":37057,"stats":{"1":2268,"2":3522,"7":1501,"11":1549}},"570":{"randPropPoints":4635,"weaponDamageMin":25642,"weaponDamageMax":38464,"stats":{"1":2358,"2":3657,"7":1561,"11":1609},"upgradeStep":1}}}, +{"id":104565,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2290,3795,0,0,0,0,1162,0,0,0,1803,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1069,"11":1665,"22":3563}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1115,"11":1733,"22":3600},"upgradeStep":1}}}, +{"id":104566,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,1409,2114,0,0,0,802,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"6":744,"8":948,"22":2169}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"6":773,"8":984,"22":2192},"upgradeStep":1}}}, +{"id":104567,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1800,0,2820,0,0,0,0,0,1348,0,0,978,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"566":{"randPropPoints":3317,"stats":{"0":1664,"2":2617,"8":1247,"11":906,"22":4654}},"570":{"randPropPoints":3443,"stats":{"0":1731,"2":2716,"8":1296,"11":941,"22":4704},"upgradeStep":1}}}, +{"id":104568,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1409,0,2114,0,0,0,0,0,1008,0,824,0,0,0,0,0,0,0,0,0,0,0,3025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"8":936,"10":765,"22":2962}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"8":971,"10":794,"22":2993},"upgradeStep":1}}}, +{"id":104569,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2290,0,3795,0,0,0,1592,0,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"6":1469,"11":1406,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"6":1530,"11":1464,"22":5986},"upgradeStep":1}}}, +{"id":104570,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[1409,0,2114,0,0,0,995,0,0,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"6":923,"11":786}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"6":958,"11":816},"upgradeStep":1}}}, +{"id":104571,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[1004,0,1627,0,0,715,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"5":661,"6":581}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"5":687,"6":605},"upgradeStep":1}}}, +{"id":104572,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,3574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"566":{"randPropPoints":3317,"stats":{"2":3317}},"570":{"randPropPoints":3443,"stats":{"2":3443},"upgradeStep":1}}}, +{"id":104573,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,2820,1720,0,1282,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":1184,"6":912,"22":1575}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":1232,"6":950,"22":1591},"upgradeStep":1}}}, +{"id":104574,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3795,2290,1592,0,1524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1469,"6":1406,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1530,"6":1464,"22":2298},"upgradeStep":1}}}, +{"id":104575,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3795,2290,1713,0,0,1319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1581,"7":1216,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1646,"7":1267,"22":2829},"upgradeStep":1}}}, +{"id":104576,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104577,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,2114,1409,1021,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":948,"11":744,"22":1400}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":984,"11":773,"22":1414},"upgradeStep":1}}}, +{"id":104578,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,2114,1329,957,0,786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":884,"6":728}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":920,"6":757},"upgradeStep":1}}}, +{"id":104579,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,2114,1329,876,0,0,924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22175,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"4":808,"7":856,"22":21715}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"4":841,"7":889,"22":21945},"upgradeStep":1}}}, +{"id":104580,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2820,1800,0,0,0,1296,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"7":1200,"11":988,"22":2449}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"7":1247,"11":1027,"22":2475},"upgradeStep":1}}}, +{"id":104581,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,2114,1409,981,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":911,"7":808,"22":1559}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":945,"7":838,"22":1575},"upgradeStep":1}}}, +{"id":104582,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3795,2290,1280,0,1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1179,"6":1603,"22":4957}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1228,"6":1668,"22":5010},"upgradeStep":1}}}, +{"id":104583,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3795,2290,1689,0,1360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1559,"6":1253,"22":6770}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1623,"6":1306,"22":6842},"upgradeStep":1}}}, +{"id":104584,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104585,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,1004,1627,0,0,0,0,704,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"1":927,"2":1510,"7":651,"8":598}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"1":964,"2":1567,"7":677,"8":622},"upgradeStep":1}}}, +{"id":104586,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1800,2820,0,0,0,0,1221,0,0,0,1205,0,0,0,0,0,0,0,0,0,0,2501,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"566":{"randPropPoints":3317,"stats":{"1":1664,"2":2617,"7":1131,"11":1115,"22":2449}},"570":{"randPropPoints":3443,"stats":{"1":1731,"2":2716,"7":1175,"11":1159,"22":2475},"upgradeStep":1}}}, +{"id":104587,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,1409,2114,0,0,1008,0,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"5":936,"7":765,"22":1559}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"5":971,"7":794,"22":1575},"upgradeStep":1}}}, +{"id":104588,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1720,2820,0,0,0,1080,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2847,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":997,"7":1134,"22":2788}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1038,"7":1180,"22":2818},"upgradeStep":1}}}, +{"id":104589,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2370,3795,0,0,0,1753,0,0,0,0,1359,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"6":1621,"11":1256,"22":4957}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"6":1686,"11":1307,"22":5010},"upgradeStep":1}}}, +{"id":104590,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,1713,1319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"6":1581,"7":1216,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"6":1646,"7":1267,"22":5559},"upgradeStep":1}}}, +{"id":104591,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,0,0,960,1299,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"10":885,"11":1200,"22":3808}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"10":922,"11":1248,"22":3848},"upgradeStep":1}}}, +{"id":104592,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1800,0,2820,0,0,0,0,0,1260,1128,0,0,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"566":{"randPropPoints":3317,"stats":{"0":1664,"2":2617,"8":1166,"9":1045,"22":4654}},"570":{"randPropPoints":3443,"stats":{"0":1731,"2":2716,"8":1212,"9":1086,"22":4704},"upgradeStep":1}}}, +{"id":104593,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[1329,0,2114,0,0,0,931,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"6":859,"7":770}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"6":894,"7":800},"upgradeStep":1}}}, +{"id":104594,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[1329,0,2114,0,0,0,0,0,0,0,738,1005,0,0,0,0,0,0,0,0,0,0,22175,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"10":680,"11":932,"22":21715}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"10":709,"11":968,"22":21945},"upgradeStep":1}}}, +{"id":104595,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,2114,1409,0,0,0,954,0,0,0,916,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"7":885,"11":850,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"7":919,"11":883,"22":1238},"upgradeStep":1}}}, +{"id":104596,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3795,2290,0,0,1483,1617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1368,"7":1492,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1424,"7":1553,"22":2829},"upgradeStep":1}}}, +{"id":104597,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,2114,1409,1021,0,0,0,0,0,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":948,"11":744}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":984,"11":773},"upgradeStep":1}}}, +{"id":104598,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1627,1004,0,0,694,0,0,0,0,665,0,0,14492,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":4558,"weaponDamageMax":8465,"weaponSpeed":1.9,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"566":{"randPropPoints":1914,"weaponDamageMin":4230,"weaponDamageMax":7857,"stats":{"2":1510,"3":927,"6":641,"11":614,"14":13452}},"570":{"randPropPoints":1986,"weaponDamageMin":4391,"weaponDamageMax":8155,"stats":{"2":1567,"3":964,"6":667,"11":639,"14":13958},"upgradeStep":1}}}, +{"id":104599,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2820,1720,914,0,0,0,0,0,0,1332,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":842,"11":1231,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":877,"11":1280,"22":2250},"upgradeStep":1}}}, +{"id":104600,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,3795,2370,1753,0,1359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3183,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2188,"4":1621,"6":1256,"22":3117}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2278,"4":1686,"6":1307,"22":3150},"upgradeStep":1}}}, +{"id":104601,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2820,1720,1111,0,0,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,2847,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1025,"11":1117,"22":2788}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1067,"11":1163,"22":2818},"upgradeStep":1}}}, +{"id":104602,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2114,1409,940,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":872,"7":872,"22":2169}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":905,"7":905,"22":2192},"upgradeStep":1}}}, +{"id":104603,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2820,1720,1282,0,989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3889,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1184,"6":912,"22":3808}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1232,"6":950,"22":3848},"upgradeStep":1}}}, +{"id":104604,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2820,1800,0,0,0,1296,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,4753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"7":1200,"11":988,"22":4654}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"7":1247,"11":1027,"22":4704},"upgradeStep":1}}}, +{"id":104605,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,1004,1627,0,0,0,0,683,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":8636,"weaponDamageMax":16039,"weaponSpeed":1.8,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"566":{"randPropPoints":1914,"weaponDamageMin":8016,"weaponDamageMax":14887,"stats":{"1":927,"2":1510,"7":631,"11":631}},"570":{"randPropPoints":1986,"weaponDamageMin":8320,"weaponDamageMax":15452,"stats":{"1":964,"2":1567,"7":656,"11":656},"upgradeStep":1}}}, +{"id":104606,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,1409,2114,0,0,0,847,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"6":786,"7":923}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"6":816,"7":958},"upgradeStep":1}}}, +{"id":104607,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,0,1176,1158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1085,"7":1070,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1129,"7":1113,"22":1768},"upgradeStep":1}}}, +{"id":104608,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,3795,2290,0,0,1567,0,0,0,0,1567,0,0,0,0,0,0,0,0,0,0,2858,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"6":1445,"11":1445,"22":2799}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"6":1505,"11":1505,"22":2829},"upgradeStep":1}}}, +{"id":104609,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,2114,1329,0,762,0,981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"5":704,"7":908}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"5":733,"7":944},"upgradeStep":1}}}, +{"id":104610,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,2114,1329,0,0,0,890,0,0,0,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"7":821,"11":834}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"7":855,"11":867},"upgradeStep":1}}}, +{"id":104611,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104612,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,0,0,1319,1713,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"10":1216,"11":1581,"22":6770}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"10":1267,"11":1646,"22":6842},"upgradeStep":1}}}, +{"id":104613,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"566":{"randPropPoints":3317},"570":{"randPropPoints":3443,"upgradeStep":1}}}, +{"id":104614,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[2450,0,3795,0,0,0,0,1457,0,0,0,1769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":26616,"weaponDamageMax":39925,"weaponSpeed":3.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"566":{"randPropPoints":4465,"weaponDamageMin":24704,"weaponDamageMax":37057,"stats":{"0":2268,"2":3522,"7":1347,"11":1641}},"570":{"randPropPoints":4635,"weaponDamageMin":25642,"weaponDamageMax":38464,"stats":{"0":2358,"2":3657,"7":1401,"11":1704},"upgradeStep":1}}}, +{"id":104615,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[1329,0,2114,0,0,0,0,0,944,0,0,808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"8":872,"11":749}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"8":907,"11":778},"upgradeStep":1}}}, +{"id":104616,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,2383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"566":{"randPropPoints":3317,"stats":{"11":2211}},"570":{"randPropPoints":3443,"stats":{"11":2295},"upgradeStep":1}}}, +{"id":104617,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,0,1157,0,0,0,0,1189,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"6":1067,"11":1099,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"6":1111,"11":1143,"22":1768},"upgradeStep":1}}}, +{"id":104618,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,3795,2450,0,0,1792,1384,0,0,0,0,0,0,14491,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":12199,"weaponDamageMax":18299,"weaponSpeed":3.3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"566":{"randPropPoints":4465,"weaponDamageMin":11322,"weaponDamageMax":16984,"stats":{"2":3522,"3":2268,"6":1659,"7":1283,"14":13449}},"570":{"randPropPoints":4635,"weaponDamageMin":11752,"weaponDamageMax":17629,"stats":{"2":3657,"3":2358,"6":1724,"7":1332,"14":13961},"upgradeStep":1}}}, +{"id":104619,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,2383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"566":{"randPropPoints":3317,"stats":{"3":2211}},"570":{"randPropPoints":3443,"stats":{"3":2295},"upgradeStep":1}}}, +{"id":104620,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,1409,2114,0,0,0,0,954,0,0,0,916,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"7":885,"11":850,"22":1559}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"7":919,"11":883,"22":1575},"upgradeStep":1}}}, +{"id":104621,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1409,2114,0,0,0,0,916,0,0,0,954,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"7":850,"11":885,"22":2169}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"7":883,"11":919,"22":2192},"upgradeStep":1}}}, +{"id":104622,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2820,1800,0,0,0,1296,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,3480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1664,"7":1200,"11":988,"22":3408}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1731,"7":1247,"11":1027,"22":3444},"upgradeStep":1}}}, +{"id":104623,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,0,0,1189,1157,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"10":1099,"11":1067,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"10":1143,"11":1111,"22":4276},"upgradeStep":1}}}, +{"id":104624,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[1329,0,2114,0,0,0,0,924,876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"566":{"randPropPoints":2488,"stats":{"0":1228,"2":1963,"7":856,"8":808}},"570":{"randPropPoints":2582,"stats":{"0":1278,"2":2037,"7":889,"8":841},"upgradeStep":1}}}, +{"id":104625,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[1004,0,1627,0,0,0,0,694,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"7":641,"11":614}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"7":667,"11":639},"upgradeStep":1}}}, +{"id":104626,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[1409,0,2114,0,0,0,0,0,940,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"8":872,"10":872}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"8":905,"10":905},"upgradeStep":1}}}, +{"id":104627,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,2450,3795,0,0,0,1769,1440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":19407,"weaponDamageMax":36043,"weaponSpeed":3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"566":{"randPropPoints":4465,"weaponDamageMin":18013,"weaponDamageMax":33454,"stats":{"1":2268,"2":3522,"6":1639,"7":1333}},"570":{"randPropPoints":4635,"weaponDamageMin":18697,"weaponDamageMax":34725,"stats":{"1":2358,"2":3657,"6":1703,"7":1386},"upgradeStep":1}}}, +{"id":104628,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,1329,2114,0,0,0,0,877,0,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"566":{"randPropPoints":2488,"stats":{"1":1228,"2":1963,"7":813,"11":834}},"570":{"randPropPoints":2582,"stats":{"1":1278,"2":2037,"7":844,"11":868},"upgradeStep":1}}}, +{"id":104629,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,1004,1627,0,0,0,683,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"1":927,"2":1510,"6":631,"11":631}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"1":964,"2":1567,"6":656,"11":656},"upgradeStep":1}}}, +{"id":104630,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2114,1409,0,0,940,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"6":872,"7":872,"22":1225}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"6":905,"7":905,"22":1238},"upgradeStep":1}}}, +{"id":104631,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1627,1004,0,694,665,0,0,0,0,0,0,0,14492,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":4318,"weaponDamageMax":8020,"weaponSpeed":1.8,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"566":{"randPropPoints":1914,"weaponDamageMin":4008,"weaponDamageMax":7443,"stats":{"2":1510,"3":927,"5":641,"6":614,"14":13452}},"570":{"randPropPoints":1986,"weaponDamageMin":4160,"weaponDamageMax":7726,"stats":{"2":1567,"3":964,"5":667,"6":639,"14":13958},"upgradeStep":1}}}, +{"id":104632,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,2114,1409,0,870,0,0,0,0,0,981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"5":808,"11":911}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"5":838,"11":945},"upgradeStep":1}}}, +{"id":104633,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3795,2290,1280,0,0,1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3638,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1179,"7":1603,"22":3563}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1228,"7":1668,"22":3600},"upgradeStep":1}}}, +{"id":104634,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3795,2290,1713,0,0,1319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1581,"7":1216,"22":4957}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1646,"7":1267,"22":5010},"upgradeStep":1}}}, +{"id":104635,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,2820,1720,0,0,0,1005,0,0,0,1266,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"7":928,"11":1168,"22":4231}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"7":966,"11":1216,"22":4276},"upgradeStep":1}}}, +{"id":104636,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[2383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"566":{"randPropPoints":3317,"stats":{"0":2211}},"570":{"randPropPoints":3443,"stats":{"0":2295},"upgradeStep":1}}}, +{"id":104637,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[1004,0,1627,0,0,0,683,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":12474,"weaponDamageMax":23168,"weaponSpeed":2.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"566":{"randPropPoints":1914,"weaponDamageMin":11578,"weaponDamageMax":21503,"stats":{"0":927,"2":1510,"6":631,"8":631}},"570":{"randPropPoints":1986,"weaponDamageMin":12018,"weaponDamageMax":22320,"stats":{"0":964,"2":1567,"6":656,"8":656},"upgradeStep":1}}}, +{"id":104638,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,2450,3795,0,0,0,1769,0,0,0,0,1457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":24398,"weaponDamageMax":36598,"weaponSpeed":3.3,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"566":{"randPropPoints":4465,"weaponDamageMin":22645,"weaponDamageMax":33969,"stats":{"1":2268,"2":3522,"6":1641,"11":1347}},"570":{"randPropPoints":4635,"weaponDamageMin":23505,"weaponDamageMax":35259,"stats":{"1":2358,"2":3657,"6":1704,"11":1401},"upgradeStep":1}}}, +{"id":104639,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1720,2820,0,0,0,1228,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2046,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1134,"7":997,"22":2004}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1180,"7":1038,"22":2025},"upgradeStep":1}}}, +{"id":104640,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2290,3795,0,0,0,0,1689,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,2956,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"7":1559,"11":1253,"22":2895}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"7":1623,"11":1306,"22":2925},"upgradeStep":1}}}, +{"id":104641,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2370,3795,0,0,0,0,1843,0,0,0,1202,0,0,0,0,0,0,0,0,0,0,5062,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"566":{"randPropPoints":4465,"stats":{"1":2188,"2":3522,"7":1705,"11":1109,"22":4957}},"570":{"randPropPoints":4635,"stats":{"1":2278,"2":3657,"7":1773,"11":1155,"22":5010},"upgradeStep":1}}}, +{"id":104642,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2290,3795,0,0,0,1641,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"566":{"randPropPoints":4465,"stats":{"1":2108,"2":3522,"6":1515,"11":1329,"22":4028}},"570":{"randPropPoints":4635,"stats":{"1":2198,"2":3657,"6":1577,"11":1385,"22":4070},"upgradeStep":1}}}, +{"id":104643,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1720,2820,0,0,0,1299,0,0,0,0,960,0,0,0,0,0,0,0,0,0,0,3797,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1200,"11":885,"22":3718}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1248,"11":922,"22":3757},"upgradeStep":1}}}, +{"id":104644,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2290,0,3795,0,0,0,0,1592,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,6049,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"7":1469,"11":1406,"22":5924}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"7":1530,"11":1464,"22":5986},"upgradeStep":1}}}, +{"id":104645,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1720,0,2820,0,0,0,1332,0,0,0,0,901,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"6":1231,"11":831,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"6":1280,"11":865,"22":5131},"upgradeStep":1}}}, +{"id":104646,"name":"Tusks of Mannoroth","icon":"inv_shoulder_plate_garrosh_d_01","type":3,"armorType":4,"stats":[1640,0,2820,0,0,0,1292,0,0,0,0,861,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":409,"2":974,"6":368,"11":219,"22":3654}},"566":{"randPropPoints":3317,"stats":{"0":1504,"2":2617,"6":1191,"11":791,"22":5077}},"570":{"randPropPoints":3443,"stats":{"0":1571,"2":2716,"6":1240,"11":825,"22":5131},"upgradeStep":1}}}, +{"id":104647,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2290,0,3795,0,0,0,0,0,1162,0,1803,0,0,0,0,0,0,0,0,0,0,0,5617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"566":{"randPropPoints":4465,"stats":{"0":2108,"2":3522,"8":1069,"10":1665,"22":5501}},"570":{"randPropPoints":4635,"stats":{"0":2198,"2":3657,"8":1115,"10":1733,"22":5559},"upgradeStep":1}}}, +{"id":104648,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[2450,0,3795,0,0,0,1464,0,0,0,0,1745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"weaponDamageMin":26616,"weaponDamageMax":39925,"weaponSpeed":3.6,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"566":{"randPropPoints":4465,"weaponDamageMin":24704,"weaponDamageMax":37057,"stats":{"0":2268,"2":3522,"6":1357,"11":1615}},"570":{"randPropPoints":4635,"weaponDamageMin":25642,"weaponDamageMax":38464,"stats":{"0":2358,"2":3657,"6":1410,"11":1679},"upgradeStep":1}}}, +{"id":104649,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,3574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"566":{"randPropPoints":3317,"stats":{"2":3317}},"570":{"randPropPoints":3443,"stats":{"2":3443},"upgradeStep":1}}}, +{"id":104650,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2820,1720,1111,0,0,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,1608,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1025,"11":1117,"22":1575}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1067,"11":1163,"22":1591},"upgradeStep":1}}}, +{"id":104651,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3795,2290,0,0,0,1442,0,0,0,1641,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"7":1329,"11":1515,"22":2274}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"7":1385,"11":1577,"22":2298},"upgradeStep":1}}}, +{"id":104652,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,2383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"566":{"randPropPoints":3317,"stats":{"7":2211}},"570":{"randPropPoints":3443,"stats":{"7":2295},"upgradeStep":1}}}, +{"id":104653,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1627,1004,694,0,0,665,0,0,0,0,0,0,14492,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2062,"weaponDamageMin":5757,"weaponDamageMax":10693,"weaponSpeed":2.4,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"566":{"randPropPoints":1914,"weaponDamageMin":5344,"weaponDamageMax":9925,"stats":{"2":1510,"3":927,"4":641,"7":614,"14":13452}},"570":{"randPropPoints":1986,"weaponDamageMin":5546,"weaponDamageMax":10302,"stats":{"2":1567,"3":964,"4":667,"7":639,"14":13958},"upgradeStep":1}}}, +{"id":104654,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,2114,1329,0,0,0,876,0,0,0,914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1228,"7":810,"11":845}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1278,"7":843,"11":879},"upgradeStep":1}}}, +{"id":104655,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,2820,1720,1111,0,0,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,2046,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1025,"11":1117,"22":2004}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1067,"11":1163,"22":2025},"upgradeStep":1}}}, +{"id":104656,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2820,1720,1173,0,0,1173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1083,"7":1083,"22":2672}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1127,"7":1127,"22":2700},"upgradeStep":1}}}, +{"id":104657,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3795,2290,1592,0,0,0,0,0,0,1524,0,0,0,0,0,0,0,0,0,0,4113,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1469,"11":1406,"22":4028}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1530,"11":1464,"22":4070},"upgradeStep":1}}}, +{"id":104658,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3795,2290,1641,0,0,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,6913,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4811,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"566":{"randPropPoints":4465,"stats":{"2":3522,"3":2108,"4":1515,"11":1329,"22":6770}},"570":{"randPropPoints":4635,"stats":{"2":3657,"3":2198,"4":1577,"11":1385,"22":6842},"upgradeStep":1}}}, +{"id":104659,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2820,1720,1299,0,0,960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5185,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1200,"7":885,"22":5077}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1248,"7":922,"22":5131},"upgradeStep":1}}}, +{"id":104660,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1106,1660,0,0,0,0,738,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"7":685,"11":685}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"7":711,"11":711},"upgradeStep":1}}}, +{"id":104661,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1906,2979,0,0,0,1445,0,990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":19149,"weaponDamageMax":28724,"weaponSpeed":3.3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"540":{"randPropPoints":3505,"weaponDamageMin":17773,"weaponDamageMax":26661,"stats":{"1":1763,"2":2765,"6":1337,"8":918}},"544":{"randPropPoints":3638,"weaponDamageMin":18448,"weaponDamageMax":27673,"stats":{"1":1833,"2":2870,"6":1390,"8":953},"upgradeStep":1}}}, +{"id":104662,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,1262,1106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1163,"7":1018,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1212,"7":1061,"22":2726},"upgradeStep":1}}}, +{"id":104663,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1395,2213,0,0,815,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"5":753,"6":947,"22":3174}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"5":783,"6":984,"22":3210},"upgradeStep":1}}}, +{"id":104664,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1106,0,1660,0,0,822,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":763,"7":552,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":792,"7":573,"22":2790},"upgradeStep":1}}}, +{"id":104665,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,978,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"6":900,"7":1232,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"6":938,"7":1284,"22":6376},"upgradeStep":1}}}, +{"id":104666,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,895,0,0,0,902,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"7":826,"11":830,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"7":860,"11":866,"22":3985},"upgradeStep":1}}}, +{"id":104667,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1395,0,2213,0,0,839,0,0,0,0,1009,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"540":{"randPropPoints":2603,"stats":{"0":1289,"2":2054,"5":775,"10":934,"22":4334}},"544":{"randPropPoints":2702,"stats":{"0":1341,"2":2132,"5":806,"10":971,"22":4384},"upgradeStep":1}}}, +{"id":104668,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1106,0,1660,0,0,0,0,0,0,738,738,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"9":685,"10":685,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"9":711,"10":711,"22":2790},"upgradeStep":1}}}, +{"id":104669,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,0,667,1041,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"9":613,"10":960,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"9":640,"10":1000,"22":4782},"upgradeStep":1}}}, +{"id":104670,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[771,0,1276,0,0,0,0,0,0,527,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"9":487,"10":487}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"9":507,"10":507},"upgradeStep":1}}}, +{"id":104671,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2213,1315,945,0,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":870,"6":759,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":907,"6":790,"22":1648},"upgradeStep":1}}}, +{"id":104672,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2213,1315,989,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":912,"6":699,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":949,"6":728,"22":1977},"upgradeStep":1}}}, +{"id":104673,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2979,1746,0,0,1204,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1109,"11":1109,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1155,"11":1155,"22":2142},"upgradeStep":1}}}, +{"id":104674,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1660,1106,0,738,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":685,"7":685,"22":1303}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":711,"7":711,"22":1318},"upgradeStep":1}}}, +{"id":104675,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104676,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,1660,1026,767,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":708,"11":520}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":737,"11":540},"upgradeStep":1}}}, +{"id":104677,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2213,1395,935,0,0,951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":865,"7":881,"22":2281}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":899,"7":915,"22":2307},"upgradeStep":1}}}, +{"id":104678,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1660,1106,561,0,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":520,"6":781,"22":1452}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":540,"6":810,"22":1468},"upgradeStep":1}}}, +{"id":104679,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2213,1315,887,0,919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":817,"6":849,"22":2885}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":851,"6":883,"22":2918},"upgradeStep":1}}}, +{"id":104680,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2213,1315,855,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":787,"11":860,"22":3546}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":820,"11":895,"22":3587},"upgradeStep":1}}}, +{"id":104681,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2213,1395,935,0,0,951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":865,"7":881,"22":4334}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":899,"7":915,"22":4384},"upgradeStep":1}}}, +{"id":104682,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1906,2979,0,0,967,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":17408,"weaponDamageMax":26113,"weaponSpeed":3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"540":{"randPropPoints":3505,"weaponDamageMin":16157,"weaponDamageMax":24237,"stats":{"1":1763,"2":2765,"5":895,"7":1361}},"544":{"randPropPoints":3638,"weaponDamageMin":16771,"weaponDamageMax":25157,"stats":{"1":1833,"2":2870,"5":930,"7":1414},"upgradeStep":1}}}, +{"id":104683,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,771,1276,0,0,458,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"1":710,"2":1185,"5":422,"6":525}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"1":740,"2":1230,"5":440,"6":546},"upgradeStep":1}}}, +{"id":104684,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1395,2213,0,0,839,0,1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"5":775,"7":934,"22":2281}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"5":806,"7":971,"22":2307},"upgradeStep":1}}}, +{"id":104685,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1315,2213,0,0,0,1057,0,651,0,0,0,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":976,"8":597,"22":2885}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":1016,"8":624,"22":2918},"upgradeStep":1}}}, +{"id":104686,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1315,0,2213,0,0,975,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":899,"7":721,"22":3546}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":936,"7":751,"22":3587},"upgradeStep":1}}}, +{"id":104687,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,0,855,0,0,0,933,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"7":787,"11":860,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"7":820,"11":895,"22":4782},"upgradeStep":1}}}, +{"id":104688,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,0,917,871,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"9":844,"10":803,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"9":879,"10":836,"22":3985},"upgradeStep":1}}}, +{"id":104689,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[1106,0,1660,0,0,630,802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":584,"6":744}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":606,"6":772},"upgradeStep":1}}}, +{"id":104690,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1106,0,1660,0,0,0,0,0,665,0,781,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"8":617,"10":725,"22":1303}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"8":641,"10":752,"22":1318},"upgradeStep":1}}}, +{"id":104691,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,2805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"540":{"randPropPoints":2603,"stats":{"2":2603}},"544":{"randPropPoints":2702,"stats":{"2":2702},"upgradeStep":1}}}, +{"id":104692,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2213,1395,0,699,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1833,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"5":645,"7":1008,"22":1792}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"5":672,"7":1048,"22":1812},"upgradeStep":1}}}, +{"id":104693,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2979,1746,0,886,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"5":814,"7":1281,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"5":849,"7":1334,"22":2636},"upgradeStep":1}}}, +{"id":104694,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2213,1315,0,713,0,0,0,0,0,1015,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":656,"11":936,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":684,"11":975,"22":1977},"upgradeStep":1}}}, +{"id":104695,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1660,1106,770,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":715,"11":634,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":742,"11":658,"22":1153},"upgradeStep":1}}}, +{"id":104696,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,1660,1106,0,791,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":735,"6":601}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":762,"6":624},"upgradeStep":1}}}, +{"id":104697,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1660,1026,791,0,0,538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":732,"7":496}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":761,"7":516},"upgradeStep":1}}}, +{"id":104698,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2213,1315,947,0,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":873,"6":765,"22":2488}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":909,"6":797,"22":2517},"upgradeStep":1}}}, +{"id":104699,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2213,1395,935,0,0,951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":865,"7":881,"22":3174}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":899,"7":915,"22":3210},"upgradeStep":1}}}, +{"id":104700,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2213,1315,879,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":810,"6":846,"22":3462}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":844,"6":882,"22":3502},"upgradeStep":1}}}, +{"id":104701,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2213,1315,902,0,0,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":830,"7":826,"22":3940}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":866,"7":860,"22":3985},"upgradeStep":1}}}, +{"id":104702,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2979,1746,886,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":814,"6":1281,"22":5122}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":849,"6":1334,"22":5181},"upgradeStep":1}}}, +{"id":104703,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,771,1276,0,0,471,0,0,0,0,0,560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":6778,"weaponDamageMax":12588,"weaponSpeed":1.8,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"540":{"randPropPoints":1502,"weaponDamageMin":6291,"weaponDamageMax":11684,"stats":{"1":710,"2":1185,"5":435,"11":517}},"544":{"randPropPoints":1559,"weaponDamageMin":6530,"weaponDamageMax":12128,"stats":{"1":740,"2":1230,"5":453,"11":539},"upgradeStep":1}}}, +{"id":104704,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,1026,1660,0,0,777,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"540":{"randPropPoints":1953,"stats":{"1":947,"2":1541,"5":717,"6":504}},"544":{"randPropPoints":2027,"stats":{"1":986,"2":1599,"5":746,"6":524},"upgradeStep":1}}}, +{"id":104705,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,917,1372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":842,"7":1265,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":879,"7":1317,"22":3355},"upgradeStep":1}}}, +{"id":104706,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,743,1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"5":683,"6":928,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"5":712,"6":965,"22":2097},"upgradeStep":1}}}, +{"id":104707,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,1826,2979,0,0,0,1302,0,0,0,0,1146,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1203,"11":1058,"22":4039}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1252,"11":1101,"22":4085},"upgradeStep":1}}}, +{"id":104708,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1315,2213,0,0,0,0,903,0,0,0,903,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":833,"11":833,"22":3462}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":867,"11":867,"22":3502},"upgradeStep":1}}}, +{"id":104709,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1106,0,1660,0,0,0,719,0,0,0,0,749,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"6":668,"11":695,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"6":693,"11":721,"22":2790},"upgradeStep":1}}}, +{"id":104710,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,0,1204,1204,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"9":1109,"10":1109,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"9":1155,"10":1155,"22":5181},"upgradeStep":1}}}, +{"id":104711,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1106,0,1660,0,0,0,0,812,0,0,0,612,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"7":753,"11":568,"22":1303}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"7":782,"11":590,"22":1318},"upgradeStep":1}}}, +{"id":104712,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104713,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[771,0,1276,0,0,569,0,0,0,0,0,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"5":525,"11":422}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"5":546,"11":440},"upgradeStep":1}}}, +{"id":104714,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1660,1106,0,770,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":715,"11":634,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":742,"11":658,"22":1153},"upgradeStep":1}}}, +{"id":104715,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,767,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":705,"6":915,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":735,"6":952,"22":1648},"upgradeStep":1}}}, +{"id":104716,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2213,1315,989,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":912,"6":699,"22":1466}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":949,"6":728,"22":1483},"upgradeStep":1}}}, +{"id":104717,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2213,1315,0,0,855,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":787,"11":860,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":820,"11":895,"22":1977},"upgradeStep":1}}}, +{"id":104718,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,1660,1106,0,701,0,0,0,0,0,760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":651,"11":705}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":675,"11":732},"upgradeStep":1}}}, +{"id":104719,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1660,1026,583,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,20681,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":537,"11":719,"22":20222}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":560,"11":746,"22":20452},"upgradeStep":1}}}, +{"id":104720,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,2213,1395,863,0,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":797,"6":921,"22":2281}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":829,"6":957,"22":2307},"upgradeStep":1}}}, +{"id":104721,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2213,1315,0,0,902,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":830,"11":826,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":866,"11":860,"22":2097},"upgradeStep":1}}}, +{"id":104722,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1660,1106,831,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":772,"6":536,"22":2020}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":801,"6":556,"22":2043},"upgradeStep":1}}}, +{"id":104723,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2979,1826,1359,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4131,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1255,"6":969,"22":4039}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1306,"6":1008,"22":4085},"upgradeStep":1}}}, +{"id":104724,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1660,1106,791,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":735,"6":601,"22":2758}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":762,"6":624,"22":2790},"upgradeStep":1}}}, +{"id":104725,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104726,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,1660,1106,749,0,0,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":695,"7":668}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":721,"7":693},"upgradeStep":1}}}, +{"id":104727,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104728,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2979,1906,0,0,1227,0,0,0,0,1328,0,0,11374,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":9574,"weaponDamageMax":14362,"weaponSpeed":3.3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"540":{"randPropPoints":3505,"weaponDamageMin":8886,"weaponDamageMax":13330,"stats":{"2":2765,"3":1763,"6":1134,"11":1231,"14":10557}},"544":{"randPropPoints":3638,"weaponDamageMin":9224,"weaponDamageMax":13837,"stats":{"2":2870,"3":1833,"6":1179,"11":1279,"14":10958},"upgradeStep":1}}}, +{"id":104729,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2979,1746,1204,0,0,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1109,"11":1109,"22":2696}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1155,"11":1155,"22":2726},"upgradeStep":1}}}, +{"id":104730,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2979,1746,1224,0,0,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1127,"7":1078,"22":5122}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1175,"7":1123,"22":5181},"upgradeStep":1}}}, +{"id":104731,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1395,0,2213,0,0,935,951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"540":{"randPropPoints":2603,"stats":{"0":1289,"2":2054,"5":865,"6":881,"22":4334}},"544":{"randPropPoints":2702,"stats":{"0":1341,"2":2132,"5":899,"6":915,"22":4384},"upgradeStep":1}}}, +{"id":104732,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1906,0,2979,0,0,0,1210,1318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":20890,"weaponDamageMax":31335,"weaponSpeed":3.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"540":{"randPropPoints":3505,"weaponDamageMin":19389,"weaponDamageMax":29084,"stats":{"0":1763,"2":2765,"6":1122,"7":1219}},"544":{"randPropPoints":3638,"weaponDamageMin":20125,"weaponDamageMax":30189,"stats":{"0":1833,"2":2870,"6":1165,"7":1268},"upgradeStep":1}}}, +{"id":104733,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[1106,0,1660,0,0,831,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":772,"9":536}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":801,"9":556},"upgradeStep":1}}}, +{"id":104734,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1026,0,1660,0,0,0,0,0,0,674,722,0,0,0,0,0,0,0,0,0,0,0,20681,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"9":621,"10":669,"22":20222}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"9":647,"10":695,"22":20452},"upgradeStep":1}}}, +{"id":104735,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1906,2979,0,0,0,0,966,0,0,0,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":15232,"weaponDamageMax":28289,"weaponSpeed":3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"540":{"randPropPoints":3505,"weaponDamageMin":14138,"weaponDamageMax":26257,"stats":{"1":1763,"2":2765,"7":894,"11":1361}},"544":{"randPropPoints":3638,"weaponDamageMin":14675,"weaponDamageMax":27254,"stats":{"1":1833,"2":2870,"7":929,"11":1414},"upgradeStep":1}}}, +{"id":104736,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,1026,1660,0,0,0,0,0,685,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"540":{"randPropPoints":1953,"stats":{"1":947,"2":1541,"8":631,"11":652}},"544":{"randPropPoints":2027,"stats":{"1":986,"2":1599,"8":657,"11":677},"upgradeStep":1}}}, +{"id":104737,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1395,2213,0,0,0,807,0,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"6":747,"8":944,"22":2281}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"6":776,"8":981,"22":2307},"upgradeStep":1}}}, +{"id":104738,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,902,0,0,0,0,895,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":830,"11":826,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":866,"11":860,"22":2097},"upgradeStep":1}}}, +{"id":104739,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1315,2213,0,0,961,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"5":886,"7":743,"22":2597}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"5":923,"7":774,"22":2626},"upgradeStep":1}}}, +{"id":104740,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1106,1660,0,0,791,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"5":735,"7":601,"22":2020}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"5":762,"7":624,"22":2043},"upgradeStep":1}}}, +{"id":104741,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1127,"11":1078,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1175,"11":1123,"22":5181},"upgradeStep":1}}}, +{"id":104742,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[1106,0,1660,0,0,802,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":744,"9":584,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":772,"9":606,"22":2790},"upgradeStep":1}}}, +{"id":104743,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,759,0,0,0,0,0,989,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":699,"11":912,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":728,"11":949,"22":4782},"upgradeStep":1}}}, +{"id":104744,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104745,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[1026,0,1660,0,0,0,0,0,0,703,685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"9":652,"10":631}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"9":677,"10":657},"upgradeStep":1}}}, +{"id":104746,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2213,1395,0,0,0,950,0,0,0,927,0,0,0,0,0,0,0,0,0,0,1833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"7":878,"11":858,"22":1792}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"7":914,"11":892,"22":1812},"upgradeStep":1}}}, +{"id":104747,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,1660,1106,0,812,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":753,"6":568,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":782,"6":590,"22":1153},"upgradeStep":1}}}, +{"id":104748,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,2979,1746,0,886,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"5":814,"7":1281,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"5":849,"7":1334,"22":2142},"upgradeStep":1}}}, +{"id":104749,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2213,1395,1034,0,0,784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":956,"7":725,"22":1792}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":994,"7":754,"22":1812},"upgradeStep":1}}}, +{"id":104750,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2213,1315,903,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":833,"7":833,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":867,"7":867,"22":1977},"upgradeStep":1}}}, +{"id":104751,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,1660,1106,0,738,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":685,"7":685}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":711,"7":711},"upgradeStep":1}}}, +{"id":104752,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,2979,1906,1493,0,0,0,0,0,0,942,0,0,11374,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":9574,"weaponDamageMax":14362,"weaponSpeed":3.3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"540":{"randPropPoints":3505,"weaponDamageMin":8886,"weaponDamageMax":13330,"stats":{"2":2765,"3":1763,"4":1385,"11":870,"14":10557}},"544":{"randPropPoints":3638,"weaponDamageMin":9224,"weaponDamageMax":13837,"stats":{"2":2870,"3":1833,"4":1438,"11":905,"14":10958},"upgradeStep":1}}}, +{"id":104753,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2213,1315,989,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":912,"6":699,"22":1866}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":949,"6":728,"22":1887},"upgradeStep":1}}}, +{"id":104754,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2213,1315,0,0,973,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":896,"11":715,"22":2885}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":933,"11":744,"22":2918},"upgradeStep":1}}}, +{"id":104755,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1660,1106,770,0,0,0,0,0,0,683,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":715,"11":634,"22":2758}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":742,"11":658,"22":2790},"upgradeStep":1}}}, +{"id":104756,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,2979,1826,1359,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1255,"6":969,"22":5516}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1306,"6":1008,"22":5579},"upgradeStep":1}}}, +{"id":104757,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,771,1276,0,0,0,536,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"1":710,"2":1185,"6":495,"7":473}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"1":740,"2":1230,"6":515,"7":493},"upgradeStep":1}}}, +{"id":104758,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1106,1660,0,0,0,630,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"6":584,"8":744,"22":1452}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"6":606,"8":772,"22":1468},"upgradeStep":1}}}, +{"id":104759,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,1002,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":924,"11":677,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":962,"11":706,"22":2517},"upgradeStep":1}}}, +{"id":104760,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1395,2213,0,0,0,0,0,911,0,0,966,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"8":842,"11":894,"22":3174}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"8":876,"11":930,"22":3210},"upgradeStep":1}}}, +{"id":104761,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1315,2213,0,0,0,0,1025,0,0,0,683,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":944,"11":629,"22":2885}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":984,"11":656,"22":2918},"upgradeStep":1}}}, +{"id":104762,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1315,0,2213,0,0,0,0,903,0,0,0,903,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"7":833,"11":833,"22":3546}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"7":867,"11":867,"22":3587},"upgradeStep":1}}}, +{"id":104763,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1106,0,1660,0,0,0,612,0,812,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"6":568,"8":753,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"6":590,"8":782,"22":2790},"upgradeStep":1}}}, +{"id":104764,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,959,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"6":883,"7":737,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"6":920,"7":767,"22":3985},"upgradeStep":1}}}, +{"id":104765,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,0,1204,1204,0,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"9":1109,"10":1109,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"9":1155,"10":1155,"22":6376},"upgradeStep":1}}}, +{"id":104766,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[1106,0,1660,0,0,760,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":705,"11":651}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":732,"11":675},"upgradeStep":1}}}, +{"id":104767,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"540":{"randPropPoints":2603,"stats":{"9":1735}},"544":{"randPropPoints":2702,"stats":{"9":1801},"upgradeStep":1}}}, +{"id":104768,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2213,1315,0,975,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":899,"11":721,"22":1466}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":936,"11":751,"22":1483},"upgradeStep":1}}}, +{"id":104769,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,2979,1826,0,0,0,1264,0,0,0,1211,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"7":1167,"11":1118,"22":2281}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"7":1215,"11":1163,"22":2307},"upgradeStep":1}}}, +{"id":104770,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1660,1106,781,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":725,"7":617,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":752,"7":641,"22":1153},"upgradeStep":1}}}, +{"id":104771,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2213,1315,986,0,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":908,"7":693,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":946,"7":722,"22":1648},"upgradeStep":1}}}, +{"id":104772,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2979,1746,1281,0,1074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1181,"6":988,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1230,"6":1030,"22":2636},"upgradeStep":1}}}, +{"id":104773,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,1660,1026,706,0,0,667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":651,"7":618}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":678,"7":642},"upgradeStep":1}}}, +{"id":104774,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1660,1026,0,0,698,603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"6":645,"7":557}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"6":671,"7":579},"upgradeStep":1}}}, +{"id":104775,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1660,1106,802,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":744,"11":584,"22":1452}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":772,"11":606,"22":1468},"upgradeStep":1}}}, +{"id":104776,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2213,1395,863,0,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":797,"6":921,"22":3174}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":829,"6":957,"22":3210},"upgradeStep":1}}}, +{"id":104777,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1660,1106,760,0,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":705,"11":651,"22":2020}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":732,"11":675,"22":2043},"upgradeStep":1}}}, +{"id":104778,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2213,1395,863,0,995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":797,"6":921,"22":4334}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":829,"6":957,"22":4384},"upgradeStep":1}}}, +{"id":104779,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1106,1660,0,0,0,0,647,0,0,0,791,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"7":601,"11":735,"22":1303}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"7":624,"11":762,"22":1318},"upgradeStep":1}}}, +{"id":104780,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104781,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1315,2213,0,0,961,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"5":886,"7":743,"22":1866}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"5":923,"7":774,"22":1887},"upgradeStep":1}}}, +{"id":104782,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,1826,2979,0,0,0,1264,0,0,0,0,1211,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1167,"11":1118,"22":2903}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1215,"11":1163,"22":2936},"upgradeStep":1}}}, +{"id":104783,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1746,2979,0,0,0,0,1041,0,0,0,1300,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":958,"11":1198,"22":3751}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":999,"11":1248,"22":3793},"upgradeStep":1}}}, +{"id":104784,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1395,0,2213,0,0,0,950,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"540":{"randPropPoints":2603,"stats":{"0":1289,"2":2054,"6":878,"7":858,"22":4334}},"544":{"randPropPoints":2702,"stats":{"0":1341,"2":2132,"6":914,"7":892,"22":4384},"upgradeStep":1}}}, +{"id":104785,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,1281,0,0,0,0,1074,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"6":1181,"11":988,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"6":1230,"11":1030,"22":6376},"upgradeStep":1}}}, +{"id":104786,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1315,0,2213,0,0,947,0,0,0,0,0,831,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"5":873,"11":765,"22":3546}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"5":909,"11":797,"22":3587},"upgradeStep":1}}}, +{"id":104787,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[1026,0,1660,0,0,758,0,0,0,0,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"5":699,"11":536}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"5":728,"11":557},"upgradeStep":1}}}, +{"id":104788,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[771,0,1276,0,0,0,0,0,560,0,471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"8":517,"10":435}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"8":539,"10":453},"upgradeStep":1}}}, +{"id":104789,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[1026,0,1660,0,0,601,0,0,0,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"5":553,"9":709}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"5":577,"9":736},"upgradeStep":1}}}, +{"id":104790,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,2213,1395,0,0,815,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,1833,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"6":753,"11":947,"22":1792}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"6":783,"11":984,"22":1812},"upgradeStep":1}}}, +{"id":104791,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2979,1746,1319,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1215,"7":929,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1266,"7":968,"22":2142},"upgradeStep":1}}}, +{"id":104792,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,1660,1106,0,841,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":781,"7":520}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":810,"7":540},"upgradeStep":1}}}, +{"id":104793,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104794,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1276,771,404,0,0,0,0,0,0,599,0,0,11372,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":4518,"weaponDamageMax":8392,"weaponSpeed":2.4,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"540":{"randPropPoints":1502,"weaponDamageMin":4194,"weaponDamageMax":7789,"stats":{"2":1185,"3":710,"4":372,"11":553,"14":10556}},"544":{"randPropPoints":1559,"weaponDamageMin":4353,"weaponDamageMax":8085,"stats":{"2":1230,"3":740,"4":388,"11":576,"14":10957},"upgradeStep":1}}}, +{"id":104795,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2979,1746,0,0,1171,0,0,0,0,1224,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1078,"11":1127,"22":2696}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1123,"11":1175,"22":2726},"upgradeStep":1}}}, +{"id":104796,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2213,1315,989,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":912,"6":699,"22":2597}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":949,"6":728,"22":2626},"upgradeStep":1}}}, +{"id":104797,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2213,1315,961,0,0,807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":886,"7":743,"22":3462}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":923,"7":774,"22":3502},"upgradeStep":1}}}, +{"id":104798,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1660,1106,738,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":685,"7":685,"22":2758}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":711,"7":711,"22":2790},"upgradeStep":1}}}, +{"id":104799,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2213,1315,903,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":833,"6":833,"22":4728}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":867,"6":867,"22":4782},"upgradeStep":1}}}, +{"id":104800,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,771,1276,0,0,0,552,0,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":6778,"weaponDamageMax":12588,"weaponSpeed":1.8,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"540":{"randPropPoints":1502,"weaponDamageMin":6291,"weaponDamageMax":11684,"stats":{"1":710,"2":1185,"6":510,"8":448}},"544":{"randPropPoints":1559,"weaponDamageMin":6530,"weaponDamageMax":12128,"stats":{"1":740,"2":1230,"6":531,"8":466},"upgradeStep":1}}}, +{"id":104801,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2213,1395,839,0,0,0,0,0,0,1009,0,0,0,0,0,0,0,0,0,0,1833,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"4":775,"11":934,"22":1792}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"4":806,"11":971,"22":1812},"upgradeStep":1}}}, +{"id":104802,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104803,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1276,771,0,0,560,471,0,0,0,0,0,0,11372,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":4142,"weaponDamageMax":7693,"weaponSpeed":2.2,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"540":{"randPropPoints":1502,"weaponDamageMin":3844,"weaponDamageMax":7140,"stats":{"2":1185,"3":710,"6":517,"7":435,"14":10556}},"544":{"randPropPoints":1559,"weaponDamageMin":3990,"weaponDamageMax":7411,"stats":{"2":1230,"3":740,"6":539,"7":453,"14":10957},"upgradeStep":1}}}, +{"id":104804,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1315,2213,0,0,0,0,903,0,0,0,903,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"7":833,"11":833,"22":2488}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"7":867,"11":867,"22":2517},"upgradeStep":1}}}, +{"id":104805,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,2979,1746,1224,0,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1127,"6":1078,"22":3318}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1175,"6":1123,"22":3355},"upgradeStep":1}}}, +{"id":104806,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1395,2213,0,0,0,879,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"6":813,"7":905,"22":3174}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"6":845,"7":941,"22":3210},"upgradeStep":1}}}, +{"id":104807,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2979,1746,886,0,1389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":814,"6":1281,"22":3751}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":849,"6":1334,"22":3793},"upgradeStep":1}}}, +{"id":104808,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[1906,0,2979,0,0,0,0,0,942,0,0,1493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":20890,"weaponDamageMax":31335,"weaponSpeed":3.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"540":{"randPropPoints":3505,"weaponDamageMin":19389,"weaponDamageMax":29084,"stats":{"0":1763,"2":2765,"8":870,"11":1385}},"544":{"randPropPoints":3638,"weaponDamageMin":20125,"weaponDamageMax":30189,"stats":{"0":1833,"2":2870,"8":905,"11":1438},"upgradeStep":1}}}, +{"id":104809,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[1026,0,1660,0,0,0,0,0,727,0,0,631,0,0,0,0,0,0,0,0,0,0,20681,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"8":671,"11":585,"22":20222}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"8":698,"11":608,"22":20452},"upgradeStep":1}}}, +{"id":104810,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2213,1315,0,667,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1999,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":613,"7":960,"22":1955}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":640,"7":1000,"22":1977},"upgradeStep":1}}}, +{"id":104811,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,1026,1660,0,0,0,727,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"540":{"randPropPoints":1953,"stats":{"1":947,"2":1541,"6":671,"11":585}},"544":{"randPropPoints":2027,"stats":{"1":986,"2":1599,"6":698,"11":608},"upgradeStep":1}}}, +{"id":104812,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1906,2979,0,0,0,1251,0,0,0,0,1304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":15232,"weaponDamageMax":28289,"weaponSpeed":3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"540":{"randPropPoints":3505,"weaponDamageMin":14138,"weaponDamageMax":26257,"stats":{"1":1763,"2":2765,"6":1158,"11":1207}},"544":{"randPropPoints":3638,"weaponDamageMin":14675,"weaponDamageMax":27254,"stats":{"1":1833,"2":2870,"6":1203,"11":1255},"upgradeStep":1}}}, +{"id":104813,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1906,2979,0,0,0,0,1260,0,0,0,1308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":20890,"weaponDamageMax":31335,"weaponSpeed":3.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"540":{"randPropPoints":3505,"weaponDamageMin":19389,"weaponDamageMax":29084,"stats":{"1":1763,"2":2765,"7":1165,"11":1213}},"544":{"randPropPoints":3638,"weaponDamageMin":20125,"weaponDamageMax":30189,"stats":{"1":1833,"2":2870,"7":1211,"11":1259},"upgradeStep":1}}}, +{"id":104814,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,1746,2979,0,0,0,0,886,0,0,0,1389,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":814,"11":1281,"22":3318}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":849,"11":1334,"22":3355},"upgradeStep":1}}}, +{"id":104815,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,1106,1660,0,0,0,630,0,802,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"6":584,"8":744,"22":2020}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"6":606,"8":772,"22":2043},"upgradeStep":1}}}, +{"id":104816,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1395,0,2213,0,0,0,0,0,1047,0,0,761,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"540":{"randPropPoints":2603,"stats":{"0":1289,"2":2054,"8":968,"11":704,"22":4334}},"544":{"randPropPoints":2702,"stats":{"0":1341,"2":2132,"8":1007,"11":732,"22":4384},"upgradeStep":1}}}, +{"id":104817,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1106,0,1660,0,0,0,0,0,791,0,647,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"8":735,"10":601,"22":2758}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"8":762,"10":624,"22":2790},"upgradeStep":1}}}, +{"id":104818,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1746,0,2979,0,0,0,1224,0,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"6":1127,"11":1078,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"6":1175,"11":1123,"22":5579},"upgradeStep":1}}}, +{"id":104819,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[1106,0,1660,0,0,0,781,0,0,0,0,665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"6":725,"11":617}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"6":752,"11":641},"upgradeStep":1}}}, +{"id":104820,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[771,0,1276,0,0,552,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"5":510,"6":448}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"5":531,"6":466},"upgradeStep":1}}}, +{"id":104821,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,2805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"540":{"randPropPoints":2603,"stats":{"2":2603}},"544":{"randPropPoints":2702,"stats":{"2":2702},"upgradeStep":1}}}, +{"id":104822,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,2213,1315,0,989,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":912,"6":699,"22":1466}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":949,"6":728,"22":1483},"upgradeStep":1}}}, +{"id":104823,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2979,1746,1224,0,1171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1127,"6":1078,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1175,"6":1123,"22":2142},"upgradeStep":1}}}, +{"id":104824,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2979,1746,1319,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1215,"7":929,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1266,"7":968,"22":2636},"upgradeStep":1}}}, +{"id":104825,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104826,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1660,1106,802,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":744,"11":584,"22":1303}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":772,"11":606,"22":1318},"upgradeStep":1}}}, +{"id":104827,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,1660,1026,738,0,614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":680,"6":568}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":708,"6":590},"upgradeStep":1}}}, +{"id":104828,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1660,1026,674,0,0,722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20681,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"4":621,"7":669,"22":20222}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"4":647,"7":695,"22":20452},"upgradeStep":1}}}, +{"id":104829,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2213,1395,0,0,0,1007,0,0,0,831,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"7":931,"11":769,"22":2281}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"7":968,"11":799,"22":2307},"upgradeStep":1}}}, +{"id":104830,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,1660,1106,770,0,0,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":715,"7":634,"22":1452}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":742,"7":658,"22":1468},"upgradeStep":1}}}, +{"id":104831,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2979,1746,978,0,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":900,"6":1232,"22":4616}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":938,"6":1284,"22":4669},"upgradeStep":1}}}, +{"id":104832,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2979,1746,1300,0,1041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1198,"6":958,"22":6304}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1248,"6":999,"22":6376},"upgradeStep":1}}}, +{"id":104833,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104834,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,771,1276,0,0,0,0,544,499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"1":710,"2":1185,"7":502,"8":460}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"1":740,"2":1230,"7":523,"8":479},"upgradeStep":1}}}, +{"id":104835,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1395,2213,0,0,0,0,951,0,0,0,935,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"540":{"randPropPoints":2603,"stats":{"1":1289,"2":2054,"7":881,"11":865,"22":2281}},"544":{"randPropPoints":2702,"stats":{"1":1341,"2":2132,"7":915,"11":899,"22":2307},"upgradeStep":1}}}, +{"id":104836,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,1106,1660,0,0,791,0,647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"5":735,"7":601,"22":1452}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"5":762,"7":624,"22":1468},"upgradeStep":1}}}, +{"id":104837,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1315,2213,0,0,0,831,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":765,"7":873,"22":2597}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":797,"7":909,"22":2626},"upgradeStep":1}}}, +{"id":104838,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1826,2979,0,0,0,1359,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"6":1255,"11":969,"22":4616}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"6":1306,"11":1008,"22":4669},"upgradeStep":1}}}, +{"id":104839,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,1319,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"6":1215,"7":929,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"6":1266,"7":968,"22":5181},"upgradeStep":1}}}, +{"id":104840,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,0,0,736,1002,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"10":677,"11":924,"22":3546}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"10":706,"11":962,"22":3587},"upgradeStep":1}}}, +{"id":104841,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1395,0,2213,0,0,0,0,0,979,879,0,0,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"540":{"randPropPoints":2603,"stats":{"0":1289,"2":2054,"8":905,"9":813,"22":4334}},"544":{"randPropPoints":2702,"stats":{"0":1341,"2":2132,"8":941,"9":845,"22":4384},"upgradeStep":1}}}, +{"id":104842,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[1026,0,1660,0,0,0,717,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"6":661,"7":601}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"6":688,"7":625},"upgradeStep":1}}}, +{"id":104843,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[1026,0,1660,0,0,0,0,0,0,0,566,786,0,0,0,0,0,0,0,0,0,0,20681,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"10":520,"11":728,"22":20222}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"10":542,"11":756,"22":20452},"upgradeStep":1}}}, +{"id":104844,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1660,1106,0,0,0,749,0,0,0,719,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"7":695,"11":668,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"7":721,"11":693,"22":1153},"upgradeStep":1}}}, +{"id":104845,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2979,1746,0,0,1138,1243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1048,"7":1145,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1092,"7":1193,"22":2636},"upgradeStep":1}}}, +{"id":104846,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,1660,1106,802,0,0,0,0,0,0,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":744,"11":584}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":772,"11":606},"upgradeStep":1}}}, +{"id":104847,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1276,771,0,0,536,0,0,0,0,513,0,0,11372,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":3577,"weaponDamageMax":6644,"weaponSpeed":1.9,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"540":{"randPropPoints":1502,"weaponDamageMin":3320,"weaponDamageMax":6167,"stats":{"2":1185,"3":710,"6":495,"11":473,"14":10556}},"544":{"randPropPoints":1559,"weaponDamageMin":3446,"weaponDamageMax":6401,"stats":{"2":1230,"3":740,"6":515,"11":493,"14":10957},"upgradeStep":1}}}, +{"id":104848,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2213,1315,697,0,0,0,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":640,"11":952,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":668,"11":991,"22":2097},"upgradeStep":1}}}, +{"id":104849,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,2979,1826,1359,0,1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2969,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1683,"4":1255,"6":969,"22":2903}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1753,"4":1306,"6":1008,"22":2936},"upgradeStep":1}}}, +{"id":104850,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2213,1315,855,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,2656,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":787,"11":860,"22":2597}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":820,"11":895,"22":2626},"upgradeStep":1}}}, +{"id":104851,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1660,1106,738,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":685,"7":685,"22":2020}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":711,"7":711,"22":2043},"upgradeStep":1}}}, +{"id":104852,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2213,1315,989,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3627,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":912,"6":699,"22":3546}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":949,"6":728,"22":3587},"upgradeStep":1}}}, +{"id":104853,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2213,1395,0,0,0,1007,0,0,0,831,0,0,0,0,0,0,0,0,0,0,4433,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"7":931,"11":769,"22":4334}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"7":968,"11":799,"22":4384},"upgradeStep":1}}}, +{"id":104854,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,771,1276,0,0,0,0,527,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":6778,"weaponDamageMax":12588,"weaponSpeed":1.8,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"540":{"randPropPoints":1502,"weaponDamageMin":6291,"weaponDamageMax":11684,"stats":{"1":710,"2":1185,"7":487,"11":487}},"544":{"randPropPoints":1559,"weaponDamageMin":6530,"weaponDamageMax":12128,"stats":{"1":740,"2":1230,"7":507,"11":507},"upgradeStep":1}}}, +{"id":104855,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,1106,1660,0,0,0,665,781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"6":617,"7":725}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"6":641,"7":752},"upgradeStep":1}}}, +{"id":104856,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,0,902,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":830,"7":826,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":866,"7":860,"22":1648},"upgradeStep":1}}}, +{"id":104857,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,2979,1746,0,0,1204,0,0,0,0,1204,0,0,0,0,0,0,0,0,0,0,2666,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"6":1109,"11":1109,"22":2607}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"6":1155,"11":1155,"22":2636},"upgradeStep":1}}}, +{"id":104858,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,1660,1026,0,590,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"5":544,"7":704}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"5":566,"7":732},"upgradeStep":1}}}, +{"id":104859,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,1660,1026,0,0,0,685,0,0,0,703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"7":631,"11":652}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"7":657,"11":677},"upgradeStep":1}}}, +{"id":104860,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104861,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,0,0,1010,1319,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"10":929,"11":1215,"22":6304}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"10":968,"11":1266,"22":6376},"upgradeStep":1}}}, +{"id":104862,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"540":{"randPropPoints":2603},"544":{"randPropPoints":2702,"upgradeStep":1}}}, +{"id":104863,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[1906,0,2979,0,0,0,0,1130,0,0,0,1385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":20890,"weaponDamageMax":31335,"weaponSpeed":3.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"540":{"randPropPoints":3505,"weaponDamageMin":19389,"weaponDamageMax":29084,"stats":{"0":1763,"2":2765,"7":1044,"11":1285}},"544":{"randPropPoints":3638,"weaponDamageMin":20125,"weaponDamageMax":30189,"stats":{"0":1833,"2":2870,"7":1086,"11":1334},"upgradeStep":1}}}, +{"id":104864,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[1026,0,1660,0,0,0,0,0,727,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"8":671,"11":585}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"8":698,"11":608},"upgradeStep":1}}}, +{"id":104865,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"540":{"randPropPoints":2603,"stats":{"11":1735}},"544":{"randPropPoints":2702,"stats":{"11":1801},"upgradeStep":1}}}, +{"id":104866,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,0,887,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"6":817,"11":849,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"6":851,"11":883,"22":1648},"upgradeStep":1}}}, +{"id":104867,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2979,1906,0,0,1393,1082,0,0,0,0,0,0,11374,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":9574,"weaponDamageMax":14362,"weaponSpeed":3.3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"540":{"randPropPoints":3505,"weaponDamageMin":8886,"weaponDamageMax":13330,"stats":{"2":2765,"3":1763,"6":1288,"7":1004,"14":10557}},"544":{"randPropPoints":3638,"weaponDamageMin":9224,"weaponDamageMax":13837,"stats":{"2":2870,"3":1833,"6":1340,"7":1042,"14":10958},"upgradeStep":1}}}, +{"id":104868,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"540":{"randPropPoints":2603,"stats":{"3":1735}},"544":{"randPropPoints":2702,"stats":{"3":1801},"upgradeStep":1}}}, +{"id":104869,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,1106,1660,0,0,0,0,749,0,0,0,719,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"7":695,"11":668,"22":1452}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"7":721,"11":693,"22":1468},"upgradeStep":1}}}, +{"id":104870,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1106,1660,0,0,0,0,719,0,0,0,749,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"7":668,"11":695,"22":2020}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"7":693,"11":721,"22":2043},"upgradeStep":1}}}, +{"id":104871,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2213,1395,0,0,0,1007,0,0,0,831,0,0,0,0,0,0,0,0,0,0,3246,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1289,"7":931,"11":769,"22":3174}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1341,"7":968,"11":799,"22":3210},"upgradeStep":1}}}, +{"id":104872,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,0,0,919,887,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"10":849,"11":817,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"10":883,"11":851,"22":3985},"upgradeStep":1}}}, +{"id":104873,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[1026,0,1660,0,0,0,0,722,674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"540":{"randPropPoints":1953,"stats":{"0":947,"2":1541,"7":669,"8":621}},"544":{"randPropPoints":2027,"stats":{"0":986,"2":1599,"7":695,"8":647},"upgradeStep":1}}}, +{"id":104874,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[771,0,1276,0,0,0,0,536,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"7":495,"11":473}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"7":515,"11":493},"upgradeStep":1}}}, +{"id":104875,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[1106,0,1660,0,0,0,0,0,738,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"8":685,"10":685}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"8":711,"10":711},"upgradeStep":1}}}, +{"id":104876,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,1906,2979,0,0,0,1380,1121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":15232,"weaponDamageMax":28289,"weaponSpeed":3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"540":{"randPropPoints":3505,"weaponDamageMin":14138,"weaponDamageMax":26257,"stats":{"1":1763,"2":2765,"6":1278,"7":1038}},"544":{"randPropPoints":3638,"weaponDamageMin":14675,"weaponDamageMax":27254,"stats":{"1":1833,"2":2870,"6":1328,"7":1079},"upgradeStep":1}}}, +{"id":104877,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,1026,1660,0,0,0,0,685,0,0,0,696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"540":{"randPropPoints":1953,"stats":{"1":947,"2":1541,"7":635,"11":641}},"544":{"randPropPoints":2027,"stats":{"1":986,"2":1599,"7":659,"11":668},"upgradeStep":1}}}, +{"id":104878,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,771,1276,0,0,0,527,0,0,0,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"1":710,"2":1185,"6":487,"11":487}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"1":740,"2":1230,"6":507,"11":507},"upgradeStep":1}}}, +{"id":104879,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1660,1106,0,0,738,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"6":685,"7":685,"22":1140}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"6":711,"7":711,"22":1153},"upgradeStep":1}}}, +{"id":104880,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1276,771,0,536,513,0,0,0,0,0,0,0,11372,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":3389,"weaponDamageMax":6294,"weaponSpeed":1.8,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"540":{"randPropPoints":1502,"weaponDamageMin":3145,"weaponDamageMax":5842,"stats":{"2":1185,"3":710,"5":495,"6":473,"14":10556}},"544":{"randPropPoints":1559,"weaponDamageMin":3265,"weaponDamageMax":6064,"stats":{"2":1230,"3":740,"5":515,"6":493,"14":10957},"upgradeStep":1}}}, +{"id":104881,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,1660,1106,0,683,0,0,0,0,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"5":634,"11":715}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"5":658,"11":742},"upgradeStep":1}}}, +{"id":104882,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2979,1746,978,0,0,1337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3393,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":900,"7":1232,"22":3318}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":938,"7":1284,"22":3355},"upgradeStep":1}}}, +{"id":104883,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2979,1746,1319,0,0,1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1215,"7":929,"22":4616}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1266,"7":968,"22":4669},"upgradeStep":1}}}, +{"id":104884,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,2213,1315,0,0,0,775,0,0,0,973,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"7":715,"11":896,"22":3940}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"7":744,"11":933,"22":3985},"upgradeStep":1}}}, +{"id":104885,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"540":{"randPropPoints":2603,"stats":{"0":1735}},"544":{"randPropPoints":2702,"stats":{"0":1801},"upgradeStep":1}}}, +{"id":104886,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[771,0,1276,0,0,0,527,0,527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":9790,"weaponDamageMax":18183,"weaponSpeed":2.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"540":{"randPropPoints":1502,"weaponDamageMin":9087,"weaponDamageMax":16877,"stats":{"0":710,"2":1185,"6":487,"8":487}},"544":{"randPropPoints":1559,"weaponDamageMin":9432,"weaponDamageMax":17518,"stats":{"0":740,"2":1230,"6":507,"8":507},"upgradeStep":1}}}, +{"id":104887,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,1906,2979,0,0,0,1385,0,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":19149,"weaponDamageMax":28724,"weaponSpeed":3.3,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"540":{"randPropPoints":3505,"weaponDamageMin":17773,"weaponDamageMax":26661,"stats":{"1":1763,"2":2765,"6":1285,"11":1044}},"544":{"randPropPoints":3638,"weaponDamageMin":18448,"weaponDamageMax":27673,"stats":{"1":1833,"2":2870,"6":1334,"11":1086},"upgradeStep":1}}}, +{"id":104888,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1315,2213,0,0,0,947,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":873,"7":765,"22":1866}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":909,"7":797,"22":1887},"upgradeStep":1}}}, +{"id":104889,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,1746,2979,0,0,0,0,1300,0,0,0,1041,0,0,0,0,0,0,0,0,0,0,2757,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"7":1198,"11":958,"22":2696}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"7":1248,"11":999,"22":2726},"upgradeStep":1}}}, +{"id":104890,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1826,2979,0,0,0,0,1429,0,0,0,926,0,0,0,0,0,0,0,0,0,0,4721,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"540":{"randPropPoints":3505,"stats":{"1":1683,"2":2765,"7":1321,"11":854,"22":4616}},"544":{"randPropPoints":3638,"stats":{"1":1753,"2":2870,"7":1374,"11":889,"22":4669},"upgradeStep":1}}}, +{"id":104891,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1746,2979,0,0,0,1262,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"540":{"randPropPoints":3505,"stats":{"1":1603,"2":2765,"6":1163,"11":1018,"22":3751}},"544":{"randPropPoints":3638,"stats":{"1":1673,"2":2870,"6":1212,"11":1061,"22":3793},"upgradeStep":1}}}, +{"id":104892,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1315,2213,0,0,0,1002,0,0,0,0,736,0,0,0,0,0,0,0,0,0,0,3541,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":924,"11":677,"22":3462}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":962,"11":706,"22":3502},"upgradeStep":1}}}, +{"id":104893,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1746,0,2979,0,0,0,0,1224,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,5642,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"7":1127,"11":1078,"22":5516}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"7":1175,"11":1123,"22":5579},"upgradeStep":1}}}, +{"id":104894,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1315,0,2213,0,0,0,1028,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"6":948,"11":635,"22":4728}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"6":988,"11":662,"22":4782},"upgradeStep":1}}}, +{"id":104896,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1746,0,2979,0,0,0,0,0,886,0,1389,0,0,0,0,0,0,0,0,0,0,0,5239,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"540":{"randPropPoints":3505,"stats":{"0":1603,"2":2765,"8":814,"10":1281,"22":5122}},"544":{"randPropPoints":3638,"stats":{"0":1673,"2":2870,"8":849,"10":1334,"22":5181},"upgradeStep":1}}}, +{"id":104897,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1906,0,2979,0,0,0,1145,0,0,0,0,1356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"weaponDamageMin":20890,"weaponDamageMax":31335,"weaponSpeed":3.6,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"540":{"randPropPoints":3505,"weaponDamageMin":19389,"weaponDamageMax":29084,"stats":{"0":1763,"2":2765,"6":1062,"11":1254}},"544":{"randPropPoints":3638,"weaponDamageMin":20125,"weaponDamageMax":30189,"stats":{"0":1833,"2":2870,"6":1103,"11":1304},"upgradeStep":1}}}, +{"id":104898,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,2805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"540":{"randPropPoints":2603,"stats":{"2":2603}},"544":{"randPropPoints":2702,"stats":{"2":2702},"upgradeStep":1}}}, +{"id":104899,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2213,1315,855,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":787,"11":860,"22":1466}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":820,"11":895,"22":1483},"upgradeStep":1}}}, +{"id":104900,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2979,1746,0,0,0,1106,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"7":1018,"11":1163,"22":2118}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"7":1061,"11":1212,"22":2142},"upgradeStep":1}}}, +{"id":104901,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"540":{"randPropPoints":2603,"stats":{"7":1735}},"544":{"randPropPoints":2702,"stats":{"7":1801},"upgradeStep":1}}}, +{"id":104902,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1276,771,536,0,0,513,0,0,0,0,0,0,11372,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1618,"weaponDamageMin":4518,"weaponDamageMax":8392,"weaponSpeed":2.4,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"540":{"randPropPoints":1502,"weaponDamageMin":4194,"weaponDamageMax":7789,"stats":{"2":1185,"3":710,"4":495,"7":473,"14":10556}},"544":{"randPropPoints":1559,"weaponDamageMin":4353,"weaponDamageMax":8085,"stats":{"2":1230,"3":740,"4":515,"7":493,"14":10957},"upgradeStep":1}}}, +{"id":104903,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1660,1026,0,0,0,679,0,0,0,709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":947,"7":628,"11":655}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":986,"7":653,"11":681},"upgradeStep":1}}}, +{"id":104904,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,2213,1315,855,0,0,0,0,0,0,933,0,0,0,0,0,0,0,0,0,0,1909,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":787,"11":860,"22":1866}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":820,"11":895,"22":1887},"upgradeStep":1}}}, +{"id":104905,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2213,1315,903,0,0,903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2545,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":833,"7":833,"22":2488}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":867,"7":867,"22":2517},"upgradeStep":1}}}, +{"id":104906,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2979,1746,1224,0,0,0,0,0,0,1171,0,0,0,0,0,0,0,0,0,0,3836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1127,"11":1078,"22":3751}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1175,"11":1123,"22":3793},"upgradeStep":1}}}, +{"id":104907,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2979,1746,1262,0,0,0,0,0,0,1106,0,0,0,0,0,0,0,0,0,0,6448,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3776,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"540":{"randPropPoints":3505,"stats":{"2":2765,"3":1603,"4":1163,"11":1018,"22":6304}},"544":{"randPropPoints":3638,"stats":{"2":2870,"3":1673,"4":1212,"11":1061,"22":6376},"upgradeStep":1}}}, +{"id":104908,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2213,1315,1002,0,0,736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4836,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":924,"7":677,"22":4728}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":962,"7":706,"22":4782},"upgradeStep":1}}}, +{"id":104909,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,989,1484,0,0,0,0,659,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":612,"11":612}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":635,"11":635},"upgradeStep":1}}}, +{"id":104910,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,1695,2663,0,0,0,1285,0,883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":17123,"weaponDamageMax":25685,"weaponSpeed":3.3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"528":{"randPropPoints":3134,"weaponDamageMin":15893,"weaponDamageMax":23840,"stats":{"1":1568,"2":2472,"6":1189,"8":819}},"532":{"randPropPoints":3253,"weaponDamageMin":16497,"weaponDamageMax":24746,"stats":{"1":1631,"2":2566,"6":1236,"8":851},"upgradeStep":1}}}, +{"id":104911,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,1116,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1027,"7":897,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1071,"7":936,"22":2634},"upgradeStep":1}}}, +{"id":104912,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1239,1979,0,0,723,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"5":668,"6":844,"22":3066}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"5":695,"6":877,"22":3102},"upgradeStep":1}}}, +{"id":104913,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,735,0,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":682,"7":494,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":708,"7":512,"22":2696},"upgradeStep":1}}}, +{"id":104914,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,862,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":792,"7":1089,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":826,"7":1135,"22":6161},"upgradeStep":1}}}, +{"id":104915,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,793,0,0,0,797,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"7":732,"11":733,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"7":762,"11":764,"22":3851},"upgradeStep":1}}}, +{"id":104916,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,745,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"5":688,"10":832,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"5":716,"10":865,"22":4236},"upgradeStep":1}}}, +{"id":104917,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,0,0,0,659,659,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"9":612,"10":612,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"9":635,"10":635,"22":2696},"upgradeStep":1}}}, +{"id":104918,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,588,922,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"9":540,"10":851,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"9":564,"10":886,"22":4621},"upgradeStep":1}}}, +{"id":104919,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[681,0,1142,0,0,0,0,0,0,467,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"9":431,"10":431}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"9":449,"10":449},"upgradeStep":1}}}, +{"id":104920,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,835,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":768,"6":672,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":801,"6":700,"22":1592},"upgradeStep":1}}}, +{"id":104921,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1159,876,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":807,"6":617,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":840,"6":643,"22":1911},"upgradeStep":1}}}, +{"id":104922,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,1064,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":979,"11":979,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":1021,"11":1021,"22":2070},"upgradeStep":1}}}, +{"id":104923,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1484,989,0,659,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":612,"7":612,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":635,"7":635,"22":1274},"upgradeStep":1}}}, +{"id":104924,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":104925,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,1484,909,679,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":626,"11":463}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":652,"11":481},"upgradeStep":1}}}, +{"id":104926,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,1979,1239,831,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":768,"7":784,"22":2203}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":799,"7":815,"22":2229},"upgradeStep":1}}}, +{"id":104927,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1484,989,501,0,752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":465,"6":698,"22":1402}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":483,"6":724,"22":1419},"upgradeStep":1}}}, +{"id":104928,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,1979,1159,783,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":720,"6":752,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":751,"6":783,"22":2820},"upgradeStep":1}}}, +{"id":104929,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,1979,1159,756,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":696,"11":760,"22":3425}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":725,"11":792,"22":3466},"upgradeStep":1}}}, +{"id":104930,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,1979,1239,831,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Immerseus"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":768,"7":784,"22":4187}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":799,"7":815,"22":4236},"upgradeStep":1}}}, +{"id":104931,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,1695,2663,0,0,860,0,1309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":15566,"weaponDamageMax":23350,"weaponSpeed":3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"528":{"randPropPoints":3134,"weaponDamageMin":14448,"weaponDamageMax":21673,"stats":{"1":1568,"2":2472,"5":796,"7":1213}},"532":{"randPropPoints":3253,"weaponDamageMin":14997,"weaponDamageMax":22496,"stats":{"1":1631,"2":2566,"5":828,"7":1260},"upgradeStep":1}}}, +{"id":104932,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,681,1142,0,0,405,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"5":373,"6":465}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"5":389,"6":484},"upgradeStep":1}}}, +{"id":104933,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1239,1979,0,0,745,0,899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"5":688,"7":832,"22":2203}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"5":716,"7":865,"22":2229},"upgradeStep":1}}}, +{"id":104934,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1159,1979,0,0,0,938,0,572,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":867,"8":524,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":902,"8":548,"22":2820},"upgradeStep":1}}}, +{"id":104935,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,863,0,691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":796,"7":636,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":829,"7":663,"22":3466},"upgradeStep":1}}}, +{"id":104936,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,0,756,0,0,0,825,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"7":696,"11":760,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"7":725,"11":792,"22":4621},"upgradeStep":1}}}, +{"id":104937,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,809,772,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"9":744,"10":712,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"9":776,"10":741,"22":3851},"upgradeStep":1}}}, +{"id":104938,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[989,0,1484,0,0,563,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":522,"6":665}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":542,"6":690},"upgradeStep":1}}}, +{"id":104939,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,0,0,0,595,0,698,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"8":552,"10":648,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"8":573,"10":672,"22":1274},"upgradeStep":1}}}, +{"id":104940,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,2508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"528":{"randPropPoints":2328,"stats":{"2":2328}},"532":{"randPropPoints":2416,"stats":{"2":2416},"upgradeStep":1}}}, +{"id":104941,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,1979,1239,0,620,0,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"5":572,"7":899,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"5":596,"7":934,"22":1751},"upgradeStep":1}}}, +{"id":104942,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2663,1535,0,779,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"5":715,"7":1133,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"5":747,"7":1180,"22":2547},"upgradeStep":1}}}, +{"id":104943,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,1979,1159,0,629,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":578,"11":829,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":603,"11":863,"22":1911},"upgradeStep":1}}}, +{"id":104944,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1484,989,689,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":639,"11":567,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":663,"11":588,"22":1114},"upgradeStep":1}}}, +{"id":104945,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,1484,989,0,707,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":657,"6":537}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":681,"6":557},"upgradeStep":1}}}, +{"id":104946,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,703,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":650,"7":439}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":676,"7":457},"upgradeStep":1}}}, +{"id":104947,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,1979,1159,838,0,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":772,"6":676,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":804,"6":704,"22":2432},"upgradeStep":1}}}, +{"id":104948,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,1979,1239,831,0,0,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":768,"7":784,"22":3066}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":799,"7":815,"22":3102},"upgradeStep":1}}}, +{"id":104949,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,1979,1159,777,0,813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":716,"6":749,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":746,"6":780,"22":3384},"upgradeStep":1}}}, +{"id":104950,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,1979,1159,797,0,0,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":733,"7":732,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":764,"7":762,"22":3851},"upgradeStep":1}}}, +{"id":104951,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2663,1535,779,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"The Fallen Protectors"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":715,"6":1133,"22":4948}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":747,"6":1180,"22":5006},"upgradeStep":1}}}, +{"id":104952,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,681,1142,0,0,417,0,0,0,0,0,497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":626,"2":1059,"5":385,"11":458}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":653,"2":1100,"5":401,"11":477},"upgradeStep":1}}}, +{"id":104953,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,909,1484,0,0,688,485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"5":634,"6":449}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"5":660,"6":467},"upgradeStep":1}}}, +{"id":104954,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,807,1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":740,"7":1118,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":773,"7":1165,"22":3242},"upgradeStep":1}}}, +{"id":104955,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,654,892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"5":601,"6":823,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"5":627,"6":856,"22":2026},"upgradeStep":1}}}, +{"id":104956,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,1615,2663,0,0,0,1156,0,0,0,0,1016,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1067,"11":937,"22":3902}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1111,"11":976,"22":3948},"upgradeStep":1}}}, +{"id":104957,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1159,1979,0,0,0,0,799,0,0,0,799,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":736,"11":736,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":767,"11":767,"22":3384},"upgradeStep":1}}}, +{"id":104958,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,643,0,0,0,0,669,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"6":597,"11":621,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"6":619,"11":645,"22":2696},"upgradeStep":1}}}, +{"id":104959,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,1064,1064,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"9":979,"10":979,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"9":1021,"10":1021,"22":5006},"upgradeStep":1}}}, +{"id":104960,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,0,0,726,0,0,0,547,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"7":674,"11":508,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"7":699,"11":527,"22":1274},"upgradeStep":1}}}, +{"id":104961,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":104962,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[681,0,1142,0,0,504,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"5":465,"11":373}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"5":484,"11":389},"upgradeStep":1}}}, +{"id":104963,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1484,989,0,689,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":639,"11":567,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":663,"11":588,"22":1114},"upgradeStep":1}}}, +{"id":104964,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,675,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":620,"6":812,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":647,"6":845,"22":1592},"upgradeStep":1}}}, +{"id":104965,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,1979,1159,876,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":807,"6":617,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":840,"6":643,"22":1433},"upgradeStep":1}}}, +{"id":104966,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,1979,1159,0,0,756,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":696,"11":760,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":725,"11":792,"22":1911},"upgradeStep":1}}}, +{"id":104967,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,1484,989,0,627,0,0,0,0,0,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":582,"11":630}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":604,"11":654},"upgradeStep":1}}}, +{"id":104968,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1484,909,515,0,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":473,"11":641,"22":19533}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":493,"11":665,"22":19762},"upgradeStep":1}}}, +{"id":104969,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,1979,1239,766,0,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":708,"6":820,"22":2203}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":736,"6":852,"22":2229},"upgradeStep":1}}}, +{"id":104970,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,1979,1159,0,0,797,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":733,"11":732,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":764,"11":762,"22":2026},"upgradeStep":1}}}, +{"id":104971,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1484,989,743,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":690,"6":479,"22":1951}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":716,"6":497,"22":1974},"upgradeStep":1}}}, +{"id":104972,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,2663,1615,1206,0,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3993,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1114,"6":858,"22":3902}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1159,"6":893,"22":3948},"upgradeStep":1}}}, +{"id":104973,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1484,989,707,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Norushen"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":657,"6":537,"22":2664}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":681,"6":557,"22":2696},"upgradeStep":1}}}, +{"id":104974,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":104975,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,1484,989,669,0,0,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":621,"7":597}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":645,"7":619},"upgradeStep":1}}}, +{"id":104976,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":104977,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,0,0,1090,0,0,0,0,1186,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"6":1007,"11":1099,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"6":1048,"11":1142,"14":9798},"upgradeStep":1}}}, +{"id":104978,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2663,1535,1064,0,0,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":979,"11":979,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1021,"11":1021,"22":2634},"upgradeStep":1}}}, +{"id":104979,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,2663,1535,1082,0,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":995,"7":951,"22":4948}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1038,"7":992,"22":5006},"upgradeStep":1}}}, +{"id":104980,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1239,0,1979,0,0,831,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"5":768,"6":784,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"5":799,"6":815,"22":4236},"upgradeStep":1}}}, +{"id":104981,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[1695,0,2663,0,0,0,1080,1172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"6":1001,"7":1083}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"6":1040,"7":1127},"upgradeStep":1}}}, +{"id":104982,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[989,0,1484,0,0,743,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":690,"9":479}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":716,"9":497},"upgradeStep":1}}}, +{"id":104983,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,0,595,643,0,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Sha of Pride"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"9":548,"10":596,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"9":571,"10":619,"22":19762},"upgradeStep":1}}}, +{"id":104984,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,1695,2663,0,0,0,0,859,0,0,0,1309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1568,"2":2472,"7":795,"11":1213}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1631,"2":2566,"7":827,"11":1260},"upgradeStep":1}}}, +{"id":104985,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,909,1484,0,0,0,0,0,605,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"8":557,"11":581}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"8":581,"11":603},"upgradeStep":1}}}, +{"id":104986,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1239,1979,0,0,0,718,0,908,0,0,0,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"6":665,"8":839,"22":2203}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"6":691,"8":872,"22":2229},"upgradeStep":1}}}, +{"id":104987,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,797,0,0,0,0,793,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":733,"11":732,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":764,"11":762,"22":2026},"upgradeStep":1}}}, +{"id":104988,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1159,1979,0,0,851,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"5":784,"7":656,"22":2508}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"5":817,"7":684,"22":2538},"upgradeStep":1}}}, +{"id":104989,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,989,1484,0,0,707,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"5":657,"7":537,"22":1951}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"5":681,"7":557,"22":1974},"upgradeStep":1}}}, +{"id":104990,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":995,"11":951,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1038,"11":992,"22":5006},"upgradeStep":1}}}, +{"id":104991,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[989,0,1484,0,0,717,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":665,"9":522,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":690,"9":542,"22":2696},"upgradeStep":1}}}, +{"id":104992,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,670,0,0,0,0,0,876,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":617,"11":807,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":643,"11":840,"22":4621},"upgradeStep":1}}}, +{"id":104993,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":104994,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[909,0,1484,0,0,0,0,0,0,627,605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"9":581,"10":557}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"9":603,"10":581},"upgradeStep":1}}}, +{"id":104995,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,1979,1239,0,0,0,845,0,0,0,825,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":781,"11":764,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":812,"11":794,"22":1751},"upgradeStep":1}}}, +{"id":104996,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,1484,989,0,726,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":674,"6":508,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":699,"6":527,"22":1114},"upgradeStep":1}}}, +{"id":104997,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,779,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"5":715,"7":1133,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"5":747,"7":1180,"22":2070},"upgradeStep":1}}}, +{"id":104998,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,1979,1239,920,0,0,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":850,"7":645,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":884,"7":671,"22":1751},"upgradeStep":1}}}, +{"id":104999,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,1979,1159,799,0,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":736,"7":736,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":767,"7":767,"22":1911},"upgradeStep":1}}}, +{"id":105000,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,1484,989,0,659,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":612,"7":612}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":635,"7":635},"upgradeStep":1}}}, +{"id":105001,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,1333,0,0,0,0,0,0,835,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"4":1237,"11":771,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"4":1284,"11":803,"14":9798},"upgradeStep":1}}}, +{"id":105002,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,1979,1159,876,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":807,"6":617,"22":1803}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":840,"6":643,"22":1824},"upgradeStep":1}}}, +{"id":105003,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,1979,1159,0,0,860,0,0,0,0,686,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":791,"11":633,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":824,"11":659,"22":2820},"upgradeStep":1}}}, +{"id":105004,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1484,989,689,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":639,"11":567,"22":2664}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":663,"11":588,"22":2696},"upgradeStep":1}}}, +{"id":105005,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,2663,1615,1206,0,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Galakras"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1114,"6":858,"22":5328}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1159,"6":893,"22":5391},"upgradeStep":1}}}, +{"id":105006,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,681,1142,0,0,0,475,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"6":438,"7":419}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"6":456,"7":436},"upgradeStep":1}}}, +{"id":105007,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,989,1484,0,0,0,563,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"6":522,"8":665,"22":1402}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"6":542,"8":690,"22":1419},"upgradeStep":1}}}, +{"id":105008,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,888,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":818,"11":597,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":852,"11":623,"22":2432},"upgradeStep":1}}}, +{"id":105009,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1239,1979,0,0,0,0,0,809,0,0,861,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"8":748,"11":797,"22":3066}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"8":778,"11":828,"22":3102},"upgradeStep":1}}}, +{"id":105010,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1159,1979,0,0,0,0,906,0,0,0,604,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":835,"11":556,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":870,"11":580,"22":2820},"upgradeStep":1}}}, +{"id":105011,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,0,0,799,0,0,0,799,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"7":736,"11":736,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"7":767,"11":767,"22":3466},"upgradeStep":1}}}, +{"id":105012,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,547,0,726,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"6":508,"8":674,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"6":527,"8":699,"22":2696},"upgradeStep":1}}}, +{"id":105013,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,847,707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"6":780,"7":652,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"6":813,"7":679,"22":3851},"upgradeStep":1}}}, +{"id":105014,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,1064,1064,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"9":979,"10":979,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"9":1021,"10":1021,"22":6161},"upgradeStep":1}}}, +{"id":105015,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[989,0,1484,0,0,679,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":630,"11":582}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":654,"11":604},"upgradeStep":1}}}, +{"id":105016,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"528":{"randPropPoints":2328,"stats":{"9":1552}},"532":{"randPropPoints":2416,"stats":{"9":1611},"upgradeStep":1}}}, +{"id":105017,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,1979,1159,0,863,0,0,0,0,0,691,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":796,"11":636,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":829,"11":663,"22":1433},"upgradeStep":1}}}, +{"id":105018,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,2663,1615,0,0,0,1122,0,0,0,1074,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"7":1035,"11":991,"22":2203}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"7":1078,"11":1032,"22":2229},"upgradeStep":1}}}, +{"id":105019,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1484,989,698,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":648,"7":552,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":672,"7":573,"22":1114},"upgradeStep":1}}}, +{"id":105020,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,872,0,0,666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":802,"7":613,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":836,"7":639,"22":1592},"upgradeStep":1}}}, +{"id":105021,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2663,1535,1133,0,947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1043,"6":871,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1087,"6":908,"22":2547},"upgradeStep":1}}}, +{"id":105022,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,1484,909,625,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":575,"7":551}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":599,"7":572},"upgradeStep":1}}}, +{"id":105023,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,0,0,619,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"6":572,"7":494}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"6":595,"7":514},"upgradeStep":1}}}, +{"id":105024,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1484,989,717,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":665,"11":522,"22":1402}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":690,"11":542,"22":1419},"upgradeStep":1}}}, +{"id":105025,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,1979,1239,766,0,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":708,"6":820,"22":3066}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":736,"6":852,"22":3102},"upgradeStep":1}}}, +{"id":105026,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1484,989,679,0,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":630,"11":582,"22":1951}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":654,"11":604,"22":1974},"upgradeStep":1}}}, +{"id":105027,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,1979,1239,766,0,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Iron Juggernaut"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":708,"6":820,"22":4187}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":736,"6":852,"22":4236},"upgradeStep":1}}}, +{"id":105028,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,989,1484,0,0,0,0,579,0,0,0,707,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":537,"11":657,"22":1259}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":557,"11":681,"22":1274},"upgradeStep":1}}}, +{"id":105029,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105030,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1159,1979,0,0,851,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"5":784,"7":656,"22":1803}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"5":817,"7":684,"22":1824},"upgradeStep":1}}}, +{"id":105031,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,1615,2663,0,0,0,1122,0,0,0,0,1074,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1035,"11":991,"22":2804}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1078,"11":1032,"22":2837},"upgradeStep":1}}}, +{"id":105032,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1535,2663,0,0,0,0,918,0,0,0,1150,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":844,"11":1059,"22":3623}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":881,"11":1103,"22":3666},"upgradeStep":1}}}, +{"id":105033,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,0,845,825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"6":781,"7":764,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"6":812,"7":794,"22":4236},"upgradeStep":1}}}, +{"id":105034,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,1133,0,0,0,0,947,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":1043,"11":871,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":1087,"11":908,"22":6161},"upgradeStep":1}}}, +{"id":105035,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,838,0,0,0,0,0,734,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"5":772,"11":676,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"5":804,"11":704,"22":3466},"upgradeStep":1}}}, +{"id":105036,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[909,0,1484,0,0,671,0,0,0,0,0,516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":618,"11":478}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":644,"11":496},"upgradeStep":1}}}, +{"id":105037,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[681,0,1142,0,0,0,0,0,497,0,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"8":458,"10":385}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"8":477,"10":401},"upgradeStep":1}}}, +{"id":105038,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[909,0,1484,0,0,531,0,0,0,682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"5":488,"9":632}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"5":509,"9":656},"upgradeStep":1}}}, +{"id":105039,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,1979,1239,0,0,723,0,0,0,0,911,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"6":668,"11":844,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"6":695,"11":877,"22":1751},"upgradeStep":1}}}, +{"id":105040,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2663,1535,1166,0,0,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1074,"7":818,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1119,"7":853,"22":2070},"upgradeStep":1}}}, +{"id":105041,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,1484,989,0,752,0,501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":698,"7":465}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":724,"7":483},"upgradeStep":1}}}, +{"id":105042,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105043,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1142,681,357,0,0,0,0,0,0,532,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":4040,"weaponDamageMax":7504,"weaponSpeed":2.4,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3750,"weaponDamageMax":6965,"stats":{"2":1059,"3":626,"4":329,"11":491,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3893,"weaponDamageMax":7230,"stats":{"2":1100,"3":653,"4":343,"11":511,"14":9797},"upgradeStep":1}}}, +{"id":105044,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,2663,1535,0,0,1034,0,0,0,0,1082,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":951,"11":995,"22":2604}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":992,"11":1038,"22":2634},"upgradeStep":1}}}, +{"id":105045,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,1979,1159,876,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":807,"6":617,"22":2508}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":840,"6":643,"22":2538},"upgradeStep":1}}}, +{"id":105046,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,1979,1159,851,0,0,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":784,"7":656,"22":3344}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":817,"7":684,"22":3384},"upgradeStep":1}}}, +{"id":105047,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1484,989,659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":612,"7":612,"22":2664}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":635,"7":635,"22":2696},"upgradeStep":1}}}, +{"id":105048,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,1979,1159,799,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Kor'kron Dark Shaman"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":736,"6":736,"22":4567}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":767,"6":767,"22":4621},"upgradeStep":1}}}, +{"id":105049,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,681,1142,0,0,0,490,0,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":626,"2":1059,"6":452,"8":396}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":653,"2":1100,"6":470,"8":412},"upgradeStep":1}}}, +{"id":105050,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,1979,1239,745,0,0,0,0,0,0,899,0,0,0,0,0,0,0,0,0,0,1772,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"4":688,"11":832,"22":1731}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"4":716,"11":865,"22":1751},"upgradeStep":1}}}, +{"id":105051,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105052,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1142,681,0,0,497,417,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3704,"weaponDamageMax":6879,"weaponSpeed":2.2,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3438,"weaponDamageMax":6385,"stats":{"2":1059,"3":626,"6":458,"7":385,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3568,"weaponDamageMax":6627,"stats":{"2":1100,"3":653,"6":477,"7":401,"14":9797},"upgradeStep":1}}}, +{"id":105053,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1159,1979,0,0,0,0,799,0,0,0,799,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"7":736,"11":736,"22":2404}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"7":767,"11":767,"22":2432},"upgradeStep":1}}}, +{"id":105054,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,2663,1535,1082,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":995,"6":951,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1038,"6":992,"22":3242},"upgradeStep":1}}}, +{"id":105055,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1239,1979,0,0,0,782,870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"6":724,"7":804,"22":3066}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"6":752,"7":836,"22":3102},"upgradeStep":1}}}, +{"id":105056,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2663,1535,779,0,1229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":715,"6":1133,"22":3623}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":747,"6":1180,"22":3666},"upgradeStep":1}}}, +{"id":105057,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[1695,0,2663,0,0,0,0,0,835,0,0,1333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"8":771,"11":1237}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"8":803,"11":1284},"upgradeStep":1}}}, +{"id":105058,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,643,0,0,563,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"8":593,"11":521,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"8":617,"11":541,"22":19762},"upgradeStep":1}}}, +{"id":105059,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,1979,1159,0,588,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1933,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"General Nazgrim"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":540,"7":851,"22":1888}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":564,"7":886,"22":1911},"upgradeStep":1}}}, +{"id":105060,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,909,1484,0,0,0,643,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"6":593,"11":521}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"6":617,"11":541},"upgradeStep":1}}}, +{"id":105061,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,1695,2663,0,0,0,1114,0,0,0,0,1162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1568,"2":2472,"6":1031,"11":1075}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1631,"2":2566,"6":1072,"11":1118},"upgradeStep":1}}}, +{"id":105062,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,1695,2663,0,0,0,0,1120,0,0,0,1168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"1":1568,"2":2472,"7":1035,"11":1083}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"1":1631,"2":2566,"7":1077,"11":1125},"upgradeStep":1}}}, +{"id":105063,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,1535,2663,0,0,0,0,779,0,0,0,1229,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":715,"11":1133,"22":3205}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":747,"11":1180,"22":3242},"upgradeStep":1}}}, +{"id":105064,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,989,1484,0,0,0,563,0,717,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"6":522,"8":665,"22":1951}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"6":542,"8":690,"22":1974},"upgradeStep":1}}}, +{"id":105065,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,931,0,0,677,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"8":861,"11":626,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"8":895,"11":651,"22":4236},"upgradeStep":1}}}, +{"id":105066,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[989,0,1484,0,0,0,0,0,707,0,579,0,0,0,0,0,0,0,0,0,0,0,2727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"8":657,"10":537,"22":2664}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"8":681,"10":557,"22":2696},"upgradeStep":1}}}, +{"id":105067,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[1535,0,2663,0,0,0,1082,0,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":995,"11":951,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":1038,"11":992,"22":5391},"upgradeStep":1}}}, +{"id":105068,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[989,0,1484,0,0,0,698,0,0,0,0,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"6":648,"11":552}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"6":672,"11":573},"upgradeStep":1}}}, +{"id":105069,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[681,0,1142,0,0,490,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"5":452,"6":396}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"5":470,"6":412},"upgradeStep":1}}}, +{"id":105070,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,2508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"528":{"randPropPoints":2328,"stats":{"2":2328}},"532":{"randPropPoints":2416,"stats":{"2":2416},"upgradeStep":1}}}, +{"id":105071,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,1979,1159,0,876,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":807,"6":617,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":840,"6":643,"22":1433},"upgradeStep":1}}}, +{"id":105072,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,2663,1535,1082,0,1034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":995,"6":951,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1038,"6":992,"22":2070},"upgradeStep":1}}}, +{"id":105073,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,2663,1535,1166,0,0,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1074,"7":818,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1119,"7":853,"22":2547},"upgradeStep":1}}}, +{"id":105074,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105075,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1484,989,717,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":665,"11":522,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":690,"11":542,"22":1274},"upgradeStep":1}}}, +{"id":105076,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,1484,909,653,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":601,"6":506}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":626,"6":526},"upgradeStep":1}}}, +{"id":105077,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1484,909,595,0,0,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"4":548,"7":596,"22":19533}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"4":571,"7":619,"22":19762},"upgradeStep":1}}}, +{"id":105078,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,1979,1239,0,0,0,895,0,0,0,739,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":828,"11":684,"22":2203}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":861,"11":711,"22":2229},"upgradeStep":1}}}, +{"id":105079,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,1484,989,689,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":639,"7":567,"22":1402}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":663,"7":588,"22":1419},"upgradeStep":1}}}, +{"id":105080,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2663,1535,862,0,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":792,"6":1089,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":826,"6":1135,"22":4511},"upgradeStep":1}}}, +{"id":105081,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2663,1535,1150,0,918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Malkorok"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1059,"6":844,"22":6090}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1103,"6":881,"22":6161},"upgradeStep":1}}}, +{"id":105082,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105083,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,681,1142,0,0,0,0,482,442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"7":445,"8":407}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"7":463,"8":424},"upgradeStep":1}}}, +{"id":105084,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1239,1979,0,0,0,0,847,0,0,0,831,0,0,0,0,0,0,0,0,0,0,2255,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"528":{"randPropPoints":2328,"stats":{"1":1144,"2":1837,"7":784,"11":768,"22":2203}},"532":{"randPropPoints":2416,"stats":{"1":1191,"2":1906,"7":815,"11":799,"22":2229},"upgradeStep":1}}}, +{"id":105085,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,989,1484,0,0,707,0,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"5":657,"7":537,"22":1402}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"5":681,"7":557,"22":1419},"upgradeStep":1}}}, +{"id":105086,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1159,1979,0,0,0,734,838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":676,"7":772,"22":2508}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":704,"7":804,"22":2538},"upgradeStep":1}}}, +{"id":105087,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1615,2663,0,0,0,1206,0,0,0,0,930,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"6":1114,"11":858,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"6":1159,"11":893,"22":4511},"upgradeStep":1}}}, +{"id":105088,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,1166,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"6":1074,"7":818,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"6":1119,"7":853,"22":5006},"upgradeStep":1}}}, +{"id":105089,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,0,650,888,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"10":597,"11":818,"22":3425}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"10":623,"11":852,"22":3466},"upgradeStep":1}}}, +{"id":105090,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1239,0,1979,0,0,0,0,0,870,782,0,0,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"528":{"randPropPoints":2328,"stats":{"0":1144,"2":1837,"8":804,"9":724,"22":4187}},"532":{"randPropPoints":2416,"stats":{"0":1191,"2":1906,"8":836,"9":752,"22":4236},"upgradeStep":1}}}, +{"id":105091,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[909,0,1484,0,0,0,634,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"6":584,"7":536}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"6":608,"7":557},"upgradeStep":1}}}, +{"id":105092,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[909,0,1484,0,0,0,0,0,0,0,499,701,0,0,0,0,0,0,0,0,0,0,19992,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"10":458,"11":649,"22":19533}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"10":478,"11":674,"22":19762},"upgradeStep":1}}}, +{"id":105093,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1484,989,0,0,0,669,0,0,0,643,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"7":621,"11":597,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"7":645,"11":619,"22":1114},"upgradeStep":1}}}, +{"id":105094,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,2663,1535,0,0,1005,1099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":924,"7":1011,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":964,"7":1054,"22":2547},"upgradeStep":1}}}, +{"id":105095,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,1484,989,717,0,0,0,0,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":665,"11":522}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":690,"11":542},"upgradeStep":1}}}, +{"id":105096,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1142,681,0,0,475,0,0,0,0,455,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3199,"weaponDamageMax":5941,"weaponSpeed":1.9,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2969,"weaponDamageMax":5514,"stats":{"2":1059,"3":626,"6":438,"11":419,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3081,"weaponDamageMax":5724,"stats":{"2":1100,"3":653,"6":456,"11":436,"14":9797},"upgradeStep":1}}}, +{"id":105097,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,1979,1159,613,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":562,"11":845,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":587,"11":879,"22":2026},"upgradeStep":1}}}, +{"id":105098,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,2663,1615,1206,0,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2870,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1488,"4":1114,"6":858,"22":2804}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1551,"4":1159,"6":893,"22":2837},"upgradeStep":1}}}, +{"id":105099,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,1979,1159,756,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,2567,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":696,"11":760,"22":2508}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":725,"11":792,"22":2538},"upgradeStep":1}}}, +{"id":105100,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1484,989,659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":612,"7":612,"22":1951}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":635,"7":635,"22":1974},"upgradeStep":1}}}, +{"id":105101,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,1979,1159,876,0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3506,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":807,"6":617,"22":3425}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":840,"6":643,"22":3466},"upgradeStep":1}}}, +{"id":105102,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,1979,1239,0,0,0,895,0,0,0,739,0,0,0,0,0,0,0,0,0,0,4285,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Spoils of Pandaria"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":828,"11":684,"22":4187}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":861,"11":711,"22":4236},"upgradeStep":1}}}, +{"id":105103,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,681,1142,0,0,0,0,467,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":6061,"weaponDamageMax":11257,"weaponSpeed":1.8,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"528":{"randPropPoints":1343,"weaponDamageMin":5625,"weaponDamageMax":10448,"stats":{"1":626,"2":1059,"7":431,"11":431}},"532":{"randPropPoints":1394,"weaponDamageMin":5839,"weaponDamageMax":10845,"stats":{"1":653,"2":1100,"7":449,"11":449},"upgradeStep":1}}}, +{"id":105104,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,989,1484,0,0,0,595,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"6":552,"7":648}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"6":573,"7":672},"upgradeStep":1}}}, +{"id":105105,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,0,797,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":733,"7":732,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":764,"7":762,"22":1592},"upgradeStep":1}}}, +{"id":105106,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,2663,1535,0,0,1064,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,2577,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"6":979,"11":979,"22":2518}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"6":1021,"11":1021,"22":2547},"upgradeStep":1}}}, +{"id":105107,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,0,523,0,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"5":482,"7":625}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"5":502,"7":650},"upgradeStep":1}}}, +{"id":105108,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,1484,909,0,0,0,605,0,0,0,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"7":557,"11":581}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"7":581,"11":603},"upgradeStep":1}}}, +{"id":105109,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105110,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,0,0,890,1166,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"10":818,"11":1074,"22":6090}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"10":853,"11":1119,"22":6161},"upgradeStep":1}}}, +{"id":105111,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1235},"528":{"randPropPoints":2328},"532":{"randPropPoints":2416,"upgradeStep":1}}}, +{"id":105112,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[1695,0,2663,0,0,0,0,1003,0,0,0,1237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"7":927,"11":1147}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"7":964,"11":1191},"upgradeStep":1}}}, +{"id":105113,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[909,0,1484,0,0,0,0,0,643,0,0,563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Thok the Bloodthirsty"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"8":593,"11":521}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"8":617,"11":541},"upgradeStep":1}}}, +{"id":105114,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"528":{"randPropPoints":2328,"stats":{"11":1552}},"532":{"randPropPoints":2416,"stats":{"11":1611},"upgradeStep":1}}}, +{"id":105115,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,0,783,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"6":720,"11":752,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"6":751,"11":783,"22":1592},"upgradeStep":1}}}, +{"id":105116,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2663,1695,0,0,1238,966,0,0,0,0,0,0,10169,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":8561,"weaponDamageMax":12843,"weaponSpeed":3.3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"528":{"randPropPoints":3134,"weaponDamageMin":7946,"weaponDamageMax":11920,"stats":{"2":2472,"3":1568,"6":1145,"7":896,"14":9440}},"532":{"randPropPoints":3253,"weaponDamageMin":8248,"weaponDamageMax":12373,"stats":{"2":2566,"3":1631,"6":1191,"7":930,"14":9798},"upgradeStep":1}}}, +{"id":105117,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"528":{"randPropPoints":2328,"stats":{"3":1552}},"532":{"randPropPoints":2416,"stats":{"3":1611},"upgradeStep":1}}}, +{"id":105118,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,989,1484,0,0,0,0,669,0,0,0,643,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":621,"11":597,"22":1402}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":645,"11":619,"22":1419},"upgradeStep":1}}}, +{"id":105119,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,989,1484,0,0,0,0,643,0,0,0,669,0,0,0,0,0,0,0,0,0,0,1997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"7":597,"11":621,"22":1951}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"7":619,"11":645,"22":1974},"upgradeStep":1}}}, +{"id":105120,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,1979,1239,0,0,0,895,0,0,0,739,0,0,0,0,0,0,0,0,0,0,3138,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1144,"7":828,"11":684,"22":3066}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1191,"7":861,"11":711,"22":3102},"upgradeStep":1}}}, +{"id":105121,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,0,0,815,783,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"10":752,"11":720,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"10":783,"11":751,"22":3851},"upgradeStep":1}}}, +{"id":105122,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[909,0,1484,0,0,0,0,643,595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"528":{"randPropPoints":1746,"stats":{"0":838,"2":1377,"7":596,"8":548}},"532":{"randPropPoints":1812,"stats":{"0":873,"2":1429,"7":619,"8":571},"upgradeStep":1}}}, +{"id":105123,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[681,0,1142,0,0,0,0,475,0,0,0,455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"7":438,"11":419}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"7":456,"11":436},"upgradeStep":1}}}, +{"id":105124,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[989,0,1484,0,0,0,0,0,659,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Siegecrafter Blackfuse"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"8":612,"10":612}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"8":635,"10":635},"upgradeStep":1}}}, +{"id":105125,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,1695,2663,0,0,0,1230,998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":13620,"weaponDamageMax":25296,"weaponSpeed":3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"528":{"randPropPoints":3134,"weaponDamageMin":12642,"weaponDamageMax":23479,"stats":{"1":1568,"2":2472,"6":1139,"7":924}},"532":{"randPropPoints":3253,"weaponDamageMin":13122,"weaponDamageMax":24371,"stats":{"1":1631,"2":2566,"6":1183,"7":961},"upgradeStep":1}}}, +{"id":105126,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,909,1484,0,0,0,0,611,0,0,0,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"528":{"randPropPoints":1746,"stats":{"1":838,"2":1377,"7":566,"11":566}},"532":{"randPropPoints":1812,"stats":{"1":873,"2":1429,"7":588,"11":590},"upgradeStep":1}}}, +{"id":105127,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,681,1142,0,0,0,467,0,0,0,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"1":626,"2":1059,"6":431,"11":431}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"1":653,"2":1100,"6":449,"11":449},"upgradeStep":1}}}, +{"id":105128,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1484,989,0,0,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"6":612,"7":612,"22":1102}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"6":635,"7":635,"22":1114},"upgradeStep":1}}}, +{"id":105129,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1142,681,0,475,455,0,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":3030,"weaponDamageMax":5628,"weaponSpeed":1.8,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":2812,"weaponDamageMax":5224,"stats":{"2":1059,"3":626,"5":438,"6":419,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":2919,"weaponDamageMax":5422,"stats":{"2":1100,"3":653,"5":456,"6":436,"14":9797},"upgradeStep":1}}}, +{"id":105130,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,1484,989,0,611,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"5":567,"11":639}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"5":588,"11":663},"upgradeStep":1}}}, +{"id":105131,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,2663,1535,862,0,0,1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3280,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":792,"7":1089,"22":3205}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":826,"7":1135,"22":3242},"upgradeStep":1}}}, +{"id":105132,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,2663,1535,1166,0,0,890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1074,"7":818,"22":4459}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1119,"7":853,"22":4511},"upgradeStep":1}}}, +{"id":105133,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,1979,1159,0,0,0,686,0,0,0,860,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"7":633,"11":791,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"7":659,"11":824,"22":3851},"upgradeStep":1}}}, +{"id":105134,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"528":{"randPropPoints":2328,"stats":{"0":1552}},"532":{"randPropPoints":2416,"stats":{"0":1611},"upgradeStep":1}}}, +{"id":105135,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[681,0,1142,0,0,0,467,0,467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":8755,"weaponDamageMax":16260,"weaponSpeed":2.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Paragons of the Klaxxi"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"528":{"randPropPoints":1343,"weaponDamageMin":8126,"weaponDamageMax":15092,"stats":{"0":626,"2":1059,"6":431,"8":431}},"532":{"randPropPoints":1394,"weaponDamageMin":8434,"weaponDamageMax":15665,"stats":{"0":653,"2":1100,"6":449,"8":449},"upgradeStep":1}}}, +{"id":105136,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,1695,2663,0,0,0,1237,0,0,0,0,1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":17123,"weaponDamageMax":25685,"weaponSpeed":3.3,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"528":{"randPropPoints":3134,"weaponDamageMin":15893,"weaponDamageMax":23840,"stats":{"1":1568,"2":2472,"6":1147,"11":927}},"532":{"randPropPoints":3253,"weaponDamageMin":16497,"weaponDamageMax":24746,"stats":{"1":1631,"2":2566,"6":1191,"11":964},"upgradeStep":1}}}, +{"id":105137,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1159,1979,0,0,0,838,734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":772,"7":676,"22":1803}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":804,"7":704,"22":1824},"upgradeStep":1}}}, +{"id":105138,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,1535,2663,0,0,0,0,1150,0,0,0,918,0,0,0,0,0,0,0,0,0,0,2665,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"7":1059,"11":844,"22":2604}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"7":1103,"11":881,"22":2634},"upgradeStep":1}}}, +{"id":105139,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,1615,2663,0,0,0,0,1269,0,0,0,819,0,0,0,0,0,0,0,0,0,0,4564,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"528":{"randPropPoints":3134,"stats":{"1":1488,"2":2472,"7":1173,"11":755,"22":4459}},"532":{"randPropPoints":3253,"stats":{"1":1551,"2":2566,"7":1220,"11":787,"22":4511},"upgradeStep":1}}}, +{"id":105140,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,1535,2663,0,0,0,1116,0,0,0,0,976,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"528":{"randPropPoints":3134,"stats":{"1":1408,"2":2472,"6":1027,"11":897,"22":3623}},"532":{"randPropPoints":3253,"stats":{"1":1471,"2":2566,"6":1071,"11":936,"22":3666},"upgradeStep":1}}}, +{"id":105141,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1159,1979,0,0,0,888,0,0,0,0,650,0,0,0,0,0,0,0,0,0,0,3423,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":818,"11":597,"22":3344}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":852,"11":623,"22":3384},"upgradeStep":1}}}, +{"id":105142,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[1535,0,2663,0,0,0,0,1082,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,5454,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"7":995,"11":951,"22":5328}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"7":1038,"11":992,"22":5391},"upgradeStep":1}}}, +{"id":105143,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1159,0,1979,0,0,0,911,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"6":840,"11":559,"22":4567}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"6":875,"11":583,"22":4621},"upgradeStep":1}}}, +{"id":105145,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[1535,0,2663,0,0,0,0,0,779,0,1229,0,0,0,0,0,0,0,0,0,0,0,5064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"528":{"randPropPoints":3134,"stats":{"0":1408,"2":2472,"8":715,"10":1133,"22":4948}},"532":{"randPropPoints":3253,"stats":{"0":1471,"2":2566,"8":747,"10":1180,"22":5006},"upgradeStep":1}}}, +{"id":105146,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[1695,0,2663,0,0,0,1022,0,0,0,0,1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"weaponDamageMin":18680,"weaponDamageMax":28020,"weaponSpeed":3.6,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"528":{"randPropPoints":3134,"weaponDamageMin":17338,"weaponDamageMax":26008,"stats":{"0":1568,"2":2472,"6":948,"11":1115}},"532":{"randPropPoints":3253,"weaponDamageMin":17996,"weaponDamageMax":26995,"stats":{"0":1631,"2":2566,"6":985,"11":1159},"upgradeStep":1}}}, +{"id":105147,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,2508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"528":{"randPropPoints":2328,"stats":{"2":2328}},"532":{"randPropPoints":2416,"stats":{"2":2416},"upgradeStep":1}}}, +{"id":105148,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,1979,1159,756,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":696,"11":760,"22":1416}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":725,"11":792,"22":1433},"upgradeStep":1}}}, +{"id":105149,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,2663,1535,0,0,0,976,0,0,0,1116,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"7":897,"11":1027,"22":2046}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"7":936,"11":1071,"22":2070},"upgradeStep":1}}}, +{"id":105150,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"528":{"randPropPoints":2328,"stats":{"7":1552}},"532":{"randPropPoints":2416,"stats":{"7":1611},"upgradeStep":1}}}, +{"id":105151,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1142,681,475,0,0,455,0,0,0,0,0,0,10170,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1447,"weaponDamageMin":4040,"weaponDamageMax":7504,"weaponSpeed":2.4,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"528":{"randPropPoints":1343,"weaponDamageMin":3750,"weaponDamageMax":6965,"stats":{"2":1059,"3":626,"4":438,"7":419,"14":9439}},"532":{"randPropPoints":1394,"weaponDamageMin":3893,"weaponDamageMax":7230,"stats":{"2":1100,"3":653,"4":456,"7":436,"14":9797},"upgradeStep":1}}}, +{"id":105152,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1484,909,0,0,0,603,0,0,0,629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":838,"7":557,"11":581}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":873,"7":579,"11":605},"upgradeStep":1}}}, +{"id":105153,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,1979,1159,756,0,0,0,0,0,0,825,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":696,"11":760,"22":1803}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":725,"11":792,"22":1824},"upgradeStep":1}}}, +{"id":105154,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,1979,1159,799,0,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":736,"7":736,"22":2404}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":767,"7":767,"22":2432},"upgradeStep":1}}}, +{"id":105155,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,2663,1535,1082,0,0,0,0,0,0,1034,0,0,0,0,0,0,0,0,0,0,3708,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":995,"11":951,"22":3623}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1038,"11":992,"22":3666},"upgradeStep":1}}}, +{"id":105156,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,2663,1535,1116,0,0,0,0,0,0,976,0,0,0,0,0,0,0,0,0,0,6233,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3376,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"528":{"randPropPoints":3134,"stats":{"2":2472,"3":1408,"4":1027,"11":897,"22":6090}},"532":{"randPropPoints":3253,"stats":{"2":2566,"3":1471,"4":1071,"11":936,"22":6161},"upgradeStep":1}}}, +{"id":105157,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,1979,1159,888,0,0,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4675,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":818,"7":597,"22":4567}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":852,"7":623,"22":4621},"upgradeStep":1}}}, +{"id":105158,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1321,1981,0,0,0,0,880,0,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"7":817,"11":817}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"7":848,"11":848},"upgradeStep":1}}}, +{"id":105159,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,2290,3556,0,0,0,1737,0,1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":22857,"weaponDamageMax":34287,"weaponSpeed":3.3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"559":{"randPropPoints":4183,"weaponDamageMin":21216,"weaponDamageMax":31824,"stats":{"1":2120,"2":3300,"6":1608,"8":1098}},"563":{"randPropPoints":4342,"weaponDamageMin":22021,"weaponDamageMax":33032,"stats":{"1":2203,"2":3425,"6":1671,"8":1141},"upgradeStep":1}}}, +{"id":105160,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2130,3556,0,0,0,1530,1343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"6":1411,"7":1238,"22":2841}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"6":1470,"7":1289,"22":2872},"upgradeStep":1}}}, +{"id":105161,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1681,2641,0,0,982,1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"5":908,"6":1137,"22":3345}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"5":944,"6":1181,"22":3381},"upgradeStep":1}}}, +{"id":105162,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,981,0,710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":910,"7":659,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":945,"7":684,"22":2938},"upgradeStep":1}}}, +{"id":105163,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,1191,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1097,"7":1494,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1143,"7":1555,"22":6716},"upgradeStep":1}}}, +{"id":105164,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1601,0,2641,0,0,0,0,1080,0,0,0,1096,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"7":998,"11":1010,"22":4153}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"7":1039,"11":1052,"22":4198},"upgradeStep":1}}}, +{"id":105165,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1681,0,2641,0,0,1010,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"559":{"randPropPoints":3108,"stats":{"0":1554,"2":2452,"5":934,"10":1121,"22":4568}},"563":{"randPropPoints":3226,"stats":{"0":1617,"2":2545,"5":972,"10":1165,"22":4617},"upgradeStep":1}}}, +{"id":105166,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,0,0,0,0,880,880,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"9":817,"10":817,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"9":848,"10":848,"22":2938},"upgradeStep":1}}}, +{"id":105167,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,0,0,0,0,812,1258,0,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"9":748,"10":1162,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"9":779,"10":1209,"22":5037},"upgradeStep":1}}}, +{"id":105168,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[936,0,1524,0,0,0,0,0,0,637,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"9":589,"10":589}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"9":612,"10":612},"upgradeStep":1}}}, +{"id":105169,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2641,1601,1146,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1057,"6":918,"22":1717}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1101,"6":956,"22":1736},"upgradeStep":1}}}, +{"id":105170,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2641,1601,1196,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1104,"6":850,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"6":885,"22":2083},"upgradeStep":1}}}, +{"id":105171,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3556,2130,0,0,1460,0,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"6":1347,"11":1347,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"6":1402,"11":1402,"22":2256},"upgradeStep":1}}}, +{"id":105172,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1981,1321,0,880,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":817,"7":817,"22":1374}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":848,"7":848,"22":1388},"upgradeStep":1}}}, +{"id":105173,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105174,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,1981,1241,928,0,0,0,0,0,0,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":857,"11":624}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":892,"11":648},"upgradeStep":1}}}, +{"id":105175,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2641,1681,1126,0,0,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":1042,"7":1058,"22":2404}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":1083,"7":1099,"22":2430},"upgradeStep":1}}}, +{"id":105176,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1981,1321,669,0,1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":621,"6":932,"22":1530}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":644,"6":967,"22":1546},"upgradeStep":1}}}, +{"id":105177,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2641,1601,1078,0,1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3106,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":994,"6":1026,"22":3041}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1035,"6":1067,"22":3074},"upgradeStep":1}}}, +{"id":105178,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2641,1601,1036,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":956,"11":1042,"22":3738}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":995,"11":1085,"22":3778},"upgradeStep":1}}}, +{"id":105179,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2641,1681,1126,0,0,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":1042,"7":1058,"22":4568}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":1083,"7":1099,"22":4617},"upgradeStep":1}}}, +{"id":105180,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,2290,3556,0,0,1162,0,1761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":20779,"weaponDamageMax":31170,"weaponSpeed":3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"559":{"randPropPoints":4183,"weaponDamageMin":19287,"weaponDamageMax":28931,"stats":{"1":2120,"2":3300,"5":1076,"7":1632}},"563":{"randPropPoints":4342,"weaponDamageMin":20019,"weaponDamageMax":30030,"stats":{"1":2203,"2":3425,"5":1118,"7":1695},"upgradeStep":1}}}, +{"id":105181,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,936,1524,0,0,554,687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"1":863,"2":1414,"5":512,"6":634}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"1":899,"2":1468,"5":532,"6":660},"upgradeStep":1}}}, +{"id":105182,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1681,2641,0,0,1010,0,1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"5":934,"7":1121,"22":2404}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"5":972,"7":1165,"22":2430},"upgradeStep":1}}}, +{"id":105183,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1601,2641,0,0,0,1274,0,796,0,0,0,0,0,0,0,0,0,0,0,0,0,3106,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":1178,"8":732,"22":3041}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":1225,"8":763,"22":3074},"upgradeStep":1}}}, +{"id":105184,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,1179,0,950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"5":1089,"7":876,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"5":1133,"7":912,"22":3778},"upgradeStep":1}}}, +{"id":105185,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,0,0,1036,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"7":956,"11":1042,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"7":995,"11":1085,"22":5037},"upgradeStep":1}}}, +{"id":105186,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1601,0,2641,0,0,0,0,0,0,1113,1052,0,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"9":1026,"10":972,"22":4153}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"9":1069,"10":1011,"22":4198},"upgradeStep":1}}}, +{"id":105187,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[1321,0,1981,0,0,751,957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":697,"6":888}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":724,"6":922},"upgradeStep":1}}}, +{"id":105188,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1321,0,1981,0,0,0,0,0,794,0,932,0,0,0,0,0,0,0,0,0,0,0,1403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"8":737,"10":865,"22":1374}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"8":765,"10":898,"22":1388},"upgradeStep":1}}}, +{"id":105189,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"559":{"randPropPoints":3108,"stats":{"2":3108}},"563":{"randPropPoints":3226,"stats":{"2":3226},"upgradeStep":1}}}, +{"id":105190,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2641,1681,0,844,0,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1929,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"5":780,"7":1210,"22":1889}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"5":811,"7":1257,"22":1909},"upgradeStep":1}}}, +{"id":105191,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3556,2130,0,1081,0,1681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"5":994,"7":1552,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"5":1037,"7":1615,"22":2777},"upgradeStep":1}}}, +{"id":105192,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2641,1601,0,866,0,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":799,"11":1134,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":832,"11":1180,"22":2083},"upgradeStep":1}}}, +{"id":105193,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1981,1321,919,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":853,"11":757,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":886,"11":785,"22":1215},"upgradeStep":1}}}, +{"id":105194,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,1981,1321,0,944,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":877,"6":717}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":910,"6":744},"upgradeStep":1}}}, +{"id":105195,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,1981,1241,952,0,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":881,"7":600}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":916,"7":624},"upgradeStep":1}}}, +{"id":105196,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2641,1601,1146,0,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1058,"6":929,"22":2623}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1101,"6":967,"22":2651},"upgradeStep":1}}}, +{"id":105197,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2641,1681,1126,0,0,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":1042,"7":1058,"22":3345}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":1083,"7":1099,"22":3381},"upgradeStep":1}}}, +{"id":105198,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2641,1601,1064,0,1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":982,"6":1026,"22":3649}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1023,"6":1068,"22":3688},"upgradeStep":1}}}, +{"id":105199,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2641,1601,1096,0,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1010,"7":998,"22":4153}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1052,"7":1039,"22":4198},"upgradeStep":1}}}, +{"id":105200,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3556,2130,1081,0,1681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":994,"6":1552,"22":5399}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1037,"6":1615,"22":5457},"upgradeStep":1}}}, +{"id":105201,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,936,1524,0,0,571,0,0,0,0,0,677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":8091,"weaponDamageMax":15026,"weaponSpeed":1.8,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"559":{"randPropPoints":1793,"weaponDamageMin":7509,"weaponDamageMax":13947,"stats":{"1":863,"2":1414,"5":527,"11":625}},"563":{"randPropPoints":1861,"weaponDamageMin":7795,"weaponDamageMax":14477,"stats":{"1":899,"2":1468,"5":548,"11":651},"upgradeStep":1}}}, +{"id":105202,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,1241,1981,0,0,940,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"559":{"randPropPoints":2331,"stats":{"1":1146,"2":1839,"5":868,"6":605}},"563":{"randPropPoints":2419,"stats":{"1":1192,"2":1908,"5":903,"6":628},"upgradeStep":1}}}, +{"id":105203,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2130,3556,0,0,0,1117,1661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"6":1028,"7":1533,"22":3497}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"6":1072,"7":1596,"22":3534},"upgradeStep":1}}}, +{"id":105204,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1601,2641,0,0,906,1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"5":834,"6":1120,"22":2185}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"5":869,"6":1165,"22":2209},"upgradeStep":1}}}, +{"id":105205,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2210,3556,0,0,0,1570,0,0,0,0,1383,0,0,0,0,0,0,0,0,0,0,4349,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1451,"11":1278,"22":4257}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1510,"11":1329,"22":4303},"upgradeStep":1}}}, +{"id":105206,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1601,2641,0,0,0,0,1094,0,0,0,1094,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"7":1010,"11":1010,"22":3649}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"7":1051,"11":1051,"22":3688},"upgradeStep":1}}}, +{"id":105207,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,0,858,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"6":797,"11":830,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"6":827,"11":861,"22":2938},"upgradeStep":1}}}, +{"id":105208,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,0,1460,1460,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"9":1347,"10":1347,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"9":1402,"10":1402,"22":5457},"upgradeStep":1}}}, +{"id":105209,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1321,0,1981,0,0,0,0,969,0,0,0,730,0,0,0,0,0,0,0,0,0,0,1403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"7":899,"11":678,"22":1374}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"7":933,"11":704,"22":1388},"upgradeStep":1}}}, +{"id":105210,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105211,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[936,0,1524,0,0,687,0,0,0,0,0,554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"5":634,"11":512}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"5":660,"11":532},"upgradeStep":1}}}, +{"id":105212,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1981,1321,0,919,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":853,"11":757,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":886,"11":785,"22":1215},"upgradeStep":1}}}, +{"id":105213,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2641,1601,0,934,1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":860,"6":1105,"22":1717}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":896,"6":1149,"22":1736},"upgradeStep":1}}}, +{"id":105214,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2641,1601,1196,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1104,"6":850,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"6":885,"22":1562},"upgradeStep":1}}}, +{"id":105215,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2641,1601,0,0,1036,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"6":956,"11":1042,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"6":995,"11":1085,"22":2083},"upgradeStep":1}}}, +{"id":105216,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,1981,1321,0,837,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":777,"11":841}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":806,"11":873},"upgradeStep":1}}}, +{"id":105217,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1981,1241,708,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,21773,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":653,"11":861,"22":21313}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":680,"11":894,"22":21543},"upgradeStep":1}}}, +{"id":105218,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,2641,1681,1039,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":961,"6":1106,"22":2404}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":999,"6":1149,"22":2430},"upgradeStep":1}}}, +{"id":105219,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2641,1601,0,0,1096,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"6":1010,"11":998,"22":2185}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"6":1052,"11":1039,"22":2209},"upgradeStep":1}}}, +{"id":105220,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1981,1321,992,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":921,"6":640,"22":2129}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":956,"6":664,"22":2152},"upgradeStep":1}}}, +{"id":105221,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3556,2210,1637,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4349,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1514,"6":1172,"22":4257}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1574,"6":1219,"22":4303},"upgradeStep":1}}}, +{"id":105222,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1981,1321,944,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":877,"6":717,"22":2907}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":910,"6":744,"22":2938},"upgradeStep":1}}}, +{"id":105223,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105224,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,1981,1321,894,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":830,"7":797}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":861,"7":827},"upgradeStep":1}}}, +{"id":105225,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105226,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,3556,2290,0,0,1476,0,0,0,0,1588,0,0,13576,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":11428,"weaponDamageMax":17143,"weaponSpeed":3.3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"559":{"randPropPoints":4183,"weaponDamageMin":10608,"weaponDamageMax":15912,"stats":{"2":3300,"3":2120,"6":1366,"11":1473,"14":12600}},"563":{"randPropPoints":4342,"weaponDamageMin":11010,"weaponDamageMax":16516,"stats":{"2":3425,"3":2203,"6":1420,"11":1529,"14":13079},"upgradeStep":1}}}, +{"id":105227,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3556,2130,1460,0,0,0,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1347,"11":1347,"22":2841}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1402,"11":1402,"22":2872},"upgradeStep":1}}}, +{"id":105228,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3556,2130,1484,0,0,1420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1369,"7":1310,"22":5399}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1425,"7":1364,"22":5457},"upgradeStep":1}}}, +{"id":105229,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1681,0,2641,0,0,1126,1142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"559":{"randPropPoints":3108,"stats":{"0":1554,"2":2452,"5":1042,"6":1058,"22":4568}},"563":{"randPropPoints":3226,"stats":{"0":1617,"2":2545,"5":1083,"6":1099,"22":4617},"upgradeStep":1}}}, +{"id":105230,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[2290,0,3556,0,0,0,1447,1586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":24935,"weaponDamageMax":37404,"weaponSpeed":3.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"559":{"randPropPoints":4183,"weaponDamageMin":23144,"weaponDamageMax":34717,"stats":{"0":2120,"2":3300,"6":1342,"7":1467}},"563":{"randPropPoints":4342,"weaponDamageMin":24023,"weaponDamageMax":36035,"stats":{"0":2203,"2":3425,"6":1393,"7":1526},"upgradeStep":1}}}, +{"id":105231,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[1321,0,1981,0,0,992,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":921,"9":640}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":956,"9":664},"upgradeStep":1}}}, +{"id":105232,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1241,0,1981,0,0,0,0,0,0,816,864,0,0,0,0,0,0,0,0,0,0,0,21773,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"9":753,"10":801,"22":21313}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"9":784,"10":832,"22":21543},"upgradeStep":1}}}, +{"id":105233,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,2290,3556,0,0,0,0,1161,0,0,0,1761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":18182,"weaponDamageMax":33767,"weaponSpeed":3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"559":{"randPropPoints":4183,"weaponDamageMin":16876,"weaponDamageMax":31342,"stats":{"1":2120,"2":3300,"7":1074,"11":1632}},"563":{"randPropPoints":4342,"weaponDamageMin":17517,"weaponDamageMax":32532,"stats":{"1":2203,"2":3425,"7":1117,"11":1695},"upgradeStep":1}}}, +{"id":105234,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,1241,1981,0,0,0,0,0,830,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"559":{"randPropPoints":2331,"stats":{"1":1146,"2":1839,"8":766,"11":781}},"563":{"randPropPoints":2419,"stats":{"1":1192,"2":1908,"8":797,"11":811},"upgradeStep":1}}}, +{"id":105235,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1681,2641,0,0,0,970,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"6":898,"8":1136,"22":2404}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"6":933,"8":1181,"22":2430},"upgradeStep":1}}}, +{"id":105236,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1601,2641,0,0,0,1096,0,0,0,0,1080,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":1010,"11":998,"22":2185}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":1052,"11":1039,"22":2209},"upgradeStep":1}}}, +{"id":105237,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1601,2641,0,0,1162,0,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"5":1073,"7":902,"22":2737}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"5":1117,"7":940,"22":2766},"upgradeStep":1}}}, +{"id":105238,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1321,1981,0,0,944,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"5":877,"7":717,"22":2129}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"5":910,"7":744,"22":2152},"upgradeStep":1}}}, +{"id":105239,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,0,1484,0,0,0,1420,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"7":1369,"11":1310,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"7":1425,"11":1364,"22":5457},"upgradeStep":1}}}, +{"id":105240,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[1321,0,1981,0,0,957,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":888,"9":697,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":922,"9":724,"22":2938},"upgradeStep":1}}}, +{"id":105241,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,922,0,0,0,0,0,1196,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"5":850,"11":1104,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"5":885,"11":1149,"22":5037},"upgradeStep":1}}}, +{"id":105242,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105243,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[1241,0,1981,0,0,0,0,0,0,842,830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"9":781,"10":766}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"9":811,"10":797},"upgradeStep":1}}}, +{"id":105244,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2641,1681,0,0,0,1144,0,0,0,1112,0,0,0,0,0,0,0,0,0,0,1929,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"7":1058,"11":1030,"22":1889}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"7":1100,"11":1071,"22":1909},"upgradeStep":1}}}, +{"id":105245,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,1981,1321,0,969,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":899,"6":678,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":933,"6":704,"22":1215},"upgradeStep":1}}}, +{"id":105246,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3556,2130,0,1081,0,1681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"5":994,"7":1552,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"5":1037,"7":1615,"22":2256},"upgradeStep":1}}}, +{"id":105247,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2641,1681,1244,0,0,942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1929,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":1151,"7":872,"22":1889}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":1197,"7":906,"22":1909},"upgradeStep":1}}}, +{"id":105248,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2641,1601,1094,0,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1010,"7":1010,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1051,"7":1051,"22":2083},"upgradeStep":1}}}, +{"id":105249,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,1981,1321,0,880,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":817,"7":817}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":848,"7":848},"upgradeStep":1}}}, +{"id":105250,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,3556,2290,1785,0,0,0,0,0,0,1137,0,0,13576,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":11428,"weaponDamageMax":17143,"weaponSpeed":3.3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"559":{"randPropPoints":4183,"weaponDamageMin":10608,"weaponDamageMax":15912,"stats":{"2":3300,"3":2120,"4":1656,"11":1050,"14":12600}},"563":{"randPropPoints":4342,"weaponDamageMin":11010,"weaponDamageMax":16516,"stats":{"2":3425,"3":2203,"4":1719,"11":1093,"14":13079},"upgradeStep":1}}}, +{"id":105251,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2641,1601,1196,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1104,"6":850,"22":1967}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"6":885,"22":1988},"upgradeStep":1}}}, +{"id":105252,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2641,1601,0,0,1180,0,0,0,0,938,0,0,0,0,0,0,0,0,0,0,3106,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"6":1088,"11":866,"22":3041}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"6":1133,"11":901,"22":3074},"upgradeStep":1}}}, +{"id":105253,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1981,1321,919,0,0,0,0,0,0,815,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":853,"11":757,"22":2907}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":886,"11":785,"22":2938},"upgradeStep":1}}}, +{"id":105254,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3556,2210,1637,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1514,"6":1172,"22":5814}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1574,"6":1219,"22":5877},"upgradeStep":1}}}, +{"id":105255,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,936,1524,0,0,0,648,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"1":863,"2":1414,"6":598,"7":573}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"1":899,"2":1468,"6":622,"7":596},"upgradeStep":1}}}, +{"id":105256,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1321,1981,0,0,0,751,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"6":697,"8":888,"22":1530}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"6":724,"8":922,"22":1546},"upgradeStep":1}}}, +{"id":105257,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1601,2641,0,0,0,1212,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":1119,"11":824,"22":2623}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":1165,"11":858,"22":2651},"upgradeStep":1}}}, +{"id":105258,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1681,2641,0,0,0,0,0,1096,0,0,1160,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"8":1014,"11":1074,"22":3345}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"8":1055,"11":1116,"22":3381},"upgradeStep":1}}}, +{"id":105259,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1601,2641,0,0,0,0,1242,0,0,0,828,0,0,0,0,0,0,0,0,0,0,3106,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"7":1146,"11":764,"22":3041}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"7":1193,"11":795,"22":3074},"upgradeStep":1}}}, +{"id":105260,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,0,0,1094,0,0,0,1094,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"7":1010,"11":1010,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"7":1051,"11":1051,"22":3778},"upgradeStep":1}}}, +{"id":105261,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,0,730,0,969,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"6":678,"8":899,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"6":704,"8":933,"22":2938},"upgradeStep":1}}}, +{"id":105262,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1601,0,2641,0,0,0,1163,966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"6":1073,"7":892,"22":4153}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"6":1117,"7":928,"22":4198},"upgradeStep":1}}}, +{"id":105263,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,0,1460,1460,0,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"9":1347,"10":1347,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"9":1402,"10":1402,"22":6716},"upgradeStep":1}}}, +{"id":105264,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[1321,0,1981,0,0,906,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":841,"11":777}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":873,"11":806},"upgradeStep":1}}}, +{"id":105265,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"559":{"randPropPoints":3108,"stats":{"9":2072}},"563":{"randPropPoints":3226,"stats":{"9":2150},"upgradeStep":1}}}, +{"id":105266,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2641,1601,0,1179,0,0,0,0,0,950,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":1089,"11":876,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":1133,"11":912,"22":1562},"upgradeStep":1}}}, +{"id":105267,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3556,2210,0,0,0,1524,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"7":1409,"11":1350,"22":2404}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"7":1465,"11":1404,"22":2430},"upgradeStep":1}}}, +{"id":105268,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1981,1321,932,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":865,"7":737,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":898,"7":765,"22":1215},"upgradeStep":1}}}, +{"id":105269,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2641,1601,1196,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1103,"7":840,"22":1717}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"7":874,"22":1736},"upgradeStep":1}}}, +{"id":105270,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3556,2130,1553,0,1305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1432,"6":1202,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1491,"6":1253,"22":2777},"upgradeStep":1}}}, +{"id":105271,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,1981,1241,855,0,0,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":789,"7":741}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":822,"7":769},"upgradeStep":1}}}, +{"id":105272,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1981,1241,0,0,840,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"6":777,"7":672}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"6":808,"7":699},"upgradeStep":1}}}, +{"id":105273,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1981,1321,957,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":888,"11":697,"22":1530}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":922,"11":724,"22":1546},"upgradeStep":1}}}, +{"id":105274,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2641,1681,1039,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":961,"6":1106,"22":3345}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":999,"6":1149,"22":3381},"upgradeStep":1}}}, +{"id":105275,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1981,1321,906,0,0,0,0,0,0,837,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":841,"11":777,"22":2129}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":873,"11":806,"22":2152},"upgradeStep":1}}}, +{"id":105276,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2641,1681,1039,0,1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":961,"6":1106,"22":4568}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":999,"6":1149,"22":4617},"upgradeStep":1}}}, +{"id":105277,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1321,1981,0,0,0,0,772,0,0,0,944,0,0,0,0,0,0,0,0,0,0,1403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"7":717,"11":877,"22":1374}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"7":744,"11":910,"22":1388},"upgradeStep":1}}}, +{"id":105278,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105279,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1601,2641,0,0,1162,0,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"5":1073,"7":902,"22":1967}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"5":1117,"7":940,"22":1988},"upgradeStep":1}}}, +{"id":105280,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2210,3556,0,0,0,1524,0,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,3126,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1409,"11":1350,"22":3060}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1465,"11":1404,"22":3093},"upgradeStep":1}}}, +{"id":105281,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2130,3556,0,0,0,0,1266,0,0,0,1575,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"7":1167,"11":1453,"22":3953}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"7":1216,"11":1513,"22":3996},"upgradeStep":1}}}, +{"id":105282,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1681,0,2641,0,0,0,1144,1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"559":{"randPropPoints":3108,"stats":{"0":1554,"2":2452,"6":1058,"7":1030,"22":4568}},"563":{"randPropPoints":3226,"stats":{"0":1617,"2":2545,"6":1100,"7":1071,"22":4617},"upgradeStep":1}}}, +{"id":105283,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,1553,0,0,0,0,1305,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1432,"11":1202,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1491,"11":1253,"22":6716},"upgradeStep":1}}}, +{"id":105284,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,1146,0,0,0,0,0,1007,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"5":1058,"11":929,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"5":1101,"11":967,"22":3778},"upgradeStep":1}}}, +{"id":105285,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[1241,0,1981,0,0,917,0,0,0,0,0,694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"5":846,"11":643}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"5":881,"11":668},"upgradeStep":1}}}, +{"id":105286,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[936,0,1524,0,0,0,0,0,677,0,571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"8":625,"10":527}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"8":651,"10":548},"upgradeStep":1}}}, +{"id":105287,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[1241,0,1981,0,0,730,0,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"5":673,"9":849}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"5":701,"9":882},"upgradeStep":1}}}, +{"id":105288,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,2641,1681,0,0,982,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,1929,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"6":908,"11":1137,"22":1889}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"6":944,"11":1181,"22":1909},"upgradeStep":1}}}, +{"id":105289,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3556,2130,1597,0,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1474,"7":1132,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1534,"7":1179,"22":2256},"upgradeStep":1}}}, +{"id":105290,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,1981,1321,0,1004,0,669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":932,"7":621}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":967,"7":644},"upgradeStep":1}}}, +{"id":105291,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105292,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1524,936,490,0,0,0,0,0,0,723,0,0,13578,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":5394,"weaponDamageMax":10018,"weaponSpeed":2.4,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"559":{"randPropPoints":1793,"weaponDamageMin":5006,"weaponDamageMax":9298,"stats":{"2":1414,"3":863,"4":452,"11":668,"14":12602}},"563":{"randPropPoints":1861,"weaponDamageMin":5196,"weaponDamageMax":9651,"stats":{"2":1468,"3":899,"4":471,"11":695,"14":13079},"upgradeStep":1}}}, +{"id":105293,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3556,2130,0,0,1420,0,0,0,0,1484,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"6":1310,"11":1369,"22":2841}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"6":1364,"11":1425,"22":2872},"upgradeStep":1}}}, +{"id":105294,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2641,1601,1196,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1104,"6":850,"22":2737}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"6":885,"22":2766},"upgradeStep":1}}}, +{"id":105295,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2641,1601,1162,0,0,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1073,"7":902,"22":3649}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1117,"7":940,"22":3688},"upgradeStep":1}}}, +{"id":105296,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1981,1321,880,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":817,"7":817,"22":2907}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":848,"7":848,"22":2938},"upgradeStep":1}}}, +{"id":105297,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2641,1601,1094,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1010,"6":1010,"22":4983}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1051,"6":1051,"22":5037},"upgradeStep":1}}}, +{"id":105298,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,936,1524,0,0,0,667,0,587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":8091,"weaponDamageMax":15026,"weaponSpeed":1.8,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"559":{"randPropPoints":1793,"weaponDamageMin":7509,"weaponDamageMax":13947,"stats":{"1":863,"2":1414,"6":616,"8":542}},"563":{"randPropPoints":1861,"weaponDamageMin":7795,"weaponDamageMax":14477,"stats":{"1":899,"2":1468,"6":641,"8":564},"upgradeStep":1}}}, +{"id":105299,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2641,1681,1010,0,0,0,0,0,0,1210,0,0,0,0,0,0,0,0,0,0,1929,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"4":934,"11":1121,"22":1889}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"4":972,"11":1165,"22":1909},"upgradeStep":1}}}, +{"id":105300,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105301,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1524,936,0,0,677,571,0,0,0,0,0,0,13578,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":4944,"weaponDamageMax":9183,"weaponSpeed":2.2,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"559":{"randPropPoints":1793,"weaponDamageMin":4589,"weaponDamageMax":8523,"stats":{"2":1414,"3":863,"6":625,"7":527,"14":12602}},"563":{"randPropPoints":1861,"weaponDamageMin":4763,"weaponDamageMax":8847,"stats":{"2":1468,"3":899,"6":651,"7":548,"14":13079},"upgradeStep":1}}}, +{"id":105302,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1601,2641,0,0,0,0,1094,0,0,0,1094,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"7":1010,"11":1010,"22":2623}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"7":1051,"11":1051,"22":2651},"upgradeStep":1}}}, +{"id":105303,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,3556,2130,1484,0,1420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1369,"6":1310,"22":3497}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1425,"6":1364,"22":3534},"upgradeStep":1}}}, +{"id":105304,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1681,2641,0,0,0,1055,1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"6":977,"7":1090,"22":3345}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"6":1015,"7":1133,"22":3381},"upgradeStep":1}}}, +{"id":105305,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3556,2130,1081,0,1681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":994,"6":1552,"22":3953}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1037,"6":1615,"22":3996},"upgradeStep":1}}}, +{"id":105306,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[2290,0,3556,0,0,0,0,0,1137,0,0,1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":24935,"weaponDamageMax":37404,"weaponSpeed":3.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"559":{"randPropPoints":4183,"weaponDamageMin":23144,"weaponDamageMax":34717,"stats":{"0":2120,"2":3300,"8":1050,"11":1656}},"563":{"randPropPoints":4342,"weaponDamageMin":24023,"weaponDamageMax":36035,"stats":{"0":2203,"2":3425,"8":1093,"11":1719},"upgradeStep":1}}}, +{"id":105307,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[1241,0,1981,0,0,0,0,0,880,0,0,756,0,0,0,0,0,0,0,0,0,0,21773,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"8":813,"11":701,"22":21313}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"8":846,"11":728,"22":21543},"upgradeStep":1}}}, +{"id":105308,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2641,1601,0,812,0,1258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":748,"7":1162,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":779,"7":1209,"22":2083},"upgradeStep":1}}}, +{"id":105309,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,1241,1981,0,0,0,880,0,0,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"559":{"randPropPoints":2331,"stats":{"1":1146,"2":1839,"6":813,"11":701}},"563":{"randPropPoints":2419,"stats":{"1":1192,"2":1908,"6":846,"11":728},"upgradeStep":1}}}, +{"id":105310,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,2290,3556,0,0,0,1500,0,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":18182,"weaponDamageMax":33767,"weaponSpeed":3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"559":{"randPropPoints":4183,"weaponDamageMin":16876,"weaponDamageMax":31342,"stats":{"1":2120,"2":3300,"6":1390,"11":1449}},"563":{"randPropPoints":4342,"weaponDamageMin":17517,"weaponDamageMax":32532,"stats":{"1":2203,"2":3425,"6":1444,"11":1505},"upgradeStep":1}}}, +{"id":105311,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,2290,3556,0,0,0,0,1516,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":24935,"weaponDamageMax":37404,"weaponSpeed":3.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"559":{"randPropPoints":4183,"weaponDamageMin":23144,"weaponDamageMax":34717,"stats":{"1":2120,"2":3300,"7":1403,"11":1451}},"563":{"randPropPoints":4342,"weaponDamageMin":24023,"weaponDamageMax":36035,"stats":{"1":2203,"2":3425,"7":1458,"11":1506},"upgradeStep":1}}}, +{"id":105312,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2130,3556,0,0,0,0,1081,0,0,0,1681,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"7":994,"11":1552,"22":3497}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"7":1037,"11":1615,"22":3534},"upgradeStep":1}}}, +{"id":105313,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,1321,1981,0,0,0,751,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"6":697,"8":888,"22":2129}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"6":724,"8":922,"22":2152},"upgradeStep":1}}}, +{"id":105314,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1681,0,2641,0,0,0,0,0,1259,0,0,914,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"559":{"randPropPoints":3108,"stats":{"0":1554,"2":2452,"8":1166,"11":847,"22":4568}},"563":{"randPropPoints":3226,"stats":{"0":1617,"2":2545,"8":1212,"11":880,"22":4617},"upgradeStep":1}}}, +{"id":105315,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,0,0,0,944,0,772,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"8":877,"10":717,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"8":910,"10":744,"22":2938},"upgradeStep":1}}}, +{"id":105316,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2130,0,3556,0,0,0,1484,0,0,0,0,1420,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1369,"11":1310,"22":5814}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1425,"11":1364,"22":5877},"upgradeStep":1}}}, +{"id":105317,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[1321,0,1981,0,0,0,932,0,0,0,0,794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"6":865,"11":737}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"6":898,"11":765},"upgradeStep":1}}}, +{"id":105318,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[936,0,1524,0,0,667,587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"5":616,"6":542}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"5":641,"6":564},"upgradeStep":1}}}, +{"id":105319,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"559":{"randPropPoints":3108,"stats":{"2":3108}},"563":{"randPropPoints":3226,"stats":{"2":3226},"upgradeStep":1}}}, +{"id":105320,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,2641,1601,0,1196,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":1104,"6":850,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":1149,"6":885,"22":1562},"upgradeStep":1}}}, +{"id":105321,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3556,2130,1484,0,1420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1369,"6":1310,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1425,"6":1364,"22":2256},"upgradeStep":1}}}, +{"id":105322,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3556,2130,1597,0,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1474,"7":1132,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1534,"7":1179,"22":2777},"upgradeStep":1}}}, +{"id":105323,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105324,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1981,1321,957,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,1403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":888,"11":697,"22":1374}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":922,"11":724,"22":1388},"upgradeStep":1}}}, +{"id":105325,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,1981,1241,893,0,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":824,"6":681}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":858,"6":708},"upgradeStep":1}}}, +{"id":105326,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,1981,1241,816,0,0,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21773,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"4":753,"7":801,"22":21313}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"4":784,"7":832,"22":21543},"upgradeStep":1}}}, +{"id":105327,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2641,1681,0,0,0,1211,0,0,0,998,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"7":1121,"11":924,"22":2404}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"7":1165,"11":960,"22":2430},"upgradeStep":1}}}, +{"id":105328,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,1981,1321,919,0,0,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":853,"7":757,"22":1530}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":886,"7":785,"22":1546},"upgradeStep":1}}}, +{"id":105329,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3556,2130,1191,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1097,"6":1494,"22":4865}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1143,"6":1555,"22":4918},"upgradeStep":1}}}, +{"id":105330,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3556,2130,1575,0,1266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1453,"6":1167,"22":6645}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1513,"6":1216,"22":6716},"upgradeStep":1}}}, +{"id":105331,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105332,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,936,1524,0,0,0,0,657,604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"1":863,"2":1414,"7":607,"8":557}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"1":899,"2":1468,"7":632,"8":580},"upgradeStep":1}}}, +{"id":105333,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1681,2641,0,0,0,0,1142,0,0,0,1126,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"559":{"randPropPoints":3108,"stats":{"1":1554,"2":2452,"7":1058,"11":1042,"22":2404}},"563":{"randPropPoints":3226,"stats":{"1":1617,"2":2545,"7":1099,"11":1083,"22":2430},"upgradeStep":1}}}, +{"id":105334,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,1321,1981,0,0,944,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"5":877,"7":717,"22":1530}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"5":910,"7":744,"22":1546},"upgradeStep":1}}}, +{"id":105335,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1601,2641,0,0,0,1007,1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":929,"7":1058,"22":2737}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":967,"7":1101,"22":2766},"upgradeStep":1}}}, +{"id":105336,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2210,3556,0,0,0,1637,0,0,0,0,1268,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1514,"11":1172,"22":4865}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1574,"11":1219,"22":4918},"upgradeStep":1}}}, +{"id":105337,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,1597,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1474,"7":1132,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1534,"7":1179,"22":5457},"upgradeStep":1}}}, +{"id":105338,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,0,0,0,0,0,894,1212,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"10":824,"11":1119,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"10":858,"11":1165,"22":3778},"upgradeStep":1}}}, +{"id":105339,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1681,0,2641,0,0,0,0,0,1178,1055,0,0,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"559":{"randPropPoints":3108,"stats":{"0":1554,"2":2452,"8":1090,"9":977,"22":4568}},"563":{"randPropPoints":3226,"stats":{"0":1617,"2":2545,"8":1133,"9":1015,"22":4617},"upgradeStep":1}}}, +{"id":105340,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[1241,0,1981,0,0,0,868,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"6":801,"7":721}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"6":834,"7":749},"upgradeStep":1}}}, +{"id":105341,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[1241,0,1981,0,0,0,0,0,0,0,687,941,0,0,0,0,0,0,0,0,0,0,21773,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"10":633,"11":872,"22":21313}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"10":660,"11":906,"22":21543},"upgradeStep":1}}}, +{"id":105342,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1981,1321,0,0,0,894,0,0,0,858,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"7":830,"11":797,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"7":861,"11":827,"22":1215},"upgradeStep":1}}}, +{"id":105343,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3556,2130,0,0,1382,1507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"6":1274,"7":1390,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"6":1327,"7":1447,"22":2777},"upgradeStep":1}}}, +{"id":105344,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,1981,1321,957,0,0,0,0,0,0,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":888,"11":697}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":922,"11":724},"upgradeStep":1}}}, +{"id":105345,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1524,936,0,0,648,0,0,0,0,620,0,0,13578,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":4270,"weaponDamageMax":7931,"weaponSpeed":1.9,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"559":{"randPropPoints":1793,"weaponDamageMin":3963,"weaponDamageMax":7361,"stats":{"2":1414,"3":863,"6":598,"11":573,"14":12602}},"563":{"randPropPoints":1861,"weaponDamageMin":4114,"weaponDamageMax":7640,"stats":{"2":1468,"3":899,"6":622,"11":596,"14":13079},"upgradeStep":1}}}, +{"id":105346,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2641,1601,850,0,0,0,0,0,0,1243,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":783,"11":1150,"22":2185}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":816,"11":1196,"22":2209},"upgradeStep":1}}}, +{"id":105347,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,3556,2210,1637,0,1268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3126,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1514,"6":1172,"22":3060}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1574,"6":1219,"22":3093},"upgradeStep":1}}}, +{"id":105348,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2641,1601,1036,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":956,"11":1042,"22":2737}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":995,"11":1085,"22":2766},"upgradeStep":1}}}, +{"id":105349,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1981,1321,880,0,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":817,"7":817,"22":2129}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":848,"7":848,"22":2152},"upgradeStep":1}}}, +{"id":105350,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2641,1601,1196,0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1104,"6":850,"22":3738}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1149,"6":885,"22":3778},"upgradeStep":1}}}, +{"id":105351,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2641,1681,0,0,0,1211,0,0,0,998,0,0,0,0,0,0,0,0,0,0,4667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"7":1121,"11":924,"22":4568}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"7":1165,"11":960,"22":4617},"upgradeStep":1}}}, +{"id":105352,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,936,1524,0,0,0,0,637,0,0,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":8091,"weaponDamageMax":15026,"weaponSpeed":1.8,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"559":{"randPropPoints":1793,"weaponDamageMin":7509,"weaponDamageMax":13947,"stats":{"1":863,"2":1414,"7":589,"11":589}},"563":{"randPropPoints":1861,"weaponDamageMin":7795,"weaponDamageMax":14477,"stats":{"1":899,"2":1468,"7":612,"11":612},"upgradeStep":1}}}, +{"id":105353,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,1321,1981,0,0,0,794,932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"6":737,"7":865}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"6":765,"7":898},"upgradeStep":1}}}, +{"id":105354,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2641,1601,0,0,1096,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"6":1010,"7":998,"22":1717}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"6":1052,"7":1039,"22":1736},"upgradeStep":1}}}, +{"id":105355,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,3556,2130,0,0,1460,0,0,0,0,1460,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"6":1347,"11":1347,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"6":1402,"11":1402,"22":2777},"upgradeStep":1}}}, +{"id":105356,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,1981,1241,0,711,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"5":657,"7":848}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"5":684,"7":882},"upgradeStep":1}}}, +{"id":105357,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,1981,1241,0,0,0,829,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"7":765,"11":781}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"7":797,"11":811},"upgradeStep":1}}}, +{"id":105358,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105359,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,0,0,1228,1597,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"10":1132,"11":1474,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"10":1179,"11":1534,"22":6716},"upgradeStep":1}}}, +{"id":105360,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"559":{"randPropPoints":3108},"563":{"randPropPoints":3226,"upgradeStep":1}}}, +{"id":105361,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[2290,0,3556,0,0,0,0,1361,0,0,0,1657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":24935,"weaponDamageMax":37404,"weaponSpeed":3.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"559":{"randPropPoints":4183,"weaponDamageMin":23144,"weaponDamageMax":34717,"stats":{"0":2120,"2":3300,"7":1258,"11":1536}},"563":{"randPropPoints":4342,"weaponDamageMin":24023,"weaponDamageMax":36035,"stats":{"0":2203,"2":3425,"7":1309,"11":1595},"upgradeStep":1}}}, +{"id":105362,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[1241,0,1981,0,0,0,0,0,880,0,0,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"8":813,"11":701}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"8":846,"11":728},"upgradeStep":1}}}, +{"id":105363,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"559":{"randPropPoints":3108,"stats":{"11":2072}},"563":{"randPropPoints":3226,"stats":{"11":2151},"upgradeStep":1}}}, +{"id":105364,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2641,1601,0,0,1078,0,0,0,0,1110,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"6":994,"11":1026,"22":1717}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"6":1035,"11":1067,"22":1736},"upgradeStep":1}}}, +{"id":105365,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,3556,2290,0,0,1675,1295,0,0,0,0,0,0,13576,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":11428,"weaponDamageMax":17143,"weaponSpeed":3.3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"559":{"randPropPoints":4183,"weaponDamageMin":10608,"weaponDamageMax":15912,"stats":{"2":3300,"3":2120,"6":1550,"7":1201,"14":12600}},"563":{"randPropPoints":4342,"weaponDamageMin":11010,"weaponDamageMax":16516,"stats":{"2":3425,"3":2203,"6":1611,"7":1247,"14":13079},"upgradeStep":1}}}, +{"id":105366,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"559":{"randPropPoints":3108,"stats":{"3":2072}},"563":{"randPropPoints":3226,"stats":{"3":2151},"upgradeStep":1}}}, +{"id":105367,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,1321,1981,0,0,0,0,894,0,0,0,858,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"7":830,"11":797,"22":1530}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"7":861,"11":827,"22":1546},"upgradeStep":1}}}, +{"id":105368,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1321,1981,0,0,0,0,858,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"7":797,"11":830,"22":2129}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"7":827,"11":861,"22":2152},"upgradeStep":1}}}, +{"id":105369,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2641,1681,0,0,0,1211,0,0,0,998,0,0,0,0,0,0,0,0,0,0,3417,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1554,"7":1121,"11":924,"22":3345}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1617,"7":1165,"11":960,"22":3381},"upgradeStep":1}}}, +{"id":105370,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1601,0,2641,0,0,0,0,0,0,0,1110,1078,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"10":1026,"11":994,"22":4153}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"10":1067,"11":1035,"22":4198},"upgradeStep":1}}}, +{"id":105371,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[1241,0,1981,0,0,0,0,864,816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"559":{"randPropPoints":2331,"stats":{"0":1146,"2":1839,"7":801,"8":753}},"563":{"randPropPoints":2419,"stats":{"0":1192,"2":1908,"7":832,"8":784},"upgradeStep":1}}}, +{"id":105372,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[936,0,1524,0,0,0,0,648,0,0,0,620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"7":598,"11":573}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"7":622,"11":596},"upgradeStep":1}}}, +{"id":105373,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[1321,0,1981,0,0,0,0,0,880,0,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"8":817,"10":817}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"8":848,"10":848},"upgradeStep":1}}}, +{"id":105374,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,2290,3556,0,0,0,1655,1346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":18182,"weaponDamageMax":33767,"weaponSpeed":3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"559":{"randPropPoints":4183,"weaponDamageMin":16876,"weaponDamageMax":31342,"stats":{"1":2120,"2":3300,"6":1533,"7":1247}},"563":{"randPropPoints":4342,"weaponDamageMin":17517,"weaponDamageMax":32532,"stats":{"1":2203,"2":3425,"6":1593,"7":1296},"upgradeStep":1}}}, +{"id":105375,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,1241,1981,0,0,0,0,821,0,0,0,842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"559":{"randPropPoints":2331,"stats":{"1":1146,"2":1839,"7":761,"11":777}},"563":{"randPropPoints":2419,"stats":{"1":1192,"2":1908,"7":790,"11":809},"upgradeStep":1}}}, +{"id":105376,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,936,1524,0,0,0,637,0,0,0,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"1":863,"2":1414,"6":589,"11":589}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"1":899,"2":1468,"6":612,"11":612},"upgradeStep":1}}}, +{"id":105377,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1981,1321,0,0,880,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"6":817,"7":817,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"6":848,"7":848,"22":1215},"upgradeStep":1}}}, +{"id":105378,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1524,936,0,648,620,0,0,0,0,0,0,0,13578,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":4045,"weaponDamageMax":7513,"weaponSpeed":1.8,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"559":{"randPropPoints":1793,"weaponDamageMin":3754,"weaponDamageMax":6974,"stats":{"2":1414,"3":863,"5":598,"6":573,"14":12602}},"563":{"randPropPoints":1861,"weaponDamageMin":3897,"weaponDamageMax":7238,"stats":{"2":1468,"3":899,"5":622,"6":596,"14":13079},"upgradeStep":1}}}, +{"id":105379,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,1981,1321,0,815,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":757,"11":853}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":785,"11":886},"upgradeStep":1}}}, +{"id":105380,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,3556,2130,1191,0,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1097,"7":1494,"22":3497}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1143,"7":1555,"22":3534},"upgradeStep":1}}}, +{"id":105381,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3556,2130,1597,0,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1474,"7":1132,"22":4865}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1534,"7":1179,"22":4918},"upgradeStep":1}}}, +{"id":105382,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,2641,1601,0,0,0,938,0,0,0,1180,0,0,0,0,0,0,0,0,0,0,4242,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"7":866,"11":1088,"22":4153}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"7":901,"11":1133,"22":4198},"upgradeStep":1}}}, +{"id":105383,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"559":{"randPropPoints":3108,"stats":{"0":2072}},"563":{"randPropPoints":3226,"stats":{"0":2151},"upgradeStep":1}}}, +{"id":105384,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[936,0,1524,0,0,0,637,0,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":11687,"weaponDamageMax":21705,"weaponSpeed":2.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"559":{"randPropPoints":1793,"weaponDamageMin":10847,"weaponDamageMax":20146,"stats":{"0":863,"2":1414,"6":589,"8":589}},"563":{"randPropPoints":1861,"weaponDamageMin":11259,"weaponDamageMax":20911,"stats":{"0":899,"2":1468,"6":612,"8":612},"upgradeStep":1}}}, +{"id":105385,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,2290,3556,0,0,0,1657,0,0,0,0,1361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":22857,"weaponDamageMax":34287,"weaponSpeed":3.3,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"559":{"randPropPoints":4183,"weaponDamageMin":21216,"weaponDamageMax":31824,"stats":{"1":2120,"2":3300,"6":1536,"11":1258}},"563":{"randPropPoints":4342,"weaponDamageMin":22021,"weaponDamageMax":33032,"stats":{"1":2203,"2":3425,"6":1595,"11":1309},"upgradeStep":1}}}, +{"id":105386,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1601,2641,0,0,0,1146,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":1058,"7":929,"22":1967}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":1101,"7":967,"22":1988},"upgradeStep":1}}}, +{"id":105387,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2130,3556,0,0,0,0,1575,0,0,0,1266,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"7":1453,"11":1167,"22":2841}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"7":1513,"11":1216,"22":2872},"upgradeStep":1}}}, +{"id":105388,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2210,3556,0,0,0,0,1721,0,0,0,1121,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"7":1592,"11":1034,"22":4865}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"7":1655,"11":1077,"22":4918},"upgradeStep":1}}}, +{"id":105389,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2130,3556,0,0,0,1530,0,0,0,0,1343,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"6":1411,"11":1238,"22":3953}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"6":1470,"11":1289,"22":3996},"upgradeStep":1}}}, +{"id":105390,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1601,2641,0,0,0,1212,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":1119,"11":824,"22":3649}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":1165,"11":858,"22":3688},"upgradeStep":1}}}, +{"id":105391,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2130,0,3556,0,0,0,0,1484,0,0,0,1420,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"7":1369,"11":1310,"22":5814}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"7":1425,"11":1364,"22":5877},"upgradeStep":1}}}, +{"id":105392,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,0,1243,0,0,0,0,839,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"6":1148,"11":773,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"6":1195,"11":806,"22":5037},"upgradeStep":1}}}, +{"id":105393,"name":"Tusks of Mannoroth","icon":"inv_shoulder_plate_garrosh_d_01","type":3,"armorType":4,"stats":[1521,0,2641,0,0,0,1203,0,0,0,0,799,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":409,"2":974,"6":368,"11":219,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1394,"2":2452,"6":1108,"11":733,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1457,"2":2545,"6":1155,"11":766,"22":5037},"upgradeStep":1}}}, +{"id":105394,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,1081,0,1681,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"8":994,"10":1552,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"8":1037,"10":1615,"22":5457},"upgradeStep":1}}}, +{"id":105395,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[2290,0,3556,0,0,0,1370,0,0,0,0,1631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"weaponDamageMin":24935,"weaponDamageMax":37404,"weaponSpeed":3.6,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"559":{"randPropPoints":4183,"weaponDamageMin":23144,"weaponDamageMax":34717,"stats":{"0":2120,"2":3300,"6":1271,"11":1509}},"563":{"randPropPoints":4342,"weaponDamageMin":24023,"weaponDamageMax":36035,"stats":{"0":2203,"2":3425,"6":1320,"11":1569},"upgradeStep":1}}}, +{"id":105396,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,3348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"559":{"randPropPoints":3108,"stats":{"2":3108}},"563":{"randPropPoints":3226,"stats":{"2":3226},"upgradeStep":1}}}, +{"id":105397,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2641,1601,1036,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":956,"11":1042,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":995,"11":1085,"22":1562},"upgradeStep":1}}}, +{"id":105398,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,3556,2130,0,0,0,1343,0,0,0,1530,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"7":1238,"11":1411,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"7":1289,"11":1470,"22":2256},"upgradeStep":1}}}, +{"id":105399,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"559":{"randPropPoints":3108,"stats":{"7":2072}},"563":{"randPropPoints":3226,"stats":{"7":2151},"upgradeStep":1}}}, +{"id":105400,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1524,936,648,0,0,620,0,0,0,0,0,0,13578,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"weaponDamageMin":5394,"weaponDamageMax":10018,"weaponSpeed":2.4,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"559":{"randPropPoints":1793,"weaponDamageMin":5006,"weaponDamageMax":9298,"stats":{"2":1414,"3":863,"4":598,"7":573,"14":12602}},"563":{"randPropPoints":1861,"weaponDamageMin":5196,"weaponDamageMax":9651,"stats":{"2":1468,"3":899,"4":622,"7":596,"14":13079},"upgradeStep":1}}}, +{"id":105401,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1981,1241,0,0,0,818,0,0,0,854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1146,"7":757,"11":790}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1192,"7":787,"11":821},"upgradeStep":1}}}, +{"id":105402,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,2641,1601,1036,0,0,0,0,0,0,1129,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":956,"11":1042,"22":1967}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":995,"11":1085,"22":1988},"upgradeStep":1}}}, +{"id":105403,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2641,1601,1094,0,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1010,"7":1010,"22":2623}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1051,"7":1051,"22":2651},"upgradeStep":1}}}, +{"id":105404,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,3556,2130,1484,0,0,0,0,0,0,1420,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1369,"11":1310,"22":3953}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1425,"11":1364,"22":3996},"upgradeStep":1}}}, +{"id":105405,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3556,2130,1530,0,0,0,0,0,0,1343,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1411,"11":1238,"22":6645}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1470,"11":1289,"22":6716},"upgradeStep":1}}}, +{"id":105406,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2641,1601,1212,0,0,894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1119,"7":824,"22":4983}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1165,"7":858,"22":5037},"upgradeStep":1}}}, +{"id":105407,"name":"Immerseus' Crystalline Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1490,2236,0,0,0,0,994,0,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":325,"11":325}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"7":922,"11":922}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"7":957,"11":957},"upgradeStep":1}}}, +{"id":105408,"name":"Trident of Corrupted Waters","icon":"inv_staff_2h_orgimmarraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,2595,4013,0,0,0,1969,0,1339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":25801,"weaponDamageMax":38702,"weaponSpeed":3.3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"8":427}},"572":{"randPropPoints":4722,"weaponDamageMin":23947,"weaponDamageMax":35922,"stats":{"1":2403,"2":3725,"6":1823,"8":1242}},"576":{"randPropPoints":4901,"weaponDamageMin":24857,"weaponDamageMax":37286,"stats":{"1":2497,"2":3866,"6":1895,"8":1290},"upgradeStep":1}}}, +{"id":105409,"name":"Hood of Blackened Tears","icon":"inv_leather_raiddruid_n_01helm","type":1,"armorType":2,"stats":[0,2435,4013,0,0,0,1742,1531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3002,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"7":420,"22":2083}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"6":1609,"7":1413,"22":2941}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"6":1674,"7":1471,"22":2971},"upgradeStep":1}}}, +{"id":105410,"name":"Puddle Punishers","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,1907,2981,0,0,1114,1389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":332,"6":432,"22":2453}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"5":1031,"6":1287,"22":3462}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"5":1072,"6":1337,"22":3498},"upgradeStep":1}}}, +{"id":105411,"name":"Bubble-Burst Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1490,0,2236,0,0,1107,0,801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":362,"7":262,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"5":1027,"7":744,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"5":1066,"7":772,"22":3040},"upgradeStep":1}}}, +{"id":105412,"name":"Chestplate of Congealed Corrosion","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2435,0,4013,0,0,0,1360,1843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":364,"7":522,"22":4872}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"6":1254,"7":1702,"22":6877}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"6":1306,"7":1771,"22":6949},"upgradeStep":1}}}, +{"id":105413,"name":"Corruption-Rotted Gauntlets","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1827,0,2981,0,0,0,0,1228,0,0,0,1249,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":358,"11":344,"22":3045}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"7":1135,"11":1152,"22":4298}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"7":1180,"11":1200,"22":4343},"upgradeStep":1}}}, +{"id":105414,"name":"Treads of Unchained Hate","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1907,0,2981,0,0,1147,0,0,0,0,1370,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":342,"10":426,"22":3350}},"572":{"randPropPoints":3508,"stats":{"0":1765,"2":2767,"5":1061,"10":1270,"22":4728}},"576":{"randPropPoints":3641,"stats":{"0":1835,"2":2872,"5":1103,"10":1319,"22":4777},"upgradeStep":1}}}, +{"id":105415,"name":"Bracers of Sordid Sleep","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1490,0,2236,0,0,0,0,0,0,994,994,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":325,"10":325,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"9":922,"10":922,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"9":957,"10":957,"22":3040},"upgradeStep":1}}}, +{"id":105416,"name":"Pauldrons of Violent Eruption","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1827,0,2981,0,0,0,0,0,0,927,1430,0,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":249,"10":414,"22":3654}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"9":855,"10":1322,"22":5158}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"9":890,"10":1375,"22":5212},"upgradeStep":1}}}, +{"id":105417,"name":"Encapsulated Essence of Immerseus","icon":"inv_mace_1h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[1066,0,1720,0,0,0,0,0,0,724,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"9":210,"10":210}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"9":670,"10":670}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"9":697,"10":697},"upgradeStep":1}}}, +{"id":105418,"name":"Bolt-Burster Grips","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2981,1827,1306,0,1131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1259}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1206,"6":1045,"22":1777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1255,"6":1087,"22":1796},"upgradeStep":1}}}, +{"id":105419,"name":"Ichor-Dripping Shoulderpads","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2981,1827,1360,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1511}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"6":970,"22":2133}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1307,"6":1009,"22":2155},"upgradeStep":1}}}, +{"id":105420,"name":"Hood of Swirling Senses","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,4013,2435,0,0,1664,0,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":1637}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"6":1536,"11":1536,"22":2310}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"6":1598,"11":1598,"22":2334},"upgradeStep":1}}}, +{"id":105421,"name":"Cloak of Misguided Power","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,2236,1490,0,994,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325,"22":1007}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":922,"7":922,"22":1422}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":957,"7":957,"22":1437},"upgradeStep":1}}}, +{"id":105422,"name":"Purified Bindings of Immerseus","icon":"inv_jewelry_orgrimmarraid_trinket_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105423,"name":"Seal of Eternal Sorrow","icon":"inv_misc_ring_mop9","type":11,"stats":[0,0,2236,1410,1056,0,0,0,0,0,0,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":302,"11":238}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":976,"11":706}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":1015,"11":734},"upgradeStep":1}}}, +{"id":105424,"name":"Salt Water Sandals","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2981,1907,1277,0,0,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":1763}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1182,"7":1198,"22":2488}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1229,"7":1245,"22":2514},"upgradeStep":1}}}, +{"id":105425,"name":"Bracers of Purified Spirit","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,2236,1490,755,0,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"6":371,"22":1122}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":701,"6":1052,"22":1583}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":728,"6":1092,"22":1600},"upgradeStep":1}}}, +{"id":105426,"name":"Soul-Soaked Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2981,1827,1229,0,1261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3213,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":337,"6":369,"22":2230}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1134,"6":1166,"22":3147}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1181,"6":1213,"22":3180},"upgradeStep":1}}}, +{"id":105427,"name":"Greatbelt of Living Waters","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2981,1827,1179,0,0,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2741}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1089,"11":1186,"22":3869}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1133,"11":1234,"22":3909},"upgradeStep":1}}}, +{"id":105428,"name":"Waterwalker Greatboots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2981,1907,1277,0,0,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":3350}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1182,"7":1198,"22":4728}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1229,"7":1245,"22":4777},"upgradeStep":1}}}, +{"id":105429,"name":"Death Lotus Crossbow","icon":"inv_bow_2h_crossbow_orgrimmarraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,2595,4013,0,0,1317,0,1993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":23455,"weaponDamageMax":35184,"weaponSpeed":3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":7667,"weaponDamageMax":11502,"stats":{"1":795,"2":1312,"5":404,"7":625}},"572":{"randPropPoints":4722,"weaponDamageMin":21770,"weaponDamageMax":32656,"stats":{"1":2403,"2":3725,"5":1219,"7":1847}},"576":{"randPropPoints":4901,"weaponDamageMin":22597,"weaponDamageMax":33896,"stats":{"1":2497,"2":3866,"5":1267,"7":1919},"upgradeStep":1}}}, +{"id":105430,"name":"Softfoot's Last Resort","icon":"inv_hand_1h_orgrimmarraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,1066,1720,0,0,631,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"5":179,"6":228}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"1":984,"2":1597,"5":583,"6":721}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"1":1025,"2":1657,"5":606,"6":750},"upgradeStep":1}}}, +{"id":105431,"name":"Stonetoe's Tormented Treads","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1907,2981,0,0,1147,0,1370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"5":342,"7":426,"22":1763}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"5":1061,"7":1270,"22":2488}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"5":1103,"7":1319,"22":2514},"upgradeStep":1}}}, +{"id":105432,"name":"Grips of Unending Anguish","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1827,2981,0,0,0,1446,0,911,0,0,0,0,0,0,0,0,0,0,0,0,0,3213,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":430,"8":233,"22":2230}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1338,"8":839,"22":3147}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1391,"8":874,"22":3180},"upgradeStep":1}}}, +{"id":105433,"name":"Poisonbinder Girth","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1827,0,2981,0,0,1341,0,1082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":384,"7":300,"22":2741}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"5":1239,"7":999,"22":3869}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"5":1289,"7":1040,"22":3909},"upgradeStep":1}}}, +{"id":105434,"name":"Darkfallen Shoulderplates","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1827,0,2981,0,0,0,0,1179,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[3,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":332,"11":366,"22":3654}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"7":1089,"11":1186,"22":5158}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"7":1133,"11":1234,"22":5212},"upgradeStep":1}}}, +{"id":105435,"name":"Shockstriker Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1827,0,2981,0,0,0,0,0,0,1268,1195,0,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":350,"10":348,"22":3045}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"9":1170,"10":1105,"22":4298}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"9":1218,"10":1149,"22":4343},"upgradeStep":1}}}, +{"id":105436,"name":"Sorrowpath Signet","icon":"inv_misc_ring_mop10","type":11,"stats":[1490,0,2236,0,0,848,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":277,"6":353}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"5":787,"6":1002}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"5":817,"6":1041},"upgradeStep":1}}}, +{"id":105437,"name":"Gloomwrap Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1490,0,2236,0,0,0,0,0,896,0,1052,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":293,"10":344,"22":1007}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"8":832,"10":976,"22":1422}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"8":863,"10":1013,"22":1437},"upgradeStep":1}}}, +{"id":105438,"name":"Rook's Unlucky Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_20","type":12,"stats":[0,0,3779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"572":{"randPropPoints":3508,"stats":{"2":3508}},"576":{"randPropPoints":3641,"stats":{"2":3641},"upgradeStep":1}}}, +{"id":105439,"name":"Sha-Seared Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2981,1907,0,959,0,1478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"5":281,"7":462,"22":1385}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"5":887,"7":1370,"22":1955}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"5":922,"7":1423,"22":1975},"upgradeStep":1}}}, +{"id":105440,"name":"Robes of the Tendered Heart","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,4013,2435,0,1235,0,1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":2014}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"5":1138,"7":1767,"22":2844}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"5":1186,"7":1839,"22":2873},"upgradeStep":1}}}, +{"id":105441,"name":"Shoulderpads of Dou Dou Chong","icon":"inv_shoulder_cloth_raidwarlock_n_01","type":3,"armorType":1,"stats":[0,0,2981,1827,0,988,0,0,0,0,0,1396,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":269,"11":402,"22":1511}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"5":912,"11":1290,"22":2133}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"5":949,"11":1342,"22":2155},"upgradeStep":1}}}, +{"id":105442,"name":"Lifebane Bracers","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2236,1490,1038,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":963,"11":854,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1000,"11":886,"22":1257},"upgradeStep":1}}}, +{"id":105443,"name":"Petrified Pennyroyal Ring","icon":"inv_misc_ring_mop11","type":11,"stats":[0,0,2236,1490,0,1066,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":349,"6":285}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":990,"6":809}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":1027,"6":840},"upgradeStep":1}}}, +{"id":105444,"name":"Purehearted Cricket Cage","icon":"inv_offhand_1h_orgrimmarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,2236,1410,1080,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":326,"7":214}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":1000,"7":682}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":1039,"7":710},"upgradeStep":1}}}, +{"id":105445,"name":"Shoulders of the Roiling Inferno","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2981,1827,1303,0,1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":372,"6":321,"22":1923}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1204,"6":1059,"22":2714}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1253,"6":1102,"22":2743},"upgradeStep":1}}}, +{"id":105446,"name":"Sabatons of Defilement","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2981,1907,1277,0,0,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":385,"7":401,"22":2453}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1182,"7":1198,"22":3462}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1229,"7":1245,"22":3498},"upgradeStep":1}}}, +{"id":105447,"name":"Shoulderguards of Dark Meditations","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2981,1827,1212,0,1265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":2676}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1119,"6":1168,"22":3777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1164,"6":1216,"22":3816},"upgradeStep":1}}}, +{"id":105448,"name":"Grips of the Fallen Council","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2981,1827,1249,0,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":344,"7":358,"22":3045}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1152,"7":1135,"22":4298}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1200,"7":1180,"22":4343},"upgradeStep":1}}}, +{"id":105449,"name":"Gaze of Echoing Despair","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,4013,2435,1235,0,1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":3959}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1138,"6":1767,"22":5588}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1186,"6":1839,"22":5646},"upgradeStep":1}}}, +{"id":105450,"name":"Norushen's Shortblade","icon":"inv_knife_1h_orgrimmarraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,1066,1720,0,0,649,0,0,0,0,0,769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":9132,"weaponDamageMax":16961,"weaponSpeed":1.8,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"5":185,"11":225}},"572":{"randPropPoints":2024,"weaponDamageMin":8476,"weaponDamageMax":15743,"stats":{"1":984,"2":1597,"5":600,"11":711}},"576":{"randPropPoints":2101,"weaponDamageMin":8798,"weaponDamageMax":16341,"stats":{"1":1025,"2":1657,"5":624,"11":740},"upgradeStep":1}}}, +{"id":105451,"name":"Reality Ripper Ring","icon":"inv_misc_ring_mop16","type":11,"stats":[0,1410,2236,0,0,1069,739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"5":307,"6":231}},"572":{"randPropPoints":2631,"stats":{"1":1304,"2":2076,"5":988,"6":685}},"576":{"randPropPoints":2731,"stats":{"1":1356,"2":2154,"5":1028,"6":712},"upgradeStep":1}}}, +{"id":105452,"name":"Robes of the Blackened Watcher","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2435,4013,0,0,0,1276,1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":336,"7":537,"22":2564}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"6":1176,"7":1746,"22":3619}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"6":1225,"7":1816,"22":3657},"upgradeStep":1}}}, +{"id":105453,"name":"Gloves of the Golden Protector","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,1827,2981,0,0,1035,1376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":274,"6":407,"22":1602}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"5":954,"6":1273,"22":2262}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"5":993,"6":1323,"22":2286},"upgradeStep":1}}}, +{"id":105454,"name":"Leggings of Unabashed Anger","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2515,4013,0,0,0,1782,0,0,0,0,1571,0,0,0,0,0,0,0,0,0,0,4498,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":529,"11":460,"22":3122}},"572":{"randPropPoints":4722,"stats":{"1":2323,"2":3725,"6":1649,"11":1453,"22":4406}},"576":{"randPropPoints":4901,"stats":{"1":2417,"2":3866,"6":1714,"11":1511,"22":4452},"upgradeStep":1}}}, +{"id":105455,"name":"Quarantine Shoulderguards","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1827,2981,0,0,0,0,1245,0,0,0,1245,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":2676}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"7":1150,"11":1150,"22":3777}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"7":1197,"11":1197,"22":3816},"upgradeStep":1}}}, +{"id":105456,"name":"Bracers of Blind Hatred","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1490,0,2236,0,0,0,969,0,0,0,0,1009,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":317,"11":330,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"6":899,"11":936,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"6":933,"11":972,"22":3040},"upgradeStep":1}}}, +{"id":105457,"name":"Rage-Blind Greathelm","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2435,0,4013,0,0,0,0,0,0,1664,1664,0,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":3959}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"9":1536,"10":1536,"22":5588}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"9":1598,"10":1598,"22":5646},"upgradeStep":1}}}, +{"id":105458,"name":"Drape of the Despairing Pit","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1490,0,2236,0,0,0,0,1093,0,0,0,824,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"7":358,"11":270,"22":1007}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"7":1015,"11":765,"22":1422}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"7":1054,"11":794,"22":1437},"upgradeStep":1}}}, +{"id":105459,"name":"Fusion-Fire Core","icon":"inv_jewelry_orgrimmarraid_trinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105460,"name":"Xifeng, Longblade of the Titanic Guardian","icon":"inv_sword_1h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[1066,0,1720,0,0,780,0,0,0,0,0,631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":228,"11":179}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"5":721,"11":583}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"5":750,"11":606},"upgradeStep":1}}}, +{"id":105461,"name":"Bracers of Broken Causation","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,2236,1490,0,1038,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":339,"11":301,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":963,"11":854,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":1000,"11":886,"22":1257},"upgradeStep":1}}}, +{"id":105462,"name":"Blight Hurlers","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2981,1827,0,1066,1357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":284,"6":400,"22":1259}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"5":983,"6":1255,"22":1777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"5":1024,"6":1305,"22":1796},"upgradeStep":1}}}, +{"id":105463,"name":"Sash of the Last Guardian","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2981,1827,1360,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1133}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"6":970,"22":1599}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1307,"6":1009,"22":1616},"upgradeStep":1}}}, +{"id":105464,"name":"Rime-Rift Shoulders","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2981,1827,0,0,1179,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":332,"11":366,"22":1511}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"6":1089,"11":1186,"22":2133}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"6":1133,"11":1234,"22":2155},"upgradeStep":1}}}, +{"id":105465,"name":"Untainted Guardian's Chain","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,2236,1490,0,944,0,0,0,0,0,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":309,"11":335}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":877,"11":950}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":910,"11":986},"upgradeStep":1}}}, +{"id":105466,"name":"Norushen's Enigmatic Barrier","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,2236,1410,808,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,0,22519,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":221,"11":333,"22":15628}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":745,"11":974,"22":22060}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":776,"11":1011,"22":22289},"upgradeStep":1}}}, +{"id":105467,"name":"Boots of Broken Reliance","icon":"inv_boot_leather_raidmonk_n_01","type":10,"armorType":2,"stats":[0,0,2981,1907,1179,0,1351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":1763}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1091,"6":1252,"22":2488}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1134,"6":1301,"22":2514},"upgradeStep":1}}}, +{"id":105468,"name":"Confident Grips","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2981,1827,0,0,1249,0,0,0,0,1228,0,0,0,0,0,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"11":358,"22":1602}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"6":1152,"11":1135,"22":2262}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"6":1200,"11":1180,"22":2286},"upgradeStep":1}}}, +{"id":105469,"name":"Bracers of Final Serenity","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2236,1490,1120,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1561}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":1040,"6":722,"22":2203}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1079,"6":750,"22":2226},"upgradeStep":1}}}, +{"id":105470,"name":"Shadow-Binder's Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,4013,2515,1858,0,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4498,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":3122}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2323,"4":1719,"6":1333,"22":4406}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2417,"4":1787,"6":1386,"22":4452},"upgradeStep":1}}}, +{"id":105471,"name":"Wristplates of Broken Doubt","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2236,1490,1066,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":349,"6":285,"22":2132}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":990,"6":809,"22":3009}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1027,"6":840,"22":3040},"upgradeStep":1}}}, +{"id":105472,"name":"Assurance of Consequence","icon":"inv_jewelry_orgrimmarraid_trinket_14","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105473,"name":"Necklace of Fading Light","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,2236,1490,1009,0,0,969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":330,"7":317}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":936,"7":899}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":972,"7":933},"upgradeStep":1}}}, +{"id":105474,"name":"Prismatic Prison of Pride","icon":"inv_jewelry_orgrimmarraid_trinket_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105475,"name":"Gaze of Arrogance","icon":"inv_staff_2h_orgrimmarraid_d_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,4013,2595,0,0,1675,0,0,0,0,1794,0,0,15323,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":12900,"weaponDamageMax":19351,"weaponSpeed":3.3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":504,"11":576,"14":5009}},"572":{"randPropPoints":4722,"weaponDamageMin":11973,"weaponDamageMax":17961,"stats":{"2":3725,"3":2403,"6":1550,"11":1665,"14":14223}},"576":{"randPropPoints":4901,"weaponDamageMin":12428,"weaponDamageMax":18643,"stats":{"2":3866,"3":2497,"6":1611,"11":1728,"14":14762},"upgradeStep":1}}}, +{"id":105476,"name":"Self-Reflecting Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,4013,2435,1664,0,0,0,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,3002,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":463,"11":463,"22":2083}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1536,"11":1536,"22":2941}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1598,"11":1598,"22":2971},"upgradeStep":1}}}, +{"id":105477,"name":"Crown of Boastful Words","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,4013,2435,1690,0,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"7":448,"22":3959}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1561,"7":1494,"22":5588}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1624,"7":1555,"22":5646},"upgradeStep":1}}}, +{"id":105478,"name":"Greaves of Sublime Superiority","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[1907,0,2981,0,0,1277,1293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"5":385,"6":401,"22":3350}},"572":{"randPropPoints":3508,"stats":{"0":1765,"2":2767,"5":1182,"6":1198,"22":4728}},"576":{"randPropPoints":3641,"stats":{"0":1835,"2":2872,"5":1229,"6":1245,"22":4777},"upgradeStep":1}}}, +{"id":105479,"name":"Greatsword of Pride's Fall","icon":"inv_sword_2h_orgrimmarraid_d_01","type":13,"weaponType":9,"handType":4,"stats":[2595,0,4013,0,0,0,1635,1798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":28146,"weaponDamageMax":42220,"weaponSpeed":3.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":524,"7":545}},"572":{"randPropPoints":4722,"weaponDamageMin":26125,"weaponDamageMax":39188,"stats":{"0":2403,"2":3725,"6":1517,"7":1665}},"576":{"randPropPoints":4901,"weaponDamageMin":27117,"weaponDamageMax":40676,"stats":{"0":2497,"2":3866,"6":1575,"7":1730},"upgradeStep":1}}}, +{"id":105480,"name":"Choker of the Final Word","icon":"inv_misc_necklace_mop1","type":2,"stats":[1490,0,2236,0,0,1120,0,0,0,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":366,"9":254}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"5":1040,"9":722}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"5":1079,"9":750},"upgradeStep":1}}}, +{"id":105481,"name":"Shield of Mockery","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[1410,0,2236,0,0,0,0,0,0,930,978,0,0,0,0,0,0,0,0,0,0,0,22519,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":261,"10":309,"22":15628}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"9":858,"10":906,"22":22060}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"9":893,"10":941,"22":22289},"upgradeStep":1}}}, +{"id":105482,"name":"Dagryn's Discarded Longbow","icon":"inv_bow_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,2595,4013,0,0,0,0,1315,0,0,0,1993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":20523,"weaponDamageMax":38115,"weaponSpeed":3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"7":403,"11":625}},"572":{"randPropPoints":4722,"weaponDamageMin":19049,"weaponDamageMax":35378,"stats":{"1":2403,"2":3725,"7":1218,"11":1847}},"576":{"randPropPoints":4901,"weaponDamageMin":19772,"weaponDamageMax":36721,"stats":{"1":2497,"2":3866,"7":1266,"11":1919},"upgradeStep":1}}}, +{"id":105483,"name":"Swift Serpent Signet","icon":"inv_misc_ring_mop4","type":11,"stats":[0,1410,2236,0,0,0,0,0,945,0,0,953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"8":266,"11":301}},"572":{"randPropPoints":2631,"stats":{"1":1304,"2":2076,"8":872,"11":883}},"576":{"randPropPoints":2731,"stats":{"1":1356,"2":2154,"8":908,"11":917},"upgradeStep":1}}}, +{"id":105484,"name":"Unrepentant Heels","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,1907,2981,0,0,0,1099,0,1392,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":338,"8":423,"22":1763}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"6":1018,"8":1289,"22":2488}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"6":1057,"8":1339,"22":2514},"upgradeStep":1}}}, +{"id":105485,"name":"Korgra's Venom-Soaked Gauntlets","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1827,2981,0,0,0,1249,0,0,0,0,1228,0,0,0,0,0,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":344,"11":358,"22":1602}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1152,"11":1135,"22":2262}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1200,"11":1180,"22":2286},"upgradeStep":1}}}, +{"id":105486,"name":"Cannoneer's Multipocket Gunbelt","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1827,2981,0,0,1322,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":2007}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"5":1222,"7":1029,"22":2833}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"5":1271,"7":1071,"22":2862},"upgradeStep":1}}}, +{"id":105487,"name":"Dagryn's Fuselight Bracers","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1490,2236,0,0,1066,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1561}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"5":990,"7":809,"22":2203}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"5":1027,"7":840,"22":2226},"upgradeStep":1}}}, +{"id":105488,"name":"Thranok's Shattering Helm","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2435,0,4013,0,0,0,0,1690,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":3959}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"7":1561,"11":1494,"22":5588}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"7":1624,"11":1555,"22":5646},"upgradeStep":1}}}, +{"id":105489,"name":"Arcsmasher Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[1490,0,2236,0,0,1080,0,0,0,848,0,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":353,"9":277,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"5":1002,"9":787,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"5":1041,"9":817,"22":3040},"upgradeStep":1}}}, +{"id":105490,"name":"Krugruk's Rigid Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1827,0,2981,0,0,1051,0,0,0,0,0,1360,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"11":391,"22":3654}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"5":970,"11":1257,"22":5158}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"5":1009,"11":1307,"22":5212},"upgradeStep":1}}}, +{"id":105491,"name":"Evil Eye of Galakras","icon":"inv_jewelry_orgrimmarraid_trinket_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105492,"name":"Galakrond Control Band","icon":"inv_misc_ring_mop3","type":11,"stats":[1410,0,2236,0,0,0,0,0,0,953,945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"9":301,"10":266}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"9":883,"10":872}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"9":917,"10":908},"upgradeStep":1}}}, +{"id":105493,"name":"Bone-Inlaid Sandals","icon":"inv_boot_cloth_raidwarlock_n_01","type":10,"armorType":1,"stats":[0,0,2981,1907,0,0,0,1297,0,0,0,1260,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":392,"11":390,"22":1385}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"7":1200,"11":1167,"22":1955}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"7":1248,"11":1212,"22":1975},"upgradeStep":1}}}, +{"id":105494,"name":"Scalebane Bracers","icon":"inv_bracer_cloth_raidwarlock_n_01","type":6,"armorType":1,"stats":[0,0,2236,1490,0,1093,824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":358,"6":270,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":1015,"6":765,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":1054,"6":794,"22":1257},"upgradeStep":1}}}, +{"id":105495,"name":"Flameslinger's Fiery Cowl","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,4013,2435,0,1235,0,1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":323,"7":545,"22":1637}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"5":1138,"7":1767,"22":2310}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"5":1186,"7":1839,"22":2334},"upgradeStep":1}}}, +{"id":105496,"name":"Skydancer Boots","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2981,1907,1410,0,0,1067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":428,"7":327,"22":1385}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1305,"7":988,"22":1955}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1357,"7":1027,"22":1975},"upgradeStep":1}}}, +{"id":105497,"name":"Shoulderpads of Pulsing Protection","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2981,1827,1245,0,0,1245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1511}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1150,"7":1150,"22":2133}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1197,"7":1197,"22":2155},"upgradeStep":1}}}, +{"id":105498,"name":"Extinguished Ember of Galakras","icon":"inv_misc_ring_mop5","type":11,"stats":[0,0,2236,1490,0,994,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":325,"7":325}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":922,"7":922}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":957,"7":957},"upgradeStep":1}}}, +{"id":105499,"name":"Drakebinder Greatstaff","icon":"inv_staff_2h_orgrimmarraid_d_05","type":13,"weaponType":8,"handType":4,"stats":[0,0,4013,2595,2017,0,0,0,0,0,0,1291,0,0,15323,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":12900,"weaponDamageMax":19351,"weaponSpeed":3.3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"4":649,"11":379,"14":5009}},"572":{"randPropPoints":4722,"weaponDamageMin":11973,"weaponDamageMax":17961,"stats":{"2":3725,"3":2403,"4":1871,"11":1194,"14":14223}},"576":{"randPropPoints":4901,"weaponDamageMin":12428,"weaponDamageMax":18643,"stats":{"2":3866,"3":2497,"4":1943,"11":1242,"14":14762},"upgradeStep":1}}}, +{"id":105500,"name":"Dragonmaw Emergency Strap","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2981,1827,1360,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":1442}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"6":970,"22":2036}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1307,"6":1009,"22":2057},"upgradeStep":1}}}, +{"id":105501,"name":"Grips of Tidal Force","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2981,1827,0,0,1344,0,0,0,0,1067,0,0,0,0,0,0,0,0,0,0,3213,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":375,"11":306,"22":2230}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"6":1241,"11":986,"22":3147}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"6":1291,"11":1025,"22":3180},"upgradeStep":1}}}, +{"id":105502,"name":"Smoldering Drakescale Bracers","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2236,1490,1038,0,0,0,0,0,0,920,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"11":301,"22":2132}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":963,"11":854,"22":3009}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1000,"11":886,"22":3040},"upgradeStep":1}}}, +{"id":105503,"name":"Windfire Legplates","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,4013,2515,1858,0,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6143,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":4263}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2323,"4":1719,"6":1333,"22":6018}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2417,"4":1787,"6":1386,"22":6080},"upgradeStep":1}}}, +{"id":105504,"name":"Seismic Bore","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[0,1066,1720,0,0,0,736,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":214,"7":204}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"1":984,"2":1597,"6":680,"7":652}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"1":1025,"2":1657,"6":708,"7":678},"upgradeStep":1}}}, +{"id":105505,"name":"Laser Burn Bracers","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1490,2236,0,0,0,848,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1122}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"6":787,"8":1002,"22":1583}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"6":817,"8":1041,"22":1600},"upgradeStep":1}}}, +{"id":105506,"name":"Ricocheting Shoulderguards","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1827,2981,0,0,0,1378,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":1923}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1273,"11":940,"22":2714}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1325,"11":979,"22":2743},"upgradeStep":1}}}, +{"id":105507,"name":"Minelayer's Padded Boots","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1907,2981,0,0,0,0,0,1244,0,0,1313,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"8":374,"11":408,"22":2453}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"8":1151,"11":1216,"22":3462}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"8":1196,"11":1264,"22":3498},"upgradeStep":1}}}, +{"id":105508,"name":"Precision Cutters","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,1827,2981,0,0,0,0,1414,0,0,0,943,0,0,0,0,0,0,0,0,0,0,3213,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":398,"11":265,"22":2230}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"7":1306,"11":871,"22":3147}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"7":1359,"11":906,"22":3180},"upgradeStep":1}}}, +{"id":105509,"name":"Demolisher's Reinforced Belt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1827,0,2981,0,0,0,0,1245,0,0,0,1245,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":353,"11":353,"22":2741}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"7":1150,"11":1150,"22":3869}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"7":1197,"11":1197,"22":3909},"upgradeStep":1}}}, +{"id":105510,"name":"Wall-Borer Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1490,0,2236,0,0,0,824,0,1093,0,0,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":270,"8":358,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"6":765,"8":1015,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"6":794,"8":1054,"22":3040},"upgradeStep":1}}}, +{"id":105511,"name":"Tar-Coated Gauntlets","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1827,0,2981,0,0,0,1325,1098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":368,"7":316,"22":3045}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"6":1223,"7":1015,"22":4298}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"6":1273,"7":1056,"22":4343},"upgradeStep":1}}}, +{"id":105512,"name":"Earthbreaker's Steaming Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2435,0,4013,0,0,0,0,0,0,1664,1664,0,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":463,"10":463,"22":4872}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"9":1536,"10":1536,"22":6877}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"9":1598,"10":1598,"22":6949},"upgradeStep":1}}}, +{"id":105513,"name":"Juggernaut's Ignition Keys","icon":"inv_misc_key_06","type":2,"stats":[1490,0,2236,0,0,1023,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"5":950,"11":877}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"5":986,"11":910},"upgradeStep":1}}}, +{"id":105514,"name":"Juggernaut's Focusing Crystal","icon":"inv_jewelry_orgrimmarraid_trinket_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"9":823}},"572":{"randPropPoints":3508,"stats":{"9":2338}},"576":{"randPropPoints":3641,"stats":{"9":2427},"upgradeStep":1}}}, +{"id":105515,"name":"Belt of Ominous Trembles","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2981,1827,0,1341,0,0,0,0,0,1082,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":384,"11":300,"22":1133}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"5":1239,"11":999,"22":1599}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"5":1289,"11":1040,"22":1616},"upgradeStep":1}}}, +{"id":105516,"name":"Leggings of Furious Flame","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,4013,2515,0,0,0,1730,0,0,0,1659,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":512,"11":488,"22":1763}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2323,"7":1601,"11":1534,"22":2488}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2417,"7":1664,"11":1595,"22":2514},"upgradeStep":1}}}, +{"id":105517,"name":"Bracers of the Broken Fault","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2236,1490,1052,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":344,"7":293,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":976,"7":832,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1013,"7":863,"22":1257},"upgradeStep":1}}}, +{"id":105518,"name":"Earthripper Gloves","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2981,1827,1362,0,0,1035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":380,"7":295,"22":1259}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"7":956,"22":1777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1309,"7":995,"22":1796},"upgradeStep":1}}}, +{"id":105519,"name":"Shock Pulse Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,4013,2435,1768,0,1488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":497,"6":406,"22":2014}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1632,"6":1373,"22":2844}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1699,"6":1429,"22":2873},"upgradeStep":1}}}, +{"id":105520,"name":"Laser-Slice Signet","icon":"inv_misc_ring_mop17","type":11,"stats":[0,0,2236,1410,974,0,0,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":275,"7":285}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":899,"7":838}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":936,"7":870},"upgradeStep":1}}}, +{"id":105521,"name":"Juggernaut's Power Core","icon":"inv_offhand_1h_pvpcataclysms3_c_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,2236,1410,0,0,954,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"6":285,"7":243}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"6":882,"7":764}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"6":917,"7":795},"upgradeStep":1}}}, +{"id":105522,"name":"Castlebreaker Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,2236,1490,1080,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1122}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":1002,"11":787,"22":1583}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1041,"11":817,"22":1600},"upgradeStep":1}}}, +{"id":105523,"name":"Treads of Autonomic Motion","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2981,1907,1179,0,1351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":2453}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1091,"6":1252,"22":3462}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1134,"6":1301,"22":3498},"upgradeStep":1}}}, +{"id":105524,"name":"Cavemaker Wristguards","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2236,1490,1023,0,0,0,0,0,0,944,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":335,"11":309,"22":1561}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":950,"11":877,"22":2203}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":986,"11":910,"22":2226},"upgradeStep":1}}}, +{"id":105525,"name":"Borer Drill Boots","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2981,1907,1179,0,1351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":353,"6":420,"22":3350}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1091,"6":1252,"22":4728}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1134,"6":1301,"22":4777},"upgradeStep":1}}}, +{"id":105526,"name":"Poisonmist Nightcloak","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1490,2236,0,0,0,0,872,0,0,0,1066,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":285,"11":349,"22":1007}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"7":809,"11":990,"22":1422}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"7":840,"11":1027,"22":1437},"upgradeStep":1}}}, +{"id":105527,"name":"Haromm's Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105528,"name":"Damron's Belt of Darkness","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1827,2981,0,0,1322,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":378,"7":310,"22":1442}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"5":1222,"7":1029,"22":2036}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"5":1271,"7":1071,"22":2057},"upgradeStep":1}}}, +{"id":105529,"name":"Riou's Vigilant Leggings","icon":"inv_pant_leather_raidrogue_n_01","type":9,"armorType":2,"stats":[0,2515,4013,0,0,0,1730,0,0,0,0,1659,0,0,0,0,0,0,0,0,0,0,3233,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":512,"11":488,"22":2243}},"572":{"randPropPoints":4722,"stats":{"1":2323,"2":3725,"6":1601,"11":1534,"22":3167}},"576":{"randPropPoints":4901,"stats":{"1":2417,"2":3866,"6":1664,"11":1595,"22":3200},"upgradeStep":1}}}, +{"id":105530,"name":"Haromm's Horrifying Helm","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2435,4013,0,0,0,0,1445,0,0,0,1793,0,0,0,0,0,0,0,0,0,0,4177,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":392,"11":505,"22":2899}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"7":1332,"11":1656,"22":4092}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"7":1388,"11":1723,"22":4134},"upgradeStep":1}}}, +{"id":105531,"name":"Wolf-Rider Spurs","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1907,0,2981,0,0,0,1297,1260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"6":392,"7":390,"22":3350}},"572":{"randPropPoints":3508,"stats":{"0":1765,"2":2767,"6":1200,"7":1167,"22":4728}},"576":{"randPropPoints":3641,"stats":{"0":1835,"2":2872,"6":1248,"7":1212,"22":4777},"upgradeStep":1}}}, +{"id":105532,"name":"Breastplate of Shamanic Mirrors","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2435,0,4013,0,0,0,1768,0,0,0,0,1488,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":497,"11":406,"22":4872}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"6":1632,"11":1373,"22":6877}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"6":1699,"11":1429,"22":6949},"upgradeStep":1}}}, +{"id":105533,"name":"Ashen Wall Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1827,0,2981,0,0,1303,0,0,0,0,0,1147,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":372,"11":321,"22":2741}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"5":1204,"11":1059,"22":3869}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"5":1253,"11":1102,"22":3909},"upgradeStep":1}}}, +{"id":105534,"name":"Bloodclaw Band","icon":"inv_misc_ring_3","type":11,"stats":[1410,0,2236,0,0,1043,0,0,0,0,0,785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":298,"11":246}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"5":963,"11":728}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"5":1002,"11":756},"upgradeStep":1}}}, +{"id":105535,"name":"Haromm's Frozen Crescent","icon":"inv_axe_1h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[1066,0,1720,0,0,0,0,0,769,0,649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"8":225,"10":185}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"8":711,"10":600}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"8":740,"10":624},"upgradeStep":1}}}, +{"id":105536,"name":"Ring of the Iron Tomb","icon":"inv_misc_ring_mop15","type":11,"stats":[1410,0,2236,0,0,832,0,0,0,1036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"5":229,"9":328}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"5":768,"9":960}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"5":799,"9":997},"upgradeStep":1}}}, +{"id":105537,"name":"Toxic Tornado Treads","icon":"inv_boot_cloth_raidmage_n_01","type":10,"armorType":1,"stats":[0,0,2981,1907,0,0,1114,0,0,0,0,1389,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"6":332,"11":432,"22":1385}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"6":1031,"11":1287,"22":1955}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"6":1072,"11":1337,"22":1975},"upgradeStep":1}}}, +{"id":105538,"name":"Iron Wolf Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,4013,2435,1818,0,0,1402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":1637}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1679,"7":1293,"22":2310}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1747,"7":1346,"22":2334},"upgradeStep":1}}}, +{"id":105539,"name":"Ashflare Pendant","icon":"inv_misc_necklace_mop3","type":2,"stats":[0,0,2236,1490,0,1133,0,755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":371,"7":247}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":1052,"7":701}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":1092,"7":728},"upgradeStep":1}}}, +{"id":105540,"name":"Kardris' Toxic Totem","icon":"inv_jewelry_orgrimmarraid_trinket_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105541,"name":"Kardris' Scepter","icon":"inv_mace_1h_orgrimmarraid_d_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,1720,1066,558,0,0,0,0,0,0,821,0,0,15321,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":6088,"weaponDamageMax":11308,"weaponSpeed":2.4,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":156,"11":242,"14":5011}},"572":{"randPropPoints":2024,"weaponDamageMin":5651,"weaponDamageMax":10495,"stats":{"2":1597,"3":984,"4":516,"11":760,"14":14225}},"576":{"randPropPoints":2101,"weaponDamageMin":5865,"weaponDamageMax":10894,"stats":{"2":1657,"3":1025,"4":537,"11":790,"14":14766},"upgradeStep":1}}}, +{"id":105542,"name":"Darkfang Mask","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,4013,2435,0,0,1619,0,0,0,0,1690,0,0,0,0,0,0,0,0,0,0,3002,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":448,"11":472,"22":2083}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"6":1494,"11":1561,"22":2941}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"6":1555,"11":1624,"22":2971},"upgradeStep":1}}}, +{"id":105543,"name":"Belt of the Iron Prison","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2981,1827,1360,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2007}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"6":970,"22":2833}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1307,"6":1009,"22":2862},"upgradeStep":1}}}, +{"id":105544,"name":"Shoulderguards of Foul Streams","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2981,1827,1322,0,0,1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":378,"7":310,"22":2676}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1222,"7":1029,"22":3777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1271,"7":1071,"22":3816},"upgradeStep":1}}}, +{"id":105545,"name":"Shackles of Stinking Slime","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,2236,1490,994,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":2132}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":922,"7":922,"22":3009}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":957,"7":957,"22":3040},"upgradeStep":1}}}, +{"id":105546,"name":"Shoulderplates of Gushing Geysers","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2981,1827,1245,0,1245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":3654}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1150,"6":1150,"22":5158}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1197,"6":1197,"22":5212},"upgradeStep":1}}}, +{"id":105547,"name":"Nazgrim's Gutripper","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,1066,1720,0,0,0,758,0,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":9132,"weaponDamageMax":16961,"weaponSpeed":1.8,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"6":221,"8":191}},"572":{"randPropPoints":2024,"weaponDamageMin":8476,"weaponDamageMax":15743,"stats":{"1":984,"2":1597,"6":701,"8":617}},"576":{"randPropPoints":2101,"weaponDamageMin":8798,"weaponDamageMax":16341,"stats":{"1":1025,"2":1657,"6":729,"8":642},"upgradeStep":1}}}, +{"id":105548,"name":"Sandals of Two Little Bees","icon":"inv_cloth_raidpriest_n_01boot","type":10,"armorType":1,"stats":[0,0,2981,1907,1147,0,0,0,0,0,0,1370,0,0,0,0,0,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"4":342,"11":426,"22":1385}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"4":1061,"11":1270,"22":1955}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"4":1103,"11":1319,"22":1975},"upgradeStep":1}}}, +{"id":105549,"name":"Nazgrim's Burnished Insignia","icon":"inv_jewelry_orgrimmarraid_trinket_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105550,"name":"Arcweaver Spell Sword","icon":"inv_sword_1h_orgrimmarraid_d_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,1720,1066,0,0,769,649,0,0,0,0,0,0,15321,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":5581,"weaponDamageMax":10365,"weaponSpeed":2.2,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1824,"weaponDamageMax":3388,"stats":{"2":562,"3":295,"6":225,"7":185,"14":5011}},"572":{"randPropPoints":2024,"weaponDamageMin":5180,"weaponDamageMax":9621,"stats":{"2":1597,"3":984,"6":711,"7":600,"14":14225}},"576":{"randPropPoints":2101,"weaponDamageMin":5377,"weaponDamageMax":9986,"stats":{"2":1657,"3":1025,"6":740,"7":624,"14":14766},"upgradeStep":1}}}, +{"id":105551,"name":"Shoulderguards of the Righteous Stand","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,1827,2981,0,0,0,0,1245,0,0,0,1245,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":353,"11":353,"22":1923}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"7":1150,"11":1150,"22":2714}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"7":1197,"11":1197,"22":2743},"upgradeStep":1}}}, +{"id":105552,"name":"Robes of the Warrior's Fall","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,0,4013,2435,1690,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":2564}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1561,"6":1494,"22":3619}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1624,"6":1555,"22":3657},"upgradeStep":1}}}, +{"id":105553,"name":"Ravager's Pathwalkers","icon":"inv_boot_mail_raidhunter_n_01","type":10,"armorType":3,"stats":[0,1907,2981,0,0,0,1195,1335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"6":369,"7":404,"22":2453}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"6":1107,"7":1236,"22":3462}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"6":1150,"7":1285,"22":3498},"upgradeStep":1}}}, +{"id":105554,"name":"Crown of Tragic Truth","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,4013,2435,1235,0,1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4177,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":323,"6":545,"22":2899}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1138,"6":1767,"22":4092}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1186,"6":1839,"22":4134},"upgradeStep":1}}}, +{"id":105555,"name":"Gar'tok, Strength of the Faithful","icon":"inv_mace_2h_orgrimmarraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[2595,0,4013,0,0,0,0,0,1291,0,0,2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":28146,"weaponDamageMax":42220,"weaponSpeed":3.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"8":379,"11":649}},"572":{"randPropPoints":4722,"weaponDamageMin":26125,"weaponDamageMax":39188,"stats":{"0":2403,"2":3725,"8":1194,"11":1871}},"576":{"randPropPoints":4901,"weaponDamageMin":27117,"weaponDamageMax":40676,"stats":{"0":2497,"2":3866,"8":1242,"11":1943},"upgradeStep":1}}}, +{"id":105556,"name":"Bulwark of the Fallen General","icon":"inv_shield_orgrimmarraid_d_05","type":13,"weaponType":7,"handType":3,"stats":[1410,0,2236,0,0,0,0,0,1002,0,0,856,0,0,0,0,0,0,0,0,0,0,22519,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269,"22":15628}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"8":926,"11":793,"22":22060}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"8":963,"11":824,"22":22289},"upgradeStep":1}}}, +{"id":105557,"name":"Spaulders of Kor'kron Fealty","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2981,1827,0,927,0,1430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":249,"7":414,"22":1511}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"5":855,"7":1322,"22":2133}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"5":890,"7":1375,"22":2155},"upgradeStep":1}}}, +{"id":105558,"name":"Ring of Restless Energy","icon":"inv_misc_ring_2","type":11,"stats":[0,1410,2236,0,0,0,1002,0,0,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"6":285,"11":269}},"572":{"randPropPoints":2631,"stats":{"1":1304,"2":2076,"6":926,"11":793}},"576":{"randPropPoints":2731,"stats":{"1":1356,"2":2154,"6":963,"11":824},"upgradeStep":1}}}, +{"id":105559,"name":"Kor'kron Hand Cannon","icon":"inv_firearm_2h_rifle_orgrimmarraid_d_01","type":14,"rangedWeaponType":3,"stats":[0,2595,4013,0,0,0,1699,0,0,0,0,1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":20523,"weaponDamageMax":38115,"weaponSpeed":3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":528,"11":552}},"572":{"randPropPoints":4722,"weaponDamageMin":19049,"weaponDamageMax":35378,"stats":{"1":2403,"2":3725,"6":1574,"11":1641}},"576":{"randPropPoints":4901,"weaponDamageMin":19772,"weaponDamageMax":36721,"stats":{"1":2497,"2":3866,"6":1635,"11":1704},"upgradeStep":1}}}, +{"id":105560,"name":"Halberd of Inner Shadows","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,2595,4013,0,0,0,0,1720,0,0,0,1768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":28146,"weaponDamageMax":42220,"weaponSpeed":3.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":795,"2":1312,"7":519,"11":567}},"572":{"randPropPoints":4722,"weaponDamageMin":26125,"weaponDamageMax":39188,"stats":{"1":2403,"2":3725,"7":1592,"11":1640}},"576":{"randPropPoints":4901,"weaponDamageMin":27117,"weaponDamageMax":40676,"stats":{"1":2497,"2":3866,"7":1654,"11":1702},"upgradeStep":1}}}, +{"id":105561,"name":"Lazahk's Lost Shadowrap","icon":"inv_chest_leather_raidrogue_n_01","type":5,"armorType":2,"stats":[0,2435,4013,0,0,0,0,1235,0,0,0,1913,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":323,"11":545,"22":2564}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"7":1138,"11":1767,"22":3619}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"7":1186,"11":1839,"22":3657},"upgradeStep":1}}}, +{"id":105562,"name":"Wristguards of Ruination","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,1490,2236,0,0,0,848,0,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":277,"8":353,"22":1561}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"6":787,"8":1002,"22":2203}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"6":817,"8":1041,"22":2226},"upgradeStep":1}}}, +{"id":105563,"name":"Malkorok's Giant Stompers","icon":"inv_boots_plate_raiddeathknight_n_01","type":10,"armorType":4,"stats":[1907,0,2981,0,0,0,0,0,1428,0,0,1036,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":434,"11":317,"22":3350}},"572":{"randPropPoints":3508,"stats":{"0":1765,"2":2767,"8":1322,"11":960,"22":4728}},"576":{"randPropPoints":3641,"stats":{"0":1835,"2":2872,"8":1374,"11":997,"22":4777},"upgradeStep":1}}}, +{"id":105564,"name":"Blood Rage Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1490,0,2236,0,0,0,0,0,1066,0,872,0,0,0,0,0,0,0,0,0,0,0,3072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":349,"10":285,"22":2132}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"8":990,"10":809,"22":3009}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"8":1027,"10":840,"22":3040},"upgradeStep":1}}}, +{"id":105565,"name":"Legplates of Willful Doom","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2435,0,4013,0,0,0,1690,0,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,6143,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":472,"11":448,"22":4263}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"6":1561,"11":1494,"22":6018}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"6":1624,"11":1555,"22":6080},"upgradeStep":1}}}, +{"id":105566,"name":"Malkorok's Tainted Dog Tags","icon":"inv_misc_necklace_mop7","type":2,"stats":[1490,0,2236,0,0,0,1052,0,0,0,0,896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":344,"11":293}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"6":976,"11":832}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"6":1013,"11":863},"upgradeStep":1}}}, +{"id":105567,"name":"Malkorok's Skullcleaver","icon":"inv_axe_1h_orgrimmarraid_d_02","type":13,"weaponType":1,"handType":2,"stats":[1066,0,1720,0,0,758,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"5":221,"6":191}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"5":701,"6":617}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"5":729,"6":642},"upgradeStep":1}}}, +{"id":105568,"name":"Vial of Living Corruption","icon":"inv_jewelry_orgrimmarraid_trinket_10","type":12,"stats":[0,0,3779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"572":{"randPropPoints":3508,"stats":{"2":3508}},"576":{"randPropPoints":3641,"stats":{"2":3641},"upgradeStep":1}}}, +{"id":105569,"name":"Miasmic Skullbelt","icon":"inv_belt_cloth_raidwarlock_n_01","type":8,"armorType":1,"stats":[0,0,2981,1827,0,1360,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":391,"6":290,"22":1133}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"5":1257,"6":970,"22":1599}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"5":1307,"6":1009,"22":1616},"upgradeStep":1}}}, +{"id":105570,"name":"Hood of Perpetual Implosion","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,4013,2435,1690,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"6":448,"22":1637}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1561,"6":1494,"22":2310}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1624,"6":1555,"22":2334},"upgradeStep":1}}}, +{"id":105571,"name":"Robes of Riven Dreams","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,4013,2435,1818,0,0,1402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":2014}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1679,"7":1293,"22":2844}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1747,"7":1346,"22":2873},"upgradeStep":1}}}, +{"id":105572,"name":"Frenzied Crystal of Rage","icon":"inv_jewelry_orgrimmarraid_trinket_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105573,"name":"Black-Blooded Drape","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,2236,1490,1080,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277,"22":1007}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":1002,"11":787,"22":1422}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1041,"11":817,"22":1437},"upgradeStep":1}}}, +{"id":105574,"name":"Seal of Sullen Fury","icon":"inv_misc_ring_mop12","type":11,"stats":[0,0,2236,1410,1016,0,832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":289,"6":261}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":938,"6":771}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":977,"6":801},"upgradeStep":1}}}, +{"id":105575,"name":"Visage of the Monstrous","icon":"inv_shield_orgrimmarraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,2236,1410,930,0,0,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22519,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"4":261,"7":309,"22":15628}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"4":858,"7":906,"22":22060}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"4":893,"7":941,"22":22289},"upgradeStep":1}}}, +{"id":105576,"name":"Boots of Perilous Infusion","icon":"inv_leather_raiddruid_n_01boot","type":10,"armorType":2,"stats":[0,0,2981,1907,0,0,0,1373,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":1763}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"7":1271,"11":1047,"22":2488}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"7":1321,"11":1088,"22":2514},"upgradeStep":1}}}, +{"id":105577,"name":"Bracers of Averted Fatality","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,0,2236,1490,1038,0,0,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":339,"7":301,"22":1122}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":963,"7":854,"22":1583}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1000,"7":886,"22":1600},"upgradeStep":1}}}, +{"id":105578,"name":"Ebon Blood Chestguard","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,4013,2435,1360,0,1843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5141,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"6":522,"22":3568}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1254,"6":1702,"22":5036}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1306,"6":1771,"22":5088},"upgradeStep":1}}}, +{"id":105579,"name":"Terrorguard Chestplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,4013,2435,1793,0,1445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":505,"6":392,"22":4872}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1656,"6":1332,"22":6877}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1723,"6":1388,"22":6949},"upgradeStep":1}}}, +{"id":105580,"name":"Sigil of Rampage","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105581,"name":"Enchanted Shao-Tien Saber","icon":"inv_sword_1h_orgrimmarraid_d_04","type":13,"weaponType":9,"handType":2,"stats":[0,1066,1720,0,0,0,0,747,686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"7":217,"8":198}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"1":984,"2":1597,"7":691,"8":634}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"1":1025,"2":1657,"7":718,"8":660},"upgradeStep":1}}}, +{"id":105582,"name":"Pandaren Roofsprinters","icon":"inv_boot_leather_raidrogue_n_01","type":10,"armorType":2,"stats":[0,1907,2981,0,0,0,0,1293,0,0,0,1277,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":569,"2":974,"7":401,"11":385,"22":1763}},"572":{"randPropPoints":3508,"stats":{"1":1765,"2":2767,"7":1198,"11":1182,"22":2488}},"576":{"randPropPoints":3641,"stats":{"1":1835,"2":2872,"7":1245,"11":1229,"22":2514},"upgradeStep":1}}}, +{"id":105583,"name":"Mantid Carapace Augments","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,1490,2236,0,0,1066,0,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":349,"7":285,"22":1122}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"5":990,"7":809,"22":1583}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"5":1027,"7":840,"22":1600},"upgradeStep":1}}}, +{"id":105584,"name":"Arrowflight Girdle","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1827,2981,0,0,0,1147,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":321,"7":372,"22":2007}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1059,"7":1204,"22":2833}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1102,"7":1253,"22":2862},"upgradeStep":1}}}, +{"id":105585,"name":"Ancient Archer's Chestguard","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2515,4013,0,0,0,1858,0,0,0,0,1442,0,0,0,0,0,0,0,0,0,0,5141,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":554,"11":418,"22":3568}},"572":{"randPropPoints":4722,"stats":{"1":2323,"2":3725,"6":1719,"11":1333,"22":5036}},"576":{"randPropPoints":4901,"stats":{"1":2417,"2":3866,"6":1787,"11":1386,"22":5088},"upgradeStep":1}}}, +{"id":105586,"name":"Helm of the Night Watchman","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2435,0,4013,0,0,0,1818,1402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":514,"7":378,"22":3959}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"6":1679,"7":1293,"22":5588}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"6":1747,"7":1346,"22":5646},"upgradeStep":1}}}, +{"id":105587,"name":"Untarnishable Greatbelt","icon":"inv_belt_plate_raidwarrior_n_01","type":8,"armorType":4,"stats":[1827,0,2981,0,0,0,0,0,0,0,1019,1378,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":279,"11":396,"22":2741}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"10":940,"11":1273,"22":3869}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"10":979,"11":1325,"22":3909},"upgradeStep":1}}}, +{"id":105588,"name":"Ominous Mogu Greatboots","icon":"inv_boots_plate_raidwarrior_n_01","type":10,"armorType":4,"stats":[1907,0,2981,0,0,0,0,0,1335,1195,0,0,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":569,"2":974,"8":404,"9":369,"22":3350}},"572":{"randPropPoints":3508,"stats":{"0":1765,"2":2767,"8":1236,"9":1107,"22":4728}},"576":{"randPropPoints":3641,"stats":{"0":1835,"2":2872,"8":1285,"9":1150,"22":4777},"upgradeStep":1}}}, +{"id":105589,"name":"Seal of the Forgotten Kings","icon":"inv_misc_ring_mop18","type":11,"stats":[1410,0,2236,0,0,0,988,880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"6":280,"7":277}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"6":912,"7":816}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"6":949,"7":847},"upgradeStep":1}}}, +{"id":105590,"name":"Ancient Mogu Tower Shield","icon":"inv_shield_orgrimmarraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[1410,0,2236,0,0,0,0,0,0,0,784,1064,0,0,0,0,0,0,0,0,0,0,22519,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"10":213,"11":337,"22":15628}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"10":723,"11":986,"22":22060}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"10":753,"11":1025,"22":22289},"upgradeStep":1}}}, +{"id":105591,"name":"Avool's Ancestral Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,2236,1490,0,0,0,1009,0,0,0,969,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":330,"11":317,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"7":936,"11":899,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"7":972,"11":933,"22":1257},"upgradeStep":1}}}, +{"id":105592,"name":"Mantid Vizier's Robes","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,4013,2435,0,0,1575,1716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":434,"7":480,"22":2014}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"6":1453,"7":1585,"22":2844}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"6":1513,"7":1649,"22":2873},"upgradeStep":1}}}, +{"id":105593,"name":"Lost Necklace of the Mogu Empress","icon":"inv_misc_necklace_mop9","type":2,"stats":[0,0,2236,1490,1080,0,0,0,0,0,0,848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":353,"11":277}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":1002,"11":787}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":1041,"11":817},"upgradeStep":1}}}, +{"id":105594,"name":"Immaculately Preserved Wand","icon":"inv_wand_1h_orgrimmarraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,1720,1066,0,0,736,0,0,0,0,705,0,0,15321,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":4820,"weaponDamageMax":8952,"weaponSpeed":1.9,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1575,"weaponDamageMax":2926,"stats":{"2":562,"3":295,"6":214,"11":204,"14":5011}},"572":{"randPropPoints":2024,"weaponDamageMin":4473,"weaponDamageMax":8309,"stats":{"2":1597,"3":984,"6":680,"11":652,"14":14225}},"576":{"randPropPoints":2101,"weaponDamageMin":4643,"weaponDamageMax":8624,"stats":{"2":1657,"3":1025,"6":708,"11":678,"14":14766},"upgradeStep":1}}}, +{"id":105595,"name":"Klaxxi Grips of Rejuvenation","icon":"inv_leather_raiddruid_n_01glove","type":7,"armorType":2,"stats":[0,0,2981,1827,972,0,0,0,0,0,0,1412,0,0,0,0,0,0,0,0,0,0,2309,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1602}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":896,"11":1306,"22":2262}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":933,"11":1358,"22":2286},"upgradeStep":1}}}, +{"id":105596,"name":"Shado-Pan Reliquary Kilt","icon":"inv_pant_leather_raidmonk_n_01","type":9,"armorType":2,"stats":[0,0,4013,2515,1858,0,1442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3233,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":554,"6":418,"22":2243}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2323,"4":1719,"6":1333,"22":3167}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2417,"4":1787,"6":1386,"22":3200},"upgradeStep":1}}}, +{"id":105597,"name":"Chitin-Link Chain Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2981,1827,1179,0,0,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,2892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":2007}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1089,"11":1186,"22":2833}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1133,"11":1234,"22":2862},"upgradeStep":1}}}, +{"id":105598,"name":"Bracers of the Pristine Purifier","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,2236,1490,994,0,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1561}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"4":922,"7":922,"22":2203}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"4":957,"7":957,"22":2226},"upgradeStep":1}}}, +{"id":105599,"name":"Plate Belt of the War-Healer","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2981,1827,1360,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3949,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":391,"6":290,"22":2741}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1257,"6":970,"22":3869}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1307,"6":1009,"22":3909},"upgradeStep":1}}}, +{"id":105600,"name":"Mogu Mindbender's Greaves","icon":"inv_plate_raidpaladin_n_01boot","type":10,"armorType":4,"stats":[0,0,2981,1907,0,0,0,1373,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,4827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":3350}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"7":1271,"11":1047,"22":4728}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"7":1321,"11":1088,"22":4777},"upgradeStep":1}}}, +{"id":105601,"name":"Hvitserk's Formidable Shanker","icon":"inv_knife_1h_orgrimmarraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,1066,1720,0,0,0,0,724,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":9132,"weaponDamageMax":16961,"weaponSpeed":1.8,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":295,"2":562,"7":210,"11":210}},"572":{"randPropPoints":2024,"weaponDamageMin":8476,"weaponDamageMax":15743,"stats":{"1":984,"2":1597,"7":670,"11":670}},"576":{"randPropPoints":2101,"weaponDamageMin":8798,"weaponDamageMax":16341,"stats":{"1":1025,"2":1657,"7":697,"11":697},"upgradeStep":1}}}, +{"id":105602,"name":"Gleaming Eye of the Devilsaur","icon":"inv_misc_necklace_mop2","type":2,"stats":[0,1490,2236,0,0,0,896,1052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":293,"7":344}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"6":832,"7":976}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"6":863,"7":1013},"upgradeStep":1}}}, +{"id":105603,"name":"Montak's Grips of Scorching Breath","icon":"inv_glove_cloth_raidwarlock_n_01","type":7,"armorType":1,"stats":[0,0,2981,1827,0,0,1249,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":344,"7":358,"22":1259}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"6":1152,"7":1135,"22":1777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"6":1200,"7":1180,"22":1796},"upgradeStep":1}}}, +{"id":105604,"name":"Akolik's Acid-Soaked Robes","icon":"inv_robe_cloth_raidwarlock_n_01","type":5,"armorType":1,"stats":[0,0,4013,2435,0,0,1664,0,0,0,0,1664,0,0,0,0,0,0,0,0,0,0,2903,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"6":463,"11":463,"22":2014}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"6":1536,"11":1536,"22":2844}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"6":1598,"11":1598,"22":2873},"upgradeStep":1}}}, +{"id":105605,"name":"Festering Primordial Globule","icon":"inv_offhand_1h_orgrimmarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,2236,1410,0,808,0,1040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"5":237,"7":313}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"5":747,"7":962}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"5":777,"7":1001},"upgradeStep":1}}}, +{"id":105606,"name":"Signet of the Dinomancers","icon":"inv_jewelry_ring_181","type":11,"stats":[0,0,2236,1410,0,0,0,944,0,0,0,953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":266,"11":301}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"7":872,"11":883}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"7":908,"11":917},"upgradeStep":1}}}, +{"id":105607,"name":"Thok's Acid-Grooved Tooth","icon":"inv_jewelry_orgrimmarraid_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105608,"name":"Icy Blood Chestplate","icon":"inv_chest_plate_raiddeathknight_n_01","type":5,"armorType":4,"stats":[2435,0,4013,0,0,0,0,0,0,0,1402,1818,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"10":378,"11":514,"22":4872}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"10":1293,"11":1679,"22":6877}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"10":1346,"11":1747,"22":6949},"upgradeStep":1}}}, +{"id":105609,"name":"Thok's Tail Tip","icon":"inv_jewelry_orgrimmarraid_trinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235},"572":{"randPropPoints":3508},"576":{"randPropPoints":3641,"upgradeStep":1}}}, +{"id":105610,"name":"Britomart's Jagged Pike","icon":"inv_polearm_2h_orgrimmarraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[2595,0,4013,0,0,0,0,1544,0,0,0,1872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":28146,"weaponDamageMax":42220,"weaponSpeed":3.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"7":462,"11":601}},"572":{"randPropPoints":4722,"weaponDamageMin":26125,"weaponDamageMax":39188,"stats":{"0":2403,"2":3725,"7":1429,"11":1736}},"576":{"randPropPoints":4901,"weaponDamageMin":27117,"weaponDamageMax":40676,"stats":{"0":2497,"2":3866,"7":1485,"11":1803},"upgradeStep":1}}}, +{"id":105611,"name":"Devilfang Band","icon":"inv_misc_ring_4","type":11,"stats":[1410,0,2236,0,0,0,0,0,1002,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"8":285,"11":269}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"8":926,"11":793}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"8":963,"11":824},"upgradeStep":1}}}, +{"id":105612,"name":"Ticking Ebon Detonator","icon":"inv_jewelry_orgrimmarraid_trinket_17","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"11":823}},"572":{"randPropPoints":3508,"stats":{"11":2339}},"576":{"randPropPoints":3641,"stats":{"11":2427},"upgradeStep":1}}}, +{"id":105613,"name":"Fusespark Gloves","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2981,1827,0,0,1229,0,0,0,0,1261,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"6":337,"11":369,"22":1259}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"6":1134,"11":1166,"22":1777}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"6":1181,"11":1213,"22":1796},"upgradeStep":1}}}, +{"id":105614,"name":"Lever of the Megantholithic Apparatus","icon":"inv_staff_2h_orgrimmarraid_d_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,4013,2595,0,0,1899,1464,0,0,0,0,0,0,15323,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":12900,"weaponDamageMax":19351,"weaponSpeed":3.3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":795,"6":578,"7":468,"14":5009}},"572":{"randPropPoints":4722,"weaponDamageMin":11973,"weaponDamageMax":17961,"stats":{"2":3725,"3":2403,"6":1758,"7":1358,"14":14223}},"576":{"randPropPoints":4901,"weaponDamageMin":12428,"weaponDamageMax":18643,"stats":{"2":3866,"3":2497,"6":1827,"7":1410,"14":14762},"upgradeStep":1}}}, +{"id":105615,"name":"Dysmorphic Samophlange of Discontinuity","icon":"inv_jewelry_orgrimmarraid_trinket_16","type":12,"stats":[0,0,0,2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"3":823}},"572":{"randPropPoints":3508,"stats":{"3":2339}},"576":{"randPropPoints":3641,"stats":{"3":2427},"upgradeStep":1}}}, +{"id":105616,"name":"Bomber's Blackened Wristwatch","icon":"inv_bracer_leather_raidrogue_n_01","type":6,"armorType":2,"stats":[0,1490,2236,0,0,0,0,1009,0,0,0,969,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317,"22":1122}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"7":936,"11":899,"22":1583}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"7":972,"11":933,"22":1600},"upgradeStep":1}}}, +{"id":105617,"name":"Bracers of Infinite Pipes","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1490,2236,0,0,0,0,969,0,0,0,1009,0,0,0,0,0,0,0,0,0,0,2249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":317,"11":330,"22":1561}},"572":{"randPropPoints":2631,"stats":{"1":1384,"2":2076,"7":899,"11":936,"22":2203}},"576":{"randPropPoints":2731,"stats":{"1":1436,"2":2154,"7":933,"11":972,"22":2226},"upgradeStep":1}}}, +{"id":105618,"name":"Powder-Stained Totemic Treads","icon":"inv_mail_raidshaman_n_01boot","type":10,"armorType":3,"stats":[0,0,2981,1907,0,0,0,1373,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,3534,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":569,"7":416,"11":348,"22":2453}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1765,"7":1271,"11":1047,"22":3462}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1835,"7":1321,"11":1088,"22":3498},"upgradeStep":1}}}, +{"id":105619,"name":"Calixian Bladebreakers","icon":"inv_gauntlet_plate_raidwarrior_n_01","type":7,"armorType":4,"stats":[1827,0,2981,0,0,0,0,0,0,0,1261,1229,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"10":369,"11":337,"22":3045}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"10":1166,"11":1134,"22":4298}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"10":1213,"11":1181,"22":4343},"upgradeStep":1}}}, +{"id":105620,"name":"Asgorathian Blood Seal","icon":"inv_misc_ring_mop17","type":11,"stats":[1410,0,2236,0,0,0,0,978,930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":408,"2":731,"7":309,"8":261}},"572":{"randPropPoints":2631,"stats":{"0":1304,"2":2076,"7":906,"8":858}},"576":{"randPropPoints":2731,"stats":{"0":1356,"2":2154,"7":941,"8":893},"upgradeStep":1}}}, +{"id":105621,"name":"Siegecrafter's Forge Hammer","icon":"inv_mace_1h_orgrimmarraid_d_04","type":13,"weaponType":4,"handType":2,"stats":[1066,0,1720,0,0,0,0,736,0,0,0,705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"7":214,"11":204}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"7":680,"11":652}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"7":708,"11":678},"upgradeStep":1}}}, +{"id":105622,"name":"Blackfuse's Blasting Cord","icon":"inv_misc_bomb_07","type":2,"stats":[1490,0,2236,0,0,0,0,0,994,0,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"8":325,"10":325}},"572":{"randPropPoints":2631,"stats":{"0":1384,"2":2076,"8":922,"10":922}},"576":{"randPropPoints":2731,"stats":{"0":1436,"2":2154,"8":957,"10":957},"upgradeStep":1}}}, +{"id":105623,"name":"Hisek's Reserve Longbow","icon":"inv_bow_1h_orgrimmarraid_d_02","type":14,"rangedWeaponType":1,"stats":[0,2595,4013,0,0,0,1873,1525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":20523,"weaponDamageMax":38115,"weaponSpeed":3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":795,"2":1312,"6":585,"7":472}},"572":{"randPropPoints":4722,"weaponDamageMin":19049,"weaponDamageMax":35378,"stats":{"1":2403,"2":3725,"6":1736,"7":1412}},"576":{"randPropPoints":4901,"weaponDamageMin":19772,"weaponDamageMax":36721,"stats":{"1":2497,"2":3866,"6":1803,"7":1468},"upgradeStep":1}}}, +{"id":105624,"name":"Kil'ruk's Band of Ascendancy","icon":"inv_misc_ring_mop20","type":11,"stats":[0,1410,2236,0,0,0,0,928,0,0,0,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":408,"2":731,"7":293,"11":271}},"572":{"randPropPoints":2631,"stats":{"1":1304,"2":2076,"7":861,"11":886}},"576":{"randPropPoints":2731,"stats":{"1":1356,"2":2154,"7":894,"11":922},"upgradeStep":1}}}, +{"id":105625,"name":"Korven's Crimson Crescent","icon":"inv_axe_1h_orgrimmarraid_d_03","type":13,"weaponType":1,"handType":2,"stats":[0,1066,1720,0,0,0,724,0,0,0,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":295,"2":562,"6":210,"11":210}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"1":984,"2":1597,"6":670,"11":670}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"1":1025,"2":1657,"6":697,"11":697},"upgradeStep":1}}}, +{"id":105626,"name":"Bracers of Sonic Projection","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,2236,1490,0,0,994,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":325,"22":881}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"6":922,"7":922,"22":1244}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"6":957,"7":957,"22":1257},"upgradeStep":1}}}, +{"id":105627,"name":"Rik'kal's Bloody Scalpel","icon":"inv_knife_1h_orgrimmarraid_d_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,1720,1066,0,736,705,0,0,0,0,0,0,0,15321,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":4566,"weaponDamageMax":8481,"weaponSpeed":1.8,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1492,"weaponDamageMax":2772,"stats":{"2":562,"3":295,"5":214,"6":204,"14":5011}},"572":{"randPropPoints":2024,"weaponDamageMin":4238,"weaponDamageMax":7871,"stats":{"2":1597,"3":984,"5":680,"6":652,"14":14225}},"576":{"randPropPoints":2101,"weaponDamageMin":4399,"weaponDamageMax":8170,"stats":{"2":1657,"3":1025,"5":708,"6":678,"14":14766},"upgradeStep":1}}}, +{"id":105628,"name":"Iyyokuk's Hereditary Seal","icon":"inv_misc_ring_mop3","type":11,"stats":[0,0,2236,1490,0,920,0,0,0,0,0,1038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":301,"11":339}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1384,"5":854,"11":963}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1436,"5":886,"11":1000},"upgradeStep":1}}}, +{"id":105629,"name":"Amber Parasite Wraps","icon":"inv_leather_raiddruid_n_01chest","type":5,"armorType":2,"stats":[0,0,4013,2435,1360,0,0,1843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3695,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":2564}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1254,"7":1702,"22":3619}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1306,"7":1771,"22":3657},"upgradeStep":1}}}, +{"id":105630,"name":"Chestguard of Toxic Injections","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,4013,2435,1818,0,0,1402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5141,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"7":378,"22":3568}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1679,"7":1293,"22":5036}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1747,"7":1346,"22":5088},"upgradeStep":1}}}, +{"id":105631,"name":"Gauntlets of Insane Calculations","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[0,0,2981,1827,0,0,0,1067,0,0,0,1344,0,0,0,0,0,0,0,0,0,0,4388,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"7":306,"11":375,"22":3045}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"7":986,"11":1241,"22":4298}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"7":1025,"11":1291,"22":4343},"upgradeStep":1}}}, +{"id":105632,"name":"Skeer's Bloodsoaked Talisman","icon":"inv_jewelry_orgrimmarraid_trinket_06","type":12,"stats":[2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":823}},"572":{"randPropPoints":3508,"stats":{"0":2339}},"576":{"randPropPoints":3641,"stats":{"0":2427},"upgradeStep":1}}}, +{"id":105633,"name":"Kil'ruk's Furious Blade","icon":"inv_sword_1h_orgrimmarraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[1066,0,1720,0,0,0,724,0,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":13192,"weaponDamageMax":24500,"weaponSpeed":2.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":295,"2":562,"6":210,"8":210}},"572":{"randPropPoints":2024,"weaponDamageMin":12244,"weaponDamageMax":22740,"stats":{"0":984,"2":1597,"6":670,"8":670}},"576":{"randPropPoints":2101,"weaponDamageMin":12709,"weaponDamageMax":23603,"stats":{"0":1025,"2":1657,"6":697,"8":697},"upgradeStep":1}}}, +{"id":105634,"name":"Kor'kron Spire of Supremacy","icon":"inv_staff_2h_orgrimmarraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,2595,4013,0,0,0,1872,0,0,0,0,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":25801,"weaponDamageMax":38702,"weaponSpeed":3.3,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8434,"weaponDamageMax":12652,"stats":{"1":795,"2":1312,"6":601,"11":462}},"572":{"randPropPoints":4722,"weaponDamageMin":23947,"weaponDamageMax":35922,"stats":{"1":2403,"2":3725,"6":1736,"11":1429}},"576":{"randPropPoints":4901,"weaponDamageMin":24857,"weaponDamageMax":37286,"stats":{"1":2497,"2":3866,"6":1803,"11":1485},"upgradeStep":1}}}, +{"id":105635,"name":"Cord of Black Dreams","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,1827,2981,0,0,0,1303,1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":372,"7":321,"22":1442}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1204,"7":1059,"22":2036}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1253,"7":1102,"22":2057},"upgradeStep":1}}}, +{"id":105636,"name":"Kor'kron Elite Skullmask","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2435,4013,0,0,0,0,1793,0,0,0,1445,0,0,0,0,0,0,0,0,0,0,3002,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":505,"11":392,"22":2083}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"7":1656,"11":1332,"22":2941}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"7":1723,"11":1388,"22":2971},"upgradeStep":1}}}, +{"id":105637,"name":"Chestguard of Relentless Tyranny","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2515,4013,0,0,0,0,1953,0,0,0,1275,0,0,0,0,0,0,0,0,0,0,5141,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"7":585,"11":363,"22":3568}},"572":{"randPropPoints":4722,"stats":{"1":2323,"2":3725,"7":1807,"11":1178,"22":5036}},"576":{"randPropPoints":4901,"stats":{"1":2417,"2":3866,"7":1879,"11":1226,"22":5088},"upgradeStep":1}}}, +{"id":105638,"name":"Penetrating Gaze of Y'Shaarj","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2435,4013,0,0,0,1742,0,0,0,0,1531,0,0,0,0,0,0,0,0,0,0,4177,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":489,"11":420,"22":2899}},"572":{"randPropPoints":4722,"stats":{"1":2243,"2":3725,"6":1609,"11":1413,"22":4092}},"576":{"randPropPoints":4901,"stats":{"1":2337,"2":3866,"6":1674,"11":1471,"22":4134},"upgradeStep":1}}}, +{"id":105639,"name":"Shoulderguards of Intended Power","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1827,2981,0,0,0,1378,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,3856,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":396,"11":279,"22":2676}},"572":{"randPropPoints":3508,"stats":{"1":1685,"2":2767,"6":1273,"11":940,"22":3777}},"576":{"randPropPoints":3641,"stats":{"1":1755,"2":2872,"6":1325,"11":979,"22":3816},"upgradeStep":1}}}, +{"id":105640,"name":"Legplates of Unthinking Strife","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2435,0,4013,0,0,0,0,1690,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,6143,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":472,"11":448,"22":4263}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"7":1561,"11":1494,"22":6018}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"7":1624,"11":1555,"22":6080},"upgradeStep":1}}}, +{"id":105641,"name":"Spaulders of the Fallen Warchief","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1827,0,2981,0,0,0,1413,0,0,0,0,957,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":408,"11":259,"22":3654}},"572":{"randPropPoints":3508,"stats":{"0":1685,"2":2767,"6":1306,"11":883,"22":5158}},"576":{"randPropPoints":3641,"stats":{"0":1755,"2":2872,"6":1359,"11":919,"22":5212},"upgradeStep":1}}}, +{"id":105642,"name":"Tusks of Mannoroth","icon":"inv_shoulder_plate_garrosh_d_01","type":3,"armorType":4,"stats":[1747,0,2981,0,0,0,1373,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":409,"2":974,"6":368,"11":219,"22":3654}},"572":{"randPropPoints":3508,"stats":{"0":1605,"2":2767,"6":1266,"11":843,"22":5158}},"576":{"randPropPoints":3641,"stats":{"0":1675,"2":2872,"6":1319,"11":879,"22":5212},"upgradeStep":1}}}, +{"id":105643,"name":"Greathelm of the Warchief","icon":"inv_helmet_plate_raidwarrior_n_01","type":1,"armorType":4,"stats":[2435,0,4013,0,0,0,0,0,1235,0,1913,0,0,0,0,0,0,0,0,0,0,0,5704,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"8":323,"10":545,"22":3959}},"572":{"randPropPoints":4722,"stats":{"0":2243,"2":3725,"8":1138,"10":1767,"22":5588}},"576":{"randPropPoints":4901,"stats":{"0":2337,"2":3866,"8":1186,"10":1839,"22":5646},"upgradeStep":1}}}, +{"id":105644,"name":"Xal'atoh, Desecrated Image of Gorehowl","icon":"inv_axe_2h_orgrimmarraid_d_01","type":13,"weaponType":1,"handType":4,"stats":[2595,0,4013,0,0,0,1549,0,0,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"weaponDamageMin":28146,"weaponDamageMax":42220,"weaponSpeed":3.6,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":795,"2":1312,"6":496,"11":561}},"572":{"randPropPoints":4722,"weaponDamageMin":26125,"weaponDamageMax":39188,"stats":{"0":2403,"2":3725,"6":1436,"11":1712}},"576":{"randPropPoints":4901,"weaponDamageMin":27117,"weaponDamageMax":40676,"stats":{"0":2497,"2":3866,"6":1492,"11":1779},"upgradeStep":1}}}, +{"id":105645,"name":"Curse of Hubris","icon":"inv_jewelry_orgrimmarraid_trinket_04","type":12,"stats":[0,0,3779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":1235}},"572":{"randPropPoints":3508,"stats":{"2":3508}},"576":{"randPropPoints":3641,"stats":{"2":3641},"upgradeStep":1}}}, +{"id":105646,"name":"Belt of the Broken Pact","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2981,1827,1179,0,0,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1133}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1089,"11":1186,"22":1599}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1133,"11":1234,"22":1616},"upgradeStep":1}}}, +{"id":105647,"name":"Ebon Ritual Hood","icon":"inv_helm_cloth_raidmage_n_01","type":1,"armorType":1,"stats":[0,0,4013,2435,0,0,0,1531,0,0,0,1742,0,0,0,0,0,0,0,0,0,0,2358,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"7":420,"11":489,"22":1637}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"7":1413,"11":1609,"22":2310}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"7":1471,"11":1674,"22":2334},"upgradeStep":1}}}, +{"id":105648,"name":"Black Blood of Y'Shaarj","icon":"inv_jewelry_orgrimmarraid_trinket_02","type":12,"stats":[0,0,0,0,0,0,0,2519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"7":823}},"572":{"randPropPoints":3508,"stats":{"7":2339}},"576":{"randPropPoints":3641,"stats":{"7":2427},"upgradeStep":1}}}, +{"id":105649,"name":"Horned Mace of the Old Ones","icon":"inv_mace_1h_orgrimmarraid_d_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,1720,1066,736,0,0,705,0,0,0,0,0,0,15321,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2180,"weaponDamageMin":6088,"weaponDamageMax":11308,"weaponSpeed":2.4,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":295,"4":214,"7":204,"14":5011}},"572":{"randPropPoints":2024,"weaponDamageMin":5651,"weaponDamageMax":10495,"stats":{"2":1597,"3":984,"4":680,"7":652,"14":14225}},"576":{"randPropPoints":2101,"weaponDamageMin":5865,"weaponDamageMax":10894,"stats":{"2":1657,"3":1025,"4":708,"7":678,"14":14766},"upgradeStep":1}}}, +{"id":105650,"name":"Revelations of Y'Shaarj","icon":"inv_offhand_1h_orgrimmarraid_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,2236,1410,0,0,0,929,0,0,0,969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2834,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":408,"7":277,"11":290}},"572":{"randPropPoints":2631,"stats":{"2":2076,"3":1304,"7":859,"11":896}},"576":{"randPropPoints":2731,"stats":{"2":2154,"3":1356,"7":893,"11":932},"upgradeStep":1}}}, +{"id":105651,"name":"Seal of Karmic Return","icon":"inv_belt_leather_raidmonk_n_01","type":8,"armorType":2,"stats":[0,0,2981,1827,1179,0,0,0,0,0,0,1284,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":332,"11":366,"22":1442}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1089,"11":1186,"22":2036}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1133,"11":1234,"22":2057},"upgradeStep":1}}}, +{"id":105652,"name":"Hopeglow Spaulders","icon":"inv_shoulder_leather_raidmonk_n_01","type":3,"armorType":2,"stats":[0,0,2981,1827,1245,0,0,1245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2771,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"7":353,"22":1923}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1150,"7":1150,"22":2714}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1197,"7":1197,"22":2743},"upgradeStep":1}}}, +{"id":105653,"name":"Cowl of Smoking Dreams","icon":"inv_mail_raidshaman_n_01helm","type":1,"armorType":3,"stats":[0,0,4013,2435,1690,0,0,0,0,0,0,1619,0,0,0,0,0,0,0,0,0,0,4177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":472,"11":448,"22":2899}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1561,"11":1494,"22":4092}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1624,"11":1555,"22":4134},"upgradeStep":1}}}, +{"id":105654,"name":"Chestplate of Fallen Passion","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,4013,2435,1742,0,0,0,0,0,0,1531,0,0,0,0,0,0,0,0,0,0,7021,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5087,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":489,"11":420,"22":4872}},"572":{"randPropPoints":4722,"stats":{"2":3725,"3":2243,"4":1609,"11":1413,"22":6877}},"576":{"randPropPoints":4901,"stats":{"2":3866,"3":2337,"4":1674,"11":1471,"22":6949},"upgradeStep":1}}}, +{"id":105655,"name":"Mantle of Looming Darkness","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2981,1827,1378,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5265,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3779,"ilvl":572,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":396,"7":279,"22":3654}},"572":{"randPropPoints":3508,"stats":{"2":2767,"3":1685,"4":1273,"7":940,"22":5158}},"576":{"randPropPoints":3641,"stats":{"2":2872,"3":1755,"4":1325,"7":979,"22":5212},"upgradeStep":1}}}, +{"id":105670,"name":"Hellscream's Warbow","icon":"inv_bow_1h_pvphorde_a_01_upres","type":14,"rangedWeaponType":1,"stats":[0,2145,3458,0,0,0,0,1088,0,0,0,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4383,"weaponDamageMin":17681,"weaponDamageMax":32836,"weaponSpeed":3,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":715,"2":1312,"7":363,"11":585}},"556":{"randPropPoints":4068,"weaponDamageMin":16411,"weaponDamageMax":30478,"stats":{"1":1979,"2":3209,"7":1004,"11":1546}},"560":{"randPropPoints":4222,"weaponDamageMin":17034,"weaponDamageMax":31635,"stats":{"1":2060,"2":3331,"7":1045,"11":1608},"upgradeStep":1}}}, +{"id":105671,"name":"Hellscream's Razor","icon":"inv_knife_1h_pvphorde_a_01","type":13,"weaponType":2,"handType":2,"stats":[0,828,1482,0,0,0,608,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1878,"weaponDamageMin":7868,"weaponDamageMax":14612,"weaponSpeed":1.8,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":215,"2":562,"6":181,"7":151}},"556":{"randPropPoints":1743,"weaponDamageMin":7302,"weaponDamageMax":13563,"stats":{"1":757,"2":1375,"6":558,"7":486}},"560":{"randPropPoints":1810,"weaponDamageMin":7580,"weaponDamageMax":14078,"stats":{"1":792,"2":1428,"6":583,"7":508},"upgradeStep":1}}}, +{"id":105672,"name":"Hellscream's Cleaver","icon":"inv_axe_1h_pvphorde_d_01_upres","type":13,"weaponType":1,"handType":2,"stats":[0,828,1482,0,0,0,578,0,0,0,0,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1878,"weaponDamageMin":11365,"weaponDamageMax":21106,"weaponSpeed":2.6,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":215,"2":562,"6":170,"11":170}},"556":{"randPropPoints":1743,"weaponDamageMin":10548,"weaponDamageMax":19590,"stats":{"1":757,"2":1375,"6":531,"11":531}},"560":{"randPropPoints":1810,"weaponDamageMin":10949,"weaponDamageMax":20334,"stats":{"1":792,"2":1428,"6":555,"11":555},"upgradeStep":1}}}, +{"id":105673,"name":"Hellscream's Pig Sticker","icon":"inv_polearm_2h_pvphorde_a_01_upres","type":13,"weaponType":6,"handType":4,"stats":[0,2145,3458,0,0,0,0,1409,0,0,0,1505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4383,"weaponDamageMin":24248,"weaponDamageMax":36373,"weaponSpeed":3.6,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":715,"2":1312,"7":455,"11":551}},"556":{"randPropPoints":4068,"weaponDamageMin":22506,"weaponDamageMax":33760,"stats":{"1":1979,"2":3209,"7":1298,"11":1394}},"560":{"randPropPoints":4222,"weaponDamageMin":23361,"weaponDamageMax":35042,"stats":{"1":2060,"2":3331,"7":1352,"11":1448},"upgradeStep":1}}}, +{"id":105674,"name":"Hellscream's Barrier","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[0,0,1926,1284,856,0,0,856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2442,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":15628}},"556":{"randPropPoints":2266,"stats":{"2":1788,"3":1192,"4":794,"7":794,"22":21141}},"560":{"randPropPoints":2353,"stats":{"2":1856,"3":1237,"4":825,"7":825,"22":21371},"upgradeStep":1}}}, +{"id":105675,"name":"Hellscream's Warmace","icon":"inv_hammer_1h_pvphorde_a_01red_upres","type":13,"weaponType":4,"handType":2,"stats":[0,0,1482,828,436,0,0,0,0,0,0,662,0,0,13199,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1878,"weaponDamageMin":5245,"weaponDamageMax":9741,"weaponSpeed":2.4,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":215,"4":116,"11":202,"14":5011}},"556":{"randPropPoints":1743,"weaponDamageMin":4868,"weaponDamageMax":9042,"stats":{"2":1375,"3":757,"4":398,"11":609,"14":12250}},"560":{"randPropPoints":1810,"weaponDamageMin":5053,"weaponDamageMax":9385,"stats":{"2":1428,"3":792,"4":417,"11":635,"14":12721},"upgradeStep":1}}}, +{"id":105676,"name":"Hellscream's Tome of Destruction","icon":"inv_misc_1h_book_c_02red_upres","type":13,"weaponType":5,"handType":3,"stats":[0,0,1926,1284,0,0,856,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2442,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":283}},"556":{"randPropPoints":2266,"stats":{"2":1788,"3":1192,"6":794,"7":692}},"560":{"randPropPoints":2353,"stats":{"2":1856,"3":1237,"6":825,"7":719},"upgradeStep":1}}}, +{"id":105677,"name":"Hellscream's War Staff","icon":"inv_stave_2h_pvphorde_a_01_upres","type":13,"weaponType":8,"handType":4,"stats":[0,0,3458,2145,0,0,1370,0,0,0,0,1528,0,0,13202,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4383,"weaponDamageMin":11113,"weaponDamageMax":16671,"weaponSpeed":3.3,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":715,"6":440,"11":560,"14":5009}},"556":{"randPropPoints":4068,"weaponDamageMin":10315,"weaponDamageMax":15473,"stats":{"2":3209,"3":1979,"6":1262,"11":1416,"14":12253}},"560":{"randPropPoints":4222,"weaponDamageMin":10707,"weaponDamageMax":16061,"stats":{"2":3331,"3":2060,"6":1315,"11":1471,"14":12717},"upgradeStep":1}}}, +{"id":105678,"name":"Hellscream's Doomblade","icon":"inv_sword_1h_pvphorde_a_01_upres","type":13,"weaponType":9,"handType":2,"stats":[828,0,1482,0,0,0,0,0,626,0,0,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1878,"weaponDamageMin":11365,"weaponDamageMax":21106,"weaponSpeed":2.6,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":215,"2":562,"8":188,"11":139}},"556":{"randPropPoints":1743,"weaponDamageMin":10548,"weaponDamageMax":19590,"stats":{"0":757,"2":1375,"8":576,"11":456}},"560":{"randPropPoints":1810,"weaponDamageMin":10949,"weaponDamageMax":20334,"stats":{"0":792,"2":1428,"8":601,"11":477},"upgradeStep":1}}}, +{"id":105679,"name":"Hellscream's Decapitator","icon":"inv_axe_2h_pvphorde_a_01blackhigh","type":13,"weaponType":1,"handType":4,"stats":[2145,0,3458,0,0,0,1316,1520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4383,"weaponDamageMin":24248,"weaponDamageMax":36373,"weaponSpeed":3.6,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":715,"2":1312,"6":480,"7":497}},"556":{"randPropPoints":4068,"weaponDamageMin":22506,"weaponDamageMax":33760,"stats":{"0":1979,"2":3209,"6":1219,"7":1402}},"560":{"randPropPoints":4222,"weaponDamageMin":23361,"weaponDamageMax":35042,"stats":{"0":2060,"2":3331,"6":1267,"7":1460},"upgradeStep":1}}}, +{"id":105680,"name":"Hellscream's Shield Wall","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[1124,0,1926,0,0,0,0,0,0,824,0,728,0,0,0,0,0,0,0,0,0,0,21600,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2442,"ilvl":556,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":328,"2":731,"9":293,"11":197,"22":15628}},"556":{"randPropPoints":2266,"stats":{"0":1032,"2":1788,"9":762,"11":666,"22":21141}},"560":{"randPropPoints":2353,"stats":{"0":1077,"2":1856,"9":793,"11":697,"22":21371},"upgradeStep":1}}}, +{"id":105683,"name":"Hellscream's Warbow","icon":"inv_bow_1h_pvphorde_a_01_upres","type":14,"rangedWeaponType":1,"stats":[0,2777,4405,0,0,0,0,1408,0,0,0,2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5584,"weaponDamageMin":22527,"weaponDamageMax":41838,"weaponSpeed":3,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":715,"2":1312,"7":363,"11":585}},"582":{"randPropPoints":5183,"weaponDamageMin":20909,"weaponDamageMax":38832,"stats":{"1":2566,"2":4089,"7":1301,"11":1992}},"586":{"randPropPoints":5380,"weaponDamageMin":21703,"weaponDamageMax":40307,"stats":{"1":2669,"2":4244,"7":1353,"11":2070},"upgradeStep":1}}}, +{"id":105684,"name":"Hellscream's Razor","icon":"inv_knife_1h_pvphorde_a_01","type":13,"weaponType":2,"handType":2,"stats":[0,1098,1888,0,0,0,796,697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2393,"weaponDamageMin":10024,"weaponDamageMax":18618,"weaponSpeed":1.8,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"1":215,"2":562,"6":181,"7":151}},"582":{"randPropPoints":2221,"weaponDamageMin":9304,"weaponDamageMax":17280,"stats":{"1":1008,"2":1752,"6":733,"7":641}},"586":{"randPropPoints":2306,"weaponDamageMin":9658,"weaponDamageMax":17936,"stats":{"1":1053,"2":1819,"6":764,"7":669},"upgradeStep":1}}}, +{"id":105685,"name":"Hellscream's Cleaver","icon":"inv_axe_1h_pvphorde_d_01_upres","type":13,"weaponType":1,"handType":2,"stats":[0,1098,1888,0,0,0,759,0,0,0,0,759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2393,"weaponDamageMin":14480,"weaponDamageMax":26892,"weaponSpeed":2.6,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":215,"2":562,"6":170,"11":170}},"582":{"randPropPoints":2221,"weaponDamageMin":13440,"weaponDamageMax":24960,"stats":{"1":1008,"2":1752,"6":699,"11":699}},"586":{"randPropPoints":2306,"weaponDamageMin":13950,"weaponDamageMax":25908,"stats":{"1":1053,"2":1819,"6":728,"11":728},"upgradeStep":1}}}, +{"id":105686,"name":"Hellscream's Pig Sticker","icon":"inv_polearm_2h_pvphorde_a_01_upres","type":13,"weaponType":6,"handType":4,"stats":[0,2777,4405,0,0,0,0,1830,0,0,0,1926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5584,"weaponDamageMin":30895,"weaponDamageMax":46343,"weaponSpeed":3.6,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"1":715,"2":1312,"7":455,"11":551}},"582":{"randPropPoints":5183,"weaponDamageMin":28676,"weaponDamageMax":43014,"stats":{"1":2566,"2":4089,"7":1689,"11":1785}},"586":{"randPropPoints":5380,"weaponDamageMin":29765,"weaponDamageMax":44648,"stats":{"1":2669,"2":4244,"7":1758,"11":1854},"upgradeStep":1}}}, +{"id":105687,"name":"Hellscream's Barrier","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[0,0,2454,1636,1091,0,0,1091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23098,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3111,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":15628}},"582":{"randPropPoints":2888,"stats":{"2":2278,"3":1519,"4":1013,"7":1013,"22":22634}},"586":{"randPropPoints":2997,"stats":{"2":2364,"3":1576,"4":1051,"7":1051,"22":22866},"upgradeStep":1}}}, +{"id":105688,"name":"Hellscream's Warmace","icon":"inv_hammer_1h_pvphorde_a_01red_upres","type":13,"weaponType":4,"handType":2,"stats":[0,0,1888,1098,577,0,0,0,0,0,0,865,0,0,16818,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2393,"weaponDamageMin":6683,"weaponDamageMax":12412,"weaponSpeed":2.4,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":1990,"weaponDamageMax":3696,"stats":{"2":562,"3":215,"4":116,"11":202,"14":5011}},"582":{"randPropPoints":2221,"weaponDamageMin":6203,"weaponDamageMax":11520,"stats":{"2":1752,"3":1008,"4":530,"11":798,"14":15610}},"586":{"randPropPoints":2306,"weaponDamageMin":6438,"weaponDamageMax":11958,"stats":{"2":1819,"3":1053,"4":553,"11":831,"14":16207},"upgradeStep":1}}}, +{"id":105689,"name":"Hellscream's Tome of Destruction","icon":"inv_misc_1h_book_c_02red_upres","type":13,"weaponType":5,"handType":3,"stats":[0,0,2454,1636,0,0,1091,951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3111,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":325,"7":283}},"582":{"randPropPoints":2888,"stats":{"2":2278,"3":1519,"6":1013,"7":883}},"586":{"randPropPoints":2997,"stats":{"2":2364,"3":1576,"6":1051,"7":916},"upgradeStep":1}}}, +{"id":105690,"name":"Hellscream's War Staff","icon":"inv_stave_2h_pvphorde_a_01_upres","type":13,"weaponType":8,"handType":4,"stats":[0,0,4405,2777,0,0,1781,0,0,0,0,1955,0,0,16820,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5584,"weaponDamageMin":14160,"weaponDamageMax":21241,"weaponSpeed":3.3,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4217,"weaponDamageMax":6326,"stats":{"2":1312,"3":715,"6":440,"11":560,"14":5009}},"582":{"randPropPoints":5183,"weaponDamageMin":13143,"weaponDamageMax":19715,"stats":{"2":4089,"3":2566,"6":1644,"11":1813,"14":15612}},"586":{"randPropPoints":5380,"weaponDamageMin":13642,"weaponDamageMax":20464,"stats":{"2":4244,"3":2669,"6":1711,"11":1883,"14":16205},"upgradeStep":1}}}, +{"id":105691,"name":"Hellscream's Doomblade","icon":"inv_sword_1h_pvphorde_a_01_upres","type":13,"weaponType":9,"handType":2,"stats":[1098,0,1888,0,0,0,0,0,820,0,0,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2393,"weaponDamageMin":14480,"weaponDamageMax":26892,"weaponSpeed":2.6,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":215,"2":562,"8":188,"11":139}},"582":{"randPropPoints":2221,"weaponDamageMin":13440,"weaponDamageMax":24960,"stats":{"0":1008,"2":1752,"8":755,"11":603}},"586":{"randPropPoints":2306,"weaponDamageMin":13950,"weaponDamageMax":25908,"stats":{"0":1053,"2":1819,"8":787,"11":629},"upgradeStep":1}}}, +{"id":105692,"name":"Hellscream's Decapitator","icon":"inv_axe_2h_pvphorde_a_01blackhigh","type":13,"weaponType":1,"handType":4,"stats":[2777,0,4405,0,0,0,1686,1972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":5584,"weaponDamageMin":30895,"weaponDamageMax":46343,"weaponSpeed":3.6,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":715,"2":1312,"6":480,"7":497}},"582":{"randPropPoints":5183,"weaponDamageMin":28676,"weaponDamageMax":43014,"stats":{"0":2566,"2":4089,"6":1562,"7":1821}},"586":{"randPropPoints":5380,"weaponDamageMin":29765,"weaponDamageMax":44648,"stats":{"0":2669,"2":4244,"6":1623,"7":1895},"upgradeStep":1}}}, +{"id":105693,"name":"Hellscream's Shield Wall","icon":"inv_shield_pvphorde_a_01_upres","type":13,"weaponType":7,"handType":3,"stats":[1476,0,2454,0,0,0,0,0,0,1059,0,963,0,0,0,0,0,0,0,0,0,0,23098,0,0,0,0],"gemSockets":[2,2],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3111,"ilvl":582,"phase":3,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"zoneId":6738,"otherName":"Garrosh Hellscream"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":328,"2":731,"9":293,"11":197,"22":15628}},"582":{"randPropPoints":2888,"stats":{"0":1359,"2":2278,"9":981,"11":885,"22":22634}},"586":{"randPropPoints":2997,"stats":{"0":1416,"2":2364,"9":1019,"11":923,"22":22866},"upgradeStep":1}}}, +{"id":105741,"name":"Kor'kron Dark Shaman Belt","icon":"inv_belt_mail_korkronshaman_d_01","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235},"500":{"randPropPoints":1793},"504":{"randPropPoints":1862,"upgradeStep":1}}}, +{"id":105742,"name":"Kor'kron Dark Shaman Treads","icon":"inv_boot_mail_korkronshaman_d_01","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235},"500":{"randPropPoints":1793},"504":{"randPropPoints":1862,"upgradeStep":1}}}, +{"id":105743,"name":"Kor'kron Dark Shaman Vestment","icon":"inv_chest_mail_korkronshaman_d_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2601,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663},"500":{"randPropPoints":2414},"504":{"randPropPoints":2506,"upgradeStep":1}}}, +{"id":105744,"name":"Kor'kron Dark Shaman Gloves","icon":"inv_glove_mail_korkronshaman_d_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235},"500":{"randPropPoints":1793},"504":{"randPropPoints":1862,"upgradeStep":1}}}, +{"id":105745,"name":"Kor'kron Dark Shaman Cowl","icon":"inv_helm_mail_korkronshaman_d_01","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2601,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663},"500":{"randPropPoints":2414},"504":{"randPropPoints":2506,"upgradeStep":1}}}, +{"id":105746,"name":"Kor'kron Dark Shaman Kilt","icon":"inv_pant_mail_korkronshaman_d_01","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2601,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1663},"500":{"randPropPoints":2414},"504":{"randPropPoints":2506,"upgradeStep":1}}}, +{"id":105747,"name":"Kor'kron Dark Shaman Shoulder","icon":"inv_shoulder_mail_korkronshaman_d_01","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1932,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":1235},"500":{"randPropPoints":1793},"504":{"randPropPoints":1862,"upgradeStep":1}}}, +{"id":105748,"name":"Kor'kron Dark Shaman Bracers","icon":"inv_bracer_mail_korkronshaman_d_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1449,"ilvl":500,"quality":4,"classAllowlist":[7],"scalingOptions":{"460":{"randPropPoints":927},"500":{"randPropPoints":1345},"504":{"randPropPoints":1396,"upgradeStep":1}}}, +{"id":105754,"name":"Desirae's Dashing Leggings","icon":"inv_pant_mail_raidhunter_n_01","type":9,"armorType":3,"stats":[0,2210,3556,0,0,0,1345,0,0,0,0,1593,0,0,0,0,0,0,0,0,0,0,4349,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":446,"11":537,"22":3122}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1242,"11":1472,"22":4257}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1293,"11":1531,"22":4303},"upgradeStep":1}}}, +{"id":105755,"name":"Moshne's Keen Kilt","icon":"inv_mail_raidshaman_n_01pant","type":9,"armorType":3,"stats":[0,0,3556,2210,1306,0,0,1615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4349,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"7":545,"22":3122}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1207,"7":1493,"22":4257}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1256,"7":1553,"22":4303},"upgradeStep":1}}}, +{"id":105756,"name":"Poxleitner's Leggings of Lights","icon":"inv_plate_raidpaladin_n_01pant","type":9,"armorType":4,"stats":[0,0,3556,2210,1306,0,1615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":432,"6":545,"22":4263}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1207,"6":1493,"22":5814}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1256,"6":1553,"22":5877},"upgradeStep":1}}}, +{"id":105757,"name":"Shipley's Shady Silks","icon":"inv_pant_cloth_raidwarlock_n_01","type":9,"armorType":1,"stats":[0,0,3556,2210,0,0,0,1422,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,2456,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"7":474,"11":520,"22":1763}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"7":1314,"11":1430,"22":2404}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"7":1367,"11":1487,"22":2430},"upgradeStep":1}}}, +{"id":105758,"name":"Arielle's Ancient Legwraps","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,2210,3556,0,0,0,1422,0,0,0,0,1547,0,0,0,0,0,0,0,0,0,0,3126,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":474,"11":520,"22":2243}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1314,"11":1430,"22":3060}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1367,"11":1487,"22":3093},"upgradeStep":1}}}, +{"id":105759,"name":"Magmaplates of Jian Wu Xi Feng","icon":"inv_pants_plate_raiddeathknight_n_01","type":9,"armorType":4,"stats":[2130,0,3556,0,0,0,1382,0,0,0,0,1507,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":434,"11":480,"22":4263}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1274,"11":1390,"22":5814}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1327,"11":1447,"22":5877},"upgradeStep":1}}}, +{"id":105760,"name":"Hamlet's Wind-Whipped Leggings","icon":"inv_leather_raiddruid_n_01pant","type":9,"armorType":2,"stats":[0,0,3556,2210,1231,0,1659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3126,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":715,"4":404,"6":562,"22":2243}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":2040,"4":1137,"6":1534,"22":3060}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2123,"4":1183,"6":1595,"22":3093},"upgradeStep":1}}}, +{"id":105761,"name":"Partik's Purified Legplates","icon":"inv_pants_plate_raidwarrior_n_01","type":9,"armorType":4,"stats":[2130,0,3556,0,0,0,0,1382,0,0,0,1507,0,0,0,0,0,0,0,0,0,0,5939,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":434,"11":480,"22":4263}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"7":1274,"11":1390,"22":5814}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"7":1327,"11":1447,"22":5877},"upgradeStep":1}}}, +{"id":105762,"name":"Smoldering Eye","icon":"inv_misc_necklace_mop8","type":2,"stats":[0,1321,1981,0,0,0,0,894,0,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"7":330,"11":317}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"7":830,"11":797}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"7":861,"11":827},"upgradeStep":1}}}, +{"id":105763,"name":"Penate's Perilous Pendant","icon":"inv_misc_necklace_mop6","type":2,"stats":[0,0,1981,1321,0,894,0,0,0,0,0,858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":330,"11":317}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":830,"11":797}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":861,"11":827},"upgradeStep":1}}}, +{"id":105764,"name":"Rising New Moon Talisman","icon":"inv_misc_necklace_mop5","type":2,"stats":[0,0,1981,1321,837,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":309,"7":335}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":777,"7":841}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":806,"7":873},"upgradeStep":1}}}, +{"id":105765,"name":"Bladeforger Necklace","icon":"inv_misc_necklace_mop1","type":2,"stats":[1321,0,1981,0,0,669,0,0,0,1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":247,"9":371}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":621,"9":932}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":644,"9":967},"upgradeStep":1}}}, +{"id":105766,"name":"Anafielle's Spiked Choker","icon":"inv_misc_key_06","type":2,"stats":[1321,0,1981,0,0,815,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":301,"11":339}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":757,"11":853}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":785,"11":886},"upgradeStep":1}}}, +{"id":105767,"name":"Hoodrych's Bloodied Chestplate","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,1640,0,0,0,0,1154,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"6":529,"11":350,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"6":1513,"11":1063,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"6":1576,"11":1107,"22":6716},"upgradeStep":1}}}, +{"id":105768,"name":"Pamela's Muuscat Wrap","icon":"inv_robe_leather_raidmonk_n_01","type":5,"armorType":2,"stats":[0,2130,3556,0,0,0,1640,1154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":529,"7":350,"22":2564}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"6":1513,"7":1063,"22":3497}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"6":1576,"7":1107,"22":3534},"upgradeStep":1}}}, +{"id":105769,"name":"Omegal's Crushing Carapace","icon":"inv_chest_plate_raidwarrior_n_01","type":5,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,0,1420,1484,0,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":448,"10":472,"22":4872}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"9":1310,"10":1369,"22":6645}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"9":1364,"10":1425,"22":6716},"upgradeStep":1}}}, +{"id":105770,"name":"Zoo-Per's Superior Chestguard","icon":"inv_leather_raiddruid_n_01pant","type":5,"armorType":2,"stats":[0,0,3556,2130,1382,0,1507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3572,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":434,"6":480,"22":2564}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1274,"6":1390,"22":3497}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1327,"6":1447,"22":3534},"upgradeStep":1}}}, +{"id":105771,"name":"Chestguard of Pyrrhic Immolation","icon":"inv_mail_raidshaman_n_01chest","type":5,"armorType":3,"stats":[0,0,3556,2130,1597,0,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":514,"6":378,"22":3568}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1474,"6":1132,"22":4865}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1534,"6":1179,"22":4918},"upgradeStep":1}}}, +{"id":105772,"name":"Moonhee's Mean Vest","icon":"inv_chest_mail_raidhunter_n_01","type":5,"armorType":3,"stats":[0,2210,3556,0,0,0,1231,0,0,0,0,1659,0,0,0,0,0,0,0,0,0,0,4970,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":715,"2":1312,"6":404,"11":562,"22":3568}},"559":{"randPropPoints":4183,"stats":{"1":2040,"2":3300,"6":1137,"11":1534,"22":4865}},"563":{"randPropPoints":4342,"stats":{"1":2123,"2":3425,"6":1183,"11":1595,"22":4918},"upgradeStep":1}}}, +{"id":105773,"name":"Ulmaas' Robes of Crushing Magma","icon":"inv_chest_cloth_raidmage_n_01","type":5,"armorType":1,"stats":[0,0,3556,2130,0,1661,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":537,"7":336,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"5":1533,"7":1028,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"5":1596,"7":1072,"22":2777},"upgradeStep":1}}}, +{"id":105774,"name":"Catia's Flowing Robes","icon":"inv_cloth_raidpriest_n_01robe","type":5,"armorType":1,"stats":[0,0,3556,2130,1266,0,1575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2807,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":392,"6":505,"22":2014}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1167,"6":1453,"22":2747}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1216,"6":1513,"22":2777},"upgradeStep":1}}}, +{"id":105775,"name":"Gleaming Eye Spellplate","icon":"inv_plate_raidpaladin_n_01robe","type":5,"armorType":4,"stats":[0,0,3556,2130,1305,0,0,0,0,0,0,1553,0,0,0,0,0,0,0,0,0,0,6788,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":406,"11":497,"22":4872}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1202,"11":1432,"22":6645}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1253,"11":1491,"22":6716},"upgradeStep":1}}}, +{"id":105776,"name":"Belt of the Burning Soul","icon":"inv_plate_raidpaladin_n_01belt","type":8,"armorType":4,"stats":[0,0,2641,1601,1112,0,0,0,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":360,"11":342,"22":2741}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1026,"11":982,"22":3738}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1068,"11":1023,"22":3778},"upgradeStep":1}}}, +{"id":105777,"name":"Remnar's Ruinous Girdle","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,922,0,1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":290,"7":391,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"5":850,"7":1104,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"5":885,"7":1149,"22":3778},"upgradeStep":1}}}, +{"id":105778,"name":"Derevka's Gleaming Girdle","icon":"inv_cloth_raidpriest_n_01belt","type":8,"armorType":1,"stats":[0,0,2641,1601,894,0,1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":279,"6":396,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":824,"6":1119,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":858,"6":1165,"22":1562},"upgradeStep":1}}}, +{"id":105779,"name":"Light Kindler Waistguard","icon":"inv_belt_mail_raidhunter_n_01","type":8,"armorType":3,"stats":[0,1601,2641,0,0,950,0,1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":300,"7":384,"22":2007}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"5":876,"7":1089,"22":2737}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"5":912,"7":1133,"22":2766},"upgradeStep":1}}}, +{"id":105780,"name":"Windflame Girdle","icon":"inv_leather_raiddruid_n_01belt","type":8,"armorType":2,"stats":[0,0,2641,1601,894,0,1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":279,"6":396,"22":1442}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":824,"6":1119,"22":1967}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":858,"6":1165,"22":1988},"upgradeStep":1}}}, +{"id":105781,"name":"Venruki's Venerable Sash","icon":"inv_belt_cloth_raidmage_n_01","type":8,"armorType":1,"stats":[0,0,2641,1601,0,922,0,0,0,0,0,1196,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":290,"11":391,"22":1133}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":850,"11":1104,"22":1545}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":885,"11":1149,"22":1562},"upgradeStep":1}}}, +{"id":105782,"name":"Belt of Glowing Embers","icon":"inv_belt_leather_raidrogue_n_01","type":8,"armorType":2,"stats":[0,1601,2641,0,0,950,0,1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2009,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":300,"7":384,"22":1442}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"5":876,"7":1089,"22":1967}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"5":912,"7":1133,"22":1988},"upgradeStep":1}}}, +{"id":105783,"name":"Greatbelt of the Crendor","icon":"inv_belt_plate_raiddeathknight_n_01","type":8,"armorType":4,"stats":[1601,0,2641,0,0,978,0,0,0,0,0,1162,0,0,0,0,0,0,0,0,0,0,3818,0,0,0,0],"gemSockets":[4,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"5":310,"11":378,"22":2741}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"5":902,"11":1073,"22":3738}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"5":940,"11":1117,"22":3778},"upgradeStep":1}}}, +{"id":105784,"name":"Binkenstein's Burnished Belt","icon":"inv_mail_raidshaman_n_01belt","type":8,"armorType":3,"stats":[0,0,2641,1601,894,0,0,1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2796,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":279,"7":396,"22":2007}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":824,"7":1119,"22":2737}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":858,"7":1165,"22":2766},"upgradeStep":1}}}, +{"id":105785,"name":"Vanguard's Burly Bracers","icon":"inv_bracer_plate_raidwarrior_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,689,0,992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":254,"7":366,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"5":640,"7":921,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"5":664,"7":956,"22":2938},"upgradeStep":1}}}, +{"id":105786,"name":"Ordosian Cultist's Bracers","icon":"inv_bracer_plate_raiddeathknight_n_01","type":6,"armorType":4,"stats":[1321,0,1981,0,0,0,0,0,0,858,894,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"9":317,"10":330,"22":2132}},"559":{"randPropPoints":2331,"stats":{"0":1226,"2":1839,"9":797,"10":830,"22":2907}},"563":{"randPropPoints":2419,"stats":{"0":1272,"2":1908,"9":827,"10":861,"22":2938},"upgradeStep":1}}}, +{"id":105787,"name":"Burnseal Bracers","icon":"inv_leather_raiddruid_n_01bracer","type":6,"armorType":2,"stats":[0,0,1981,1321,992,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":366,"6":254,"22":1122}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":921,"6":640,"22":1530}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":956,"6":664,"22":1546},"upgradeStep":1}}}, +{"id":105788,"name":"Paululum's Doodled Wraps","icon":"inv_cloth_raidpriest_n_01bracer","type":6,"armorType":1,"stats":[0,0,1981,1321,794,0,0,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":293,"11":344,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":737,"11":865,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":765,"11":898,"22":1215},"upgradeStep":1}}}, +{"id":105789,"name":"Bjam's Blasting Bracers","icon":"inv_bracer_cloth_raidmage_n_01","type":6,"armorType":1,"stats":[0,0,1981,1321,0,794,0,0,0,0,0,932,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"5":293,"11":344,"22":881}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"5":737,"11":865,"22":1202}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"5":765,"11":898,"22":1215},"upgradeStep":1}}}, +{"id":105790,"name":"Firetotem Bracers","icon":"inv_mail_raidshaman_n_01bracer","type":6,"armorType":3,"stats":[0,0,1981,1321,669,0,0,0,0,0,0,1004,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":247,"11":371,"22":1561}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":621,"11":932,"22":2129}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":644,"11":967,"22":2152},"upgradeStep":1}}}, +{"id":105791,"name":"Bracers of Unquestioning Belief","icon":"inv_plate_raidpaladin_n_01bracer","type":6,"armorType":4,"stats":[0,0,1981,1321,751,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":277,"6":353,"22":2132}},"559":{"randPropPoints":2331,"stats":{"2":1839,"3":1226,"4":697,"6":888,"22":2907}},"563":{"randPropPoints":2419,"stats":{"2":1908,"3":1272,"4":724,"6":922,"22":2938},"upgradeStep":1}}}, +{"id":105792,"name":"Bowflight Wristguard","icon":"inv_bracer_mail_raidhunter_n_01","type":6,"armorType":3,"stats":[0,1321,1981,0,0,751,0,957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":277,"7":353,"22":1561}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"5":697,"7":888,"22":2129}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"5":724,"7":922,"22":2152},"upgradeStep":1}}}, +{"id":105793,"name":"Bracers of Simmering Fury","icon":"inv_bracer_leather_raidmonk_n_01","type":6,"armorType":2,"stats":[0,1321,1981,0,0,0,969,0,730,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2511,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"6":358,"8":270,"22":1122}},"559":{"randPropPoints":2331,"stats":{"1":1226,"2":1839,"6":899,"8":678,"22":1530}},"563":{"randPropPoints":2419,"stats":{"1":1272,"2":1908,"6":933,"8":704,"22":1546},"upgradeStep":1}}}, +{"id":105794,"name":"Starry Spaulders of Durability","icon":"inv_shoulder_plate_raiddeathknight_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,0,0,0,0,908,839,0,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"9":284,"10":259,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"9":837,"10":773,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"9":872,"10":806,"22":5037},"upgradeStep":1}}}, +{"id":105795,"name":"Bo He Me's Deathwind Mantle","icon":"inv_cloth_raidpriest_n_01shoulder","type":3,"armorType":1,"stats":[0,0,2641,1601,894,0,1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":279,"6":396,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":824,"6":1119,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":858,"6":1165,"22":2083},"upgradeStep":1}}}, +{"id":105796,"name":"Rossi's Rosin-Soaked Shoulderplates","icon":"inv_shoulder_plate_raidwarrior_n_01","type":3,"armorType":4,"stats":[1601,0,2641,0,0,0,0,1146,0,0,0,1007,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[2,3],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"7":372,"11":321,"22":3654}},"559":{"randPropPoints":3108,"stats":{"0":1474,"2":2452,"7":1058,"11":929,"22":4983}},"563":{"randPropPoints":3226,"stats":{"0":1537,"2":2545,"7":1101,"11":967,"22":5037},"upgradeStep":1}}}, +{"id":105797,"name":"Shay-Nii's Popping Shoulderpads","icon":"inv_shoulder_cloth_raidmage_n_01","type":3,"armorType":1,"stats":[0,0,2641,1601,0,1212,0,0,0,0,0,894,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":396,"11":279,"22":1511}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"5":1119,"11":824,"22":2060}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"5":1165,"11":858,"22":2083},"upgradeStep":1}}}, +{"id":105798,"name":"Flame Healer's Shoulderguards","icon":"inv_leather_raiddruid_n_01shoulder","type":3,"armorType":2,"stats":[0,0,2641,1601,978,0,1162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":310,"6":378,"22":1923}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":902,"6":1073,"22":2623}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":940,"6":1117,"22":2651},"upgradeStep":1}}}, +{"id":105799,"name":"Fleshsmoke Chain Shoulders","icon":"inv_mail_raidshaman_n_01shoulder","type":3,"armorType":3,"stats":[0,0,2641,1601,1094,0,1094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":353,"6":353,"22":2676}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":1010,"6":1010,"22":3649}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1051,"6":1051,"22":3688},"upgradeStep":1}}}, +{"id":105800,"name":"Firearrow Shoulderpads","icon":"inv_shoulder_mail_raidhunter_n_01","type":3,"armorType":3,"stats":[0,1601,2641,0,0,0,0,1112,0,0,0,1064,0,0,0,0,0,0,0,0,0,0,3728,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"7":360,"11":342,"22":2676}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"7":1026,"11":982,"22":3649}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"7":1068,"11":1023,"22":3688},"upgradeStep":1}}}, +{"id":105801,"name":"Spaulders of Dominating Dreams","icon":"inv_shoulder_leather_raidrogue_n_01","type":3,"armorType":2,"stats":[0,1601,2641,0,0,0,866,0,0,0,0,1227,0,0,0,0,0,0,0,0,0,0,2679,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":269,"11":402,"22":1923}},"559":{"randPropPoints":3108,"stats":{"1":1474,"2":2452,"6":799,"11":1134,"22":2623}},"563":{"randPropPoints":3226,"stats":{"1":1537,"2":2545,"6":832,"11":1180,"22":2651},"upgradeStep":1}}}, +{"id":105802,"name":"Yaungol Deathcult Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_n_01","type":3,"armorType":4,"stats":[0,0,2641,1601,1064,0,1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5091,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3348,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":342,"6":360,"22":3654}},"559":{"randPropPoints":3108,"stats":{"2":2452,"3":1474,"4":982,"6":1026,"22":4983}},"563":{"randPropPoints":3226,"stats":{"2":2545,"3":1537,"4":1023,"6":1068,"22":5037},"upgradeStep":1}}}, +{"id":105803,"name":"Stickney's Grey-Shade Hood","icon":"inv_helm_leather_raidrogue_n_01","type":1,"armorType":2,"stats":[0,2130,3556,0,0,0,1382,1507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"6":434,"7":480,"22":2083}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"6":1274,"7":1390,"22":2841}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"6":1327,"7":1447,"22":2872},"upgradeStep":1}}}, +{"id":105804,"name":"Aladya's Spiritfire Greathelm","icon":"inv_helm_plate_raidpaladin_n_01","type":1,"armorType":4,"stats":[0,0,3556,2130,1661,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":537,"6":336,"22":3959}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1533,"6":1028,"22":5399}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1596,"6":1072,"22":5457},"upgradeStep":1}}}, +{"id":105805,"name":"Dominik's Casque of Raging Flame","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,0,0,0,1484,1420,0,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"9":472,"10":448,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"9":1369,"10":1310,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"9":1425,"10":1364,"22":5457},"upgradeStep":1}}}, +{"id":105806,"name":"Circlet of the Panser","icon":"inv_helm_leather_raidmonk_n_01","type":1,"armorType":2,"stats":[0,0,3556,2130,1420,0,0,0,0,0,0,1484,0,0,0,0,0,0,0,0,0,0,2902,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":448,"11":472,"22":2083}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1310,"11":1369,"22":2841}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1364,"11":1425,"22":2872},"upgradeStep":1}}}, +{"id":105807,"name":"Magdalena's Murderous Crown","icon":"inv_helmet_plate_raiddeathknight_n_01","type":1,"armorType":4,"stats":[2130,0,3556,0,0,0,0,1420,0,0,0,1484,0,0,0,0,0,0,0,0,0,0,5515,0,0,0,0],"gemSockets":[1,3],"socketBonus":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"0":635,"2":1312,"7":448,"11":472,"22":3959}},"559":{"randPropPoints":4183,"stats":{"0":1960,"2":3300,"7":1310,"11":1369,"22":5399}},"563":{"randPropPoints":4342,"stats":{"0":2043,"2":3425,"7":1364,"11":1425,"22":5457},"upgradeStep":1}}}, +{"id":105808,"name":"Damien's Ice-Vein Mask","icon":"inv_helm_cloth_raidwarlock_n_01","type":1,"armorType":1,"stats":[0,0,3556,2130,0,1661,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"5":537,"7":336,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"5":1533,"7":1028,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"5":1596,"7":1072,"22":2256},"upgradeStep":1}}}, +{"id":105809,"name":"Crest of Burning Deeds","icon":"inv_helm_mail_raidhunter_n_01","type":1,"armorType":3,"stats":[0,2130,3556,0,0,0,0,1597,0,0,0,1228,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"1":635,"2":1312,"7":514,"11":378,"22":2899}},"559":{"randPropPoints":4183,"stats":{"1":1960,"2":3300,"7":1474,"11":1132,"22":3953}},"563":{"randPropPoints":4342,"stats":{"1":2043,"2":3425,"7":1534,"11":1179,"22":3996},"upgradeStep":1}}}, +{"id":105810,"name":"Buc-Zakai Burning Hood","icon":"inv_cloth_raidpriest_n_01helm","type":1,"armorType":1,"stats":[0,0,3556,2130,1191,0,0,1619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2280,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":364,"7":522,"22":1637}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1097,"7":1494,"22":2232}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1143,"7":1555,"22":2256},"upgradeStep":1}}}, +{"id":105811,"name":"Olivia's Graceful Gaze","icon":"inv_helmet_mail_pvpshaman_g_01","type":1,"armorType":3,"stats":[0,0,3556,2130,1661,0,1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4038,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":4507,"ilvl":559,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"otherName":"Ordos, Fire-God of the Yaungol"}}],"scalingOptions":{"460":{"randPropPoints":1663,"stats":{"2":1312,"3":635,"4":537,"6":336,"22":2899}},"559":{"randPropPoints":4183,"stats":{"2":3300,"3":1960,"4":1533,"6":1028,"22":3953}},"563":{"randPropPoints":4342,"stats":{"2":3425,"3":2043,"4":1596,"6":1072,"22":3996},"upgradeStep":1}}}, +{"id":105812,"name":"Cape of the Alpha","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,989,1484,0,0,669,643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":330,"6":317,"22":1007}},"528":{"randPropPoints":1746,"stats":{"1":918,"2":1377,"5":621,"6":597,"22":1259}},"532":{"randPropPoints":1812,"stats":{"1":953,"2":1429,"5":645,"6":619,"22":1274},"upgradeStep":1}}}, +{"id":105813,"name":"Kalaena's Arcane Handwraps","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,1979,1159,0,572,0,938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":233,"7":430,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"5":524,"7":867,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"5":548,"7":902,"22":1592},"upgradeStep":1}}}, +{"id":105814,"name":"Seebo's Sainted Touch","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,1979,1159,613,0,0,0,0,0,0,915,0,0,0,0,0,0,0,0,0,0,1611,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1259}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":562,"11":845,"22":1574}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":587,"11":879,"22":1592},"upgradeStep":1}}}, +{"id":105815,"name":"Drape of the Omega","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1484,989,0,0,0,627,0,0,0,679,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"7":582,"11":630,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"7":604,"11":654,"22":1274},"upgradeStep":1}}}, +{"id":105816,"name":"Brave Niunai's Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1484,989,659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1007}},"528":{"randPropPoints":1746,"stats":{"2":1377,"3":918,"4":612,"7":612,"22":1259}},"532":{"randPropPoints":1812,"stats":{"2":1429,"3":953,"4":635,"7":635,"22":1274},"upgradeStep":1}}}, +{"id":105817,"name":"Siid's Silent Stranglers","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1159,1979,0,0,0,883,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":386,"7":285,"22":1602}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"6":813,"7":594,"22":2003}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"6":847,"7":619,"22":2026},"upgradeStep":1}}}, +{"id":105818,"name":"Crimson Gauntlets of Death","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,1979,1159,835,0,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2050,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1602}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":768,"6":672,"22":2003}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":801,"6":700,"22":2026},"upgradeStep":1}}}, +{"id":105819,"name":"Keengrip Arrowpullers","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1159,1979,0,0,675,0,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":284,"7":400,"22":2230}},"528":{"randPropPoints":2328,"stats":{"1":1064,"2":1837,"5":620,"7":812,"22":2787}},"532":{"randPropPoints":2416,"stats":{"1":1111,"2":1906,"5":647,"7":845,"22":2820},"upgradeStep":1}}}, +{"id":105820,"name":"Marco's Crackling Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,1979,1159,654,0,0,0,0,0,0,892,0,0,0,0,0,0,0,0,0,0,2852,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":274,"11":407,"22":2230}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":601,"11":823,"22":2787}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":627,"11":856,"22":2820},"upgradeStep":1}}}, +{"id":105821,"name":"Romy's Reliable Grips","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,1979,1159,592,0,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":243,"6":424,"22":3045}},"528":{"randPropPoints":2328,"stats":{"2":1837,"3":1064,"4":543,"6":856,"22":3806}},"532":{"randPropPoints":2416,"stats":{"2":1906,"3":1111,"4":567,"6":891,"22":3851},"upgradeStep":1}}}, +{"id":105822,"name":"Zoid's Molten Gauntlets","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,883,0,0,0,0,645,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"11":285,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"6":813,"11":594,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"6":847,"11":619,"22":3851},"upgradeStep":1}}}, +{"id":105823,"name":"Gauntlets of Discarded Time","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1159,0,1979,0,0,0,0,0,613,0,915,0,0,0,0,0,0,0,0,0,0,0,3896,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2508,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":253,"10":418,"22":3045}},"528":{"randPropPoints":2328,"stats":{"0":1064,"2":1837,"8":562,"10":845,"22":3806}},"532":{"randPropPoints":2416,"stats":{"0":1111,"2":1906,"8":587,"10":879,"22":3851},"upgradeStep":1}}}, +{"id":105824,"name":"Aeth's Swiftcinder Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,0,611,0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"8":339,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"6":567,"8":639,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"6":588,"8":663,"22":1274},"upgradeStep":1}}}, +{"id":105825,"name":"Turtleshell Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[989,0,1484,0,0,679,0,0,0,0,0,627,0,0,0,0,0,0,0,0,0,0,1289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1881,"ilvl":528,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309,"22":1007}},"528":{"randPropPoints":1746,"stats":{"0":918,"2":1377,"5":630,"11":582,"22":1259}},"532":{"randPropPoints":1812,"stats":{"0":953,"2":1429,"5":654,"11":604,"22":1274},"upgradeStep":1}}}, +{"id":105826,"name":"Cape of the Alpha","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1106,1660,0,0,749,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":330,"6":317,"22":1007}},"540":{"randPropPoints":1953,"stats":{"1":1027,"2":1541,"5":695,"6":668,"22":1303}},"544":{"randPropPoints":2027,"stats":{"1":1066,"2":1599,"5":721,"6":693,"22":1318},"upgradeStep":1}}}, +{"id":105827,"name":"Kalaena's Arcane Handwraps","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2213,1315,0,651,0,1057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":233,"7":430,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"5":597,"7":976,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"5":624,"7":1016,"22":1648},"upgradeStep":1}}}, +{"id":105828,"name":"Seebo's Sainted Touch","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2213,1315,697,0,0,0,0,0,0,1031,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1259}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":640,"11":952,"22":1629}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":668,"11":991,"22":1648},"upgradeStep":1}}}, +{"id":105829,"name":"Drape of the Omega","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,1660,1106,0,0,0,701,0,0,0,760,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"7":651,"11":705,"22":1303}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"7":675,"11":732,"22":1318},"upgradeStep":1}}}, +{"id":105830,"name":"Brave Niunai's Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,1660,1106,738,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1007}},"540":{"randPropPoints":1953,"stats":{"2":1541,"3":1027,"4":685,"7":685,"22":1303}},"544":{"randPropPoints":2027,"stats":{"2":1599,"3":1066,"4":711,"7":711,"22":1318},"upgradeStep":1}}}, +{"id":105831,"name":"Siid's Silent Stranglers","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1315,2213,0,0,0,999,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":386,"7":285,"22":1602}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"6":920,"7":672,"22":2074}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"6":959,"7":700,"22":2097},"upgradeStep":1}}}, +{"id":105832,"name":"Crimson Gauntlets of Death","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2213,1315,945,0,823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1602}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":870,"6":759,"22":2074}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":907,"6":790,"22":2097},"upgradeStep":1}}}, +{"id":105833,"name":"Keengrip Arrowpullers","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1315,2213,0,0,767,0,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":284,"7":400,"22":2230}},"540":{"randPropPoints":2603,"stats":{"1":1209,"2":2054,"5":705,"7":915,"22":2885}},"544":{"randPropPoints":2702,"stats":{"1":1261,"2":2132,"5":735,"7":952,"22":2918},"upgradeStep":1}}}, +{"id":105834,"name":"Marco's Crackling Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2213,1315,743,0,0,0,0,0,0,1005,0,0,0,0,0,0,0,0,0,0,2951,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":274,"11":407,"22":2230}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":683,"11":928,"22":2885}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":712,"11":965,"22":2918},"upgradeStep":1}}}, +{"id":105835,"name":"Romy's Reliable Grips","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2213,1315,674,0,1044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":243,"6":424,"22":3045}},"540":{"randPropPoints":2603,"stats":{"2":2054,"3":1209,"4":619,"6":964,"22":3940}},"544":{"randPropPoints":2702,"stats":{"2":2132,"3":1261,"4":646,"6":1004,"22":3985},"upgradeStep":1}}}, +{"id":105836,"name":"Zoid's Molten Gauntlets","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,999,0,0,0,0,729,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"11":285,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"6":920,"11":672,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"6":959,"11":700,"22":3985},"upgradeStep":1}}}, +{"id":105837,"name":"Gauntlets of Discarded Time","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1315,0,2213,0,0,0,0,0,697,0,1031,0,0,0,0,0,0,0,0,0,0,0,4030,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2805,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":253,"10":418,"22":3045}},"540":{"randPropPoints":2603,"stats":{"0":1209,"2":2054,"8":640,"10":952,"22":3940}},"544":{"randPropPoints":2702,"stats":{"0":1261,"2":2132,"8":668,"10":991,"22":3985},"upgradeStep":1}}}, +{"id":105838,"name":"Aeth's Swiftcinder Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1106,0,1660,0,0,0,683,0,770,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"8":339,"22":1007}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"6":634,"8":715,"22":1303}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"6":658,"8":742,"22":1318},"upgradeStep":1}}}, +{"id":105839,"name":"Turtleshell Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1106,0,1660,0,0,760,0,0,0,0,0,701,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2104,"ilvl":540,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309,"22":1007}},"540":{"randPropPoints":1953,"stats":{"0":1027,"2":1541,"5":705,"11":651,"22":1303}},"544":{"randPropPoints":2027,"stats":{"0":1066,"2":1599,"5":732,"11":675,"22":1318},"upgradeStep":1}}}, +{"id":105840,"name":"Cape of the Alpha","icon":"inv_cape_pandaria_d_01","type":4,"armorType":1,"stats":[0,1409,2114,0,0,954,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"1":488,"2":731,"5":330,"6":317,"22":1007}},"566":{"randPropPoints":2488,"stats":{"1":1308,"2":1963,"5":885,"6":850,"22":1400}},"570":{"randPropPoints":2582,"stats":{"1":1358,"2":2037,"5":919,"6":883,"22":1414},"upgradeStep":1}}}, +{"id":105841,"name":"Kalaena's Arcane Handwraps","icon":"inv_glove_cloth_raidmage_n_01","type":7,"armorType":1,"stats":[0,0,2820,1720,0,856,0,1365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"5":233,"7":430,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"5":788,"7":1262,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"5":821,"7":1312,"22":1768},"upgradeStep":1}}}, +{"id":105842,"name":"Seebo's Sainted Touch","icon":"inv_cloth_raidpriest_n_01glove","type":7,"armorType":1,"stats":[0,0,2820,1720,914,0,0,0,0,0,0,1332,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":253,"11":418,"22":1259}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":842,"11":1231,"22":1749}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":877,"11":1280,"22":1768},"upgradeStep":1}}}, +{"id":105843,"name":"Drape of the Omega","icon":"inv_cape_pandaria_d_03","type":4,"armorType":1,"stats":[0,0,2114,1409,0,0,0,893,0,0,0,967,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"7":309,"11":335,"22":1007}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"7":829,"11":898,"22":1400}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"7":860,"11":932,"22":1414},"upgradeStep":1}}}, +{"id":105844,"name":"Brave Niunai's Cloak","icon":"inv_cape_pandaria_d_02","type":4,"armorType":1,"stats":[0,0,2114,1409,940,0,0,940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"4":325,"7":325,"22":1007}},"566":{"randPropPoints":2488,"stats":{"2":1963,"3":1308,"4":872,"7":872,"22":1400}},"570":{"randPropPoints":2582,"stats":{"2":2037,"3":1358,"4":905,"7":905,"22":1414},"upgradeStep":1}}}, +{"id":105845,"name":"Siid's Silent Stranglers","icon":"inv_glove_leather_raidrogue_n_01","type":7,"armorType":2,"stats":[0,1720,2820,0,0,0,1300,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"6":386,"7":285,"22":1602}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"6":1199,"7":874,"22":2227}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"6":1248,"7":909,"22":2250},"upgradeStep":1}}}, +{"id":105846,"name":"Crimson Gauntlets of Death","icon":"inv_glove_leather_raidmonk_n_01","type":7,"armorType":2,"stats":[0,0,2820,1720,1230,0,1066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2274,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":362,"6":326,"22":1602}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":1135,"6":985,"22":2227}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":1182,"6":1024,"22":2250},"upgradeStep":1}}}, +{"id":105847,"name":"Keengrip Arrowpullers","icon":"inv_glove_mail_raidhunter_n_01","type":7,"armorType":3,"stats":[0,1720,2820,0,0,1003,0,1280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"1":489,"2":974,"5":284,"7":400,"22":2230}},"566":{"randPropPoints":3317,"stats":{"1":1584,"2":2617,"5":924,"7":1184,"22":3098}},"570":{"randPropPoints":3443,"stats":{"1":1651,"2":2716,"5":963,"7":1231,"22":3131},"upgradeStep":1}}}, +{"id":105848,"name":"Marco's Crackling Gloves","icon":"inv_mail_raidshaman_n_01glove","type":7,"armorType":3,"stats":[0,0,2820,1720,973,0,0,0,0,0,0,1298,0,0,0,0,0,0,0,0,0,0,3164,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":274,"11":407,"22":2230}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":896,"11":1200,"22":3098}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":934,"11":1248,"22":3131},"upgradeStep":1}}}, +{"id":105849,"name":"Romy's Reliable Grips","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[0,0,2820,1720,885,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"2":974,"3":489,"4":243,"6":424,"22":3045}},"566":{"randPropPoints":3317,"stats":{"2":2617,"3":1584,"4":815,"6":1247,"22":4231}},"570":{"randPropPoints":3443,"stats":{"2":2716,"3":1651,"4":849,"6":1296,"22":4276},"upgradeStep":1}}}, +{"id":105850,"name":"Zoid's Molten Gauntlets","icon":"inv_plate_raidpaladin_n_01glove","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,1300,0,0,0,0,946,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"6":386,"11":285,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"6":1199,"11":874,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"6":1248,"11":909,"22":4276},"upgradeStep":1}}}, +{"id":105851,"name":"Gauntlets of Discarded Time","icon":"inv_gloves_plate_raiddeathknight_n_01","type":7,"armorType":4,"stats":[1720,0,2820,0,0,0,0,0,914,0,1332,0,0,0,0,0,0,0,0,0,0,0,4321,0,0,0,0],"gemSockets":[4,4],"socketBonus":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":3574,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1235,"stats":{"0":489,"2":974,"8":253,"10":418,"22":3045}},"566":{"randPropPoints":3317,"stats":{"0":1584,"2":2617,"8":842,"10":1231,"22":4231}},"570":{"randPropPoints":3443,"stats":{"0":1651,"2":2716,"8":877,"10":1280,"22":4276},"upgradeStep":1}}}, +{"id":105852,"name":"Aeth's Swiftcinder Cloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1409,0,2114,0,0,0,870,0,981,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"6":301,"8":339,"22":1007}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"6":808,"8":911,"22":1400}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"6":838,"8":945,"22":1414},"upgradeStep":1}}}, +{"id":105853,"name":"Turtleshell Greatcloak","icon":"inv_cape_pandaria_d_04","type":4,"armorType":1,"stats":[1409,0,2114,0,0,967,0,0,0,0,0,893,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2680,"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"5":335,"11":309,"22":1007}},"566":{"randPropPoints":2488,"stats":{"0":1308,"2":1963,"5":898,"11":829,"22":1400}},"570":{"randPropPoints":2582,"stats":{"0":1358,"2":2037,"5":932,"11":860,"22":1414},"upgradeStep":1}}}, +{"id":105856,"name":"Echoes of War","icon":"ability_warlock_cremation","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":566,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{},"566":{},"570":{"upgradeStep":1}}}, +{"id":105919,"name":"Daylight Protectorate","icon":"inv_shield_pandariaquest_b_02","type":13,"weaponType":7,"handType":3,"stats":[688,0,1032,0,0,0,0,0,0,0,505,380,0,0,0,0,0,0,0,0,0,0,17752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"0":488,"2":731,"10":358,"11":270,"22":15628}},"489":{"randPropPoints":1214,"stats":{"0":638,"2":957,"10":468,"11":353,"22":17293}},"493":{"randPropPoints":1260,"stats":{"0":663,"2":994,"10":486,"11":367,"22":17523},"upgradeStep":1}}}, +{"id":105920,"name":"Pandaren Peace Offering","icon":"inv_mace_1h_pandung_c_01","type":13,"weaponType":4,"handType":2,"stats":[529,0,794,0,0,0,383,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":6087,"weaponDamageMax":11306,"weaponSpeed":2.6,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"0":375,"2":562,"6":272,"11":213}},"489":{"randPropPoints":934,"weaponDamageMin":5650,"weaponDamageMax":10494,"stats":{"0":491,"2":737,"6":356,"11":279}},"493":{"randPropPoints":969,"weaponDamageMin":5864,"weaponDamageMax":10892,"stats":{"0":510,"2":764,"6":369,"11":290},"upgradeStep":1}}}, +{"id":105921,"name":"Cloudscorcher Greatstaff","icon":"inv_staff_2h_pandung_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,1852,1235,0,0,823,0,0,0,0,823,0,0,7072,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":6133,"weaponDamageMax":9200,"weaponSpeed":3.4,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":4345,"weaponDamageMax":6518,"stats":{"2":1312,"3":875,"6":583,"11":583,"14":5009}},"489":{"randPropPoints":2179,"weaponDamageMin":5693,"weaponDamageMax":8540,"stats":{"2":1719,"3":1146,"6":764,"11":764,"14":6563}},"493":{"randPropPoints":2262,"weaponDamageMin":5909,"weaponDamageMax":8864,"stats":{"2":1784,"3":1190,"6":793,"11":793,"14":6813},"upgradeStep":1}}}, +{"id":105922,"name":"Shield of the Eternal Noon","icon":"inv_shield_pandung_c_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,1032,688,0,0,391,0,0,0,0,498,0,0,0,0,0,0,0,0,0,0,17752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1308,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":927,"stats":{"2":731,"3":488,"6":277,"11":353,"22":15628}},"489":{"randPropPoints":1214,"stats":{"2":958,"3":638,"6":363,"11":463,"22":17293}},"493":{"randPropPoints":1260,"stats":{"2":994,"3":663,"6":377,"11":480,"22":17523},"upgradeStep":1}}}, +{"id":105923,"name":"Contemplation of Shaohao","icon":"inv_staff_2h_pandung_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,1235,1852,0,0,0,0,848,0,0,0,782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":11545,"weaponDamageMax":17318,"weaponSpeed":3.2,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":8178,"weaponDamageMax":12268,"stats":{"1":875,"2":1312,"7":600,"11":554}},"489":{"randPropPoints":2179,"weaponDamageMin":10716,"weaponDamageMax":16074,"stats":{"1":1146,"2":1719,"7":787,"11":726}},"493":{"randPropPoints":2262,"weaponDamageMin":11123,"weaponDamageMax":16685,"stats":{"1":1190,"2":1784,"7":817,"11":754},"upgradeStep":1}}}, +{"id":105924,"name":"Hozen Can Opener","icon":"inv_hand_1h_pandung_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,529,794,0,0,318,0,0,0,0,0,373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":6087,"weaponDamageMax":11306,"weaponSpeed":2.6,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":375,"2":562,"5":225,"11":265}},"489":{"randPropPoints":934,"weaponDamageMin":5650,"weaponDamageMax":10494,"stats":{"1":491,"2":737,"5":295,"11":347}},"493":{"randPropPoints":969,"weaponDamageMin":5864,"weaponDamageMax":10892,"stats":{"1":510,"2":764,"5":306,"11":360},"upgradeStep":1}}}, +{"id":105925,"name":"Yak-Herder's Longstaff","icon":"inv_polearm_2h_pandung_c_01","type":13,"weaponType":6,"handType":4,"stats":[1235,0,1852,0,0,0,848,782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":12988,"weaponDamageMax":19483,"weaponSpeed":3.6,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":9201,"weaponDamageMax":13802,"stats":{"0":875,"2":1312,"6":600,"7":554}},"489":{"randPropPoints":2179,"weaponDamageMin":12055,"weaponDamageMax":18084,"stats":{"0":1146,"2":1719,"6":787,"7":726}},"493":{"randPropPoints":2262,"weaponDamageMin":12513,"weaponDamageMax":18770,"stats":{"0":1190,"2":1784,"6":817,"7":754},"upgradeStep":1}}}, +{"id":105926,"name":"Ordon Sacrificial Dagger","icon":"inv_knife_1h_pandung_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,794,529,0,0,284,0,0,0,0,393,0,0,7070,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":4214,"weaponDamageMax":7827,"weaponSpeed":1.8,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2985,"weaponDamageMax":5545,"stats":{"2":562,"3":375,"6":202,"11":278,"14":5011}},"489":{"randPropPoints":934,"weaponDamageMin":3911,"weaponDamageMax":7265,"stats":{"2":737,"3":491,"6":264,"11":365,"14":6564}},"493":{"randPropPoints":969,"weaponDamageMin":4060,"weaponDamageMax":7541,"stats":{"2":764,"3":510,"6":274,"11":378,"14":6810},"upgradeStep":1}}}, +{"id":105927,"name":"Featherdraw Longbow","icon":"inv_bow_1h_pandung_c_01","type":14,"rangedWeaponType":1,"stats":[0,1235,1852,0,0,0,0,871,0,0,0,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":2348,"weaponDamageMin":9470,"weaponDamageMax":17589,"weaponSpeed":3,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":1663,"weaponDamageMin":6709,"weaponDamageMax":12460,"stats":{"1":875,"2":1312,"7":617,"11":526}},"489":{"randPropPoints":2179,"weaponDamageMin":8790,"weaponDamageMax":16326,"stats":{"1":1146,"2":1719,"7":809,"11":689}},"493":{"randPropPoints":2262,"weaponDamageMin":9124,"weaponDamageMax":16945,"stats":{"1":1190,"2":1784,"7":839,"11":715},"upgradeStep":1}}}, +{"id":105929,"name":"Scavenged Pandaren Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,794,529,0,0,388,0,0,0,0,0,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":1006,"weaponDamageMin":3980,"weaponDamageMax":7392,"weaponSpeed":1.7,"ilvl":489,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":2819,"weaponDamageMax":5237,"stats":{"1":562,"2":375,"5":275,"11":207}},"489":{"randPropPoints":934,"weaponDamageMin":3694,"weaponDamageMax":6861,"stats":{"1":737,"2":491,"5":360,"11":272}},"493":{"randPropPoints":969,"weaponDamageMin":3834,"weaponDamageMax":7122,"stats":{"1":764,"2":510,"5":374,"11":282},"upgradeStep":1}}}, +{"id":107217,"name":"Direbrew's Bloodied Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,443,665,0,0,259,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":3923,"weaponDamageMax":7286,"weaponSpeed":2,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":3317,"weaponDamageMax":6161,"stats":{"1":375,"2":562,"5":219,"6":268}},"470":{"randPropPoints":782,"weaponDamageMin":3641,"weaponDamageMax":6762,"stats":{"1":411,"2":617,"5":241,"6":294}},"474":{"randPropPoints":812,"weaponDamageMin":3779,"weaponDamageMax":7019,"stats":{"1":427,"2":641,"5":250,"6":305},"upgradeStep":1}}}, +{"id":107218,"name":"Tremendous Tankard O' Terror","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,435,608,0,0,0,280,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":843,"weaponDamageMin":5099,"weaponDamageMax":9471,"weaponSpeed":2.6,"ilvl":470,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"460":{"randPropPoints":713,"weaponDamageMin":4312,"weaponDamageMax":8009,"stats":{"1":367,"2":510,"6":234,"7":226}},"470":{"randPropPoints":782,"weaponDamageMin":4733,"weaponDamageMax":8791,"stats":{"1":403,"2":562,"6":258,"7":250}},"474":{"randPropPoints":812,"weaponDamageMin":4913,"weaponDamageMax":9125,"stats":{"1":419,"2":585,"6":269,"7":261},"upgradeStep":1}}}, +{"id":226178,"name":"Vicious Eyeball of Dominance","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,0,190,127,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"stats":{"2":190,"3":127,"6":84,"16":84},"isBase":true}}}, +{"id":226179,"name":"Vicious Jawbone of Conquest","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[127,0,190,0,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"stats":{"0":127,"2":190,"6":84,"16":84},"isBase":true}}}, +{"id":226180,"name":"Vicious Charm of Triumph","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[0,127,190,0,0,0,84,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"stats":{"1":127,"2":190,"6":84,"16":84},"isBase":true}}}, +{"id":226181,"name":"Vicious Fur Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,225,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"6":150,"16":150,"22":692},"isBase":true}}}, +{"id":226182,"name":"Vicious Embersilk Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,338,225,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"11":150,"16":150,"22":692},"isBase":true}}}, +{"id":226183,"name":"Vicious Hide Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[225,0,338,0,0,0,0,0,0,0,0,150,0,0,0,0,150,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"11":150,"16":150,"22":692},"isBase":true}}}, +{"id":226184,"name":"Vicious Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,338,225,150,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"4":150,"16":150},"isBase":true}}}, +{"id":226185,"name":"Vicious Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,225,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"6":150,"16":150},"isBase":true}}}, +{"id":226186,"name":"Vicious Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[225,0,338,0,0,0,150,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"6":150,"16":150},"isBase":true}}}, +{"id":226187,"name":"Vicious Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[225,0,338,0,0,0,0,0,150,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"0":225,"2":338,"8":150,"16":150},"isBase":true}}}, +{"id":226188,"name":"Vicious Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,338,225,0,0,0,150,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"2":338,"3":225,"7":150,"16":150},"isBase":true}}}, +{"id":226189,"name":"Vicious Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,225,338,0,0,0,0,0,150,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":428,"ilvl":377,"phase":1,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"377":{"randPropPoints":428,"stats":{"1":225,"2":338,"8":150,"16":150},"isBase":true}}}, +{"id":238334,"name":"Heartbreak Charm","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,341,227,0,0,147,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"6":147,"7":154},"isBase":true}}}, +{"id":238335,"name":"Winking Eye of Love","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,341,227,147,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"2":341,"3":227,"4":147,"6":154},"isBase":true}}}, +{"id":238336,"name":"Sweet Perfume Broach","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,227,341,0,0,0,147,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"1":227,"2":341,"6":147,"7":154},"isBase":true}}}, +{"id":238337,"name":"Choker of the Pure Heart","icon":"inv_jewelry_necklace_45","type":2,"stats":[227,0,341,0,0,154,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"5":154,"6":147},"isBase":true}}}, +{"id":238338,"name":"Shard of Pirouetting Happiness","icon":"inv_jewelry_necklace_02","type":2,"stats":[227,0,341,0,0,115,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":432,"ilvl":378,"phase":1,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"378":{"randPropPoints":432,"stats":{"0":227,"2":341,"5":115,"9":173},"isBase":true}}} ], "randomSuffixes":[ +{"id":-488,"name":"of the Earthfall","stats":[0,0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-487,"name":"of the Earthshaker","stats":[0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-486,"name":"of the Rockslab","stats":[0,0,0,0,0,0,0,0,0,3159,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-485,"name":"of the Bouldercrag","stats":[0,0,0,0,0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-484,"name":"of the Bedrock","stats":[0,0,0,0,0,0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-483,"name":"of the Mountainbed","stats":[0,0,0,0,0,0,0,0,3159,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-482,"name":"of the Faultline","stats":[0,0,0,0,0,0,0,3159,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-481,"name":"of the Earthbreaker","stats":[0,0,0,0,0,0,3159,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-480,"name":"of the Wavecrest","stats":[0,0,0,0,3159,0,0,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-479,"name":"of the Undertow","stats":[0,0,0,0,3159,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-478,"name":"of the Feverflare","stats":[0,0,0,0,0,0,0,3159,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-477,"name":"of the Fireflash","stats":[0,0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-476,"name":"of the Flameblaze","stats":[0,0,0,0,0,3159,0,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-475,"name":"of the Wildfire","stats":[0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-474,"name":"of the Zephyr","stats":[0,0,0,0,0,0,0,3159,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-473,"name":"of the Windstorm","stats":[0,0,0,0,0,0,3159,0,0,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-472,"name":"of the Windflurry","stats":[0,0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-471,"name":"of the Galeburst","stats":[0,0,0,0,0,3159,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-470,"name":"of the Stormblast","stats":[0,0,0,0,0,3159,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-469,"name":"of the Landslide","stats":[0,0,0,0,0,3159,0,0,3159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-468,"name":"of the Pious","stats":[0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-467,"name":"of the Untouchable","stats":[0,0,0,0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-466,"name":"of the Bladewall","stats":[0,0,0,0,0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-465,"name":"of the Impatient","stats":[0,0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-464,"name":"of the Savant","stats":[0,0,0,0,0,0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-463,"name":"of the Adroit","stats":[0,0,0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-462,"name":"of the Unerring","stats":[0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-461,"name":"of the Decimator","stats":[0,0,0,0,0,0,4859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-460,"name":"of the Earthfall","stats":[0,0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-459,"name":"of the Earthshaker","stats":[0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-458,"name":"of the Rockslab","stats":[0,0,0,0,0,0,0,0,0,2788,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-457,"name":"of the Bouldercrag","stats":[0,0,0,0,0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-456,"name":"of the Bedrock","stats":[0,0,0,0,0,0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-455,"name":"of the Mountainbed","stats":[0,0,0,0,0,0,0,0,2788,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-454,"name":"of the Faultline","stats":[0,0,0,0,0,0,0,2788,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-453,"name":"of the Earthbreaker","stats":[0,0,0,0,0,0,2788,0,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-452,"name":"of the Wavecrest","stats":[0,0,0,0,2788,0,0,0,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-451,"name":"of the Undertow","stats":[0,0,0,0,2788,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-450,"name":"of the Feverflare","stats":[0,0,0,0,0,0,0,2788,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-449,"name":"of the Fireflash","stats":[0,0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-448,"name":"of the Flameblaze","stats":[0,0,0,0,0,2788,0,0,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-447,"name":"of the Wildfire","stats":[0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-446,"name":"of the Zephyr","stats":[0,0,0,0,0,0,0,2788,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-445,"name":"of the Windstorm","stats":[0,0,0,0,0,0,2788,0,0,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-444,"name":"of the Windflurry","stats":[0,0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-443,"name":"of the Galeburst","stats":[0,0,0,0,0,2788,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-442,"name":"of the Stormblast","stats":[0,0,0,0,0,2788,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-441,"name":"of the Landslide","stats":[0,0,0,0,0,2788,0,0,2788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-440,"name":"of the Pious","stats":[0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-439,"name":"of the Untouchable","stats":[0,0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-438,"name":"of the Bladewall","stats":[0,0,0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-437,"name":"of the Impatient","stats":[0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-436,"name":"of the Savant","stats":[0,0,0,0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-435,"name":"of the Adroit","stats":[0,0,0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-434,"name":"of the Unerring","stats":[0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-433,"name":"of the Decimator","stats":[0,0,0,0,0,0,4480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-432,"name":"of the Earthfall","stats":[0,0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-431,"name":"of the Earthshaker","stats":[0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-430,"name":"of the Rockslab","stats":[0,0,0,0,0,0,0,0,0,3268,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-429,"name":"of the Bouldercrag","stats":[0,0,0,0,0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-428,"name":"of the Bedrock","stats":[0,0,0,0,0,0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-427,"name":"of the Mountainbed","stats":[0,0,0,0,0,0,0,0,3268,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-426,"name":"of the Faultline","stats":[0,0,0,0,0,0,0,3268,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-425,"name":"of the Earthbreaker","stats":[0,0,0,0,0,0,3268,0,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-424,"name":"of the Wavecrest","stats":[0,0,0,0,3268,0,0,0,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-423,"name":"of the Undertow","stats":[0,0,0,0,3268,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-422,"name":"of the Feverflare","stats":[0,0,0,0,0,0,0,3268,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-421,"name":"of the Fireflash","stats":[0,0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-420,"name":"of the Flameblaze","stats":[0,0,0,0,0,3268,0,0,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-419,"name":"of the Wildfire","stats":[0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-418,"name":"of the Zephyr","stats":[0,0,0,0,0,0,0,3268,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-417,"name":"of the Windstorm","stats":[0,0,0,0,0,0,3268,0,0,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-416,"name":"of the Windflurry","stats":[0,0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-415,"name":"of the Galeburst","stats":[0,0,0,0,0,3268,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-414,"name":"of the Stormblast","stats":[0,0,0,0,0,3268,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-413,"name":"of the Landslide","stats":[0,0,0,0,0,3268,0,0,3268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-412,"name":"of the Pious","stats":[0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-411,"name":"of the Untouchable","stats":[0,0,0,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-410,"name":"of the Bladewall","stats":[0,0,0,0,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-409,"name":"of the Impatient","stats":[0,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-408,"name":"of the Savant","stats":[0,0,0,0,0,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-407,"name":"of the Adroit","stats":[0,0,0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-406,"name":"of the Unerring","stats":[0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-405,"name":"of the Decimator","stats":[0,0,0,0,0,0,4960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-404,"name":"of the Earthfall","stats":[0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-403,"name":"of the Earthshaker","stats":[0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-402,"name":"of the Rockslab","stats":[0,0,0,0,0,0,0,0,0,2990,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-401,"name":"of the Bouldercrag","stats":[0,0,0,0,0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-400,"name":"of the Bedrock","stats":[0,0,0,0,0,0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-399,"name":"of the Mountainbed","stats":[0,0,0,0,0,0,0,0,2990,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-398,"name":"of the Faultline","stats":[0,0,0,0,0,0,0,2990,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-397,"name":"of the Earthbreaker","stats":[0,0,0,0,0,0,2990,0,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-396,"name":"of the Wavecrest","stats":[0,0,0,0,2990,0,0,0,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-395,"name":"of the Undertow","stats":[0,0,0,0,2990,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-394,"name":"of the Feverflare","stats":[0,0,0,0,0,0,0,2990,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-393,"name":"of the Fireflash","stats":[0,0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-392,"name":"of the Flameblaze","stats":[0,0,0,0,0,2990,0,0,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-391,"name":"of the Wildfire","stats":[0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-390,"name":"of the Zephyr","stats":[0,0,0,0,0,0,0,2990,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-389,"name":"of the Windstorm","stats":[0,0,0,0,0,0,2990,0,0,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-388,"name":"of the Windflurry","stats":[0,0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-387,"name":"of the Galeburst","stats":[0,0,0,0,0,2990,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-386,"name":"of the Stormblast","stats":[0,0,0,0,0,2990,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-385,"name":"of the Landslide","stats":[0,0,0,0,0,2990,0,0,2990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-384,"name":"of the Pious","stats":[0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-383,"name":"of the Untouchable","stats":[0,0,0,0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-382,"name":"of the Bladewall","stats":[0,0,0,0,0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-381,"name":"of the Impatient","stats":[0,0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-380,"name":"of the Savant","stats":[0,0,0,0,0,0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-379,"name":"of the Adroit","stats":[0,0,0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-378,"name":"of the Unerring","stats":[0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-377,"name":"of the Decimator","stats":[0,0,0,0,0,0,4170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-371,"name":"of the Earthfall","stats":[0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-370,"name":"of the Earthshaker","stats":[0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-369,"name":"of the Rockslab","stats":[0,0,0,0,0,0,0,0,0,3506,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-368,"name":"of the Bouldercrag","stats":[0,0,0,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-367,"name":"of the Bedrock","stats":[0,0,0,0,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-366,"name":"of the Mountainbed","stats":[0,0,0,0,0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-365,"name":"of the Faultline","stats":[0,0,0,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-364,"name":"of the Earthbreaker","stats":[0,0,0,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-363,"name":"of the Wavecrest","stats":[0,0,0,0,3506,0,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-362,"name":"of the Undertow","stats":[0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-361,"name":"of the Feverflare","stats":[0,0,0,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-360,"name":"of the Fireflash","stats":[0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-359,"name":"of the Flameblaze","stats":[0,0,0,0,0,3506,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-358,"name":"of the Wildfire","stats":[0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-357,"name":"of the Zephyr","stats":[0,0,0,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-356,"name":"of the Windstorm","stats":[0,0,0,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-355,"name":"of the Windflurry","stats":[0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-354,"name":"of the Galeburst","stats":[0,0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-353,"name":"of the Stormblast","stats":[0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-352,"name":"of the Landslide","stats":[0,0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-351,"name":"of the Pious","stats":[0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-350,"name":"of the Untouchable","stats":[0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-349,"name":"of the Bladewall","stats":[0,0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-348,"name":"of the Impatient","stats":[0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-347,"name":"of the Savant","stats":[0,0,0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-346,"name":"of the Adroit","stats":[0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-345,"name":"of the Unerring","stats":[0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-344,"name":"of the Decimator","stats":[0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-343,"stats":[0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-342,"stats":[0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-341,"stats":[0,0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-340,"stats":[0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-339,"stats":[0,0,0,0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-338,"stats":[0,0,0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-337,"stats":[0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-336,"stats":[0,0,0,0,0,0,5200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-333,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-332,"name":"of Sorcery","stats":[0,0,5259,5259,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-331,"name":"of Striking","stats":[0,0,5259,0,0,5259,0,0,0,0,0,0,10518,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-330,"name":"of Restoration","stats":[0,0,5259,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-329,"name":"of Shadow Resistance","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0]}, +{"id":-328,"name":"of Nature Resistance","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0]}, +{"id":-327,"name":"of Frost Resistance","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0]}, +{"id":-326,"name":"of Fire Resistance","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0]}, +{"id":-325,"name":"of Dodge","stats":[0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-324,"name":"of Arcane Resistance","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0]}, +{"id":-321,"name":"of Shadow Protection","stats":[0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0]}, +{"id":-320,"name":"of Frost Protection","stats":[0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0]}, +{"id":-319,"name":"of Fire Protection","stats":[0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0]}, +{"id":-318,"name":"of Arcane Protection","stats":[0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0]}, +{"id":-317,"name":"of Nature Protection","stats":[0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0]}, +{"id":-316,"name":"TMP of Str/Parry","stats":[6666,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-315,"name":"TMP of Stam/Exp","stats":[0,0,6666,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-314,"name":"TMP of Agi/Exp","stats":[0,6666,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-313,"name":"TMP of Dodge/Parry","stats":[0,0,0,0,0,0,0,0,0,6666,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-312,"name":"TMP of Str/Exp","stats":[6666,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-311,"name":"TMP of Expertise","stats":[0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-310,"name":"TMP of Parry","stats":[0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-309,"name":"TMP of Stam/Haste","stats":[0,0,6666,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-308,"name":"TMP of Int/Haste","stats":[0,0,0,6666,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-307,"name":"TMP of Agi/Haste","stats":[0,6666,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-306,"name":"TMP of Str/Haste","stats":[6666,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-305,"name":"TMP of Str/Dodge","stats":[6666,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-304,"name":"TMP of Stam/Crit","stats":[0,0,6666,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-303,"name":"TMP of Agi/Crit","stats":[0,6666,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-302,"name":"TMP of Str/Crit","stats":[6666,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-301,"name":"TMP of Stam/Hit","stats":[0,0,6666,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-300,"name":"TMP of Int/Hit","stats":[0,0,0,6666,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-299,"name":"TMP of Agi/Hit","stats":[0,6666,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-298,"name":"TMP of Str/Hit","stats":[6666,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-297,"name":"TMP of Crit","stats":[0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-296,"name":"TMP of Hit","stats":[0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-295,"name":"of the Zephyr","stats":[0,4950,7889,0,0,0,0,3360,0,0,0,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-294,"name":"of the Windstorm","stats":[0,4950,7889,0,0,0,3360,0,0,0,0,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-293,"name":"of the Windflurry","stats":[0,4950,7889,0,0,0,3360,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, @@ -6586,6 +15378,8 @@ {"id":-282,"name":"of the Undertow","stats":[0,0,7889,4900,3340,0,0,3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-281,"name":"of the Feverflare","stats":[0,0,7889,4900,0,0,0,3340,0,0,0,3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-280,"name":"of the Fireflash","stats":[0,0,7889,4900,0,0,3340,3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-279,"name":"of the Flameblaze","stats":[0,0,7889,4900,0,3340,0,0,0,0,0,3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-278,"name":"of the Wildfire","stats":[0,0,7889,4900,0,3340,3340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-277,"name":"of the Rockslab","stats":[4950,0,7889,0,0,0,0,0,0,3360,0,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-276,"name":"of the Bouldercrag","stats":[4950,0,7889,0,0,0,0,0,0,3360,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-275,"name":"of the Bedrock","stats":[4950,0,7889,0,0,0,0,0,0,0,3360,3360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, @@ -6612,6 +15406,8 @@ {"id":-231,"name":"of the Undertow","stats":[0,0,7889,4890,3327,0,0,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-230,"name":"of the Feverflare","stats":[0,0,7889,4890,0,0,0,3327,0,0,0,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-229,"name":"of the Fireflash","stats":[0,0,7889,4890,0,0,3327,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-228,"name":"of the Flameblaze","stats":[0,0,7889,4890,0,3327,0,0,0,0,0,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-227,"name":"of the Wildfire","stats":[0,0,7889,4890,0,3327,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-226,"name":"of the Rockslab","stats":[4890,0,7889,0,0,0,0,0,0,3327,0,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-225,"name":"of the Bouldercrag","stats":[4890,0,7889,0,0,0,0,0,0,3327,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-224,"name":"of the Bedrock","stats":[4890,0,7889,0,0,0,0,0,0,0,3327,3327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, @@ -6627,6 +15423,8 @@ {"id":-214,"name":"of the Undertow","stats":[0,0,7889,4834,3320,0,0,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-213,"name":"of the Feverflare","stats":[0,0,7889,4834,0,0,0,3320,0,0,0,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-212,"name":"of the Fireflash","stats":[0,0,7889,4834,0,0,3320,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-211,"name":"of the Flameblaze","stats":[0,0,7889,4834,0,3320,0,0,0,0,0,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-210,"name":"of the Wildfire","stats":[0,0,7889,4834,0,3320,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-209,"name":"of the Rockslab","stats":[4834,0,7889,0,0,0,0,0,0,3320,0,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-208,"name":"of the Bouldercrag","stats":[4834,0,7889,0,0,0,0,0,0,3320,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-207,"name":"of the Bedrock","stats":[4834,0,7889,0,0,0,0,0,0,0,3320,3320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, @@ -6668,6 +15466,35 @@ {"id":-171,"name":"of the Earthfall","stats":[4638,0,7889,0,0,0,3205,3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-170,"name":"of the Earthshaker","stats":[4638,0,7889,0,0,3205,3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-169,"name":"of the Landslide","stats":[4638,0,7889,0,0,3205,0,0,3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-168,"name":"of Flames","stats":[0,0,0,0,0,3997,0,0,0,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-167,"name":"of Storms","stats":[0,0,0,0,0,3997,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-166,"name":"of the Mongoose","stats":[0,0,0,0,0,3997,0,0,0,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-165,"name":"of Flames","stats":[0,0,0,0,0,2664,0,0,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-164,"name":"of Storms","stats":[0,0,0,0,0,2664,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-163,"name":"of the Mongoose","stats":[0,0,0,0,0,2664,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-162,"name":"of Flames","stats":[0,0,0,0,0,3506,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-161,"name":"of Storms","stats":[0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-160,"name":"of the Mongoose","stats":[0,0,0,0,0,3506,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-159,"name":"of the Master","stats":[0,0,0,0,3997,0,0,0,0,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-158,"name":"of the Wind","stats":[0,0,0,0,3997,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-157,"name":"of the Panther","stats":[0,0,0,0,0,0,0,2664,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-156,"name":"of the Wraith","stats":[0,0,0,0,2664,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-155,"name":"of the Scorpion","stats":[0,0,0,0,0,0,2664,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-154,"name":"of the Shark","stats":[0,0,0,0,0,0,3997,0,0,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-153,"name":"of the Wraith","stats":[0,0,0,0,0,0,0,2664,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-152,"name":"of the Master","stats":[0,0,0,0,2664,0,0,0,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-151,"name":"of the Wind","stats":[0,0,0,0,2664,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-150,"name":"of the Panther","stats":[0,0,0,0,0,0,0,3997,0,0,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-149,"name":"of the Scorpion","stats":[0,0,0,0,0,0,3997,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-148,"name":"Crit/Spirit (40/60)","stats":[0,0,0,0,3997,0,2664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-147,"name":"of the Shark","stats":[0,0,0,0,0,0,2664,0,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-146,"name":"Crit/Mastery (40/60)","stats":[0,0,0,0,0,0,2664,0,0,0,0,3997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-145,"name":"of the Panther","stats":[0,0,0,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-144,"name":"of the Shark","stats":[0,0,0,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-143,"name":"of the Scorpion","stats":[0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-142,"name":"of the Master","stats":[0,0,0,0,3506,0,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-141,"name":"of the Wind","stats":[0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-140,"name":"of the Wraith","stats":[0,0,0,0,3506,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-139,"name":"of the Mercenary","stats":[5259,0,7889,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-138,"name":"of the Feverflare","stats":[0,0,7889,5259,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-137,"name":"of the Windstorm","stats":[0,5259,7889,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, @@ -6681,550 +15508,1391 @@ {"id":-129,"name":"of the Wildfire","stats":[0,0,7889,5259,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-128,"name":"of the Rockslab","stats":[5259,0,7889,0,0,0,0,0,0,3506,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-127,"name":"of the Bouldercrag","stats":[5259,0,7889,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-126,"name":"of the Substratum","stats":[5259,0,7889,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-125,"name":"of the Bedrock","stats":[5259,0,7889,0,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-124,"name":"of the Mountainbed","stats":[5259,0,7889,0,0,0,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-123,"name":"of the Earthbreaker","stats":[5259,0,7889,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-122,"name":"of the Earthfall","stats":[5259,0,7889,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-121,"name":"of the Landslide","stats":[5259,0,7889,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-120,"name":"of the Earthshaker","stats":[5259,0,7889,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-119,"name":"of the Ideal","stats":[0,5259,7889,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-118,"name":"of the Faultline","stats":[5259,0,7889,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-117,"name":"of the Incarnation","stats":[0,5259,7889,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-116,"name":"of the Manifestation","stats":[0,5259,7889,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-115,"name":"of the Archetype","stats":[0,5259,7889,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-114,"name":"of the Flameblaze","stats":[0,0,7889,5259,0,3506,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-113,"name":"of the Essence","stats":[0,0,7889,5259,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-112,"name":"of the Pattern","stats":[0,0,7889,5259,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-111,"name":"of the Paradigm","stats":[0,0,7889,5259,0,3506,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-110,"name":"of the Elements","stats":[0,0,7889,5259,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-109,"name":"of the Preserver","stats":[0,0,7889,5259,3506,0,0,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-108,"name":"of the Curator","stats":[5259,0,7889,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-107,"name":"of the Exemplar","stats":[5259,0,7889,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-106,"name":"of the Defender","stats":[5259,0,7889,0,0,0,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-105,"name":"of the Guardian","stats":[5259,0,7889,0,0,0,0,0,0,3506,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-104,"name":"of the Embodiment","stats":[5259,0,7889,0,0,0,0,3506,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-103,"name":"of the Avatar","stats":[5259,0,7889,0,0,0,3506,0,0,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-102,"name":"of the Hero","stats":[5259,0,7889,0,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-101,"name":"of the Sentinel","stats":[5259,0,7889,0,0,3506,0,0,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-100,"name":"of the Principle","stats":[5259,0,7889,0,0,3506,3506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-99,"name":"of Speed","stats":[0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-98,"stats":[0,0,0,0,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-97,"stats":[0,0,0,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-96,"stats":[0,0,13500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-95,"stats":[9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-94,"stats":[0,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-93,"name":"of Restoration","stats":[0,0,7889,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-92,"name":"of the Squire","stats":[5259,0,7889,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-91,"name":"of the Marksman","stats":[0,5259,7889,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-90,"name":"of the Necromancer","stats":[0,0,7889,5259,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-89,"name":"of the Thief","stats":[0,5259,7889,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-88,"name":"of the Foreseer","stats":[0,0,0,5259,0,0,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-87,"name":"of the Shadow","stats":[0,7266,3193,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-86,"name":"of the Soldier","stats":[5259,0,5259,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-85,"name":"of the Sorcerer","stats":[0,0,5259,5259,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-84,"name":"of Stamina","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-83,"name":"of the Sun","stats":[0,0,5259,5259,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-82,"name":"of the Vision","stats":[0,0,2129,7266,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-81,"name":"of the Whale","stats":[0,0,6666,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-80,"name":"of the Wild","stats":[0,5259,3506,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-79,"name":"of the Moon","stats":[0,0,3506,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-78,"name":"of the Monkey","stats":[0,6666,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-77,"name":"of the Knight","stats":[0,0,5259,0,0,0,0,0,6153,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-76,"name":"of the Grove","stats":[0,7266,3193,0,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-75,"name":"of the Champion","stats":[5259,0,5259,0,0,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-74,"name":"of the Beast","stats":[0,0,5259,0,0,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-73,"name":"of the Elder","stats":[0,0,5259,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-72,"name":"of the Battle","stats":[7266,0,4106,0,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-71,"name":"of the Bandit","stats":[0,5259,5259,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-70,"name":"of the Ancestor","stats":[7266,0,3193,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-69,"name":"of the Eagle","stats":[0,0,6666,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-68,"name":"of the Bear","stats":[6666,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-67,"name":"of the Seer","stats":[0,0,7889,5259,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-66,"name":"of the Knight","stats":[0,0,7889,0,0,0,0,0,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-65,"name":"of Magic","stats":[0,0,0,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-64,"name":"of Power","stats":[0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-63,"name":"of Agility","stats":[0,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-62,"name":"of Strength","stats":[5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-61,"name":"of Intellect","stats":[0,0,0,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-60,"name":"of the Wild","stats":[0,5259,5259,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-59,"name":"of the Moon","stats":[0,0,5259,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-58,"name":"of the Sun","stats":[0,0,5259,5259,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-57,"name":"of the Shadow","stats":[0,7266,4790,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-56,"name":"of the Battle","stats":[7266,0,6159,0,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-55,"name":"of the Nightmare","stats":[0,0,6159,7266,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-54,"name":"of the Ancestor","stats":[7266,0,4790,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-53,"name":"of the Vision","stats":[0,0,3193,7266,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-52,"name":"of the Crusade","stats":[7266,0,6159,0,0,0,0,0,0,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-51,"name":"of the Mind","stats":[0,0,0,7266,0,0,4106,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-50,"name":"of the Hunt","stats":[0,7266,0,0,0,0,4106,3193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-49,"name":"of the Grove","stats":[0,7266,4790,0,0,0,0,4106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-48,"name":"of Paladin Testing","stats":[3506,0,5234,0,0,0,0,0,0,0,0,0,0,0,4102,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-47,"name":"of Blocking","stats":[6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-45,"name":"of the Champion","stats":[5259,0,7889,0,0,0,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-44,"name":"of the Elder","stats":[0,0,7889,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-43,"name":"of the Soldier","stats":[5259,0,7889,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-42,"name":"of the Elder","stats":[0,0,7889,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-41,"name":"of the Beast","stats":[0,0,7889,0,0,5259,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-40,"name":"of the Bandit","stats":[0,5259,7889,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-39,"name":"of the Invoker","stats":[0,0,0,7889,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-38,"name":"of the Prophet","stats":[0,0,0,5259,5259,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-37,"name":"of the Seer","stats":[0,0,7889,5259,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-36,"name":"of the Sorcerer","stats":[0,0,7889,5259,0,0,0,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-35,"name":"of Shadow Protection","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0]}, +{"id":-34,"name":"of Nature Protection","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0]}, +{"id":-33,"name":"of Frost Protection","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0]}, +{"id":-32,"name":"of Fire Protection","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0]}, +{"id":-31,"name":"of Arcane Protection","stats":[0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0]}, +{"id":-30,"name":"of Spirit","stats":[0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-29,"name":"of Eluding","stats":[0,6666,0,0,0,0,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-28,"name":"of Stamina","stats":[0,0,15000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-27,"name":"of Nimbleness","stats":[0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-26,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-25,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-24,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-23,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-22,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-21,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-20,"name":"of Power","stats":[0,0,0,0,0,0,0,0,0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-19,"name":"of Intellect","stats":[0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-18,"name":"of Agility","stats":[0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-17,"name":"of Strength","stats":[10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-16,"name":"of Stamina","stats":[0,0,15000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-15,"name":"of Spirit","stats":[0,0,0,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-14,"name":"of the Tiger","stats":[0,6666,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-13,"name":"of the Wolf","stats":[0,6666,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-12,"name":"of the Boar","stats":[6666,0,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-11,"name":"of the Falcon","stats":[0,6666,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-10,"name":"of the Gorilla","stats":[6666,0,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, +{"id":-9,"name":"of the Owl","stats":[0,0,0,6666,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-8,"name":"of the Whale","stats":[0,0,10000,0,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-7,"name":"of the Bear","stats":[6666,0,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-6,"name":"of the Eagle","stats":[0,0,10000,6666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}, {"id":-5,"name":"of the Monkey","stats":[0,6666,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} ], "enchants":[ -{"effectId":983,"spellId":44500,"name":"Superior Agility","type":4,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":983,"spellId":44589,"name":"Superior Agility","type":10,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1075,"spellId":44528,"name":"Greater Fortitude","type":10,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1099,"spellId":60663,"name":"Major Agility","type":4,"stats":[0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1103,"spellId":44633,"name":"Exceptional Agility","type":13,"stats":[0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1119,"spellId":44555,"name":"Exceptional Intellect","type":6,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1128,"spellId":60653,"name":"Greater Intellect","type":13,"enchantType":2,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1147,"spellId":44593,"name":"Major Spirit","type":6,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1147,"spellId":44508,"name":"Greater Spirit","type":10,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1262,"itemId":37330,"spellId":44596,"name":"Superior Arcane Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1354,"itemId":37331,"spellId":44556,"name":"Superior Fire Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1400,"spellId":44494,"name":"Superior Nature Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0],"quality":1}, -{"effectId":1446,"spellId":44590,"name":"Superior Shadow Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0],"quality":1}, -{"effectId":1597,"itemId":44490,"spellId":60763,"name":"Greater Assault","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1600,"spellId":60616,"name":"Striking","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1603,"spellId":60668,"name":"Crusher","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1606,"spellId":60621,"name":"Greater Potency","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1951,"itemId":37347,"spellId":44591,"name":"Superior Dodge","type":4,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1952,"spellId":44489,"name":"Dodge","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1953,"spellId":47766,"name":"Greater Dodge","type":5,"stats":[0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2326,"spellId":44635,"name":"Greater Spellpower","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2332,"itemId":44498,"spellId":60767,"name":"Superior Spellpower","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":2381,"spellId":44509,"name":"Greater Mana Restoration","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10],"quality":1}, -{"effectId":2661,"spellId":44616,"name":"Greater Stats","type":6,"stats":[6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2988,"itemId":29487,"spellId":35419,"name":"Nature Armor Kit","type":5,"extraTypes":[9,7,10],"enchantType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],"quality":2}, -{"effectId":2998,"itemId":29187,"spellId":35441,"name":"Inscription of Endurance","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,0,0,0,0,0],"quality":2}, -{"effectId":3222,"spellId":44529,"name":"Major Agility","type":7,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3230,"spellId":44483,"name":"Superior Frost Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3231,"spellId":44598,"name":"Expertise","type":6,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3231,"spellId":44484,"name":"Expertise","type":7,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3232,"itemId":44491,"spellId":47901,"name":"Tuskarr's Vitality","type":10,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3233,"spellId":27958,"name":"Exceptional Mana","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0],"quality":1}, -{"effectId":3234,"spellId":44488,"name":"Precision","type":7,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3236,"spellId":44492,"name":"Mighty Health","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0],"quality":1}, -{"effectId":3238,"spellId":44506,"name":"Gatherer","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3239,"itemId":37344,"spellId":44524,"name":"Icebreaker","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3241,"itemId":44494,"spellId":44576,"name":"Lifeward","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3243,"spellId":44582,"name":"Spell Piercing","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3244,"spellId":44584,"name":"Greater Vitality","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7],"quality":1}, -{"effectId":3245,"itemId":37340,"spellId":44588,"name":"Exceptional Resilience","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3246,"spellId":44592,"name":"Exceptional Spellpower","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3247,"itemId":44473,"spellId":44595,"name":"Scourgebane","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3251,"itemId":37339,"spellId":44621,"name":"Giant Slayer","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3252,"spellId":44623,"name":"Super Stats","type":5,"stats":[8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3253,"itemId":44485,"spellId":44625,"name":"Armsman","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3256,"itemId":37349,"spellId":44631,"name":"Shadow Armor","type":4,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3260,"spellId":44769,"name":"Glove Reinforcements","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0],"quality":2}, -{"effectId":3294,"itemId":44471,"spellId":47672,"name":"Mighty Armor","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0],"quality":2}, -{"effectId":3296,"itemId":44488,"spellId":47899,"name":"Wisdom","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3297,"spellId":47900,"name":"Super Health","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0],"quality":1}, -{"effectId":3325,"itemId":38371,"spellId":50901,"name":"Jormungar Leg Armor","type":9,"stats":[0,15,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3326,"itemId":38372,"spellId":50902,"name":"Nerubian Leg Armor","type":9,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3327,"spellId":60583,"name":"Jormungar Leg Reinforcements","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3328,"spellId":60584,"name":"Nerubian Leg Reinforcements","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3329,"itemId":38375,"spellId":50906,"name":"Borean Armor Kit","type":1,"extraTypes":[5,3,9,7,10],"enchantType":3,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3330,"itemId":38376,"spellId":50909,"name":"Heavy Borean Armor Kit","type":1,"extraTypes":[5,3,9,7,10],"enchantType":3,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3365,"spellId":53323,"name":"Rune of Swordshattering","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3366,"spellId":53331,"name":"Rune of Lichbane","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3367,"spellId":53342,"name":"Rune of Spellshattering","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3368,"spellId":53344,"name":"Rune of the Fallen Crusader","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3369,"spellId":53341,"name":"Rune of Cinderglacier","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3370,"spellId":53343,"name":"Rune of Razorice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3594,"spellId":54446,"name":"Rune of Swordbreaking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3595,"spellId":54447,"name":"Rune of Spellbreaking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3607,"itemId":41146,"spellId":55076,"name":"Sun Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3608,"itemId":41167,"spellId":55135,"name":"Heartseeker Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3718,"itemId":41601,"spellId":55630,"name":"Shining Spellthread","type":9,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3719,"itemId":41602,"spellId":55631,"name":"Brilliant Spellthread","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3720,"itemId":41603,"spellId":55632,"name":"Azure Spellthread","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3721,"itemId":41604,"spellId":55634,"name":"Sapphire Spellthread","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3722,"spellId":55642,"name":"Lightweave Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3728,"spellId":55769,"name":"Darkglow Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3730,"spellId":55777,"name":"Swordguard Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3731,"itemId":41976,"spellId":55836,"name":"Titanium Weapon Chain","type":13,"stats":[0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3748,"itemId":42500,"spellId":56353,"name":"Titanium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3756,"spellId":57683,"name":"Fur Lining - Attack Power","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3757,"spellId":57690,"name":"Fur Lining - Stamina","type":6,"stats":[0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3758,"spellId":57691,"name":"Fur Lining - Spell Power","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3759,"spellId":57692,"name":"Fur Lining - Fire Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3760,"spellId":57694,"name":"Fur Lining - Frost Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3761,"spellId":57696,"name":"Fur Lining - Shadow Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3762,"spellId":57699,"name":"Fur Lining - Nature Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3763,"spellId":57701,"name":"Fur Lining - Arcane Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3788,"itemId":44496,"spellId":59619,"name":"Accuracy","type":13,"stats":[0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3789,"itemId":44492,"spellId":59621,"name":"Berserking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3790,"itemId":44495,"spellId":59625,"name":"Black Magic","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3791,"spellId":59636,"name":"Stamina","type":11,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3793,"itemId":44067,"spellId":59771,"name":"Inscription of Triumph","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3794,"itemId":44068,"spellId":59773,"name":"Inscription of Dominance","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3795,"itemId":44069,"spellId":59777,"name":"Arcanum of Triumph","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3796,"itemId":44075,"spellId":59784,"name":"Arcanum of Dominance","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3806,"itemId":44129,"spellId":59927,"name":"Lesser Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3807,"itemId":44130,"spellId":59928,"name":"Lesser Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,5],"quality":3}, -{"effectId":3808,"itemId":44871,"spellId":59934,"name":"Greater Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3809,"itemId":44872,"spellId":59936,"name":"Greater Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,8],"quality":4}, -{"effectId":3810,"itemId":44874,"spellId":59937,"name":"Greater Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3811,"itemId":44873,"spellId":59941,"name":"Greater Inscription of the Pinnacle","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3812,"itemId":44137,"spellId":59944,"name":"Arcanum of the Frosty Soul","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3813,"itemId":44138,"spellId":59945,"name":"Arcanum of Toxic Warding","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0],"quality":3}, -{"effectId":3814,"itemId":44139,"spellId":59946,"name":"Arcanum of the Fleeing Shadow","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0],"quality":3}, -{"effectId":3815,"itemId":44140,"spellId":59947,"name":"Arcanum of the Eclipsed Moon","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3816,"itemId":44141,"spellId":59948,"name":"Arcanum of the Flame's Soul","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3817,"itemId":44879,"spellId":59954,"name":"Arcanum of Torment","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3818,"itemId":44878,"spellId":59955,"name":"Arcanum of the Stalwart Protector","type":1,"stats":[0,0,37,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3819,"itemId":44876,"spellId":59960,"name":"Arcanum of Blissful Mending","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,10],"quality":3}, -{"effectId":3820,"itemId":44877,"spellId":59970,"name":"Arcanum of Burning Mysteries","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3822,"itemId":38373,"spellId":60581,"name":"Frosthide Leg Armor","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3823,"itemId":38374,"spellId":60582,"name":"Icescale Leg Armor","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3824,"spellId":60606,"name":"Assault","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3825,"spellId":60609,"name":"Speed","type":4,"stats":[0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3826,"spellId":60623,"name":"Icewalker","type":10,"stats":[0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3827,"itemId":44483,"spellId":60691,"name":"Massacre","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3828,"spellId":44630,"name":"Greater Savagery","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3829,"spellId":44513,"name":"Greater Assult","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3830,"spellId":44629,"name":"Exceptional Spellpower","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3831,"itemId":44472,"spellId":47898,"name":"Greater Speed","type":4,"stats":[0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3832,"itemId":44489,"spellId":60692,"name":"Powerful Stats","type":5,"stats":[10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3833,"itemId":44486,"spellId":60707,"name":"Superior Potency","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3834,"itemId":44487,"spellId":60714,"name":"Mighty Spellpower","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3835,"spellId":61117,"name":"Master's Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3836,"spellId":61118,"name":"Master's Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,8],"quality":1,"requiredProfession":6}, -{"effectId":3837,"spellId":61119,"name":"Master's Inscription of the Pinnacle","type":3,"stats":[0,0,0,0,0,0,0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3838,"spellId":61120,"name":"Master's Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3839,"spellId":44645,"name":"Assault","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3840,"spellId":44636,"name":"Greater Spellpower","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3842,"itemId":44875,"spellId":61271,"name":"Arcanum of the Savage Gladiator","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3843,"itemId":44739,"spellId":61468,"name":"Diamond-cut Refractor Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3844,"spellId":44510,"name":"Exceptional Spirit","type":13,"stats":[0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3845,"itemId":44484,"spellId":44575,"name":"Greater Assault","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3847,"spellId":62158,"name":"Rune of the Stoneskin Gargoyle","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3849,"itemId":44936,"spellId":62201,"name":"Titanium Plating","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3850,"itemId":44944,"spellId":62256,"name":"Major Stamina","type":6,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3852,"itemId":44957,"spellId":62384,"name":"Greater Inscription of the Gladiator","type":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3853,"itemId":44963,"spellId":62447,"name":"Earthen Leg Armor","type":9,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3854,"itemId":45059,"spellId":62948,"name":"Staff - Greater Spellpower","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3870,"itemId":46348,"spellId":64579,"name":"Blood Draining","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3872,"spellId":56039,"name":"Sanctified Spellthread","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3873,"spellId":56034,"name":"Master's Spellthread","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3875,"itemId":44131,"spellId":59929,"name":"Lesser Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3876,"itemId":44132,"spellId":59932,"name":"Lesser Inscription of the Pinnacle","type":3,"stats":[0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3883,"spellId":70164,"name":"Rune of the Nerubian Carapace","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":4061,"spellId":74132,"name":"Enchant Gloves - Mastery","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4062,"spellId":74189,"name":"Enchant Boots - Earthen Vitality","type":10,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4063,"spellId":74191,"name":"Enchant Chest - Mighty Stats","type":5,"stats":[15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4064,"spellId":74192,"name":"Enchant Cloak - Greater Spell Piercing","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4065,"spellId":74193,"name":"Enchant Bracer - Speed","type":6,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4066,"spellId":74195,"name":"Enchant Weapon - Mending","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4067,"spellId":74197,"name":"Enchant Weapon - Avalanche","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4068,"spellId":74198,"name":"Enchant Gloves - Haste","type":7,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4069,"spellId":74199,"name":"Enchant Boots - Haste","type":10,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4070,"spellId":74200,"name":"Enchant Chest - Stamina","type":5,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4071,"spellId":74201,"name":"Enchant Bracer - Critical Strike","type":6,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4072,"spellId":74202,"name":"Enchant Cloak - Intellect","type":4,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4073,"spellId":74207,"name":"Enchant Shield - Protection","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"quality":1}, -{"effectId":4074,"spellId":74211,"name":"Enchant Weapon - Elemental Slayer","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4075,"spellId":74212,"name":"Enchant Gloves - Exceptional Strength","type":7,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4076,"spellId":74213,"name":"Enchant Boots - Major Agility","type":10,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4077,"spellId":74214,"name":"Enchant Chest - Mighty Resilience","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4078,"spellId":74215,"name":"Enchant Ring - Strength","type":11,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4079,"spellId":74216,"name":"Enchant Ring - Agility","type":11,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4080,"spellId":74217,"name":"Enchant Ring - Intellect","type":11,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4081,"spellId":74218,"name":"Enchant Ring - Greater Stamina","type":11,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4082,"spellId":74220,"name":"Enchant Gloves - Greater Expertise","type":7,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4083,"spellId":74223,"name":"Enchant Weapon - Hurricane","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4084,"spellId":74225,"name":"Enchant Weapon - Heartsong","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4085,"spellId":74226,"name":"Enchant Shield - Mastery","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4086,"spellId":74229,"name":"Enchant Bracer - Superior Dodge","type":6,"stats":[0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4087,"spellId":74230,"name":"Enchant Cloak - Critical Strike","type":4,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4088,"spellId":74231,"name":"Enchant Chest - Exceptional Spirit","type":5,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4089,"spellId":74232,"name":"Enchant Bracer - Precision","type":6,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4090,"spellId":74234,"name":"Enchant Cloak - Protection","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0],"quality":1}, -{"effectId":4091,"spellId":74235,"name":"Enchant Off-Hand - Superior Intellect","type":13,"enchantType":5,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4092,"spellId":74236,"name":"Enchant Boots - Precision","type":10,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4093,"spellId":74237,"name":"Enchant Bracer - Exceptional Spirit","type":6,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4094,"spellId":74238,"name":"Enchant Boots - Mastery","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4095,"spellId":74239,"name":"Enchant Bracer - Greater Expertise","type":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4096,"spellId":74240,"name":"Enchant Cloak - Greater Intellect","type":4,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4097,"spellId":74242,"name":"Enchant Weapon - Power Torrent","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4098,"spellId":74244,"name":"Enchant Weapon - Windwalk","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4099,"spellId":74246,"name":"Enchant Weapon - Landslide","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4100,"spellId":74247,"name":"Enchant Cloak - Greater Critical Strike","type":4,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4101,"spellId":74248,"name":"Enchant Bracer - Greater Critical Strike","type":6,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4102,"spellId":74250,"name":"Enchant Chest - Peerless Stats","type":5,"stats":[20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4103,"spellId":74251,"name":"Enchant Chest - Greater Stamina","type":5,"stats":[0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4104,"spellId":74253,"name":"Enchant Boots - Lavawalker","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4105,"spellId":74252,"name":"Enchant Boots - Assassin's Step","type":10,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4106,"spellId":74254,"name":"Enchant Gloves - Mighty Strength","type":7,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4107,"spellId":74255,"name":"Enchant Gloves - Greater Mastery","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4108,"spellId":74256,"name":"Enchant Bracer - Greater Speed","type":6,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4109,"itemId":54449,"spellId":75149,"name":"Ghostly Spellthread","type":9,"stats":[0,0,0,55,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4110,"itemId":54450,"spellId":75150,"name":"Powerful Ghostly Spellthread","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4111,"itemId":54447,"spellId":75151,"name":"Enchanted Spellthread","type":9,"stats":[0,0,65,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4112,"itemId":54448,"spellId":75152,"name":"Powerful Enchanted Spellthread","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4113,"spellId":75154,"name":"Master's Spellthread","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4114,"spellId":75155,"name":"Sanctified Spellthread","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4115,"spellId":75172,"name":"Lightweave Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4116,"spellId":75175,"name":"Darkglow Embroidery","type":4,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4118,"spellId":75178,"name":"Swordguard Embroidery","type":4,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4120,"itemId":56477,"spellId":78165,"name":"Savage Armor Kit","type":1,"extraTypes":[3,5,9,10,7],"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4121,"itemId":56517,"spellId":78166,"name":"Heavy Savage Armor Kit","type":1,"extraTypes":[3,5,9,10,7],"stats":[0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4122,"itemId":56502,"spellId":78169,"name":"Scorched Leg Armor","type":9,"stats":[0,0,0,0,0,0,45,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4124,"itemId":56503,"spellId":78170,"name":"Twilight Leg Armor","type":9,"stats":[0,45,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4126,"itemId":56550,"spellId":78171,"name":"Dragonscale Leg Armor","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4127,"itemId":56551,"spellId":78172,"name":"Charscale Leg Armor","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4175,"itemId":59594,"spellId":81932,"name":"Gnomish X-Ray Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4176,"itemId":59595,"spellId":81933,"name":"R19 Threatfinder","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4177,"itemId":59596,"spellId":81934,"name":"Safety Catch Removal Kit","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4189,"spellId":85007,"name":"Draconic Embossment - Stamina","type":6,"stats":[0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4190,"spellId":85008,"name":"Draconic Embossment - Agility","type":6,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4191,"spellId":85009,"name":"Draconic Embossment - Strength","type":6,"stats":[130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4192,"spellId":85010,"name":"Draconic Embossment - Intellect","type":6,"stats":[0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4193,"spellId":86375,"name":"Swiftsteel Inscription","type":3,"stats":[0,130,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4194,"spellId":86401,"name":"Lionsmane Inscription","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4195,"spellId":86402,"name":"Inscription of the Earth Prince","type":3,"stats":[0,0,195,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4196,"spellId":86403,"name":"Felfire Inscription","type":3,"stats":[0,0,0,130,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4197,"itemId":62321,"spellId":86847,"name":"Inscription of Unbreakable Quartz","type":3,"stats":[0,0,45,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4198,"itemId":68717,"spellId":86854,"name":"Greater Inscription of Unbreakable Quartz","type":3,"stats":[0,0,75,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4199,"itemId":62342,"spellId":86898,"name":"Inscription of Charged Lodestone","type":3,"stats":[0,0,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4200,"itemId":68715,"spellId":86899,"name":"Greater Inscription of Charged Lodestone","type":3,"stats":[0,0,0,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4201,"itemId":62344,"spellId":86900,"name":"Inscription of Jagged Stone","type":3,"stats":[30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4202,"itemId":68716,"spellId":86901,"name":"Greater Inscription of Jagged Stone","type":3,"stats":[50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4203,"spellId":86906,"name":"Inscription of Shattered Crystal","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4204,"itemId":68714,"spellId":86907,"name":"Greater Inscription of Shattered Crystal","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4205,"itemId":62347,"spellId":86909,"name":"Inscription of Shattered Crystal","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4206,"itemId":68764,"spellId":86931,"name":"Arcanum of the Earthern Ring","type":1,"stats":[0,0,90,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4207,"itemId":68765,"spellId":86932,"name":"Arcanum of Hyjal","type":1,"stats":[0,0,0,60,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4208,"itemId":68767,"spellId":86933,"name":"Arcanum of the Highlands","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4209,"itemId":68766,"spellId":86934,"name":"Arcanum of Ramkahen","type":1,"stats":[0,60,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4215,"itemId":55055,"spellId":92433,"name":"Elementium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4216,"itemId":55056,"spellId":92437,"name":"Pyrium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4217,"itemId":55057,"spellId":93448,"name":"Pyrium Weapon Chain","type":13,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4227,"spellId":95471,"name":"Enchant 2H Weapon - Mighty Agility","type":13,"enchantType":1,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4245,"itemId":68770,"spellId":96245,"name":"Arcanum of Vicious Intellect","type":1,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4246,"itemId":68769,"spellId":96246,"name":"Arcanum of Vicious Agility","type":1,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4247,"itemId":68768,"spellId":96247,"name":"Arcanum of Vicious Strength","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4248,"itemId":68772,"spellId":96249,"name":"Greater Inscription of Vicious Intellect","type":3,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4249,"itemId":68773,"spellId":96250,"name":"Greater Inscription of Vicious Strength","type":3,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4250,"itemId":68815,"spellId":96251,"name":"Greater Inscription of Vicious Agility","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4256,"spellId":96261,"name":"Enchant Bracer - Major Strength","type":6,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4257,"spellId":96262,"name":"Enchant Bracer - Mighty Intellect","type":6,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4258,"spellId":96264,"name":"Enchant Bracer - Agility","type":6,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4267,"itemId":70139,"spellId":99623,"name":"Flintlocke's Woodchucker","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"classAllowlist":[2]}, -{"effectId":4270,"itemId":71720,"spellId":101598,"name":"Drakehide Leg Armor","type":9,"stats":[0,0,145,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4439,"spellId":85068,"name":"Charscale Leg Reinforcements","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4440,"spellId":85067,"name":"Dragonbone Leg Reinforcements","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8} +{"effectId":15,"itemId":2304,"spellId":2831,"name":"Light Armor Kit","icon":"inv_misc_armorkit_17","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],"quality":1}, +{"effectId":16,"itemId":2313,"spellId":2832,"name":"Medium Armor Kit","icon":"inv_misc_armorkit_15","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0],"quality":1}, +{"effectId":17,"itemId":4265,"spellId":2833,"name":"Heavy Armor Kit","icon":"inv_misc_armorkit_16","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"quality":1}, +{"effectId":18,"itemId":8173,"spellId":10344,"name":"Thick Armor Kit","icon":"inv_misc_armorkit_07","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0],"quality":1}, +{"effectId":24,"itemId":6342,"spellId":7443,"name":"Enchant Chest - Minor Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0],"quality":2}, +{"effectId":30,"itemId":4405,"spellId":3974,"name":"Crude Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":32,"itemId":4406,"spellId":3975,"name":"Standard Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":33,"itemId":4407,"spellId":3976,"name":"Accurate Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":34,"itemId":6043,"spellId":7218,"name":"Weapon Counterweight","icon":"inv_misc_orb_01","type":13,"stats":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":36,"itemId":5421,"spellId":6296,"name":"Enchant: Fiery Blaze","icon":"inv_jewelry_talisman_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":37,"itemId":6041,"spellId":7220,"name":"Weapon Chain","icon":"spell_frost_chainsofice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":41,"itemId":38766,"spellId":7420,"name":"Enchant Chest - Minor Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0],"quality":1}, +{"effectId":43,"itemId":6042,"spellId":7216,"name":"Iron Shield Spike","icon":"inv_misc_armorkit_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":44,"itemId":38767,"spellId":7426,"name":"Enchant Chest - Minor Absorption","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":63,"itemId":38798,"spellId":13538,"name":"Enchant Chest - Lesser Absorption","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":66,"itemId":6376,"spellId":7863,"name":"Enchant Boots - Minor Stamina","icon":"inv_misc_note_01","type":10,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":241,"itemId":38794,"spellId":13503,"name":"Enchant Weapon - Lesser Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":242,"itemId":38773,"spellId":7748,"name":"Enchant Chest - Lesser Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0],"quality":1}, +{"effectId":243,"itemId":6344,"spellId":7766,"name":"Enchant Bracer - Minor Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":246,"itemId":6346,"spellId":7776,"name":"Enchant Chest - Lesser Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0],"quality":2}, +{"effectId":247,"itemId":6377,"spellId":7867,"name":"Enchant Boots - Minor Agility","icon":"inv_misc_note_01","type":10,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":248,"itemId":6347,"spellId":7782,"name":"Enchant Bracer - Minor Strength","icon":"inv_misc_note_01","type":6,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":249,"itemId":6348,"spellId":7786,"name":"Enchant Weapon - Minor Beastslayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":250,"itemId":38780,"spellId":7788,"name":"Enchant Weapon - Minor Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":254,"itemId":38782,"spellId":7857,"name":"Enchant Chest - Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0],"quality":1}, +{"effectId":255,"itemId":11038,"spellId":13380,"name":"Enchant 2H Weapon - Lesser Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":369,"itemId":35423,"spellId":34001,"name":"Enchant Bracer - Major Intellect","icon":"inv_bracer_09","type":6,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":463,"itemId":7967,"spellId":9781,"name":"Mithril Shield Spike","icon":"inv_misc_armorkit_02","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":464,"itemId":7969,"spellId":9783,"name":"Mithril Spurs","icon":"ability_rogue_sprint","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":663,"itemId":10546,"spellId":12459,"name":"Deadly Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":664,"itemId":10548,"spellId":12460,"name":"Sniper Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":723,"itemId":6349,"spellId":7793,"name":"Enchant 2H Weapon - Lesser Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":724,"itemId":38810,"spellId":13644,"name":"Enchant Boots - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":744,"itemId":38790,"spellId":13421,"name":"Enchant Cloak - Lesser Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0],"quality":1}, +{"effectId":783,"itemId":6345,"spellId":7771,"name":"Enchant Cloak - Minor Protection","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0],"quality":2}, +{"effectId":803,"itemId":11207,"spellId":13898,"name":"Enchant Weapon - Fiery Weapon","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":805,"itemId":38848,"spellId":13943,"name":"Enchant Weapon - Greater Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":823,"itemId":11101,"spellId":13536,"name":"Enchant Bracer - Lesser Strength","icon":"inv_misc_note_01","type":6,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":843,"itemId":38799,"spellId":13607,"name":"Enchant Chest - Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0],"quality":1}, +{"effectId":844,"itemId":11150,"spellId":13612,"name":"Enchant Gloves - Mining","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":845,"itemId":11151,"spellId":13617,"name":"Enchant Gloves - Herbalism","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":846,"itemId":19971,"spellId":24302,"name":"Eternium Fishing Line","icon":"inv_fabric_mageweave_02","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":847,"itemId":38804,"spellId":13626,"name":"Enchant Chest - Minor Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":848,"itemId":38806,"spellId":13635,"name":"Enchant Cloak - Defense","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0],"quality":1}, +{"effectId":849,"itemId":38807,"spellId":13637,"name":"Enchant Boots - Lesser Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":850,"itemId":38808,"spellId":13640,"name":"Enchant Chest - Greater Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0],"quality":1}, +{"effectId":851,"itemId":16220,"spellId":20024,"name":"Enchant Boots - Spirit","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":852,"itemId":38830,"spellId":13836,"name":"Enchant Boots - Stamina","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":853,"itemId":11164,"spellId":13653,"name":"Enchant Weapon - Lesser Beastslayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":854,"itemId":11165,"spellId":13655,"name":"Enchant Weapon - Lesser Elemental Slayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":856,"itemId":38817,"spellId":13661,"name":"Enchant Bracer - Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":857,"itemId":38818,"spellId":13663,"name":"Enchant Chest - Greater Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0],"quality":1}, +{"effectId":863,"itemId":11168,"spellId":13689,"name":"Enchant Shield - Lesser Parry","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":865,"itemId":11166,"spellId":13698,"name":"Enchant Gloves - Skinning","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":866,"itemId":38824,"spellId":13700,"name":"Enchant Chest - Lesser Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":884,"itemId":38825,"spellId":13746,"name":"Enchant Cloak - Greater Defense","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"quality":1}, +{"effectId":904,"itemId":38844,"spellId":13935,"name":"Enchant Boots - Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":905,"itemId":38829,"spellId":13822,"name":"Enchant Bracer - Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":906,"itemId":11203,"spellId":13841,"name":"Enchant Gloves - Advanced Mining","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":907,"itemId":11204,"spellId":13846,"name":"Enchant Bracer - Greater Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":908,"itemId":38833,"spellId":13858,"name":"Enchant Chest - Superior Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0],"quality":1}, +{"effectId":909,"itemId":11205,"spellId":13868,"name":"Enchant Gloves - Advanced Herbalism","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":910,"itemId":33149,"spellId":25083,"name":"Enchant Cloak - Stealth","icon":"inv_misc_note_01","type":4,"stats":[0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":911,"itemId":38837,"spellId":13890,"name":"Enchant Boots - Minor Speed","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":912,"itemId":11208,"spellId":13915,"name":"Enchant Weapon - Demonslaying","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":913,"itemId":38841,"spellId":13917,"name":"Enchant Chest - Superior Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0],"quality":1}, +{"effectId":923,"itemId":11223,"spellId":13931,"name":"Enchant Bracer - Dodge","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":924,"itemId":38768,"spellId":7428,"name":"Enchant Bracer - Minor Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":925,"itemId":11163,"spellId":13646,"name":"Enchant Bracer - Lesser Dodge","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":926,"itemId":187814,"spellId":359895,"name":"Enchant Shield - Frost Resistance","icon":"spell_frost_frostward","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0],"quality":1}, +{"effectId":927,"itemId":38846,"spellId":13939,"name":"Enchant Bracer - Greater Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":928,"itemId":38847,"spellId":13941,"name":"Enchant Chest - Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":929,"itemId":16215,"spellId":20020,"name":"Enchant Boots - Greater Stamina","icon":"inv_misc_note_01","type":10,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":930,"itemId":11226,"spellId":13947,"name":"Enchant Gloves - Riding Skill","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":931,"itemId":38851,"spellId":13948,"name":"Enchant Gloves - Minor Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":943,"itemId":38796,"spellId":13529,"name":"Enchant 2H Weapon - Lesser Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":963,"itemId":38845,"spellId":13937,"name":"Enchant 2H Weapon - Greater Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1071,"itemId":28282,"spellId":34009,"name":"Enchant Shield - Major Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1075,"itemId":38966,"spellId":44528,"name":"Enchant Boots - Greater Fortitude","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1099,"itemId":44457,"spellId":60663,"name":"Enchant Cloak - Major Agility","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1103,"itemId":38995,"spellId":44633,"name":"Enchant Weapon - Exceptional Agility","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1128,"itemId":44455,"spellId":60653,"name":"Enchant Shield - Greater Intellect","icon":"inv_scroll_03","type":13,"enchantType":2,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1147,"itemId":38980,"spellId":44593,"name":"Enchant Bracer - Major Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1593,"itemId":187737,"spellId":359639,"name":"Enchant Bracer - Assault","icon":"inv_misc_desecrated_clothbracer","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1597,"itemId":44469,"spellId":60763,"name":"Enchant Boots - Greater Assault","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1600,"itemId":38971,"spellId":60616,"name":"Enchant Bracer - Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1603,"itemId":44458,"spellId":60668,"name":"Enchant Gloves - Crusher","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1606,"itemId":44453,"spellId":60621,"name":"Enchant Weapon - Greater Potency","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1704,"itemId":12645,"spellId":16623,"name":"Thorium Shield Spike","icon":"inv_misc_armorkit_20","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1843,"itemId":15564,"spellId":19057,"name":"Rugged Armor Kit","icon":"inv_misc_armorkit_09","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"quality":1}, +{"effectId":1883,"itemId":16214,"spellId":20008,"name":"Enchant Bracer - Greater Intellect","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1884,"itemId":16218,"spellId":20009,"name":"Enchant Bracer - Superior Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1885,"itemId":16246,"spellId":20010,"name":"Enchant Bracer - Superior Strength","icon":"inv_misc_note_01","type":6,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1886,"itemId":16251,"spellId":20011,"name":"Enchant Bracer - Superior Stamina","icon":"inv_misc_note_01","type":6,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1887,"itemId":16219,"spellId":20012,"name":"Enchant Gloves - Greater Agility","icon":"inv_misc_note_01","type":7,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1889,"itemId":16224,"spellId":20015,"name":"Enchant Cloak - Superior Defense","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0],"quality":1}, +{"effectId":1890,"itemId":16222,"spellId":20016,"name":"Enchant Shield - Vitality","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1891,"itemId":16253,"spellId":20025,"name":"Enchant Chest - Greater Stats","icon":"inv_misc_note_01","type":5,"stats":[4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1892,"itemId":16221,"spellId":20026,"name":"Enchant Chest - Major Health","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1893,"itemId":16242,"spellId":20028,"name":"Enchant Chest - Major Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0],"quality":2}, +{"effectId":1894,"itemId":16223,"spellId":20029,"name":"Enchant Weapon - Icy Chill","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1896,"itemId":16247,"spellId":20030,"name":"Enchant 2H Weapon - Superior Impact","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1897,"itemId":16250,"spellId":20031,"name":"Enchant Weapon - Superior Striking","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1898,"itemId":16254,"spellId":20032,"name":"Enchant Weapon - Lifestealing","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1899,"itemId":16248,"spellId":20033,"name":"Enchant Weapon - Unholy Weapon","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1900,"itemId":16252,"spellId":20034,"name":"Enchant Weapon - Crusader","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1903,"itemId":16255,"spellId":20035,"name":"Enchant 2H Weapon - Major Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1904,"itemId":16249,"spellId":20036,"name":"Enchant 2H Weapon - Major Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1951,"itemId":38978,"spellId":44591,"name":"Enchant Cloak - Superior Dodge","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1952,"itemId":38954,"spellId":44489,"name":"Enchant Shield - Dodge","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1953,"itemId":39002,"spellId":47766,"name":"Enchant Chest - Greater Dodge","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2322,"itemId":28273,"spellId":33999,"name":"Enchant Gloves - Major Healing","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2326,"itemId":38997,"spellId":44635,"name":"Enchant Bracer - Greater Spellpower","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2332,"itemId":44470,"spellId":60767,"name":"Enchant Bracer - Superior Spellpower","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2381,"itemId":38962,"spellId":44509,"name":"Enchant Chest - Greater Mana Restoration","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2443,"itemId":17725,"spellId":21931,"name":"Enchant Weapon - Winter's Might","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2483,"itemId":18169,"spellId":22593,"name":"Flame Mantle of the Dawn","icon":"spell_fire_flameshock","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2484,"itemId":18170,"spellId":22594,"name":"Frost Mantle of the Dawn","icon":"spell_frost_frostshock","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2485,"itemId":18171,"spellId":22598,"name":"Arcane Mantle of the Dawn","icon":"spell_holy_wordfortitude","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2486,"itemId":18172,"spellId":22597,"name":"Nature Mantle of the Dawn","icon":"spell_nature_protectionformnature","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0],"quality":2}, +{"effectId":2487,"itemId":18173,"spellId":22596,"name":"Shadow Mantle of the Dawn","icon":"spell_shadow_ragingscream","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0],"quality":2}, +{"effectId":2488,"itemId":18182,"spellId":22599,"name":"Chromatic Mantle of the Dawn","icon":"inv_misc_gem_variety_02","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0],"quality":2}, +{"effectId":2503,"itemId":18251,"spellId":22725,"name":"Core Armor Kit","icon":"inv_misc_armorkit_05","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2504,"itemId":18259,"spellId":22749,"name":"Enchant Weapon - Spellpower","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2505,"itemId":18260,"spellId":22750,"name":"Enchant Weapon - Healing Power","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2523,"itemId":18283,"spellId":22779,"name":"Biznicks 247x128 Accurascope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2543,"itemId":18329,"spellId":22840,"name":"Arcanum of Rapidity","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2544,"itemId":18330,"spellId":22844,"name":"Arcanum of Focus","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2545,"itemId":18331,"spellId":22846,"name":"Arcanum of Protection","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2563,"itemId":19444,"spellId":23799,"name":"Enchant Weapon - Strength","icon":"inv_misc_note_01","type":13,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2564,"itemId":19445,"spellId":23800,"name":"Enchant Weapon - Agility","icon":"inv_misc_note_01","type":13,"stats":[0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2565,"itemId":19446,"spellId":23801,"name":"Enchant Bracer - Mana Regeneration","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2567,"itemId":19448,"spellId":23803,"name":"Enchant Weapon - Mighty Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2568,"itemId":19449,"spellId":23804,"name":"Enchant Weapon - Mighty Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2583,"itemId":19782,"spellId":24149,"name":"Presence of Might","icon":"spell_holy_sealofwrath","type":9,"stats":[0,0,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2584,"itemId":19783,"spellId":24160,"name":"Syncretist's Sigil","icon":"spell_holy_prayerofhealing","type":9,"stats":[0,0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2587,"itemId":19786,"spellId":24163,"name":"Vodouisant's Vigilant Embrace","icon":"spell_nature_purge","type":9,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2588,"itemId":19787,"spellId":24164,"name":"Presence of Sight","icon":"spell_shadow_detectlesserinvisibility","type":9,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2589,"itemId":19788,"spellId":24165,"name":"Hoodoo Hex","icon":"spell_shadow_impphaseshift","type":9,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2590,"itemId":19789,"spellId":24167,"name":"Prophetic Aura","icon":"spell_holy_holyprotection","type":9,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2591,"itemId":19790,"spellId":24168,"name":"Animist's Caress","icon":"spell_nature_reincarnation","type":9,"stats":[0,0,10,10,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2603,"spellId":144736,"name":"Enchant Gloves - Fishing","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2604,"itemId":20078,"spellId":24420,"name":"Zandalar Signet of Serenity","icon":"spell_holy_powerwordshield","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2605,"itemId":20076,"spellId":24421,"name":"Zandalar Signet of Mojo","icon":"inv_jewelry_ring_46","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2606,"itemId":20077,"spellId":24422,"name":"Zandalar Signet of Might","icon":"inv_misc_armorkit_08","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2613,"itemId":33153,"spellId":25072,"name":"Enchant Gloves - Threat","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2614,"itemId":20727,"spellId":25073,"name":"Enchant Gloves - Shadow Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2615,"itemId":20728,"spellId":25074,"name":"Enchant Gloves - Frost Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2616,"itemId":20729,"spellId":25078,"name":"Enchant Gloves - Fire Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2617,"itemId":20730,"spellId":25079,"name":"Enchant Gloves - Healing Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2619,"itemId":187815,"spellId":359950,"name":"Enchant Cloak - Greater Fire Resistance","icon":"spell_fire_sealoffire","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2620,"itemId":187807,"spellId":359949,"name":"Enchant Cloak - Greater Nature Resistance","icon":"spell_nature_elementalshields","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0],"quality":1}, +{"effectId":2621,"itemId":33150,"spellId":25084,"name":"Enchant Cloak - Subtlety","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2622,"itemId":33148,"spellId":25086,"name":"Enchant Cloak - Dodge","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2646,"itemId":22392,"spellId":27837,"name":"Enchant 2H Weapon - Agility","icon":"inv_misc_note_01","type":13,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2647,"itemId":35420,"spellId":27899,"name":"Enchant Bracer - Brawn","icon":"inv_bracer_08","type":6,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2648,"itemId":35756,"spellId":47051,"name":"Enchant Cloak - Greater Dodge","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2649,"itemId":22533,"spellId":27914,"name":"Enchant Bracer - Fortitude","icon":"inv_misc_note_01","type":6,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2650,"itemId":19447,"spellId":23802,"name":"Enchant Bracer - Healing Power","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2653,"itemId":38904,"spellId":27944,"name":"Enchant Shield - Lesser Dodge","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2654,"itemId":22539,"spellId":27945,"name":"Enchant Shield - Intellect","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2655,"itemId":22540,"spellId":27946,"name":"Enchant Shield - Parry","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2656,"itemId":22542,"spellId":27948,"name":"Enchant Boots - Vitality","icon":"inv_misc_note_01","type":10,"stats":[0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2657,"itemId":22544,"spellId":27951,"name":"Enchant Boots - Dexterity","icon":"inv_misc_note_01","type":10,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2658,"itemId":22545,"spellId":27954,"name":"Enchant Boots - Surefooted","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2659,"itemId":35428,"spellId":27957,"name":"Enchant Chest - Exceptional Health","icon":"inv_chest_leather_04","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0],"quality":1}, +{"effectId":2661,"itemId":24003,"spellId":27960,"name":"Enchant Chest - Exceptional Stats","icon":"inv_misc_note_01","type":5,"stats":[6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2662,"itemId":35437,"spellId":27961,"name":"Enchant Cloak - Major Armor","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0],"quality":1}, +{"effectId":2666,"itemId":22551,"spellId":27968,"name":"Enchant Weapon - Major Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2667,"itemId":22554,"spellId":27971,"name":"Enchant 2H Weapon - Savagery","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2668,"itemId":22553,"spellId":27972,"name":"Enchant Weapon - Potency","icon":"inv_misc_note_01","type":13,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2669,"itemId":22555,"spellId":27975,"name":"Enchant Weapon - Major Spellpower","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2670,"itemId":22556,"spellId":27977,"name":"Enchant 2H Weapon - Major Agility","icon":"inv_misc_note_01","type":13,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2671,"itemId":22560,"spellId":27981,"name":"Enchant Weapon - Sunfire","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2672,"itemId":22561,"spellId":27982,"name":"Enchant Weapon - Soulfrost","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2673,"itemId":22559,"spellId":27984,"name":"Enchant Weapon - Mongoose","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2674,"itemId":22558,"spellId":28003,"name":"Enchant Weapon - Spellsurge","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2675,"itemId":22557,"spellId":28004,"name":"Enchant Weapon - Battlemaster","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2679,"itemId":22532,"spellId":27913,"name":"Enchant Bracer - Restore Mana Prime","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2681,"itemId":22635,"spellId":28161,"name":"Savage Guard","icon":"spell_nature_spiritarmor","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0],"quality":3}, +{"effectId":2682,"itemId":22636,"spellId":28163,"name":"Ice Guard","icon":"spell_frost_frostshock","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2683,"itemId":22638,"spellId":28165,"name":"Shadow Guard","icon":"spell_shadow_antishadow","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0],"quality":3}, +{"effectId":2714,"itemId":23530,"spellId":29454,"name":"Felsteel Shield Spike","icon":"inv_misc_armorkit_27","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2715,"itemId":23547,"spellId":29475,"name":"Resilience of the Scourge","icon":"spell_shadow_deadofnight","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,6],"quality":4}, +{"effectId":2716,"itemId":23549,"spellId":29480,"name":"Fortitude of the Scourge","icon":"spell_shadow_antishadow","type":3,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"quality":4}, +{"effectId":2717,"itemId":23548,"spellId":29483,"name":"Might of the Scourge","icon":"spell_shadow_deathpact","type":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2721,"itemId":23545,"spellId":29467,"name":"Power of the Scourge","icon":"spell_shadow_darkritual","type":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2722,"itemId":23764,"spellId":30250,"name":"Adamantite Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2723,"itemId":23765,"spellId":30252,"name":"Khorium Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2724,"itemId":23766,"spellId":30260,"name":"Stabilized Eternium Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2745,"itemId":24275,"spellId":31369,"name":"Silver Spellthread","icon":"spell_nature_lightning","type":9,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2746,"itemId":24276,"spellId":31370,"name":"Golden Spellthread","icon":"spell_holy_restoration","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2747,"itemId":24273,"spellId":31371,"name":"Mystic Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2748,"itemId":24274,"spellId":31372,"name":"Runic Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2792,"itemId":25650,"spellId":32397,"name":"Knothide Armor Kit","icon":"inv_misc_armorkit_24","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2793,"itemId":25651,"spellId":32398,"name":"Vindicator's Armor Kit","icon":"inv_misc_armorkit_26","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2794,"itemId":25652,"spellId":32399,"name":"Magister's Armor Kit","icon":"inv_misc_armorkit_22","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2841,"itemId":34330,"spellId":44968,"name":"Heavy Knothide Armor Kit","icon":"inv_misc_armorkit_25","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2928,"itemId":22536,"spellId":27924,"name":"Enchant Ring - Minor Intellect","icon":"inv_misc_note_01","type":11,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2929,"itemId":22535,"spellId":27920,"name":"Enchant Ring - Striking","icon":"inv_misc_note_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2931,"itemId":22538,"spellId":27927,"name":"Enchant Ring - Stats","icon":"inv_misc_note_01","type":11,"stats":[3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2933,"itemId":28270,"spellId":33992,"name":"Enchant Chest - Major Resilience","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2934,"itemId":35439,"spellId":33993,"name":"Enchant Gloves - Blasting","icon":"inv_gauntlets_03","type":7,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2935,"itemId":28271,"spellId":33994,"name":"Enchant Gloves - Precise Strikes","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2937,"itemId":28272,"spellId":33997,"name":"Enchant Gloves - Major Spellpower","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2938,"spellId":134871,"name":"Enchant Cloak - PvP Power","icon":"trade_engraving","type":4,"stats":[16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2939,"itemId":28279,"spellId":34007,"name":"Enchant Boots - Cat's Swiftness","icon":"inv_misc_note_01","type":10,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2940,"itemId":28280,"spellId":34008,"name":"Enchant Boots - Boar's Speed","icon":"inv_misc_note_01","type":10,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2977,"itemId":28882,"spellId":35355,"name":"Inscription of Warding","icon":"spell_holy_greaterblessingofsanctuary","type":3,"stats":[0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2978,"itemId":28889,"spellId":35402,"name":"Greater Inscription of Warding","icon":"spell_holy_blessingofprotection","type":3,"stats":[0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2979,"itemId":28878,"spellId":35403,"name":"Inscription of Faith","icon":"spell_holy_sealofsalvation","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2980,"itemId":28887,"spellId":35404,"name":"Greater Inscription of Faith","icon":"spell_holy_greaterblessingofsalvation","type":3,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2981,"itemId":28881,"spellId":35405,"name":"Inscription of Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2982,"itemId":28886,"spellId":35406,"name":"Greater Inscription of Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2983,"itemId":28885,"spellId":35407,"name":"Inscription of Vengeance","icon":"spell_holy_fistofjustice","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2984,"spellId":35415,"name":"Shadow Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2985,"spellId":35416,"name":"Flame Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2986,"itemId":28888,"spellId":35417,"name":"Greater Inscription of Vengeance","icon":"spell_holy_greaterblessingofkings","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2987,"spellId":35418,"name":"Frost Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2988,"spellId":35419,"name":"Nature Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2989,"spellId":35420,"name":"Arcane Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2990,"itemId":28908,"spellId":35432,"name":"Inscription of the Knight","icon":"spell_holy_championsbond","type":3,"stats":[0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2991,"itemId":28911,"spellId":35433,"name":"Greater Inscription of the Knight","icon":"spell_holy_championsgrace","type":3,"stats":[0,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2992,"itemId":28904,"spellId":35434,"name":"Inscription of the Oracle","icon":"spell_holy_spiritualguidence","type":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2993,"itemId":28912,"spellId":35435,"name":"Greater Inscription of the Oracle","icon":"spell_holy_powerinfusion","type":3,"stats":[0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2994,"itemId":28903,"spellId":35436,"name":"Inscription of the Orb","icon":"inv_misc_orb_04","type":3,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2995,"itemId":28909,"spellId":35437,"name":"Greater Inscription of the Orb","icon":"inv_misc_orb_03","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2996,"itemId":28907,"spellId":35438,"name":"Inscription of the Blade","icon":"ability_dualwield","type":3,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2997,"itemId":28910,"spellId":35439,"name":"Greater Inscription of the Blade","icon":"spell_holy_weaponmastery","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2998,"itemId":29187,"spellId":35441,"name":"Inscription of Endurance","icon":"ability_warrior_shieldmastery","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,0,0,0,0,0],"quality":2}, +{"effectId":2999,"spellId":35443,"name":"Arcanum of the Defender","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3001,"spellId":35445,"name":"Arcanum of Renewal","icon":"trade_engraving","type":1,"stats":[0,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3002,"spellId":35447,"name":"Arcanum of Power","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,14,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3003,"spellId":35452,"name":"Arcanum of Ferocity","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3004,"spellId":35453,"name":"Arcanum of the Gladiator","icon":"trade_engraving","type":1,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3005,"spellId":35454,"name":"Arcanum of Nature Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0],"quality":1}, +{"effectId":3006,"spellId":35455,"name":"Arcanum of Arcane Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3007,"spellId":35456,"name":"Arcanum of Fire Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3008,"spellId":35457,"name":"Arcanum of Frost Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3009,"spellId":35458,"name":"Arcanum of Shadow Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0],"quality":1}, +{"effectId":3010,"itemId":29533,"spellId":35488,"name":"Cobrahide Leg Armor","icon":"inv_misc_armorkit_21","type":9,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3011,"itemId":29534,"spellId":35489,"name":"Clefthide Leg Armor","icon":"inv_misc_armorkit_23","type":9,"stats":[0,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3012,"itemId":29535,"spellId":35490,"name":"Nethercobra Leg Armor","icon":"inv_misc_armorkit_25","type":9,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3013,"itemId":29536,"spellId":35495,"name":"Nethercleft Leg Armor","icon":"inv_misc_armorkit_25","type":9,"stats":[0,12,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3095,"spellId":37889,"name":"Arcanum of Chromatic Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0],"quality":1}, +{"effectId":3096,"spellId":37891,"name":"Arcanum of the Outcast","icon":"trade_engraving","type":1,"stats":[17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3150,"itemId":38929,"spellId":33991,"name":"Enchant Chest - Restore Mana Prime","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3222,"itemId":33165,"spellId":42620,"name":"Enchant Weapon - Greater Agility","icon":"inv_misc_note_01","type":13,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3223,"itemId":33185,"spellId":42687,"name":"Adamantite Weapon Chain","icon":"spell_frost_chainsofice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3225,"itemId":33307,"spellId":42974,"name":"Enchant Weapon - Executioner","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3228,"spellId":44119,"name":"Enchant Bracer - Template","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3229,"itemId":187783,"spellId":359685,"name":"Enchant Shield - Resistance","icon":"spell_holy_avengersshield","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3231,"itemId":38951,"spellId":44484,"name":"Enchant Gloves - Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3232,"itemId":39006,"spellId":47901,"name":"Enchant Boots - Tuskarr's Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3233,"itemId":22546,"spellId":27958,"name":"Enchant Chest - Exceptional Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0],"quality":1}, +{"effectId":3234,"itemId":38953,"spellId":44488,"name":"Enchant Gloves - Precision","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3236,"itemId":38955,"spellId":44492,"name":"Enchant Chest - Mighty Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0],"quality":1}, +{"effectId":3238,"itemId":38960,"spellId":44506,"name":"Enchant Gloves - Gatherer","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3239,"itemId":38965,"spellId":44524,"name":"Enchant Weapon - Icebreaker","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3241,"itemId":38972,"spellId":44576,"name":"Enchant Weapon - Lifeward","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3243,"itemId":38973,"spellId":44582,"name":"Enchant Cloak - Minor Power","icon":"inv_misc_enchantedscroll","type":4,"stats":[28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3244,"itemId":38974,"spellId":44584,"name":"Enchant Boots - Greater Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3245,"itemId":38975,"spellId":44588,"name":"Enchant Chest - Exceptional Resilience","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3246,"itemId":38979,"spellId":44592,"name":"Enchant Gloves - Exceptional Spellpower","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3247,"itemId":38981,"spellId":44595,"name":"Enchant 2H Weapon - Scourgebane","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3249,"itemId":38985,"spellId":44612,"name":"Enchant Gloves - Greater Blasting","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3251,"itemId":38988,"spellId":44621,"name":"Enchant Weapon - Giant Slayer","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3252,"itemId":38989,"spellId":44623,"name":"Enchant Chest - Super Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3253,"itemId":38990,"spellId":44625,"name":"Enchant Gloves - Armsman","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3256,"itemId":38993,"spellId":44631,"name":"Enchant Cloak - Shadow Armor","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"quality":1}, +{"effectId":3260,"itemId":34207,"spellId":44769,"name":"Glove Reinforcements","icon":"inv_misc_armorkit_08","type":7,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3269,"itemId":34836,"spellId":45697,"name":"Truesilver Fishing Line","icon":"inv_misc_thread_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3273,"itemId":35498,"spellId":46578,"name":"Enchant Weapon - Deathfrost","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3289,"spellId":48555,"name":"Skybreaker Whip","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3294,"itemId":39001,"spellId":47672,"name":"Enchant Cloak - Mighty Stamina","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3296,"itemId":39004,"spellId":47899,"name":"Enchant Cloak - Wisdom","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3297,"itemId":39005,"spellId":47900,"name":"Enchant Chest - Super Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0],"quality":1}, +{"effectId":3315,"itemId":37312,"spellId":48401,"name":"Carrot on a Stick","icon":"inv_misc_food_54","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3325,"itemId":38371,"spellId":50901,"name":"Jormungar Leg Armor","icon":"inv_misc_armorkit_31","type":9,"stats":[0,15,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3326,"itemId":38372,"spellId":50902,"name":"Nerubian Leg Armor","icon":"inv_misc_armorkit_29","type":9,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3329,"itemId":38375,"spellId":50906,"name":"Borean Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3330,"itemId":38376,"spellId":50909,"name":"Heavy Borean Armor Kit","icon":"inv_misc_armorkit_30","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3332,"itemId":38378,"spellId":50913,"name":"Wyrmscale Leg Armor","icon":"inv_misc_monsterscales_18","type":9,"stats":[0,0,0,0,0,0,36,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3365,"spellId":53323,"name":"Rune of Swordshattering","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3366,"spellId":53331,"name":"Rune of Lichbane","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3367,"spellId":53342,"name":"Rune of Spellshattering","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3368,"spellId":53344,"name":"Rune of the Fallen Crusader","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3369,"spellId":53341,"name":"Rune of Cinderglacier","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3370,"spellId":53343,"name":"Rune of Razorice","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3594,"spellId":54446,"name":"Rune of Swordbreaking","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3595,"spellId":54447,"name":"Rune of Spellbreaking","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3599,"itemId":40776,"spellId":54736,"name":"EMP Generator","icon":"inv_misc_enggizmos_02","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3601,"itemId":40800,"spellId":54793,"name":"Frag Belt","icon":"inv_misc_enggizmos_02","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3603,"itemId":41091,"spellId":54998,"name":"Hand-Mounted Pyro Rocket","icon":"inv_misc_enggizmos_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3604,"spellId":54999,"name":"Hyperspeed Accelerators","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3605,"itemId":41111,"spellId":55002,"name":"Flexweave Underlay","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3607,"itemId":41146,"spellId":55076,"name":"Sun Scope","icon":"inv_misc_spyglass_03","type":14,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3608,"itemId":41167,"spellId":55135,"name":"Heartseeker Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3718,"itemId":41601,"spellId":55630,"name":"Shining Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3719,"itemId":41602,"spellId":55631,"name":"Brilliant Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3720,"itemId":41603,"spellId":55632,"name":"Azure Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3721,"itemId":41604,"spellId":55634,"name":"Sapphire Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3722,"spellId":55642,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3728,"spellId":55769,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3730,"spellId":55777,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3731,"itemId":41976,"spellId":55836,"name":"Titanium Weapon Chain","icon":"inv_belt_18","type":13,"stats":[0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3748,"itemId":42500,"spellId":56353,"name":"Titanium Shield Spike","icon":"inv_titanium_shield_spike","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3754,"itemId":19785,"spellId":24162,"name":"Falcon's Call","icon":"spell_nature_forceofnature","type":9,"stats":[0,0,10,0,0,10,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3755,"itemId":19784,"spellId":24161,"name":"Death's Embrace","icon":"spell_shadow_scourgebuild","type":9,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3757,"spellId":57690,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":3758,"spellId":57691,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":3775,"itemId":43302,"spellId":58126,"name":"Inscription of High Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3776,"itemId":43303,"spellId":58128,"name":"Inscription of the Frostblade","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3777,"itemId":43304,"spellId":58129,"name":"Inscription of Kings","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3788,"itemId":44497,"spellId":59619,"name":"Enchant Weapon - Accuracy","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3789,"itemId":44493,"spellId":59621,"name":"Enchant Weapon - Berserking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3790,"itemId":43987,"spellId":59625,"name":"Enchant Weapon - Black Magic","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3791,"spellId":59636,"name":"Enchant Ring - Lesser Stamina","icon":"trade_engraving","type":11,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3793,"itemId":44125,"spellId":59771,"name":"Inscription of Triumph","icon":"spell_holy_weaponmastery","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3794,"itemId":44068,"spellId":59773,"name":"Inscription of Dominance","icon":"spell_holy_powerinfusion","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3795,"spellId":59777,"name":"Arcanum of Triumph","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3796,"spellId":59778,"name":"Arcanum of Dominance","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3797,"spellId":59784,"name":"Arcanum of Dominance","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3806,"itemId":44129,"spellId":59927,"name":"Inscription of the Storm","icon":"spell_nature_lightning","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3807,"itemId":44130,"spellId":59928,"name":"Inscription of the Crag","icon":"spell_nature_farsight","type":3,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3808,"itemId":44133,"spellId":59934,"name":"Greater Inscription of the Axe","icon":"inv_axe_85","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3809,"itemId":44134,"spellId":59936,"name":"Greater Inscription of the Crag","icon":"spell_arcane_teleportorgrimmar","type":3,"stats":[0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3810,"itemId":44135,"spellId":59937,"name":"Greater Inscription of the Storm","icon":"spell_nature_lightningoverload","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3811,"itemId":44136,"spellId":59941,"name":"Greater Inscription of the Pinnacle","icon":"spell_holy_divinepurpose","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3812,"spellId":59944,"name":"Arcanum of the Frosty Soul","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3813,"spellId":59945,"name":"Arcanum of Toxic Warding","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0],"quality":1}, +{"effectId":3814,"spellId":59946,"name":"Arcanum of the Fleeing Shadow","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0],"quality":1}, +{"effectId":3815,"spellId":59947,"name":"Arcanum of the Eclipsed Moon","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3816,"spellId":59948,"name":"Arcanum of the Flame's Soul","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3817,"spellId":59954,"name":"Arcanum of Torment","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3818,"spellId":59955,"name":"Arcanum of the Stalwart Protector","icon":"trade_engraving","type":1,"stats":[0,0,37,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3819,"spellId":59960,"name":"Arcanum of Blissful Mending","icon":"trade_engraving","type":1,"stats":[0,0,0,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3820,"spellId":59970,"name":"Arcanum of Burning Mysteries","icon":"trade_engraving","type":1,"stats":[0,0,0,26,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3822,"itemId":38373,"spellId":60581,"name":"Frosthide Leg Armor","icon":"inv_misc_armorkit_32","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3823,"itemId":38374,"spellId":60582,"name":"Icescale Leg Armor","icon":"inv_misc_armorkit_33","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3824,"itemId":44449,"spellId":60606,"name":"Enchant Boots - Assault","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3825,"itemId":44456,"spellId":60609,"name":"Enchant Cloak - Speed","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3826,"itemId":38986,"spellId":60623,"name":"Enchant Boots - Icewalker","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3827,"itemId":44463,"spellId":60691,"name":"Enchant 2H Weapon - Massacre","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3828,"itemId":38992,"spellId":44630,"name":"Enchant 2H Weapon - Greater Savagery","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3829,"itemId":38964,"spellId":44513,"name":"Enchant Gloves - Greater Assault","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3830,"itemId":38991,"spellId":44629,"name":"Enchant Weapon - Exceptional Spellpower","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3831,"itemId":39003,"spellId":47898,"name":"Enchant Cloak - Greater Speed","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3833,"itemId":44466,"spellId":60707,"name":"Enchant Weapon - Superior Potency","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3834,"itemId":44467,"spellId":60714,"name":"Enchant Weapon - Mighty Spellpower","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3835,"spellId":61117,"name":"Master's Inscription of the Axe","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3836,"spellId":61118,"name":"Master's Inscription of the Crag","icon":"trade_engraving","type":3,"stats":[0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3837,"spellId":61119,"name":"Master's Inscription of the Pinnacle","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3838,"spellId":61120,"name":"Master's Inscription of the Storm","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3839,"spellId":44645,"name":"Enchant Ring - Assault","icon":"trade_engraving","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3840,"spellId":44636,"name":"Enchant Ring - Lesser Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3842,"spellId":61271,"name":"Arcanum of the Savage Gladiator","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3843,"itemId":44739,"spellId":61468,"name":"Diamond-cut Refractor Scope","icon":"ability_hunter_rapidregeneration","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3844,"itemId":38963,"spellId":44510,"name":"Enchant Weapon - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3845,"itemId":44815,"spellId":44575,"name":"Enchant Bracer - Greater Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3846,"itemId":28281,"spellId":34010,"name":"Enchant Weapon - Major Healing","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3847,"spellId":62158,"name":"Rune of the Stoneskin Gargoyle","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3849,"itemId":44936,"spellId":62201,"name":"Titanium Plating","icon":"inv_shield_19","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3850,"itemId":44947,"spellId":62256,"name":"Enchant Bracer - Major Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3851,"itemId":44945,"spellId":62257,"name":"Enchant Weapon - Titanguard","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3852,"itemId":44957,"spellId":62384,"name":"Greater Inscription of the Gladiator","icon":"inv_shoulder_61","type":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3853,"itemId":44963,"spellId":62447,"name":"Earthen Leg Armor","icon":"inv_misc_armorkit_18","type":9,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3854,"itemId":45056,"spellId":62948,"name":"Enchant Staff - Greater Spellpower","icon":"inv_misc_enchantedscroll","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3855,"itemId":45060,"spellId":62959,"name":"Enchant Staff - Spellpower","icon":"inv_misc_enchantedscroll","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3858,"itemId":45628,"spellId":63746,"name":"Enchant Boots - Lesser Accuracy","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3860,"spellId":63770,"name":"Reticulated Armor Webbing","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3869,"itemId":46026,"spellId":64441,"name":"Enchant Weapon - Blade Ward","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3870,"itemId":46098,"spellId":64579,"name":"Enchant Weapon - Blood Draining","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3872,"spellId":56039,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3873,"spellId":56034,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3875,"itemId":44131,"spellId":59929,"name":"Inscription of the Axe","icon":"inv_axe_82","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3876,"itemId":44132,"spellId":59932,"name":"Inscription of the Pinnacle","icon":"spell_holy_divinepurpose","type":3,"stats":[0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3883,"spellId":70164,"name":"Rune of the Nerubian Carapace","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":4061,"itemId":52687,"spellId":74132,"name":"Enchant Gloves - Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4062,"itemId":52743,"spellId":74189,"name":"Enchant Boots - Earthen Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4063,"itemId":52744,"spellId":74191,"name":"Enchant Chest - Mighty Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4064,"itemId":52745,"spellId":74192,"name":"Enchant Cloak - Lesser Power","icon":"inv_misc_enchantedscroll","type":4,"stats":[56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4065,"itemId":52746,"spellId":74193,"name":"Enchant Bracer - Speed","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4066,"itemId":52747,"spellId":74195,"name":"Enchant Weapon - Mending","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4067,"itemId":52748,"spellId":74197,"name":"Enchant Weapon - Avalanche","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4068,"itemId":52749,"spellId":74198,"name":"Enchant Gloves - Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4069,"itemId":52750,"spellId":74199,"name":"Enchant Boots - Haste","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4070,"itemId":52751,"spellId":74200,"name":"Enchant Chest - Stamina","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4071,"itemId":52752,"spellId":74201,"name":"Enchant Bracer - Critical Strike","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4072,"itemId":52753,"spellId":74202,"name":"Enchant Cloak - Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4073,"itemId":52754,"spellId":74207,"name":"Enchant Shield - Protection","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4074,"itemId":52755,"spellId":74211,"name":"Enchant Weapon - Elemental Slayer","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4075,"itemId":52756,"spellId":74212,"name":"Enchant Gloves - Exceptional Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4076,"itemId":52757,"spellId":74213,"name":"Enchant Boots - Major Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4078,"spellId":74215,"name":"Enchant Ring - Strength","icon":"trade_engraving","type":11,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4079,"spellId":74216,"name":"Enchant Ring - Agility","icon":"trade_engraving","type":11,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4080,"spellId":74217,"name":"Enchant Ring - Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4081,"spellId":74218,"name":"Enchant Ring - Stamina","icon":"trade_engraving","type":11,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4082,"itemId":52759,"spellId":74220,"name":"Enchant Gloves - Greater Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4083,"itemId":52760,"spellId":74223,"name":"Enchant Weapon - Hurricane","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4084,"itemId":52761,"spellId":74225,"name":"Enchant Weapon - Heartsong","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4085,"itemId":52762,"spellId":74226,"name":"Enchant Shield - Mastery","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4086,"itemId":52763,"spellId":74229,"name":"Enchant Bracer - Superior Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4087,"itemId":52764,"spellId":74230,"name":"Enchant Cloak - Critical Strike","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4088,"itemId":52765,"spellId":74231,"name":"Enchant Chest - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4089,"itemId":52766,"spellId":74232,"name":"Enchant Bracer - Precision","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4090,"itemId":52767,"spellId":74234,"name":"Enchant Cloak - Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4091,"itemId":52768,"spellId":74235,"name":"Enchant Off-Hand - Superior Intellect","icon":"inv_misc_enchantedscroll","type":13,"enchantType":5,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4092,"itemId":52769,"spellId":74236,"name":"Enchant Boots - Precision","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4093,"itemId":52770,"spellId":74237,"name":"Enchant Bracer - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4094,"itemId":52771,"spellId":74238,"name":"Enchant Boots - Mastery","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4095,"itemId":52772,"spellId":74239,"name":"Enchant Bracer - Greater Expertise","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4096,"itemId":52773,"spellId":74240,"name":"Enchant Cloak - Greater Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4097,"itemId":52733,"spellId":74242,"name":"Enchant Weapon - Power Torrent","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4098,"itemId":52735,"spellId":74244,"name":"Enchant Weapon - Windwalk","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4099,"itemId":52736,"spellId":74246,"name":"Enchant Weapon - Landslide","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4100,"itemId":52737,"spellId":74247,"name":"Enchant Cloak - Greater Critical Strike","icon":"inv_enchant_formulagood_01","type":4,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4101,"itemId":52738,"spellId":74248,"name":"Enchant Bracer - Greater Critical Strike","icon":"inv_enchant_formulagood_01","type":6,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4102,"itemId":52739,"spellId":74250,"name":"Enchant Chest - Peerless Stats","icon":"inv_enchant_formulagood_01","type":5,"stats":[20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4103,"itemId":52740,"spellId":74251,"name":"Enchant Chest - Greater Stamina","icon":"inv_enchant_formulagood_01","type":5,"stats":[0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4104,"itemId":52782,"spellId":74253,"name":"Enchant Boots - Lavawalker","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4105,"itemId":52781,"spellId":74252,"name":"Enchant Boots - Assassin's Step","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4106,"itemId":52783,"spellId":74254,"name":"Enchant Gloves - Mighty Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4107,"itemId":52784,"spellId":74255,"name":"Enchant Gloves - Greater Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4108,"itemId":52785,"spellId":74256,"name":"Enchant Bracer - Greater Speed","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4109,"itemId":54449,"spellId":75149,"name":"Ghostly Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,0,55,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4110,"itemId":54450,"spellId":75150,"name":"Powerful Ghostly Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4111,"itemId":54447,"spellId":75151,"name":"Enchanted Spellthread","icon":"item_spellcloththread","type":9,"stats":[0,0,65,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4112,"itemId":54448,"spellId":75152,"name":"Powerful Enchanted Spellthread","icon":"inv_misc_thread_eternium","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4113,"spellId":75154,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4114,"spellId":75155,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4115,"spellId":75172,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4116,"spellId":75175,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4118,"spellId":75178,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4120,"itemId":56477,"spellId":78165,"name":"Savage Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4121,"itemId":56517,"spellId":78166,"name":"Heavy Savage Armor Kit","icon":"inv_misc_armorkit_30","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4122,"itemId":56502,"spellId":78169,"name":"Scorched Leg Armor","icon":"inv_misc_armorkit_26","type":9,"stats":[0,0,0,0,0,0,45,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4124,"itemId":56503,"spellId":78170,"name":"Twilight Leg Armor","icon":"inv_misc_armorkit_29","type":9,"stats":[0,45,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4126,"itemId":56550,"spellId":78171,"name":"Dragonscale Leg Armor","icon":"inv_misc_monsterscales_14","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4127,"itemId":56551,"spellId":78172,"name":"Charscale Leg Armor","icon":"inv_misc_monsterscales_20","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4175,"itemId":59594,"spellId":81932,"name":"Gnomish X-Ray Scope","icon":"inv_misc_scopea","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4176,"itemId":59595,"spellId":81933,"name":"R19 Threatfinder","icon":"inv_misc_scopec","type":14,"stats":[0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4177,"itemId":59596,"spellId":81934,"name":"Safety Catch Removal Kit","icon":"inv_misc_enggizmos_37","type":14,"stats":[88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4179,"spellId":82175,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4180,"spellId":82177,"name":"Quickflip Deflection Plates","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4181,"spellId":82180,"name":"Tazik Shocker","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4187,"spellId":84424,"name":"Invisibility Field","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4188,"spellId":84427,"name":"Grounded Plasma Shield","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4189,"spellId":85007,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4190,"spellId":85008,"name":"Fur Lining - Agility","icon":"trade_engraving","type":6,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4191,"spellId":85009,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4192,"spellId":85010,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4193,"spellId":86375,"name":"Swiftsteel Inscription","icon":"trade_engraving","type":3,"stats":[0,130,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4194,"spellId":86401,"name":"Lionsmane Inscription","icon":"trade_engraving","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4195,"spellId":86402,"name":"Inscription of the Earth Prince","icon":"trade_engraving","type":3,"stats":[0,0,195,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4196,"spellId":86403,"name":"Felfire Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,130,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4197,"itemId":62321,"spellId":86847,"name":"Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01","type":3,"stats":[0,0,45,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4198,"itemId":62333,"spellId":86854,"name":"Greater Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01","type":3,"stats":[0,0,75,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4199,"itemId":62342,"spellId":86898,"name":"Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4200,"itemId":62343,"spellId":86899,"name":"Greater Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4201,"itemId":62344,"spellId":86900,"name":"Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4202,"itemId":62345,"spellId":86901,"name":"Greater Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4203,"spellId":86906,"name":"Inscription of Shattered Crystal","icon":"trade_engraving","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4204,"itemId":62346,"spellId":86907,"name":"Greater Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4205,"itemId":62347,"spellId":86909,"name":"Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4206,"spellId":86931,"name":"Arcanum of the Earthern Ring","icon":"trade_engraving","type":1,"stats":[0,0,90,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4207,"spellId":86932,"name":"Arcanum of Hyjal","icon":"trade_engraving","type":1,"stats":[0,0,0,60,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4208,"spellId":86933,"name":"Arcanum of the Highlands","icon":"trade_engraving","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4209,"spellId":86934,"name":"Arcanum of Ramkahen","icon":"trade_engraving","type":1,"stats":[0,60,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4214,"spellId":84425,"name":"Cardboard Assassin","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4215,"itemId":55055,"spellId":92433,"name":"Elementium Shield Spike","icon":"inv_qiraj_hiltspiked","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4216,"itemId":55056,"spellId":92437,"name":"Pyrium Shield Spike","icon":"inv_shield_08","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4217,"itemId":55057,"spellId":93448,"name":"Pyrium Weapon Chain","icon":"inv_misc_steelweaponchain","type":13,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4222,"spellId":67839,"name":"Mind Amplification Dish","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4223,"itemId":41118,"spellId":55016,"name":"Nitro Boosts","icon":"inv_gizmo_rocketbootextreme","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4227,"itemId":68134,"spellId":95471,"name":"Enchant 2H Weapon - Mighty Agility","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4245,"spellId":96245,"name":"Arcanum of Vicious Intellect","icon":"trade_engraving","type":1,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4246,"spellId":96246,"name":"Arcanum of Vicious Agility","icon":"trade_engraving","type":1,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4247,"spellId":96247,"name":"Arcanum of Vicious Strength","icon":"trade_engraving","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4248,"itemId":68772,"spellId":96249,"name":"Greater Inscription of Vicious Intellect","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4249,"itemId":68773,"spellId":96250,"name":"Greater Inscription of Vicious Strength","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4250,"itemId":68774,"spellId":96251,"name":"Greater Inscription of Vicious Agility","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4256,"itemId":68785,"spellId":96261,"name":"Enchant Bracer - Major Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4257,"itemId":68786,"spellId":96262,"name":"Enchant Bracer - Mighty Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4258,"itemId":68784,"spellId":96264,"name":"Enchant Bracer - Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4259,"itemId":68796,"spellId":96286,"name":"Reinforced Fishing Line","icon":"inv_fabric_mageweave_02","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4267,"itemId":70139,"spellId":99623,"name":"Flintlocke's Woodchucker","icon":"inv_misc_scopeb","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4270,"itemId":71720,"spellId":101598,"name":"Drakehide Leg Armor","icon":"inv_misc_cataclysmarmorkit_08","type":9,"stats":[0,0,145,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4359,"itemId":84575,"spellId":103461,"name":"Enchant Ring - Greater Agility","icon":"inv_scroll_03","type":11,"stats":[0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4360,"itemId":84576,"spellId":103462,"name":"Enchant Ring - Greater Intellect","icon":"inv_scroll_03","type":11,"stats":[0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4361,"itemId":84577,"spellId":103463,"name":"Enchant Ring - Greater Stamina","icon":"inv_scroll_03","type":11,"stats":[0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4411,"itemId":74700,"spellId":104338,"name":"Enchant Bracer - Mastery","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4412,"itemId":74701,"spellId":104385,"name":"Enchant Bracer - Major Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4414,"itemId":74703,"spellId":104389,"name":"Enchant Bracer - Super Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4415,"itemId":74704,"spellId":104390,"name":"Enchant Bracer - Exceptional Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4416,"itemId":74705,"spellId":104391,"name":"Enchant Bracer - Greater Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4417,"itemId":74706,"spellId":104392,"name":"Enchant Chest - Super Resilience","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4418,"itemId":74707,"spellId":104393,"name":"Enchant Chest - Mighty Spirit","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4419,"itemId":74708,"spellId":104395,"name":"Enchant Chest - Glorious Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4420,"itemId":74709,"spellId":104397,"name":"Enchant Chest - Superior Stamina","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4421,"itemId":74710,"spellId":104398,"name":"Enchant Cloak - Accuracy","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4422,"itemId":74711,"spellId":104401,"name":"Enchant Cloak - Greater Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4423,"itemId":74712,"spellId":104403,"name":"Enchant Cloak - Superior Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4424,"itemId":74713,"spellId":104404,"name":"Enchant Cloak - Superior Critical Strike","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4426,"itemId":74715,"spellId":104407,"name":"Enchant Boots - Greater Haste","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4427,"itemId":74716,"spellId":104408,"name":"Enchant Boots - Greater Precision","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4428,"itemId":74717,"spellId":104409,"name":"Enchant Boots - Blurred Speed","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4429,"itemId":74718,"spellId":104414,"name":"Enchant Boots - Pandaren's Step","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4430,"itemId":74719,"spellId":104416,"name":"Enchant Gloves - Greater Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4431,"itemId":74720,"spellId":104417,"name":"Enchant Gloves - Superior Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4432,"itemId":74721,"spellId":104419,"name":"Enchant Gloves - Super Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4433,"itemId":74722,"spellId":104420,"name":"Enchant Gloves - Superior Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4434,"itemId":74729,"spellId":104445,"name":"Enchant Off-Hand - Major Intellect","icon":"inv_misc_enchantedscroll","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4441,"itemId":74723,"spellId":104425,"name":"Enchant Weapon - Windsong","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4442,"itemId":74724,"spellId":104427,"name":"Enchant Weapon - Jade Spirit","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4443,"itemId":74725,"spellId":104430,"name":"Enchant Weapon - Elemental Force","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4444,"itemId":74726,"spellId":104434,"name":"Enchant Weapon - Dancing Steel","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4445,"itemId":74727,"spellId":104440,"name":"Enchant Weapon - Colossus","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4446,"itemId":74728,"spellId":104442,"name":"Enchant Weapon - River's Song","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4697,"spellId":108789,"name":"Phase Fingers","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4698,"spellId":109077,"name":"Incendiary Fireworks Launcher","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4699,"itemId":77529,"spellId":109086,"name":"Lord Blastington's Scope of Doom","icon":"inv_misc_scopeb","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4700,"itemId":77531,"spellId":109093,"name":"Mirror Scope","icon":"inv_misc_scopea","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4717,"itemId":79061,"spellId":110764,"name":"Enchant Weapon - Pandamonium (DNT)","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4719,"spellId":113011,"name":"Inscription","icon":"trade_engraving","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4720,"itemId":38679,"spellId":7418,"name":"Enchant Bracer - Minor Health","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0],"quality":1}, +{"effectId":4721,"itemId":38771,"spellId":7457,"name":"Enchant Bracer - Minor Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4722,"itemId":38787,"spellId":13378,"name":"Enchant Shield - Minor Stamina","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4723,"itemId":38772,"spellId":7745,"name":"Enchant 2H Weapon - Minor Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4724,"itemId":11039,"spellId":13419,"name":"Enchant Cloak - Minor Agility","icon":"inv_misc_note_01","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4725,"itemId":38777,"spellId":7779,"name":"Enchant Bracer - Minor Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4726,"itemId":11167,"spellId":13687,"name":"Enchant Boots - Lesser Spirit","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4727,"itemId":6375,"spellId":7859,"name":"Enchant Bracer - Lesser Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4728,"itemId":38792,"spellId":13485,"name":"Enchant Shield - Lesser Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4729,"itemId":38803,"spellId":13622,"name":"Enchant Bracer - Lesser Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4730,"itemId":38793,"spellId":13501,"name":"Enchant Bracer - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4731,"itemId":38805,"spellId":13631,"name":"Enchant Shield - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4732,"itemId":50406,"spellId":71692,"name":"Enchant Gloves - Angler","icon":"inv_enchant_formulagood_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4733,"itemId":11081,"spellId":13464,"name":"Enchant Shield - Lesser Protection","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0],"quality":2}, +{"effectId":4734,"itemId":11206,"spellId":13882,"name":"Enchant Cloak - Lesser Agility","icon":"inv_misc_note_01","type":4,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4735,"itemId":38809,"spellId":13642,"name":"Enchant Bracer - Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4736,"itemId":38816,"spellId":13659,"name":"Enchant Shield - Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4737,"itemId":38812,"spellId":13648,"name":"Enchant Bracer - Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4738,"itemId":11202,"spellId":13817,"name":"Enchant Shield - Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4739,"itemId":38836,"spellId":13887,"name":"Enchant Gloves - Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4740,"itemId":38827,"spellId":13815,"name":"Enchant Gloves - Agility","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4741,"itemId":38839,"spellId":13905,"name":"Enchant Shield - Greater Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4742,"itemId":16244,"spellId":20013,"name":"Enchant Gloves - Greater Strength","icon":"inv_misc_note_01","type":7,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4743,"itemId":11225,"spellId":13945,"name":"Enchant Bracer - Greater Stamina","icon":"inv_misc_note_01","type":6,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4744,"itemId":16217,"spellId":20017,"name":"Enchant Shield - Greater Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4745,"itemId":38821,"spellId":13693,"name":"Enchant Weapon - Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4746,"itemId":22552,"spellId":27967,"name":"Enchant Weapon - Major Striking","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4747,"itemId":38959,"spellId":44500,"name":"Enchant Cloak - Superior Agility","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4748,"itemId":38976,"spellId":44589,"name":"Enchant Boots - Superior Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4750,"spellId":82200,"name":"Spinal Healing Injector","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4803,"itemId":83006,"spellId":121192,"name":"Greater Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[200,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4804,"itemId":83007,"spellId":121193,"name":"Greater Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,200,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4805,"itemId":87560,"spellId":121194,"name":"Greater Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,0,300,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4806,"itemId":87559,"spellId":121195,"name":"Greater Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,0,0,200,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4807,"itemId":84578,"spellId":103465,"name":"Enchant Ring - Greater Strength","icon":"inv_scroll_03","type":11,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4808,"spellId":121988,"name":"Enchant Weapon - Magic Weapon","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4822,"itemId":83764,"spellId":122387,"name":"Shadowleather Leg Armor","icon":"inv_misc_cataclysmarmorkit_02","type":9,"stats":[0,285,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4823,"itemId":83765,"spellId":122388,"name":"Angerhide Leg Armor","icon":"inv_misc_armorkit_mop_04","type":9,"stats":[285,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4824,"itemId":83763,"spellId":122386,"name":"Ironscale Leg Armor","icon":"inv_misc_armorkit_mop_01","type":9,"stats":[0,0,430,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4825,"itemId":82445,"spellId":122392,"name":"Greater Cerulean Spellthread","icon":"inv_belt_42","type":9,"stats":[0,0,0,285,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4826,"itemId":82444,"spellId":122393,"name":"Greater Pearlescent Spellthread","icon":"inv_belt_42c","type":9,"stats":[0,0,0,285,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4869,"itemId":85559,"spellId":124091,"name":"Sha Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4870,"itemId":85570,"spellId":124116,"name":"Toughened Leg Armor","icon":"inv_misc_armorkit_mop_00","type":9,"stats":[0,0,250,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4871,"itemId":85569,"spellId":124118,"name":"Sha-Touched Leg Armor","icon":"inv_misc_cataclysmarmorkit_01","type":9,"stats":[0,170,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4872,"itemId":85568,"spellId":124119,"name":"Brutal Leg Armor","icon":"inv_misc_armorkit_mop_02","type":9,"stats":[170,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4873,"itemId":43097,"spellId":57683,"name":"Fur Lining - Agility","icon":"inv_bracer_08","type":6,"stats":[0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4874,"spellId":124549,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4875,"spellId":124551,"name":"Fur Lining - Agility","icon":"trade_engraving","type":6,"stats":[0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4877,"spellId":124552,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4878,"spellId":124553,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4879,"spellId":124554,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4880,"spellId":124559,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,285,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4881,"spellId":124561,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[285,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4882,"spellId":124563,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,430,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4883,"spellId":124564,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,95,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4884,"spellId":124565,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,143,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4885,"spellId":124566,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[95,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4886,"spellId":124567,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,37,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4887,"spellId":124568,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,55,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4888,"spellId":124569,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[37,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4892,"spellId":125481,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4893,"spellId":125482,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4894,"spellId":125483,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4895,"spellId":125496,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,285,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4896,"spellId":125497,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,285,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4897,"spellId":126392,"name":"Goblin Glider","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4898,"spellId":126731,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4907,"itemId":87580,"spellId":127015,"name":"Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[120,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4908,"itemId":87579,"spellId":127014,"name":"Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,120,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4909,"itemId":87578,"spellId":127013,"name":"Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,0,0,120,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4910,"itemId":87577,"spellId":127012,"name":"Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,0,180,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4912,"itemId":87581,"spellId":113048,"name":"Secret Ox Horn Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,780,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4913,"itemId":87585,"spellId":113047,"name":"Secret Tiger Fang Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[520,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4914,"itemId":87584,"spellId":113046,"name":"Secret Tiger Claw Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,520,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4915,"itemId":87582,"spellId":113045,"name":"Secret Crane Wing Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,0,520,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4916,"itemId":87583,"spellId":113044,"name":"Secret Serpent Pearl Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,0,0,520,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4918,"itemId":86597,"spellId":128286,"name":"Living Steel Weapon Chain","icon":"inv_misc_steelweaponchain","type":13,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4992,"itemId":89717,"spellId":130749,"name":"Enchant Bracer - Exceptional Strength (Scaling)","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4993,"itemId":89737,"spellId":130758,"name":"Enchant Shield - Greater Parry","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5000,"itemId":87748,"spellId":109099,"name":"Watergliding Jets","icon":"inv_scroll_03","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"requiredProfession":4}, +{"effectId":5001,"itemId":86599,"spellId":131464,"name":"Ghost Iron Shield Spike","icon":"inv_shield_63","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5003,"itemId":82443,"spellId":131862,"name":"Cerulean Spellthread","icon":"inv_misc_thread_eternium","type":9,"stats":[0,0,0,170,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5004,"itemId":82442,"spellId":131863,"name":"Pearlescent Spellthread","icon":"inv_bracer_69","type":9,"stats":[0,0,0,170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5029,"spellId":139038,"name":"Custom - Jaina - Crackling Lightning","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5035,"itemId":95349,"spellId":139631,"name":"Enchant Weapon - Glorious Tyranny","icon":"inv_misc_enchantedscroll","type":13,"stats":[600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5055,"spellId":141167,"name":"Greater Crane Wing Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5056,"spellId":141168,"name":"Enchant Cloak - Superior Intellect","icon":"trade_engraving","type":4,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5057,"spellId":141170,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5058,"spellId":141173,"name":"Enchant Gloves - Greater Haste","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5059,"spellId":141174,"name":"Greater Cerulean Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,22,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5060,"spellId":141175,"name":"Enchant Boots - Pandaren's Step","icon":"trade_engraving","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5061,"spellId":141176,"name":"Enchant Off-Hand - Major Intellect","icon":"trade_engraving","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5062,"spellId":141177,"name":"Enchant Weapon - Jade Spirit","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5063,"spellId":141330,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":5076,"spellId":141445,"name":"Enchant Chest - Super Resilience","icon":"trade_engraving","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5080,"spellId":141862,"name":"Enchant Gloves - Superior Mastery","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5081,"spellId":141868,"name":"Enchant Bracer - Mastery","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5091,"spellId":141971,"name":"Greater Crane Wing Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,11,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5092,"spellId":141973,"name":"Enchant Cloak - Superior Intellect","icon":"trade_engraving","type":4,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5093,"spellId":141974,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5094,"spellId":141975,"name":"Enchant Gloves - Greater Haste","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5095,"spellId":141976,"name":"Greater Cerulean Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5096,"spellId":141977,"name":"Enchant Boots - Pandaren's Step","icon":"trade_engraving","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5097,"spellId":141978,"name":"Enchant Off-Hand - Major Intellect","icon":"trade_engraving","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5098,"spellId":141981,"name":"Enchant Weapon - Jade Spirit","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5099,"spellId":141982,"name":"Enchant Chest - Super Resilience","icon":"trade_engraving","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5100,"spellId":141983,"name":"Enchant Gloves - Superior Mastery","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5101,"spellId":141984,"name":"Enchant Bracer - Mastery","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5110,"spellId":142173,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":5111,"spellId":142175,"name":"Enchant Chest - Glorious Stats","icon":"trade_engraving","type":5,"stats":[80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5112,"spellId":142177,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5113,"spellId":142178,"name":"Enchant Ring - Greater Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":5124,"itemId":98164,"spellId":142469,"name":"Enchant Weapon - Spirit of Conquest","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5125,"itemId":98163,"spellId":142468,"name":"Enchant Weapon - Bloody Dancing Steel","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5183,"itemId":22531,"spellId":27911,"name":"Enchant Bracer - Superior Healing","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5184,"itemId":22534,"spellId":27917,"name":"Enchant Bracer - Spellpower","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5237,"itemId":35431,"spellId":33990,"name":"Enchant Chest - Major Spirit","icon":"inv_chest_cloth_29","type":5,"stats":[0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5250,"itemId":35442,"spellId":33995,"name":"Enchant Gloves - Major Strength","icon":"inv_gauntlets_26","type":7,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5255,"itemId":35438,"spellId":33996,"name":"Enchant Gloves - Assault","icon":"inv_gauntlets_31","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5257,"itemId":38938,"spellId":34002,"name":"Enchant Bracer - Lesser Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5258,"itemId":35432,"spellId":34004,"name":"Enchant Cloak - Greater Agility","icon":"inv_misc_cape_18","type":4,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5259,"itemId":38967,"spellId":44529,"name":"Enchant Gloves - Major Agility","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5260,"itemId":35500,"spellId":46594,"name":"Enchant Chest - Dodge","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1} ], "gems":[ {"id":49110,"name":"Nightmare Tear","icon":"inv_misc_gem_pearl_12","color":8,"stats":[10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":52070,"name":"Strange Gem","icon":"inv_jewelcrafting_dragonseye02","color":7,"stats":[0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"requiredProfession":7}, +{"id":52070,"name":"Strange Gem","icon":"inv_jewelcrafting_dragonseye02","color":4,"stats":[0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52081,"name":"Bold Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52082,"name":"Delicate Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52083,"name":"Flashing Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52083,"name":"Flashing Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52084,"name":"Brilliant Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52085,"name":"Precise Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52085,"name":"Precise Carnelian","icon":"inv_misc_cutgemnormala","color":2,"stats":[0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52086,"name":"Solid Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52087,"name":"Sparkling Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52088,"name":"Stormy Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52089,"name":"Rigid Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52090,"name":"Subtle Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52091,"name":"Smooth Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52087,"name":"Sparkling Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52088,"name":"Stormy Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52089,"name":"Rigid Zephyrite","icon":"inv_misc_cutgemnormal4a","color":3,"stats":[0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52090,"name":"Subtle Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52091,"name":"Smooth Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52092,"name":"Mystic Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52093,"name":"Quick Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52094,"name":"Fractured Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52093,"name":"Quick Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52094,"name":"Fractured Alicite","icon":"inv_misc_cutgemnormal6a","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52095,"name":"Sovereign Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[15,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52096,"name":"Shifting Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52097,"name":"Defender's Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,23,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52097,"name":"Defender's Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,23,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52098,"name":"Timeless Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52099,"name":"Guardian's Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,23,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52100,"name":"Purified Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52101,"name":"Etched Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[15,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52102,"name":"Glinting Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52103,"name":"Retaliating Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,0,0,15,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52104,"name":"Veiled Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52105,"name":"Accurate Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52106,"name":"Polished Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52107,"name":"Resolute Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52108,"name":"Inscribed Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52109,"name":"Deadly Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52110,"name":"Potent Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52111,"name":"Fierce Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52112,"name":"Deft Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52113,"name":"Reckless Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52114,"name":"Skillful Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52115,"name":"Adept Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52116,"name":"Fine Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52117,"name":"Artful Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52118,"name":"Keen Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52119,"name":"Regal Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52120,"name":"Nimble Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52121,"name":"Jagged Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52122,"name":"Piercing Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52099,"name":"Guardian's Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,23,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52100,"name":"Purified Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,15,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52101,"name":"Etched Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[15,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52102,"name":"Glinting Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,15,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52103,"name":"Retaliating Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,0,0,30,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52104,"name":"Veiled Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,15,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52105,"name":"Accurate Nightstone","icon":"inv_misc_cutgemnormal2a","color":7,"stats":[0,0,0,0,0,30,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52106,"name":"Polished Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52107,"name":"Resolute Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52108,"name":"Inscribed Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52109,"name":"Deadly Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52110,"name":"Potent Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52111,"name":"Fierce Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52112,"name":"Deft Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52113,"name":"Reckless Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52114,"name":"Skillful Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[15,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52115,"name":"Adept Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,15,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52116,"name":"Fine Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52117,"name":"Artful Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,15,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52118,"name":"Keen Hessonite","icon":"inv_misc_cutgemnormal3a","color":6,"stats":[0,0,0,0,0,0,0,0,30,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52119,"name":"Regal Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52120,"name":"Nimble Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,30,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52121,"name":"Jagged Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52122,"name":"Piercing Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52123,"name":"Steady Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52124,"name":"Forceful Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52125,"name":"Lightning Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52126,"name":"Puissant Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52127,"name":"Zen Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52128,"name":"Sensei's Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,15,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52129,"name":"Perfect Sensei's Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,17,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52130,"name":"Perfect Zen Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,17,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52131,"name":"Perfect Puissant Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52132,"name":"Perfect Lightning Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52133,"name":"Perfect Forceful Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52124,"name":"Forceful Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52125,"name":"Lightning Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,30,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52126,"name":"Puissant Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,23,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52127,"name":"Zen Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,30,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52128,"name":"Sensei's Jasper","icon":"inv_misc_cutgemnormal5a","color":5,"stats":[0,0,0,0,0,30,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52129,"name":"Perfect Sensei's Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,35,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52130,"name":"Perfect Zen Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,35,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52131,"name":"Perfect Puissant Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52132,"name":"Perfect Lightning Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,35,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52133,"name":"Perfect Forceful Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52134,"name":"Perfect Steady Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52135,"name":"Perfect Piercing Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52136,"name":"Perfect Jagged Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52137,"name":"Perfect Nimble Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,17,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52138,"name":"Perfect Regal Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52139,"name":"Perfect Keen Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52140,"name":"Perfect Artful Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52141,"name":"Perfect Fine Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52142,"name":"Perfect Adept Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52143,"name":"Perfect Skillful Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52144,"name":"Perfect Reckless Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52145,"name":"Perfect Deft Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52146,"name":"Perfect Fierce Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52147,"name":"Perfect Potent Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52148,"name":"Perfect Deadly Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52149,"name":"Perfect Inscribed Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52150,"name":"Perfect Resolute Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52151,"name":"Perfect Polished Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52152,"name":"Perfect Accurate Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,0,0,17,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52153,"name":"Perfect Veiled Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52154,"name":"Perfect Retaliating Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,0,0,17,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52155,"name":"Perfect Glinting Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,18,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52156,"name":"Perfect Etched Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[18,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52157,"name":"Perfect Purified Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52158,"name":"Perfect Guardian's Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,26,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52135,"name":"Perfect Piercing Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52136,"name":"Perfect Jagged Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52137,"name":"Perfect Nimble Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,0,0,0,35,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52138,"name":"Perfect Regal Jasper","icon":"inv_misc_cutgemperfect5","color":5,"stats":[0,0,26,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52139,"name":"Perfect Keen Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,35,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52140,"name":"Perfect Artful Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52141,"name":"Perfect Fine Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52142,"name":"Perfect Adept Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52143,"name":"Perfect Skillful Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52144,"name":"Perfect Reckless Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52145,"name":"Perfect Deft Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52146,"name":"Perfect Fierce Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52147,"name":"Perfect Potent Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,18,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52148,"name":"Perfect Deadly Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52149,"name":"Perfect Inscribed Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[18,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52150,"name":"Perfect Resolute Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52151,"name":"Perfect Polished Hessonite","icon":"inv_misc_cutgemperfect","color":6,"stats":[0,18,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52152,"name":"Perfect Accurate Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,0,0,35,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52153,"name":"Perfect Veiled Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,18,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52154,"name":"Perfect Retaliating Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,0,0,35,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52155,"name":"Perfect Glinting Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,17,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52156,"name":"Perfect Etched Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[18,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52157,"name":"Perfect Purified Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,0,18,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52158,"name":"Perfect Guardian's Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,26,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52159,"name":"Perfect Timeless Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52160,"name":"Perfect Defender's Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,26,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52161,"name":"Perfect Shifting Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52160,"name":"Perfect Defender's Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,0,26,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52161,"name":"Perfect Shifting Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52162,"name":"Perfect Sovereign Nightstone","icon":"inv_misc_cutgemperfect2","color":7,"stats":[18,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52163,"name":"Perfect Fractured Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52164,"name":"Perfect Quick Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52163,"name":"Perfect Fractured Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52164,"name":"Perfect Quick Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52165,"name":"Perfect Mystic Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52166,"name":"Perfect Smooth Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52167,"name":"Perfect Subtle Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52168,"name":"Perfect Rigid Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52169,"name":"Perfect Stormy Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52170,"name":"Perfect Sparkling Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52166,"name":"Perfect Smooth Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52167,"name":"Perfect Subtle Alicite","icon":"inv_misc_cutgemperfect6","color":4,"stats":[0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52168,"name":"Perfect Rigid Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52169,"name":"Perfect Stormy Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52170,"name":"Perfect Sparkling Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52171,"name":"Perfect Solid Zephyrite","icon":"inv_misc_cutgemperfect3","color":3,"stats":[0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52172,"name":"Perfect Precise Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52172,"name":"Perfect Precise Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52173,"name":"Perfect Brilliant Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52174,"name":"Perfect Flashing Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":52174,"name":"Perfect Flashing Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52175,"name":"Perfect Delicate Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":52176,"name":"Perfect Bold Carnelian","icon":"inv_misc_cutgemperfect4","color":2,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":52203,"name":"Accurate Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52204,"name":"Adept Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52205,"name":"Artful Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52203,"name":"Accurate Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,0,0,40,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52204,"name":"Adept Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52205,"name":"Artful Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52206,"name":"Bold Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52207,"name":"Brilliant Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52208,"name":"Reckless Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52209,"name":"Deadly Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52210,"name":"Defender's Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,30,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52211,"name":"Deft Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52208,"name":"Reckless Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52209,"name":"Deadly Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52210,"name":"Defender's Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,30,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52211,"name":"Deft Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52212,"name":"Delicate Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52213,"name":"Etched Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52214,"name":"Fierce Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52215,"name":"Fine Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52216,"name":"Flashing Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52217,"name":"Veiled Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52218,"name":"Forceful Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52219,"name":"Fractured Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52220,"name":"Glinting Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52221,"name":"Guardian's Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52222,"name":"Inscribed Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52223,"name":"Jagged Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52224,"name":"Keen Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52225,"name":"Lightning Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52213,"name":"Etched Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[20,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52214,"name":"Fierce Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52215,"name":"Fine Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52216,"name":"Flashing Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52217,"name":"Veiled Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,20,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52218,"name":"Forceful Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52219,"name":"Fractured Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52220,"name":"Glinting Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,20,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52221,"name":"Guardian's Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,30,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52222,"name":"Inscribed Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52223,"name":"Jagged Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52224,"name":"Keen Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,40,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52225,"name":"Lightning Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,40,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52226,"name":"Mystic Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52227,"name":"Nimble Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52228,"name":"Piercing Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52229,"name":"Polished Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52230,"name":"Precise Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52227,"name":"Nimble Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52228,"name":"Piercing Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52229,"name":"Polished Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52230,"name":"Precise Inferno Ruby","icon":"inv_misc_cutgemsuperior6","color":2,"stats":[0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52231,"name":"Puissant Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52232,"name":"Quick Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52233,"name":"Regal Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52234,"name":"Retaliating Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,0,0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52235,"name":"Rigid Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52236,"name":"Purified Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52237,"name":"Sensei's Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52232,"name":"Quick Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52233,"name":"Regal Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52234,"name":"Retaliating Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,0,0,40,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52235,"name":"Rigid Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52236,"name":"Purified Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,0,20,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52237,"name":"Sensei's Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,40,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52238,"name":"Shifting Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52239,"name":"Potent Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52240,"name":"Skillful Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52241,"name":"Smooth Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52239,"name":"Potent Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52240,"name":"Skillful Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52241,"name":"Smooth Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52242,"name":"Solid Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52243,"name":"Sovereign Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[20,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52244,"name":"Sparkling Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52244,"name":"Sparkling Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52245,"name":"Steady Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52246,"name":"Stormy Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52247,"name":"Subtle Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52246,"name":"Stormy Ocean Sapphire","icon":"inv_misc_cutgemsuperior2","color":3,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52247,"name":"Subtle Amberjewel","icon":"inv_misc_cutgemsuperior","color":4,"stats":[0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52248,"name":"Timeless Demonseye","icon":"inv_misc_cutgemsuperior3","color":7,"stats":[0,0,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52249,"name":"Resolute Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":52250,"name":"Zen Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52249,"name":"Resolute Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52250,"name":"Zen Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,40,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":52255,"name":"Bold Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":52257,"name":"Brilliant Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":52258,"name":"Delicate Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":52259,"name":"Flashing Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52260,"name":"Precise Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52260,"name":"Precise Chimera's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":52261,"name":"Solid Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52262,"name":"Sparkling Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52263,"name":"Stormy Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52264,"name":"Rigid Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52265,"name":"Subtle Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52266,"name":"Smooth Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52262,"name":"Sparkling Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52263,"name":"Stormy Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52264,"name":"Rigid Chimera's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52265,"name":"Subtle Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52266,"name":"Smooth Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":52267,"name":"Mystic Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52268,"name":"Quick Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52269,"name":"Fractured Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":52289,"name":"Fleet Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52291,"name":"Chaotic Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52292,"name":"Bracing Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52293,"name":"Eternal Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52294,"name":"Austere Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52295,"name":"Effulgent Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52296,"name":"Ember Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52297,"name":"Revitalizing Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52298,"name":"Destructive Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52299,"name":"Powerful Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52300,"name":"Enigmatic Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52301,"name":"Impassive Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":52302,"name":"Forlorn Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":52268,"name":"Quick Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52269,"name":"Fractured Chimera's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":52289,"name":"Fleet Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52291,"name":"Chaotic Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52292,"name":"Bracing Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52293,"name":"Eternal Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52294,"name":"Austere Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52295,"name":"Effulgent Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52296,"name":"Ember Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52297,"name":"Revitalizing Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52298,"name":"Destructive Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52299,"name":"Powerful Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52300,"name":"Enigmatic Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52301,"name":"Impassive Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":52302,"name":"Forlorn Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":54616,"name":"Stackable Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":59477,"name":"Subtle Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59478,"name":"Smooth Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59479,"name":"Quick Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59480,"name":"Fractured Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59489,"name":"Precise Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59491,"name":"Flashing Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59493,"name":"Rigid Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":59496,"name":"Sparkling Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, +{"id":59477,"name":"Subtle Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59478,"name":"Smooth Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59479,"name":"Quick Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59480,"name":"Fractured Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59489,"name":"Precise Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59491,"name":"Flashing Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59493,"name":"Rigid Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":59496,"name":"Sparkling Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":68356,"name":"Willful Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":68357,"name":"Lucent Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":68358,"name":"Resplendent Ember Topaz","icon":"inv_misc_cutgemsuperior4","color":6,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":68660,"name":"Mystic Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0],"phase":1,"quality":3,"unique":true}, -{"id":68741,"name":"Vivid Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":68778,"name":"Agile Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":68779,"name":"Reverberating Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":68780,"name":"Burning Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":69922,"name":"Brilliant Blazejewel","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":69923,"name":"Delicate Blazejewel","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":71817,"name":"Rigid Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71818,"name":"Stormy Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71819,"name":"Sparkling Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":68660,"name":"Mystic Cogwheel","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":68741,"name":"Vivid Dream Emerald","icon":"inv_misc_cutgemsuperior5","color":5,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":68778,"name":"Agile Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":68779,"name":"Reverberating Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":68780,"name":"Burning Shadowspirit Diamond","icon":"inv_misc_metagem_b","color":1,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":69922,"name":"Brilliant Blazejewel","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":69923,"name":"Delicate Blazejewel","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71817,"name":"Rigid Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71818,"name":"Stormy Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71819,"name":"Sparkling Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71820,"name":"Solid Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71822,"name":"Misty Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,25,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71823,"name":"Piercing Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71824,"name":"Lightning Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71825,"name":"Sensei's Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71826,"name":"Infused Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71827,"name":"Zen Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71828,"name":"Balanced Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71829,"name":"Vivid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71830,"name":"Turbid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71831,"name":"Radiant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71832,"name":"Shattered Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71833,"name":"Energized Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71834,"name":"Jagged Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71835,"name":"Regal Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71836,"name":"Forceful Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71837,"name":"Nimble Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71838,"name":"Puissant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71822,"name":"Misty Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71823,"name":"Piercing Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71824,"name":"Lightning Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71825,"name":"Sensei's Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71826,"name":"Infused Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71827,"name":"Zen Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,50,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71828,"name":"Balanced Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71829,"name":"Vivid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71830,"name":"Turbid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71831,"name":"Radiant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71832,"name":"Shattered Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71833,"name":"Energized Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71834,"name":"Jagged Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71835,"name":"Regal Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71836,"name":"Forceful Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71837,"name":"Nimble Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71838,"name":"Puissant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71839,"name":"Steady Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71840,"name":"Deadly Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71841,"name":"Crafty Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,25,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71842,"name":"Potent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71843,"name":"Inscribed Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71844,"name":"Polished Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71845,"name":"Resolute Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71846,"name":"Stalwart Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71847,"name":"Champion's Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71848,"name":"Deft Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71849,"name":"Wicked Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71850,"name":"Reckless Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71851,"name":"Fierce Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71852,"name":"Adept Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71853,"name":"Keen Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71854,"name":"Artful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71855,"name":"Fine Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71856,"name":"Skillful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71840,"name":"Deadly Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71841,"name":"Crafty Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71842,"name":"Potent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71843,"name":"Inscribed Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71844,"name":"Polished Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71845,"name":"Resolute Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71846,"name":"Stalwart Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71847,"name":"Champion's Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71848,"name":"Deft Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71849,"name":"Wicked Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71850,"name":"Reckless Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71851,"name":"Fierce Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71852,"name":"Adept Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71853,"name":"Keen Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71854,"name":"Artful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71855,"name":"Fine Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71856,"name":"Skillful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71857,"name":"Lucent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71858,"name":"Tenuous Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71858,"name":"Tenuous Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71859,"name":"Willful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71860,"name":"Splendid Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71860,"name":"Splendid Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71861,"name":"Resplendent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71862,"name":"Glinting Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71863,"name":"Accurate Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,0,0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71864,"name":"Veiled Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71865,"name":"Retaliating Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,0,0,25,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71866,"name":"Etched Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[25,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71867,"name":"Mysterious Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71868,"name":"Purified Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71862,"name":"Glinting Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,25,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71863,"name":"Accurate Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,0,0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71864,"name":"Veiled Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71865,"name":"Retaliating Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,0,0,50,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71866,"name":"Etched Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[25,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71867,"name":"Mysterious Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71868,"name":"Purified Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71869,"name":"Shifting Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,25,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71870,"name":"Guardian's Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,37,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71870,"name":"Guardian's Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,37,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71871,"name":"Timeless Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,37,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71872,"name":"Defender's Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,37,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71872,"name":"Defender's Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,37,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71873,"name":"Sovereign Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[25,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71874,"name":"Smooth Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71875,"name":"Subtle Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71876,"name":"Quick Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71877,"name":"Fractured Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71874,"name":"Smooth Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71875,"name":"Subtle Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71876,"name":"Quick Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71877,"name":"Fractured Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71878,"name":"Mystic Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71879,"name":"Delicate Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71880,"name":"Precise Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71880,"name":"Precise Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71881,"name":"Brilliant Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":71882,"name":"Flashing Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":71882,"name":"Flashing Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":71883,"name":"Bold Queen's Garnet","icon":"inv_misc_epicgem_01","color":2,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77130,"name":"Balanced Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77131,"name":"Infused Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":76502,"name":"Rigid Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_cut_blue","color":3,"stats":[0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76504,"name":"Stormy Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_cut_blue","color":3,"stats":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76505,"name":"Sparkling Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_cut_blue","color":3,"stats":[0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76506,"name":"Solid Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_cut_blue","color":3,"stats":[0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76507,"name":"Misty Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,120,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76508,"name":"Piercing Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76509,"name":"Lightning Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,120,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76510,"name":"Sensei's Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,120,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76511,"name":"Effulgent Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[60,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76512,"name":"Zen Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,120,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76513,"name":"Balanced Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76514,"name":"Vivid Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76515,"name":"Turbid Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76517,"name":"Radiant Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[60,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76518,"name":"Shattered Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[60,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76519,"name":"Energized Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,120,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76520,"name":"Jagged Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76521,"name":"Regal Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76522,"name":"Forceful Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76523,"name":"Confounded Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76524,"name":"Puissant Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76525,"name":"Steady Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76526,"name":"Deadly Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,60,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76527,"name":"Crafty Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,120,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76528,"name":"Potent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,60,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76529,"name":"Inscribed Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[60,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76530,"name":"Polished Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,60,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76531,"name":"Resolute Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76532,"name":"Stalwart Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76533,"name":"Champion's Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[60,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76534,"name":"Deft Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,60,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76535,"name":"Wicked Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76536,"name":"Reckless Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,60,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76537,"name":"Fierce Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[60,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76538,"name":"Adept Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,60,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76539,"name":"Keen Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,120,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76540,"name":"Artful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,60,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76541,"name":"Fine Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76542,"name":"Skillful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[60,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76543,"name":"Lucent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76544,"name":"Tenuous Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76545,"name":"Willful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76546,"name":"Splendid Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76547,"name":"Resplendent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76548,"name":"Glinting Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,60,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76549,"name":"Accurate Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,0,0,120,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76550,"name":"Veiled Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,60,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76551,"name":"Retaliating Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,0,0,120,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76552,"name":"Etched Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[60,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76553,"name":"Mysterious Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76554,"name":"Purified Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,60,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76555,"name":"Shifting Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,60,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76556,"name":"Guardian's Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,90,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76557,"name":"Timeless Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,90,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76558,"name":"Defender's Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,90,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76559,"name":"Sovereign Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[60,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76560,"name":"Delicate Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_cut_red","color":2,"stats":[0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76561,"name":"Precise Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_cut_red","color":2,"stats":[0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76562,"name":"Brilliant Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_cut_red","color":2,"stats":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76563,"name":"Flashing Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_cut_red","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76564,"name":"Bold Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_cut_red","color":2,"stats":[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76565,"name":"Smooth Sunstone","icon":"inv_misc_gem_x4_uncommon_cut_yellow","color":4,"stats":[0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76566,"name":"Subtle Sunstone","icon":"inv_misc_gem_x4_uncommon_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76567,"name":"Quick Sunstone","icon":"inv_misc_gem_x4_uncommon_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76568,"name":"Fractured Sunstone","icon":"inv_misc_gem_x4_uncommon_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76569,"name":"Mystic Sunstone","icon":"inv_misc_gem_x4_uncommon_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":76570,"name":"Perfect Rigid Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_perfectcut_blue","color":3,"stats":[0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76571,"name":"Perfect Stormy Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_perfectcut_blue","color":3,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76572,"name":"Perfect Sparkling Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_perfectcut_blue","color":3,"stats":[0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76573,"name":"Perfect Solid Lapis Lazuli","icon":"inv_misc_gem_x4_uncommon_perfectcut_blue","color":3,"stats":[0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76574,"name":"Perfect Misty Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76575,"name":"Perfect Piercing Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76576,"name":"Perfect Lightning Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76577,"name":"Perfect Sensei's Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76578,"name":"Perfect Effulgent Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[80,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76579,"name":"Perfect Zen Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,160,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76580,"name":"Perfect Balanced Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76581,"name":"Perfect Vivid Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76582,"name":"Perfect Turbid Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76583,"name":"Perfect Radiant Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76584,"name":"Perfect Shattered Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[80,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76585,"name":"Perfect Energized Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76586,"name":"Perfect Jagged Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76587,"name":"Perfect Regal Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76588,"name":"Perfect Forceful Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76589,"name":"Perfect Confounded Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76590,"name":"Perfect Puissant Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76591,"name":"Perfect Steady Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76592,"name":"Perfect Deadly Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,80,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76593,"name":"Perfect Crafty Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76594,"name":"Perfect Potent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,80,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76595,"name":"Perfect Inscribed Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76596,"name":"Perfect Polished Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76597,"name":"Perfect Resolute Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76598,"name":"Perfect Stalwart Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76599,"name":"Perfect Champion's Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76600,"name":"Perfect Deft Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76601,"name":"Perfect Wicked Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76602,"name":"Perfect Reckless Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,80,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76603,"name":"Perfect Fierce Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[80,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76604,"name":"Perfect Adept Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76605,"name":"Perfect Keen Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76606,"name":"Perfect Artful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,80,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76607,"name":"Perfect Fine Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76608,"name":"Perfect Skillful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76609,"name":"Perfect Lucent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76610,"name":"Perfect Tenuous Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76611,"name":"Perfect Willful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76612,"name":"Perfect Splendid Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76613,"name":"Perfect Resplendent Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76614,"name":"Perfect Glinting Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,80,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76615,"name":"Perfect Accurate Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76616,"name":"Perfect Veiled Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,0,80,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76617,"name":"Perfect Retaliating Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76618,"name":"Perfect Etched Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[80,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76619,"name":"Perfect Mysterious Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[80,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76620,"name":"Perfect Purified Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,0,80,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76621,"name":"Perfect Shifting Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,80,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76622,"name":"Perfect Guardian's Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,120,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76623,"name":"Perfect Timeless Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,120,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76624,"name":"Perfect Defender's Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[0,0,120,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76625,"name":"Perfect Sovereign Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[80,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76626,"name":"Perfect Delicate Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_perfectcut_red","color":2,"stats":[0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76627,"name":"Perfect Precise Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_perfectcut_red","color":2,"stats":[0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76628,"name":"Perfect Brilliant Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_perfectcut_red","color":2,"stats":[0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76629,"name":"Perfect Flashing Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_perfectcut_red","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76630,"name":"Perfect Bold Pandarian Garnet","icon":"inv_misc_gem_x4_uncommon_perfectcut_red","color":2,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76631,"name":"Perfect Smooth Sunstone","icon":"inv_misc_gem_x4_uncommon_perfectcut_yellow","color":4,"stats":[0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76632,"name":"Perfect Subtle Sunstone","icon":"inv_misc_gem_x4_uncommon_perfectcut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76633,"name":"Perfect Quick Sunstone","icon":"inv_misc_gem_x4_uncommon_perfectcut_yellow","color":4,"stats":[0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76634,"name":"Perfect Fractured Sunstone","icon":"inv_misc_gem_x4_uncommon_perfectcut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76635,"name":"Perfect Mystic Sunstone","icon":"inv_misc_gem_x4_uncommon_perfectcut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76636,"name":"Rigid River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76637,"name":"Stormy River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76638,"name":"Sparkling River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76639,"name":"Solid River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76640,"name":"Misty Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76641,"name":"Piercing Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76642,"name":"Lightning Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76643,"name":"Sensei's Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76644,"name":"Effulgent Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[80,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76645,"name":"Zen Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,160,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76646,"name":"Balanced Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76647,"name":"Vivid Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76648,"name":"Turbid Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76649,"name":"Radiant Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76650,"name":"Shattered Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[80,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76651,"name":"Energized Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76652,"name":"Jagged Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76653,"name":"Regal Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76654,"name":"Forceful Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76655,"name":"Confounded Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76656,"name":"Puissant Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76657,"name":"Steady Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76658,"name":"Deadly Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,80,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76659,"name":"Crafty Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,160,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76660,"name":"Potent Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,80,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76661,"name":"Inscribed Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76662,"name":"Polished Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76663,"name":"Resolute Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76664,"name":"Stalwart Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76665,"name":"Champion's Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76666,"name":"Deft Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,80,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76667,"name":"Wicked Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76668,"name":"Reckless Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,80,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76669,"name":"Fierce Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[80,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76670,"name":"Adept Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76671,"name":"Keen Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76672,"name":"Artful Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,80,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76673,"name":"Fine Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76674,"name":"Skillful Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76675,"name":"Lucent Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76676,"name":"Tenuous Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76677,"name":"Willful Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76678,"name":"Splendid Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76679,"name":"Resplendent Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76680,"name":"Glinting Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,80,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76681,"name":"Accurate Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,0,0,0,160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76682,"name":"Veiled Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,0,80,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76683,"name":"Retaliating Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,0,0,0,160,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76684,"name":"Etched Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[80,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76685,"name":"Mysterious Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[80,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76686,"name":"Purified Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,0,80,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76687,"name":"Shifting Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,80,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76688,"name":"Guardian's Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,120,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76689,"name":"Timeless Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,120,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76690,"name":"Defender's Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,120,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76691,"name":"Sovereign Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[80,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76692,"name":"Delicate Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76693,"name":"Precise Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76694,"name":"Brilliant Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76695,"name":"Flashing Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76696,"name":"Bold Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76697,"name":"Smooth Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76698,"name":"Subtle Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76699,"name":"Quick Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76700,"name":"Fractured Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76701,"name":"Mystic Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76714,"name":"Perfect Rigid River's Heart","icon":"inv_misc_gear_08","color":3,"stats":[0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":76879,"name":"Ember Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76884,"name":"Agile Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76885,"name":"Burning Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76886,"name":"Reverberating Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76887,"name":"Fleet Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76888,"name":"Revitalizing Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76890,"name":"Destructive Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76891,"name":"Powerful Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76892,"name":"Enigmatic Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76893,"name":"Impassive Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76894,"name":"Forlorn Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76895,"name":"Austere Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76896,"name":"Eternal Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,0,0,0,0,0,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":76897,"name":"Effulgent Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":77130,"name":"Balanced Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77131,"name":"Infused Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":77132,"name":"Lucent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77133,"name":"Mysterious Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77133,"name":"Mysterious Shadow Spinel","icon":"inv_misc_epicgem_05","color":7,"stats":[25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":77134,"name":"Mystic Lightstone","icon":"inv_misc_epicgem_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":77136,"name":"Resplendent Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77137,"name":"Shattered Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77138,"name":"Splendid Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77137,"name":"Shattered Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77138,"name":"Splendid Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":77139,"name":"Steady Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77140,"name":"Stormy Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77141,"name":"Tenuous Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77142,"name":"Turbid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77143,"name":"Vivid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77140,"name":"Stormy Deepholm Iolite","icon":"inv_misc_epicgem_02","color":3,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77141,"name":"Tenuous Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77142,"name":"Turbid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77143,"name":"Vivid Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":77144,"name":"Willful Lava Coral","icon":"inv_misc_epicgem_04","color":6,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":77154,"name":"Radiant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],"quality":4} +{"id":77154,"name":"Radiant Elven Peridot","icon":"inv_misc_epicgem_06","color":5,"stats":[25,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":77540,"name":"Subtle Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77541,"name":"Smooth Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77542,"name":"Quick Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77543,"name":"Precise Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77544,"name":"Flashing Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77545,"name":"Rigid Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77546,"name":"Sparkling Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":77547,"name":"Fractured Tinker's Gear","icon":"inv_misc_enggizmos_30","color":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":83141,"name":"Bold Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83142,"name":"Quick Serpent's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83143,"name":"Fractured Serpent's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83144,"name":"Rigid Serpent's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83145,"name":"Subtle Serpent's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83146,"name":"Smooth Serpent's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83147,"name":"Precise Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83148,"name":"Solid Serpent's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83149,"name":"Sparkling Serpent's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83150,"name":"Brilliant Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83151,"name":"Delicate Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":83152,"name":"Flashing Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":88911,"name":"Balanced Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88912,"name":"Effulgent Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[100,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88913,"name":"Energized Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,200,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88914,"name":"Forceful Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88915,"name":"Jagged Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88916,"name":"Lightning Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,200,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88917,"name":"Misty Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,200,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88918,"name":"Confounded Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88919,"name":"Piercing Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88920,"name":"Puissant Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88921,"name":"Radiant Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[100,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88922,"name":"Regal Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88923,"name":"Sensei's Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,200,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88924,"name":"Shattered Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[100,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88925,"name":"Steady Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88926,"name":"Turbid Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88927,"name":"Vivid Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88928,"name":"Zen Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,200,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88930,"name":"Adept Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,100,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88931,"name":"Artful Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,100,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88932,"name":"Champion's Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[100,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88933,"name":"Crafty Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,200,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88934,"name":"Deadly Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,100,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88935,"name":"Deft Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,100,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88936,"name":"Fierce Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[100,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88937,"name":"Fine Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88938,"name":"Inscribed Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[100,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88939,"name":"Keen Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,200,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88940,"name":"Lucent Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88941,"name":"Polished Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,100,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88942,"name":"Potent Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,100,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88943,"name":"Reckless Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,100,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88944,"name":"Resolute Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88945,"name":"Resplendent Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88946,"name":"Skillful Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[100,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88947,"name":"Splendid Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88948,"name":"Stalwart Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,0,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88949,"name":"Tenuous Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88950,"name":"Wicked Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,200,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88951,"name":"Willful Sardonyx","icon":"inv_misc_gem_x4_uncommon_cut_orange","color":6,"stats":[0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88952,"name":"Accurate Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,0,0,200,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88953,"name":"Defender's Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,150,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88954,"name":"Etched Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[100,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88955,"name":"Glinting Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,100,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88956,"name":"Guardian's Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,150,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88958,"name":"Purified Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,100,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88959,"name":"Retaliating Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,0,0,200,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88960,"name":"Shifting Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,100,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88961,"name":"Sovereign Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[100,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88962,"name":"Timeless Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,150,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88963,"name":"Veiled Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[0,0,0,100,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":88987,"name":"Mysterious Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[100,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":89674,"name":"Tense Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":89675,"name":"Tense Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":89676,"name":"Perfect Tense Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":89677,"name":"Tense Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":89678,"name":"Assassin's Roguestone","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":89679,"name":"Perfect Assassin's Roguestone","icon":"inv_misc_gem_x4_uncommon_perfectcut_purple","color":7,"stats":[80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":89680,"name":"Assassin's Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":89681,"name":"Assassin's Zyanite","icon":"inv_misc_gem_x4_uncommon_cut_purple","color":7,"stats":[100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":89873,"name":"Crystallized Dread","icon":"inv_legendary_breathofblackprince_int","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":89881,"name":"Crystallized Terror","icon":"inv_legendary_breathofblackprince_agi","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":89882,"name":"Crystallized Horror","icon":"inv_legendary_breathofblackprince_str","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":93404,"name":"Resplendent Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":6,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93405,"name":"Lucent Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":6,"stats":[0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93406,"name":"Willful Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":6,"stats":[0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93408,"name":"Tense Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":7,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93409,"name":"Assassin's Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":7,"stats":[160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93410,"name":"Mysterious Serpent's Eye","icon":"inv_jewelcrafting_dragonseye05","color":7,"stats":[160,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":93705,"name":"Nimble Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":93706,"name":"Nimble Alexandrite","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,120,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":93707,"name":"Perfect Nimble Alexandrite","icon":"inv_misc_gem_x4_uncommon_perfectcut_green","color":5,"stats":[0,0,0,0,0,160,0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":93708,"name":"Nimble Adventurine","icon":"inv_misc_gem_x4_uncommon_cut_green","color":5,"stats":[0,0,0,0,0,200,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":95344,"name":"Indomitable Primal Diamond","icon":"inv_legendary_chimeraoffear","color":1,"stats":[0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":95345,"name":"Courageous Primal Diamond","icon":"inv_legendary_chimeraoffear","color":1,"stats":[0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":95346,"name":"Capacitive Primal Diamond","icon":"inv_legendary_chimeraoffear","color":1,"stats":[0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":95347,"name":"Sinister Primal Diamond","icon":"inv_legendary_chimeraoffear","color":1,"stats":[0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":95348,"name":"Tyrannical Primal Diamond","icon":"inv_legendary_chimeraoffear","color":1,"stats":[665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":97306,"name":"Revitalizing Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97307,"name":"Sparkling River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97308,"name":"Misty Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97310,"name":"Purified Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97311,"name":"Quick Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97312,"name":"Energized Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97313,"name":"Brilliant Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97534,"name":"Burning Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97535,"name":"Mystic Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97536,"name":"Mysterious Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97537,"name":"Stormy River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97538,"name":"Perfect Willful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97547,"name":"Mysterious Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97937,"name":"Burning Primal Diamond","icon":"inv_misc_gem_x4_metagem_cut","color":1,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97938,"name":"Mystic Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97939,"name":"Mysterious Imperial Amethyst","icon":"inv_misc_gem_x4_rare_cut_purple","color":7,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97941,"name":"Stormy River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":97943,"name":"Perfect Willful Tiger Opal","icon":"inv_misc_gem_x4_uncommon_perfectcut_orange","color":6,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98025,"name":"Piercing Wild Jade","icon":"inv_misc_gem_x4_rare_cut_green","color":5,"stats":[0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98026,"name":"Smooth Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98027,"name":"Smooth Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98028,"name":"Crafty Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98051,"name":"Potent Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,4,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98056,"name":"Crystallized Horror","icon":"inv_legendary_breathofblackprince_str","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":5}, +{"id":98088,"name":"Fractured Sun's Radiance","icon":"inv_misc_gem_x4_rare_cut_yellow","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98089,"name":"Keen Vermilion Onyx","icon":"inv_misc_gem_x4_rare_cut_orange","color":6,"stats":[0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98090,"name":"Rigid River's Heart","icon":"inv_misc_gem_x4_rare_cut_blue","color":3,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":98094,"name":"Brilliant Primordial Ruby","icon":"inv_misc_gem_x4_rare_cut_red","color":2,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3} ], "zones":[ {"id":206,"name":"Utgarde Keep","expansion":3}, @@ -7888,96 +17556,311 @@ {"id":168,"fromStat":11,"toStat":8,"multiplier":0.4} ], "itemIcons":[ -{"id":7676,"name":"Thistle Tea","icon":"inv_drink_milk_05"}, -{"id":9088,"name":"Gift of Arthas","icon":"inv_potion_28"}, -{"id":9224,"name":"Elixir of Demonslaying","icon":"inv_potion_27"}, -{"id":12662,"name":"Demonic Rune","icon":"inv_misc_rune_04"}, -{"id":13442,"name":"Mighty Rage Potion","icon":"inv_potion_41"}, -{"id":13452,"name":"Elixir of the Mongoose","icon":"inv_potion_32"}, -{"id":13454,"name":"Greater Arcane Elixir","icon":"inv_potion_25"}, -{"id":13512,"name":"Flask of Supreme Power","icon":"inv_potion_41"}, -{"id":20520,"name":"Dark Rune","icon":"spell_shadow_sealofkings"}, -{"id":22105,"name":"Master Healthstone","icon":"inv_stone_04"}, -{"id":22788,"name":"Flame Cap","icon":"inv_misc_herb_flamecap"}, -{"id":22824,"name":"Elixir of Major Strength","icon":"inv_potion_147"}, -{"id":22827,"name":"Elixir of Major Frost Power","icon":"inv_potion_148"}, -{"id":22828,"name":"Insane Strength Potion","icon":"inv_potion_109"}, -{"id":22831,"name":"Elixir of Major Agility","icon":"inv_potion_127"}, -{"id":22832,"name":"Super Mana Potion","icon":"inv_potion_137"}, -{"id":22833,"name":"Elixir of Major Firepower","icon":"inv_potion_146"}, -{"id":22834,"name":"Elixir of Major Defense","icon":"inv_potion_122"}, -{"id":22835,"name":"Elixir of Major Shadow Power","icon":"inv_potion_145"}, -{"id":22837,"name":"Heroic Potion","icon":"inv_potion_106"}, -{"id":22838,"name":"Haste Potion","icon":"inv_potion_108"}, -{"id":22839,"name":"Destruction Potion","icon":"inv_potion_107"}, -{"id":22840,"name":"Elixir of Major Mageblood","icon":"inv_potion_151"}, -{"id":22849,"name":"Ironshield Potion","icon":"inv_potion_133"}, -{"id":22851,"name":"Flask of Fortification","icon":"inv_potion_119"}, -{"id":22853,"name":"Flask of Mighty Restoration","icon":"inv_potion_118"}, -{"id":22854,"name":"Flask of Relentless Assault","icon":"inv_potion_117"}, -{"id":22861,"name":"Flask of Blinding Light","icon":"inv_potion_116"}, -{"id":22866,"name":"Flask of Pure Death","icon":"inv_potion_115"}, -{"id":27655,"name":"Ravager Dog","icon":"inv_misc_food_53"}, -{"id":27657,"name":"Blackened Basilisk","icon":"inv_misc_food_86_basilisk"}, -{"id":27658,"name":"Roasted Clefthoof","icon":"inv_misc_food_60"}, -{"id":27664,"name":"Grilled Mudfish","icon":"inv_misc_food_78"}, -{"id":28103,"name":"Adept's Elixir","icon":"inv_potion_96"}, -{"id":28104,"name":"Elixir of Mastery","icon":"inv_potion_111"}, +{"id":2304,"name":"Light Armor Kit","icon":"inv_misc_armorkit_17"}, +{"id":2313,"name":"Medium Armor Kit","icon":"inv_misc_armorkit_15"}, +{"id":4265,"name":"Heavy Armor Kit","icon":"inv_misc_armorkit_16"}, +{"id":4405,"name":"Crude Scope","icon":"inv_misc_spyglass_02"}, +{"id":4406,"name":"Standard Scope","icon":"inv_misc_spyglass_02"}, +{"id":4407,"name":"Accurate Scope","icon":"inv_misc_spyglass_02"}, +{"id":5421,"name":"Enchant: Fiery Blaze","icon":"inv_jewelry_talisman_01"}, +{"id":6041,"name":"Weapon Chain","icon":"spell_frost_chainsofice"}, +{"id":6042,"name":"Iron Shield Spike","icon":"inv_misc_armorkit_01"}, +{"id":6043,"name":"Weapon Counterweight","icon":"inv_misc_orb_01"}, +{"id":6342,"name":"Enchant Chest - Minor Mana","icon":"inv_misc_note_01"}, +{"id":6344,"name":"Enchant Bracer - Minor Spirit","icon":"inv_misc_note_01"}, +{"id":6345,"name":"Enchant Cloak - Minor Protection","icon":"inv_misc_note_01"}, +{"id":6346,"name":"Enchant Chest - Lesser Mana","icon":"inv_misc_note_01"}, +{"id":6347,"name":"Enchant Bracer - Minor Strength","icon":"inv_misc_note_01"}, +{"id":6348,"name":"Enchant Weapon - Minor Beastslayer","icon":"inv_misc_note_01"}, +{"id":6349,"name":"Enchant 2H Weapon - Lesser Intellect","icon":"inv_misc_note_01"}, +{"id":6375,"name":"Enchant Bracer - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":6376,"name":"Enchant Boots - Minor Stamina","icon":"inv_misc_note_01"}, +{"id":6377,"name":"Enchant Boots - Minor Agility","icon":"inv_misc_note_01"}, +{"id":7967,"name":"Mithril Shield Spike","icon":"inv_misc_armorkit_02"}, +{"id":7969,"name":"Mithril Spurs","icon":"ability_rogue_sprint"}, +{"id":8173,"name":"Thick Armor Kit","icon":"inv_misc_armorkit_07"}, +{"id":10546,"name":"Deadly Scope","icon":"inv_misc_spyglass_02"}, +{"id":10548,"name":"Sniper Scope","icon":"inv_misc_spyglass_02"}, +{"id":11038,"name":"Enchant 2H Weapon - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":11039,"name":"Enchant Cloak - Minor Agility","icon":"inv_misc_note_01"}, +{"id":11081,"name":"Enchant Shield - Lesser Protection","icon":"inv_misc_note_01"}, +{"id":11101,"name":"Enchant Bracer - Lesser Strength","icon":"inv_misc_note_01"}, +{"id":11150,"name":"Enchant Gloves - Mining","icon":"inv_misc_note_01"}, +{"id":11151,"name":"Enchant Gloves - Herbalism","icon":"inv_misc_note_01"}, +{"id":11163,"name":"Enchant Bracer - Lesser Dodge","icon":"inv_misc_note_01"}, +{"id":11164,"name":"Enchant Weapon - Lesser Beastslayer","icon":"inv_misc_note_01"}, +{"id":11165,"name":"Enchant Weapon - Lesser Elemental Slayer","icon":"inv_misc_note_01"}, +{"id":11166,"name":"Enchant Gloves - Skinning","icon":"inv_misc_note_01"}, +{"id":11167,"name":"Enchant Boots - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":11168,"name":"Enchant Shield - Lesser Parry","icon":"inv_misc_note_01"}, +{"id":11202,"name":"Enchant Shield - Stamina","icon":"inv_misc_note_01"}, +{"id":11203,"name":"Enchant Gloves - Advanced Mining","icon":"inv_misc_note_01"}, +{"id":11204,"name":"Enchant Bracer - Greater Spirit","icon":"inv_misc_note_01"}, +{"id":11205,"name":"Enchant Gloves - Advanced Herbalism","icon":"inv_misc_note_01"}, +{"id":11206,"name":"Enchant Cloak - Lesser Agility","icon":"inv_misc_note_01"}, +{"id":11207,"name":"Enchant Weapon - Fiery Weapon","icon":"inv_misc_note_01"}, +{"id":11208,"name":"Enchant Weapon - Demonslaying","icon":"inv_misc_note_01"}, +{"id":11223,"name":"Enchant Bracer - Dodge","icon":"inv_misc_note_01"}, +{"id":11225,"name":"Enchant Bracer - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":11226,"name":"Enchant Gloves - Riding Skill","icon":"inv_misc_note_01"}, +{"id":12645,"name":"Thorium Shield Spike","icon":"inv_misc_armorkit_20"}, +{"id":15564,"name":"Rugged Armor Kit","icon":"inv_misc_armorkit_09"}, +{"id":16214,"name":"Enchant Bracer - Greater Intellect","icon":"inv_misc_note_01"}, +{"id":16215,"name":"Enchant Boots - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":16217,"name":"Enchant Shield - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":16218,"name":"Enchant Bracer - Superior Spirit","icon":"inv_misc_note_01"}, +{"id":16219,"name":"Enchant Gloves - Greater Agility","icon":"inv_misc_note_01"}, +{"id":16220,"name":"Enchant Boots - Spirit","icon":"inv_misc_note_01"}, +{"id":16221,"name":"Enchant Chest - Major Health","icon":"inv_misc_note_01"}, +{"id":16222,"name":"Enchant Shield - Vitality","icon":"inv_misc_note_01"}, +{"id":16223,"name":"Enchant Weapon - Icy Chill","icon":"inv_misc_note_01"}, +{"id":16224,"name":"Enchant Cloak - Superior Defense","icon":"inv_misc_note_01"}, +{"id":16242,"name":"Enchant Chest - Major Mana","icon":"inv_misc_note_01"}, +{"id":16244,"name":"Enchant Gloves - Greater Strength","icon":"inv_misc_note_01"}, +{"id":16246,"name":"Enchant Bracer - Superior Strength","icon":"inv_misc_note_01"}, +{"id":16247,"name":"Enchant 2H Weapon - Superior Impact","icon":"inv_misc_note_01"}, +{"id":16248,"name":"Enchant Weapon - Unholy Weapon","icon":"inv_misc_note_01"}, +{"id":16249,"name":"Enchant 2H Weapon - Major Intellect","icon":"inv_misc_note_01"}, +{"id":16250,"name":"Enchant Weapon - Superior Striking","icon":"inv_misc_note_01"}, +{"id":16251,"name":"Enchant Bracer - Superior Stamina","icon":"inv_misc_note_01"}, +{"id":16252,"name":"Enchant Weapon - Crusader","icon":"inv_misc_note_01"}, +{"id":16253,"name":"Enchant Chest - Greater Stats","icon":"inv_misc_note_01"}, +{"id":16254,"name":"Enchant Weapon - Lifestealing","icon":"inv_misc_note_01"}, +{"id":16255,"name":"Enchant 2H Weapon - Major Spirit","icon":"inv_misc_note_01"}, +{"id":17725,"name":"Enchant Weapon - Winter's Might","icon":"inv_misc_note_01"}, +{"id":18169,"name":"Flame Mantle of the Dawn","icon":"spell_fire_flameshock"}, +{"id":18170,"name":"Frost Mantle of the Dawn","icon":"spell_frost_frostshock"}, +{"id":18171,"name":"Arcane Mantle of the Dawn","icon":"spell_holy_wordfortitude"}, +{"id":18172,"name":"Nature Mantle of the Dawn","icon":"spell_nature_protectionformnature"}, +{"id":18173,"name":"Shadow Mantle of the Dawn","icon":"spell_shadow_ragingscream"}, +{"id":18182,"name":"Chromatic Mantle of the Dawn","icon":"inv_misc_gem_variety_02"}, +{"id":18251,"name":"Core Armor Kit","icon":"inv_misc_armorkit_05"}, +{"id":18259,"name":"Enchant Weapon - Spellpower","icon":"inv_misc_note_01"}, +{"id":18260,"name":"Enchant Weapon - Healing Power","icon":"inv_misc_note_01"}, +{"id":18283,"name":"Biznicks 247x128 Accurascope","icon":"inv_misc_spyglass_02"}, +{"id":18329,"name":"Arcanum of Rapidity","icon":"inv_misc_gem_02"}, +{"id":18330,"name":"Arcanum of Focus","icon":"inv_misc_gem_02"}, +{"id":18331,"name":"Arcanum of Protection","icon":"inv_misc_gem_02"}, +{"id":19444,"name":"Enchant Weapon - Strength","icon":"inv_misc_note_01"}, +{"id":19445,"name":"Enchant Weapon - Agility","icon":"inv_misc_note_01"}, +{"id":19446,"name":"Enchant Bracer - Mana Regeneration","icon":"inv_misc_note_01"}, +{"id":19447,"name":"Enchant Bracer - Healing Power","icon":"inv_misc_note_01"}, +{"id":19448,"name":"Enchant Weapon - Mighty Spirit","icon":"inv_misc_note_01"}, +{"id":19449,"name":"Enchant Weapon - Mighty Intellect","icon":"inv_misc_note_01"}, +{"id":19782,"name":"Presence of Might","icon":"spell_holy_sealofwrath"}, +{"id":19783,"name":"Syncretist's Sigil","icon":"spell_holy_prayerofhealing"}, +{"id":19784,"name":"Death's Embrace","icon":"spell_shadow_scourgebuild"}, +{"id":19785,"name":"Falcon's Call","icon":"spell_nature_forceofnature"}, +{"id":19786,"name":"Vodouisant's Vigilant Embrace","icon":"spell_nature_purge"}, +{"id":19787,"name":"Presence of Sight","icon":"spell_shadow_detectlesserinvisibility"}, +{"id":19788,"name":"Hoodoo Hex","icon":"spell_shadow_impphaseshift"}, +{"id":19789,"name":"Prophetic Aura","icon":"spell_holy_holyprotection"}, +{"id":19790,"name":"Animist's Caress","icon":"spell_nature_reincarnation"}, +{"id":19971,"name":"Eternium Fishing Line","icon":"inv_fabric_mageweave_02"}, +{"id":20076,"name":"Zandalar Signet of Mojo","icon":"inv_jewelry_ring_46"}, +{"id":20077,"name":"Zandalar Signet of Might","icon":"inv_misc_armorkit_08"}, +{"id":20078,"name":"Zandalar Signet of Serenity","icon":"spell_holy_powerwordshield"}, +{"id":20727,"name":"Enchant Gloves - Shadow Power","icon":"inv_misc_note_01"}, +{"id":20728,"name":"Enchant Gloves - Frost Power","icon":"inv_misc_note_01"}, +{"id":20729,"name":"Enchant Gloves - Fire Power","icon":"inv_misc_note_01"}, +{"id":20730,"name":"Enchant Gloves - Healing Power","icon":"inv_misc_note_01"}, +{"id":22392,"name":"Enchant 2H Weapon - Agility","icon":"inv_misc_note_01"}, +{"id":22531,"name":"Enchant Bracer - Superior Healing","icon":"inv_misc_note_01"}, +{"id":22532,"name":"Enchant Bracer - Restore Mana Prime","icon":"inv_misc_note_01"}, +{"id":22533,"name":"Enchant Bracer - Fortitude","icon":"inv_misc_note_01"}, +{"id":22534,"name":"Enchant Bracer - Spellpower","icon":"inv_misc_note_01"}, +{"id":22535,"name":"Enchant Ring - Striking","icon":"inv_misc_note_01"}, +{"id":22536,"name":"Enchant Ring - Minor Intellect","icon":"inv_misc_note_01"}, +{"id":22538,"name":"Enchant Ring - Stats","icon":"inv_misc_note_01"}, +{"id":22539,"name":"Enchant Shield - Intellect","icon":"inv_misc_note_01"}, +{"id":22540,"name":"Enchant Shield - Parry","icon":"inv_misc_note_01"}, +{"id":22542,"name":"Enchant Boots - Vitality","icon":"inv_misc_note_01"}, +{"id":22544,"name":"Enchant Boots - Dexterity","icon":"inv_misc_note_01"}, +{"id":22545,"name":"Enchant Boots - Surefooted","icon":"inv_misc_note_01"}, +{"id":22546,"name":"Enchant Chest - Exceptional Mana","icon":"inv_misc_note_01"}, +{"id":22551,"name":"Enchant Weapon - Major Intellect","icon":"inv_misc_note_01"}, +{"id":22552,"name":"Enchant Weapon - Major Striking","icon":"inv_misc_note_01"}, +{"id":22553,"name":"Enchant Weapon - Potency","icon":"inv_misc_note_01"}, +{"id":22554,"name":"Enchant 2H Weapon - Savagery","icon":"inv_misc_note_01"}, +{"id":22555,"name":"Enchant Weapon - Major Spellpower","icon":"inv_misc_note_01"}, +{"id":22556,"name":"Enchant 2H Weapon - Major Agility","icon":"inv_misc_note_01"}, +{"id":22557,"name":"Enchant Weapon - Battlemaster","icon":"inv_misc_note_01"}, +{"id":22558,"name":"Enchant Weapon - Spellsurge","icon":"inv_misc_note_01"}, +{"id":22559,"name":"Enchant Weapon - Mongoose","icon":"inv_misc_note_01"}, +{"id":22560,"name":"Enchant Weapon - Sunfire","icon":"inv_misc_note_01"}, +{"id":22561,"name":"Enchant Weapon - Soulfrost","icon":"inv_misc_note_01"}, +{"id":22635,"name":"Savage Guard","icon":"spell_nature_spiritarmor"}, +{"id":22636,"name":"Ice Guard","icon":"spell_frost_frostshock"}, +{"id":22638,"name":"Shadow Guard","icon":"spell_shadow_antishadow"}, +{"id":23530,"name":"Felsteel Shield Spike","icon":"inv_misc_armorkit_27"}, +{"id":23545,"name":"Power of the Scourge","icon":"spell_shadow_darkritual"}, +{"id":23547,"name":"Resilience of the Scourge","icon":"spell_shadow_deadofnight"}, +{"id":23548,"name":"Might of the Scourge","icon":"spell_shadow_deathpact"}, +{"id":23549,"name":"Fortitude of the Scourge","icon":"spell_shadow_antishadow"}, +{"id":23764,"name":"Adamantite Scope","icon":"inv_misc_spyglass_02"}, +{"id":23765,"name":"Khorium Scope","icon":"inv_misc_spyglass_02"}, +{"id":23766,"name":"Stabilized Eternium Scope","icon":"inv_misc_spyglass_02"}, +{"id":24003,"name":"Enchant Chest - Exceptional Stats","icon":"inv_misc_note_01"}, +{"id":24273,"name":"Mystic Spellthread","icon":"spell_nature_astralrecal"}, +{"id":24274,"name":"Runic Spellthread","icon":"spell_nature_astralrecalgroup"}, +{"id":24275,"name":"Silver Spellthread","icon":"spell_nature_lightning"}, +{"id":24276,"name":"Golden Spellthread","icon":"spell_holy_restoration"}, +{"id":25650,"name":"Knothide Armor Kit","icon":"inv_misc_armorkit_24"}, +{"id":25651,"name":"Vindicator's Armor Kit","icon":"inv_misc_armorkit_26"}, +{"id":25652,"name":"Magister's Armor Kit","icon":"inv_misc_armorkit_22"}, +{"id":28270,"name":"Enchant Chest - Major Resilience","icon":"inv_misc_note_01"}, +{"id":28271,"name":"Enchant Gloves - Precise Strikes","icon":"inv_misc_note_01"}, +{"id":28272,"name":"Enchant Gloves - Major Spellpower","icon":"inv_misc_note_01"}, +{"id":28273,"name":"Enchant Gloves - Major Healing","icon":"inv_misc_note_01"}, +{"id":28279,"name":"Enchant Boots - Cat's Swiftness","icon":"inv_misc_note_01"}, +{"id":28280,"name":"Enchant Boots - Boar's Speed","icon":"inv_misc_note_01"}, +{"id":28281,"name":"Enchant Weapon - Major Healing","icon":"inv_misc_note_01"}, +{"id":28282,"name":"Enchant Shield - Major Stamina","icon":"inv_misc_note_01"}, +{"id":28878,"name":"Inscription of Faith","icon":"spell_holy_sealofsalvation"}, +{"id":28881,"name":"Inscription of Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":28882,"name":"Inscription of Warding","icon":"spell_holy_greaterblessingofsanctuary"}, +{"id":28885,"name":"Inscription of Vengeance","icon":"spell_holy_fistofjustice"}, +{"id":28886,"name":"Greater Inscription of Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":28887,"name":"Greater Inscription of Faith","icon":"spell_holy_greaterblessingofsalvation"}, +{"id":28888,"name":"Greater Inscription of Vengeance","icon":"spell_holy_greaterblessingofkings"}, +{"id":28889,"name":"Greater Inscription of Warding","icon":"spell_holy_blessingofprotection"}, +{"id":28903,"name":"Inscription of the Orb","icon":"inv_misc_orb_04"}, +{"id":28904,"name":"Inscription of the Oracle","icon":"spell_holy_spiritualguidence"}, +{"id":28907,"name":"Inscription of the Blade","icon":"ability_dualwield"}, +{"id":28908,"name":"Inscription of the Knight","icon":"spell_holy_championsbond"}, +{"id":28909,"name":"Greater Inscription of the Orb","icon":"inv_misc_orb_03"}, +{"id":28910,"name":"Greater Inscription of the Blade","icon":"spell_holy_weaponmastery"}, +{"id":28911,"name":"Greater Inscription of the Knight","icon":"spell_holy_championsgrace"}, +{"id":28912,"name":"Greater Inscription of the Oracle","icon":"spell_holy_powerinfusion"}, {"id":29187,"name":"Inscription of Endurance","icon":"ability_warrior_shieldmastery"}, -{"id":29487,"name":"Nature Armor Kit","icon":"spell_nature_spiritarmor"}, -{"id":31677,"name":"Fel Mana Potion","icon":"inv_potion_138"}, -{"id":31679,"name":"Fel Strength Elixir","icon":"inv_potion_152"}, -{"id":32062,"name":"Elixir of Major Fortitude","icon":"inv_potion_158"}, -{"id":32067,"name":"Elixir of Draenic Wisdom","icon":"inv_potion_155"}, -{"id":32068,"name":"Elixir of Ironskin","icon":"inv_potion_159"}, -{"id":33052,"name":"Fisherman's Feast","icon":"inv_misc_food_88_ravagernuggets"}, -{"id":33208,"name":"Flask of Chromatic Wonder","icon":"inv_potion_48"}, -{"id":33447,"name":"Runic Healing Potion","icon":"inv_alchemy_elixir_05"}, -{"id":33448,"name":"Runic Mana Potion","icon":"inv_alchemy_elixir_02"}, -{"id":33825,"name":"Skullfish Soup","icon":"inv_misc_food_63"}, -{"id":33872,"name":"Spicy Hot Talbuk","icon":"inv_misc_food_84_roastclefthoof"}, -{"id":33874,"name":"Kibler's Bits","icon":"inv_misc_food_49"}, -{"id":34753,"name":"Great Feast","icon":"ability_hunter_pet_boar"}, -{"id":34754,"name":"Mega Mammoth Meal","icon":"inv_misc_food_108_meadcaribou"}, -{"id":34756,"name":"Spiced Worm Burger","icon":"inv_misc_food_65"}, -{"id":34758,"name":"Mighty Rhino Dogs","icon":"inv_misc_food_66"}, -{"id":34767,"name":"Firecracker Salmon","icon":"inv_misc_food_141_fish"}, -{"id":34769,"name":"Imperial Manta Steak","icon":"inv_misc_food_121_buttermeat"}, -{"id":36892,"name":"Fel Healthstone","icon":"inv_stone_04"}, -{"id":37092,"name":"Scroll of Intellect VIII","icon":"inv_scroll_01"}, -{"id":37094,"name":"Scroll of Stamina VIII","icon":"inv_scroll_07"}, -{"id":37098,"name":"Scroll of Spirit VIII","icon":"inv_scroll_01"}, -{"id":37330,"name":"Formula: Enchant Cloak - Superior Arcane Resistance","icon":"inv_misc_note_01"}, -{"id":37331,"name":"Formula: Enchant Cloak - Superior Fire Resistance","icon":"inv_misc_note_01"}, -{"id":37339,"name":"Formula: Enchant Weapon - Giant Slayer","icon":"inv_enchant_formulasuperior_01"}, -{"id":37340,"name":"Formula: Enchant Chest - Exceptional Resilience","icon":"inv_enchant_formulagood_01"}, -{"id":37344,"name":"Formula: Enchant Weapon - Icebreaker","icon":"inv_enchant_formulasuperior_01"}, -{"id":37347,"name":"Formula: Enchant Cloak - Superior Dodge","icon":"inv_enchant_formulagood_01"}, -{"id":37349,"name":"Formula: Enchant Cloak - Shadow Armor","icon":"inv_enchant_formulagood_01"}, +{"id":29533,"name":"Cobrahide Leg Armor","icon":"inv_misc_armorkit_21"}, +{"id":29534,"name":"Clefthide Leg Armor","icon":"inv_misc_armorkit_23"}, +{"id":29535,"name":"Nethercobra Leg Armor","icon":"inv_misc_armorkit_25"}, +{"id":29536,"name":"Nethercleft Leg Armor","icon":"inv_misc_armorkit_25"}, +{"id":33148,"name":"Enchant Cloak - Dodge","icon":"inv_misc_note_01"}, +{"id":33149,"name":"Enchant Cloak - Stealth","icon":"inv_misc_note_01"}, +{"id":33150,"name":"Enchant Cloak - Subtlety","icon":"inv_misc_note_01"}, +{"id":33153,"name":"Enchant Gloves - Threat","icon":"inv_misc_note_01"}, +{"id":33165,"name":"Enchant Weapon - Greater Agility","icon":"inv_misc_note_01"}, +{"id":33185,"name":"Adamantite Weapon Chain","icon":"spell_frost_chainsofice"}, +{"id":33307,"name":"Enchant Weapon - Executioner","icon":"inv_misc_note_01"}, +{"id":34207,"name":"Glove Reinforcements","icon":"inv_misc_armorkit_08"}, +{"id":34330,"name":"Heavy Knothide Armor Kit","icon":"inv_misc_armorkit_25"}, +{"id":34836,"name":"Truesilver Fishing Line","icon":"inv_misc_thread_01"}, +{"id":35420,"name":"Enchant Bracer - Brawn","icon":"inv_bracer_08"}, +{"id":35423,"name":"Enchant Bracer - Major Intellect","icon":"inv_bracer_09"}, +{"id":35428,"name":"Enchant Chest - Exceptional Health","icon":"inv_chest_leather_04"}, +{"id":35431,"name":"Enchant Chest - Major Spirit","icon":"inv_chest_cloth_29"}, +{"id":35432,"name":"Enchant Cloak - Greater Agility","icon":"inv_misc_cape_18"}, +{"id":35437,"name":"Enchant Cloak - Major Armor","icon":"inv_misc_cape_12"}, +{"id":35438,"name":"Enchant Gloves - Assault","icon":"inv_gauntlets_31"}, +{"id":35439,"name":"Enchant Gloves - Blasting","icon":"inv_gauntlets_03"}, +{"id":35442,"name":"Enchant Gloves - Major Strength","icon":"inv_gauntlets_26"}, +{"id":35498,"name":"Enchant Weapon - Deathfrost","icon":"inv_misc_note_01"}, +{"id":35500,"name":"Enchant Chest - Dodge","icon":"inv_misc_note_01"}, +{"id":35756,"name":"Enchant Cloak - Greater Dodge","icon":"inv_misc_note_01"}, +{"id":37312,"name":"Carrot on a Stick","icon":"inv_misc_food_54"}, {"id":38371,"name":"Jormungar Leg Armor","icon":"inv_misc_armorkit_31"}, {"id":38372,"name":"Nerubian Leg Armor","icon":"inv_misc_armorkit_29"}, {"id":38373,"name":"Frosthide Leg Armor","icon":"inv_misc_armorkit_32"}, {"id":38374,"name":"Icescale Leg Armor","icon":"inv_misc_armorkit_33"}, {"id":38375,"name":"Borean Armor Kit","icon":"inv_misc_armorkit_28"}, {"id":38376,"name":"Heavy Borean Armor Kit","icon":"inv_misc_armorkit_30"}, -{"id":39666,"name":"Elixir of Mighty Agility","icon":"inv_potion_162"}, -{"id":40068,"name":"Wrath Elixir","icon":"inv_potion_114"}, -{"id":40070,"name":"Spellpower Elixir","icon":"inv_alchemy_potion_05"}, -{"id":40072,"name":"Elixir of Spirit","icon":"inv_potion_02"}, -{"id":40073,"name":"Elixir of Mighty Strength","icon":"inv_potion_165"}, -{"id":40076,"name":"Guru's Elixir","icon":"inv_potion_112"}, -{"id":40078,"name":"Elixir of Mighty Fortitude","icon":"inv_potion_164"}, -{"id":40079,"name":"Lesser Flask of Toughness","icon":"inv_alchemy_endlessflask_02"}, -{"id":40093,"name":"Indestructible Potion","icon":"inv_alchemy_elixir_empty"}, -{"id":40097,"name":"Elixir of Protection","icon":"inv_alchemy_potion_empty"}, -{"id":40109,"name":"Elixir of Mighty Mageblood","icon":"inv_potion_129"}, -{"id":40211,"name":"Potion of Speed","icon":"inv_alchemy_elixir_04"}, -{"id":40212,"name":"Potion of Wild Magic","icon":"inv_alchemy_elixir_01"}, -{"id":40536,"name":"Explosive Decoy","icon":"ability_seal"}, -{"id":40771,"name":"Cobalt Frag Bomb","icon":"inv_misc_enggizmos_31"}, -{"id":41119,"name":"Saronite Bomb","icon":"inv_misc_enggizmos_32"}, +{"id":38378,"name":"Wyrmscale Leg Armor","icon":"inv_misc_monsterscales_18"}, +{"id":38679,"name":"Enchant Bracer - Minor Health","icon":"inv_misc_enchantedscroll"}, +{"id":38766,"name":"Enchant Chest - Minor Health","icon":"inv_misc_enchantedscroll"}, +{"id":38767,"name":"Enchant Chest - Minor Absorption","icon":"inv_misc_enchantedscroll"}, +{"id":38768,"name":"Enchant Bracer - Minor Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38771,"name":"Enchant Bracer - Minor Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38772,"name":"Enchant 2H Weapon - Minor Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38773,"name":"Enchant Chest - Lesser Health","icon":"inv_misc_enchantedscroll"}, +{"id":38777,"name":"Enchant Bracer - Minor Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38780,"name":"Enchant Weapon - Minor Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38782,"name":"Enchant Chest - Health","icon":"inv_misc_enchantedscroll"}, +{"id":38787,"name":"Enchant Shield - Minor Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38790,"name":"Enchant Cloak - Lesser Protection","icon":"inv_misc_enchantedscroll"}, +{"id":38792,"name":"Enchant Shield - Lesser Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38793,"name":"Enchant Bracer - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38794,"name":"Enchant Weapon - Lesser Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38796,"name":"Enchant 2H Weapon - Lesser Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38798,"name":"Enchant Chest - Lesser Absorption","icon":"inv_misc_enchantedscroll"}, +{"id":38799,"name":"Enchant Chest - Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38803,"name":"Enchant Bracer - Lesser Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":38804,"name":"Enchant Chest - Minor Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38805,"name":"Enchant Shield - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38806,"name":"Enchant Cloak - Defense","icon":"inv_misc_enchantedscroll"}, +{"id":38807,"name":"Enchant Boots - Lesser Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38808,"name":"Enchant Chest - Greater Health","icon":"inv_misc_enchantedscroll"}, +{"id":38809,"name":"Enchant Bracer - Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38810,"name":"Enchant Boots - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38812,"name":"Enchant Bracer - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38816,"name":"Enchant Shield - Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38817,"name":"Enchant Bracer - Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38818,"name":"Enchant Chest - Greater Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38821,"name":"Enchant Weapon - Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38824,"name":"Enchant Chest - Lesser Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38825,"name":"Enchant Cloak - Greater Defense","icon":"inv_misc_enchantedscroll"}, +{"id":38827,"name":"Enchant Gloves - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38829,"name":"Enchant Bracer - Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":38830,"name":"Enchant Boots - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38833,"name":"Enchant Chest - Superior Health","icon":"inv_misc_enchantedscroll"}, +{"id":38836,"name":"Enchant Gloves - Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38837,"name":"Enchant Boots - Minor Speed","icon":"inv_misc_enchantedscroll"}, +{"id":38839,"name":"Enchant Shield - Greater Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38841,"name":"Enchant Chest - Superior Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38844,"name":"Enchant Boots - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38845,"name":"Enchant 2H Weapon - Greater Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38846,"name":"Enchant Bracer - Greater Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38847,"name":"Enchant Chest - Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38848,"name":"Enchant Weapon - Greater Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38851,"name":"Enchant Gloves - Minor Haste","icon":"inv_misc_enchantedscroll"}, +{"id":38904,"name":"Enchant Shield - Lesser Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38929,"name":"Enchant Chest - Restore Mana Prime","icon":"inv_misc_enchantedscroll"}, +{"id":38938,"name":"Enchant Bracer - Lesser Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38951,"name":"Enchant Gloves - Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":38953,"name":"Enchant Gloves - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":38954,"name":"Enchant Shield - Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38955,"name":"Enchant Chest - Mighty Health","icon":"inv_misc_enchantedscroll"}, +{"id":38959,"name":"Enchant Cloak - Superior Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38960,"name":"Enchant Gloves - Gatherer","icon":"inv_misc_enchantedscroll"}, +{"id":38962,"name":"Enchant Chest - Greater Mana Restoration","icon":"inv_misc_enchantedscroll"}, +{"id":38963,"name":"Enchant Weapon - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38964,"name":"Enchant Gloves - Greater Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38965,"name":"Enchant Weapon - Icebreaker","icon":"inv_misc_enchantedscroll"}, +{"id":38966,"name":"Enchant Boots - Greater Fortitude","icon":"inv_misc_enchantedscroll"}, +{"id":38967,"name":"Enchant Gloves - Major Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38971,"name":"Enchant Bracer - Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38972,"name":"Enchant Weapon - Lifeward","icon":"inv_misc_enchantedscroll"}, +{"id":38973,"name":"Enchant Cloak - Minor Power","icon":"inv_misc_enchantedscroll"}, +{"id":38974,"name":"Enchant Boots - Greater Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":38975,"name":"Enchant Chest - Exceptional Resilience","icon":"inv_misc_enchantedscroll"}, +{"id":38976,"name":"Enchant Boots - Superior Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38978,"name":"Enchant Cloak - Superior Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38979,"name":"Enchant Gloves - Exceptional Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":38980,"name":"Enchant Bracer - Major Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38981,"name":"Enchant 2H Weapon - Scourgebane","icon":"inv_misc_enchantedscroll"}, +{"id":38985,"name":"Enchant Gloves - Greater Blasting","icon":"inv_misc_enchantedscroll"}, +{"id":38986,"name":"Enchant Boots - Icewalker","icon":"inv_misc_enchantedscroll"}, +{"id":38988,"name":"Enchant Weapon - Giant Slayer","icon":"inv_misc_enchantedscroll"}, +{"id":38989,"name":"Enchant Chest - Super Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38990,"name":"Enchant Gloves - Armsman","icon":"inv_misc_enchantedscroll"}, +{"id":38991,"name":"Enchant Weapon - Exceptional Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":38992,"name":"Enchant 2H Weapon - Greater Savagery","icon":"inv_misc_enchantedscroll"}, +{"id":38993,"name":"Enchant Cloak - Shadow Armor","icon":"inv_misc_enchantedscroll"}, +{"id":38995,"name":"Enchant Weapon - Exceptional Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38997,"name":"Enchant Bracer - Greater Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":39001,"name":"Enchant Cloak - Mighty Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":39002,"name":"Enchant Chest - Greater Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":39003,"name":"Enchant Cloak - Greater Speed","icon":"inv_misc_enchantedscroll"}, +{"id":39004,"name":"Enchant Cloak - Wisdom","icon":"inv_misc_enchantedscroll"}, +{"id":39005,"name":"Enchant Chest - Super Health","icon":"inv_misc_enchantedscroll"}, +{"id":39006,"name":"Enchant Boots - Tuskarr's Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":40776,"name":"EMP Generator","icon":"inv_misc_enggizmos_02"}, +{"id":40800,"name":"Frag Belt","icon":"inv_misc_enggizmos_02"}, +{"id":41091,"name":"Hand-Mounted Pyro Rocket","icon":"inv_misc_enggizmos_01"}, +{"id":41111,"name":"Flexweave Underlay","icon":"inv_misc_cape_22"}, +{"id":41118,"name":"Nitro Boosts","icon":"inv_gizmo_rocketbootextreme"}, {"id":41146,"name":"Sun Scope","icon":"inv_misc_spyglass_03"}, -{"id":41166,"name":"Runic Healing Injector","icon":"inv_gizmo_runichealthinjector"}, {"id":41167,"name":"Heartseeker Scope","icon":"inv_misc_spyglass_02"}, {"id":41601,"name":"Shining Spellthread","icon":"spell_nature_astralrecal"}, {"id":41602,"name":"Brilliant Spellthread","icon":"spell_nature_astralrecalgroup"}, @@ -7985,82 +17868,90 @@ {"id":41604,"name":"Sapphire Spellthread","icon":"spell_nature_astralrecalgroup"}, {"id":41976,"name":"Titanium Weapon Chain","icon":"inv_belt_18"}, {"id":42500,"name":"Titanium Shield Spike","icon":"inv_titanium_shield_spike"}, -{"id":42545,"name":"Runic Mana Injector","icon":"inv_gizmo_runicmanainjector"}, -{"id":42641,"name":"Global Thermal Sapper Charge","icon":"inv_gizmo_supersappercharge"}, -{"id":42994,"name":"Rhinolicious Wormsteak","icon":"inv_misc_food_47"}, -{"id":42995,"name":"Hearty Rhino","icon":"inv_misc_food_115_condorsoup"}, -{"id":42996,"name":"Snapper Extreme","icon":"inv_misc_food_129_fish"}, -{"id":42998,"name":"Cuttlesteak","icon":"inv_misc_food_133_meat"}, -{"id":42999,"name":"Blackened Dragonfin","icon":"inv_misc_food_142_fish"}, -{"id":43000,"name":"Dragonfin Filet","icon":"inv_misc_food_75"}, -{"id":43005,"name":"Spiced Mammoth Treats","icon":"inv_misc_food_123_roast"}, -{"id":43015,"name":"Fish Feast","icon":"inv_misc_fish_52"}, -{"id":43231,"name":"Instant Poison","icon":"ability_poisons"}, -{"id":43233,"name":"Deadly Poison","icon":"ability_rogue_dualweild"}, -{"id":43235,"name":"Wound Poison","icon":"inv_misc_herb_16"}, -{"id":43464,"name":"Scroll of Agility VIII","icon":"inv_scroll_02"}, -{"id":43466,"name":"Scroll of Strength VIII","icon":"inv_scroll_02"}, -{"id":43468,"name":"Scroll of Protection VIII","icon":"inv_scroll_07"}, -{"id":44067,"name":"Inscription of Triumph","icon":"spell_holy_weaponmastery"}, +{"id":43097,"name":"Fur Lining - Agility","icon":"inv_bracer_08"}, +{"id":43302,"name":"Inscription of High Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":43303,"name":"Inscription of the Frostblade","icon":"spell_holy_sealofwisdom"}, +{"id":43304,"name":"Inscription of Kings","icon":"spell_holy_sealofwisdom"}, +{"id":43987,"name":"Enchant Weapon - Black Magic","icon":"inv_misc_enchantedscroll"}, {"id":44068,"name":"Inscription of Dominance","icon":"spell_holy_powerinfusion"}, -{"id":44069,"name":"Arcanum of Triumph","icon":"ability_warrior_shieldmastery"}, -{"id":44075,"name":"Arcanum of Dominance","icon":"spell_arcane_arcaneresilience"}, -{"id":44129,"name":"Lesser Inscription of the Storm","icon":"spell_nature_lightning"}, -{"id":44130,"name":"Lesser Inscription of the Crag","icon":"spell_nature_farsight"}, -{"id":44131,"name":"Lesser Inscription of the Axe","icon":"inv_axe_82"}, -{"id":44132,"name":"Lesser Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, -{"id":44137,"name":"Arcanum of the Frosty Soul","icon":"spell_frost_frozencore"}, -{"id":44138,"name":"Arcanum of Toxic Warding","icon":"trade_brewpoison"}, -{"id":44139,"name":"Arcanum of the Fleeing Shadow","icon":"ability_paladin_gaurdedbythelight"}, -{"id":44140,"name":"Arcanum of the Eclipsed Moon","icon":"ability_druid_eclipse"}, -{"id":44141,"name":"Arcanum of the Flame's Soul","icon":"spell_fire_burnout"}, -{"id":44325,"name":"Elixir of Accuracy","icon":"inv_potion_61"}, -{"id":44327,"name":"Elixir of Deadly Strikes","icon":"inv_alchemy_potion_02"}, -{"id":44328,"name":"Elixir of Mighty Defense","icon":"inv_alchemy_potion_03"}, -{"id":44329,"name":"Elixir of Expertise","icon":"inv_alchemy_potion_01"}, -{"id":44330,"name":"Elixir of Armor Piercing","icon":"inv_alchemy_potion_06"}, -{"id":44331,"name":"Elixir of Lightning Speed","icon":"inv_alchemy_potion_04"}, -{"id":44332,"name":"Elixir of Mighty Thoughts","icon":"inv_potion_161"}, -{"id":44471,"name":"Formula: Enchant Cloak - Mighty Armor","icon":"inv_enchant_formulagood_01"}, -{"id":44472,"name":"Formula: Enchant Cloak - Greater Speed","icon":"inv_enchant_formulagood_01"}, -{"id":44473,"name":"Formula: Enchant Weapon - Scourgebane","icon":"inv_enchant_formulasuperior_01"}, -{"id":44483,"name":"Formula: Enchant 2H Weapon - Massacre","icon":"inv_enchant_formulasuperior_01"}, -{"id":44484,"name":"Formula: Enchant Bracer - Greater Assault","icon":"inv_enchant_formulagood_01"}, -{"id":44485,"name":"Formula: Enchant Gloves - Armsman","icon":"inv_enchant_formulagood_01"}, -{"id":44486,"name":"Formula: Enchant Weapon - Superior Potency","icon":"inv_enchant_formulasuperior_01"}, -{"id":44487,"name":"Formula: Enchant Weapon - Mighty Spellpower","icon":"inv_enchant_formulasuperior_01"}, -{"id":44488,"name":"Formula: Enchant Cloak - Wisdom","icon":"inv_enchant_formulagood_01"}, -{"id":44489,"name":"Formula: Enchant Chest - Powerful Stats","icon":"inv_enchant_formulagood_01"}, -{"id":44490,"name":"Formula: Enchant Boots - Greater Assault","icon":"inv_enchant_formulagood_01"}, -{"id":44491,"name":"Formula: Enchant Boots - Tuskarr's Vitality","icon":"inv_enchant_formulagood_01"}, -{"id":44492,"name":"Formula: Enchant Weapon - Berserking","icon":"inv_enchant_formulasuperior_01"}, -{"id":44494,"name":"Formula: Enchant Weapon - Lifeward","icon":"inv_enchant_formulasuperior_01"}, -{"id":44495,"name":"Formula: Enchant Weapon - Black Magic","icon":"inv_enchant_formulasuperior_01"}, -{"id":44496,"name":"Formula: Enchant Weapon - Accuracy","icon":"inv_enchant_formulasuperior_01"}, -{"id":44498,"name":"Formula: Enchant Bracer - Superior Spellpower","icon":"inv_enchant_formulagood_01"}, -{"id":44739,"name":"Diamond-Cut Refractor Scope","icon":"ability_hunter_rapidregeneration"}, -{"id":44871,"name":"Greater Inscription of the Axe","icon":"inv_axe_85"}, -{"id":44872,"name":"Greater Inscription of the Crag","icon":"spell_arcane_teleportorgrimmar"}, -{"id":44873,"name":"Greater Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, -{"id":44874,"name":"Greater Inscription of the Storm","icon":"spell_nature_lightningoverload"}, -{"id":44875,"name":"Arcanum of the Savage Gladiator","icon":"ability_warrior_shieldmastery"}, -{"id":44876,"name":"Arcanum of Blissful Mending","icon":"ability_warrior_shieldmastery"}, -{"id":44877,"name":"Arcanum of Burning Mysteries","icon":"spell_fire_masterofelements"}, -{"id":44878,"name":"Arcanum of the Stalwart Protector","icon":"ability_warrior_swordandboard"}, -{"id":44879,"name":"Arcanum of Torment","icon":"ability_warrior_rampage"}, +{"id":44125,"name":"Inscription of Triumph","icon":"spell_holy_weaponmastery"}, +{"id":44129,"name":"Inscription of the Storm","icon":"spell_nature_lightning"}, +{"id":44130,"name":"Inscription of the Crag","icon":"spell_nature_farsight"}, +{"id":44131,"name":"Inscription of the Axe","icon":"inv_axe_82"}, +{"id":44132,"name":"Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, +{"id":44133,"name":"Greater Inscription of the Axe","icon":"inv_axe_85"}, +{"id":44134,"name":"Greater Inscription of the Crag","icon":"spell_arcane_teleportorgrimmar"}, +{"id":44135,"name":"Greater Inscription of the Storm","icon":"spell_nature_lightningoverload"}, +{"id":44136,"name":"Greater Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, +{"id":44449,"name":"Enchant Boots - Assault","icon":"inv_misc_enchantedscroll"}, +{"id":44453,"name":"Enchant Weapon - Greater Potency","icon":"inv_misc_enchantedscroll"}, +{"id":44455,"name":"Enchant Shield - Greater Intellect","icon":"inv_scroll_03"}, +{"id":44456,"name":"Enchant Cloak - Speed","icon":"inv_misc_enchantedscroll"}, +{"id":44457,"name":"Enchant Cloak - Major Agility","icon":"inv_misc_enchantedscroll"}, +{"id":44458,"name":"Enchant Gloves - Crusher","icon":"inv_misc_enchantedscroll"}, +{"id":44463,"name":"Enchant 2H Weapon - Massacre","icon":"inv_misc_enchantedscroll"}, +{"id":44466,"name":"Enchant Weapon - Superior Potency","icon":"inv_misc_enchantedscroll"}, +{"id":44467,"name":"Enchant Weapon - Mighty Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":44469,"name":"Enchant Boots - Greater Assault","icon":"inv_misc_enchantedscroll"}, +{"id":44470,"name":"Enchant Bracer - Superior Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":44493,"name":"Enchant Weapon - Berserking","icon":"inv_misc_enchantedscroll"}, +{"id":44497,"name":"Enchant Weapon - Accuracy","icon":"inv_misc_enchantedscroll"}, +{"id":44739,"name":"Diamond-cut Refractor Scope","icon":"ability_hunter_rapidregeneration"}, +{"id":44815,"name":"Enchant Bracer - Greater Assault","icon":"inv_misc_enchantedscroll"}, {"id":44936,"name":"Titanium Plating","icon":"inv_shield_19"}, -{"id":44939,"name":"Lesser Flask of Resistance","icon":"inv_potion_118"}, -{"id":44944,"name":"Formula: Enchant Bracer - Major Stamina","icon":"inv_enchant_formulasuperior_01"}, +{"id":44945,"name":"Enchant Weapon - Titanguard","icon":"inv_enchant_formulasuperior_01"}, +{"id":44947,"name":"Enchant Bracer - Major Stamina","icon":"inv_misc_enchantedscroll"}, {"id":44957,"name":"Greater Inscription of the Gladiator","icon":"inv_shoulder_61"}, {"id":44963,"name":"Earthen Leg Armor","icon":"inv_misc_armorkit_18"}, -{"id":45059,"name":"Formula: Enchant Staff - Greater Spellpower","icon":"inv_enchant_formulasuperior_01"}, -{"id":46348,"name":"Formula: Enchant Weapon - Blood Draining","icon":"inv_enchant_formulaepic_01"}, -{"id":46376,"name":"Flask of the Frost Wyrm","icon":"inv_alchemy_endlessflask_04"}, -{"id":46377,"name":"Flask of Endless Rage","icon":"inv_alchemy_endlessflask_06"}, -{"id":46378,"name":"Flask of Pure Mojo","icon":"inv_alchemy_endlessflask_03"}, -{"id":46379,"name":"Flask of Stoneblood","icon":"inv_alchemy_endlessflask_05"}, -{"id":49633,"name":"Drums of Forgotten Kings","icon":"inv_misc_drum_03"}, -{"id":49634,"name":"Drums of the Wild","icon":"inv_misc_drum_07"}, +{"id":45056,"name":"Enchant Staff - Greater Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":45060,"name":"Enchant Staff - Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":45628,"name":"Enchant Boots - Lesser Accuracy","icon":"inv_misc_enchantedscroll"}, +{"id":46026,"name":"Enchant Weapon - Blade Ward","icon":"inv_misc_enchantedscroll"}, +{"id":46098,"name":"Enchant Weapon - Blood Draining","icon":"inv_misc_enchantedscroll"}, +{"id":50406,"name":"Enchant Gloves - Angler","icon":"inv_enchant_formulagood_01"}, +{"id":52687,"name":"Enchant Gloves - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52733,"name":"Enchant Weapon - Power Torrent","icon":"inv_enchant_formulasuperior_01"}, +{"id":52735,"name":"Enchant Weapon - Windwalk","icon":"inv_enchant_formulasuperior_01"}, +{"id":52736,"name":"Enchant Weapon - Landslide","icon":"inv_enchant_formulasuperior_01"}, +{"id":52737,"name":"Enchant Cloak - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, +{"id":52738,"name":"Enchant Bracer - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, +{"id":52739,"name":"Enchant Chest - Peerless Stats","icon":"inv_enchant_formulagood_01"}, +{"id":52740,"name":"Enchant Chest - Greater Stamina","icon":"inv_enchant_formulagood_01"}, +{"id":52743,"name":"Enchant Boots - Earthen Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":52744,"name":"Enchant Chest - Mighty Stats","icon":"inv_misc_enchantedscroll"}, +{"id":52745,"name":"Enchant Cloak - Lesser Power","icon":"inv_misc_enchantedscroll"}, +{"id":52746,"name":"Enchant Bracer - Speed","icon":"inv_misc_enchantedscroll"}, +{"id":52747,"name":"Enchant Weapon - Mending","icon":"inv_misc_enchantedscroll"}, +{"id":52748,"name":"Enchant Weapon - Avalanche","icon":"inv_misc_enchantedscroll"}, +{"id":52749,"name":"Enchant Gloves - Haste","icon":"inv_misc_enchantedscroll"}, +{"id":52750,"name":"Enchant Boots - Haste","icon":"inv_misc_enchantedscroll"}, +{"id":52751,"name":"Enchant Chest - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":52752,"name":"Enchant Bracer - Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":52753,"name":"Enchant Cloak - Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52754,"name":"Enchant Shield - Protection","icon":"inv_misc_enchantedscroll"}, +{"id":52755,"name":"Enchant Weapon - Elemental Slayer","icon":"inv_misc_enchantedscroll"}, +{"id":52756,"name":"Enchant Gloves - Exceptional Strength","icon":"inv_misc_enchantedscroll"}, +{"id":52757,"name":"Enchant Boots - Major Agility","icon":"inv_misc_enchantedscroll"}, +{"id":52759,"name":"Enchant Gloves - Greater Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":52760,"name":"Enchant Weapon - Hurricane","icon":"inv_misc_enchantedscroll"}, +{"id":52761,"name":"Enchant Weapon - Heartsong","icon":"inv_misc_enchantedscroll"}, +{"id":52762,"name":"Enchant Shield - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52763,"name":"Enchant Bracer - Superior Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":52764,"name":"Enchant Cloak - Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":52765,"name":"Enchant Chest - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":52766,"name":"Enchant Bracer - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":52767,"name":"Enchant Cloak - Protection","icon":"inv_misc_enchantedscroll"}, +{"id":52768,"name":"Enchant Off-Hand - Superior Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52769,"name":"Enchant Boots - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":52770,"name":"Enchant Bracer - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":52771,"name":"Enchant Boots - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52772,"name":"Enchant Bracer - Greater Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":52773,"name":"Enchant Cloak - Greater Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52781,"name":"Enchant Boots - Assassin's Step","icon":"inv_misc_enchantedscroll"}, +{"id":52782,"name":"Enchant Boots - Lavawalker","icon":"inv_misc_enchantedscroll"}, +{"id":52783,"name":"Enchant Gloves - Mighty Strength","icon":"inv_misc_enchantedscroll"}, +{"id":52784,"name":"Enchant Gloves - Greater Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52785,"name":"Enchant Bracer - Greater Speed","icon":"inv_misc_enchantedscroll"}, {"id":54447,"name":"Enchanted Spellthread","icon":"item_spellcloththread"}, {"id":54448,"name":"Powerful Enchanted Spellthread","icon":"inv_misc_thread_eternium"}, {"id":54449,"name":"Ghostly Spellthread","icon":"spell_nature_astralrecal"}, @@ -8077,2318 +17968,957 @@ {"id":59594,"name":"Gnomish X-Ray Scope","icon":"inv_misc_scopea"}, {"id":59595,"name":"R19 Threatfinder","icon":"inv_misc_scopec"}, {"id":59596,"name":"Safety Catch Removal Kit","icon":"inv_misc_enggizmos_37"}, -{"id":62290,"name":"Seafood Magnifique Feast","icon":"inv_misc_food_meat_cooked_02"}, -{"id":62321,"name":"Lesser Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, -{"id":62342,"name":"Lesser Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, -{"id":62344,"name":"Lesser Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, -{"id":62347,"name":"Lesser Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, -{"id":62649,"name":"Fortune Cookie","icon":"inv_misc_fortunecookie"}, -{"id":62661,"name":"Baked Rockfish","icon":"inv_misc_food_155_fish_78"}, -{"id":62662,"name":"Grilled Dragon","icon":"inv_misc_food_122_steak"}, -{"id":62663,"name":"Lavascale Minestrone","icon":"inv_misc_food_154_fish_77"}, -{"id":62664,"name":"Crocolisk Au Gratin","icon":"inv_misc_food_meat_cooked_10"}, -{"id":62665,"name":"Basilisk Liverdog","icon":"inv_misc_food_17"}, -{"id":62666,"name":"Delicious Sagefish Tail","icon":"inv_misc_food_158_fish_81"}, -{"id":62667,"name":"Mushroom Sauce Mudfish","icon":"inv_misc_food_meat_cooked_01"}, -{"id":62668,"name":"Blackbelly Sushi","icon":"inv_misc_food_161_fish_89"}, -{"id":62669,"name":"Skewered Eel","icon":"inv_misc_food_163_fish_91"}, -{"id":62670,"name":"Beer-Basted Crocolisk","icon":"inv_misc_food_meat_cooked_08"}, -{"id":62671,"name":"Severed Sagefish Head","icon":"inv_misc_food_160_fish_87"}, -{"id":68714,"name":"Greater Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, -{"id":68715,"name":"Greater Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, -{"id":68716,"name":"Greater Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, -{"id":68717,"name":"Greater Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, -{"id":68764,"name":"Arcanum of the Earthen Ring","icon":"spell_fire_masterofelements"}, -{"id":68765,"name":"Arcanum of Hyjal","icon":"spell_fire_masterofelements"}, -{"id":68766,"name":"Arcanum of the Ramkahen","icon":"spell_fire_masterofelements"}, -{"id":68767,"name":"Arcanum of the Wildhammer","icon":"spell_fire_masterofelements"}, -{"id":68768,"name":"Arcanum of Vicious Strength","icon":"ability_warrior_shieldmastery"}, -{"id":68769,"name":"Arcanum of Vicious Agility","icon":"ability_warrior_rampage"}, -{"id":68770,"name":"Arcanum of Vicious Intellect","icon":"spell_arcane_arcaneresilience"}, +{"id":62321,"name":"Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, +{"id":62333,"name":"Greater Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, +{"id":62342,"name":"Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, +{"id":62343,"name":"Greater Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, +{"id":62344,"name":"Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, +{"id":62345,"name":"Greater Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, +{"id":62346,"name":"Greater Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":62347,"name":"Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":68134,"name":"Enchant 2H Weapon - Mighty Agility","icon":"inv_misc_enchantedscroll"}, {"id":68772,"name":"Greater Inscription of Vicious Intellect","icon":"inv_misc_gem_bloodstone_02"}, {"id":68773,"name":"Greater Inscription of Vicious Strength","icon":"inv_misc_gem_emeraldrough_02"}, -{"id":68815,"name":"Greater Inscription of Vicious Sententiousness","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":68774,"name":"Greater Inscription of Vicious Agility","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":68784,"name":"Enchant Bracer - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":68785,"name":"Enchant Bracer - Major Strength","icon":"inv_misc_enchantedscroll"}, +{"id":68786,"name":"Enchant Bracer - Mighty Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":68796,"name":"Reinforced Fishing Line","icon":"inv_fabric_mageweave_02"}, {"id":70139,"name":"Flintlocke's Woodchucker","icon":"inv_misc_scopeb"}, -{"id":71720,"name":"Drakehide Leg Armor","icon":"inv_misc_cataclysmarmorkit_08"} +{"id":71720,"name":"Drakehide Leg Armor","icon":"inv_misc_cataclysmarmorkit_08"}, +{"id":74700,"name":"Enchant Bracer - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":74701,"name":"Enchant Bracer - Major Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":74703,"name":"Enchant Bracer - Super Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":74704,"name":"Enchant Bracer - Exceptional Strength","icon":"inv_misc_enchantedscroll"}, +{"id":74705,"name":"Enchant Bracer - Greater Agility","icon":"inv_misc_enchantedscroll"}, +{"id":74706,"name":"Enchant Chest - Super Resilience","icon":"inv_misc_enchantedscroll"}, +{"id":74707,"name":"Enchant Chest - Mighty Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":74708,"name":"Enchant Chest - Glorious Stats","icon":"inv_misc_enchantedscroll"}, +{"id":74709,"name":"Enchant Chest - Superior Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":74710,"name":"Enchant Cloak - Accuracy","icon":"inv_misc_enchantedscroll"}, +{"id":74711,"name":"Enchant Cloak - Greater Protection","icon":"inv_misc_enchantedscroll"}, +{"id":74712,"name":"Enchant Cloak - Superior Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":74713,"name":"Enchant Cloak - Superior Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":74715,"name":"Enchant Boots - Greater Haste","icon":"inv_misc_enchantedscroll"}, +{"id":74716,"name":"Enchant Boots - Greater Precision","icon":"inv_misc_enchantedscroll"}, +{"id":74717,"name":"Enchant Boots - Blurred Speed","icon":"inv_misc_enchantedscroll"}, +{"id":74718,"name":"Enchant Boots - Pandaren's Step","icon":"inv_misc_enchantedscroll"}, +{"id":74719,"name":"Enchant Gloves - Greater Haste","icon":"inv_misc_enchantedscroll"}, +{"id":74720,"name":"Enchant Gloves - Superior Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":74721,"name":"Enchant Gloves - Super Strength","icon":"inv_misc_enchantedscroll"}, +{"id":74722,"name":"Enchant Gloves - Superior Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":74723,"name":"Enchant Weapon - Windsong","icon":"inv_misc_enchantedscroll"}, +{"id":74724,"name":"Enchant Weapon - Jade Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":74725,"name":"Enchant Weapon - Elemental Force","icon":"inv_misc_enchantedscroll"}, +{"id":74726,"name":"Enchant Weapon - Dancing Steel","icon":"inv_misc_enchantedscroll"}, +{"id":74727,"name":"Enchant Weapon - Colossus","icon":"inv_misc_enchantedscroll"}, +{"id":74728,"name":"Enchant Weapon - River's Song","icon":"inv_misc_enchantedscroll"}, +{"id":74729,"name":"Enchant Off-Hand - Major Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":77529,"name":"Lord Blastington's Scope of Doom","icon":"inv_misc_scopeb"}, +{"id":77531,"name":"Mirror Scope","icon":"inv_misc_scopea"}, +{"id":79061,"name":"Enchant Weapon - Pandamonium (DNT)","icon":"inv_misc_enchantedscroll"}, +{"id":82442,"name":"Pearlescent Spellthread","icon":"inv_bracer_69"}, +{"id":82443,"name":"Cerulean Spellthread","icon":"inv_misc_thread_eternium"}, +{"id":82444,"name":"Greater Pearlescent Spellthread","icon":"inv_belt_42c"}, +{"id":82445,"name":"Greater Cerulean Spellthread","icon":"inv_belt_42"}, +{"id":83006,"name":"Greater Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":83007,"name":"Greater Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":83763,"name":"Ironscale Leg Armor","icon":"inv_misc_armorkit_mop_01"}, +{"id":83764,"name":"Shadowleather Leg Armor","icon":"inv_misc_cataclysmarmorkit_02"}, +{"id":83765,"name":"Angerhide Leg Armor","icon":"inv_misc_armorkit_mop_04"}, +{"id":84575,"name":"Enchant Ring - Greater Agility","icon":"inv_scroll_03"}, +{"id":84576,"name":"Enchant Ring - Greater Intellect","icon":"inv_scroll_03"}, +{"id":84577,"name":"Enchant Ring - Greater Stamina","icon":"inv_scroll_03"}, +{"id":84578,"name":"Enchant Ring - Greater Strength","icon":"inv_scroll_03"}, +{"id":85559,"name":"Sha Armor Kit","icon":"inv_misc_armorkit_28"}, +{"id":85568,"name":"Brutal Leg Armor","icon":"inv_misc_armorkit_mop_02"}, +{"id":85569,"name":"Sha-Touched Leg Armor","icon":"inv_misc_cataclysmarmorkit_01"}, +{"id":85570,"name":"Toughened Leg Armor","icon":"inv_misc_armorkit_mop_00"}, +{"id":86597,"name":"Living Steel Weapon Chain","icon":"inv_misc_steelweaponchain"}, +{"id":86599,"name":"Ghost Iron Shield Spike","icon":"inv_shield_63"}, +{"id":87559,"name":"Greater Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":87560,"name":"Greater Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":87577,"name":"Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87578,"name":"Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87579,"name":"Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87580,"name":"Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87581,"name":"Secret Ox Horn Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87582,"name":"Secret Crane Wing Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87583,"name":"Secret Serpent Pearl Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87584,"name":"Secret Tiger Claw Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87585,"name":"Secret Tiger Fang Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87748,"name":"Watergliding Jets","icon":"inv_scroll_03"}, +{"id":89717,"name":"Enchant Bracer - Exceptional Strength (Scaling)","icon":"inv_misc_enchantedscroll"}, +{"id":89737,"name":"Enchant Shield - Greater Parry","icon":"inv_misc_enchantedscroll"}, +{"id":95349,"name":"Enchant Weapon - Glorious Tyranny","icon":"inv_misc_enchantedscroll"}, +{"id":98163,"name":"Enchant Weapon - Bloody Dancing Steel","icon":"inv_misc_enchantedscroll"}, +{"id":98164,"name":"Enchant Weapon - Spirit of Conquest","icon":"inv_misc_enchantedscroll"}, +{"id":187737,"name":"Enchant Bracer - Assault","icon":"inv_misc_desecrated_clothbracer"}, +{"id":187783,"name":"Enchant Shield - Resistance","icon":"spell_holy_avengersshield"}, +{"id":187807,"name":"Enchant Cloak - Greater Nature Resistance","icon":"spell_nature_elementalshields"}, +{"id":187814,"name":"Enchant Shield - Frost Resistance","icon":"spell_frost_frostward"}, +{"id":187815,"name":"Enchant Cloak - Greater Fire Resistance","icon":"spell_fire_sealoffire"} ], "spellIcons":[ -{"id":10,"name":"Blizzard","icon":"spell_frost_icestorm","hasBuff":true}, -{"id":53,"name":"Backstab","icon":"ability_backstab"}, -{"id":71,"name":"Defensive Stance","icon":"ability_warrior_defensivestance"}, -{"id":78,"name":"Heroic Strike","icon":"ability_rogue_ambush"}, -{"id":100,"name":"Charge","icon":"ability_warrior_charge"}, -{"id":116,"name":"Frostbolt","icon":"spell_frost_frostbolt02","hasBuff":true}, +{"id":99,"name":"Disorienting Roar","icon":"ability_druid_demoralizingroar","hasBuff":true}, {"id":133,"name":"Fireball","icon":"spell_fire_flamebolt"}, -{"id":172,"name":"Corruption","icon":"spell_shadow_abominationexplosion","hasBuff":true}, -{"id":324,"name":"Lightning Shield","icon":"spell_nature_lightningshield","hasBuff":true}, -{"id":348,"name":"Immolate","icon":"spell_fire_immolation","hasBuff":true}, -{"id":403,"name":"Lightning Bolt","icon":"spell_nature_lightning"}, -{"id":421,"name":"Chain Lightning","icon":"spell_nature_chainlightning"}, -{"id":465,"name":"Devotion Aura","icon":"spell_holy_devotionaura","hasBuff":true}, -{"id":469,"name":"Commanding Shout","icon":"ability_warrior_rallyingcry","hasBuff":true}, +{"id":172,"name":"Corruption","icon":"spell_shadow_abominationexplosion"}, {"id":498,"name":"Divine Protection","icon":"spell_holy_divineprotection","hasBuff":true}, -{"id":589,"name":"Shadow Word: Pain","icon":"spell_shadow_shadowwordpain","hasBuff":true}, -{"id":603,"name":"Bane of Doom","icon":"spell_shadow_auraofdarkness","hasBuff":true}, -{"id":686,"name":"Shadow Bolt","icon":"spell_shadow_shadowbolt"}, -{"id":688,"name":"Summon Imp","icon":"spell_shadow_summonimp"}, -{"id":689,"name":"Drain Life","icon":"spell_shadow_lifedrain02","hasBuff":true}, -{"id":691,"name":"Summon Felhunter","icon":"spell_shadow_summonfelhunter"}, -{"id":702,"name":"Curse of Weakness","icon":"spell_shadow_curseofmannoroth","hasBuff":true}, -{"id":703,"name":"Garrote","icon":"ability_rogue_garrote","hasBuff":true}, -{"id":712,"name":"Summon Succubus","icon":"spell_shadow_summonsuccubus"}, -{"id":724,"name":"Lightwell","icon":"spell_holy_summonlightwell"}, +{"id":605,"name":"Dominate Mind","icon":"spell_shadow_shadowworddominate","hasBuff":true}, {"id":740,"name":"Tranquility","icon":"spell_nature_tranquility","hasBuff":true}, {"id":768,"name":"Cat Form","icon":"ability_druid_catform","hasBuff":true}, -{"id":770,"name":"Faerie Fire","icon":"spell_nature_faeriefire"}, -{"id":772,"name":"Rend","icon":"ability_gouge"}, +{"id":770,"name":"Faerie Fire","icon":"spell_nature_faeriefire","hasBuff":true}, {"id":779,"name":"Swipe","icon":"inv_misc_monsterclaw_03"}, -{"id":845,"name":"Cleave","icon":"ability_warrior_cleave"}, -{"id":879,"name":"Exorcism","icon":"spell_holy_excorcism_02","hasBuff":true}, -{"id":980,"name":"Bane of Agony","icon":"spell_shadow_curseofsargeras","hasBuff":true}, -{"id":1079,"name":"Rip","icon":"ability_ghoulfrenzy","hasBuff":true}, -{"id":1120,"name":"Drain Soul","icon":"spell_shadow_haunting","hasBuff":true}, -{"id":1122,"name":"Summon Infernal","icon":"spell_shadow_summoninfernal"}, -{"id":1126,"name":"Mark of the Wild","icon":"spell_nature_regeneration"}, +{"id":879,"name":"Exorcism","icon":"spell_holy_excorcism_02"}, {"id":1130,"name":"Hunter's Mark","icon":"ability_hunter_snipershot","hasBuff":true}, -{"id":1134,"name":"Inner Rage","icon":"warrior_talent_icon_innerrage","hasBuff":true}, -{"id":1160,"name":"Demoralizing Shout","icon":"ability_warrior_warcry","hasBuff":true}, -{"id":1329,"name":"Mutilate","icon":"ability_rogue_shadowstrikes"}, -{"id":1449,"name":"Arcane Explosion","icon":"spell_nature_wispsplode"}, -{"id":1454,"name":"Life Tap","icon":"spell_shadow_burningspirit"}, -{"id":1459,"name":"Arcane Brilliance","icon":"spell_holy_magicalsentry"}, -{"id":1464,"name":"Slam","icon":"ability_warrior_decisivestrike"}, -{"id":1490,"name":"Curse of the Elements","icon":"spell_shadow_chilltouch","hasBuff":true}, -{"id":1535,"name":"Fire Nova","icon":"spell_shaman_firenova"}, -{"id":1680,"name":"Whirlwind","icon":"ability_whirlwind"}, -{"id":1714,"name":"Curse of Tongues","icon":"spell_shadow_curseoftounges","hasBuff":true}, +{"id":1459,"name":"Arcane Brilliance","icon":"spell_holy_magicalsentry","hasBuff":true}, +{"id":1463,"name":"Incanter's Ward","icon":"spell_shadow_detectlesserinvisibility","hasBuff":true}, +{"id":1490,"name":"Curse of the Elements","icon":"warlock_curse_shadow","hasBuff":true}, {"id":1719,"name":"Recklessness","icon":"ability_criticalstrike","hasBuff":true}, -{"id":1752,"name":"Sinister Strike","icon":"spell_shadow_ritualofsacrifice"}, -{"id":1776,"name":"Gouge","icon":"ability_gouge","hasBuff":true}, -{"id":1784,"name":"Stealth","icon":"ability_stealth","hasBuff":true}, -{"id":1822,"name":"Rake","icon":"ability_druid_disembowel","hasBuff":true}, -{"id":1856,"name":"Vanish","icon":"ability_vanish","hasBuff":true}, -{"id":1943,"name":"Rupture","icon":"ability_rogue_rupture","hasBuff":true}, {"id":1966,"name":"Feint","icon":"ability_rogue_feint","hasBuff":true}, -{"id":1978,"name":"Serpent Sting","icon":"ability_hunter_quickshot","hasBuff":true}, -{"id":2062,"name":"Earth Elemental Totem","icon":"spell_nature_earthelemental_totem"}, -{"id":2098,"name":"Eviscerate","icon":"ability_rogue_eviscerate"}, {"id":2120,"name":"Flamestrike","icon":"spell_fire_selfdestruct","hasBuff":true}, {"id":2136,"name":"Fire Blast","icon":"spell_fire_fireball"}, -{"id":2457,"name":"Battle Stance","icon":"ability_warrior_offensivestance"}, -{"id":2458,"name":"Berserker Stance","icon":"ability_racial_avatar"}, -{"id":2565,"name":"Shield Block","icon":"ability_defend","hasBuff":true}, -{"id":2643,"name":"Multi-Shot","icon":"ability_upgrademoonglaive"}, -{"id":2812,"name":"Holy Wrath","icon":"spell_holy_purifyingpower","hasBuff":true}, -{"id":2818,"name":"Deadly Poison","icon":"ability_rogue_dualweild","hasBuff":true}, +{"id":2304,"name":"Light Armor Kit","icon":"inv_misc_armorkit_17"}, +{"id":2313,"name":"Medium Armor Kit","icon":"inv_misc_armorkit_15"}, +{"id":2812,"name":"Denounce","icon":"spell_holy_purifyingpower","hasBuff":true}, {"id":2825,"name":"Bloodlust","icon":"spell_nature_bloodlust","hasBuff":true}, -{"id":2894,"name":"Fire Elemental Totem","icon":"spell_fire_elemental_totem"}, -{"id":2912,"name":"Starfire","icon":"spell_arcane_starfire"}, {"id":2944,"name":"Devouring Plague","icon":"spell_shadow_devouringplague","hasBuff":true}, {"id":2948,"name":"Scorch","icon":"spell_fire_soulburn"}, {"id":3044,"name":"Arcane Shot","icon":"ability_impalingbolt"}, -{"id":3045,"name":"Rapid Fire","icon":"ability_hunter_runningshot","hasBuff":true}, -{"id":3599,"name":"Searing Totem","icon":"spell_fire_searingtotem"}, -{"id":3674,"name":"Black Arrow","icon":"spell_shadow_painspike","hasBuff":true}, -{"id":3738,"name":"Wrath of Air Totem","icon":"spell_nature_slowingtotem"}, -{"id":5171,"name":"Slice and Dice","icon":"ability_rogue_slicedice","hasBuff":true}, +{"id":4265,"name":"Heavy Armor Kit","icon":"inv_misc_armorkit_16"}, +{"id":4405,"name":"Crude Scope","icon":"inv_misc_spyglass_02"}, +{"id":4406,"name":"Standard Scope","icon":"inv_misc_spyglass_02"}, +{"id":4407,"name":"Accurate Scope","icon":"inv_misc_spyglass_02"}, {"id":5176,"name":"Wrath","icon":"spell_nature_wrathv2"}, -{"id":5217,"name":"Tiger's Fury","icon":"ability_mount_jungletiger","hasBuff":true}, -{"id":5221,"name":"Shred","icon":"spell_shadow_vampiricaura"}, -{"id":5229,"name":"Enrage","icon":"ability_druid_enrage","hasBuff":true}, -{"id":5308,"name":"Execute","icon":"inv_sword_48"}, -{"id":5394,"name":"Healing Stream Totem","icon":"inv_spear_04"}, +{"id":5211,"name":"Mighty Bash","icon":"ability_druid_bash","hasBuff":true}, +{"id":5421,"name":"Enchant: Fiery Blaze","icon":"inv_jewelry_talisman_01"}, {"id":5487,"name":"Bear Form","icon":"ability_racial_bearform","hasBuff":true}, -{"id":5570,"name":"Insect Swarm","icon":"spell_nature_insectswarm","hasBuff":true}, -{"id":5675,"name":"Mana Spring Totem","icon":"spell_nature_manaregentotem"}, -{"id":5676,"name":"Searing Pain","icon":"spell_fire_soulburn"}, -{"id":5938,"name":"Shiv","icon":"inv_throwingknife_04"}, -{"id":5952,"name":"Throwing Specialization","icon":"ability_rogue_throwingspecialization"}, -{"id":6117,"name":"Mage Armor","icon":"spell_magearmor","hasBuff":true}, -{"id":6343,"name":"Thunder Clap","icon":"spell_nature_thunderclap","hasBuff":true}, -{"id":6353,"name":"Soul Fire","icon":"spell_fire_fireball02"}, +{"id":5570,"name":"Insect Swarm","icon":"spell_nature_insect_swarm2","hasBuff":true}, +{"id":6041,"name":"Weapon Chain","icon":"spell_frost_chainsofice"}, +{"id":6042,"name":"Iron Shield Spike","icon":"inv_misc_armorkit_01"}, +{"id":6043,"name":"Weapon Counterweight","icon":"inv_misc_orb_01"}, +{"id":6342,"name":"Enchant Chest - Minor Mana","icon":"inv_misc_note_01"}, +{"id":6344,"name":"Enchant Bracer - Minor Spirit","icon":"inv_misc_note_01"}, +{"id":6345,"name":"Enchant Cloak - Minor Protection","icon":"inv_misc_note_01"}, +{"id":6346,"name":"Enchant Chest - Lesser Mana","icon":"inv_misc_note_01"}, +{"id":6347,"name":"Enchant Bracer - Minor Strength","icon":"inv_misc_note_01"}, +{"id":6348,"name":"Enchant Weapon - Minor Beastslayer","icon":"inv_misc_note_01"}, +{"id":6349,"name":"Enchant 2H Weapon - Lesser Intellect","icon":"inv_misc_note_01"}, +{"id":6375,"name":"Enchant Bracer - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":6376,"name":"Enchant Boots - Minor Stamina","icon":"inv_misc_note_01"}, +{"id":6377,"name":"Enchant Boots - Minor Agility","icon":"inv_misc_note_01"}, {"id":6544,"name":"Heroic Leap","icon":"ability_heroicleap"}, -{"id":6562,"name":"Heroic Presence","icon":"inv_helmet_21"}, -{"id":6572,"name":"Revenge","icon":"ability_warrior_revenge"}, -{"id":6673,"name":"Battle Shout","icon":"ability_warrior_battleshout","hasBuff":true}, -{"id":6785,"name":"Ravage","icon":"ability_druid_ravage"}, -{"id":6807,"name":"Maul","icon":"ability_druid_maul"}, +{"id":6562,"name":"Heroic Presence","icon":"inv_helmet_21","hasBuff":true}, +{"id":6789,"name":"Mortal Coil","icon":"ability_warlock_mortalcoil","hasBuff":true}, {"id":7268,"name":"Arcane Missiles","icon":"spell_nature_starfall"}, -{"id":7384,"name":"Overpower","icon":"ability_meleedamage"}, -{"id":7386,"name":"Sunder Armor","icon":"ability_warrior_sunder","hasBuff":true}, -{"id":8042,"name":"Earth Shock","icon":"spell_nature_earthshock","hasBuff":true}, -{"id":8050,"name":"Flame Shock","icon":"spell_fire_flameshock","hasBuff":true}, -{"id":8056,"name":"Frost Shock","icon":"spell_frost_frostshock","hasBuff":true}, -{"id":8071,"name":"Stoneskin Totem","icon":"spell_nature_stoneskintotem"}, -{"id":8075,"name":"Strength of Earth Totem","icon":"spell_nature_earthbindtotem"}, +{"id":7967,"name":"Mithril Shield Spike","icon":"inv_misc_armorkit_02"}, +{"id":7969,"name":"Mithril Spurs","icon":"ability_rogue_sprint"}, {"id":8092,"name":"Mind Blast","icon":"spell_shadow_unholyfrenzy"}, -{"id":8143,"name":"Tremor Totem","icon":"spell_nature_tremortotem"}, -{"id":8190,"name":"Magma Totem","icon":"spell_fire_selfdestruct"}, -{"id":8227,"name":"Flametongue Totem","icon":"spell_nature_guardianward"}, -{"id":8512,"name":"Windfury Totem","icon":"spell_nature_windfury","hasBuff":true}, -{"id":8647,"name":"Expose Armor","icon":"ability_warrior_riposte","hasBuff":true}, -{"id":8676,"name":"Ambush","icon":"ability_rogue_ambush"}, -{"id":8680,"name":"Instant Poison","icon":"ability_poisons"}, +{"id":8173,"name":"Thick Armor Kit","icon":"inv_misc_armorkit_07"}, +{"id":8647,"name":"Expose Armor","icon":"ability_warrior_riposte"}, {"id":8921,"name":"Moonfire","icon":"spell_nature_starfall","hasBuff":true}, -{"id":9799,"name":"Eye for an Eye","icon":"spell_holy_eyeforaneye"}, {"id":10060,"name":"Power Infusion","icon":"spell_holy_powerinfusion","hasBuff":true}, -{"id":11078,"name":"Improved Fire Blast","icon":"spell_fire_fireball"}, -{"id":11080,"name":"Improved Fire Blast","icon":"spell_fire_fireball"}, -{"id":11083,"name":"Burning Soul","icon":"spell_burningsoul"}, -{"id":11094,"name":"Molten Shields","icon":"spell_fire_firearmor"}, -{"id":11095,"name":"Critical Mass","icon":"spell_nature_wispheal"}, -{"id":11103,"name":"Impact","icon":"spell_fire_meteorstorm"}, -{"id":11113,"name":"Blast Wave","icon":"spell_holy_excorcism_02","hasBuff":true}, -{"id":11115,"name":"Improved Scorch","icon":"spell_fire_soulburn"}, -{"id":11119,"name":"Ignite","icon":"spell_fire_incinerate"}, -{"id":11120,"name":"Ignite","icon":"spell_fire_incinerate"}, -{"id":11129,"name":"Combustion","icon":"spell_fire_sealoffire"}, -{"id":11151,"name":"Piercing Ice","icon":"spell_frost_frostbolt"}, -{"id":11170,"name":"Shatter","icon":"spell_frost_frostshock"}, -{"id":11175,"name":"Permafrost","icon":"spell_frost_wisp"}, -{"id":11185,"name":"Ice Shards","icon":"spell_frost_ice-shards"}, -{"id":11190,"name":"Improved Cone of Cold","icon":"spell_frost_glacier"}, -{"id":11210,"name":"Improved Polymorph","icon":"spell_nature_polymorph"}, -{"id":11213,"name":"Arcane Concentration","icon":"spell_shadow_manaburn"}, -{"id":11242,"name":"Spell Impact","icon":"spell_nature_wispsplode"}, -{"id":11255,"name":"Improved Counterspell","icon":"spell_frost_iceshock"}, +{"id":10546,"name":"Deadly Scope","icon":"inv_misc_spyglass_02"}, +{"id":10548,"name":"Sniper Scope","icon":"inv_misc_spyglass_02"}, +{"id":11038,"name":"Enchant 2H Weapon - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":11039,"name":"Enchant Cloak - Minor Agility","icon":"inv_misc_note_01"}, +{"id":11081,"name":"Enchant Shield - Lesser Protection","icon":"inv_misc_note_01"}, +{"id":11101,"name":"Enchant Bracer - Lesser Strength","icon":"inv_misc_note_01"}, +{"id":11150,"name":"Enchant Gloves - Mining","icon":"inv_misc_note_01"}, +{"id":11151,"name":"Enchant Gloves - Herbalism","icon":"inv_misc_note_01"}, +{"id":11163,"name":"Enchant Bracer - Lesser Dodge","icon":"inv_misc_note_01"}, +{"id":11164,"name":"Enchant Weapon - Lesser Beastslayer","icon":"inv_misc_note_01"}, +{"id":11165,"name":"Enchant Weapon - Lesser Elemental Slayer","icon":"inv_misc_note_01"}, +{"id":11166,"name":"Enchant Gloves - Skinning","icon":"inv_misc_note_01"}, +{"id":11167,"name":"Enchant Boots - Lesser Spirit","icon":"inv_misc_note_01"}, +{"id":11168,"name":"Enchant Shield - Lesser Parry","icon":"inv_misc_note_01"}, +{"id":11202,"name":"Enchant Shield - Stamina","icon":"inv_misc_note_01"}, +{"id":11203,"name":"Enchant Gloves - Advanced Mining","icon":"inv_misc_note_01"}, +{"id":11204,"name":"Enchant Bracer - Greater Spirit","icon":"inv_misc_note_01"}, +{"id":11205,"name":"Enchant Gloves - Advanced Herbalism","icon":"inv_misc_note_01"}, +{"id":11206,"name":"Enchant Cloak - Lesser Agility","icon":"inv_misc_note_01"}, +{"id":11207,"name":"Enchant Weapon - Fiery Weapon","icon":"inv_misc_note_01"}, +{"id":11208,"name":"Enchant Weapon - Demonslaying","icon":"inv_misc_note_01"}, +{"id":11223,"name":"Enchant Bracer - Dodge","icon":"inv_misc_note_01"}, +{"id":11225,"name":"Enchant Bracer - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":11226,"name":"Enchant Gloves - Riding Skill","icon":"inv_misc_note_01"}, {"id":11366,"name":"Pyroblast","icon":"spell_fire_fireball02","hasBuff":true}, -{"id":11367,"name":"Improved Scorch","icon":"spell_fire_soulburn"}, {"id":11374,"name":"Gift of Arthas","icon":"spell_nature_nullifydisease","hasBuff":true}, {"id":11426,"name":"Ice Barrier","icon":"spell_ice_lament","hasBuff":true}, {"id":11958,"name":"Cold Snap","icon":"spell_frost_wizardmark"}, -{"id":12042,"name":"Arcane Power","icon":"spell_nature_lightning","hasBuff":true}, {"id":12043,"name":"Presence of Mind","icon":"spell_nature_enchantarmor","hasBuff":true}, {"id":12051,"name":"Evocation","icon":"spell_nature_purge","hasBuff":true}, -{"id":12289,"name":"Improved Hamstring","icon":"ability_shockwave"}, -{"id":12290,"name":"Drums of War","icon":"achievement_bg_winwsg_3-0"}, -{"id":12292,"name":"Death Wish","icon":"spell_shadow_deathpact","hasBuff":true}, -{"id":12294,"name":"Mortal Strike","icon":"ability_warrior_savageblow","hasBuff":true}, -{"id":12295,"name":"Tactical Mastery","icon":"spell_nature_enchantarmor"}, -{"id":12298,"name":"Shield Specialization","icon":"inv_shield_06"}, -{"id":12299,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":12311,"name":"Gag Order","icon":"inv_axe_66"}, -{"id":12317,"name":"Enrage","icon":"spell_shadow_unholyfrenzy"}, -{"id":12319,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":12320,"name":"Cruelty","icon":"ability_rogue_eviscerate"}, -{"id":12321,"name":"Booming Voice","icon":"spell_nature_purge"}, -{"id":12322,"name":"Battle Trance","icon":"inv_helmet_06"}, +{"id":12292,"name":"Bloodbath","icon":"ability_warrior_bloodbath","hasBuff":true}, {"id":12323,"name":"Piercing Howl","icon":"spell_shadow_deathscream","hasBuff":true}, -{"id":12328,"name":"Sweeping Strikes","icon":"ability_rogue_slicedice","hasBuff":true}, -{"id":12329,"name":"Meat Cleaver","icon":"warrior_talent_icon_mastercleaver"}, -{"id":12330,"name":"Improved Slam","icon":"ability_warrior_decisivestrike"}, -{"id":12357,"name":"Impact","icon":"spell_fire_meteorstorm"}, -{"id":12358,"name":"Impact","icon":"spell_fire_meteorstorm"}, -{"id":12467,"name":"Spell Impact","icon":"spell_nature_wispsplode"}, -{"id":12469,"name":"Spell Impact","icon":"spell_nature_wispsplode"}, -{"id":12472,"name":"Icy Veins","icon":"spell_frost_coldhearted","hasBuff":true}, -{"id":12487,"name":"Ice Shards","icon":"spell_frost_ice-shards"}, -{"id":12488,"name":"Improved Blizzard","icon":"spell_frost_icestorm"}, -{"id":12489,"name":"Improved Cone of Cold","icon":"spell_frost_glacier"}, -{"id":12536,"name":"Clearcasting","icon":"spell_shadow_manaburn","hasBuff":true}, -{"id":12569,"name":"Permafrost","icon":"spell_frost_wisp"}, -{"id":12571,"name":"Permafrost","icon":"spell_frost_wisp"}, -{"id":12574,"name":"Arcane Concentration","icon":"spell_shadow_manaburn"}, -{"id":12575,"name":"Arcane Concentration","icon":"spell_shadow_manaburn"}, -{"id":12592,"name":"Improved Polymorph","icon":"spell_nature_polymorph"}, -{"id":12598,"name":"Improved Counterspell","icon":"spell_frost_iceshock"}, -{"id":12668,"name":"Improved Hamstring","icon":"ability_shockwave"}, -{"id":12676,"name":"Tactical Mastery","icon":"spell_nature_enchantarmor"}, -{"id":12724,"name":"Shield Specialization","icon":"inv_shield_06"}, -{"id":12725,"name":"Shield Specialization","icon":"inv_shield_06"}, -{"id":12761,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":12762,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":12797,"name":"Improved Revenge","icon":"ability_warrior_revenge"}, -{"id":12799,"name":"Improved Revenge","icon":"ability_warrior_revenge"}, -{"id":12809,"name":"Concussion Blow","icon":"ability_thunderbolt","hasBuff":true}, -{"id":12834,"name":"Deep Wounds","icon":"ability_backstab"}, -{"id":12835,"name":"Booming Voice","icon":"spell_nature_purge"}, -{"id":12846,"name":"Ignite","icon":"spell_fire_incinerate"}, -{"id":12849,"name":"Deep Wounds","icon":"ability_backstab"}, -{"id":12852,"name":"Cruelty","icon":"ability_rogue_eviscerate"}, -{"id":12867,"name":"Deep Wounds","icon":"ability_backstab"}, -{"id":12868,"name":"Deep Wounds","icon":"ability_backstab"}, -{"id":12872,"name":"Critical Mass","icon":"spell_nature_wispheal"}, -{"id":12873,"name":"Critical Mass","icon":"spell_nature_wispheal"}, -{"id":12950,"name":"Meat Cleaver","icon":"warrior_talent_icon_mastercleaver"}, -{"id":12952,"name":"Piercing Ice","icon":"spell_frost_frostbolt"}, -{"id":12953,"name":"Piercing Ice","icon":"spell_frost_frostbolt"}, -{"id":12958,"name":"Gag Order","icon":"inv_axe_66"}, -{"id":12963,"name":"Drums of War","icon":"achievement_bg_winwsg_3-0"}, -{"id":12964,"name":"Battle Trance","icon":"inv_helmet_06","hasBuff":true}, -{"id":12968,"name":"Flurry","icon":"ability_ghoulfrenzy","hasBuff":true}, -{"id":12971,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":12972,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":12975,"name":"Last Stand","icon":"spell_holy_ashestoashes"}, -{"id":12982,"name":"Shatter","icon":"spell_frost_frostshock"}, -{"id":12983,"name":"Shatter","icon":"spell_frost_frostshock"}, -{"id":13045,"name":"Enrage","icon":"spell_shadow_unholyfrenzy"}, -{"id":13046,"name":"Enrage","icon":"spell_shadow_unholyfrenzy"}, -{"id":13165,"name":"Aspect of the Hawk","icon":"spell_nature_ravenform","hasBuff":true}, -{"id":13218,"name":"Wound Poison","icon":"inv_misc_herb_16","hasBuff":true}, -{"id":13705,"name":"Precision","icon":"ability_marksmanship"}, -{"id":13712,"name":"Lightning Reflexes","icon":"spell_nature_invisibilty"}, -{"id":13732,"name":"Improved Sinister Strike","icon":"spell_shadow_ritualofsacrifice"}, -{"id":13733,"name":"Puncturing Wounds","icon":"ability_backstab"}, -{"id":13741,"name":"Improved Gouge","icon":"ability_gouge"}, -{"id":13743,"name":"Improved Sprint","icon":"ability_rogue_sprint"}, -{"id":13750,"name":"Adrenaline Rush","icon":"spell_shadow_shadowworddominate","hasBuff":true}, -{"id":13754,"name":"Improved Kick","icon":"ability_kick"}, -{"id":13788,"name":"Lightning Reflexes","icon":"spell_nature_invisibilty"}, -{"id":13789,"name":"Lightning Reflexes","icon":"spell_nature_invisibilty"}, -{"id":13793,"name":"Improved Gouge","icon":"ability_gouge"}, -{"id":13812,"name":"Explosive Trap","icon":"spell_fire_selfdestruct","hasBuff":true}, -{"id":13832,"name":"Precision","icon":"ability_marksmanship"}, -{"id":13843,"name":"Precision","icon":"ability_marksmanship"}, -{"id":13863,"name":"Improved Sinister Strike","icon":"spell_shadow_ritualofsacrifice"}, -{"id":13865,"name":"Puncturing Wounds","icon":"ability_backstab"}, -{"id":13866,"name":"Puncturing Wounds","icon":"ability_backstab"}, -{"id":13867,"name":"Improved Kick","icon":"ability_kick"}, -{"id":13875,"name":"Improved Sprint","icon":"ability_rogue_sprint"}, -{"id":13877,"name":"Blade Flurry","icon":"ability_warrior_punishingblow","hasBuff":true}, -{"id":13975,"name":"Nightstalker","icon":"ability_stealth"}, -{"id":13976,"name":"Initiative","icon":"spell_shadow_fumble"}, -{"id":13979,"name":"Initiative","icon":"spell_shadow_fumble"}, -{"id":13981,"name":"Elusiveness","icon":"spell_magic_lesserinvisibilty"}, -{"id":14057,"name":"Opportunity","icon":"ability_rogue_bloodsplatter"}, -{"id":14062,"name":"Nightstalker","icon":"ability_stealth"}, -{"id":14066,"name":"Elusiveness","icon":"spell_magic_lesserinvisibilty"}, -{"id":14072,"name":"Opportunity","icon":"ability_rogue_bloodsplatter"}, -{"id":14079,"name":"Improved Ambush","icon":"ability_rogue_ambush"}, -{"id":14080,"name":"Improved Ambush","icon":"ability_rogue_ambush"}, -{"id":14128,"name":"Lethality","icon":"ability_criticalstrike"}, -{"id":14132,"name":"Lethality","icon":"ability_criticalstrike"}, -{"id":14135,"name":"Lethality","icon":"ability_criticalstrike"}, -{"id":14156,"name":"Ruthlessness","icon":"ability_druid_disembowel"}, -{"id":14158,"name":"Murderous Intent","icon":"spell_shadow_deathscream"}, -{"id":14159,"name":"Murderous Intent","icon":"spell_shadow_deathscream"}, -{"id":14160,"name":"Ruthlessness","icon":"ability_druid_disembowel"}, -{"id":14161,"name":"Ruthlessness","icon":"ability_druid_disembowel"}, -{"id":14162,"name":"Coup de Grace","icon":"ability_rogue_eviscerate"}, -{"id":14163,"name":"Coup de Grace","icon":"ability_rogue_eviscerate"}, -{"id":14164,"name":"Coup de Grace","icon":"ability_rogue_eviscerate"}, -{"id":14165,"name":"Improved Slice and Dice","icon":"ability_rogue_slicedice"}, -{"id":14166,"name":"Improved Slice and Dice","icon":"ability_rogue_slicedice"}, -{"id":14168,"name":"Improved Expose Armor","icon":"ability_warrior_riposte"}, -{"id":14169,"name":"Improved Expose Armor","icon":"ability_warrior_riposte"}, -{"id":14171,"name":"Serrated Blades","icon":"inv_sword_17"}, -{"id":14172,"name":"Serrated Blades","icon":"inv_sword_17"}, -{"id":14177,"name":"Cold Blood","icon":"spell_ice_lament","hasBuff":true}, -{"id":14179,"name":"Relentless Strikes","icon":"ability_warrior_decisivestrike"}, -{"id":14183,"name":"Premeditation","icon":"spell_shadow_possession"}, -{"id":14185,"name":"Preparation","icon":"ability_rogue_preparation"}, -{"id":14186,"name":"Seal Fate","icon":"ability_rogue_stayofexecution"}, -{"id":14190,"name":"Seal Fate","icon":"ability_rogue_stayofexecution"}, -{"id":14202,"name":"Enrage","icon":"spell_shadow_unholyfrenzy","hasBuff":true}, -{"id":14520,"name":"Mental Agility","icon":"ability_hibernation"}, -{"id":14523,"name":"Atonement","icon":"ability_priest_atonement"}, -{"id":14747,"name":"Inner Sanctum","icon":"spell_holy_innerfire"}, -{"id":14748,"name":"Improved Power Word: Shield","icon":"spell_holy_powerwordshield"}, -{"id":14751,"name":"Chakra","icon":"spell_priest_chakra","hasBuff":true}, -{"id":14768,"name":"Improved Power Word: Shield","icon":"spell_holy_powerwordshield"}, -{"id":14770,"name":"Inner Sanctum","icon":"spell_holy_innerfire"}, -{"id":14771,"name":"Inner Sanctum","icon":"spell_holy_innerfire"}, -{"id":14780,"name":"Mental Agility","icon":"ability_hibernation"}, -{"id":14781,"name":"Mental Agility","icon":"ability_hibernation"}, -{"id":14892,"name":"Inspiration","icon":"spell_holy_layonhands"}, -{"id":14898,"name":"Tome of Light","icon":"inv_misc_book_07"}, -{"id":14908,"name":"Improved Renew","icon":"spell_holy_renew"}, -{"id":14910,"name":"Mind Melt","icon":"spell_shadow_skull"}, -{"id":15020,"name":"Improved Renew","icon":"spell_holy_renew"}, +{"id":12645,"name":"Thorium Shield Spike","icon":"inv_misc_armorkit_20"}, +{"id":14062,"name":"Nightstalker","icon":"ability_stealth","hasBuff":true}, {"id":15235,"name":"Crystal Yield","icon":"inv_misc_gem_amethyst_01","hasBuff":true}, -{"id":15259,"name":"Darkness","icon":"ability_priest_darkness"}, -{"id":15273,"name":"Improved Mind Blast","icon":"spell_shadow_unholyfrenzy"}, -{"id":15274,"name":"Veiled Shadows","icon":"spell_magic_lesserinvisibilty"}, -{"id":15275,"name":"Improved Shadow Word: Pain","icon":"spell_shadow_shadowwordpain"}, -{"id":15286,"name":"Vampiric Embrace","icon":"spell_shadow_unsummonbuilding","hasBuff":true}, -{"id":15307,"name":"Darkness","icon":"ability_priest_darkness"}, -{"id":15308,"name":"Darkness","icon":"ability_priest_darkness"}, -{"id":15311,"name":"Veiled Shadows","icon":"spell_magic_lesserinvisibilty"}, -{"id":15312,"name":"Improved Mind Blast","icon":"spell_shadow_unholyfrenzy"}, -{"id":15313,"name":"Improved Mind Blast","icon":"spell_shadow_unholyfrenzy"}, -{"id":15317,"name":"Improved Shadow Word: Pain","icon":"spell_shadow_shadowwordpain"}, -{"id":15362,"name":"Inspiration","icon":"spell_holy_layonhands"}, -{"id":15392,"name":"Improved Psychic Scream","icon":"spell_shadow_psychicscream"}, {"id":15407,"name":"Mind Flay","icon":"spell_shadow_siphonmana","hasBuff":true}, -{"id":15448,"name":"Improved Psychic Scream","icon":"spell_shadow_psychicscream"}, -{"id":15473,"name":"Shadowform","icon":"spell_shadow_shadowform","hasBuff":true}, -{"id":15487,"name":"Silence","icon":"ability_priest_silence","hasBuff":true}, -{"id":16035,"name":"Concussion","icon":"spell_fire_fireball"}, -{"id":16038,"name":"Call of Flame","icon":"spell_fire_immolation"}, -{"id":16039,"name":"Convection","icon":"spell_shaman_convection"}, -{"id":16040,"name":"Reverberation","icon":"spell_frost_frostward"}, -{"id":16086,"name":"Seasoned Winds","icon":"spell_nature_elementalabsorption"}, -{"id":16105,"name":"Concussion","icon":"spell_fire_fireball"}, -{"id":16106,"name":"Concussion","icon":"spell_fire_fireball"}, -{"id":16109,"name":"Convection","icon":"spell_shaman_convection"}, -{"id":16113,"name":"Reverberation","icon":"spell_frost_frostward"}, -{"id":16160,"name":"Call of Flame","icon":"spell_fire_immolation"}, -{"id":16164,"name":"Elemental Focus","icon":"spell_shadow_manaburn"}, +{"id":15564,"name":"Rugged Armor Kit","icon":"inv_misc_armorkit_09"}, {"id":16166,"name":"Elemental Mastery","icon":"spell_nature_wispheal","hasBuff":true}, -{"id":16173,"name":"Totemic Focus","icon":"spell_nature_moonglow"}, -{"id":16176,"name":"Ancestral Healing","icon":"spell_nature_undyingstrength"}, -{"id":16179,"name":"Tidal Focus","icon":"spell_frost_manarecharge"}, -{"id":16180,"name":"Resurgence","icon":"ability_shaman_watershield"}, -{"id":16187,"name":"Soothing Rains","icon":"spell_nature_giftofthewaterspirit"}, -{"id":16188,"name":"Nature's Swiftness","icon":"spell_nature_ravenform","hasBuff":true}, +{"id":16188,"name":"Ancestral Swiftness","icon":"spell_shaman_elementaloath","hasBuff":true}, {"id":16190,"name":"Mana Tide Totem","icon":"spell_frost_summonwaterelemental"}, -{"id":16196,"name":"Resurgence","icon":"ability_shaman_watershield"}, -{"id":16205,"name":"Soothing Rains","icon":"spell_nature_giftofthewaterspirit"}, -{"id":16214,"name":"Tidal Focus","icon":"spell_frost_manarecharge"}, -{"id":16215,"name":"Tidal Focus","icon":"spell_frost_manarecharge"}, -{"id":16222,"name":"Totemic Focus","icon":"spell_nature_moonglow"}, -{"id":16235,"name":"Ancestral Healing","icon":"spell_nature_undyingstrength"}, -{"id":16246,"name":"Clearcasting","icon":"spell_shadow_manaburn","hasBuff":true}, -{"id":16252,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":16256,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":16261,"name":"Improved Shields","icon":"spell_nature_lightningshield"}, -{"id":16262,"name":"Ancestral Swiftness","icon":"spell_lifegivingspeed"}, -{"id":16266,"name":"Elemental Weapons","icon":"spell_fire_flametounge"}, -{"id":16281,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":16282,"name":"Flurry","icon":"ability_ghoulfrenzy"}, -{"id":16287,"name":"Ancestral Swiftness","icon":"spell_lifegivingspeed"}, -{"id":16290,"name":"Improved Shields","icon":"spell_nature_lightningshield"}, -{"id":16306,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":16307,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":16487,"name":"Blood Craze","icon":"spell_shadow_summonimp"}, -{"id":16489,"name":"Blood Craze","icon":"spell_shadow_summonimp"}, -{"id":16492,"name":"Blood Craze","icon":"spell_shadow_summonimp"}, -{"id":16493,"name":"Impale","icon":"ability_searingarrow"}, -{"id":16494,"name":"Impale","icon":"ability_searingarrow"}, -{"id":16511,"name":"Hemorrhage","icon":"spell_shadow_lifedrain","hasBuff":true}, -{"id":16513,"name":"Vile Poisons","icon":"ability_rogue_feigndeath"}, -{"id":16514,"name":"Vile Poisons","icon":"ability_rogue_feigndeath"}, -{"id":16515,"name":"Vile Poisons","icon":"ability_rogue_feigndeath"}, -{"id":16544,"name":"Seasoned Winds","icon":"spell_nature_elementalabsorption"}, -{"id":16814,"name":"Starlight Wrath","icon":"spell_nature_abolishmagic"}, -{"id":16815,"name":"Starlight Wrath","icon":"spell_nature_abolishmagic"}, -{"id":16816,"name":"Starlight Wrath","icon":"spell_nature_abolishmagic"}, -{"id":16833,"name":"Natural Shapeshifter","icon":"spell_nature_wispsplode"}, -{"id":16834,"name":"Natural Shapeshifter","icon":"spell_nature_wispsplode"}, -{"id":16840,"name":"Overgrowth","icon":"spell_nature_thorns"}, -{"id":16845,"name":"Moonglow","icon":"spell_nature_sentinal"}, -{"id":16846,"name":"Moonglow","icon":"spell_nature_sentinal"}, -{"id":16847,"name":"Moonglow","icon":"spell_nature_sentinal"}, -{"id":16857,"name":"Faerie Fire (Feral)","icon":"spell_nature_faeriefire"}, -{"id":16858,"name":"Feral Aggression","icon":"classic_ability_druid_demoralizingroar"}, -{"id":16859,"name":"Feral Aggression","icon":"classic_ability_druid_demoralizingroar"}, +{"id":16214,"name":"Enchant Bracer - Greater Intellect","icon":"inv_misc_note_01"}, +{"id":16215,"name":"Enchant Boots - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":16217,"name":"Enchant Shield - Greater Stamina","icon":"inv_misc_note_01"}, +{"id":16218,"name":"Enchant Bracer - Superior Spirit","icon":"inv_misc_note_01"}, +{"id":16219,"name":"Enchant Gloves - Greater Agility","icon":"inv_misc_note_01"}, +{"id":16220,"name":"Enchant Boots - Spirit","icon":"inv_misc_note_01"}, +{"id":16221,"name":"Enchant Chest - Major Health","icon":"inv_misc_note_01"}, +{"id":16222,"name":"Enchant Shield - Vitality","icon":"inv_misc_note_01"}, +{"id":16223,"name":"Enchant Weapon - Icy Chill","icon":"inv_misc_note_01"}, +{"id":16224,"name":"Enchant Cloak - Superior Defense","icon":"inv_misc_note_01"}, +{"id":16242,"name":"Enchant Chest - Major Mana","icon":"inv_misc_note_01"}, +{"id":16244,"name":"Enchant Gloves - Greater Strength","icon":"inv_misc_note_01"}, +{"id":16246,"name":"Enchant Bracer - Superior Strength","icon":"inv_misc_note_01"}, +{"id":16247,"name":"Enchant 2H Weapon - Superior Impact","icon":"inv_misc_note_01"}, +{"id":16248,"name":"Enchant Weapon - Unholy Weapon","icon":"inv_misc_note_01"}, +{"id":16249,"name":"Enchant 2H Weapon - Major Intellect","icon":"inv_misc_note_01"}, +{"id":16250,"name":"Enchant Weapon - Superior Striking","icon":"inv_misc_note_01"}, +{"id":16251,"name":"Enchant Bracer - Superior Stamina","icon":"inv_misc_note_01"}, +{"id":16252,"name":"Enchant Weapon - Crusader","icon":"inv_misc_note_01"}, +{"id":16253,"name":"Enchant Chest - Greater Stats","icon":"inv_misc_note_01"}, +{"id":16254,"name":"Enchant Weapon - Lifestealing","icon":"inv_misc_note_01"}, +{"id":16255,"name":"Enchant 2H Weapon - Major Spirit","icon":"inv_misc_note_01"}, {"id":16870,"name":"Clearcasting","icon":"spell_shadow_manaburn","hasBuff":true}, -{"id":16880,"name":"Nature's Grace","icon":"spell_nature_naturesblessing"}, -{"id":16913,"name":"Moonfury","icon":"spell_nature_moonglow"}, {"id":16914,"name":"Hurricane","icon":"spell_nature_cyclone","hasBuff":true}, -{"id":16929,"name":"Thick Hide","icon":"inv_misc_pelt_bear_03"}, -{"id":16930,"name":"Thick Hide","icon":"inv_misc_pelt_bear_03"}, -{"id":16931,"name":"Thick Hide","icon":"inv_misc_pelt_bear_03"}, -{"id":16940,"name":"Brutal Impact","icon":"ability_druid_bash"}, -{"id":16941,"name":"Brutal Impact","icon":"ability_druid_bash"}, -{"id":16972,"name":"Predatory Strikes","icon":"ability_hunter_pet_cat"}, -{"id":16974,"name":"Predatory Strikes","icon":"ability_hunter_pet_cat"}, -{"id":17002,"name":"Feral Swiftness","icon":"spell_nature_spiritwolf"}, -{"id":17003,"name":"Heart of the Wild","icon":"spell_holy_blessingofagility"}, -{"id":17004,"name":"Heart of the Wild","icon":"spell_holy_blessingofagility"}, -{"id":17005,"name":"Heart of the Wild","icon":"spell_holy_blessingofagility"}, -{"id":17007,"name":"Leader of the Pack","icon":"spell_nature_unyeildingstamina"}, -{"id":17056,"name":"Furor","icon":"spell_holy_blessingofstamina"}, -{"id":17058,"name":"Furor","icon":"spell_holy_blessingofstamina"}, -{"id":17059,"name":"Furor","icon":"spell_holy_blessingofstamina"}, -{"id":17069,"name":"Naturalist","icon":"spell_nature_healingtouch"}, -{"id":17070,"name":"Naturalist","icon":"spell_nature_healingtouch"}, -{"id":17074,"name":"Nature's Bounty","icon":"spell_nature_resistnature"}, -{"id":17075,"name":"Nature's Bounty","icon":"spell_nature_resistnature"}, -{"id":17076,"name":"Nature's Bounty","icon":"spell_nature_resistnature"}, -{"id":17104,"name":"Fury of Stormrage","icon":"inv_staff_90"}, -{"id":17111,"name":"Improved Rejuvenation","icon":"spell_nature_rejuvenation"}, -{"id":17112,"name":"Improved Rejuvenation","icon":"spell_nature_rejuvenation"}, -{"id":17113,"name":"Improved Rejuvenation","icon":"spell_nature_rejuvenation"}, -{"id":17116,"name":"Nature's Swiftness","icon":"spell_nature_ravenform","hasBuff":true}, -{"id":17364,"name":"Stormstrike","icon":"ability_shaman_stormstrike","hasBuff":true}, -{"id":17485,"name":"Acuity","icon":"spell_nature_astralrecalgroup"}, -{"id":17486,"name":"Acuity","icon":"spell_nature_astralrecalgroup"}, -{"id":17487,"name":"Acuity","icon":"spell_nature_astralrecalgroup"}, -{"id":17788,"name":"Bane","icon":"spell_shadow_deathpact"}, -{"id":17789,"name":"Bane","icon":"spell_shadow_deathpact"}, -{"id":17790,"name":"Bane","icon":"spell_shadow_deathpact"}, -{"id":17793,"name":"Shadow and Flame","icon":"spell_shadow_shadowandflame"}, -{"id":17796,"name":"Shadow and Flame","icon":"spell_shadow_shadowandflame"}, -{"id":17800,"name":"Shadow and Flame","icon":"spell_shadow_shadowbolt","hasBuff":true}, -{"id":17801,"name":"Shadow and Flame","icon":"spell_shadow_shadowandflame"}, -{"id":17804,"name":"Soul Siphon","icon":"ability_warlock_soulsiphon"}, -{"id":17805,"name":"Soul Siphon","icon":"ability_warlock_soulsiphon"}, -{"id":17810,"name":"Improved Corruption","icon":"spell_shadow_abominationexplosion"}, -{"id":17811,"name":"Improved Corruption","icon":"spell_shadow_abominationexplosion"}, -{"id":17812,"name":"Improved Corruption","icon":"spell_shadow_abominationexplosion"}, -{"id":17813,"name":"Improved Corruption","icon":"spell_shadow_abominationexplosion"}, -{"id":17814,"name":"Improved Corruption","icon":"spell_shadow_abominationexplosion"}, -{"id":17815,"name":"Improved Immolate","icon":"spell_fire_immolation"}, -{"id":17833,"name":"Improved Immolate","icon":"spell_fire_immolation"}, -{"id":17834,"name":"Improved Immolate","icon":"spell_fire_immolation"}, -{"id":17877,"name":"Shadowburn","icon":"spell_shadow_scourgebuild"}, -{"id":17927,"name":"Improved Searing Pain","icon":"spell_fire_soulburn"}, -{"id":17929,"name":"Improved Searing Pain","icon":"spell_fire_soulburn"}, -{"id":17941,"name":"Shadow Trance","icon":"spell_shadow_twilight","hasBuff":true}, -{"id":17954,"name":"Emberstorm","icon":"spell_fire_selfdestruct"}, -{"id":17955,"name":"Emberstorm","icon":"spell_fire_selfdestruct"}, -{"id":17962,"name":"Conflagrate","icon":"spell_fire_fireball"}, -{"id":18094,"name":"Nightfall","icon":"spell_shadow_twilight"}, -{"id":18095,"name":"Nightfall","icon":"spell_shadow_twilight"}, -{"id":18119,"name":"Improved Soul Fire","icon":"spell_fire_fireball02"}, -{"id":18120,"name":"Improved Soul Fire","icon":"spell_fire_fireball02"}, -{"id":18179,"name":"Jinx","icon":"ability_warlock_jinx"}, -{"id":18180,"name":"Improved Curse of Weakness","icon":"spell_shadow_curseofmannoroth"}, -{"id":18182,"name":"Improved Life Tap","icon":"spell_shadow_burningspirit"}, -{"id":18183,"name":"Improved Life Tap","icon":"spell_shadow_burningspirit"}, -{"id":18223,"name":"Curse of Exhaustion","icon":"spell_shadow_grimward","hasBuff":true}, -{"id":18427,"name":"Aggression","icon":"ability_racial_avatar"}, -{"id":18428,"name":"Aggression","icon":"ability_racial_avatar"}, -{"id":18429,"name":"Aggression","icon":"ability_racial_avatar"}, -{"id":18459,"name":"Fire Power","icon":"spell_fire_immolation"}, -{"id":18460,"name":"Fire Power","icon":"spell_fire_immolation"}, -{"id":18499,"name":"Berserker Rage","icon":"spell_nature_ancestralguardian","hasBuff":true}, -{"id":18530,"name":"Divine Fury","icon":"spell_holy_sealofwrath"}, -{"id":18531,"name":"Divine Fury","icon":"spell_holy_sealofwrath"}, -{"id":18533,"name":"Divine Fury","icon":"spell_holy_sealofwrath"}, -{"id":18540,"name":"Summon Doomguard","icon":"achievement_boss_kiljaedan"}, -{"id":18694,"name":"Dark Arts","icon":"ability_warlock_darkarts"}, -{"id":18696,"name":"Improved Imp","icon":"spell_shadow_summonimp"}, -{"id":18697,"name":"Demonic Embrace","icon":"spell_shadow_metamorphosis"}, -{"id":18698,"name":"Demonic Embrace","icon":"spell_shadow_metamorphosis"}, -{"id":18699,"name":"Demonic Embrace","icon":"spell_shadow_metamorphosis"}, -{"id":18703,"name":"Improved Health Funnel","icon":"spell_shadow_lifedrain"}, -{"id":18704,"name":"Improved Health Funnel","icon":"spell_shadow_lifedrain"}, -{"id":18709,"name":"Master Summoner","icon":"spell_shadow_impphaseshift"}, -{"id":18710,"name":"Master Summoner","icon":"spell_shadow_impphaseshift"}, -{"id":18827,"name":"Doom and Gloom","icon":"spell_shadow_curseofsargeras"}, -{"id":18829,"name":"Doom and Gloom","icon":"spell_shadow_curseofsargeras"}, -{"id":19184,"name":"Entrapment","icon":"spell_nature_stranglevines"}, -{"id":19236,"name":"Desperate Prayer","icon":"spell_holy_restoration"}, -{"id":19286,"name":"Survival Tactics","icon":"ability_rogue_feigndeath"}, -{"id":19287,"name":"Survival Tactics","icon":"ability_rogue_feigndeath"}, -{"id":19306,"name":"Counterattack","icon":"ability_warrior_challange","hasBuff":true}, -{"id":19376,"name":"Trap Mastery","icon":"ability_ensnare"}, +{"id":17007,"name":"Leader of the Pack","icon":"spell_nature_unyeildingstamina","hasBuff":true}, +{"id":17725,"name":"Enchant Weapon - Winter's Might","icon":"inv_misc_note_01"}, +{"id":17962,"name":"Conflagrate","icon":"spell_fire_fireball","hasBuff":true}, +{"id":18169,"name":"Flame Mantle of the Dawn","icon":"spell_fire_flameshock"}, +{"id":18170,"name":"Frost Mantle of the Dawn","icon":"spell_frost_frostshock"}, +{"id":18171,"name":"Arcane Mantle of the Dawn","icon":"spell_holy_wordfortitude"}, +{"id":18172,"name":"Nature Mantle of the Dawn","icon":"spell_nature_protectionformnature"}, +{"id":18173,"name":"Shadow Mantle of the Dawn","icon":"spell_shadow_ragingscream"}, +{"id":18182,"name":"Chromatic Mantle of the Dawn","icon":"inv_misc_gem_variety_02"}, +{"id":18251,"name":"Core Armor Kit","icon":"inv_misc_armorkit_05"}, +{"id":18259,"name":"Enchant Weapon - Spellpower","icon":"inv_misc_note_01"}, +{"id":18260,"name":"Enchant Weapon - Healing Power","icon":"inv_misc_note_01"}, +{"id":18283,"name":"Biznicks 247x128 Accurascope","icon":"inv_misc_spyglass_02"}, +{"id":18329,"name":"Arcanum of Rapidity","icon":"inv_misc_gem_02"}, +{"id":18330,"name":"Arcanum of Focus","icon":"inv_misc_gem_02"}, +{"id":18331,"name":"Arcanum of Protection","icon":"inv_misc_gem_02"}, +{"id":19236,"name":"Desperate Prayer","icon":"spell_holy_testoffaith"}, {"id":19386,"name":"Wyvern Sting","icon":"inv_spear_02","hasBuff":true}, -{"id":19387,"name":"Entrapment","icon":"spell_nature_stranglevines"}, -{"id":19416,"name":"Efficiency","icon":"ability_hunter_focusedaim"}, -{"id":19417,"name":"Efficiency","icon":"ability_hunter_focusedaim"}, -{"id":19418,"name":"Efficiency","icon":"ability_hunter_focusedaim"}, -{"id":19434,"name":"Aimed Shot","icon":"inv_spear_07"}, -{"id":19464,"name":"Improved Serpent Sting","icon":"ability_hunter_quickshot"}, +{"id":19444,"name":"Enchant Weapon - Strength","icon":"inv_misc_note_01"}, +{"id":19445,"name":"Enchant Weapon - Agility","icon":"inv_misc_note_01"}, +{"id":19446,"name":"Enchant Bracer - Mana Regeneration","icon":"inv_misc_note_01"}, +{"id":19447,"name":"Enchant Bracer - Healing Power","icon":"inv_misc_note_01"}, +{"id":19448,"name":"Enchant Weapon - Mighty Spirit","icon":"inv_misc_note_01"}, +{"id":19449,"name":"Enchant Weapon - Mighty Intellect","icon":"inv_misc_note_01"}, {"id":19506,"name":"Trueshot Aura","icon":"ability_trueshot","hasBuff":true}, -{"id":19559,"name":"Pathfinding","icon":"ability_hunter_pathfinding2"}, -{"id":19560,"name":"Pathfinding","icon":"ability_hunter_pathfinding2"}, -{"id":19572,"name":"Improved Mend Pet","icon":"ability_hunter_mendpet"}, -{"id":19573,"name":"Improved Mend Pet","icon":"ability_hunter_mendpet"}, -{"id":19574,"name":"Bestial Wrath","icon":"ability_druid_ferociousbite","hasBuff":true}, -{"id":19578,"name":"Spirit Bond","icon":"classic_ability_druid_demoralizingroar"}, -{"id":19590,"name":"Bestial Discipline","icon":"ability_hunter_bestialdiscipline"}, -{"id":19592,"name":"Bestial Discipline","icon":"ability_hunter_bestialdiscipline"}, -{"id":19596,"name":"Boar's Speed","icon":"ability_hunter_pet_boar"}, -{"id":19621,"name":"Frenzy","icon":"inv_misc_monsterclaw_03"}, -{"id":19622,"name":"Frenzy","icon":"inv_misc_monsterclaw_03"}, -{"id":19623,"name":"Frenzy","icon":"inv_misc_monsterclaw_03"}, -{"id":20049,"name":"Conviction","icon":"ability_paladin_conviction"}, -{"id":20056,"name":"Conviction","icon":"ability_paladin_conviction"}, -{"id":20057,"name":"Conviction","icon":"ability_paladin_conviction"}, +{"id":19577,"name":"Intimidation","icon":"ability_devour","hasBuff":true}, +{"id":19782,"name":"Presence of Might","icon":"spell_holy_sealofwrath"}, +{"id":19783,"name":"Syncretist's Sigil","icon":"spell_holy_prayerofhealing"}, +{"id":19784,"name":"Death's Embrace","icon":"spell_shadow_scourgebuild"}, +{"id":19785,"name":"Falcon's Call","icon":"spell_nature_forceofnature"}, +{"id":19786,"name":"Vodouisant's Vigilant Embrace","icon":"spell_nature_purge"}, +{"id":19787,"name":"Presence of Sight","icon":"spell_shadow_detectlesserinvisibility"}, +{"id":19788,"name":"Hoodoo Hex","icon":"spell_shadow_impphaseshift"}, +{"id":19789,"name":"Prophetic Aura","icon":"spell_holy_holyprotection"}, +{"id":19790,"name":"Animist's Caress","icon":"spell_nature_reincarnation"}, +{"id":19971,"name":"Eternium Fishing Line","icon":"inv_fabric_mageweave_02"}, {"id":20066,"name":"Repentance","icon":"spell_holy_prayerofhealing","hasBuff":true}, -{"id":20138,"name":"Protector of the Innocent","icon":"ability_paladin_protectoroftheinnocent"}, -{"id":20139,"name":"Protector of the Innocent","icon":"ability_paladin_protectoroftheinnocent"}, -{"id":20140,"name":"Protector of the Innocent","icon":"ability_paladin_protectoroftheinnocent"}, -{"id":20143,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":20144,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":20145,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":20154,"name":"Seal of Righteousness","icon":"spell_holy_righteousnessaura","hasBuff":true}, +{"id":20076,"name":"Zandalar Signet of Mojo","icon":"inv_jewelry_ring_46"}, +{"id":20077,"name":"Zandalar Signet of Might","icon":"inv_misc_armorkit_08"}, +{"id":20078,"name":"Zandalar Signet of Serenity","icon":"spell_holy_powerwordshield"}, {"id":20164,"name":"Seal of Justice","icon":"spell_holy_sealofwrath","hasBuff":true}, {"id":20165,"name":"Seal of Insight","icon":"spell_holy_healingaura","hasBuff":true}, {"id":20167,"name":"Seal of Insight","icon":"spell_holy_healingaura"}, {"id":20170,"name":"Seal of Justice","icon":"spell_holy_sealofwrath","hasBuff":true}, -{"id":20174,"name":"Guardian's Favor","icon":"spell_holy_sealofprotection"}, -{"id":20175,"name":"Guardian's Favor","icon":"spell_holy_sealofprotection"}, -{"id":20177,"name":"Reckoning","icon":"spell_holy_blessingofstrength"}, -{"id":20178,"name":"Reckoning","icon":"spell_holy_blessingofstrength","hasBuff":true}, -{"id":20179,"name":"Reckoning","icon":"spell_holy_blessingofstrength"}, -{"id":20187,"name":"Judgement of Righteousness","icon":"ability_thunderbolt"}, -{"id":20224,"name":"Seals of the Pure","icon":"inv_mace_46"}, -{"id":20225,"name":"Seals of the Pure","icon":"inv_mace_46"}, -{"id":20234,"name":"Last Word","icon":"spell_holy_holyguidance"}, -{"id":20235,"name":"Last Word","icon":"spell_holy_holyguidance"}, -{"id":20237,"name":"Blazing Light","icon":"spell_holy_holybolt"}, -{"id":20238,"name":"Blazing Light","icon":"spell_holy_holybolt"}, -{"id":20243,"name":"Devastate","icon":"inv_sword_11"}, -{"id":20271,"name":"Judgement","icon":"spell_holy_righteousfury"}, -{"id":20359,"name":"Arbiter of the Light","icon":"spell_holy_healingaura"}, -{"id":20360,"name":"Arbiter of the Light","icon":"spell_holy_healingaura"}, -{"id":20424,"name":"Seals of Command","icon":"ability_warrior_innerrage"}, -{"id":20487,"name":"Improved Hammer of Justice","icon":"spell_holy_sealofmight"}, -{"id":20488,"name":"Improved Hammer of Justice","icon":"spell_holy_sealofmight"}, -{"id":20502,"name":"Executioner","icon":"inv_sword_48"}, -{"id":20503,"name":"Executioner","icon":"inv_sword_48"}, -{"id":20711,"name":"Spirit of Redemption","icon":"inv_enchant_essenceeternallarge"}, -{"id":20895,"name":"Spirit Bond","icon":"classic_ability_druid_demoralizingroar"}, -{"id":20911,"name":"Sanctuary","icon":"spell_nature_lightningshield"}, -{"id":20925,"name":"Holy Shield","icon":"classic_spell_holy_blessingofprotection","hasBuff":true}, -{"id":22482,"name":"Blade Flurry","icon":"ability_rogue_slicedice","hasBuff":true}, -{"id":22568,"name":"Ferocious Bite","icon":"ability_druid_ferociousbite"}, -{"id":23145,"name":"Dive","icon":"spell_shadow_burningspirit","hasBuff":true}, +{"id":20271,"name":"Judgment","icon":"spell_holy_righteousfury"}, +{"id":20727,"name":"Enchant Gloves - Shadow Power","icon":"inv_misc_note_01"}, +{"id":20728,"name":"Enchant Gloves - Frost Power","icon":"inv_misc_note_01"}, +{"id":20729,"name":"Enchant Gloves - Fire Power","icon":"inv_misc_note_01"}, +{"id":20730,"name":"Enchant Gloves - Healing Power","icon":"inv_misc_note_01"}, +{"id":20925,"name":"Sacred Shield","icon":"ability_paladin_blessedmending","hasBuff":true}, +{"id":22392,"name":"Enchant 2H Weapon - Agility","icon":"inv_misc_note_01"}, +{"id":22531,"name":"Enchant Bracer - Superior Healing","icon":"inv_misc_note_01"}, +{"id":22532,"name":"Enchant Bracer - Restore Mana Prime","icon":"inv_misc_note_01"}, +{"id":22533,"name":"Enchant Bracer - Fortitude","icon":"inv_misc_note_01"}, +{"id":22534,"name":"Enchant Bracer - Spellpower","icon":"inv_misc_note_01"}, +{"id":22535,"name":"Enchant Ring - Striking","icon":"inv_misc_note_01"}, +{"id":22536,"name":"Enchant Ring - Minor Intellect","icon":"inv_misc_note_01"}, +{"id":22538,"name":"Enchant Ring - Stats","icon":"inv_misc_note_01"}, +{"id":22539,"name":"Enchant Shield - Intellect","icon":"inv_misc_note_01"}, +{"id":22540,"name":"Enchant Shield - Parry","icon":"inv_misc_note_01"}, +{"id":22542,"name":"Enchant Boots - Vitality","icon":"inv_misc_note_01"}, +{"id":22544,"name":"Enchant Boots - Dexterity","icon":"inv_misc_note_01"}, +{"id":22545,"name":"Enchant Boots - Surefooted","icon":"inv_misc_note_01"}, +{"id":22546,"name":"Enchant Chest - Exceptional Mana","icon":"inv_misc_note_01"}, +{"id":22551,"name":"Enchant Weapon - Major Intellect","icon":"inv_misc_note_01"}, +{"id":22552,"name":"Enchant Weapon - Major Striking","icon":"inv_misc_note_01"}, +{"id":22553,"name":"Enchant Weapon - Potency","icon":"inv_misc_note_01"}, +{"id":22554,"name":"Enchant 2H Weapon - Savagery","icon":"inv_misc_note_01"}, +{"id":22555,"name":"Enchant Weapon - Major Spellpower","icon":"inv_misc_note_01"}, +{"id":22556,"name":"Enchant 2H Weapon - Major Agility","icon":"inv_misc_note_01"}, +{"id":22557,"name":"Enchant Weapon - Battlemaster","icon":"inv_misc_note_01"}, +{"id":22558,"name":"Enchant Weapon - Spellsurge","icon":"inv_misc_note_01"}, +{"id":22559,"name":"Enchant Weapon - Mongoose","icon":"inv_misc_note_01"}, +{"id":22560,"name":"Enchant Weapon - Sunfire","icon":"inv_misc_note_01"}, +{"id":22561,"name":"Enchant Weapon - Soulfrost","icon":"inv_misc_note_01"}, +{"id":22635,"name":"Savage Guard","icon":"spell_nature_spiritarmor"}, +{"id":22636,"name":"Ice Guard","icon":"spell_frost_frostshock"}, +{"id":22638,"name":"Shadow Guard","icon":"spell_shadow_antishadow"}, +{"id":23530,"name":"Felsteel Shield Spike","icon":"inv_misc_armorkit_27"}, +{"id":23545,"name":"Power of the Scourge","icon":"spell_shadow_darkritual"}, +{"id":23547,"name":"Resilience of the Scourge","icon":"spell_shadow_deadofnight"}, +{"id":23548,"name":"Might of the Scourge","icon":"spell_shadow_deathpact"}, +{"id":23549,"name":"Fortitude of the Scourge","icon":"spell_shadow_antishadow"}, +{"id":23764,"name":"Adamantite Scope","icon":"inv_misc_spyglass_02"}, +{"id":23765,"name":"Khorium Scope","icon":"inv_misc_spyglass_02"}, +{"id":23766,"name":"Stabilized Eternium Scope","icon":"inv_misc_spyglass_02"}, {"id":23881,"name":"Bloodthirst","icon":"spell_nature_bloodlust"}, {"id":23922,"name":"Shield Slam","icon":"inv_shield_05"}, -{"id":23989,"name":"Readiness","icon":"ability_hunter_readiness"}, -{"id":24275,"name":"Hammer of Wrath","icon":"inv_hammer_04"}, -{"id":24858,"name":"Moonkin Form","icon":"spell_nature_forceofnature","hasBuff":true}, -{"id":24866,"name":"Feral Swiftness","icon":"spell_nature_spiritwolf"}, +{"id":24003,"name":"Enchant Chest - Exceptional Stats","icon":"inv_misc_note_01"}, +{"id":24273,"name":"Mystic Spellthread","icon":"spell_nature_astralrecal"}, +{"id":24274,"name":"Runic Spellthread","icon":"spell_nature_astralrecalgroup"}, +{"id":24275,"name":"Silver Spellthread","icon":"spell_nature_lightning"}, +{"id":24276,"name":"Golden Spellthread","icon":"spell_holy_restoration"}, {"id":24907,"name":"Moonkin Aura","icon":"spell_nature_moonglow","hasBuff":true}, -{"id":24943,"name":"Fury of Stormrage","icon":"inv_staff_90"}, -{"id":25742,"name":"Seal of Righteousness","icon":"spell_holy_righteousnessaura"}, +{"id":25650,"name":"Knothide Armor Kit","icon":"inv_misc_armorkit_24"}, +{"id":25651,"name":"Vindicator's Armor Kit","icon":"inv_misc_armorkit_26"}, +{"id":25652,"name":"Magister's Armor Kit","icon":"inv_misc_armorkit_22"}, {"id":25780,"name":"Righteous Fury","icon":"spell_holy_sealoffury","hasBuff":true}, -{"id":25956,"name":"Sanctity of Battle","icon":"inv_sword_136"}, -{"id":25988,"name":"Eye for an Eye","icon":"spell_holy_eyeforaneye"}, -{"id":26016,"name":"Vindication","icon":"spell_holy_vindication"}, -{"id":26022,"name":"Pursuit of Justice","icon":"spell_holy_persuitofjustice"}, -{"id":26023,"name":"Pursuit of Justice","icon":"spell_holy_persuitofjustice"}, +{"id":26016,"name":"Vindication","icon":"spell_holy_vindication","hasBuff":true}, +{"id":26023,"name":"Pursuit of Justice","icon":"ability_paladin_veneration","hasBuff":true}, {"id":26297,"name":"Berserking","icon":"racial_troll_berserk","hasBuff":true}, {"id":26573,"name":"Consecration","icon":"spell_holy_innerfire","hasBuff":true}, +{"id":26679,"name":"Deadly Throw","icon":"inv_throwingknife_06","hasBuff":true}, {"id":27243,"name":"Seed of Corruption","icon":"spell_shadow_seedofdestruction","hasBuff":true}, -{"id":27958,"name":"Enchant Chest - Exceptional Mana","icon":"inv_misc_note_01"}, -{"id":28176,"name":"Fel Armor","icon":"spell_shadow_felarmour","hasBuff":true}, -{"id":28593,"name":"Winter's Chill","icon":"spell_frost_chillingblast"}, +{"id":28270,"name":"Enchant Chest - Major Resilience","icon":"inv_misc_note_01"}, +{"id":28271,"name":"Enchant Gloves - Precise Strikes","icon":"inv_misc_note_01"}, +{"id":28272,"name":"Enchant Gloves - Major Spellpower","icon":"inv_misc_note_01"}, +{"id":28273,"name":"Enchant Gloves - Major Healing","icon":"inv_misc_note_01"}, +{"id":28279,"name":"Enchant Boots - Cat's Swiftness","icon":"inv_misc_note_01"}, +{"id":28280,"name":"Enchant Boots - Boar's Speed","icon":"inv_misc_note_01"}, +{"id":28281,"name":"Enchant Weapon - Major Healing","icon":"inv_misc_note_01"}, +{"id":28282,"name":"Enchant Shield - Major Stamina","icon":"inv_misc_note_01"}, {"id":28730,"name":"Arcane Torrent","icon":"spell_shadow_teleport","hasBuff":true}, -{"id":28996,"name":"Elemental Warding","icon":"spell_nature_spiritarmor"}, -{"id":28997,"name":"Elemental Warding","icon":"spell_nature_spiritarmor"}, -{"id":28998,"name":"Elemental Warding","icon":"spell_nature_spiritarmor"}, -{"id":28999,"name":"Elemental Reach","icon":"spell_nature_stormreach"}, -{"id":29000,"name":"Elemental Reach","icon":"spell_nature_stormreach"}, -{"id":29074,"name":"Master of Elements","icon":"spell_fire_masterofelements"}, -{"id":29075,"name":"Master of Elements","icon":"spell_fire_masterofelements"}, -{"id":29076,"name":"Master of Elements","icon":"spell_fire_masterofelements"}, -{"id":29079,"name":"Elemental Weapons","icon":"spell_fire_flametounge"}, +{"id":28878,"name":"Inscription of Faith","icon":"spell_holy_sealofsalvation"}, +{"id":28881,"name":"Inscription of Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":28882,"name":"Inscription of Warding","icon":"spell_holy_greaterblessingofsanctuary"}, +{"id":28885,"name":"Inscription of Vengeance","icon":"spell_holy_fistofjustice"}, +{"id":28886,"name":"Greater Inscription of Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":28887,"name":"Greater Inscription of Faith","icon":"spell_holy_greaterblessingofsalvation"}, +{"id":28888,"name":"Greater Inscription of Vengeance","icon":"spell_holy_greaterblessingofkings"}, +{"id":28889,"name":"Greater Inscription of Warding","icon":"spell_holy_blessingofprotection"}, +{"id":28903,"name":"Inscription of the Orb","icon":"inv_misc_orb_04"}, +{"id":28904,"name":"Inscription of the Oracle","icon":"spell_holy_spiritualguidence"}, +{"id":28907,"name":"Inscription of the Blade","icon":"ability_dualwield"}, +{"id":28908,"name":"Inscription of the Knight","icon":"spell_holy_championsbond"}, +{"id":28909,"name":"Greater Inscription of the Orb","icon":"inv_misc_orb_03"}, +{"id":28910,"name":"Greater Inscription of the Blade","icon":"spell_holy_weaponmastery"}, +{"id":28911,"name":"Greater Inscription of the Knight","icon":"spell_holy_championsgrace"}, +{"id":28912,"name":"Greater Inscription of the Oracle","icon":"spell_holy_powerinfusion"}, {"id":29166,"name":"Innervate","icon":"spell_nature_lightning","hasBuff":true}, -{"id":29179,"name":"Elemental Devastation","icon":"classic_spell_fire_elementaldevastation"}, -{"id":29180,"name":"Elemental Devastation","icon":"classic_spell_fire_elementaldevastation"}, -{"id":29447,"name":"Torment the Weak","icon":"spell_arcane_focusedpower"}, -{"id":29593,"name":"Bastion of Defense","icon":"ability_defend"}, -{"id":29594,"name":"Bastion of Defense","icon":"ability_defend"}, -{"id":29598,"name":"Shield Mastery","icon":"ability_warrior_shieldguard"}, -{"id":29722,"name":"Incinerate","icon":"spell_fire_burnout"}, -{"id":29723,"name":"Sudden Death","icon":"ability_warrior_improveddisciplines"}, -{"id":29725,"name":"Sudden Death","icon":"ability_warrior_improveddisciplines"}, -{"id":29801,"name":"Rampage","icon":"ability_warrior_rampage","hasBuff":true}, -{"id":29834,"name":"Second Wind","icon":"ability_hunter_harass"}, -{"id":29836,"name":"Blood Frenzy","icon":"ability_warrior_bloodfrenzy"}, -{"id":29838,"name":"Second Wind","icon":"ability_hunter_harass"}, -{"id":29859,"name":"Blood Frenzy","icon":"ability_warrior_bloodfrenzy"}, -{"id":29888,"name":"Skirmisher","icon":"warrior_talent_icon_skirmisher"}, -{"id":29889,"name":"Skirmisher","icon":"warrior_talent_icon_skirmisher"}, -{"id":30054,"name":"Improved Howl of Terror","icon":"spell_shadow_deathscream"}, -{"id":30057,"name":"Improved Howl of Terror","icon":"spell_shadow_deathscream"}, +{"id":29187,"name":"Inscription of Endurance","icon":"ability_warrior_shieldmastery"}, +{"id":29533,"name":"Cobrahide Leg Armor","icon":"inv_misc_armorkit_21"}, +{"id":29534,"name":"Clefthide Leg Armor","icon":"inv_misc_armorkit_23"}, +{"id":29535,"name":"Nethercobra Leg Armor","icon":"inv_misc_armorkit_25"}, +{"id":29536,"name":"Nethercleft Leg Armor","icon":"inv_misc_armorkit_25"}, +{"id":29838,"name":"Second Wind","icon":"ability_hunter_harass","hasBuff":true}, {"id":30108,"name":"Unstable Affliction","icon":"spell_shadow_unstableaffliction_3","hasBuff":true}, -{"id":30143,"name":"Demonic Aegis","icon":"spell_shadow_ragingscream"}, -{"id":30144,"name":"Demonic Aegis","icon":"spell_shadow_ragingscream"}, -{"id":30146,"name":"Summon Felguard","icon":"spell_shadow_summonfelguard"}, -{"id":30160,"name":"Elemental Devastation","icon":"classic_spell_fire_elementaldevastation"}, -{"id":30283,"name":"Shadowfury","icon":"spell_shadow_shadowfury","hasBuff":true}, -{"id":30293,"name":"Soul Leech","icon":"spell_shadow_soulleech_3"}, -{"id":30295,"name":"Soul Leech","icon":"spell_shadow_soulleech_3"}, -{"id":30299,"name":"Nether Protection","icon":"spell_shadow_netherprotection"}, -{"id":30301,"name":"Nether Protection","icon":"spell_shadow_netherprotection"}, -{"id":30326,"name":"Mana Feed","icon":"spell_shadow_manafeed"}, -{"id":30451,"name":"Arcane Blast","icon":"spell_arcane_blast"}, +{"id":30283,"name":"Shadowfury","icon":"ability_warlock_shadowfurytga","hasBuff":true}, {"id":30455,"name":"Ice Lance","icon":"spell_frost_frostblast"}, -{"id":30482,"name":"Molten Armor","icon":"ability_mage_moltenarmor","hasBuff":true}, -{"id":30672,"name":"Elemental Precision","icon":"spell_nature_elementalprecision_1"}, -{"id":30673,"name":"Elemental Precision","icon":"spell_nature_elementalprecision_1"}, -{"id":30674,"name":"Elemental Precision","icon":"spell_nature_elementalprecision_1"}, -{"id":30802,"name":"Unleashed Rage","icon":"spell_nature_unleashedrage","hasBuff":true}, -{"id":30808,"name":"Unleashed Rage","icon":"spell_nature_unleashedrage","hasBuff":true}, -{"id":30823,"name":"Shamanistic Rage","icon":"spell_nature_shamanrage","hasBuff":true}, -{"id":30867,"name":"Nature's Blessing","icon":"spell_nature_natureblessing"}, -{"id":30868,"name":"Nature's Blessing","icon":"spell_nature_natureblessing"}, -{"id":30869,"name":"Nature's Blessing","icon":"spell_nature_natureblessing"}, -{"id":30881,"name":"Nature's Guardian","icon":"spell_nature_natureguardian"}, -{"id":30883,"name":"Nature's Guardian","icon":"spell_nature_natureguardian"}, -{"id":30884,"name":"Nature's Guardian","icon":"spell_nature_natureguardian"}, +{"id":30884,"name":"Nature's Guardian","icon":"spell_nature_natureguardian","hasBuff":true}, {"id":31025,"name":"Braided Eternium Chain","icon":"inv_jewelry_necklace_08","hasBuff":true}, {"id":31033,"name":"Eye of the Night","icon":"inv_jewelry_necklace_28","hasBuff":true}, {"id":31035,"name":"Chain of the Twilight Owl","icon":"inv_jewelry_necklace_ahnqiraj_02","hasBuff":true}, -{"id":31124,"name":"Blade Twisting","icon":"ability_rogue_bladetwisting"}, -{"id":31126,"name":"Blade Twisting","icon":"ability_rogue_bladetwisting"}, -{"id":31208,"name":"Quickening","icon":"ability_rogue_quickrecovery"}, -{"id":31209,"name":"Quickening","icon":"ability_rogue_quickrecovery"}, -{"id":31211,"name":"Enveloping Shadows","icon":"ability_rogue_envelopingshadows"}, -{"id":31212,"name":"Enveloping Shadows","icon":"ability_rogue_envelopingshadows"}, -{"id":31213,"name":"Enveloping Shadows","icon":"ability_rogue_envelopingshadows"}, -{"id":31223,"name":"Master of Subtlety","icon":"ability_rogue_masterofsubtlety"}, -{"id":31228,"name":"Cheat Death","icon":"ability_rogue_cheatdeath"}, -{"id":31229,"name":"Cheat Death","icon":"ability_rogue_cheatdeath"}, -{"id":31230,"name":"Cheat Death","icon":"ability_rogue_cheatdeath"}, -{"id":31380,"name":"Deadened Nerves","icon":"ability_rogue_deadenednerves"}, -{"id":31382,"name":"Deadened Nerves","icon":"ability_rogue_deadenednerves"}, -{"id":31383,"name":"Deadened Nerves","icon":"ability_rogue_deadenednerves"}, -{"id":31569,"name":"Improved Blink","icon":"spell_arcane_blink"}, -{"id":31570,"name":"Improved Blink","icon":"spell_arcane_blink"}, -{"id":31571,"name":"Arcane Potency","icon":"spell_arcane_arcanepotency"}, -{"id":31572,"name":"Arcane Potency","icon":"spell_arcane_arcanepotency"}, -{"id":31574,"name":"Prismatic Cloak","icon":"spell_arcane_prismaticcloak"}, -{"id":31575,"name":"Prismatic Cloak","icon":"spell_arcane_prismaticcloak"}, -{"id":31583,"name":"Arcane Empowerment","icon":"spell_nature_starfall"}, -{"id":31584,"name":"Improved Mana Gem","icon":"inv_misc_gem_emerald_01"}, -{"id":31585,"name":"Improved Mana Gem","icon":"inv_misc_gem_emerald_01"}, -{"id":31586,"name":"Improved Mana Gem","icon":"inv_misc_gem_emerald_01"}, -{"id":31589,"name":"Slow","icon":"spell_nature_slow","hasBuff":true}, -{"id":31641,"name":"Blazing Speed","icon":"spell_fire_burningspeed"}, -{"id":31642,"name":"Blazing Speed","icon":"spell_fire_burningspeed"}, +{"id":31223,"name":"Master of Subtlety","icon":"ability_rogue_masterofsubtlety","hasBuff":true}, +{"id":31230,"name":"Cheat Death","icon":"ability_rogue_cheatdeath","hasBuff":true}, {"id":31661,"name":"Dragon's Breath","icon":"inv_misc_head_dragon_01","hasBuff":true}, -{"id":31670,"name":"Ice Floes","icon":"spell_frost_icefloes"}, -{"id":31672,"name":"Ice Floes","icon":"spell_frost_icefloes"}, -{"id":31679,"name":"Molten Fury","icon":"spell_fire_moltenblood"}, -{"id":31680,"name":"Molten Fury","icon":"spell_fire_moltenblood"}, {"id":31687,"name":"Summon Water Elemental","icon":"spell_frost_summonwaterelemental_2"}, -{"id":31801,"name":"Seal of Truth","icon":"spell_holy_sealofvengeance","hasBuff":true}, -{"id":31803,"name":"Censure","icon":"spell_holy_sealofvengeance","hasBuff":true}, -{"id":31804,"name":"Judgement of Truth","icon":"spell_holy_sealofvengeance"}, -{"id":31821,"name":"Aura Mastery","icon":"spell_holy_auramastery","hasBuff":true}, -{"id":31825,"name":"Denounce","icon":"spell_holy_excorcism_02"}, -{"id":31828,"name":"Blessed Life","icon":"spell_holy_blessedlife"}, -{"id":31829,"name":"Blessed Life","icon":"spell_holy_blessedlife"}, -{"id":31842,"name":"Divine Favor","icon":"spell_holy_divineillumination","hasBuff":true}, -{"id":31848,"name":"Shield of the Templar","icon":"ability_paladin_shieldofthetemplar"}, -{"id":31849,"name":"Shield of the Templar","icon":"ability_paladin_shieldofthetemplar"}, -{"id":31850,"name":"Ardent Defender","icon":"spell_holy_ardentdefender","hasBuff":true}, -{"id":31866,"name":"Crusade","icon":"spell_holy_crusade"}, -{"id":31867,"name":"Crusade","icon":"spell_holy_crusade"}, -{"id":31868,"name":"Crusade","icon":"spell_holy_crusade"}, -{"id":31876,"name":"Communion","icon":"ability_paladin_judgementofthewise"}, -{"id":31878,"name":"Judgements of the Wise","icon":"ability_paladin_judgementofthewise"}, {"id":31884,"name":"Avenging Wrath","icon":"spell_holy_avenginewrath","hasBuff":true}, {"id":31935,"name":"Avenger's Shield","icon":"spell_holy_avengersshield","hasBuff":true}, {"id":32379,"name":"Shadow Word: Death","icon":"spell_shadow_demonicfortitude"}, -{"id":32385,"name":"Shadow Embrace","icon":"spell_shadow_shadowembrace"}, -{"id":32387,"name":"Shadow Embrace","icon":"spell_shadow_shadowembrace"}, -{"id":32392,"name":"Shadow Embrace","icon":"spell_shadow_shadowembrace"}, -{"id":32645,"name":"Envenom","icon":"ability_rogue_disembowel","hasBuff":true}, -{"id":33142,"name":"Blessed Resilience","icon":"spell_holy_blessedresillience"}, -{"id":33145,"name":"Blessed Resilience","icon":"spell_holy_blessedresillience"}, -{"id":33158,"name":"Empowered Healing","icon":"spell_holy_greaterheal"}, -{"id":33159,"name":"Empowered Healing","icon":"spell_holy_greaterheal"}, -{"id":33160,"name":"Empowered Healing","icon":"spell_holy_greaterheal"}, -{"id":33191,"name":"Harnessed Shadows","icon":"inv_misc_orb_04"}, -{"id":33198,"name":"Misery","icon":"spell_shadow_misery","hasBuff":true}, -{"id":33201,"name":"Reflective Shield","icon":"ability_priest_reflectiveshield"}, -{"id":33202,"name":"Reflective Shield","icon":"ability_priest_reflectiveshield"}, +{"id":33148,"name":"Enchant Cloak - Dodge","icon":"inv_misc_note_01"}, +{"id":33149,"name":"Enchant Cloak - Stealth","icon":"inv_misc_note_01"}, +{"id":33150,"name":"Enchant Cloak - Subtlety","icon":"inv_misc_note_01"}, +{"id":33153,"name":"Enchant Gloves - Threat","icon":"inv_misc_note_01"}, +{"id":33165,"name":"Enchant Weapon - Greater Agility","icon":"inv_misc_note_01"}, +{"id":33185,"name":"Adamantite Weapon Chain","icon":"spell_frost_chainsofice"}, {"id":33206,"name":"Pain Suppression","icon":"spell_holy_painsupression","hasBuff":true}, -{"id":33371,"name":"Mind Melt","icon":"spell_shadow_skull"}, +{"id":33307,"name":"Enchant Weapon - Executioner","icon":"inv_misc_note_01"}, {"id":33395,"name":"Freeze","icon":"spell_frost_frostnova","hasBuff":true}, -{"id":33592,"name":"Balance of Power","icon":"ability_druid_balanceofpower"}, -{"id":33596,"name":"Balance of Power","icon":"ability_druid_balanceofpower"}, -{"id":33597,"name":"Dreamstate","icon":"ability_druid_dreamstate"}, -{"id":33599,"name":"Dreamstate","icon":"ability_druid_dreamstate"}, -{"id":33602,"name":"Improved Faerie Fire","icon":"spell_nature_faeriefire"}, -{"id":33603,"name":"Lunar Shower","icon":"achievement_worldevent_lunar"}, -{"id":33604,"name":"Lunar Shower","icon":"achievement_worldevent_lunar"}, -{"id":33605,"name":"Lunar Shower","icon":"achievement_worldevent_lunar"}, -{"id":33745,"name":"Lacerate","icon":"ability_druid_lacerate","hasBuff":true}, -{"id":33831,"name":"Force of Nature","icon":"ability_druid_forceofnature"}, -{"id":33872,"name":"Nurturing Instinct","icon":"ability_druid_healinginstincts"}, -{"id":33873,"name":"Nurturing Instinct","icon":"ability_druid_healinginstincts"}, -{"id":33876,"name":"Mangle","icon":"ability_druid_mangle2","hasBuff":true}, -{"id":33878,"name":"Mangle","icon":"ability_druid_mangle2","hasBuff":true}, -{"id":33879,"name":"Empowered Touch","icon":"ability_druid_empoweredtouch"}, -{"id":33880,"name":"Empowered Touch","icon":"ability_druid_empoweredtouch"}, -{"id":33881,"name":"Nature's Ward","icon":"ability_druid_naturalperfection"}, -{"id":33882,"name":"Nature's Ward","icon":"ability_druid_naturalperfection"}, -{"id":33886,"name":"Swift Rejuvenation","icon":"ability_druid_empoweredrejuvination"}, -{"id":33891,"name":"Tree of Life","icon":"ability_druid_treeoflife","hasBuff":true}, -{"id":34151,"name":"Efflorescence","icon":"inv_misc_herb_talandrasrose"}, -{"id":34293,"name":"Pyromaniac","icon":"spell_fire_burnout"}, -{"id":34295,"name":"Pyromaniac","icon":"spell_fire_burnout"}, -{"id":34296,"name":"Pyromaniac","icon":"spell_fire_burnout"}, -{"id":34428,"name":"Victory Rush","icon":"ability_warrior_devastate"}, +{"id":34207,"name":"Glove Reinforcements","icon":"inv_misc_armorkit_08"}, +{"id":34330,"name":"Heavy Knothide Armor Kit","icon":"inv_misc_armorkit_25"}, {"id":34433,"name":"Shadowfiend","icon":"spell_shadow_shadowfiend"}, -{"id":34460,"name":"Ferocious Inspiration","icon":"ability_hunter_ferociousinspiration"}, -{"id":34482,"name":"Careful Aim","icon":"ability_hunter_zenarchery"}, -{"id":34483,"name":"Careful Aim","icon":"ability_hunter_zenarchery"}, -{"id":34485,"name":"Master Marksman","icon":"ability_hunter_mastermarksman"}, -{"id":34486,"name":"Master Marksman","icon":"ability_hunter_mastermarksman"}, -{"id":34487,"name":"Master Marksman","icon":"ability_hunter_mastermarksman"}, -{"id":34490,"name":"Silencing Shot","icon":"ability_theblackarrow","hasBuff":true}, -{"id":34491,"name":"Resourcefulness","icon":"ability_hunter_resourcefulness"}, -{"id":34492,"name":"Resourcefulness","icon":"ability_hunter_resourcefulness"}, -{"id":34493,"name":"Resourcefulness","icon":"ability_hunter_resourcefulness"}, -{"id":34497,"name":"Thrill of the Hunt","icon":"ability_hunter_thrillofthehunt"}, -{"id":34498,"name":"Thrill of the Hunt","icon":"ability_hunter_thrillofthehunt"}, -{"id":34499,"name":"Thrill of the Hunt","icon":"ability_hunter_thrillofthehunt"}, -{"id":34692,"name":"The Beast Within","icon":"ability_hunter_beastwithin"}, -{"id":34753,"name":"Holy Concentration","icon":"spell_holy_fanaticism"}, -{"id":34859,"name":"Holy Concentration","icon":"spell_holy_fanaticism"}, -{"id":34861,"name":"Circle of Healing","icon":"spell_holy_circleofrenewal"}, -{"id":34914,"name":"Vampiric Touch","icon":"spell_holy_stoicism","hasBuff":true}, -{"id":34935,"name":"Backlash","icon":"spell_fire_playingwithfire"}, -{"id":34938,"name":"Backlash","icon":"spell_fire_playingwithfire"}, -{"id":34939,"name":"Backlash","icon":"spell_fire_playingwithfire"}, -{"id":34948,"name":"Rapid Killing","icon":"ability_hunter_rapidkilling"}, -{"id":34949,"name":"Rapid Killing","icon":"ability_hunter_rapidkilling"}, -{"id":34950,"name":"Go for the Throat","icon":"ability_hunter_goforthethroat"}, -{"id":34954,"name":"Go for the Throat","icon":"ability_hunter_goforthethroat"}, -{"id":35029,"name":"Improved Kill Command","icon":"ability_hunter_silenthunter"}, -{"id":35030,"name":"Improved Kill Command","icon":"ability_hunter_silenthunter"}, -{"id":35100,"name":"Concussive Barrage","icon":"ability_hunter_efficiency"}, -{"id":35102,"name":"Concussive Barrage","icon":"ability_hunter_efficiency"}, -{"id":35104,"name":"Bombardment","icon":"ability_marksmanship"}, -{"id":35110,"name":"Bombardment","icon":"ability_marksmanship"}, -{"id":35363,"name":"Nature's Majesty","icon":"inv_staff_01"}, -{"id":35364,"name":"Nature's Majesty","icon":"inv_staff_01"}, +{"id":34836,"name":"Truesilver Fishing Line","icon":"inv_misc_thread_01"}, {"id":35395,"name":"Crusader Strike","icon":"spell_holy_crusaderstrike"}, -{"id":35419,"name":"Nature Armor Kit","icon":"spell_nature_spiritarmor"}, -{"id":35441,"name":"Inscription of Endurance","icon":"ability_warrior_shieldmastery"}, -{"id":35541,"name":"Combat Potency","icon":"inv_weapon_shortblade_38"}, -{"id":35550,"name":"Combat Potency","icon":"inv_weapon_shortblade_38"}, -{"id":35551,"name":"Combat Potency","icon":"inv_weapon_shortblade_38"}, -{"id":36032,"name":"Arcane Blast","icon":"spell_arcane_blast","hasBuff":true}, +{"id":35420,"name":"Enchant Bracer - Brawn","icon":"inv_bracer_08"}, +{"id":35423,"name":"Enchant Bracer - Major Intellect","icon":"inv_bracer_09"}, +{"id":35428,"name":"Enchant Chest - Exceptional Health","icon":"inv_chest_leather_04"}, +{"id":35431,"name":"Enchant Chest - Major Spirit","icon":"inv_chest_cloth_29"}, +{"id":35432,"name":"Enchant Cloak - Greater Agility","icon":"inv_misc_cape_18"}, +{"id":35437,"name":"Enchant Cloak - Major Armor","icon":"inv_misc_cape_12"}, +{"id":35438,"name":"Enchant Gloves - Assault","icon":"inv_gauntlets_31"}, +{"id":35439,"name":"Enchant Gloves - Blasting","icon":"inv_gauntlets_03"}, +{"id":35442,"name":"Enchant Gloves - Major Strength","icon":"inv_gauntlets_26"}, +{"id":35498,"name":"Enchant Weapon - Deathfrost","icon":"inv_misc_note_01"}, +{"id":35500,"name":"Enchant Chest - Dodge","icon":"inv_misc_note_01"}, +{"id":35756,"name":"Enchant Cloak - Greater Dodge","icon":"inv_misc_note_01"}, {"id":36554,"name":"Shadowstep","icon":"ability_rogue_shadowstep","hasBuff":true}, -{"id":37116,"name":"Primal Fury","icon":"ability_racial_cannibalize"}, -{"id":37117,"name":"Primal Fury","icon":"ability_racial_cannibalize"}, -{"id":42208,"name":"Blizzard","icon":"spell_frost_icestorm"}, +{"id":37312,"name":"Carrot on a Stick","icon":"inv_misc_food_54"}, +{"id":38371,"name":"Jormungar Leg Armor","icon":"inv_misc_armorkit_31"}, +{"id":38372,"name":"Nerubian Leg Armor","icon":"inv_misc_armorkit_29"}, +{"id":38373,"name":"Frosthide Leg Armor","icon":"inv_misc_armorkit_32"}, +{"id":38374,"name":"Icescale Leg Armor","icon":"inv_misc_armorkit_33"}, +{"id":38375,"name":"Borean Armor Kit","icon":"inv_misc_armorkit_28"}, +{"id":38376,"name":"Heavy Borean Armor Kit","icon":"inv_misc_armorkit_30"}, +{"id":38378,"name":"Wyrmscale Leg Armor","icon":"inv_misc_monsterscales_18"}, +{"id":38679,"name":"Enchant Bracer - Minor Health","icon":"inv_misc_enchantedscroll"}, +{"id":38766,"name":"Enchant Chest - Minor Health","icon":"inv_misc_enchantedscroll"}, +{"id":38767,"name":"Enchant Chest - Minor Absorption","icon":"inv_misc_enchantedscroll"}, +{"id":38768,"name":"Enchant Bracer - Minor Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38771,"name":"Enchant Bracer - Minor Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38772,"name":"Enchant 2H Weapon - Minor Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38773,"name":"Enchant Chest - Lesser Health","icon":"inv_misc_enchantedscroll"}, +{"id":38777,"name":"Enchant Bracer - Minor Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38780,"name":"Enchant Weapon - Minor Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38782,"name":"Enchant Chest - Health","icon":"inv_misc_enchantedscroll"}, +{"id":38787,"name":"Enchant Shield - Minor Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38790,"name":"Enchant Cloak - Lesser Protection","icon":"inv_misc_enchantedscroll"}, +{"id":38792,"name":"Enchant Shield - Lesser Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38793,"name":"Enchant Bracer - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38794,"name":"Enchant Weapon - Lesser Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38796,"name":"Enchant 2H Weapon - Lesser Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38798,"name":"Enchant Chest - Lesser Absorption","icon":"inv_misc_enchantedscroll"}, +{"id":38799,"name":"Enchant Chest - Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38803,"name":"Enchant Bracer - Lesser Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":38804,"name":"Enchant Chest - Minor Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38805,"name":"Enchant Shield - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38806,"name":"Enchant Cloak - Defense","icon":"inv_misc_enchantedscroll"}, +{"id":38807,"name":"Enchant Boots - Lesser Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38808,"name":"Enchant Chest - Greater Health","icon":"inv_misc_enchantedscroll"}, +{"id":38809,"name":"Enchant Bracer - Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38810,"name":"Enchant Boots - Lesser Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38812,"name":"Enchant Bracer - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38816,"name":"Enchant Shield - Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38817,"name":"Enchant Bracer - Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38818,"name":"Enchant Chest - Greater Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38821,"name":"Enchant Weapon - Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38824,"name":"Enchant Chest - Lesser Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38825,"name":"Enchant Cloak - Greater Defense","icon":"inv_misc_enchantedscroll"}, +{"id":38827,"name":"Enchant Gloves - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38829,"name":"Enchant Bracer - Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":38830,"name":"Enchant Boots - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":38833,"name":"Enchant Chest - Superior Health","icon":"inv_misc_enchantedscroll"}, +{"id":38836,"name":"Enchant Gloves - Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38837,"name":"Enchant Boots - Minor Speed","icon":"inv_misc_enchantedscroll"}, +{"id":38839,"name":"Enchant Shield - Greater Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38841,"name":"Enchant Chest - Superior Mana","icon":"inv_misc_enchantedscroll"}, +{"id":38844,"name":"Enchant Boots - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38845,"name":"Enchant 2H Weapon - Greater Impact","icon":"inv_misc_enchantedscroll"}, +{"id":38846,"name":"Enchant Bracer - Greater Strength","icon":"inv_misc_enchantedscroll"}, +{"id":38847,"name":"Enchant Chest - Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38848,"name":"Enchant Weapon - Greater Striking","icon":"inv_misc_enchantedscroll"}, +{"id":38851,"name":"Enchant Gloves - Minor Haste","icon":"inv_misc_enchantedscroll"}, +{"id":38904,"name":"Enchant Shield - Lesser Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38929,"name":"Enchant Chest - Restore Mana Prime","icon":"inv_misc_enchantedscroll"}, +{"id":38938,"name":"Enchant Bracer - Lesser Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38951,"name":"Enchant Gloves - Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":38953,"name":"Enchant Gloves - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":38954,"name":"Enchant Shield - Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38955,"name":"Enchant Chest - Mighty Health","icon":"inv_misc_enchantedscroll"}, +{"id":38959,"name":"Enchant Cloak - Superior Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38960,"name":"Enchant Gloves - Gatherer","icon":"inv_misc_enchantedscroll"}, +{"id":38962,"name":"Enchant Chest - Greater Mana Restoration","icon":"inv_misc_enchantedscroll"}, +{"id":38963,"name":"Enchant Weapon - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38964,"name":"Enchant Gloves - Greater Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38965,"name":"Enchant Weapon - Icebreaker","icon":"inv_misc_enchantedscroll"}, +{"id":38966,"name":"Enchant Boots - Greater Fortitude","icon":"inv_misc_enchantedscroll"}, +{"id":38967,"name":"Enchant Gloves - Major Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38971,"name":"Enchant Bracer - Assault","icon":"inv_misc_enchantedscroll"}, +{"id":38972,"name":"Enchant Weapon - Lifeward","icon":"inv_misc_enchantedscroll"}, +{"id":38973,"name":"Enchant Cloak - Minor Power","icon":"inv_misc_enchantedscroll"}, +{"id":38974,"name":"Enchant Boots - Greater Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":38975,"name":"Enchant Chest - Exceptional Resilience","icon":"inv_misc_enchantedscroll"}, +{"id":38976,"name":"Enchant Boots - Superior Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38978,"name":"Enchant Cloak - Superior Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":38979,"name":"Enchant Gloves - Exceptional Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":38980,"name":"Enchant Bracer - Major Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":38981,"name":"Enchant 2H Weapon - Scourgebane","icon":"inv_misc_enchantedscroll"}, +{"id":38985,"name":"Enchant Gloves - Greater Blasting","icon":"inv_misc_enchantedscroll"}, +{"id":38986,"name":"Enchant Boots - Icewalker","icon":"inv_misc_enchantedscroll"}, +{"id":38988,"name":"Enchant Weapon - Giant Slayer","icon":"inv_misc_enchantedscroll"}, +{"id":38989,"name":"Enchant Chest - Super Stats","icon":"inv_misc_enchantedscroll"}, +{"id":38990,"name":"Enchant Gloves - Armsman","icon":"inv_misc_enchantedscroll"}, +{"id":38991,"name":"Enchant Weapon - Exceptional Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":38992,"name":"Enchant 2H Weapon - Greater Savagery","icon":"inv_misc_enchantedscroll"}, +{"id":38993,"name":"Enchant Cloak - Shadow Armor","icon":"inv_misc_enchantedscroll"}, +{"id":38995,"name":"Enchant Weapon - Exceptional Agility","icon":"inv_misc_enchantedscroll"}, +{"id":38997,"name":"Enchant Bracer - Greater Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":39001,"name":"Enchant Cloak - Mighty Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":39002,"name":"Enchant Chest - Greater Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":39003,"name":"Enchant Cloak - Greater Speed","icon":"inv_misc_enchantedscroll"}, +{"id":39004,"name":"Enchant Cloak - Wisdom","icon":"inv_misc_enchantedscroll"}, +{"id":39005,"name":"Enchant Chest - Super Health","icon":"inv_misc_enchantedscroll"}, +{"id":39006,"name":"Enchant Boots - Tuskarr's Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":40776,"name":"EMP Generator","icon":"inv_misc_enggizmos_02"}, +{"id":40800,"name":"Frag Belt","icon":"inv_misc_enggizmos_02"}, +{"id":41091,"name":"Hand-Mounted Pyro Rocket","icon":"inv_misc_enggizmos_01"}, +{"id":41111,"name":"Flexweave Underlay","icon":"inv_misc_cape_22"}, +{"id":41118,"name":"Nitro Boosts","icon":"inv_gizmo_rocketbootextreme"}, +{"id":41146,"name":"Sun Scope","icon":"inv_misc_spyglass_03"}, +{"id":41167,"name":"Heartseeker Scope","icon":"inv_misc_spyglass_02"}, +{"id":41601,"name":"Shining Spellthread","icon":"spell_nature_astralrecal"}, +{"id":41602,"name":"Brilliant Spellthread","icon":"spell_nature_astralrecalgroup"}, +{"id":41603,"name":"Azure Spellthread","icon":"spell_nature_astralrecal"}, +{"id":41604,"name":"Sapphire Spellthread","icon":"spell_nature_astralrecalgroup"}, +{"id":41976,"name":"Titanium Weapon Chain","icon":"inv_belt_18"}, {"id":42231,"name":"Hurricane","icon":"spell_nature_cyclone"}, -{"id":42463,"name":"Seal of Truth","icon":"spell_holy_sealofvengeance"}, -{"id":42650,"name":"Army of the Dead","icon":"spell_deathknight_armyofthedead","hasBuff":true}, -{"id":43265,"name":"Death and Decay","icon":"spell_shadow_deathanddecay","hasBuff":true}, +{"id":42500,"name":"Titanium Shield Spike","icon":"inv_titanium_shield_spike"}, +{"id":43097,"name":"Fur Lining - Agility","icon":"inv_bracer_08"}, +{"id":43302,"name":"Inscription of High Discipline","icon":"spell_holy_sealofwisdom"}, +{"id":43303,"name":"Inscription of the Frostblade","icon":"spell_holy_sealofwisdom"}, +{"id":43304,"name":"Inscription of Kings","icon":"spell_holy_sealofwisdom"}, +{"id":43987,"name":"Enchant Weapon - Black Magic","icon":"inv_misc_enchantedscroll"}, +{"id":44068,"name":"Inscription of Dominance","icon":"spell_holy_powerinfusion"}, +{"id":44125,"name":"Inscription of Triumph","icon":"spell_holy_weaponmastery"}, +{"id":44129,"name":"Inscription of the Storm","icon":"spell_nature_lightning"}, +{"id":44130,"name":"Inscription of the Crag","icon":"spell_nature_farsight"}, +{"id":44131,"name":"Inscription of the Axe","icon":"inv_axe_82"}, +{"id":44132,"name":"Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, +{"id":44133,"name":"Greater Inscription of the Axe","icon":"inv_axe_85"}, +{"id":44134,"name":"Greater Inscription of the Crag","icon":"spell_arcane_teleportorgrimmar"}, +{"id":44135,"name":"Greater Inscription of the Storm","icon":"spell_nature_lightningoverload"}, +{"id":44136,"name":"Greater Inscription of the Pinnacle","icon":"spell_holy_divinepurpose"}, {"id":44203,"name":"Tranquility","icon":"spell_nature_tranquility","hasBuff":true}, -{"id":44378,"name":"Arcane Flows","icon":"ability_mage_potentspirit"}, -{"id":44379,"name":"Arcane Flows","icon":"ability_mage_potentspirit"}, -{"id":44394,"name":"Incanter's Absorption","icon":"ability_mage_incantersabsorbtion"}, -{"id":44395,"name":"Incanter's Absorption","icon":"ability_mage_incantersabsorbtion"}, -{"id":44400,"name":"Netherwind Presence","icon":"ability_mage_netherwindpresence"}, -{"id":44402,"name":"Netherwind Presence","icon":"ability_mage_netherwindpresence"}, -{"id":44403,"name":"Netherwind Presence","icon":"ability_mage_netherwindpresence"}, -{"id":44404,"name":"Missile Barrage","icon":"ability_mage_missilebarrage"}, {"id":44425,"name":"Arcane Barrage","icon":"ability_mage_arcanebarrage"}, -{"id":44445,"name":"Hot Streak","icon":"ability_mage_hotstreak"}, -{"id":44446,"name":"Improved Hot Streak","icon":"ability_mage_hotstreak"}, -{"id":44448,"name":"Improved Hot Streak","icon":"ability_mage_hotstreak"}, +{"id":44449,"name":"Enchant Boots - Assault","icon":"inv_misc_enchantedscroll"}, +{"id":44453,"name":"Enchant Weapon - Greater Potency","icon":"inv_misc_enchantedscroll"}, +{"id":44455,"name":"Enchant Shield - Greater Intellect","icon":"inv_scroll_03"}, +{"id":44456,"name":"Enchant Cloak - Speed","icon":"inv_misc_enchantedscroll"}, {"id":44457,"name":"Living Bomb","icon":"ability_mage_livingbomb","hasBuff":true}, -{"id":44483,"name":"Enchant Cloak - Superior Frost Resistance","icon":"inv_enchant_formulagood_01"}, -{"id":44484,"name":"Enchant Gloves - Expertise","icon":"trade_engraving"}, -{"id":44488,"name":"Enchant Gloves - Precision","icon":"spell_holy_greaterheal"}, -{"id":44489,"name":"Enchant Shield - Dodge","icon":"trade_engraving"}, -{"id":44492,"name":"Enchant Chest - Mighty Health","icon":"trade_engraving"}, -{"id":44494,"name":"Enchant Cloak - Superior Nature Resistance","icon":"inv_enchant_formulagood_01"}, -{"id":44500,"name":"Enchant Cloak - Superior Agility","icon":"inv_enchant_formulagood_01"}, -{"id":44506,"name":"Enchant Gloves - Gatherer","icon":"trade_engraving"}, -{"id":44508,"name":"Enchant Boots - Greater Spirit","icon":"trade_engraving"}, -{"id":44509,"name":"Enchant Chest - Greater Mana Restoration","icon":"trade_engraving"}, -{"id":44510,"name":"Enchant Weapon - Exceptional Spirit","icon":"inv_enchant_formulagood_01"}, -{"id":44513,"name":"Enchant Gloves - Greater Assault","icon":"inv_enchant_formulagood_01"}, -{"id":44524,"name":"Enchant Weapon - Icebreaker","icon":"inv_enchant_formulasuperior_01"}, -{"id":44528,"name":"Enchant Boots - Greater Fortitude","icon":"trade_engraving"}, -{"id":44529,"name":"Enchant Gloves - Major Agility","icon":"trade_engraving"}, -{"id":44543,"name":"Fingers of Frost","icon":"ability_mage_wintersgrasp"}, -{"id":44545,"name":"Fingers of Frost","icon":"ability_mage_wintersgrasp"}, -{"id":44546,"name":"Brain Freeze","icon":"ability_mage_brainfreeze"}, -{"id":44548,"name":"Brain Freeze","icon":"ability_mage_brainfreeze"}, -{"id":44549,"name":"Brain Freeze","icon":"ability_mage_brainfreeze"}, -{"id":44555,"name":"Enchant Bracer - Exceptional Intellect","icon":"trade_engraving"}, -{"id":44556,"name":"Enchant Cloak - Superior Fire Resistance","icon":"inv_enchant_formulagood_01"}, -{"id":44561,"name":"Enduring Winter","icon":"spell_frost_arcticwinds"}, +{"id":44458,"name":"Enchant Gloves - Crusher","icon":"inv_misc_enchantedscroll"}, +{"id":44463,"name":"Enchant 2H Weapon - Massacre","icon":"inv_misc_enchantedscroll"}, +{"id":44466,"name":"Enchant Weapon - Superior Potency","icon":"inv_misc_enchantedscroll"}, +{"id":44467,"name":"Enchant Weapon - Mighty Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":44469,"name":"Enchant Boots - Greater Assault","icon":"inv_misc_enchantedscroll"}, +{"id":44470,"name":"Enchant Bracer - Superior Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":44493,"name":"Enchant Weapon - Berserking","icon":"inv_misc_enchantedscroll"}, +{"id":44497,"name":"Enchant Weapon - Accuracy","icon":"inv_misc_enchantedscroll"}, {"id":44572,"name":"Deep Freeze","icon":"ability_mage_deepfreeze","hasBuff":true}, -{"id":44575,"name":"Enchant Bracer - Greater Assault","icon":"inv_enchant_formulagood_01"}, -{"id":44576,"name":"Enchant Weapon - Lifeward","icon":"inv_enchant_formulasuperior_01"}, -{"id":44582,"name":"Enchant Cloak - Spell Piercing","icon":"trade_engraving"}, -{"id":44584,"name":"Enchant Boots - Greater Vitality","icon":"trade_engraving"}, -{"id":44588,"name":"Enchant Chest - Exceptional Resilience","icon":"inv_enchant_formulagood_01"}, -{"id":44589,"name":"Enchant Boots - Superior Agility","icon":"inv_enchant_formulagood_01"}, -{"id":44590,"name":"Enchant Cloak - Superior Shadow Resistance","icon":"inv_enchant_formulagood_01"}, -{"id":44591,"name":"Enchant Cloak - Superior Dodge","icon":"inv_enchant_formulagood_01"}, -{"id":44592,"name":"Enchant Gloves - Exceptional Spellpower","icon":"trade_engraving"}, -{"id":44593,"name":"Enchant Bracer - Major Spirit","icon":"inv_enchant_formulagood_01"}, -{"id":44595,"name":"Enchant 2H Weapon - Scourgebane","icon":"inv_enchant_formulasuperior_01"}, -{"id":44596,"name":"Enchant Cloak - Superior Arcane Resistance","icon":"inv_enchant_formulagood_01"}, -{"id":44598,"name":"Enchant Bracer - Expertise","icon":"inv_enchant_formulagood_01"}, -{"id":44614,"name":"Frostfire Bolt","icon":"ability_mage_frostfirebolt","hasBuff":true}, -{"id":44616,"name":"Enchant Bracer - Greater Stats","icon":"inv_enchant_formulagood_01"}, -{"id":44621,"name":"Enchant Weapon - Giant Slayer","icon":"inv_enchant_formulasuperior_01"}, -{"id":44623,"name":"Enchant Chest - Super Stats","icon":"trade_engraving"}, -{"id":44625,"name":"Enchant Gloves - Armsman","icon":"inv_enchant_formulagood_01"}, -{"id":44629,"name":"Enchant Weapon - Exceptional Spellpower","icon":"trade_engraving"}, -{"id":44630,"name":"Enchant 2H Weapon - Greater Savagery","icon":"inv_enchant_formulagood_01"}, -{"id":44631,"name":"Enchant Cloak - Shadow Armor","icon":"inv_enchant_formulagood_01"}, -{"id":44633,"name":"Enchant Weapon - Exceptional Agility","icon":"inv_enchant_formulagood_01"}, -{"id":44635,"name":"Enchant Bracer - Greater Spellpower","icon":"trade_engraving"}, -{"id":44636,"name":"Enchant Ring - Greater Spellpower","icon":"trade_engraving"}, -{"id":44645,"name":"Enchant Ring - Assault","icon":"trade_engraving"}, -{"id":44745,"name":"Shattered Barrier","icon":"ability_mage_coldasice"}, -{"id":44769,"name":"Glove Reinforcements","icon":"trade_leatherworking"}, -{"id":45234,"name":"Focused Will","icon":"ability_priest_focusedwill"}, -{"id":45243,"name":"Focused Will","icon":"ability_priest_focusedwill"}, -{"id":45462,"name":"Plague Strike","icon":"spell_deathknight_empowerruneblade"}, -{"id":45477,"name":"Icy Touch","icon":"spell_deathknight_icetouch","hasBuff":true}, -{"id":45529,"name":"Blood Tap","icon":"spell_deathknight_bloodtap","hasBuff":true}, -{"id":45902,"name":"Blood Strike","icon":"spell_deathknight_deathstrike"}, -{"id":46584,"name":"Raise Dead","icon":"spell_shadow_animatedead","hasBuff":true}, -{"id":46867,"name":"Wrecking Crew","icon":"ability_warrior_trauma"}, -{"id":46908,"name":"Intensify Rage","icon":"warrior_talent_icon_furyintheblood"}, -{"id":46909,"name":"Intensify Rage","icon":"warrior_talent_icon_furyintheblood"}, -{"id":46910,"name":"Furious Attacks","icon":"ability_warrior_furiousresolve"}, -{"id":46913,"name":"Bloodsurge","icon":"ability_warrior_bloodsurge"}, -{"id":46914,"name":"Bloodsurge","icon":"ability_warrior_bloodsurge"}, -{"id":46915,"name":"Bloodsurge","icon":"ability_warrior_bloodsurge"}, -{"id":46916,"name":"Bloodsurge","icon":"ability_warrior_bloodsurge","hasBuff":true}, -{"id":46917,"name":"Titan's Grip","icon":"ability_warrior_titansgrip"}, +{"id":44739,"name":"Diamond-cut Refractor Scope","icon":"ability_hunter_rapidregeneration"}, +{"id":44815,"name":"Enchant Bracer - Greater Assault","icon":"inv_misc_enchantedscroll"}, +{"id":44936,"name":"Titanium Plating","icon":"inv_shield_19"}, +{"id":44945,"name":"Enchant Weapon - Titanguard","icon":"inv_enchant_formulasuperior_01"}, +{"id":44947,"name":"Enchant Bracer - Major Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":44957,"name":"Greater Inscription of the Gladiator","icon":"inv_shoulder_61"}, +{"id":44963,"name":"Earthen Leg Armor","icon":"inv_misc_armorkit_18"}, +{"id":45056,"name":"Enchant Staff - Greater Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":45060,"name":"Enchant Staff - Spellpower","icon":"inv_misc_enchantedscroll"}, +{"id":45529,"name":"Blood Tap","icon":"spell_deathknight_bloodtap"}, +{"id":45628,"name":"Enchant Boots - Lesser Accuracy","icon":"inv_misc_enchantedscroll"}, +{"id":46026,"name":"Enchant Weapon - Blade Ward","icon":"inv_misc_enchantedscroll"}, +{"id":46098,"name":"Enchant Weapon - Blood Draining","icon":"inv_misc_enchantedscroll"}, {"id":46924,"name":"Bladestorm","icon":"ability_warrior_bladestorm","hasBuff":true}, -{"id":46945,"name":"Safeguard","icon":"ability_warrior_safeguard"}, -{"id":46949,"name":"Safeguard","icon":"ability_warrior_safeguard"}, -{"id":46951,"name":"Sword and Board","icon":"ability_warrior_swordandboard"}, -{"id":46952,"name":"Sword and Board","icon":"ability_warrior_swordandboard"}, -{"id":46953,"name":"Sword and Board","icon":"ability_warrior_swordandboard"}, {"id":46968,"name":"Shockwave","icon":"ability_warrior_shockwave","hasBuff":true}, -{"id":47193,"name":"Demonic Empowerment","icon":"ability_warlock_demonicempowerment"}, -{"id":47195,"name":"Eradication","icon":"ability_warlock_eradication"}, -{"id":47196,"name":"Eradication","icon":"ability_warlock_eradication"}, -{"id":47197,"name":"Eradication","icon":"ability_warlock_eradication"}, -{"id":47198,"name":"Death's Embrace","icon":"spell_shadow_deathsembrace"}, -{"id":47199,"name":"Death's Embrace","icon":"spell_shadow_deathsembrace"}, -{"id":47200,"name":"Death's Embrace","icon":"spell_shadow_deathsembrace"}, -{"id":47201,"name":"Everlasting Affliction","icon":"ability_warlock_everlastingaffliction"}, -{"id":47202,"name":"Everlasting Affliction","icon":"ability_warlock_everlastingaffliction"}, -{"id":47203,"name":"Everlasting Affliction","icon":"ability_warlock_everlastingaffliction"}, -{"id":47220,"name":"Empowered Imp","icon":"ability_warlock_empoweredimp"}, -{"id":47221,"name":"Empowered Imp","icon":"ability_warlock_empoweredimp"}, -{"id":47230,"name":"Fel Synergy","icon":"spell_shadow_felmending"}, -{"id":47231,"name":"Fel Synergy","icon":"spell_shadow_felmending"}, -{"id":47236,"name":"Demonic Pact","icon":"spell_shadow_demonicpact"}, -{"id":47245,"name":"Molten Core","icon":"ability_warlock_moltencore"}, -{"id":47246,"name":"Molten Core","icon":"ability_warlock_moltencore"}, -{"id":47247,"name":"Molten Core","icon":"ability_warlock_moltencore"}, -{"id":47258,"name":"Backdraft","icon":"ability_warlock_backdraft"}, -{"id":47259,"name":"Backdraft","icon":"ability_warlock_backdraft"}, -{"id":47260,"name":"Backdraft","icon":"ability_warlock_backdraft"}, -{"id":47266,"name":"Fire and Brimstone","icon":"ability_warlock_fireandbrimstone"}, -{"id":47267,"name":"Fire and Brimstone","icon":"ability_warlock_fireandbrimstone"}, -{"id":47268,"name":"Fire and Brimstone","icon":"ability_warlock_fireandbrimstone"}, -{"id":47269,"name":"Fire and Brimstone","icon":"ability_warlock_fireandbrimstone"}, -{"id":47270,"name":"Fire and Brimstone","icon":"ability_warlock_fireandbrimstone"}, -{"id":47509,"name":"Divine Aegis","icon":"spell_holy_devineaegis"}, -{"id":47511,"name":"Divine Aegis","icon":"spell_holy_devineaegis"}, -{"id":47515,"name":"Divine Aegis","icon":"spell_holy_devineaegis"}, -{"id":47516,"name":"Grace","icon":"spell_holy_hopeandgrace"}, -{"id":47517,"name":"Grace","icon":"spell_holy_hopeandgrace"}, -{"id":47535,"name":"Rapture","icon":"spell_holy_rapture"}, -{"id":47536,"name":"Rapture","icon":"spell_holy_rapture"}, -{"id":47537,"name":"Rapture","icon":"spell_holy_rapture"}, -{"id":47541,"name":"Death Coil","icon":"spell_shadow_deathcoil"}, -{"id":47558,"name":"Test of Faith","icon":"spell_holy_testoffaith"}, -{"id":47559,"name":"Test of Faith","icon":"spell_holy_testoffaith"}, -{"id":47560,"name":"Test of Faith","icon":"spell_holy_testoffaith"}, -{"id":47568,"name":"Empower Rune Weapon","icon":"inv_sword_62"}, -{"id":47569,"name":"Phantasm","icon":"spell_shadow_twistedfaith"}, -{"id":47570,"name":"Phantasm","icon":"spell_shadow_twistedfaith"}, -{"id":47573,"name":"Twisted Faith","icon":"spell_shadow_mindtwisting"}, -{"id":47577,"name":"Twisted Faith","icon":"spell_shadow_mindtwisting"}, -{"id":47580,"name":"Pain and Suffering","icon":"spell_shadow_painandsuffering"}, -{"id":47581,"name":"Pain and Suffering","icon":"spell_shadow_painandsuffering"}, -{"id":47585,"name":"Dispersion","icon":"spell_shadow_dispersion","hasBuff":true}, -{"id":47586,"name":"Twin Disciplines","icon":"spell_holy_sealofvengeance"}, -{"id":47587,"name":"Twin Disciplines","icon":"spell_holy_sealofvengeance"}, -{"id":47588,"name":"Twin Disciplines","icon":"spell_holy_sealofvengeance"}, -{"id":47672,"name":"Enchant Cloak - Mighty Armor","icon":"inv_enchant_formulagood_01"}, -{"id":47766,"name":"Enchant Chest - Greater Dodge","icon":"inv_enchant_formulagood_01"}, -{"id":47788,"name":"Guardian Spirit","icon":"spell_holy_guardianspirit","hasBuff":true}, -{"id":47897,"name":"Shadowflame","icon":"ability_warlock_shadowflame"}, -{"id":47898,"name":"Enchant Cloak - Greater Speed","icon":"inv_enchant_formulagood_01"}, -{"id":47899,"name":"Enchant Cloak - Wisdom","icon":"inv_enchant_formulagood_01"}, -{"id":47900,"name":"Enchant Chest - Super Health","icon":"trade_engraving"}, -{"id":47901,"name":"Enchant Boots - Tuskarr's Vitality","icon":"inv_enchant_formulagood_01"}, +{"id":47897,"name":"Demonic Breath","icon":"ability_warlock_shadowflame","hasBuff":true}, {"id":48045,"name":"Mind Sear","icon":"spell_shadow_mindshear","hasBuff":true}, -{"id":48108,"name":"Hot Streak","icon":"ability_mage_hotstreak","hasBuff":true}, -{"id":48181,"name":"Haunt","icon":"ability_warlock_haunt","hasBuff":true}, -{"id":48263,"name":"Blood Presence","icon":"spell_deathknight_bloodpresence","hasBuff":true}, -{"id":48265,"name":"Unholy Presence","icon":"spell_deathknight_unholypresence","hasBuff":true}, -{"id":48266,"name":"Frost Presence","icon":"spell_deathknight_frostpresence","hasBuff":true}, -{"id":48301,"name":"Mind Trauma","icon":"spell_shadow_unholyfrenzy","hasBuff":true}, -{"id":48389,"name":"Owlkin Frenzy","icon":"ability_druid_owlkinfrenzy"}, -{"id":48392,"name":"Owlkin Frenzy","icon":"ability_druid_owlkinfrenzy"}, -{"id":48393,"name":"Owlkin Frenzy","icon":"ability_druid_owlkinfrenzy"}, -{"id":48411,"name":"Master Shapeshifter","icon":"ability_druid_mastershapeshifter"}, -{"id":48432,"name":"Rend and Tear","icon":"ability_druid_primalagression"}, -{"id":48433,"name":"Rend and Tear","icon":"ability_druid_primalagression"}, -{"id":48434,"name":"Rend and Tear","icon":"ability_druid_primalagression"}, -{"id":48438,"name":"Wild Growth","icon":"ability_druid_flourish","hasBuff":true}, -{"id":48483,"name":"Infected Wounds","icon":"ability_druid_infectedwound"}, -{"id":48484,"name":"Infected Wounds","icon":"ability_druid_infectedwound"}, -{"id":48488,"name":"Gale Winds","icon":"ability_druid_galewinds"}, -{"id":48492,"name":"King of the Jungle","icon":"ability_druid_kingofthejungle"}, -{"id":48494,"name":"King of the Jungle","icon":"ability_druid_kingofthejungle"}, -{"id":48495,"name":"King of the Jungle","icon":"ability_druid_kingofthejungle"}, -{"id":48496,"name":"Living Seed","icon":"ability_druid_giftoftheearthmother"}, -{"id":48499,"name":"Living Seed","icon":"ability_druid_giftoftheearthmother"}, -{"id":48500,"name":"Living Seed","icon":"ability_druid_giftoftheearthmother"}, -{"id":48505,"name":"Starfall","icon":"ability_druid_starfall","hasBuff":true}, -{"id":48506,"name":"Earth and Moon","icon":"ability_druid_earthandsky"}, -{"id":48514,"name":"Gale Winds","icon":"ability_druid_galewinds"}, -{"id":48517,"name":"Eclipse (Solar)","icon":"ability_druid_eclipseorange","hasBuff":true}, -{"id":48518,"name":"Eclipse (Lunar)","icon":"ability_druid_eclipse","hasBuff":true}, -{"id":48532,"name":"Fury Swipes","icon":"ability_druid_mangle-tga"}, -{"id":48539,"name":"Revitalize","icon":"ability_druid_replenish"}, -{"id":48544,"name":"Revitalize","icon":"ability_druid_replenish"}, -{"id":48707,"name":"Anti-Magic Shell","icon":"spell_shadow_antimagicshell","hasBuff":true}, -{"id":48721,"name":"Blood Boil","icon":"spell_deathknight_bloodboil"}, {"id":48743,"name":"Death Pact","icon":"spell_shadow_deathpact"}, -{"id":48792,"name":"Icebound Fortitude","icon":"spell_deathknight_iceboundfortitude","hasBuff":true}, -{"id":48962,"name":"Virulence","icon":"spell_shadow_burningspirit"}, -{"id":48963,"name":"Morbidity","icon":"spell_shadow_deathanddecay"}, -{"id":48965,"name":"Shadow Infusion","icon":"spell_shadow_requiem"}, -{"id":48978,"name":"Bladed Armor","icon":"inv_shoulder_36"}, -{"id":48979,"name":"Butchery","icon":"inv_axe_68"}, -{"id":48982,"name":"Rune Tap","icon":"spell_deathknight_runetap"}, -{"id":49004,"name":"Scent of Blood","icon":"ability_rogue_bloodyeye"}, {"id":49016,"name":"Unholy Frenzy","icon":"spell_shadow_unholyfrenzy","hasBuff":true}, -{"id":49018,"name":"Sudden Doom","icon":"spell_shadow_painspike"}, -{"id":49020,"name":"Obliterate","icon":"spell_deathknight_classicon"}, -{"id":49024,"name":"Merciless Combat","icon":"inv_sword_112"}, -{"id":49027,"name":"Blood Parasite","icon":"spell_shadow_soulleech"}, -{"id":49028,"name":"Dancing Rune Weapon","icon":"inv_sword_07"}, -{"id":49036,"name":"Epidemic","icon":"spell_shadow_shadowwordpain"}, {"id":49039,"name":"Lichborne","icon":"spell_shadow_raisedead","hasBuff":true}, -{"id":49042,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":49137,"name":"Endless Winter","icon":"spell_shadow_twilight"}, -{"id":49143,"name":"Frost Strike","icon":"spell_deathknight_empowerruneblade2"}, -{"id":49149,"name":"Chill of the Grave","icon":"spell_frost_frostshock"}, -{"id":49182,"name":"Blade Barrier","icon":"ability_upgrademoonglaive"}, -{"id":49184,"name":"Howling Blast","icon":"spell_frost_arcticwinds"}, -{"id":49188,"name":"Rime","icon":"spell_frost_freezingbreath"}, -{"id":49194,"name":"Unholy Blight","icon":"spell_shadow_contagion","hasBuff":true}, -{"id":49203,"name":"Hungering Cold","icon":"inv_staff_15","hasBuff":true}, -{"id":49206,"name":"Summon Gargoyle","icon":"ability_deathknight_summongargoyle","hasBuff":true}, -{"id":49219,"name":"Blood-Caked Blade","icon":"ability_criticalstrike"}, -{"id":49222,"name":"Bone Shield","icon":"ability_deathknight_boneshield","hasBuff":true}, -{"id":49224,"name":"Magic Suppression","icon":"spell_shadow_antimagicshell"}, -{"id":49226,"name":"Nerves of Cold Steel","icon":"ability_dualwield"}, -{"id":49376,"name":"Feral Charge","icon":"spell_druid_feralchargecat","hasBuff":true}, -{"id":49377,"name":"Feral Charge","icon":"ability_hunter_pet_bear"}, -{"id":49390,"name":"Bladed Armor","icon":"inv_shoulder_36"}, -{"id":49391,"name":"Bladed Armor","icon":"inv_shoulder_36"}, -{"id":49393,"name":"Bladed Armor","icon":"inv_shoulder_36"}, -{"id":49455,"name":"Runic Power Mastery","icon":"spell_arcane_arcane01"}, -{"id":49483,"name":"Butchery","icon":"inv_axe_68"}, -{"id":49500,"name":"Blade Barrier","icon":"ability_upgrademoonglaive"}, -{"id":49501,"name":"Blade Barrier","icon":"ability_upgrademoonglaive"}, -{"id":49508,"name":"Scent of Blood","icon":"ability_rogue_bloodyeye"}, -{"id":49509,"name":"Scent of Blood","icon":"ability_rogue_bloodyeye"}, -{"id":49529,"name":"Sudden Doom","icon":"spell_shadow_painspike"}, -{"id":49530,"name":"Sudden Doom","icon":"spell_shadow_painspike"}, -{"id":49538,"name":"Merciless Combat","icon":"inv_sword_112"}, -{"id":49542,"name":"Blood Parasite","icon":"spell_shadow_soulleech"}, -{"id":49562,"name":"Epidemic","icon":"spell_shadow_shadowwordpain"}, -{"id":49564,"name":"Morbidity","icon":"spell_shadow_deathanddecay"}, -{"id":49565,"name":"Morbidity","icon":"spell_shadow_deathanddecay"}, -{"id":49567,"name":"Virulence","icon":"spell_shadow_burningspirit"}, -{"id":49568,"name":"Virulence","icon":"spell_shadow_burningspirit"}, -{"id":49571,"name":"Shadow Infusion","icon":"spell_shadow_requiem"}, -{"id":49572,"name":"Shadow Infusion","icon":"spell_shadow_requiem"}, -{"id":49588,"name":"Unholy Command","icon":"spell_deathknight_strangulate"}, -{"id":49589,"name":"Unholy Command","icon":"spell_deathknight_strangulate"}, -{"id":49610,"name":"Magic Suppression","icon":"spell_shadow_antimagicshell"}, -{"id":49611,"name":"Magic Suppression","icon":"spell_shadow_antimagicshell"}, -{"id":49627,"name":"Blood-Caked Blade","icon":"ability_criticalstrike"}, -{"id":49628,"name":"Blood-Caked Blade","icon":"ability_criticalstrike"}, -{"id":49657,"name":"Endless Winter","icon":"spell_shadow_twilight"}, -{"id":49786,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":49787,"name":"Toughness","icon":"spell_holy_devotion"}, -{"id":49998,"name":"Death Strike","icon":"spell_deathknight_butcher2"}, -{"id":50029,"name":"Veteran of the Third War","icon":"spell_misc_warsongfocus"}, -{"id":50040,"name":"Chilblains","icon":"spell_frost_wisp"}, -{"id":50041,"name":"Chilblains","icon":"spell_frost_wisp"}, -{"id":50115,"name":"Chill of the Grave","icon":"spell_frost_frostshock"}, -{"id":50137,"name":"Nerves of Cold Steel","icon":"ability_dualwield"}, -{"id":50138,"name":"Nerves of Cold Steel","icon":"ability_dualwield"}, -{"id":50147,"name":"Runic Power Mastery","icon":"spell_arcane_arcane01"}, -{"id":50227,"name":"Sword and Board","icon":"ability_warrior_swordandboard","hasBuff":true}, -{"id":50288,"name":"Starfall","icon":"ability_druid_starfall"}, -{"id":50334,"name":"Berserk","icon":"ability_druid_berserk","hasBuff":true}, -{"id":50365,"name":"Improved Blood Presence","icon":"spell_deathknight_bloodpresence"}, -{"id":50371,"name":"Improved Blood Presence","icon":"spell_deathknight_bloodpresence"}, -{"id":50384,"name":"Improved Frost Presence","icon":"spell_deathknight_frostpresence"}, -{"id":50385,"name":"Improved Frost Presence","icon":"spell_deathknight_frostpresence"}, -{"id":50391,"name":"Improved Unholy Presence","icon":"spell_deathknight_unholypresence"}, -{"id":50392,"name":"Improved Unholy Presence","icon":"spell_deathknight_unholypresence"}, -{"id":50421,"name":"Scent of Blood","icon":"ability_rogue_bloodyeye","hasBuff":true}, -{"id":50463,"name":"Blood-Caked Strike","icon":"ability_creature_poison_01"}, -{"id":50516,"name":"Typhoon","icon":"ability_druid_typhoon"}, -{"id":50589,"name":"Immolation Aura","icon":"spell_fire_incinerate","hasBuff":true}, -{"id":50685,"name":"Incite","icon":"ability_warrior_incite"}, -{"id":50686,"name":"Incite","icon":"ability_warrior_incite"}, -{"id":50687,"name":"Incite","icon":"ability_warrior_incite"}, -{"id":50720,"name":"Vigilance","icon":"ability_warrior_vigilance","hasBuff":true}, -{"id":50796,"name":"Chaos Bolt","icon":"ability_warlock_chaosbolt"}, -{"id":50842,"name":"Pestilence","icon":"spell_shadow_plaguecloud"}, -{"id":50887,"name":"Icy Talons","icon":"spell_deathknight_icytalons"}, -{"id":50901,"name":"Jormungar Leg Armor","icon":"trade_leatherworking"}, -{"id":50902,"name":"Nerubian Leg Armor","icon":"trade_leatherworking"}, -{"id":50906,"name":"Borean Armor Kit","icon":"trade_leatherworking"}, -{"id":50909,"name":"Heavy Borean Armor Kit","icon":"trade_leatherworking"}, +{"id":50029,"name":"Veteran of the Third War","icon":"spell_misc_warsongfocus","hasBuff":true}, +{"id":50041,"name":"Chilblains","icon":"spell_frost_wisp","hasBuff":true}, +{"id":50406,"name":"Enchant Gloves - Angler","icon":"inv_enchant_formulagood_01"}, +{"id":50887,"name":"Icy Talons","icon":"spell_deathknight_icytalons","hasBuff":true}, {"id":51052,"name":"Anti-Magic Zone","icon":"spell_deathknight_antimagiczone"}, -{"id":51099,"name":"Ebon Plaguebringer","icon":"ability_creature_cursed_03"}, -{"id":51123,"name":"Killing Machine","icon":"inv_sword_122"}, -{"id":51124,"name":"Killing Machine","icon":"inv_sword_122","hasBuff":true}, -{"id":51127,"name":"Killing Machine","icon":"inv_sword_122"}, -{"id":51128,"name":"Killing Machine","icon":"inv_sword_122"}, -{"id":51160,"name":"Ebon Plaguebringer","icon":"ability_creature_cursed_03"}, -{"id":51179,"name":"Gift of the Earthmother","icon":"ability_druid_manatree"}, -{"id":51180,"name":"Gift of the Earthmother","icon":"ability_druid_manatree"}, -{"id":51181,"name":"Gift of the Earthmother","icon":"ability_druid_manatree"}, -{"id":51271,"name":"Pillar of Frost","icon":"ability_deathknight_pillaroffrost","hasBuff":true}, -{"id":51459,"name":"Runic Corruption","icon":"spell_shadow_rune"}, -{"id":51460,"name":"Runic Corruption","icon":"spell_shadow_rune","hasBuff":true}, -{"id":51462,"name":"Runic Corruption","icon":"spell_shadow_rune"}, -{"id":51466,"name":"Elemental Oath","icon":"spell_shaman_elementaloath","hasBuff":true}, -{"id":51468,"name":"Annihilation","icon":"inv_weapon_hand_18"}, +{"id":51462,"name":"Runic Corruption","icon":"spell_shadow_rune","hasBuff":true}, {"id":51470,"name":"Elemental Oath","icon":"spell_shaman_elementaloath","hasBuff":true}, -{"id":51472,"name":"Annihilation","icon":"inv_weapon_hand_18"}, -{"id":51473,"name":"Annihilation","icon":"inv_weapon_hand_18"}, -{"id":51480,"name":"Lava Flows","icon":"spell_shaman_lavaflow"}, -{"id":51481,"name":"Lava Flows","icon":"spell_shaman_lavaflow"}, -{"id":51482,"name":"Lava Flows","icon":"spell_shaman_lavaflow"}, -{"id":51483,"name":"Earth's Grasp","icon":"spell_nature_stranglevines"}, -{"id":51485,"name":"Earth's Grasp","icon":"spell_nature_stranglevines"}, -{"id":51490,"name":"Thunderstorm","icon":"spell_shaman_thunderstorm"}, -{"id":51505,"name":"Lava Burst","icon":"spell_shaman_lavaburst"}, -{"id":51523,"name":"Earthen Power","icon":"spell_nature_earthelemental_totem"}, -{"id":51524,"name":"Earthen Power","icon":"spell_nature_earthelemental_totem"}, -{"id":51525,"name":"Static Shock","icon":"spell_shaman_staticshock"}, -{"id":51526,"name":"Static Shock","icon":"spell_shaman_staticshock"}, -{"id":51527,"name":"Static Shock","icon":"spell_shaman_staticshock"}, -{"id":51528,"name":"Maelstrom Weapon","icon":"spell_shaman_maelstromweapon"}, -{"id":51529,"name":"Maelstrom Weapon","icon":"spell_shaman_maelstromweapon"}, -{"id":51530,"name":"Maelstrom Weapon","icon":"spell_shaman_maelstromweapon"}, -{"id":51533,"name":"Feral Spirit","icon":"spell_shaman_feralspirit"}, -{"id":51554,"name":"Blessing of the Eternals","icon":"spell_shaman_blessingofeternals"}, -{"id":51555,"name":"Blessing of the Eternals","icon":"spell_shaman_blessingofeternals"}, -{"id":51556,"name":"Ancestral Awakening","icon":"spell_shaman_ancestralawakening"}, -{"id":51557,"name":"Ancestral Awakening","icon":"spell_shaman_ancestralawakening"}, -{"id":51558,"name":"Ancestral Awakening","icon":"spell_shaman_ancestralawakening"}, -{"id":51562,"name":"Tidal Waves","icon":"spell_shaman_tidalwaves"}, -{"id":51563,"name":"Tidal Waves","icon":"spell_shaman_tidalwaves"}, -{"id":51564,"name":"Tidal Waves","icon":"spell_shaman_tidalwaves"}, -{"id":51625,"name":"Deadly Brew","icon":"ability_rogue_deadlybrew"}, -{"id":51626,"name":"Deadly Brew","icon":"ability_rogue_deadlybrew"}, -{"id":51632,"name":"Find Weakness","icon":"ability_rogue_findweakness"}, -{"id":51664,"name":"Cut to the Chase","icon":"ability_rogue_cuttothechase"}, -{"id":51665,"name":"Cut to the Chase","icon":"ability_rogue_cuttothechase"}, -{"id":51667,"name":"Cut to the Chase","icon":"ability_rogue_cuttothechase"}, -{"id":51679,"name":"Throwing Specialization","icon":"ability_rogue_throwingspecialization"}, -{"id":51682,"name":"Savage Combat","icon":"ability_creature_disease_03"}, -{"id":51690,"name":"Killing Spree","icon":"ability_rogue_murderspree","hasBuff":true}, -{"id":51692,"name":"Waylay","icon":"ability_rogue_waylay"}, -{"id":51696,"name":"Waylay","icon":"ability_rogue_waylay"}, -{"id":51698,"name":"Honor Among Thieves","icon":"ability_rogue_honoramongstthieves","hasBuff":true}, -{"id":51700,"name":"Honor Among Thieves","icon":"ability_rogue_honoramongstthieves","hasBuff":true}, -{"id":51701,"name":"Honor Among Thieves","icon":"ability_rogue_honoramongstthieves","hasBuff":true}, -{"id":51708,"name":"Slaughter from the Shadows","icon":"ability_rogue_slaughterfromtheshadows"}, -{"id":51709,"name":"Slaughter from the Shadows","icon":"ability_rogue_slaughterfromtheshadows"}, -{"id":51710,"name":"Slaughter from the Shadows","icon":"ability_rogue_slaughterfromtheshadows"}, -{"id":51713,"name":"Shadow Dance","icon":"ability_rogue_shadowdance","hasBuff":true}, -{"id":51723,"name":"Fan of Knives","icon":"ability_rogue_fanofknives"}, -{"id":51745,"name":"Rage of Rivendare","icon":"inv_weapon_halberd14"}, -{"id":51746,"name":"Rage of Rivendare","icon":"inv_weapon_halberd14"}, -{"id":51881,"name":"Improved Shields","icon":"spell_nature_lightningshield"}, -{"id":51983,"name":"On a Pale Horse","icon":"ability_mount_undeadhorse"}, -{"id":51986,"name":"On a Pale Horse","icon":"ability_mount_undeadhorse"}, -{"id":52234,"name":"Cornered","icon":"ability_hunter_survivalinstincts"}, -{"id":52284,"name":"Will of the Necropolis","icon":"ability_creature_cursed_02"}, -{"id":52610,"name":"Savage Roar","icon":"ability_druid_skinteeth","hasBuff":true}, -{"id":52783,"name":"Pathing","icon":"ability_hunter_improvedtracking"}, -{"id":52785,"name":"Pathing","icon":"ability_hunter_improvedtracking"}, -{"id":52786,"name":"Pathing","icon":"ability_hunter_improvedtracking"}, -{"id":52789,"name":"Visual Dummy","icon":"spell_deathknight_icetouch"}, -{"id":52795,"name":"Borrowed Time","icon":"spell_holy_borrowedtime"}, -{"id":52797,"name":"Borrowed Time","icon":"spell_holy_borrowedtime"}, -{"id":52798,"name":"Borrowed Time","icon":"spell_holy_borrowedtime"}, -{"id":52858,"name":"Culling the Herd","icon":"inv_misc_monsterhorn_06"}, -{"id":53137,"name":"Abomination's Might","icon":"ability_warrior_intensifyrage","hasBuff":true}, -{"id":53138,"name":"Abomination's Might","icon":"ability_warrior_intensifyrage","hasBuff":true}, -{"id":53175,"name":"Pet Barding","icon":"inv_helmet_94"}, -{"id":53176,"name":"Pet Barding","icon":"inv_helmet_94"}, -{"id":53178,"name":"Guard Dog","icon":"ability_physical_taunt"}, -{"id":53179,"name":"Guard Dog","icon":"ability_physical_taunt"}, -{"id":53180,"name":"Improved Cower","icon":"ability_druid_cower"}, -{"id":53181,"name":"Improved Cower","icon":"ability_druid_cower"}, -{"id":53182,"name":"Spiked Collar","icon":"inv_jewelry_necklace_22"}, -{"id":53183,"name":"Spiked Collar","icon":"inv_jewelry_necklace_22"}, -{"id":53184,"name":"Spiked Collar","icon":"inv_jewelry_necklace_22"}, -{"id":53186,"name":"Bloodthirsty","icon":"ability_druid_primaltenacity"}, -{"id":53187,"name":"Bloodthirsty","icon":"ability_druid_primaltenacity"}, -{"id":53203,"name":"Spider's Bite","icon":"ability_hunter_pet_spider"}, -{"id":53204,"name":"Spider's Bite","icon":"ability_hunter_pet_spider"}, -{"id":53205,"name":"Spider's Bite","icon":"ability_hunter_pet_spider"}, -{"id":53209,"name":"Chimera Shot","icon":"ability_hunter_chimerashot2"}, -{"id":53221,"name":"Improved Steady Shot","icon":"ability_hunter_improvedsteadyshot"}, -{"id":53222,"name":"Improved Steady Shot","icon":"ability_hunter_improvedsteadyshot"}, -{"id":53224,"name":"Improved Steady Shot","icon":"ability_hunter_improvedsteadyshot"}, -{"id":53228,"name":"Rapid Recuperation","icon":"ability_hunter_rapidregeneration"}, -{"id":53232,"name":"Rapid Recuperation","icon":"ability_hunter_rapidregeneration"}, -{"id":53234,"name":"Piercing Shots","icon":"ability_hunter_piercingshots"}, -{"id":53237,"name":"Piercing Shots","icon":"ability_hunter_piercingshots"}, -{"id":53238,"name":"Piercing Shots","icon":"ability_hunter_piercingshots"}, -{"id":53241,"name":"Marked for Death","icon":"ability_hunter_assassinate"}, -{"id":53243,"name":"Marked for Death","icon":"ability_hunter_assassinate"}, -{"id":53252,"name":"Invigoration","icon":"ability_hunter_invigeration"}, -{"id":53253,"name":"Invigoration","icon":"ability_hunter_invigeration"}, -{"id":53256,"name":"Cobra Strikes","icon":"ability_hunter_cobrastrikes"}, -{"id":53259,"name":"Cobra Strikes","icon":"ability_hunter_cobrastrikes"}, -{"id":53260,"name":"Cobra Strikes","icon":"ability_hunter_cobrastrikes"}, -{"id":53262,"name":"Longevity","icon":"ability_hunter_longevity"}, -{"id":53263,"name":"Longevity","icon":"ability_hunter_longevity"}, -{"id":53264,"name":"Longevity","icon":"ability_hunter_longevity"}, -{"id":53270,"name":"Beast Mastery","icon":"ability_hunter_beastmastery"}, -{"id":53290,"name":"Hunting Party","icon":"ability_hunter_huntingparty","hasBuff":true}, -{"id":53295,"name":"Noxious Stings","icon":"ability_hunter_potentvenom"}, -{"id":53296,"name":"Noxious Stings","icon":"ability_hunter_potentvenom"}, -{"id":53298,"name":"Point of No Escape","icon":"ability_hunter_pointofnoescape"}, -{"id":53299,"name":"Point of No Escape","icon":"ability_hunter_pointofnoescape"}, -{"id":53301,"name":"Explosive Shot","icon":"ability_hunter_explosiveshot","hasBuff":true}, -{"id":53302,"name":"Sniper Training","icon":"ability_hunter_longshots"}, -{"id":53303,"name":"Sniper Training","icon":"ability_hunter_longshots"}, -{"id":53304,"name":"Sniper Training","icon":"ability_hunter_longshots"}, -{"id":53323,"name":"Rune of Swordshattering","icon":"ability_parry"}, -{"id":53331,"name":"Rune of Lichbane","icon":"spell_holy_harmundeadaura"}, -{"id":53341,"name":"Rune of Cinderglacier","icon":"spell_shadow_chilltouch"}, -{"id":53342,"name":"Rune of Spellshattering","icon":"spell_shadow_antimagicshell"}, -{"id":53343,"name":"Rune of Razorice","icon":"spell_frost_frostarmor"}, -{"id":53344,"name":"Rune of the Fallen Crusader","icon":"spell_holy_retributionaura"}, +{"id":51485,"name":"Earthgrab Totem","icon":"spell_nature_stranglevines"}, +{"id":51490,"name":"Thunderstorm","icon":"spell_shaman_thunderstorm","hasBuff":true}, +{"id":52687,"name":"Enchant Gloves - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52733,"name":"Enchant Weapon - Power Torrent","icon":"inv_enchant_formulasuperior_01"}, +{"id":52735,"name":"Enchant Weapon - Windwalk","icon":"inv_enchant_formulasuperior_01"}, +{"id":52736,"name":"Enchant Weapon - Landslide","icon":"inv_enchant_formulasuperior_01"}, +{"id":52737,"name":"Enchant Cloak - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, +{"id":52738,"name":"Enchant Bracer - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, +{"id":52739,"name":"Enchant Chest - Peerless Stats","icon":"inv_enchant_formulagood_01"}, +{"id":52740,"name":"Enchant Chest - Greater Stamina","icon":"inv_enchant_formulagood_01"}, +{"id":52743,"name":"Enchant Boots - Earthen Vitality","icon":"inv_misc_enchantedscroll"}, +{"id":52744,"name":"Enchant Chest - Mighty Stats","icon":"inv_misc_enchantedscroll"}, +{"id":52745,"name":"Enchant Cloak - Lesser Power","icon":"inv_misc_enchantedscroll"}, +{"id":52746,"name":"Enchant Bracer - Speed","icon":"inv_misc_enchantedscroll"}, +{"id":52747,"name":"Enchant Weapon - Mending","icon":"inv_misc_enchantedscroll"}, +{"id":52748,"name":"Enchant Weapon - Avalanche","icon":"inv_misc_enchantedscroll"}, +{"id":52749,"name":"Enchant Gloves - Haste","icon":"inv_misc_enchantedscroll"}, +{"id":52750,"name":"Enchant Boots - Haste","icon":"inv_misc_enchantedscroll"}, +{"id":52751,"name":"Enchant Chest - Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":52752,"name":"Enchant Bracer - Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":52753,"name":"Enchant Cloak - Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52754,"name":"Enchant Shield - Protection","icon":"inv_misc_enchantedscroll"}, +{"id":52755,"name":"Enchant Weapon - Elemental Slayer","icon":"inv_misc_enchantedscroll"}, +{"id":52756,"name":"Enchant Gloves - Exceptional Strength","icon":"inv_misc_enchantedscroll"}, +{"id":52757,"name":"Enchant Boots - Major Agility","icon":"inv_misc_enchantedscroll"}, +{"id":52759,"name":"Enchant Gloves - Greater Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":52760,"name":"Enchant Weapon - Hurricane","icon":"inv_misc_enchantedscroll"}, +{"id":52761,"name":"Enchant Weapon - Heartsong","icon":"inv_misc_enchantedscroll"}, +{"id":52762,"name":"Enchant Shield - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52763,"name":"Enchant Bracer - Superior Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":52764,"name":"Enchant Cloak - Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":52765,"name":"Enchant Chest - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":52766,"name":"Enchant Bracer - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":52767,"name":"Enchant Cloak - Protection","icon":"inv_misc_enchantedscroll"}, +{"id":52768,"name":"Enchant Off-Hand - Superior Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52769,"name":"Enchant Boots - Precision","icon":"inv_misc_enchantedscroll"}, +{"id":52770,"name":"Enchant Bracer - Exceptional Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":52771,"name":"Enchant Boots - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52772,"name":"Enchant Bracer - Greater Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":52773,"name":"Enchant Cloak - Greater Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":52781,"name":"Enchant Boots - Assassin's Step","icon":"inv_misc_enchantedscroll"}, +{"id":52782,"name":"Enchant Boots - Lavawalker","icon":"inv_misc_enchantedscroll"}, +{"id":52783,"name":"Enchant Gloves - Mighty Strength","icon":"inv_misc_enchantedscroll"}, +{"id":52784,"name":"Enchant Gloves - Greater Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":52785,"name":"Enchant Bracer - Greater Speed","icon":"inv_misc_enchantedscroll"}, {"id":53351,"name":"Kill Shot","icon":"ability_hunter_assassinate2"}, -{"id":53375,"name":"Sanctified Wrath","icon":"ability_paladin_sanctifiedwrath"}, -{"id":53376,"name":"Sanctified Wrath","icon":"ability_paladin_sanctifiedwrath"}, -{"id":53380,"name":"Inquiry of Faith","icon":"ability_paladin_righteousvengeance"}, -{"id":53381,"name":"Inquiry of Faith","icon":"ability_paladin_righteousvengeance"}, -{"id":53382,"name":"Inquiry of Faith","icon":"ability_paladin_righteousvengeance"}, -{"id":53385,"name":"Divine Storm","icon":"ability_paladin_divinestorm"}, -{"id":53401,"name":"Rabid","icon":"ability_druid_berserk","hasBuff":true}, -{"id":53409,"name":"Lionhearted","icon":"inv_bannerpvp_02"}, -{"id":53411,"name":"Lionhearted","icon":"inv_bannerpvp_02"}, -{"id":53426,"name":"Lick Your Wounds","icon":"ability_hunter_mendpet","hasBuff":true}, -{"id":53427,"name":"Great Resistance","icon":"spell_nature_resistnature"}, -{"id":53429,"name":"Great Resistance","icon":"spell_nature_resistnature"}, -{"id":53430,"name":"Great Resistance","icon":"spell_nature_resistnature"}, -{"id":53434,"name":"Call of the Wild","icon":"ability_druid_kingofthejungle","hasBuff":true}, -{"id":53450,"name":"Grace of the Mantis","icon":"inv_misc_ahnqirajtrinket_02"}, -{"id":53451,"name":"Grace of the Mantis","icon":"inv_misc_ahnqirajtrinket_02"}, -{"id":53476,"name":"Intervene","icon":"ability_hunter_pet_turtle","hasBuff":true}, -{"id":53477,"name":"Taunt","icon":"spell_nature_reincarnation","hasBuff":true}, -{"id":53478,"name":"Last Stand","icon":"spell_nature_shamanrage"}, -{"id":53480,"name":"Roar of Sacrifice","icon":"ability_hunter_fervor","hasBuff":true}, -{"id":53481,"name":"Blood of the Rhino","icon":"spell_shadow_lifedrain"}, -{"id":53482,"name":"Blood of the Rhino","icon":"spell_shadow_lifedrain"}, -{"id":53483,"name":"Mobility","icon":"ability_hunter_animalhandler"}, -{"id":53485,"name":"Mobility","icon":"ability_hunter_animalhandler"}, -{"id":53486,"name":"The Art of War","icon":"ability_paladin_artofwar"}, -{"id":53488,"name":"The Art of War","icon":"ability_paladin_artofwar"}, -{"id":53490,"name":"Bullheaded","icon":"ability_warrior_bullrush"}, -{"id":53497,"name":"Cornered","icon":"ability_hunter_survivalinstincts"}, -{"id":53508,"name":"Wolverine Bite","icon":"ability_druid_lacerate"}, -{"id":53511,"name":"Feeding Frenzy","icon":"inv_misc_fish_48"}, -{"id":53512,"name":"Feeding Frenzy","icon":"inv_misc_fish_48"}, -{"id":53514,"name":"Owl's Focus","icon":"ability_hunter_pet_owl"}, -{"id":53516,"name":"Owl's Focus","icon":"ability_hunter_pet_owl"}, -{"id":53517,"name":"Roar of Recovery","icon":"ability_druid_mastershapeshifter","hasBuff":true}, -{"id":53551,"name":"Sacred Cleansing","icon":"ability_paladin_sacredcleansing"}, -{"id":53554,"name":"Mobility","icon":"ability_hunter_animalhandler"}, -{"id":53555,"name":"Mobility","icon":"ability_hunter_animalhandler"}, -{"id":53556,"name":"Enlightened Judgements","icon":"ability_paladin_enlightenedjudgements"}, -{"id":53557,"name":"Enlightened Judgements","icon":"ability_paladin_enlightenedjudgements"}, -{"id":53563,"name":"Beacon of Light","icon":"ability_paladin_beaconoflight","hasBuff":true}, -{"id":53569,"name":"Infusion of Light","icon":"ability_paladin_infusionoflight"}, -{"id":53576,"name":"Infusion of Light","icon":"ability_paladin_infusionoflight"}, -{"id":53592,"name":"Touched by the Light","icon":"ability_paladin_touchedbylight"}, -{"id":53595,"name":"Hammer of the Righteous","icon":"ability_paladin_hammeroftherighteous"}, -{"id":53600,"name":"Shield of the Righteous","icon":"ability_paladin_shieldofvengeance"}, -{"id":53657,"name":"Judgements of the Pure","icon":"ability_paladin_judgementofthepure","hasBuff":true}, -{"id":53671,"name":"Judgements of the Pure","icon":"ability_paladin_judgementofthepure"}, -{"id":53673,"name":"Judgements of the Pure","icon":"ability_paladin_judgementofthepure"}, -{"id":53695,"name":"Judgements of the Just","icon":"ability_paladin_judgementsofthejust"}, -{"id":53696,"name":"Judgements of the Just","icon":"ability_paladin_judgementsofthejust"}, -{"id":53709,"name":"Sacred Duty","icon":"spell_holy_divineintervention"}, -{"id":53710,"name":"Sacred Duty","icon":"inv_hammer_02"}, -{"id":53754,"name":"Improved Fear","icon":"spell_shadow_possession"}, -{"id":53759,"name":"Improved Fear","icon":"spell_shadow_possession"}, -{"id":54044,"name":"Carrion Feeder","icon":"ability_racial_cannibalize"}, -{"id":54118,"name":"Improved Soul Leech","icon":"ability_warlock_improvedsoulleech"}, -{"id":54151,"name":"Judgements of the Pure","icon":"ability_paladin_judgementofthepure"}, -{"id":54158,"name":"Judgement","icon":"spell_holy_righteousfury"}, -{"id":54277,"name":"Backdraft","icon":"ability_warlock_backdraft","hasBuff":true}, -{"id":54354,"name":"Prismatic Cloak","icon":"spell_arcane_prismaticcloak"}, +{"id":53376,"name":"Sanctified Wrath","icon":"ability_paladin_sanctifiedwrath","hasBuff":true}, +{"id":53592,"name":"Guarded by the Light","icon":"ability_paladin_touchedbylight","hasBuff":true}, {"id":54428,"name":"Divine Plea","icon":"spell_holy_aspiration","hasBuff":true}, -{"id":54446,"name":"Rune of Swordbreaking","icon":"ability_parry"}, -{"id":54447,"name":"Rune of Spellbreaking","icon":"spell_shadow_antimagicshell"}, -{"id":54486,"name":"Missile Barrage","icon":"ability_mage_missilebarrage"}, -{"id":54637,"name":"Blood of the North","icon":"inv_weapon_shortblade_79"}, -{"id":54646,"name":"Focus Magic","icon":"spell_arcane_studentofmagic","hasBuff":true}, -{"id":54648,"name":"Focus Magic","icon":"spell_arcane_studentofmagic","hasBuff":true}, -{"id":54734,"name":"Fire Power","icon":"spell_fire_immolation"}, +{"id":54447,"name":"Enchanted Spellthread","icon":"item_spellcloththread"}, +{"id":54448,"name":"Powerful Enchanted Spellthread","icon":"inv_misc_thread_eternium"}, +{"id":54449,"name":"Ghostly Spellthread","icon":"spell_nature_astralrecal"}, +{"id":54450,"name":"Powerful Ghostly Spellthread","icon":"spell_nature_astralrecalgroup"}, +{"id":54637,"name":"Blood of the North","icon":"inv_weapon_shortblade_79","hasBuff":true}, {"id":54758,"name":"Hyperspeed Acceleration","icon":"spell_shaman_elementaloath","hasBuff":true}, -{"id":54787,"name":"Shattered Barrier","icon":"ability_mage_coldasice"}, -{"id":54845,"name":"Glyph of Starfire","icon":"spell_arcane_starfire"}, -{"id":55050,"name":"Heart Strike","icon":"inv_weapon_shortblade_40"}, -{"id":55061,"name":"Icy Reach","icon":"spell_frost_manarecharge"}, -{"id":55062,"name":"Icy Reach","icon":"spell_frost_manarecharge"}, -{"id":55076,"name":"Sun Scope","icon":"trade_engineering"}, -{"id":55078,"name":"Blood Plague","icon":"spell_deathknight_bloodplague","hasBuff":true}, -{"id":55090,"name":"Scourge Strike","icon":"spell_deathknight_scourgestrike"}, -{"id":55094,"name":"Ice Floes","icon":"spell_frost_icefloes"}, +{"id":55055,"name":"Elementium Shield Spike","icon":"inv_qiraj_hiltspiked"}, +{"id":55056,"name":"Pyrium Shield Spike","icon":"inv_shield_08"}, +{"id":55057,"name":"Pyrium Weapon Chain","icon":"inv_misc_steelweaponchain"}, {"id":55095,"name":"Frost Fever","icon":"spell_deathknight_frostfever","hasBuff":true}, -{"id":55135,"name":"Heartseeker Scope","icon":"trade_engineering"}, -{"id":55233,"name":"Vampiric Blood","icon":"spell_shadow_lifedrain","hasBuff":true}, -{"id":55339,"name":"Torment the Weak","icon":"spell_arcane_focusedpower"}, -{"id":55340,"name":"Torment the Weak","icon":"spell_arcane_focusedpower"}, {"id":55342,"name":"Mirror Image","icon":"spell_magic_lesserinvisibilty","hasBuff":true}, -{"id":55610,"name":"Improved Icy Talons","icon":"spell_deathknight_icytalons","hasBuff":true}, -{"id":55630,"name":"Shining Spellthread","icon":"trade_engineering"}, -{"id":55631,"name":"Brilliant Spellthread","icon":"trade_engineering"}, -{"id":55632,"name":"Azure Spellthread","icon":"trade_engineering"}, -{"id":55634,"name":"Sapphire Spellthread","icon":"trade_engineering"}, -{"id":55642,"name":"Lightweave Embroidery","icon":"inv_misc_thread_01"}, -{"id":55666,"name":"Desecration","icon":"spell_shadow_shadowfiend"}, -{"id":55667,"name":"Desecration","icon":"spell_shadow_shadowfiend"}, -{"id":55709,"name":"Heart of the Phoenix","icon":"inv_misc_pheonixpet_01"}, +{"id":55610,"name":"Unholy Aura","icon":"inv_helmet_08","hasBuff":true}, +{"id":55694,"name":"Enraged Regeneration","icon":"ability_warrior_focusedrage","hasBuff":true}, {"id":55749,"name":"Acid Spit","icon":"spell_nature_acid_01","hasBuff":true}, -{"id":55769,"name":"Darkglow Embroidery","icon":"inv_misc_thread_01"}, -{"id":55777,"name":"Swordguard Embroidery","icon":"inv_misc_thread_01"}, -{"id":55836,"name":"Titanium Weapon Chain","icon":"inv_belt_18"}, -{"id":56034,"name":"Master's Spellthread","icon":"spell_nature_astralrecalgroup"}, -{"id":56039,"name":"Sanctified Spellthread","icon":"spell_nature_astralrecalgroup"}, -{"id":56314,"name":"Kindred Spirits","icon":"ability_hunter_separationanxiety"}, -{"id":56315,"name":"Kindred Spirits","icon":"ability_hunter_separationanxiety"}, -{"id":56333,"name":"T.N.T.","icon":"inv_misc_bomb_05"}, -{"id":56336,"name":"T.N.T.","icon":"inv_misc_bomb_05"}, -{"id":56339,"name":"Hunter vs. Wild","icon":"ability_hunter_huntervswild"}, -{"id":56340,"name":"Hunter vs. Wild","icon":"ability_hunter_huntervswild"}, -{"id":56341,"name":"Hunter vs. Wild","icon":"ability_hunter_huntervswild"}, -{"id":56342,"name":"Lock and Load","icon":"ability_hunter_lockandload"}, -{"id":56343,"name":"Lock and Load","icon":"ability_hunter_lockandload"}, -{"id":56353,"name":"Titanium Shield Spike","icon":"trade_engineering"}, -{"id":56611,"name":"Wrecking Crew","icon":"ability_warrior_trauma"}, -{"id":56612,"name":"Wrecking Crew","icon":"ability_warrior_trauma"}, -{"id":56636,"name":"Taste for Blood","icon":"ability_rogue_hungerforblood"}, -{"id":56637,"name":"Taste for Blood","icon":"ability_rogue_hungerforblood"}, -{"id":56638,"name":"Taste for Blood","icon":"ability_rogue_hungerforblood"}, -{"id":56641,"name":"Steady Shot","icon":"ability_hunter_steadyshot"}, -{"id":56815,"name":"Rune Strike","icon":"spell_deathknight_darkconviction"}, -{"id":56822,"name":"Rime","icon":"spell_frost_freezingbreath"}, -{"id":57330,"name":"Horn of Winter","icon":"inv_misc_horn_02","hasBuff":true}, +{"id":56477,"name":"Savage Armor Kit","icon":"inv_misc_armorkit_28"}, +{"id":56502,"name":"Scorched Leg Armor","icon":"inv_misc_armorkit_26"}, +{"id":56503,"name":"Twilight Leg Armor","icon":"inv_misc_armorkit_29"}, +{"id":56517,"name":"Heavy Savage Armor Kit","icon":"inv_misc_armorkit_30"}, +{"id":56550,"name":"Dragonscale Leg Armor","icon":"inv_misc_monsterscales_14"}, +{"id":56551,"name":"Charscale Leg Armor","icon":"inv_misc_monsterscales_20"}, {"id":57386,"name":"Stampede","icon":"spell_shaman_astralshift","hasBuff":true}, -{"id":57470,"name":"Renewed Hope","icon":"spell_holy_holyprotection"}, -{"id":57472,"name":"Renewed Hope","icon":"spell_holy_holyprotection"}, -{"id":57499,"name":"Warbringer","icon":"ability_warrior_warbringer"}, -{"id":57516,"name":"Enrage","icon":"spell_shadow_unholyfrenzy","hasBuff":true}, -{"id":57519,"name":"Enrage","icon":"spell_shadow_unholyfrenzy","hasBuff":true}, -{"id":57531,"name":"Arcane Potency","icon":"spell_arcane_arcanepotency","hasBuff":true}, -{"id":57669,"name":"Replenishment","icon":"spell_magic_managain","hasBuff":true}, -{"id":57683,"name":"Fur Lining - Attack Power","icon":"trade_leatherworking"}, -{"id":57690,"name":"Fur Lining - Stamina","icon":"trade_leatherworking"}, -{"id":57691,"name":"Fur Lining - Spell Power","icon":"trade_leatherworking"}, -{"id":57692,"name":"Fur Lining - Fire Resist","icon":"trade_leatherworking"}, -{"id":57694,"name":"Fur Lining - Frost Resist","icon":"trade_leatherworking"}, -{"id":57696,"name":"Fur Lining - Shadow Resist","icon":"trade_leatherworking"}, -{"id":57699,"name":"Fur Lining - Nature Resist","icon":"trade_leatherworking"}, -{"id":57701,"name":"Fur Lining - Arcane Resist","icon":"trade_leatherworking"}, {"id":57724,"name":"Sated","icon":"spell_nature_sleep","hasBuff":true}, -{"id":57755,"name":"Heroic Throw","icon":"inv_axe_66"}, -{"id":57761,"name":"Brain Freeze","icon":"ability_mage_brainfreeze","hasBuff":true}, -{"id":57810,"name":"Genesis","icon":"spell_arcane_arcane03"}, -{"id":57811,"name":"Genesis","icon":"spell_arcane_arcane03"}, -{"id":57812,"name":"Genesis","icon":"spell_arcane_arcane03"}, -{"id":57878,"name":"Natural Reaction","icon":"ability_bullrush"}, -{"id":57880,"name":"Natural Reaction","icon":"ability_bullrush"}, {"id":57933,"name":"Tricks of the Trade","icon":"ability_rogue_tricksofthetrade","hasBuff":true}, -{"id":57934,"name":"Tricks of the Trade","icon":"ability_rogue_tricksofthetrade","hasBuff":true}, -{"id":58410,"name":"Master Poisoner","icon":"ability_creature_poison_06"}, -{"id":58413,"name":"Savage Combat","icon":"ability_creature_disease_03"}, -{"id":58422,"name":"Relentless Strikes","icon":"ability_warrior_decisivestrike"}, -{"id":58423,"name":"Relentless Strikes","icon":"ability_warrior_decisivestrike"}, -{"id":58426,"name":"Overkill","icon":"ability_hunter_rapidkilling","hasBuff":true}, -{"id":58427,"name":"Overkill","icon":"ability_hunter_rapidkilling","hasBuff":true}, -{"id":59052,"name":"Freezing Fog","icon":"spell_frost_arcticwinds","hasBuff":true}, -{"id":59057,"name":"Rime","icon":"spell_frost_freezingbreath"}, -{"id":59578,"name":"The Art of War","icon":"ability_paladin_artofwar","hasBuff":true}, -{"id":59619,"name":"Enchant Weapon - Accuracy","icon":"inv_enchant_formulasuperior_01"}, -{"id":59621,"name":"Enchant Weapon - Berserking","icon":"inv_enchant_formulasuperior_01"}, -{"id":59625,"name":"Enchant Weapon - Black Magic","icon":"inv_enchant_formulasuperior_01"}, -{"id":59628,"name":"Tricks of the Trade","icon":"ability_rogue_tricksofthetrade","hasBuff":true}, -{"id":59636,"name":"Enchant Ring - Stamina","icon":"trade_engraving"}, -{"id":59672,"name":"Metamorphosis","icon":"spell_shadow_demonform"}, -{"id":59771,"name":"Inscription of Triumph","icon":"trade_engineering"}, -{"id":59773,"name":"Inscription of Dominance","icon":"trade_engineering"}, -{"id":59777,"name":"Arcanum of Triumph","icon":"ability_warrior_shieldmastery"}, -{"id":59784,"name":"Arcanum of Dominance","icon":"spell_arcane_arcaneresilience"}, -{"id":59927,"name":"Inscription of the Storm","icon":"trade_engineering"}, -{"id":59928,"name":"Inscription of the Crag","icon":"trade_engineering"}, -{"id":59929,"name":"Inscription of the Axe","icon":"trade_engineering"}, -{"id":59932,"name":"Inscription of the Pinnacle","icon":"trade_engineering"}, -{"id":59934,"name":"Greater Inscription of the Axe","icon":"trade_engineering"}, -{"id":59936,"name":"Greater Inscription of the Crag","icon":"trade_engineering"}, -{"id":59937,"name":"Greater Inscription of the Storm","icon":"trade_engineering"}, -{"id":59941,"name":"Greater Inscription of the Pinnacle","icon":"trade_engineering"}, -{"id":59944,"name":"Arcanum of the Frosty Soul","icon":"spell_frost_frozencore"}, -{"id":59945,"name":"Arcanum of Toxic Warding","icon":"trade_brewpoison"}, -{"id":59946,"name":"Arcanum of the Fleeing Shadow","icon":"ability_paladin_gaurdedbythelight"}, -{"id":59947,"name":"Arcanum of the Eclipsed Moon","icon":"ability_druid_eclipse"}, -{"id":59948,"name":"Arcanum of the Flame's Soul","icon":"spell_fire_burnout"}, -{"id":59954,"name":"Arcanum of Torment","icon":"ability_warrior_rampage"}, -{"id":59955,"name":"Arcanum of the Stalwart Protector","icon":"ability_warrior_swordandboard"}, -{"id":59960,"name":"Arcanum of Blissful Mending","icon":"ability_warrior_shieldmastery"}, -{"id":59970,"name":"Arcanum of Burning Mysteries","icon":"spell_fire_masterofelements"}, -{"id":60503,"name":"Taste for Blood","icon":"ability_rogue_hungerforblood","hasBuff":true}, -{"id":60581,"name":"Frosthide Leg Armor","icon":"trade_leatherworking"}, -{"id":60582,"name":"Icescale Leg Armor","icon":"trade_leatherworking"}, -{"id":60583,"name":"Jormungar Leg Reinforcements","icon":"trade_leatherworking"}, -{"id":60584,"name":"Nerubian Leg Reinforcements","icon":"trade_leatherworking"}, -{"id":60606,"name":"Enchant Boots - Assault","icon":"trade_engraving"}, -{"id":60609,"name":"Enchant Cloak - Speed","icon":"trade_engraving"}, -{"id":60616,"name":"Enchant Bracer - Assault","icon":"trade_engraving"}, -{"id":60621,"name":"Enchant Weapon - Greater Potency","icon":"spell_holy_greaterheal"}, -{"id":60623,"name":"Enchant Boots - Icewalker","icon":"trade_engraving"}, -{"id":60653,"name":"Enchant Shield - Greater Intellect","icon":"trade_engraving"}, -{"id":60663,"name":"Enchant Cloak - Major Agility","icon":"trade_engraving"}, -{"id":60668,"name":"Enchant Gloves - Crusher","icon":"trade_engraving"}, -{"id":60691,"name":"Enchant 2H Weapon - Massacre","icon":"inv_enchant_formulasuperior_01"}, -{"id":60692,"name":"Enchant Chest - Powerful Stats","icon":"inv_enchant_formulagood_01"}, -{"id":60707,"name":"Enchant Weapon - Superior Potency","icon":"inv_enchant_formulasuperior_01"}, -{"id":60714,"name":"Enchant Weapon - Mighty Spellpower","icon":"inv_enchant_formulasuperior_01"}, -{"id":60763,"name":"Enchant Boots - Greater Assault","icon":"inv_enchant_formulagood_01"}, -{"id":60767,"name":"Enchant Bracer - Superior Spellpower","icon":"inv_enchant_formulagood_01"}, -{"id":60970,"name":"Heroic Fury","icon":"warrior_talent_icon_deadlycalm"}, -{"id":61117,"name":"Master's Inscription of the Axe","icon":"inv_misc_mastersinscription"}, -{"id":61118,"name":"Master's Inscription of the Crag","icon":"inv_misc_mastersinscription"}, -{"id":61119,"name":"Master's Inscription of the Pinnacle","icon":"inv_misc_mastersinscription"}, -{"id":61120,"name":"Master's Inscription of the Storm","icon":"inv_misc_mastersinscription"}, -{"id":61216,"name":"Rude Interruption","icon":"ability_warrior_commandingshout"}, -{"id":61221,"name":"Rude Interruption","icon":"ability_warrior_commandingshout"}, -{"id":61271,"name":"Arcanum of the Savage Gladiator","icon":"trade_engineering"}, -{"id":61295,"name":"Riptide","icon":"spell_nature_riptide","hasBuff":true}, -{"id":61336,"name":"Survival Instincts","icon":"ability_druid_tigersroar","hasBuff":true}, -{"id":61345,"name":"Nature's Grace","icon":"spell_nature_naturesblessing"}, -{"id":61346,"name":"Nature's Grace","icon":"spell_nature_naturesblessing"}, -{"id":61391,"name":"Typhoon","icon":"spell_frost_stun","hasBuff":true}, -{"id":61468,"name":"Diamond-cut Refractor Scope","icon":"trade_engineering"}, -{"id":61680,"name":"Culling the Herd","icon":"inv_misc_monsterhorn_06"}, -{"id":61681,"name":"Culling the Herd","icon":"inv_misc_monsterhorn_06"}, -{"id":61682,"name":"Serpent Swiftness","icon":"ability_hunter_serpentswiftness"}, -{"id":61683,"name":"Serpent Swiftness","icon":"ability_hunter_serpentswiftness"}, -{"id":61684,"name":"Dash","icon":"ability_druid_dash","hasBuff":true}, -{"id":61685,"name":"Charge","icon":"ability_hunter_pet_bear","hasBuff":true}, -{"id":61686,"name":"Great Stamina","icon":"spell_nature_unyeildingstamina"}, -{"id":61687,"name":"Great Stamina","icon":"spell_nature_unyeildingstamina"}, -{"id":61688,"name":"Great Stamina","icon":"spell_nature_unyeildingstamina"}, -{"id":61689,"name":"Natural Armor","icon":"spell_nature_spiritarmor"}, -{"id":61690,"name":"Natural Armor","icon":"spell_nature_spiritarmor"}, -{"id":61882,"name":"Earthquake","icon":"spell_shaman_earthquake","hasBuff":true}, +{"id":58410,"name":"Master Poisoner","icon":"ability_creature_poison_06","hasBuff":true}, +{"id":58413,"name":"Savage Combat","icon":"ability_creature_disease_03","hasBuff":true}, +{"id":59594,"name":"Gnomish X-Ray Scope","icon":"inv_misc_scopea"}, +{"id":59595,"name":"R19 Threatfinder","icon":"inv_misc_scopec"}, +{"id":59596,"name":"Safety Catch Removal Kit","icon":"inv_misc_enggizmos_37"}, {"id":62078,"name":"Swipe","icon":"inv_misc_monsterclaw_03"}, -{"id":62158,"name":"Rune of the Stoneskin Gargoyle","icon":"inv_sword_130"}, -{"id":62201,"name":"Titanium Plating","icon":"inv_shield_19"}, -{"id":62256,"name":"Enchant Bracer - Major Stamina","icon":"inv_enchant_formulasuperior_01"}, -{"id":62384,"name":"Greater Inscription of the Gladiator","icon":"trade_engineering"}, -{"id":62447,"name":"Earthen Leg Armor","icon":"trade_leatherworking"}, -{"id":62618,"name":"Power Word: Barrier","icon":"spell_holy_powerwordbarrier"}, -{"id":62758,"name":"Wild Hunt","icon":"inv_misc_horn_04"}, -{"id":62759,"name":"Shark Attack","icon":"inv_misc_fish_35"}, -{"id":62760,"name":"Shark Attack","icon":"inv_misc_fish_35"}, -{"id":62762,"name":"Wild Hunt","icon":"inv_misc_horn_04"}, -{"id":62764,"name":"Silverback","icon":"ability_hunter_pet_gorilla"}, -{"id":62765,"name":"Silverback","icon":"ability_hunter_pet_gorilla"}, -{"id":62905,"name":"Improved Death Strike","icon":"spell_deathknight_butcher2"}, -{"id":62908,"name":"Improved Death Strike","icon":"spell_deathknight_butcher2"}, -{"id":62948,"name":"Enchant Staff - Greater Spellpower","icon":"inv_enchant_formulasuperior_01"}, -{"id":63108,"name":"Siphon Life","icon":"spell_shadow_requiem"}, -{"id":63156,"name":"Decimation","icon":"spell_fire_fireball02"}, -{"id":63158,"name":"Decimation","icon":"spell_fire_fireball02"}, -{"id":63167,"name":"Decimation","icon":"spell_fire_fireball02","hasBuff":true}, -{"id":63373,"name":"Frozen Power","icon":"spell_fire_bluecano"}, -{"id":63374,"name":"Frozen Power","icon":"spell_fire_bluecano"}, -{"id":63457,"name":"Trap Mastery","icon":"ability_ensnare"}, -{"id":63458,"name":"Trap Mastery","icon":"ability_ensnare"}, -{"id":63534,"name":"Divine Touch","icon":"ability_paladin_infusionoflight"}, -{"id":63542,"name":"Divine Touch","icon":"ability_paladin_infusionoflight"}, -{"id":63560,"name":"Dark Transformation","icon":"achievement_boss_festergutrotface","hasBuff":true}, -{"id":63574,"name":"Soul Warding","icon":"ability_priest_soulwarding"}, -{"id":63625,"name":"Improved Devouring Plague","icon":"spell_shadow_devouringplague"}, -{"id":63626,"name":"Improved Devouring Plague","icon":"spell_shadow_devouringplague"}, -{"id":63646,"name":"Divinity","icon":"spell_holy_blindingheal"}, -{"id":63647,"name":"Divinity","icon":"spell_holy_blindingheal"}, -{"id":63648,"name":"Divinity","icon":"spell_holy_blindingheal"}, -{"id":63730,"name":"Serendipity","icon":"spell_holy_serendipity"}, -{"id":63733,"name":"Serendipity","icon":"spell_holy_serendipity"}, -{"id":63900,"name":"Thunderstomp","icon":"ability_golemthunderclap"}, -{"id":64044,"name":"Psychic Horror","icon":"spell_shadow_psychichorrors","hasBuff":true}, -{"id":64127,"name":"Body and Soul","icon":"spell_holy_symbolofhope"}, -{"id":64129,"name":"Body and Soul","icon":"spell_holy_symbolofhope"}, -{"id":64343,"name":"Impact","icon":"spell_fire_meteorstorm","hasBuff":true}, +{"id":62321,"name":"Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, +{"id":62333,"name":"Greater Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01"}, +{"id":62342,"name":"Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, +{"id":62343,"name":"Greater Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02"}, +{"id":62344,"name":"Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, +{"id":62345,"name":"Greater Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02"}, +{"id":62346,"name":"Greater Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":62347,"name":"Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":63374,"name":"Frozen Power","icon":"spell_fire_bluecano","hasBuff":true}, +{"id":64129,"name":"Body and Soul","icon":"spell_holy_symbolofhope","hasBuff":true}, {"id":64382,"name":"Shattering Throw","icon":"ability_warrior_shatteringthrow","hasBuff":true}, -{"id":64579,"name":"Enchant Weapon - Blood Draining","icon":"inv_misc_note_01"}, -{"id":64701,"name":"Elemental Mastery","icon":"spell_nature_wispheal","hasBuff":true}, -{"id":64976,"name":"Juggernaut","icon":"ability_warrior_bullrush"}, -{"id":65156,"name":"Juggernaut","icon":"ability_warrior_bullrush","hasBuff":true}, -{"id":65661,"name":"Threat of Thassarian","icon":"ability_dualwieldspecialization"}, {"id":65855,"name":"Insect Swarm","icon":"spell_nature_insectswarm","hasBuff":true}, -{"id":66191,"name":"Threat of Thassarian","icon":"ability_dualwieldspecialization"}, -{"id":66192,"name":"Threat of Thassarian","icon":"ability_dualwieldspecialization"}, -{"id":66235,"name":"Ardent Defender","icon":"spell_holy_holybolt"}, -{"id":70164,"name":"Rune of the Nerubian Carapace","icon":"inv_sword_61"}, -{"id":70940,"name":"Divine Guardian","icon":"spell_holy_powerwordbarrier","hasBuff":true}, -{"id":71165,"name":"Molten Core","icon":"ability_warlock_moltencore","hasBuff":true}, -{"id":71521,"name":"Hand of Gul'dan","icon":"inv_summerfest_firespirit"}, -{"id":73494,"name":"Jasper Ring","icon":"inv_misc_stonering1"}, -{"id":73495,"name":"Hessonite Band","icon":"inv_misc_diamondring2"}, -{"id":73496,"name":"Alicite Pendant","icon":"inv_misc_necklacea3"}, -{"id":73497,"name":"Nightstone Choker","icon":"inv_misc_stonenecklace"}, -{"id":73498,"name":"Band of Blades","icon":"inv_jewelry_ring_84"}, -{"id":73502,"name":"Ring of Warring Elements","icon":"inv_jewelry_ring_86"}, -{"id":73503,"name":"Elementium Moebius Band","icon":"inv_jewelry_ring_69"}, -{"id":73504,"name":"Entwined Elementium Choker","icon":"inv_misc_thornnecklace"}, -{"id":73505,"name":"Eye of Many Deaths","icon":"inv_jewelry_necklace_45"}, -{"id":73506,"name":"Elementium Guardian","icon":"inv_jewelry_necklace_32"}, +{"id":68134,"name":"Enchant 2H Weapon - Mighty Agility","icon":"inv_misc_enchantedscroll"}, +{"id":68772,"name":"Greater Inscription of Vicious Intellect","icon":"inv_misc_gem_bloodstone_02"}, +{"id":68773,"name":"Greater Inscription of Vicious Strength","icon":"inv_misc_gem_emeraldrough_02"}, +{"id":68774,"name":"Greater Inscription of Vicious Agility","icon":"inv_misc_gem_goldendraenite_01"}, +{"id":68784,"name":"Enchant Bracer - Agility","icon":"inv_misc_enchantedscroll"}, +{"id":68785,"name":"Enchant Bracer - Major Strength","icon":"inv_misc_enchantedscroll"}, +{"id":68786,"name":"Enchant Bracer - Mighty Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":68796,"name":"Reinforced Fishing Line","icon":"inv_fabric_mageweave_02"}, +{"id":70139,"name":"Flintlocke's Woodchucker","icon":"inv_misc_scopeb"}, +{"id":71720,"name":"Drakehide Leg Armor","icon":"inv_misc_cataclysmarmorkit_08"}, {"id":73510,"name":"Mind Spike","icon":"spell_priest_mindspike"}, -{"id":73520,"name":"Elementium Destroyer's Ring","icon":"inv_jewelry_ring_70"}, -{"id":73521,"name":"Brazen Elementium Medallion","icon":"inv_jewelry_necklace_50"}, -{"id":73620,"name":"Carnelian Spikes","icon":"inv_hand_1h_cataclysm_b_02-"}, -{"id":73621,"name":"The Perforator","icon":"inv_hand_1h_cataclysm_b_01"}, -{"id":73651,"name":"Recuperate","icon":"ability_rogue_recuperate","hasBuff":true}, -{"id":73680,"name":"Unleash Elements","icon":"spell_shaman_improvedstormstrike"}, -{"id":73681,"name":"Unleash Wind","icon":"spell_shaman_unleashweapon_wind","hasBuff":true}, -{"id":73682,"name":"Unleash Frost","icon":"spell_shaman_unleashweapon_frost","hasBuff":true}, -{"id":73683,"name":"Unleash Flame","icon":"spell_shaman_unleashweapon_flame","hasBuff":true}, -{"id":73685,"name":"Unleash Life","icon":"spell_shaman_unleashweapon_life","hasBuff":true}, -{"id":74132,"name":"Enchant Gloves - Mastery","icon":"trade_engraving"}, -{"id":74189,"name":"Enchant Boots - Earthen Vitality","icon":"trade_engraving"}, -{"id":74191,"name":"Enchant Chest - Mighty Stats","icon":"trade_engraving"}, -{"id":74192,"name":"Enchant Cloak - Greater Spell Piercing","icon":"trade_engraving"}, -{"id":74193,"name":"Enchant Bracer - Speed","icon":"trade_engraving"}, -{"id":74195,"name":"Enchant Weapon - Mending","icon":"trade_engraving"}, -{"id":74197,"name":"Enchant Weapon - Avalanche","icon":"trade_engraving"}, -{"id":74198,"name":"Enchant Gloves - Haste","icon":"trade_engraving"}, -{"id":74199,"name":"Enchant Boots - Haste","icon":"trade_engraving"}, -{"id":74200,"name":"Enchant Chest - Stamina","icon":"trade_engraving"}, -{"id":74201,"name":"Enchant Bracer - Critical Strike","icon":"trade_engraving"}, -{"id":74202,"name":"Enchant Cloak - Intellect","icon":"trade_engraving"}, -{"id":74207,"name":"Enchant Shield - Protection","icon":"trade_engraving"}, -{"id":74211,"name":"Enchant Weapon - Elemental Slayer","icon":"trade_engraving"}, -{"id":74212,"name":"Enchant Gloves - Exceptional Strength","icon":"trade_engraving"}, -{"id":74213,"name":"Enchant Boots - Major Agility","icon":"trade_engraving"}, -{"id":74214,"name":"Enchant Chest - Mighty Resilience","icon":"trade_engraving"}, -{"id":74215,"name":"Enchant Ring - Strength","icon":"trade_engraving"}, -{"id":74216,"name":"Enchant Ring - Agility","icon":"trade_engraving"}, -{"id":74217,"name":"Enchant Ring - Intellect","icon":"trade_engraving"}, -{"id":74218,"name":"Enchant Ring - Greater Stamina","icon":"trade_engraving"}, -{"id":74220,"name":"Enchant Gloves - Greater Expertise","icon":"trade_engraving"}, -{"id":74223,"name":"Enchant Weapon - Hurricane","icon":"trade_engraving"}, -{"id":74225,"name":"Enchant Weapon - Heartsong","icon":"trade_engraving"}, -{"id":74226,"name":"Enchant Shield - Mastery","icon":"trade_engraving"}, -{"id":74229,"name":"Enchant Bracer - Superior Dodge","icon":"trade_engraving"}, -{"id":74230,"name":"Enchant Cloak - Critical Strike","icon":"trade_engraving"}, -{"id":74231,"name":"Enchant Chest - Exceptional Spirit","icon":"trade_engraving"}, -{"id":74232,"name":"Enchant Bracer - Precision","icon":"trade_engraving"}, -{"id":74234,"name":"Enchant Cloak - Protection","icon":"trade_engraving"}, -{"id":74235,"name":"Enchant Off-Hand - Superior Intellect","icon":"trade_engraving"}, -{"id":74236,"name":"Enchant Boots - Precision","icon":"trade_engraving"}, -{"id":74237,"name":"Enchant Bracer - Exceptional Spirit","icon":"trade_engraving"}, -{"id":74238,"name":"Enchant Boots - Mastery","icon":"trade_engraving"}, -{"id":74239,"name":"Enchant Bracer - Greater Expertise","icon":"trade_engraving"}, -{"id":74240,"name":"Enchant Cloak - Greater Intellect","icon":"trade_engraving"}, -{"id":74242,"name":"Enchant Weapon - Power Torrent","icon":"inv_enchant_formulasuperior_01"}, -{"id":74244,"name":"Enchant Weapon - Windwalk","icon":"inv_enchant_formulasuperior_01"}, -{"id":74246,"name":"Enchant Weapon - Landslide","icon":"inv_enchant_formulasuperior_01"}, -{"id":74247,"name":"Enchant Cloak - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, -{"id":74248,"name":"Enchant Bracer - Greater Critical Strike","icon":"inv_enchant_formulagood_01"}, -{"id":74250,"name":"Enchant Chest - Peerless Stats","icon":"inv_enchant_formulagood_01"}, -{"id":74251,"name":"Enchant Chest - Greater Stamina","icon":"inv_enchant_formulagood_01"}, -{"id":74252,"name":"Enchant Boots - Assassin's Step","icon":"inv_enchant_formulagood_01"}, -{"id":74253,"name":"Enchant Boots - Lavawalker","icon":"inv_enchant_formulagood_01"}, -{"id":74254,"name":"Enchant Gloves - Mighty Strength","icon":"inv_enchant_formulagood_01"}, -{"id":74255,"name":"Enchant Gloves - Greater Mastery","icon":"inv_enchant_formulagood_01"}, -{"id":74256,"name":"Enchant Bracer - Greater Speed","icon":"inv_enchant_formulagood_01"}, +{"id":74001,"name":"Combat Readiness","icon":"ability_rogue_combatreadiness","hasBuff":true}, {"id":74434,"name":"Soulburn","icon":"spell_warlock_soulburn","hasBuff":true}, -{"id":75149,"name":"Ghostly Spellthread","icon":"trade_engineering"}, -{"id":75150,"name":"Powerful Ghostly Spellthread","icon":"trade_engineering"}, -{"id":75151,"name":"Enchanted Spellthread","icon":"trade_engineering"}, -{"id":75152,"name":"Powerful Enchanted Spellthread","icon":"trade_engineering"}, -{"id":75154,"name":"Master's Spellthread","icon":"spell_nature_astralrecalgroup"}, -{"id":75155,"name":"Sanctified Spellthread","icon":"spell_nature_astralrecalgroup"}, -{"id":75172,"name":"Lightweave Embroidery","icon":"inv_misc_thread_01"}, -{"id":75175,"name":"Darkglow Embroidery","icon":"inv_misc_thread_01"}, -{"id":75178,"name":"Swordguard Embroidery","icon":"inv_misc_thread_01"}, -{"id":75248,"name":"Deathsilk Belt","icon":"inv_belt_cloth_cataclysm_b_01"}, -{"id":75249,"name":"Deathsilk Bracers","icon":"inv_bracer_cloth_cataclysm_b_01"}, -{"id":75251,"name":"Deathsilk Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01"}, -{"id":75252,"name":"Deathsilk Boots","icon":"inv_boots_cloth_cataclysm_b_01"}, -{"id":75253,"name":"Deathsilk Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01"}, -{"id":75254,"name":"Deathsilk Leggings","icon":"inv_pants_cloth_cataclysm_b_01"}, -{"id":75256,"name":"Deathsilk Cowl","icon":"inv_helmet_cloth_cataclysm_b_01"}, -{"id":75257,"name":"Deathsilk Robe","icon":"inv_chest_cloth_cataclysm_b_01"}, -{"id":75258,"name":"Spiritmend Belt","icon":"inv_belt_cloth_cataclysm_b_01"}, -{"id":75259,"name":"Spiritmend Bracers","icon":"inv_bracer_cloth_cataclysm_b_01"}, -{"id":75260,"name":"Spiritmend Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01"}, -{"id":75261,"name":"Spiritmend Boots","icon":"inv_boots_cloth_cataclysm_b_01"}, -{"id":75262,"name":"Spiritmend Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01"}, -{"id":75263,"name":"Spiritmend Leggings","icon":"inv_pants_cloth_cataclysm_b_01"}, -{"id":75266,"name":"Spiritmend Cowl","icon":"inv_helmet_cloth_cataclysm_b_01"}, -{"id":75267,"name":"Spiritmend Robe","icon":"inv_chest_cloth_cataclysm_b_01"}, -{"id":75269,"name":"Vicious Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04"}, -{"id":75270,"name":"Vicious Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04"}, -{"id":75290,"name":"Vicious Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04"}, -{"id":75291,"name":"Vicious Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04"}, -{"id":75292,"name":"Vicious Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04"}, -{"id":75293,"name":"Vicious Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04"}, -{"id":75294,"name":"Vicious Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04"}, -{"id":75295,"name":"Vicious Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04"}, -{"id":75296,"name":"Vicious Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04"}, -{"id":75297,"name":"Vicious Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04"}, -{"id":75298,"name":"Belt of the Depths","icon":"inv_belt_cloth_raidpriest_i_01"}, -{"id":75299,"name":"Dreamless Belt","icon":"inv_belt_robe_raidmage_i_01"}, -{"id":75300,"name":"Breeches of Mended Nightmares","icon":"inv_pant_cloth_raidpriest_i_01"}, -{"id":75301,"name":"Flame-Ascended Pantaloons","icon":"inv_pants_robe_raidmage_i_01"}, -{"id":75302,"name":"Vicious Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04"}, -{"id":75303,"name":"Vicious Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04"}, -{"id":75304,"name":"Vicious Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04"}, -{"id":75305,"name":"Vicious Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04"}, -{"id":75306,"name":"Vicious Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04"}, -{"id":75307,"name":"Vicious Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04"}, -{"id":75806,"name":"Grand Crusader","icon":"inv_helmet_74"}, -{"id":76179,"name":"Hardened Obsidium Bracers","icon":"inv_bracer_plate_cataclysm_b_02"}, -{"id":76180,"name":"Hardened Obsidium Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02"}, -{"id":76181,"name":"Hardened Obsidium Belt","icon":"inv_belt_plate_cataclysm_b_02"}, -{"id":76182,"name":"Hardened Obsidium Boots","icon":"inv_boots_plate_cataclysm_b_02"}, -{"id":76258,"name":"Hardened Obsidium Shoulders","icon":"inv_shoulder_plate_cataclysm_b_02"}, -{"id":76259,"name":"Hardened Obsidium Legguards","icon":"inv_pants_plate_cataclysm_b_02"}, -{"id":76260,"name":"Hardened Obsidium Helm","icon":"inv_helmet_plate_cataclysm_b_02"}, -{"id":76261,"name":"Hardened Obsidium Breastplate","icon":"inv_chest_plate_cataclysm_b_02"}, -{"id":76262,"name":"Redsteel Bracers","icon":"inv_bracer_63v1"}, -{"id":76263,"name":"Redsteel Gauntlets","icon":"inv_gauntlets_107v1"}, -{"id":76264,"name":"Redsteel Belt","icon":"inv_belt_86v1"}, -{"id":76265,"name":"Redsteel Boots","icon":"inv_boots_plate_19v1"}, -{"id":76266,"name":"Redsteel Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03"}, -{"id":76267,"name":"Redsteel Legguards","icon":"inv_pants_plate_38v1"}, -{"id":76269,"name":"Redsteel Helm","icon":"inv_helmet_178v1"}, -{"id":76270,"name":"Redsteel Breastplate","icon":"inv_chest_plate27v1"}, -{"id":76280,"name":"Stormforged Bracers","icon":"inv_bracer_79"}, -{"id":76281,"name":"Stormforged Gauntlets","icon":"inv_gauntlets_122"}, -{"id":76283,"name":"Stormforged Belt","icon":"inv_belt_100"}, -{"id":76285,"name":"Stormforged Boots","icon":"inv_boots_plate_23"}, -{"id":76286,"name":"Stormforged Shoulders","icon":"inv_shoulder_149"}, -{"id":76287,"name":"Stormforged Legguards","icon":"inv_pants_plate_26"}, -{"id":76288,"name":"Stormforged Helm","icon":"inv_helmet_189"}, -{"id":76289,"name":"Stormforged Breastplate","icon":"inv_chest_plate_31"}, -{"id":76291,"name":"Hardened Obsidium Shield","icon":"inv_shield_cataclysm_b_01"}, -{"id":76293,"name":"Stormforged Shield","icon":"inv_shield_cataclysm_b_02"}, -{"id":76433,"name":"Decapitator's Razor","icon":"inv_axe_1h_cataclysm_b_01"}, -{"id":76434,"name":"Cold-Forged Shank","icon":"inv_knife_1h_cataclysm_b_02"}, -{"id":76435,"name":"Fire-Etched Dagger","icon":"inv_knife_1h_cataclysm_b_01"}, -{"id":76436,"name":"Lifeforce Hammer","icon":"inv_hammer_29"}, -{"id":76437,"name":"Obsidium Executioner","icon":"inv_sword_2h_cataclysm_b_01"}, -{"id":76443,"name":"Hardened Elementium Hauberk","icon":"inv_chest_plate_raidwarrior_i_01"}, -{"id":76444,"name":"Hardened Elementium Girdle","icon":"inv_belt_plate_raidwarrior_i_01"}, -{"id":76445,"name":"Elementium Deathplate","icon":"inv_chest_plate_raidwarrior_i_01"}, -{"id":76446,"name":"Elementium Girdle of Pain","icon":"inv_belt_plate_raidwarrior_i_01"}, -{"id":76447,"name":"Light Elementium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01"}, -{"id":76448,"name":"Light Elementium Belt","icon":"inv_belt_plate_raidpaladin_i_01"}, -{"id":76449,"name":"Elementium Spellblade","icon":"inv_knife_1h_grimbatolraid_d_03"}, -{"id":76450,"name":"Elementium Hammer","icon":"inv_mace_1h_cataclysm_c_03"}, -{"id":76451,"name":"Elementium Poleaxe","icon":"inv_polearm_2h_cataclysm_b_02"}, -{"id":76452,"name":"Elementium Bonesplitter","icon":"inv_mace_10"}, -{"id":76453,"name":"Elementium Shank","icon":"inv_knife_1h_grimbatolraid_d_01"}, -{"id":76454,"name":"Elementium Earthguard","icon":"inv_shield_grimbatolraid_d_02"}, -{"id":76455,"name":"Elementium Stormshield","icon":"inv_shield_bwdraid_d_02"}, -{"id":76456,"name":"Vicious Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04"}, -{"id":76457,"name":"Vicious Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04"}, -{"id":76458,"name":"Vicious Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04"}, -{"id":76459,"name":"Vicious Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04"}, -{"id":76461,"name":"Vicious Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04"}, -{"id":76462,"name":"Vicious Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04"}, -{"id":76463,"name":"Vicious Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04"}, -{"id":76464,"name":"Vicious Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04"}, -{"id":76465,"name":"Vicious Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04"}, -{"id":76466,"name":"Vicious Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04"}, -{"id":76467,"name":"Vicious Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04"}, -{"id":76468,"name":"Vicious Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04"}, -{"id":76469,"name":"Vicious Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04"}, -{"id":76470,"name":"Vicious Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04"}, -{"id":76471,"name":"Vicious Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04"}, -{"id":76472,"name":"Vicious Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04"}, -{"id":76474,"name":"Obsidium Bladespear","icon":"inv_polearm_2h_cataclysm_c_01"}, -{"id":76595,"name":"Flashburn","icon":"spell_fire_selfdestruct"}, -{"id":76659,"name":"Wild Quiver","icon":"ability_hunter_wildquiver"}, -{"id":76672,"name":"Hand of Light","icon":"ability_paladin_blessedhands"}, -{"id":76808,"name":"Executioner","icon":"inv_axe_06"}, -{"id":76857,"name":"Critical Block","icon":"ability_warrior_criticalblock"}, +{"id":74700,"name":"Enchant Bracer - Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":74701,"name":"Enchant Bracer - Major Dodge","icon":"inv_misc_enchantedscroll"}, +{"id":74703,"name":"Enchant Bracer - Super Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":74704,"name":"Enchant Bracer - Exceptional Strength","icon":"inv_misc_enchantedscroll"}, +{"id":74705,"name":"Enchant Bracer - Greater Agility","icon":"inv_misc_enchantedscroll"}, +{"id":74706,"name":"Enchant Chest - Super Resilience","icon":"inv_misc_enchantedscroll"}, +{"id":74707,"name":"Enchant Chest - Mighty Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":74708,"name":"Enchant Chest - Glorious Stats","icon":"inv_misc_enchantedscroll"}, +{"id":74709,"name":"Enchant Chest - Superior Stamina","icon":"inv_misc_enchantedscroll"}, +{"id":74710,"name":"Enchant Cloak - Accuracy","icon":"inv_misc_enchantedscroll"}, +{"id":74711,"name":"Enchant Cloak - Greater Protection","icon":"inv_misc_enchantedscroll"}, +{"id":74712,"name":"Enchant Cloak - Superior Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":74713,"name":"Enchant Cloak - Superior Critical Strike","icon":"inv_misc_enchantedscroll"}, +{"id":74715,"name":"Enchant Boots - Greater Haste","icon":"inv_misc_enchantedscroll"}, +{"id":74716,"name":"Enchant Boots - Greater Precision","icon":"inv_misc_enchantedscroll"}, +{"id":74717,"name":"Enchant Boots - Blurred Speed","icon":"inv_misc_enchantedscroll"}, +{"id":74718,"name":"Enchant Boots - Pandaren's Step","icon":"inv_misc_enchantedscroll"}, +{"id":74719,"name":"Enchant Gloves - Greater Haste","icon":"inv_misc_enchantedscroll"}, +{"id":74720,"name":"Enchant Gloves - Superior Expertise","icon":"inv_misc_enchantedscroll"}, +{"id":74721,"name":"Enchant Gloves - Super Strength","icon":"inv_misc_enchantedscroll"}, +{"id":74722,"name":"Enchant Gloves - Superior Mastery","icon":"inv_misc_enchantedscroll"}, +{"id":74723,"name":"Enchant Weapon - Windsong","icon":"inv_misc_enchantedscroll"}, +{"id":74724,"name":"Enchant Weapon - Jade Spirit","icon":"inv_misc_enchantedscroll"}, +{"id":74725,"name":"Enchant Weapon - Elemental Force","icon":"inv_misc_enchantedscroll"}, +{"id":74726,"name":"Enchant Weapon - Dancing Steel","icon":"inv_misc_enchantedscroll"}, +{"id":74727,"name":"Enchant Weapon - Colossus","icon":"inv_misc_enchantedscroll"}, +{"id":74728,"name":"Enchant Weapon - River's Song","icon":"inv_misc_enchantedscroll"}, +{"id":74729,"name":"Enchant Off-Hand - Major Intellect","icon":"inv_misc_enchantedscroll"}, +{"id":76659,"name":"Mastery: Wild Quiver","icon":"ability_hunter_wildquiver","hasBuff":true}, +{"id":76672,"name":"Mastery: Hand of Light","icon":"ability_paladin_blessedhands","hasBuff":true}, +{"id":76808,"name":"Mastery: Executioner","icon":"inv_axe_06","hasBuff":true}, +{"id":76857,"name":"Mastery: Critical Block","icon":"ability_warrior_criticalblock","hasBuff":true}, {"id":76858,"name":"Opportunity Strike","icon":"ability_backstab"}, -{"id":77130,"name":"Improved Cleanse Spirit","icon":"ability_shaman_cleansespirit"}, -{"id":77223,"name":"Enhanced Elements","icon":"spell_nature_elementalprecision_2"}, -{"id":77478,"name":"Earthquake","icon":"spell_shaman_earthquake"}, +{"id":77223,"name":"Mastery: Enhanced Elements","icon":"spell_nature_elementalprecision_2","hasBuff":true}, {"id":77487,"name":"Shadow Orb","icon":"spell_priest_shadoworbs","hasBuff":true}, -{"id":77513,"name":"Blood Shield","icon":"spell_deathknight_deathstrike"}, -{"id":77514,"name":"Frozen Heart","icon":"inv_misc_gem_sapphire_01"}, -{"id":77515,"name":"Dreadblade","icon":"achievement_zone_westernplaguelands_01"}, +{"id":77513,"name":"Mastery: Blood Shield","icon":"spell_deathknight_deathstrike","hasBuff":true}, +{"id":77514,"name":"Mastery: Frozen Heart","icon":"inv_misc_gem_sapphire_01","hasBuff":true}, +{"id":77515,"name":"Mastery: Dreadblade","icon":"achievement_zone_westernplaguelands_01","hasBuff":true}, +{"id":77529,"name":"Lord Blastington's Scope of Doom","icon":"inv_misc_scopeb"}, +{"id":77531,"name":"Mirror Scope","icon":"inv_misc_scopea"}, {"id":77535,"name":"Blood Shield","icon":"spell_deathknight_butcher2","hasBuff":true}, -{"id":77536,"name":"Focused Strikes","icon":"spell_shaman_focusedstrikes"}, -{"id":77537,"name":"Focused Strikes","icon":"spell_shaman_focusedstrikes"}, -{"id":77538,"name":"Focused Strikes","icon":"spell_shaman_focusedstrikes"}, -{"id":77575,"name":"Outbreak","icon":"spell_deathvortex"}, -{"id":77655,"name":"Searing Flames","icon":"spell_fire_searingtotem"}, -{"id":77656,"name":"Searing Flames","icon":"spell_fire_searingtotem"}, -{"id":77657,"name":"Searing Flames","icon":"spell_fire_searingtotem"}, -{"id":77700,"name":"Improved Lava Lash","icon":"spell_shaman_improvelavalash"}, -{"id":77701,"name":"Improved Lava Lash","icon":"spell_shaman_improvelavalash"}, -{"id":77746,"name":"Totemic Wrath","icon":"spell_fire_totemofwrath"}, -{"id":77755,"name":"Lava Surge","icon":"spell_shaman_lavasurge"}, -{"id":77756,"name":"Lava Surge","icon":"spell_shaman_lavasurge"}, -{"id":77758,"name":"Thrash","icon":"spell_druid_thrash","hasBuff":true}, -{"id":77767,"name":"Cobra Shot","icon":"ability_hunter_cobrashot"}, -{"id":77769,"name":"Trap Launcher","icon":"ability_hunter_traplauncher","hasBuff":true}, -{"id":77794,"name":"Focused Insight","icon":"spell_shaman_measuredinsight"}, -{"id":77795,"name":"Focused Insight","icon":"spell_shaman_measuredinsight"}, -{"id":77796,"name":"Focused Insight","icon":"spell_shaman_measuredinsight"}, -{"id":77799,"name":"Fel Flame","icon":"spell_fire_felfirenova"}, -{"id":77801,"name":"Demon Soul","icon":"spell_warlock_demonsoul"}, -{"id":77829,"name":"Ancestral Resolve","icon":"spell_nature_rune"}, -{"id":77830,"name":"Ancestral Resolve","icon":"spell_nature_rune"}, -{"id":78146,"name":"Lava Lash","icon":"ability_shaman_lavalash"}, -{"id":78165,"name":"Savage Armor Kit","icon":"trade_leatherworking"}, -{"id":78166,"name":"Heavy Savage Armor Kit","icon":"trade_leatherworking"}, -{"id":78169,"name":"Scorched Leg Armor","icon":"trade_leatherworking"}, -{"id":78170,"name":"Twilight Leg Armor","icon":"trade_leatherworking"}, -{"id":78171,"name":"Dragonscale Leg Armor","icon":"trade_leatherworking"}, -{"id":78172,"name":"Charscale Leg Armor","icon":"trade_leatherworking"}, -{"id":78202,"name":"Shadowy Apparition","icon":"ability_priest_shadowyapparition"}, -{"id":78203,"name":"Shadowy Apparition","icon":"ability_priest_shadowyapparition"}, -{"id":78204,"name":"Shadowy Apparition","icon":"ability_priest_shadowyapparition"}, -{"id":78228,"name":"Harnessed Shadows","icon":"inv_misc_orb_04"}, -{"id":78380,"name":"Savage Cloak","icon":"inv_misc_cape_07"}, -{"id":78388,"name":"Tsunami Bracers","icon":"inv_bracer_leather_cataclysm_b_01"}, -{"id":78396,"name":"Tsunami Belt","icon":"inv_belt_leather_cataclysm_b_01"}, -{"id":78398,"name":"Darkbrand Bracers","icon":"inv_bracer_leather_cataclysm_b_01"}, -{"id":78399,"name":"Darkbrand Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01"}, -{"id":78405,"name":"Hardened Scale Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01"}, -{"id":78406,"name":"Tsunami Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01"}, -{"id":78407,"name":"Darkbrand Boots","icon":"inv_boots_leather_cataclysm_b_01"}, -{"id":78410,"name":"Tsunami Boots","icon":"inv_boots_leather_cataclysm_b_01"}, -{"id":78411,"name":"Darkbrand Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01"}, -{"id":78415,"name":"Tsunami Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01"}, -{"id":78416,"name":"Darkbrand Belt","icon":"inv_belt_leather_cataclysm_b_01"}, -{"id":78423,"name":"Tsunami Chestguard","icon":"inv_chest_leather_cataclysm_b_01"}, -{"id":78424,"name":"Darkbrand Helm","icon":"inv_helmet_leather_cataclysm_b_01"}, -{"id":78427,"name":"Tsunami Leggings","icon":"inv_pants_leather_cataclysm_b_01"}, -{"id":78428,"name":"Darkbrand Chestguard","icon":"inv_chest_leather_cataclysm_b_01"}, -{"id":78432,"name":"Tsunami Helm","icon":"inv_helmet_leather_cataclysm_b_01"}, -{"id":78433,"name":"Darkbrand Leggings","icon":"inv_pants_leather_cataclysm_b_01"}, -{"id":78438,"name":"Cloak of Beasts","icon":"inv_misc_cape_cataclysm_melee_c_01"}, -{"id":78439,"name":"Cloak of War","icon":"inv_misc_cape_cataclysm_tank_c_01"}, -{"id":78444,"name":"Vicious Wyrmhide Bracers","icon":"inv_bracer_83"}, -{"id":78445,"name":"Vicious Wyrmhide Belt","icon":"inv_belt_104"}, -{"id":78446,"name":"Vicious Leather Bracers","icon":"inv_bracer_83"}, -{"id":78447,"name":"Vicious Leather Gloves","icon":"inv_gauntlets_126"}, -{"id":78448,"name":"Vicious Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04"}, -{"id":78449,"name":"Vicious Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04"}, -{"id":78450,"name":"Vicious Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04"}, -{"id":78451,"name":"Vicious Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04"}, -{"id":78452,"name":"Vicious Wyrmhide Gloves","icon":"inv_gauntlets_126"}, -{"id":78453,"name":"Vicious Wyrmhide Boots","icon":"inv_boots_leather_16"}, -{"id":78454,"name":"Vicious Leather Boots","icon":"inv_boots_leather_16"}, -{"id":78455,"name":"Vicious Leather Shoulders","icon":"inv_shoulder_153"}, -{"id":78456,"name":"Vicious Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04"}, -{"id":78457,"name":"Vicious Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04"}, -{"id":78458,"name":"Vicious Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04"}, -{"id":78459,"name":"Vicious Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04"}, -{"id":78460,"name":"Lightning Lash","icon":"inv_belt_leather_raiddruid_i_01"}, -{"id":78461,"name":"Belt of Nefarious Whispers","icon":"inv_belt_leatherraidrogue_i_01"}, -{"id":78462,"name":"Stormleather Sash","icon":"inv_belt_mail_raidshaman_i_01"}, -{"id":78463,"name":"Corded Viper Belt","icon":"inv_belt_mail_raidhunter_i_01"}, -{"id":78464,"name":"Vicious Wyrmhide Shoulders","icon":"inv_shoulder_153"}, -{"id":78467,"name":"Vicious Wyrmhide Chest","icon":"inv_chest_leather_32"}, -{"id":78468,"name":"Vicious Leather Belt","icon":"inv_belt_104"}, -{"id":78469,"name":"Vicious Leather Helm","icon":"inv_helmet_193"}, -{"id":78470,"name":"Vicious Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04"}, -{"id":78471,"name":"Vicious Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04"}, -{"id":78473,"name":"Vicious Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04"}, -{"id":78474,"name":"Vicious Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04"}, -{"id":78475,"name":"Razor-Edged Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01"}, -{"id":78476,"name":"Twilight Dragonscale Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01"}, -{"id":78479,"name":"Vicious Wyrmhide Legs","icon":"inv_pants_leather_44"}, -{"id":78480,"name":"Vicious Wyrmhide Helm","icon":"inv_helmet_193"}, -{"id":78481,"name":"Vicious Leather Chest","icon":"inv_chest_leather_32"}, -{"id":78482,"name":"Vicious Leather Legs","icon":"inv_pants_leather_44"}, -{"id":78483,"name":"Vicious Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04"}, -{"id":78484,"name":"Vicious Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04"}, -{"id":78485,"name":"Vicious Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04"}, -{"id":78486,"name":"Vicious Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04"}, -{"id":78487,"name":"Chestguard of Nature's Fury","icon":"inv_chest_leather_raiddruid_i_01"}, -{"id":78488,"name":"Assassin's Chestplate","icon":"inv_chest_leatherraidrogue_i_01"}, -{"id":78489,"name":"Twilight Scale Chestguard","icon":"inv_chest_raidshaman_i_01"}, -{"id":78490,"name":"Dragonkiller Tunic","icon":"inv_shirt_04"}, -{"id":78500,"name":"Soul Warding","icon":"ability_priest_soulwarding"}, -{"id":78501,"name":"Soul Warding","icon":"ability_priest_soulwarding"}, {"id":78674,"name":"Starsurge","icon":"spell_arcane_arcane03"}, -{"id":78675,"name":"Solar Beam","icon":"ability_vehicle_sonicshockwave","hasBuff":true}, -{"id":78734,"name":"Perseverance","icon":"achievement_zone_darnassus"}, -{"id":78735,"name":"Perseverance","icon":"achievement_zone_darnassus"}, -{"id":78736,"name":"Perseverance","icon":"achievement_zone_darnassus"}, -{"id":78737,"name":"Perseverance","icon":"achievement_zone_darnassus"}, -{"id":78738,"name":"Perseverance","icon":"achievement_zone_darnassus"}, -{"id":78777,"name":"Wild Mushroom","icon":"inv_mushroom_07"}, -{"id":78784,"name":"Blessing of the Grove","icon":"spell_shaman_spiritlink"}, -{"id":78785,"name":"Blessing of the Grove","icon":"spell_shaman_spiritlink"}, -{"id":78788,"name":"Fungal Growth","icon":"creature_sporemushroom"}, -{"id":78789,"name":"Fungal Growth","icon":"creature_sporemushroom"}, -{"id":78892,"name":"Stampede","icon":"spell_druid_feralchargecat"}, -{"id":78893,"name":"Stampede","icon":"spell_druid_feralchargecat"}, -{"id":79004,"name":"Improved Sinister Strike","icon":"spell_shadow_ritualofsacrifice"}, -{"id":79007,"name":"Improved Recuperate","icon":"ability_rogue_improvedrecuperate"}, -{"id":79008,"name":"Improved Recuperate","icon":"ability_rogue_improvedrecuperate"}, -{"id":79077,"name":"Reinforced Leather","icon":"ability_rogue_reinforcedleather"}, -{"id":79079,"name":"Reinforced Leather","icon":"ability_rogue_reinforcedleather"}, -{"id":79095,"name":"Restless Blades","icon":"ability_rogue_restlessblades"}, -{"id":79096,"name":"Restless Blades","icon":"ability_rogue_restlessblades"}, -{"id":79121,"name":"Deadly Momentum","icon":"ability_rogue_deadlymomentum"}, -{"id":79122,"name":"Deadly Momentum","icon":"ability_rogue_deadlymomentum"}, -{"id":79123,"name":"Blackjack","icon":"ability_rogue_blackjack"}, -{"id":79125,"name":"Blackjack","icon":"ability_rogue_blackjack"}, -{"id":79133,"name":"Venomous Wounds","icon":"ability_rogue_venomouswounds"}, -{"id":79134,"name":"Venomous Wounds","icon":"ability_rogue_venomouswounds"}, -{"id":79140,"name":"Vendetta","icon":"ability_rogue_deadliness","hasBuff":true}, -{"id":79141,"name":"Opportunity","icon":"ability_rogue_bloodsplatter"}, -{"id":79146,"name":"Sanguinary Vein","icon":"ability_rogue_sanguinaryvein"}, -{"id":79147,"name":"Sanguinary Vein","icon":"ability_rogue_sanguinaryvein"}, -{"id":79150,"name":"Energetic Recovery","icon":"ability_rogue_sturdyrecuperate"}, -{"id":79151,"name":"Energetic Recovery","icon":"ability_rogue_sturdyrecuperate"}, -{"id":79152,"name":"Energetic Recovery","icon":"ability_rogue_sturdyrecuperate"}, +{"id":78777,"name":"Wild Mushroom: Detonate","icon":"inv_mushroom_07"}, +{"id":79008,"name":"Elusiveness","icon":"ability_rogue_turnthetables","hasBuff":true}, +{"id":79061,"name":"Enchant Weapon - Pandamonium (DNT)","icon":"inv_misc_enchantedscroll"}, {"id":79206,"name":"Spiritwalker's Grace","icon":"spell_shaman_spiritwalkersgrace","hasBuff":true}, -{"id":79268,"name":"Soul Harvest","icon":"ability_mage_potentspirit","hasBuff":true}, -{"id":79459,"name":"Demon Soul: Imp","icon":"spell_warlock_demonsoul","hasBuff":true}, -{"id":79460,"name":"Demon Soul: Felhunter","icon":"spell_warlock_demonsoul","hasBuff":true}, -{"id":79462,"name":"Demon Soul: Felguard","icon":"spell_warlock_demonsoul","hasBuff":true}, -{"id":79463,"name":"Demon Soul: Succubus","icon":"spell_warlock_demonsoul","hasBuff":true}, -{"id":79683,"name":"Arcane Missiles!","icon":"spell_arcane_arcane04","hasBuff":true}, -{"id":80128,"name":"Impending Victory","icon":"ability_warrior_devastate"}, -{"id":80129,"name":"Impending Victory","icon":"ability_warrior_devastate"}, -{"id":80240,"name":"Bane of Havoc","icon":"ability_warlock_baneofhavoc","hasBuff":true}, -{"id":80313,"name":"Pulverize","icon":"ability_smash"}, -{"id":80314,"name":"Endless Carnage","icon":"spell_deathknight_bloodboil"}, -{"id":80315,"name":"Endless Carnage","icon":"spell_deathknight_bloodboil"}, -{"id":80316,"name":"Primal Madness","icon":"ability_mount_jungletiger"}, -{"id":80317,"name":"Primal Madness","icon":"ability_mount_jungletiger"}, -{"id":80318,"name":"Blood in the Water","icon":"inv_misc_food_134_meat"}, -{"id":80319,"name":"Blood in the Water","icon":"inv_misc_food_134_meat"}, -{"id":80508,"name":"Lifebound Alchemist Stone","icon":"spell_holy_aspiration"}, -{"id":80552,"name":"Fury Swipes","icon":"ability_druid_mangle-tga"}, -{"id":80553,"name":"Fury Swipes","icon":"ability_druid_mangle-tga"}, -{"id":80861,"name":"Fury Swipes","icon":"ability_druid_rake"}, -{"id":80976,"name":"Blitz","icon":"warrior_talent_icon_blitz"}, -{"id":80977,"name":"Blitz","icon":"warrior_talent_icon_blitz"}, -{"id":80979,"name":"Thunderstruck","icon":"warrior_talent_icon_thunderstruck"}, -{"id":80980,"name":"Thunderstruck","icon":"warrior_talent_icon_thunderstruck"}, -{"id":81017,"name":"Stampede","icon":"spell_druid_feralchargecat","hasBuff":true}, -{"id":81022,"name":"Stampede","icon":"spell_druid_feralchargecat","hasBuff":true}, -{"id":81061,"name":"Euphoria","icon":"achievement_boss_valithradreamwalker"}, -{"id":81062,"name":"Euphoria","icon":"achievement_boss_valithradreamwalker"}, -{"id":81099,"name":"Single-Minded Fury","icon":"warrior_talent_icon_singlemindedfury"}, -{"id":81125,"name":"Sanguine Fortitude","icon":"ability_deathknight_sanguinfortitude"}, -{"id":81127,"name":"Sanguine Fortitude","icon":"ability_deathknight_sanguinfortitude"}, -{"id":81131,"name":"Scarlet Fever","icon":"ability_rogue_vendetta"}, -{"id":81132,"name":"Scarlet Fever","icon":"ability_rogue_vendetta"}, -{"id":81135,"name":"Crimson Scourge","icon":"spell_deathknight_bloodboil"}, -{"id":81136,"name":"Crimson Scourge","icon":"spell_deathknight_bloodboil"}, -{"id":81138,"name":"Improved Death Strike","icon":"spell_deathknight_butcher2"}, -{"id":81141,"name":"Crimson Scourge","icon":"ability_warrior_bloodnova","hasBuff":true}, -{"id":81163,"name":"Will of the Necropolis","icon":"ability_creature_cursed_02"}, -{"id":81164,"name":"Will of the Necropolis","icon":"ability_creature_cursed_02"}, -{"id":81256,"name":"Dancing Rune Weapon","icon":"inv_sword_07","hasBuff":true}, -{"id":81274,"name":"Efflorescence","icon":"inv_misc_herb_talandrasrose"}, -{"id":81275,"name":"Efflorescence","icon":"inv_misc_herb_talandrasrose"}, -{"id":81280,"name":"Blood Burst","icon":"ability_warrior_bloodnova"}, -{"id":81327,"name":"Brittle Bones","icon":"ability_deathknight_brittlebones"}, -{"id":81328,"name":"Brittle Bones","icon":"ability_deathknight_brittlebones"}, -{"id":81330,"name":"Might of the Frozen Wastes","icon":"inv_sword_120"}, -{"id":81332,"name":"Might of the Frozen Wastes","icon":"inv_sword_120"}, -{"id":81333,"name":"Might of the Frozen Wastes","icon":"inv_sword_120"}, -{"id":81334,"name":"Epidemic","icon":"spell_shadow_shadowwordpain"}, -{"id":81338,"name":"Resilient Infection","icon":"ability_creature_disease_05"}, -{"id":81339,"name":"Resilient Infection","icon":"ability_creature_disease_05"}, -{"id":81340,"name":"Sudden Doom","icon":"spell_shadow_painspike","hasBuff":true}, -{"id":81625,"name":"Tome of Light","icon":"inv_misc_book_07"}, -{"id":81659,"name":"Evangelism","icon":"spell_holy_divineillumination"}, -{"id":81661,"name":"Evangelism","icon":"spell_holy_divineillumination","hasBuff":true}, -{"id":81662,"name":"Evangelism","icon":"spell_holy_divineillumination"}, -{"id":81700,"name":"Archangel","icon":"ability_priest_archangel","hasBuff":true}, -{"id":81714,"name":"Reinforced Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81715,"name":"Specialized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81716,"name":"Deadly Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81720,"name":"Energized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81722,"name":"Agile Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81724,"name":"Camouflage Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81725,"name":"Lightweight Bio-Optic Killshades","icon":"inv_gizmo_newgoggles"}, -{"id":81749,"name":"Atonement","icon":"ability_priest_atonement"}, -{"id":81913,"name":"Die by the Sword","icon":"inv_sword_86"}, -{"id":81914,"name":"Die by the Sword","icon":"inv_sword_86"}, -{"id":81932,"name":"Gnomish X-Ray Scope","icon":"trade_engineering"}, -{"id":81933,"name":"R19 Threatfinder","icon":"trade_engineering"}, -{"id":81934,"name":"Safety Catch Removal Kit","icon":"trade_engineering"}, -{"id":82368,"name":"Victorious","icon":"ability_warrior_devastate","hasBuff":true}, -{"id":82661,"name":"Aspect of the Fox","icon":"ability_hunter_aspectofthefox","hasBuff":true}, -{"id":82682,"name":"One with Nature","icon":"ability_hunter_onewithnature"}, -{"id":82683,"name":"One with Nature","icon":"ability_hunter_onewithnature"}, -{"id":82684,"name":"One with Nature","icon":"ability_hunter_onewithnature"}, -{"id":82687,"name":"Bestial Discipline","icon":"ability_hunter_bestialdiscipline"}, -{"id":82692,"name":"Focus Fire","icon":"ability_hunter_focusfire","hasBuff":true}, -{"id":82726,"name":"Fervor","icon":"ability_hunter_aspectoftheviper"}, -{"id":82731,"name":"Flame Orb","icon":"spell_mage_flameorb"}, -{"id":82748,"name":"Killing Streak","icon":"achievement_bg_kill_carrier_opposing_flagroom"}, -{"id":82749,"name":"Killing Streak","icon":"achievement_bg_kill_carrier_opposing_flagroom"}, -{"id":82832,"name":"Toxicology","icon":"inv_alchemy_enchantedvial"}, -{"id":82833,"name":"Toxicology","icon":"inv_alchemy_enchantedvial"}, -{"id":82834,"name":"Improved Serpent Sting","icon":"ability_hunter_quickshot"}, -{"id":82893,"name":"Resistance is Futile","icon":"ability_hunter_resistanceisfutile"}, -{"id":82894,"name":"Resistance is Futile","icon":"ability_hunter_resistanceisfutile"}, -{"id":82898,"name":"Crouching Tiger, Hidden Chimera","icon":"ability_hunter_pet_chimera"}, -{"id":82899,"name":"Crouching Tiger, Hidden Chimera","icon":"ability_hunter_pet_chimera"}, -{"id":82925,"name":"Ready, Set, Aim...","icon":"ability_hunter_mastermarksman","hasBuff":true}, -{"id":82930,"name":"Arcane Tactics","icon":"spell_arcane_arcanetactics","hasBuff":true}, -{"id":82984,"name":"Telluric Currents","icon":"spell_lightning_lightningbolt01"}, -{"id":82988,"name":"Telluric Currents","icon":"spell_lightning_lightningbolt01"}, -{"id":83049,"name":"Early Frost","icon":"spell_frost_chillingbolt"}, -{"id":83050,"name":"Early Frost","icon":"spell_frost_chillingbolt"}, -{"id":83074,"name":"Fingers of Frost","icon":"ability_mage_wintersgrasp"}, -{"id":83156,"name":"Piercing Chill","icon":"spell_frost_piercing-chill"}, -{"id":83157,"name":"Piercing Chill","icon":"spell_frost_piercing-chill"}, -{"id":83340,"name":"Sic 'Em!","icon":"ability_hunter_sickem"}, -{"id":83356,"name":"Sic 'Em!","icon":"ability_hunter_sickem"}, -{"id":83489,"name":"Termination","icon":"ability_warrior_focusedrage"}, -{"id":83490,"name":"Termination","icon":"ability_warrior_focusedrage"}, -{"id":83494,"name":"Mirrored Blades","icon":"inv_weapon_shortblade_99"}, -{"id":83495,"name":"Mirrored Blades","icon":"inv_weapon_shortblade_99"}, -{"id":83513,"name":"Improved Arcane Missiles","icon":"spell_nature_starfall"}, -{"id":83515,"name":"Improved Arcane Missiles","icon":"spell_nature_starfall"}, -{"id":83558,"name":"Posthaste","icon":"ability_hunter_posthaste"}, -{"id":83560,"name":"Posthaste","icon":"ability_hunter_posthaste"}, -{"id":83582,"name":"Pyromaniac","icon":"spell_fire_burnout","hasBuff":true}, -{"id":83619,"name":"Fire Power","icon":"ability_mage_burnout"}, -{"id":84253,"name":"Burning Soul","icon":"spell_burningsoul"}, -{"id":84254,"name":"Burning Soul","icon":"spell_burningsoul"}, -{"id":84417,"name":"Volatile Thunderstick","icon":"inv_weapon_rifle_43"}, -{"id":84418,"name":"Elementium Dragonling","icon":"inv_misc_head_dragon_bronze"}, -{"id":84420,"name":"Finely-Tuned Throat Needler","icon":"inv_bow_2h_crossbow_cataclysm_b_02"}, -{"id":84431,"name":"Overpowered Chicken Splitter","icon":"inv_weapon_bow_60"}, -{"id":84432,"name":"Kickback 5000","icon":"inv_weapon_rifle_44"}, -{"id":84570,"name":"War Academy","icon":"ability_warrior_unrelentingassault"}, -{"id":84571,"name":"War Academy","icon":"ability_warrior_unrelentingassault"}, -{"id":84572,"name":"War Academy","icon":"ability_warrior_unrelentingassault"}, -{"id":84579,"name":"Field Dressing","icon":"inv_misc_bandage_05"}, -{"id":84580,"name":"Field Dressing","icon":"inv_misc_bandage_05"}, -{"id":84583,"name":"Lambs to the Slaughter","icon":"warrior_talent_icon_lambstotheslaughter"}, -{"id":84586,"name":"Slaughter","icon":"ability_rogue_bloodsplatter","hasBuff":true}, -{"id":84587,"name":"Lambs to the Slaughter","icon":"warrior_talent_icon_lambstotheslaughter"}, -{"id":84588,"name":"Lambs to the Slaughter","icon":"warrior_talent_icon_lambstotheslaughter"}, -{"id":84604,"name":"Hold the Line","icon":"achievement_bg_defendxtowers_av"}, -{"id":84607,"name":"Shield Mastery","icon":"ability_warrior_shieldguard"}, -{"id":84608,"name":"Shield Mastery","icon":"ability_warrior_shieldguard"}, -{"id":84614,"name":"Blood and Thunder","icon":"warrior_talent_icon_bloodandthunder"}, -{"id":84615,"name":"Blood and Thunder","icon":"warrior_talent_icon_bloodandthunder"}, -{"id":84617,"name":"Revealing Strike","icon":"inv_sword_97","hasBuff":true}, -{"id":84621,"name":"Hold the Line","icon":"achievement_bg_defendxtowers_av"}, -{"id":84628,"name":"Sanctuary","icon":"spell_nature_lightningshield"}, -{"id":84629,"name":"Sanctuary","icon":"spell_nature_lightningshield"}, -{"id":84631,"name":"Hallowed Ground","icon":"spell_holy_innerfire"}, -{"id":84633,"name":"Hallowed Ground","icon":"spell_holy_innerfire"}, -{"id":84635,"name":"Wrath of the Lightbringer","icon":"inv_mace_82"}, -{"id":84636,"name":"Wrath of the Lightbringer","icon":"inv_mace_82"}, -{"id":84652,"name":"Bandit's Guile","icon":"ability_rogue_preyontheweak"}, -{"id":84653,"name":"Bandit's Guile","icon":"ability_rogue_preyontheweak"}, -{"id":84654,"name":"Bandit's Guile","icon":"ability_rogue_preyontheweak"}, -{"id":84661,"name":"Improved Ambush","icon":"ability_rogue_ambush"}, -{"id":84673,"name":"Improved Flamestrike","icon":"spell_fire_selfdestruct"}, -{"id":84674,"name":"Improved Flamestrike","icon":"spell_fire_selfdestruct"}, -{"id":84722,"name":"Invocation","icon":"spell_arcane_invocation"}, -{"id":84723,"name":"Invocation","icon":"spell_arcane_invocation"}, -{"id":84726,"name":"Frostfire Orb","icon":"spell_firefrost-orb"}, -{"id":84727,"name":"Frostfire Orb","icon":"spell_firefrost-orb"}, -{"id":84745,"name":"Shallow Insight","icon":"inv_bijou_green","hasBuff":true}, -{"id":84746,"name":"Moderate Insight","icon":"inv_bijou_yellow","hasBuff":true}, -{"id":84747,"name":"Deep Insight","icon":"inv_bijou_red","hasBuff":true}, -{"id":84800,"name":"Tower of Radiance","icon":"achievement_bg_winsoa"}, -{"id":84839,"name":"Vengeance","icon":"ability_paladin_shieldofvengeance"}, -{"id":84846,"name":"Spark of Life","icon":"spell_nature_wispsplodegreen"}, -{"id":84847,"name":"Spark of Life","icon":"spell_nature_wispsplodegreen"}, -{"id":84848,"name":"Spark of Life","icon":"spell_nature_wispsplodegreen"}, -{"id":84854,"name":"Shield of the Templar","icon":"ability_paladin_shieldofthetemplar"}, -{"id":84963,"name":"Inquisition","icon":"spell_paladin_inquisition","hasBuff":true}, -{"id":85007,"name":"Draconic Embossment - Stamina","icon":"trade_leatherworking"}, -{"id":85008,"name":"Draconic Embossment - Agility","icon":"trade_leatherworking"}, -{"id":85009,"name":"Draconic Embossment - Strength","icon":"trade_leatherworking"}, -{"id":85010,"name":"Draconic Embossment - Intellect","icon":"trade_leatherworking"}, -{"id":85043,"name":"Grand Crusader","icon":"inv_helmet_74"}, -{"id":85067,"name":"Dragonbone Leg Reinforcements","icon":"trade_leatherworking"}, -{"id":85068,"name":"Charscale Leg Reinforcements","icon":"trade_leatherworking"}, -{"id":85099,"name":"Pandemic","icon":"spell_shadow_lastingaffliction"}, -{"id":85100,"name":"Pandemic","icon":"spell_shadow_lastingaffliction"}, -{"id":85103,"name":"Cremation","icon":"ability_warlock_cremation"}, -{"id":85104,"name":"Cremation","icon":"ability_warlock_cremation"}, -{"id":85105,"name":"Inferno","icon":"ability_warlock_inferno"}, -{"id":85106,"name":"Impending Doom","icon":"spell_nature_removecurse"}, -{"id":85107,"name":"Impending Doom","icon":"spell_nature_removecurse"}, -{"id":85108,"name":"Impending Doom","icon":"spell_nature_removecurse"}, -{"id":85109,"name":"Ancient Grimoire","icon":"ability_warlock_ancientgrimoire"}, -{"id":85110,"name":"Ancient Grimoire","icon":"ability_warlock_ancientgrimoire"}, -{"id":85112,"name":"Burning Embers","icon":"ability_warlock_burningembers"}, -{"id":85113,"name":"Aftermath","icon":"spell_fire_fire"}, -{"id":85114,"name":"Aftermath","icon":"spell_fire_fire"}, -{"id":85117,"name":"Divine Purpose","icon":"spell_holy_divinepurpose"}, -{"id":85126,"name":"Seals of Command","icon":"ability_warrior_innerrage"}, -{"id":85175,"name":"Mana Feed","icon":"spell_shadow_manafeed"}, -{"id":85222,"name":"Light of Dawn","icon":"spell_paladin_lightofdawn"}, +{"id":81229,"name":"Runic Empowerment","icon":"inv_misc_rune_10","hasBuff":true}, +{"id":82442,"name":"Pearlescent Spellthread","icon":"inv_bracer_69"}, +{"id":82443,"name":"Cerulean Spellthread","icon":"inv_misc_thread_eternium"}, +{"id":82444,"name":"Greater Pearlescent Spellthread","icon":"inv_belt_42c"}, +{"id":82445,"name":"Greater Cerulean Spellthread","icon":"inv_belt_42"}, +{"id":82726,"name":"Fervor","icon":"ability_hunter_aspectoftheviper","hasBuff":true}, +{"id":83006,"name":"Greater Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":83007,"name":"Greater Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":83763,"name":"Ironscale Leg Armor","icon":"inv_misc_armorkit_mop_01"}, +{"id":83764,"name":"Shadowleather Leg Armor","icon":"inv_misc_cataclysmarmorkit_02"}, +{"id":83765,"name":"Angerhide Leg Armor","icon":"inv_misc_armorkit_mop_04"}, +{"id":84575,"name":"Enchant Ring - Greater Agility","icon":"inv_scroll_03"}, +{"id":84576,"name":"Enchant Ring - Greater Intellect","icon":"inv_scroll_03"}, +{"id":84577,"name":"Enchant Ring - Greater Stamina","icon":"inv_scroll_03"}, +{"id":84578,"name":"Enchant Ring - Greater Strength","icon":"inv_scroll_03"}, +{"id":84839,"name":"Vengeance","icon":"spell_shadow_charm","hasBuff":true}, {"id":85256,"name":"Templar's Verdict","icon":"spell_paladin_templarsverdict"}, -{"id":85283,"name":"Dark Arts","icon":"ability_warlock_darkarts"}, -{"id":85284,"name":"Dark Arts","icon":"ability_warlock_darkarts"}, -{"id":85285,"name":"Sacred Shield","icon":"ability_paladin_blessedmending"}, -{"id":85288,"name":"Raging Blow","icon":"ability_hunter_swiftstrike"}, -{"id":85388,"name":"Throwdown","icon":"inv_mace_62","hasBuff":true}, -{"id":85421,"name":"Burning Embers","icon":"ability_warlock_burningembers","hasBuff":true}, -{"id":85433,"name":"Sacred Duty","icon":"ability_paladin_judgementred","hasBuff":true}, -{"id":85446,"name":"Acts of Sacrifice","icon":"ability_paladin_blessedhands"}, -{"id":85457,"name":"Rule of Law","icon":"inv_relics_libramofhope"}, -{"id":85458,"name":"Rule of Law","icon":"inv_relics_libramofhope"}, -{"id":85462,"name":"Clarity of Purpose","icon":"spell_paladin_clarityofpurpose"}, -{"id":85463,"name":"Clarity of Purpose","icon":"spell_paladin_clarityofpurpose"}, -{"id":85464,"name":"Clarity of Purpose","icon":"spell_paladin_clarityofpurpose"}, -{"id":85479,"name":"Jinx","icon":"ability_warlock_jinx"}, -{"id":85495,"name":"Speed of Light","icon":"paladin_icon_speedoflight"}, -{"id":85498,"name":"Speed of Light","icon":"paladin_icon_speedoflight"}, -{"id":85499,"name":"Speed of Light","icon":"paladin_icon_speedoflight"}, -{"id":85510,"name":"Denounce","icon":"spell_holy_excorcism_02"}, -{"id":85511,"name":"Tower of Radiance","icon":"achievement_bg_winsoa"}, -{"id":85512,"name":"Tower of Radiance","icon":"achievement_bg_winsoa"}, -{"id":85639,"name":"Guarded by the Light","icon":"ability_paladin_gaurdedbythelight"}, -{"id":85646,"name":"Guarded by the Light","icon":"ability_paladin_gaurdedbythelight"}, -{"id":85696,"name":"Zealotry","icon":"spell_holy_proclaimchampion_02","hasBuff":true}, -{"id":85730,"name":"Deadly Calm","icon":"achievement_boss_kingymiron","hasBuff":true}, -{"id":85739,"name":"Meat Cleaver","icon":"warrior_talent_icon_mastercleaver","hasBuff":true}, -{"id":85741,"name":"Battle Trance","icon":"inv_helmet_06"}, -{"id":85742,"name":"Battle Trance","icon":"inv_helmet_06"}, -{"id":85793,"name":"Hand of Doom","icon":"ability_deathknight_desolation"}, -{"id":85794,"name":"Hand of Doom","icon":"ability_deathknight_desolation"}, -{"id":85795,"name":"Acts of Sacrifice","icon":"ability_paladin_blessedhands"}, -{"id":85803,"name":"Selfless Healer","icon":"spell_holy_rune"}, -{"id":85804,"name":"Selfless Healer","icon":"spell_holy_rune"}, -{"id":85948,"name":"Festering Strike","icon":"inv_sword_61"}, -{"id":86091,"name":"Nethermancy","icon":"inv_enchant_essencenetherlarge"}, -{"id":86121,"name":"Soul Swap","icon":"ability_warlock_soulswap"}, -{"id":86150,"name":"Guardian of Ancient Kings","icon":"spell_holy_heroism"}, -{"id":86172,"name":"Divine Purpose","icon":"spell_holy_divinepurpose"}, -{"id":86181,"name":"Nether Vortex","icon":"spell_arcane_blast"}, -{"id":86183,"name":"Feedback","icon":"ability_vehicle_electrocharge"}, -{"id":86184,"name":"Feedback","icon":"ability_vehicle_electrocharge"}, -{"id":86185,"name":"Feedback","icon":"ability_vehicle_electrocharge"}, -{"id":86209,"name":"Nether Vortex","icon":"spell_arcane_blast"}, -{"id":86259,"name":"Improved Freeze","icon":"spell_frost_summonwaterelemental"}, -{"id":86260,"name":"Improved Freeze","icon":"spell_frost_summonwaterelemental"}, -{"id":86303,"name":"Reactive Barrier","icon":"spell_frost_manarecharge"}, -{"id":86304,"name":"Reactive Barrier","icon":"spell_frost_manarecharge"}, -{"id":86314,"name":"Improved Freeze","icon":"spell_frost_summonwaterelemental"}, -{"id":86346,"name":"Colossus Smash","icon":"ability_warrior_colossussmash","hasBuff":true}, -{"id":86375,"name":"Swiftsteel Inscription","icon":"inv_misc_mastersinscription"}, +{"id":85499,"name":"Speed of Light","icon":"ability_paladin_speedoflight","hasBuff":true}, +{"id":85559,"name":"Sha Armor Kit","icon":"inv_misc_armorkit_28"}, +{"id":85568,"name":"Brutal Leg Armor","icon":"inv_misc_armorkit_mop_02"}, +{"id":85569,"name":"Sha-Touched Leg Armor","icon":"inv_misc_cataclysmarmorkit_01"}, +{"id":85570,"name":"Toughened Leg Armor","icon":"inv_misc_armorkit_mop_00"}, +{"id":85804,"name":"Selfless Healer","icon":"ability_paladin_gaurdedbythelight","hasBuff":true}, +{"id":86091,"name":"Nethermancy","icon":"inv_enchant_essencenetherlarge","hasBuff":true}, +{"id":86172,"name":"Divine Purpose","icon":"spell_holy_divinepurpose","hasBuff":true}, {"id":86392,"name":"Main Gauche","icon":"inv_weapon_shortblade_15"}, -{"id":86401,"name":"Lionsmane Inscription","icon":"inv_misc_mastersinscription"}, -{"id":86402,"name":"Inscription of the Earth Prince","icon":"inv_misc_mastersinscription"}, -{"id":86403,"name":"Felfire Inscription","icon":"inv_misc_mastersinscription"}, -{"id":86500,"name":"Enduring Winter","icon":"spell_frost_arcticwinds"}, -{"id":86508,"name":"Enduring Winter","icon":"spell_frost_arcticwinds"}, {"id":86524,"name":"Plate Specialization","icon":"inv_chest_plate12"}, {"id":86525,"name":"Plate Specialization","icon":"inv_chest_plate12"}, -{"id":86526,"name":"Plate Specialization","icon":"inv_chest_plate12"}, {"id":86529,"name":"Mail Specialization","icon":"inv_chest_chain_11"}, -{"id":86616,"name":"Book of Blood","icon":"inv_misc_book_05"}, -{"id":86627,"name":"Incite","icon":"ability_warrior_incite","hasBuff":true}, -{"id":86640,"name":"Lord Rottington's Pressed Wisp Book","icon":"inv_misc_book_11"}, -{"id":86641,"name":"Dungeoneering Guide","icon":"inv_misc_book_17"}, -{"id":86642,"name":"Divine Companion","icon":"inv_misc_book_16"}, -{"id":86643,"name":"Battle Tome","icon":"inv_misc_book_18"}, -{"id":86647,"name":"Etched Horn","icon":"inv_misc_monsterhorn_01"}, -{"id":86648,"name":"Manual of the Planes","icon":"inv_misc_book_16"}, -{"id":86649,"name":"Runed Dragonscale","icon":"inv_misc_monsterscales_07"}, -{"id":86650,"name":"Notched Jawbone","icon":"inv_jewelry_trinket_06"}, -{"id":86652,"name":"Tattooed Eyeball","icon":"inv_misc_eye_02"}, -{"id":86653,"name":"Silver Inlaid Leaf","icon":"inv_relics_idolofrejuvenation"}, -{"id":86655,"name":"Improved Slam","icon":"ability_warrior_decisivestrike"}, -{"id":86664,"name":"Soulburn: Seed of Corruption","icon":"spell_shadow_seedofdestruction"}, -{"id":86667,"name":"Siphon Life","icon":"spell_shadow_requiem"}, +{"id":86597,"name":"Living Steel Weapon Chain","icon":"inv_misc_steelweaponchain"}, +{"id":86599,"name":"Ghost Iron Shield Spike","icon":"inv_shield_63"}, {"id":86700,"name":"Ancient Power","icon":"ability_paladin_blessedhands","hasBuff":true}, {"id":86704,"name":"Ancient Fury","icon":"ability_paladin_sanctifiedwrath"}, -{"id":86847,"name":"Inscription of Unbreakable Quartz","icon":"trade_engineering"}, -{"id":86854,"name":"Greater Inscription of Unbreakable Quartz","icon":"trade_engineering"}, -{"id":86880,"name":"Molten Fury","icon":"spell_fire_moltenblood"}, -{"id":86894,"name":"Heavy Repercussions","icon":"inv_shield_01"}, -{"id":86896,"name":"Heavy Repercussions","icon":"inv_shield_01"}, -{"id":86898,"name":"Inscription of Charged Lodestone","icon":"trade_engineering"}, -{"id":86899,"name":"Greater Inscription of Charged Lodestone","icon":"trade_engineering"}, -{"id":86900,"name":"Inscription of Jagged Stone","icon":"trade_engineering"}, -{"id":86901,"name":"Greater Inscription of Jagged Stone","icon":"trade_engineering"}, -{"id":86906,"name":"Inscription of Shattered Crystal","icon":"trade_engineering"}, -{"id":86907,"name":"Greater Inscription of Shattered Crystal","icon":"trade_engineering"}, -{"id":86909,"name":"Inscription of Shattered Crystal","icon":"trade_engineering"}, -{"id":86914,"name":"Firestarter","icon":"ability_mage_firestarter"}, -{"id":86931,"name":"Arcanum of the Earthern Ring","icon":"spell_fire_masterofelements"}, -{"id":86932,"name":"Arcanum of Hyjal","icon":"spell_fire_masterofelements"}, -{"id":86933,"name":"Arcanum of the Highlands","icon":"spell_fire_masterofelements"}, -{"id":86934,"name":"Arcanum of Ramkahen","icon":"spell_fire_masterofelements"}, -{"id":86935,"name":"Totemic Reach","icon":"spell_nature_agitatingtotem"}, -{"id":86936,"name":"Totemic Reach","icon":"spell_nature_agitatingtotem"}, -{"id":86948,"name":"Cauterize","icon":"spell_fire_rune"}, -{"id":86949,"name":"Cauterize","icon":"spell_fire_rune"}, -{"id":86959,"name":"Cleansing Waters","icon":"spell_nature_regeneration_02"}, -{"id":86962,"name":"Cleansing Waters","icon":"spell_nature_regeneration_02"}, -{"id":87096,"name":"Thunderstruck","icon":"warrior_talent_icon_thunderstruck","hasBuff":true}, -{"id":87099,"name":"Sin and Punishment","icon":"spell_holy_prayerofshadowprotection"}, -{"id":87100,"name":"Sin and Punishment","icon":"spell_holy_prayerofshadowprotection"}, -{"id":87118,"name":"Dark Evangelism","icon":"spell_holy_divineillumination","hasBuff":true}, -{"id":87138,"name":"The Art of War","icon":"ability_paladin_artofwar"}, -{"id":87151,"name":"Archangel","icon":"ability_priest_archangel"}, -{"id":87153,"name":"Dark Archangel","icon":"ability_priest_archangel","hasBuff":true}, -{"id":87160,"name":"Mind Melt","icon":"spell_shadow_skull","hasBuff":true}, -{"id":87163,"name":"Eternal Glory","icon":"inv_torch_thrown"}, -{"id":87164,"name":"Eternal Glory","icon":"inv_torch_thrown"}, -{"id":87168,"name":"Long Arm of the Law","icon":"ability_paladin_judgementred"}, -{"id":87172,"name":"Long Arm of the Law","icon":"ability_paladin_judgementred"}, -{"id":87174,"name":"Improved Judgement","icon":"ability_paladin_judgementblue"}, -{"id":87175,"name":"Improved Judgement","icon":"ability_paladin_judgementblue"}, +{"id":86949,"name":"Cauterize","icon":"spell_fire_rune","hasBuff":true}, +{"id":87172,"name":"Long Arm of the Law","icon":"ability_paladin_longarmofthelaw","hasBuff":true}, {"id":87178,"name":"Mind Spike","icon":"spell_priest_mindspike","hasBuff":true}, -{"id":87192,"name":"Paralysis","icon":"ability_rogue_masterofsubtlety"}, -{"id":87195,"name":"Paralysis","icon":"ability_rogue_masterofsubtlety"}, -{"id":87327,"name":"Shadow Power","icon":"spell_shadow_shadowpower"}, -{"id":87430,"name":"Heavenly Voice","icon":"ability_priest_heavanlyvoice"}, -{"id":87431,"name":"Heavenly Voice","icon":"ability_priest_heavanlyvoice"}, -{"id":87461,"name":"Rule of Law","icon":"inv_relics_libramofhope"}, -{"id":87504,"name":"Leather Specialization","icon":"spell_nature_enchantarmor"}, -{"id":87505,"name":"Leather Specialization","icon":"spell_nature_enchantarmor"}, -{"id":87532,"name":"Shadowy Apparition","icon":"spell_shadow_unholyfrenzy"}, -{"id":87934,"name":"Serpent Spread","icon":"ability_hunter_serpentswiftness"}, -{"id":87935,"name":"Serpent Spread","icon":"ability_hunter_serpentswiftness"}, -{"id":88148,"name":"Flamestrike","icon":"spell_fire_selfdestruct","hasBuff":true}, -{"id":88263,"name":"Hammer of the Righteous","icon":"ability_paladin_hammeroftherighteous"}, -{"id":88423,"name":"Nature's Cure","icon":"ability_shaman_cleansespirit"}, -{"id":88446,"name":"Demonic Rebirth","icon":"spell_shadow_demonictactics"}, -{"id":88447,"name":"Demonic Rebirth","icon":"spell_shadow_demonictactics"}, -{"id":88627,"name":"Revelations","icon":"ability_priest_bindingprayers"}, -{"id":88687,"name":"Surge of Light","icon":"spell_holy_surgeoflight"}, -{"id":88690,"name":"Surge of Light","icon":"spell_holy_surgeoflight"}, +{"id":87559,"name":"Greater Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":87560,"name":"Greater Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_yellow"}, +{"id":87577,"name":"Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87578,"name":"Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87579,"name":"Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87580,"name":"Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_blue"}, +{"id":87581,"name":"Secret Ox Horn Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87582,"name":"Secret Crane Wing Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87583,"name":"Secret Serpent Pearl Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87584,"name":"Secret Tiger Claw Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87585,"name":"Secret Tiger Fang Inscription","icon":"inv_misc_mastersinscription"}, +{"id":87748,"name":"Watergliding Jets","icon":"inv_scroll_03"}, {"id":88747,"name":"Wild Mushroom","icon":"druid_ability_wildmushroom_a"}, {"id":88751,"name":"Wild Mushroom: Detonate","icon":"druid_ability_wildmushroom_b"}, -{"id":88756,"name":"Rolling Thunder","icon":"spell_nature_callstorm"}, -{"id":88764,"name":"Rolling Thunder","icon":"spell_nature_callstorm"}, -{"id":88766,"name":"Fulmination","icon":"spell_nature_unrelentingstorm"}, -{"id":88767,"name":"Fulmination","icon":"spell_nature_unrelentingstorm"}, -{"id":88820,"name":"Daybreak","icon":"inv_qirajidol_sun"}, -{"id":88821,"name":"Daybreak","icon":"inv_qirajidol_sun"}, -{"id":88994,"name":"Masochism","icon":"spell_shadow_misery"}, -{"id":88995,"name":"Masochism","icon":"spell_shadow_misery"}, -{"id":89265,"name":"Eclipse Energy","icon":"ability_druid_lunarguidance","hasBuff":true}, -{"id":89485,"name":"Inner Focus","icon":"spell_frost_windwalkon","hasBuff":true}, -{"id":89488,"name":"Strength of Soul","icon":"spell_holy_ashestoashes"}, -{"id":89489,"name":"Strength of Soul","icon":"spell_holy_ashestoashes"}, -{"id":89604,"name":"Aura of Foreboding","icon":"spell_shadow_sealofkings"}, -{"id":89605,"name":"Aura of Foreboding","icon":"spell_shadow_sealofkings"}, -{"id":89744,"name":"Wizardry","icon":"inv_enchant_essencemagiclarge"}, -{"id":89745,"name":"Mysticism","icon":"spell_holy_spiritualguidence"}, -{"id":89775,"name":"Hemorrhage","icon":"spell_shadow_lifedrain","hasBuff":true}, -{"id":89901,"name":"Judgements of the Bold","icon":"ability_paladin_judgementofthewise"}, -{"id":89937,"name":"Fel Spark","icon":"spell_fire_felfire","hasBuff":true}, -{"id":90174,"name":"Divine Purpose","icon":"spell_holy_mindvision","hasBuff":true}, -{"id":90286,"name":"Sanctified Wrath","icon":"ability_paladin_sanctifiedwrath"}, -{"id":90608,"name":"Zin'rokh, Destroyer of Worlds","icon":"trade_archaeology_zinrokh-sword"}, -{"id":90787,"name":"Improved Arcane Explosion","icon":"spell_nature_wispsplode"}, -{"id":90788,"name":"Improved Arcane Explosion","icon":"spell_nature_wispsplode"}, -{"id":90806,"name":"Executioner","icon":"inv_sword_48","hasBuff":true}, -{"id":91023,"name":"Find Weakness","icon":"ability_rogue_findweakness"}, -{"id":91107,"name":"Unholy Might","icon":"spell_shadow_unholystrength"}, -{"id":91145,"name":"Runic Power Mastery","icon":"spell_arcane_arcane01"}, -{"id":91227,"name":"Staff of Sorcerer-Thane Thaurissan","icon":"trade_archaeology_staffofsorcerer_than-thaurissan"}, -{"id":91316,"name":"Contagion","icon":"spell_shadow_plaguecloud"}, -{"id":91319,"name":"Contagion","icon":"spell_shadow_plaguecloud"}, -{"id":91323,"name":"Rage of Rivendare","icon":"inv_weapon_halberd14"}, -{"id":91342,"name":"Shadow Infusion","icon":"spell_shadow_requiem","hasBuff":true}, -{"id":91713,"name":"Nether Ward","icon":"spell_fire_felfireward"}, -{"id":91757,"name":"Tyrande's Favorite Doll","icon":"trade_archaeology_tyrandesfavoritedoll"}, -{"id":91986,"name":"Burning Embers","icon":"ability_warlock_burningembers"}, -{"id":92139,"name":"Staff of Ammunae","icon":"trade_archaeology_staff-of-ammunrae"}, -{"id":92163,"name":"Scimitar of the Sirocco","icon":"trade_archaeology_scimitar-of-the-sirocco"}, -{"id":92168,"name":"Ring of the Boy Emperor","icon":"trade_archaeology_ring-of-the-boyemperor"}, -{"id":92283,"name":"Frostfire Orb","icon":"spell_firefrost-orb"}, -{"id":92295,"name":"Train of Thought","icon":"ability_mage_studentofthemind"}, -{"id":92297,"name":"Train of Thought","icon":"ability_mage_studentofthemind"}, -{"id":92363,"name":"Malfurion's Gift","icon":"spell_shaman_giftearthmother"}, -{"id":92364,"name":"Malfurion's Gift","icon":"spell_shaman_giftearthmother"}, -{"id":92433,"name":"Elementium Shield Spike","icon":"trade_engineering"}, -{"id":92437,"name":"Pyrium Shield Spike","icon":"trade_engineering"}, -{"id":93098,"name":"Vengeance","icon":"ability_paladin_shieldofvengeance"}, -{"id":93099,"name":"Vengeance","icon":"ability_paladin_shieldofvengeance"}, -{"id":93398,"name":"Shooting Stars","icon":"ability_mage_arcanebarrage"}, -{"id":93399,"name":"Shooting Stars","icon":"ability_mage_arcanebarrage"}, -{"id":93401,"name":"Sunfire","icon":"ability_mage_firestarter"}, +{"id":89717,"name":"Enchant Bracer - Exceptional Strength (Scaling)","icon":"inv_misc_enchantedscroll"}, +{"id":89737,"name":"Enchant Shield - Greater Parry","icon":"inv_misc_enchantedscroll"}, +{"id":89744,"name":"Wizardry","icon":"inv_enchant_essencemagiclarge","hasBuff":true}, +{"id":91107,"name":"Unholy Might","icon":"spell_shadow_unholystrength","hasBuff":true}, +{"id":93098,"name":"Vengeance","icon":"spell_shadow_charm","hasBuff":true}, +{"id":93099,"name":"Vengeance","icon":"spell_shadow_charm","hasBuff":true}, {"id":93402,"name":"Sunfire","icon":"ability_mage_firestarter","hasBuff":true}, -{"id":93417,"name":"Paragon of Virtue","icon":"spell_holy_avenginewrath"}, -{"id":93418,"name":"Paragon of Virtue","icon":"spell_holy_avenginewrath"}, -{"id":93448,"name":"Pyrium Weapon Chain","icon":"inv_belt_18"}, -{"id":93622,"name":"Berserk","icon":"ability_druid_berserk","hasBuff":true}, -{"id":94553,"name":"Improved Blood Tap","icon":"spell_deathknight_bloodtap"}, -{"id":94555,"name":"Improved Blood Tap","icon":"spell_deathknight_bloodtap"}, -{"id":94718,"name":"Elementium Gutslicer","icon":"inv_axe_1h_bwdraid_d_01"}, -{"id":94732,"name":"Forged Elementium Mindcrusher","icon":"inv_mace_46"}, -{"id":95471,"name":"Enchant 2H Weapon - Mighty Agility","icon":"trade_engraving"}, -{"id":95649,"name":"Rapid Renewal","icon":"ability_paladin_blessedmending"}, -{"id":95799,"name":"Empowered Shadow","icon":"inv_chaos_orb","hasBuff":true}, -{"id":96171,"name":"Will of the Necropolis","icon":"spell_deathknight_runetap","hasBuff":true}, -{"id":96245,"name":"Arcanum of Vicious Intellect","icon":"spell_fire_masterofelements"}, -{"id":96246,"name":"Arcanum of Vicious Agility","icon":"spell_fire_masterofelements"}, -{"id":96247,"name":"Arcanum of Vicious Strength","icon":"spell_fire_masterofelements"}, -{"id":96249,"name":"Greater Inscription of Vicious Intellect","icon":"trade_engineering"}, -{"id":96250,"name":"Greater Inscription of Vicious Strength","icon":"trade_engineering"}, -{"id":96251,"name":"Greater Inscription of Vicious Agility","icon":"trade_engineering"}, -{"id":96252,"name":"Volatile Alchemist Stone","icon":"item_alchemiststoneb"}, -{"id":96253,"name":"Quicksilver Alchemist Stone","icon":"item_alchemiststone"}, -{"id":96254,"name":"Vibrant Alchemist Stone","icon":"item_alchemiststonec"}, -{"id":96261,"name":"Enchant Bracer - Major Strength","icon":"inv_enchant_formulasuperior_01"}, -{"id":96262,"name":"Enchant Bracer - Mighty Intellect","icon":"inv_enchant_formulasuperior_01"}, -{"id":96264,"name":"Enchant Bracer - Agility","icon":"inv_enchant_formulasuperior_01"}, -{"id":96269,"name":"Death's Advance","icon":"spell_shadow_demonicempathy"}, -{"id":96270,"name":"Death's Advance","icon":"spell_shadow_demonicempathy"}, -{"id":98008,"name":"Spirit Link Totem","icon":"spell_shaman_spiritlink"}, -{"id":98533,"name":"Extinct Turtle Shell","icon":"inv_shield_18"}, -{"id":98921,"name":"Punisher's Band","icon":"inv_jewelry_ring_70"}, -{"id":99439,"name":"Fists of Fury","icon":"inv_glove_plate_raidwarrior_j_01"}, -{"id":99440,"name":"Eternal Elementium Handguards","icon":"inv_glove_plate_raiddeathknight_j_01"}, -{"id":99441,"name":"Holy Flame Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_j_01"}, -{"id":99443,"name":"Dragonfire Gloves","icon":"inv_glove_mail_raidhunter_j_01"}, -{"id":99445,"name":"Gloves of Unforgiving Flame","icon":"inv_gauntlets_mail_raidshaman_j_01"}, -{"id":99446,"name":"Clutches of Evil","icon":"inv_gauntlet_leather_raidrogue_j_01"}, -{"id":99447,"name":"Heavenly Gloves of the Moon","icon":"inv_gauntlets_leather_raiddruid_j_01"}, -{"id":99448,"name":"Grips of Altered Reality","icon":"inv_gauntlets_robe_raidpriest_j_01"}, -{"id":99449,"name":"Don Tayo's Inferno Mittens","icon":"inv_glove_robe_raidwarlock_j_01"}, -{"id":99452,"name":"Warboots of Mighty Lords","icon":"inv_boots_plate_raidwarrior_j_01"}, -{"id":99453,"name":"Mirrored Boots","icon":"inv_boot_plate_raiddeathknight_j_01"}, -{"id":99454,"name":"Emberforged Elementium Boots","icon":"inv_boots_plate_raidpaladin_j_01"}, -{"id":99455,"name":"Earthen Scale Sabatons","icon":"inv_boots_mail_raidhunter_j_01"}, -{"id":99456,"name":"Footwraps of Quenched Fire","icon":"inv_boots_mail_raidshaman_j_01"}, -{"id":99457,"name":"Treads of the Craft","icon":"inv_boot_leather_raidrogue_j_01"}, -{"id":99458,"name":"Ethereal Footfalls","icon":"inv_boots_leather_raiddruid_j_01"}, -{"id":99459,"name":"Endless Dream Walkers","icon":"inv_boots_robe_raidpriest_j_01"}, -{"id":99460,"name":"Boots of the Black Flame","icon":"inv_boots_robe_raidmage_j_01"}, -{"id":99535,"name":"Vicious Hide Cloak","icon":"inv_misc_cape_16"}, -{"id":99536,"name":"Vicious Fur Cloak","icon":"inv_misc_cape_16"}, -{"id":99537,"name":"Vicious Embersilk Cape","icon":"inv_misc_cape_16"}, -{"id":99539,"name":"Vicious Sapphire Ring","icon":"inv_jewelry_ring_79"}, -{"id":99540,"name":"Vicious Amberjewel Band","icon":"inv_jewelry_ring_79"}, -{"id":99541,"name":"Vicious Ruby Signet","icon":"inv_jewelry_ring_79"}, -{"id":99542,"name":"Vicious Sapphire Necklace","icon":"inv_jewelry_necklace_44"}, -{"id":99543,"name":"Vicious Amberjewel Pendant","icon":"inv_jewelry_necklace_44"}, -{"id":99544,"name":"Vicious Ruby Choker","icon":"inv_jewelry_necklace_44"}, -{"id":99547,"name":"Vicious Charm of Triumph","icon":"inv_shield_56"}, -{"id":99548,"name":"Vicious Eyeball of Dominance","icon":"inv_shield_56"}, -{"id":99549,"name":"Vicious Jawbone of Conquest","icon":"inv_shield_56"}, -{"id":99623,"name":"Flintlocke's Woodchucker","icon":"trade_engineering"}, -{"id":99652,"name":"Brainsplinter","icon":"inv_knife_1h_bwdraid_d_01"}, -{"id":99653,"name":"Masterwork Elementium Spellblade","icon":"inv_knife_1h_cataclysm_b_02"}, -{"id":99654,"name":"Lightforged Elementium Hammer","icon":"inv_mace_84"}, -{"id":99655,"name":"Elementium-Edged Scalper","icon":"inv_axe_1h_pvp400_c_01"}, -{"id":99656,"name":"Pyrium Spellward","icon":"inv_sword_1h_cataclysm_c_06"}, -{"id":99657,"name":"Unbreakable Guardian","icon":"inv_sword_1h_cataclysm_c_04"}, -{"id":99658,"name":"Masterwork Elementium Deathblade","icon":"inv_sword_73"}, -{"id":99660,"name":"Witch-Hunter's Harvester","icon":"inv_polearm_2h_bwdraid_d_01"}, -{"id":100687,"name":"Extreme-Impact Hole Puncher","icon":"inv_weapon_rifle_44"}, -{"id":101162,"name":"Flaming Rune Weapon","icon":"inv_sword_1h_firelandsraid_d_01","hasBuff":true}, -{"id":101598,"name":"Drakehide Leg Armor","icon":"trade_leatherworking"}, -{"id":101920,"name":"World Mender's Pants","icon":"inv_pants_robe_raidpriest_k_01"}, -{"id":101921,"name":"Lavaquake Legwraps","icon":"inv_pants_robe_raidmage_k_01"}, -{"id":101922,"name":"Dreamwraps of the Light","icon":"inv_bracer_robe_raidpriest_k_01"}, -{"id":101923,"name":"Bracers of Unconquered Power","icon":"inv_bracer_robe_raidmage_k_01"}, -{"id":101924,"name":"Pyrium Legplates of Purified Evil","icon":"inv_pants_plate_raidpaladin_k_01"}, -{"id":101925,"name":"Unstoppable Destroyer's Legplates","icon":"inv_pants_plate_raiddeathknight_k_01"}, -{"id":101928,"name":"Foundations of Courage","icon":"inv_pants_plate_raidwarrior_k_01"}, -{"id":101929,"name":"Soul Redeemer Bracers","icon":"inv_bracer_plate_raidpaladin_k_01"}, -{"id":101931,"name":"Bracers of Destructive Strength","icon":"inv_bracer_plate_raiddeathknight_k_01"}, -{"id":101932,"name":"Titanguard Wristplates","icon":"inv_bracer_plate_raidwarrior_k_01"}, -{"id":101933,"name":"Leggings of Nature's Champion","icon":"inv_pant_leather_raiddruid_k_01"}, -{"id":101934,"name":"Deathscale Leggings","icon":"inv_pants_mail_raidshaman_k_01"}, -{"id":101935,"name":"Bladeshadow Leggings","icon":"inv_pants_leather_raidrogue_k_01"}, -{"id":101936,"name":"Rended Earth Leggings","icon":"inv_pants_mail_raidhunter_k_01"}, -{"id":101937,"name":"Bracers of Flowing Serenity","icon":"inv_bracer_leather_raiddruid_k_01"}, -{"id":101939,"name":"Thundering Deathscale Wristguards","icon":"inv_bracer_mail_raidshaman_k_01"}, -{"id":101940,"name":"Bladeshadow Wristguards","icon":"inv_bracer_leather_raidrogue_k_01"}, -{"id":101941,"name":"Bracers of the Hunter-Killer","icon":"inv_bracer_mail_raidhunter_k_01"}, -{"id":1215485,"name":"Explosive Shot","icon":"ability_hunter_explosiveshot","hasBuff":true}, -{"id":1216290,"name":"Bloodthirsty Eyeball of Dominance","icon":"inv_shield_56"}, -{"id":1216316,"name":"Bloodthirsty Charm of Triumph","icon":"inv_shield_56"}, -{"id":1216317,"name":"Bloodthirsty Jawbone of Conquest","icon":"inv_shield_56"}, -{"id":1216321,"name":"Bloodthirsty Amberjewel Pendant","icon":"inv_jewelry_necklace_44"}, -{"id":1216323,"name":"Bloodthirsty Sapphire Ring","icon":"inv_jewelry_ring_79"}, -{"id":1216328,"name":"Bloodthirsty Amberjewel Band","icon":"inv_jewelry_ring_79"}, -{"id":1216329,"name":"Bloodthirsty Ruby Signet","icon":"inv_jewelry_ring_79"}, -{"id":1216330,"name":"Bloodthirsty Sapphire Necklace","icon":"inv_jewelry_necklace_44"}, -{"id":1216331,"name":"Bloodthirsty Ruby Choker","icon":"inv_jewelry_necklace_44"}, -{"id":1216335,"name":"Bloodthirsty Fur Cloak","icon":"inv_misc_cape_16"}, -{"id":1216336,"name":"Bloodthirsty Hide Cloak","icon":"inv_misc_cape_16"}, -{"id":1216338,"name":"Bloodthirsty Embersilk Cape","icon":"inv_misc_cape_16"}, -{"id":1224138,"name":"Vicious Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04"}, -{"id":1224139,"name":"Vicious Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04"}, -{"id":1224140,"name":"Vicious Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04"}, -{"id":1224141,"name":"Vicious Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04"}, -{"id":1224142,"name":"Vicious Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04"}, -{"id":1224143,"name":"Vicious Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04"}, -{"id":1224144,"name":"Vicious Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04"}, -{"id":1224145,"name":"Vicious Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04"}, -{"id":1224146,"name":"Vicious Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04"}, -{"id":1224147,"name":"Vicious Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04"}, -{"id":1224148,"name":"Vicious Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04"}, -{"id":1224149,"name":"Vicious Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04"}, -{"id":1224150,"name":"Vicious Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04"}, -{"id":1224151,"name":"Vicious Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04"}, -{"id":1224152,"name":"Vicious Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04"}, -{"id":1224153,"name":"Vicious Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04"}, -{"id":1224154,"name":"Vicious Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04"}, -{"id":1224155,"name":"Vicious Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04"}, -{"id":1224156,"name":"Vicious Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04"}, -{"id":1224157,"name":"Vicious Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04"}, -{"id":1224158,"name":"Vicious Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04"}, -{"id":1224159,"name":"Vicious Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04"}, -{"id":1224160,"name":"Vicious Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04"}, -{"id":1224161,"name":"Vicious Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04"}, -{"id":1224162,"name":"Vicious Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04"}, -{"id":1224163,"name":"Vicious Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04"}, -{"id":1224164,"name":"Vicious Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04"}, -{"id":1224165,"name":"Vicious Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04"}, -{"id":1224166,"name":"Vicious Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04"}, -{"id":1224167,"name":"Vicious Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04"}, -{"id":1224168,"name":"Vicious Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04"}, -{"id":1224169,"name":"Vicious Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04"}, -{"id":1224170,"name":"Vicious Leather Belt","icon":"inv_belt_104"}, -{"id":1224171,"name":"Vicious Leather Boots","icon":"inv_boots_leather_16"}, -{"id":1224172,"name":"Vicious Leather Bracers","icon":"inv_bracer_83"}, -{"id":1224173,"name":"Vicious Leather Chest","icon":"inv_chest_leather_32"}, -{"id":1224174,"name":"Vicious Leather Gloves","icon":"inv_gauntlets_126"}, -{"id":1224175,"name":"Vicious Leather Helm","icon":"inv_helmet_193"}, -{"id":1224176,"name":"Vicious Leather Legs","icon":"inv_pants_leather_44"}, -{"id":1224177,"name":"Vicious Leather Shoulders","icon":"inv_shoulder_153"}, -{"id":1224178,"name":"Vicious Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04"}, -{"id":1224179,"name":"Vicious Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04"}, -{"id":1224180,"name":"Vicious Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04"}, -{"id":1224181,"name":"Vicious Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04"}, -{"id":1224182,"name":"Vicious Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04"}, -{"id":1224183,"name":"Vicious Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04"}, -{"id":1224184,"name":"Vicious Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04"}, -{"id":1224185,"name":"Vicious Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04"}, -{"id":1224186,"name":"Vicious Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04"}, -{"id":1224187,"name":"Vicious Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04"}, -{"id":1224188,"name":"Vicious Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04"}, -{"id":1224189,"name":"Vicious Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04"}, -{"id":1224190,"name":"Vicious Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04"}, -{"id":1224191,"name":"Vicious Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04"}, -{"id":1224192,"name":"Vicious Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04"}, -{"id":1224193,"name":"Vicious Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04"}, -{"id":1224194,"name":"Vicious Wyrmhide Belt","icon":"inv_belt_104"}, -{"id":1224195,"name":"Vicious Wyrmhide Boots","icon":"inv_boots_leather_16"}, -{"id":1224196,"name":"Vicious Wyrmhide Bracers","icon":"inv_bracer_83"}, -{"id":1224197,"name":"Vicious Wyrmhide Chest","icon":"inv_chest_leather_32"}, -{"id":1224198,"name":"Vicious Wyrmhide Gloves","icon":"inv_gauntlets_126"}, -{"id":1224199,"name":"Vicious Wyrmhide Helm","icon":"inv_helmet_193"}, -{"id":1224200,"name":"Vicious Wyrmhide Legs","icon":"inv_pants_leather_44"}, -{"id":1224201,"name":"Vicious Wyrmhide Shoulders","icon":"inv_shoulder_153"} +{"id":95349,"name":"Enchant Weapon - Glorious Tyranny","icon":"inv_misc_enchantedscroll"}, +{"id":96268,"name":"Death's Advance","icon":"spell_shadow_demonicempathy","hasBuff":true}, +{"id":98163,"name":"Enchant Weapon - Bloody Dancing Steel","icon":"inv_misc_enchantedscroll"}, +{"id":98164,"name":"Enchant Weapon - Spirit of Conquest","icon":"inv_misc_enchantedscroll"}, +{"id":100780,"name":"Jab","icon":"ability_monk_jab"}, +{"id":100784,"name":"Blackout Kick","icon":"ability_monk_roundhousekick"}, +{"id":100787,"name":"Tiger Palm","icon":"ability_monk_tigerpalm"}, +{"id":101546,"name":"Spinning Crane Kick","icon":"ability_monk_cranekick_new","hasBuff":true}, +{"id":102051,"name":"Frostjaw","icon":"ability_mage_frostjaw","hasBuff":true}, +{"id":102060,"name":"Disrupting Shout","icon":"warrior_disruptingshout"}, +{"id":102280,"name":"Displacer Beast","icon":"spell_druid_displacement","hasBuff":true}, +{"id":102351,"name":"Cenarion Ward","icon":"ability_druid_naturalperfection","hasBuff":true}, +{"id":102359,"name":"Mass Entanglement","icon":"spell_druid_massentanglement","hasBuff":true}, +{"id":102401,"name":"Wild Charge","icon":"spell_druid_wildcharge","hasBuff":true}, +{"id":102793,"name":"Ursol's Vortex","icon":"spell_druid_ursolsvortex","hasBuff":true}, +{"id":103826,"name":"Juggernaut","icon":"ability_warrior_bullrush","hasBuff":true}, +{"id":103827,"name":"Double Time","icon":"inv_misc_horn_04","hasBuff":true}, +{"id":103828,"name":"Warbringer","icon":"ability_warrior_warbringer","hasBuff":true}, +{"id":103840,"name":"Impending Victory","icon":"spell_impending_victory"}, +{"id":103985,"name":"Stance of the Fierce Tiger","icon":"monk_stance_whitetiger","hasBuff":true}, +{"id":105593,"name":"Fist of Justice","icon":"spell_holy_fistofjustice","hasBuff":true}, +{"id":105622,"name":"Clemency","icon":"ability_paladin_clemency","hasBuff":true}, +{"id":105809,"name":"Holy Avenger","icon":"ability_paladin_holyavenger","hasBuff":true}, +{"id":106707,"name":"Faerie Swarm","icon":"spell_druid_swarm","hasBuff":true}, +{"id":106731,"name":"Incarnation","icon":"spell_druid_incarnation","hasBuff":true}, +{"id":106737,"name":"Force of Nature","icon":"ability_druid_forceofnature","hasBuff":true}, +{"id":107270,"name":"Spinning Crane Kick","icon":"ability_monk_cranekick_new","hasBuff":true}, +{"id":107566,"name":"Staggering Shout","icon":"ability_bullrush","hasBuff":true}, +{"id":107570,"name":"Storm Bolt","icon":"warrior_talent_icon_stormbolt","hasBuff":true}, +{"id":107574,"name":"Avatar","icon":"warrior_talent_icon_avatar","hasBuff":true}, +{"id":108170,"name":"Roiling Blood","icon":"ability_deathknight_roilingblood","hasBuff":true}, +{"id":108194,"name":"Asphyxiate","icon":"ability_deathknight_asphixiate","hasBuff":true}, +{"id":108196,"name":"Death Siphon","icon":"ability_deathknight_deathsiphon"}, +{"id":108199,"name":"Gorefiend's Grasp","icon":"ability_deathknight_aoedeathgrip","hasBuff":true}, +{"id":108200,"name":"Remorseless Winter","icon":"ability_deathknight_remorselesswinters2","hasBuff":true}, +{"id":108201,"name":"Desecrated Ground","icon":"ability_deathknight_desecratedground","hasBuff":true}, +{"id":108208,"name":"Subterfuge","icon":"rogue_subterfuge","hasBuff":true}, +{"id":108209,"name":"Shadow Focus","icon":"rogue_shadowfocus","hasBuff":true}, +{"id":108210,"name":"Nerve Strike","icon":"rogue_nerve-_strike","hasBuff":true}, +{"id":108211,"name":"Leeching Poison","icon":"rogue_leeching_poison","hasBuff":true}, +{"id":108212,"name":"Burst of Speed","icon":"rogue_burstofspeed","hasBuff":true}, +{"id":108215,"name":"Paralytic Poison","icon":"rogue_paralytic_poison","hasBuff":true}, +{"id":108216,"name":"Dirty Tricks","icon":"ability_rogue_dirtydeeds","hasBuff":true}, +{"id":108238,"name":"Renewal","icon":"spell_nature_natureblessing"}, +{"id":108270,"name":"Stone Bulwark Totem","icon":"ability_shaman_stonebulwark"}, +{"id":108271,"name":"Astral Shift","icon":"ability_shaman_astralshift","hasBuff":true}, +{"id":108273,"name":"Windwalk Totem","icon":"ability_shaman_windwalktotem"}, +{"id":108281,"name":"Ancestral Guidance","icon":"ability_shaman_ancestralguidance","hasBuff":true}, +{"id":108282,"name":"Conductivity","icon":"ability_shaman_fortifyingwaters","hasBuff":true}, +{"id":108283,"name":"Echo of the Elements","icon":"ability_shaman_echooftheelements","hasBuff":true}, +{"id":108284,"name":"Totemic Persistence","icon":"ability_shaman_totemcooldownrefund","hasBuff":true}, +{"id":108285,"name":"Call of the Elements","icon":"ability_shaman_multitotemactivation"}, +{"id":108287,"name":"Totemic Projection","icon":"ability_shaman_totemrelocation"}, +{"id":108288,"name":"Heart of the Wild","icon":"spell_holy_blessingofagility","hasBuff":true}, +{"id":108359,"name":"Dark Regeneration","icon":"spell_warlock_darkregeneration","hasBuff":true}, +{"id":108370,"name":"Soul Leech","icon":"warlock_siphonlife","hasBuff":true}, +{"id":108371,"name":"Harvest Life","icon":"spell_warlock_harvestoflife","hasBuff":true}, +{"id":108373,"name":"Dream of Cenarius","icon":"ability_druid_dreamstate","hasBuff":true}, +{"id":108415,"name":"Soul Link","icon":"ability_warlock_soullink"}, +{"id":108416,"name":"Sacrificial Pact","icon":"warlock_sacrificial_pact","hasBuff":true}, +{"id":108482,"name":"Unbound Will","icon":"warlock_spelldrain"}, +{"id":108499,"name":"Grimoire of Supremacy","icon":"warlock_grimoireofcommand","hasBuff":true}, +{"id":108501,"name":"Grimoire of Service","icon":"warlock_grimoireofservice"}, +{"id":108503,"name":"Grimoire of Sacrifice","icon":"warlock_grimoireofsacrifice","hasBuff":true}, +{"id":108505,"name":"Archimonde's Darkness","icon":"achievement_boss_archimonde-","hasBuff":true}, +{"id":108508,"name":"Mannoroth's Fury","icon":"achievement_boss_magtheridon","hasBuff":true}, +{"id":108839,"name":"Ice Floes","icon":"spell_mage_iceflows","hasBuff":true}, +{"id":108843,"name":"Blazing Speed","icon":"spell_fire_burningspeed","hasBuff":true}, +{"id":108920,"name":"Void Tendrils","icon":"spell_priest_voidtendrils","hasBuff":true}, +{"id":108921,"name":"Psyfiend","icon":"spell_priest_psyfiend"}, +{"id":108942,"name":"Phantasm","icon":"ability_priest_phantasm","hasBuff":true}, +{"id":108945,"name":"Angelic Bulwark","icon":"ability_priest_angelicbulwark","hasBuff":true}, +{"id":109142,"name":"Twist of Fate","icon":"spell_shadow_mindtwisting","hasBuff":true}, +{"id":109175,"name":"Divine Insight","icon":"spell_priest_burningwill","hasBuff":true}, +{"id":109186,"name":"From Darkness, Comes Light","icon":"spell_holy_surgeoflight","hasBuff":true}, +{"id":109212,"name":"Spirit Bond","icon":"ability_druid_demoralizingroar","hasBuff":true}, +{"id":109215,"name":"Posthaste","icon":"ability_hunter_posthaste","hasBuff":true}, +{"id":109248,"name":"Binding Shot","icon":"spell_shaman_bindelemental","hasBuff":true}, +{"id":109259,"name":"Powershot","icon":"ability_hunter_resistanceisfutile"}, +{"id":109260,"name":"Aspect of the Iron Hawk","icon":"spell_hunter_aspectoftheironhawk","hasBuff":true}, +{"id":109298,"name":"Narrow Escape","icon":"inv_misc_web_01","hasBuff":true}, +{"id":109304,"name":"Exhilaration","icon":"ability_hunter_onewithnature"}, +{"id":109306,"name":"Thrill of the Hunt","icon":"ability_hunter_thrillofthehunt","hasBuff":true}, +{"id":110301,"name":"Evil is a Point of View","icon":"ability_paladin_turnevil","hasBuff":true}, +{"id":110744,"name":"Divine Star","icon":"spell_priest_divinestar","hasBuff":true}, +{"id":110913,"name":"Dark Bargain","icon":"ability_deathwing_bloodcorruption_death","hasBuff":true}, +{"id":110959,"name":"Greater Invisibility","icon":"ability_mage_greaterinvisibility"}, +{"id":111264,"name":"Ice Ward","icon":"spell_frost_frostward","hasBuff":true}, +{"id":111397,"name":"Blood Horror","icon":"ability_deathwing_bloodcorruption_earth","hasBuff":true}, +{"id":111400,"name":"Burning Rush","icon":"ability_deathwing_sealarmorbreachtga","hasBuff":true}, +{"id":112833,"name":"Spectral Guise","icon":"spell_priest_spectralguise","hasBuff":true}, +{"id":112948,"name":"Frost Bomb","icon":"spell_mage_frostbomb","hasBuff":true}, +{"id":113656,"name":"Fists of Fury","icon":"monk_ability_fistoffury","hasBuff":true}, +{"id":113724,"name":"Ring of Frost","icon":"spell_frost_ring-of-frost"}, +{"id":114003,"name":"Invocation","icon":"spell_arcane_arcane03","hasBuff":true}, +{"id":114014,"name":"Shuriken Toss","icon":"inv_throwingknife_07"}, +{"id":114015,"name":"Anticipation","icon":"ability_rogue_slaughterfromtheshadows","hasBuff":true}, +{"id":114028,"name":"Mass Spell Reflection","icon":"ability_warrior_shieldbreak","hasBuff":true}, +{"id":114029,"name":"Safeguard","icon":"ability_warrior_safeguard","hasBuff":true}, +{"id":114030,"name":"Vigilance","icon":"ability_warrior_vigilance","hasBuff":true}, +{"id":114039,"name":"Hand of Purity","icon":"spell_holy_sealofwisdom","hasBuff":true}, +{"id":114107,"name":"Soul of the Forest","icon":"ability_druid_manatree","hasBuff":true}, +{"id":114154,"name":"Unbreakable Spirit","icon":"spell_holy_unyieldingfaith","hasBuff":true}, +{"id":114157,"name":"Execution Sentence","icon":"spell_paladin_executionsentence"}, +{"id":114158,"name":"Light's Hammer","icon":"spell_paladin_lightshammer"}, +{"id":114163,"name":"Eternal Flame","icon":"inv_torch_thrown","hasBuff":true}, +{"id":114165,"name":"Holy Prism","icon":"spell_paladin_holyprism"}, +{"id":114556,"name":"Purgatory","icon":"inv_misc_shadowegg","hasBuff":true}, +{"id":114923,"name":"Nether Tempest","icon":"spell_mage_nethertempest","hasBuff":true}, +{"id":115008,"name":"Chi Torpedo","icon":"ability_monk_quitornado","hasBuff":true}, +{"id":115069,"name":"Stance of the Sturdy Ox","icon":"monk_stance_drunkenox","hasBuff":true}, +{"id":115072,"name":"Expel Harm","icon":"ability_monk_expelharm"}, +{"id":115073,"name":"Spinning Fire Blossom","icon":"ability_monk_explodingjadeblossom"}, +{"id":115098,"name":"Chi Wave","icon":"ability_monk_chiwave"}, +{"id":115129,"name":"Expel Harm","icon":"ability_monk_expelharm"}, +{"id":115173,"name":"Celerity","icon":"ability_monk_quipunch","hasBuff":true}, +{"id":115174,"name":"Momentum","icon":"ability_monk_standingkick","hasBuff":true}, +{"id":115288,"name":"Energizing Brew","icon":"ability_monk_energizingwine","hasBuff":true}, +{"id":115396,"name":"Ascension","icon":"ability_monk_ascension","hasBuff":true}, +{"id":115399,"name":"Chi Brew","icon":"ability_monk_chibrew"}, +{"id":115610,"name":"Temporal Shield","icon":"spell_mage_temporalshield","hasBuff":true}, +{"id":115989,"name":"Unholy Blight","icon":"spell_shadow_contagion","hasBuff":true}, +{"id":116011,"name":"Rune of Power","icon":"spell_mage_runeofpower"}, +{"id":116740,"name":"Tigereye Brew","icon":"ability_monk_tigereyebrandy","hasBuff":true}, +{"id":116768,"name":"Combo Breaker: Blackout Kick","icon":"ability_monk_roundhousekick","hasBuff":true}, +{"id":116841,"name":"Tiger's Lust","icon":"ability_monk_tigerslust","hasBuff":true}, +{"id":116844,"name":"Ring of Peace","icon":"spell_monk_ringofpeace","hasBuff":true}, +{"id":116847,"name":"Rushing Jade Wind","icon":"ability_monk_rushingjadewind","hasBuff":true}, +{"id":117012,"name":"Unleashed Fury","icon":"shaman_talent_unleashedfury","hasBuff":true}, +{"id":117013,"name":"Primal Elementalist","icon":"shaman_talent_primalelementalist","hasBuff":true}, +{"id":117014,"name":"Elemental Blast","icon":"shaman_talent_elementalblast"}, +{"id":117050,"name":"Glaive Toss","icon":"ability_glaivetoss","hasBuff":true}, +{"id":117418,"name":"Fists of Fury","icon":"monk_ability_fistoffury","hasBuff":true}, +{"id":117895,"name":"Eminence (Statue)","icon":"inv_jewelcrafting_jadeserpent"}, +{"id":117952,"name":"Crackling Jade Lightning","icon":"ability_monk_cracklingjadelightning","hasBuff":true}, +{"id":118000,"name":"Dragon Roar","icon":"ability_warrior_dragonroar"}, +{"id":118675,"name":"Crouching Tiger, Hidden Chimera","icon":"ability_hunter_pet_chimera","hasBuff":true}, +{"id":118864,"name":"Combo Breaker: Tiger Palm","icon":"ability_monk_palmstrike","hasBuff":true}, +{"id":119381,"name":"Leg Sweep","icon":"ability_monk_legsweep","hasBuff":true}, +{"id":119392,"name":"Charging Ox Wave","icon":"ability_monk_chargingoxwave","hasBuff":true}, +{"id":119975,"name":"Conversion","icon":"ability_deathknight_deathsiphon2","hasBuff":true}, +{"id":120224,"name":"Leather Specialization","icon":"inv_chest_cloth_05","hasBuff":true}, +{"id":120225,"name":"Leather Specialization","icon":"inv_chest_leather_06","hasBuff":true}, +{"id":120227,"name":"Leather Specialization","icon":"inv_chest_leather_06","hasBuff":true}, +{"id":120273,"name":"Tiger Strikes","icon":"ability_ghoulfrenzy","hasBuff":true}, +{"id":120277,"name":"Way of the Monk","icon":"ability_monk_dpsstance","hasBuff":true}, +{"id":120360,"name":"Barrage","icon":"ability_hunter_rapidregeneration","hasBuff":true}, +{"id":120517,"name":"Halo","icon":"ability_priest_halo"}, +{"id":120679,"name":"Dire Beast","icon":"ability_hunter_sickem","hasBuff":true}, +{"id":120697,"name":"Lynx Rush","icon":"ability_hunter_catlikereflexes","hasBuff":true}, +{"id":121135,"name":"Cascade","icon":"ability_priest_cascade"}, +{"id":121536,"name":"Angelic Feather","icon":"ability_priest_angelicfeather"}, +{"id":121817,"name":"Power Strikes","icon":"ability_monk_powerstrikes","hasBuff":true}, +{"id":122278,"name":"Dampen Harm","icon":"ability_monk_dampenharm","hasBuff":true}, +{"id":122280,"name":"Healing Elixirs","icon":"ability_monk_jasmineforcetea","hasBuff":true}, +{"id":122783,"name":"Diffuse Magic","icon":"spell_monk_diffusemagic","hasBuff":true}, +{"id":123040,"name":"Mindbender","icon":"spell_shadow_soulleech_3"}, +{"id":123693,"name":"Plague Leech","icon":"ability_creature_disease_02"}, +{"id":123904,"name":"Invoke Xuen, the White Tiger","icon":"ability_monk_summontigerstatue"}, +{"id":123986,"name":"Chi Burst","icon":"spell_arcane_arcanetorrent"}, +{"id":124081,"name":"Zen Sphere","icon":"ability_monk_forcesphere","hasBuff":true}, +{"id":124334,"name":"Swift Reflexes","icon":"ability_hunter_displacement","hasBuff":true}, +{"id":124335,"name":"Swift Reflexes","icon":"ability_hunter_displacement"}, +{"id":124974,"name":"Nature's Vigil","icon":"achievement_zone_feralas","hasBuff":true}, +{"id":125195,"name":"Tigereye Brew","icon":"spell_brew_dark","hasBuff":true}, +{"id":126456,"name":"Fortifying Brew","icon":"ability_monk_fortifyingale_new","hasBuff":true}, +{"id":126890,"name":"Eminence","icon":"inv_jewelcrafting_jadeserpent"}, +{"id":130320,"name":"Rising Sun Kick","icon":"ability_monk_risingsunkick","hasBuff":true}, +{"id":130392,"name":"Blink Strikes","icon":"spell_arcane_arcane04","hasBuff":true}, +{"id":131511,"name":"Prey on the Weak","icon":"ability_rogue_preyontheweak","hasBuff":true}, +{"id":131768,"name":"Feline Swiftness","icon":"spell_druid_tirelesspursuit","hasBuff":true}, +{"id":131894,"name":"A Murder of Crows","icon":"ability_hunter_murderofcrows","hasBuff":true}, +{"id":132469,"name":"Typhoon","icon":"ability_druid_typhoon"}, +{"id":136336,"name":"Stance of the Wise Serpent","icon":"monk_stance_wiseserpent","hasBuff":true}, +{"id":137587,"name":"Kil'jaeden's Cunning","icon":"achievement_boss_kiljaedan","hasBuff":true}, +{"id":137619,"name":"Marked for Death","icon":"achievement_bg_killingblow_berserker","hasBuff":true}, +{"id":138106,"name":"Cloak and Dagger","icon":"ability_rogue_unfairadvantage","hasBuff":true}, +{"id":139139,"name":"Solace and Insanity","icon":"ability_priest_flashoflight","hasBuff":true}, +{"id":140468,"name":"Flameglow","icon":"inv_elemental_primal_fire","hasBuff":true}, +{"id":145108,"name":"Ysera's Gift","icon":"inv_misc_head_dragon_green","hasBuff":true}, +{"id":147074,"name":"Rushing Streams","icon":"inv_spear_04","hasBuff":true}, +{"id":187737,"name":"Enchant Bracer - Assault","icon":"inv_misc_desecrated_clothbracer"}, +{"id":187783,"name":"Enchant Shield - Resistance","icon":"spell_holy_avengersshield"}, +{"id":187807,"name":"Enchant Cloak - Greater Nature Resistance","icon":"spell_nature_elementalshields"}, +{"id":187814,"name":"Enchant Shield - Frost Resistance","icon":"spell_frost_frostward"}, +{"id":187815,"name":"Enchant Cloak - Greater Fire Resistance","icon":"spell_fire_sealoffire"} ], "encounters":[ {"path":"Default/Raid Target","targets":[{"path":"Default/Raid Target","target":{"id":31146,"name":"Raid Target","level":88,"mobType":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,650,0,0,0,0,0,0,0,0,0,11977,0,120016403,0,0],"minBaseDamage":210000,"damageSpread":0.4,"swingSpeed":2.5}}]}, @@ -10749,5 +19279,171 @@ {"itemId":43378,"spellId":58033}, {"itemId":43380,"spellId":58038}, {"itemId":43379,"spellId":58039} +], +"consumables":[ +{"id":13442,"type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mighty Rage Potion","icon":"inv_potion_41","buffDuration":20,"effectIds":[696085]}, +{"id":54641,"type":1,"stats":[0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Pure Genius","icon":"inv_alchemy_elixir_06","buffDuration":20}, +{"id":54642,"type":1,"stats":[600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Ogre Rage","icon":"inv_alchemy_elixir_01","buffDuration":20}, +{"id":54643,"type":1,"stats":[0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Cobra","icon":"inv_alchemy_elixir_03","buffDuration":20}, +{"id":57191,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mythical Healing Potion","icon":"inv_misc_potionsetf","effectIds":[78550]}, +{"id":57192,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mythical Mana Potion","icon":"inv_misc_potionsetc","effectIds":[78551]}, +{"id":57193,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mighty Rejuvenation Potion","icon":"inv_misc_potionsetd","effectIds":[78553,78552]}, +{"id":57194,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Concentration","icon":"inv_potionc_3","buffDuration":10}, +{"id":58084,"type":6,"stats":[0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Ghost Elixir","icon":"inv_potiond_5","buffDuration":3600}, +{"id":58085,"type":2,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Steelskin","icon":"inv_potione_1","buffDuration":3600}, +{"id":58086,"type":2,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Draconic Mind","icon":"inv_potione_5","buffDuration":3600}, +{"id":58087,"type":2,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Winds","icon":"inv_potione_2","buffDuration":3600}, +{"id":58088,"type":2,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Titanic Strength","icon":"inv_potione_6","buffDuration":3600}, +{"id":58089,"type":6,"stats":[0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Naga","icon":"inv_potion_164","buffDuration":3600}, +{"id":58090,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4800,0,0,0,0],"name":"Earthen Potion","icon":"inv_alchemy_elixir_empty","buffDuration":25}, +{"id":58091,"type":1,"stats":[0,0,0,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Volcanic Potion","icon":"inv_potiond_3","buffDuration":25}, +{"id":58092,"type":6,"stats":[0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Cobra","icon":"inv_misc_potiona3","buffDuration":3600}, +{"id":58093,"type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"name":"Elixir of Deep Earth","icon":"inv_potionf_5","buffDuration":3600}, +{"id":58094,"type":6,"stats":[0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of Impossible Accuracy","icon":"inv_potionf_6","buffDuration":3600}, +{"id":58143,"type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0],"name":"Prismatic Elixir","icon":"inv_potionf_4","buffDuration":3600}, +{"id":58144,"type":6,"stats":[0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of Mighty Speed","icon":"inv_potionf_2","buffDuration":3600}, +{"id":58145,"type":1,"stats":[0,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Tol'vir","icon":"inv_potiond_4","buffDuration":25}, +{"id":58146,"type":1,"stats":[1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Golemblood Potion","icon":"inv_potiond_1","buffDuration":25}, +{"id":58148,"type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Master","icon":"inv_potiond_2","buffDuration":3600}, +{"id":58487,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Deepholm","icon":"inv_potionc_1"}, +{"id":58488,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Treasure Finding","icon":"inv_misc_potionsete","buffDuration":3600}, +{"id":58489,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Illusion","icon":"inv_potionc_5"}, +{"id":62290,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"buffsMainStat":true,"name":"Seafood Magnifique Feast","icon":"inv_misc_food_meat_cooked_02","buffDuration":180}, +{"id":62649,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"buffsMainStat":true,"name":"Fortune Cookie","icon":"inv_misc_fortunecookie","buffDuration":30}, +{"id":62651,"type":3,"stats":[0,0,60,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lightly Fried Lurker","icon":"inv_misc_food_157_fish_80","buffDuration":30}, +{"id":62652,"type":3,"stats":[0,0,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Seasoned Crab","icon":"inv_misc_birdbeck_02","buffDuration":30}, +{"id":62653,"type":3,"stats":[0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Salted Eye","icon":"inv_misc_eye_04","buffDuration":30}, +{"id":62654,"type":3,"stats":[0,0,60,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lavascale Fillet","icon":"inv_misc_food_156_fish_79","buffDuration":30}, +{"id":62655,"type":3,"stats":[0,0,60,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Broiled Mountain Trout","icon":"inv_misc_food_159_fish_82","buffDuration":30}, +{"id":62656,"type":3,"stats":[0,0,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Whitecrest Gumbo","icon":"inv_misc_food_meat_cooked_02","buffDuration":30}, +{"id":62657,"type":3,"stats":[0,0,60,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lurker Lunch","icon":"inv_misc_food_meat_cooked_05","buffDuration":30}, +{"id":62658,"type":3,"stats":[0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tender Baked Turtle","icon":"inv_misc_food_meat_cooked_05","buffDuration":30}, +{"id":62659,"type":3,"stats":[60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Hearty Seafood Soup","icon":"inv_misc_food_meat_cooked_03","buffDuration":30}, +{"id":62660,"type":3,"stats":[0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pickled Guppy","icon":"inv_misc_food_162_fish_90","buffDuration":30}, +{"id":62661,"type":3,"stats":[0,0,90,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Baked Rockfish","icon":"inv_misc_food_155_fish_78","buffDuration":30}, +{"id":62662,"type":3,"stats":[0,0,90,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Grilled Dragon","icon":"inv_misc_food_122_steak","buffDuration":30}, +{"id":62663,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lavascale Minestrone","icon":"inv_misc_food_154_fish_77","buffDuration":30}, +{"id":62664,"type":3,"stats":[0,0,90,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crocolisk Au Gratin","icon":"inv_misc_food_meat_cooked_10","buffDuration":30}, +{"id":62665,"type":3,"stats":[0,0,90,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Basilisk Liverdog","icon":"inv_misc_food_17","buffDuration":30}, +{"id":62666,"type":3,"stats":[0,0,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Delicious Sagefish Tail","icon":"inv_misc_food_158_fish_81","buffDuration":30}, +{"id":62667,"type":3,"stats":[0,0,90,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mushroom Sauce Mudfish","icon":"inv_misc_food_meat_cooked_01","buffDuration":30}, +{"id":62668,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Blackbelly Sushi","icon":"inv_misc_food_161_fish_89","buffDuration":30}, +{"id":62669,"type":3,"stats":[0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Skewered Eel","icon":"inv_misc_food_163_fish_91","buffDuration":30}, +{"id":62670,"type":3,"stats":[90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Beer-Basted Crocolisk","icon":"inv_misc_food_meat_cooked_08","buffDuration":30}, +{"id":62671,"type":3,"stats":[0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Severed Sagefish Head","icon":"inv_misc_food_160_fish_87","buffDuration":30}, +{"id":63300,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rogue's Draught","icon":"inv_potion_24","effectIds":[78550]}, +{"id":67415,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Draught of War","icon":"inv_misc_potiona4","effectIds":[98601,98597]}, +{"id":67438,"type":2,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Flowing Water","icon":"inv_potione_4","buffDuration":3600}, +{"id":67944,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Firelord's Draught","icon":"inv_misc_potiona5"}, +{"id":74642,"type":3,"stats":[250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Charbroiled Tiger Steak","icon":"inv_misc_food_cooked_tigersteak","buffDuration":10}, +{"id":74643,"type":3,"stats":[0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Sauteed Carrots","icon":"inv_misc_food_cooked_sauteedcarrots","buffDuration":10}, +{"id":74644,"type":3,"stats":[0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Swirling Mist Soup","icon":"inv_misc_food_cooked_swirlingmistsoup","buffDuration":10}, +{"id":74645,"type":3,"stats":[275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Eternal Blossom Fish","icon":"inv_misc_food_cooked_eternalblossomfish","buffDuration":10}, +{"id":74646,"type":3,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Black Pepper Ribs and Shrimp","icon":"inv_misc_food_cooked_golden_black_pepper_ribs_and_shrimp","buffDuration":10}, +{"id":74647,"type":3,"stats":[0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Valley Stir Fry","icon":"inv_misc_food_cooked_valleystirfry","buffDuration":10}, +{"id":74648,"type":3,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Sea Mist Rice Noodles","icon":"inv_misc_food_cooked_seamistricenoodles","buffDuration":10}, +{"id":74649,"type":3,"stats":[0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Braised Turtle","icon":"inv_misc_food_cooked_braisedturtle","buffDuration":10}, +{"id":74650,"type":3,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mogu Fish Stew","icon":"inv_misc_food_cooked_mogufishstew","buffDuration":10}, +{"id":74651,"type":3,"stats":[0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Shrimp Dumplings","icon":"inv_misc_food_cooked_shrimpdumplings","buffDuration":10}, +{"id":74652,"type":3,"stats":[0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fire Spirit Salmon","icon":"inv_misc_food_cooked_firespiritsalmon","buffDuration":10}, +{"id":74653,"type":3,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Steamed Crab Surprise","icon":"inv_misc_food_cooked_steamcrabsurprise","buffDuration":10}, +{"id":74654,"type":3,"stats":[0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Wildfowl Roast","icon":"inv_misc_food_cooked_wildfowlroast","buffDuration":10}, +{"id":74655,"type":3,"stats":[0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Twin Fish Platter","icon":"inv_misc_food_cooked_twinfishplatter","buffDuration":10}, +{"id":74656,"type":3,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Chun Tian Spring Rolls","icon":"inv_misc_food_cooked_springrolls","buffDuration":10}, +{"id":76086,"type":2,"stats":[0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Falling Leaves","icon":"trade_alchemy_potione2","buffDuration":3600}, +{"id":76087,"type":2,"stats":[0,0,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Earth","icon":"trade_alchemy_potione6","buffDuration":3600}, +{"id":76089,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Virmen's Bite","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":76090,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Mountains","icon":"trade_alchemy_potiond1","buffDuration":25}, +{"id":76091,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Greater Potion of Luck","icon":"trade_alchemy_potiona4","buffDuration":3600}, +{"id":76092,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Focus","icon":"trade_alchemy_potiond2","buffDuration":10}, +{"id":76093,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Jade Serpent","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":76094,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Alchemist's Rejuvenation","icon":"trade_alchemy_potiona3","effectIds":[115646,115645]}, +{"id":76095,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Mogu Power","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":76096,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Darkwater Potion","icon":"trade_alchemy_potionc6","buffDuration":15}, +{"id":76097,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Master Healing Potion","icon":"trade_alchemy_potiona2","effectIds":[115650]}, +{"id":76098,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Master Mana Potion","icon":"trade_alchemy_potiona5","effectIds":[115651]}, +{"id":79320,"type":3,"stats":[0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Half a Lovely Apple","icon":"inv_misc_food_19","buffDuration":10}, +{"id":80040,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Endless Master Healing Potion","icon":"inv_alchemy_potion_02","effectIds":[115650]}, +{"id":81400,"type":3,"stats":[0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pounded Rice Cake","icon":"inv_misc_food_168_ricecake01","buffDuration":10}, +{"id":81401,"type":3,"stats":[0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Yak Cheese Curds","icon":"inv_misc_food_vendor_yakcheesecurds","buffDuration":10}, +{"id":81402,"type":3,"stats":[0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Toasted Fish Jerky","icon":"inv_misc_food_vendor_toastedfishjerky","buffDuration":10}, +{"id":81403,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dried Peaches","icon":"inv_misc_leatherscrap_06","buffDuration":10}, +{"id":81404,"type":3,"stats":[0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dried Needle Mushrooms","icon":"inv_misc_food_vendor_needlemushroom","buffDuration":10}, +{"id":81405,"type":3,"stats":[0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Boiled Silkworm Pupa","icon":"inv_misc_food_vendor_boiledsilkwormpupa","buffDuration":10}, +{"id":81406,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Roasted Barley Tea","icon":"inv_misc_food_vendor_roastedbarlytea","buffDuration":10}, +{"id":81408,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Red Bean Bun","icon":"inv_misc_food_vendor_redbeanbun","buffDuration":10}, +{"id":81409,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tangy Yogurt","icon":"inv_misc_food_vendor_tangypeachyogurt","buffDuration":10}, +{"id":81410,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Green Curry Fish","icon":"inv_misc_food_vendor_greenfishbonescurry","buffDuration":10}, +{"id":81411,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Peach Pie","icon":"inv_misc_food_vendor_peachpie","buffDuration":10}, +{"id":81412,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Blanched Needle Mushrooms","icon":"inv_misc_food_vendor_blanchedneedlemushroom","buffDuration":10}, +{"id":81413,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Skewered Peanut Chicken","icon":"inv_misc_skeweredpeanutchicken","buffDuration":10}, +{"id":81414,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pearl Milk Tea","icon":"inv_drink_milk_01","buffDuration":10}, +{"id":86069,"type":3,"stats":[0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rice Pudding","icon":"inv_misc_food_vendor_poundedricecake_1","buffDuration":10}, +{"id":86070,"type":3,"stats":[0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Wildfowl Ginseng Soup","icon":"inv_misc_food_vendor_needlemushroomsoup","buffDuration":10}, +{"id":86073,"type":3,"stats":[0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Salmon","icon":"inv_misc_food_meat_cooked_06","buffDuration":10}, +{"id":86074,"type":3,"stats":[0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Vegetable Chips","icon":"inv_misc_food_vendor_poundedricecakes","buffDuration":10}, +{"id":86569,"type":1,"stats":[500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crystal of Insanity","icon":"inv_enchant_voidcrystal","buffDuration":3600}, +{"id":88416,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Adrenaline Shot","icon":"inv_gizmo_runichealthinjector","effectIds":[115650]}, +{"id":89594,"type":3,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Serpent Brew of Serenity","icon":"inv_misc_food_cooked_jadewitchbrew","buffDuration":20}, +{"id":89601,"type":3,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tiger Brew of Serenity","icon":"inv_misc_food_cooked_madbrewbreakfast","buffDuration":20}, +{"id":90457,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mah's Warm Yak-Tail Stew","icon":"inv_misc_food_cooked_mogufishstew","buffDuration":10}, +{"id":91803,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Snap Root Tuber","icon":"inv_misc_food_55","buffDuration":25}, +{"id":92941,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Might","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":92942,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Cunning","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":92943,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Deftness","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":92954,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Brawler's Healing Potion","icon":"trade_alchemy_potiona2","effectIds":[176074]}, +{"id":92964,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Helix's Acceleration Chemical Kafa Solution","icon":"inv_potion_95","buffDuration":60}, +{"id":92979,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mega-Potent Healing Potion","icon":"trade_alchemy_potiona3","effectIds":[176194]}, +{"id":93351,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Luck","icon":"trade_alchemy_potiona4","buffDuration":1200}, +{"id":94535,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Grilled Dinosaur Haunch","icon":"inv_misc_food_137_meat","buffDuration":10}, +{"id":95054,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Light Steps","icon":"trade_alchemy_potiona5","buffDuration":120}, +{"id":95055,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Frost Rune Trap","icon":"spell_mage_runeofpower","buffDuration":20}, +{"id":97156,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Frost Rune Trap","icon":"spell_mage_runeofpower","buffDuration":20}, +{"id":97157,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Light Steps","icon":"trade_alchemy_potiona5","buffDuration":120}, +{"id":98061,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Deftness","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":98062,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Cunning","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":98063,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Might","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":98121,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Amberseed Bun","icon":"inv_misc_food_vendor_redbeanbun","buffDuration":10}, +{"id":98122,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Camembert du Clefthoof","icon":"inv_misc_food_vendor_tangypeachyogurt","buffDuration":10}, +{"id":98123,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Whale Shark Caviar","icon":"inv_misc_food_vendor_greenfishbonescurry","buffDuration":10}, +{"id":98124,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bloodberry Tart","icon":"inv_misc_food_vendor_peachpie","buffDuration":10}, +{"id":98125,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Shaved Zangar Truffles","icon":"inv_misc_food_vendor_blanchedneedlemushroom","buffDuration":10}, +{"id":98126,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mechanopeep Foie Gras","icon":"inv_misc_skeweredpeanutchicken","buffDuration":10}, +{"id":98127,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dented Can of Kaja'Cola","icon":"inv_drink_21","buffDuration":10}, +{"id":101745,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mango Ice","icon":"inv_misc_food_mango_ice","buffDuration":10}, +{"id":101746,"type":3,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Seasoned Pomfruit Slices","icon":"inv_misc_food_vendor_slicedpeaches","buffDuration":10}, +{"id":101747,"type":3,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Farmer's Delight","icon":"inv_misc_food_117_heartysoup","buffDuration":10}, +{"id":101748,"type":3,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spiced Blossom Soup","icon":"inv_misc_herb_frostlotus","buffDuration":10}, +{"id":101749,"type":3,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Stuffed Lushrooms","icon":"spell_druid_wildmushroom","buffDuration":10}, +{"id":101750,"type":3,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fluffy Silkfeather Omelet","icon":"inv_misc_food_06","buffDuration":10}, +{"id":104277,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Illusion ","icon":"inv_potionc_5"}, +{"id":104339,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Harmonious River Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104340,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crazy Snake Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104341,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Steaming Goat Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104342,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Mushan Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104343,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Golden Dragon Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104344,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lucky Mushroom Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":105717,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rice-Wine Mushrooms","icon":"spell_druid_wildmushroom","buffDuration":10}, +{"id":105719,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Brew-Curried Whitefish","icon":"inv_misc_food_159_fish_white","buffDuration":10}, +{"id":105720,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Candied Apple","icon":"inv_misc_food_20","buffDuration":10}, +{"id":105721,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Hot Papaya Milk","icon":"inv_drink_17","buffDuration":10}, +{"id":105722,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Nutty Brew-Bun","icon":"inv_misc_food_103_potatobread","buffDuration":10}, +{"id":105723,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Peanut Pork Chops","icon":"inv_misc_food_47","buffDuration":10}, +{"id":105724,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fried Cheese Dumplings","icon":"inv_misc_food_cooked_shrimpdumplings","buffDuration":10} +], +"spellEffects":[ +{"id":78550,"spellId":78989,"type":10,"minEffectSize":22499,"effectSpread":5001,"resourceType":6}, +{"id":78551,"spellId":78990,"type":30,"minEffectSize":9249,"effectSpread":1501,"resourceType":1}, +{"id":78552,"spellId":78992,"type":30,"minEffectSize":8999,"effectSpread":2001,"resourceType":1}, +{"id":78553,"spellId":78992,"index":1,"type":10,"minEffectSize":8999,"effectSpread":2001,"resourceType":6}, +{"id":98597,"spellId":93932,"type":10,"minEffectSize":22499,"effectSpread":5001,"resourceType":6}, +{"id":98601,"spellId":93932,"index":1,"type":30,"minEffectSize":9249,"effectSpread":1501,"resourceType":1}, +{"id":115645,"spellId":105704,"type":10,"minEffectSize":1,"resourceType":6}, +{"id":115646,"spellId":105704,"index":1,"type":30,"minEffectSize":1,"resourceType":1}, +{"id":115650,"spellId":105708,"type":10,"minEffectSize":1,"resourceType":6}, +{"id":115651,"spellId":105709,"type":30,"resourceType":1}, +{"id":176074,"spellId":134998,"type":10,"minEffectSize":1,"resourceType":6}, +{"id":176194,"spellId":135081,"type":10,"minEffectSize":500000,"resourceType":6}, +{"id":696085,"spellId":17528,"type":30,"minEffectSize":449,"effectSpread":301,"resourceType":3} ] } \ No newline at end of file diff --git a/assets/database/leftover_db.bin b/assets/database/leftover_db.bin index 369f2978fb..783288eccd 100644 Binary files a/assets/database/leftover_db.bin and b/assets/database/leftover_db.bin differ diff --git a/assets/database/leftover_db.json b/assets/database/leftover_db.json index e282fe3afe..a4bcced4f8 100644 --- a/assets/database/leftover_db.json +++ b/assets/database/leftover_db.json @@ -1,28743 +1,18762 @@ { "items":[ -{"id":25,"name":"Worn Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.9,"ilvl":1,"quality":1}, -{"id":35,"name":"Bent Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":36,"name":"Worn Mace","icon":"inv_mace_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.9,"ilvl":1,"quality":1}, -{"id":37,"name":"Worn Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1}, -{"id":39,"name":"Recruit's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":40,"name":"Recruit's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":43,"name":"Squire's Boots","icon":"inv_boots_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":44,"name":"Squire's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":47,"name":"Footpad's Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":48,"name":"Footpad's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":51,"name":"Neophyte's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":52,"name":"Neophyte's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":55,"name":"Apprentice's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":56,"name":"Apprentice's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":57,"name":"Acolyte's Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":59,"name":"Acolyte's Shoes","icon":"inv_boots_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":60,"name":"Layered Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":61,"name":"Dwarven Leather Pants","icon":"inv_pants_leather_38v2","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"factionRestriction":1}, -{"id":79,"name":"Dwarven Cloth Britches","icon":"inv_pants_cloth_41v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"factionRestriction":1}, -{"id":80,"name":"Soft Fur-Lined Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":85,"name":"Dirty Leather Vest","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":120,"name":"Thug Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":121,"name":"Thug Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":129,"name":"Rugged Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":139,"name":"Brawler's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":140,"name":"Brawler's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":147,"name":"Rugged Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":153,"name":"Primitive Kilt","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":193,"name":"Tattered Cloth Vest","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":194,"name":"Tattered Cloth Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":195,"name":"Tattered Cloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":200,"name":"Thick Cloth Vest","icon":"inv_shirt_02","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":201,"name":"Thick Cloth Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":202,"name":"Thick Cloth Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":203,"name":"Thick Cloth Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":209,"name":"Dirty Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":210,"name":"Dirty Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":236,"name":"Cured Leather Armor","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":237,"name":"Cured Leather Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":238,"name":"Cured Leather Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":239,"name":"Cured Leather Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":285,"name":"Scalemail Vest","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":286,"name":"Scalemail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":287,"name":"Scalemail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":647,"name":"Destiny","icon":"inv_sword_19","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":168,"weaponSpeed":2.6,"ilvl":57,"quality":4}, -{"id":710,"name":"Bracers of the People's Militia","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1,"factionRestriction":1}, -{"id":711,"name":"Tattered Cloth Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":714,"name":"Dirty Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":718,"name":"Scalemail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":719,"name":"Rabbit Handler Gloves","icon":"inv_gauntlets_114v4","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":720,"name":"Brawler Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3}, -{"id":727,"name":"Notched Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-20,6,15,1547,-84,-17],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":2.1,"ilvl":10,"quality":2}, -{"id":744,"name":"Thunderbrew's Boot Flask","icon":"inv_drink_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":753,"name":"Dragonmaw Shortsword","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.2,"ilvl":28,"quality":2}, -{"id":754,"name":"Shortsword of Vengeance","icon":"inv_sword_14","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.4,"ilvl":47,"quality":3}, -{"id":756,"name":"Tunnel Pick","icon":"inv_pick_02","type":13,"weaponType":1,"handType":4,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":74,"weaponSpeed":3.1,"ilvl":29,"quality":2}, -{"id":763,"name":"Ice-Covered Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":766,"name":"Flanged Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2,"ilvl":7,"quality":1}, -{"id":767,"name":"Long Bo Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":2.5,"ilvl":8,"quality":1}, -{"id":768,"name":"Lumberjack Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":13,"weaponSpeed":2.6,"ilvl":9,"quality":1}, -{"id":776,"name":"Vendetta","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.8,"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":778,"name":"Kobold Excavation Pick","icon":"inv_pick_02","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2.4,"ilvl":7,"quality":1}, -{"id":781,"name":"Stone Gnoll Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":2.1,"ilvl":9,"quality":1}, -{"id":789,"name":"Stout Battlehammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,585,586,587,670,671,672,1180,1181,1182,1549,1801,1839,1991,2029,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.3,"ilvl":22,"quality":2}, -{"id":790,"name":"Forester's Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,24,256,501,502,585,586,587,670,671,672,840,841,842,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":2.5,"ilvl":23,"quality":2}, -{"id":791,"name":"Gnarled Ash Staff","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":99,"weaponSpeed":3.2,"ilvl":31,"quality":3}, -{"id":792,"name":"Knitted Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":793,"name":"Knitted Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":794,"name":"Knitted Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":795,"name":"Knitted Tunic","icon":"inv_shirt_10","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":796,"name":"Rough Leather Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":797,"name":"Rough Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":798,"name":"Rough Leather Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":799,"name":"Rough Leather Vest","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":809,"name":"Bloodrazor","icon":"inv_sword_28","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":130,"weaponSpeed":2.7,"ilvl":50,"quality":4}, -{"id":810,"name":"Hammer of the Northern Wind","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":2.1,"ilvl":54,"quality":4}, -{"id":811,"name":"Axe of the Deep Woods","icon":"inv_axe_07","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.7,"ilvl":57,"quality":4}, -{"id":812,"name":"Glowing Brightwood Staff","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,29,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":3.1,"ilvl":54,"quality":4}, -{"id":816,"name":"Small Hand Blade","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.5,"ilvl":11,"quality":2}, -{"id":820,"name":"Slicer Blade","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.5,"ilvl":17,"quality":2}, -{"id":821,"name":"Riverpaw Leather Vest","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":826,"name":"Brutish Riverpaw Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":2.8,"ilvl":15,"quality":2}, -{"id":827,"name":"Wicked Blackjack","icon":"inv_mace_01","type":13,"weaponType":4,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.3,"ilvl":17,"quality":2}, -{"id":832,"name":"Silver Defias Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":833,"name":"Lifestone","icon":"inv_ore_truesilver_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":4}, -{"id":837,"name":"Heavy Weave Armor","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":838,"name":"Heavy Weave Pants","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":839,"name":"Heavy Weave Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":840,"name":"Heavy Weave Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":843,"name":"Tanned Leather Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":844,"name":"Tanned Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":845,"name":"Tanned Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":846,"name":"Tanned Leather Jerkin","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":847,"name":"Chainmail Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":848,"name":"Chainmail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":849,"name":"Chainmail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":850,"name":"Chainmail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":851,"name":"Cutlass","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.2,"ilvl":15,"quality":1}, -{"id":852,"name":"Mace","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.9,"ilvl":14,"quality":1}, -{"id":853,"name":"Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.5,"ilvl":16,"quality":1}, -{"id":854,"name":"Quarter Staff","icon":"inv_staff_17","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":31,"weaponSpeed":2.7,"ilvl":16,"quality":1}, -{"id":860,"name":"Cavalier's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1,"factionRestriction":1}, -{"id":862,"name":"Runed Ring","icon":"inv_belt_34","type":11,"stats":[0,0,7,7,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":863,"name":"Gloom Reaper","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,135,136,151,155,508,593,678,848,1018,1103,1188,1552,1553,154,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":2.7,"ilvl":37,"quality":2}, -{"id":864,"name":"Knightly Longsword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,154,155,593,678,1188,1552,1553,-84,-78,-68,-20,-17,-14],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.5,"ilvl":38,"quality":2}, -{"id":865,"name":"Leaden Mace","icon":"inv_mace_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,590,591,592,675,676,677,1185,1186,1187,1551,1803,1841,1993,2031,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":2.9,"ilvl":31,"quality":2}, -{"id":866,"name":"Monk's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,410,411,527,528,529,612,613,614,782,783,784,867,868,869,1037,1038,1039,1122,1123,1124,1207,1208,1209,1563,1814,1815,1852,1853,1890,1891,1966,1967,2004,2005,2042,2043,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9,1562],"weaponDamageMin":60,"weaponDamageMax":90,"weaponSpeed":2.4,"ilvl":42,"quality":2}, -{"id":867,"name":"Gloves of Holy Might","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,10,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":4}, -{"id":868,"name":"Ardent Custodian","icon":"inv_mace_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.1,"ilvl":43,"quality":4}, -{"id":869,"name":"Dazzling Longsword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":41,"quality":4}, -{"id":870,"name":"Fiery War Axe","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":141,"weaponSpeed":2.9,"ilvl":40,"quality":4}, -{"id":871,"name":"Flurry Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":1.5,"ilvl":47,"quality":4}, -{"id":872,"name":"Rockslicer","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":72,"weaponSpeed":3.4,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":644,"zoneId":1581}}]}, -{"id":873,"name":"Staff of Jordan","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,17,22,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":180,"weaponSpeed":3.7,"ilvl":40,"quality":4}, -{"id":876,"name":"Worn Wooden Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":880,"name":"Staff of Horrors","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":62,"weaponSpeed":3.4,"ilvl":23,"quality":2}, -{"id":885,"name":"Black Metal Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.1,"ilvl":24,"quality":2}, -{"id":886,"name":"Black Metal Shortsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.7,"ilvl":26,"quality":2}, -{"id":888,"name":"Naga Battle Gloves","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4831,"zoneId":719}}]}, -{"id":890,"name":"Twisted Chanter's Staff","icon":"inv_staff_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.4,"ilvl":24,"quality":3}, -{"id":892,"name":"Gnoll Casting Gloves","icon":"inv_gauntlets_04","type":7,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":897,"name":"Madwolf Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":899,"name":"Venom Web Fang","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.5,"ilvl":19,"quality":2}, -{"id":911,"name":"Ironwood Treebranch","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":69,"weaponSpeed":3.4,"ilvl":25,"quality":2}, -{"id":913,"name":"Huge Ogre Sword","icon":"inv_sword_13","type":13,"weaponType":9,"handType":4,"stats":[11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":90,"weaponSpeed":3.8,"ilvl":29,"quality":2}, -{"id":914,"name":"Large Ogre Chain Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[10,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":920,"name":"Wicked Spiked Mace","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.5,"ilvl":25,"quality":2}, -{"id":922,"name":"Dacian Falx","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":60,"weaponSpeed":3.1,"ilvl":26,"quality":1}, -{"id":923,"name":"Longsword","icon":"inv_sword_23","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":2.3,"ilvl":26,"quality":1}, -{"id":924,"name":"Maul","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":56,"weaponSpeed":2.9,"ilvl":26,"quality":1}, -{"id":925,"name":"Flail","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.2,"ilvl":25,"quality":1}, -{"id":926,"name":"Battle Axe","icon":"inv_throwingaxe_05","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.8,"ilvl":25,"quality":1}, -{"id":927,"name":"Double Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":36,"weaponSpeed":2.5,"ilvl":24,"quality":1}, -{"id":928,"name":"Long Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3,"ilvl":25,"quality":1}, -{"id":934,"name":"Stalvan's Reaper","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.9,"ilvl":37,"quality":3}, -{"id":935,"name":"Night Watch Shortsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3}, -{"id":936,"name":"Midnight Mace","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":2.5,"ilvl":38,"quality":3}, -{"id":937,"name":"Black Duskwood Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":113,"weaponSpeed":2.8,"ilvl":38,"quality":3}, -{"id":940,"name":"Robes of Insight","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,25,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":4}, -{"id":942,"name":"Freezing Band","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":4}, -{"id":943,"name":"Warden Staff","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,11,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":134,"weaponSpeed":2.4,"ilvl":48,"quality":4}, -{"id":944,"name":"Elemental Mage Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":221,"weaponSpeed":3.2,"ilvl":61,"quality":4}, -{"id":945,"name":"Shadow Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1}, -{"id":948,"name":"Nature Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1}, -{"id":983,"name":"Red Linen Sash","icon":"inv_belt_43c","type":8,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":83,"name":"Fine Linen Goods"}}],"factionRestriction":1}, -{"id":1008,"name":"Well-Used Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.1,"ilvl":10,"quality":1}, -{"id":1009,"name":"Compact Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.3,"ilvl":13,"quality":2}, -{"id":1010,"name":"Gnarled Short Staff","icon":"inv_staff_17","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":2.8,"ilvl":7,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":1011,"name":"Sharp Axe","icon":"inv_axe_04","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.6,"ilvl":7,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":1076,"name":"Defias Renegade Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":717,"otherName":"Trash"}}]}, -{"id":1077,"name":"Defias Mage Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"unique":true}, -{"id":1116,"name":"Ring of Pure Silver","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":1121,"name":"Feet of the Lynx","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3}, -{"id":1131,"name":"Totem of Infliction","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":1154,"name":"Belt of the People's Militia","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1,"factionRestriction":1}, -{"id":1155,"name":"Rod of the Sleepwalker","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":71,"weaponSpeed":2.8,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4832,"zoneId":719}}]}, -{"id":1156,"name":"Lavishly Jeweled Ring","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1763,"zoneId":1581}}]}, -{"id":1158,"name":"Solid Metal Club","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.7,"ilvl":10,"quality":2,"sources":[{"quest":{"id":46,"name":"Bounty on Murlocs"}}],"factionRestriction":1}, -{"id":1159,"name":"Militia Quarterstaff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":7,"weaponSpeed":2.8,"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":1161,"name":"Militia Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":2.5,"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":1168,"name":"Skullflame Shield","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":4}, -{"id":1169,"name":"Blackskull Shield","icon":"spell_shadow_grimward","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":4}, -{"id":1171,"name":"Well-Stitched Robe","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":59,"name":"Cloth and Leather Armor"}}],"factionRestriction":1}, -{"id":1172,"name":"Grayson's Torch","icon":"inv_torch_lit","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":1173,"name":"Weather-Worn Boots","icon":"inv_boots_leather_10","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":88,"name":"Princess Must Die!"}}],"factionRestriction":1}, -{"id":1182,"name":"Brass-Studded Bracers","icon":"inv_bracer_61","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":88,"name":"Princess Must Die!"}}],"factionRestriction":1}, -{"id":1183,"name":"Elastic Wristguards","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":147,"name":"Manhunt"}}],"factionRestriction":1}, -{"id":1189,"name":"Overseer's Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"unique":true}, -{"id":1190,"name":"Overseer's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":1194,"name":"Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":3,"ilvl":4,"quality":1}, -{"id":1195,"name":"Kobold Mining Shovel","icon":"inv_misc_shovel_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":10,"weaponSpeed":2.7,"ilvl":6,"quality":1}, -{"id":1196,"name":"Tabar","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":32,"weaponSpeed":3.2,"ilvl":14,"quality":1}, -{"id":1197,"name":"Giant Mace","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.5,"ilvl":15,"quality":1}, -{"id":1198,"name":"Claymore","icon":"inv_sword_40","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.2,"ilvl":15,"quality":1}, -{"id":1200,"name":"Large Wooden Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":1201,"name":"Dull Heater Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":1}, -{"id":1202,"name":"Wall Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":1203,"name":"Aegis of Stormwind","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[6,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3}, -{"id":1204,"name":"The Green Tower","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,13,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":4}, -{"id":1207,"name":"Murphstar","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,135,136,154,155,593,678,1188,1552,1553,1804,1805,1842,1843,1994,1995,2032,2033,-84,-78,-20,-19,-17,-14],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.1,"ilvl":39,"quality":2}, -{"id":1211,"name":"Gnoll War Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":1213,"name":"Gnoll Kindred Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":1214,"name":"Gnoll Punisher","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":2.4,"ilvl":17,"quality":2}, -{"id":1215,"name":"Support Girdle","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":1216,"name":"Frost Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":1218,"name":"Heavy Gnoll War Club","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":61,"weaponSpeed":3.7,"ilvl":21,"quality":2}, -{"id":1219,"name":"Redridge Machete","icon":"inv_sword_16","type":13,"weaponType":9,"handType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":2.3,"ilvl":16,"quality":2}, -{"id":1220,"name":"Lupine Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":4,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":36,"weaponSpeed":2.3,"ilvl":20,"quality":2}, -{"id":1263,"name":"Brain Hacker","icon":"inv_weapon_halberd_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":2.1,"ilvl":60,"quality":4}, -{"id":1264,"name":"Headbasher","icon":"inv_mace_07","type":13,"weaponType":4,"handType":4,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":49,"weaponSpeed":2.3,"ilvl":26,"quality":2}, -{"id":1265,"name":"Scorpion Sting","icon":"inv_sword_12","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":2.4,"ilvl":39,"quality":3}, -{"id":1270,"name":"Finely Woven Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":1273,"name":"Forest Chain","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":1275,"name":"Deputy Chain Coat","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":1276,"name":"Fire Hardened Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":1}, -{"id":1280,"name":"Cloaked Hood","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":1282,"name":"Sparkmetal Coif","icon":"inv_helmet_02","type":1,"armorType":3,"stats":[9,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":1287,"name":"Giant Tarantula Fang","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.4,"ilvl":15,"quality":2}, -{"id":1292,"name":"Butcher's Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3886,"zoneId":209}}]}, -{"id":1296,"name":"Blackrock Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.5,"ilvl":21,"quality":2}, -{"id":1297,"name":"Robes of the Shadowcaster","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,1,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":1299,"name":"Lesser Belt of the Spire","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":1300,"name":"Lesser Staff of the Spire","icon":"inv_wand_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":54,"weaponSpeed":3.4,"ilvl":20,"quality":2}, -{"id":1302,"name":"Black Whelp Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":1303,"name":"Bridgeworker's Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":1304,"name":"Riding Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":1306,"name":"Wolfmane Wristguards","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":1310,"name":"Smith's Trousers","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":1314,"name":"Ghoul Fingers","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":1315,"name":"Lei of Lilies","icon":"inv_misc_flower_01","type":2,"stats":[0,0,10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":4}, -{"id":1317,"name":"Hardened Root Staff","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[1,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":67,"weaponSpeed":3.3,"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":1318,"name":"Night Reaver","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":78,"weaponSpeed":3.3,"ilvl":23,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1319,"name":"Ring of Iron Will","icon":"inv_belt_31","type":11,"stats":[0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":1351,"name":"Fingerbone Bracers","icon":"inv_bracer_16","type":6,"armorType":1,"stats":[0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":1355,"name":"Buckskin Cape","icon":"inv_misc_pelt_bear_02","type":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":1359,"name":"Lion-Stamped Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":87,"name":"Goldtooth"}}],"factionRestriction":1}, -{"id":1360,"name":"Stormwind Chain Gloves","icon":"inv_gauntlets_105","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":147,"name":"Manhunt"}}],"factionRestriction":1}, -{"id":1364,"name":"Ragged Leather Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":1366,"name":"Ragged Leather Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":1367,"name":"Ragged Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":1368,"name":"Ragged Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":1369,"name":"Ragged Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":1370,"name":"Ragged Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":1372,"name":"Ragged Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":1374,"name":"Frayed Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":1376,"name":"Frayed Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":1377,"name":"Frayed Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":1378,"name":"Frayed Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":1380,"name":"Frayed Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":1382,"name":"Rock Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.9,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":1383,"name":"Stone Tomahawk","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.1,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":1384,"name":"Dull Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.9,"ilvl":3,"quality":1}, -{"id":1386,"name":"Thistlewood Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.5,"ilvl":5,"quality":1}, -{"id":1387,"name":"Ghoulfang","icon":"inv_sword_07","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":54,"weaponSpeed":3.6,"ilvl":19,"quality":2}, -{"id":1388,"name":"Crooked Staff","icon":"inv_staff_22","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":7,"weaponSpeed":3.3,"ilvl":3,"quality":1}, -{"id":1389,"name":"Kobold Mining Mallet","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2.3,"ilvl":7,"quality":1}, -{"id":1391,"name":"Riverpaw Mystic Staff","icon":"inv_wand_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":43,"weaponSpeed":3,"ilvl":18,"quality":2}, -{"id":1394,"name":"Driftwood Club","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2}, -{"id":1395,"name":"Apprentice's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":1396,"name":"Acolyte's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":1404,"name":"Tidal Charm","icon":"inv_misc_rune_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":1405,"name":"Foamspittle Staff","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":3.2,"ilvl":17,"quality":2}, -{"id":1406,"name":"Pearl-Encrusted Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":53,"weaponSpeed":3.2,"ilvl":21,"quality":2}, -{"id":1411,"name":"Withered Staff","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":12,"weaponSpeed":3,"ilvl":8}, -{"id":1412,"name":"Crude Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":12,"weaponSpeed":3.2,"ilvl":7}, -{"id":1413,"name":"Feeble Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":2,"ilvl":8}, -{"id":1414,"name":"Cracked Sledge","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":15,"weaponSpeed":3.3,"ilvl":9}, -{"id":1415,"name":"Carpenter's Mallet","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":1.7,"ilvl":9}, -{"id":1416,"name":"Rusty Hatchet","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.1,"ilvl":9}, -{"id":1417,"name":"Beaten Battle Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":3.1,"ilvl":8}, -{"id":1418,"name":"Worn Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":1419,"name":"Worn Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8}, -{"id":1420,"name":"Worn Leather Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9}, -{"id":1421,"name":"Worn Hide Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":1422,"name":"Worn Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6}, -{"id":1423,"name":"Worn Leather Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":1425,"name":"Worn Leather Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9}, -{"id":1427,"name":"Patchwork Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":1429,"name":"Patchwork Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6}, -{"id":1430,"name":"Patchwork Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":1431,"name":"Patchwork Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8}, -{"id":1433,"name":"Patchwork Armor","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":1436,"name":"Frontier Britches","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":1438,"name":"Warrior's Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":1440,"name":"Gnoll Skull Basher","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.7,"ilvl":19,"quality":2}, -{"id":1443,"name":"Jeweled Amulet of Cainwyn","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,8,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":1445,"name":"Blackrock Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1}, -{"id":1446,"name":"Blackrock Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":1447,"name":"Ring of Saviors","icon":"inv_belt_27","type":11,"stats":[0,0,14,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":4,"unique":true}, -{"id":1448,"name":"Blackrock Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":1449,"name":"Minor Channeling Ring","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"factionRestriction":1}, -{"id":1454,"name":"Axe of the Enforcer","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.6,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":1455,"name":"Blackrock Champion's Axe","icon":"inv_weapon_halbard_01","type":13,"weaponType":1,"handType":4,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":62,"weaponSpeed":3.2,"ilvl":24,"quality":2}, -{"id":1457,"name":"Shadowhide Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.2,"ilvl":22,"quality":2}, -{"id":1458,"name":"Shadowhide Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3,"ilvl":23,"quality":2}, -{"id":1459,"name":"Shadowhide Scalper","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":2,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":2.9,"ilvl":24,"quality":2}, -{"id":1460,"name":"Shadowhide Two-Handed Sword","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":46,"weaponSpeed":2.9,"ilvl":20,"quality":2}, -{"id":1461,"name":"Slayer's Battle Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":2.9,"ilvl":25,"quality":2}, -{"id":1462,"name":"Ring of the Shadow","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"unique":true}, -{"id":1465,"name":"Tigerbane","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.9,"ilvl":38,"quality":2}, -{"id":1469,"name":"Scimitar of Atun","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.6,"ilvl":19,"quality":2}, -{"id":1473,"name":"Riverside Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.1,"ilvl":19,"quality":2}, -{"id":1479,"name":"Salma's Oven Mitts","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":1}, -{"id":1480,"name":"Fist of the People's Militia","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.6,"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":1481,"name":"Grimclaw","icon":"inv_axe_13","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.5,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":1482,"name":"Shadowfang","icon":"inv_sword_13","type":13,"weaponType":9,"handType":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.7,"ilvl":24,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1483,"name":"Face Smasher","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.6,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1484,"name":"Witching Stave","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":79,"weaponSpeed":3.6,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1485,"name":"Pitchfork","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":45,"weaponSpeed":3.7,"ilvl":25}, -{"id":1486,"name":"Tree Bark Jacket","icon":"inv_shirt_02","type":5,"armorType":1,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":1488,"name":"Avenger's Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":1489,"name":"Gloomshroud Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,8,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1490,"name":"Guardian Talisman","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"unique":true}, -{"id":1491,"name":"Ring of Precision","icon":"inv_jewelry_ring_14","type":11,"stats":[0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":1493,"name":"Heavy Marauder Scimitar","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":54,"weaponSpeed":2.4,"ilvl":27,"quality":3}, -{"id":1495,"name":"Calico Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13}, -{"id":1497,"name":"Calico Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":1498,"name":"Calico Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15}, -{"id":1499,"name":"Calico Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":1501,"name":"Calico Tunic","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13}, -{"id":1502,"name":"Warped Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":1503,"name":"Warped Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15}, -{"id":1504,"name":"Warped Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":1505,"name":"Warped Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12}, -{"id":1506,"name":"Warped Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13}, -{"id":1507,"name":"Warped Leather Pants","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":1509,"name":"Warped Leather Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":1510,"name":"Heavy Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.4,"ilvl":12}, -{"id":1511,"name":"Commoner's Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.3,"ilvl":13}, -{"id":1512,"name":"Crude Battle Axe","icon":"inv_throwingaxe_05","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":18,"weaponSpeed":3,"ilvl":12}, -{"id":1513,"name":"Old Greatsword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":3.6,"ilvl":14}, -{"id":1514,"name":"Rusty Warhammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":14}, -{"id":1515,"name":"Rough Wooden Staff","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":20,"weaponSpeed":3.3,"ilvl":12}, -{"id":1516,"name":"Worn Hatchet","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.1,"ilvl":14}, -{"id":1521,"name":"Lumbering Ogre Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[15,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":3.9,"ilvl":44,"quality":2}, -{"id":1522,"name":"Headhunting Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.2,"ilvl":36,"quality":2}, -{"id":1523,"name":"Huge Stone Club","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":107,"weaponSpeed":3.6,"ilvl":36,"quality":2}, -{"id":1539,"name":"Gnarled Hermit's Staff","icon":"inv_staff_17","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":42,"weaponSpeed":2.8,"ilvl":19,"quality":2}, -{"id":1547,"name":"Shield of the Faith","icon":"spell_holy_powerwordshield","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":1557,"name":"Buckler of the Seas","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{}}]}, -{"id":1560,"name":"Bluegill Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":1561,"name":"Harvester's Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":1566,"name":"Edge of the People's Militia","icon":"inv_sword_25","type":13,"weaponType":9,"handType":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":39,"weaponSpeed":2.9,"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":1602,"name":"Sickle Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[6,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.6,"ilvl":39,"quality":3}, -{"id":1604,"name":"Chromatic Sword","icon":"inv_sword_22","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":150,"weaponSpeed":3.6,"ilvl":45,"quality":2}, -{"id":1607,"name":"Soulkeeper","icon":"spell_shadow_haunting","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,11,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":141,"weaponDamageMax":213,"weaponSpeed":3.8,"ilvl":54,"quality":3}, -{"id":1608,"name":"Skullcrusher Mace","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,189,596,597,598,681,682,683,1191,1192,1193,1554,1806,1844,1996,2034,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.7,"ilvl":47,"quality":2}, -{"id":1613,"name":"Spiritchaser Staff","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,335,336,386,387,412,413,530,531,532,615,616,617,785,786,787,870,871,872,1040,1041,1042,1125,1126,1127,1210,1211,1212,1564,1565,1816,1817,1854,1892,1893,1968,1969,2006,2007,2044,2045,-84,-81,-69,-68,-20,-19,-15,-13,-12,-9,1855],"weaponDamageMin":75,"weaponDamageMax":113,"weaponSpeed":2.8,"ilvl":44,"quality":2}, -{"id":1624,"name":"Skullsplitter Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":1625,"name":"Exquisite Flamberge","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,309,333,334,358,359,527,528,529,612,613,614,697,698,699,867,868,869,1037,1038,1039,1122,1123,1124,1207,1208,1209,1562,1563,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":72,"weaponDamageMax":109,"weaponSpeed":3,"ilvl":41,"quality":2}, -{"id":1639,"name":"Grinning Axe","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,363,364,536,537,538,621,622,623,706,707,708,876,877,878,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,1046],"weaponDamageMin":85,"weaponDamageMax":128,"weaponSpeed":2.8,"ilvl":49,"quality":2}, -{"id":1640,"name":"Monstrous War Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,309,333,334,358,359,527,528,529,612,613,614,697,698,699,867,868,869,1037,1038,1039,1122,1123,1124,1207,1208,1209,1562,1563,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":92,"weaponDamageMax":139,"weaponSpeed":3.7,"ilvl":42,"quality":2}, -{"id":1659,"name":"Engineering Gloves","icon":"inv_gauntlets_04","type":7,"armorType":1,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":1664,"name":"Spellforce Rod","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":116,"weaponSpeed":3.2,"ilvl":41,"quality":2}, -{"id":1677,"name":"Drake-Scale Vest","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[15,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":1678,"name":"Black Ogre Kickers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[6,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":1679,"name":"Korg Bat","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":92,"weaponSpeed":3.1,"ilvl":36,"quality":2}, -{"id":1680,"name":"Headchopper","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[9,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":117,"weaponSpeed":2.9,"ilvl":44,"quality":2}, -{"id":1713,"name":"Ankh of Life","icon":"spell_holy_prayerofhealing02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":1714,"name":"Necklace of Calisea","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,8,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3}, -{"id":1715,"name":"Polished Jazeraint Armor","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3}, -{"id":1716,"name":"Robe of the Magi","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,9,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3}, -{"id":1717,"name":"Double Link Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,221,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3}, -{"id":1718,"name":"Basilisk Hide Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,8,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3}, -{"id":1720,"name":"Tanglewood Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[9,0,0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":3.4,"ilvl":46,"quality":3}, -{"id":1721,"name":"Viking Warhammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":112,"weaponSpeed":2.4,"ilvl":54,"quality":3}, -{"id":1722,"name":"Thornstone Sledgehammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":3.2,"ilvl":42,"quality":3}, -{"id":1726,"name":"Poison-Tipped Bone Spear","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":87,"weaponSpeed":2.3,"ilvl":36,"quality":3}, -{"id":1727,"name":"Sword of Decay","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":3.4,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":1728,"name":"Teebu's Blazing Longsword","icon":"inv_sword_22","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":178,"weaponSpeed":2.9,"ilvl":65,"quality":4,"unique":true}, -{"id":1730,"name":"Worn Mail Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12}, -{"id":1731,"name":"Worn Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13}, -{"id":1732,"name":"Worn Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":1733,"name":"Worn Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15}, -{"id":1734,"name":"Worn Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":1735,"name":"Worn Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12}, -{"id":1737,"name":"Worn Mail Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":1738,"name":"Laced Mail Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":1739,"name":"Laced Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1740,"name":"Laced Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16}, -{"id":1741,"name":"Laced Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":1742,"name":"Laced Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":1743,"name":"Laced Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":1744,"name":"Laced Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1745,"name":"Laced Mail Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16}, -{"id":1746,"name":"Linked Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25}, -{"id":1747,"name":"Linked Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":1748,"name":"Linked Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":1749,"name":"Linked Chain Cloak","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23}, -{"id":1750,"name":"Linked Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24}, -{"id":1751,"name":"Linked Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25}, -{"id":1752,"name":"Linked Chain Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":1753,"name":"Linked Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":1754,"name":"Reinforced Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26}, -{"id":1755,"name":"Reinforced Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27}, -{"id":1756,"name":"Reinforced Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":1757,"name":"Reinforced Chain Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29}, -{"id":1758,"name":"Reinforced Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":1759,"name":"Reinforced Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26}, -{"id":1760,"name":"Reinforced Chain Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27}, -{"id":1761,"name":"Reinforced Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":1764,"name":"Canvas Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":1766,"name":"Canvas Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":1767,"name":"Canvas Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":1768,"name":"Canvas Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1769,"name":"Canvas Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1770,"name":"Canvas Vest","icon":"inv_shirt_grey_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":1772,"name":"Brocade Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23}, -{"id":1774,"name":"Brocade Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24}, -{"id":1775,"name":"Brocade Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25}, -{"id":1776,"name":"Brocade Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":1777,"name":"Brocade Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":1778,"name":"Brocade Vest","icon":"inv_shirt_blue_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23}, -{"id":1780,"name":"Cross-Stitched Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29}, -{"id":1782,"name":"Cross-Stitched Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":1783,"name":"Cross-Stitched Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26}, -{"id":1784,"name":"Cross-Stitched Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27}, -{"id":1785,"name":"Cross-Stitched Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":1786,"name":"Cross-Stitched Vest","icon":"inv_shirt_yellow_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29}, -{"id":1787,"name":"Patched Leather Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":1788,"name":"Patched Leather Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":1789,"name":"Patched Leather Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1790,"name":"Patched Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16}, -{"id":1791,"name":"Patched Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":1792,"name":"Patched Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":1793,"name":"Patched Leather Shoulderpads","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1794,"name":"Patched Leather Jerkin","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20}, -{"id":1795,"name":"Rawhide Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24}, -{"id":1796,"name":"Rawhide Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25}, -{"id":1797,"name":"Rawhide Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":1798,"name":"Rawhide Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":1799,"name":"Rawhide Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23}, -{"id":1800,"name":"Rawhide Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24}, -{"id":1801,"name":"Rawhide Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25}, -{"id":1802,"name":"Rawhide Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":1803,"name":"Tough Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":1804,"name":"Tough Leather Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26}, -{"id":1805,"name":"Tough Leather Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27}, -{"id":1806,"name":"Tough Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":1807,"name":"Tough Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29}, -{"id":1808,"name":"Tough Leather Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":1809,"name":"Tough Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26}, -{"id":1810,"name":"Tough Leather Armor","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27}, -{"id":1811,"name":"Blunt Claymore","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":3.1,"ilvl":17}, -{"id":1812,"name":"Short-Handled Battle Axe","icon":"inv_throwingaxe_05","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":3.1,"ilvl":17}, -{"id":1813,"name":"Chipped Quarterstaff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":27,"weaponSpeed":3.1,"ilvl":18}, -{"id":1814,"name":"Battered Mallet","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":26,"weaponSpeed":2.9,"ilvl":19}, -{"id":1815,"name":"Ornamental Mace","icon":"inv_mace_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.8,"ilvl":17}, -{"id":1816,"name":"Unbalanced Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":2.4,"ilvl":19}, -{"id":1817,"name":"Stock Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.8,"ilvl":19}, -{"id":1818,"name":"Standard Claymore","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3,"ilvl":24}, -{"id":1819,"name":"Gouging Pick","icon":"inv_pick_02","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.8,"ilvl":22}, -{"id":1820,"name":"Wooden Maul","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":2.9,"ilvl":22}, -{"id":1821,"name":"Warped Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.6,"ilvl":24}, -{"id":1822,"name":"Cedar Walking Stick","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":31,"weaponSpeed":2.8,"ilvl":23}, -{"id":1823,"name":"Bludgeoning Cudgel","icon":"inv_mace_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.8,"ilvl":22}, -{"id":1824,"name":"Shiny War Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":26,"weaponSpeed":2.4,"ilvl":23}, -{"id":1825,"name":"Bulky Bludgeon","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.8,"ilvl":28}, -{"id":1826,"name":"Rock Maul","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":2.9,"ilvl":27}, -{"id":1827,"name":"Meat Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.4,"ilvl":27}, -{"id":1828,"name":"Stone War Axe","icon":"inv_axe_20","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":2.6,"ilvl":27}, -{"id":1829,"name":"Short Cutlass","icon":"inv_sword_24","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.7,"ilvl":29}, -{"id":1830,"name":"Long Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":3.2,"ilvl":28}, -{"id":1831,"name":"Oaken War Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":51,"weaponSpeed":3.7,"ilvl":28}, -{"id":1832,"name":"Lucky Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":1835,"name":"Dirty Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":1836,"name":"Dirty Leather Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":1839,"name":"Rough Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":1840,"name":"Rough Leather Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":1843,"name":"Tanned Leather Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":1844,"name":"Tanned Leather Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":1845,"name":"Chainmail Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":1846,"name":"Chainmail Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":1849,"name":"Cured Leather Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":1850,"name":"Cured Leather Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":1852,"name":"Scalemail Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":1853,"name":"Scalemail Belt","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":1893,"name":"Miner's Revenge","icon":"inv_pick_03","type":13,"weaponType":1,"handType":4,"stats":[11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":72,"weaponSpeed":3.4,"ilvl":20,"quality":3,"factionRestriction":1}, -{"id":1913,"name":"Studded Blackjack","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.8,"ilvl":10,"quality":1}, -{"id":1917,"name":"Jeweled Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":11,"weaponSpeed":1.6,"ilvl":10,"quality":2}, -{"id":1925,"name":"Defias Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2.5,"ilvl":20,"quality":3}, -{"id":1926,"name":"Weighted Sap","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3}, -{"id":1927,"name":"Deadmines Cleaver","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3}, -{"id":1928,"name":"Defias Mage Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":2.8,"ilvl":20,"quality":3}, -{"id":1929,"name":"Silk-Threaded Trousers","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":1930,"name":"Stonemason Cloak","icon":"inv_misc_cape_11","type":4,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":1933,"name":"Staff of Conjuring","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":63,"weaponSpeed":3,"ilvl":20,"quality":3}, -{"id":1934,"name":"Hogger's Trousers","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":1935,"name":"Assassin's Blade","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":2,"stats":[0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1936,"name":"Goblin Screwdriver","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.4,"ilvl":20,"quality":3}, -{"id":1937,"name":"Buzz Saw","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":642,"zoneId":1581}}]}, -{"id":1938,"name":"Block Mallet","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":1.8,"ilvl":22,"quality":2}, -{"id":1943,"name":"Goblin Mail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":1944,"name":"Metalworking Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":1945,"name":"Woodworking Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":1951,"name":"Blackwater Cutlass","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3}, -{"id":1955,"name":"Dragonmaw Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":1958,"name":"Petrified Shinbone","icon":"inv_misc_bone_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.4,"ilvl":20,"quality":3}, -{"id":1959,"name":"Cold Iron Pick","icon":"inv_pick_01","type":13,"weaponType":1,"handType":4,"stats":[11,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.6,"ilvl":25,"quality":3}, -{"id":1965,"name":"White Wolf Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":1974,"name":"Mindthrust Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":1975,"name":"Pysan's Old Greatsword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":4,"stats":[15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":130,"weaponSpeed":3.6,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":1976,"name":"Slaghammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":127,"weaponSpeed":3.5,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":1978,"name":"Wolfclaw Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":1979,"name":"Wall of the Dead","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1906,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":4}, -{"id":1980,"name":"Underworld Band","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,10,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":4}, -{"id":1981,"name":"Icemail Jerkin","icon":"inv_chest_plate06","type":5,"armorType":3,"stats":[0,5,15,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":4}, -{"id":1982,"name":"Nightblade","icon":"inv_sword_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":2.8,"ilvl":44,"quality":4}, -{"id":1986,"name":"Gutrender","icon":"inv_sword_15","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.6,"ilvl":41,"quality":2}, -{"id":1988,"name":"Chief Brigadier Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[6,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":1990,"name":"Ballast Maul","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,217,218,219,220,606,607,608,691,692,693,861,862,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":67,"weaponDamageMax":101,"weaponSpeed":3.4,"ilvl":36,"quality":2}, -{"id":1991,"name":"Goblin Power Shovel","icon":"inv_misc_shovel_02","type":13,"weaponType":4,"handType":4,"stats":[6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":34,"quality":2}, -{"id":1992,"name":"Swampchill Fetish","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":1993,"name":"Ogremind Ring","icon":"inv_belt_35","type":11,"stats":[0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":1994,"name":"Ebonclaw Reaver","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,189,511,512,513,596,597,598,681,682,683,851,852,853,1021,1022,1023,1106,1107,1108,1191,1192,1554,1193,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.8,"ilvl":46,"quality":2}, -{"id":1996,"name":"Voodoo Band","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":1997,"name":"Pressed Felt Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":1998,"name":"Bloodscalp Channeling Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":75,"weaponSpeed":2.8,"ilvl":33,"quality":2}, -{"id":2000,"name":"Archeus","icon":"inv_sword_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"factionRestriction":1}, -{"id":2011,"name":"Twisted Sabre","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.8,"ilvl":26,"quality":3}, -{"id":2013,"name":"Cryptbone Staff","icon":"inv_staff_26","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,6,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":61,"weaponSpeed":2.9,"ilvl":26,"quality":2}, -{"id":2014,"name":"Black Metal Greatsword","icon":"inv_sword_15","type":13,"weaponType":9,"handType":4,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":78,"weaponSpeed":3.3,"ilvl":29,"quality":2}, -{"id":2015,"name":"Black Metal War Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":2.9,"ilvl":28,"quality":2}, -{"id":2016,"name":"Dusty Chain Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":2017,"name":"Glowing Leather Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":2018,"name":"Skeletal Longsword","icon":"inv_sword_19","type":13,"weaponType":9,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":2.2,"ilvl":27,"quality":2}, -{"id":2020,"name":"Hollowfang Blade","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":17,"weaponSpeed":1.4,"ilvl":18,"quality":2}, -{"id":2021,"name":"Green Carapace Shield","icon":"inv_misc_monsterspidercarapace_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2024,"name":"Espadon","icon":"inv_sword_43","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":2.9,"ilvl":21,"quality":1}, -{"id":2025,"name":"Bearded Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":20,"quality":1}, -{"id":2026,"name":"Rock Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":56,"weaponSpeed":3.7,"ilvl":21,"quality":1}, -{"id":2027,"name":"Scimitar","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.3,"ilvl":19,"quality":1}, -{"id":2028,"name":"Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.4,"ilvl":21,"quality":1}, -{"id":2029,"name":"Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.2,"ilvl":20,"quality":1}, -{"id":2030,"name":"Gnarled Staff","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":42,"weaponSpeed":2.9,"ilvl":20,"quality":1}, -{"id":2032,"name":"Gallan Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"factionRestriction":2}, -{"id":2033,"name":"Ambassador's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":2034,"name":"Scholarly Robes","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":2035,"name":"Sword of the Night Sky","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.7,"ilvl":24,"quality":2}, -{"id":2036,"name":"Dusty Mining Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"factionRestriction":1}, -{"id":2037,"name":"Tunneler's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"factionRestriction":1}, -{"id":2039,"name":"Plains Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,5,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":2040,"name":"Troll Protector","icon":"inv_shield_16","type":13,"weaponType":7,"handType":3,"stats":[8,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,1462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":2041,"name":"Tunic of Westfall","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"factionRestriction":1}, -{"id":2042,"name":"Staff of Westfall","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":74,"weaponSpeed":3,"ilvl":24,"quality":3,"factionRestriction":1}, -{"id":2043,"name":"Ring of Forlorn Spirits","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"factionRestriction":1}, -{"id":2044,"name":"Crescent of Forlorn Spirits","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":1.6,"ilvl":35,"quality":3,"factionRestriction":1}, -{"id":2046,"name":"Bluegill Kukri","icon":"inv_weapon_shortblade_26","type":13,"weaponType":9,"handType":2,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.8,"ilvl":24,"quality":2}, -{"id":2047,"name":"Anvilmar Hand Axe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1,"sources":[{"quest":{"id":182,"name":"The Troll Menace"}}],"factionRestriction":1}, -{"id":2048,"name":"Anvilmar Hammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":2.1,"ilvl":4,"quality":1}, -{"id":2054,"name":"Trogg Hand Axe","icon":"inv_axe_19","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1}, -{"id":2055,"name":"Small Wooden Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.9,"ilvl":4,"quality":1}, -{"id":2056,"name":"The Velvet Hammer","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2,"ilvl":10}, -{"id":2057,"name":"Pitted Defias Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1}, -{"id":2058,"name":"Kazon's Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":3.4,"ilvl":27,"quality":2}, -{"id":2059,"name":"Sentry Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3}, -{"id":2064,"name":"Trogg Club","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":2,"ilvl":11,"quality":1}, -{"id":2065,"name":"Rockjaw Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":2.1,"ilvl":9,"quality":1}, -{"id":2066,"name":"Skull Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2,"ilvl":8,"quality":1}, -{"id":2067,"name":"Frostbit Staff","icon":"inv_staff_15","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":19,"weaponSpeed":2.7,"ilvl":10,"quality":1}, -{"id":2069,"name":"Black Bear Hide Vest","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":2072,"name":"Dwarven Magestaff","icon":"inv_staff_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,512,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1807,1808,1845,1846,1883,1884,1959,1997,1998,2035,2036,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9,1556,1960],"weaponDamageMin":41,"weaponDamageMax":62,"weaponSpeed":2.8,"ilvl":27,"quality":2}, -{"id":2073,"name":"Dwarven Hatchet","icon":"inv_axe_04","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-84,6,14,15,1547,-20,-18,-17],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2,"ilvl":15,"quality":2}, -{"id":2074,"name":"Solid Shortblade","icon":"inv_sword_23","type":13,"weaponType":9,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.5,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":2075,"name":"Heavy Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-84,-20,6,15,1547,1799,1837,1989,2027,-19,-17],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2,"ilvl":12,"quality":2}, -{"id":2077,"name":"Magician Staff","icon":"inv_wand_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,181,182,186,187,515,516,517,600,601,602,770,771,772,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,1808,1809,1846,1847,1884,1885,1960,1961,1998,1999,2036,2037,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":47,"weaponDamageMax":71,"weaponSpeed":3,"ilvl":29,"quality":2}, -{"id":2078,"name":"Northern Shortsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,23,1548,-84,-20,-17],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.2,"ilvl":18,"quality":2}, -{"id":2079,"name":"Sergeant's Warhammer","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,23,1548,1800,1838,1990,2028,-84,-20,-19,-17],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.1,"ilvl":17,"quality":2}, -{"id":2080,"name":"Hillborne Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,114,115,132,135,136,506,507,591,592,676,677,846,847,1016,1017,1101,1102,1186,1187,1551,1552,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":2.2,"ilvl":34,"quality":2}, -{"id":2084,"name":"Darksteel Bastard Sword","icon":"inv_sword_13","type":13,"weaponType":9,"handType":4,"stats":[8,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":79,"weaponSpeed":3.2,"ilvl":30,"quality":2}, -{"id":2087,"name":"Hard Crawler Carapace","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":2088,"name":"Long Crawler Limb","icon":"inv_misc_bone_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.6,"ilvl":15,"quality":2}, -{"id":2089,"name":"Scrimshaw Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":1.8,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":2092,"name":"Worn Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":1,"quality":1}, -{"id":2098,"name":"Double-Barreled Shotgun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":2.3,"ilvl":27,"quality":3}, -{"id":2099,"name":"Dwarven Hand Cannon","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":58,"quality":4}, -{"id":2100,"name":"Precisely Calibrated Boomstick","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":75,"weaponSpeed":1.5,"ilvl":48,"quality":4}, -{"id":2108,"name":"Frostmane Leather Vest","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1}, -{"id":2109,"name":"Frostmane Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2110,"name":"Light Magesmith Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1}, -{"id":2112,"name":"Lumberjack Jerkin","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":2114,"name":"Snowy Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":2117,"name":"Thin Cloth Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2119,"name":"Thin Cloth Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2120,"name":"Thin Cloth Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":2121,"name":"Thin Cloth Armor","icon":"inv_shirt_red_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2122,"name":"Cracked Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2123,"name":"Cracked Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2124,"name":"Cracked Leather Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2125,"name":"Cracked Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2126,"name":"Cracked Leather Pants","icon":"inv_pants_10","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2127,"name":"Cracked Leather Vest","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2129,"name":"Large Round Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2130,"name":"Club","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.9,"ilvl":3,"quality":1}, -{"id":2131,"name":"Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.6,"ilvl":3,"quality":1}, -{"id":2132,"name":"Short Staff","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":3.2,"ilvl":4,"quality":1}, -{"id":2134,"name":"Hand Axe","icon":"inv_axe_19","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1}, -{"id":2137,"name":"Whittling Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.5,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":2138,"name":"Sharpened Letter Opener","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.7,"ilvl":7}, -{"id":2139,"name":"Dirk","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.6,"ilvl":3,"quality":1}, -{"id":2140,"name":"Carving Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,6,14,15,1547,1799,1837,1875,1913,1951,1989,2027,-84,-20,-18,-17],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.6,"ilvl":11,"quality":2}, -{"id":2141,"name":"Cuirboulli Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2142,"name":"Cuirboulli Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2143,"name":"Cuirboulli Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2144,"name":"Cuirboulli Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2145,"name":"Cuirboulli Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2146,"name":"Cuirboulli Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2148,"name":"Polished Scale Belt","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2149,"name":"Polished Scale Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2150,"name":"Polished Scale Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2151,"name":"Polished Scale Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2152,"name":"Polished Scale Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2153,"name":"Polished Scale Vest","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2156,"name":"Padded Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2158,"name":"Padded Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2159,"name":"Padded Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2160,"name":"Padded Armor","icon":"inv_shirt_02","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2163,"name":"Shadowblade","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":1.4,"ilvl":53,"quality":4,"unique":true}, -{"id":2164,"name":"Gut Ripper","icon":"inv_sword_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":80,"weaponSpeed":1.8,"ilvl":45,"quality":4}, -{"id":2165,"name":"Old Blanchy's Blanket","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":1}, -{"id":2166,"name":"Foreman's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":2167,"name":"Foreman's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":2168,"name":"Corpse Rompers","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":2169,"name":"Buzzer Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.4,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":642,"zoneId":1581}}]}, -{"id":2172,"name":"Rustic Belt","icon":"inv_belt_84v3","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":2173,"name":"Old Leather Belt","icon":"inv_belt_80","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":2175,"name":"Shadowhide Battle Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":3.2,"ilvl":23,"quality":2}, -{"id":2186,"name":"Outfitter Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":2194,"name":"Diamond Hammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":2,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.5,"ilvl":25,"quality":3,"unique":true}, -{"id":2195,"name":"Anvilmar Knife","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.6,"ilvl":4,"quality":1,"sources":[{"quest":{"id":182,"name":"The Troll Menace"}}],"factionRestriction":1}, -{"id":2203,"name":"Brashclaw's Chopper","icon":"inv_axe_23","type":13,"weaponType":1,"handType":4,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":51,"weaponSpeed":3.4,"ilvl":19,"quality":2}, -{"id":2204,"name":"Brashclaw's Skewer","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":3.2,"ilvl":17,"quality":2}, -{"id":2205,"name":"Duskbringer","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":3.4,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":2207,"name":"Jambiya","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":13,"weaponSpeed":1.4,"ilvl":16,"quality":1}, -{"id":2208,"name":"Poniard","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":15,"weaponSpeed":1.3,"ilvl":19,"quality":1}, -{"id":2209,"name":"Kris","icon":"inv_sword_32","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":1.6,"ilvl":24,"quality":1}, -{"id":2210,"name":"Battered Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":2211,"name":"Bent Large Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":2212,"name":"Cracked Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6}, -{"id":2213,"name":"Worn Large Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":2214,"name":"Wooden Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15}, -{"id":2215,"name":"Wooden Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":2216,"name":"Simple Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16}, -{"id":2217,"name":"Rectangular Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":2218,"name":"Craftsman's Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.7,"ilvl":13,"quality":2}, -{"id":2219,"name":"Small Round Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":2220,"name":"Box Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23}, -{"id":2221,"name":"Targe Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,670,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":2222,"name":"Tower Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29}, -{"id":2224,"name":"Militia Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.5,"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":2225,"name":"Sharp Kitchen Knife","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.5,"ilvl":11,"quality":1,"factionRestriction":1}, -{"id":2226,"name":"Ogremage Staff","icon":"inv_wand_06","type":13,"weaponType":8,"handType":4,"stats":[11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":3.4,"ilvl":27,"quality":2}, -{"id":2227,"name":"Heavy Ogre War Axe","icon":"inv_weapon_halbard_01","type":13,"weaponType":1,"handType":4,"stats":[7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.8,"ilvl":27,"quality":2}, -{"id":2230,"name":"Gloves of Brawn","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"factionRestriction":2}, -{"id":2231,"name":"Inferno Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":2232,"name":"Dark Runner Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":2233,"name":"Shadow Weaver Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":2234,"name":"Nightwalker Armor","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":2235,"name":"Brackclaw","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.4,"ilvl":19,"quality":2}, -{"id":2236,"name":"Blackfang","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.5,"ilvl":25,"quality":3,"unique":true}, -{"id":2237,"name":"Patched Pants","icon":"inv_pants_leather_38","type":9,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":59,"name":"Cloth and Leather Armor"}}],"factionRestriction":1}, -{"id":2238,"name":"Urchin's Pants","icon":"inv_pants_cloth_41","type":9,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":11,"name":"Riverpaw Gnoll Bounty"}}],"factionRestriction":1}, -{"id":2240,"name":"Rugged Cape","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":2241,"name":"Desperado Cape","icon":"inv_misc_cape_04","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":2243,"name":"Hand of Edward the Odd","icon":"inv_mace_14","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.6,"ilvl":62,"quality":4,"unique":true}, -{"id":2244,"name":"Krol Blade","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[7,0,5,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":2.8,"ilvl":56,"quality":4}, -{"id":2245,"name":"Helm of Narv","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,13,32,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":4}, -{"id":2246,"name":"Myrmidon's Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[10,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":4,"unique":true}, -{"id":2249,"name":"Militia Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":2254,"name":"Icepane Warhammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.3,"ilvl":12,"quality":2}, -{"id":2256,"name":"Skeletal Club","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.6,"ilvl":24,"quality":3}, -{"id":2257,"name":"Frostmane Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":21,"weaponSpeed":3.1,"ilvl":10,"quality":1}, -{"id":2258,"name":"Frostmane Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2,"ilvl":8,"quality":1}, -{"id":2259,"name":"Frostmane Club","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":2,"ilvl":8,"quality":1}, -{"id":2260,"name":"Frostmane Hand Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2,"ilvl":9,"quality":1}, -{"id":2262,"name":"Mark of Kern","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":2263,"name":"Phytoblade","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":2.8,"ilvl":25,"quality":2}, -{"id":2264,"name":"Mantle of Thieves","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":2265,"name":"Stonesplinter Axe","icon":"inv_axe_19","type":13,"weaponType":1,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.2,"ilvl":13,"quality":2}, -{"id":2266,"name":"Stonesplinter Dagger","icon":"inv_weapon_shortblade_08","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.5,"ilvl":13,"quality":2}, -{"id":2267,"name":"Stonesplinter Mace","icon":"inv_mace_12","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2,"ilvl":15,"quality":2}, -{"id":2268,"name":"Stonesplinter Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2,"ilvl":10,"quality":1}, -{"id":2271,"name":"Staff of the Blessed Seer","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":2273,"name":"Guerrilla Armor","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2274,"name":"Sapper's Gloves","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":2276,"name":"Swampwalker Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":2277,"name":"Necromancer Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,21,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":2278,"name":"Forest Tracker Epaulets","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3}, -{"id":2280,"name":"Kam's Walking Stick","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":75,"weaponSpeed":2.8,"ilvl":27,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1666,"zoneId":717}}]}, -{"id":2281,"name":"Rodentia Flint Axe","icon":"inv_axe_19","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2,"ilvl":11,"quality":2}, -{"id":2282,"name":"Rodentia Shortsword","icon":"inv_sword_47","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":13,"weaponSpeed":2.3,"ilvl":10,"quality":1}, -{"id":2283,"name":"Rat Cloth Belt","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2284,"name":"Rat Cloth Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2291,"name":"Kang the Decapitator","icon":"inv_axe_15","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":205,"weaponSpeed":3.6,"ilvl":49,"quality":4}, -{"id":2292,"name":"Necrology Robes","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":2299,"name":"Burning War Axe","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":110,"weaponSpeed":3.3,"ilvl":33,"quality":3}, -{"id":2300,"name":"Embossed Leather Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2160}},{"crafted":{"profession":8,"spellId":2160}}]}, -{"id":2302,"name":"Handstitched Leather Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2149}},{"crafted":{"profession":8,"spellId":2149}}]}, -{"id":2303,"name":"Handstitched Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2153}},{"crafted":{"profession":8,"spellId":2153}}]}, -{"id":2307,"name":"Fine Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2158}},{"crafted":{"profession":8,"spellId":2158}}]}, -{"id":2308,"name":"Fine Leather Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2159}},{"crafted":{"profession":8,"spellId":2159}}]}, -{"id":2309,"name":"Embossed Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2161}},{"crafted":{"profession":8,"spellId":2161}}]}, -{"id":2310,"name":"Embossed Leather Cloak","icon":"inv_helmet_48","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2162}},{"crafted":{"profession":8,"spellId":2162}}]}, -{"id":2311,"name":"White Leather Jerkin","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2163}},{"crafted":{"profession":8,"spellId":2163}}]}, -{"id":2312,"name":"Fine Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2164}},{"crafted":{"profession":8,"spellId":2164}}]}, -{"id":2314,"name":"Toughened Leather Armor","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":2166}},{"crafted":{"profession":8,"spellId":2166}}]}, -{"id":2315,"name":"Dark Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2167}},{"crafted":{"profession":8,"spellId":2167}}]}, -{"id":2316,"name":"Dark Leather Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2168}},{"crafted":{"profession":8,"spellId":2168}}]}, -{"id":2317,"name":"Dark Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":2169}},{"crafted":{"profession":8,"spellId":2169}}]}, -{"id":2326,"name":"Ivy-Weave Bracers","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":315,"name":"The Perfect Stout"}}],"factionRestriction":1}, -{"id":2327,"name":"Sturdy Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2361,"name":"Battleworn Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":2362,"name":"Worn Wooden Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":2364,"name":"Woven Vest","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2366,"name":"Woven Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2367,"name":"Woven Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2369,"name":"Woven Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2370,"name":"Battered Leather Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2371,"name":"Battered Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2372,"name":"Battered Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2373,"name":"Battered Leather Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2374,"name":"Battered Leather Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2375,"name":"Battered Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2376,"name":"Worn Heater Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":2}, -{"id":2379,"name":"Tarnished Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2380,"name":"Tarnished Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2381,"name":"Tarnished Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":2383,"name":"Tarnished Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2384,"name":"Tarnished Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2385,"name":"Tarnished Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2386,"name":"Rusted Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2387,"name":"Rusted Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2388,"name":"Rusted Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":2389,"name":"Rusted Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2390,"name":"Rusted Chain Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2391,"name":"Rusted Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":2392,"name":"Light Mail Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2393,"name":"Light Mail Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2394,"name":"Light Mail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2395,"name":"Light Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2396,"name":"Light Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2397,"name":"Light Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2398,"name":"Light Chain Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2399,"name":"Light Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2400,"name":"Light Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2401,"name":"Light Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2402,"name":"Light Chain Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2403,"name":"Light Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2410,"name":"Smoky Torch","icon":"inv_torch_lit","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":2417,"name":"Augmented Chain Vest","icon":"inv_chest_plate12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2418,"name":"Augmented Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2419,"name":"Augmented Chain Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2420,"name":"Augmented Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2421,"name":"Augmented Chain Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2422,"name":"Augmented Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2423,"name":"Brigandine Vest","icon":"inv_chest_plate13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2424,"name":"Brigandine Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2425,"name":"Brigandine Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2426,"name":"Brigandine Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2427,"name":"Brigandine Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2428,"name":"Brigandine Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2429,"name":"Russet Vest","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2431,"name":"Russet Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2432,"name":"Russet Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2434,"name":"Russet Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2435,"name":"Embroidered Armor","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2437,"name":"Embroidered Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2438,"name":"Embroidered Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2440,"name":"Embroidered Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2445,"name":"Large Metal Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":2446,"name":"Kite Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":2448,"name":"Heavy Pavise","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2451,"name":"Crested Heater Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2463,"name":"Studded Doublet","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2464,"name":"Studded Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2465,"name":"Studded Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2467,"name":"Studded Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2468,"name":"Studded Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2469,"name":"Studded Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2470,"name":"Reinforced Leather Vest","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2471,"name":"Reinforced Leather Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2472,"name":"Reinforced Leather Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2473,"name":"Reinforced Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2474,"name":"Reinforced Leather Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2475,"name":"Reinforced Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2479,"name":"Broad Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":3.1,"ilvl":4,"quality":1}, -{"id":2480,"name":"Large Club","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":6,"weaponSpeed":3.2,"ilvl":3,"quality":1}, -{"id":2488,"name":"Gladius","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":2.1,"ilvl":9,"quality":1}, -{"id":2489,"name":"Two-Handed Sword","icon":"inv_sword_14","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":2.9,"ilvl":7,"quality":1}, -{"id":2490,"name":"Tomahawk","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":1.7,"ilvl":9,"quality":1}, -{"id":2491,"name":"Large Axe","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":15,"weaponSpeed":2.8,"ilvl":8,"quality":1}, -{"id":2492,"name":"Cudgel","icon":"inv_torch_unlit","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":1.8,"ilvl":7,"quality":1}, -{"id":2493,"name":"Wooden Mallet","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":16,"weaponSpeed":2.6,"ilvl":9,"quality":1}, -{"id":2494,"name":"Stiletto","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":1.5,"ilvl":8,"quality":1}, -{"id":2495,"name":"Walking Stick","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":2.5,"ilvl":8,"quality":1}, -{"id":2504,"name":"Worn Shortbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.3,"ilvl":2,"quality":1}, -{"id":2505,"name":"Polished Shortbow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2,"ilvl":4,"quality":1}, -{"id":2506,"name":"Hornwood Recurve Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.1,"ilvl":8,"quality":1}, -{"id":2507,"name":"Laminated Recurve Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.6,"ilvl":16,"quality":1}, -{"id":2508,"name":"Old Blunderbuss","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.3,"ilvl":2,"quality":1,"sources":[{"soldBy":{"npcId":5510,"npcName":"Thulman Flintcrag","zoneId":1519}}]}, -{"id":2509,"name":"Ornate Blunderbuss","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2.2,"ilvl":9,"quality":1}, -{"id":2510,"name":"Solid Blunderbuss","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":2.2,"ilvl":3,"quality":1}, -{"id":2511,"name":"Hunter's Boomstick","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.1,"ilvl":14,"quality":1}, -{"id":2520,"name":"Broadsword","icon":"inv_sword_05","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.3,"ilvl":36,"quality":1}, -{"id":2521,"name":"Flamberge","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.2,"ilvl":36,"quality":1}, -{"id":2522,"name":"Crescent Axe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":2.6,"ilvl":35,"quality":1}, -{"id":2523,"name":"Bullova","icon":"inv_weapon_halberd_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":102,"weaponSpeed":3.8,"ilvl":35,"quality":1}, -{"id":2524,"name":"Truncheon","icon":"inv_mace_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":2.5,"ilvl":34,"quality":1}, -{"id":2525,"name":"War Hammer","icon":"inv_hammer_03","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":3.5,"ilvl":35,"quality":1}, -{"id":2526,"name":"Main Gauche","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":1.6,"ilvl":34,"quality":1}, -{"id":2527,"name":"Battle Staff","icon":"inv_wand_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":3.4,"ilvl":36,"quality":1}, -{"id":2528,"name":"Falchion","icon":"inv_sword_34","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":2.2,"ilvl":46,"quality":1}, -{"id":2529,"name":"Zweihander","icon":"inv_sword_15","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":113,"weaponSpeed":2.8,"ilvl":46,"quality":1}, -{"id":2530,"name":"Francisca","icon":"inv_axe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":2.3,"ilvl":46,"quality":1}, -{"id":2531,"name":"Great Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":135,"weaponSpeed":3.6,"ilvl":44,"quality":1}, -{"id":2532,"name":"Morning Star","icon":"inv_mace_12","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.9,"ilvl":46,"quality":1}, -{"id":2533,"name":"War Maul","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":3.3,"ilvl":45,"quality":1}, -{"id":2534,"name":"Rondel","icon":"inv_sword_31","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":50,"weaponSpeed":1.6,"ilvl":44,"quality":1}, -{"id":2535,"name":"War Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":3.3,"ilvl":45,"quality":1}, -{"id":2545,"name":"Malleable Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":1}, -{"id":2546,"name":"Royal Frostmane Girdle","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":2547,"name":"Boar Handler Gloves","icon":"inv_gauntlets_105v3","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":2549,"name":"Staff of the Shade","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.6,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":2562,"name":"Bouquet of Scarlet Begonias","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":2564,"name":"Elven Spirit Claws","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,8,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":2565,"name":"Rod of Molten Fire","icon":"inv_spear_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":2566,"name":"Sacrificial Robes","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":2567,"name":"Evocator's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":30,"weaponSpeed":1.4,"ilvl":25,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":2568,"name":"Brown Linen Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2385}},{"crafted":{"profession":11,"spellId":2385}}]}, -{"id":2569,"name":"Linen Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2386}},{"crafted":{"profession":11,"spellId":2386}}]}, -{"id":2570,"name":"Linen Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2387}},{"crafted":{"profession":11,"spellId":2387}}]}, -{"id":2571,"name":"Viny Wrappings","icon":"inv_boots_cloth_31","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":932,"name":"Twisted Hatred"}}],"factionRestriction":1}, -{"id":2572,"name":"Red Linen Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2389}},{"crafted":{"profession":11,"spellId":2389}}]}, -{"id":2578,"name":"Barbaric Linen Vest","icon":"inv_chest_fur","type":5,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2395}},{"crafted":{"profession":11,"spellId":2395}}]}, -{"id":2580,"name":"Reinforced Linen Cape","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2397}},{"crafted":{"profession":11,"spellId":2397}}]}, -{"id":2582,"name":"Green Woolen Vest","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2399}},{"crafted":{"profession":11,"spellId":2399}}]}, -{"id":2583,"name":"Woolen Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2401}},{"crafted":{"profession":11,"spellId":2401}}]}, -{"id":2584,"name":"Woolen Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2402}},{"crafted":{"profession":11,"spellId":2402}}]}, -{"id":2585,"name":"Gray Woolen Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":2403}},{"crafted":{"profession":11,"spellId":2403}}]}, -{"id":2586,"name":"Gamemaster's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":2612,"name":"Plain Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":2613,"name":"Double-Stitched Robes","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":2614,"name":"Robe of Apprenticeship","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":2615,"name":"Chromatic Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":1}, -{"id":2616,"name":"Shimmering Silk Robes","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1}, -{"id":2617,"name":"Burning Robes","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":2618,"name":"Silver Dress Robes","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":2620,"name":"Augural Shroud","icon":"inv_misc_cape_04","type":1,"armorType":1,"stats":[0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":2621,"name":"Cowl of Necromancy","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":2622,"name":"Nimar's Tribal Headdress","icon":"inv_helmet_04","type":1,"armorType":1,"stats":[0,0,6,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":2623,"name":"Holy Diadem","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,11,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":2624,"name":"Thinking Cap","icon":"inv_helmet_04","type":1,"armorType":1,"stats":[0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":2632,"name":"Curved Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,6,14,15,1547,1799,1837,1875,1913,1951,1989,2027,-84,-20,-18,-17],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.6,"ilvl":14,"quality":2}, -{"id":2635,"name":"Loose Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8}, -{"id":2642,"name":"Loose Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9}, -{"id":2643,"name":"Loose Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":2644,"name":"Loose Chain Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6}, -{"id":2645,"name":"Loose Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7}, -{"id":2646,"name":"Loose Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8}, -{"id":2648,"name":"Loose Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":2649,"name":"Flimsy Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":2650,"name":"Flimsy Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":2651,"name":"Flimsy Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":2652,"name":"Flimsy Chain Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":2653,"name":"Flimsy Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":2654,"name":"Flimsy Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":2656,"name":"Flimsy Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":2664,"name":"Spinner Fang","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.5,"ilvl":18,"quality":2}, -{"id":2690,"name":"Latched Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":2691,"name":"Outfitter Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":2694,"name":"Settler's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":2}, -{"id":2721,"name":"Holy Shroud","icon":"inv_helmet_16","type":1,"armorType":1,"stats":[0,0,0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3}, -{"id":2754,"name":"Tarnished Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":6,"weaponSpeed":3.2,"ilvl":3,"quality":1}, -{"id":2763,"name":"Fisherman Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":1.4,"ilvl":14}, -{"id":2764,"name":"Small Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.4,"ilvl":18}, -{"id":2765,"name":"Hunting Knife","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.7,"ilvl":23}, -{"id":2766,"name":"Deft Stiletto","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":17,"weaponSpeed":1.4,"ilvl":29}, -{"id":2773,"name":"Cracked Shortbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.3,"ilvl":8}, -{"id":2774,"name":"Rust-Covered Blunderbuss","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":2.4,"ilvl":7}, -{"id":2777,"name":"Feeble Shortbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.8,"ilvl":13}, -{"id":2778,"name":"Cheap Blunderbuss","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2.2,"ilvl":13}, -{"id":2780,"name":"Light Hunting Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":19}, -{"id":2781,"name":"Dirty Blunderbuss","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":20,"weaponSpeed":2.2,"ilvl":18}, -{"id":2782,"name":"Mishandled Recurve Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.4,"ilvl":24}, -{"id":2783,"name":"Shoddy Blunderbuss","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.1,"ilvl":22}, -{"id":2785,"name":"Stiff Recurve Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.8,"ilvl":28}, -{"id":2786,"name":"Oiled Blunderbuss","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2,"ilvl":29}, -{"id":2787,"name":"Trogg Dagger","icon":"inv_weapon_shortblade_08","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":3,"quality":1}, -{"id":2800,"name":"Black Velvet Robes","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3}, -{"id":2801,"name":"Blade of Hanna","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":152,"weaponSpeed":2.1,"ilvl":64,"quality":4}, -{"id":2802,"name":"Blazing Emblem","icon":"inv_jewelry_talisman_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3}, -{"id":2805,"name":"Yeti Fur Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"factionRestriction":1}, -{"id":2807,"name":"Guillotine Axe","icon":"inv_axe_24","type":13,"weaponType":1,"handType":2,"stats":[0,3,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":50,"weaponSpeed":2.7,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":2815,"name":"Curve-Bladed Ripper","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":1.9,"ilvl":45,"quality":3}, -{"id":2816,"name":"Death Speaker Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.6,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4428,"zoneId":491}}]}, -{"id":2817,"name":"Hard Leather Tunic","icon":"inv_chest_leather_26v4","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":314,"name":"Protecting the Herd"}}],"factionRestriction":1}, -{"id":2818,"name":"Stretched Leather Trousers","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":2819,"name":"Cross Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,111,114,115,588,589,590,673,674,675,1183,1184,1185,1550,1551,1802,1803,1840,1841,1878,1879,1954,1992,1993,2030,2031,-14,1955,-84,-78,-68,-20,-19,-18,-17],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.3,"ilvl":28,"quality":2}, -{"id":2820,"name":"Nifty Stopwatch","icon":"inv_misc_pocketwatch_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":2821,"name":"Mo'grosh Masher","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.5,"ilvl":18,"quality":2}, -{"id":2822,"name":"Mo'grosh Toothpick","icon":"inv_sword_45","type":13,"weaponType":9,"handType":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":2.8,"ilvl":18,"quality":2}, -{"id":2823,"name":"Mo'grosh Can Opener","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":48,"weaponSpeed":3.2,"ilvl":19,"quality":2}, -{"id":2824,"name":"Hurricane","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":1.6,"ilvl":53,"quality":4}, -{"id":2825,"name":"Bow of Searing Arrows","icon":"inv_weapon_bow_09","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":2.7,"ilvl":42,"quality":4}, -{"id":2844,"name":"Copper Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":11,"weaponSpeed":2.2,"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2737}},{"crafted":{"profession":2,"spellId":2737}}]}, -{"id":2845,"name":"Copper Axe","icon":"inv_axe_23","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.9,"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2738}},{"crafted":{"profession":2,"spellId":2738}}]}, -{"id":2847,"name":"Copper Shortsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":2.1,"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2739}},{"crafted":{"profession":2,"spellId":2739}}]}, -{"id":2848,"name":"Bronze Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":2.6,"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2740}},{"crafted":{"profession":2,"spellId":2740}}]}, -{"id":2849,"name":"Bronze Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":1,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.1,"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2741}},{"crafted":{"profession":2,"spellId":2741}}]}, -{"id":2850,"name":"Bronze Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.1,"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2742}},{"crafted":{"profession":2,"spellId":2742}}]}, -{"id":2851,"name":"Copper Chain Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2661}},{"crafted":{"profession":2,"spellId":2661}}]}, -{"id":2852,"name":"Copper Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2662}},{"crafted":{"profession":2,"spellId":2662}}]}, -{"id":2853,"name":"Copper Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2663}},{"crafted":{"profession":2,"spellId":2663}}]}, -{"id":2854,"name":"Runed Copper Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2664}},{"crafted":{"profession":2,"spellId":2664}}]}, -{"id":2857,"name":"Runed Copper Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2666}},{"crafted":{"profession":2,"spellId":2666}}]}, -{"id":2864,"name":"Runed Copper Breastplate","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2667}},{"crafted":{"profession":2,"spellId":2667}}]}, -{"id":2865,"name":"Rough Bronze Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2668}},{"crafted":{"profession":2,"spellId":2668}}]}, -{"id":2866,"name":"Rough Bronze Cuirass","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2670}},{"crafted":{"profession":2,"spellId":2670}}]}, -{"id":2867,"name":"Rough Bronze Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2671}}]}, -{"id":2868,"name":"Patterned Bronze Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2672}},{"crafted":{"profession":2,"spellId":2672}}]}, -{"id":2869,"name":"Silvered Bronze Breastplate","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[5,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2673}},{"crafted":{"profession":2,"spellId":2673}}]}, -{"id":2870,"name":"Shining Silver Breastplate","icon":"inv_chest_plate15","type":5,"armorType":3,"stats":[14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":2675}},{"crafted":{"profession":2,"spellId":2675}}]}, -{"id":2877,"name":"Combatant Claymore","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,0,10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":2.9,"ilvl":33,"quality":3}, -{"id":2878,"name":"Bearded Boneaxe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.9,"ilvl":30,"quality":3}, -{"id":2879,"name":"Antipodean Rod","icon":"inv_wand_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"unique":true}, -{"id":2898,"name":"Mountaineer Chestpiece","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1}, -{"id":2899,"name":"Wendigo Collar","icon":"inv_belt_01","type":8,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2900,"name":"Stone Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":2901,"name":"Mining Pick","icon":"inv_pick_02","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1}, -{"id":2902,"name":"Cloak of the Faith","icon":"inv_misc_cape_06","type":4,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":2903,"name":"Daryl's Hunting Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.3,"ilvl":15,"quality":2}, -{"id":2904,"name":"Daryl's Hunting Rifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.5,"ilvl":16,"quality":2}, -{"id":2905,"name":"Goat Fur Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2906,"name":"Darkshire Mail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":1}, -{"id":2907,"name":"Dwarven Tree Chopper","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":52,"weaponSpeed":3.3,"ilvl":20,"quality":2,"sources":[{"quest":{"id":283,"name":"A Dark Threat Looms"}}]}, -{"id":2908,"name":"Thornblade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":1.6,"ilvl":20,"quality":2,"sources":[{"quest":{"id":283,"name":"A Dark Threat Looms"}}]}, -{"id":2910,"name":"Gold Militia Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":2911,"name":"Keller's Girdle","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3}, -{"id":2912,"name":"Claw of the Shadowmancer","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.9,"ilvl":32,"quality":3,"unique":true}, -{"id":2913,"name":"Silk Mantle of Gamn","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":1}, -{"id":2915,"name":"Taran Icebreaker","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":137,"weaponSpeed":2.3,"ilvl":52,"quality":4}, -{"id":2916,"name":"Gold Lion Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[2,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":2917,"name":"Tranquil Ring","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":2933,"name":"Seal of Wrynn","icon":"inv_jewelry_ring_05","type":11,"stats":[3,3,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"factionRestriction":1}, -{"id":2941,"name":"Prison Shank","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.8,"ilvl":26,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1720,"zoneId":717}}]}, -{"id":2942,"name":"Iron Knuckles","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.7,"ilvl":26,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1720,"zoneId":717}}]}, -{"id":2943,"name":"Eye of Paleth","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":2944,"name":"Cursed Eye of Paleth","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"unique":true,"sources":[{"quest":{}}]}, -{"id":2949,"name":"Mariner Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":2950,"name":"Icicle Rod","icon":"inv_staff_15","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":77,"weaponSpeed":3.8,"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":2951,"name":"Ring of the Underwood","icon":"inv_jewelry_ring_12","type":11,"stats":[2,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"unique":true}, -{"id":2953,"name":"Watch Master's Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":2954,"name":"Night Watch Pantaloons","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":2955,"name":"First Mate Hat","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":2957,"name":"Journeyman's Vest","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":2958,"name":"Journeyman's Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":2959,"name":"Journeyman's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":2960,"name":"Journeyman's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":2961,"name":"Burnt Leather Vest","icon":"inv_shirt_09","type":5,"armorType":2,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":2962,"name":"Burnt Leather Breeches","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":2963,"name":"Burnt Leather Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":2964,"name":"Burnt Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2965,"name":"Warrior's Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":2966,"name":"Warrior's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":2967,"name":"Warrior's Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":2968,"name":"Warrior's Gloves","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":2969,"name":"Spellbinder Vest","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":2970,"name":"Spellbinder Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":2971,"name":"Spellbinder Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":2972,"name":"Spellbinder Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":2973,"name":"Hunting Tunic","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":2974,"name":"Hunting Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":2975,"name":"Hunting Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":2976,"name":"Hunting Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2977,"name":"Veteran Armor","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":2978,"name":"Veteran Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2979,"name":"Veteran Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":2980,"name":"Veteran Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":2981,"name":"Seer's Robe","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2982,"name":"Seer's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":2983,"name":"Seer's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":2984,"name":"Seer's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":2985,"name":"Inscribed Leather Breastplate","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2986,"name":"Inscribed Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":2987,"name":"Inscribed Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":2988,"name":"Inscribed Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":2989,"name":"Burnished Tunic","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2990,"name":"Burnished Leggings","icon":"inv_pants_02","type":9,"armorType":3,"stats":[4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2991,"name":"Burnished Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":2992,"name":"Burnished Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":3000,"name":"Brood Mother Carapace","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":3008,"name":"Wendigo Fur Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3011,"name":"Feathered Headdress","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":3018,"name":"Hide of Lupos","icon":"inv_misc_pelt_wolf_02","type":4,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3019,"name":"Noble's Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,5,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":3020,"name":"Enduring Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,24,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3}, -{"id":3021,"name":"Ranger Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":2.7,"ilvl":25,"quality":3}, -{"id":3022,"name":"Bluegill Breeches","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3023,"name":"Large Bore Blunderbuss","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":41,"weaponSpeed":2.5,"ilvl":21,"quality":1}, -{"id":3024,"name":"BKP 2700 \"Enforcer\"","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":56,"weaponSpeed":2.7,"ilvl":26,"quality":1}, -{"id":3025,"name":"BKP 42 \"Ultra\"","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":2.1,"ilvl":36,"quality":1}, -{"id":3026,"name":"Reinforced Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":36,"weaponSpeed":2.2,"ilvl":21,"quality":1}, -{"id":3027,"name":"Heavy Recurve Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.4,"ilvl":25,"quality":1}, -{"id":3028,"name":"Longbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":65,"weaponSpeed":2.3,"ilvl":34,"quality":1}, -{"id":3036,"name":"Heavy Shortbow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.5,"ilvl":15,"quality":2}, -{"id":3037,"name":"Whipwood Recurve Bow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.8,"ilvl":34,"quality":2}, -{"id":3039,"name":"Short Ash Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.9,"ilvl":23,"quality":2}, -{"id":3040,"name":"Hunter's Muzzle Loader","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.8,"ilvl":19,"quality":2}, -{"id":3041,"name":"\"Mage-Eye\" Blunderbuss","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":2.8,"ilvl":31,"quality":2}, -{"id":3042,"name":"BKP \"Sparrow\" Smallbore","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.7,"ilvl":33,"quality":2}, -{"id":3045,"name":"Lambent Scale Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3047,"name":"Lambent Scale Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3048,"name":"Lambent Scale Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3049,"name":"Lambent Scale Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3053,"name":"Humbert's Chestpiece","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":3055,"name":"Forest Leather Chestpiece","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3056,"name":"Forest Leather Pants","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3057,"name":"Forest Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":3058,"name":"Forest Leather Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":3065,"name":"Bright Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3066,"name":"Bright Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":3067,"name":"Bright Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3069,"name":"Bright Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3070,"name":"Ensign Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":3071,"name":"Striking Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.7,"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":3072,"name":"Smoldering Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3073,"name":"Smoldering Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3074,"name":"Smoldering Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":3075,"name":"Eye of Flame","icon":"inv_helmet_44","type":1,"armorType":1,"stats":[0,0,15,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":3076,"name":"Smoldering Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3078,"name":"Naga Heartpiercer","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":80,"weaponSpeed":2.9,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4831,"zoneId":719}}]}, -{"id":3079,"name":"Skorn's Rifle","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":1.9,"ilvl":12,"quality":2,"sources":[{"quest":{"id":770,"name":"The Demon Scarred Cloak"}}],"factionRestriction":2}, -{"id":3103,"name":"Coldridge Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":27,"weaponSpeed":2.7,"ilvl":12,"quality":2,"sources":[{"quest":{"id":314,"name":"Protecting the Herd"}}],"factionRestriction":1}, -{"id":3151,"name":"Siege Brigade Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3152,"name":"Driving Gloves","icon":"inv_gauntlets_114","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":412,"name":"Operation Recombobulation"}}],"factionRestriction":1}, -{"id":3153,"name":"Oil-Stained Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":412,"name":"Operation Recombobulation"}}],"factionRestriction":1}, -{"id":3154,"name":"Thelsamar Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":2.1,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":3158,"name":"Burnt Hide Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":1}, -{"id":3160,"name":"Ironplate Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":3161,"name":"Robe of the Keeper","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":3166,"name":"Ironheart Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":3184,"name":"Hook Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-20,17,18,19,22,23,24,1548,1549,1800,1801,1876,1877,1952,1953,1990,1991,2028,2029,-84,-19,-18,-17],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.5,"ilvl":20,"quality":2}, -{"id":3185,"name":"Acrobatic Staff","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,215,216,217,218,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,1811,1812,1849,1850,1887,1888,1963,1964,2001,2002,2039,2040,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9,521],"weaponDamageMin":40,"weaponDamageMax":61,"weaponSpeed":2.2,"ilvl":34,"quality":2}, -{"id":3186,"name":"Viking Sword","icon":"inv_sword_33","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[96,97,114,115,588,589,590,673,674,675,1183,1184,1185,1550,1551,-84,-78,-68,-20,-17,-14],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.7,"ilvl":30,"quality":2}, -{"id":3187,"name":"Sacrificial Kris","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,155,167,184,189,594,595,596,679,680,681,1189,1190,1191,1553,1554,1805,1806,1843,1844,1881,1882,1957,1958,1995,1996,2033,2034,-84,-78,-68,-20,-19,-18,-17,-14,154],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.4,"ilvl":44,"quality":2}, -{"id":3188,"name":"Coral Claymore","icon":"inv_sword_38","type":13,"weaponType":9,"handType":4,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":2.8,"ilvl":15,"quality":2}, -{"id":3189,"name":"Wood Chopper","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":17,"weaponSpeed":3.3,"ilvl":8,"quality":1}, -{"id":3190,"name":"Beatstick","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":14,"weaponSpeed":2.6,"ilvl":8,"quality":1}, -{"id":3191,"name":"Arced War Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":77,"weaponSpeed":3.5,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4278,"zoneId":209}}]}, -{"id":3192,"name":"Short Bastard Sword","icon":"inv_sword_40","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,24,93,96,97,256,501,502,585,586,587,670,671,672,840,841,842,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":3,"ilvl":12,"quality":2}, -{"id":3193,"name":"Oak Mallet","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,135,136,153,154,155,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":38,"weaponDamageMax":58,"weaponSpeed":3.5,"ilvl":21,"quality":2}, -{"id":3194,"name":"Black Malice","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":73,"weaponSpeed":3.3,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":209,"otherName":"Trash"}}]}, -{"id":3195,"name":"Barbaric Battle Axe","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,111,114,115,503,504,505,588,589,590,673,674,675,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":34,"weaponDamageMax":52,"weaponSpeed":3.6,"ilvl":18,"quality":2}, -{"id":3196,"name":"Edged Bastard Sword","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,93,96,97,111,114,115,503,504,505,588,589,590,673,674,675,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-81,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":3.1,"ilvl":18,"quality":2}, -{"id":3197,"name":"Stonecutter Claymore","icon":"inv_sword_47","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,217,218,219,220,521,522,523,606,607,608,691,692,693,861,862,863,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.1,"ilvl":35,"quality":2}, -{"id":3198,"name":"Battering Hammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[153,154,155,179,184,189,594,595,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":37,"weaponDamageMax":57,"weaponSpeed":3.1,"ilvl":23,"quality":2}, -{"id":3199,"name":"Battle Slayer","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,154,155,167,184,189,509,510,511,594,595,596,679,680,681,849,850,851,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":38,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":22,"quality":2}, -{"id":3200,"name":"Burnt Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":3201,"name":"Barbarian War Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,171,172,186,187,191,192,515,516,517,600,602,685,686,687,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,601,-84,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":47,"weaponDamageMax":71,"weaponSpeed":3.1,"ilvl":28,"quality":2}, -{"id":3202,"name":"Forest Leather Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":3203,"name":"Dense Triangle Mace","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":2.4,"ilvl":28,"quality":3}, -{"id":3204,"name":"Deepwood Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3205,"name":"Inscribed Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":3206,"name":"Cavalier Two-Hander","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,186,187,191,192,515,516,517,600,601,602,685,686,687,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":2.9,"ilvl":28,"quality":2}, -{"id":3207,"name":"Hunting Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":3208,"name":"Conk Hammer","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,336,337,413,414,618,619,620,703,704,705,874,875,958,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,873,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":104,"weaponDamageMax":157,"weaponSpeed":3.5,"ilvl":48,"quality":2}, -{"id":3209,"name":"Ancient War Sword","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":3.3,"ilvl":32,"quality":2,"factionRestriction":1}, -{"id":3210,"name":"Brutal War Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,171,172,186,187,191,192,515,516,517,600,602,685,686,687,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,601,-84,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":58,"weaponDamageMax":88,"weaponSpeed":3.6,"ilvl":30,"quality":2}, -{"id":3211,"name":"Burnished Bracers","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":3212,"name":"Lambent Scale Bracers","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":3213,"name":"Veteran Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":3214,"name":"Warrior's Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3216,"name":"Warm Winter Robe","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":287,"name":"Frostmane Hold"}}],"factionRestriction":1}, -{"id":3217,"name":"Foreman Belt","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3222,"name":"Wicked Dagger","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":20,"quality":3}, -{"id":3223,"name":"Frostmane Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2.2,"ilvl":11,"quality":2}, -{"id":3224,"name":"Silver-Lined Bracers","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3225,"name":"Bloodstained Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":1.6,"ilvl":9,"quality":1}, -{"id":3227,"name":"Nightbane Staff","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":49,"weaponSpeed":2.7,"ilvl":23,"quality":2}, -{"id":3228,"name":"Jimmied Handcuffs","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1720,"zoneId":717}}]}, -{"id":3229,"name":"Tarantula Silk Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3230,"name":"Black Wolf Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,3,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4274,"zoneId":209}}]}, -{"id":3231,"name":"Cutthroat Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":3235,"name":"Ring of Scorn","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":3260,"name":"Scarlet Initiate Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1}, -{"id":3261,"name":"Webbed Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":3262,"name":"Putrid Wooden Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":2,"ilvl":3,"quality":1}, -{"id":3263,"name":"Webbed Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1}, -{"id":3267,"name":"Forsaken Shortsword","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.1,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3268,"name":"Forsaken Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.6,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3269,"name":"Forsaken Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.9,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3270,"name":"Flax Vest","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3272,"name":"Zombie Skin Leggings","icon":"inv_pants_leather_38","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3273,"name":"Rugged Mail Vest","icon":"inv_chest_mail_16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3274,"name":"Flax Boots","icon":"inv_boots_cloth_31","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3275,"name":"Flax Gloves","icon":"inv_gauntlets_114v3","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":3276,"name":"Deathguard Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3277,"name":"Executor Staff","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":9,"weaponSpeed":2.9,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3278,"name":"Aura Proc Damage Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":2,"ilvl":30}, -{"id":3279,"name":"Battle Chain Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3280,"name":"Battle Chain Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3281,"name":"Battle Chain Gloves","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":3282,"name":"Battle Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":3283,"name":"Battle Chain Tunic","icon":"inv_chest_leather_04","type":5,"armorType":3,"stats":[2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":3284,"name":"Tribal Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3285,"name":"Tribal Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3286,"name":"Tribal Gloves","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3287,"name":"Tribal Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":3288,"name":"Tribal Vest","icon":"inv_chest_cloth_16","type":5,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":3289,"name":"Ancestral Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":3290,"name":"Ancestral Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3291,"name":"Ancestral Woollies","icon":"inv_pants_wolf","type":9,"armorType":1,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":3292,"name":"Ancestral Tunic","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":3293,"name":"Deadman Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":4,"weaponSpeed":2.2,"ilvl":3,"quality":1}, -{"id":3294,"name":"Deadman Club","icon":"inv_mace_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.8,"ilvl":3,"quality":1}, -{"id":3295,"name":"Deadman Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.5,"ilvl":3,"quality":1}, -{"id":3296,"name":"Deadman Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.4,"ilvl":3,"quality":1}, -{"id":3302,"name":"Brackwater Boots","icon":"inv_boots_03","type":10,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3303,"name":"Brackwater Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3304,"name":"Brackwater Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":3305,"name":"Brackwater Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":3306,"name":"Brackwater Vest","icon":"inv_chest_cloth_06","type":5,"armorType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":3307,"name":"Barbaric Cloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3308,"name":"Barbaric Cloth Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3309,"name":"Barbaric Loincloth","icon":"inv_pants_wolf","type":9,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":3310,"name":"Barbaric Cloth Vest","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":3311,"name":"Ceremonial Leather Ankleguards","icon":"inv_bracer_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":3312,"name":"Ceremonial Leather Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":3313,"name":"Ceremonial Leather Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":3314,"name":"Ceremonial Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3315,"name":"Ceremonial Leather Loincloth","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":3319,"name":"Short Sabre","icon":"inv_sword_24","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.9,"ilvl":9,"quality":1}, -{"id":3321,"name":"Gray Fur Booties","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3322,"name":"Wispy Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1}, -{"id":3323,"name":"Ghostly Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":3324,"name":"Ghostly Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":3325,"name":"Vile Fin Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":19,"weaponSpeed":3.1,"ilvl":9,"quality":1}, -{"id":3327,"name":"Vile Fin Oracle Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":18,"weaponSpeed":2.9,"ilvl":9,"quality":1}, -{"id":3328,"name":"Spider Web Robe","icon":"inv_chest_cloth_34","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3329,"name":"Spiked Wooden Plank","icon":"inv_mace_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.9,"ilvl":11,"quality":1}, -{"id":3330,"name":"Dargol's Hauberk","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":3331,"name":"Melrache's Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3332,"name":"Perrine's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3334,"name":"Farmer's Shovel","icon":"inv_misc_shovel_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":17,"weaponSpeed":3.7,"ilvl":7,"quality":1}, -{"id":3335,"name":"Farmer's Broom","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":14,"weaponSpeed":3.5,"ilvl":6,"quality":1}, -{"id":3336,"name":"Flesh Piercer","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":2,"ilvl":29,"quality":2}, -{"id":3341,"name":"Gauntlets of Ogre Strength","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":3344,"name":"Captain Sanders' Sash","icon":"inv_misc_bandana_03","type":8,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}]}, -{"id":3345,"name":"Silk Wizard Hat","icon":"inv_helmet_15","type":1,"armorType":1,"stats":[0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":3360,"name":"Stitches' Femur","icon":"inv_misc_bone_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1,"unique":true}, -{"id":3363,"name":"Frayed Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":3365,"name":"Frayed Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":3370,"name":"Patchwork Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8}, -{"id":3373,"name":"Patchwork Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9}, -{"id":3374,"name":"Calico Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14}, -{"id":3375,"name":"Calico Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12}, -{"id":3376,"name":"Canvas Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":3377,"name":"Canvas Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":3378,"name":"Brocade Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21}, -{"id":3379,"name":"Brocade Bracers","icon":"inv_bracer_03","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22}, -{"id":3380,"name":"Cross-Stitched Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":3381,"name":"Cross-Stitched Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28}, -{"id":3392,"name":"Ringed Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":3400,"name":"Lucine Longsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.5,"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":3413,"name":"Doomspike","icon":"inv_sword_29","type":13,"weaponType":2,"handType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":30,"weaponSpeed":1.4,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":3414,"name":"Crested Scepter","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":46,"weaponSpeed":2.2,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":3415,"name":"Staff of the Friar","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":66,"weaponSpeed":2.6,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":3416,"name":"Martyr's Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[6,0,9,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":3417,"name":"Onyx Claymore","icon":"inv_sword_13","type":13,"weaponType":9,"handType":4,"stats":[9,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":3.4,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":719,"otherName":"Trash"}}]}, -{"id":3419,"name":"Red Rose","icon":"inv_jewelry_talisman_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":3420,"name":"Black Rose","icon":"inv_jewelry_talisman_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":1}, -{"id":3421,"name":"Simple Wildflowers","icon":"inv_misc_flower_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3422,"name":"Beautiful Wildflowers","icon":"inv_misc_flower_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1}, -{"id":3423,"name":"Bouquet of White Roses","icon":"inv_misc_flower_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3424,"name":"Bouquet of Black Roses","icon":"inv_jewelry_talisman_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1}, -{"id":3429,"name":"Guardsman Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":3430,"name":"Sniper Rifle","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,235,236,506,507,591,592,676,677,761,762,846,847,1016,1017,1709,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":93,"weaponDamageMax":109,"weaponSpeed":3,"ilvl":44,"quality":2}, -{"id":3431,"name":"Bone-Studded Leather","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":3435,"name":"Zombie Skin Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":3437,"name":"Clasped Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":3439,"name":"Zombie Skin Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3440,"name":"Bonecracker","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.2,"ilvl":13,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3442,"name":"Apprentice Sash","icon":"inv_misc_bandana_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":3443,"name":"Ceremonial Tomahawk","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.7,"ilvl":10,"quality":1}, -{"id":3444,"name":"Tiller's Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"factionRestriction":2}, -{"id":3445,"name":"Ceremonial Knife","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.4,"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":3446,"name":"Darkwood Staff","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.2,"ilvl":13,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":3447,"name":"Cryptwalker Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":3449,"name":"Mystic Shawl","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":3450,"name":"Faerleia's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":3451,"name":"Nightglow Concoction","icon":"inv_potion_19","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":3452,"name":"Ceranium Rod","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":2.7,"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":3453,"name":"Quilted Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":3454,"name":"Reconnaissance Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1,"factionRestriction":2}, -{"id":3455,"name":"Deathstalker Shortsword","icon":"inv_sword_15","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2.1,"ilvl":11,"quality":1,"factionRestriction":2}, -{"id":3456,"name":"Dog Whistle","icon":"ability_hunter_beastcall","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3974,"zoneId":796}}]}, -{"id":3457,"name":"Stamped Trousers","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":3458,"name":"Rugged Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":3461,"name":"High Robe of the Adjudicator","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"factionRestriction":2}, -{"id":3462,"name":"Talonstrike","icon":"inv_sword_12","type":13,"weaponType":9,"handType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":1.6,"ilvl":24,"quality":2,"factionRestriction":2}, -{"id":3469,"name":"Copper Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3319}},{"crafted":{"profession":2,"spellId":3319}}]}, -{"id":3471,"name":"Copper Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3321}},{"crafted":{"profession":2,"spellId":3321}}]}, -{"id":3472,"name":"Runed Copper Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3323}},{"crafted":{"profession":2,"spellId":3323}}]}, -{"id":3473,"name":"Runed Copper Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3324}},{"crafted":{"profession":2,"spellId":3324}}]}, -{"id":3474,"name":"Gemmed Copper Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3325}},{"crafted":{"profession":2,"spellId":3325}}]}, -{"id":3475,"name":"Cloak of Flames","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":3480,"name":"Rough Bronze Shoulders","icon":"inv_shoulder_05","type":3,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3328}},{"crafted":{"profession":2,"spellId":3328}}]}, -{"id":3481,"name":"Silvered Bronze Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[3,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3330}},{"crafted":{"profession":2,"spellId":3330}}]}, -{"id":3482,"name":"Silvered Bronze Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[4,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3331}},{"crafted":{"profession":2,"spellId":3331}}]}, -{"id":3483,"name":"Silvered Bronze Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[4,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3333}},{"crafted":{"profession":2,"spellId":3333}}]}, -{"id":3484,"name":"Green Iron Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3334}},{"crafted":{"profession":2,"spellId":3334}}]}, -{"id":3485,"name":"Green Iron Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3336}},{"crafted":{"profession":2,"spellId":3336}}]}, -{"id":3487,"name":"Heavy Copper Broadsword","icon":"inv_sword_14","type":13,"weaponType":9,"handType":4,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":41,"weaponSpeed":2.7,"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3292}},{"crafted":{"profession":2,"spellId":3292}}]}, -{"id":3488,"name":"Copper Battle Axe","icon":"inv_throwingaxe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.2,"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3293}},{"crafted":{"profession":2,"spellId":3293}}]}, -{"id":3489,"name":"Thick War Axe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.5,"ilvl":17,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3294}},{"crafted":{"profession":2,"spellId":3294}}]}, -{"id":3490,"name":"Deadly Bronze Poniard","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.8,"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3295}},{"crafted":{"profession":2,"spellId":3295}}]}, -{"id":3491,"name":"Heavy Bronze Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":2.8,"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3296}},{"crafted":{"profession":2,"spellId":3296}}]}, -{"id":3492,"name":"Mighty Iron Hammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":2.8,"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3297}},{"crafted":{"profession":2,"spellId":3297}}]}, -{"id":3493,"name":"Raptor's End","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":2.9,"ilvl":30,"quality":2}, -{"id":3511,"name":"Cloak of the People's Militia","icon":"inv_misc_cape_14","type":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":3535,"name":"Red Leather C03 Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":3545,"name":"Black Leather D02 Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":3555,"name":"Robe of Solomon","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,7,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":1}, -{"id":3556,"name":"Dread Mage Hat","icon":"inv_helmet_14","type":1,"armorType":1,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"classAllowlist":[8],"sources":[{"quest":{"id":397,"name":"You Have Served Us Well"}}]}, -{"id":3558,"name":"Fen Keeper Robe","icon":"inv_chest_cloth_14","type":5,"armorType":1,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":3559,"name":"Night Watch Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"factionRestriction":1}, -{"id":3560,"name":"Mantle of Honor","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"factionRestriction":1}, -{"id":3561,"name":"Resilient Poncho","icon":"inv_misc_cape_04","type":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":1}, -{"id":3562,"name":"Belt of Vindication","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3563,"name":"Seafarer's Pantaloons","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":3565,"name":"Beerstained Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":3566,"name":"Raptorbane Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":3567,"name":"Dwarven Fishing Pole","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.9,"ilvl":19,"quality":2,"factionRestriction":1}, -{"id":3569,"name":"Vicar's Robe","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,9,13,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":3570,"name":"Bonegrinding Pestle","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":2.4,"ilvl":16,"quality":2,"factionRestriction":2}, -{"id":3571,"name":"Trogg Beater","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":60,"weaponSpeed":3.6,"ilvl":21,"quality":2}, -{"id":3572,"name":"Daryl's Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.3,"ilvl":17,"quality":2}, -{"id":3578,"name":"Harvester's Pants","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":3581,"name":"Serrated Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.6,"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":3582,"name":"Acidproof Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":3583,"name":"Weathered Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":3585,"name":"Camouflaged Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":3586,"name":"Logsplitter","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.6,"ilvl":16,"quality":2,"factionRestriction":2}, -{"id":3587,"name":"Embroidered Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3588,"name":"Embroidered Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3589,"name":"Heavy Weave Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":3590,"name":"Heavy Weave Bracers","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":3591,"name":"Padded Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":3592,"name":"Padded Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":3593,"name":"Russet Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":3594,"name":"Russet Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":3595,"name":"Tattered Cloth Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":3596,"name":"Tattered Cloth Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":3597,"name":"Thick Cloth Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":3598,"name":"Thick Cloth Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":3599,"name":"Thin Cloth Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":3600,"name":"Thin Cloth Bracers","icon":"inv_bracer_03","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":3602,"name":"Knitted Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3603,"name":"Knitted Bracers","icon":"inv_bracer_03","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3606,"name":"Woven Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3607,"name":"Woven Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":3641,"name":"Journeyman's Bracers","icon":"inv_bracer_03","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":3642,"name":"Ancestral Bracers","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3643,"name":"Spellbinder Bracers","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":3644,"name":"Barbaric Cloth Bracers","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":3645,"name":"Seer's Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":3647,"name":"Bright Bracers","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":3649,"name":"Tribal Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":3650,"name":"Battle Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":3651,"name":"Veteran Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3652,"name":"Hunting Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":3653,"name":"Ceremonial Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":3654,"name":"Brackwater Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":3655,"name":"Burnished Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":3656,"name":"Lambent Scale Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":3661,"name":"Handcrafted Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":3719,"name":"Hillman's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3760}},{"crafted":{"profession":8,"spellId":3760}}]}, -{"id":3732,"name":"Hooded Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1,"factionRestriction":2}, -{"id":3733,"name":"Orcish War Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"factionRestriction":2}, -{"id":3738,"name":"Brewing Rod","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":2.9,"ilvl":25,"quality":2}, -{"id":3739,"name":"Skull Ring","icon":"inv_belt_12","type":11,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":3740,"name":"Decapitating Sword","icon":"inv_weapon_shortblade_26","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,585,586,587,670,671,672,1180,1181,1182,1549,-68,-84,-78,-20,-17,-14],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":24,"quality":2}, -{"id":3741,"name":"Stomping Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"factionRestriction":2}, -{"id":3742,"name":"Bow of Plunder","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":2.6,"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":3743,"name":"Sentry Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":3747,"name":"Meditative Sash","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":3748,"name":"Feline Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,4,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3927,"zoneId":209}}]}, -{"id":3749,"name":"High Apothecary Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":3750,"name":"Ribbed Breastplate","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":3751,"name":"Mercenary Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":3752,"name":"Grunt Vest","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":3753,"name":"Shepherd's Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":3754,"name":"Shepherd's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":3755,"name":"Fish Gutter","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.1,"ilvl":32,"quality":2,"factionRestriction":1}, -{"id":3758,"name":"Crusader Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":3759,"name":"Insulated Sage Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":3760,"name":"Band of the Undercity","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"factionRestriction":2}, -{"id":3761,"name":"Deadskull Shield","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[1,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"factionRestriction":2}, -{"id":3763,"name":"Lunar Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[3,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":3764,"name":"Mantis Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,5,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":3765,"name":"Brigand's Pauldrons","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":3778,"name":"Taut Compound Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":41,"weaponSpeed":2.5,"ilvl":31}, -{"id":3779,"name":"Hefty War Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":2.8,"ilvl":32}, -{"id":3780,"name":"Long-Barreled Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.6,"ilvl":33}, -{"id":3781,"name":"Broad Claymore","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3.3,"ilvl":34}, -{"id":3782,"name":"Large War Club","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":53,"weaponSpeed":3.1,"ilvl":35}, -{"id":3783,"name":"Light Scimitar","icon":"inv_sword_24","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":1.9,"ilvl":36}, -{"id":3784,"name":"Metal Stave","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":57,"weaponSpeed":3.1,"ilvl":37}, -{"id":3785,"name":"Keen Axe","icon":"inv_axe_23","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":35,"weaponSpeed":2.2,"ilvl":38}, -{"id":3786,"name":"Shiny Dirk","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.6,"ilvl":39}, -{"id":3787,"name":"Stone Club","icon":"inv_mace_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":2.2,"ilvl":40}, -{"id":3792,"name":"Interlaced Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34}, -{"id":3793,"name":"Interlaced Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32}, -{"id":3794,"name":"Interlaced Bracers","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38}, -{"id":3795,"name":"Interlaced Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36}, -{"id":3796,"name":"Interlaced Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33}, -{"id":3797,"name":"Interlaced Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39}, -{"id":3798,"name":"Interlaced Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35}, -{"id":3799,"name":"Interlaced Vest","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37}, -{"id":3800,"name":"Hardened Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39}, -{"id":3801,"name":"Hardened Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35}, -{"id":3802,"name":"Hardened Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34}, -{"id":3803,"name":"Hardened Cloak","icon":"inv_helmet_48","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38}, -{"id":3804,"name":"Hardened Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36}, -{"id":3805,"name":"Hardened Leather Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32}, -{"id":3806,"name":"Hardened Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37}, -{"id":3807,"name":"Hardened Leather Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33}, -{"id":3808,"name":"Double Mail Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34}, -{"id":3809,"name":"Double Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32}, -{"id":3810,"name":"Double Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38}, -{"id":3811,"name":"Double-Stitched Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37}, -{"id":3812,"name":"Double Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36}, -{"id":3813,"name":"Double Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35}, -{"id":3814,"name":"Double Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39}, -{"id":3815,"name":"Double Mail Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33}, -{"id":3816,"name":"Reflective Heater","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36}, -{"id":3817,"name":"Reinforced Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33}, -{"id":3822,"name":"Runic Darkblade","icon":"inv_sword_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":3.3,"ilvl":32,"quality":2,"factionRestriction":2}, -{"id":3833,"name":"Adept's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":3834,"name":"Sturdy Cloth Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":3835,"name":"Green Iron Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3501}},{"crafted":{"profession":2,"spellId":3501}}]}, -{"id":3836,"name":"Green Iron Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3502}},{"crafted":{"profession":2,"spellId":3502}}]}, -{"id":3837,"name":"Golden Scale Coif","icon":"inv_helmet_36","type":1,"armorType":3,"stats":[10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3503}},{"crafted":{"profession":2,"spellId":3503}}]}, -{"id":3840,"name":"Green Iron Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3504}},{"crafted":{"profession":2,"spellId":3504}}]}, -{"id":3841,"name":"Golden Scale Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3505}},{"crafted":{"profession":2,"spellId":3505}}]}, -{"id":3842,"name":"Green Iron Leggings","icon":"inv_pants_05","type":9,"armorType":3,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3506}},{"crafted":{"profession":2,"spellId":3506}}]}, -{"id":3843,"name":"Golden Scale Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3507}},{"crafted":{"profession":2,"spellId":3507}}]}, -{"id":3844,"name":"Green Iron Hauberk","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[7,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,120,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3508}},{"crafted":{"profession":2,"spellId":3508}}]}, -{"id":3845,"name":"Golden Scale Cuirass","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3511}},{"crafted":{"profession":2,"spellId":3511}}]}, -{"id":3846,"name":"Polished Steel Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3513}},{"crafted":{"profession":2,"spellId":3513}}]}, -{"id":3847,"name":"Golden Scale Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[6,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3515}},{"crafted":{"profession":2,"spellId":3515}}]}, -{"id":3848,"name":"Big Bronze Knife","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.9,"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3491}},{"crafted":{"profession":2,"spellId":3491}}]}, -{"id":3849,"name":"Hardened Iron Shortsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.7,"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3492}},{"crafted":{"profession":2,"spellId":3492}}]}, -{"id":3850,"name":"Jade Serpentblade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.6,"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3493}},{"crafted":{"profession":2,"spellId":3493}}]}, -{"id":3851,"name":"Solid Iron Maul","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.5,"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3494}},{"crafted":{"profession":2,"spellId":3494}}]}, -{"id":3852,"name":"Golden Iron Destroyer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[11,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":78,"weaponSpeed":2.8,"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3495}},{"crafted":{"profession":2,"spellId":3495}}]}, -{"id":3853,"name":"Moonsteel Broadsword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":4,"stats":[0,0,4,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":83,"weaponSpeed":2.8,"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3496}},{"crafted":{"profession":2,"spellId":3496}}]}, -{"id":3854,"name":"Frost Tiger Blade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":118,"weaponSpeed":3.4,"ilvl":40,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":3497}},{"crafted":{"profession":2,"spellId":3497}}]}, -{"id":3855,"name":"Massive Iron Axe","icon":"inv_throwingaxe_05","type":13,"weaponType":1,"handType":4,"stats":[11,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":108,"weaponSpeed":3.5,"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":3498}},{"crafted":{"profession":2,"spellId":3498}}]}, -{"id":3856,"name":"Shadow Crescent Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":87,"weaponSpeed":2.5,"ilvl":40,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":3500}},{"crafted":{"profession":2,"spellId":3500}}]}, -{"id":3889,"name":"Russet Hat","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":3890,"name":"Studded Hat","icon":"inv_helmet_20","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":3891,"name":"Augmented Chain Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":3892,"name":"Embroidered Hat","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3893,"name":"Reinforced Leather Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3894,"name":"Brigandine Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":3902,"name":"Staff of Nobles","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":68,"weaponSpeed":3.2,"ilvl":20,"quality":3}, -{"id":3935,"name":"Smotts' Cutlass","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.9,"ilvl":25,"quality":1,"unique":true}, -{"id":3936,"name":"Crochet Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42}, -{"id":3937,"name":"Crochet Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46}, -{"id":3938,"name":"Crochet Bracers","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44}, -{"id":3939,"name":"Crochet Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47}, -{"id":3940,"name":"Crochet Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48}, -{"id":3941,"name":"Crochet Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45}, -{"id":3942,"name":"Crochet Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49}, -{"id":3943,"name":"Crochet Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43}, -{"id":3944,"name":"Twill Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53}, -{"id":3945,"name":"Twill Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":3946,"name":"Twill Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54}, -{"id":3947,"name":"Twill Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52}, -{"id":3948,"name":"Twill Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58}, -{"id":3949,"name":"Twill Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59}, -{"id":3950,"name":"Twill Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":3951,"name":"Twill Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57}, -{"id":3952,"name":"Mesh Belt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68}, -{"id":3953,"name":"Mesh Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64}, -{"id":3954,"name":"Mesh Bracers","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65}, -{"id":3955,"name":"Mesh Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62}, -{"id":3956,"name":"Mesh Gloves","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63}, -{"id":3957,"name":"Mesh Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67}, -{"id":3958,"name":"Mesh Mantle","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69}, -{"id":3959,"name":"Mesh Armor","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":3961,"name":"Thick Leather Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44}, -{"id":3962,"name":"Thick Leather Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48}, -{"id":3963,"name":"Thick Leather Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43}, -{"id":3964,"name":"Thick Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46}, -{"id":3965,"name":"Thick Leather Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49}, -{"id":3966,"name":"Thick Leather Pants","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42}, -{"id":3967,"name":"Thick Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47}, -{"id":3968,"name":"Thick Leather Tunic","icon":"inv_shirt_13","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45}, -{"id":3969,"name":"Smooth Leather Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":3970,"name":"Smooth Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54}, -{"id":3971,"name":"Smooth Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59}, -{"id":3972,"name":"Smooth Cloak","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":3973,"name":"Smooth Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58}, -{"id":3974,"name":"Smooth Leather Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53}, -{"id":3975,"name":"Smooth Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52}, -{"id":3976,"name":"Smooth Leather Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57}, -{"id":3977,"name":"Strapped Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63}, -{"id":3978,"name":"Strapped Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69}, -{"id":3979,"name":"Strapped Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67}, -{"id":3980,"name":"Strapped Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62}, -{"id":3981,"name":"Strapped Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68}, -{"id":3982,"name":"Strapped Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":3983,"name":"Strapped Shoulderpads","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65}, -{"id":3984,"name":"Strapped Armor","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64}, -{"id":3985,"name":"Monogrammed Sash","icon":"inv_misc_bandana_03","type":8,"armorType":1,"stats":[0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"unique":true}, -{"id":3986,"name":"Protective Pavise","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48}, -{"id":3987,"name":"Deflecting Tower","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53}, -{"id":3988,"name":"Plate Wall Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65}, -{"id":3989,"name":"Blocking Targe","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42}, -{"id":3990,"name":"Crested Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":3991,"name":"Plated Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68}, -{"id":3992,"name":"Laminated Scale Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52}, -{"id":3993,"name":"Laminated Scale Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53}, -{"id":3994,"name":"Laminated Scale Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58}, -{"id":3995,"name":"Laminated Scale Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57}, -{"id":3996,"name":"Laminated Scale Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59}, -{"id":3997,"name":"Laminated Scale Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":3998,"name":"Laminated Scale Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":3999,"name":"Laminated Scale Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54}, -{"id":4000,"name":"Overlinked Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44}, -{"id":4001,"name":"Overlinked Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46}, -{"id":4002,"name":"Overlinked Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48}, -{"id":4003,"name":"Overlinked Chain Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49}, -{"id":4004,"name":"Overlinked Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47}, -{"id":4005,"name":"Overlinked Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43}, -{"id":4006,"name":"Overlinked Chain Shoulderpads","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42}, -{"id":4007,"name":"Overlinked Chain Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45}, -{"id":4008,"name":"Sterling Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63}, -{"id":4009,"name":"Sterling Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65}, -{"id":4010,"name":"Sterling Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":4011,"name":"Sterling Chain Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68}, -{"id":4012,"name":"Sterling Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67}, -{"id":4013,"name":"Sterling Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64}, -{"id":4014,"name":"Sterling Chain Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69}, -{"id":4015,"name":"Sterling Chain Armor","icon":"inv_chest_plate01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62}, -{"id":4017,"name":"Sharp Shortsword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":39,"weaponSpeed":1.8,"ilvl":46}, -{"id":4018,"name":"Whetted Claymore","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.1,"ilvl":42}, -{"id":4019,"name":"Heavy Flint Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":52,"weaponSpeed":2.3,"ilvl":48}, -{"id":4020,"name":"Splintering Battle Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":49}, -{"id":4021,"name":"Blunting Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.1,"ilvl":46}, -{"id":4022,"name":"Crushing Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":92,"weaponSpeed":3.3,"ilvl":50}, -{"id":4023,"name":"Fine Pointed Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":1.4,"ilvl":44}, -{"id":4024,"name":"Heavy War Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":90,"weaponSpeed":3.4,"ilvl":47}, -{"id":4025,"name":"Balanced Long Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.8,"ilvl":45}, -{"id":4026,"name":"Sentinel Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":2.8,"ilvl":43}, -{"id":4035,"name":"Silver-Thread Robe","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4036,"name":"Silver-Thread Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4037,"name":"Silver-Thread Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4038,"name":"Nightsky Robe","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4039,"name":"Nightsky Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4040,"name":"Nightsky Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4041,"name":"Aurora Cowl","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4042,"name":"Aurora Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4043,"name":"Aurora Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":4044,"name":"Aurora Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4045,"name":"Mistscape Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4046,"name":"Mistscape Pants","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4047,"name":"Mistscape Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,11,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":4048,"name":"Emblazoned Hat","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,7,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4049,"name":"Emblazoned Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4050,"name":"Emblazoned Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4051,"name":"Emblazoned Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4052,"name":"Insignia Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4054,"name":"Insignia Leggings","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4055,"name":"Insignia Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4057,"name":"Insignia Chestguard","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,13,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":4058,"name":"Glyphed Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,4,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":4059,"name":"Glyphed Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4060,"name":"Glyphed Leggings","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4061,"name":"Imperial Leather Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4062,"name":"Imperial Leather Pants","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4063,"name":"Imperial Leather Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":4064,"name":"Emblazoned Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4065,"name":"Combat Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":4066,"name":"Insignia Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,944,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4067,"name":"Glyphed Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4068,"name":"Chief Brigadier Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4069,"name":"Blackforge Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":4070,"name":"Jouster's Crest","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":4071,"name":"Glimmering Mail Breastplate","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[3,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4072,"name":"Glimmering Mail Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4073,"name":"Glimmering Mail Greaves","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4074,"name":"Mail Combat Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[13,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":4075,"name":"Mail Combat Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4076,"name":"Mail Combat Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4077,"name":"Mail Combat Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4078,"name":"Chief Brigadier Coif","icon":"inv_helmet_29","type":1,"armorType":3,"stats":[0,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4079,"name":"Chief Brigadier Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[11,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4080,"name":"Blackforge Cowl","icon":"inv_helmet_16","type":1,"armorType":3,"stats":[0,0,12,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4082,"name":"Blackforge Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,14,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":4083,"name":"Blackforge Gauntlets","icon":"inv_gauntlets_32","type":7,"armorType":3,"stats":[0,4,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":4084,"name":"Blackforge Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":4086,"name":"Flash Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":1.8,"ilvl":37,"quality":2}, -{"id":4087,"name":"Trueshot Bow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,113,114,234,235,236,505,506,507,590,591,592,675,676,677,760,761,762,845,846,847,1015,1016,1017,1708,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":1.9,"ilvl":41,"quality":2}, -{"id":4088,"name":"Dreadblade","icon":"inv_sword_41","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,189,596,597,598,681,682,683,1191,1192,1193,1554,1806,1844,1882,1958,1996,2034,-84,-78,-68,-20,-19,-18,-17,-14,1557],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":1.5,"ilvl":47,"quality":2}, -{"id":4089,"name":"Ricochet Blunderbuss","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,248,508,593,678,763,848,1018,1709,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":60,"weaponDamageMax":112,"weaponSpeed":2.3,"ilvl":48,"quality":2}, -{"id":4090,"name":"Mug O' Hurt","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":1.7,"ilvl":46,"quality":3}, -{"id":4091,"name":"Widowmaker","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":1.9,"ilvl":47,"quality":3,"unique":true}, -{"id":4107,"name":"Tiger Hunter Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":188,"name":"Tiger Mastery"}}]}, -{"id":4108,"name":"Panther Hunter Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":193,"name":"Panther Mastery"}}]}, -{"id":4109,"name":"Excelsior Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":4112,"name":"Choker of the High Shaman","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"factionRestriction":2}, -{"id":4113,"name":"Medicine Blanket","icon":"inv_misc_cape_10","type":4,"stats":[0,0,4,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4114,"name":"Darktide Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4115,"name":"Grom'gol Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[2,0,3,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":2}, -{"id":4116,"name":"Olmann Sewar","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.7,"ilvl":41,"quality":2}, -{"id":4117,"name":"Scorching Sash","icon":"inv_misc_bandana_03","type":8,"armorType":1,"stats":[0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":4118,"name":"Poobah's Nose Ring","icon":"inv_jewelry_ring_03","type":6,"armorType":3,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":4119,"name":"Raptor Hunter Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":197,"name":"Raptor Mastery"}}]}, -{"id":4120,"name":"Robe of Crystal Waters","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"factionRestriction":1}, -{"id":4121,"name":"Gemmed Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,9,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4122,"name":"Bookmaker's Scepter","icon":"inv_mace_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.3,"ilvl":37,"quality":2}, -{"id":4123,"name":"Frost Metal Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4124,"name":"Cap of Harmony","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":4125,"name":"Tranquil Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":4126,"name":"Guerrilla Cleaver","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":2.8,"ilvl":34,"quality":2,"factionRestriction":1}, -{"id":4127,"name":"Shrapnel Blaster","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.9,"ilvl":40,"quality":2,"factionRestriction":1}, -{"id":4128,"name":"Silver Spade","icon":"inv_misc_shovel_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,4,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":134,"weaponSpeed":3.7,"ilvl":41,"quality":2}, -{"id":4129,"name":"Collection Plate","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[2,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":4130,"name":"Smotts' Compass","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":4131,"name":"Belt of Corruption","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":4132,"name":"Darkspear Armsplints","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":2}, -{"id":4133,"name":"Darkspear Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":2}, -{"id":4134,"name":"Nimboya's Mystical Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":112,"weaponSpeed":2.3,"ilvl":46,"quality":3,"factionRestriction":2}, -{"id":4135,"name":"Bloodbone Band","icon":"inv_misc_bone_05","type":11,"stats":[0,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"factionRestriction":2}, -{"id":4136,"name":"Darkspear Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[9,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"factionRestriction":2}, -{"id":4137,"name":"Darkspear Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,7,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"factionRestriction":2}, -{"id":4138,"name":"Blackwater Tunic","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[7,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4139,"name":"Junglewalker Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,8,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4140,"name":"Palm Frond Mantle","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"factionRestriction":1}, -{"id":4190,"name":"Feathered Armor","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":4194,"name":"Feathered Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":4195,"name":"Feathered Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":4197,"name":"Berylline Pads","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,7,7,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":4237,"name":"Handstitched Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3753}},{"crafted":{"profession":8,"spellId":3753}}]}, -{"id":4239,"name":"Embossed Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3756}},{"crafted":{"profession":8,"spellId":3756}}]}, -{"id":4242,"name":"Embossed Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3759}},{"crafted":{"profession":8,"spellId":3759}}]}, -{"id":4243,"name":"Fine Leather Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3761}},{"crafted":{"profession":8,"spellId":3761}}]}, -{"id":4244,"name":"Hillman's Leather Vest","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3762}},{"crafted":{"profession":8,"spellId":3762}}]}, -{"id":4246,"name":"Fine Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3763}},{"crafted":{"profession":8,"spellId":3763}}]}, -{"id":4247,"name":"Hillman's Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3764}},{"crafted":{"profession":8,"spellId":3764}}]}, -{"id":4248,"name":"Dark Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":3765}},{"crafted":{"profession":8,"spellId":3765}}]}, -{"id":4249,"name":"Dark Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3766}},{"crafted":{"profession":8,"spellId":3766}}]}, -{"id":4250,"name":"Hillman's Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3767}},{"crafted":{"profession":8,"spellId":3767}}]}, -{"id":4251,"name":"Hillman's Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3768}},{"crafted":{"profession":8,"spellId":3768}}]}, -{"id":4252,"name":"Dark Leather Shoulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3769}},{"crafted":{"profession":8,"spellId":3769}}]}, -{"id":4253,"name":"Toughened Leather Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,6,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3770}},{"crafted":{"profession":8,"spellId":3770}}]}, -{"id":4254,"name":"Barbaric Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3771}},{"crafted":{"profession":8,"spellId":3771}}]}, -{"id":4255,"name":"Green Leather Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3772}},{"crafted":{"profession":8,"spellId":3772}}]}, -{"id":4256,"name":"Guardian Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3773}},{"crafted":{"profession":8,"spellId":3773}}]}, -{"id":4257,"name":"Green Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,6,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3774}},{"crafted":{"profession":8,"spellId":3774}}]}, -{"id":4258,"name":"Guardian Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3775}},{"crafted":{"profession":8,"spellId":3775}}]}, -{"id":4259,"name":"Green Leather Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3776}},{"crafted":{"profession":8,"spellId":3776}}]}, -{"id":4260,"name":"Guardian Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3777}},{"crafted":{"profession":8,"spellId":3777}}]}, -{"id":4261,"name":"Solliden's Trousers","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4262,"name":"Gem-Studded Leather Belt","icon":"inv_belt_01","type":8,"armorType":2,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":3778}},{"crafted":{"profession":8,"spellId":3778}}]}, -{"id":4263,"name":"Standard Issue Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":4264,"name":"Barbaric Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":3779}},{"crafted":{"profession":8,"spellId":3779}}]}, -{"id":4290,"name":"Dust Bowl","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":4302,"name":"Small Green Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":1.5,"ilvl":10,"quality":1}, -{"id":4303,"name":"Cranial Thumper","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.8,"ilvl":12,"quality":2}, -{"id":4307,"name":"Heavy Linen Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3840}},{"crafted":{"profession":11,"spellId":3840}}]}, -{"id":4308,"name":"Green Linen Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3841}},{"crafted":{"profession":11,"spellId":3841}}]}, -{"id":4309,"name":"Handstitched Linen Britches","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3842}},{"crafted":{"profession":11,"spellId":3842}}]}, -{"id":4310,"name":"Heavy Woolen Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3843}},{"crafted":{"profession":11,"spellId":3843}}]}, -{"id":4311,"name":"Heavy Woolen Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3844}},{"crafted":{"profession":11,"spellId":3844}}]}, -{"id":4312,"name":"Soft-Soled Linen Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3845}},{"crafted":{"profession":11,"spellId":3845}}]}, -{"id":4313,"name":"Red Woolen Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3847}},{"crafted":{"profession":11,"spellId":3847}}]}, -{"id":4314,"name":"Double-Stitched Woolen Shoulders","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3848}},{"crafted":{"profession":11,"spellId":3848}}]}, -{"id":4315,"name":"Reinforced Woolen Shoulders","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3849}},{"crafted":{"profession":11,"spellId":3849}}]}, -{"id":4316,"name":"Heavy Woolen Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3850}},{"crafted":{"profession":11,"spellId":3850}}]}, -{"id":4317,"name":"Phoenix Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3851}},{"crafted":{"profession":11,"spellId":3851}}]}, -{"id":4318,"name":"Gloves of Meditation","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3852}},{"crafted":{"profession":11,"spellId":3852}}]}, -{"id":4319,"name":"Azure Silk Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3854}},{"crafted":{"profession":11,"spellId":3854}}]}, -{"id":4320,"name":"Spidersilk Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3855}},{"crafted":{"profession":11,"spellId":3855}}]}, -{"id":4321,"name":"Spider Silk Slippers","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3856}},{"crafted":{"profession":11,"spellId":3856}}]}, -{"id":4322,"name":"Enchanter's Cowl","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3857}},{"crafted":{"profession":11,"spellId":3857}}]}, -{"id":4323,"name":"Shadow Hood","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,17,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3858}},{"crafted":{"profession":11,"spellId":3858}}]}, -{"id":4324,"name":"Azure Silk Vest","icon":"inv_chest_cloth_37","type":5,"armorType":1,"stats":[0,0,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3859}},{"crafted":{"profession":11,"spellId":3859}}]}, -{"id":4325,"name":"Boots of the Enchanter","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3860}},{"crafted":{"profession":11,"spellId":3860}}]}, -{"id":4326,"name":"Long Silken Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3861}},{"crafted":{"profession":11,"spellId":3861}}]}, -{"id":4327,"name":"Icy Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3862}},{"crafted":{"profession":11,"spellId":3862}}]}, -{"id":4328,"name":"Spider Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3863}},{"crafted":{"profession":11,"spellId":3863}}]}, -{"id":4329,"name":"Star Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3864}},{"crafted":{"profession":11,"spellId":3864}}]}, -{"id":4331,"name":"Phoenix Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3868}},{"crafted":{"profession":11,"spellId":3868}}]}, -{"id":4343,"name":"Brown Linen Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":3914}},{"crafted":{"profession":11,"spellId":3914}}]}, -{"id":4362,"name":"Rough Boomstick","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.3,"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3925}},{"crafted":{"profession":4,"spellId":3925}}]}, -{"id":4368,"name":"Flying Tiger Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3934}},{"crafted":{"profession":4,"spellId":3934}}]}, -{"id":4369,"name":"Deadly Blunderbuss","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":2.6,"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3936}},{"crafted":{"profession":4,"spellId":3936}}]}, -{"id":4372,"name":"Lovingly Crafted Boomstick","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.8,"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3939}},{"crafted":{"profession":4,"spellId":3939}}]}, -{"id":4373,"name":"Shadow Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3940}},{"crafted":{"profession":4,"spellId":3940}}]}, -{"id":4379,"name":"Silver-Plated Shotgun","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.7,"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3949}},{"crafted":{"profession":4,"spellId":3949}}]}, -{"id":4381,"name":"Minor Recombobulator","icon":"inv_gizmo_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3952}},{"crafted":{"profession":4,"spellId":3952}}]}, -{"id":4383,"name":"Moonsight Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":1.7,"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3954}},{"crafted":{"profession":4,"spellId":3954}}]}, -{"id":4385,"name":"Green Tinted Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3956}},{"crafted":{"profession":4,"spellId":3956}}]}, -{"id":4393,"name":"Craftsman's Monocle","icon":"inv_helmet_44","type":1,"armorType":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3966}},{"crafted":{"profession":4,"spellId":3966}}]}, -{"id":4396,"name":"Mechanical Dragonling","icon":"inv_misc_head_dragon_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":3969}},{"crafted":{"profession":4,"spellId":3969}}]}, -{"id":4397,"name":"Gnomish Cloaking Device","icon":"inv_gizmo_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":3971}},{"crafted":{"profession":4,"spellId":3971}}]}, -{"id":4430,"name":"Ethereal Talisman","icon":"inv_jewelry_necklace_03","type":2,"stats":[5,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":4434,"name":"Scarecrow Trousers","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":4436,"name":"Jewel-Encrusted Sash","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":4437,"name":"Channeler's Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":54,"weaponSpeed":3.4,"ilvl":20,"quality":2}, -{"id":4438,"name":"Pugilist Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[8,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":491,"otherName":"Trash"}}]}, -{"id":4439,"name":"Bruiser Club","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.2,"ilvl":22,"quality":2}, -{"id":4443,"name":"Grim Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"factionRestriction":2}, -{"id":4444,"name":"Black Husk Shield","icon":"inv_misc_monsterspidercarapace_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4445,"name":"Flesh Carver","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.3,"ilvl":23,"quality":2}, -{"id":4446,"name":"Blackvenom Blade","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.8,"ilvl":26,"quality":3}, -{"id":4447,"name":"Cloak of Night","icon":"inv_misc_cape_04","type":4,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4448,"name":"Husk of Naraxis","icon":"inv_misc_monsterspidercarapace_01","type":5,"armorType":3,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4449,"name":"Naraxis' Fang","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.6,"ilvl":27,"quality":2}, -{"id":4454,"name":"Talon of Vultros","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":2,"ilvl":16,"quality":3,"unique":true}, -{"id":4455,"name":"Raptor Hide Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":4096}},{"crafted":{"profession":8,"spellId":4096}}]}, -{"id":4456,"name":"Raptor Hide Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":4097}},{"crafted":{"profession":8,"spellId":4097}}]}, -{"id":4462,"name":"Cloak of Rot","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4463,"name":"Beaded Raptor Collar","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4464,"name":"Trouncing Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":4465,"name":"Felstrom's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":4474,"name":"Ravenwood Bow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":54,"weaponSpeed":1.9,"ilvl":32,"quality":2}, -{"id":4476,"name":"Beastwalker Robe","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,6,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4477,"name":"Nefarious Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4478,"name":"Iridescent Scale Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4504,"name":"Dwarven Guard Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4505,"name":"Swampland Trousers","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":4507,"name":"Pit Fighter's Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":3,"factionRestriction":2}, -{"id":4508,"name":"Blood-Tinged Armor","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[12,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":3,"factionRestriction":2}, -{"id":4509,"name":"Seawolf Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4511,"name":"Black Water Hammer","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":2,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.7,"ilvl":40,"quality":2}, -{"id":4534,"name":"Steel-Clasped Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":3,"factionRestriction":2}, -{"id":4535,"name":"Ironforge Memorial Ring","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"expansion":3}, -{"id":4543,"name":"White Drakeskin Cap","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":4545,"name":"Radiant Silver Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":4547,"name":"Gnomish Zapper","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.3,"ilvl":40,"quality":2}, -{"id":4548,"name":"Servomechanic Sledgehammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":80,"weaponSpeed":2.2,"ilvl":41,"quality":2}, -{"id":4549,"name":"Seafire Band","icon":"inv_jewelry_ring_04","type":11,"stats":[2,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":4550,"name":"Coldwater Ring","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":4560,"name":"Fine Scimitar","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.9,"ilvl":6,"quality":1}, -{"id":4561,"name":"Scalping Tomahawk","icon":"inv_axe_19","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-84,6,14,15,1547,-20,-18,-17],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.8,"ilvl":11,"quality":2}, -{"id":4562,"name":"Severing Axe","icon":"inv_throwingaxe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,24,93,96,97,256,501,502,585,586,587,670,671,672,840,841,842,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":18,"weaponDamageMax":27,"weaponSpeed":3.2,"ilvl":10,"quality":2}, -{"id":4563,"name":"Billy Club","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":11,"weaponSpeed":2.2,"ilvl":9,"quality":1}, -{"id":4564,"name":"Spiked Club","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-17,-14,22,24,28,95,96,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-12,-84,-81,-78,-69,-68,-20,-15,-10],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.1,"ilvl":13,"quality":2}, -{"id":4565,"name":"Simple Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.8,"ilvl":6,"quality":1}, -{"id":4566,"name":"Sturdy Quarterstaff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,22,26,28,94,95,96,256,501,502,585,586,587,755,756,757,840,841,842,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,1801,1802,1839,1840,1877,1878,1953,1954,1991,1992,2029,2030,-84,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":2.8,"ilvl":13,"quality":2}, -{"id":4567,"name":"Merc Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,93,96,97,111,114,115,503,504,505,588,589,590,673,674,675,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-81,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":24,"weaponDamageMax":36,"weaponSpeed":2.8,"ilvl":16,"quality":2}, -{"id":4568,"name":"Grunt Axe","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[17,18,19,22,23,24,1548,1549,-84,-20,-18,-17],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.3,"ilvl":21,"quality":2}, -{"id":4569,"name":"Staunch Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-84,-20,6,15,1547,1799,1837,1989,2027,-19,-17],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.2,"ilvl":14,"quality":2}, -{"id":4570,"name":"Birchwood Maul","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-17,-14,22,24,28,95,96,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-12,-84,-81,-78,-69,-68,-20,-15,-10],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":3.3,"ilvl":15,"quality":2}, -{"id":4571,"name":"War Knife","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[17,19,23,1548,1800,1838,1876,1952,1990,2028,-84,-20,-19,-18,-17],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.7,"ilvl":17,"quality":2}, -{"id":4575,"name":"Medicine Staff","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,1804,1805,1842,1843,1880,1881,1956,1957,1994,1995,2032,2033,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":2.5,"ilvl":19,"quality":2}, -{"id":4576,"name":"Light Bow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.7,"ilvl":21,"quality":2}, -{"id":4577,"name":"Compact Shotgun","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2,"ilvl":13,"quality":2,"expansion":3}, -{"id":4614,"name":"Pendant of Myzrael","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"unique":true,"expansion":3}, -{"id":4616,"name":"Ryedol's Lucky Pick","icon":"inv_pick_03","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"quality":1,"unique":true,"expansion":3}, -{"id":4643,"name":"Grimsteel Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":2}, -{"id":4652,"name":"Salbac Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[9,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4653,"name":"Ironheel Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":4658,"name":"Warrior's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4659,"name":"Warrior's Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4660,"name":"Walking Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":4661,"name":"Bright Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4662,"name":"Journeyman's Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4663,"name":"Journeyman's Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":4665,"name":"Burnt Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4666,"name":"Burnt Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":4668,"name":"Battle Chain Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":4669,"name":"Battle Chain Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":4671,"name":"Ancestral Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":4672,"name":"Ancestral Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":4674,"name":"Tribal Cloak","icon":"inv_helmet_48","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":4675,"name":"Tribal Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":4676,"name":"Skeletal Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":4677,"name":"Veteran Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":4678,"name":"Veteran Girdle","icon":"inv_belt_05","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":4680,"name":"Brackwater Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":4681,"name":"Brackwater Girdle","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":4683,"name":"Spellbinder Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":4684,"name":"Spellbinder Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":4686,"name":"Barbaric Cloth Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":4687,"name":"Barbaric Cloth Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":4689,"name":"Hunting Cloak","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":4690,"name":"Hunting Belt","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":4692,"name":"Ceremonial Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":4693,"name":"Ceremonial Leather Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":4694,"name":"Burnished Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":4695,"name":"Burnished Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":4696,"name":"Lapidis Tankard of Tidesippe","icon":"inv_drink_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":4697,"name":"Burnished Girdle","icon":"inv_belt_34","type":8,"armorType":3,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":4698,"name":"Seer's Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":4699,"name":"Seer's Belt","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":4700,"name":"Inscribed Leather Spaulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":4701,"name":"Inscribed Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":4705,"name":"Lambent Scale Pauldrons","icon":"inv_shoulder_08","type":3,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4706,"name":"Lambent Scale Cloak","icon":"inv_misc_cape_06","type":4,"stats":[4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4707,"name":"Lambent Scale Girdle","icon":"inv_belt_04","type":8,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4708,"name":"Bright Belt","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4709,"name":"Forest Leather Mantle","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4710,"name":"Forest Cloak","icon":"inv_misc_cape_09","type":4,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":4711,"name":"Glimmering Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,2,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4712,"name":"Glimmering Mail Girdle","icon":"inv_belt_32","type":8,"armorType":3,"stats":[7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":4713,"name":"Silver-Thread Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4714,"name":"Silver-Thread Sash","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4715,"name":"Emblazoned Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4716,"name":"Combat Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":4717,"name":"Mail Combat Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":4718,"name":"Nightsky Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4719,"name":"Nightsky Cloak","icon":"inv_chest_cloth_41","type":4,"stats":[0,0,2,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":4720,"name":"Nightsky Sash","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":4721,"name":"Insignia Mantle","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":4722,"name":"Insignia Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,2,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":4723,"name":"Humbert's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":4724,"name":"Humbert's Helm","icon":"inv_helmet_20","type":1,"armorType":2,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4725,"name":"Chief Brigadier Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4726,"name":"Chief Brigadier Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":4727,"name":"Chief Brigadier Girdle","icon":"inv_belt_16","type":8,"armorType":3,"stats":[10,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":4728,"name":"Twain's Shoulder","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":4729,"name":"Aurora Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4731,"name":"Glyphed Epaulets","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":4732,"name":"Glyphed Cloak","icon":"inv_chest_cloth_14","type":4,"stats":[0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4733,"name":"Blackforge Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":4734,"name":"Mistscape Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":4735,"name":"Mistscape Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":4736,"name":"Mistscape Sash","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4737,"name":"Imperial Leather Spaulders","icon":"inv_shoulder_05","type":3,"armorType":2,"stats":[0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":4738,"name":"Imperial Leather Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4741,"name":"Stromgarde Cavalry Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[8,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":1}, -{"id":4743,"name":"Pulsating Crystalline Shard","icon":"inv_misc_gem_sapphire_02","type":2,"stats":[0,0,8,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":4744,"name":"Arcane Runed Bracers","icon":"inv_bracer_18","type":6,"armorType":1,"stats":[0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"factionRestriction":1}, -{"id":4745,"name":"War Rider Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":1}, -{"id":4746,"name":"Doomsayer's Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":4765,"name":"Enamelled Broadsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.4,"ilvl":14,"quality":2}, -{"id":4766,"name":"Feral Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.6,"ilvl":13,"quality":2}, -{"id":4767,"name":"Coppercloth Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":4768,"name":"Adept's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":4771,"name":"Harvest Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":4772,"name":"Warm Cloak","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":4777,"name":"Ironwood Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":2.8,"ilvl":18,"quality":2}, -{"id":4778,"name":"Heavy Spiked Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":51,"weaponSpeed":3.4,"ilvl":19,"quality":2}, -{"id":4781,"name":"Whispering Vest","icon":"inv_shirt_10","type":5,"armorType":1,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":4782,"name":"Solstice Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,1,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":4785,"name":"Brimstone Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4786,"name":"Wise Man's Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":4788,"name":"Agile Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":4789,"name":"Stable Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":4790,"name":"Inferno Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4792,"name":"Spirit Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":4793,"name":"Sylvan Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4794,"name":"Wolf Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4795,"name":"Bear Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4796,"name":"Owl Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4797,"name":"Fiery Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4798,"name":"Heavy Runed Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4799,"name":"Antiquated Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":4800,"name":"Mighty Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":4810,"name":"Boulder Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4816,"name":"Legionnaire's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4817,"name":"Blessed Claymore","icon":"inv_sword_13","type":13,"weaponType":9,"handType":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":2.5,"ilvl":22,"quality":2}, -{"id":4818,"name":"Executioner's Sword","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":65,"weaponSpeed":3.4,"ilvl":24,"quality":2}, -{"id":4820,"name":"Guardian Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":4821,"name":"Bear Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":4822,"name":"Owl's Disk","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":4824,"name":"Blurred Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.7,"ilvl":27,"quality":2}, -{"id":4825,"name":"Callous Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.8,"ilvl":29,"quality":2}, -{"id":4826,"name":"Marauder Axe","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2,"ilvl":26,"quality":2}, -{"id":4827,"name":"Wizard's Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4828,"name":"Nightwind Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":4829,"name":"Dreamer's Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":4830,"name":"Saber Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4831,"name":"Stalking Pants","icon":"inv_pants_10","type":9,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4832,"name":"Mystic Sarong","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":4833,"name":"Glorious Shoulders","icon":"inv_shoulder_05","type":3,"armorType":3,"stats":[0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4835,"name":"Elite Shoulders","icon":"inv_shoulder_05","type":3,"armorType":3,"stats":[6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4836,"name":"Fireproof Orb","icon":"inv_jewelry_talisman_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":4837,"name":"Strength of Will","icon":"inv_jewelry_talisman_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":4838,"name":"Orb of Power","icon":"inv_ore_arcanite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":4840,"name":"Long Bayonet","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.7,"ilvl":10,"quality":2,"sources":[{"quest":{"id":46,"name":"Bounty on Murlocs"}}],"factionRestriction":1}, -{"id":4854,"name":"Demon Scarred Cloak","icon":"inv_misc_pelt_bear_ruin_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"unique":true,"factionRestriction":2}, -{"id":4861,"name":"Sleek Feathered Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":4906,"name":"Rainwalker Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"factionRestriction":2}, -{"id":4907,"name":"Woodland Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":4908,"name":"Nomadic Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4909,"name":"Kodo Hunter's Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}]}, -{"id":4910,"name":"Painted Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4911,"name":"Thick Bark Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":4913,"name":"Painted Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4914,"name":"Battleworn Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4915,"name":"Soft Wool Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4916,"name":"Soft Wool Vest","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4917,"name":"Battleworn Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4919,"name":"Soft Wool Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4920,"name":"Battleworn Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4921,"name":"Dust-Covered Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4922,"name":"Jagged Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4923,"name":"Primitive Hatchet","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.2,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4924,"name":"Primitive Club","icon":"inv_mace_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.1,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4925,"name":"Primitive Hand Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.7,"ilvl":5,"quality":1,"classAllowlist":[8]}, -{"id":4928,"name":"Sandrunner Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":4929,"name":"Light Scorpid Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"factionRestriction":2}, -{"id":4931,"name":"Hickory Shortbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2,"ilvl":11,"quality":1,"sources":[{"quest":{"id":835,"name":"Securing the Lines"}}]}, -{"id":4932,"name":"Harpy Wing Clipper","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2.6,"ilvl":11,"quality":1,"sources":[{"quest":{"id":835,"name":"Securing the Lines"}}]}, -{"id":4933,"name":"Seasoned Fighter's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"factionRestriction":2}, -{"id":4935,"name":"Wide Metal Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":4936,"name":"Dirt-Trodden Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":4937,"name":"Charging Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"factionRestriction":2}, -{"id":4938,"name":"Blemished Wooden Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":3.2,"ilvl":11,"quality":1,"sources":[{"quest":{"id":835,"name":"Securing the Lines"}}]}, -{"id":4939,"name":"Steady Bastard Sword","icon":"inv_sword_34","type":13,"weaponType":9,"handType":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":2.7,"ilvl":11,"quality":2,"factionRestriction":2}, -{"id":4940,"name":"Veiled Grips","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{}}]}, -{"id":4942,"name":"Tiger Hide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":4944,"name":"Handsewn Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":4946,"name":"Lightweight Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{}}]}, -{"id":4947,"name":"Jagged Dagger","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.5,"ilvl":11,"quality":2,"factionRestriction":2}, -{"id":4948,"name":"Stinging Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":2.3,"ilvl":11,"quality":2,"factionRestriction":2}, -{"id":4949,"name":"Orcish Cleaver","icon":"inv_axe_20","type":13,"weaponType":1,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.8,"ilvl":21,"quality":2}, -{"id":4951,"name":"Squealer's Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1}, -{"id":4954,"name":"Nomadic Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":4958,"name":"Sun-Beaten Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":4961,"name":"Dreamwatcher Staff","icon":"inv_staff_22","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":22,"weaponSpeed":3.2,"ilvl":10,"quality":1}, -{"id":4962,"name":"Double-Layered Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":768,"name":"Gathering Leather"}}],"factionRestriction":2}, -{"id":4963,"name":"Thunderhorn Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":4964,"name":"Goblin Smasher","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":31,"weaponSpeed":3.1,"ilvl":12,"quality":2,"sources":[{"quest":{"id":765,"name":"Supervisor Fizsprocket"}}]}, -{"id":4967,"name":"Tribal Warrior's Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":4968,"name":"Bound Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":4969,"name":"Fortified Bindings","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{}}]}, -{"id":4970,"name":"Rough-Hewn Kodo Leggings","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{}}]}, -{"id":4971,"name":"Skorn's Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.7,"ilvl":12,"quality":2,"sources":[{"quest":{"id":770,"name":"The Demon Scarred Cloak"}}],"factionRestriction":2}, -{"id":4972,"name":"Cliff Runner Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":2}, -{"id":4973,"name":"Plains Hunter Wristguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":2}, -{"id":4974,"name":"Compact Fighting Knife","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.5,"ilvl":12,"quality":2,"sources":[{"quest":{"id":765,"name":"Supervisor Fizsprocket"}}],"factionRestriction":2}, -{"id":4975,"name":"Vigilant Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3}, -{"id":4976,"name":"Mistspray Kilt","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":4977,"name":"Sword of Hammerfall","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":2.3,"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":4978,"name":"Ryedol's Hammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.5,"ilvl":36,"quality":2}, -{"id":4979,"name":"Enchanted Stonecloth Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":4980,"name":"Prospector Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":4982,"name":"Ripped Prospector Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"factionRestriction":1}, -{"id":4983,"name":"Rock Pulverizer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":139,"weaponSpeed":3.7,"ilvl":42,"quality":2,"factionRestriction":1}, -{"id":4984,"name":"Skull of Impending Doom","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":4987,"name":"Dwarf Captain's Sword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.5,"ilvl":45,"quality":2}, -{"id":4988,"name":"Burning Obsidian Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":4989,"name":"Mage Dragon Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[7,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":4990,"name":"Scorched Bands","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":4998,"name":"Blood Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":4999,"name":"Azora's Will","icon":"inv_belt_29","type":11,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":5001,"name":"Heart Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":5002,"name":"Glowing Green Talisman","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":5003,"name":"Crystal Starfire Medallion","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":5004,"name":"Mark of the Kirin Tor","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":5005,"name":"Emberspark Pendant","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":5007,"name":"Band of Thorns","icon":"inv_misc_root_01","type":11,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":5009,"name":"Mindbender Loop","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":5010,"name":"Inscribed Gold Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":5011,"name":"Welken Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":5016,"name":"Artisan's Trousers","icon":"inv_pants_cloth_39v4","type":9,"armorType":1,"stats":[0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":5028,"name":"Lord Sakrasis' Scepter","icon":"inv_wand_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":5029,"name":"Talisman of the Naga Lord","icon":"inv_jewelry_necklace_09","type":2,"stats":[2,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":5040,"name":"Shadow Hunter Knife","icon":"inv_weapon_shortblade_11","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":1.7,"ilvl":32,"quality":1}, -{"id":5069,"name":"Fire Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.5,"ilvl":12,"quality":2}, -{"id":5071,"name":"Shadow Wand","icon":"inv_weapon_shortblade_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.4,"ilvl":14,"quality":2}, -{"id":5079,"name":"Cold Basilisk Eye","icon":"inv_misc_eye_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":5092,"name":"Charred Razormane Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.5,"ilvl":23,"quality":1}, -{"id":5093,"name":"Razormane Backstabber","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":1.7,"ilvl":21,"quality":1}, -{"id":5094,"name":"Razormane War Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":5109,"name":"Stonesplinter Rags","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":5110,"name":"Dalaran Wizard's Robe","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":1}, -{"id":5111,"name":"Rathorian's Cape","icon":"inv_helmet_48","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":5112,"name":"Ritual Blade","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.4,"ilvl":15,"quality":2}, -{"id":5180,"name":"Necklace of Harmony","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":5181,"name":"Vibrant Silk Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":5182,"name":"Shiver Blade","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":46,"weaponSpeed":2.9,"ilvl":20,"quality":2}, -{"id":5183,"name":"Pulsating Hydra Heart","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":5187,"name":"Foe Reaper","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.6,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":644,"zoneId":1581}}]}, -{"id":5191,"name":"Cruel Barb","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.7,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":639,"zoneId":1581}}]}, -{"id":5192,"name":"Thief's Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":646,"zoneId":1581}}]}, -{"id":5193,"name":"Cape of the Brotherhood","icon":"inv_misc_cape_08","type":4,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":639,"zoneId":1581}}]}, -{"id":5194,"name":"Taskmaster Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":74,"weaponSpeed":3.5,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":643,"zoneId":1581}}]}, -{"id":5195,"name":"Gold-Flecked Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":643,"zoneId":1581}}]}, -{"id":5196,"name":"Smite's Reaver","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[2,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":646,"zoneId":1581}}]}, -{"id":5197,"name":"Cookie's Tenderizer","icon":"inv_fabric_silk_02","type":13,"weaponType":4,"handType":2,"stats":[3,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":2.8,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":645,"zoneId":1581}}]}, -{"id":5198,"name":"Cookie's Stirring Rod","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":37,"weaponSpeed":1.4,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":645,"zoneId":1581}}]}, -{"id":5199,"name":"Smelting Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,8,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1763,"zoneId":1581}}]}, -{"id":5200,"name":"Impaling Harpoon","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":72,"weaponSpeed":3.4,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":647,"zoneId":1581}}]}, -{"id":5201,"name":"Emberstone Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":63,"weaponSpeed":3,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":647,"zoneId":1581}}]}, -{"id":5202,"name":"Corsair's Overshirt","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":639,"zoneId":1581}}]}, -{"id":5207,"name":"Opaque Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":1.4,"ilvl":20,"quality":2}, -{"id":5208,"name":"Smoldering Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":1.6,"ilvl":20,"quality":1}, -{"id":5209,"name":"Gloom Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.8,"ilvl":21,"quality":1}, -{"id":5210,"name":"Burning Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.4,"ilvl":25,"quality":1}, -{"id":5211,"name":"Dusk Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.7,"ilvl":25,"quality":1}, -{"id":5212,"name":"Blazing Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.5,"ilvl":17,"quality":2}, -{"id":5213,"name":"Scorching Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.3,"ilvl":35,"quality":2}, -{"id":5214,"name":"Wand of Eventide","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":1.3,"ilvl":32,"quality":2}, -{"id":5215,"name":"Ember Wand","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,114,234,235,236,505,506,507,760,761,762,845,846,847,930,931,932,1015,1016,1017,1100,1101,1102,1803,1841,1879,1955,2031,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.5,"ilvl":41,"quality":2}, -{"id":5216,"name":"Umbral Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-84,133,134,135,235,236,506,507,761,762,846,847,931,932,1016,1017,1101,1102,1804,1842,1880,1956,2032,-81,-69,-19,-15,-13,-12,-11,-10,-9],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.5,"ilvl":45,"quality":2}, -{"id":5236,"name":"Combustible Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.6,"ilvl":34,"quality":1}, -{"id":5238,"name":"Pitchwood Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.7,"ilvl":45,"quality":1}, -{"id":5239,"name":"Blackbone Wand","icon":"inv_misc_bone_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":1.6,"ilvl":46,"quality":1}, -{"id":5240,"name":"Torchlight Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.3,"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":5241,"name":"Dwarven Flamestick","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":5242,"name":"Cinder Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":22,"weaponSpeed":1.4,"ilvl":16,"quality":2,"factionRestriction":2}, -{"id":5243,"name":"Firebelcher","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.7,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5912,"zoneId":718}}]}, -{"id":5244,"name":"Consecrated Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.2,"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":5245,"name":"Summoner's Wand","icon":"inv_staff_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.8,"ilvl":34,"quality":2}, -{"id":5246,"name":"Excavation Rod","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":1.9,"ilvl":30,"quality":2}, -{"id":5247,"name":"Rod of Sorrow","icon":"inv_staff_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":1.9,"ilvl":39,"quality":2,"factionRestriction":1}, -{"id":5248,"name":"Flash Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":52,"weaponSpeed":1.3,"ilvl":37,"quality":2}, -{"id":5249,"name":"Burning Sliver","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.3,"ilvl":40,"quality":2}, -{"id":5250,"name":"Charred Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":52,"weaponSpeed":1.8,"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":5252,"name":"Wand of Decay","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.5,"ilvl":21,"quality":2,"factionRestriction":2}, -{"id":5253,"name":"Goblin Igniter","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":85,"weaponSpeed":2,"ilvl":40,"quality":2}, -{"id":5254,"name":"Rugged Spaulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3914,"zoneId":209}}]}, -{"id":5255,"name":"Quilboar Tomahawk","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":2.5,"ilvl":15,"quality":2}, -{"id":5256,"name":"Kovork's Rattle","icon":"inv_mace_16","type":13,"weaponType":4,"handType":2,"stats":[2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":3,"ilvl":35,"quality":2}, -{"id":5257,"name":"Dark Hooded Cape","icon":"inv_misc_cape_04","type":4,"stats":[4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":5266,"name":"Eye of Adaegus","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,5,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true}, -{"id":5267,"name":"Scarlet Kris","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.5,"ilvl":63,"quality":3,"unique":true}, -{"id":5274,"name":"Rose Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":1}, -{"id":5275,"name":"Binding Girdle","icon":"inv_belt_01","type":8,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":5279,"name":"Harpy Skinner","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.4,"ilvl":20,"quality":2}, -{"id":5299,"name":"Gloves of the Moon","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":5302,"name":"Cobalt Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":5306,"name":"Wind Rider Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":2.8,"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":5309,"name":"Privateer Musket","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":2.3,"ilvl":20,"quality":2,"sources":[{"quest":{"id":891,"name":"A Captain's Vengeance"}}],"factionRestriction":2}, -{"id":5310,"name":"Sea Dog Britches","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":891,"name":"A Captain's Vengeance"}}],"factionRestriction":2}, -{"id":5311,"name":"Buckled Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"factionRestriction":2}, -{"id":5312,"name":"Riveted Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":5313,"name":"Totemic Clan Ring","icon":"inv_misc_root_02","type":11,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":5314,"name":"Boar Hunter's Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":5315,"name":"Timberland Armguards","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":5316,"name":"Barkshell Tunic","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":5317,"name":"Dry Moss Tunic","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":5318,"name":"Zhovur Axe","icon":"inv_weapon_halberd_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":49,"weaponSpeed":3.1,"ilvl":20,"quality":2}, -{"id":5319,"name":"Bashing Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":5320,"name":"Padded Lamellar Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":5321,"name":"Elegant Shortsword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2,"ilvl":20,"quality":2}, -{"id":5322,"name":"Demolition Hammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":49,"weaponSpeed":2.3,"ilvl":26,"quality":2,"factionRestriction":2}, -{"id":5323,"name":"Everglow Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":5324,"name":"Engineer's Hammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":2.4,"ilvl":16,"quality":2}, -{"id":5325,"name":"Welding Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":5326,"name":"Flaring Baton","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.9,"ilvl":18,"quality":2}, -{"id":5327,"name":"Greasy Tinker's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":5328,"name":"Cinched Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":5337,"name":"Wayfaring Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":5340,"name":"Cauldron Stirrer","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.1,"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":5341,"name":"Spore-Covered Tunic","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":866,"name":"Root Samples"}}]}, -{"id":5343,"name":"Barkeeper's Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":5344,"name":"Pointed Axe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.9,"ilvl":14,"quality":2}, -{"id":5345,"name":"Stonewood Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":37,"weaponSpeed":3.2,"ilvl":14,"quality":2}, -{"id":5346,"name":"Orcish Battle Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.9,"ilvl":14,"quality":2}, -{"id":5347,"name":"Pestilent Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":1.5,"ilvl":35,"quality":1}, -{"id":5351,"name":"Bounty Hunter's Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":852,"name":"Hezrul Bloodmark"}}],"factionRestriction":2}, -{"id":5355,"name":"Beastmaster's Girdle","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":5356,"name":"Branding Rod","icon":"inv_spear_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.6,"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":5357,"name":"Ward of the Vale","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":5387,"name":"Enchanted Moonstalker Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"unique":true}, -{"id":5392,"name":"Thistlewood Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.7,"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":5393,"name":"Thistlewood Staff","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":10,"weaponSpeed":3.1,"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":5394,"name":"Archery Training Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":5395,"name":"Woodland Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":5398,"name":"Canopy Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":5399,"name":"Tracking Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":5404,"name":"Serpent's Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3671,"zoneId":718}}]}, -{"id":5405,"name":"Draped Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":5419,"name":"Feral Bracers","icon":"inv_bracer_74","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":932,"name":"Twisted Hatred"}}],"factionRestriction":1}, -{"id":5420,"name":"Banshee Armor","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"factionRestriction":2}, -{"id":5422,"name":"Brambleweed Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":5423,"name":"Boahn's Fang","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[8,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":82,"weaponSpeed":3.7,"ilvl":21,"quality":3}, -{"id":5425,"name":"Runescale Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3}, -{"id":5426,"name":"Serpent's Kiss","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.5,"ilvl":21,"quality":3}, -{"id":5443,"name":"Gold-Plated Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3586,"zoneId":1581}}]}, -{"id":5444,"name":"Miner's Cape","icon":"inv_misc_cape_11","type":4,"stats":[4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3586,"zoneId":1581}}]}, -{"id":5458,"name":"Dirtwood Belt","icon":"inv_belt_79","type":8,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":2499,"name":"Oakenscowl"}}],"factionRestriction":1}, -{"id":5459,"name":"Defender Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.3,"ilvl":13,"quality":2}, -{"id":5516,"name":"Threshadon Fang","icon":"inv_misc_bone_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.5,"ilvl":16}, -{"id":5540,"name":"Pearl-Handled Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":1.7,"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":6517}},{"crafted":{"profession":2,"spellId":6517}}]}, -{"id":5541,"name":"Iridescent Hammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,3,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.8,"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":6518}},{"crafted":{"profession":2,"spellId":6518}}]}, -{"id":5542,"name":"Pearl-Clasped Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":6521}},{"crafted":{"profession":11,"spellId":6521}}]}, -{"id":5579,"name":"Militia Warhammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":7,"weaponSpeed":2.9,"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":5580,"name":"Militia Hammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":2.3,"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":5581,"name":"Smooth Walking Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1}, -{"id":5586,"name":"Thistlewood Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.2,"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":5587,"name":"Thornroot Club","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.1,"ilvl":13,"quality":2}, -{"id":5589,"name":"Moss-covered Gauntlets","icon":"inv_gauntlets_105","type":7,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":2499,"name":"Oakenscowl"}}],"factionRestriction":1}, -{"id":5590,"name":"Cord Bracers","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":938,"name":"Mist"}}],"factionRestriction":1}, -{"id":5591,"name":"Rain-Spotted Cape","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":937,"name":"The Enchanted Glade"}}],"factionRestriction":1}, -{"id":5592,"name":"Shackled Girdle","icon":"inv_belt_10","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":5593,"name":"Crag Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":938,"name":"Mist"}}],"factionRestriction":1}, -{"id":5595,"name":"Thicket Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":29,"weaponSpeed":3.1,"ilvl":11,"quality":2,"sources":[{"quest":{"id":935,"name":"The Waters of Teldrassil"}}],"factionRestriction":1}, -{"id":5596,"name":"Ashwood Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":11,"quality":2,"sources":[{"quest":{"id":935,"name":"The Waters of Teldrassil"}}],"factionRestriction":1}, -{"id":5604,"name":"Elven Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.6,"ilvl":13,"quality":2,"factionRestriction":1}, -{"id":5605,"name":"Pruning Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":1.6,"ilvl":10,"quality":1,"sources":[{"quest":{"id":923,"name":"Mossy Tumors"}}],"factionRestriction":1}, -{"id":5606,"name":"Gardening Gloves","icon":"inv_gauntlets_114","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":919,"name":"Timberling Sprouts"}}],"factionRestriction":1}, -{"id":5608,"name":"Living Cowl","icon":"inv_helmet_04","type":1,"armorType":1,"stats":[0,0,11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":5609,"name":"Steadfast Cinch","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":5610,"name":"Gustweald Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":5611,"name":"Tear of Grief","icon":"inv_potion_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":5612,"name":"Ivy Cuffs","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":5613,"name":"Staff of the Purifier","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":68,"weaponSpeed":3.7,"ilvl":23,"quality":2}, -{"id":5614,"name":"Seraph's Strike","icon":"inv_sword_27","type":13,"weaponType":9,"handType":4,"stats":[3,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.2,"ilvl":31,"quality":2}, -{"id":5615,"name":"Woodsman Sword","icon":"inv_sword_42","type":13,"weaponType":9,"handType":4,"stats":[0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":52,"weaponSpeed":3.3,"ilvl":20,"quality":2}, -{"id":5616,"name":"Gutwrencher","icon":"inv_sword_31","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":1.4,"ilvl":49,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":5617,"name":"Vagabond Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"factionRestriction":1}, -{"id":5618,"name":"Scout's Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":5622,"name":"Clergy Ring","icon":"inv_belt_33","type":11,"stats":[0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":5624,"name":"Circlet of the Order","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,7,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":5626,"name":"Skullchipper","icon":"inv_axe_23","type":13,"weaponType":1,"handType":4,"stats":[6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3.5,"ilvl":20,"quality":2}, -{"id":5627,"name":"Relic Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.8,"ilvl":20,"quality":2}, -{"id":5629,"name":"Hammerfist Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":5630,"name":"Windfelt Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":5739,"name":"Barbaric Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":6661}},{"crafted":{"profession":8,"spellId":6661}}]}, -{"id":5742,"name":"Gemstone Dagger","icon":"inv_sword_21","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":1.5,"ilvl":40,"quality":2}, -{"id":5743,"name":"Prismstone Ring","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":5744,"name":"Pale Skinner","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.2,"ilvl":12,"quality":2}, -{"id":5748,"name":"Centaur Longbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.2,"ilvl":16,"quality":2}, -{"id":5749,"name":"Scythe Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":66,"weaponSpeed":3.6,"ilvl":23,"quality":2}, -{"id":5750,"name":"Warchief's Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":5751,"name":"Webwing Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":5752,"name":"Wyvern Tailspike","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":26,"quality":2}, -{"id":5753,"name":"Ruffled Chaplet","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":5754,"name":"Wolfpack Medallion","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":5755,"name":"Onyx Shredder Plate","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,8,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":5756,"name":"Sliverblade","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":1.4,"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":5757,"name":"Hardwood Cudgel","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.6,"ilvl":20,"quality":2}, -{"id":5761,"name":"Anvilmar Sledge","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":3.1,"ilvl":4,"quality":1,"sources":[{"quest":{"id":182,"name":"The Troll Menace"}}],"factionRestriction":1}, -{"id":5766,"name":"Lesser Wizard's Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":6690}},{"crafted":{"profession":11,"spellId":6690}}]}, -{"id":5767,"name":"Violet Robes","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":5770,"name":"Robes of Arcana","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":6692}},{"crafted":{"profession":11,"spellId":6692}}]}, -{"id":5776,"name":"Elder's Cane","icon":"inv_staff_17","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.5,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":5777,"name":"Brave's Axe","icon":"inv_throwingaxe_05","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":5778,"name":"Primitive Walking Stick","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":10,"weaponSpeed":3.1,"ilvl":5,"quality":1,"classAllowlist":[8]}, -{"id":5779,"name":"Forsaken Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":5780,"name":"Murloc Scale Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":6702}},{"crafted":{"profession":8,"spellId":6702}}]}, -{"id":5781,"name":"Murloc Scale Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":6703}},{"crafted":{"profession":8,"spellId":6703}}]}, -{"id":5782,"name":"Thick Murloc Armor","icon":"inv_chest_chain_12","type":5,"armorType":2,"stats":[0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":6704}},{"crafted":{"profession":8,"spellId":6704}}]}, -{"id":5783,"name":"Murloc Scale Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":6705}},{"crafted":{"profession":8,"spellId":6705}}]}, -{"id":5812,"name":"Robes of Antiquity","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}]}, -{"id":5813,"name":"Emil's Brand","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[11,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":81,"weaponSpeed":3.1,"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":5814,"name":"Snapbrook Armor","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,4,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":5815,"name":"Glacial Stone","icon":"inv_mace_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.6,"ilvl":31,"quality":2}, -{"id":5817,"name":"Lunaris Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.7,"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":5818,"name":"Moonbeam Wand","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":1.8,"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":5819,"name":"Sunblaze Coif","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":5820,"name":"Faerie Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":5821,"name":"Darkstalker Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":5822,"name":"Hedgeseed Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":5936,"name":"Animal Skin Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":768,"name":"Gathering Leather"}}],"factionRestriction":2}, -{"id":5939,"name":"Sewing Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":5940,"name":"Bone Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":2}, -{"id":5941,"name":"Brass Scale Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"factionRestriction":2}, -{"id":5943,"name":"Rift Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4627,"zoneId":209}}]}, -{"id":5944,"name":"Greaves of the People's Militia","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":5956,"name":"Blacksmith Hammer","icon":"inv_hammer_20","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1}, -{"id":5957,"name":"Handstitched Leather Vest","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7126}},{"crafted":{"profession":8,"spellId":7126}}]}, -{"id":5958,"name":"Fine Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7133}},{"crafted":{"profession":8,"spellId":7133}}]}, -{"id":5961,"name":"Dark Leather Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7135}},{"crafted":{"profession":8,"spellId":7135}}]}, -{"id":5962,"name":"Guardian Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7147}},{"crafted":{"profession":8,"spellId":7147}}]}, -{"id":5963,"name":"Barbaric Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,6,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7149}},{"crafted":{"profession":8,"spellId":7149}}]}, -{"id":5964,"name":"Barbaric Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7151}},{"crafted":{"profession":8,"spellId":7151}}]}, -{"id":5965,"name":"Guardian Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7153}},{"crafted":{"profession":8,"spellId":7153}}]}, -{"id":5966,"name":"Guardian Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7156}},{"crafted":{"profession":8,"spellId":7156}}]}, -{"id":5967,"name":"Girdle of Nobility","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,3,8,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":5968,"name":"Rugged Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":5969,"name":"Regent's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":5970,"name":"Serpent Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3673,"zoneId":718}}]}, -{"id":5971,"name":"Feathered Cape","icon":"inv_misc_cape_04","type":4,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":5975,"name":"Ruffian Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":6040,"name":"Golden Scale Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[4,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":7223}},{"crafted":{"profession":2,"spellId":7223}}]}, -{"id":6058,"name":"Blackened Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":6059,"name":"Nomadic Vest","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":6060,"name":"Flax Bracers","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":6061,"name":"Graystone Bracers","icon":"inv_bracer_61","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":919,"name":"Timberling Sprouts"}}],"factionRestriction":1}, -{"id":6062,"name":"Heavy Cord Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"factionRestriction":2}, -{"id":6063,"name":"Cold Steel Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":6070,"name":"Wolfskin Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":6076,"name":"Tapered Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":6078,"name":"Pikeman Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":54,"name":"Report to Goldshire"}}],"factionRestriction":1}, -{"id":6084,"name":"Stormwind Guard Leggings","icon":"inv_pants_mail_36","type":9,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":176,"name":"Wanted: \"Hogger\""}}],"factionRestriction":1}, -{"id":6085,"name":"Footman Tunic","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":176,"name":"Wanted: \"Hogger\""}}],"factionRestriction":1}, -{"id":6087,"name":"Chausses of Westfall","icon":"inv_pants_03","type":9,"armorType":3,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"factionRestriction":1}, -{"id":6092,"name":"Black Whelp Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":6093,"name":"Orc Crusher","icon":"inv_mace_07","type":13,"weaponType":4,"handType":4,"stats":[8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":79,"weaponSpeed":3.6,"ilvl":27,"quality":2,"factionRestriction":1}, -{"id":6094,"name":"Piercing Axe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":6095,"name":"Wandering Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":6098,"name":"Neophyte's Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":6116,"name":"Apprentice's Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6118,"name":"Squire's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6119,"name":"Neophyte's Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6121,"name":"Recruit's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6122,"name":"Recruit's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6123,"name":"Novice's Robe","icon":"inv_chest_cloth_34","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6124,"name":"Novice's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6126,"name":"Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6127,"name":"Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6129,"name":"Acolyte's Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6135,"name":"Primitive Kilt","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6137,"name":"Thug Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6138,"name":"Trapper's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6139,"name":"Novice's Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6140,"name":"Apprentice's Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6144,"name":"Neophyte's Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6147,"name":"Ratty Old Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6148,"name":"Web-Covered Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6171,"name":"Wolf Handler Gloves","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":6173,"name":"Snow Boots","icon":"inv_boots_leather_10v2","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":6174,"name":"Twain Random Sword","icon":"inv_sword_03","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":0.5,"ilvl":20}, -{"id":6176,"name":"Dwarven Kite Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":6177,"name":"Ironwrought Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"sources":[{"quest":{"id":312,"name":"Tundra MacGrann's Stolen Stash"}}]}, -{"id":6179,"name":"Privateer's Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":6180,"name":"Slarkskin","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":6182,"name":"Dim Torch","icon":"inv_torch_lit","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6185,"name":"Bear Shawl","icon":"inv_misc_pelt_bear_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":6186,"name":"Trogg Slicer","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":49,"weaponSpeed":3.4,"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":6187,"name":"Dwarven Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":6188,"name":"Mud Stompers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":6189,"name":"Durable Chain Shoulders","icon":"inv_shoulder_05","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1,"factionRestriction":1}, -{"id":6191,"name":"Kimbra Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"factionRestriction":1}, -{"id":6194,"name":"Barreling Reaper","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":41,"weaponSpeed":1.9,"ilvl":32,"quality":2,"factionRestriction":1}, -{"id":6195,"name":"Wax-Polished Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":6196,"name":"Noboru's Cudgel","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":2.1,"ilvl":34,"unique":true,"sources":[{"quest":{"id":1392,"name":"Noboru the Cudgel"}}]}, -{"id":6197,"name":"Loch Croc Hide Vest","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":6198,"name":"Jurassic Wristguards","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6199,"name":"Black Widow Band","icon":"inv_misc_monsterspidercarapace_01","type":11,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"unique":true}, -{"id":6200,"name":"Garneg's War Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":6201,"name":"Lithe Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6202,"name":"Fingerless Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6203,"name":"Thuggish Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6204,"name":"Tribal Worg Helm","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,7,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":6205,"name":"Burrowing Shovel","icon":"inv_misc_shovel_01","type":13,"weaponType":4,"handType":4,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":2.3,"ilvl":15,"quality":2}, -{"id":6206,"name":"Rock Chipper","icon":"inv_pick_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.5,"ilvl":15,"quality":1}, -{"id":6214,"name":"Heavy Copper Maul","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":4,"stats":[2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":36,"weaponSpeed":2.8,"ilvl":16,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":7408}},{"crafted":{"profession":2,"spellId":7408}}]}, -{"id":6215,"name":"Balanced Fighting Stick","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":18,"weaponSpeed":2.2,"ilvl":11,"quality":2}, -{"id":6219,"name":"Arclight Spanner","icon":"inv_misc_wrench_01","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2.4,"ilvl":10,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":7430}},{"crafted":{"profession":4,"spellId":7430}}]}, -{"id":6220,"name":"Meteor Shard","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":21,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4275,"zoneId":209}}]}, -{"id":6223,"name":"Crest of Darkshire","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,944,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"factionRestriction":1}, -{"id":6226,"name":"Bloody Apron","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3886,"zoneId":209}}]}, -{"id":6238,"name":"Brown Linen Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7623}},{"crafted":{"profession":11,"spellId":7623}}]}, -{"id":6239,"name":"Red Linen Vest","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7629}},{"crafted":{"profession":11,"spellId":7629}}]}, -{"id":6240,"name":"Blue Linen Vest","icon":"inv_chest_cloth_37","type":5,"armorType":1,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7630}},{"crafted":{"profession":11,"spellId":7630}}]}, -{"id":6241,"name":"White Linen Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7624}},{"crafted":{"profession":11,"spellId":7624}}]}, -{"id":6242,"name":"Blue Linen Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7633}},{"crafted":{"profession":11,"spellId":7633}}]}, -{"id":6243,"name":"Green Woolen Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7636}}]}, -{"id":6256,"name":"Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3,"ilvl":1,"quality":1,"sources":[{"quest":{"id":9452,"name":"Red Snapper - Very Tasty!"}}]}, -{"id":6263,"name":"Blue Overalls","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7639}},{"crafted":{"profession":11,"spellId":7639}}]}, -{"id":6264,"name":"Greater Adept's Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,1,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":7643}},{"crafted":{"profession":11,"spellId":7643}}]}, -{"id":6266,"name":"Disciple's Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,22,26,28,94,95,96,755,756,757,840,841,842,1010,1011,1012,1801,1802,1839,1840,1953,1954,-84,-81,-69,-19,-15],"ilvl":13,"quality":2}, -{"id":6267,"name":"Disciple's Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,16,27,227,584,754,839,1009,1875,1876,2027,2028,-81,-78,-19,-15,-11,-9],"ilvl":12,"quality":2}, -{"id":6268,"name":"Pioneer Tunic","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,93,94,95,96,229,231,238,256,501,502,585,586,587,755,756,757,840,841,842,1010,1011,1012,1549,1550,1991,1992,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":13,"quality":2}, -{"id":6269,"name":"Pioneer Trousers","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,14,16,17,27,227,228,584,754,839,924,1009,1179,1547,1548,1799,1800,2027,2028,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":12,"quality":2}, -{"id":6282,"name":"Sacred Burial Trousers","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,8,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"factionRestriction":2}, -{"id":6292,"name":"10 Pound Mud Snapper","icon":"inv_misc_fish_33","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6294,"name":"12 Pound Mud Snapper","icon":"inv_misc_fish_33","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6295,"name":"15 Pound Mud Snapper","icon":"inv_misc_fish_33","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6309,"name":"17 Pound Catfish","icon":"inv_misc_fish_30","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6310,"name":"19 Pound Catfish","icon":"inv_misc_fish_30","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6311,"name":"22 Pound Catfish","icon":"inv_misc_fish_30","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":6314,"name":"Wolfmaster Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3927,"zoneId":209}}]}, -{"id":6315,"name":"Steelarrow Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":3.4,"ilvl":27,"quality":2}, -{"id":6318,"name":"Odo's Ley Staff","icon":"inv_staff_27","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":64,"weaponSpeed":2.9,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4279,"zoneId":209}}]}, -{"id":6319,"name":"Girdle of the Blindwatcher","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4279,"zoneId":209}}]}, -{"id":6320,"name":"Commander's Crest","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[2,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4278,"zoneId":209}}]}, -{"id":6321,"name":"Silverlaine's Family Seal","icon":"inv_belt_29","type":11,"stats":[5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3887,"zoneId":209}}]}, -{"id":6323,"name":"Baron's Scepter","icon":"inv_mace_02","type":13,"weaponType":4,"handType":2,"stats":[2,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2.4,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3887,"zoneId":209}}]}, -{"id":6324,"name":"Robes of Arugal","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,6,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4275,"zoneId":209}}]}, -{"id":6327,"name":"The Pacifier","icon":"inv_mace_09","type":13,"weaponType":4,"handType":4,"stats":[18,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":156,"weaponSpeed":4,"ilvl":37,"quality":3}, -{"id":6331,"name":"Howling Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":1.4,"ilvl":36,"quality":3,"unique":true}, -{"id":6332,"name":"Black Pearl Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,1,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"unique":true}, -{"id":6333,"name":"Spikelash Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":1.9,"ilvl":22,"quality":2}, -{"id":6335,"name":"Grizzled Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":6336,"name":"Infantry Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,96,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":13,"quality":2}, -{"id":6337,"name":"Infantry Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,23,584,669,839,924,1009,1094,1179,1547,1548,2028,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2027],"ilvl":12,"quality":2}, -{"id":6340,"name":"Fenrus' Hide","icon":"inv_misc_pelt_wolf_02","type":4,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4274,"zoneId":209}}]}, -{"id":6341,"name":"Eerie Stable Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3865,"zoneId":209}}]}, -{"id":6350,"name":"Rough Bronze Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":7817}},{"crafted":{"profession":2,"spellId":7817}}]}, -{"id":6360,"name":"Steelscale Crushfish","icon":"inv_misc_fish_04","type":13,"weaponType":4,"handType":2,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.5,"ilvl":25,"quality":2}, -{"id":6363,"name":"26 Pound Catfish","icon":"inv_misc_fish_30","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":1}, -{"id":6364,"name":"32 Pound Catfish","icon":"inv_misc_fish_30","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":1}, -{"id":6365,"name":"Strong Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":10,"quality":1}, -{"id":6366,"name":"Darkwood Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":43,"weaponSpeed":3,"ilvl":20,"quality":1}, -{"id":6367,"name":"Big Iron Fishing Pole","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":69,"weaponSpeed":3,"ilvl":30,"quality":1}, -{"id":6378,"name":"Seer's Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":6379,"name":"Inscribed Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":6380,"name":"Inscribed Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":6381,"name":"Bright Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":6382,"name":"Forest Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":6383,"name":"Forest Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":6386,"name":"Glimmering Mail Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6387,"name":"Glimmering Mail Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":6388,"name":"Glimmering Mail Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6389,"name":"Glimmering Mail Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,6,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":6392,"name":"Belt of Arugal","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4275,"zoneId":209}}]}, -{"id":6393,"name":"Silver-Thread Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":6394,"name":"Silver-Thread Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":6395,"name":"Silver-Thread Amice","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":6396,"name":"Emblazoned Chestpiece","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,7,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":6397,"name":"Emblazoned Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":6398,"name":"Emblazoned Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":6399,"name":"Emblazoned Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6400,"name":"Glimmering Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":6402,"name":"Mail Combat Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[9,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":6403,"name":"Mail Combat Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":6404,"name":"Mail Combat Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":6405,"name":"Nightsky Trousers","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,5,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":6406,"name":"Nightsky Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":6407,"name":"Nightsky Wristbands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":6408,"name":"Insignia Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":6409,"name":"Insignia Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":6410,"name":"Insignia Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":6411,"name":"Chief Brigadier Armor","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,15,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":6412,"name":"Chief Brigadier Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":6413,"name":"Chief Brigadier Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":6414,"name":"Seal of Sylvanas","icon":"inv_jewelry_ring_15","type":11,"stats":[3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"factionRestriction":2}, -{"id":6415,"name":"Aurora Robe","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,4,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":6416,"name":"Aurora Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":6417,"name":"Aurora Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":6418,"name":"Aurora Sash","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":6419,"name":"Glyphed Mitts","icon":"inv_gauntlets_14","type":7,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":6420,"name":"Glyphed Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":6421,"name":"Glyphed Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,6,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":6422,"name":"Glyphed Helm","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":6423,"name":"Blackforge Greaves","icon":"inv_boots_05","type":10,"armorType":3,"stats":[9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":6424,"name":"Blackforge Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":6425,"name":"Blackforge Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":6426,"name":"Blackforge Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":6427,"name":"Mistscape Robe","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":6428,"name":"Mistscape Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":6429,"name":"Mistscape Wizard Hat","icon":"inv_helmet_11","type":1,"armorType":1,"stats":[0,0,4,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":6430,"name":"Imperial Leather Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,16,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":6431,"name":"Imperial Leather Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":6432,"name":"Imperial Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":6433,"name":"Imperial Leather Helm","icon":"inv_helmet_16","type":1,"armorType":2,"stats":[0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":6440,"name":"Brainlash","icon":"inv_belt_30","type":11,"stats":[0,0,5,12,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":6447,"name":"Worn Turtle Shell Shield","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,42,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3653,"zoneId":718}}]}, -{"id":6448,"name":"Tail Spike","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3674,"zoneId":718}}]}, -{"id":6449,"name":"Glowing Lizardscale Cloak","icon":"inv_chest_cloth_15","type":4,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3674,"zoneId":718}}]}, -{"id":6459,"name":"Savage Trodders","icon":"inv_boots_01","type":10,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3673,"zoneId":718}}]}, -{"id":6460,"name":"Cobrahn's Grasp","icon":"inv_belt_03","type":8,"armorType":3,"stats":[6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3669,"zoneId":718}}]}, -{"id":6461,"name":"Slime-Encrusted Pads","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3654,"zoneId":718}}]}, -{"id":6463,"name":"Deep Fathom Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,3,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3654,"zoneId":718}}]}, -{"id":6465,"name":"Robe of the Moccasin","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3669,"zoneId":718}}]}, -{"id":6466,"name":"Deviate Scale Cloak","icon":"inv_misc_monsterscales_03","type":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7953}},{"crafted":{"profession":8,"spellId":7953}}]}, -{"id":6467,"name":"Deviate Scale Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7954}},{"crafted":{"profession":8,"spellId":7954}}]}, -{"id":6468,"name":"Deviate Scale Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,4,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":7955}},{"crafted":{"profession":8,"spellId":7955}}]}, -{"id":6469,"name":"Venomstrike","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":2.7,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3673,"zoneId":718}}]}, -{"id":6472,"name":"Stinging Viper","icon":"inv_wand_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.6,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3670,"zoneId":718}}]}, -{"id":6473,"name":"Armor of the Fang","icon":"inv_shirt_16","type":5,"armorType":2,"stats":[0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"setName":"Embrace of the Viper","setId":162,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3670,"zoneId":718}}]}, -{"id":6477,"name":"Grassland Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":6478,"name":"Rat Stompers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":6480,"name":"Slick Deviate Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":6481,"name":"Dagmire Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":6482,"name":"Firewalker Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,2,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"factionRestriction":2}, -{"id":6502,"name":"Violet Scale Armor","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":6503,"name":"Harlequin Robes","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":6504,"name":"Wingblade","icon":"inv_sword_16","type":13,"weaponType":9,"handType":2,"stats":[0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.2,"ilvl":24,"quality":3,"factionRestriction":2}, -{"id":6505,"name":"Crescent Staff","icon":"inv_staff_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":71,"weaponSpeed":2.9,"ilvl":24,"quality":3,"factionRestriction":2}, -{"id":6506,"name":"Infantry Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6507,"name":"Infantry Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6508,"name":"Infantry Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":6509,"name":"Infantry Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6510,"name":"Infantry Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6511,"name":"Journeyman's Robe","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":6512,"name":"Disciple's Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,22,26,28,94,95,96,755,756,757,840,841,842,1010,1011,1012,1801,1802,1839,1840,1953,1954,-84,-81,-69,-19,-15],"ilvl":13,"quality":2}, -{"id":6513,"name":"Disciple's Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6514,"name":"Disciple's Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6515,"name":"Disciple's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6517,"name":"Pioneer Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6518,"name":"Pioneer Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6519,"name":"Pioneer Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":6520,"name":"Pioneer Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":6521,"name":"Pioneer Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":6523,"name":"Buckled Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":1}, -{"id":6524,"name":"Studded Leather Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":6525,"name":"Grunt's Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":6526,"name":"Battle Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":1}, -{"id":6527,"name":"Ancestral Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":6528,"name":"Spellbinder Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":6531,"name":"Barbaric Cloth Robe","icon":"inv_chest_cloth_14","type":5,"armorType":1,"stats":[0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":6536,"name":"Willow Vest","icon":"inv_shirt_green_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,761,762,763,846,847,848,1016,1017,1018,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":6537,"name":"Willow Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,27,28,227,229,231,754,755,756,839,840,841,1009,1010,1011,1800,1801,1838,1839,1952,1953,-84,-81,-69,-19,-15,-11,-9],"ilvl":15,"quality":2}, -{"id":6538,"name":"Willow Robe","icon":"inv_chest_cloth_15","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,761,762,763,846,847,848,1016,1017,1018,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":6539,"name":"Willow Belt","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[26,94,502,503,504,587,588,589,757,758,759,842,843,844,1012,1013,1014,1877,1878,2029,2030,-81,-78,-69,-19,-13,-9],"ilvl":16,"quality":2}, -{"id":6540,"name":"Willow Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[95,113,233,234,588,589,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,232,-81,-78,-69,-19,-15,-11,-9],"ilvl":18,"quality":2}, -{"id":6541,"name":"Willow Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,95,232,233,238,587,588,589,757,758,759,842,843,844,1012,1013,1014,1877,1878,2029,2030,-78,-81,-69,-19,-15,-11,-9],"ilvl":16,"quality":2}, -{"id":6542,"name":"Willow Cape","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,15,16,19,25,27,754,839,1009,1799,1800,1837,1838,1875,1876,1913,1914,1951,1952,2027,2028,-84,-81,-69,-19,-15,-9],"ilvl":15,"quality":2}, -{"id":6543,"name":"Willow Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,15,16,19,25,27,754,839,1009,1799,1800,1837,1838,1875,1876,1913,1914,1951,1952,2027,2028,-84,-81,-69,-19,-15,-9],"ilvl":15,"quality":2}, -{"id":6545,"name":"Soldier's Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,96,97,114,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":18,"quality":2}, -{"id":6546,"name":"Soldier's Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,2031,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2030],"ilvl":17,"quality":2}, -{"id":6547,"name":"Soldier's Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[24,97,587,588,589,672,673,674,842,843,844,927,928,929,1012,1013,1014,1097,1098,1099,1182,1183,1184,1549,1550,2029,2030,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":17,"quality":2}, -{"id":6548,"name":"Soldier's Girdle","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[24,97,587,588,589,672,673,674,842,843,844,927,928,929,1012,1013,1014,1097,1098,1099,1182,1183,1184,1549,1550,2029,2030,-68,-81,-78,-69,-20,-19,-17,-14,-12,-10],"ilvl":16,"quality":2}, -{"id":6549,"name":"Soldier's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":6550,"name":"Soldier's Wristguards","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,15,19,23,584,669,839,924,1009,1094,1179,1547,1548,2028,2027,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":15,"quality":2}, -{"id":6551,"name":"Soldier's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,74,89,96,587,588,672,673,674,842,843,844,927,928,929,1012,1013,1014,1097,1098,1099,1182,1183,1184,589,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":17,"quality":2}, -{"id":6552,"name":"Bard's Tunic","icon":"inv_shirt_11","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,151,152,153,154,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1552,1553,1994,1995,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":19,"quality":2}, -{"id":6553,"name":"Bard's Trousers","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,95,111,113,232,233,234,503,504,505,588,589,590,758,759,760,843,844,845,928,929,930,1013,1014,1015,1183,1184,1185,1550,1551,1802,1803,2030,2031,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":18,"quality":2}, -{"id":6554,"name":"Bard's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,74,89,95,232,233,238,502,503,504,587,588,589,672,674,757,758,759,842,843,844,927,928,929,1012,1013,1014,1182,1183,1184,1801,1802,2029,2030,673,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":17,"quality":2}, -{"id":6555,"name":"Bard's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":6556,"name":"Bard's Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,14,15,16,17,19,25,27,227,228,584,754,839,1009,1547,1548,1799,1989,1990,2027,2028,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1800],"ilvl":15,"quality":2}, -{"id":6557,"name":"Bard's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,28,93,95,96,232,233,238,502,503,504,587,588,589,757,758,759,842,843,844,927,928,929,1012,1013,1014,1549,1550,1991,1992,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":16,"quality":2}, -{"id":6558,"name":"Bard's Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[25,26,62,74,227,228,229,231,256,501,584,585,586,669,670,671,754,755,756,839,840,841,1009,1010,1011,1094,1095,1096,1179,1180,1181,2028,2029,1800,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1801],"ilvl":15,"quality":2}, -{"id":6559,"name":"Bard's Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,19,22,23,24,62,585,586,670,671,925,926,1095,1096,1180,1181,1650,1651,17,74,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":16,"quality":2}, -{"id":6560,"name":"Soldier's Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,19,22,23,24,62,585,586,670,671,925,926,1095,1096,1180,1181,1650,1651,17,74,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":17,"quality":2}, -{"id":6561,"name":"Seer's Padded Armor","icon":"inv_shirt_02","type":5,"armorType":1,"stats":[0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":6562,"name":"Shimmering Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-11,95,96,113,114,232,233,234,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1954,1955,-84,-81,-69,-19,-15,-9],"ilvl":21,"quality":2}, -{"id":6563,"name":"Shimmering Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":6564,"name":"Shimmering Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":21,"quality":2}, -{"id":6565,"name":"Shimmering Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[113,134,235,236,248,591,592,593,761,762,763,846,847,848,1016,1017,1018,1879,1880,2031,2032,-81,-78,-69,-19,-15,-11,-9],"ilvl":22,"quality":2}, -{"id":6566,"name":"Shimmering Amice","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":6567,"name":"Shimmering Armor","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":25,"quality":2}, -{"id":6568,"name":"Shimmering Trousers","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[153,179,237,247,594,595,596,764,765,766,849,850,851,1019,1020,1021,1881,1882,2033,2034,249,-81,-78,-69,-19,-15,-11,-9],"ilvl":24,"quality":2}, -{"id":6569,"name":"Shimmering Robe","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":25,"quality":2}, -{"id":6570,"name":"Shimmering Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,133,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1879,1880,2031,2032,-81,-78,-69,-19,-13,-9],"ilvl":22,"quality":2}, -{"id":6571,"name":"Scouting Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,96,97,108,111,114,115,588,589,590,673,674,675,928,929,930,1098,1099,1100,1183,1184,1185,1653,1654,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":22,"quality":2}, -{"id":6572,"name":"Defender Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,96,97,108,111,114,115,588,589,590,673,674,675,928,929,930,1098,1099,1100,1183,1184,1185,1653,1654,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":23,"quality":2}, -{"id":6573,"name":"Defender Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,114,128,135,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":23,"quality":2}, -{"id":6574,"name":"Defender Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[96,97,114,115,588,589,590,673,674,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,675,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2030,2031],"ilvl":22,"quality":2}, -{"id":6575,"name":"Defender Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,74,89,96,97,587,672,842,927,1012,1097,1182,2029,2030,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":20,"quality":2}, -{"id":6576,"name":"Defender Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[115,136,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1551,1552,2032,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2031],"ilvl":22,"quality":2}, -{"id":6577,"name":"Defender Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[115,136,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1551,1552,2032,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2031],"ilvl":23,"quality":2}, -{"id":6578,"name":"Defender Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[155,189,594,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,2033,2034,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,595],"ilvl":23,"quality":2}, -{"id":6579,"name":"Defender Spaulders","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":6580,"name":"Defender Tunic","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":23,"quality":2}, -{"id":6581,"name":"Scouting Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,94,108,112,232,233,234,503,504,505,588,589,590,673,675,758,759,760,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1802,1803,2030,2031,-81,-9,674,-325,-78,-69,-68,-19,-14,-13,-12,-11],"ilvl":21,"quality":2}, -{"id":6582,"name":"Scouting Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,113,114,132,134,135,235,236,248,507,508,591,592,593,761,762,763,846,847,848,931,932,933,1016,1017,1018,1551,1552,1993,1994,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9,506],"ilvl":22,"quality":2}, -{"id":6583,"name":"Scouting Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,93,94,95,96,238,502,587,757,842,1012,1549,1550,1801,1991,1992,2029,1802,2030,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":21,"quality":2}, -{"id":6584,"name":"Scouting Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,250,251,252,512,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1555,1556,1997,1998,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":25,"quality":2}, -{"id":6585,"name":"Scouting Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,74,89,93,94,95,96,238,502,587,757,842,1012,1801,1802,1991,1992,2029,2030,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":20,"quality":2}, -{"id":6586,"name":"Scouting Gloves","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,113,128,134,235,236,248,506,507,508,591,592,593,676,677,678,761,762,763,846,847,848,931,932,933,1016,1017,1018,1186,1187,1188,1803,1804,2031,2032,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":23,"quality":2}, -{"id":6587,"name":"Scouting Trousers","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,167,179,237,247,249,509,510,511,594,595,596,764,765,766,849,850,851,934,935,936,1019,1020,1021,1189,1190,1191,1553,1554,1806,2033,2034,1805,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":24,"quality":2}, -{"id":6588,"name":"Scouting Spaulders","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1}, -{"id":6590,"name":"Battleforge Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,596,597,598,681,682,683,851,853,936,937,938,1021,1022,1106,1107,1108,1191,1192,1193,1608,-325,-84,-81,-78,-69,-68,-14,-12,-10,852,1023],"ilvl":29,"quality":2}, -{"id":6591,"name":"Battleforge Wristguards","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,590,675,845,846,847,930,932,1015,1016,1017,1100,1101,1102,1185,1186,1187,1551,-68,591,592,676,677,2031,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,931],"ilvl":27,"quality":2}, -{"id":6592,"name":"Battleforge Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,191,192,600,601,602,685,686,687,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,855],"ilvl":29,"quality":2}, -{"id":6593,"name":"Battleforge Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,114,115,590,592,675,676,677,845,846,930,931,932,1015,1017,1100,1101,1102,1185,1186,1187,2031,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10,591,847,1016],"ilvl":26,"quality":2}, -{"id":6594,"name":"Battleforge Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[189,596,597,598,681,682,851,852,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1554,2034,853,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,683],"ilvl":28,"quality":2}, -{"id":6595,"name":"Battleforge Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[189,596,681,682,683,851,852,936,937,938,1021,1022,1023,1106,1107,1191,1192,1193,1554,2034,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,597,598,853,1108],"ilvl":28,"quality":2}, -{"id":6596,"name":"Battleforge Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,687,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":28,"quality":2}, -{"id":6597,"name":"Battleforge Shoulderguards","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1608,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":28,"quality":2}, -{"id":6598,"name":"Dervish Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,135,136,591,592,593,676,677,678,931,932,933,1101,1102,1103,1186,1187,1188,1656,1657,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":28,"quality":2}, -{"id":6599,"name":"Battleforge Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,135,136,591,592,593,676,677,678,931,932,933,1101,1102,1103,1186,1187,1188,1656,1657,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":29,"quality":2}, -{"id":6600,"name":"Dervish Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,147,152,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,1804,1805,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":27,"quality":2}, -{"id":6601,"name":"Dervish Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,179,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,936,937,938,1021,1022,1023,1554,1996,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":28,"quality":2}, -{"id":6602,"name":"Dervish Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,112,113,114,234,235,236,505,506,590,591,592,760,761,762,845,846,847,1015,1016,1017,1551,1803,1993,2031,507,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":27,"quality":2}, -{"id":6603,"name":"Dervish Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,181,182,186,187,254,255,515,516,517,600,601,602,770,771,772,855,856,857,1025,1026,1027,1556,1557,1998,1999,253,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":30,"quality":2}, -{"id":6604,"name":"Dervish Cape","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,111,112,113,114,234,235,236,505,506,507,590,591,592,760,761,762,845,846,847,1015,1016,1017,1803,1993,2031,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":26,"quality":2}, -{"id":6605,"name":"Dervish Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,250,252,511,513,596,597,598,681,682,683,766,767,768,851,852,853,936,938,1021,1022,1023,1191,1193,1608,1806,2034,937,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,512,1192],"ilvl":28,"quality":2}, -{"id":6607,"name":"Dervish Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,253,254,255,515,517,600,601,602,770,771,772,855,856,857,941,942,1025,1026,1027,1195,1196,1197,1556,1557,1808,1809,2036,2037,516,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,940],"ilvl":30,"quality":2}, -{"id":6608,"name":"Bright Armor","icon":"inv_chest_leather_07","type":5,"armorType":1,"stats":[0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":6609,"name":"Sage's Cloth","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-9],"ilvl":32,"quality":2}, -{"id":6610,"name":"Sage's Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-9],"ilvl":32,"quality":2}, -{"id":6611,"name":"Sage's Sash","icon":"inv_misc_bandana_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,-81,-78,-69,-19,-13,-9],"ilvl":29,"quality":2}, -{"id":6612,"name":"Sage's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,184,247,250,252,766,767,768,851,852,853,1021,1022,1023,1806,1844,1958,-84,-81,-69,-19,-15,-11,-9],"ilvl":28,"quality":2}, -{"id":6613,"name":"Sage's Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":28,"quality":2}, -{"id":6614,"name":"Sage's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":28,"quality":2}, -{"id":6615,"name":"Sage's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,252,-81,-78,-69,-19,-15,-11,-9,250],"ilvl":29,"quality":2}, -{"id":6616,"name":"Sage's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,435,437,604,605,773,774,775,858,859,860,1028,1029,1030,1886,1887,2038,2039,436,-81,-78,-69,-19,-15,-11,-9,603],"ilvl":32,"quality":2}, -{"id":6617,"name":"Sage's Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,184,511,512,513,766,767,768,851,852,853,1021,1022,1023,1806,1844,1958,-84,-81,-69,-19,-13,-9],"ilvl":30,"quality":2}, -{"id":6622,"name":"Sword of Zeal","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.8,"ilvl":63,"quality":3}, -{"id":6627,"name":"Mutant Scale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3654,"zoneId":718}}]}, -{"id":6628,"name":"Raven's Claws","icon":"spell_nature_ravenform","type":7,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":6629,"name":"Sporid Cape","icon":"inv_misc_cape_17","type":4,"stats":[0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5775,"zoneId":718}}]}, -{"id":6630,"name":"Seedcloud Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5775,"zoneId":718}}]}, -{"id":6631,"name":"Living Root","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,3,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":64,"weaponSpeed":2.9,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5775,"zoneId":718}}]}, -{"id":6632,"name":"Feyscale Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5912,"zoneId":718}}]}, -{"id":6633,"name":"Butcher's Slicer","icon":"inv_sword_16","type":13,"weaponType":9,"handType":2,"stats":[2,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.6,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3886,"zoneId":209}}]}, -{"id":6641,"name":"Haunting Blade","icon":"inv_sword_17","type":13,"weaponType":9,"handType":4,"stats":[8,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.8,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3872,"zoneId":209}}]}, -{"id":6642,"name":"Phantom Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3872,"zoneId":209}}]}, -{"id":6651,"name":"Broken Wine Bottle","icon":"inv_drink_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.7,"ilvl":12,"quality":1}, -{"id":6653,"name":"Torch of the Dormant Flame","icon":"inv_torch_unlit","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":6654,"name":"Torch of the Eternal Flame","icon":"inv_torch_lit","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":6659,"name":"Scarab Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":6660,"name":"Julie's Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.3,"ilvl":55,"quality":3}, -{"id":6664,"name":"Voodoo Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":2}, -{"id":6665,"name":"Hexed Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":2}, -{"id":6666,"name":"Dredge Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":2}, -{"id":6667,"name":"Engineer's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":6668,"name":"Draftsman Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":6669,"name":"Sacred Band","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":6670,"name":"Panther Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":6671,"name":"Juggernaut Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":6675,"name":"Tempered Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":1}, -{"id":6676,"name":"Constable Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":1}, -{"id":6677,"name":"Spellcrafter Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.7,"ilvl":26,"quality":2}, -{"id":6678,"name":"Band of Elven Grace","icon":"inv_belt_32","type":11,"stats":[0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":6679,"name":"Armor Piercer","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,15,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":127,"weaponSpeed":3.5,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4438,"zoneId":491}}]}, -{"id":6681,"name":"Thornspike","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.8,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4424,"zoneId":491}}]}, -{"id":6682,"name":"Death Speaker Robes","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4428,"zoneId":491}}]}, -{"id":6685,"name":"Death Speaker Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4428,"zoneId":491}}]}, -{"id":6686,"name":"Tusken Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4420,"zoneId":491}}]}, -{"id":6687,"name":"Corpsemaker","icon":"inv_weapon_halbard_01","type":13,"weaponType":1,"handType":4,"stats":[15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":3.8,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4420,"zoneId":491}}]}, -{"id":6688,"name":"Whisperwind Headdress","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,8,15,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4842,"zoneId":491}}]}, -{"id":6689,"name":"Wind Spirit Staff","icon":"inv_staff_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,9,13,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":119,"weaponSpeed":3.3,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4842,"zoneId":491}}]}, -{"id":6690,"name":"Ferine Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4422,"zoneId":491}}]}, -{"id":6691,"name":"Swinetusk Shank","icon":"inv_misc_bone_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.5,"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4422,"zoneId":491}}]}, -{"id":6692,"name":"Pronged Reaver","icon":"inv_axe_18","type":13,"weaponType":1,"handType":2,"stats":[0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.6,"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4421,"zoneId":491}}]}, -{"id":6693,"name":"Agamaggan's Clutch","icon":"inv_misc_bone_05","type":11,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4421,"zoneId":491}}]}, -{"id":6694,"name":"Heart of Agamaggan","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4421,"zoneId":491}}]}, -{"id":6695,"name":"Stygian Bone Amulet","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,5,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4425,"zoneId":491}}]}, -{"id":6696,"name":"Nightstalker Bow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":2.8,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4425,"zoneId":491}}]}, -{"id":6697,"name":"Batwing Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4425,"zoneId":491}}]}, -{"id":6709,"name":"Moonglow Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":8322}},{"crafted":{"profession":8,"spellId":8322}}]}, -{"id":6713,"name":"Ripped Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":6719,"name":"Windborne Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6720,"name":"Spirit Hunter Headdress","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,10,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":2}, -{"id":6721,"name":"Chestplate of Kor","icon":"inv_chest_leather_05","type":5,"armorType":3,"stats":[4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":976,"name":"Supplies to Auberdine"}}]}, -{"id":6722,"name":"Beastial Manacles","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":6723,"name":"Medal of Courage","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":6725,"name":"Marbled Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[5,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":6726,"name":"Razzeric's Customized Seatbelt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":6727,"name":"Razzeric's Racing Grips","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":6729,"name":"Fizzle's Zippy Lighter","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":1.5,"ilvl":38,"quality":2}, -{"id":6730,"name":"Ironforge Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":8366}}]}, -{"id":6731,"name":"Ironforge Breastplate","icon":"inv_chest_plate05","type":5,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,30,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":8367}},{"crafted":{"profession":2,"spellId":8367}}]}, -{"id":6732,"name":"Gnomish Mechanic's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":6733,"name":"Ironforge Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":8368}}]}, -{"id":6737,"name":"Dryleaf Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"factionRestriction":2}, -{"id":6738,"name":"Bleeding Crescent","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":2.4,"ilvl":35,"quality":2,"factionRestriction":2}, -{"id":6739,"name":"Cliffrunner's Aim","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.3,"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":6740,"name":"Azure Sash","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":6741,"name":"Orcish War Sword","icon":"inv_sword_13","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":68,"weaponSpeed":3.1,"ilvl":29,"quality":1,"factionRestriction":2}, -{"id":6742,"name":"Stonefist Girdle","icon":"inv_belt_35","type":8,"armorType":3,"stats":[8,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":6743,"name":"Sustaining Ring","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}]}, -{"id":6744,"name":"Gloves of Kapelan","icon":"inv_gauntlets_03","type":7,"armorType":1,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":1436,"name":"Alliance Relations"}}],"factionRestriction":2}, -{"id":6745,"name":"Swiftrunner Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":1436,"name":"Alliance Relations"}}],"factionRestriction":2}, -{"id":6746,"name":"Basalt Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":6747,"name":"Enforcer Pauldrons","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"factionRestriction":2}, -{"id":6748,"name":"Monkey Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,8,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{}}]}, -{"id":6749,"name":"Tiger Band","icon":"inv_jewelry_ring_13","type":11,"stats":[8,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{}}]}, -{"id":6750,"name":"Snake Hoop","icon":"inv_jewelry_ring_06","type":11,"stats":[0,0,0,8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{}}]}, -{"id":6751,"name":"Mourning Shawl","icon":"inv_misc_cape_11","type":4,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"factionRestriction":1}, -{"id":6752,"name":"Lancer Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"factionRestriction":1}, -{"id":6757,"name":"Jaina's Signet Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":1267,"name":"The Missing Diplomat"}}],"factionRestriction":1}, -{"id":6773,"name":"Gelkis Marauder Chain","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":6774,"name":"Uthek's Finger","icon":"inv_wand_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":6780,"name":"Lilac Sash","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"factionRestriction":2}, -{"id":6784,"name":"Braced Handguards","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"factionRestriction":2}, -{"id":6786,"name":"Simple Dress","icon":"inv_shirt_12","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8465}},{"crafted":{"profession":11,"spellId":8465}}]}, -{"id":6787,"name":"White Woolen Dress","icon":"inv_shirt_12","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8467}},{"crafted":{"profession":11,"spellId":8467}}]}, -{"id":6788,"name":"Magram Hunter's Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":6789,"name":"Ceremonial Centaur Blanket","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":6790,"name":"Ring of Calm","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":6791,"name":"Hellion Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,8,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":6792,"name":"Sanguine Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":6793,"name":"Auric Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":1467,"name":"Reagents for Reclaimers Inc."}}]}, -{"id":6794,"name":"Stormfire Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":1467,"name":"Reagents for Reclaimers Inc."}}]}, -{"id":6797,"name":"Eyepoker","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":1.7,"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":6798,"name":"Blasting Hackbut","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.8,"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":6801,"name":"Baroque Apron","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,6,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":1258,"name":"... and Bugs"}}],"factionRestriction":1}, -{"id":6802,"name":"Sword of Omen","icon":"inv_sword_19","type":13,"weaponType":9,"handType":2,"stats":[9,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":1.9,"ilvl":44,"quality":3}, -{"id":6803,"name":"Prophetic Cane","icon":"inv_staff_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3}, -{"id":6804,"name":"Windstorm Hammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":2,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":65,"weaponSpeed":2.1,"ilvl":34,"quality":3,"factionRestriction":2}, -{"id":6806,"name":"Dancing Flame","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":1.4,"ilvl":40,"quality":3,"factionRestriction":2}, -{"id":6828,"name":"Visionary Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":1393,"name":"Galen's Escape"}}]}, -{"id":6829,"name":"Sword of Serenity","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":2.2,"ilvl":44,"quality":3,"factionRestriction":1}, -{"id":6830,"name":"Bonebiter","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":159,"weaponSpeed":3.4,"ilvl":44,"quality":3,"factionRestriction":1}, -{"id":6831,"name":"Black Menace","icon":"inv_sword_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":1.5,"ilvl":44,"quality":3,"factionRestriction":1}, -{"id":6832,"name":"Cloak of Blight","icon":"inv_chest_cloth_15","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"factionRestriction":2}, -{"id":6834,"name":"Black Tuxedo","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":6835,"name":"Black Tuxedo Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1,"setName":"Spring Tuxedo","setId":812,"sources":[{"soldBy":{"zoneId":12}}]}, -{"id":6836,"name":"Dress Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":49677}},{"crafted":{"profession":11,"spellId":49677}}]}, -{"id":6898,"name":"Orb of Soran'ruk","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"classAllowlist":[8]}, -{"id":6900,"name":"Enchanted Gold Bloodrobe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"classAllowlist":[8],"sources":[{"quest":{"id":4786,"name":"The Completed Robe"}}]}, -{"id":6901,"name":"Glowing Thresher Cape","icon":"inv_misc_monsterscales_03","type":4,"stats":[0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4830,"zoneId":719}}]}, -{"id":6902,"name":"Bands of Serra'kis","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4830,"zoneId":719}}]}, -{"id":6903,"name":"Gaze Dreamer Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,5,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4832,"zoneId":719}}]}, -{"id":6904,"name":"Bite of Serra'kis","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.3,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4830,"zoneId":719}}]}, -{"id":6905,"name":"Reef Axe","icon":"inv_weapon_halberd_06","type":13,"weaponType":1,"handType":4,"stats":[11,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.6,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6243,"zoneId":719}}]}, -{"id":6906,"name":"Algae Fists","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6243,"zoneId":719}}]}, -{"id":6907,"name":"Tortoise Armor","icon":"inv_shirt_06","type":5,"armorType":3,"stats":[0,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4887,"zoneId":719}}]}, -{"id":6908,"name":"Ghamoo-Ra's Bind","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4887,"zoneId":719}}]}, -{"id":6909,"name":"Strike of the Hydra","icon":"inv_sword_42","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.3,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4829,"zoneId":719}}]}, -{"id":6910,"name":"Leech Pants","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,4,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4829,"zoneId":719}}]}, -{"id":6911,"name":"Moss Cinch","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4829,"zoneId":719}}]}, -{"id":6953,"name":"Verigan's Fist","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":4,"stats":[0,0,7,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":99,"weaponSpeed":3.2,"ilvl":31,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":1806,"name":"The Test of Righteousness"}}]}, -{"id":6966,"name":"Elunite Axe","icon":"inv_axe_04","type":13,"weaponType":1,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":2.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1693,"name":"Weapons of Elunite"}}]}, -{"id":6967,"name":"Elunite Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1693,"name":"Weapons of Elunite"}}]}, -{"id":6968,"name":"Elunite Hammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.3,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1693,"name":"Weapons of Elunite"}}]}, -{"id":6969,"name":"Elunite Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1693,"name":"Weapons of Elunite"}}]}, -{"id":6970,"name":"Furen's Favor","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"classAllowlist":[9]}, -{"id":6971,"name":"Fire Hardened Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1706,"name":"Grimand's Armor"}}]}, -{"id":6972,"name":"Fire Hardened Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":1782,"name":"Furen's Armor"}}]}, -{"id":6973,"name":"Fire Hardened Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1711,"name":"Mathiel's Armor"}}]}, -{"id":6974,"name":"Fire Hardened Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1709,"name":"Klockmort's Creation"}}]}, -{"id":6975,"name":"Whirlwind Axe","icon":"inv_axe_12","type":13,"weaponType":1,"handType":4,"stats":[15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.6,"ilvl":40,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":1792,"name":"Whirlwind Weapon"}}]}, -{"id":6976,"name":"Whirlwind Warhammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":3.4,"ilvl":40,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":1792,"name":"Whirlwind Weapon"}}]}, -{"id":6977,"name":"Whirlwind Sword","icon":"inv_sword_15","type":13,"weaponType":9,"handType":4,"stats":[15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":124,"weaponSpeed":2.9,"ilvl":40,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":1792,"name":"Whirlwind Weapon"}}]}, -{"id":6978,"name":"Umbral Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":2.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1682,"name":"Grey Iron Weapons"}}],"factionRestriction":1}, -{"id":6979,"name":"Haggard's Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":2.7,"ilvl":15,"quality":2,"classAllowlist":[9],"factionRestriction":1}, -{"id":6980,"name":"Haggard's Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"classAllowlist":[9],"factionRestriction":1}, -{"id":6981,"name":"Umbral Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1682,"name":"Grey Iron Weapons"}}],"factionRestriction":1}, -{"id":6982,"name":"Umbral Mace","icon":"inv_mace_12","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.3,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1682,"name":"Grey Iron Weapons"}}],"factionRestriction":1}, -{"id":6983,"name":"Haggard's Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.3,"ilvl":15,"quality":2,"classAllowlist":[9],"factionRestriction":1}, -{"id":6984,"name":"Umbral Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1682,"name":"Grey Iron Weapons"}}],"factionRestriction":1}, -{"id":6985,"name":"Haggard's Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":15,"quality":2,"classAllowlist":[9],"factionRestriction":1}, -{"id":6998,"name":"Nimbus Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":7000,"name":"Heartwood Girdle","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":7001,"name":"Gravestone Scepter","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":1.5,"ilvl":29,"quality":3}, -{"id":7002,"name":"Arctic Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":7003,"name":"Beetle Clasps","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":7004,"name":"Prelacy Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":7005,"name":"Skinning Knife","icon":"inv_weapon_shortblade_01","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.6,"ilvl":4,"quality":1}, -{"id":7026,"name":"Linen Belt","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8776}},{"crafted":{"profession":11,"spellId":8776}}]}, -{"id":7027,"name":"Boots of Darkness","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8778}}]}, -{"id":7046,"name":"Azure Silk Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8758}},{"crafted":{"profession":11,"spellId":8758}}]}, -{"id":7047,"name":"Hands of Darkness","icon":"inv_gauntlets_22","type":7,"armorType":1,"stats":[0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8780}},{"crafted":{"profession":11,"spellId":8780}}]}, -{"id":7048,"name":"Azure Silk Hood","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8760}},{"crafted":{"profession":11,"spellId":8760}}]}, -{"id":7049,"name":"Truefaith Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8782}},{"crafted":{"profession":11,"spellId":8782}}]}, -{"id":7050,"name":"Silk Headband","icon":"inv_misc_bandana_01","type":1,"armorType":1,"stats":[0,0,0,2,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8762}},{"crafted":{"profession":11,"spellId":8762}}]}, -{"id":7051,"name":"Earthen Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,6,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8764}},{"crafted":{"profession":11,"spellId":8764}}]}, -{"id":7052,"name":"Azure Silk Belt","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8766}},{"crafted":{"profession":11,"spellId":8766}}]}, -{"id":7053,"name":"Azure Silk Cloak","icon":"inv_chest_cloth_14","type":4,"stats":[0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8786}},{"crafted":{"profession":11,"spellId":8786}}]}, -{"id":7054,"name":"Robe of Power","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,15,14,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8770}},{"crafted":{"profession":11,"spellId":8770}}]}, -{"id":7055,"name":"Crimson Silk Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8772}},{"crafted":{"profession":11,"spellId":8772}}]}, -{"id":7056,"name":"Crimson Silk Cloak","icon":"inv_chest_cloth_16","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8789}},{"crafted":{"profession":11,"spellId":8789}}]}, -{"id":7057,"name":"Green Silken Shoulders","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8774}},{"crafted":{"profession":11,"spellId":8774}}]}, -{"id":7058,"name":"Crimson Silk Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8791}},{"crafted":{"profession":11,"spellId":8791}}]}, -{"id":7059,"name":"Crimson Silk Shoulders","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8793}},{"crafted":{"profession":11,"spellId":8793}}]}, -{"id":7060,"name":"Azure Shoulders","icon":"inv_shoulder_27","type":3,"armorType":1,"stats":[0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8795}},{"crafted":{"profession":11,"spellId":8795}}]}, -{"id":7061,"name":"Earthen Silk Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8797}},{"crafted":{"profession":11,"spellId":8797}}]}, -{"id":7062,"name":"Crimson Silk Pantaloons","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,14,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8799}},{"crafted":{"profession":11,"spellId":8799}}]}, -{"id":7063,"name":"Crimson Silk Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8802}},{"crafted":{"profession":11,"spellId":8802}}]}, -{"id":7064,"name":"Crimson Silk Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8804}},{"crafted":{"profession":11,"spellId":8804}}]}, -{"id":7065,"name":"Green Silk Armor","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":8784}},{"crafted":{"profession":11,"spellId":8784}}]}, -{"id":7094,"name":"Driftwood Branch","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":24,"weaponSpeed":3.4,"ilvl":10,"quality":1}, -{"id":7095,"name":"Bog Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":7106,"name":"Zodiac Gloves","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":7107,"name":"Belt of the Stars","icon":"inv_belt_06","type":8,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":7108,"name":"Infantry Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,14,15,48,584,669,924,1094,1179,1647,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":11,"quality":2}, -{"id":7109,"name":"Pioneer Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":7110,"name":"Silver-Thread Armor","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":7111,"name":"Nightsky Armor","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":7112,"name":"Aurora Armor","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,4,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":7113,"name":"Mistscape Armor","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,3,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":7115,"name":"Heirloom Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":2.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1822,"name":"Heirloom Weapon"}}],"factionRestriction":2}, -{"id":7116,"name":"Heirloom Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1822,"name":"Heirloom Weapon"}}],"factionRestriction":2}, -{"id":7117,"name":"Heirloom Hammer","icon":"inv_hammer_12","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.3,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1822,"name":"Heirloom Weapon"}}],"factionRestriction":2}, -{"id":7118,"name":"Heirloom Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":15,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1822,"name":"Heirloom Weapon"}}],"factionRestriction":2}, -{"id":7120,"name":"Ruga's Bulwark","icon":"inv_shield_14","type":13,"weaponType":7,"handType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"classAllowlist":[9]}, -{"id":7129,"name":"Brutal Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1843,"name":"Brutal Gauntlets"}}]}, -{"id":7130,"name":"Brutal Helm","icon":"inv_helmet_02","type":1,"armorType":3,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1845,"name":"Brutal Helm"}}]}, -{"id":7132,"name":"Brutal Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":1847,"name":"Brutal Legguards"}}]}, -{"id":7133,"name":"Brutal Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":1848,"name":"Brutal Hauberk"}}]}, -{"id":7166,"name":"Copper Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.5,"ilvl":11,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":8880}},{"crafted":{"profession":2,"spellId":8880}}]}, -{"id":7170,"name":"Twain Random Sword FOO","icon":"inv_sword_03","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":0.5,"ilvl":20}, -{"id":7188,"name":"Stormwind Guard Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":7189,"name":"Goblin Rocket Boots","icon":"inv_gizmo_rocketboot_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":8895}},{"crafted":{"profession":4,"spellId":8895}}]}, -{"id":7229,"name":"Explorer's Vest","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"factionRestriction":1}, -{"id":7230,"name":"Smite's Mighty Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":74,"weaponSpeed":3.5,"ilvl":20,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":646,"zoneId":1581}}]}, -{"id":7276,"name":"Handstitched Leather Cloak","icon":"inv_helmet_48","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9058}},{"crafted":{"profession":8,"spellId":9058}}]}, -{"id":7277,"name":"Handstitched Leather Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9059}},{"crafted":{"profession":8,"spellId":9059}}]}, -{"id":7280,"name":"Rugged Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9064}},{"crafted":{"profession":8,"spellId":9064}}]}, -{"id":7281,"name":"Light Leather Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9065}},{"crafted":{"profession":8,"spellId":9065}}]}, -{"id":7282,"name":"Light Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9068}},{"crafted":{"profession":8,"spellId":9068}}]}, -{"id":7283,"name":"Black Whelp Cloak","icon":"inv_misc_monsterscales_03","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9070}},{"crafted":{"profession":8,"spellId":9070}}]}, -{"id":7284,"name":"Red Whelp Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9072}},{"crafted":{"profession":8,"spellId":9072}}]}, -{"id":7285,"name":"Nimble Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9074}},{"crafted":{"profession":8,"spellId":9074}}]}, -{"id":7297,"name":"Morbent's Bane","icon":"inv_staff_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":1,"unique":true,"sources":[{"quest":{}}]}, -{"id":7298,"name":"Blade of Cunning","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2,"ilvl":10,"quality":2,"unique":true,"classAllowlist":[6]}, -{"id":7326,"name":"Thun'grim's Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":2.7,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":7327,"name":"Thun'grim's Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":7328,"name":"Thun'grim's Mace","icon":"inv_mace_12","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.3,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":7329,"name":"Thun'grim's Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":2.1,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":7330,"name":"Infiltrator Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,147,151,154,155,594,595,679,680,933,934,935,1103,1104,1105,1188,1189,1190,132,135,136,593,678,1659,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,1658],"ilvl":33,"quality":2}, -{"id":7331,"name":"Phalanx Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,154,155,167,184,189,594,595,596,679,680,681,935,1104,1106,1189,1190,1191,1608,1660,936,1105,1661,934,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":34,"quality":2}, -{"id":7332,"name":"Regal Armor","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,412,413,785,786,787,870,871,872,1040,1041,1042,1816,1854,1855,1968,1969,1817,-84,-81,-69,-19,-15,-9],"ilvl":45,"quality":2}, -{"id":7334,"name":"Efflorescent Robe","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,0,2,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":7335,"name":"Grizzly Tunic","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":7336,"name":"Wildwood Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":7337,"name":"The Rock","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1}, -{"id":7338,"name":"Mood Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":7339,"name":"Miniscule Diamond Ring","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":1}, -{"id":7340,"name":"Flawless Diamond Solitaire","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":7341,"name":"Cubic Zirconia Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":7342,"name":"Silver Piffeny Band","icon":"inv_belt_33","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1}, -{"id":7344,"name":"Torch of Holy Flame","icon":"inv_staff_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":1}, -{"id":7348,"name":"Fletcher's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":9145}},{"crafted":{"profession":8,"spellId":9145}}]}, -{"id":7349,"name":"Herbalist's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9146}},{"crafted":{"profession":8,"spellId":9146}}]}, -{"id":7350,"name":"Disciple's Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":7351,"name":"Disciple's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":7352,"name":"Earthen Leather Shoulders","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9147}},{"crafted":{"profession":8,"spellId":9147}}]}, -{"id":7353,"name":"Elder's Padded Armor","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":35,"quality":2}, -{"id":7354,"name":"Elder's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,185,250,251,767,768,769,854,1022,1023,1024,1807,1845,1959,252,852,853,-84,-81,-69,-19,-15,-11,-9],"ilvl":33,"quality":2}, -{"id":7355,"name":"Elder's Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-9],"ilvl":31,"quality":2}, -{"id":7356,"name":"Elder's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":30,"quality":2}, -{"id":7357,"name":"Elder's Hat","icon":"inv_helmet_15","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,522,523,776,777,778,861,862,863,1031,1033,1811,1812,1849,1850,1888,1963,1964,2039,2040,521,1032,1887,-84,-81,-69,-19,-13,-9],"ilvl":34,"quality":2}, -{"id":7358,"name":"Pilferer's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9148}},{"crafted":{"profession":8,"spellId":9148}}]}, -{"id":7359,"name":"Heavy Earthen Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9149}},{"crafted":{"profession":8,"spellId":9149}}]}, -{"id":7366,"name":"Elder's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,252,-81,-78,-69,-19,-15,-11,-9],"ilvl":32,"quality":2}, -{"id":7367,"name":"Elder's Mantle","icon":"inv_shoulder_26","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,185,512,514,767,768,769,852,853,854,1022,1023,1024,1807,1845,1959,513,-84,-81,-69,-19,-13,-9],"ilvl":33,"quality":2}, -{"id":7368,"name":"Elder's Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,606,608,776,777,778,861,862,863,1031,1032,1033,1888,1887,2039,2040,438,-81,-78,-69,-19,-15,-11,-9,607],"ilvl":34,"quality":2}, -{"id":7369,"name":"Elder's Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":35,"quality":2}, -{"id":7370,"name":"Elder's Sash","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,512,-81,-78,-69,-19,-13,-9],"ilvl":31,"quality":2}, -{"id":7373,"name":"Dusky Leather Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9195}},{"crafted":{"profession":8,"spellId":9195}}]}, -{"id":7374,"name":"Dusky Leather Armor","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9196}},{"crafted":{"profession":8,"spellId":9196}}]}, -{"id":7375,"name":"Green Whelp Armor","icon":"inv_chest_chain_09","type":5,"armorType":2,"stats":[0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9197}},{"crafted":{"profession":8,"spellId":9197}}]}, -{"id":7377,"name":"Frost Leather Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9198}},{"crafted":{"profession":8,"spellId":9198}}]}, -{"id":7378,"name":"Dusky Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9201}},{"crafted":{"profession":8,"spellId":9201}}]}, -{"id":7386,"name":"Green Whelp Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9202}},{"crafted":{"profession":8,"spellId":9202}}]}, -{"id":7387,"name":"Dusky Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9206}},{"crafted":{"profession":8,"spellId":9206}}]}, -{"id":7390,"name":"Dusky Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":9207}},{"crafted":{"profession":8,"spellId":9207}}]}, -{"id":7391,"name":"Swift Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":9208}},{"crafted":{"profession":8,"spellId":9208}}]}, -{"id":7406,"name":"Infiltrator Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,251,512,513,514,597,598,599,684,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1192,1193,1194,1609,2035,250,682,1807,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,252,683],"ilvl":32,"quality":2}, -{"id":7407,"name":"Infiltrator Armor","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,215,216,217,218,438,440,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1559,1560,2002,522,439,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,521,2001],"ilvl":35,"quality":2}, -{"id":7408,"name":"Infiltrator Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,185,250,251,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1609,252,1997,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,512,513],"ilvl":33,"quality":2}, -{"id":7409,"name":"Infiltrator Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,180,185,250,251,252,512,513,514,597,598,599,768,769,852,853,854,938,939,1022,1023,1024,1555,767,937,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":33,"quality":2}, -{"id":7410,"name":"Infiltrator Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,151,152,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1019,1020,1552,1553,1805,1994,1995,2033,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1804,2032],"ilvl":31,"quality":2}, -{"id":7411,"name":"Infiltrator Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,133,134,135,147,151,152,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1020,1804,1994,1995,2032,1019,1805,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,2033],"ilvl":31,"quality":2}, -{"id":7412,"name":"Infiltrator Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,512,514,597,598,599,682,684,767,768,769,852,853,854,938,939,1022,1023,1024,1192,1194,1609,1807,2035,252,513,683,1193,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,937],"ilvl":32,"quality":2}, -{"id":7413,"name":"Infiltrator Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,435,437,518,519,520,603,604,605,689,690,773,774,775,858,859,860,1028,1029,1030,1200,1607,1612,1810,2000,2001,2038,2039,436,1811,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,688,1198,1199],"ilvl":33,"quality":2}, -{"id":7414,"name":"Infiltrator Pants","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,211,212,215,216,438,439,440,521,522,523,606,607,608,776,777,778,861,862,863,948,1031,1032,1033,1201,1202,1203,1559,1560,1812,946,2040,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,947,1811,2039],"ilvl":34,"quality":2}, -{"id":7415,"name":"Dervish Spaulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,174,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1106,1107,1108,1608,1996,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":29,"quality":2}, -{"id":7416,"name":"Phalanx Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,154,155,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,1552,1553,2033,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2032],"ilvl":31,"quality":2}, -{"id":7417,"name":"Phalanx Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,600,601,602,685,686,687,855,856,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1610,1611,-81,857,940,-325,-84,-78,-69,-68,-14,-12,-10],"ilvl":34,"quality":2}, -{"id":7418,"name":"Phalanx Breastplate","icon":"inv_chest_plate01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,692,693,861,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,691,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,607,862],"ilvl":35,"quality":2}, -{"id":7419,"name":"Phalanx Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,128,135,136,591,592,593,676,677,678,846,847,931,932,933,1017,1018,1101,1102,1103,1186,1187,1188,2032,848,1016,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12],"ilvl":30,"quality":2}, -{"id":7420,"name":"Phalanx Headguard","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,603,604,605,688,689,690,858,859,860,943,944,945,1030,1113,1114,1115,1198,1199,1200,1607,1612,2038,2039,1028,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,1029],"ilvl":33,"quality":2}, -{"id":7421,"name":"Phalanx Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,599,682,683,684,853,854,939,1022,1023,1024,1107,1109,1192,1193,1194,1555,2035,598,938,1108,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,852,937],"ilvl":33,"quality":2}, -{"id":7422,"name":"Phalanx Girdle","icon":"inv_belt_05","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,598,599,682,683,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,2035,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,938],"ilvl":32,"quality":2}, -{"id":7423,"name":"Phalanx Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,693,861,862,863,947,948,1031,1032,1033,1118,1201,1202,1203,1559,1560,2039,607,946,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,691,692,2040],"ilvl":34,"quality":2}, -{"id":7424,"name":"Phalanx Spaulders","icon":"inv_shoulder_26","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,597,598,599,683,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,682,1023,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":33,"quality":2}, -{"id":7429,"name":"Twilight Armor","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":40,"quality":2}, -{"id":7430,"name":"Twilight Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":40,"quality":2}, -{"id":7431,"name":"Twilight Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,441,442,443,609,611,779,780,781,864,865,866,1034,1035,1036,1889,1890,2041,2042,610,-81,-78,-69,-19,-15,-11,-9],"ilvl":39,"quality":2}, -{"id":7432,"name":"Twilight Cowl","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,524,525,526,779,780,781,864,865,866,1034,1035,1036,1813,1814,1851,1852,1889,1890,1965,1966,2041,2042,-84,-81,-69,-19,-13,-9],"ilvl":38,"quality":2}, -{"id":7433,"name":"Twilight Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,602,603,604,772,773,774,857,858,859,1027,1028,1029,1885,1886,2037,2038,-81,-78,-69,-19,-15,-11,-9],"ilvl":37,"quality":2}, -{"id":7434,"name":"Twilight Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,187,188,254,435,436,772,773,774,857,858,859,1027,1028,1029,1809,1847,1848,1961,1962,1810,-84,-81,-69,-19,-15,-11,-9],"ilvl":37,"quality":2}, -{"id":7435,"name":"Twilight Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,187,188,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1810,1847,1848,1961,1962,-84,-81,-69,-19,-13,-9],"ilvl":38,"quality":2}, -{"id":7436,"name":"Twilight Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":35,"quality":2}, -{"id":7437,"name":"Twilight Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":36,"quality":2}, -{"id":7438,"name":"Twilight Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,515,516,517,600,601,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,602,-81,-78,-69,-19,-13,-9],"ilvl":36,"quality":2}, -{"id":7439,"name":"Sentinel Breastplate","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,612,613,614,782,783,784,867,868,869,1037,1038,1039,1208,1209,1563,2004,2005,1562,1207,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":40,"quality":2}, -{"id":7440,"name":"Sentinel Trousers","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,358,409,441,442,443,524,525,526,609,610,611,779,780,781,864,865,866,950,951,1034,1035,1036,1205,1206,1561,1562,1813,1814,2041,2042,410,949,1204,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":39,"quality":2}, -{"id":7441,"name":"Sentinel Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,441,442,443,524,525,526,609,610,611,694,696,779,780,781,864,865,866,1034,1035,1036,1204,1206,1614,1615,1813,1814,2004,2041,695,2003,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1205,2042],"ilvl":38,"quality":2}, -{"id":7443,"name":"Sentinel Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,942,943,944,1027,1028,1029,1197,1198,1199,1607,1611,1809,2037,1810,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2038],"ilvl":37,"quality":2}, -{"id":7444,"name":"Sentinel Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,182,183,187,188,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,942,943,944,1027,1028,1029,1557,1558,1999,2000,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":37,"quality":2}, -{"id":7445,"name":"Sentinel Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,177,178,187,188,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1112,1113,1114,1607,1611,1999,2000,-18,-325,-84,-81,-78,-69,-19,-13,-12,-11,-9],"ilvl":38,"quality":2}, -{"id":7446,"name":"Sentinel Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,152,153,154,167,174,179,184,247,249,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1608,1805,1806,1996,2033,237,509,510,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1995,2034],"ilvl":36,"quality":2}, -{"id":7447,"name":"Sentinel Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,152,153,154,167,174,179,184,237,247,249,509,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1553,1554,1805,1995,1996,2033,510,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1806,2034],"ilvl":36,"quality":2}, -{"id":7448,"name":"Sentinel Girdle","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1610,1611,1808,1809,2036,2037,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":36,"quality":2}, -{"id":7454,"name":"Knight's Breastplate","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,307,308,333,609,610,611,694,695,696,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,1562,950,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":7455,"name":"Knight's Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,609,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1121,1204,1205,1206,1561,1562,1120,2041,2042,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":7456,"name":"Knight's Headguard","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1614,1615,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,609,2041,2042],"ilvl":38,"quality":2}, -{"id":7457,"name":"Knight's Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[192,193,602,603,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1557,1558,2038,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":37,"quality":2}, -{"id":7458,"name":"Knight's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,187,188,602,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1607,1611,603,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":7459,"name":"Knight's Pauldrons","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,188,602,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1607,1611,603,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":7460,"name":"Knight's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,147,154,155,184,189,596,681,849,851,934,935,936,1019,1021,1105,1106,1189,1190,1191,1608,594,595,679,680,850,1020,1104,-325,-84,-81,-78,-69,-19,-17,-14,-12,-10,2033,2034],"ilvl":34,"quality":2}, -{"id":7461,"name":"Knight's Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,680,681,849,851,935,936,1019,1020,1021,1104,1106,1189,1190,1191,1553,1554,2033,679,850,2034,934,1105,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":7462,"name":"Knight's Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[192,193,602,603,687,688,689,857,858,859,942,944,1027,1028,1029,1112,1114,1197,1198,1199,1557,1558,604,943,2037,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1113,2038],"ilvl":37,"quality":2}, -{"id":7463,"name":"Sentinel Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,185,189,190,596,597,598,681,682,683,936,937,938,1106,1107,1108,1191,1192,1193,1609,1662,168,1608,1661,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":7465,"name":"Knight's Crest","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,185,189,190,596,597,598,681,682,683,936,937,938,1106,1107,1108,1191,1192,1193,1609,1662,168,1608,1661,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":7468,"name":"Regal Robe","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,412,413,785,786,787,870,871,872,1040,1041,1042,1816,1854,1855,1968,1969,1817,-84,-81,-69,-19,-15,-9],"ilvl":45,"quality":2}, -{"id":7469,"name":"Regal Leggings","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,413,447,448,449,615,616,617,785,786,787,870,871,872,1040,1041,1042,1892,1893,2044,2045,-81,-78,-69,-19,-15,-11,-9],"ilvl":44,"quality":2}, -{"id":7470,"name":"Regal Wizard Hat","icon":"inv_helmet_11","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,782,783,784,867,869,1037,1038,1039,1815,1852,1853,1890,1891,1966,1967,2042,2043,868,1814,-84,-81,-69,-19,-13,-9],"ilvl":42,"quality":2}, -{"id":7471,"name":"Regal Gloves","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,605,606,775,776,777,860,861,862,1030,1031,1032,1886,1887,2038,2039,439,607,438,-81,-78,-69,-19,-15,-11,-9],"ilvl":42,"quality":2}, -{"id":7472,"name":"Regal Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,188,215,217,437,438,439,775,776,777,860,861,862,1030,1031,1032,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-11,-9],"ilvl":41,"quality":2}, -{"id":7473,"name":"Regal Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,522,775,776,777,860,861,862,1030,1031,1032,1810,1848,1962,1963,521,1811,-84,-81,-69,-19,-13,-9,1849],"ilvl":42,"quality":2}, -{"id":7474,"name":"Regal Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,769,854,1024,1807,1808,1845,1846,1883,1884,1960,2035,2036,1959,-84,-81,-69,-19,-15,-9],"ilvl":40,"quality":2}, -{"id":7475,"name":"Regal Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,175,176,180,181,185,186,769,854,1024,1807,1808,1845,1846,1883,1884,1959,1960,2035,2036,-84,-81,-69,-15,-9],"ilvl":41,"quality":2}, -{"id":7476,"name":"Regal Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,520,521,605,606,607,775,776,777,860,861,862,1030,1031,1032,1886,2038,2039,1887,-81,-78,-69,-19,-13,-9,522],"ilvl":40,"quality":2}, -{"id":7477,"name":"Ranger Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,387,412,413,615,616,617,785,786,787,871,872,1041,1042,1210,1212,1564,1565,2006,2007,386,870,1211,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1040],"ilvl":45,"quality":2}, -{"id":7478,"name":"Ranger Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,449,615,616,617,785,786,787,870,871,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,1816,1817,2044,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,2045],"ilvl":43,"quality":2}, -{"id":7479,"name":"Ranger Helm","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,612,613,614,698,699,782,783,784,868,869,1037,1038,1039,1123,1124,1209,1615,1620,2004,2005,2043,697,867,1122,1207,1814,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,1208,1815,2042],"ilvl":42,"quality":2}, -{"id":7480,"name":"Ranger Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,438,520,521,522,605,606,607,690,692,775,776,860,861,862,945,1030,1031,1032,1200,1201,1607,1612,2039,-81,439,691,777,1811,2038,-325,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,946,947,1202,1810],"ilvl":41,"quality":2}, -{"id":7481,"name":"Ranger Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,211,215,217,439,605,606,607,775,776,777,860,861,862,946,947,1030,1031,1032,1200,1201,1558,2000,2001,437,438,945,1202,1559,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":42,"quality":2}, -{"id":7482,"name":"Ranger Shoulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,520,521,605,606,607,775,776,777,860,861,862,1030,1032,1115,1116,1117,1200,1201,1202,1607,2000,2001,522,1031,1612,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":42,"quality":2}, -{"id":7483,"name":"Ranger Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,185,186,599,769,854,1024,1194,1609,1610,1808,1997,1998,2035,1807,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,181,2036],"ilvl":40,"quality":2}, -{"id":7484,"name":"Ranger Wristguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,599,769,854,1024,1194,1555,1556,1997,1998,2035,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1807,1808,2036],"ilvl":41,"quality":2}, -{"id":7485,"name":"Ranger Cord","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,437,438,439,520,605,606,607,690,692,775,776,777,860,861,862,1030,1031,1032,1115,1116,1117,1200,1202,1607,1612,1810,2038,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,213,521,522,691,1201,1811,2039],"ilvl":41,"quality":2}, -{"id":7486,"name":"Captain's Breastplate","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,386,412,413,447,448,449,530,531,532,615,616,617,785,786,787,870,871,872,1040,1041,1042,1564,1565,2006,387,2007,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":44,"quality":2}, -{"id":7487,"name":"Captain's Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,448,449,530,531,532,615,616,617,785,787,870,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,2044,2045,871,1816,786,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1817],"ilvl":43,"quality":2}, -{"id":7488,"name":"Captain's Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,444,445,446,527,528,529,612,613,614,697,698,699,783,784,867,869,1037,1038,1039,1207,1209,1615,1620,1815,2042,782,868,1208,2043,2005,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1814,2004],"ilvl":42,"quality":2}, -{"id":7489,"name":"Captain's Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,183,215,437,438,439,520,521,522,605,606,607,690,691,692,775,776,860,861,862,945,946,1030,1031,1032,1200,1202,1607,2039,777,1201,1612,1811,1810,-325,-81,-78,-68,-19,-15,-14,-13,-11,-10,-9,947,2038],"ilvl":41,"quality":2}, -{"id":7490,"name":"Captain's Boots","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,215,217,437,438,439,520,521,522,605,606,607,775,777,860,861,862,1030,1032,1200,1201,1202,1558,2000,211,776,1031,1559,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":42,"quality":2}, -{"id":7491,"name":"Captain's Shoulderguards","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,438,440,522,523,606,607,608,776,777,778,861,862,863,1033,1116,1117,1118,1612,1613,2001,218,439,521,1032,2002,-78,217,1031,-325,-84,-81,-69,-19,-18,-13,-12,-11,-9],"ilvl":43,"quality":2}, -{"id":7492,"name":"Captain's Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1608,1609,2034,2035,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":7493,"name":"Captain's Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,251,514,599,769,854,1024,1555,1556,1997,1998,1807,1808,2035,2036,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":40,"quality":2}, -{"id":7494,"name":"Captain's Waistguard","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,437,438,439,520,521,522,605,606,690,691,692,775,777,860,862,1030,1031,1032,1115,1116,1200,1201,1607,1612,1810,1811,2038,2039,607,776,1117,1202,861,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":41,"quality":2}, -{"id":7495,"name":"Captain's Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,186,191,600,601,685,686,940,941,1110,1111,1195,1196,1610,1665,1666,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":44,"quality":2}, -{"id":7496,"name":"Field Plate Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,186,191,600,601,685,686,940,941,1110,1111,1195,1196,1610,1665,1666,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":43,"quality":2}, -{"id":7506,"name":"Gnomish Universal Remote","icon":"inv_misc_pocketwatch_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":9269}},{"crafted":{"profession":4,"spellId":9269}}]}, -{"id":7507,"name":"Arcane Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"classAllowlist":[3]}, -{"id":7508,"name":"Ley Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"classAllowlist":[3]}, -{"id":7509,"name":"Manaweave Robe","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"classAllowlist":[3]}, -{"id":7510,"name":"Lesser Spellfire Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":1962,"name":"Spellfire Robes"}}]}, -{"id":7511,"name":"Astral Knot Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":1942,"name":"Astral Knot Garment"}}]}, -{"id":7512,"name":"Nether-Lace Robe","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":1946,"name":"Nether-lace Garment"}}]}, -{"id":7513,"name":"Ragefire Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":1.4,"ilvl":40,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":1952,"name":"Mage's Wand"}}]}, -{"id":7514,"name":"Icefury Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.6,"ilvl":40,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":1952,"name":"Mage's Wand"}}]}, -{"id":7515,"name":"Celestial Orb","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":1958,"name":"Celestial Power"}}]}, -{"id":7517,"name":"Gossamer Tunic","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,415,416,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1858,1971,1972,-84,-81,-69,-19,-15,-9],"ilvl":50,"quality":2}, -{"id":7518,"name":"Gossamer Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,415,416,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1858,1971,1972,-84,-81,-69,-19,-15,-9],"ilvl":50,"quality":2}, -{"id":7519,"name":"Gossamer Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,452,618,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,619,-81,-78,-69,-19,-15,-11,-9,451],"ilvl":47,"quality":2}, -{"id":7520,"name":"Gossamer Headpiece","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,788,789,790,873,874,875,1043,1044,1045,1817,1818,1855,1856,1893,1894,1969,1970,2045,2046,-84,-81,-69,-19,-13,-9],"ilvl":47,"quality":2}, -{"id":7521,"name":"Gossamer Gloves","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,442,443,609,611,779,780,781,864,865,866,1034,1035,1036,1888,1889,2040,2041,-81,-78,-69,-19,-15,-11,-9,441,610],"ilvl":46,"quality":2}, -{"id":7522,"name":"Gossamer Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,217,218,438,439,440,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-84,-81,-69,-19,-15,-11,-9],"ilvl":45,"quality":2}, -{"id":7523,"name":"Gossamer Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,218,287,383,524,525,526,779,780,781,864,865,866,1034,1035,1036,1812,1813,1850,1851,1964,1965,-84,-81,-69,-19,-13,-9],"ilvl":46,"quality":2}, -{"id":7524,"name":"Gossamer Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":44,"quality":2}, -{"id":7525,"name":"Gossamer Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":45,"quality":2}, -{"id":7526,"name":"Gossamer Belt","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1889,2040,2041,524,1888,-81,-78,-69,-19,-13,-9],"ilvl":46,"quality":2}, -{"id":7527,"name":"Cabalist Chestpiece","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,363,364,389,390,415,416,621,622,623,791,792,793,876,877,878,1046,1047,1048,1216,1217,1218,1567,2009,2010,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1568],"ilvl":50,"quality":2}, -{"id":7528,"name":"Cabalist Leggings","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[361,362,413,414,452,618,619,620,788,790,873,874,875,960,1043,1045,1214,1215,1565,1566,1818,2045,2046,451,789,1044,1213,1817,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,450,958,959],"ilvl":48,"quality":2}, -{"id":7529,"name":"Cabalist Helm","icon":"inv_helmet_18","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,618,619,620,703,705,788,789,790,873,874,875,1043,1044,1045,1129,1130,1213,1214,1215,1616,1622,1818,2007,2008,2045,1817,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,704,1128,2046],"ilvl":47,"quality":2}, -{"id":7530,"name":"Cabalist Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,609,610,611,695,696,779,780,781,864,865,866,949,950,951,1034,1035,1036,1204,1205,1206,1614,1813,2040,2041,525,526,694,1613,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1812],"ilvl":46,"quality":2}, -{"id":7531,"name":"Cabalist Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,216,218,267,287,409,443,609,610,611,779,780,781,864,865,866,949,950,1034,1035,1036,1204,1205,1560,1206,1561,2002,2003,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,441,442,951],"ilvl":46,"quality":2}, -{"id":7532,"name":"Cabalist Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,218,267,287,383,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1119,1120,1204,1205,1206,1613,1614,2002,2003,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,524,1121],"ilvl":47,"quality":2}, -{"id":7533,"name":"Cabalist Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1610,1808,1998,2036,-9,-325,-84,-81,-78,-69,-68,-19,-18,-15],"ilvl":44,"quality":2}, -{"id":7534,"name":"Cabalist Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1556,1998,2036,1808,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":45,"quality":2}, -{"id":7535,"name":"Cabalist Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,1813,2040,2041,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":46,"quality":2}, -{"id":7536,"name":"Champion's Wall Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,187,192,602,603,604,687,688,689,942,1112,1114,1197,1611,1666,1667,1113,1199,1668,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,943,944,1198],"ilvl":48,"quality":2}, -{"id":7537,"name":"Gothic Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,603,605,688,689,690,943,944,945,1113,1114,1115,1198,1199,1200,1668,1669,604,1607,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":7538,"name":"Champion's Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,361,362,387,388,413,414,450,451,452,533,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1566,2007,337,534,2008,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1565],"ilvl":48,"quality":2}, -{"id":7539,"name":"Champion's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[362,413,414,450,451,452,533,534,535,618,620,789,790,874,875,960,1043,1045,1213,1214,1215,1565,1566,1817,1818,2046,361,619,873,1044,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,788,958,959,2045],"ilvl":48,"quality":2}, -{"id":7540,"name":"Champion's Helmet","icon":"inv_helmet_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,451,452,533,534,535,619,620,705,788,790,873,874,875,1043,1044,1045,1213,1214,1215,1616,1622,1817,1818,2007,2008,2046,450,618,703,789,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,704,2045],"ilvl":47,"quality":2}, -{"id":7541,"name":"Champion's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,525,526,609,610,611,695,779,780,781,864,865,866,950,951,1034,1035,1036,1204,1205,1206,1614,1813,694,696,949,1613,1812,2040,2041,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":46,"quality":2}, -{"id":7542,"name":"Champion's Greaves","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,216,267,287,409,441,442,443,524,525,526,609,610,611,779,780,781,865,866,1034,1035,1036,1204,1205,1206,1560,1561,2003,864,218,2002,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":46,"quality":2}, -{"id":7543,"name":"Champion's Pauldrons","icon":"inv_shoulder_22","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,218,267,287,441,442,443,524,525,526,609,610,611,779,780,781,864,865,1034,1035,1036,1119,1120,1121,1613,1614,2003,383,866,2002,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":47,"quality":2}, -{"id":7544,"name":"Champion's Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1610,2036,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998],"ilvl":44,"quality":2}, -{"id":7545,"name":"Champion's Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1556,1808,1998,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,2036],"ilvl":45,"quality":2}, -{"id":7546,"name":"Champion's Girdle","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,2040,2041,1813,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":46,"quality":2}, -{"id":7549,"name":"Fairy's Embrace","icon":"inv_belt_31","type":2,"stats":[0,0,2,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":7550,"name":"Warrior's Honor","icon":"inv_jewelry_necklace_02","type":2,"stats":[3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":7551,"name":"Entwined Opaline Talisman","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":7552,"name":"Falcon's Hook","icon":"inv_jewelry_ring_10","type":11,"stats":[3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":7553,"name":"Band of the Unicorn","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":7554,"name":"Willow Branch","icon":"inv_staff_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[26,28,94,95,238,502,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-81,-69,-19,-15,-13,-11,-9],"ilvl":19,"quality":2}, -{"id":7555,"name":"Regal Star","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,253,255,515,516,770,771,855,856,1025,1026,1846,1884,2036,1808,1960,-81,-69,-19,-15,-13,-11,-9],"ilvl":45,"quality":2}, -{"id":7556,"name":"Twilight Orb","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,180,181,251,514,769,854,1024,1807,1808,1884,1959,2035,176,1883,1845,1846,2036,-81,-69,-19,-15,-13,-11,-9,1960],"ilvl":40,"quality":2}, -{"id":7557,"name":"Gossamer Rod","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,435,436,437,519,520,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-81,-69,-19,-15,-13,-11,-9,518],"ilvl":50,"quality":2}, -{"id":7558,"name":"Shimmering Stave","icon":"inv_wand_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,234,235,236,505,506,507,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-81,-69,-19,-15,-13,-11,-9],"ilvl":25,"quality":2}, -{"id":7559,"name":"Runic Cane","icon":"inv_staff_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":7606,"name":"Polar Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":1}, -{"id":7607,"name":"Sable Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.8,"ilvl":22,"quality":2,"factionRestriction":1}, -{"id":7608,"name":"Seer's Fine Stein","icon":"inv_drink_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":7609,"name":"Elder's Amber Stave","icon":"inv_staff_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,247,249,511,764,765,766,849,850,851,1019,1020,1021,1805,1844,1882,1958,2033,2034,237,1806,510,1843,1881,509,-81,-69,-19,-15,-13,-11,-9,1957],"ilvl":35,"quality":2}, -{"id":7610,"name":"Aurora Sphere","icon":"inv_misc_gem_pearl_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":7611,"name":"Mistscape Stave","icon":"inv_staff_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":7673,"name":"Talvash's Enhancing Necklace","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":2361,"name":"Restoring the Necklace"}}]}, -{"id":7682,"name":"Torturing Poker","icon":"inv_spear_01","type":13,"weaponType":2,"handType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.7,"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3983,"zoneId":796}}]}, -{"id":7683,"name":"Bloody Brass Knuckles","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":67,"weaponSpeed":2.6,"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3983,"zoneId":796}}]}, -{"id":7684,"name":"Bloodmage Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,9,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4543,"zoneId":796}}]}, -{"id":7685,"name":"Orb of the Forgotten Seer","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4543,"zoneId":796}}]}, -{"id":7686,"name":"Ironspine's Eye","icon":"inv_jewelry_ring_04","type":11,"stats":[0,9,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6489,"zoneId":796}}]}, -{"id":7687,"name":"Ironspine's Fist","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.4,"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6489,"zoneId":796}}]}, -{"id":7688,"name":"Ironspine's Ribcage","icon":"inv_chest_plate15","type":5,"armorType":3,"stats":[8,0,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6489,"zoneId":796}}]}, -{"id":7689,"name":"Morbid Dawn","icon":"inv_sword_12","type":13,"weaponType":9,"handType":4,"stats":[11,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":114,"weaponSpeed":3.7,"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6488,"zoneId":796}}]}, -{"id":7690,"name":"Ebon Vise","icon":"inv_gauntlets_32","type":7,"armorType":2,"stats":[0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6488,"zoneId":796}}]}, -{"id":7691,"name":"Embalmed Shroud","icon":"inv_helmet_28","type":1,"armorType":1,"stats":[0,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6488,"zoneId":796}}]}, -{"id":7708,"name":"Necrotic Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6490,"zoneId":796}}]}, -{"id":7709,"name":"Blighted Leggings","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,8,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6490,"zoneId":796}}]}, -{"id":7710,"name":"Loksey's Training Stick","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,14,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":108,"weaponSpeed":3.1,"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3974,"zoneId":796}}]}, -{"id":7711,"name":"Robe of Doan","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,5,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6487,"zoneId":796}}]}, -{"id":7712,"name":"Mantle of Doan","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,9,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6487,"zoneId":796}}]}, -{"id":7713,"name":"Illusionary Rod","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,14,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":118,"weaponSpeed":3.4,"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6487,"zoneId":796}}]}, -{"id":7714,"name":"Hypnotic Blade","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":1,"stats":[0,0,11,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":41,"weaponSpeed":1.4,"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6487,"zoneId":796}}]}, -{"id":7717,"name":"Ravager","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":137,"weaponSpeed":3.5,"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3975,"zoneId":796}}]}, -{"id":7718,"name":"Herod's Shoulder","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[11,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3975,"zoneId":796}}]}, -{"id":7719,"name":"Raging Berserker's Helm","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[16,0,5,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3975,"zoneId":796}}]}, -{"id":7720,"name":"Whitemane's Chapeau","icon":"inv_helmet_12","type":1,"armorType":1,"stats":[0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3977,"zoneId":796}}]}, -{"id":7721,"name":"Hand of Righteousness","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":2.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3977,"zoneId":796}}]}, -{"id":7722,"name":"Triune Amulet","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3977,"zoneId":796}}]}, -{"id":7723,"name":"Mograine's Might","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[15,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":159,"weaponSpeed":3.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3976,"zoneId":796}}]}, -{"id":7724,"name":"Gauntlets of Divinity","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,13,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3976,"zoneId":796}}]}, -{"id":7726,"name":"Aegis of the Scarlet Commander","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3976,"zoneId":796}}]}, -{"id":7727,"name":"Watchman Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7728,"name":"Beguiler Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,7,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7729,"name":"Chesterfall Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":2.3,"ilvl":33,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7730,"name":"Cobalt Crusher","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":111,"weaponSpeed":3.2,"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7731,"name":"Ghostshard Talisman","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6490,"zoneId":796}}]}, -{"id":7734,"name":"Six Demon Bag","icon":"inv_misc_bag_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"unique":true}, -{"id":7736,"name":"Fight Club","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":2.2,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7738,"name":"Evergreen Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":7739,"name":"Timberland Cape","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":7746,"name":"Explorers' League Commendation","icon":"inv_jewelry_talisman_01","type":2,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"factionRestriction":1}, -{"id":7747,"name":"Vile Protector","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":7749,"name":"Omega Orb","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":7750,"name":"Mantle of Woe","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"factionRestriction":2}, -{"id":7751,"name":"Vorrel's Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,8,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":7752,"name":"Dreamslayer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.1,"ilvl":33,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7753,"name":"Bloodspiller","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":87,"weaponSpeed":2.7,"ilvl":32,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7754,"name":"Harbinger Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7755,"name":"Flintrock Shoulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,10,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7756,"name":"Dog Training Gloves","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3974,"zoneId":796}}]}, -{"id":7757,"name":"Windweaver Staff","icon":"inv_wand_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":3.1,"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7758,"name":"Ruthless Shiv","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[19,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":113,"weaponSpeed":2.7,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7759,"name":"Archon Chestpiece","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[12,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7760,"name":"Warchief Kilt","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,9,5,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7761,"name":"Steelclaw Reaver","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":1.8,"ilvl":38,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7786,"name":"Headsplitter","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":2.3,"ilvl":30,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7787,"name":"Resplendent Guardian","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":7888,"name":"Jarkal's Enhancing Necklace","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,10,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"factionRestriction":2}, -{"id":7913,"name":"Barbaric Iron Shoulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9811}},{"crafted":{"profession":2,"spellId":9811}}]}, -{"id":7914,"name":"Barbaric Iron Breastplate","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9813}},{"crafted":{"profession":2,"spellId":9813}}]}, -{"id":7915,"name":"Barbaric Iron Helm","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[9,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9814}},{"crafted":{"profession":2,"spellId":9814}}]}, -{"id":7916,"name":"Barbaric Iron Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9818}},{"crafted":{"profession":2,"spellId":9818}}]}, -{"id":7917,"name":"Barbaric Iron Gloves","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9820}},{"crafted":{"profession":2,"spellId":9820}}]}, -{"id":7918,"name":"Heavy Mithril Shoulder","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,12,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9926}},{"crafted":{"profession":2,"spellId":9926}}]}, -{"id":7919,"name":"Heavy Mithril Gauntlet","icon":"inv_gauntlets_27","type":7,"armorType":4,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9928}},{"crafted":{"profession":2,"spellId":9928}}]}, -{"id":7920,"name":"Mithril Scale Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9931}},{"crafted":{"profession":2,"spellId":9931}}]}, -{"id":7921,"name":"Heavy Mithril Pants","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9933}},{"crafted":{"profession":2,"spellId":9933}}]}, -{"id":7922,"name":"Steel Plate Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":9935}},{"crafted":{"profession":2,"spellId":9935}}]}, -{"id":7924,"name":"Mithril Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9937}},{"crafted":{"profession":2,"spellId":9937}}]}, -{"id":7925,"name":"Mithril Scale Gloves","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,0,9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9942}}]}, -{"id":7926,"name":"Ornate Mithril Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[13,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9945}},{"crafted":{"profession":2,"spellId":9945}}]}, -{"id":7927,"name":"Ornate Mithril Gloves","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9950}},{"crafted":{"profession":2,"spellId":9950}}]}, -{"id":7928,"name":"Ornate Mithril Shoulder","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[5,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9952}},{"crafted":{"profession":2,"spellId":9952}}]}, -{"id":7929,"name":"Orcish War Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9957}},{"crafted":{"profession":2,"spellId":9957}}]}, -{"id":7930,"name":"Heavy Mithril Breastplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9959}},{"crafted":{"profession":2,"spellId":9959}}]}, -{"id":7931,"name":"Mithril Coif","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9961}},{"crafted":{"profession":2,"spellId":9961}}]}, -{"id":7932,"name":"Mithril Scale Shoulders","icon":"inv_shoulder_12","type":3,"armorType":3,"stats":[0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9966}},{"crafted":{"profession":2,"spellId":9966}}]}, -{"id":7933,"name":"Heavy Mithril Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,70,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9968}},{"crafted":{"profession":2,"spellId":9968}}]}, -{"id":7934,"name":"Heavy Mithril Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[10,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9970}},{"crafted":{"profession":2,"spellId":9970}}]}, -{"id":7935,"name":"Ornate Mithril Breastplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,0,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9972}},{"crafted":{"profession":2,"spellId":9972}}]}, -{"id":7936,"name":"Ornate Mithril Boots","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9979}},{"crafted":{"profession":2,"spellId":9979}}]}, -{"id":7937,"name":"Ornate Mithril Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[10,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9980}},{"crafted":{"profession":2,"spellId":9980}}]}, -{"id":7938,"name":"Truesilver Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9954}},{"crafted":{"profession":2,"spellId":9954}}]}, -{"id":7939,"name":"Truesilver Breastplate","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9974}},{"crafted":{"profession":2,"spellId":9974}}]}, -{"id":7941,"name":"Heavy Mithril Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":2.7,"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9993}},{"crafted":{"profession":2,"spellId":9993}}]}, -{"id":7942,"name":"Blue Glittering Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":1.8,"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9995}},{"crafted":{"profession":2,"spellId":9995}}]}, -{"id":7943,"name":"Wicked Mithril Blade","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.6,"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9997}},{"crafted":{"profession":2,"spellId":9997}}]}, -{"id":7944,"name":"Dazzling Mithril Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":63,"weaponSpeed":1.7,"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10005}},{"crafted":{"profession":2,"spellId":10005}}]}, -{"id":7945,"name":"Big Black Mace","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":2.4,"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10001}},{"crafted":{"profession":2,"spellId":10001}}]}, -{"id":7946,"name":"Runed Mithril Hammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":2,"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10009}},{"crafted":{"profession":2,"spellId":10009}}]}, -{"id":7947,"name":"Ebon Shiv","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":59,"weaponSpeed":1.5,"ilvl":51,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10013}},{"crafted":{"profession":2,"spellId":10013}}]}, -{"id":7954,"name":"The Shatterer","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.4,"ilvl":47,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10003}},{"crafted":{"profession":2,"spellId":10003}}]}, -{"id":7955,"name":"Copper Claymore","icon":"inv_sword_21","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":23,"weaponSpeed":3,"ilvl":11,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9983}},{"crafted":{"profession":2,"spellId":9983}}]}, -{"id":7956,"name":"Bronze Warhammer","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":4,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":63,"weaponSpeed":3.1,"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9985}},{"crafted":{"profession":2,"spellId":9985}}]}, -{"id":7957,"name":"Bronze Greatsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,7,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":63,"weaponSpeed":3,"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9986}},{"crafted":{"profession":2,"spellId":9986}}]}, -{"id":7958,"name":"Bronze Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":64,"weaponSpeed":2.9,"ilvl":27,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9987}},{"crafted":{"profession":2,"spellId":9987}}]}, -{"id":7959,"name":"Blight","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":193,"weaponSpeed":3.7,"ilvl":50,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10011}},{"crafted":{"profession":2,"spellId":10011}}]}, -{"id":7960,"name":"Truesilver Champion","icon":"inv_sword_19","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":162,"weaponSpeed":3,"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10015}},{"crafted":{"profession":2,"spellId":10015}}]}, -{"id":7961,"name":"Phantom Blade","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":10007}},{"crafted":{"profession":2,"spellId":10007}}]}, -{"id":7963,"name":"Steel Breastplate","icon":"inv_chest_plate05","type":5,"armorType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":9916}},{"crafted":{"profession":2,"spellId":9916}}]}, -{"id":7996,"name":"Worn Fishing Hat","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1,"sources":[{"quest":{"id":8226,"name":"Rare Fish - Pale Ghoulfish"}}]}, -{"id":7997,"name":"Red Defias Mask","icon":"inv_misc_bandana_03","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"classAllowlist":[6]}, -{"id":8006,"name":"The Ziggler","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":1.7,"ilvl":39,"quality":3}, -{"id":8071,"name":"Sizzle Stick","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.7,"ilvl":23,"quality":2}, -{"id":8080,"name":"Light Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58}, -{"id":8081,"name":"Light Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57}, -{"id":8082,"name":"Light Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52}, -{"id":8083,"name":"Light Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53}, -{"id":8084,"name":"Light Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":8085,"name":"Light Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":8086,"name":"Light Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54}, -{"id":8088,"name":"Platemail Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8089,"name":"Platemail Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8090,"name":"Platemail Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8091,"name":"Platemail Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8092,"name":"Platemail Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8093,"name":"Platemail Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8094,"name":"Platemail Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":8106,"name":"Hibernal Armor","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,4,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8107,"name":"Hibernal Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8108,"name":"Hibernal Bracers","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8109,"name":"Hibernal Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,4,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8110,"name":"Hibernal Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8111,"name":"Hibernal Mantle","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8112,"name":"Hibernal Pants","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,17,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8113,"name":"Hibernal Robe","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,4,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8114,"name":"Hibernal Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8115,"name":"Hibernal Cowl","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8116,"name":"Heraldic Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8117,"name":"Heraldic Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8118,"name":"Heraldic Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8119,"name":"Heraldic Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,4,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8120,"name":"Heraldic Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":8121,"name":"Heraldic Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8122,"name":"Heraldic Headpiece","icon":"inv_helmet_25","type":1,"armorType":2,"stats":[0,0,14,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8123,"name":"Heraldic Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,14,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8124,"name":"Heraldic Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8125,"name":"Myrmidon's Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8126,"name":"Myrmidon's Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,19,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8127,"name":"Myrmidon's Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,10,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8128,"name":"Myrmidon's Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8129,"name":"Myrmidon's Girdle","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8130,"name":"Myrmidon's Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8131,"name":"Myrmidon's Helm","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,7,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8132,"name":"Myrmidon's Leggings","icon":"inv_pants_12","type":9,"armorType":3,"stats":[0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8133,"name":"Myrmidon's Pauldrons","icon":"inv_shoulder_26","type":3,"armorType":3,"stats":[0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8134,"name":"Myrmidon's Defender","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,2,2,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8135,"name":"Chromite Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[3,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8137,"name":"Chromite Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":8138,"name":"Chromite Chestplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[11,0,11,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8139,"name":"Chromite Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":8140,"name":"Chromite Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":8141,"name":"Chromite Greaves","icon":"inv_boots_05","type":10,"armorType":4,"stats":[4,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":8142,"name":"Chromite Barbute","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":8143,"name":"Chromite Legplates","icon":"inv_pants_03","type":9,"armorType":4,"stats":[13,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8144,"name":"Chromite Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":8156,"name":"Jouster's Wristguards","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":8157,"name":"Jouster's Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[15,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":8158,"name":"Jouster's Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":4,"stats":[11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":8159,"name":"Jouster's Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[10,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":8160,"name":"Jouster's Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":8161,"name":"Jouster's Visor","icon":"inv_helmet_57","type":1,"armorType":4,"stats":[0,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":8162,"name":"Jouster's Legplates","icon":"inv_pants_03","type":9,"armorType":4,"stats":[11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":8163,"name":"Jouster's Pauldrons","icon":"inv_shoulder_12","type":3,"armorType":4,"stats":[9,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":8174,"name":"Comfortable Leather Hat","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,11,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10490}},{"crafted":{"profession":8,"spellId":10490}}]}, -{"id":8175,"name":"Nightscape Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10499}},{"crafted":{"profession":8,"spellId":10499}}]}, -{"id":8176,"name":"Nightscape Headband","icon":"inv_belt_24","type":1,"armorType":2,"stats":[0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10507}},{"crafted":{"profession":8,"spellId":10507}}]}, -{"id":8177,"name":"Practice Sword","icon":"inv_sword_45","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":15,"weaponSpeed":3.2,"ilvl":7,"quality":1}, -{"id":8178,"name":"Training Sword","icon":"inv_sword_45","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,24,93,96,97,256,501,502,585,586,587,670,671,672,840,841,842,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":3.5,"ilvl":10,"quality":2}, -{"id":8179,"name":"Cadet's Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2,"ilvl":6,"quality":1}, -{"id":8180,"name":"Hunting Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.6,"ilvl":11,"quality":2}, -{"id":8181,"name":"Hunting Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":2.7,"ilvl":9,"quality":1}, -{"id":8182,"name":"Pellet Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":2.6,"ilvl":7,"quality":1}, -{"id":8183,"name":"Precision Bow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.6,"ilvl":27,"quality":2}, -{"id":8184,"name":"Firestarter","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":1.5,"ilvl":29,"quality":2}, -{"id":8185,"name":"Turtle Scale Leggings","icon":"inv_pants_02","type":9,"armorType":3,"stats":[0,0,11,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10556}},{"crafted":{"profession":8,"spellId":10556}}]}, -{"id":8186,"name":"Dire Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.7,"ilvl":26,"quality":2}, -{"id":8187,"name":"Turtle Scale Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,12,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10509}},{"crafted":{"profession":8,"spellId":10509}}]}, -{"id":8188,"name":"Explosive Shotgun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":2.1,"ilvl":37,"quality":2}, -{"id":8189,"name":"Turtle Scale Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,17,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10511}},{"crafted":{"profession":8,"spellId":10511}}]}, -{"id":8190,"name":"Hanzo Sword","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":1.5,"ilvl":55,"quality":3}, -{"id":8191,"name":"Turtle Scale Helm","icon":"inv_helmet_40","type":1,"armorType":3,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10552}},{"crafted":{"profession":8,"spellId":10552}}]}, -{"id":8192,"name":"Nightscape Shoulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10516}},{"crafted":{"profession":8,"spellId":10516}}]}, -{"id":8193,"name":"Nightscape Pants","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,16,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10548}},{"crafted":{"profession":8,"spellId":10548}}]}, -{"id":8194,"name":"Goblin Nutcracker","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,594,595,679,680,1189,1190,1553,1805,1843,1995,2033,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.2,"ilvl":43,"quality":2}, -{"id":8195,"name":"Nightscape Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10550}}]}, -{"id":8196,"name":"Ebon Scimitar","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,679,680,681,1189,1190,1191,1553,1554,-84,-78,-68,-20,-17,-14],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.9,"ilvl":43,"quality":2}, -{"id":8197,"name":"Nightscape Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10558}},{"crafted":{"profession":8,"spellId":10558}}]}, -{"id":8198,"name":"Turtle Scale Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10518}},{"crafted":{"profession":8,"spellId":10518}}]}, -{"id":8199,"name":"Battlefield Destroyer","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,336,337,361,362,533,534,535,618,619,620,703,704,705,873,874,875,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":90,"weaponDamageMax":136,"weaponSpeed":3.1,"ilvl":47,"quality":2}, -{"id":8200,"name":"Big Voodoo Robe","icon":"inv_chest_cloth_25","type":5,"armorType":2,"stats":[0,0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10520}},{"crafted":{"profession":8,"spellId":10520}}]}, -{"id":8201,"name":"Big Voodoo Mask","icon":"inv_banner_01","type":1,"armorType":2,"stats":[0,0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10531}},{"crafted":{"profession":8,"spellId":10531}}]}, -{"id":8202,"name":"Big Voodoo Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,9,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10560}},{"crafted":{"profession":8,"spellId":10560}}]}, -{"id":8203,"name":"Tough Scorpid Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":3,"stats":[0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10525}},{"crafted":{"profession":8,"spellId":10525}}]}, -{"id":8204,"name":"Tough Scorpid Gloves","icon":"inv_gauntlets_24","type":7,"armorType":3,"stats":[0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10542}},{"crafted":{"profession":8,"spellId":10542}}]}, -{"id":8205,"name":"Tough Scorpid Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10533}},{"crafted":{"profession":8,"spellId":10533}}]}, -{"id":8206,"name":"Tough Scorpid Leggings","icon":"inv_pants_12","type":9,"armorType":3,"stats":[0,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10568}},{"crafted":{"profession":8,"spellId":10568}}]}, -{"id":8207,"name":"Tough Scorpid Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10564}},{"crafted":{"profession":8,"spellId":10564}}]}, -{"id":8208,"name":"Tough Scorpid Helm","icon":"inv_helmet_20","type":1,"armorType":3,"stats":[0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10570}},{"crafted":{"profession":8,"spellId":10570}}]}, -{"id":8209,"name":"Tough Scorpid Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10554}},{"crafted":{"profession":8,"spellId":10554}}]}, -{"id":8210,"name":"Wild Leather Shoulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[608,211,212,213,214,217,218,522,523,606,607,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1202,1203,1612,1613,2002,521,1201,2001,-325,-84,-81,-78,-69,-68,-19,-9,-18,-13,-12],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10529}},{"crafted":{"profession":8,"spellId":10529}}]}, -{"id":8211,"name":"Wild Leather Vest","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,387,412,413,615,616,617,785,786,787,871,872,1041,1042,1210,1212,1564,1565,2006,2007,386,870,1211,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1040],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10544}},{"crafted":{"profession":8,"spellId":10544}}]}, -{"id":8212,"name":"Wild Leather Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,455,621,622,623,791,792,793,876,877,878,961,963,1046,1047,1048,1216,1217,1218,1567,1568,1819,1820,2047,2048,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,453,454,962],"ilvl":50,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10572}},{"crafted":{"profession":8,"spellId":10572}}]}, -{"id":8213,"name":"Wild Leather Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[611,1038,267,287,333,358,409,410,444,445,612,613,781,782,783,866,867,868,951,952,953,1036,1037,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,443],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10566}},{"crafted":{"profession":8,"spellId":10566}}]}, -{"id":8214,"name":"Wild Leather Helmet","icon":"inv_helmet_10","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[615,787,335,336,386,531,532,616,617,700,702,785,786,870,871,872,1040,1041,1042,1127,1211,1212,1621,1622,1817,2006,2045,387,1816,2044,-81,-78,-9,1125,-325,-84,-69,-68,-19,-14,-13,-12,530,701,1126,1210,2007],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10546}},{"crafted":{"profession":8,"spellId":10546}}]}, -{"id":8215,"name":"Wild Leather Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1607,1810,2000,2038,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9],"ilvl":50,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10574}},{"crafted":{"profession":8,"spellId":10574}}]}, -{"id":8216,"name":"Big Voodoo Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,9,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10562}},{"crafted":{"profession":8,"spellId":10562}}]}, -{"id":8223,"name":"Blade of the Basilisk","icon":"inv_sword_43","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.9,"ilvl":37,"quality":3,"unique":true}, -{"id":8224,"name":"Silithid Ripper","icon":"inv_weapon_shortblade_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":2.3,"ilvl":36,"quality":2}, -{"id":8225,"name":"Tainted Pierce","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":1.9,"ilvl":36,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":8226,"name":"The Butcher","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.8,"ilvl":31,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":8245,"name":"Imperial Red Tunic","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,6,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8246,"name":"Imperial Red Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8247,"name":"Imperial Red Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8248,"name":"Imperial Red Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8249,"name":"Imperial Red Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8250,"name":"Imperial Red Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8251,"name":"Imperial Red Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8252,"name":"Imperial Red Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,6,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8253,"name":"Imperial Red Sash","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8254,"name":"Imperial Red Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":8255,"name":"Serpentskin Girdle","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8256,"name":"Serpentskin Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8257,"name":"Serpentskin Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,3,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8258,"name":"Serpentskin Armor","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,0,15,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8259,"name":"Serpentskin Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":8260,"name":"Serpentskin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8261,"name":"Serpentskin Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8262,"name":"Serpentskin Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8263,"name":"Serpentskin Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":8264,"name":"Ebonhold Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8265,"name":"Ebonhold Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,22,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8266,"name":"Ebonhold Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,7,4,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8267,"name":"Ebonhold Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8268,"name":"Ebonhold Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8269,"name":"Ebonhold Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":8270,"name":"Ebonhold Helmet","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":8271,"name":"Ebonhold Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,5,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8272,"name":"Ebonhold Shoulderpads","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8273,"name":"Valorous Wristguards","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8274,"name":"Valorous Chestguard","icon":"inv_chest_cloth_05","type":5,"armorType":4,"stats":[20,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8275,"name":"Ebonhold Buckler","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8276,"name":"Valorous Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[14,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8277,"name":"Valorous Girdle","icon":"inv_belt_19","type":8,"armorType":4,"stats":[13,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":8278,"name":"Valorous Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,4,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":8279,"name":"Valorous Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8280,"name":"Valorous Legguards","icon":"inv_pants_12","type":9,"armorType":4,"stats":[14,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":8281,"name":"Valorous Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":8282,"name":"Valorous Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":8283,"name":"Arcane Armor","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,7,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":8284,"name":"Arcane Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,3,4,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8285,"name":"Arcane Bands","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8286,"name":"Arcane Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,3,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":8287,"name":"Arcane Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8288,"name":"Arcane Pads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,4,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":8289,"name":"Arcane Leggings","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":8290,"name":"Arcane Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,7,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":8291,"name":"Arcane Sash","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,4,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8292,"name":"Arcane Cover","icon":"inv_helmet_11","type":1,"armorType":1,"stats":[0,0,10,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":8293,"name":"Traveler's Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,5,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8294,"name":"Traveler's Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,17,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8295,"name":"Traveler's Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8296,"name":"Traveler's Jerkin","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,6,21,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":8297,"name":"Traveler's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,4,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":8298,"name":"Traveler's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8299,"name":"Traveler's Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,13,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":8300,"name":"Traveler's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,17,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":8301,"name":"Traveler's Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":8302,"name":"Hero's Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,4,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":8303,"name":"Hero's Breastplate","icon":"inv_chest_plate14","type":5,"armorType":3,"stats":[0,0,7,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":8304,"name":"Hero's Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8305,"name":"Hero's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":8306,"name":"Hero's Belt","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":8307,"name":"Hero's Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,19,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":8308,"name":"Hero's Band","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,9,14,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":8309,"name":"Hero's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,18,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":8310,"name":"Hero's Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":8311,"name":"Alabaster Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[3,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":8312,"name":"Alabaster Breastplate","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[17,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8313,"name":"Hero's Buckler","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,12,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":8314,"name":"Alabaster Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":8315,"name":"Alabaster Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[15,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":8316,"name":"Alabaster Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[12,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":8317,"name":"Alabaster Plate Helmet","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[0,0,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":8318,"name":"Alabaster Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[15,0,3,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":8319,"name":"Alabaster Plate Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":8320,"name":"Alabaster Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[3,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":8345,"name":"Wolfshead Helm","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"classAllowlist":[1],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":10621}},{"crafted":{"profession":8,"spellId":10621}}]}, -{"id":8346,"name":"Gauntlets of the Sea","icon":"inv_gauntlets_30","type":7,"armorType":2,"stats":[0,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":10630}},{"crafted":{"profession":8,"spellId":10630}}]}, -{"id":8347,"name":"Dragonscale Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,7,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10619}},{"crafted":{"profession":8,"spellId":10619}}]}, -{"id":8348,"name":"Helm of Fire","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,21,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":10632}},{"crafted":{"profession":8,"spellId":10632}}]}, -{"id":8349,"name":"Feathered Breastplate","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,12,21,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":10647}},{"crafted":{"profession":8,"spellId":10647}}]}, -{"id":8350,"name":"The 1 Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":8367,"name":"Dragonscale Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,15,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":10650}},{"crafted":{"profession":8,"spellId":10650}}]}, -{"id":8624,"name":"Red Sparkler","icon":"inv_wand_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":8625,"name":"White Sparkler","icon":"inv_wand_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":8626,"name":"Blue Sparkler","icon":"inv_wand_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":8663,"name":"Mithril Insignia","icon":"inv_misc_armorkit_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"unique":true}, -{"id":8703,"name":"Signet of Expertise","icon":"inv_misc_armorkit_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"unique":true}, -{"id":8708,"name":"Hammer of Expertise","icon":"inv_hammer_24","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.1,"ilvl":50,"quality":4,"unique":true}, -{"id":8746,"name":"Interlaced Cowl","icon":"inv_helmet_28","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33}, -{"id":8747,"name":"Hardened Leather Helm","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35}, -{"id":8748,"name":"Double Mail Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30}, -{"id":8749,"name":"Crochet Hat","icon":"inv_helmet_15","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43}, -{"id":8750,"name":"Thick Leather Hat","icon":"inv_helmet_11","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42}, -{"id":8751,"name":"Overlinked Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44}, -{"id":8752,"name":"Laminated Scale Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54}, -{"id":8753,"name":"Smooth Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57}, -{"id":8754,"name":"Twill Cover","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56}, -{"id":8755,"name":"Light Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":9149,"name":"Philosopher's Stone","icon":"inv_misc_orb_01","type":12,"stats":[5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":1,"spellId":11459}},{"crafted":{"profession":1,"spellId":11459}}]}, -{"id":9240,"name":"Mallet of Zul'Farrak","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":2.5,"ilvl":50,"quality":3,"unique":true}, -{"id":9243,"name":"Shriveled Troll Heart","icon":"inv_misc_organ_01","type":2,"stats":[5,0,12,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9285,"name":"Field Plate Vambraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,599,684,854,939,1024,1109,1194,1555,1556,191,2035,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":41,"quality":2}, -{"id":9286,"name":"Field Plate Armor","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,335,336,616,617,702,871,872,955,957,1041,1042,1127,1210,1211,1212,1564,1565,615,700,956,1040,1125,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,701,870,1126],"ilvl":44,"quality":2}, -{"id":9287,"name":"Field Plate Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,606,607,690,691,861,945,1030,1031,1032,1115,1200,1201,1202,1558,1559,860,862,947,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,692,946,2038,2039],"ilvl":41,"quality":2}, -{"id":9288,"name":"Field Plate Girdle","icon":"inv_belt_03","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,607,690,692,861,862,945,946,1030,1031,1115,1116,1200,1201,1202,1558,1559,2038,2039,606,860,1117,1032,691,-81,-78,-69,-68,-20,-17,-14,-12,-10,947,-19],"ilvl":41,"quality":2}, -{"id":9289,"name":"Field Plate Boots","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,605,606,607,690,692,860,861,945,946,1030,1031,1115,1116,1117,1200,1201,1202,1607,1612,862,947,1032,691,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":41,"quality":2}, -{"id":9290,"name":"Field Plate Helmet","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,614,698,699,868,869,952,953,954,1037,1038,1039,1122,1124,1207,1208,1209,1615,1620,2043,1123,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,612,613,697,867,2042],"ilvl":42,"quality":2}, -{"id":9291,"name":"Field Plate Leggings","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,616,617,700,701,702,870,872,955,957,1040,1042,1126,1127,1210,1211,1212,1564,615,871,956,1125,1565,2044,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1041,2045],"ilvl":43,"quality":2}, -{"id":9292,"name":"Field Plate Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,188,605,607,690,860,945,946,1030,1031,1032,1115,1116,1117,1200,1201,1202,1607,1612,217,-325,-84,-81,-78,-69,-14,-12,-10,606,691,692,861,862,947],"ilvl":42,"quality":2}, -{"id":9333,"name":"Tarnished Silver Necklace","icon":"inv_belt_18","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1}, -{"id":9359,"name":"Southsea Lamp","icon":"inv_misc_flute_01","type":13,"weaponType":4,"handType":2,"stats":[0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":91,"weaponSpeed":2.3,"ilvl":45,"quality":3}, -{"id":9362,"name":"Brilliant Gold Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"unique":true}, -{"id":9366,"name":"Golden Scale Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[11,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":11643}},{"crafted":{"profession":2,"spellId":11643}}]}, -{"id":9372,"name":"Sul'thraze the Lasher","icon":"inv_sword_40","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":205,"weaponSpeed":3.6,"ilvl":49,"quality":4,"unique":true}, -{"id":9375,"name":"Expert Goldminer's Helmet","icon":"inv_helmet_18","type":1,"armorType":2,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3}, -{"id":9378,"name":"Shovelphlange's Mining Axe","icon":"inv_pick_02","type":13,"weaponType":1,"handType":2,"stats":[0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"unique":true}, -{"id":9379,"name":"Sang'thraze the Deflector","icon":"inv_sword_45","type":13,"weaponType":9,"handType":2,"stats":[5,0,5,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8127,"zoneId":1176}}]}, -{"id":9381,"name":"Earthen Rod","icon":"inv_staff_17","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":82,"weaponSpeed":1.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9382,"name":"Tromping Miner's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":9383,"name":"Obsidian Cleaver","icon":"inv_axe_14","type":13,"weaponType":1,"handType":4,"stats":[0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9384,"name":"Stonevault Shiv","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.8,"ilvl":40,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9385,"name":"Archaic Defender","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":117,"weaponSpeed":3.1,"ilvl":36,"quality":3}, -{"id":9386,"name":"Excavator's Brand","icon":"inv_torch_lit","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9387,"name":"Revelosh's Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,605,606,607,690,692,860,861,945,946,1030,1031,1115,1116,1117,1200,1201,1202,1607,1612,862,947,1032,691,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6910,"zoneId":1337}}]}, -{"id":9388,"name":"Revelosh's Armguards","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,251,514,599,769,854,1024,1555,1556,1997,1998,1807,1808,2035,2036,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6910,"zoneId":1337}}]}, -{"id":9389,"name":"Revelosh's Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,520,521,605,606,607,775,776,777,860,861,862,1030,1032,1115,1116,1117,1200,1201,1202,1607,2000,2001,522,1031,1612,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6910,"zoneId":1337}}]}, -{"id":9390,"name":"Revelosh's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,605,606,775,776,777,860,861,862,1030,1031,1032,1886,1887,2038,2039,439,607,438,-81,-78,-69,-19,-15,-11,-9],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6910,"zoneId":1337}}]}, -{"id":9391,"name":"The Shoveler","icon":"inv_misc_shovel_02","type":13,"weaponType":4,"handType":4,"stats":[15,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.6,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9392,"name":"Annealed Blade","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9393,"name":"Beacon of Hope","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9394,"name":"Horned Viking Helmet","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[17,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6907,"zoneId":1337}}]}, -{"id":9395,"name":"Gloves of Old","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3}, -{"id":9396,"name":"Legguards of the Vault","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9397,"name":"Energy Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9398,"name":"Worn Running Boots","icon":"inv_boots_02","type":10,"armorType":2,"stats":[0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6907,"zoneId":1337}}]}, -{"id":9400,"name":"Baelog's Shortbow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":3,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6906,"zoneId":1337}}]}, -{"id":9401,"name":"Nordic Longshank","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6906,"zoneId":1337}}]}, -{"id":9402,"name":"Earthborn Kilt","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,12,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":9403,"name":"Battered Viking Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6908,"zoneId":1337}}]}, -{"id":9404,"name":"Olaf's All Purpose Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6908,"zoneId":1337}}]}, -{"id":9405,"name":"Girdle of Golem Strength","icon":"inv_belt_27","type":8,"armorType":3,"stats":[12,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3}, -{"id":9406,"name":"Spirewind Fetter","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,10,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9407,"name":"Stoneweaver Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,10,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7228,"zoneId":1337}}]}, -{"id":9408,"name":"Ironshod Bludgeon","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7228,"zoneId":1337}}]}, -{"id":9409,"name":"Ironaya's Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1557,1999,2037,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1809],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7228,"zoneId":1337}}]}, -{"id":9410,"name":"Cragfists","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,2042,2041,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7206,"zoneId":1337}}]}, -{"id":9411,"name":"Rockshard Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":2,"stats":[0,11,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7206,"zoneId":1337}}]}, -{"id":9412,"name":"Galgann's Fireblaster","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":2.9,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7291,"zoneId":1337}}]}, -{"id":9413,"name":"The Rockpounder","icon":"inv_hammer_12","type":13,"weaponType":4,"handType":4,"stats":[15,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":159,"weaponSpeed":3.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":2748,"zoneId":1337}}]}, -{"id":9414,"name":"Oilskin Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4854,"zoneId":1337}}]}, -{"id":9415,"name":"Grimlok's Tribal Vestments","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4854,"zoneId":1337}}]}, -{"id":9416,"name":"Grimlok's Charge","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":116,"weaponSpeed":2.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4854,"zoneId":1337}}]}, -{"id":9418,"name":"Stoneslayer","icon":"inv_sword_47","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.9,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":2748,"zoneId":1337}}]}, -{"id":9419,"name":"Galgann's Firehammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":89,"weaponSpeed":2.5,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7291,"zoneId":1337}}]}, -{"id":9420,"name":"Adventurer's Pith Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9422,"name":"Shadowforge Bushmaster","icon":"inv_musket_02","type":14,"rangedWeaponType":3,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":2.9,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9423,"name":"The Jackhammer","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":159,"weaponSpeed":3.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9424,"name":"Ginn-Su Sword","icon":"inv_sword_42","type":13,"weaponType":9,"handType":2,"stats":[0,8,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9425,"name":"Pendulum of Doom","icon":"inv_weapon_halberd_08","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.9,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9426,"name":"Monolithic Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9427,"name":"Stonevault Bonebreaker","icon":"inv_misc_bone_01","type":13,"weaponType":4,"handType":2,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":2.7,"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9428,"name":"Unearthed Bands","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9429,"name":"Miner's Hat of the Deep","icon":"inv_helmet_15","type":1,"armorType":1,"stats":[0,0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9430,"name":"Spaulders of a Lost Age","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9431,"name":"Papal Fez","icon":"inv_helmet_28","type":1,"armorType":1,"stats":[0,0,10,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9432,"name":"Skullplate Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[6,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9433,"name":"Forgotten Wraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,17,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3}, -{"id":9434,"name":"Elemental Raiment","icon":"inv_chest_leather_03","type":5,"armorType":1,"stats":[0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3}, -{"id":9435,"name":"Reticulated Bone Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[13,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3}, -{"id":9444,"name":"Techbot CPU Shell","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6231,"zoneId":721}}]}, -{"id":9445,"name":"Grubbis Paws","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[8,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7361,"zoneId":721}}]}, -{"id":9446,"name":"Electrocutioner Leg","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":2.5,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6235,"zoneId":721}}]}, -{"id":9447,"name":"Electrocutioner Lagnut","icon":"inv_misc_gear_04","type":11,"stats":[0,0,4,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6235,"zoneId":721}}]}, -{"id":9448,"name":"Spidertank Oilrag","icon":"inv_misc_bandage_09","type":6,"armorType":1,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6235,"zoneId":721}}]}, -{"id":9449,"name":"Manual Crowd Pummeler","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":3.4,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6229,"zoneId":721}}]}, -{"id":9450,"name":"Gnomebot Operating Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,5,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6229,"zoneId":721}}]}, -{"id":9452,"name":"Hydrocane","icon":"inv_staff_15","type":13,"weaponType":8,"handType":4,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.1,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7079,"zoneId":721}}]}, -{"id":9453,"name":"Toxic Revenger","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.8,"ilvl":29,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7079,"zoneId":721}}]}, -{"id":9454,"name":"Acidic Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7079,"zoneId":721}}]}, -{"id":9455,"name":"Emissary Cuffs","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,513,766,768,851,853,1023,1554,1555,2034,167,174,179,180,184,185,247,252,511,512,596,597,598,767,852,1021,1022,1806,1807,1996,2035,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,250],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6228,"zoneId":721}}]}, -{"id":9456,"name":"Glass Shooter","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.9,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6228,"zoneId":721}}]}, -{"id":9457,"name":"Royal Diplomatic Scepter","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.3,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":6228,"zoneId":721}}]}, -{"id":9458,"name":"Thermaplugg's Central Core","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7800,"zoneId":721}}]}, -{"id":9459,"name":"Thermaplugg's Left Arm","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":103,"weaponSpeed":3.6,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7800,"zoneId":721}}]}, -{"id":9461,"name":"Charged Gear","icon":"inv_misc_gear_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,191,253,255,515,516,600,601,685,686,770,771,855,856,940,941,1025,1026,1110,1111,1195,1196,1458,1760,1761,2076,2114,-329,-327,-326,-324,-84,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,1319,1320,1365,1366,1411,1412,1457,1503,1504],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7800,"zoneId":721}}]}, -{"id":9465,"name":"Digmaster 5000","icon":"inv_pick_01","type":13,"weaponType":1,"handType":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1337,"otherName":"Trash"}}]}, -{"id":9467,"name":"Gahz'rilla Fang","icon":"inv_misc_monsterfang_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.8,"ilvl":49,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7273,"zoneId":1176}}]}, -{"id":9469,"name":"Gahz'rilla Scale Armor","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7273,"zoneId":1176}}]}, -{"id":9470,"name":"Bad Mojo Mask","icon":"inv_banner_01","type":1,"armorType":1,"stats":[0,0,9,21,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7275,"zoneId":1176}}]}, -{"id":9473,"name":"Jinxed Hoodoo Skin","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7275,"zoneId":1176}}]}, -{"id":9474,"name":"Jinxed Hoodoo Kilt","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,12,19,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7275,"zoneId":1176}}]}, -{"id":9475,"name":"Diabolic Skiver","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":3.4,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7275,"zoneId":1176}}]}, -{"id":9476,"name":"Big Bad Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[11,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7267,"zoneId":1176}}]}, -{"id":9477,"name":"The Chief's Enforcer","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":3.4,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7267,"zoneId":1176}}]}, -{"id":9478,"name":"Ripsaw","icon":"inv_axe_07","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":115,"weaponSpeed":2.7,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7267,"zoneId":1176}}]}, -{"id":9479,"name":"Embrace of the Lycan","icon":"ability_mount_whitedirewolf","type":1,"armorType":2,"stats":[0,21,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7267,"zoneId":1176}}]}, -{"id":9480,"name":"Eyegouger","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":3.4,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9481,"name":"The Minotaur","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[21,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":180,"weaponSpeed":3.5,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9482,"name":"Witch Doctor's Cane","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,9,21,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":118,"weaponSpeed":2.3,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9483,"name":"Flaming Incinerator","icon":"inv_torch_lit","type":14,"rangedWeaponType":6,"stats":[0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.8,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9484,"name":"Spellshock Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,15,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9485,"name":"Vibroblade","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":2.5,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9486,"name":"Supercharger Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":100,"weaponSpeed":3.5,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9487,"name":"Hi-Tech Supergun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.8,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9488,"name":"Oscillating Power Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.6,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9489,"name":"Gyromatic Icemaker","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":1.4,"ilvl":31,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9490,"name":"Gizmotron Megachopper","icon":"inv_sword_37","type":13,"weaponType":9,"handType":4,"stats":[0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":3.4,"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9491,"name":"Hotshot Pilot's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9492,"name":"Electromagnetic Gigaflux Reactivator","icon":"inv_gizmo_01","type":1,"armorType":1,"stats":[0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7800,"zoneId":721}}]}, -{"id":9508,"name":"Mechbuilder's Overalls","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,7,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9509,"name":"Petrolspill Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9510,"name":"Caverndeep Trudgers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[8,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":721,"otherName":"Trash"}}]}, -{"id":9511,"name":"Bloodletter Scalpel","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9512,"name":"Blackmetal Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,11,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1176,"otherName":"Trash"}}]}, -{"id":9513,"name":"Ley Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":31,"weaponSpeed":2.9,"ilvl":13,"quality":2,"classAllowlist":[3]}, -{"id":9514,"name":"Arcane Staff","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":2.9,"ilvl":10,"quality":2,"classAllowlist":[3]}, -{"id":9515,"name":"Nether-Lace Tunic","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":1946,"name":"Nether-lace Garment"}}]}, -{"id":9516,"name":"Astral Knot Blouse","icon":"inv_shirt_11","type":5,"armorType":1,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":1942,"name":"Astral Knot Garment"}}]}, -{"id":9517,"name":"Celestial Stave","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":3,"ilvl":40,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":1958,"name":"Celestial Power"}}]}, -{"id":9518,"name":"Mud's Crushers","icon":"inv_gauntlets_116v1","type":7,"armorType":2,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":9519,"name":"Durtfeet Stompers","icon":"inv_boots_cloth_33v4","type":10,"armorType":1,"stats":[0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":9520,"name":"Silent Hunter","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.8,"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":9521,"name":"Skullsplitter","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[15,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":105,"weaponSpeed":2.9,"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":9522,"name":"Energized Stone Circle","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":9527,"name":"Spellshifter Rod","icon":"inv_wand_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":2.7,"ilvl":49,"quality":3}, -{"id":9531,"name":"Gemshale Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[16,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":9533,"name":"Masons Fraternity Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,12,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":9534,"name":"Engineer's Guild Headpiece","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,9,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":9535,"name":"Fire-Welded Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":9536,"name":"Fairywing Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":9538,"name":"Talvash's Gold Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"unique":true,"sources":[{"quest":{"id":2948,"name":"Gnome Improvement"}}],"factionRestriction":1}, -{"id":9588,"name":"Nogg's Gold Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"unique":true,"sources":[{"quest":{"id":2950,"name":"Nogg's Ring Redo"}}],"factionRestriction":2}, -{"id":9598,"name":"Sleeping Robes","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":2561,"name":"Druid of the Claw"}}],"factionRestriction":1}, -{"id":9599,"name":"Barkmail Leggings","icon":"inv_pants_mail_36","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":483,"name":"The Relics of Wakening"}}],"factionRestriction":1}, -{"id":9600,"name":"Lace Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":1}, -{"id":9601,"name":"Cushioned Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"factionRestriction":1}, -{"id":9603,"name":"Gritroot Staff","icon":"inv_staff_22","type":13,"weaponType":8,"handType":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":22,"weaponSpeed":2.6,"ilvl":10,"quality":2}, -{"id":9604,"name":"Mechanic's Pipehammer","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":69,"weaponSpeed":2.8,"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":9605,"name":"Repairman's Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":1}, -{"id":9607,"name":"Bastion of Stormwind","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"classAllowlist":[4]}, -{"id":9608,"name":"Shoni's Disarming Tool","icon":"inv_misc_wrench_01","type":13,"weaponType":1,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.9,"ilvl":31,"quality":2,"factionRestriction":1}, -{"id":9609,"name":"Shilly Mitts","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"factionRestriction":1}, -{"id":9622,"name":"Reedknot Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":9623,"name":"Civinad Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":9624,"name":"Triprunner Dungarees","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":9625,"name":"Dual Reinforced Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,11,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":9626,"name":"Dwarven Charge","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[17,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":124,"weaponSpeed":2.9,"ilvl":40,"quality":3,"factionRestriction":1}, -{"id":9627,"name":"Explorers' League Lodestar","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"factionRestriction":1}, -{"id":9630,"name":"Pratt's Handcrafted Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":9631,"name":"Pratt's Handcrafted Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":9632,"name":"Jangdor's Handcrafted Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":9633,"name":"Jangdor's Handcrafted Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":9634,"name":"Skilled Handling Gloves","icon":"inv_gauntlets_22","type":7,"armorType":1,"stats":[0,0,16,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"factionRestriction":2}, -{"id":9635,"name":"Master Apothecary Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":9636,"name":"Swashbuckler Sash","icon":"inv_misc_bandana_03","type":8,"armorType":1,"stats":[0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":9637,"name":"Shinkicker Boots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":9638,"name":"Chelonian Cuffs","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":9639,"name":"The Hand of Antu'sul","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8127,"zoneId":1176}}]}, -{"id":9640,"name":"Vice Grips","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[11,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8127,"zoneId":1176}}]}, -{"id":9641,"name":"Lifeblood Amulet","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,11,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8127,"zoneId":1176}}]}, -{"id":9642,"name":"Band of the Great Tortoise","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":9643,"name":"Optomatic Deflector","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":648,"name":"Rescue OOX-17/TN!"}}]}, -{"id":9644,"name":"Thermotastic Egg Timer","icon":"inv_misc_bomb_03","type":13,"weaponType":5,"handType":3,"stats":[0,3,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":648,"name":"Rescue OOX-17/TN!"}}]}, -{"id":9645,"name":"Gnomish Inventor Boots","icon":"inv_boots_01","type":10,"armorType":1,"stats":[0,0,7,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":836,"name":"Rescue OOX-09/HL!"}}]}, -{"id":9646,"name":"Gnomish Water Sinking Device","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":836,"name":"Rescue OOX-09/HL!"}}]}, -{"id":9647,"name":"Failed Flying Experiment","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{}}]}, -{"id":9648,"name":"Chainlink Towel","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{}}]}, -{"id":9649,"name":"Royal Highmark Vestments","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,6,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":2938,"name":"Venom to the Undercity"}}],"factionRestriction":2}, -{"id":9650,"name":"Honorguard Chestpiece","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":2938,"name":"Venom to the Undercity"}}],"factionRestriction":2}, -{"id":9651,"name":"Gryphon Rider's Stormhammer","icon":"inv_hammer_01","type":13,"weaponType":4,"handType":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":2.7,"ilvl":53,"quality":3,"factionRestriction":1}, -{"id":9652,"name":"Gryphon Rider's Leggings","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"factionRestriction":1}, -{"id":9653,"name":"Speedy Racer Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":9654,"name":"Cairnstone Sliver","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":1.8,"ilvl":50,"quality":2}, -{"id":9655,"name":"Seedtime Hoop","icon":"inv_jewelry_ring_12","type":11,"stats":[4,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":9656,"name":"Granite Grips","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":9657,"name":"Vinehedge Cinch","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":9658,"name":"Boots of the Maharishi","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,14,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9660,"name":"Stargazer Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9661,"name":"Earthclasp Barrier","icon":"inv_shield_13","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9662,"name":"Rushridge Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9663,"name":"Dawnrider's Chestpiece","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,16,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":2871,"name":"Delivering the Relic"}}],"factionRestriction":1}, -{"id":9664,"name":"Sentinel's Guard","icon":"inv_helmet_19","type":1,"armorType":4,"stats":[0,9,12,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":2871,"name":"Delivering the Relic"}}],"factionRestriction":1}, -{"id":9665,"name":"Wingcrest Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":9666,"name":"Stronghorn Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":9678,"name":"Tok'kar's Murloc Basher","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":109,"weaponSpeed":2.8,"ilvl":43,"quality":2,"sources":[{"quest":{"id":1427,"name":"Threat From the Sea"}}],"factionRestriction":2}, -{"id":9679,"name":"Tok'kar's Murloc Chopper","icon":"inv_weapon_halbard_01","type":13,"weaponType":1,"handType":4,"stats":[15,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":125,"weaponSpeed":3.2,"ilvl":43,"quality":2,"sources":[{"quest":{"id":1427,"name":"Threat From the Sea"}}],"factionRestriction":2}, -{"id":9680,"name":"Tok'kar's Murloc Shanker","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":52,"weaponSpeed":1.6,"ilvl":43,"quality":2,"sources":[{"quest":{"id":1427,"name":"Threat From the Sea"}}],"factionRestriction":2}, -{"id":9682,"name":"Leather Chef's Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"factionRestriction":2}, -{"id":9683,"name":"Strength of the Treant","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.7,"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":9684,"name":"Force of the Hippogryph","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":106,"weaponSpeed":2.4,"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":9686,"name":"Spirit of the Faerie Dragon","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":115,"weaponSpeed":2.6,"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":9687,"name":"Grappler's Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":9698,"name":"Gloves of Insight","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":9699,"name":"Garrison Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":9703,"name":"Scorched Cape","icon":"inv_misc_cape_22","type":4,"stats":[0,0,2,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9704,"name":"Rustler Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"factionRestriction":2}, -{"id":9705,"name":"Tharg's Shoelace","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":9706,"name":"Tharg's Disk","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{}}]}, -{"id":9718,"name":"Reforged Blade of Heroes","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":2.2,"ilvl":38,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":11923}}]}, -{"id":9742,"name":"Simple Cord","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9743,"name":"Simple Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9744,"name":"Simple Bands","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9745,"name":"Simple Cape","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":9746,"name":"Simple Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":9747,"name":"Simple Britches","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,95,229,231,238,585,586,587,755,756,757,840,841,842,1010,1011,1012,1877,1878,2029,2030,-81,-78,-69,-19,-15,-11,-9],"ilvl":14,"quality":2}, -{"id":9748,"name":"Simple Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,22,26,28,94,95,96,755,756,757,840,841,842,1010,1011,1012,1801,1802,1839,1840,1953,1954,-84,-81,-69,-19,-15],"ilvl":15,"quality":2}, -{"id":9749,"name":"Simple Blouse","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,22,26,28,94,95,96,755,756,757,840,841,842,1010,1011,1012,1801,1802,1839,1840,1953,1954,-84,-81,-69,-19,-15],"ilvl":15,"quality":2}, -{"id":9750,"name":"Gypsy Sash","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9751,"name":"Gypsy Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9752,"name":"Gypsy Bands","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9753,"name":"Gypsy Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,14,15,48,584,669,924,1094,1179,1647,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":12,"quality":2}, -{"id":9754,"name":"Gypsy Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":9755,"name":"Gypsy Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":9756,"name":"Gypsy Trousers","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,28,93,95,229,231,238,256,501,502,585,586,587,755,756,757,840,841,842,925,926,927,1010,1011,1012,1180,1181,1182,1549,1550,1801,1802,2029,2030,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":14,"quality":2}, -{"id":9757,"name":"Gypsy Tunic","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,93,94,95,96,229,231,238,256,501,502,585,586,587,755,756,757,840,841,842,1010,1011,1012,1549,1550,1991,1992,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":15,"quality":2}, -{"id":9758,"name":"Cadet Belt","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9759,"name":"Cadet Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":9760,"name":"Cadet Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":9761,"name":"Cadet Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":9762,"name":"Cadet Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":9763,"name":"Cadet Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[24,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,2029,2030,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":14,"quality":2}, -{"id":9764,"name":"Cadet Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,14,15,17,19,23,48,62,584,669,924,1094,1179,1648,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,1649],"ilvl":13,"quality":2}, -{"id":9765,"name":"Cadet Vest","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,96,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":15,"quality":2}, -{"id":9766,"name":"Greenweave Sash","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,133,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1879,1880,2031,2032,-81,-78,-69,-19,-13,-9],"ilvl":22,"quality":2}, -{"id":9767,"name":"Greenweave Sandals","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[113,114,134,135,235,236,248,761,762,763,846,847,848,1016,1017,1018,1803,1804,1841,1842,1955,1956,-84,-81,-69,-19,-15,-11,-9],"ilvl":23,"quality":2}, -{"id":9768,"name":"Greenweave Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":21,"quality":2}, -{"id":9769,"name":"Greenweave Branch","icon":"inv_staff_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,234,235,236,505,506,507,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-81,-69,-19,-15,-13,-11,-9],"ilvl":27,"quality":2}, -{"id":9770,"name":"Greenweave Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":9771,"name":"Greenweave Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,153,237,248,249,593,594,595,763,764,765,848,849,850,1018,1019,1020,1880,1881,2032,2033,-81,-78,-69,-19,-15,-11,-9],"ilvl":25,"quality":2}, -{"id":9772,"name":"Greenweave Leggings","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,181,251,599,767,768,769,852,853,854,1022,1023,1024,1883,1884,2035,2036,-81,-78,-69,-19,-15,-11,-9,250,252,597,598],"ilvl":27,"quality":2}, -{"id":9773,"name":"Greenweave Robe","icon":"inv_chest_cloth_15","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":27,"quality":2}, -{"id":9774,"name":"Greenweave Vest","icon":"inv_chest_cloth_15","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":27,"quality":2}, -{"id":9775,"name":"Bandit Cinch","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,94,108,112,232,233,234,503,504,505,588,589,590,673,675,758,759,760,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1802,1803,2030,2031,-81,-9,674,-325,-78,-69,-68,-19,-14,-13,-12,-11],"ilvl":19,"quality":2}, -{"id":9776,"name":"Bandit Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,95,96,111,113,114,232,233,234,503,504,505,588,589,590,758,759,760,843,844,845,928,929,930,1013,1014,1015,1550,1551,1992,1993,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":20,"quality":2}, -{"id":9777,"name":"Bandit Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,93,94,95,96,238,502,587,757,842,1012,1549,1550,1801,1991,1992,2029,1802,2030,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":19,"quality":2}, -{"id":9778,"name":"Bandit Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-325,18,22,24,74,93,97,587,672,927,1097,1182,1651,1652,89,96,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":20,"quality":2}, -{"id":9779,"name":"Bandit Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[17,18,19,22,25,26,27,28,62,74,229,231,256,501,585,586,755,756,840,841,1010,1011,1800,1801,1990,1991,2028,2029,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":18,"quality":2}, -{"id":9780,"name":"Bandit Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,95,108,113,232,233,234,503,504,505,588,589,590,673,674,675,758,759,760,843,844,845,928,929,930,1013,1014,1015,1183,1184,1185,1802,1803,2031,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2030],"ilvl":20,"quality":2}, -{"id":9781,"name":"Bandit Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,167,179,237,247,249,509,510,511,594,595,596,764,765,766,849,850,851,934,935,936,1019,1020,1021,1189,1190,1191,1553,1554,1806,2033,2034,1805,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":22,"quality":2}, -{"id":9782,"name":"Bandit Jerkin","icon":"inv_shirt_11","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,152,153,154,167,174,179,184,237,247,249,509,510,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1553,1554,1995,1996,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":23,"quality":2}, -{"id":9783,"name":"Raider's Chestpiece","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,135,136,154,155,591,592,593,677,678,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,-84,-81,-78,-69,-68,-20,-17,-14,-12,676,846],"ilvl":20,"quality":2}, -{"id":9784,"name":"Raider's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,89,96,108,114,588,590,673,674,675,843,844,845,928,929,930,1014,1015,1098,1099,1100,1183,1184,1185,589,1013,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":9785,"name":"Raider's Bracers","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,23,24,585,586,670,671,840,841,925,926,1010,1011,1095,1096,1180,1181,1548,1549,2028,2029,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":17,"quality":2}, -{"id":9786,"name":"Raider's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,23,24,62,74,585,586,670,671,840,841,925,926,1010,1011,1095,1096,1180,1181,2028,2029,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":16,"quality":2}, -{"id":9787,"name":"Raider's Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,2030,2031,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":9788,"name":"Raider's Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[24,97,587,588,589,672,673,674,842,843,844,927,928,929,1012,1013,1014,1097,1098,1099,1182,1183,1184,1549,1550,2029,2030,-68,-81,-78,-69,-20,-19,-17,-14,-12,-10],"ilvl":18,"quality":2}, -{"id":9789,"name":"Raider's Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,2033,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2032],"ilvl":19,"quality":2}, -{"id":9790,"name":"Raider's Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-325,18,22,24,74,93,97,587,672,927,1097,1182,1651,1652,89,96,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":9791,"name":"Ivycloth Tunic","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,181,182,186,187,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-15,-9],"ilvl":29,"quality":2}, -{"id":9792,"name":"Ivycloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,135,153,154,237,248,249,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-11,-9],"ilvl":25,"quality":2}, -{"id":9793,"name":"Ivycloth Bracelets","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,114,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-19,-84,-81,-69,-15,-9],"ilvl":25,"quality":2}, -{"id":9794,"name":"Ivycloth Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,114,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-84,-81,-69,-19,-15,-9],"ilvl":25,"quality":2}, -{"id":9795,"name":"Ivycloth Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,153,237,248,249,593,594,595,763,764,765,848,849,850,1018,1019,1020,1880,1881,2032,2033,-81,-78,-69,-19,-15,-11,-9],"ilvl":26,"quality":2}, -{"id":9796,"name":"Ivycloth Mantle","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,135,152,154,508,509,510,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-13,-9],"ilvl":27,"quality":2}, -{"id":9797,"name":"Ivycloth Pants","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,254,600,602,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,253,255,601,-81,-78,-69,-19,-15,-11,-9],"ilvl":28,"quality":2}, -{"id":9798,"name":"Ivycloth Robe","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,181,182,186,187,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-15,-9],"ilvl":29,"quality":2}, -{"id":9799,"name":"Ivycloth Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,152,508,509,510,594,763,764,765,848,849,850,1018,1019,1020,1880,1881,2032,2033,593,595,-81,-78,-69,-19,-13,-9],"ilvl":26,"quality":2}, -{"id":9800,"name":"Ivy Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,235,236,248,506,507,508,761,762,763,847,848,1016,1017,1018,1804,1842,1880,2032,846,-81,-69,-19,-15,-13,-11,-9,1956],"ilvl":29,"quality":2}, -{"id":9801,"name":"Superior Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,147,152,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,1804,1805,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":25,"quality":2}, -{"id":9802,"name":"Superior Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,151,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,933,934,935,1018,1019,1020,1552,1553,1994,1995,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":26,"quality":2}, -{"id":9803,"name":"Superior Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,112,113,114,234,235,236,505,506,590,591,592,760,761,762,845,846,847,1015,1016,1017,1551,1803,1993,2031,507,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":26,"quality":2}, -{"id":9804,"name":"Superior Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,111,114,115,590,591,592,675,676,677,930,932,1100,1101,1102,1185,1186,1187,1655,1656,931,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":26,"quality":2}, -{"id":9805,"name":"Superior Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,94,95,96,108,111,112,113,114,232,233,234,503,504,505,588,589,590,758,759,760,843,844,845,1013,1014,1015,1802,1992,1993,2030,2031,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1803],"ilvl":24,"quality":2}, -{"id":9806,"name":"Superior Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,147,153,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,933,934,1018,1019,1020,1188,1189,1190,1804,1805,2033,2032,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,128,935],"ilvl":27,"quality":2}, -{"id":9807,"name":"Superior Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,128,132,133,135,147,151,152,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1019,1020,1103,1104,1105,1994,1995,-325,-84,-81,-78,-19,-18,-13,-12,-11,-9],"ilvl":27,"quality":2}, -{"id":9808,"name":"Superior Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,253,254,255,515,517,600,601,602,770,771,772,855,856,857,941,942,1025,1026,1027,1195,1196,1197,1556,1557,1808,1809,2036,2037,516,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,940],"ilvl":28,"quality":2}, -{"id":9809,"name":"Superior Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,181,182,186,187,254,255,515,516,517,600,601,602,770,771,772,855,856,857,1025,1026,1027,1556,1557,1998,1999,253,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":28,"quality":2}, -{"id":9810,"name":"Fortified Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,135,147,154,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,-325,-84,-81,-78,-69,-68,-14,-12,-10,593],"ilvl":25,"quality":2}, -{"id":9811,"name":"Fortified Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[96,97,114,115,588,589,590,673,674,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,675,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2030,2031],"ilvl":24,"quality":2}, -{"id":9812,"name":"Fortified Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,96,97,108,114,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,2030,2031,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":22,"quality":2}, -{"id":9813,"name":"Fortified Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1105,1188,1189,1190,1552,1553,2033,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1104,2032],"ilvl":25,"quality":2}, -{"id":9814,"name":"Fortified Belt","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[115,136,591,592,593,676,677,678,846,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1551,1552,2032,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2031],"ilvl":24,"quality":2}, -{"id":9815,"name":"Fortified Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,191,599,682,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,2035,2036,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,597,598,683,938],"ilvl":25,"quality":2}, -{"id":9816,"name":"Fortified Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,111,114,115,590,591,592,675,676,677,930,932,1100,1101,1102,1185,1186,1187,1655,1656,931,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":25,"quality":2}, -{"id":9817,"name":"Fortified Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,135,147,154,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":26,"quality":2}, -{"id":9818,"name":"Fortified Chain","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,597,599,682,684,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,598,683,852,938],"ilvl":25,"quality":2}, -{"id":9819,"name":"Durable Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":34,"quality":2}, -{"id":9820,"name":"Durable Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,185,250,251,767,768,769,854,1022,1023,1024,1807,1845,1959,252,852,853,-84,-81,-69,-19,-15,-11,-9],"ilvl":31,"quality":2}, -{"id":9821,"name":"Durable Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":30,"quality":2}, -{"id":9822,"name":"Durable Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":29,"quality":2}, -{"id":9823,"name":"Durable Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,252,-81,-78,-69,-19,-15,-11,-9],"ilvl":31,"quality":2}, -{"id":9824,"name":"Durable Shoulders","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,185,512,514,767,768,769,852,853,854,1022,1023,1024,1807,1845,1959,513,-84,-81,-69,-19,-13,-9],"ilvl":32,"quality":2}, -{"id":9825,"name":"Durable Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,435,437,604,605,773,774,775,858,859,860,1028,1029,1030,1886,1887,2038,2039,436,-81,-78,-69,-19,-15,-11,-9,603],"ilvl":33,"quality":2}, -{"id":9826,"name":"Durable Robe","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":34,"quality":2}, -{"id":9827,"name":"Scaled Leather Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,247,250,511,512,513,596,597,598,681,683,766,767,768,851,852,853,1021,1022,1023,1106,1107,1191,1192,1608,1806,2034,1193,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,252,682,1108],"ilvl":30,"quality":2}, -{"id":9828,"name":"Scaled Leather Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,180,185,250,251,252,512,513,514,597,598,599,768,769,852,853,854,938,939,1022,1023,1024,1555,767,937,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":31,"quality":2}, -{"id":9829,"name":"Scaled Leather Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1552,1804,1994,2032,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":29,"quality":2}, -{"id":9830,"name":"Scaled Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,152,153,237,248,249,508,510,763,764,765,848,850,1018,1020,1805,1880,1881,1956,2032,849,1019,1843,1957,2033,133,509,-81,-69,-19,-15,-13,-11,-9,1804,1842],"ilvl":32,"quality":2}, -{"id":9831,"name":"Scaled Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,133,134,135,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1804,1994,2032,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":29,"quality":2}, -{"id":9832,"name":"Scaled Leather Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,512,514,597,598,599,682,684,767,768,769,852,853,854,938,939,1022,1023,1024,1192,1194,1609,1807,2035,252,513,683,1193,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,937],"ilvl":31,"quality":2}, -{"id":9833,"name":"Scaled Leather Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,211,215,435,436,437,518,520,603,604,605,773,774,775,858,859,860,943,944,945,1028,1029,1030,1198,1199,1200,1558,1559,1810,2038,2039,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,519,1811],"ilvl":33,"quality":2}, -{"id":9834,"name":"Scaled Leather Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,185,250,251,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1609,252,1997,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,512,513],"ilvl":32,"quality":2}, -{"id":9835,"name":"Scaled Leather Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,435,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1559,2000,436,2001,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,437],"ilvl":33,"quality":2}, -{"id":9836,"name":"Banded Armor","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,217,219,603,604,605,690,858,860,943,944,945,1030,1113,1114,1115,1198,1199,1200,1558,1029,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,688,689,859,1028,1559],"ilvl":33,"quality":2}, -{"id":9837,"name":"Banded Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,591,592,593,676,677,678,846,847,848,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,2032,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,931],"ilvl":30,"quality":2}, -{"id":9838,"name":"Banded Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,128,135,136,591,592,593,676,677,678,846,847,931,932,933,1017,1018,1101,1102,1103,1186,1187,1188,2032,848,1016,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12],"ilvl":29,"quality":2}, -{"id":9839,"name":"Banded Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,599,682,683,684,853,854,939,1022,1023,1024,1107,1109,1192,1193,1194,1555,2035,598,938,1108,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,852,937],"ilvl":31,"quality":2}, -{"id":9840,"name":"Banded Girdle","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,598,599,682,683,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,2035,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,938],"ilvl":31,"quality":2}, -{"id":9841,"name":"Banded Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,603,604,605,690,858,860,943,945,1028,1029,1030,1113,1115,1198,1199,1200,1558,1559,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,688,689,859,944,1114,2038],"ilvl":32,"quality":2}, -{"id":9842,"name":"Banded Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,597,598,599,683,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,682,1023,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":32,"quality":2}, -{"id":9843,"name":"Banded Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,147,151,154,155,594,595,679,680,933,934,935,1103,1104,1105,1188,1189,1190,132,135,136,593,678,1659,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,1658],"ilvl":33,"quality":2}, -{"id":9844,"name":"Conjurer's Vest","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,409,410,779,780,781,864,865,866,1034,1035,1036,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-15,-9],"ilvl":38,"quality":2}, -{"id":9845,"name":"Conjurer's Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,186,187,253,254,255,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,-84,-81,-69,-19,-15,-11,-9,1961],"ilvl":35,"quality":2}, -{"id":9846,"name":"Conjurer's Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":35,"quality":2}, -{"id":9847,"name":"Conjurer's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-9],"ilvl":33,"quality":2}, -{"id":9848,"name":"Conjurer's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,253,254,255,600,601,602,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,-81,-78,-69,-19,-15,-11,-9],"ilvl":36,"quality":2}, -{"id":9849,"name":"Conjurer's Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,522,523,776,777,778,861,862,863,1031,1033,1811,1812,1849,1850,1888,1963,1964,2039,2040,521,1032,1887,-84,-81,-69,-19,-13,-9],"ilvl":36,"quality":2}, -{"id":9850,"name":"Conjurer's Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-13,176,177,186,187,515,516,517,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-9],"ilvl":36,"quality":2}, -{"id":9851,"name":"Conjurer's Breeches","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,441,442,443,609,611,779,780,781,864,865,866,1034,1035,1036,1889,1890,2041,2042,610,-81,-78,-69,-19,-15,-11,-9],"ilvl":37,"quality":2}, -{"id":9852,"name":"Conjurer's Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,409,410,779,780,781,864,865,866,1034,1035,1036,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-15,-9],"ilvl":38,"quality":2}, -{"id":9853,"name":"Conjurer's Cinch","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,515,516,517,600,601,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,602,-81,-78,-69,-19,-13,-9],"ilvl":34,"quality":2}, -{"id":9854,"name":"Archer's Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,409,410,441,442,443,524,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1561,1562,2003,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,2004],"ilvl":38,"quality":2}, -{"id":9855,"name":"Archer's Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1610,1611,1808,1809,2036,2037,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":35,"quality":2}, -{"id":9856,"name":"Archer's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,186,187,253,254,255,515,516,600,601,602,770,771,772,855,856,857,940,941,942,1025,1026,1027,1556,1557,1998,517,1999,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":36,"quality":2}, -{"id":9857,"name":"Archer's Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,152,153,154,167,174,179,184,237,247,249,509,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1553,1554,1805,1995,1996,2033,510,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1806,2034],"ilvl":34,"quality":2}, -{"id":9858,"name":"Archer's Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,154,155,167,184,189,594,595,596,679,680,681,935,1104,1106,1189,1190,1191,1608,1660,936,1105,1661,934,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":9859,"name":"Archer's Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,439,440,521,522,523,606,607,608,693,776,777,778,861,862,863,1031,1032,1033,1201,1203,1612,1613,1811,2002,2039,2040,692,1202,1812,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,438,691,2001],"ilvl":36,"quality":2}, -{"id":9860,"name":"Archer's Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,152,153,154,167,174,179,184,247,249,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1608,1805,1806,1996,2033,237,509,510,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1995,2034],"ilvl":34,"quality":2}, -{"id":9861,"name":"Archer's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,940,942,1025,1026,1027,1195,1196,1197,1610,1611,1808,941,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1809,2036,2037],"ilvl":35,"quality":2}, -{"id":9862,"name":"Archer's Trousers","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,358,409,441,442,443,524,525,526,609,610,611,779,780,781,864,865,866,950,951,1034,1035,1036,1205,1206,1561,1562,1813,1814,2041,2042,410,949,1204,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":37,"quality":2}, -{"id":9863,"name":"Archer's Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,177,178,187,188,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1112,1113,1114,1607,1611,1999,2000,-18,-325,-84,-81,-78,-69,-19,-13,-12,-11,-9],"ilvl":37,"quality":2}, -{"id":9864,"name":"Renegade Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,600,601,602,685,686,687,855,856,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1610,1611,-81,857,940,-325,-84,-78,-69,-68,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":9865,"name":"Renegade Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,680,681,849,851,935,936,1019,1020,1021,1104,1106,1189,1190,1191,1553,1554,2033,679,850,2034,934,1105,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":34,"quality":2}, -{"id":9866,"name":"Renegade Chestguard","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,307,308,333,609,610,611,694,695,696,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,1562,950,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":9867,"name":"Renegade Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,135,136,147,154,155,594,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,593,595,-325,-84,-81,-69,-68,-19,-17,-14,-12,-10],"ilvl":33,"quality":2}, -{"id":9868,"name":"Renegade Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,687,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":35,"quality":2}, -{"id":9869,"name":"Renegade Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,687,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,2037,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":35,"quality":2}, -{"id":9870,"name":"Renegade Circlet","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1612,1613,2040,861,-325,-84,-81,-78,-69,-68,-14,-12,-10,606,862,2039,-19],"ilvl":36,"quality":2}, -{"id":9871,"name":"Renegade Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,609,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1121,1204,1205,1206,1561,1562,1120,2041,2042,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":9872,"name":"Renegade Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,188,602,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1607,1611,603,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":9873,"name":"Renegade Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,185,189,190,596,597,598,681,682,683,936,937,938,1106,1107,1108,1191,1192,1193,1609,1662,168,1608,1661,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":9874,"name":"Sorcerer Drape","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,412,413,785,786,787,870,871,872,1040,1041,1042,1816,1854,1855,1968,1969,1817,-84,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":9875,"name":"Sorcerer Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,517,518,519,602,603,772,773,774,857,858,859,1027,1028,1029,1885,1886,2037,2038,604,-81,-78,-69,-19,-13,-9],"ilvl":39,"quality":2}, -{"id":9876,"name":"Sorcerer Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,188,215,217,437,438,439,775,776,777,860,861,862,1030,1031,1032,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-11,-9],"ilvl":40,"quality":2}, -{"id":9877,"name":"Sorcerer Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,184,185,766,767,768,851,852,853,1021,1022,1023,1357,1803,1841,1882,1883,2034,2035,-327,-84,-81,-69,-19,-15,-9],"ilvl":38,"quality":2}, -{"id":9878,"name":"Sorcerer Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,782,783,784,867,869,1037,1038,1039,1815,1852,1853,1890,1891,1966,1967,2042,2043,868,1814,-84,-81,-69,-19,-13,-9],"ilvl":41,"quality":2}, -{"id":9879,"name":"Sorcerer Bracelets","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,184,185,766,767,768,851,852,853,1021,1022,1023,1357,1803,1841,1882,1883,2034,2035,-327,-84,-81,-69,-19,-15,-9],"ilvl":39,"quality":2}, -{"id":9880,"name":"Sorcerer Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,605,606,775,776,777,860,861,862,1030,1031,1032,1886,1887,2038,2039,439,607,438,-81,-78,-69,-19,-15,-11,-9],"ilvl":40,"quality":2}, -{"id":9881,"name":"Sorcerer Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,522,775,776,777,860,861,862,1030,1031,1032,1810,1848,1962,1963,521,1811,-84,-81,-69,-19,-13,-9,1849],"ilvl":41,"quality":2}, -{"id":9882,"name":"Sorcerer Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,253,255,515,516,770,771,855,856,1025,1026,1846,1884,2036,1808,1960,-81,-69,-19,-15,-13,-11,-9],"ilvl":43,"quality":2}, -{"id":9883,"name":"Sorcerer Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[410,411,446,613,614,782,783,784,867,868,869,1037,1038,1039,1890,1891,2042,2043,-81,-78,-69,-19,-15,-11,-9,444,445,612],"ilvl":42,"quality":2}, -{"id":9884,"name":"Sorcerer Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,412,413,785,786,787,870,871,872,1040,1041,1042,1816,1854,1855,1968,1969,1817,-84,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":9885,"name":"Huntsman's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,211,215,217,439,605,606,607,775,776,777,860,861,862,946,947,1030,1031,1032,1200,1201,1558,2000,2001,437,438,945,1202,1559,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":40,"quality":2}, -{"id":9886,"name":"Huntsman's Bands","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,513,766,768,851,853,1023,1554,1555,2034,167,174,179,180,184,185,247,252,511,512,596,597,598,767,852,1021,1022,1806,1807,1996,2035,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,250],"ilvl":39,"quality":2}, -{"id":9887,"name":"Huntsman's Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,387,412,413,615,616,617,785,786,787,871,872,1041,1042,1210,1212,1564,1565,2006,2007,386,870,1211,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1040],"ilvl":43,"quality":2}, -{"id":9889,"name":"Huntsman's Cap","icon":"inv_belt_25","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,612,613,614,698,699,782,783,784,868,869,1037,1038,1039,1123,1124,1209,1615,1620,2004,2005,2043,697,867,1122,1207,1814,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,1208,1815,2042],"ilvl":40,"quality":2}, -{"id":9890,"name":"Huntsman's Cape","icon":"inv_misc_cape_09","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,168,174,175,179,180,184,185,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1608,1609,1996,1997,2035,1806,2034,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1807],"ilvl":38,"quality":2}, -{"id":9891,"name":"Huntsman's Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,1027,1028,1029,1112,1114,1197,1198,1199,1607,1611,1809,2037,1113,2038,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1810],"ilvl":39,"quality":2}, -{"id":9892,"name":"Huntsman's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,438,520,521,522,605,606,607,690,692,775,776,860,861,862,945,1030,1031,1032,1200,1201,1607,1612,2039,-81,439,691,777,1811,2038,-325,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,946,947,1202,1810],"ilvl":40,"quality":2}, -{"id":9893,"name":"Huntsman's Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[358,359,411,446,612,613,614,782,783,784,867,868,869,954,1037,1039,1207,1209,1562,1563,1814,1815,2043,1038,1208,445,952,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,410,444,953,2042],"ilvl":42,"quality":2}, -{"id":9894,"name":"Huntsman's Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,520,521,605,606,607,775,776,777,860,861,862,1030,1032,1115,1116,1117,1200,1201,1202,1607,2000,2001,522,1031,1612,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":41,"quality":2}, -{"id":9895,"name":"Jazeraint Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,215,217,437,438,439,520,521,522,605,606,607,775,777,860,861,862,1030,1032,1200,1201,1202,1558,2000,211,776,1031,1559,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":40,"quality":2}, -{"id":9896,"name":"Jazeraint Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1554,1555,2034,2035,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":9897,"name":"Jazeraint Chestguard","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,445,446,527,528,529,612,613,614,782,784,867,868,869,1037,1038,1039,1562,1563,2004,2005,444,783,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":42,"quality":2}, -{"id":9898,"name":"Jazeraint Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1608,1609,2034,2035,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":9899,"name":"Jazeraint Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,185,186,190,191,599,684,939,1109,1194,1609,1610,1664,1663,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":42,"quality":2}, -{"id":9900,"name":"Jazeraint Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,183,215,437,438,439,520,521,522,605,606,607,690,691,692,775,776,860,861,862,945,946,1030,1031,1032,1200,1202,1607,2039,777,1201,1612,1811,1810,-325,-81,-78,-68,-19,-15,-14,-13,-11,-10,-9,947,2038],"ilvl":40,"quality":2}, -{"id":9901,"name":"Jazeraint Belt","icon":"inv_belt_27","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,437,438,439,520,521,522,605,606,690,691,692,775,777,860,862,1030,1031,1032,1115,1116,1200,1201,1607,1612,1810,1811,2038,2039,607,776,1117,1202,861,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":40,"quality":2}, -{"id":9902,"name":"Jazeraint Helm","icon":"inv_helmet_37","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,444,445,446,527,528,529,612,613,614,697,698,699,783,784,867,869,1037,1038,1039,1207,1209,1615,1620,1815,2042,782,868,1208,2043,2005,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1814,2004],"ilvl":41,"quality":2}, -{"id":9903,"name":"Jazeraint Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,358,359,410,411,444,446,527,529,612,613,614,782,784,869,953,954,1037,1038,1039,1209,1562,1563,1814,1815,2042,2043,445,528,868,1208,-81,-78,-68,-20,-19,-18,-15,-13,-11,-10,-9,783,867,952,1207],"ilvl":42,"quality":2}, -{"id":9904,"name":"Jazeraint Pauldrons","icon":"inv_shoulder_26","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,437,438,439,520,521,605,606,607,775,777,860,862,1030,1031,1032,1115,1117,1607,2000,2001,776,861,1612,522,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1116],"ilvl":41,"quality":2}, -{"id":9905,"name":"Royal Blouse","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":48,"quality":2}, -{"id":9906,"name":"Royal Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1887,1888,2039,2040,-81,-78,-69,-19,-13,-9],"ilvl":44,"quality":2}, -{"id":9907,"name":"Royal Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,217,218,438,439,440,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-84,-81,-69,-19,-15,-11,-9],"ilvl":44,"quality":2}, -{"id":9908,"name":"Royal Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":9909,"name":"Royal Bands","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":9910,"name":"Royal Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,440,606,608,776,777,778,861,862,863,1031,1032,1033,1887,1888,2039,2040,438,607,-81,-78,-69,-19,-15,-11,-9,439],"ilvl":44,"quality":2}, -{"id":9911,"name":"Royal Trousers","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,452,618,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,619,-81,-78,-69,-19,-15,-11,-9,451],"ilvl":46,"quality":2}, -{"id":9912,"name":"Royal Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,521,522,523,776,777,778,861,862,863,1031,1032,1033,1811,1812,1850,1963,1964,1849,-84,-81,-69,-19,-13,-9],"ilvl":45,"quality":2}, -{"id":9913,"name":"Royal Gown","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":48,"quality":2}, -{"id":9914,"name":"Royal Scepter","icon":"inv_mace_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,254,435,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1885,1961,2037,1847,-19,436,-81,-69,-15,-13,-11,-9],"ilvl":48,"quality":2}, -{"id":9915,"name":"Royal Headband","icon":"inv_misc_bandana_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,531,532,785,786,787,870,871,872,1040,1042,1816,1817,1854,1892,1893,1968,1969,2044,2045,-19,530,1041,1855,-84,-81,-69,-13,-9],"ilvl":45,"quality":2}, -{"id":9916,"name":"Tracker's Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,438,440,521,523,606,607,608,691,692,693,776,777,778,861,862,863,1031,1032,1033,1118,1201,1202,1203,1612,1613,2040,1116,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,439,522,1117,1811,1812,2039],"ilvl":44,"quality":2}, -{"id":9917,"name":"Tracker's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,215,216,217,218,438,440,606,607,608,776,777,778,861,862,863,946,947,1031,1032,1033,1201,1203,1559,2002,439,948,1202,1560,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":44,"quality":2}, -{"id":9918,"name":"Brigade Defender","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,186,191,600,601,685,686,940,941,1110,1111,1195,1196,1610,1665,1666,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":45,"quality":2}, -{"id":9919,"name":"Tracker's Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1610,1808,1998,2036,-9,-325,-84,-81,-78,-69,-68,-19,-18,-15],"ilvl":43,"quality":2}, -{"id":9920,"name":"Tracker's Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,522,523,606,607,608,692,693,777,778,861,862,863,946,947,948,1031,1032,1033,1201,1202,1203,1612,1613,1811,1812,2040,776,521,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,438,691,2039],"ilvl":44,"quality":2}, -{"id":9921,"name":"Tracker's Headband","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[615,787,335,336,386,531,532,616,617,700,702,785,786,870,871,872,1040,1041,1042,1127,1211,1212,1621,1622,1817,2006,2045,387,1816,2044,-81,-78,-9,1125,-325,-84,-69,-68,-19,-14,-13,-12,530,701,1126,1210,2007],"ilvl":45,"quality":2}, -{"id":9922,"name":"Tracker's Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[361,362,413,414,452,618,619,620,788,790,873,874,875,960,1043,1045,1214,1215,1565,1566,1818,2045,2046,451,789,1044,1213,1817,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,450,958,959],"ilvl":46,"quality":2}, -{"id":9923,"name":"Tracker's Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[608,211,212,213,214,217,218,522,523,606,607,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1202,1203,1612,1613,2002,521,1201,2001,-325,-84,-81,-78,-69,-68,-19,-9,-18,-13,-12],"ilvl":45,"quality":2}, -{"id":9924,"name":"Tracker's Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,388,413,414,618,619,620,788,789,790,873,874,875,1043,1045,1214,1215,1565,1566,2007,2008,387,1213,1044,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":48,"quality":2}, -{"id":9925,"name":"Tracker's Wristguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1556,1998,2036,1808,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":44,"quality":2}, -{"id":9926,"name":"Brigade Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,216,218,438,439,440,521,522,523,606,607,608,776,777,778,861,863,1031,1032,1033,1201,1202,1203,1559,1560,2002,215,217,862,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,2001],"ilvl":43,"quality":2}, -{"id":9927,"name":"Brigade Bracers","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,251,514,599,769,854,1024,1555,1556,1997,1998,1807,1808,2035,2036,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":42,"quality":2}, -{"id":9928,"name":"Brigade Breastplate","icon":"inv_chest_plate15","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,386,412,413,447,448,449,530,531,532,615,616,617,785,786,787,870,871,872,1040,1041,1042,1564,1565,2006,387,2007,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":45,"quality":2}, -{"id":9929,"name":"Brigade Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,251,514,599,769,854,1024,1609,1610,1807,1997,186,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998,2035,2036],"ilvl":41,"quality":2}, -{"id":9930,"name":"Brigade Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,522,523,606,607,608,693,776,777,778,861,862,863,946,947,948,1032,1033,1201,1202,1203,1612,1613,1811,2039,2040,438,521,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,691,692,1031,1812],"ilvl":43,"quality":2}, -{"id":9931,"name":"Brigade Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,438,439,440,521,522,523,606,607,608,691,693,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1201,1203,1613,1812,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,692,1202,1612,1811,2039,2040],"ilvl":43,"quality":2}, -{"id":9932,"name":"Brigade Circlet","icon":"inv_helmet_11","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,447,448,449,530,531,532,615,616,617,702,785,786,787,870,872,1041,1042,1211,1622,1817,2006,2044,700,701,1212,1621,2045,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,871,1040,1210,1816,2007],"ilvl":44,"quality":2}, -{"id":9933,"name":"Brigade Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,448,449,530,531,532,615,616,617,785,787,870,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,2044,2045,871,1816,786,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1817],"ilvl":45,"quality":2}, -{"id":9934,"name":"Brigade Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,438,440,522,523,606,607,608,776,777,778,861,862,863,1033,1116,1117,1118,1612,1613,2001,218,439,521,1032,2002,-78,217,1031,-325,-84,-81,-69,-19,-18,-13,-12,-11,-9],"ilvl":44,"quality":2}, -{"id":9935,"name":"Embossed Plate Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,186,191,600,601,685,686,940,941,1110,1111,1195,1196,1610,1665,1666,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":45,"quality":2}, -{"id":9936,"name":"Abjurer's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,409,410,443,444,445,781,782,783,866,867,868,1036,1037,1038,1813,1814,1852,1965,1966,1851,-84,-81,-69,-19,-15,-11,-9],"ilvl":49,"quality":2}, -{"id":9937,"name":"Abjurer's Bands","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,187,772,773,774,857,858,859,1027,1028,1029,1809,1847,1885,1961,2037,-84,-81,-69,-19,-15,-9],"ilvl":48,"quality":2}, -{"id":9938,"name":"Abjurer's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,187,772,773,774,857,858,859,1027,1028,1029,1809,1847,1885,1961,2037,-84,-81,-69,-19,-15,-9],"ilvl":48,"quality":2}, -{"id":9939,"name":"Abjurer's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,611,612,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-15,-11,-9,445],"ilvl":49,"quality":2}, -{"id":9940,"name":"Abjurer's Hood","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1895,1971,1972,2047,2048,1858,1896,-84,-81,-69,-19,-13,-9],"ilvl":50,"quality":2}, -{"id":9941,"name":"Abjurer's Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,526,527,528,781,782,783,866,867,868,1036,1037,1038,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-13,-9],"ilvl":49,"quality":2}, -{"id":9942,"name":"Abjurer's Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[415,416,453,455,622,623,791,792,793,876,877,878,1046,1047,1048,1895,1896,2047,2048,-81,-78,-69,-19,-15,-11,-9,454,621],"ilvl":50,"quality":2}, -{"id":9943,"name":"Abjurer's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,794,795,796,879,880,881,1049,1050,1051,1329,1820,1821,1858,1859,1972,1973,-327,-326,-324,-84,-81,-69,-19,-15,-9,1375,1420,1374,1467],"ilvl":53,"quality":2}, -{"id":9944,"name":"Abjurer's Crystal","icon":"inv_misc_gem_pearl_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,213,215,437,438,439,520,775,776,777,860,861,862,1030,1031,1032,1318,1811,1848,1887,1963,2038,2039,-15,521,-328,-81,-69,-19,-13,-11,-9,522,1319,1364,1810,1849,1886,1962,-327,-324],"ilvl":53,"quality":2}, -{"id":9945,"name":"Abjurer's Sash","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1889,2040,2041,524,1888,-81,-78,-69,-19,-13,-9],"ilvl":48,"quality":2}, -{"id":9946,"name":"Abjurer's Tunic","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,794,795,796,879,880,881,1049,1050,1051,1329,1820,1821,1858,1859,1972,1973,-327,-326,-324,-84,-81,-69,-19,-15,-9,1375,1420,1374,1467],"ilvl":53,"quality":2}, -{"id":9947,"name":"Chieftain's Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,1813,2040,2041,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":48,"quality":2}, -{"id":9948,"name":"Chieftain's Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[611,1038,267,287,333,358,409,410,444,445,612,613,781,782,783,866,867,868,951,952,953,1036,1037,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,443],"ilvl":49,"quality":2}, -{"id":9949,"name":"Chieftain's Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,602,603,604,772,774,857,858,859,1027,1028,1029,1197,1198,1199,1557,1809,1999,773,2037,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":48,"quality":2}, -{"id":9950,"name":"Chieftain's Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,364,365,390,391,416,417,624,625,626,794,795,796,879,880,881,1049,1050,1051,1219,1220,1221,1467,1568,1569,2010,2011,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1329,1374,1375,1420,1421,1513,1328],"ilvl":53,"quality":2}, -{"id":9951,"name":"Chieftain's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,602,603,604,772,773,774,857,859,1027,1029,1197,1198,1611,1809,1999,2037,1028,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,858,1199],"ilvl":47,"quality":2}, -{"id":9952,"name":"Chieftain's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,445,526,527,528,611,612,613,697,698,781,782,783,866,867,868,951,952,953,1036,1037,1038,1206,1207,1208,1614,1615,1813,1814,2042,696,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2041],"ilvl":49,"quality":2}, -{"id":9953,"name":"Chieftain's Headdress","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,621,622,623,708,791,792,793,876,877,878,1046,1047,1048,1131,1133,1216,1217,1218,1617,1623,1820,2009,2010,2047,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,706,707,1132,1819,2048],"ilvl":50,"quality":2}, -{"id":9954,"name":"Chieftain's Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,455,621,622,623,791,792,793,876,877,878,961,963,1046,1047,1048,1216,1217,1218,1567,1568,1819,1820,2047,2048,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,453,454,962],"ilvl":51,"quality":2}, -{"id":9955,"name":"Chieftain's Shoulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1122,1123,1206,1207,1208,1614,1615,2003,2004,1121,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":50,"quality":2}, -{"id":9956,"name":"Warmonger's Bracers","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1557,1999,2037,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1809],"ilvl":46,"quality":2}, -{"id":9957,"name":"Warmonger's Chestpiece","icon":"inv_chest_samurai","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,363,364,389,390,415,453,454,455,536,537,538,621,622,623,791,792,793,876,877,878,1046,1047,1048,1567,1568,2009,2010,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,416],"ilvl":50,"quality":2}, -{"id":9958,"name":"Warmonger's Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,603,605,688,689,690,943,944,945,1113,1114,1115,1198,1199,1200,1668,1669,604,1607,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":9959,"name":"Warmonger's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1610,2036,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998],"ilvl":45,"quality":2}, -{"id":9960,"name":"Warmonger's Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,525,526,609,610,611,695,779,780,781,864,865,866,950,951,1034,1035,1036,1204,1205,1206,1614,1813,694,696,949,1613,1812,2040,2041,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":47,"quality":2}, -{"id":9961,"name":"Warmonger's Belt","icon":"inv_belt_08","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,2040,2041,1813,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":47,"quality":2}, -{"id":9962,"name":"Warmonger's Greaves","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,216,267,287,409,441,442,443,524,525,526,609,610,611,779,780,781,865,866,1034,1035,1036,1204,1205,1206,1560,1561,2003,864,218,2002,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":48,"quality":2}, -{"id":9963,"name":"Warmonger's Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,451,452,533,534,535,619,620,705,788,790,873,874,875,1043,1044,1045,1213,1214,1215,1616,1622,1817,1818,2007,2008,2046,450,618,703,789,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,704,2045],"ilvl":48,"quality":2}, -{"id":9964,"name":"Warmonger's Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,453,454,455,537,538,621,622,623,791,792,793,876,877,878,961,962,963,1046,1047,1048,1216,1218,1567,1568,1820,2047,536,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1217,1819,2048],"ilvl":49,"quality":2}, -{"id":9965,"name":"Warmonger's Pauldrons","icon":"inv_shoulder_05","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,443,444,445,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1614,1615,2003,2004,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":49,"quality":2}, -{"id":9966,"name":"Embossed Plate Armor","icon":"inv_chest_leather_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,335,336,616,617,702,871,872,955,957,1041,1042,1127,1210,1211,1212,1564,1565,615,700,956,1040,1125,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,701,870,1126],"ilvl":45,"quality":2}, -{"id":9967,"name":"Embossed Plate Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,691,693,861,863,946,948,1031,1032,1033,1116,1118,1201,1202,1203,1559,1560,692,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,607,862,947,2039,2040],"ilvl":43,"quality":2}, -{"id":9968,"name":"Embossed Plate Girdle","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,607,690,692,861,862,945,946,1030,1031,1115,1116,1200,1201,1202,1558,1559,2038,2039,606,860,1117,1032,691,-81,-78,-69,-68,-20,-17,-14,-12,-10,947,-19],"ilvl":42,"quality":2}, -{"id":9969,"name":"Embossed Plate Helmet","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,616,617,700,702,870,871,872,955,956,957,1041,1042,1125,1127,1210,1211,1212,1621,1622,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,615,701,1040,1126,2044,2045],"ilvl":43,"quality":2}, -{"id":9970,"name":"Embossed Plate Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,616,617,700,701,702,870,872,955,957,1040,1042,1126,1127,1210,1211,1212,1564,615,871,956,1125,1565,2044,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1041,2045],"ilvl":44,"quality":2}, -{"id":9971,"name":"Embossed Plate Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,861,863,946,947,948,1031,1033,1116,1117,1118,1201,1202,1203,1612,1613,606,862,1032,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":43,"quality":2}, -{"id":9972,"name":"Embossed Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,599,684,854,939,1024,1109,1194,1555,1556,191,2035,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":42,"quality":2}, -{"id":9973,"name":"Embossed Plate Boots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,605,606,607,690,692,860,861,945,946,1030,1031,1115,1116,1117,1200,1201,1202,1607,1612,862,947,1032,691,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":42,"quality":2}, -{"id":9974,"name":"Overlord's Shield","icon":"spell_holy_sealofwrath","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,211,217,219,605,606,690,691,945,947,1115,1117,1200,1201,1202,1612,1670,692,946,1116,1607,1671,607,1319,-329,-327,-325,-324,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1457,1503,-326],"ilvl":52,"quality":2}, -{"id":9998,"name":"Black Mageweave Vest","icon":"inv_chest_leather_03","type":5,"armorType":1,"stats":[0,0,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12048}},{"crafted":{"profession":11,"spellId":12048}}]}, -{"id":9999,"name":"Black Mageweave Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12049}},{"crafted":{"profession":11,"spellId":12049}}]}, -{"id":10001,"name":"Black Mageweave Robe","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12050}},{"crafted":{"profession":11,"spellId":12050}}]}, -{"id":10002,"name":"Shadoweave Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12052}},{"crafted":{"profession":11,"spellId":12052}}]}, -{"id":10003,"name":"Black Mageweave Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12053}},{"crafted":{"profession":11,"spellId":12053}}]}, -{"id":10004,"name":"Shadoweave Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12055}},{"crafted":{"profession":11,"spellId":12055}}]}, -{"id":10007,"name":"Red Mageweave Vest","icon":"inv_shirt_09","type":5,"armorType":1,"stats":[0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12056}},{"crafted":{"profession":11,"spellId":12056}}]}, -{"id":10008,"name":"White Bandit Mask","icon":"inv_misc_cape_11","type":1,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12059}},{"crafted":{"profession":11,"spellId":12059}}]}, -{"id":10009,"name":"Red Mageweave Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12060}},{"crafted":{"profession":11,"spellId":12060}}]}, -{"id":10010,"name":"Stormcloth Pants","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12062}}]}, -{"id":10011,"name":"Stormcloth Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12063}}]}, -{"id":10018,"name":"Red Mageweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12066}},{"crafted":{"profession":11,"spellId":12066}}]}, -{"id":10019,"name":"Dreamweave Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,6,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12067}},{"crafted":{"profession":11,"spellId":12067}}]}, -{"id":10020,"name":"Stormcloth Vest","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,8,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12068}}]}, -{"id":10021,"name":"Dreamweave Vest","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,14,15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12070}},{"crafted":{"profession":11,"spellId":12070}}]}, -{"id":10023,"name":"Shadoweave Gloves","icon":"inv_gauntlets_09","type":7,"armorType":1,"stats":[0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12071}},{"crafted":{"profession":11,"spellId":12071}}]}, -{"id":10024,"name":"Black Mageweave Headband","icon":"inv_misc_bandana_01","type":1,"armorType":1,"stats":[0,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12072}},{"crafted":{"profession":11,"spellId":12072}}]}, -{"id":10025,"name":"Shadoweave Mask","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,15,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12086}},{"crafted":{"profession":11,"spellId":12086}}]}, -{"id":10026,"name":"Black Mageweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12073}},{"crafted":{"profession":11,"spellId":12073}}]}, -{"id":10027,"name":"Black Mageweave Shoulders","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12074}},{"crafted":{"profession":11,"spellId":12074}}]}, -{"id":10028,"name":"Shadoweave Shoulders","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12076}},{"crafted":{"profession":11,"spellId":12076}}]}, -{"id":10029,"name":"Red Mageweave Shoulders","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12078}},{"crafted":{"profession":11,"spellId":12078}}]}, -{"id":10030,"name":"Admiral's Hat","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12081}},{"crafted":{"profession":11,"spellId":12081}}]}, -{"id":10031,"name":"Shadoweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12082}},{"crafted":{"profession":11,"spellId":12082}}]}, -{"id":10032,"name":"Stormcloth Headband","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,15,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12083}}]}, -{"id":10033,"name":"Red Mageweave Headband","icon":"inv_misc_bandana_03","type":1,"armorType":1,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12084}},{"crafted":{"profession":11,"spellId":12084}}]}, -{"id":10035,"name":"Tuxedo Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12089}},{"crafted":{"profession":11,"spellId":12089}}]}, -{"id":10036,"name":"Tuxedo Jacket","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12093}},{"crafted":{"profession":11,"spellId":12093}}]}, -{"id":10038,"name":"Stormcloth Shoulders","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12087}}]}, -{"id":10039,"name":"Stormcloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12090}}]}, -{"id":10040,"name":"White Wedding Dress","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12091}},{"crafted":{"profession":11,"spellId":12091}}]}, -{"id":10041,"name":"Dreamweave Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,15,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12092}},{"crafted":{"profession":11,"spellId":12092}}]}, -{"id":10042,"name":"Cindercloth Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12069}},{"crafted":{"profession":11,"spellId":12069}}]}, -{"id":10043,"name":"Pious Legwraps","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":10044,"name":"Cindercloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":12088}},{"crafted":{"profession":11,"spellId":12088}}]}, -{"id":10045,"name":"Simple Linen Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12044}},{"crafted":{"profession":11,"spellId":12044}}]}, -{"id":10046,"name":"Simple Linen Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12045}},{"crafted":{"profession":11,"spellId":12045}}]}, -{"id":10047,"name":"Simple Kilt","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12046}},{"crafted":{"profession":11,"spellId":12046}}]}, -{"id":10048,"name":"Colorful Kilt","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12047}},{"crafted":{"profession":11,"spellId":12047}}]}, -{"id":10053,"name":"Simple Black Dress","icon":"inv_chest_cloth_21","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":12077}},{"crafted":{"profession":11,"spellId":12077}}]}, -{"id":10057,"name":"Duskwoven Tunic","icon":"inv_chest_leather_09","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":55,"quality":2}, -{"id":10058,"name":"Duskwoven Sandals","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,409,410,443,444,445,781,782,783,866,867,868,1036,1037,1038,1813,1814,1852,1965,1966,1851,-84,-81,-69,-19,-15,-11,-9],"ilvl":50,"quality":2}, -{"id":10059,"name":"Duskwoven Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,178,183,188,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-84,-81,-19,-15,-9],"ilvl":50,"quality":2}, -{"id":10060,"name":"Duskwoven Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-84,-81,-69,-19,-15,-9],"ilvl":49,"quality":2}, -{"id":10061,"name":"Duskwoven Turban","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1895,1971,1972,2047,2048,1858,1896,-84,-81,-69,-19,-13,-9],"ilvl":51,"quality":2}, -{"id":10062,"name":"Duskwoven Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,611,612,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-15,-11,-9,445],"ilvl":51,"quality":2}, -{"id":10063,"name":"Duskwoven Amice","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,526,527,528,781,782,783,866,867,868,1036,1037,1038,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-13,-9],"ilvl":51,"quality":2}, -{"id":10064,"name":"Duskwoven Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[416,417,456,457,626,794,795,796,879,880,881,1049,1050,1051,1512,1513,1896,1897,2048,2049,-329,-328,-324,-81,-78,-69,-19,-15,-11,-9,458,624,625,1328,1329,1374,1375,1421,1466,1467],"ilvl":53,"quality":2}, -{"id":10065,"name":"Duskwoven Robe","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":55,"quality":2}, -{"id":10066,"name":"Duskwoven Sash","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,526,527,528,611,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-13,-9,612],"ilvl":49,"quality":2}, -{"id":10067,"name":"Righteous Waistguard","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,443,444,445,526,527,528,611,612,613,696,697,698,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,1813,1814,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,2041,2042],"ilvl":49,"quality":2}, -{"id":10068,"name":"Righteous Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[611,1038,267,287,333,358,409,410,444,445,612,613,781,782,783,866,867,868,951,952,953,1036,1037,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,443],"ilvl":51,"quality":2}, -{"id":10069,"name":"Righteous Bracers","icon":"inv_bracer_14","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1558,1810,2000,2038,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":49,"quality":2}, -{"id":10070,"name":"Righteous Armor","icon":"inv_chest_chain_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,393,418,419,627,628,629,797,798,799,883,884,1052,1053,1054,1222,1223,1224,1570,1571,2012,2013,-329,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,882,1330,1376,1422,1423,1468,1469,1515],"ilvl":55,"quality":2}, -{"id":10071,"name":"Righteous Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1607,1810,2000,2038,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9],"ilvl":49,"quality":2}, -{"id":10072,"name":"Righteous Gloves","icon":"inv_gauntlets_12","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,445,526,527,528,611,612,613,697,698,781,782,783,866,867,868,951,952,953,1036,1037,1038,1206,1207,1208,1614,1615,1813,1814,2042,696,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2041],"ilvl":51,"quality":2}, -{"id":10073,"name":"Righteous Helmet","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,539,540,541,624,625,626,709,711,794,795,796,879,880,881,1049,1050,1051,1134,1135,1136,1219,1220,1221,1329,1375,1617,1624,1820,1821,2011,2048,2049,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,710,1420,1421,1466,1467,1513,2010],"ilvl":52,"quality":2}, -{"id":10074,"name":"Righteous Leggings","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[364,365,416,417,456,458,624,625,626,794,795,796,879,880,881,964,965,1049,1050,1051,1220,1221,1467,1568,1569,1820,1821,2048,2049,457,966,1219,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1328,1375,1420,1421,1466,1374],"ilvl":53,"quality":2}, -{"id":10075,"name":"Righteous Spaulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1122,1123,1206,1207,1208,1614,1615,2003,2004,1121,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":51,"quality":2}, -{"id":10076,"name":"Lord's Armguards","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1810,2000,2038,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":49,"quality":2}, -{"id":10077,"name":"Lord's Breastplate","icon":"inv_chest_plate15","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,364,365,391,417,456,457,458,540,541,624,625,626,794,795,796,879,880,881,1049,1050,1051,1329,1374,1420,1467,1512,1568,1569,2010,2011,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,390,416,539,1375,1421,1513,1466],"ilvl":53,"quality":2}, -{"id":10078,"name":"Lord's Crest","icon":"spell_holy_sealofprotection","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,211,217,219,605,606,690,691,945,947,1115,1117,1200,1201,1202,1612,1670,692,946,1116,1607,1671,607,1319,-329,-327,-325,-324,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1457,1503,-326],"ilvl":53,"quality":2}, -{"id":10079,"name":"Lord's Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,602,603,604,772,773,774,857,858,859,1027,1028,1029,1611,1999,519,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1809,2037],"ilvl":48,"quality":2}, -{"id":10080,"name":"Lord's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,445,526,527,528,611,612,613,696,697,698,781,782,783,866,867,868,951,953,1036,1037,1038,1206,1207,1208,1614,1615,1813,1814,2041,2042,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,952],"ilvl":50,"quality":2}, -{"id":10081,"name":"Lord's Girdle","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,443,444,445,526,527,528,611,612,613,696,697,698,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,1814,2041,2042,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1813],"ilvl":50,"quality":2}, -{"id":10082,"name":"Lord's Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,409,410,443,444,445,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":51,"quality":2}, -{"id":10083,"name":"Lord's Crown","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,389,390,453,455,536,537,538,621,622,623,706,707,708,792,793,876,877,878,1046,1047,1048,1216,1217,1218,1617,1623,2009,1819,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,339,454,791,1820,2010,2047,2048],"ilvl":51,"quality":2}, -{"id":10084,"name":"Lord's Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[364,365,416,417,457,458,539,540,541,624,625,626,794,795,796,879,880,881,965,966,1049,1050,1051,1219,1220,1221,1467,1568,1569,1820,1821,2048,2049,456,964,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1329,1374,1375,1421,1466,1513,1420],"ilvl":52,"quality":2}, -{"id":10085,"name":"Lord's Pauldrons","icon":"inv_shoulder_30","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,446,447,448,529,530,531,614,615,616,784,785,786,869,870,871,1039,1041,1124,1125,1126,1323,1415,1461,1620,2005,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1040,1369,1507],"ilvl":52,"quality":2}, -{"id":10086,"name":"Gothic Plate Armor","icon":"inv_chest_leather_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,621,622,623,707,877,878,961,962,963,1046,1048,1131,1132,1133,1216,1217,1218,1567,1568,708,1047,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,706,876],"ilvl":49,"quality":2}, -{"id":10087,"name":"Gothic Plate Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[220,307,609,610,611,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,694,1560,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,695,2040,2041],"ilvl":46,"quality":2}, -{"id":10088,"name":"Gothic Plate Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,693,861,863,946,947,948,1031,1032,1033,1116,1118,1201,1202,1203,1559,1560,2040,607,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,691,692,862,1117,2039],"ilvl":45,"quality":2}, -{"id":10089,"name":"Gothic Sabatons","icon":"inv_boots_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,606,607,692,693,861,863,946,948,1032,1033,1116,1118,1201,1202,1203,1612,1613,862,947,1117,-325,-84,-81,-78,-69,-68,-14,-12,-10,217,608,691,1031],"ilvl":45,"quality":2}, -{"id":10090,"name":"Gothic Plate Helmet","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,620,705,874,875,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1616,1622,619,704,873,-325,-84,-81,-78,-69,-68,-14,-12,-10,703,958,2045,2046],"ilvl":46,"quality":2}, -{"id":10091,"name":"Gothic Plate Leggings","icon":"inv_pants_09","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,618,619,620,705,873,874,875,958,959,960,1043,1044,1045,1129,1130,1213,1214,1215,1565,1566,2046,704,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,703,1128,2045],"ilvl":47,"quality":2}, -{"id":10092,"name":"Gothic Plate Spaulders","icon":"inv_shoulder_08","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,287,609,610,611,694,695,696,864,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,-325,-84,-81,-78,-69,-68,-14,-12,-10,865],"ilvl":47,"quality":2}, -{"id":10093,"name":"Revenant Deflector","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,211,217,219,605,606,690,691,945,947,1115,1117,1200,1201,1202,1612,1670,692,946,1116,1607,1671,607,1319,-329,-327,-325,-324,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1457,1503,-326],"ilvl":54,"quality":2}, -{"id":10094,"name":"Gothic Plate Vambraces","icon":"inv_bracer_08","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,600,601,685,686,855,856,940,941,1025,1026,1110,1111,1195,1196,1556,-68,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,2036],"ilvl":45,"quality":2}, -{"id":10095,"name":"Councillor's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,335,412,447,449,785,786,787,870,871,872,1040,1041,1042,1324,1416,1816,1854,1968,-328,-327,-84,-81,-69,-19,-15,-11,448,1370,1462,1508],"ilvl":56,"quality":2}, -{"id":10096,"name":"Councillor's Cuffs","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1319,1411,1456,1503,1810,1811,1848,1849,1886,1887,1962,1963,2038,2039,1365,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1364,1457,-329,1318],"ilvl":54,"quality":2}, -{"id":10097,"name":"Councillor's Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1898,1899,1974,1975,2050,2051,1330,1514,1861,1422,-328,-327,-324,-84,-81,-69,-19,-13,-9,1376,1423,1468,1469,-329,1377],"ilvl":57,"quality":2}, -{"id":10098,"name":"Councillor's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1365,1411,1810,1811,1848,1849,1887,1962,1963,2038,2039,1410,1503,1886,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1319,1457,1502,1364],"ilvl":53,"quality":2}, -{"id":10099,"name":"Councillor's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,447,448,449,616,617,785,786,787,870,871,872,1040,1041,1042,1324,1892,2044,-328,-327,-326,-81,-78,-69,-19,-15,-11,-9,615,1370,1416,1462,1508],"ilvl":55,"quality":2}, -{"id":10100,"name":"Councillor's Shoulders","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,386,530,531,532,785,786,787,870,871,872,1040,1041,1042,1508,1816,1854,1968,-329,-328,-326,-324,-84,-81,-69,-19,-13,-9,1324,1370,1416,1462,-327],"ilvl":57,"quality":2}, -{"id":10101,"name":"Councillor's Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[420,464,631,632,800,801,802,885,886,887,1055,1056,1057,1899,1900,2051,2052,1516,-329,-328,-327,-326,-81,-78,-69,-19,-15,-11,-9,419,462,463,630,1332,1423,1424,1470,-324],"ilvl":58,"quality":2}, -{"id":10102,"name":"Councillor's Robes","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":59,"quality":2}, -{"id":10103,"name":"Councillor's Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,529,614,615,616,784,785,786,869,870,871,1039,1040,1041,1507,1891,2043,530,531,1323,1415,1461,-328,-324,-81,-78,-69,-19,-13,-9,1369,-329,-327,-326],"ilvl":54,"quality":2}, -{"id":10104,"name":"Councillor's Tunic","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":59,"quality":2}, -{"id":10105,"name":"Wanderer's Armor","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,368,393,394,420,630,631,632,800,801,802,886,887,1055,1056,1057,1227,1571,1572,2013,2014,367,419,885,1226,1424,1470,-328,-326,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1225,1378,1469,1516,-327,-324,1332],"ilvl":60,"quality":2}, -{"id":10106,"name":"Wanderer's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,412,447,449,615,616,617,785,786,787,870,871,872,955,956,957,1040,1041,1042,1210,1211,1212,1416,1462,1508,1564,2006,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,1324,1370],"ilvl":56,"quality":2}, -{"id":10107,"name":"Wanderer's Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,605,606,607,775,776,777,860,862,1030,1031,1032,1200,1202,1410,1502,1558,1559,1810,1811,2000,2039,861,1201,1365,1411,2001,-329,-328,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1457,1503,2038,-326,1364],"ilvl":54,"quality":2}, -{"id":10108,"name":"Wanderer's Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,605,606,607,775,776,777,860,861,862,1030,1031,1200,1201,1202,1503,1607,1612,1810,1811,2000,2001,2039,-329,-328,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,1032,1319,1365,1411,2038],"ilvl":53,"quality":2}, -{"id":10109,"name":"Wanderer's Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,446,447,529,614,615,616,699,700,701,784,785,786,869,870,871,1039,1040,1124,1209,1210,1323,1620,1815,2043,531,1041,1125,1126,530,1211,1461,448,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1369,1415,1507,-329],"ilvl":54,"quality":2}, -{"id":10110,"name":"Wanderer's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,447,448,449,532,615,616,617,702,785,786,787,870,871,872,957,1040,1041,1042,1210,1211,1212,1324,1416,1508,1621,1816,2044,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,530,531,700,701,955,956,1370,1462],"ilvl":55,"quality":2}, -{"id":10111,"name":"Wanderer's Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,627,628,629,714,797,798,799,883,884,1052,1053,1054,1137,1139,1222,1224,1469,1618,1625,1823,2012,2050,2051,712,882,1138,1223,1330,1331,1422,1468,1822,1514,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,713,1376,1423,1515,2013,1377],"ilvl":57,"quality":2}, -{"id":10112,"name":"Wanderer's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[367,368,420,464,630,631,632,800,801,802,885,886,887,1055,1056,1057,1225,1226,1227,1377,1378,1515,1516,1571,1572,1823,1824,2051,2052,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,419,462,463,970,971,972,1331,1332,1423,1424,1469,1470],"ilvl":58,"quality":2}, -{"id":10113,"name":"Wanderer's Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,386,531,532,615,616,617,785,786,787,870,871,872,1040,1042,1125,1126,1127,1210,1211,1212,1324,1508,1621,2006,530,1041,1370,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1416,1462],"ilvl":57,"quality":2}, -{"id":10118,"name":"Ornate Breastplate","icon":"inv_chest_chain_10","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,367,368,393,394,419,420,462,463,464,545,546,547,630,631,632,800,801,802,885,886,887,1055,1056,1057,1331,1423,1571,1572,2013,2014,1516,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1332,1378,1424,1469,1470,1377,1515],"ilvl":58,"quality":2}, -{"id":10119,"name":"Ornate Greaves","icon":"inv_boots_plate_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,412,448,449,530,531,532,615,616,617,785,786,787,870,871,872,1040,1042,1210,1211,1212,1462,1564,2006,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,447,1041,1324,1370,1416,1508],"ilvl":57,"quality":2}, -{"id":10120,"name":"Ornate Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,211,213,215,217,437,438,439,520,521,605,606,607,775,776,777,860,861,862,1030,1031,1032,1318,1364,1365,1607,1612,2001,2038,-329,-328,-327,-326,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,188,522,1319,1410,1411,1457,1502,1503,1810,1811,2000,2039],"ilvl":53,"quality":2}, -{"id":10121,"name":"Ornate Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,447,448,449,530,531,532,615,616,617,700,701,702,785,786,787,870,871,872,956,957,1040,1041,1042,1210,1211,1212,1621,1816,2044,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,955,1324,1370,1416,1462,1508],"ilvl":56,"quality":2}, -{"id":10122,"name":"Ornate Girdle","icon":"inv_belt_07","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,447,448,449,530,531,532,615,616,617,700,701,702,785,786,787,870,871,872,1040,1041,1042,1125,1126,1127,1210,1211,1212,1416,1621,1816,2044,1324,1462,-328,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1370,1508,-327],"ilvl":55,"quality":2}, -{"id":10123,"name":"Ornate Circlet","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,459,460,461,542,543,544,627,629,713,714,797,798,799,882,883,884,1053,1054,1222,1223,1224,1331,1618,1625,2012,2013,2050,1468,1822,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,628,712,1052,1330,1376,1377,1422,1423,1514,1515,1823,2051],"ilvl":57,"quality":2}, -{"id":10124,"name":"Ornate Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[366,367,418,459,460,461,542,543,544,627,628,629,797,798,799,882,883,884,967,969,1052,1054,1222,1223,1224,1423,1570,1571,1822,2050,419,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,968,1053,1330,1331,1376,1377,1422,1468,1469,1514,1823,2051],"ilvl":57,"quality":2}, -{"id":10125,"name":"Ornate Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,386,447,448,449,530,531,532,615,616,617,785,786,787,870,871,872,1040,1041,1042,1125,1126,1127,1324,1416,1462,1621,2006,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1370,1508],"ilvl":56,"quality":2}, -{"id":10126,"name":"Ornate Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,215,217,437,438,439,520,521,522,605,606,607,775,776,777,860,861,862,1030,1031,1032,1318,1365,1558,1559,1811,2000,2001,2039,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,183,1319,1364,1411,1456,1457,1502,1503,1810,2038],"ilvl":54,"quality":2}, -{"id":10127,"name":"Revenant Bracers","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,603,604,688,689,690,858,859,860,943,944,945,1028,1029,1030,1113,1114,1115,1198,1199,1200,1558,2038,605,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":10128,"name":"Revenant Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,340,624,626,709,710,711,879,880,881,964,965,966,1049,1050,1051,1135,1136,1219,1220,1221,1329,1421,1568,1569,339,1375,1467,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,625,1134,1328,1513,-329,1374,1466],"ilvl":54,"quality":2}, -{"id":10129,"name":"Revenant Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,2042,2041,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":10130,"name":"Revenant Girdle","icon":"inv_belt_30","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,-17,-81,-78,-69,-68,-20,-19,-14,-12,-10,2041,2042],"ilvl":50,"quality":2}, -{"id":10131,"name":"Revenant Boots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":10132,"name":"Revenant Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,622,623,707,708,876,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1617,1623,2047,706,877,2048,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,621],"ilvl":51,"quality":2}, -{"id":10133,"name":"Revenant Leggings","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,626,710,711,879,880,881,964,966,1049,1050,1051,1134,1135,1136,1219,1220,1221,1568,1569,2049,625,1513,624,-329,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,709,965,1329,2048,-327],"ilvl":52,"quality":2}, -{"id":10134,"name":"Revenant Shoulders","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,612,613,696,697,698,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,611,866,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":51,"quality":2}, -{"id":10135,"name":"High Councillor's Tunic","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":64,"quality":2}, -{"id":10136,"name":"High Councillor's Bracers","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,218,287,383,409,778,779,780,863,864,865,1033,1034,1035,1812,1813,1850,1888,1889,1964,1965,2040,2041,1320,1413,1851,-328,-327,-326,-84,-81,-69,-19,-15,-9,1366,1367,1412,1458,1459,1505,1504],"ilvl":60,"quality":2}, -{"id":10137,"name":"High Councillor's Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,414,415,452,453,454,790,791,792,875,876,877,1045,1046,1047,1511,1818,1819,1856,1857,1970,1971,1418,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-11,-9,1326,1372,1419,1464],"ilvl":61,"quality":2}, -{"id":10138,"name":"High Councillor's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,218,287,383,409,778,779,780,863,864,865,1033,1034,1035,1321,1812,1813,1850,1888,1889,1964,1965,2040,2041,-327,-324,-84,-81,-69,-19,-15,-9,1320,1366,1412,1413,1458,1504,1851],"ilvl":59,"quality":2}, -{"id":10139,"name":"High Councillor's Circlet","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,549,550,803,804,805,888,889,890,1058,1060,1825,1826,1863,1901,1902,1977,1978,2053,2054,1059,1426,1864,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1333,1379,1471,1472,1517,1518],"ilvl":62,"quality":2}, -{"id":10140,"name":"High Councillor's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,621,790,791,792,875,876,877,1045,1046,1047,1894,1895,2046,2047,620,622,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1326,1327,1464,1510,-329,-328,1372],"ilvl":61,"quality":2}, -{"id":10141,"name":"High Councillor's Pants","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[421,422,466,635,803,804,805,888,889,890,1058,1059,1060,1380,1901,1902,2053,2054,465,467,-328,-327,-81,-78,-69,-19,-15,-11,-9,634,1333,1379,1517,-329,-326,-324,633,1471,1518],"ilvl":63,"quality":2}, -{"id":10142,"name":"High Councillor's Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,388,389,535,536,537,790,791,792,875,876,877,1045,1046,1047,1372,1373,1818,1819,1856,1857,1970,1971,1464,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1326,1418,1419,1510,1511,-329,1327,1465],"ilvl":62,"quality":2}, -{"id":10143,"name":"High Councillor's Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":64,"quality":2}, -{"id":10144,"name":"High Councillor's Sash","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[387,388,534,535,620,788,789,790,873,874,875,1043,1044,1045,1417,1893,1894,2045,2046,533,619,1325,-329,-327,-324,-81,-78,-69,-19,-13,-9,618,1371,1418,1463,1464,1509,1510,-328,1372],"ilvl":60,"quality":2}, -{"id":10145,"name":"Mighty Girdle","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[387,388,450,451,533,534,535,618,619,620,703,704,788,789,790,873,874,875,1043,1044,1045,1129,1213,1214,1215,1325,1509,1616,1622,2045,705,1128,1130,1372,1417,1463,1817,1818,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,452,1326,1371,1418,2046,1464],"ilvl":59,"quality":2}, -{"id":10146,"name":"Mighty Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,620,621,622,790,791,792,875,876,877,960,962,1045,1046,1047,1215,1216,1217,1465,1566,1567,2008,2009,415,454,961,1372,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,452,453,1418,1464,1510,-329,1326,1373],"ilvl":61,"quality":2}, -{"id":10147,"name":"Mighty Armsplints","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,409,608,609,610,778,779,780,863,864,865,1033,1034,1035,1203,1204,1205,1320,1560,1561,1812,2002,2040,2041,383,1366,1412,1813,2003,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1458,-327,1321,1505],"ilvl":60,"quality":2}, -{"id":10148,"name":"Mighty Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,409,608,609,610,778,779,780,863,864,865,1033,1034,1035,1203,1204,1205,1613,1614,1812,1813,2002,2003,1320,1458,2040,2041,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,1366,1504,1412,1505],"ilvl":58,"quality":2}, -{"id":10149,"name":"Mighty Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,453,454,535,537,620,621,622,705,706,707,790,791,792,875,876,877,960,961,962,1045,1046,1047,1215,1216,1217,1616,1818,2046,452,536,1623,1819,2047,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1372,1373,1418,1464,1510,1419,1511],"ilvl":61,"quality":2}, -{"id":10150,"name":"Mighty Helmet","icon":"inv_helmet_54","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,550,633,634,635,719,720,803,804,805,888,889,890,1058,1059,1060,1143,1144,1145,1229,1230,1333,1426,1627,2015,2016,718,1379,1380,1628,1826,1228,1471,1517,1825,-329,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,549,1334,2053,2054,-326,1425,1472],"ilvl":62,"quality":2}, -{"id":10151,"name":"Mighty Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,422,423,636,637,638,806,807,808,891,892,893,1061,1063,1231,1233,1381,1427,1519,1574,1575,2016,2017,1232,-326,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1062,1334,1335,-328,-327,-324,1473],"ilvl":64,"quality":2}, -{"id":10152,"name":"Mighty Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,465,633,634,635,805,888,889,890,1058,1059,1060,1228,1229,1230,1573,1574,1825,1826,422,467,803,804,973,974,975,1426,2054,-327,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1425,2053,466,1333,1334,1379,1471,1517,-328,-326],"ilvl":63,"quality":2}, -{"id":10153,"name":"Mighty Spaulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,536,537,620,621,622,790,791,792,875,876,877,1045,1131,1215,1216,1217,1616,1623,2008,2009,338,535,1046,1047,1130,1418,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1132,1326,1372,1419,1464,1511,1510],"ilvl":62,"quality":2}, -{"id":10154,"name":"Mercurial Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,452,453,454,535,536,537,620,621,622,706,707,790,791,792,875,876,877,1045,1046,1130,1132,1215,1216,1217,1326,1372,1616,1623,1818,1819,2046,705,1047,1131,1510,2047,-329,-327,-326,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1418,1464,-324,1419,1511],"ilvl":61,"quality":2}, -{"id":10155,"name":"Mercurial Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,415,452,453,454,535,536,537,620,621,622,790,791,792,875,876,877,1045,1046,1047,1216,1217,1326,1373,1566,1567,2008,2009,1215,1372,1511,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1510,-327],"ilvl":61,"quality":2}, -{"id":10156,"name":"Mercurial Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,409,440,441,442,523,524,525,608,609,610,778,779,780,863,864,865,1033,1034,1035,1459,1561,1812,2002,2003,2041,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1320,1321,1366,1367,1412,1458,1504,1560,1813,2040],"ilvl":60,"quality":2}, -{"id":10157,"name":"Mercurial Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,423,468,470,551,553,636,638,806,807,808,891,892,893,1062,1063,1574,1575,2017,422,469,552,637,1061,2016,-329,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1335,1381,-328,-327,1427,1519],"ilvl":64,"quality":2}, -{"id":10158,"name":"Mercurial Guard","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,612,697,952,1122,1123,1208,1615,1414,1460,613,698,953,1207,1677,1678,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1368,-329],"ilvl":64,"quality":2}, -{"id":10159,"name":"Mercurial Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,440,441,442,523,524,525,608,609,610,778,779,780,863,864,1033,1034,1035,1320,1321,1458,1505,1613,1614,2002,2003,409,-327,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,865,1366,1412,1413,1459,1504,1812,2040,2041],"ilvl":59,"quality":2}, -{"id":10160,"name":"Mercurial Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,465,466,467,549,550,633,634,635,720,804,805,888,889,890,1058,1059,1060,1228,1229,1230,1334,1380,1627,1628,2015,2016,548,718,2053,2054,-329,-328,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,719,803,1333,1379,1517,1518,1825,1826,-327,1471,1425,1426],"ilvl":62,"quality":2}, -{"id":10161,"name":"Mercurial Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,535,536,537,620,621,622,705,706,707,790,792,875,876,877,961,962,1045,1047,1215,1216,1616,1623,1818,1819,2046,791,960,1046,1217,1510,2047,-329,-328,-327,-326,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1327,1372,1418,1464,-324],"ilvl":61,"quality":2}, -{"id":10162,"name":"Mercurial Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,422,465,466,467,548,549,550,634,635,803,805,888,889,890,974,1060,1229,1230,1333,1334,1573,1574,1825,2053,804,1058,633,-328,-327,-326,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,973,975,1059,1228,1826,2054,-329,-324],"ilvl":63,"quality":2}, -{"id":10163,"name":"Mercurial Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,452,453,535,536,537,620,621,622,790,791,875,876,877,1046,1047,1130,1131,1132,1372,1418,1616,1623,2009,338,454,792,1045,2008,-329,-328,-327,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1326,1327,1464,1510,-326],"ilvl":62,"quality":2}, -{"id":10164,"name":"Templar Chestplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,342,343,631,632,717,885,886,887,970,971,972,1056,1057,1140,1142,1225,1226,1227,1571,1572,1141,-329,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,630,715,716,1055,1332,1378,1423,1424,1469,1470,1516,-328,1331,1377],"ilvl":58,"quality":2}, -{"id":10165,"name":"Templar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,616,617,701,702,870,871,872,956,957,1040,1041,1042,1126,1127,1210,1211,1212,1462,1508,1564,2044,700,955,1125,1370,-329,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,615,1324,1416,-328,-327,-324],"ilvl":55,"quality":2}, -{"id":10166,"name":"Templar Girdle","icon":"inv_belt_32","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,614,699,701,869,870,871,954,1039,1041,1124,1125,1126,1209,1210,1211,1415,1563,2043,616,955,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,615,700,956,1040,1323,1369,1461,1507],"ilvl":54,"quality":2}, -{"id":10167,"name":"Templar Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,617,700,701,702,870,872,955,956,957,1040,1042,1125,1126,1127,1210,1211,1212,1621,616,871,1041,1370,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,1324,1462,1508,-329,1416],"ilvl":55,"quality":2}, -{"id":10168,"name":"Templar Crown","icon":"inv_crown_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,628,629,712,713,714,882,883,884,967,968,969,1054,1137,1138,1139,1222,1223,1224,1618,1625,2050,2051,1052,1331,-328,-327,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,627,1053,1376,1377,1422,1468,1469,1514,1515,-326],"ilvl":56,"quality":2}, -{"id":10169,"name":"Templar Legplates","icon":"inv_pants_06","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,627,629,713,714,882,883,884,969,1052,1053,1054,1137,1138,1139,1222,1223,1224,1330,1469,1570,1571,2050,2051,-329,-328,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,628,712,967,968,1376,1377,1422,1468,1514,-327],"ilvl":57,"quality":2}, -{"id":10170,"name":"Templar Pauldrons","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,617,700,701,702,870,872,957,1041,1042,1125,1126,1127,1210,1211,1212,1416,1508,1621,-328,-325,-84,-81,-78,-69,-68,-14,-12,-10,615,616,871,955,956,1040,1324,1370,1462],"ilvl":56,"quality":2}, -{"id":10171,"name":"Templar Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,217,219,605,690,691,692,861,862,945,946,947,1030,1031,1115,1116,1117,1200,1201,1202,1457,1503,1558,1559,2039,-327,-326,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,606,607,860,1032,1319,1364,1410,1502,2038],"ilvl":54,"quality":2}, -{"id":10172,"name":"Mystical Mantle","icon":"inv_shoulder_21","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,386,530,531,532,785,786,787,870,871,872,1040,1041,1042,1508,1816,1854,1968,-329,-328,-326,-324,-84,-81,-69,-19,-13,-9,1324,1370,1416,1462,-327],"ilvl":55,"quality":2}, -{"id":10173,"name":"Mystical Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1319,1411,1456,1503,1810,1811,1848,1849,1886,1887,1962,1963,2038,2039,1365,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1364,1457,-329,1318],"ilvl":53,"quality":2}, -{"id":10174,"name":"Mystical Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1365,1411,1810,1811,1848,1849,1887,1962,1963,2038,2039,1410,1503,1886,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1319,1457,1502,1364],"ilvl":52,"quality":2}, -{"id":10175,"name":"Mystical Headwrap","icon":"inv_helmet_61","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1898,1899,1974,1975,2050,2051,1330,1514,1861,1422,-328,-327,-324,-84,-81,-69,-19,-13,-9,1376,1423,1468,1469,-329,1377],"ilvl":55,"quality":2}, -{"id":10176,"name":"Mystical Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,447,614,615,784,785,786,869,870,871,1039,1040,1041,1323,1891,2043,-329,-328,-326,-324,-81,-78,-69,-19,-15,-11,-9,448,616,1369,1415,1461,1507],"ilvl":54,"quality":2}, -{"id":10177,"name":"Mystical Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[418,419,459,460,461,628,629,797,798,799,882,883,884,1052,1053,1054,1331,1423,1898,1899,2050,2051,1422,627,-329,-328,-326,-324,-81,-78,-69,-19,-15,-11,-9,1330,1376,1468,1469,1514],"ilvl":56,"quality":2}, -{"id":10178,"name":"Mystical Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":58,"quality":2}, -{"id":10179,"name":"Mystical Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,411,446,447,448,784,785,786,869,870,871,1039,1040,1041,1323,1507,1815,1853,1967,-328,-327,-326,-324,-84,-81,-69,-19,-15,-11,-9,1369,1461,1415],"ilvl":54,"quality":2}, -{"id":10180,"name":"Mystical Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,529,614,615,616,784,785,786,869,870,871,1039,1040,1041,1507,1891,2043,530,531,1323,1415,1461,-328,-324,-81,-78,-69,-19,-13,-9,1369,-329,-327,-326],"ilvl":52,"quality":2}, -{"id":10181,"name":"Mystical Armor","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":58,"quality":2}, -{"id":10182,"name":"Swashbuckler's Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,368,393,394,420,630,631,632,800,801,802,886,887,1055,1056,1057,1227,1571,1572,2013,2014,367,419,885,1226,1424,1470,-328,-326,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1225,1378,1469,1516,-327,-324,1332],"ilvl":58,"quality":2}, -{"id":10183,"name":"Swashbuckler's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,411,446,447,614,615,616,784,785,786,869,870,871,954,955,1039,1209,1210,1563,2005,1040,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,956,1041,1211,1323,1369,1415,1461,1507],"ilvl":54,"quality":2}, -{"id":10184,"name":"Swashbuckler's Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,605,606,607,775,776,777,860,862,1030,1031,1032,1200,1202,1410,1502,1558,1559,1810,1811,2000,2039,861,1201,1365,1411,2001,-329,-328,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1457,1503,2038,-326,1364],"ilvl":52,"quality":2}, -{"id":10185,"name":"Swashbuckler's Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1607,1810,2000,2038,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9],"ilvl":51,"quality":2}, -{"id":10186,"name":"Swashbuckler's Gloves","icon":"inv_gauntlets_03","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,529,531,614,615,616,699,700,784,785,786,869,870,871,954,955,956,1039,1040,1041,1209,1211,1323,1415,1507,1620,1815,2043,1210,-328,-327,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,447,448,530,701,1369,1461],"ilvl":53,"quality":2}, -{"id":10187,"name":"Swashbuckler's Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,627,628,629,714,797,798,799,883,884,1052,1053,1054,1137,1139,1222,1224,1469,1618,1625,1823,2012,2050,2051,712,882,1138,1223,1330,1331,1422,1468,1822,1514,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,713,1376,1423,1515,2013,1377],"ilvl":55,"quality":2}, -{"id":10188,"name":"Swashbuckler's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[366,367,418,419,459,627,628,629,797,798,799,882,883,884,968,969,1052,1053,1054,1223,1224,1376,1570,1571,1822,1823,2050,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,460,461,967,1222,1330,1331,1377,1422,1468,1469,1514,1515,2051],"ilvl":56,"quality":2}, -{"id":10189,"name":"Swashbuckler's Shoulderpads","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,386,531,532,615,616,617,785,786,787,870,871,872,1040,1042,1125,1126,1127,1210,1211,1212,1324,1508,1621,2006,530,1041,1370,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1416,1462],"ilvl":55,"quality":2}, -{"id":10190,"name":"Swashbuckler's Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,446,447,529,614,615,616,699,700,701,784,785,786,869,870,871,1039,1040,1124,1209,1210,1323,1620,1815,2043,531,1041,1125,1126,530,1211,1461,448,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1369,1415,1507,-329],"ilvl":52,"quality":2}, -{"id":10191,"name":"Crusader's Armguards","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1810,2000,2038,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":51,"quality":2}, -{"id":10192,"name":"Crusader's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,411,446,447,448,529,531,614,615,616,784,785,786,869,870,871,1039,1041,1209,1210,1211,1415,1507,1563,2005,530,1323,-329,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1040,-328,1369],"ilvl":53,"quality":2}, -{"id":10193,"name":"Crusader's Armor","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,418,419,460,461,542,543,544,627,629,797,798,799,883,884,1052,1053,1054,1376,1423,1570,1571,2012,2013,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,393,459,628,882,1330,1331,1377,1422,1468,1514,1515],"ilvl":55,"quality":2}, -{"id":10194,"name":"Crusader's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1607,2000,2038,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1810],"ilvl":50,"quality":2}, -{"id":10195,"name":"Crusader's Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,217,218,219,220,606,608,693,947,948,1117,1118,1201,1202,1203,1612,1613,1671,1673,607,946,1116,1672,691,692,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,211,-324,-328,-327],"ilvl":55,"quality":2}, -{"id":10196,"name":"Crusader's Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,447,448,529,530,531,614,615,616,699,700,701,784,785,786,869,870,871,954,955,956,1039,1040,1209,1210,1211,1323,1415,1507,1620,1815,2043,1041,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1369,1461],"ilvl":52,"quality":2}, -{"id":10197,"name":"Crusader's Belt","icon":"inv_belt_04","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,385,446,447,448,529,530,531,614,615,616,699,701,784,786,869,870,871,1039,1040,1041,1124,1126,1209,1210,1211,1620,1815,2043,1507,-329,-328,-327,-325,-324,-78,-69,-68,-19,-14,-13,-12,-11,-9,700,785,1125,1323,1369,1415,1461],"ilvl":52,"quality":2}, -{"id":10198,"name":"Crusader's Helm","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,456,457,458,539,540,541,624,625,626,709,710,711,794,795,796,879,880,881,1049,1050,1051,1220,1221,1329,1375,1421,1617,1624,1820,1821,2010,2011,2048,-329,-328,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1219,1420,1467,1512,1513,2049],"ilvl":53,"quality":2}, -{"id":10199,"name":"Crusader's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[364,365,416,417,457,458,539,540,541,624,625,626,794,795,796,879,880,881,965,966,1049,1050,1051,1219,1220,1221,1467,1568,1569,1820,1821,2048,2049,456,964,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1329,1374,1375,1421,1466,1513,1420],"ilvl":54,"quality":2}, -{"id":10200,"name":"Crusader's Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,446,447,448,529,530,531,614,615,616,784,785,786,869,870,871,1039,1041,1124,1125,1126,1323,1415,1461,1620,2005,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1040,1369,1507],"ilvl":53,"quality":2}, -{"id":10201,"name":"Overlord's Greaves","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,287,609,610,694,695,696,864,865,866,949,950,951,1034,1036,1119,1120,1121,1204,1205,1206,1613,1614,611,1035,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":48,"quality":2}, -{"id":10202,"name":"Overlord's Vambraces","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,192,603,604,687,857,859,942,1027,1029,1112,1113,1114,1197,1198,1199,1557,602,688,689,944,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,858,943,1028,2037],"ilvl":48,"quality":2}, -{"id":10203,"name":"Overlord's Chestplate","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,340,624,626,709,710,711,879,880,881,964,965,966,1049,1050,1051,1135,1136,1219,1220,1221,1329,1421,1568,1569,339,1375,1467,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,625,1134,1328,1513,-329,1374,1466],"ilvl":52,"quality":2}, -{"id":10204,"name":"Heavy Lamellar Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,217,218,219,220,606,608,693,947,948,1117,1118,1201,1202,1203,1612,1613,1671,1673,607,946,1116,1672,691,692,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,211,-324,-328,-327],"ilvl":55,"quality":2}, -{"id":10205,"name":"Overlord's Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,2042,2041,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":10206,"name":"Overlord's Girdle","icon":"inv_belt_06","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,609,610,611,694,695,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1560,1561,220,696,950,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2041,2040],"ilvl":48,"quality":2}, -{"id":10207,"name":"Overlord's Crown","icon":"inv_crown_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,622,623,707,708,876,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1617,1623,2047,706,877,2048,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,621],"ilvl":49,"quality":2}, -{"id":10208,"name":"Overlord's Legplates","icon":"inv_pants_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,621,622,623,706,707,708,876,877,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,2047,2048,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":10209,"name":"Overlord's Spaulders","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,612,613,696,697,698,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,611,866,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":10210,"name":"Elegant Mantle","icon":"inv_shoulder_10","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,788,789,790,873,874,875,1043,1044,1045,1817,1818,1855,1856,1969,1970,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1417,1463,1509,1510],"ilvl":60,"quality":2}, -{"id":10211,"name":"Elegant Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,413,414,450,451,452,788,789,790,873,874,875,1043,1044,1045,1463,1509,1510,1817,1818,1855,1856,1969,-329,-328,-324,-84,-81,-69,-19,-15,-11,-9,1371,1417,1970],"ilvl":59,"quality":2}, -{"id":10212,"name":"Elegant Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1319,1457,1811,1812,1849,1850,1887,1888,1963,1964,2039,2040,1320,-329,-327,-326,-324,-84,-81,-69,-19,-15,-9,1366,1411,1412,1503,1504],"ilvl":57,"quality":2}, -{"id":10213,"name":"Elegant Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,218,287,383,409,778,779,780,863,864,865,1033,1034,1035,1812,1813,1850,1888,1889,1964,1965,2040,2041,1320,1413,1851,-328,-327,-326,-84,-81,-69,-19,-15,-9,1366,1367,1412,1458,1459,1505,1504],"ilvl":58,"quality":2}, -{"id":10214,"name":"Elegant Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,451,452,618,619,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,1417,-329,-328,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1418,1463,1464,1510,1509],"ilvl":59,"quality":2}, -{"id":10215,"name":"Elegant Robes","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":62,"quality":2}, -{"id":10216,"name":"Elegant Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[387,388,534,535,620,788,789,790,873,874,875,1043,1044,1045,1417,1893,1894,2045,2046,533,619,1325,-329,-327,-324,-81,-78,-69,-19,-13,-9,618,1371,1418,1463,1464,1509,1510,-328,1372],"ilvl":58,"quality":2}, -{"id":10217,"name":"Elegant Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[421,422,466,635,803,804,805,888,889,890,1058,1059,1060,1380,1901,1902,2053,2054,465,467,-328,-327,-81,-78,-69,-19,-15,-11,-9,634,1333,1379,1517,-329,-326,-324,633,1471,1518],"ilvl":61,"quality":2}, -{"id":10218,"name":"Elegant Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":62,"quality":2}, -{"id":10219,"name":"Elegant Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,545,546,547,800,801,802,885,886,887,1055,1056,1057,1823,1824,1861,1862,1899,1900,1975,1976,2051,2052,-327,-326,-324,-84,-81,-69,-19,-13,-9,1331,1378,1424,1469,1470,1515],"ilvl":60,"quality":2}, -{"id":10220,"name":"Nightshade Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,369,370,395,396,422,633,634,635,803,805,888,889,890,1058,1059,1060,1228,1230,1573,1574,2015,421,804,-329,-327,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1229,1380,1425,2016,-324,-326],"ilvl":63,"quality":2}, -{"id":10221,"name":"Nightshade Girdle","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[387,388,450,451,533,534,535,618,619,620,703,704,788,789,790,873,874,875,1043,1044,1045,1129,1213,1214,1215,1325,1509,1616,1622,2045,705,1128,1130,1372,1417,1463,1817,1818,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,452,1326,1371,1418,2046,1464],"ilvl":58,"quality":2}, -{"id":10222,"name":"Nightshade Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,414,450,451,452,618,619,620,788,789,790,873,874,875,958,959,1043,1044,1045,1213,1214,1215,1417,1565,1566,2007,2008,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,960,1325,1371,1418,1463,1510],"ilvl":59,"quality":2}, -{"id":10223,"name":"Nightshade Armguards","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,409,608,609,610,778,779,780,863,864,865,1033,1034,1035,1203,1204,1205,1320,1560,1561,1812,2002,2040,2041,383,1366,1412,1813,2003,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1458,-327,1321,1505],"ilvl":58,"quality":2}, -{"id":10224,"name":"Nightshade Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,214,215,216,217,218,606,607,608,776,777,778,861,863,1031,1032,1033,1201,1202,1203,1612,1613,1812,2001,2002,2039,2040,862,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,213,1366,1411,1412,1457,1458,1504,1811],"ilvl":57,"quality":2}, -{"id":10225,"name":"Nightshade Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,451,452,618,619,620,703,704,788,789,790,873,874,875,958,1043,1044,1045,1213,1214,1215,1371,1372,1463,1464,1509,1616,1622,1817,1818,2045,2046,534,-329,-328,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,450,533,535,705,959,960,1325,1417,1510,-327],"ilvl":59,"quality":2}, -{"id":10226,"name":"Nightshade Helmet","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,550,633,634,635,719,720,803,804,805,888,889,890,1058,1059,1060,1143,1144,1145,1229,1230,1333,1426,1627,2015,2016,718,1379,1380,1628,1826,1228,1471,1517,1825,-329,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,549,1334,2053,2054,-326,1425,1472],"ilvl":61,"quality":2}, -{"id":10227,"name":"Nightshade Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,465,633,634,635,805,888,889,890,1058,1059,1060,1228,1229,1230,1573,1574,1825,1826,422,467,803,804,973,974,975,1426,2054,-327,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1425,2053,466,1333,1334,1379,1471,1517,-328,-326],"ilvl":62,"quality":2}, -{"id":10228,"name":"Nightshade Spaulders","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,387,388,533,534,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1215,1325,1509,1616,1622,2007,2008,1129,535,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1128,1130,1326,1372,1417,1418,1463,1464],"ilvl":60,"quality":2}, -{"id":10229,"name":"Engraved Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,215,216,217,218,438,440,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1559,1560,1811,1812,2001,2002,2039,2040,439,-329,-328,-327,-326,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1319,1320,1365,1366,1411,1412,1457,1458,1504],"ilvl":56,"quality":2}, -{"id":10230,"name":"Engraved Breastplate","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,367,368,393,394,419,420,462,463,464,545,546,547,630,631,632,800,801,802,885,886,887,1055,1056,1057,1331,1423,1571,1572,2013,2014,1516,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1332,1378,1424,1469,1470,1377,1515],"ilvl":60,"quality":2}, -{"id":10231,"name":"Engraved Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,216,217,218,438,439,440,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1365,1366,1411,1612,1613,1812,2039,-329,-326,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,215,1320,1412,1457,1458,1503,1504,1811,2001,2002,2040,-324],"ilvl":55,"quality":2}, -{"id":10232,"name":"Engraved Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,451,452,533,534,535,618,619,620,703,704,705,788,789,790,873,874,875,958,959,960,1043,1044,1045,1213,1214,1215,1372,1463,1616,1622,1817,1818,2046,-329,-328,-327,-326,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1325,1371,1417,1464,1509,1510,2045],"ilvl":58,"quality":2}, -{"id":10233,"name":"Engraved Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,447,448,449,530,531,532,615,616,617,700,701,702,785,786,787,870,871,872,1040,1041,1042,1125,1126,1127,1210,1211,1212,1416,1621,1816,2044,1324,1462,-328,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1370,1508,-327],"ilvl":57,"quality":2}, -{"id":10234,"name":"Engraved Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,450,451,452,533,534,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1325,1371,1509,1565,1566,2007,2008,1372,-329,-328,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,414,1215,1326,1417,1463,1464,-326],"ilvl":58,"quality":2}, -{"id":10235,"name":"Engraved Helm","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,462,463,464,545,546,547,630,631,632,715,716,717,800,802,885,887,1055,1057,1225,1226,1227,1618,1626,1823,1824,2014,2052,1378,-329,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,801,886,1056,1331,1332,1424,1470,1516,2013,2051,1469],"ilvl":59,"quality":2}, -{"id":10236,"name":"Engraved Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[367,368,419,420,462,463,464,545,546,547,631,632,800,802,886,887,970,972,1055,1056,1057,1225,1226,1227,1423,1469,1571,1572,1823,1824,2051,-329,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,630,801,885,971,1332,1378,1424,1470,1516,2052,-328],"ilvl":59,"quality":2}, -{"id":10237,"name":"Engraved Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,387,388,450,451,452,533,534,535,618,619,620,788,789,873,875,1043,1044,1045,1128,1129,1130,1464,1616,1622,2007,2008,1325,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,790,874,1326,1371,1372,1417,1418,1463],"ilvl":58,"quality":2}, -{"id":10238,"name":"Heavy Lamellar Boots","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,614,616,699,869,871,954,955,956,1039,1124,1125,1126,1209,1210,1211,1323,1415,1507,1620,-329,-327,-326,-325,-84,-81,-78,-69,-68,-14,-12,-10,615,700,701,870,1040,1041],"ilvl":52,"quality":2}, -{"id":10239,"name":"Heavy Lamellar Vambraces","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,603,604,688,689,690,858,859,860,943,944,945,1028,1029,1030,1113,1114,1115,1198,1199,1200,1558,2038,605,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":51,"quality":2}, -{"id":10240,"name":"Heavy Lamellar Chestpiece","icon":"inv_chest_leather_08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,628,629,712,714,882,883,884,968,1052,1053,1054,1139,1222,1223,1224,1376,1377,1570,1571,969,1514,1138,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,627,713,967,1137,1330,1422,1468],"ilvl":55,"quality":2}, -{"id":10241,"name":"Heavy Lamellar Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,626,710,711,881,964,965,966,1050,1051,1134,1135,1136,1219,1220,1221,1466,1617,1624,879,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-12,-10,624,625,709,880,1049,1328,1329,1375,1421,1467,1512,1513,2048,2049],"ilvl":53,"quality":2}, -{"id":10242,"name":"Heavy Lamellar Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,614,615,616,699,701,869,870,954,955,1039,1040,1041,1124,1126,1209,1210,1211,1323,1563,2043,956,-329,-328,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,700,871,1125,1369,1415,1461],"ilvl":52,"quality":2}, -{"id":10243,"name":"Heavy Lamellar Girdle","icon":"inv_belt_10","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,-17,-81,-78,-69,-68,-20,-19,-14,-12,-10,2041,2042],"ilvl":51,"quality":2}, -{"id":10244,"name":"Heavy Lamellar Leggings","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,626,710,711,879,880,881,964,966,1049,1050,1051,1134,1135,1136,1219,1220,1221,1568,1569,2049,625,1513,624,-329,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,709,965,1329,2048,-327],"ilvl":54,"quality":2}, -{"id":10245,"name":"Heavy Lamellar Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,614,699,700,869,870,871,954,955,956,1039,1040,1041,1124,1125,1126,1209,1210,1211,1323,1369,1415,1461,1620,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,616,701,1507],"ilvl":53,"quality":2}, -{"id":10246,"name":"Master's Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":65,"quality":2}, -{"id":10247,"name":"Master's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,414,415,452,453,454,790,791,792,875,876,877,1045,1046,1047,1511,1818,1819,1856,1857,1970,1971,1418,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-11,-9,1326,1372,1419,1464],"ilvl":63,"quality":2}, -{"id":10248,"name":"Master's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,383,409,779,780,781,864,865,866,1034,1035,1036,1459,1505,1813,1851,1889,1965,2041,1321,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1367,1413],"ilvl":62,"quality":2}, -{"id":10249,"name":"Master's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,383,409,779,780,781,864,865,866,1034,1035,1036,1321,1505,1813,1851,1889,1965,2041,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1367,1413],"ilvl":61,"quality":2}, -{"id":10250,"name":"Master's Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,549,550,803,804,805,888,889,890,1058,1060,1825,1826,1863,1901,1902,1977,1978,2053,2054,1059,1426,1864,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1333,1379,1471,1472,1517,1518],"ilvl":63,"quality":2}, -{"id":10251,"name":"Master's Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,621,790,791,792,875,876,877,1045,1046,1047,1894,1895,2046,2047,620,622,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1326,1327,1464,1510,-329,-328,1372],"ilvl":63,"quality":2}, -{"id":10252,"name":"Master's Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[422,423,470,636,637,638,806,807,808,891,892,893,1061,1062,1063,1902,1903,2054,2055,-329,-328,-327,-324,-81,-78,-69,-19,-15,-11,-9,468,469,1335],"ilvl":64,"quality":2}, -{"id":10253,"name":"Master's Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,388,389,535,536,537,790,791,792,875,876,877,1045,1046,1047,1372,1373,1818,1819,1856,1857,1970,1971,1464,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1326,1418,1419,1510,1511,-329,1327,1465],"ilvl":63,"quality":2}, -{"id":10254,"name":"Master's Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":65,"quality":2}, -{"id":10255,"name":"Master's Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,535,536,537,620,621,622,790,791,792,875,876,877,1045,1046,1047,1419,1465,1894,1895,2046,2047,1326,1510,-328,-327,-324,-81,-78,-69,-19,-13,-9,1372,1464],"ilvl":62,"quality":2}, -{"id":10256,"name":"Adventurer's Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,383,409,609,610,611,779,780,781,864,865,866,1034,1035,1036,1204,1206,1367,1505,1561,1813,2003,2041,-329,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1205],"ilvl":61,"quality":2}, -{"id":10257,"name":"Adventurer's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,620,621,622,790,791,792,875,876,877,960,962,1045,1046,1047,1215,1216,1217,1465,1566,1567,2008,2009,415,454,961,1372,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,452,453,1418,1464,1510,-329,1326,1373],"ilvl":62,"quality":2}, -{"id":10258,"name":"Adventurer's Cape","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,409,608,609,610,778,779,780,863,864,865,1033,1034,1035,1203,1204,1205,1613,1614,1812,1813,2002,2003,1320,1458,2040,2041,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,1366,1504,1412,1505],"ilvl":60,"quality":2}, -{"id":10259,"name":"Adventurer's Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,453,454,536,620,621,622,705,706,707,790,791,792,875,876,877,1045,1046,1047,1130,1131,1132,1215,1216,1217,1326,1510,1616,1623,1818,2046,537,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,452,535,1372,1418,1819,2047,1464],"ilvl":62,"quality":2}, -{"id":10260,"name":"Adventurer's Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,453,454,535,537,620,621,622,705,706,707,790,791,792,875,876,877,960,961,962,1045,1046,1047,1215,1216,1217,1616,1818,2046,452,536,1623,1819,2047,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1372,1373,1418,1464,1510,1419,1511],"ilvl":63,"quality":2}, -{"id":10261,"name":"Adventurer's Bandana","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,550,633,634,635,719,720,803,804,805,888,889,890,1058,1059,1060,1143,1144,1145,1229,1230,1333,1426,1627,2015,2016,718,1379,1380,1628,1826,1228,1471,1517,1825,-329,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,549,1334,2053,2054,-326,1425,1472],"ilvl":63,"quality":2}, -{"id":10262,"name":"Adventurer's Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[370,371,422,423,469,470,636,637,638,806,807,808,891,892,893,1062,1063,1231,1232,1233,1334,1473,1519,1574,1575,1826,1827,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,468,976,977,978,1061,1335,1380,1381,1426,1472,2054,2055],"ilvl":64,"quality":2}, -{"id":10263,"name":"Adventurer's Shoulders","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,536,537,620,621,622,790,791,792,875,876,877,1045,1131,1215,1216,1217,1616,1623,2008,2009,338,535,1046,1047,1130,1418,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1132,1326,1372,1419,1464,1511,1510],"ilvl":63,"quality":2}, -{"id":10264,"name":"Adventurer's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,422,423,636,637,638,806,807,808,891,892,893,1061,1063,1231,1233,1381,1427,1519,1574,1575,2016,2017,1232,-326,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1062,1334,1335,-328,-327,-324,1473],"ilvl":65,"quality":2}, -{"id":10265,"name":"Masterwork Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,383,409,441,443,524,525,526,609,610,611,779,780,781,864,865,866,1034,1036,1321,1561,1813,2003,2041,442,-329,-328,-327,-326,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1035,1367,1413,1459,1505],"ilvl":62,"quality":2}, -{"id":10266,"name":"Masterwork Breastplate","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,423,468,470,551,553,636,638,806,807,808,891,892,893,1062,1063,1574,1575,2017,422,469,552,637,1061,2016,-329,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1335,1381,-328,-327,1427,1519],"ilvl":65,"quality":2}, -{"id":10267,"name":"Masterwork Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,383,409,441,442,443,524,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1321,1614,2003,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,525,1367,1413,1459,1505,1813,2041],"ilvl":61,"quality":2}, -{"id":10268,"name":"Masterwork Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,535,536,537,620,621,622,705,706,707,790,792,875,876,877,961,962,1045,1047,1215,1216,1616,1623,1818,1819,2046,791,960,1046,1217,1510,2047,-329,-328,-327,-326,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1327,1372,1418,1464,-324],"ilvl":63,"quality":2}, -{"id":10269,"name":"Masterwork Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,452,453,454,535,536,537,620,621,622,706,707,790,791,792,875,876,877,1045,1046,1130,1132,1215,1216,1217,1326,1372,1616,1623,1818,1819,2046,705,1047,1131,1510,2047,-329,-327,-326,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1418,1464,-324,1419,1511],"ilvl":62,"quality":2}, -{"id":10270,"name":"Masterwork Boots","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,415,452,453,454,535,536,537,620,621,622,790,791,792,875,876,877,1045,1046,1047,1216,1217,1326,1373,1566,1567,2008,2009,1215,1372,1511,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1510,-327],"ilvl":63,"quality":2}, -{"id":10271,"name":"Masterwork Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,612,697,952,1122,1123,1208,1615,1414,1460,613,698,953,1207,1677,1678,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1368,-329],"ilvl":65,"quality":2}, -{"id":10272,"name":"Masterwork Circlet","icon":"inv_jewelry_ring_03","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,465,466,467,549,550,633,634,635,720,804,805,888,889,890,1058,1059,1060,1228,1229,1230,1334,1380,1627,1628,2015,2016,548,718,2053,2054,-329,-328,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,719,803,1333,1379,1517,1518,1825,1826,-327,1471,1425,1426],"ilvl":63,"quality":2}, -{"id":10273,"name":"Masterwork Legplates","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[370,371,422,468,469,470,552,553,637,638,807,808,891,892,893,976,978,1061,1063,1231,1232,1233,1473,1574,1575,1827,2054,2055,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,423,551,636,806,977,1062,1427,1826],"ilvl":64,"quality":2}, -{"id":10274,"name":"Masterwork Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,452,453,535,536,537,620,621,622,790,791,875,876,877,1046,1047,1130,1131,1132,1372,1418,1616,1623,2009,338,454,792,1045,2008,-329,-328,-327,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1326,1327,1464,1510,-326],"ilvl":63,"quality":2}, -{"id":10275,"name":"Emerald Breastplate","icon":"inv_chest_cloth_06","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,342,343,631,632,717,885,886,887,970,971,972,1056,1057,1140,1142,1225,1226,1227,1571,1572,1141,-329,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,630,715,716,1055,1332,1378,1423,1424,1469,1470,1516,-328,1331,1377],"ilvl":60,"quality":2}, -{"id":10276,"name":"Emerald Sabatons","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,617,700,701,702,870,872,955,956,957,1040,1042,1125,1126,1127,1210,1211,1212,1621,616,871,1041,1370,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,1324,1462,1508,-329,1416],"ilvl":56,"quality":2}, -{"id":10277,"name":"Emerald Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,616,617,701,702,870,871,872,956,957,1040,1041,1042,1126,1127,1210,1211,1212,1462,1508,1564,2044,700,955,1125,1370,-329,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,615,1324,1416,-328,-327,-324],"ilvl":57,"quality":2}, -{"id":10278,"name":"Emerald Girdle","icon":"inv_belt_04","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,615,616,617,700,702,872,956,957,1041,1042,1125,1126,1127,1210,1211,1212,1508,1564,2044,870,871,955,1040,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,701,1324,1370,1416],"ilvl":55,"quality":2}, -{"id":10279,"name":"Emerald Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,631,632,715,717,887,972,1055,1056,1057,1140,1142,1225,1226,1227,1331,1332,1424,1618,1626,2052,-328,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,630,716,885,886,970,971,1141,1470,2051,-329,-327],"ilvl":58,"quality":2}, -{"id":10280,"name":"Emerald Legplates","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,631,632,715,716,717,885,886,887,970,972,1055,1056,1057,1140,1141,1142,1225,1226,1227,1332,1377,1571,1572,2051,2052,-329,-328,-327,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,630,971,1378,1470,1515],"ilvl":59,"quality":2}, -{"id":10281,"name":"Emerald Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,620,703,704,705,873,874,875,958,959,960,1043,1044,1045,1129,1130,1213,1214,1215,1325,1372,1418,1463,1616,1622,-325,-84,-81,-78,-69,-68,-14,-12,-10,619,1128,1371,1417,1509],"ilvl":58,"quality":2}, -{"id":10282,"name":"Emerald Vambraces","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,693,861,863,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1412,1559,1560,2040,1366,1320,-329,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,607,691,692,862,946,947,1319,1365,1411,1458,1504,2039],"ilvl":56,"quality":2}, -{"id":10287,"name":"Greenweave Mantle","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,135,152,154,508,509,510,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-13,-9],"ilvl":26,"quality":2}, -{"id":10288,"name":"Sage's Circlet","icon":"inv_misc_bandana_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1886,1887,1962,2038,2039,518,519,1963,-84,-81,-69,-19,-13,-9],"ilvl":31,"quality":2}, -{"id":10289,"name":"Durable Hat","icon":"inv_helmet_15","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1886,1887,1962,2038,2039,518,519,1963,-84,-81,-69,-19,-13,-9],"ilvl":32,"quality":2}, -{"id":10298,"name":"Gnomeregan Band","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,136,593,678,761,762,763,933,1101,1186,1188,-68,-13,133,134,135,235,236,248,506,507,508,591,592,676,677,846,847,848,932,1016,1017,1018,1102,1103,1187,1360,1406,1751,1752,2072,2110,-84,-81,-78,-69,-19,-18,-17,-15,-14,-12,-11,-10,-9,931,-329,-328,-327,-326,-324,-29,1314,1452,1498],"ilvl":30,"quality":2}, -{"id":10299,"name":"Gnomeregan Amulet","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,510,594,679,1020,1105,1188,1189,2073,-329,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,132,133,135,151,154,155,248,249,508,509,593,595,678,680,763,764,765,848,849,850,933,934,935,1019,1103,1104,1190,1754,2072],"ilvl":31,"quality":2}, -{"id":10328,"name":"Scarlet Chestpiece","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[8,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":10329,"name":"Scarlet Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":10330,"name":"Scarlet Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3975,"zoneId":796}},{"drop":{"difficulty":1,"npcId":3976,"zoneId":796}}]}, -{"id":10331,"name":"Scarlet Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":10332,"name":"Scarlet Boots","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":10333,"name":"Scarlet Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"setName":"Chain of the Scarlet Crusade","setId":163,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":796,"otherName":"Trash"}}]}, -{"id":10358,"name":"Duracin Bracers","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":10359,"name":"Everlast Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":10362,"name":"Ornate Shield","icon":"spell_holy_powerwordshield","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,218,220,267,608,609,610,693,694,695,948,949,950,1120,1203,1204,1205,1458,1613,1673,1674,287,307,1118,1119,1614,1320,1366,-329,-328,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":58,"quality":2}, -{"id":10363,"name":"Engraved Wall","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,218,220,267,608,609,610,693,694,695,948,949,950,1120,1203,1204,1205,1458,1613,1673,1674,287,307,1118,1119,1614,1320,1366,-329,-328,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":60,"quality":2}, -{"id":10364,"name":"Templar Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,218,220,267,608,609,610,693,694,695,948,949,950,1120,1203,1204,1205,1458,1613,1673,1674,287,307,1118,1119,1614,1320,1366,-329,-328,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":58,"quality":2}, -{"id":10365,"name":"Emerald Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,218,220,267,608,609,610,693,694,695,948,949,950,1120,1203,1204,1205,1458,1613,1673,1674,287,307,1118,1119,1614,1320,1366,-329,-328,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":59,"quality":2}, -{"id":10366,"name":"Demon Guard","icon":"spell_shadow_ragingscream","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,307,609,611,694,696,949,951,1119,1121,1205,1206,1321,1614,1676,1120,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,610,695,950,1204,1367,1459,1675,-329,-327],"ilvl":63,"quality":2}, -{"id":10367,"name":"Hyperion Shield","icon":"spell_holy_powerwordshield","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,612,697,952,1122,1123,1208,1615,1414,1460,613,698,953,1207,1677,1678,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1368,-329],"ilvl":65,"quality":2}, -{"id":10368,"name":"Imbued Plate Armor","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[15,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":10369,"name":"Imbued Plate Gauntlets","icon":"inv_gauntlets_06","type":7,"armorType":4,"stats":[18,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":10370,"name":"Imbued Plate Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[13,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":10371,"name":"Imbued Plate Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[13,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":10372,"name":"Imbued Plate Helmet","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":10373,"name":"Imbued Plate Leggings","icon":"inv_pants_08","type":9,"armorType":4,"stats":[18,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":10374,"name":"Imbued Plate Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":4,"stats":[13,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":10375,"name":"Imbued Plate Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":10376,"name":"Commander's Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,619,620,704,705,873,874,875,958,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1616,1622,-327,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,703,1325,1371,1417],"ilvl":60,"quality":2}, -{"id":10377,"name":"Commander's Vambraces","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,220,287,307,608,609,610,693,695,863,864,865,948,949,950,1033,1034,1035,1118,1119,1120,1203,1204,1205,1504,1560,1561,2040,1412,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,694,1320,1321,1366,1367,1413,1458,2041],"ilvl":59,"quality":2}, -{"id":10378,"name":"Commander's Armor","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,633,635,720,888,890,974,975,1058,1059,1060,1143,1145,1228,1229,1230,1518,1573,1574,719,718,1517,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,634,889,973,1144,1425,-327],"ilvl":63,"quality":2}, -{"id":10379,"name":"Commander's Helm","icon":"inv_helmet_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,633,635,720,889,890,973,975,1058,1060,1144,1145,1228,1229,1230,1425,1517,1627,1628,2053,719,888,974,1143,1334,-328,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,634,718,1059,1379,1380,2054,-327,-324],"ilvl":61,"quality":2}, -{"id":10380,"name":"Commander's Gauntlets","icon":"inv_gauntlets_32","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,618,619,703,704,705,873,874,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,2045,2046,620,-329,-328,-327,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,875,958,1325,1371,1417,1418,1463,1509],"ilvl":60,"quality":2}, -{"id":10381,"name":"Commander's Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,618,704,705,873,875,958,1043,1044,1045,1129,1130,1213,1214,1215,1371,1463,1565,1566,2045,2046,874,959,960,1128,-329,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,312,619,620,703,1325,1417],"ilvl":59,"quality":2}, -{"id":10382,"name":"Commander's Leggings","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,634,635,720,888,889,890,975,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,1334,2054,718,2053,-329,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,633,719,973,974,1517,-327],"ilvl":62,"quality":2}, -{"id":10383,"name":"Commander's Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,620,621,705,706,876,877,960,961,962,1045,1046,1047,1130,1131,1132,1215,1216,1217,1419,1465,1616,1623,338,622,707,875,-329,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,1326,1327,1372,1510,-327,-326,1511],"ilvl":61,"quality":2}, -{"id":10384,"name":"Hyperion Armor","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[320,321,345,346,636,638,721,722,723,891,893,976,977,978,1061,1063,1148,1231,1232,1233,1427,1574,1575,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,637,892,1062,1146,1147,1381,1519],"ilvl":65,"quality":2}, -{"id":10385,"name":"Hyperion Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,621,622,705,706,707,875,876,877,960,961,962,1045,1047,1130,1131,1132,1215,1216,1217,1418,1616,1623,620,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,1046,1326,1510],"ilvl":62,"quality":2}, -{"id":10386,"name":"Hyperion Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[312,313,620,621,622,706,707,875,876,877,961,1045,1046,1047,1131,1132,1215,1216,1217,1418,1566,1567,962,1130,2046,-329,-328,-327,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,705,960,1372,2047,-324],"ilvl":62,"quality":2}, -{"id":10387,"name":"Hyperion Girdle","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[312,313,620,621,622,705,706,707,875,876,877,960,961,962,1045,1046,1047,1130,1131,1132,1215,1216,1217,1511,1566,1567,2046,-329,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1326,1327,1418,2047],"ilvl":61,"quality":2}, -{"id":10388,"name":"Hyperion Helm","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,633,635,720,889,890,973,975,1058,1060,1144,1145,1228,1229,1230,1425,1517,1627,1628,2053,719,888,974,1143,1334,-328,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,634,718,1059,1379,1380,2054,-327,-324],"ilvl":63,"quality":2}, -{"id":10389,"name":"Hyperion Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[320,321,636,638,723,891,892,893,976,977,978,1061,1062,1063,1147,1148,1231,1232,1233,1335,1472,1574,1575,2055,-329,-328,-327,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,637,721,722,1146,1426,1473,1518,2054],"ilvl":64,"quality":2}, -{"id":10390,"name":"Hyperion Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,620,621,705,706,876,877,960,961,962,1045,1046,1047,1130,1131,1132,1215,1216,1217,1419,1465,1616,1623,338,622,707,875,-329,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,1326,1327,1372,1510,-327,-326,1511],"ilvl":63,"quality":2}, -{"id":10391,"name":"Hyperion Vambraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,220,287,307,608,609,610,693,695,863,864,865,948,949,950,1033,1034,1035,1118,1119,1120,1203,1204,1205,1504,1560,1561,2040,1412,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,694,1320,1321,1366,1367,1413,1458,2041],"ilvl":60,"quality":2}, -{"id":10399,"name":"Blackened Defias Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"setName":"Defias Leather","setId":161,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":639,"zoneId":1581}}]}, -{"id":10400,"name":"Blackened Defias Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"setName":"Defias Leather","setId":161}, -{"id":10401,"name":"Blackened Defias Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"setName":"Defias Leather","setId":161}, -{"id":10402,"name":"Blackened Defias Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"setName":"Defias Leather","setId":161}, -{"id":10403,"name":"Blackened Defias Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"setName":"Defias Leather","setId":161,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":647,"zoneId":1581}}]}, -{"id":10404,"name":"Durable Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,-81,-78,-69,-19,-13,-9],"ilvl":30,"quality":2}, -{"id":10405,"name":"Bandit Shoulders","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":10406,"name":"Scaled Leather Headband","icon":"inv_misc_bandage_11","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,435,437,518,519,520,603,604,605,689,690,773,774,775,858,859,860,1028,1029,1030,1200,1607,1612,1810,2000,2001,2038,2039,436,1811,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,688,1198,1199],"ilvl":32,"quality":2}, -{"id":10407,"name":"Raider's Shoulderpads","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":10408,"name":"Banded Helm","icon":"inv_helmet_36","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,603,604,605,688,689,690,858,859,860,943,944,945,1030,1113,1114,1115,1198,1199,1200,1607,1612,2038,2039,1028,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,1029],"ilvl":32,"quality":2}, -{"id":10409,"name":"Banded Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,599,682,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,597,-325,-84,-81,-78,-69,-68,-14,-12,-10,598,683,1023],"ilvl":32,"quality":2}, -{"id":10410,"name":"Leggings of the Fang","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"setName":"Embrace of the Viper","setId":162,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3669,"zoneId":718}}]}, -{"id":10411,"name":"Footpads of the Fang","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"setName":"Embrace of the Viper","setId":162,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3673,"zoneId":718}}]}, -{"id":10412,"name":"Belt of the Fang","icon":"inv_belt_30","type":8,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"setName":"Embrace of the Viper","setId":162,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3671,"zoneId":718}}]}, -{"id":10413,"name":"Gloves of the Fang","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"setName":"Embrace of the Viper","setId":162,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":718,"otherName":"Trash"}}]}, -{"id":10418,"name":"Glimmering Mithril Insignia","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"unique":true,"sources":[{"quest":{"id":3321,"name":"Did You Lose This?"}}]}, -{"id":10421,"name":"Rough Copper Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":12260}},{"crafted":{"profession":2,"spellId":12260}}]}, -{"id":10423,"name":"Silvered Bronze Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[7,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":12259}},{"crafted":{"profession":2,"spellId":12259}}]}, -{"id":10455,"name":"Chained Essence of Eranikus","icon":"inv_stone_03","type":12,"stats":[0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3}, -{"id":10461,"name":"Shadowy Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,12,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":10462,"name":"Shadowy Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,7,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":10499,"name":"Bright-Eye Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12587}},{"crafted":{"profession":4,"spellId":12587}}]}, -{"id":10500,"name":"Fire Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12594}},{"crafted":{"profession":4,"spellId":12594}}]}, -{"id":10501,"name":"Catseye Ultra Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12607}},{"crafted":{"profession":4,"spellId":12607}}]}, -{"id":10502,"name":"Spellpower Goggles Xtreme","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12615}},{"crafted":{"profession":4,"spellId":12615}}]}, -{"id":10503,"name":"Rose Colored Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12618}},{"crafted":{"profession":4,"spellId":12618}}]}, -{"id":10504,"name":"Green Lens","icon":"inv_helmet_44","type":1,"armorType":1,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1822,1860,1861,1898,1974,2012,2013,2050,2051,2090,2091,2129,-78,-19,-15,-12,-9,1823,1899,1975,2128],"ilvl":49,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12622}},{"crafted":{"profession":4,"spellId":12622}}]}, -{"id":10506,"name":"Deepdive Helmet","icon":"inv_helmet_49","type":1,"armorType":1,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12617}},{"crafted":{"profession":4,"spellId":12617}}]}, -{"id":10508,"name":"Mithril Blunderbuss","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":2.9,"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12595}},{"crafted":{"profession":4,"spellId":12595}}]}, -{"id":10510,"name":"Mithril Heavy-Bore Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2.9,"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12614}},{"crafted":{"profession":4,"spellId":12614}}]}, -{"id":10518,"name":"Parachute Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12616}},{"crafted":{"profession":4,"spellId":12616}}]}, -{"id":10542,"name":"Goblin Mining Helmet","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12717}},{"crafted":{"profession":4,"spellId":12717}}]}, -{"id":10543,"name":"Goblin Construction Helmet","icon":"inv_helmet_60","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12718}},{"crafted":{"profession":4,"spellId":12718}}]}, -{"id":10544,"name":"Thistlewood Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.9,"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":10545,"name":"Gnomish Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12897}},{"crafted":{"profession":4,"spellId":12897}}]}, -{"id":10547,"name":"Camping Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.4,"ilvl":7,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":10549,"name":"Rancher's Trousers","icon":"inv_pants_cloth_41v2","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":314,"name":"Protecting the Herd"}}],"factionRestriction":1}, -{"id":10550,"name":"Wooly Mittens","icon":"inv_gauntlets_02","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1,"sources":[{"quest":{"id":312,"name":"Tundra MacGrann's Stolen Stash"}}]}, -{"id":10553,"name":"Foreman Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":10554,"name":"Foreman Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":10567,"name":"Quillshooter","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":2.8,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10570,"name":"Manslayer","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":152,"weaponSpeed":3.2,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10571,"name":"Ebony Boneclub","icon":"inv_misc_bone_10","type":13,"weaponType":4,"handType":2,"stats":[7,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10572,"name":"Freezing Shard","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.3,"ilvl":45,"quality":3,"classAllowlist":[3],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10573,"name":"Boneslasher","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10574,"name":"Corpseshroud","icon":"inv_misc_cape_04","type":1,"armorType":1,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10576,"name":"Mithril Mechanical Dragonling","icon":"inv_misc_head_dragon_blue","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":12624}},{"crafted":{"profession":4,"spellId":12624}}]}, -{"id":10577,"name":"Goblin Mortar","icon":"inv_musket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":12716}}]}, -{"id":10578,"name":"Thoughtcast Boots","icon":"inv_boots_01","type":10,"armorType":1,"stats":[0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10581,"name":"Death's Head Vestment","icon":"inv_chest_leather_08","type":5,"armorType":1,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10582,"name":"Briar Tredders","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10583,"name":"Quillward Harness","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10584,"name":"Stormgale Fists","icon":"inv_gauntlets_11","type":7,"armorType":4,"stats":[13,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":722,"otherName":"Trash"}}]}, -{"id":10585,"name":"Goblin Radio","icon":"spell_holy_dizzy","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12722}}]}, -{"id":10587,"name":"Goblin Bomb Dispenser","icon":"inv_gizmo_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12755}},{"crafted":{"profession":4,"spellId":12755}}]}, -{"id":10588,"name":"Goblin Rocket Helmet","icon":"inv_helmet_49","type":1,"armorType":1,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12758}},{"crafted":{"profession":4,"spellId":12758}}]}, -{"id":10623,"name":"Winter's Bite","icon":"inv_axe_07","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10624,"name":"Stinging Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,4,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":173,"weaponSpeed":2.8,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10625,"name":"Stealthblade","icon":"inv_sword_41","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.4,"ilvl":55,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10626,"name":"Ragehammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":211,"weaponSpeed":3.7,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10627,"name":"Bludgeon of the Grinning Dog","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":205,"weaponSpeed":3.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10628,"name":"Deathblow","icon":"inv_sword_31","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":199,"weaponSpeed":3.5,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10629,"name":"Mistwalker Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,13,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10630,"name":"Soulcatcher Halo","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,14,21,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10631,"name":"Murkwater Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,16,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10632,"name":"Slimescale Bracers","icon":"inv_jewelry_ring_03","type":6,"armorType":3,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10633,"name":"Silvershell Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[24,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10634,"name":"Mindseye Circle","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10635,"name":"Painted Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":10636,"name":"Nomadic Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":2}, -{"id":10637,"name":"Brewer's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":10638,"name":"Long Draping Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":10645,"name":"Gnomish Death Ray","icon":"inv_gizmo_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12759}},{"crafted":{"profession":4,"spellId":12759}}]}, -{"id":10652,"name":"Will of the Mountain Giant","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":4,"stats":[20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":149,"weaponSpeed":2.8,"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":10653,"name":"Trailblazer Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"factionRestriction":2}, -{"id":10654,"name":"Jutebraid Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"factionRestriction":2}, -{"id":10655,"name":"Sedgeweed Britches","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":10656,"name":"Barkmail Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":10657,"name":"Talbar Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":10658,"name":"Quagmire Galoshes","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":10659,"name":"Shard of the Splithooves","icon":"inv_misc_gem_diamond_02","type":12,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":10686,"name":"Aegis of Battle","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,12,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":2938,"name":"Venom to the Undercity"}}],"factionRestriction":2}, -{"id":10696,"name":"Enchanted Azsharite Felbane Sword","icon":"inv_weapon_shortblade_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":93,"weaponSpeed":2,"ilvl":60,"quality":2,"sources":[{"quest":{"id":3625,"name":"Enchanted Azsharite Fel Weaponry"}}]}, -{"id":10697,"name":"Enchanted Azsharite Felbane Dagger","icon":"inv_sword_31","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.5,"ilvl":60,"quality":2,"sources":[{"quest":{"id":3625,"name":"Enchanted Azsharite Fel Weaponry"}}]}, -{"id":10698,"name":"Enchanted Azsharite Felbane Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":157,"weaponSpeed":2.8,"ilvl":60,"quality":2,"sources":[{"quest":{"id":3625,"name":"Enchanted Azsharite Fel Weaponry"}}]}, -{"id":10700,"name":"Encarmine Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":10701,"name":"Boots of Zua'tec","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,0,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":10702,"name":"Enormous Ogre Boots","icon":"inv_boots_leather_12v2","type":10,"armorType":2,"stats":[0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{}}]}, -{"id":10703,"name":"Fiendish Skiv","icon":"inv_sword_21","type":13,"weaponType":2,"handType":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.9,"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":10704,"name":"Chillnail Splinter","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":1.4,"ilvl":46,"quality":2,"factionRestriction":2}, -{"id":10705,"name":"Firwillow Wristbands","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,15,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"factionRestriction":1}, -{"id":10706,"name":"Nightscale Girdle","icon":"inv_belt_33","type":8,"armorType":3,"stats":[14,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"factionRestriction":1}, -{"id":10707,"name":"Steelsmith Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":10708,"name":"Skullspell Orb","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":10709,"name":"Pyrestone Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"factionRestriction":2}, -{"id":10710,"name":"Dragonclaw Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,5,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{}}]}, -{"id":10711,"name":"Dragon's Blood Necklace","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3}, -{"id":10716,"name":"Gnomish Shrink Ray","icon":"inv_gizmo_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12899}},{"crafted":{"profession":4,"spellId":12899}}]}, -{"id":10720,"name":"Gnomish Net-o-Matic Projector","icon":"inv_misc_net_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12902}},{"crafted":{"profession":4,"spellId":12902}}]}, -{"id":10721,"name":"Gnomish Harm Prevention Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12903}},{"crafted":{"profession":4,"spellId":12903}}]}, -{"id":10723,"name":"Gnomish Ham Radio","icon":"spell_holy_dizzy","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12904}}]}, -{"id":10724,"name":"Gnomish Rocket Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12905}},{"crafted":{"profession":4,"spellId":12905}}]}, -{"id":10725,"name":"Gnomish Battle Chicken","icon":"spell_magic_polymorphchicken","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12906}},{"crafted":{"profession":4,"spellId":12906}}]}, -{"id":10726,"name":"Gnomish Mind Control Cap","icon":"inv_helmet_49","type":1,"armorType":1,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12907}},{"crafted":{"profession":4,"spellId":12907}}]}, -{"id":10727,"name":"Goblin Dragon Gun","icon":"spell_fire_flamebolt","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":12908}},{"crafted":{"profession":4,"spellId":12908}}]}, -{"id":10739,"name":"Ring of Fortitude","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,10,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":10740,"name":"Centurion Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":10741,"name":"Lordrec Helmet","icon":"inv_helmet_11","type":1,"armorType":2,"stats":[0,16,10,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":10742,"name":"Dragonflight Leggings","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,9,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":10743,"name":"Drakefire Headguard","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,5,9,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":10744,"name":"Axe of the Ebon Drake","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":1.9,"ilvl":51,"quality":2}, -{"id":10745,"name":"Kaylari Shoulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":10746,"name":"Runesteel Vambraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[2,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":10747,"name":"Teacher's Sash","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":10748,"name":"Wanderlust Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":10749,"name":"Avenguard Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,5,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3}, -{"id":10750,"name":"Lifeforce Dirk","icon":"inv_sword_21","type":13,"weaponType":2,"handType":2,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":1.6,"ilvl":54,"quality":3}, -{"id":10751,"name":"Gemburst Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,26,5,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3}, -{"id":10758,"name":"X'caliboar","icon":"inv_sword_45","type":13,"weaponType":9,"handType":4,"stats":[20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7354,"zoneId":722}}]}, -{"id":10760,"name":"Swine Fists","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7356,"zoneId":722}}]}, -{"id":10761,"name":"Coldrage Dagger","icon":"inv_sword_34","type":13,"weaponType":2,"handType":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":1.8,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7358,"zoneId":722}}]}, -{"id":10762,"name":"Robes of the Lich","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,12,17,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7358,"zoneId":722}}]}, -{"id":10763,"name":"Icemetal Barbute","icon":"inv_helmet_13","type":1,"armorType":4,"stats":[14,0,14,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7358,"zoneId":722}}]}, -{"id":10764,"name":"Deathchill Armor","icon":"inv_chest_plate12","type":5,"armorType":3,"stats":[0,0,12,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7358,"zoneId":722}}]}, -{"id":10765,"name":"Bonefingers","icon":"inv_gauntlets_09","type":7,"armorType":2,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7358,"zoneId":722}}]}, -{"id":10766,"name":"Plaguerot Sprig","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.6,"ilvl":45,"quality":3,"classAllowlist":[3],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7356,"zoneId":722}}]}, -{"id":10767,"name":"Savage Boar's Guard","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[7,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,1353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7354,"zoneId":722}}]}, -{"id":10768,"name":"Boar Champion's Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,13,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7354,"zoneId":722}}]}, -{"id":10769,"name":"Glowing Eye of Mordresh","icon":"inv_misc_orb_03","type":2,"stats":[0,0,4,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7357,"zoneId":722}}]}, -{"id":10770,"name":"Mordresh's Lifeless Skull","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7357,"zoneId":722}}]}, -{"id":10771,"name":"Deathmage Sash","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,8,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7357,"zoneId":722}}]}, -{"id":10772,"name":"Glutton's Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8567,"zoneId":722}}]}, -{"id":10774,"name":"Fleshhide Shoulders","icon":"inv_shoulder_28","type":3,"armorType":2,"stats":[0,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8567,"zoneId":722}}]}, -{"id":10775,"name":"Carapace of Tuten'kash","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[14,0,14,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7355,"zoneId":722}}]}, -{"id":10776,"name":"Silky Spider Cape","icon":"inv_misc_cape_17","type":4,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7355,"zoneId":722}}]}, -{"id":10777,"name":"Arachnid Gloves","icon":"inv_gauntlets_32","type":7,"armorType":2,"stats":[0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,609,610,611,695,696,779,780,781,864,865,866,949,950,951,1034,1035,1036,1204,1205,1206,1614,1813,2040,2041,525,526,694,1613,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1812],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7355,"zoneId":722}}]}, -{"id":10778,"name":"Necklace of Sanctuary","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":10779,"name":"Demon's Blood","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":10780,"name":"Mark of Hakkar","icon":"inv_jewelry_ring_05","type":11,"stats":[10,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10781,"name":"Hakkari Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,16,11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10782,"name":"Hakkari Shroud","icon":"inv_helmet_38","type":1,"armorType":1,"stats":[0,0,11,11,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1477,"otherName":"Trash"}}]}, -{"id":10783,"name":"Atal'ai Spaulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,11,11,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,80,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10784,"name":"Atal'ai Breastplate","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,16,16,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,367,368,393,394,419,420,462,463,464,545,546,547,630,631,632,800,801,802,885,886,887,1055,1056,1057,1331,1423,1571,1572,2013,2014,1516,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1332,1378,1424,1469,1470,1377,1515],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10785,"name":"Atal'ai Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,21,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10786,"name":"Atal'ai Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10787,"name":"Atal'ai Gloves","icon":"inv_bracer_18","type":7,"armorType":1,"stats":[0,0,11,16,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10788,"name":"Atal'ai Girdle","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5716,"zoneId":1477}}]}, -{"id":10795,"name":"Drakeclaw Band","icon":"inv_jewelry_ring_04","type":11,"stats":[8,0,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":10796,"name":"Drakestone","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":10797,"name":"Firebreather","icon":"inv_sword_09","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":10798,"name":"Atal'alarion's Tusk Ring","icon":"inv_belt_15","type":8,"armorType":4,"stats":[18,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8580,"zoneId":1477}}]}, -{"id":10799,"name":"Headspike","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,16,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":171,"weaponSpeed":3,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8580,"zoneId":1477}}]}, -{"id":10800,"name":"Darkwater Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8580,"zoneId":1477}}]}, -{"id":10801,"name":"Slitherscale Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5708,"zoneId":1477}}]}, -{"id":10802,"name":"Wingveil Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5708,"zoneId":1477}}]}, -{"id":10803,"name":"Blade of the Wretched","icon":"inv_sword_38","type":13,"weaponType":9,"handType":2,"stats":[0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5711,"zoneId":1477}}]}, -{"id":10804,"name":"Fist of the Damned","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5711,"zoneId":1477}}]}, -{"id":10805,"name":"Eater of the Dead","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5711,"zoneId":1477}}]}, -{"id":10806,"name":"Vestments of the Atal'ai Prophet","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,10,10,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5710,"zoneId":1477}}]}, -{"id":10807,"name":"Kilt of the Atal'ai Prophet","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,14,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5710,"zoneId":1477}}]}, -{"id":10808,"name":"Gloves of the Atal'ai Prophet","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5710,"zoneId":1477}}]}, -{"id":10820,"name":"Jackseed Belt","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":10821,"name":"Sower's Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":10823,"name":"Vanquisher's Sword","icon":"inv_sword_35","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":2.2,"ilvl":44,"quality":3}, -{"id":10824,"name":"Amberglow Talisman","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,1,7,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3}, -{"id":10826,"name":"Staff of Lore","icon":"inv_staff_27","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,5,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":139,"weaponSpeed":3.1,"ilvl":48,"quality":2}, -{"id":10827,"name":"Surveyor's Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,11,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":10828,"name":"Dire Nail","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.4,"ilvl":55,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10829,"name":"The Dragon's Eye","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10833,"name":"Horns of Eranikus","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[0,0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10835,"name":"Crest of Supremacy","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10836,"name":"Rod of Corrosion","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":1.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10837,"name":"Tooth of Eranikus","icon":"inv_axe_07","type":13,"weaponType":1,"handType":2,"stats":[7,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10838,"name":"Might of Hakkar","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[10,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10842,"name":"Windscale Sarong","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,14,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10843,"name":"Featherskin Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,6,14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10844,"name":"Spire of Hakkar","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[16,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":194,"weaponSpeed":3.4,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10845,"name":"Warrior's Embrace","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[16,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10846,"name":"Bloodshot Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,16,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":10847,"name":"Dragon's Call","icon":"inv_sword_38","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":136,"weaponSpeed":2.6,"ilvl":55,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5709,"zoneId":1477}}]}, -{"id":10919,"name":"Apothecary Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":11086,"name":"Jang'thraze the Protector","icon":"inv_sword_43","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7267,"zoneId":1176}}]}, -{"id":11118,"name":"Archaedic Stone","icon":"inv_stone_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,177,182,187,192,219,254,435,436,437,517,518,519,522,602,603,604,607,687,688,689,691,772,773,774,776,777,857,858,859,860,942,943,944,1027,1028,1029,1112,1113,1114,1115,1197,1198,1199,1201,1320,1366,1458,1459,1761,1762,1763,1766,2077,2115,2116,-81,-78,-68,1321,1367,1412,1413,1504,1505,-329,-328,-327,-326,-324,-84,-69,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,178,183,188,211,213,215,217,438,520,521,605,606,690,692,775,861,862,945,946,1030,1031,1032,1116,1117,1200,1202,2079,2117],"ilvl":40,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":2748,"zoneId":1337}}]}, -{"id":11120,"name":"Belgrom's Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":2.8,"ilvl":55,"quality":2,"factionRestriction":2}, -{"id":11121,"name":"Darkwater Talwar","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":46,"weaponSpeed":2.2,"ilvl":25,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4831,"zoneId":719}}]}, -{"id":11122,"name":"Carrot on a Stick","icon":"inv_misc_food_54","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"unique":true}, -{"id":11123,"name":"Rainstrider Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,14,21,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3}, -{"id":11124,"name":"Helm of Exile","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,11,27,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3}, -{"id":11187,"name":"Stemleaf Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":11189,"name":"Woodland Robes","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11190,"name":"Viny Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":11191,"name":"Farmer's Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":88,"name":"Princess Must Die!"}}],"factionRestriction":1}, -{"id":11192,"name":"Outfitter Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11193,"name":"Blazewind Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,23,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":11194,"name":"Prismscale Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,3,4,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":11195,"name":"Warforged Chestplate","icon":"inv_chest_chain_16","type":5,"armorType":4,"stats":[24,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":11196,"name":"Mindburst Medallion","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,5,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":11199,"name":"Engineer's Shield 1","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":11200,"name":"Engineer's Shield 2","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":11201,"name":"Engineer's Shield 3","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":11229,"name":"Brightscale Girdle","icon":"inv_belt_06","type":8,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":11262,"name":"Orb of Lorica","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3,"factionRestriction":1}, -{"id":11263,"name":"Nether Force Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.5,"ilvl":40,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":1952,"name":"Mage's Wand"}}]}, -{"id":11265,"name":"Cragwood Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":105,"weaponSpeed":2.8,"ilvl":42,"quality":2,"factionRestriction":2}, -{"id":11287,"name":"Lesser Magic Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.5,"ilvl":10,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":3,"spellId":14293}},{"crafted":{"profession":3,"spellId":14293}}]}, -{"id":11288,"name":"Greater Magic Wand","icon":"inv_staff_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":3,"spellId":14807}},{"crafted":{"profession":3,"spellId":14807}}]}, -{"id":11289,"name":"Lesser Mystic Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.3,"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":3,"spellId":14809}},{"crafted":{"profession":3,"spellId":14809}}]}, -{"id":11290,"name":"Greater Mystic Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":76,"weaponSpeed":2,"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":3,"spellId":14810}},{"crafted":{"profession":3,"spellId":14810}}]}, -{"id":11302,"name":"Uther's Strength","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"unique":true}, -{"id":11303,"name":"Fine Shortbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.7,"ilvl":16,"quality":2}, -{"id":11304,"name":"Fine Longbow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2.7,"ilvl":19,"quality":2}, -{"id":11305,"name":"Dense Shortbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":1.9,"ilvl":35,"quality":2}, -{"id":11306,"name":"Sturdy Recurve","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.2,"ilvl":32,"quality":2}, -{"id":11307,"name":"Massive Longbow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.8,"ilvl":47,"quality":2}, -{"id":11308,"name":"Sylvan Shortbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2,"ilvl":49,"quality":2}, -{"id":11310,"name":"Flameseer Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,13,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7291,"zoneId":1337}}]}, -{"id":11311,"name":"Emberscale Cape","icon":"inv_misc_cape_08","type":4,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7291,"zoneId":1337}}]}, -{"id":11411,"name":"Large Bear Bone","icon":"inv_misc_bone_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2.4,"ilvl":1}, -{"id":11469,"name":"Bloodband Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,4,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":11475,"name":"Wine-Stained Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":11502,"name":"Loreskin Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,10,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"factionRestriction":2}, -{"id":11508,"name":"Gamemaster's Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":11522,"name":"Silver Totem of Aquementas","icon":"inv_wand_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"sources":[{"quest":{}}]}, -{"id":11603,"name":"Vilerend Slicer","icon":"ability_whirlwind","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3}, -{"id":11604,"name":"Dark Iron Plate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,80,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15296}},{"crafted":{"profession":2,"spellId":15296}}]}, -{"id":11605,"name":"Dark Iron Shoulders","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[13,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15295}},{"crafted":{"profession":2,"spellId":15295}}]}, -{"id":11606,"name":"Dark Iron Mail","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,21,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15293}},{"crafted":{"profession":2,"spellId":15293}}]}, -{"id":11607,"name":"Dark Iron Sunderer","icon":"inv_weapon_halberd_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":153,"weaponSpeed":2.6,"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15294}},{"crafted":{"profession":2,"spellId":15294}}]}, -{"id":11608,"name":"Dark Iron Pulverizer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":211,"weaponSpeed":3.7,"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15292}},{"crafted":{"profession":2,"spellId":15292}}]}, -{"id":11623,"name":"Spritecaster Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9319,"zoneId":1584}}]}, -{"id":11624,"name":"Kentic Amice","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9018,"zoneId":1584}}]}, -{"id":11625,"name":"Enthralled Sphere","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9018,"zoneId":1584}}]}, -{"id":11626,"name":"Blackveil Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9018,"zoneId":1584}}]}, -{"id":11627,"name":"Fleetfoot Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9319,"zoneId":1584}}]}, -{"id":11628,"name":"Houndmaster's Bow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.7,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9319,"zoneId":1584}}]}, -{"id":11629,"name":"Houndmaster's Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.7,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9319,"zoneId":1584}}]}, -{"id":11631,"name":"Stoneshell Guard","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[8,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9025,"zoneId":1584}}]}, -{"id":11632,"name":"Earthslag Shoulders","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[10,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9025,"zoneId":1584}}]}, -{"id":11633,"name":"Spiderfang Carapace","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[20,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9032,"zoneId":1584}}]}, -{"id":11634,"name":"Silkweb Gloves","icon":"inv_gauntlets_12","type":7,"armorType":1,"stats":[0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9032,"zoneId":1584}}]}, -{"id":11635,"name":"Hookfang Shanker","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.4,"ilvl":52,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9032,"zoneId":1584}}]}, -{"id":11662,"name":"Ban'thok Sash","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9030,"zoneId":1584}}]}, -{"id":11665,"name":"Ogreseer Fists","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9030,"zoneId":1584}}]}, -{"id":11669,"name":"Naglering","icon":"inv_jewelry_ring_05","type":11,"stats":[6,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8983,"zoneId":1584}}]}, -{"id":11675,"name":"Shadefiend Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9031,"zoneId":1584}}]}, -{"id":11677,"name":"Graverot Cape","icon":"inv_misc_cape_19","type":4,"stats":[0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9031,"zoneId":1584}}]}, -{"id":11678,"name":"Carapace of Anub'shiah","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[16,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9031,"zoneId":1584}}]}, -{"id":11679,"name":"Rubicund Armguards","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9029,"zoneId":1584}}]}, -{"id":11684,"name":"Ironfoe","icon":"spell_frost_frostbrand","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.5,"ilvl":56,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11685,"name":"Splinthide Shoulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9029,"zoneId":1584}}]}, -{"id":11686,"name":"Girdle of Beastial Fury","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9029,"zoneId":1584}}]}, -{"id":11702,"name":"Grizzle's Skinner","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":2.6,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9028,"zoneId":1584}}]}, -{"id":11703,"name":"Stonewall Girdle","icon":"inv_belt_16","type":8,"armorType":4,"stats":[10,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9028,"zoneId":1584}}]}, -{"id":11722,"name":"Dregmetal Spaulders","icon":"inv_shoulder_30","type":3,"armorType":3,"stats":[0,0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9028,"zoneId":1584}}]}, -{"id":11726,"name":"Savage Gladiator Chain","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,29,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":4,"setName":"The Gladiator","setId":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9027,"zoneId":1584}}]}, -{"id":11728,"name":"Savage Gladiator Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,23,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"setName":"The Gladiator","setId":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9030,"zoneId":1584}}]}, -{"id":11729,"name":"Savage Gladiator Helm","icon":"inv_helmet_01","type":1,"armorType":3,"stats":[0,23,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"setName":"The Gladiator","setId":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9032,"zoneId":1584}}]}, -{"id":11730,"name":"Savage Gladiator Grips","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,17,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"setName":"The Gladiator","setId":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9029,"zoneId":1584}}]}, -{"id":11731,"name":"Savage Gladiator Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,17,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"setName":"The Gladiator","setId":1,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9031,"zoneId":1584}}]}, -{"id":11735,"name":"Ragefury Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,17,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Hurley Blackbreath"}}]}, -{"id":11743,"name":"Rockfist","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9502,"zoneId":1584}}]}, -{"id":11744,"name":"Bloodfist","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9502,"zoneId":1584}}]}, -{"id":11745,"name":"Fists of Phalanx","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[18,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9502,"zoneId":1584}}]}, -{"id":11746,"name":"Golem Skull Helm","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9938,"zoneId":1584}}]}, -{"id":11747,"name":"Flamestrider Robes","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,13,20,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9024,"zoneId":1584}}]}, -{"id":11748,"name":"Pyric Caduceus","icon":"inv_staff_13","type":14,"rangedWeaponType":6,"stats":[0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.8,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9024,"zoneId":1584}}]}, -{"id":11749,"name":"Searingscale Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,16,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9024,"zoneId":1584}}]}, -{"id":11750,"name":"Kindling Stave","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":157,"weaponSpeed":2.9,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9024,"zoneId":1584}}]}, -{"id":11755,"name":"Verek's Collar","icon":"inv_misc_bandage_14","type":2,"stats":[9,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9042,"zoneId":1584}}]}, -{"id":11764,"name":"Cinderhide Armsplints","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9017,"zoneId":1584}}]}, -{"id":11765,"name":"Pyremail Wristguards","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9017,"zoneId":1584}}]}, -{"id":11766,"name":"Flameweave Cuffs","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,8,8,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9017,"zoneId":1584}}]}, -{"id":11767,"name":"Emberplate Armguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[9,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9017,"zoneId":1584}}]}, -{"id":11768,"name":"Incendic Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,8,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9017,"zoneId":1584}}]}, -{"id":11782,"name":"Boreal Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,8,8,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9041,"zoneId":1584}}]}, -{"id":11783,"name":"Chillsteel Girdle","icon":"inv_belt_33","type":8,"armorType":3,"stats":[0,0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9041,"zoneId":1584}}]}, -{"id":11784,"name":"Arbiter's Blade","icon":"inv_sword_23","type":13,"weaponType":9,"handType":1,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":2,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9041,"zoneId":1584}}]}, -{"id":11785,"name":"Rock Golem Bulwark","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[6,0,6,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8923,"zoneId":1584}}]}, -{"id":11786,"name":"Stone of the Earth","icon":"inv_sword_47","type":13,"weaponType":9,"handType":4,"stats":[17,0,17,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.4,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8923,"zoneId":1584}}]}, -{"id":11787,"name":"Shalehusk Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8923,"zoneId":1584}}]}, -{"id":11802,"name":"Lavacrest Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[23,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9016,"zoneId":1584}}]}, -{"id":11803,"name":"Force of Magma","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":195,"weaponSpeed":3.6,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9016,"zoneId":1584}}]}, -{"id":11805,"name":"Rubidium Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[6,0,9,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9016,"zoneId":1584}}]}, -{"id":11807,"name":"Sash of the Burning Heart","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,10,10,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9016,"zoneId":1584}}]}, -{"id":11808,"name":"Circle of Flame","icon":"spell_fire_fire","type":1,"armorType":1,"stats":[0,0,18,27,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9156,"zoneId":1584}}]}, -{"id":11809,"name":"Flame Wrath","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":208,"weaponSpeed":3.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9156,"zoneId":1584}}]}, -{"id":11810,"name":"Force of Will","icon":"inv_jewelry_amulet_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11811,"name":"Smoking Heart of the Mountain","icon":"inv_misc_gem_bloodstone_01","type":12,"stats":[0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":3,"spellId":15596}},{"crafted":{"profession":3,"spellId":15596}}]}, -{"id":11812,"name":"Cape of the Fire Salamander","icon":"inv_misc_cape_18","type":4,"stats":[9,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9156,"zoneId":1584}}]}, -{"id":11814,"name":"Molten Fists","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9156,"zoneId":1584}}]}, -{"id":11815,"name":"Hand of Justice","icon":"inv_jewelry_talisman_01","type":12,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11816,"name":"Angerforge's Battle Axe","icon":"inv_weapon_halberd_06","type":13,"weaponType":1,"handType":4,"stats":[21,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":208,"weaponSpeed":3.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11817,"name":"Lord General's Sword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11819,"name":"Second Wind","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8983,"zoneId":1584}}]}, -{"id":11820,"name":"Royal Decorated Armor","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,17,17,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11821,"name":"Warstrife Leggings","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,21,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11822,"name":"Omnicast Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8983,"zoneId":1584}}]}, -{"id":11823,"name":"Luminary Kilt","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,0,14,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8983,"zoneId":1584}}]}, -{"id":11824,"name":"Cyclopean Band","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,6,6,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9030,"zoneId":1584}}]}, -{"id":11832,"name":"Burst of Knowledge","icon":"inv_jewelry_amulet_07","type":12,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9156,"zoneId":1584}}]}, -{"id":11839,"name":"Chief Architect's Monocle","icon":"inv_helmet_44","type":1,"armorType":1,"stats":[0,0,17,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9056,"zoneId":1584}}]}, -{"id":11841,"name":"Senior Designer's Pantaloons","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,14,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9056,"zoneId":1584}},{"drop":{"difficulty":1,"npcId":9033,"zoneId":1584}}]}, -{"id":11842,"name":"Lead Surveyor's Mantle","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9056,"zoneId":1584}}]}, -{"id":11847,"name":"Battered Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11848,"name":"Flax Belt","icon":"inv_belt_79","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11849,"name":"Rustmetal Bracers","icon":"inv_bracer_61","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11850,"name":"Short Duskbat Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":11851,"name":"Scavenger Tunic","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":11852,"name":"Roamer's Leggings","icon":"inv_pants_mail_36","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":11853,"name":"Rambling Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":11854,"name":"Samophlange Screwdriver","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":2.5,"ilvl":19,"quality":2,"factionRestriction":2}, -{"id":11855,"name":"Tork Wrench","icon":"inv_misc_wrench_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"factionRestriction":2}, -{"id":11856,"name":"Ceremonial Elven Blade","icon":"inv_sword_13","type":13,"weaponType":2,"handType":2,"stats":[0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.8,"ilvl":45,"quality":2,"factionRestriction":1}, -{"id":11857,"name":"Sanctimonial Rod","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":133,"weaponSpeed":3.1,"ilvl":46,"quality":2,"factionRestriction":1}, -{"id":11858,"name":"Battlehard Cape","icon":"inv_misc_cape_08","type":4,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":11859,"name":"Jademoon Orb","icon":"inv_misc_gem_emerald_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"factionRestriction":2}, -{"id":11860,"name":"Charged Lightning Rod","icon":"inv_wand_08","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.5,"ilvl":46,"quality":2}, -{"id":11861,"name":"Girdle of Reprisal","icon":"inv_belt_27","type":8,"armorType":3,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":11862,"name":"White Bone Band","icon":"inv_misc_bone_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":11863,"name":"White Bone Shredder","icon":"ability_whirlwind","type":13,"weaponType":3,"handType":3,"stats":[4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":1.4,"ilvl":52,"quality":2}, -{"id":11864,"name":"White Bone Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":87,"weaponDamageMax":131,"weaponSpeed":2.7,"ilvl":52,"quality":2}, -{"id":11865,"name":"Rancor Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,8,8,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":11866,"name":"Nagmara's Whipping Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,11,11,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":11867,"name":"Maddening Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[15,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":11868,"name":"Choking Band","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":11869,"name":"Sha'ni's Ring","icon":"inv_jewelry_ring_06","type":11,"stats":[0,0,10,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"factionRestriction":2}, -{"id":11870,"name":"Oblivion Orb","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":11871,"name":"Snarkshaw Spaulders","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":11872,"name":"Eschewal Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,11,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":11873,"name":"Ethereal Mist Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11874,"name":"Clouddrift Mantle","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11875,"name":"Breezecloud Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"factionRestriction":1}, -{"id":11876,"name":"Plainstalker Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,4,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11882,"name":"Outrider Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11884,"name":"Moonlit Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":11888,"name":"Quintis' Research Gloves","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":11889,"name":"Bark Iron Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[11,5,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":11902,"name":"Linken's Sword of Mastery","icon":"inv_sword_39","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":1.8,"ilvl":56,"quality":2}, -{"id":11904,"name":"Spirit of Aquementas","icon":"inv_ore_arcanite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11905,"name":"Linken's Boomerang","icon":"inv_weapon_shortblade_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":11906,"name":"Beastsmasher","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.1,"ilvl":55,"quality":2}, -{"id":11907,"name":"Beastslayer","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":169,"weaponSpeed":3.3,"ilvl":55,"quality":2}, -{"id":11908,"name":"Archaeologist's Quarry Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,18,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11909,"name":"Excavator's Utility Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,4,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11910,"name":"Bejeweled Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,15,0,8,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11911,"name":"Treetop Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,8,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11913,"name":"Clayridge Helm","icon":"inv_helmet_56","type":1,"armorType":3,"stats":[0,16,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11915,"name":"Shizzle's Drizzle Blocker","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[13,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11916,"name":"Shizzle's Muzzle","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,6,6,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11917,"name":"Shizzle's Nozzle Wiper","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,3,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11918,"name":"Grotslab Gloves","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11919,"name":"Cragplate Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":11920,"name":"Wraith Scythe","icon":"inv_axe_13","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11921,"name":"Impervious Giant","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[24,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":203,"weaponSpeed":3.5,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11922,"name":"Blood-Etched Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":1,"stats":[0,0,6,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.5,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11923,"name":"The Hammer of Grace","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.1,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Secret Safe"}},{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11924,"name":"Robes of the Royal Crown","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,17,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11925,"name":"Ghostshroud","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,17,17,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11926,"name":"Deathdealer Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,11,11,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11927,"name":"Legplates of the Eternal Guardian","icon":"inv_pants_04","type":9,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11928,"name":"Thaurissan's Royal Scepter","icon":"inv_mace_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11929,"name":"Haunting Specter Leggings","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,11,11,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9034,"zoneId":1584}}]}, -{"id":11930,"name":"The Emperor's New Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11931,"name":"Dreadforge Retaliator","icon":"inv_axe_22","type":13,"weaponType":1,"handType":4,"stats":[14,0,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":214,"weaponSpeed":3.7,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11932,"name":"Guiding Stave of Wisdom","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,14,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":3.3,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11933,"name":"Imperial Jewel","icon":"inv_misc_gem_sapphire_01","type":2,"stats":[12,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11934,"name":"Emperor's Seal","icon":"inv_jewelry_ring_24","type":11,"stats":[9,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":11935,"name":"Magmus Stone","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9938,"zoneId":1584}}]}, -{"id":11936,"name":"Relic Hunter Belt","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,6,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":11945,"name":"Dark Iron Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,437,521,605,690,1032,-84,-81,-78,-69,-68,-19,-15,-14,-13,-12,-11,-10,-9,173,178,183,193,213,215,217,219,439,520,522,606,607,691,692,775,776,777,860,945,946,1030,1031,1115,1116,1200,1202,1415,1765,2079,2116,2117],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Relic Coffer"}}]}, -{"id":11946,"name":"Fire Opal Necklace","icon":"inv_jewelry_necklace_02","type":2,"stats":[9,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,211,775,861,1200,1201,2079,-84,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-10,-9,188,213,215,217,219,437,520,522,605,606,690,691,692,776,777,860,945,947,1030,1115,1116,1202,1765,1766,2078,2116,2117],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Relic Coffer"}}]}, -{"id":11962,"name":"Manacle Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,6,14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":11963,"name":"Penance Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":11964,"name":"Swiftstrike Cudgel","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,6,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3}, -{"id":11965,"name":"Quartz Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-326,1310,1311,1356,1357,1402,1403,1448,1449,1494,1495,-329,-328,-327,-324],"ilvl":20,"quality":2}, -{"id":11967,"name":"Zircon Band","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1311,1312,1357,1358,1403,1404,1449,1450,1495,1496,-329,-328,-327,-326,-324],"ilvl":23,"quality":2}, -{"id":11968,"name":"Amber Hoop","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1312,1313,1358,1359,1404,1405,1450,1451,1496,1497,-329,-328,-327,-326,-324],"ilvl":26,"quality":2}, -{"id":11969,"name":"Jacinth Circle","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1314,1360,1406,1452,1498,-329,-328,-327,-326,-324],"ilvl":29,"quality":2}, -{"id":11970,"name":"Spinel Ring","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1316,1317,1362,1363,1408,1409,1454,1455,1500,1501,-329,-328,-327,-326,-324],"ilvl":34,"quality":2}, -{"id":11971,"name":"Amethyst Band","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1317,1318,1363,1364,1409,1410,1455,1456,1501,1502,-329,-328,-327,-326,-324],"ilvl":37,"quality":2}, -{"id":11972,"name":"Carnelian Loop","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1318,1319,1364,1365,1410,1411,1456,1457,1502,1503,-329,-328,-327,-326,-324],"ilvl":40,"quality":2}, -{"id":11973,"name":"Hematite Link","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1319,1320,1365,1366,1411,1412,1457,1458,1503,1504,-329,-328,-327,-326,-324],"ilvl":43,"quality":2}, -{"id":11974,"name":"Aquamarine Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1320,1321,1366,1367,1412,1413,1458,1459,1504,1505,-329,-328,-327,-326,-324],"ilvl":46,"quality":2}, -{"id":11975,"name":"Topaz Ring","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-328,1321,1322,1367,1368,1413,1414,1459,1460,1505,1506,-329,-327,-326,-324],"ilvl":49,"quality":2}, -{"id":11976,"name":"Sardonyx Knuckle","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1323,1369,1415,1461,1507,-329,-328,-327,-326,-324],"ilvl":52,"quality":2}, -{"id":11977,"name":"Serpentine Loop","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1324,1370,1416,1462,1508,-329,-328,-327,-326,-324],"ilvl":55,"quality":2}, -{"id":11978,"name":"Jasper Link","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1325,1326,1371,1372,1417,1418,1463,1464,1509,1510,-329,-328,-327,-326,-324],"ilvl":58,"quality":2}, -{"id":11979,"name":"Peridot Circle","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1326,1327,1372,1373,1418,1419,1464,1465,1510,1511,-329,-328,-327,-326,-324],"ilvl":61,"quality":2}, -{"id":11980,"name":"Opal Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1327,1328,1373,1374,1419,1465,1466,1511,1512,-329,-328,-327,-326,-324,1420],"ilvl":64,"quality":2}, -{"id":11981,"name":"Lead Band","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[26,28,94,95,757,842,1012,2069,2070,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":11982,"name":"Viridian Band","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,112,113,758,759,760,843,844,845,1013,1014,1015,2070,2071,-81,-69,-19,-15,-9],"ilvl":23,"quality":2}, -{"id":11983,"name":"Chrome Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,760,761,762,845,846,847,1015,1017,2071,-81,-69,-19,-15,-9,1016],"ilvl":26,"quality":2}, -{"id":11984,"name":"Cobalt Ring","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,761,762,763,846,847,848,1016,1017,1018,2072,-81,-69,-19,-15,-9],"ilvl":29,"quality":2}, -{"id":11985,"name":"Cerulean Ring","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,764,765,766,849,850,851,1019,1020,1021,2073,2074,-81,-69,-19,-15,-9],"ilvl":35,"quality":2}, -{"id":11986,"name":"Thallium Hoop","icon":"inv_jewelry_ring_06","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,766,767,768,851,852,853,1021,1022,1023,2074,2075,-81,-69,-19,-15,-9],"ilvl":39,"quality":2}, -{"id":11987,"name":"Iridium Circle","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,770,771,855,856,1025,1026,2076,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":11988,"name":"Tellurium Band","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,772,773,774,857,858,859,1027,1029,2077,-81,-69,-19,-15,-9,1028],"ilvl":47,"quality":2}, -{"id":11989,"name":"Vanadium Loop","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,773,774,775,858,859,860,1028,1029,1030,2078,-81,-69,-19,-15,-9],"ilvl":51,"quality":2}, -{"id":11990,"name":"Selenium Loop","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,215,216,776,777,778,861,862,863,1031,1033,2079,2080,-81,-69,-19,-15,-9,1032],"ilvl":55,"quality":2}, -{"id":11991,"name":"Quicksilver Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,383,409,778,779,780,863,864,865,1033,1034,1035,-81,-69,-19,-15,-9,2080,2081],"ilvl":59,"quality":2}, -{"id":11992,"name":"Vermilion Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,409,779,780,781,864,866,1034,1035,1036,2081,-81,-69,-19,-15,-9,865],"ilvl":63,"quality":2}, -{"id":11993,"name":"Clay Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[96,97,114,115,928,929,930,1098,1099,1100,1183,1184,1185,2108,2109,-328,-84,-81,-69,-68,-17,-14,-13,-12,-11,-10],"ilvl":22,"quality":2}, -{"id":11994,"name":"Coral Band","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,930,931,932,1100,1101,1102,1185,1186,1187,2109,-331,-329,-84,-81,-78,-69,-68,-17,-14,-13,-12,-11,-10],"ilvl":25,"quality":2}, -{"id":11995,"name":"Ivory Band","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,932,933,1101,1102,1103,1186,1187,1188,-84,-78,-69,-68,-17,-14,-13,-12,-10,-9,931,2110],"ilvl":28,"quality":2}, -{"id":11996,"name":"Basalt Ring","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,934,935,936,1104,1105,1106,1189,1190,1191,2111,2112,-331,-324,-84,-68,-17,-14,-12,-10,-9],"ilvl":34,"quality":2}, -{"id":11997,"name":"Greenstone Circle","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,936,937,938,1106,1107,1108,1191,1192,1193,2112,2113,-329,-84,-81,-78,-68,-17,-14,-13,-12,-10],"ilvl":38,"quality":2}, -{"id":11998,"name":"Jet Loop","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,939,1109,1194,2113,2114,-84,-81,-69,-68,-17,-14,-13,-12,-10],"ilvl":42,"quality":2}, -{"id":11999,"name":"Lodestone Hoop","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,192,942,943,1112,1114,1197,1198,1199,2115,-327,-324,-84,-81,-78,-69,-68,-17,-14,-13,-12,-11,-10,944,1113],"ilvl":46,"quality":2}, -{"id":12000,"name":"Limb Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[24,0,11,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.4,"ilvl":56,"quality":3}, -{"id":12001,"name":"Onyx Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,943,944,945,1113,1114,1115,1198,1199,1200,2116,-329,-84,-78,-69,-68,-17,-12,-11,-10],"ilvl":50,"quality":2}, -{"id":12002,"name":"Marble Circle","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,217,219,945,946,1115,1116,1200,1201,1202,2116,2117,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10,-9,947,1117],"ilvl":54,"quality":2}, -{"id":12004,"name":"Obsidian Band","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,220,948,949,950,1118,1119,1203,1204,1205,2118,-84,-81,-69,-68,-17,-12,-11,-10,287,307,1120,2119],"ilvl":58,"quality":2}, -{"id":12005,"name":"Granite Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,307,949,951,1119,1120,1121,1204,1205,1206,2119,-84,-81,-78,-69,-68,-17,-14,-13,-12,-11,-10,950],"ilvl":62,"quality":2}, -{"id":12006,"name":"Meadow Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,93,234,503,504,505,588,589,590,673,674,675,1748,-29,-18,-14,-13,-11,111,232,233,1749],"ilvl":22,"quality":2}, -{"id":12007,"name":"Prairie Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,234,236,505,506,507,590,591,592,675,676,677,1750,1751,-78,-29,-18,-14,-13,-11,235],"ilvl":25,"quality":2}, -{"id":12008,"name":"Savannah Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,235,236,248,506,507,508,591,592,593,676,677,678,1752,-78,-29,-18,-14,-13,-11,1751],"ilvl":28,"quality":2}, -{"id":12009,"name":"Tundra Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,151,237,248,249,508,509,510,593,594,595,678,679,680,1753,1754,-78,-29,-18,-14,-13,-11],"ilvl":33,"quality":2}, -{"id":12010,"name":"Fen Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,168,247,250,252,511,512,513,596,597,598,681,682,683,1756,1757,-78,-29,-18,-14,-13,-11],"ilvl":37,"quality":2}, -{"id":12011,"name":"Forest Hoop","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,251,514,599,684,1758,1759,-78,-29,-18,-14,-13,-11],"ilvl":41,"quality":2}, -{"id":12012,"name":"Marsh Ring","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,253,255,515,516,600,601,685,686,1760,1761,-78,-29,-18,-14,-13,-11],"ilvl":45,"quality":2}, -{"id":12013,"name":"Desert Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,435,436,437,518,519,520,603,604,605,688,689,690,1763,1764,-78,-29,-18,-14,-13,-11],"ilvl":49,"quality":2}, -{"id":12014,"name":"Arctic Ring","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,211,437,438,439,520,521,522,605,606,607,690,691,692,1765,1766,-78,-29,-18,-14,-13,-11],"ilvl":53,"quality":2}, -{"id":12015,"name":"Swamp Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,439,440,522,523,606,607,608,692,693,1766,-78,-29,-18,-14,-13,-11,438,521,691,1767,1768],"ilvl":57,"quality":2}, -{"id":12016,"name":"Jungle Ring","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,441,442,443,524,525,526,609,610,611,694,695,696,1770,1771,-78,-29,-18,-14,-13,-11],"ilvl":61,"quality":2}, -{"id":12017,"name":"Prismatic Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,384,444,445,527,528,612,697,698,782,783,867,868,952,953,1037,1038,1122,1123,1207,1208,1420,2082,2120,410,613,1419,1772,1773,-329,-327,-84,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,1373,-328,-324,1327,1465,1466,1511],"ilvl":65,"quality":2}, -{"id":12018,"name":"Conservator Helm","icon":"inv_helmet_01","type":1,"armorType":3,"stats":[0,0,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12019,"name":"Cerulean Talisman","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,154,155,763,764,765,848,849,850,1018,1019,1020,2072,2073,-84,-81,-69,-17,-15,-9],"ilvl":32,"quality":2}, -{"id":12020,"name":"Thallium Choker","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,764,765,766,849,850,851,1019,1020,1021,2073,2074,-84,-81,-69,-17,-15,-9],"ilvl":36,"quality":2}, -{"id":12021,"name":"Shieldplate Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[13,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12022,"name":"Iridium Chain","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,769,854,1024,2075,2076,-84,-81,-69,-17,-15,-9],"ilvl":41,"quality":2}, -{"id":12023,"name":"Tellurium Necklace","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,770,771,855,856,1025,1026,2076,-84,-81,-69,-17,-15,-9],"ilvl":45,"quality":2}, -{"id":12024,"name":"Vanadium Talisman","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,773,774,775,858,859,860,1028,1029,1030,2078,-84,-81,-69,-17,-15,-9],"ilvl":50,"quality":2}, -{"id":12025,"name":"Selenium Chain","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,217,219,775,776,777,860,861,862,1030,1032,2078,2079,-329,-328,-327,-326,-324,-84,-81,-69,-17,-15,-9,1031,1411,1457],"ilvl":54,"quality":2}, -{"id":12026,"name":"Quicksilver Pendant","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,220,287,307,778,779,780,863,865,1034,1035,2080,2081,-329,-328,-327,-324,-84,-81,-69,-17,-15,-9,864,1033,1321,1367],"ilvl":59,"quality":2}, -{"id":12027,"name":"Vermilion Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,779,780,781,864,866,1034,1036,2081,-329,-328,-324,-84,-81,-69,-17,-15,-9,287,865,1035,1321,1413],"ilvl":63,"quality":2}, -{"id":12028,"name":"Basalt Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,152,153,933,934,935,1103,1104,1105,1188,1189,1190,2110,2111,-81,-69,-68,-19,-15,-12,-11,-10,-9],"ilvl":32,"quality":2}, -{"id":12029,"name":"Greenstone Talisman","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,934,935,936,1104,1105,1106,1189,1190,1191,2111,2112,-328,-69,-68,-29,-19,-15,-14,-12,-11,-10,-9],"ilvl":35,"quality":2}, -{"id":12030,"name":"Jet Chain","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,936,937,938,1106,1107,1108,1191,1192,1193,2112,2113,-329,-327,-78,-68,-19,-15,-12,-10,-9],"ilvl":39,"quality":2}, -{"id":12031,"name":"Lodestone Necklace","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,940,941,1110,1111,1195,1196,2114,-327,-84,-81,-78,-69,-68,-19,-15,-14,-13,-12,-11,-10,-9],"ilvl":44,"quality":2}, -{"id":12032,"name":"Onyx Choker","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,942,943,944,1112,1113,1114,1197,1198,1199,2115,-330,-324,-78,-69,-68,-19,-15,-14,-13,-12,-11,-10,-9],"ilvl":48,"quality":2}, -{"id":12034,"name":"Marble Necklace","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,213,215,945,946,947,1115,1117,1200,1201,1202,1319,1411,2116,2117,-331,-329,-328,-327,-326,-324,-81,-78,-69,-68,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,1116,1503],"ilvl":53,"quality":2}, -{"id":12035,"name":"Obsidian Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,213,214,215,216,946,947,948,1116,1118,1201,1202,1203,2117,2118,-331,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-47,-18,-17,-15,-14,-13,-12,-11,-10,-9,1117,1411,1412,1458],"ilvl":57,"quality":2}, -{"id":12036,"name":"Granite Necklace","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,409,949,950,951,1120,1121,1204,1205,1206,1321,1413,1459,2119,-332,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-29,-20,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,1119],"ilvl":62,"quality":2}, -{"id":12038,"name":"Lagrave's Seal","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{}}]}, -{"id":12039,"name":"Tundra Necklace","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,151,237,248,249,508,509,510,593,594,595,678,679,680,1753,1754,-78,-29,-18,-14,-13,-11],"ilvl":33,"quality":2}, -{"id":12040,"name":"Forest Pendant","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,168,247,250,252,511,512,513,596,597,598,681,682,683,1756,1757,-78,-29,-18,-14,-13,-11],"ilvl":38,"quality":2}, -{"id":12041,"name":"Windshear Leggings","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,24,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12042,"name":"Marsh Chain","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,251,514,599,684,1758,1759,-78,-29,-18,-14,-13,-11],"ilvl":42,"quality":2}, -{"id":12043,"name":"Desert Choker","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,254,435,436,517,519,602,603,604,687,688,689,1761,-78,-29,-18,-14,-13,-11,518,1762,1763],"ilvl":47,"quality":2}, -{"id":12044,"name":"Arctic Pendant","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,435,436,437,518,519,520,603,604,605,688,689,690,1763,1764,-78,-29,-18,-14,-13,-11],"ilvl":51,"quality":2}, -{"id":12045,"name":"Swamp Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,439,440,521,523,606,607,608,691,692,693,1458,1504,1766,1767,1768,-78,-29,-18,-14,-13,-11,438,522,1365,1366,1412,1457],"ilvl":56,"quality":2}, -{"id":12046,"name":"Jungle Necklace","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,441,523,525,608,609,610,693,694,695,1768,1769,-329,-327,-326,-78,-29,-18,-14,-13,-11,267,440,442,524,1366,1413,1504],"ilvl":60,"quality":2}, -{"id":12047,"name":"Spectral Necklace","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,136,235,236,506,507,508,591,592,593,676,677,761,762,763,846,847,848,931,932,1016,1017,1101,1103,1187,1188,1752,2072,2110,-328,-327,-84,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,134,135,248,678,933,1018,1102,1186,1404,1751],"ilvl":30,"quality":2}, -{"id":12048,"name":"Prismatic Pendant","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,410,444,445,527,528,612,613,697,698,782,783,867,953,1037,1122,1123,1207,1208,1368,1772,1773,2082,2120,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-29,-20,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,384,868,952,1038,1460],"ilvl":65,"quality":2}, -{"id":12049,"name":"Splintsteel Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[17,0,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12050,"name":"Hazecover Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,8,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":4513,"name":"A Little Slime Goes a Long Way"}}],"factionRestriction":1}, -{"id":12051,"name":"Brazen Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[12,12,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":4513,"name":"A Little Slime Goes a Long Way"}}],"factionRestriction":1}, -{"id":12052,"name":"Ring of the Moon","icon":"inv_jewelry_ring_05","type":11,"stats":[1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":12053,"name":"Volcanic Rock Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":12054,"name":"Demon Band","icon":"inv_jewelry_ring_04","type":11,"stats":[4,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":12055,"name":"Stardust Band","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,5,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":12056,"name":"Ring of the Heavens","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,13,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":12057,"name":"Dragonscale Band","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,13,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":12058,"name":"Demonic Bone Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[8,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":12059,"name":"Conqueror's Medallion","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,6,0,0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12061,"name":"Blade of Reckoning","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[11,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12062,"name":"Skilled Fighting Blade","icon":"inv_sword_21","type":13,"weaponType":2,"handType":2,"stats":[0,7,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":1.4,"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12064,"name":"Gamemaster Hood","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":12065,"name":"Ward of the Elements","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12066,"name":"Shaleskin Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,8,12,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12082,"name":"Wyrmhide Spaulders","icon":"inv_shoulder_16","type":3,"armorType":2,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":12083,"name":"Valconian Sash","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,4,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":12102,"name":"Ring of the Aristocrat","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,10,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":12103,"name":"Star of Mystaria","icon":"inv_jewelry_talisman_08","type":2,"stats":[0,0,7,7,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":12104,"name":"Brindlethorn Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,14,14,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12105,"name":"Pridemail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,14,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12106,"name":"Boulderskin Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":4,"stats":[14,0,14,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12107,"name":"Whispersilk Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,14,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12108,"name":"Basaltscale Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,11,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"factionRestriction":2}, -{"id":12109,"name":"Azure Moon Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,11,11,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12110,"name":"Raincaster Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,8,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12111,"name":"Lavaplate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[18,0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12112,"name":"Crypt Demon Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,12,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12113,"name":"Sunborne Cape","icon":"inv_misc_cape_08","type":4,"stats":[0,0,6,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12114,"name":"Nightfall Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,11,11,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12115,"name":"Stalwart Clutch","icon":"inv_belt_34","type":8,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":12185,"name":"Bloodsail Admiral's Hat","icon":"inv_helmet_66","type":1,"armorType":1,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"quest":{"id":4621,"name":"Avast Ye, Admiral!"}}]}, -{"id":12225,"name":"Blump Family Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":10,"quality":1,"factionRestriction":1}, -{"id":12243,"name":"Smoldering Claw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":199,"weaponSpeed":3.5,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":12247,"name":"Broad Bladed Knife","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2,"ilvl":32,"quality":2}, -{"id":12248,"name":"Daring Dirk","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.6,"ilvl":34,"quality":2}, -{"id":12249,"name":"Merciless Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.2,"ilvl":31,"quality":2}, -{"id":12250,"name":"Midnight Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":2.7,"ilvl":34,"quality":2}, -{"id":12251,"name":"Big Stick","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":93,"weaponSpeed":3,"ilvl":37,"quality":2}, -{"id":12252,"name":"Staff of Protection","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":100,"weaponSpeed":3,"ilvl":39,"quality":2}, -{"id":12253,"name":"Brilliant Red Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":12254,"name":"Well Oiled Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":12255,"name":"Pale Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":12256,"name":"Cindercloth Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,13,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":12257,"name":"Heavy Notched Belt","icon":"inv_belt_34","type":8,"armorType":3,"stats":[10,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":12258,"name":"Serpent Clasp Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"soldBy":{"npcId":12040,"npcName":"Brannik Ironbelly","zoneId":47}}]}, -{"id":12259,"name":"Glinting Steel Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.5,"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15972}},{"crafted":{"profession":2,"spellId":15972}}]}, -{"id":12260,"name":"Searing Golden Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.4,"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":15973}},{"crafted":{"profession":2,"spellId":15973}}]}, -{"id":12282,"name":"Worn Battleaxe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":12295,"name":"Leggings of the People's Militia","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":12296,"name":"Spark of the People's Militia","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.8,"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":12299,"name":"Netted Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":12344,"name":"Seal of Ascension","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,12,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true}, -{"id":12405,"name":"Thorium Armor","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[11,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16642}},{"crafted":{"profession":2,"spellId":16642}}]}, -{"id":12406,"name":"Thorium Belt","icon":"inv_belt_30","type":8,"armorType":4,"stats":[9,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16643}},{"crafted":{"profession":2,"spellId":16643}}]}, -{"id":12408,"name":"Thorium Bracers","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[6,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16644}},{"crafted":{"profession":2,"spellId":16644}}]}, -{"id":12409,"name":"Thorium Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[10,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16652}},{"crafted":{"profession":2,"spellId":16652}}]}, -{"id":12410,"name":"Thorium Helm","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[12,0,0,0,0,0,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16653}},{"crafted":{"profession":2,"spellId":16653}}]}, -{"id":12414,"name":"Thorium Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[14,0,0,0,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16662}},{"crafted":{"profession":2,"spellId":16662}}]}, -{"id":12415,"name":"Radiant Breastplate","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16648}},{"crafted":{"profession":2,"spellId":16648}}]}, -{"id":12416,"name":"Radiant Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16645}},{"crafted":{"profession":2,"spellId":16645}}]}, -{"id":12417,"name":"Radiant Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16659}},{"crafted":{"profession":2,"spellId":16659}}]}, -{"id":12418,"name":"Radiant Gloves","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16654}},{"crafted":{"profession":2,"spellId":16654}}]}, -{"id":12419,"name":"Radiant Boots","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16656}},{"crafted":{"profession":2,"spellId":16656}}]}, -{"id":12420,"name":"Radiant Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16725}},{"crafted":{"profession":2,"spellId":16725}}]}, -{"id":12422,"name":"Imperial Plate Chest","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16663}},{"crafted":{"profession":2,"spellId":16663}}]}, -{"id":12424,"name":"Imperial Plate Belt","icon":"inv_belt_01","type":8,"armorType":4,"stats":[12,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16647}},{"crafted":{"profession":2,"spellId":16647}}]}, -{"id":12425,"name":"Imperial Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[9,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16649}},{"crafted":{"profession":2,"spellId":16649}}]}, -{"id":12426,"name":"Imperial Plate Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[13,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16657}},{"crafted":{"profession":2,"spellId":16657}}]}, -{"id":12427,"name":"Imperial Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16658}},{"crafted":{"profession":2,"spellId":16658}}]}, -{"id":12428,"name":"Imperial Plate Shoulders","icon":"inv_shoulder_02","type":3,"armorType":4,"stats":[12,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16646}},{"crafted":{"profession":2,"spellId":16646}}]}, -{"id":12429,"name":"Imperial Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[18,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"setName":"Imperial Plate","setId":321,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16730}},{"crafted":{"profession":2,"spellId":16730}}]}, -{"id":12446,"name":"Anvilmar Musket","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.7,"ilvl":4,"quality":1,"sources":[{"quest":{"id":182,"name":"The Troll Menace"}}],"factionRestriction":1}, -{"id":12447,"name":"Thistlewood Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.3,"ilvl":5,"quality":1}, -{"id":12448,"name":"Light Hunting Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":1.9,"ilvl":5,"quality":1}, -{"id":12449,"name":"Primitive Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":2.7,"ilvl":5,"quality":1}, -{"id":12462,"name":"Embrace of the Wind Serpent","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,22,22,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8443,"zoneId":1477}}]}, -{"id":12463,"name":"Drakefang Butcher","icon":"inv_sword_19","type":13,"weaponType":9,"handType":4,"stats":[21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":205,"weaponSpeed":3.6,"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":12464,"name":"Bloodfire Talons","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":12465,"name":"Nightfall Drape","icon":"inv_misc_cape_05","type":4,"stats":[9,0,9,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":12466,"name":"Dawnspire Cord","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,0,18,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":5721,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5720,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5722,"zoneId":1477}},{"drop":{"difficulty":1,"npcId":5719,"zoneId":1477}}]}, -{"id":12468,"name":"Chilton Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":19,"weaponSpeed":0.5,"ilvl":53}, -{"id":12469,"name":"Mutilator","icon":"inv_sword_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":3.4,"ilvl":49,"quality":3}, -{"id":12470,"name":"Sandstalker Ankleguards","icon":"inv_bracer_04","type":10,"armorType":2,"stats":[0,16,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10082,"zoneId":1176}}]}, -{"id":12471,"name":"Desertwalker Cane","icon":"inv_staff_21","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10081,"zoneId":1176}}]}, -{"id":12522,"name":"Bingles' Flying Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":1}, -{"id":12527,"name":"Ribsplitter","icon":"inv_axe_13","type":13,"weaponType":1,"handType":2,"stats":[0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,187,192,517,602,687,857,1027,1112,1197,1557,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12528,"name":"The Judge's Gavel","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.4,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12531,"name":"Searing Needle","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.8,"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12532,"name":"Spire of the Stoneshaper","icon":"inv_wand_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,17,17,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.4,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12535,"name":"Doomforged Straightedge","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[7,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12542,"name":"Funeral Pyre Vestment","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,14,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12543,"name":"Songstone of Ironforge","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,6,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12544,"name":"Thrall's Resolve","icon":"inv_jewelry_ring_05","type":11,"stats":[14,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12545,"name":"Eye of Orgrimmar","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,6,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":2}, -{"id":12546,"name":"Aristocratic Cuffs","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,8,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12547,"name":"Mar Alom's Grip","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12548,"name":"Magni's Will","icon":"inv_jewelry_ring_05","type":11,"stats":[14,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"factionRestriction":1}, -{"id":12549,"name":"Braincage","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,0,14,21,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12550,"name":"Runed Golem Shackles","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[8,0,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12551,"name":"Stoneshield Cloak","icon":"inv_misc_cape_21","type":4,"stats":[8,0,12,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12552,"name":"Blisterbane Wrap","icon":"inv_misc_cape_18","type":4,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12553,"name":"Swiftwalker Boots","icon":"inv_boots_02","type":10,"armorType":2,"stats":[0,13,13,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8929,"zoneId":1584}}]}, -{"id":12554,"name":"Hands of the Exalted Herald","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8929,"zoneId":1584}}]}, -{"id":12555,"name":"Battlechaser's Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[11,0,11,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1584,"otherName":"Trash"}}]}, -{"id":12556,"name":"High Priestess Boots","icon":"inv_boots_wolf","type":10,"armorType":1,"stats":[0,0,11,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8929,"zoneId":1584}}]}, -{"id":12557,"name":"Ebonsteel Spaulders","icon":"inv_shoulder_25","type":3,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8929,"zoneId":1584}}]}, -{"id":12582,"name":"Keris of Zul'Serak","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":1.8,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9237,"zoneId":1583}}]}, -{"id":12583,"name":"Blackhand Doomsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":143,"weaponDamageMax":216,"weaponSpeed":3.5,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12584,"name":"Grand Marshal's Longsword","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":12587,"name":"Eye of Rend","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,11,11,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12588,"name":"Bonespike Shoulder","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12589,"name":"Dustfeather Sash","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10264,"zoneId":1583}}]}, -{"id":12590,"name":"Felstriker","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":1.8,"ilvl":60,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12592,"name":"Blackblade of Shahram","icon":"inv_sword_29","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":238,"weaponSpeed":3.5,"ilvl":60,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":12602,"name":"Draconian Deflector","icon":"inv_shield_20","type":13,"weaponType":7,"handType":3,"stats":[10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":12603,"name":"Nightbrace Tunic","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,26,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10264,"zoneId":1583}}]}, -{"id":12604,"name":"Starfire Tiara","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10509,"zoneId":1583}}]}, -{"id":12605,"name":"Serpentine Skuller","icon":"inv_misc_bone_elfskull_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":1.4,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10509,"zoneId":1583}}]}, -{"id":12606,"name":"Crystallized Girdle","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10264,"zoneId":1583}}]}, -{"id":12608,"name":"Butcher's Apron","icon":"inv_misc_cape_18","type":4,"stats":[0,0,6,0,0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9219,"zoneId":1583}}]}, -{"id":12609,"name":"Polychromatic Visionwrap","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,15,15,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10264,"zoneId":1583}}]}, -{"id":12610,"name":"Runic Plate Shoulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16664}},{"crafted":{"profession":2,"spellId":16664}}]}, -{"id":12611,"name":"Runic Plate Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16665}},{"crafted":{"profession":2,"spellId":16665}}]}, -{"id":12612,"name":"Runic Plate Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,150,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16726}},{"crafted":{"profession":2,"spellId":16726}}]}, -{"id":12613,"name":"Runic Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,150,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16731}},{"crafted":{"profession":2,"spellId":16731}}]}, -{"id":12614,"name":"Runic Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,150,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16732}},{"crafted":{"profession":2,"spellId":16732}}]}, -{"id":12615,"name":"Savage Mail Tunic","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":12616,"name":"Savage Mail Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[13,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":12617,"name":"Savage Mail Shoulders","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[10,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":12618,"name":"Enchanted Thorium Breastplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[12,0,26,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16745}},{"crafted":{"profession":2,"spellId":16745}}]}, -{"id":12619,"name":"Enchanted Thorium Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,0,21,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16744}},{"crafted":{"profession":2,"spellId":16744}}]}, -{"id":12620,"name":"Enchanted Thorium Helm","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[12,0,25,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16742}},{"crafted":{"profession":2,"spellId":16742}}]}, -{"id":12621,"name":"Demonfork","icon":"inv_weapon_halberd_11","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":175,"weaponSpeed":3.4,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9596,"zoneId":1583}}]}, -{"id":12624,"name":"Wildthorn Mail","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,5,24,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16650}},{"crafted":{"profession":2,"spellId":16650}}]}, -{"id":12625,"name":"Dawnbringer Shoulders","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16660}},{"crafted":{"profession":2,"spellId":16660}}]}, -{"id":12626,"name":"Funeral Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":12628,"name":"Demon Forged Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16667}},{"crafted":{"profession":2,"spellId":16667}}]}, -{"id":12631,"name":"Fiery Plate Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16655}},{"crafted":{"profession":2,"spellId":16655}}]}, -{"id":12632,"name":"Storm Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16661}},{"crafted":{"profession":2,"spellId":16661}}]}, -{"id":12633,"name":"Whitesoul Helm","icon":"inv_helmet_13","type":1,"armorType":4,"stats":[0,0,23,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16724}},{"crafted":{"profession":2,"spellId":16724}}]}, -{"id":12634,"name":"Chiselbrand Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9596,"zoneId":1583}}]}, -{"id":12636,"name":"Helm of the Great Chief","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,12,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16728}},{"crafted":{"profession":2,"spellId":16728}}]}, -{"id":12637,"name":"Backusarian Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[14,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9596,"zoneId":1583}}]}, -{"id":12639,"name":"Stronghold Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,12,0,0,0,14,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16741}},{"crafted":{"profession":2,"spellId":16741}}]}, -{"id":12640,"name":"Lionheart Helm","icon":"inv_helmet_36","type":1,"armorType":4,"stats":[18,0,0,0,0,20,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16729}},{"crafted":{"profession":2,"spellId":16729}}]}, -{"id":12641,"name":"Invulnerable Mail","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,510,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16746}},{"crafted":{"profession":2,"spellId":16746}}]}, -{"id":12651,"name":"Blackcrow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":123,"weaponDamageMax":185,"weaponSpeed":3,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":12653,"name":"Riphook","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":201,"weaponSpeed":3,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":12709,"name":"Pip's Skinner","icon":"inv_sword_33","type":13,"weaponType":2,"handType":2,"stats":[0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.4,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12752,"name":"Cap of the Scarlet Savant","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,17,20,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"classAllowlist":[5,1,7,3,8]}, -{"id":12756,"name":"Leggings of Arcana","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,30,15,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":12757,"name":"Breastplate of Bloodthirst","icon":"inv_chest_chain_13","type":5,"armorType":2,"stats":[0,13,20,0,0,0,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":12764,"name":"Thorium Greatsword","icon":"inv_sword_22","type":13,"weaponType":9,"handType":4,"stats":[22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":175,"weaponSpeed":3.6,"ilvl":52,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16960}}]}, -{"id":12769,"name":"Bleakwood Hew","icon":"inv_axe_24","type":13,"weaponType":1,"handType":4,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.7,"ilvl":54,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16965}}]}, -{"id":12772,"name":"Inlaid Thorium Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":3,"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16967}}]}, -{"id":12773,"name":"Ornate Thorium Handaxe","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.9,"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16969}},{"crafted":{"profession":2,"spellId":16969}}]}, -{"id":12774,"name":"Dawn's Edge","icon":"inv_axe_05","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":2.1,"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16970}},{"crafted":{"profession":2,"spellId":16970}}]}, -{"id":12775,"name":"Huge Thorium Battleaxe","icon":"inv_weapon_halberd_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":172,"weaponSpeed":3.3,"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":16971}},{"crafted":{"profession":2,"spellId":16971}}]}, -{"id":12776,"name":"Enchanted Battlehammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":150,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16973}},{"crafted":{"profession":2,"spellId":16973}}]}, -{"id":12777,"name":"Blazing Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":82,"weaponSpeed":1.7,"ilvl":56,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16978}},{"crafted":{"profession":2,"spellId":16978}}]}, -{"id":12779,"name":"Rune Edge","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":2.3,"ilvl":57,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16980}}]}, -{"id":12781,"name":"Serenity","icon":"inv_mace_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":2,"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16983}},{"crafted":{"profession":2,"spellId":16983}}]}, -{"id":12782,"name":"Corruption","icon":"inv_sword_07","type":13,"weaponType":9,"handType":4,"stats":[30,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":179,"weaponSpeed":3,"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16985}},{"crafted":{"profession":2,"spellId":16985}}]}, -{"id":12783,"name":"Heartseeker","icon":"inv_sword_17","type":13,"weaponType":2,"handType":2,"stats":[4,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.7,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16995}},{"crafted":{"profession":2,"spellId":16995}}]}, -{"id":12784,"name":"Arcanite Reaper","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":256,"weaponSpeed":3.8,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16994}},{"crafted":{"profession":2,"spellId":16994}}]}, -{"id":12790,"name":"Arcanite Champion","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":194,"weaponSpeed":3,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16990}},{"crafted":{"profession":2,"spellId":16990}}]}, -{"id":12791,"name":"Barman Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":2,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Plugger Spazzring"}}]}, -{"id":12792,"name":"Volcanic Hammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":2.5,"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16984}},{"crafted":{"profession":2,"spellId":16984}}]}, -{"id":12793,"name":"Mixologist's Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,14,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Plugger Spazzring"}}]}, -{"id":12794,"name":"Masterwork Stormhammer","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":2,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16993}},{"crafted":{"profession":2,"spellId":16993}}]}, -{"id":12795,"name":"Blood Talon","icon":"inv_weapon_shortblade_27","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":67,"weaponSpeed":1.3,"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16986}}]}, -{"id":12796,"name":"Hammer of the Titans","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":246,"weaponSpeed":3.8,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16988}},{"crafted":{"profession":2,"spellId":16988}}]}, -{"id":12797,"name":"Frostguard","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":2.3,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16992}},{"crafted":{"profession":2,"spellId":16992}}]}, -{"id":12798,"name":"Annihilator","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.7,"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16991}},{"crafted":{"profession":2,"spellId":16991}}]}, -{"id":12802,"name":"Darkspear","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.2,"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":16987}}]}, -{"id":12805,"name":"Orb of Fire","icon":"inv_misc_orb_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":12846,"name":"Argent Dawn Commission","icon":"inv_jewelry_talisman_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":12895,"name":"Breastplate of the Chromatic Flight","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[23,0,23,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":12903,"name":"Legguards of the Chromatic Defier","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,23,23,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":12904,"name":"Shawn's Super Special Swami Hat","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":12905,"name":"Wildfire Cape","icon":"inv_chest_cloth_16","type":4,"stats":[0,0,6,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9816,"zoneId":1583}}]}, -{"id":12926,"name":"Flaming Band","icon":"spell_holy_innerfire","type":11,"stats":[0,0,8,8,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9816,"zoneId":1583}}]}, -{"id":12927,"name":"Truestrike Shoulders","icon":"inv_shoulder_10","type":3,"armorType":2,"stats":[0,17,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9816,"zoneId":1583}}]}, -{"id":12929,"name":"Emberfury Talisman","icon":"inv_jewelry_necklace_05","type":2,"stats":[10,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9816,"zoneId":1583}}]}, -{"id":12930,"name":"Briarwood Reed","icon":"inv_misc_root_02","type":12,"stats":[0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10509,"zoneId":1583}}]}, -{"id":12935,"name":"Warmaster Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[18,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12936,"name":"Battleborn Armbraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[14,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12939,"name":"Dal'Rend's Tribal Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":3,"stats":[8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"setName":"Dal'Rend's Arms","setId":41,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12940,"name":"Dal'Rend's Sacred Charge","icon":"inv_sword_43","type":13,"weaponType":9,"handType":1,"stats":[8,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"setName":"Dal'Rend's Arms","setId":41,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":12945,"name":"Legplates of the Chromatic Defier","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":12952,"name":"Gyth's Skull","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[18,0,18,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10339,"zoneId":1583}}]}, -{"id":12953,"name":"Dragoneye Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,23,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10339,"zoneId":1583}}]}, -{"id":12960,"name":"Tribal War Feathers","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10339,"zoneId":1583}}]}, -{"id":12963,"name":"Blademaster Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,26,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12964,"name":"Tristam Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,18,18,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12965,"name":"Spiritshroud Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12966,"name":"Blackmist Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12967,"name":"Bloodmoon Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12968,"name":"Frostweaver Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,13,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12969,"name":"Seeping Willow","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":222,"weaponSpeed":3.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":12974,"name":"The Black Knight","icon":"inv_sword_13","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.9,"ilvl":31,"quality":3}, -{"id":12975,"name":"Prospector Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":51,"weaponSpeed":2.4,"ilvl":20,"quality":3}, -{"id":12976,"name":"Ironpatch Blade","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3}, -{"id":12977,"name":"Magefist Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,3,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":12978,"name":"Stormbringer Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":12979,"name":"Firebane Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3}, -{"id":12982,"name":"Silver-Linked Footguards","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3}, -{"id":12983,"name":"Rakzur Club","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[4,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":57,"weaponSpeed":2.6,"ilvl":21,"quality":3}, -{"id":12984,"name":"Skycaller","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.6,"ilvl":21,"quality":3}, -{"id":12985,"name":"Ring of Defense","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"unique":true}, -{"id":12987,"name":"Darkweave Breeches","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,4,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3}, -{"id":12988,"name":"Starsight Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,4,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3}, -{"id":12989,"name":"Gargoyle's Bite","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":2.9,"ilvl":22,"quality":3}, -{"id":12990,"name":"Razor's Edge","icon":"inv_weapon_halberd_08","type":13,"weaponType":1,"handType":2,"stats":[4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.4,"ilvl":23,"quality":3}, -{"id":12992,"name":"Searing Blade","icon":"inv_sword_21","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":2.5,"ilvl":23,"quality":3}, -{"id":12994,"name":"Thorbia's Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3}, -{"id":12996,"name":"Band of Purification","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,2,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true}, -{"id":12997,"name":"Redbeard Crest","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3}, -{"id":12998,"name":"Magician's Mantle","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":12999,"name":"Drakewing Bands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":13000,"name":"Staff of Hale Magefire","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":210,"weaponSpeed":3.3,"ilvl":62,"quality":3}, -{"id":13001,"name":"Maiden's Circle","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,11,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":13002,"name":"Lady Alizabeth's Pendant","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,8,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":13003,"name":"Lord Alexander's Battle Axe","icon":"inv_weapon_halberd_02","type":13,"weaponType":1,"handType":4,"stats":[16,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":123,"weaponDamageMax":185,"weaponSpeed":3.2,"ilvl":56,"quality":3}, -{"id":13004,"name":"Torch of Austen","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":104,"weaponSpeed":1.4,"ilvl":58,"quality":3}, -{"id":13005,"name":"Amy's Blanket","icon":"inv_misc_cape_16","type":4,"stats":[0,0,3,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3}, -{"id":13006,"name":"Mass of McGowan","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":2.8,"ilvl":62,"quality":3}, -{"id":13007,"name":"Mageflame Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3}, -{"id":13008,"name":"Dalewind Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,5,9,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":13009,"name":"Cow King's Hide","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3}, -{"id":13010,"name":"Dreamsinger Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[8,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3}, -{"id":13011,"name":"Silver-Lined Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3}, -{"id":13012,"name":"Yorgen Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[6,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3}, -{"id":13013,"name":"Elder Wizard's Mantle","icon":"inv_shoulder_14","type":3,"armorType":1,"stats":[0,0,30,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":13014,"name":"Axe of Rin'ji","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.9,"ilvl":53,"quality":3}, -{"id":13015,"name":"Serathil","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.9,"ilvl":61,"quality":3}, -{"id":13016,"name":"Killmaim","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.2,"ilvl":26,"quality":3}, -{"id":13017,"name":"Hellslayer Battle Axe","icon":"inv_axe_24","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":124,"weaponSpeed":2.9,"ilvl":40,"quality":3}, -{"id":13018,"name":"Executioner's Cleaver","icon":"inv_axe_24","type":13,"weaponType":1,"handType":4,"stats":[23,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":3.8,"ilvl":48,"quality":3}, -{"id":13019,"name":"Harpyclaw Short Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.8,"ilvl":32,"quality":3}, -{"id":13020,"name":"Skystriker Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":2.1,"ilvl":39,"quality":3}, -{"id":13021,"name":"Needle Threader","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2,"ilvl":47,"quality":3}, -{"id":13022,"name":"Gryphonwing Long Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":167,"weaponSpeed":2.7,"ilvl":55,"quality":3}, -{"id":13023,"name":"Eaglehorn Long Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.8,"ilvl":63,"quality":3}, -{"id":13024,"name":"Beazel's Basher","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[6,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":2.5,"ilvl":29,"quality":3}, -{"id":13025,"name":"Deadwood Sledge","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.9,"ilvl":37,"quality":3}, -{"id":13026,"name":"Heaven's Light","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[4,4,4,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.7,"ilvl":45,"quality":3}, -{"id":13027,"name":"Bonesnapper","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":2.7,"ilvl":53,"quality":3}, -{"id":13028,"name":"Bludstone Hammer","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[0,0,5,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":2.1,"ilvl":61,"quality":3}, -{"id":13029,"name":"Umbral Crystal","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3}, -{"id":13030,"name":"Basilisk Bone","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3}, -{"id":13031,"name":"Orb of Mistmantle","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3}, -{"id":13032,"name":"Sword of Corruption","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":2.1,"ilvl":27,"quality":3}, -{"id":13033,"name":"Zealot Blade","icon":"inv_sword_15","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.8,"ilvl":34,"quality":3}, -{"id":13034,"name":"Speedsteel Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.8,"ilvl":41,"quality":3}, -{"id":13035,"name":"Serpent Slicer","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.5,"ilvl":49,"quality":3}, -{"id":13036,"name":"Assassination Blade","icon":"inv_sword_42","type":13,"weaponType":9,"handType":2,"stats":[3,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":2.7,"ilvl":57,"quality":3}, -{"id":13037,"name":"Crystalpine Stinger","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":90,"weaponSpeed":2.8,"ilvl":32,"quality":3}, -{"id":13038,"name":"Swiftwind","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":2,"ilvl":40,"quality":3}, -{"id":13039,"name":"Skull Splitting Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":87,"weaponDamageMax":131,"weaponSpeed":2.6,"ilvl":48,"quality":3}, -{"id":13040,"name":"Heartseeking Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":179,"weaponSpeed":3.1,"ilvl":56,"quality":3}, -{"id":13041,"name":"Guardian Blade","icon":"inv_sword_25","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":2.9,"ilvl":26,"quality":3}, -{"id":13042,"name":"Sword of the Magistrate","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[8,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":145,"weaponSpeed":3.3,"ilvl":41,"quality":3}, -{"id":13043,"name":"Blade of the Titans","icon":"inv_sword_07","type":13,"weaponType":9,"handType":4,"stats":[10,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":169,"weaponSpeed":3.3,"ilvl":49,"quality":3}, -{"id":13044,"name":"Demonslayer","icon":"inv_sword_03","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":182,"weaponSpeed":3.1,"ilvl":57,"quality":3}, -{"id":13045,"name":"Viscous Hammer","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[3,0,6,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":105,"weaponSpeed":2.9,"ilvl":35,"quality":3}, -{"id":13046,"name":"Blanchard's Stout","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[20,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":162,"weaponSpeed":3.1,"ilvl":50,"quality":3}, -{"id":13047,"name":"Twig of the World Tree","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[14,0,21,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":221,"weaponSpeed":3.7,"ilvl":58,"quality":3}, -{"id":13048,"name":"Looming Gavel","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.4,"ilvl":31,"quality":3}, -{"id":13049,"name":"Deanship Claymore","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,4,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":80,"weaponSpeed":2.8,"ilvl":29,"quality":3}, -{"id":13051,"name":"Witchfury","icon":"inv_sword_35","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":87,"weaponDamageMax":131,"weaponSpeed":2.8,"ilvl":44,"quality":3}, -{"id":13052,"name":"Warmonger","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[3,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":162,"weaponSpeed":3,"ilvl":52,"quality":3}, -{"id":13053,"name":"Doombringer","icon":"inv_sword_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":173,"weaponSpeed":2.8,"ilvl":60,"quality":3}, -{"id":13054,"name":"Grim Reaper","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":133,"weaponSpeed":3.1,"ilvl":40,"quality":3}, -{"id":13055,"name":"Bonechewer","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[23,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":2.8,"ilvl":48,"quality":3}, -{"id":13056,"name":"Frenzied Striker","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":162,"weaponSpeed":2.8,"ilvl":56,"quality":3}, -{"id":13057,"name":"Bloodpike","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.2,"ilvl":28,"quality":3}, -{"id":13058,"name":"Khoo's Point","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":117,"weaponSpeed":2.5,"ilvl":44,"quality":3}, -{"id":13059,"name":"Stoneraven","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[13,13,15,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":178,"weaponSpeed":3.3,"ilvl":52,"quality":3}, -{"id":13060,"name":"The Needler","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":136,"weaponSpeed":2.2,"ilvl":60,"quality":3}, -{"id":13062,"name":"Thunderwood","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":1.9,"ilvl":27,"quality":3}, -{"id":13063,"name":"Starfaller","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":1.4,"ilvl":34,"quality":3}, -{"id":13064,"name":"Jaina's Firestarter","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":82,"weaponSpeed":1.6,"ilvl":42,"quality":3}, -{"id":13065,"name":"Wand of Allistarj","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.9,"ilvl":50,"quality":3}, -{"id":13066,"name":"Wyrmslayer Spaulders","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[12,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3}, -{"id":13067,"name":"Hydralick Armor","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[13,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3}, -{"id":13068,"name":"Obsidian Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":3}, -{"id":13070,"name":"Sapphiron's Scale Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[14,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3}, -{"id":13071,"name":"Plated Fist of Hakoo","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":13072,"name":"Stonegrip Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[9,0,14,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13073,"name":"Mugthol's Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[10,0,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":13074,"name":"Golem Shard Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[22,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3}, -{"id":13075,"name":"Direwing Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[15,15,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":13076,"name":"Giantslayer Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[10,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3}, -{"id":13077,"name":"Girdle of Uther","icon":"inv_belt_32","type":8,"armorType":4,"stats":[9,9,10,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":13079,"name":"Shield of Thorsen","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3}, -{"id":13080,"name":"Widow's Clutch","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,15,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13081,"name":"Skullance Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[8,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3}, -{"id":13082,"name":"Mountainside Buckler","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3}, -{"id":13083,"name":"Garrett Family Crest","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,5,6,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":13084,"name":"Kaleidoscope Chain","icon":"inv_jewelry_amulet_07","type":2,"stats":[4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":13085,"name":"Horizon Choker","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,4,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3}, -{"id":13087,"name":"River Pride Choker","icon":"inv_jewelry_necklace_09","type":2,"stats":[4,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3}, -{"id":13088,"name":"Gazlowe's Charm","icon":"inv_jewelry_amulet_01","type":2,"stats":[4,0,11,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3}, -{"id":13089,"name":"Skibi's Pendant","icon":"inv_jewelry_amulet_07","type":2,"stats":[5,13,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":13090,"name":"Breastplate of the Chosen","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,18,18,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13091,"name":"Medallion of Grand Marshal Morris","icon":"inv_jewelry_talisman_08","type":2,"stats":[0,0,7,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":13093,"name":"Blush Ember Ring","icon":"inv_jewelry_ring_25","type":11,"stats":[4,5,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"unique":true}, -{"id":13094,"name":"The Queen's Jewel","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,1,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"unique":true}, -{"id":13095,"name":"Assault Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,7,0,5,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3,"unique":true}, -{"id":13096,"name":"Band of the Hierophant","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,7,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true}, -{"id":13097,"name":"Thunderbrow Ring","icon":"inv_jewelry_ring_09","type":11,"stats":[8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"unique":true}, -{"id":13098,"name":"Painweaver Band","icon":"inv_jewelry_ring_18","type":11,"stats":[8,0,8,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":13099,"name":"Moccasins of the White Hare","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":13100,"name":"Furen's Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,7,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3}, -{"id":13101,"name":"Wolfrunner Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,21,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":13102,"name":"Cassandra's Grace","icon":"inv_jewelry_ring_03","type":1,"armorType":1,"stats":[0,0,7,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3}, -{"id":13103,"name":"Pads of the Venom Spider","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3}, -{"id":13105,"name":"Sutarn's Ring","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,6,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":13106,"name":"Glowing Magical Bracelets","icon":"inv_bracer_19","type":6,"armorType":1,"stats":[0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3}, -{"id":13107,"name":"Magiskull Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":13108,"name":"Tigerstrike Mantle","icon":"inv_misc_pelt_04","type":4,"stats":[0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3}, -{"id":13109,"name":"Blackflame Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":13110,"name":"Wolffear Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,17,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3}, -{"id":13111,"name":"Sandals of the Insurgent","icon":"inv_boots_fabric_01","type":10,"armorType":2,"stats":[0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3}, -{"id":13112,"name":"Winged Helm","icon":"inv_helmet_19","type":1,"armorType":2,"stats":[0,0,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3}, -{"id":13113,"name":"Feathermoon Headdress","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,13,20,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":13114,"name":"Troll's Bane Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3}, -{"id":13115,"name":"Sheepshear Mantle","icon":"inv_shoulder_19","type":3,"armorType":2,"stats":[0,0,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":13116,"name":"Spaulders of the Unseen","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,22,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":13117,"name":"Ogron's Sash","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":3}, -{"id":13118,"name":"Serpentine Sash","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":13119,"name":"Enchanted Kodo Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3}, -{"id":13120,"name":"Deepfury Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3}, -{"id":13121,"name":"Wing of the Whelpling","icon":"inv_misc_cape_04","type":4,"stats":[0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3}, -{"id":13122,"name":"Dark Phantom Cape","icon":"inv_misc_cape_21","type":4,"stats":[0,15,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3}, -{"id":13123,"name":"Dreamwalker Armor","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,17,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":13124,"name":"Ravasaur Scale Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,11,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3}, -{"id":13125,"name":"Elven Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,18,3,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":13126,"name":"Battlecaller Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3}, -{"id":13127,"name":"Frostreaver Crown","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[4,0,15,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3}, -{"id":13128,"name":"High Bergg Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,10,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3}, -{"id":13129,"name":"Firemane Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[19,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3}, -{"id":13130,"name":"Windrunner Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,27,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":13131,"name":"Sparkleshell Mantle","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3}, -{"id":13132,"name":"Skeletal Shoulders","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[6,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3}, -{"id":13133,"name":"Drakesfire Epaulets","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,5,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":13134,"name":"Belt of the Gladiator","icon":"inv_belt_23","type":8,"armorType":3,"stats":[18,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3}, -{"id":13135,"name":"Lordly Armguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[7,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":13136,"name":"Lil Timmy's Peashooter","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.6,"ilvl":21,"quality":3}, -{"id":13137,"name":"Ironweaver","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":2.6,"ilvl":34,"quality":3}, -{"id":13138,"name":"The Silencer","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":136,"weaponSpeed":2.8,"ilvl":42,"quality":3}, -{"id":13139,"name":"Guttbuster","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":2.7,"ilvl":50,"quality":3}, -{"id":13141,"name":"Tooth of Gnarr","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,8,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":13142,"name":"Brigam Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[14,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":13143,"name":"Mark of the Dragon Lord","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13144,"name":"Serenity Belt","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3}, -{"id":13145,"name":"Enormous Ogre Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[12,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3}, -{"id":13146,"name":"Shell Launcher Shotgun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":2.3,"ilvl":58,"quality":3}, -{"id":13148,"name":"Chillpike","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":222,"weaponSpeed":3.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13161,"name":"Trindlehaven Staff","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,23,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":130,"weaponSpeed":2.1,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13162,"name":"Reiver Claws","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[12,0,12,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13163,"name":"Relentless Scythe","icon":"inv_sword_18","type":13,"weaponType":9,"handType":4,"stats":[23,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":222,"weaponSpeed":3.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13164,"name":"Heart of the Scale","icon":"inv_misc_gem_bloodstone_01","type":12,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":13166,"name":"Slamshot Shoulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[17,0,12,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":13167,"name":"Fist of Omokk","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[26,0,11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":143,"weaponDamageMax":216,"weaponSpeed":3.5,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":13168,"name":"Plate of the Shaman King","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[18,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":13169,"name":"Tressermane Leggings","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":13170,"name":"Skyshroud Leggings","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,11,26,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":13171,"name":"Smokey's Lighter","icon":"spell_fire_searingtotem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":13175,"name":"Voone's Twitchbow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,5,5,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":201,"weaponSpeed":3,"ilvl":60,"quality":3}, -{"id":13177,"name":"Talisman of Evasion","icon":"inv_jewelry_amulet_04","type":2,"stats":[8,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9237,"zoneId":1583}}]}, -{"id":13178,"name":"Rosewine Circle","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10584,"zoneId":1583}}]}, -{"id":13179,"name":"Brazecore Armguards","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9237,"zoneId":1583}}]}, -{"id":13181,"name":"Demonskin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10263,"zoneId":1583}}]}, -{"id":13182,"name":"Phase Blade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10263,"zoneId":1583}}]}, -{"id":13183,"name":"Venomspitter","icon":"inv_wand_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"unique":true,"setName":"Spider's Kiss","setId":65,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10596,"zoneId":1583}}]}, -{"id":13184,"name":"Fallbrush Handgrips","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10376,"zoneId":1583}}]}, -{"id":13185,"name":"Sunderseer Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10376,"zoneId":1583}}]}, -{"id":13198,"name":"Hurd Smasher","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9718,"zoneId":1583}}]}, -{"id":13199,"name":"Crushridge Bindings","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3}, -{"id":13203,"name":"Armswake Cloak","icon":"inv_misc_cape_19","type":4,"stats":[10,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9718,"zoneId":1583}}]}, -{"id":13204,"name":"Bashguuder","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9718,"zoneId":1583}}]}, -{"id":13205,"name":"Rhombeard Protector","icon":"inv_shield_14","type":13,"weaponType":7,"handType":3,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10268,"zoneId":1583}}]}, -{"id":13206,"name":"Wolfshear Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10268,"zoneId":1583}}]}, -{"id":13208,"name":"Bleak Howler Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10268,"zoneId":1583}}]}, -{"id":13209,"name":"Seal of the Dawn","icon":"inv_misc_armorkit_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"unique":true}, -{"id":13210,"name":"Pads of the Dread Wolf","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10220,"zoneId":1583}}]}, -{"id":13211,"name":"Slashclaw Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10220,"zoneId":1583}}]}, -{"id":13212,"name":"Halycon's Spiked Collar","icon":"inv_belt_14","type":2,"stats":[0,8,8,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10220,"zoneId":1583}}]}, -{"id":13213,"name":"Smolderweb's Eye","icon":"inv_misc_gem_pearl_01","type":12,"stats":[0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10596,"zoneId":1583}}]}, -{"id":13216,"name":"Crown of the Penitent","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,0,20,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":13217,"name":"Band of the Penitent","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":13218,"name":"Fang of the Crystal Spider","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.4,"ilvl":60,"quality":3,"unique":true,"setName":"Spider's Kiss","setId":65,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10376,"zoneId":1583}}]}, -{"id":13243,"name":"Argent Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":13244,"name":"Gilded Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10596,"zoneId":1583}}]}, -{"id":13245,"name":"Kresh's Back","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":3653,"zoneId":718}}]}, -{"id":13246,"name":"Argent Avenger","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":108,"weaponSpeed":2.2,"ilvl":62,"quality":3}, -{"id":13248,"name":"Burstshot Harquebus","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":201,"weaponSpeed":3,"ilvl":60,"quality":3}, -{"id":13249,"name":"Argent Crusader","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":3,"ilvl":62,"quality":3}, -{"id":13252,"name":"Cloudrunner Girdle","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,14,14,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9736,"zoneId":1583}}]}, -{"id":13253,"name":"Hands of Power","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,9,20,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9736,"zoneId":1583}}]}, -{"id":13254,"name":"Astral Guard","icon":"inv_shield_12","type":13,"weaponType":7,"handType":3,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13255,"name":"Trueaim Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,20,0,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":13257,"name":"Demonic Runed Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":13258,"name":"Slaghide Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,14,14,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10584,"zoneId":1583}}]}, -{"id":13259,"name":"Ribsteel Footguards","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[17,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10584,"zoneId":1583}}]}, -{"id":13260,"name":"Wind Dancer Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":13261,"name":"Globe of D'sak","icon":"inv_wand_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9217,"zoneId":1583}}]}, -{"id":13282,"name":"Ogreseer Tower Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9217,"zoneId":1583}}]}, -{"id":13283,"name":"Magus Ring","icon":"spell_holy_innerfire","type":11,"stats":[0,0,6,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9217,"zoneId":1583}}]}, -{"id":13284,"name":"Swiftdart Battleboots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,17,12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9218,"zoneId":1583}}]}, -{"id":13285,"name":"The Blackrock Slicer","icon":"inv_weapon_halberd_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":4,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9218,"zoneId":1583}}]}, -{"id":13286,"name":"Rivenspike","icon":"inv_pick_05","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9219,"zoneId":1583}}]}, -{"id":13314,"name":"Alanna's Embrace","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":13340,"name":"Cape of the Black Baron","icon":"inv_misc_cape_20","type":4,"stats":[0,9,9,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13344,"name":"Dracorian Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13345,"name":"Seal of Rivendare","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,8,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13346,"name":"Robes of the Exalted","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,13,13,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13348,"name":"Demonshear","icon":"inv_sword_14","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":188,"weaponSpeed":3.8,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13349,"name":"Scepter of the Unholy","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,6,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":2.4,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13353,"name":"Book of the Dead","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13358,"name":"Wyrmtongue Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,13,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13359,"name":"Crown of Tyranny","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13360,"name":"Gift of the Elven Magi","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,5,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.6,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13361,"name":"Skullforge Reaver","icon":"inv_sword_12","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":2.6,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13368,"name":"Bonescraper","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.4,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13369,"name":"Fire Striders","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":13371,"name":"Father Flame","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13372,"name":"Slavedriver's Cane","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":165,"weaponSpeed":3,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":13373,"name":"Band of Flesh","icon":"inv_misc_bone_04","type":11,"stats":[8,0,11,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":13374,"name":"Soulstealer Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,10,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":13375,"name":"Crest of Retribution","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":13376,"name":"Royal Tribunal Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,6,13,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":13378,"name":"Songbird Blouse","icon":"inv_chest_cloth_38","type":5,"armorType":2,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10558,"zoneId":2017}}]}, -{"id":13380,"name":"Willey's Portable Howitzer","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,6,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.9,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":13381,"name":"Master Cannoneer Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[13,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":13382,"name":"Cannonball Runner","icon":"inv_misc_bomb_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":13383,"name":"Woollies of the Prancing Minstrel","icon":"inv_pants_14","type":9,"armorType":3,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10558,"zoneId":2017}}]}, -{"id":13384,"name":"Rainbow Girdle","icon":"inv_belt_30","type":8,"armorType":4,"stats":[9,0,9,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10558,"zoneId":2017}}]}, -{"id":13385,"name":"Tome of Knowledge","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10811,"zoneId":2017}}]}, -{"id":13386,"name":"Archivist Cape","icon":"inv_misc_cape_19","type":4,"stats":[0,0,7,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10811,"zoneId":2017}}]}, -{"id":13387,"name":"Foresight Girdle","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10811,"zoneId":2017}}]}, -{"id":13388,"name":"The Postmaster's Tunic","icon":"inv_chest_leather_10","type":5,"armorType":1,"stats":[0,0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"setName":"The Postmaster","setId":81,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13389,"name":"The Postmaster's Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"setName":"The Postmaster","setId":81,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13390,"name":"The Postmaster's Band","icon":"inv_misc_bandage_15","type":1,"armorType":1,"stats":[0,0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"setName":"The Postmaster","setId":81,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13391,"name":"The Postmaster's Treads","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"setName":"The Postmaster","setId":81,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13392,"name":"The Postmaster's Seal","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"unique":true,"setName":"The Postmaster","setId":81,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13393,"name":"Malown's Slam","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":198,"weaponSpeed":3.8,"ilvl":50,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11143,"zoneId":2017}}]}, -{"id":13394,"name":"Skul's Cold Embrace","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[16,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10393,"zoneId":2017}}]}, -{"id":13395,"name":"Skul's Fingerbone Claws","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,17,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10393,"zoneId":2017}}]}, -{"id":13396,"name":"Skul's Ghastly Touch","icon":"inv_misc_bone_elfskull_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":1.8,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10393,"zoneId":2017}}]}, -{"id":13397,"name":"Stoneskin Gargoyle Cape","icon":"inv_misc_cape_19","type":4,"stats":[0,9,9,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10809,"zoneId":2017}}]}, -{"id":13398,"name":"Boots of the Shrieker","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13399,"name":"Gargoyle Shredder Talons","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":2.6,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10809,"zoneId":2017}}]}, -{"id":13400,"name":"Vambraces of the Sadist","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[5,0,5,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10808,"zoneId":2017}}]}, -{"id":13401,"name":"The Cruel Hand of Timmy","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.6,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10808,"zoneId":2017}}]}, -{"id":13402,"name":"Timmy's Galoshes","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,11,11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10808,"zoneId":2017}}]}, -{"id":13403,"name":"Grimgore Noose","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,9,9,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10808,"zoneId":2017}}]}, -{"id":13404,"name":"Mask of the Unforgiven","icon":"inv_misc_bandana_01","type":1,"armorType":2,"stats":[0,0,7,0,0,10,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10516,"zoneId":2017}}]}, -{"id":13405,"name":"Wailing Nightbane Pauldrons","icon":"inv_shoulder_25","type":3,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10516,"zoneId":2017}}]}, -{"id":13408,"name":"Soul Breaker","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.6,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10516,"zoneId":2017}}]}, -{"id":13409,"name":"Tearfall Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10516,"zoneId":2017}}]}, -{"id":13473,"name":"Felstone Good Luck Charm","icon":"inv_jewelry_talisman_11","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":13474,"name":"Farmer Dalson's Shotgun","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":1.9,"ilvl":56,"quality":2,"sources":[{"quest":{"id":5060,"name":"Locked Away"}}]}, -{"id":13475,"name":"Dalson Family Wedding Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":5060,"name":"Locked Away"}}]}, -{"id":13498,"name":"Handcrafted Mastersmith Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[26,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10899,"zoneId":1583}}]}, -{"id":13502,"name":"Handcrafted Mastersmith Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[14,0,14,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10899,"zoneId":1583}}]}, -{"id":13503,"name":"Alchemist Stone","icon":"spell_holy_pureofheart","type":12,"stats":[15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":1,"spellId":17632}},{"crafted":{"profession":1,"spellId":17632}}]}, -{"id":13505,"name":"Runeblade of Baron Rivendare","icon":"inv_sword_17","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":219,"weaponSpeed":3.6,"ilvl":53,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":13515,"name":"Ramstein's Lightning Bolts","icon":"inv_misc_gear_06","type":12,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":13524,"name":"Skull of Burning Shadows","icon":"inv_misc_bone_humanskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":13525,"name":"Darkbind Fingers","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,12,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":13526,"name":"Flamescarred Girdle","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":13527,"name":"Lavawalker Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[15,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":13528,"name":"Twilight Void Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":13529,"name":"Husk of Nerub'enkan","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[9,0,9,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":13530,"name":"Fangdrip Runners","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":13531,"name":"Crypt Stalker Leggings","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,15,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":13532,"name":"Darkspinner Claws","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":13533,"name":"Acid-Etched Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":4,"stats":[9,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":13534,"name":"Banshee Finger","icon":"inv_weapon_shortblade_18","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":1.9,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":13535,"name":"Coldtouch Phantom Wraps","icon":"inv_chest_cloth_47","type":5,"armorType":1,"stats":[0,0,13,13,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":13537,"name":"Chillhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":13538,"name":"Windshrieker Pauldrons","icon":"inv_shoulder_13","type":3,"armorType":3,"stats":[0,0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":13539,"name":"Banshee's Touch","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":13544,"name":"Spectral Essence","icon":"inv_misc_orb_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true}, -{"id":13811,"name":"Necklace of the Dawn","icon":"inv_jewelry_talisman_05","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"quest":{"id":5530,"name":" Necklace of the Dawn"}}]}, -{"id":13812,"name":"Ring of the Dawn","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"sources":[{"quest":{"id":5532,"name":" Ring of the Dawn"}}]}, -{"id":13816,"name":"Fine Longsword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.2,"ilvl":52}, -{"id":13817,"name":"Tapered Greatsword","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.9,"ilvl":58}, -{"id":13818,"name":"Jagged Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":50,"weaponSpeed":1.9,"ilvl":56}, -{"id":13819,"name":"Balanced War Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":83,"weaponSpeed":2.5,"ilvl":59}, -{"id":13820,"name":"Clout Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":2.3,"ilvl":54}, -{"id":13821,"name":"Bulky Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":115,"weaponSpeed":3.6,"ilvl":57}, -{"id":13822,"name":"Spiked Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.6,"ilvl":53}, -{"id":13823,"name":"Stout War Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.1,"ilvl":51}, -{"id":13824,"name":"Recurve Long Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":2.5,"ilvl":55}, -{"id":13825,"name":"Primed Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.8,"ilvl":57}, -{"id":13856,"name":"Runecloth Belt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18402}},{"crafted":{"profession":11,"spellId":18402}}]}, -{"id":13857,"name":"Runecloth Tunic","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18407}},{"crafted":{"profession":11,"spellId":18407}}]}, -{"id":13858,"name":"Runecloth Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18406}},{"crafted":{"profession":11,"spellId":18406}}]}, -{"id":13860,"name":"Runecloth Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18409}},{"crafted":{"profession":11,"spellId":18409}}]}, -{"id":13863,"name":"Runecloth Gloves","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,14,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18417}},{"crafted":{"profession":11,"spellId":18417}}]}, -{"id":13864,"name":"Runecloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18423}},{"crafted":{"profession":11,"spellId":18423}}]}, -{"id":13865,"name":"Runecloth Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18438}},{"crafted":{"profession":11,"spellId":18438}}]}, -{"id":13866,"name":"Runecloth Headband","icon":"inv_misc_bandana_03","type":1,"armorType":1,"stats":[0,0,0,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18444}},{"crafted":{"profession":11,"spellId":18444}}]}, -{"id":13867,"name":"Runecloth Shoulders","icon":"inv_shoulder_21","type":3,"armorType":1,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18449}},{"crafted":{"profession":11,"spellId":18449}}]}, -{"id":13868,"name":"Frostweave Robe","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18404}},{"crafted":{"profession":11,"spellId":18404}}]}, -{"id":13869,"name":"Frostweave Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18403}},{"crafted":{"profession":11,"spellId":18403}}]}, -{"id":13870,"name":"Frostweave Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,9,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18411}},{"crafted":{"profession":11,"spellId":18411}}]}, -{"id":13871,"name":"Frostweave Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18424}},{"crafted":{"profession":11,"spellId":18424}}]}, -{"id":13882,"name":"42 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13883,"name":"45 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13884,"name":"49 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13885,"name":"34 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13886,"name":"37 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13887,"name":"52 Pound Redgill","icon":"inv_misc_fish_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":1}, -{"id":13895,"name":"Formal Dangui","icon":"inv_chest_cloth_29","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":4184,"npcName":"Geenia Sunshadow","zoneId":493}}]}, -{"id":13896,"name":"Dark Green Wedding Hanbok","icon":"inv_chest_cloth_23","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":13897,"name":"White Traditional Hanbok","icon":"inv_chest_cloth_50","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":13898,"name":"Royal Dangui","icon":"inv_chest_cloth_30","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":13899,"name":"Red Traditional Hanbok","icon":"inv_chest_cloth_24","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":4184,"npcName":"Geenia Sunshadow","zoneId":493}}]}, -{"id":13900,"name":"Green Wedding Hanbok","icon":"inv_chest_cloth_22","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":4184,"npcName":"Geenia Sunshadow","zoneId":493}}]}, -{"id":13901,"name":"15 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13902,"name":"18 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13903,"name":"22 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13904,"name":"25 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13905,"name":"29 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13906,"name":"32 Pound Salmon","icon":"inv_misc_fish_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13914,"name":"70 Pound Mightfish","icon":"inv_misc_monsterhead_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13915,"name":"85 Pound Mightfish","icon":"inv_misc_monsterhead_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13916,"name":"92 Pound Mightfish","icon":"inv_misc_monsterhead_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13917,"name":"103 Pound Mightfish","icon":"inv_misc_monsterhead_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":1}, -{"id":13937,"name":"Headmaster's Charge","icon":"inv_jewelry_talisman_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":2.9,"ilvl":45,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13938,"name":"Bonecreeper Stylus","icon":"inv_misc_bone_taurenskull_01","type":14,"rangedWeaponType":6,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":1.9,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13944,"name":"Tombstone Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13950,"name":"Detention Strap","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,8,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13951,"name":"Vigorsteel Vambraces","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[7,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13952,"name":"Iceblade Hacker","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":13953,"name":"Silent Fang","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":2.4,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13954,"name":"Verdant Footpads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10809,"zoneId":2017}}]}, -{"id":13955,"name":"Stoneform Shoulders","icon":"inv_shoulder_25","type":3,"armorType":4,"stats":[8,0,8,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13956,"name":"Clutch of Andros","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,6,14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13957,"name":"Gargoyle Slashers","icon":"inv_gauntlets_09","type":7,"armorType":2,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13958,"name":"Wyrmthalak's Shackles","icon":"inv_bracer_04","type":6,"armorType":1,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13959,"name":"Omokk's Girth Restrainer","icon":"inv_belt_13","type":8,"armorType":4,"stats":[14,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13960,"name":"Heart of the Fiend","icon":"inv_misc_orb_03","type":2,"stats":[0,0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13961,"name":"Halycon's Muzzle","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,12,17,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13962,"name":"Vosh'gajin's Strand","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,12,12,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13963,"name":"Voone's Vice Grips","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,17,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13964,"name":"Witchblade","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,5,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":63,"weaponSpeed":1.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":13965,"name":"Blackhand's Breadth","icon":"inv_misc_armorkit_09","type":12,"stats":[0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13966,"name":"Mark of Tyranny","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":13967,"name":"Windreaver Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[0,14,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13968,"name":"Eye of the Beast","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[5,1,7,3,8]}, -{"id":13969,"name":"Loomguard Armbraces","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13982,"name":"Warblade of Caer Darrow","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[14,0,21,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":157,"weaponSpeed":3.3,"ilvl":45,"quality":3}, -{"id":13983,"name":"Gravestone War Axe","icon":"inv_weapon_halberd_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":162,"weaponSpeed":3.4,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":13984,"name":"Darrowspike","icon":"inv_weapon_shortblade_21","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":59,"weaponSpeed":1.5,"ilvl":45,"quality":3}, -{"id":13986,"name":"Crown of Caer Darrow","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,6,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":14002,"name":"Darrowshire Strongguard","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":14022,"name":"Barov Peasant Caller","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"factionRestriction":2}, -{"id":14023,"name":"Barov Peasant Caller","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":14024,"name":"Frightalon","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":1.8,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":14025,"name":"Mystic's Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14042,"name":"Cindercloth Vest","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18408}},{"crafted":{"profession":11,"spellId":18408}}]}, -{"id":14043,"name":"Cindercloth Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18412}},{"crafted":{"profession":11,"spellId":18412}}]}, -{"id":14044,"name":"Cindercloth Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18418}},{"crafted":{"profession":11,"spellId":18418}}]}, -{"id":14045,"name":"Cindercloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18434}},{"crafted":{"profession":11,"spellId":18434}}]}, -{"id":14086,"name":"Beaded Sandals","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":14087,"name":"Beaded Cuffs","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":14088,"name":"Beaded Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":14089,"name":"Beaded Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":14090,"name":"Beaded Britches","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,16,27,227,584,754,839,1009,1875,1876,2027,2028,-81,-78,-19,-15,-11,-9],"ilvl":11,"quality":2}, -{"id":14091,"name":"Beaded Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,19,25,27,754,839,1009,1799,1800,1838,1952,15,1837,1951,-84,-81,-69,-19,-15,-9],"ilvl":11,"quality":2}, -{"id":14093,"name":"Beaded Cord","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":14094,"name":"Beaded Wraps","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,19,25,27,754,839,1009,1799,1800,1838,1952,15,1837,1951,-84,-81,-69,-19,-15,-9],"ilvl":11,"quality":2}, -{"id":14095,"name":"Native Bands","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":14096,"name":"Native Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,96,112,113,114,758,759,760,845,1013,1014,1015,1802,1803,1840,1841,1954,843,844,1955,-84,-81,-69,-19,-15,-9],"ilvl":16,"quality":2}, -{"id":14097,"name":"Native Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,95,229,231,238,585,586,587,755,756,757,840,841,842,1010,1011,1012,1877,1878,2029,2030,-81,-78,-69,-19,-15,-11,-9],"ilvl":14,"quality":2}, -{"id":14098,"name":"Native Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":14099,"name":"Native Sash","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":14100,"name":"Brightcloth Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18414}},{"crafted":{"profession":11,"spellId":18414}}]}, -{"id":14101,"name":"Brightcloth Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18415}},{"crafted":{"profession":11,"spellId":18415}}]}, -{"id":14102,"name":"Native Handwraps","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":14103,"name":"Brightcloth Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18420}},{"crafted":{"profession":11,"spellId":18420}}]}, -{"id":14104,"name":"Brightcloth Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18439}},{"crafted":{"profession":11,"spellId":18439}}]}, -{"id":14106,"name":"Felcloth Robe","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,7,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18451}},{"crafted":{"profession":11,"spellId":18451}}]}, -{"id":14107,"name":"Felcloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18419}},{"crafted":{"profession":11,"spellId":18419}}]}, -{"id":14108,"name":"Felcloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18437}},{"crafted":{"profession":11,"spellId":18437}}]}, -{"id":14109,"name":"Native Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,96,112,113,114,758,759,760,845,1013,1014,1015,1802,1803,1840,1841,1954,843,844,1955,-84,-81,-69,-19,-15,-9],"ilvl":16,"quality":2}, -{"id":14110,"name":"Native Sandals","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":14111,"name":"Felcloth Hood","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18442}},{"crafted":{"profession":11,"spellId":18442}}]}, -{"id":14112,"name":"Felcloth Shoulders","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,18,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18453}},{"crafted":{"profession":11,"spellId":18453}}]}, -{"id":14113,"name":"Aboriginal Sash","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,25,26,228,256,501,584,586,754,755,756,839,840,841,1009,1010,1011,1876,1877,2028,2029,-78,-69,-19,-13,-9,585],"ilvl":15,"quality":2}, -{"id":14114,"name":"Aboriginal Footwraps","icon":"inv_boots_wolf","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,28,95,96,232,233,238,757,758,759,842,843,844,1012,1013,1014,1801,1802,1839,1840,1953,1954,-84,-81,-69,-19,-15,-11,-9],"ilvl":16,"quality":2}, -{"id":14115,"name":"Aboriginal Bands","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":14116,"name":"Aboriginal Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":14117,"name":"Aboriginal Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,95,232,233,238,587,588,589,757,758,759,842,843,844,1012,1013,1014,1877,1878,2029,2030,-78,-81,-69,-19,-15,-11,-9],"ilvl":16,"quality":2}, -{"id":14119,"name":"Aboriginal Loincloth","icon":"inv_pants_wolf","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[95,113,233,234,588,589,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,232,-81,-78,-69,-19,-15,-11,-9],"ilvl":17,"quality":2}, -{"id":14120,"name":"Aboriginal Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,761,762,763,846,847,848,1016,1017,1018,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":14121,"name":"Aboriginal Vest","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,761,762,763,846,847,848,1016,1017,1018,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":14122,"name":"Ritual Bands","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,25,26,27,28,755,756,840,841,1010,1011,1800,1801,1838,1839,1876,1877,1953,2028,2029,-84,-81,-69,-19,-15,-9,1952],"ilvl":18,"quality":2}, -{"id":14123,"name":"Ritual Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,25,26,27,28,755,756,840,841,1010,1011,1800,1801,1838,1839,1876,1877,1953,2028,2029,1952,-84,-81,-69,-19,-15,-9],"ilvl":17,"quality":2}, -{"id":14124,"name":"Ritual Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[95,113,232,233,234,588,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,-81,-78,-69,-19,-15,-11,-9,589],"ilvl":20,"quality":2}, -{"id":14125,"name":"Ritual Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,153,235,248,591,593,761,762,763,846,847,848,1016,1018,1880,2032,2033,-81,-78,-69,-19,-15,-11,-9,236,592,1017,1881],"ilvl":21,"quality":2}, -{"id":14126,"name":"Ritual Amice","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1}, -{"id":14127,"name":"Ritual Shroud","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,174,179,184,764,765,766,849,851,1020,1021,1806,1843,1844,1805,1957,1958,153,154,850,1019,-84,-81,-69,-19,-15,-9],"ilvl":24,"quality":2}, -{"id":14128,"name":"Wizardweave Robe","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18446}},{"crafted":{"profession":11,"spellId":18446}}]}, -{"id":14129,"name":"Ritual Sandals","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-11,95,96,113,114,232,233,234,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1954,1955,-84,-81,-69,-19,-15,-9],"ilvl":20,"quality":2}, -{"id":14130,"name":"Wizardweave Turban","icon":"inv_helmet_63","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18450}},{"crafted":{"profession":11,"spellId":18450}}]}, -{"id":14131,"name":"Ritual Belt","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,112,503,504,505,588,589,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,-81,-78,-69,-19,-13,-9],"ilvl":19,"quality":2}, -{"id":14132,"name":"Wizardweave Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18421}},{"crafted":{"profession":11,"spellId":18421}}]}, -{"id":14133,"name":"Ritual Tunic","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,174,179,184,764,765,766,849,851,1020,1021,1806,1843,1844,1805,1957,1958,153,154,850,1019,-84,-81,-69,-19,-15,-9],"ilvl":24,"quality":2}, -{"id":14134,"name":"Cloak of Fire","icon":"inv_misc_cape_18","type":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18422}},{"crafted":{"profession":11,"spellId":18422}}]}, -{"id":14136,"name":"Robe of Winter Night","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18436}},{"crafted":{"profession":11,"spellId":18436}}]}, -{"id":14137,"name":"Mooncloth Leggings","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,12,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18440}},{"crafted":{"profession":11,"spellId":18440}}]}, -{"id":14138,"name":"Mooncloth Vest","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,12,20,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18447}},{"crafted":{"profession":11,"spellId":18447}}]}, -{"id":14139,"name":"Mooncloth Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,9,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18448}},{"crafted":{"profession":11,"spellId":18448}}]}, -{"id":14140,"name":"Mooncloth Circlet","icon":"inv_misc_bandana_01","type":1,"armorType":1,"stats":[0,0,13,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18452}},{"crafted":{"profession":11,"spellId":18452}}]}, -{"id":14141,"name":"Ghostweave Vest","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,9,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18416}},{"crafted":{"profession":11,"spellId":18416}}]}, -{"id":14142,"name":"Ghostweave Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18413}},{"crafted":{"profession":11,"spellId":18413}}]}, -{"id":14143,"name":"Ghostweave Belt","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18410}},{"crafted":{"profession":11,"spellId":18410}}]}, -{"id":14144,"name":"Ghostweave Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":18441}},{"crafted":{"profession":11,"spellId":18441}}]}, -{"id":14145,"name":"Cursed Felblade","icon":"inv_weapon_shortblade_12","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11520,"zoneId":2437}}]}, -{"id":14146,"name":"Gloves of Spell Mastery","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,10,8,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"classAllowlist":[5,3,8],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18454}},{"crafted":{"profession":11,"spellId":18454}}]}, -{"id":14147,"name":"Cavedweller Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11518,"zoneId":2437}}]}, -{"id":14148,"name":"Crystalline Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11520,"zoneId":2437}}]}, -{"id":14149,"name":"Subterranean Cape","icon":"inv_misc_cape_18","type":4,"stats":[4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11520,"zoneId":2437}}]}, -{"id":14150,"name":"Robe of Evocation","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,4,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11518,"zoneId":2437}}]}, -{"id":14151,"name":"Chanting Blade","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.8,"ilvl":18,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11518,"zoneId":2437}}]}, -{"id":14152,"name":"Robe of the Archmage","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,18,34,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18457}},{"crafted":{"profession":11,"spellId":18457}}]}, -{"id":14153,"name":"Robe of the Void","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,14,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18458}},{"crafted":{"profession":11,"spellId":18458}}]}, -{"id":14154,"name":"Truefaith Vestments","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,14,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"classAllowlist":[5],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":18456}},{"crafted":{"profession":11,"spellId":18456}}]}, -{"id":14157,"name":"Pagan Mantle","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":14158,"name":"Pagan Vest","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":26,"quality":2}, -{"id":14159,"name":"Pagan Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[113,114,134,135,235,236,248,761,762,763,846,847,848,1016,1017,1018,1803,1804,1841,1842,1955,1956,-84,-81,-69,-19,-15,-11,-9],"ilvl":22,"quality":2}, -{"id":14160,"name":"Pagan Bands","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":14161,"name":"Pagan Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,25,26,27,28,755,756,840,841,1010,1011,1800,1801,1838,1839,1876,1877,1953,2028,2029,1952,-84,-81,-69,-19,-15,-9],"ilvl":18,"quality":2}, -{"id":14162,"name":"Pagan Mitts","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[113,134,235,236,248,591,592,593,761,762,763,846,847,848,1016,1017,1018,1879,1880,2031,2032,-81,-78,-69,-19,-15,-11,-9],"ilvl":23,"quality":2}, -{"id":14163,"name":"Pagan Wraps","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,767,768,769,852,853,854,1022,1023,1024,1807,1808,1845,1846,1959,1960,-84,-81,-69,-19,-15,-9],"ilvl":26,"quality":2}, -{"id":14164,"name":"Pagan Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,112,503,504,505,588,589,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,-81,-78,-69,-19,-13,-9],"ilvl":21,"quality":2}, -{"id":14165,"name":"Pagan Britches","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,181,251,599,767,768,769,852,853,854,1022,1023,1024,1883,1884,2035,2036,-81,-78,-69,-19,-15,-11,-9,250,252,597,598],"ilvl":25,"quality":2}, -{"id":14166,"name":"Buccaneer's Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":14167,"name":"Buccaneer's Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,26,28,94,95,96,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":14168,"name":"Buccaneer's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[95,113,232,233,234,588,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,-81,-78,-69,-19,-15,-11,-9,589],"ilvl":20,"quality":2}, -{"id":14169,"name":"Aboriginal Shoulder Pads","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":14170,"name":"Buccaneer's Mantle","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":14171,"name":"Buccaneer's Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[153,179,237,247,594,595,596,764,765,766,849,850,851,1019,1020,1021,1881,1882,2033,2034,249,-81,-78,-69,-19,-15,-11,-9],"ilvl":22,"quality":2}, -{"id":14172,"name":"Buccaneer's Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,174,179,184,764,765,766,849,851,1020,1021,1806,1843,1844,1805,1957,1958,153,154,850,1019,-84,-81,-69,-19,-15,-9],"ilvl":23,"quality":2}, -{"id":14173,"name":"Buccaneer's Cord","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,112,503,504,505,588,589,590,758,759,760,843,844,845,1013,1014,1015,1878,1879,2030,2031,-81,-78,-69,-19,-13,-9],"ilvl":20,"quality":2}, -{"id":14174,"name":"Buccaneer's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-11,95,96,113,114,232,233,234,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1954,1955,-84,-81,-69,-19,-15,-9],"ilvl":19,"quality":2}, -{"id":14175,"name":"Buccaneer's Vest","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,174,179,184,764,765,766,849,851,1020,1021,1806,1843,1844,1805,1957,1958,153,154,850,1019,-84,-81,-69,-19,-15,-9],"ilvl":23,"quality":2}, -{"id":14176,"name":"Watcher's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,135,153,154,237,248,249,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1956,1957,-84,-81,-69,-19,-15,-11,-9],"ilvl":26,"quality":2}, -{"id":14177,"name":"Watcher's Cuffs","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,114,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-19,-84,-81,-69,-15,-9],"ilvl":26,"quality":2}, -{"id":14178,"name":"Watcher's Cap","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1886,1887,1962,2038,2039,518,519,1963,-84,-81,-69,-19,-13,-9],"ilvl":31,"quality":2}, -{"id":14179,"name":"Watcher's Cape","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,96,112,113,114,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1878,1879,1954,2030,2031,-84,-81,-69,-19,-15,-9,1955],"ilvl":24,"quality":2}, -{"id":14180,"name":"Watcher's Jerkin","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,181,182,186,187,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-15,-9],"ilvl":30,"quality":2}, -{"id":14181,"name":"Watcher's Handwraps","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,252,-81,-78,-69,-19,-15,-11,-9,250],"ilvl":28,"quality":2}, -{"id":14182,"name":"Watcher's Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,184,511,512,513,766,767,768,851,852,853,1021,1022,1023,1806,1844,1958,-84,-81,-69,-19,-13,-9],"ilvl":28,"quality":2}, -{"id":14183,"name":"Watcher's Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,254,600,602,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,253,255,601,-81,-78,-69,-19,-15,-11,-9],"ilvl":30,"quality":2}, -{"id":14184,"name":"Watcher's Robes","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,181,182,186,187,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-15,-9],"ilvl":30,"quality":2}, -{"id":14185,"name":"Watcher's Cinch","icon":"inv_belt_21","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,152,508,509,510,594,763,764,765,848,849,850,1018,1019,1020,1880,1881,2032,2033,593,595,-81,-78,-69,-19,-13,-9],"ilvl":27,"quality":2}, -{"id":14186,"name":"Raincaller Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,184,511,512,513,766,767,768,851,852,853,1021,1022,1023,1806,1844,1958,-84,-81,-69,-19,-13,-9],"ilvl":29,"quality":2}, -{"id":14187,"name":"Raincaller Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":28,"quality":2}, -{"id":14188,"name":"Raincaller Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,114,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-84,-81,-69,-19,-15,-9],"ilvl":27,"quality":2}, -{"id":14189,"name":"Raincaller Cap","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,520,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1886,1887,1962,2038,2039,518,519,1963,-84,-81,-69,-19,-13,-9],"ilvl":32,"quality":2}, -{"id":14190,"name":"Raincaller Vest","icon":"inv_shirt_10","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-9],"ilvl":31,"quality":2}, -{"id":14191,"name":"Raincaller Mitts","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,252,-81,-78,-69,-19,-15,-11,-9,250],"ilvl":30,"quality":2}, -{"id":14192,"name":"Raincaller Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,773,774,775,858,859,860,1028,1029,1030,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-9],"ilvl":31,"quality":2}, -{"id":14193,"name":"Raincaller Pants","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,435,437,604,605,773,774,775,858,859,860,1028,1029,1030,1886,1887,2038,2039,436,-81,-78,-69,-19,-15,-11,-9,603],"ilvl":31,"quality":2}, -{"id":14194,"name":"Raincaller Cord","icon":"inv_misc_bandana_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1882,2034,-81,-78,-69,-19,-13,-9],"ilvl":28,"quality":2}, -{"id":14195,"name":"Raincaller Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,184,247,250,252,766,767,768,851,852,853,1021,1022,1023,1806,1844,1958,-84,-81,-69,-19,-15,-11,-9],"ilvl":29,"quality":2}, -{"id":14196,"name":"Thistlefur Sandals","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,185,250,251,767,768,769,854,1022,1023,1024,1807,1845,1959,252,852,853,-84,-81,-69,-19,-15,-11,-9],"ilvl":32,"quality":2}, -{"id":14197,"name":"Thistlefur Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,761,762,763,846,847,848,1016,1017,1018,1804,1842,1880,1956,2032,-84,-81,-69,-19,-15,-9],"ilvl":30,"quality":2}, -{"id":14198,"name":"Thistlefur Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-9],"ilvl":31,"quality":2}, -{"id":14199,"name":"Thistlefur Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,252,-81,-78,-69,-19,-15,-11,-9],"ilvl":33,"quality":2}, -{"id":14200,"name":"Thistlefur Cap","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,522,523,776,777,778,861,862,863,1031,1033,1811,1812,1849,1850,1888,1963,1964,2039,2040,521,1032,1887,-84,-81,-69,-19,-13,-9],"ilvl":35,"quality":2}, -{"id":14201,"name":"Thistlefur Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-13,176,177,186,187,515,516,517,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-9],"ilvl":34,"quality":2}, -{"id":14202,"name":"Thistlefur Jerkin","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":36,"quality":2}, -{"id":14203,"name":"Thistlefur Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,606,608,776,777,778,861,862,863,1031,1032,1033,1888,1887,2039,2040,438,-81,-78,-69,-19,-15,-11,-9,607],"ilvl":35,"quality":2}, -{"id":14204,"name":"Thistlefur Robe","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1811,1812,1849,1850,1963,1964,-9,-84,-81,-19,-15],"ilvl":36,"quality":2}, -{"id":14205,"name":"Thistlefur Belt","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,512,-81,-78,-69,-19,-13,-9],"ilvl":32,"quality":2}, -{"id":14206,"name":"Vital Bracelets","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-9],"ilvl":32,"quality":2}, -{"id":14207,"name":"Vital Leggings","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,606,608,776,777,778,861,862,863,1031,1032,1033,1888,1887,2039,2040,438,-81,-78,-69,-19,-15,-11,-9,607],"ilvl":36,"quality":2}, -{"id":14208,"name":"Vital Headband","icon":"inv_belt_25","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,522,523,776,777,778,861,862,863,1031,1033,1811,1812,1849,1850,1888,1963,1964,2039,2040,521,1032,1887,-84,-81,-69,-19,-13,-9],"ilvl":36,"quality":2}, -{"id":14209,"name":"Vital Sash","icon":"inv_belt_21","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1883,2035,512,-81,-78,-69,-19,-13,-9],"ilvl":33,"quality":2}, -{"id":14210,"name":"Vital Cape","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,763,764,765,848,849,850,1018,1019,1020,1804,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-9],"ilvl":32,"quality":2}, -{"id":14211,"name":"Vital Handwraps","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,253,254,255,600,601,602,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,-81,-78,-69,-19,-15,-11,-9],"ilvl":34,"quality":2}, -{"id":14212,"name":"Vital Shoulders","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-13,176,177,186,187,515,516,517,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,1961,-84,-81,-69,-19,-9],"ilvl":35,"quality":2}, -{"id":14213,"name":"Vital Raiment","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,409,410,779,780,781,864,865,866,1034,1035,1036,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-15,-9],"ilvl":37,"quality":2}, -{"id":14214,"name":"Vital Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,186,187,253,254,255,770,771,772,855,856,857,1025,1026,1027,1808,1809,1846,1847,1960,-84,-81,-69,-19,-15,-11,-9,1961],"ilvl":34,"quality":2}, -{"id":14215,"name":"Vital Tunic","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,409,410,779,780,781,864,865,866,1034,1035,1036,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-15,-9],"ilvl":37,"quality":2}, -{"id":14216,"name":"Geomancer's Jerkin","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":41,"quality":2}, -{"id":14217,"name":"Geomancer's Cord","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,515,516,517,600,601,770,771,772,855,856,857,1025,1026,1027,1884,1885,2036,2037,602,-81,-78,-69,-19,-13,-9],"ilvl":36,"quality":2}, -{"id":14218,"name":"Geomancer's Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,187,188,254,435,436,772,773,774,857,858,859,1027,1028,1029,1809,1847,1848,1961,1962,1810,-84,-81,-69,-19,-15,-11,-9],"ilvl":37,"quality":2}, -{"id":14219,"name":"Geomancer's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":34,"quality":2}, -{"id":14220,"name":"Geomancer's Cap","icon":"inv_belt_23","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,782,783,784,867,869,1037,1038,1039,1815,1852,1853,1890,1891,1966,1967,2042,2043,868,1814,-84,-81,-69,-19,-13,-9],"ilvl":40,"quality":2}, -{"id":14221,"name":"Geomancer's Bracers","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":35,"quality":2}, -{"id":14222,"name":"Geomancer's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,602,603,604,772,773,774,857,858,859,1027,1028,1029,1885,1886,2037,2038,-81,-78,-69,-19,-15,-11,-9],"ilvl":37,"quality":2}, -{"id":14223,"name":"Geomancer's Spaulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,187,188,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1810,1847,1848,1961,1962,-84,-81,-69,-19,-13,-9],"ilvl":38,"quality":2}, -{"id":14224,"name":"Geomancer's Trousers","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,441,442,443,609,611,779,780,781,864,865,866,1034,1035,1036,1889,1890,2041,2042,610,-81,-78,-69,-19,-15,-11,-9],"ilvl":39,"quality":2}, -{"id":14225,"name":"Geomancer's Wraps","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":41,"quality":2}, -{"id":14226,"name":"Embersilk Bracelets","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,184,185,766,767,768,851,852,853,1021,1022,1023,1357,1803,1841,1882,1883,2034,2035,-327,-84,-81,-69,-19,-15,-9],"ilvl":37,"quality":2}, -{"id":14228,"name":"Embersilk Coronet","icon":"inv_belt_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,782,783,784,867,869,1037,1038,1039,1815,1852,1853,1890,1891,1966,1967,2042,2043,868,1814,-84,-81,-69,-19,-13,-9],"ilvl":41,"quality":2}, -{"id":14229,"name":"Embersilk Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,764,765,766,849,850,851,1019,1020,1021,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-9],"ilvl":36,"quality":2}, -{"id":14230,"name":"Embersilk Tunic","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":42,"quality":2}, -{"id":14231,"name":"Embersilk Mitts","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,602,603,604,772,773,774,857,858,859,1027,1028,1029,1885,1886,2037,2038,-81,-78,-69,-19,-15,-11,-9],"ilvl":38,"quality":2}, -{"id":14232,"name":"Embersilk Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,187,188,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1810,1847,1848,1961,1962,-84,-81,-69,-19,-13,-9],"ilvl":39,"quality":2}, -{"id":14233,"name":"Embersilk Leggings","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[410,411,446,613,614,782,783,784,867,868,869,1037,1038,1039,1890,1891,2042,2043,-81,-78,-69,-19,-15,-11,-9,444,445,612],"ilvl":40,"quality":2}, -{"id":14234,"name":"Embersilk Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,384,385,410,411,782,783,784,867,868,869,1037,1038,1039,1814,1815,1852,1853,1966,1967,333,-84,-81,-69,-19,-15,-9],"ilvl":42,"quality":2}, -{"id":14235,"name":"Embersilk Cord","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,517,518,519,602,603,772,773,774,857,858,859,1027,1028,1029,1885,1886,2037,2038,604,-81,-78,-69,-19,-13,-9],"ilvl":37,"quality":2}, -{"id":14236,"name":"Embersilk Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,187,188,254,435,436,772,773,774,857,858,859,1027,1028,1029,1809,1847,1848,1961,1962,1810,-84,-81,-69,-19,-15,-11,-9],"ilvl":38,"quality":2}, -{"id":14237,"name":"Darkmist Armor","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":46,"quality":2}, -{"id":14238,"name":"Darkmist Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,188,215,217,437,438,439,775,776,777,860,861,862,1030,1031,1032,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-11,-9],"ilvl":41,"quality":2}, -{"id":14239,"name":"Darkmist Cape","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,175,179,180,184,185,766,767,768,851,852,853,1021,1022,1023,1357,1803,1841,1882,1883,2034,2035,-327,-84,-81,-69,-19,-15,-9],"ilvl":39,"quality":2}, -{"id":14240,"name":"Darkmist Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,175,176,180,181,185,186,769,854,1024,1807,1808,1845,1846,1883,1884,1959,1960,2035,2036,-84,-81,-69,-15,-9],"ilvl":40,"quality":2}, -{"id":14241,"name":"Darkmist Handguards","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,215,437,605,606,775,776,777,860,861,862,1030,1031,1032,1886,1887,2038,2039,439,607,438,-81,-78,-69,-19,-15,-11,-9],"ilvl":41,"quality":2}, -{"id":14242,"name":"Darkmist Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,413,447,448,449,615,616,617,785,786,787,870,871,872,1040,1041,1042,1892,1893,2044,2045,-81,-78,-69,-19,-15,-11,-9],"ilvl":43,"quality":2}, -{"id":14243,"name":"Darkmist Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,521,522,523,776,777,778,861,862,863,1031,1032,1033,1811,1812,1850,1963,1964,1849,-84,-81,-69,-19,-13,-9],"ilvl":43,"quality":2}, -{"id":14244,"name":"Darkmist Wraps","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":46,"quality":2}, -{"id":14245,"name":"Darkmist Girdle","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,520,521,605,606,607,775,776,777,860,861,862,1030,1031,1032,1886,2038,2039,1887,-81,-78,-69,-19,-13,-9,522],"ilvl":41,"quality":2}, -{"id":14246,"name":"Darkmist Wizard Hat","icon":"inv_helmet_11","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,531,532,785,786,787,870,871,872,1040,1042,1816,1817,1854,1892,1893,1968,1969,2044,2045,-19,530,1041,1855,-84,-81,-69,-13,-9],"ilvl":44,"quality":2}, -{"id":14247,"name":"Lunar Mantle","icon":"inv_shoulder_12","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,521,522,523,776,777,778,861,862,863,1031,1032,1033,1811,1812,1850,1963,1964,1849,-84,-81,-69,-19,-13,-9],"ilvl":44,"quality":2}, -{"id":14248,"name":"Lunar Bindings","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,175,176,180,181,185,186,769,854,1024,1807,1808,1845,1846,1883,1884,1959,1960,2035,2036,-84,-81,-69,-15,-9],"ilvl":41,"quality":2}, -{"id":14249,"name":"Lunar Vest","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":47,"quality":2}, -{"id":14250,"name":"Lunar Slippers","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[183,188,215,217,437,438,439,775,776,777,860,861,862,1030,1031,1032,1810,1811,1848,1849,1962,1963,-84,-81,-69,-19,-15,-11,-9],"ilvl":42,"quality":2}, -{"id":14251,"name":"Lunar Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,176,180,181,185,186,769,854,1024,1807,1808,1845,1846,1883,1884,1960,2035,2036,1959,-84,-81,-69,-19,-15,-9],"ilvl":40,"quality":2}, -{"id":14252,"name":"Lunar Coronet","icon":"inv_belt_22","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,531,532,785,786,787,870,871,872,1040,1042,1816,1817,1854,1892,1893,1968,1969,2044,2045,-19,530,1041,1855,-84,-81,-69,-13,-9],"ilvl":45,"quality":2}, -{"id":14253,"name":"Lunar Handwraps","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,440,606,608,776,777,778,861,862,863,1031,1032,1033,1887,1888,2039,2040,438,607,-81,-78,-69,-19,-15,-11,-9,439],"ilvl":43,"quality":2}, -{"id":14254,"name":"Lunar Raiment","icon":"inv_chest_cloth_37","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,336,337,387,388,413,414,788,789,790,873,874,875,1043,1044,1045,1818,1856,1969,1817,1970,1855,-84,-81,-19,-15,-9],"ilvl":47,"quality":2}, -{"id":14255,"name":"Lunar Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,520,521,605,606,607,775,776,777,860,861,862,1030,1031,1032,1886,2038,2039,1887,-81,-78,-69,-19,-13,-9,522],"ilvl":42,"quality":2}, -{"id":14257,"name":"Lunar Leggings","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,413,447,448,449,615,616,617,785,786,787,870,871,872,1040,1041,1042,1892,1893,2044,2045,-81,-78,-69,-19,-15,-11,-9],"ilvl":45,"quality":2}, -{"id":14258,"name":"Bloodwoven Cord","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1887,1888,2039,2040,-81,-78,-69,-19,-13,-9],"ilvl":45,"quality":2}, -{"id":14259,"name":"Bloodwoven Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,218,287,409,441,442,443,779,780,781,864,865,866,1034,1035,1036,1812,1813,1851,1850,1964,1965,-84,-81,-69,-19,-15,-11,-9],"ilvl":46,"quality":2}, -{"id":14260,"name":"Bloodwoven Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":44,"quality":2}, -{"id":14261,"name":"Bloodwoven Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":43,"quality":2}, -{"id":14262,"name":"Bloodwoven Mitts","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,440,606,608,776,777,778,861,862,863,1031,1032,1033,1887,1888,2039,2040,438,607,-81,-78,-69,-19,-15,-11,-9,439],"ilvl":45,"quality":2}, -{"id":14263,"name":"Bloodwoven Mask","icon":"inv_misc_bandana_03","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,788,789,790,873,874,875,1043,1044,1045,1817,1818,1855,1856,1893,1894,1969,1970,2045,2046,-84,-81,-69,-19,-13,-9],"ilvl":48,"quality":2}, -{"id":14264,"name":"Bloodwoven Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,452,618,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,619,-81,-78,-69,-19,-15,-11,-9,451],"ilvl":48,"quality":2}, -{"id":14265,"name":"Bloodwoven Wraps","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,415,416,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1858,1971,1972,-84,-81,-69,-19,-15,-9],"ilvl":51,"quality":2}, -{"id":14266,"name":"Bloodwoven Pads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,218,287,383,524,525,526,779,780,781,864,865,866,1034,1035,1036,1812,1813,1850,1851,1964,1965,-84,-81,-69,-19,-13,-9],"ilvl":47,"quality":2}, -{"id":14267,"name":"Bloodwoven Jerkin","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,415,416,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1858,1971,1972,-84,-81,-69,-19,-15,-9],"ilvl":51,"quality":2}, -{"id":14268,"name":"Gaea's Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,187,772,773,774,857,858,859,1027,1028,1029,1809,1847,1885,1961,2037,-84,-81,-69,-19,-15,-9],"ilvl":46,"quality":2}, -{"id":14269,"name":"Gaea's Slippers","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,218,287,409,441,442,443,779,780,781,864,865,866,1034,1035,1036,1812,1813,1851,1850,1964,1965,-84,-81,-69,-19,-15,-11,-9],"ilvl":47,"quality":2}, -{"id":14270,"name":"Gaea's Cloak","icon":"inv_chest_cloth_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,186,770,771,855,856,1025,1026,1808,1846,1884,1960,2036,-84,-81,-69,-19,-15,-9],"ilvl":45,"quality":2}, -{"id":14271,"name":"Gaea's Circlet","icon":"inv_belt_31","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,791,792,793,876,877,878,1046,1047,1048,1819,1820,1857,1895,1971,1972,2047,2048,1858,1896,-84,-81,-69,-19,-13,-9],"ilvl":49,"quality":2}, -{"id":14272,"name":"Gaea's Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,442,443,609,611,779,780,781,864,865,866,1034,1035,1036,1888,1889,2040,2041,-81,-78,-69,-19,-15,-11,-9,441,610],"ilvl":47,"quality":2}, -{"id":14273,"name":"Gaea's Amice","icon":"inv_shoulder_17","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,218,287,383,524,525,526,779,780,781,864,865,866,1034,1035,1036,1812,1813,1850,1851,1964,1965,-84,-81,-69,-19,-13,-9],"ilvl":48,"quality":2}, -{"id":14274,"name":"Gaea's Leggings","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[415,416,453,455,622,623,791,792,793,876,877,878,1046,1047,1048,1895,1896,2047,2048,-81,-78,-69,-19,-15,-11,-9,454,621],"ilvl":51,"quality":2}, -{"id":14275,"name":"Gaea's Raiment","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,794,795,796,879,880,881,1049,1050,1051,1329,1820,1821,1858,1859,1972,1973,-327,-326,-324,-84,-81,-69,-19,-15,-9,1375,1420,1374,1467],"ilvl":52,"quality":2}, -{"id":14276,"name":"Gaea's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1889,2040,2041,524,1888,-81,-78,-69,-19,-13,-9],"ilvl":47,"quality":2}, -{"id":14277,"name":"Gaea's Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,794,795,796,879,880,881,1049,1050,1051,1329,1820,1821,1858,1859,1972,1973,-327,-326,-324,-84,-81,-69,-19,-15,-9,1375,1420,1374,1467],"ilvl":52,"quality":2}, -{"id":14278,"name":"Opulent Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,526,527,528,781,782,783,866,867,868,1036,1037,1038,1813,1814,1851,1852,1965,1966,-84,-81,-69,-19,-13,-9],"ilvl":50,"quality":2}, -{"id":14279,"name":"Opulent Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,178,183,188,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-84,-81,-19,-15,-9],"ilvl":49,"quality":2}, -{"id":14280,"name":"Opulent Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,187,772,773,774,857,858,859,1027,1028,1029,1809,1847,1885,1961,2037,-84,-81,-69,-19,-15,-9],"ilvl":48,"quality":2}, -{"id":14281,"name":"Opulent Crown","icon":"inv_belt_16","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[340,391,796,881,1049,1050,1051,1897,2049,-327,-326,-84,-81,-69,-19,-13,-9,339,390,539,540,541,794,795,879,880,1421,1820,1821,1858,1859,1896,1972,1973,2048],"ilvl":53,"quality":2}, -{"id":14282,"name":"Opulent Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,611,612,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-15,-11,-9,445],"ilvl":50,"quality":2}, -{"id":14283,"name":"Opulent Leggings","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[416,417,456,457,626,794,795,796,879,880,881,1049,1050,1051,1512,1513,1896,1897,2048,2049,-329,-328,-324,-81,-78,-69,-19,-15,-11,-9,458,624,625,1328,1329,1374,1375,1421,1466,1467],"ilvl":54,"quality":2}, -{"id":14284,"name":"Opulent Robes","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":56,"quality":2}, -{"id":14285,"name":"Opulent Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,409,410,443,444,445,781,782,783,866,867,868,1036,1037,1038,1813,1814,1852,1965,1966,1851,-84,-81,-69,-19,-15,-11,-9],"ilvl":50,"quality":2}, -{"id":14286,"name":"Opulent Belt","icon":"inv_belt_21","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,526,527,528,611,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-13,-9,612],"ilvl":50,"quality":2}, -{"id":14287,"name":"Opulent Tunic","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":56,"quality":2}, -{"id":14288,"name":"Arachnidian Armor","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":57,"quality":2}, -{"id":14289,"name":"Arachnidian Girdle","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,526,527,528,611,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-13,-9,612],"ilvl":51,"quality":2}, -{"id":14290,"name":"Arachnidian Footpads","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,409,410,443,444,445,781,782,783,866,867,868,1036,1037,1038,1813,1814,1852,1965,1966,1851,-84,-81,-69,-19,-15,-11,-9],"ilvl":51,"quality":2}, -{"id":14291,"name":"Arachnidian Bracelets","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,178,183,188,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-84,-81,-19,-15,-9],"ilvl":50,"quality":2}, -{"id":14292,"name":"Arachnidian Cape","icon":"inv_chest_cloth_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-84,-81,-69,-19,-15,-9],"ilvl":49,"quality":2}, -{"id":14293,"name":"Arachnidian Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1898,1899,1974,1975,2050,2051,1330,1514,1861,1422,-328,-327,-324,-84,-81,-69,-19,-13,-9,1376,1423,1468,1469,-329,1377],"ilvl":55,"quality":2}, -{"id":14294,"name":"Arachnidian Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,611,612,613,781,782,783,866,867,868,1036,1037,1038,1889,1890,2041,2042,-81,-78,-69,-19,-15,-11,-9,445],"ilvl":51,"quality":2}, -{"id":14295,"name":"Arachnidian Legguards","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[418,419,459,460,461,628,629,797,798,799,882,883,884,1052,1053,1054,1331,1423,1898,1899,2050,2051,1422,627,-329,-328,-326,-324,-81,-78,-69,-19,-15,-11,-9,1330,1376,1468,1469,1514],"ilvl":55,"quality":2}, -{"id":14296,"name":"Arachnidian Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,530,784,785,786,869,1039,1967,-329,-84,-81,-69,-19,-13,-9,385,529,531,870,871,1040,1041,1369,1815,1853],"ilvl":52,"quality":2}, -{"id":14297,"name":"Arachnidian Robes","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,418,419,797,798,799,882,883,884,1052,1053,1054,1822,1823,1860,1861,1974,1975,1330,1376,1514,-329,-327,-326,-84,-81,-69,-19,-15,-9,1423,1468,1422,-324],"ilvl":57,"quality":2}, -{"id":14298,"name":"Bonecaster's Spaulders","icon":"inv_shoulder_14","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,386,530,531,532,785,786,787,870,871,872,1040,1041,1042,1508,1816,1854,1968,-329,-328,-326,-324,-84,-81,-69,-19,-13,-9,1324,1370,1416,1462,-327],"ilvl":56,"quality":2}, -{"id":14299,"name":"Bonecaster's Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,411,446,447,448,784,785,786,869,870,871,1039,1040,1041,1323,1507,1815,1853,1967,-328,-327,-326,-324,-84,-81,-69,-19,-15,-11,-9,1369,1461,1415],"ilvl":54,"quality":2}, -{"id":14300,"name":"Bonecaster's Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1365,1411,1810,1811,1848,1849,1887,1962,1963,2038,2039,1410,1503,1886,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1319,1457,1502,1364],"ilvl":52,"quality":2}, -{"id":14301,"name":"Bonecaster's Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1319,1411,1456,1503,1810,1811,1848,1849,1886,1887,1962,1963,2038,2039,1365,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1364,1457,-329,1318],"ilvl":53,"quality":2}, -{"id":14302,"name":"Bonecaster's Gloves","icon":"inv_gauntlets_09","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,447,448,449,616,617,785,786,787,870,871,872,1040,1041,1042,1324,1892,2044,-328,-327,-326,-81,-78,-69,-19,-15,-11,-9,615,1370,1416,1462,1508],"ilvl":56,"quality":2}, -{"id":14303,"name":"Bonecaster's Shroud","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":60,"quality":2}, -{"id":14304,"name":"Bonecaster's Belt","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,616,617,785,786,787,871,872,1041,1042,1892,2044,1040,-81,-78,-69,-19,-13,-9,532,615,870,531],"ilvl":55,"quality":2}, -{"id":14305,"name":"Bonecaster's Sarong","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[418,419,459,460,461,628,629,797,798,799,882,883,884,1052,1053,1054,1331,1423,1898,1899,2050,2051,1422,627,-329,-328,-326,-324,-81,-78,-69,-19,-15,-11,-9,1330,1376,1468,1469,1514],"ilvl":57,"quality":2}, -{"id":14306,"name":"Bonecaster's Vest","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,801,802,886,887,1055,1056,1057,1469,1823,1861,1862,1975,1976,800,885,1516,1824,1470,1332,-329,-324,-84,-81,-69,-19,-15,-9,-328,1424,1377],"ilvl":60,"quality":2}, -{"id":14307,"name":"Bonecaster's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,545,546,547,800,801,802,885,886,887,1055,1056,1057,1823,1824,1861,1862,1899,1900,1975,1976,2051,2052,-327,-326,-324,-84,-81,-69,-19,-13,-9,1331,1378,1424,1469,1470,1515],"ilvl":59,"quality":2}, -{"id":14308,"name":"Celestial Tunic","icon":"inv_chest_chain_11","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":61,"quality":2}, -{"id":14309,"name":"Celestial Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,616,617,785,786,787,871,872,1041,1042,1892,2044,1040,-81,-78,-69,-19,-13,-9,532,615,870,531],"ilvl":56,"quality":2}, -{"id":14310,"name":"Celestial Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,413,414,450,451,452,788,789,790,873,874,875,1043,1044,1045,1463,1509,1510,1817,1818,1855,1856,1969,-329,-328,-324,-84,-81,-69,-19,-15,-11,-9,1371,1417,1970],"ilvl":58,"quality":2}, -{"id":14311,"name":"Celestial Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,217,218,776,777,778,862,863,1032,1033,1812,1850,1887,1888,2039,2040,1964,-329,-84,-81,-69,-19,-15,-9,213,215,861,1031,1366,1411,1457,1504,1811,1849,1963],"ilvl":55,"quality":2}, -{"id":14312,"name":"Celestial Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,549,550,803,804,805,888,889,890,1058,1060,1825,1826,1863,1901,1902,1977,1978,2053,2054,1059,1426,1864,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1333,1379,1471,1472,1517,1518],"ilvl":61,"quality":2}, -{"id":14313,"name":"Celestial Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,188,213,215,217,775,776,777,860,861,862,1030,1031,1032,1365,1411,1810,1811,1848,1849,1887,1962,1963,2038,2039,1410,1503,1886,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1319,1457,1502,1364],"ilvl":54,"quality":2}, -{"id":14314,"name":"Celestial Handwraps","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,451,452,618,619,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,1417,-329,-328,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1418,1463,1464,1510,1509],"ilvl":58,"quality":2}, -{"id":14315,"name":"Celestial Kilt","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[420,464,631,632,800,801,802,885,886,887,1055,1056,1057,1899,1900,2051,2052,1516,-329,-328,-327,-326,-81,-78,-69,-19,-15,-11,-9,419,462,463,630,1332,1423,1424,1470,-324],"ilvl":59,"quality":2}, -{"id":14316,"name":"Celestial Pauldrons","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,788,789,790,873,874,875,1043,1044,1045,1817,1818,1855,1856,1969,1970,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1417,1463,1509,1510],"ilvl":59,"quality":2}, -{"id":14317,"name":"Celestial Silk Robes","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":61,"quality":2}, -{"id":14318,"name":"Resplendent Tunic","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":63,"quality":2}, -{"id":14319,"name":"Resplendent Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,413,414,450,451,452,788,789,790,873,874,875,1043,1044,1045,1463,1509,1510,1817,1818,1855,1856,1969,-329,-328,-324,-84,-81,-69,-19,-15,-11,-9,1371,1417,1970],"ilvl":59,"quality":2}, -{"id":14320,"name":"Resplendent Bracelets","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,217,218,776,777,778,862,863,1032,1033,1812,1850,1887,1888,2039,2040,1964,-329,-84,-81,-69,-19,-15,-9,213,215,861,1031,1366,1411,1457,1504,1811,1849,1963],"ilvl":57,"quality":2}, -{"id":14321,"name":"Resplendent Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,215,216,217,218,776,777,778,861,862,863,1031,1032,1033,1319,1457,1811,1812,1849,1850,1887,1888,1963,1964,2039,2040,1320,-329,-327,-326,-324,-84,-81,-69,-19,-15,-9,1366,1411,1412,1503,1504],"ilvl":55,"quality":2}, -{"id":14322,"name":"Resplendent Circlet","icon":"inv_helmet_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,549,550,803,804,805,888,889,890,1058,1060,1825,1826,1863,1901,1902,1977,1978,2053,2054,1059,1426,1864,-329,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1333,1379,1471,1472,1517,1518],"ilvl":62,"quality":2}, -{"id":14323,"name":"Resplendent Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,451,452,618,619,620,788,789,790,873,874,875,1043,1044,1045,1893,1894,2045,2046,1417,-329,-328,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1418,1463,1464,1510,1509],"ilvl":60,"quality":2}, -{"id":14324,"name":"Resplendent Sarong","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[420,464,631,632,800,801,802,885,886,887,1055,1056,1057,1899,1900,2051,2052,1516,-329,-328,-327,-326,-81,-78,-69,-19,-15,-11,-9,419,462,463,630,1332,1423,1424,1470,-324],"ilvl":60,"quality":2}, -{"id":14325,"name":"Resplendent Epaulets","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,388,389,535,536,537,790,791,792,875,876,877,1045,1046,1047,1372,1373,1818,1819,1856,1857,1970,1971,1464,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1326,1418,1419,1510,1511,-329,1327,1465],"ilvl":61,"quality":2}, -{"id":14326,"name":"Resplendent Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-19,395,396,421,422,803,804,805,888,889,890,1059,1060,1825,1826,1863,1864,1977,1978,344,345,1058,1379,1426,-327,-326,-84,-81,-69,-15,-9,1333,-328,-324,1517],"ilvl":63,"quality":2}, -{"id":14327,"name":"Resplendent Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[387,388,534,535,620,788,789,790,873,874,875,1043,1044,1045,1417,1893,1894,2045,2046,533,619,1325,-329,-327,-324,-81,-78,-69,-19,-13,-9,618,1371,1418,1463,1464,1509,1510,-328,1372],"ilvl":58,"quality":2}, -{"id":14328,"name":"Eternal Chestguard","icon":"inv_shirt_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":65,"quality":2}, -{"id":14329,"name":"Eternal Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,414,415,452,453,454,790,791,792,875,876,877,1045,1046,1047,1511,1818,1819,1856,1857,1970,1971,1418,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-11,-9,1326,1372,1419,1464],"ilvl":62,"quality":2}, -{"id":14330,"name":"Eternal Bindings","icon":"inv_bracer_16","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,383,409,779,780,781,864,865,866,1034,1035,1036,1459,1505,1813,1851,1889,1965,2041,1321,-329,-328,-327,-326,-324,-84,-81,-69,-19,-15,-9,1367,1413],"ilvl":61,"quality":2}, -{"id":14331,"name":"Eternal Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,218,287,383,409,778,779,780,863,864,865,1033,1034,1035,1321,1812,1813,1850,1888,1889,1964,1965,2040,2041,-327,-324,-84,-81,-69,-19,-15,-9,1320,1366,1412,1413,1458,1504,1851],"ilvl":58,"quality":2}, -{"id":14332,"name":"Eternal Crown","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[397,807,808,891,892,893,1061,1063,-329,-328,-324,-84,-81,-69,-19,-13,-9,345,346,396,551,553,806,1062,1334,1826,1827,1865,1903,1978,1979,2054,2055],"ilvl":64,"quality":2}, -{"id":14333,"name":"Eternal Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,621,790,791,792,875,876,877,1045,1046,1047,1894,1895,2046,2047,620,622,-327,-326,-324,-81,-78,-69,-19,-15,-11,-9,1326,1327,1464,1510,-329,-328,1372],"ilvl":63,"quality":2}, -{"id":14334,"name":"Eternal Sarong","icon":"inv_pants_13","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[421,422,466,635,803,804,805,888,889,890,1058,1059,1060,1380,1901,1902,2053,2054,465,467,-328,-327,-81,-78,-69,-19,-15,-11,-9,634,1333,1379,1517,-329,-326,-324,633,1471,1518],"ilvl":63,"quality":2}, -{"id":14335,"name":"Eternal Spaulders","icon":"inv_shoulder_14","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,388,389,535,536,537,790,791,792,875,876,877,1045,1046,1047,1372,1373,1818,1819,1856,1857,1970,1971,1464,-328,-327,-326,-324,-84,-81,-69,-19,-13,-9,1326,1418,1419,1510,1511,-329,1327,1465],"ilvl":63,"quality":2}, -{"id":14336,"name":"Eternal Wraps","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[346,396,422,423,806,807,808,891,893,1061,1062,1063,1826,1827,1864,1865,1979,345,397,892,1335,1978,1381,1426,1472,1427,-327,-324,-84,-81,-69,-19,-15,-9,-328,-326,-329,1334,1380,1519],"ilvl":65,"quality":2}, -{"id":14337,"name":"Eternal Cord","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,535,536,537,620,621,622,790,791,792,875,876,877,1045,1046,1047,1419,1465,1894,1895,2046,2047,1326,1510,-328,-327,-324,-81,-78,-69,-19,-13,-9,1372,1464],"ilvl":61,"quality":2}, -{"id":14340,"name":"Freezing Lich Robes","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14364,"name":"Mystic's Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":14365,"name":"Mystic's Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":14366,"name":"Mystic's Bracelets","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14367,"name":"Mystic's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":14368,"name":"Mystic's Shoulder Pads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":14369,"name":"Mystic's Wrap","icon":"inv_shirt_13","type":5,"armorType":1,"stats":[0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14370,"name":"Mystic's Woolies","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":14371,"name":"Mystic's Robe","icon":"inv_chest_cloth_14","type":5,"armorType":1,"stats":[0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14372,"name":"Sanguine Armor","icon":"inv_shirt_09","type":5,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14373,"name":"Sanguine Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":14374,"name":"Sanguine Sandals","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":14375,"name":"Sanguine Cuffs","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":14376,"name":"Sanguine Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":14377,"name":"Sanguine Handwraps","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":14378,"name":"Sanguine Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":14379,"name":"Sanguine Trousers","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14380,"name":"Sanguine Robe","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14397,"name":"Resilient Mantle","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14398,"name":"Resilient Tunic","icon":"inv_shirt_09","type":5,"armorType":1,"stats":[0,0,17,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14399,"name":"Resilient Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":14400,"name":"Resilient Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14401,"name":"Resilient Cap","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,17,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14402,"name":"Resilient Bands","icon":"inv_bracer_01","type":6,"armorType":1,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14403,"name":"Resilient Handgrips","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":14404,"name":"Resilient Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14405,"name":"Resilient Robe","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,17,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14406,"name":"Resilient Cord","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,9,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":14407,"name":"Stonecloth Vest","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,2,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14408,"name":"Stonecloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14409,"name":"Stonecloth Cape","icon":"inv_misc_cape_11","type":4,"stats":[1,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14410,"name":"Stonecloth Circlet","icon":"inv_belt_26","type":1,"armorType":1,"stats":[0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14411,"name":"Stonecloth Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14412,"name":"Stonecloth Epaulets","icon":"inv_shoulder_03","type":3,"armorType":1,"stats":[0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":14413,"name":"Stonecloth Robe","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,2,2,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14414,"name":"Stonecloth Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,6,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":14415,"name":"Stonecloth Britches","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,3,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14416,"name":"Stonecloth Bindings","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":14417,"name":"Silksand Tunic","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,0,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14418,"name":"Silksand Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,3,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14419,"name":"Silksand Bracers","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14420,"name":"Silksand Cape","icon":"inv_misc_cape_04","type":4,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14421,"name":"Silksand Circlet","icon":"inv_belt_11","type":1,"armorType":1,"stats":[0,0,6,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14422,"name":"Silksand Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14423,"name":"Silksand Shoulder Pads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,17,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14424,"name":"Silksand Legwraps","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,9,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14425,"name":"Silksand Wraps","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,0,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14426,"name":"Silksand Girdle","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14427,"name":"Windchaser Wraps","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,10,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14428,"name":"Windchaser Footpads","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,2,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14429,"name":"Windchaser Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14430,"name":"Windchaser Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,4,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14431,"name":"Windchaser Handguards","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14432,"name":"Windchaser Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":14433,"name":"Windchaser Woolies","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,18,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14434,"name":"Windchaser Robes","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,10,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14435,"name":"Windchaser Cinch","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14436,"name":"Windchaser Coronet","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,23,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14437,"name":"Venomshroud Vest","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,18,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14438,"name":"Venomshroud Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,13,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14439,"name":"Venomshroud Armguards","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14440,"name":"Venomshroud Cape","icon":"inv_misc_cape_09","type":4,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14441,"name":"Venomshroud Mask","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14442,"name":"Venomshroud Mitts","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14443,"name":"Venomshroud Mantle","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14444,"name":"Venomshroud Leggings","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,0,15,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14445,"name":"Venomshroud Silk Robes","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,20,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14446,"name":"Venomshroud Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14447,"name":"Highborne Footpads","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14448,"name":"Highborne Bracelets","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14449,"name":"Highborne Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,33,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14450,"name":"Highborne Cloak","icon":"inv_chest_cloth_14","type":4,"stats":[0,0,4,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14451,"name":"Highborne Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,15,5,10,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14452,"name":"Highborne Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,11,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14453,"name":"Highborne Robes","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14454,"name":"Highborne Cord","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14455,"name":"Highborne Padded Armor","icon":"inv_shirt_03","type":5,"armorType":1,"stats":[0,0,0,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14456,"name":"Elunarian Vest","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,12,5,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":14457,"name":"Elunarian Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14458,"name":"Elunarian Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":14459,"name":"Elunarian Cloak","icon":"inv_misc_cape_09","type":4,"stats":[2,0,6,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14460,"name":"Elunarian Diadem","icon":"inv_helmet_21","type":1,"armorType":1,"stats":[0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":14461,"name":"Elunarian Handgrips","icon":"inv_gauntlets_10","type":7,"armorType":1,"stats":[0,0,8,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14462,"name":"Elunarian Sarong","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,11,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14463,"name":"Elunarian Spaulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14464,"name":"Elunarian Silk Robes","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,12,5,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":14465,"name":"Elunarian Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,30,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":14487,"name":"Bonechill Hammer","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14502,"name":"Frostbite Girdle","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14503,"name":"Death's Clutch","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14522,"name":"Maelstrom Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14525,"name":"Boneclenched Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":14528,"name":"Rattlecage Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":14531,"name":"Frightskull Shaft","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":162,"weaponSpeed":3.4,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":14536,"name":"Bonebrace Hauberk","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,17,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":14537,"name":"Corpselight Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":14538,"name":"Deadwalker Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":14539,"name":"Bone Ring Helm","icon":"inv_helmet_14","type":1,"armorType":2,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":14541,"name":"Barovian Family Sword","icon":"inv_sword_03","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":14543,"name":"Darkshade Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":14545,"name":"Ghostloom Leggings","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,0,12,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":14548,"name":"Royal Cap Spaulders","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":14549,"name":"Boots of Avoidance","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,14,11,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4}, -{"id":14550,"name":"Bladebane Armguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,10,14,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":4}, -{"id":14551,"name":"Edgemaster's Handguards","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,0,0,0,19,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":4}, -{"id":14552,"name":"Stockade Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,0,20,0,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":14553,"name":"Sash of Mercy","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,14,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4}, -{"id":14554,"name":"Cloudkeeper Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":14555,"name":"Alcor's Sunrazor","icon":"inv_sword_34","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.3,"ilvl":63,"quality":4}, -{"id":14557,"name":"The Lion Horn of Stormwind","icon":"inv_misc_horn_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":4}, -{"id":14558,"name":"Lady Maye's Pendant","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,10,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":4}, -{"id":14559,"name":"Prospector's Sash","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":14560,"name":"Prospector's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":14561,"name":"Prospector's Cuffs","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14562,"name":"Prospector's Chestpiece","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14563,"name":"Prospector's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14564,"name":"Prospector's Mitts","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":14565,"name":"Prospector's Woolies","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":14566,"name":"Prospector's Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":14567,"name":"Bristlebark Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14568,"name":"Bristlebark Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14569,"name":"Bristlebark Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":14570,"name":"Bristlebark Blouse","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14571,"name":"Bristlebark Cape","icon":"inv_misc_cape_09","type":4,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":14572,"name":"Bristlebark Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":14573,"name":"Bristlebark Amice","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":14574,"name":"Bristlebark Britches","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":14576,"name":"Ebon Hilt of Marduk","icon":"inv_sword_15","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.7,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10433,"zoneId":2057}}]}, -{"id":14577,"name":"Skullsmoke Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10432,"zoneId":2057}}]}, -{"id":14578,"name":"Dokebi Cord","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,1,0,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14579,"name":"Dokebi Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":14580,"name":"Dokebi Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":14581,"name":"Dokebi Chestguard","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,10,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14582,"name":"Dokebi Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14583,"name":"Dokebi Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14584,"name":"Dokebi Hat","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,4,0,11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14585,"name":"Dokebi Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,3,0,7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14587,"name":"Dokebi Mantle","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,2,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14588,"name":"Hawkeye's Cord","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":14589,"name":"Hawkeye's Shoes","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14590,"name":"Hawkeye's Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14591,"name":"Hawkeye's Helm","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14592,"name":"Hawkeye's Tunic","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14593,"name":"Hawkeye's Cloak","icon":"inv_misc_cape_03","type":4,"stats":[3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14594,"name":"Hawkeye's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14595,"name":"Hawkeye's Breeches","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14596,"name":"Hawkeye's Epaulets","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14598,"name":"Warden's Waistband","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14599,"name":"Warden's Footpads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,3,0,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14600,"name":"Warden's Wristbands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14601,"name":"Warden's Wraps","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14602,"name":"Warden's Cloak","icon":"inv_misc_cape_22","type":4,"stats":[4,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14603,"name":"Warden's Mantle","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,0,4,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":14604,"name":"Warden's Wizard Hat","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,13,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":14605,"name":"Warden's Woolies","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14606,"name":"Warden's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":14607,"name":"Hawkeye's Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14608,"name":"Dokebi Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":14611,"name":"Bloodmail Hauberk","icon":"inv_chest_leather_05","type":5,"armorType":3,"stats":[0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Bloodmail Regalia","setId":123,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14612,"name":"Bloodmail Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Bloodmail Regalia","setId":123,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14614,"name":"Bloodmail Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Bloodmail Regalia","setId":123,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14615,"name":"Bloodmail Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Bloodmail Regalia","setId":123,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14616,"name":"Bloodmail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Bloodmail Regalia","setId":123,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14620,"name":"Deathbone Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Deathbone Guardian","setId":124,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14621,"name":"Deathbone Sabatons","icon":"inv_boots_01","type":10,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Deathbone Guardian","setId":124,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14622,"name":"Deathbone Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Deathbone Guardian","setId":124,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14623,"name":"Deathbone Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[14,0,14,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Deathbone Guardian","setId":124,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14624,"name":"Deathbone Chestplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[14,0,14,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Deathbone Guardian","setId":124,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14626,"name":"Necropile Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Necropile Raiment","setId":122,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14629,"name":"Necropile Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Necropile Raiment","setId":122,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14631,"name":"Necropile Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Necropile Raiment","setId":122,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14632,"name":"Necropile Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Necropile Raiment","setId":122,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14633,"name":"Necropile Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Necropile Raiment","setId":122,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14636,"name":"Cadaverous Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Cadaverous Garb","setId":121,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14637,"name":"Cadaverous Armor","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Cadaverous Garb","setId":121,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14638,"name":"Cadaverous Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Cadaverous Garb","setId":121,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14640,"name":"Cadaverous Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Cadaverous Garb","setId":121,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14641,"name":"Cadaverous Walkers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"setName":"Cadaverous Garb","setId":121,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":14652,"name":"Scorpashi Sash","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":14653,"name":"Scorpashi Slippers","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,13,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14654,"name":"Scorpashi Wristbands","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,6,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14655,"name":"Scorpashi Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,17,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14656,"name":"Scorpashi Cape","icon":"inv_misc_cape_10","type":4,"stats":[2,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14657,"name":"Scorpashi Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,4,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14658,"name":"Scorpashi Skullcap","icon":"inv_helmet_16","type":1,"armorType":2,"stats":[0,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14659,"name":"Scorpashi Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14660,"name":"Scorpashi Shoulder Pads","icon":"inv_shoulder_05","type":3,"armorType":2,"stats":[0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14661,"name":"Keeper's Cord","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,6,0,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14662,"name":"Keeper's Hooves","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14663,"name":"Keeper's Bindings","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,9,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14664,"name":"Keeper's Armor","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,5,9,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14665,"name":"Keeper's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14666,"name":"Keeper's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14667,"name":"Keeper's Wreath","icon":"inv_helmet_25","type":1,"armorType":2,"stats":[0,0,10,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14668,"name":"Keeper's Woolies","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,19,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14669,"name":"Keeper's Mantle","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14670,"name":"Pridelord Armor","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,24,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14671,"name":"Pridelord Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,4,14,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":14672,"name":"Pridelord Bands","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14673,"name":"Pridelord Cape","icon":"inv_misc_cape_10","type":4,"stats":[3,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14674,"name":"Pridelord Girdle","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":14675,"name":"Pridelord Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":14676,"name":"Pridelord Halo","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,17,14,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14677,"name":"Pridelord Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,23,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14678,"name":"Pridelord Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,16,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14680,"name":"Indomitable Vest","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,0,5,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":14681,"name":"Indomitable Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,16,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14682,"name":"Indomitable Armguards","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14683,"name":"Indomitable Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,3,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14684,"name":"Indomitable Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":14685,"name":"Indomitable Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14686,"name":"Indomitable Headdress","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,9,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":14687,"name":"Indomitable Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,15,18,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14688,"name":"Indomitable Epaulets","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,18,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":14722,"name":"War Paint Anklewraps","icon":"inv_boots_06","type":10,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14723,"name":"War Paint Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14724,"name":"War Paint Cloak","icon":"inv_misc_cape_18","type":4,"stats":[1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":14725,"name":"War Paint Waistband","icon":"inv_belt_25","type":8,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":14726,"name":"War Paint Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":14727,"name":"War Paint Legguards","icon":"inv_pants_05","type":9,"armorType":3,"stats":[3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":14728,"name":"War Paint Shoulder Pads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":14729,"name":"War Paint Shield","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":14730,"name":"War Paint Chestpiece","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14742,"name":"Hulking Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2}, -{"id":14743,"name":"Hulking Bands","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":14744,"name":"Hulking Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14745,"name":"Hulking Cloak","icon":"inv_misc_cape_20","type":4,"stats":[1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":14746,"name":"Hulking Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2}, -{"id":14747,"name":"Hulking Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[5,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":14748,"name":"Hulking Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":14749,"name":"Hulking Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":14750,"name":"Slayer's Cuffs","icon":"inv_bracer_11","type":6,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14751,"name":"Slayer's Surcoat","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[10,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14752,"name":"Slayer's Cape","icon":"inv_misc_cape_08","type":4,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":14753,"name":"Slayer's Skullcap","icon":"inv_helmet_59","type":1,"armorType":3,"stats":[9,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":14754,"name":"Slayer's Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14755,"name":"Slayer's Sash","icon":"inv_belt_13","type":8,"armorType":3,"stats":[6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":14756,"name":"Slayer's Slippers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":14757,"name":"Slayer's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[11,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14758,"name":"Slayer's Shoulderguards","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":14759,"name":"Enduring Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[3,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":14760,"name":"Enduring Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[12,0,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14761,"name":"Enduring Belt","icon":"inv_belt_29","type":8,"armorType":3,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":14762,"name":"Enduring Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[4,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14763,"name":"Enduring Cape","icon":"inv_misc_cape_02","type":4,"stats":[2,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":14764,"name":"Enduring Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[7,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":14765,"name":"Enduring Circlet","icon":"inv_crown_02","type":1,"armorType":3,"stats":[6,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14766,"name":"Enduring Breeches","icon":"inv_pants_03","type":9,"armorType":3,"stats":[8,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":14767,"name":"Enduring Pauldrons","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":14768,"name":"Ravager's Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[4,4,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14769,"name":"Ravager's Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":3,"stats":[4,0,10,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14770,"name":"Ravager's Armguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14771,"name":"Ravager's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[2,0,8,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14772,"name":"Ravager's Handwraps","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":14773,"name":"Ravager's Cord","icon":"inv_belt_09","type":8,"armorType":3,"stats":[6,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":14774,"name":"Ravager's Crown","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[7,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14775,"name":"Ravager's Woolies","icon":"inv_pants_06","type":9,"armorType":3,"stats":[9,0,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14776,"name":"Ravager's Mantle","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[7,0,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14777,"name":"Ravager's Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,7,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14778,"name":"Khan's Bindings","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[6,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":14779,"name":"Khan's Chestpiece","icon":"inv_chest_cloth_02","type":5,"armorType":3,"stats":[0,0,17,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14780,"name":"Khan's Buckler","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,3,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14781,"name":"Khan's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[4,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14782,"name":"Khan's Gloves","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,10,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":14783,"name":"Khan's Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14784,"name":"Khan's Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14785,"name":"Khan's Helmet","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,7,24,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14786,"name":"Khan's Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,11,14,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14787,"name":"Khan's Mantle","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,12,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14788,"name":"Protector Armguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,11,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14789,"name":"Protector Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":3,"stats":[4,0,21,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14790,"name":"Protector Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,3,15,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14791,"name":"Protector Cape","icon":"inv_misc_cape_05","type":4,"stats":[4,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14792,"name":"Protector Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,4,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14793,"name":"Protector Waistband","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,10,10,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14794,"name":"Protector Ankleguards","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14795,"name":"Protector Helm","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,0,20,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14796,"name":"Protector Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,6,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14797,"name":"Protector Pads","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14798,"name":"Bloodlust Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[9,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14799,"name":"Bloodlust Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[4,0,9,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14800,"name":"Bloodlust Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14801,"name":"Bloodlust Cape","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14802,"name":"Bloodlust Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[7,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":14803,"name":"Bloodlust Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":14804,"name":"Bloodlust Helm","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,0,0,18,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14805,"name":"Bloodlust Britches","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,15,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14806,"name":"Bloodlust Epaulets","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14807,"name":"Bloodlust Bracelets","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,11,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14808,"name":"Warstrike Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,4,16,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14809,"name":"Warstrike Sabatons","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,6,16,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14810,"name":"Warstrike Armsplints","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14811,"name":"Warstrike Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[3,0,10,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":14812,"name":"Warstrike Buckler","icon":"inv_shield_20","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":14813,"name":"Warstrike Cape","icon":"inv_misc_cape_01","type":4,"stats":[7,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14814,"name":"Warstrike Helmet","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,10,23,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":14815,"name":"Warstrike Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,11,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14816,"name":"Warstrike Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,10,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14817,"name":"Warstrike Shoulder Pads","icon":"inv_shoulder_02","type":3,"armorType":3,"stats":[0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14821,"name":"Symbolic Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[14,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14825,"name":"Symbolic Crest","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[4,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14826,"name":"Symbolic Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":4,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":14827,"name":"Symbolic Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":14828,"name":"Symbolic Greaves","icon":"inv_boots_05","type":10,"armorType":4,"stats":[9,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14829,"name":"Symbolic Legplates","icon":"inv_pants_13","type":9,"armorType":4,"stats":[15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14830,"name":"Symbolic Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[0,0,11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2}, -{"id":14831,"name":"Symbolic Crown","icon":"inv_crown_02","type":1,"armorType":4,"stats":[0,0,16,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14832,"name":"Symbolic Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":14833,"name":"Tyrant's Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[12,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14834,"name":"Tyrant's Armguards","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[4,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14835,"name":"Tyrant's Chestpiece","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[16,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14838,"name":"Tyrant's Belt","icon":"inv_belt_24","type":8,"armorType":4,"stats":[9,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":14839,"name":"Tyrant's Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[8,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14840,"name":"Tyrant's Legplates","icon":"inv_pants_06","type":9,"armorType":4,"stats":[19,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2}, -{"id":14841,"name":"Tyrant's Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":14842,"name":"Tyrant's Shield","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[9,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14843,"name":"Tyrant's Helm","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[5,4,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":14844,"name":"Sunscale Chestguard","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,21,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14846,"name":"Sunscale Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[12,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14847,"name":"Sunscale Belt","icon":"inv_belt_19","type":8,"armorType":4,"stats":[10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":14848,"name":"Sunscale Sabatons","icon":"inv_boots_07","type":10,"armorType":4,"stats":[0,3,14,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":14849,"name":"Sunscale Helmet","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[16,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2}, -{"id":14850,"name":"Sunscale Legplates","icon":"inv_pants_02","type":9,"armorType":4,"stats":[19,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14851,"name":"Sunscale Spaulders","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,5,13,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":14852,"name":"Sunscale Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[5,0,10,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14853,"name":"Sunscale Wristguards","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[6,0,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":14854,"name":"Vanguard Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,6,22,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14855,"name":"Vanguard Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":4,"stats":[0,9,12,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":14856,"name":"Vanguard Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14857,"name":"Vanguard Sabatons","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[8,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":14858,"name":"Vanguard Headdress","icon":"inv_helmet_19","type":1,"armorType":4,"stats":[10,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14859,"name":"Vanguard Legplates","icon":"inv_pants_03","type":9,"armorType":4,"stats":[0,0,10,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":14860,"name":"Vanguard Pauldrons","icon":"inv_shoulder_27","type":3,"armorType":4,"stats":[0,8,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":14861,"name":"Vanguard Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,11,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":14862,"name":"Warleader's Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[8,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":14863,"name":"Warleader's Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[17,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":14864,"name":"Warleader's Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[6,0,10,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":14865,"name":"Warleader's Greaves","icon":"inv_boots_05","type":10,"armorType":4,"stats":[0,0,16,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":14866,"name":"Warleader's Crown","icon":"inv_helmet_19","type":1,"armorType":4,"stats":[18,0,16,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14867,"name":"Warleader's Leggings","icon":"inv_pants_03","type":9,"armorType":4,"stats":[15,7,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":14868,"name":"Warleader's Shoulders","icon":"inv_shoulder_02","type":3,"armorType":4,"stats":[6,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":14869,"name":"Warleader's Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[2,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":14895,"name":"Saltstone Surcoat","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,868,869,953,954,1038,1039,1124,1207,1209,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,308,333,334,614,699,867,952,1037,1122,1208,1562,1563],"ilvl":41,"quality":2}, -{"id":14896,"name":"Saltstone Sabatons","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,605,606,607,690,692,860,861,945,946,1030,1031,1115,1116,1117,1200,1201,1202,1607,1612,862,947,1032,691,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":40,"quality":2}, -{"id":14897,"name":"Saltstone Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,606,607,690,691,861,945,1030,1031,1032,1115,1200,1201,1202,1558,1559,860,862,947,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,692,946,2038,2039],"ilvl":40,"quality":2}, -{"id":14898,"name":"Saltstone Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,607,690,692,861,862,945,946,1030,1031,1115,1116,1200,1201,1202,1558,1559,2038,2039,606,860,1117,1032,691,-81,-78,-69,-68,-20,-17,-14,-12,-10,947,-19],"ilvl":40,"quality":2}, -{"id":14899,"name":"Saltstone Helm","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,614,698,699,868,869,952,953,954,1037,1038,1039,1122,1124,1207,1208,1209,1615,1620,2043,1123,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,612,613,697,867,2042],"ilvl":41,"quality":2}, -{"id":14900,"name":"Saltstone Legplates","icon":"inv_pants_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[613,614,699,867,869,952,1038,1039,1124,1207,1208,1209,1562,1563,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,308,309,612,697,698,868,953,954,1037,1122,1123,2042,2043],"ilvl":40,"quality":2}, -{"id":14901,"name":"Saltstone Shoulder Pads","icon":"inv_shoulder_05","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,188,605,607,690,860,945,946,1030,1031,1032,1115,1116,1117,1200,1201,1202,1607,1612,217,-325,-84,-81,-78,-69,-14,-12,-10,606,691,692,861,862,947],"ilvl":41,"quality":2}, -{"id":14902,"name":"Saltstone Shield","icon":"inv_shield_12","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,185,186,190,191,599,684,939,1109,1194,1609,1610,1664,1663,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":41,"quality":2}, -{"id":14903,"name":"Saltstone Armsplints","icon":"inv_bracer_04","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,599,684,854,939,1024,1109,1194,1555,1556,191,2035,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":40,"quality":2}, -{"id":14904,"name":"Brutish Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,621,622,623,707,877,878,961,962,963,1046,1048,1131,1132,1133,1216,1217,1218,1567,1568,708,1047,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,706,876],"ilvl":50,"quality":2}, -{"id":14905,"name":"Brutish Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,691,693,861,863,946,948,1031,1032,1033,1116,1118,1201,1202,1203,1559,1560,692,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,607,862,947,2039,2040],"ilvl":45,"quality":2}, -{"id":14906,"name":"Brutish Belt","icon":"inv_belt_24","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,693,861,863,946,947,948,1031,1032,1033,1116,1118,1201,1202,1203,1559,1560,2040,607,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,691,692,862,1117,2039],"ilvl":44,"quality":2}, -{"id":14907,"name":"Brutish Helmet","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,620,705,874,875,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1616,1622,619,704,873,-325,-84,-81,-78,-69,-68,-14,-12,-10,703,958,2045,2046],"ilvl":48,"quality":2}, -{"id":14908,"name":"Brutish Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,618,619,620,705,873,874,875,958,959,960,1043,1044,1045,1129,1130,1213,1214,1215,1565,1566,2046,704,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,703,1128,2045],"ilvl":48,"quality":2}, -{"id":14909,"name":"Brutish Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,861,863,946,947,948,1031,1033,1116,1117,1118,1201,1202,1203,1612,1613,606,862,1032,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":45,"quality":2}, -{"id":14910,"name":"Brutish Armguards","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,600,601,685,686,855,856,940,941,1025,1026,1110,1111,1195,1196,1556,-68,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,2036],"ilvl":44,"quality":2}, -{"id":14911,"name":"Brutish Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,287,609,610,694,695,696,864,865,866,949,950,951,1034,1036,1119,1120,1121,1204,1205,1206,1613,1614,611,1035,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":46,"quality":2}, -{"id":14912,"name":"Brutish Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,603,605,688,689,690,943,944,945,1113,1114,1115,1198,1199,1200,1668,1669,604,1607,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":14913,"name":"Jade Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":14914,"name":"Jade Bracers","icon":"inv_bracer_12","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,192,603,604,687,857,859,942,1027,1029,1112,1113,1114,1197,1198,1199,1557,602,688,689,944,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,858,943,1028,2037],"ilvl":46,"quality":2}, -{"id":14915,"name":"Jade Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,340,624,626,709,710,711,879,880,881,964,965,966,1049,1050,1051,1135,1136,1219,1220,1221,1329,1421,1568,1569,339,1375,1467,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,625,1134,1328,1513,-329,1374,1466],"ilvl":53,"quality":2}, -{"id":14916,"name":"Jade Deflector","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,211,217,219,605,606,690,691,945,947,1115,1117,1200,1201,1202,1612,1670,692,946,1116,1607,1671,607,1319,-329,-327,-325,-324,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1457,1503,-326],"ilvl":53,"quality":2}, -{"id":14917,"name":"Jade Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[220,307,609,610,611,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,694,1560,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,695,2040,2041],"ilvl":48,"quality":2}, -{"id":14918,"name":"Jade Belt","icon":"inv_belt_17","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,609,610,611,694,695,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1560,1561,220,696,950,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2041,2040],"ilvl":47,"quality":2}, -{"id":14919,"name":"Jade Circlet","icon":"inv_belt_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,626,710,711,881,964,965,966,1050,1051,1134,1135,1136,1219,1220,1221,1466,1617,1624,879,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-12,-10,624,625,709,880,1049,1328,1329,1375,1421,1467,1512,1513,2048,2049],"ilvl":52,"quality":2}, -{"id":14920,"name":"Jade Legplates","icon":"inv_pants_05","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,621,622,623,706,707,708,876,877,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,2047,2048,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":51,"quality":2}, -{"id":14921,"name":"Jade Epaulets","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,612,613,696,697,698,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,611,866,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":14922,"name":"Lofty Sabatons","icon":"inv_boots_wolf","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,614,616,699,869,871,954,955,956,1039,1124,1125,1126,1209,1210,1211,1323,1415,1507,1620,-329,-327,-326,-325,-84,-81,-78,-69,-68,-14,-12,-10,615,700,701,870,1040,1041],"ilvl":53,"quality":2}, -{"id":14923,"name":"Lofty Armguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,603,604,688,689,690,858,859,860,943,944,945,1028,1029,1030,1113,1114,1115,1198,1199,1200,1558,2038,605,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":50,"quality":2}, -{"id":14924,"name":"Lofty Breastplate","icon":"inv_chest_wolf","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,628,629,712,714,882,883,884,968,1052,1053,1054,1139,1222,1223,1224,1376,1377,1570,1571,969,1514,1138,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,627,713,967,1137,1330,1422,1468],"ilvl":57,"quality":2}, -{"id":14925,"name":"Lofty Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,628,629,712,713,714,882,883,884,967,968,969,1054,1137,1138,1139,1222,1223,1224,1618,1625,2050,2051,1052,1331,-328,-327,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,627,1053,1376,1377,1422,1468,1469,1514,1515,-326],"ilvl":57,"quality":2}, -{"id":14926,"name":"Lofty Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,614,615,616,699,701,869,870,954,955,1039,1040,1041,1124,1126,1209,1210,1211,1323,1563,2043,956,-329,-328,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,700,871,1125,1369,1415,1461],"ilvl":53,"quality":2}, -{"id":14927,"name":"Lofty Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,614,699,701,869,870,871,954,1039,1041,1124,1125,1126,1209,1210,1211,1415,1563,2043,616,955,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,615,700,956,1040,1323,1369,1461,1507],"ilvl":52,"quality":2}, -{"id":14928,"name":"Lofty Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,627,629,713,714,882,883,884,969,1052,1053,1054,1137,1138,1139,1222,1223,1224,1330,1469,1570,1571,2050,2051,-329,-328,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,628,712,967,968,1376,1377,1422,1468,1514,-327],"ilvl":55,"quality":2}, -{"id":14929,"name":"Lofty Shoulder Pads","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,614,699,700,869,870,871,954,955,956,1039,1040,1041,1124,1125,1126,1209,1210,1211,1323,1369,1415,1461,1620,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,616,701,1507],"ilvl":54,"quality":2}, -{"id":14930,"name":"Lofty Shield","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,217,218,219,220,606,608,693,947,948,1117,1118,1201,1202,1203,1612,1613,1671,1673,607,946,1116,1672,691,692,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,211,-324,-328,-327],"ilvl":57,"quality":2}, -{"id":14931,"name":"Heroic Armor","icon":"inv_chest_chain_10","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,633,635,720,888,890,974,975,1058,1059,1060,1143,1145,1228,1229,1230,1518,1573,1574,719,718,1517,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,634,889,973,1144,1425,-327],"ilvl":62,"quality":2}, -{"id":14932,"name":"Heroic Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,619,620,704,705,873,874,875,958,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1616,1622,-327,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,703,1325,1371,1417],"ilvl":58,"quality":2}, -{"id":14933,"name":"Heroic Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,618,619,703,704,705,873,874,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,2045,2046,620,-329,-328,-327,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,875,958,1325,1371,1417,1418,1463,1509],"ilvl":58,"quality":2}, -{"id":14934,"name":"Heroic Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,615,616,617,700,702,872,956,957,1041,1042,1125,1126,1127,1210,1211,1212,1508,1564,2044,870,871,955,1040,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,701,1324,1370,1416],"ilvl":57,"quality":2}, -{"id":14935,"name":"Heroic Skullcap","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,631,632,715,717,887,972,1055,1056,1057,1140,1142,1225,1226,1227,1331,1332,1424,1618,1626,2052,-328,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,630,716,885,886,970,971,1141,1470,2051,-329,-327],"ilvl":60,"quality":2}, -{"id":14936,"name":"Heroic Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,634,635,720,888,889,890,975,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,1334,2054,718,2053,-329,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,633,719,973,974,1517,-327],"ilvl":61,"quality":2}, -{"id":14937,"name":"Heroic Pauldrons","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,618,620,703,704,705,873,874,875,958,959,960,1043,1044,1045,1129,1130,1213,1214,1215,1325,1372,1418,1463,1616,1622,-325,-84,-81,-78,-69,-68,-14,-12,-10,619,1128,1371,1417,1509],"ilvl":59,"quality":2}, -{"id":14938,"name":"Heroic Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,693,861,863,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1412,1559,1560,2040,1366,1320,-329,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,607,691,692,862,946,947,1319,1365,1411,1458,1504,2039],"ilvl":56,"quality":2}, -{"id":14939,"name":"Warbringer's Chestguard","icon":"inv_chest_leather_10","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[312,336,337,620,705,873,874,875,960,1043,1045,1128,1130,1213,1214,1215,1566,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,311,618,619,703,704,958,959,1044,1129,1565],"ilvl":46,"quality":2}, -{"id":14940,"name":"Warbringer's Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,606,607,692,693,861,863,946,948,1032,1033,1116,1118,1201,1202,1203,1612,1613,862,947,1117,-325,-84,-81,-78,-69,-68,-14,-12,-10,217,608,691,1031],"ilvl":43,"quality":2}, -{"id":14941,"name":"Warbringer's Armsplints","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,599,684,854,939,1024,1109,1194,1555,1556,191,2035,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":42,"quality":2}, -{"id":14942,"name":"Warbringer's Gauntlets","icon":"inv_gauntlets_27","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,606,607,690,691,861,945,1030,1031,1032,1115,1200,1201,1202,1558,1559,860,862,947,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,692,946,2038,2039],"ilvl":42,"quality":2}, -{"id":14943,"name":"Warbringer's Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,605,607,690,692,861,862,945,946,1030,1031,1115,1116,1200,1201,1202,1558,1559,2038,2039,606,860,1117,1032,691,-81,-78,-69,-68,-20,-17,-14,-12,-10,947,-19],"ilvl":42,"quality":2}, -{"id":14944,"name":"Warbringer's Crown","icon":"inv_belt_28","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,616,617,700,702,870,871,872,955,956,957,1041,1042,1125,1127,1210,1211,1212,1621,1622,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,615,701,1040,1126,2044,2045],"ilvl":45,"quality":2}, -{"id":14945,"name":"Warbringer's Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,616,617,700,701,702,870,872,955,957,1040,1042,1126,1127,1210,1211,1212,1564,615,871,956,1125,1565,2044,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1041,2045],"ilvl":45,"quality":2}, -{"id":14946,"name":"Warbringer's Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,861,863,946,947,948,1031,1033,1116,1117,1118,1201,1202,1203,1612,1613,606,862,1032,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":43,"quality":2}, -{"id":14947,"name":"Warbringer's Shield","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,187,192,602,603,604,687,688,689,942,1112,1114,1197,1611,1666,1667,1113,1199,1668,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,943,944,1198],"ilvl":46,"quality":2}, -{"id":14948,"name":"Bloodforged Chestpiece","icon":"inv_chest_chain_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,621,622,623,707,877,878,961,962,963,1046,1048,1131,1132,1133,1216,1217,1218,1567,1568,708,1047,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,706,876],"ilvl":51,"quality":2}, -{"id":14949,"name":"Bloodforged Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[220,307,609,610,611,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,694,1560,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,695,2040,2041],"ilvl":47,"quality":2}, -{"id":14950,"name":"Bloodforged Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,609,610,611,694,695,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1560,1561,220,696,950,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2041,2040],"ilvl":46,"quality":2}, -{"id":14951,"name":"Bloodforged Sabatons","icon":"inv_boots_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,287,609,610,694,695,696,864,865,866,949,950,951,1034,1036,1119,1120,1121,1204,1205,1206,1613,1614,611,1035,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":47,"quality":2}, -{"id":14952,"name":"Bloodforged Helmet","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,622,623,707,708,876,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1617,1623,2047,706,877,2048,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,621],"ilvl":50,"quality":2}, -{"id":14953,"name":"Bloodforged Legplates","icon":"inv_pants_06","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,621,622,623,706,707,708,876,877,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,2047,2048,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":14954,"name":"Bloodforged Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,603,605,688,689,690,943,944,945,1113,1114,1115,1198,1199,1200,1668,1669,604,1607,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":51,"quality":2}, -{"id":14955,"name":"Bloodforged Shoulder Pads","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,287,609,610,611,694,695,696,864,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,-325,-84,-81,-78,-69,-68,-14,-12,-10,865],"ilvl":47,"quality":2}, -{"id":14956,"name":"Bloodforged Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,600,601,685,686,855,856,940,941,1025,1026,1110,1111,1195,1196,1556,-68,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,2036],"ilvl":45,"quality":2}, -{"id":14957,"name":"High Chief's Sabatons","icon":"inv_boots_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":51,"quality":2}, -{"id":14958,"name":"High Chief's Armor","icon":"inv_chest_chain_14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,628,629,712,714,882,883,884,968,1052,1053,1054,1139,1222,1223,1224,1376,1377,1570,1571,969,1514,1138,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,627,713,967,1137,1330,1422,1468],"ilvl":56,"quality":2}, -{"id":14959,"name":"High Chief's Gauntlets","icon":"inv_gauntlets_06","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[309,614,615,616,699,701,869,870,954,955,1039,1040,1041,1124,1126,1209,1210,1211,1323,1563,2043,956,-329,-328,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,700,871,1125,1369,1415,1461],"ilvl":52,"quality":2}, -{"id":14960,"name":"High Chief's Belt","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1561,1562,-17,-81,-78,-69,-68,-20,-19,-14,-12,-10,2041,2042],"ilvl":51,"quality":2}, -{"id":14961,"name":"High Chief's Crown","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,628,629,712,713,714,882,883,884,967,968,969,1054,1137,1138,1139,1222,1223,1224,1618,1625,2050,2051,1052,1331,-328,-327,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,627,1053,1376,1377,1422,1468,1469,1514,1515,-326],"ilvl":55,"quality":2}, -{"id":14962,"name":"High Chief's Legguards","icon":"inv_pants_08","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,626,710,711,879,880,881,964,966,1049,1050,1051,1134,1135,1136,1219,1220,1221,1568,1569,2049,625,1513,624,-329,-328,-326,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,709,965,1329,2048,-327],"ilvl":54,"quality":2}, -{"id":14963,"name":"High Chief's Pauldrons","icon":"inv_shoulder_05","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,614,699,700,869,870,871,954,955,956,1039,1040,1041,1124,1125,1126,1209,1210,1211,1323,1369,1415,1461,1620,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,616,701,1507],"ilvl":53,"quality":2}, -{"id":14964,"name":"High Chief's Shield","icon":"inv_shield_20","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,217,218,219,220,606,608,693,947,948,1117,1118,1201,1202,1203,1612,1613,1671,1673,607,946,1116,1672,691,692,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,211,-324,-328,-327],"ilvl":56,"quality":2}, -{"id":14965,"name":"High Chief's Bindings","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,603,604,688,689,690,858,859,860,943,944,945,1028,1029,1030,1113,1114,1115,1198,1199,1200,1558,2038,605,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":49,"quality":2}, -{"id":14966,"name":"Glorious Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,633,635,720,888,890,974,975,1058,1059,1060,1143,1145,1228,1229,1230,1518,1573,1574,719,718,1517,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,634,889,973,1144,1425,-327],"ilvl":61,"quality":2}, -{"id":14967,"name":"Glorious Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,616,617,701,702,870,871,872,956,957,1040,1041,1042,1126,1127,1210,1211,1212,1462,1508,1564,2044,700,955,1125,1370,-329,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,615,1324,1416,-328,-327,-324],"ilvl":56,"quality":2}, -{"id":14968,"name":"Glorious Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,615,616,617,700,702,872,956,957,1041,1042,1125,1126,1127,1210,1211,1212,1508,1564,2044,870,871,955,1040,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,701,1324,1370,1416],"ilvl":55,"quality":2}, -{"id":14969,"name":"Glorious Headdress","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,631,632,715,717,887,972,1055,1056,1057,1140,1142,1225,1226,1227,1331,1332,1424,1618,1626,2052,-328,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,630,716,885,886,970,971,1141,1470,2051,-329,-327],"ilvl":59,"quality":2}, -{"id":14970,"name":"Glorious Legplates","icon":"inv_pants_02","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,631,632,715,716,717,885,886,887,970,972,1055,1056,1057,1140,1141,1142,1225,1226,1227,1332,1377,1571,1572,2051,2052,-329,-328,-327,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,630,971,1378,1470,1515],"ilvl":58,"quality":2}, -{"id":14971,"name":"Glorious Shoulder Pads","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,617,700,701,702,870,872,957,1041,1042,1125,1126,1127,1210,1211,1212,1416,1508,1621,-328,-325,-84,-81,-78,-69,-68,-14,-12,-10,615,616,871,955,956,1040,1324,1370,1462],"ilvl":57,"quality":2}, -{"id":14972,"name":"Glorious Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,617,700,701,702,870,872,955,956,957,1040,1042,1125,1126,1127,1210,1211,1212,1621,616,871,1041,1370,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,615,1324,1462,1508,-329,1416],"ilvl":56,"quality":2}, -{"id":14973,"name":"Glorious Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,218,220,267,608,609,610,693,694,695,948,949,950,1120,1203,1204,1205,1458,1613,1673,1674,287,307,1118,1119,1614,1320,1366,-329,-328,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":60,"quality":2}, -{"id":14974,"name":"Glorious Bindings","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,693,861,863,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1412,1559,1560,2040,1366,1320,-329,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,607,691,692,862,946,947,1319,1365,1411,1458,1504,2039],"ilvl":55,"quality":2}, -{"id":14975,"name":"Exalted Harness","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[320,321,345,346,636,638,721,722,723,891,893,976,977,978,1061,1063,1148,1231,1232,1233,1427,1574,1575,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,637,892,1062,1146,1147,1381,1519],"ilvl":65,"quality":2}, -{"id":14976,"name":"Exalted Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[312,313,620,621,622,706,707,875,876,877,961,1045,1046,1047,1131,1132,1215,1216,1217,1418,1566,1567,962,1130,2046,-329,-328,-327,-326,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,705,960,1372,2047,-324],"ilvl":61,"quality":2}, -{"id":14977,"name":"Exalted Girdle","icon":"inv_belt_24","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,618,704,705,873,875,958,1043,1044,1045,1129,1130,1213,1214,1215,1371,1463,1565,1566,2045,2046,874,959,960,1128,-329,-324,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,312,619,620,703,1325,1417],"ilvl":60,"quality":2}, -{"id":14978,"name":"Exalted Sabatons","icon":"inv_boots_wolf","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,621,622,705,706,707,875,876,877,960,961,962,1045,1047,1130,1131,1132,1215,1216,1217,1418,1616,1623,620,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,1046,1326,1510],"ilvl":63,"quality":2}, -{"id":14979,"name":"Exalted Helmet","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,638,723,893,976,1063,1148,1231,1232,1233,1629,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,721,891,977,978,1061,1062,1146,1147,1628,2054],"ilvl":64,"quality":2}, -{"id":14980,"name":"Exalted Legplates","icon":"inv_pants_12","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,634,635,720,888,889,890,975,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,1334,2054,718,2053,-329,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,633,719,973,974,1517,-327],"ilvl":63,"quality":2}, -{"id":14981,"name":"Exalted Epaulets","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,620,621,705,706,876,877,960,961,962,1045,1046,1047,1130,1131,1132,1215,1216,1217,1419,1465,1616,1623,338,622,707,875,-329,-328,-325,-324,-84,-81,-78,-69,-68,-14,-12,-10,1326,1327,1372,1510,-327,-326,1511],"ilvl":62,"quality":2}, -{"id":14982,"name":"Exalted Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,612,697,952,1122,1123,1208,1615,1414,1460,613,698,953,1207,1677,1678,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,-328,1368,-329],"ilvl":65,"quality":2}, -{"id":14983,"name":"Exalted Armsplints","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[218,220,287,307,608,609,610,693,695,863,864,865,948,949,950,1033,1034,1035,1118,1119,1120,1203,1204,1205,1504,1560,1561,2040,1412,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,694,1320,1321,1366,1367,1413,1458,2041],"ilvl":59,"quality":2}, -{"id":15003,"name":"Primal Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15004,"name":"Primal Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":15005,"name":"Primal Bands","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":15006,"name":"Primal Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":15007,"name":"Primal Cape","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15008,"name":"Primal Mitts","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":15009,"name":"Primal Leggings","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,14,16,17,27,227,228,584,754,839,924,1009,1179,1547,1548,1799,1800,2027,2028,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":11,"quality":2}, -{"id":15010,"name":"Primal Wraps","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,14,15,16,17,19,25,27,227,228,584,754,839,1009,1547,1548,1989,1990,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":11,"quality":2}, -{"id":15011,"name":"Lupine Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[25,26,62,74,227,228,229,231,256,501,584,585,586,669,670,671,754,755,756,839,840,841,1009,1010,1011,1094,1095,1096,1179,1180,1181,2028,2029,1800,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1801],"ilvl":15,"quality":2}, -{"id":15012,"name":"Lupine Slippers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,28,93,95,96,232,233,238,502,503,504,587,588,589,757,758,759,842,843,844,927,928,929,1012,1013,1014,1549,1550,1991,1992,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":16,"quality":2}, -{"id":15013,"name":"Lupine Cuffs","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15014,"name":"Lupine Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[25,26,27,28,229,231,256,501,755,756,840,841,1010,1011,1800,1801,1838,1839,1876,1877,1953,2028,2029,-81,-69,-19,-15,-13,-11,-9,1952],"ilvl":17,"quality":2}, -{"id":15015,"name":"Lupine Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":15016,"name":"Lupine Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,74,89,95,232,233,238,502,503,504,587,588,589,672,674,757,758,759,842,843,844,927,928,929,1012,1013,1014,1182,1183,1184,1801,1802,2029,2030,673,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":16,"quality":2}, -{"id":15017,"name":"Lupine Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,151,153,235,236,248,507,508,591,592,593,761,762,763,846,847,848,931,932,933,1016,1017,1018,1186,1187,1188,1552,1553,1804,2032,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,506,1805,2033],"ilvl":19,"quality":2}, -{"id":15018,"name":"Lupine Vest","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,151,152,153,154,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1552,1553,1994,1995,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":20,"quality":2}, -{"id":15019,"name":"Lupine Mantle","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":15045,"name":"Green Dragonscale Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"setName":"Green Dragon Mail","setId":490,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19050}},{"crafted":{"profession":8,"spellId":19050}}]}, -{"id":15046,"name":"Green Dragonscale Leggings","icon":"inv_pants_05","type":9,"armorType":3,"stats":[0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"setName":"Green Dragon Mail","setId":490,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19060}},{"crafted":{"profession":8,"spellId":19060}}]}, -{"id":15047,"name":"Red Dragonscale Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19054}},{"crafted":{"profession":8,"spellId":19054}}]}, -{"id":15048,"name":"Blue Dragonscale Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,38,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Blue Dragon Mail","setId":491,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19077}},{"crafted":{"profession":8,"spellId":19077}}]}, -{"id":15049,"name":"Blue Dragonscale Shoulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,27,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Blue Dragon Mail","setId":491,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19089}},{"crafted":{"profession":8,"spellId":19089}}]}, -{"id":15050,"name":"Black Dragonscale Breastplate","icon":"inv_chest_plate06","type":5,"armorType":3,"stats":[0,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Black Dragon Mail","setId":489,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19085}},{"crafted":{"profession":8,"spellId":19085}}]}, -{"id":15051,"name":"Black Dragonscale Shoulders","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,20,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Black Dragon Mail","setId":489,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19094}},{"crafted":{"profession":8,"spellId":19094}}]}, -{"id":15052,"name":"Black Dragonscale Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,27,12,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Black Dragon Mail","setId":489,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19107}},{"crafted":{"profession":8,"spellId":19107}}]}, -{"id":15053,"name":"Volcanic Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,120,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"setName":"Volcanic Armor","setId":141,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19076}},{"crafted":{"profession":8,"spellId":19076}}]}, -{"id":15054,"name":"Volcanic Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,80,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"setName":"Volcanic Armor","setId":141,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19059}},{"crafted":{"profession":8,"spellId":19059}}]}, -{"id":15055,"name":"Volcanic Shoulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"setName":"Volcanic Armor","setId":141,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19101}},{"crafted":{"profession":8,"spellId":19101}}]}, -{"id":15056,"name":"Stormshroud Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Stormshroud Armor","setId":142,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19079}},{"crafted":{"profession":8,"spellId":19079}}]}, -{"id":15057,"name":"Stormshroud Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"setName":"Stormshroud Armor","setId":142,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19067}},{"crafted":{"profession":8,"spellId":19067}}]}, -{"id":15058,"name":"Stormshroud Shoulders","icon":"inv_shoulder_05","type":3,"armorType":2,"stats":[0,0,12,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Stormshroud Armor","setId":142,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19090}},{"crafted":{"profession":8,"spellId":19090}}]}, -{"id":15059,"name":"Living Breastplate","icon":"inv_chest_plate07","type":5,"armorType":2,"stats":[0,0,10,12,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19095}},{"crafted":{"profession":8,"spellId":19095}}]}, -{"id":15060,"name":"Living Leggings","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,8,12,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19078}},{"crafted":{"profession":8,"spellId":19078}}]}, -{"id":15061,"name":"Living Shoulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,15,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19061}},{"crafted":{"profession":8,"spellId":19061}}]}, -{"id":15062,"name":"Devilsaur Leggings","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,23,12,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Devilsaur Armor","setId":143,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19097}},{"crafted":{"profession":8,"spellId":19097}}]}, -{"id":15063,"name":"Devilsaur Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,14,9,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Devilsaur Armor","setId":143,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19084}},{"crafted":{"profession":8,"spellId":19084}}]}, -{"id":15064,"name":"Warbear Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,27,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19068}},{"crafted":{"profession":8,"spellId":19068}}]}, -{"id":15065,"name":"Warbear Woolies","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19080}},{"crafted":{"profession":8,"spellId":19080}}]}, -{"id":15066,"name":"Ironfeather Breastplate","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Ironfeather Armor","setId":144,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19086}},{"crafted":{"profession":8,"spellId":19086}}]}, -{"id":15067,"name":"Ironfeather Shoulders","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,14,18,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"setName":"Ironfeather Armor","setId":144,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19062}},{"crafted":{"profession":8,"spellId":19062}}]}, -{"id":15068,"name":"Frostsaber Tunic","icon":"inv_chest_chain_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19104}},{"crafted":{"profession":8,"spellId":19104}}]}, -{"id":15069,"name":"Frostsaber Leggings","icon":"inv_pants_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19074}},{"crafted":{"profession":8,"spellId":19074}}]}, -{"id":15070,"name":"Frostsaber Gloves","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19087}},{"crafted":{"profession":8,"spellId":19087}}]}, -{"id":15071,"name":"Frostsaber Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19066}},{"crafted":{"profession":8,"spellId":19066}}]}, -{"id":15072,"name":"Chimeric Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19073}},{"crafted":{"profession":8,"spellId":19073}}]}, -{"id":15073,"name":"Chimeric Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19063}},{"crafted":{"profession":8,"spellId":19063}}]}, -{"id":15074,"name":"Chimeric Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19053}},{"crafted":{"profession":8,"spellId":19053}}]}, -{"id":15075,"name":"Chimeric Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19081}},{"crafted":{"profession":8,"spellId":19081}}]}, -{"id":15076,"name":"Heavy Scorpid Vest","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19051}},{"crafted":{"profession":8,"spellId":19051}}]}, -{"id":15077,"name":"Heavy Scorpid Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19048}},{"crafted":{"profession":8,"spellId":19048}}]}, -{"id":15078,"name":"Heavy Scorpid Gauntlets","icon":"inv_gauntlets_24","type":7,"armorType":3,"stats":[0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19064}},{"crafted":{"profession":8,"spellId":19064}}]}, -{"id":15079,"name":"Heavy Scorpid Leggings","icon":"inv_pants_12","type":9,"armorType":3,"stats":[0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19075}},{"crafted":{"profession":8,"spellId":19075}}]}, -{"id":15080,"name":"Heavy Scorpid Helm","icon":"inv_helmet_20","type":1,"armorType":3,"stats":[0,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19088}},{"crafted":{"profession":8,"spellId":19088}}]}, -{"id":15081,"name":"Heavy Scorpid Shoulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19100}},{"crafted":{"profession":8,"spellId":19100}}]}, -{"id":15082,"name":"Heavy Scorpid Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19070}},{"crafted":{"profession":8,"spellId":19070}}]}, -{"id":15083,"name":"Wicked Leather Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19049}},{"crafted":{"profession":8,"spellId":19049}}]}, -{"id":15084,"name":"Wicked Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19052}},{"crafted":{"profession":8,"spellId":19052}}]}, -{"id":15085,"name":"Wicked Leather Armor","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,25,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19098}},{"crafted":{"profession":8,"spellId":19098}}]}, -{"id":15086,"name":"Wicked Leather Headband","icon":"inv_misc_bandage_13","type":1,"armorType":2,"stats":[0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19071}},{"crafted":{"profession":8,"spellId":19071}}]}, -{"id":15087,"name":"Wicked Leather Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19083}},{"crafted":{"profession":8,"spellId":19083}}]}, -{"id":15088,"name":"Wicked Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19092}},{"crafted":{"profession":8,"spellId":19092}}]}, -{"id":15090,"name":"Runic Leather Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,21,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19102}},{"crafted":{"profession":8,"spellId":19102}}]}, -{"id":15091,"name":"Runic Leather Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,0,0,0,14,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19055}},{"crafted":{"profession":8,"spellId":19055}}]}, -{"id":15092,"name":"Runic Leather Bracers","icon":"inv_bracer_11","type":6,"armorType":2,"stats":[0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19065}},{"crafted":{"profession":8,"spellId":19065}}]}, -{"id":15093,"name":"Runic Leather Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,14,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":19072}},{"crafted":{"profession":8,"spellId":19072}}]}, -{"id":15094,"name":"Runic Leather Headband","icon":"inv_misc_bandage_11","type":1,"armorType":2,"stats":[0,0,0,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19082}},{"crafted":{"profession":8,"spellId":19082}}]}, -{"id":15095,"name":"Runic Leather Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19091}},{"crafted":{"profession":8,"spellId":19091}}]}, -{"id":15096,"name":"Runic Leather Shoulders","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,0,0,15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19103}},{"crafted":{"profession":8,"spellId":19103}}]}, -{"id":15104,"name":"Wingborne Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,8,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3}, -{"id":15105,"name":"Staff of Noh'Orahil","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,9,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.7,"ilvl":40,"quality":2,"classAllowlist":[8]}, -{"id":15106,"name":"Staff of Dar'Orahil","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,9,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.7,"ilvl":40,"quality":2,"classAllowlist":[8]}, -{"id":15107,"name":"Orb of Noh'Orahil","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"classAllowlist":[8]}, -{"id":15108,"name":"Orb of Dar'Orahil","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"classAllowlist":[8]}, -{"id":15109,"name":"Staff of Soran'ruk","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":59,"weaponSpeed":2.9,"ilvl":25,"quality":2,"classAllowlist":[8]}, -{"id":15110,"name":"Rigid Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,94,108,112,232,233,234,503,504,505,588,589,590,673,675,758,759,760,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1802,1803,2030,2031,-81,-9,674,-325,-78,-69,-68,-19,-14,-13,-12,-11],"ilvl":20,"quality":2}, -{"id":15111,"name":"Rigid Moccasins","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,95,96,111,113,114,232,233,234,503,504,505,588,589,590,758,759,760,843,844,845,928,929,930,1013,1014,1015,1550,1551,1992,1993,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":21,"quality":2}, -{"id":15112,"name":"Rigid Bracelets","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,93,94,95,96,238,502,587,757,842,1012,1549,1550,1801,1991,1992,2029,1802,2030,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":20,"quality":2}, -{"id":15113,"name":"Rigid Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,96,97,108,111,114,115,588,589,590,673,674,675,928,929,930,1098,1099,1100,1183,1184,1185,1653,1654,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":23,"quality":2}, -{"id":15114,"name":"Rigid Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,26,28,74,89,93,94,95,96,238,502,587,757,842,1012,1801,1802,1991,1992,2029,2030,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":19,"quality":2}, -{"id":15115,"name":"Rigid Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,113,128,134,235,236,248,506,507,508,591,592,593,676,677,678,761,762,763,846,847,848,931,932,933,1016,1017,1018,1186,1187,1188,1803,1804,2031,2032,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":22,"quality":2}, -{"id":15116,"name":"Rigid Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,128,132,133,135,147,151,152,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1019,1020,1103,1104,1105,1994,1995,-325,-84,-81,-78,-19,-18,-13,-12,-11,-9],"ilvl":26,"quality":2}, -{"id":15117,"name":"Rigid Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,167,179,237,247,249,509,510,511,594,595,596,764,765,766,849,850,851,934,935,936,1019,1020,1021,1189,1190,1191,1553,1554,1806,2033,2034,1805,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":24,"quality":2}, -{"id":15118,"name":"Rigid Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,250,251,252,512,513,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1555,1556,1997,1998,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":26,"quality":2}, -{"id":15119,"name":"Highborne Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,23,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15120,"name":"Robust Girdle","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,147,152,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,1804,1805,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":26,"quality":2}, -{"id":15121,"name":"Robust Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,179,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,936,937,938,1021,1022,1023,1554,1996,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":28,"quality":2}, -{"id":15122,"name":"Robust Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,112,113,114,234,235,236,505,506,590,591,592,760,761,762,845,846,847,1015,1016,1017,1551,1803,1993,2031,507,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":25,"quality":2}, -{"id":15123,"name":"Robust Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,235,236,248,506,507,508,761,762,763,847,848,1016,1017,1018,1804,1842,1880,2032,846,-81,-69,-19,-15,-13,-11,-9,1956],"ilvl":28,"quality":2}, -{"id":15124,"name":"Robust Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,111,112,113,114,234,235,236,505,506,507,590,591,592,760,761,762,845,846,847,1015,1016,1017,1803,1993,2031,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":25,"quality":2}, -{"id":15125,"name":"Robust Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,250,252,511,513,596,597,598,681,682,683,766,767,768,851,852,853,936,938,1021,1022,1023,1191,1193,1608,1806,2034,937,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,512,1192],"ilvl":29,"quality":2}, -{"id":15126,"name":"Robust Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,253,254,255,515,517,600,601,602,770,771,772,855,856,857,941,942,1025,1026,1027,1195,1196,1197,1556,1557,1808,1809,2036,2037,516,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,940],"ilvl":29,"quality":2}, -{"id":15127,"name":"Robust Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,174,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1106,1107,1108,1608,1996,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":30,"quality":2}, -{"id":15128,"name":"Robust Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,435,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1559,2000,436,2001,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,437],"ilvl":31,"quality":2}, -{"id":15129,"name":"Robust Helm","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,188,213,217,435,437,518,519,520,603,604,605,689,690,773,774,775,858,859,860,1028,1029,1030,1200,1607,1612,1810,2000,2001,2038,2039,436,1811,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,688,1198,1199],"ilvl":31,"quality":2}, -{"id":15130,"name":"Cutthroat's Vest","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,215,216,217,218,438,440,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1559,1560,2002,522,439,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,521,2001],"ilvl":34,"quality":2}, -{"id":15131,"name":"Cutthroat's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,180,185,250,251,252,512,513,514,597,598,599,768,769,852,853,854,938,939,1022,1023,1024,1555,767,937,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":32,"quality":2}, -{"id":15132,"name":"Cutthroat's Armguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1552,1804,1994,2032,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":29,"quality":2}, -{"id":15133,"name":"Cutthroat's Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,152,153,237,248,249,508,510,763,764,765,848,850,1018,1020,1805,1880,1881,1956,2032,849,1019,1843,1957,2033,133,509,-81,-69,-19,-15,-13,-11,-9,1804,1842],"ilvl":33,"quality":2}, -{"id":15134,"name":"Cutthroat's Hat","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,441,442,443,524,525,526,609,610,611,694,696,779,780,781,864,865,866,1034,1035,1036,1204,1206,1614,1615,1813,1814,2004,2041,695,2003,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1205,2042],"ilvl":37,"quality":2}, -{"id":15135,"name":"Cutthroat's Cape","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,133,134,135,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1804,1994,2032,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":30,"quality":2}, -{"id":15136,"name":"Cutthroat's Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,251,512,513,514,597,598,599,684,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1192,1193,1194,1609,2035,250,682,1807,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,252,683],"ilvl":31,"quality":2}, -{"id":15137,"name":"Cutthroat's Mitts","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,250,251,512,514,597,598,599,682,684,767,768,769,852,853,854,938,939,1022,1023,1024,1192,1194,1609,1807,2035,252,513,683,1193,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,937],"ilvl":33,"quality":2}, -{"id":15138,"name":"Onyxia Scale Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":19093}},{"crafted":{"profession":8,"spellId":19093}}]}, -{"id":15139,"name":"Cutthroat's Pants","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,211,215,435,436,437,518,520,603,604,605,773,774,775,858,859,860,943,944,945,1028,1029,1030,1198,1199,1200,1558,1559,1810,2038,2039,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,519,1811],"ilvl":33,"quality":2}, -{"id":15140,"name":"Cutthroat's Mantle","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,186,187,515,516,517,600,601,602,771,855,856,857,1025,1026,1027,1110,1111,1112,1611,1998,253,254,255,772,770,1610,1999,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":34,"quality":2}, -{"id":15142,"name":"Ghostwalker Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,186,187,253,254,255,515,516,600,601,602,770,771,772,855,856,857,940,941,942,1025,1026,1027,1556,1557,1998,517,1999,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":35,"quality":2}, -{"id":15143,"name":"Ghostwalker Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,151,152,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1019,1020,1552,1553,1805,1994,1995,2033,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1804,2032],"ilvl":33,"quality":2}, -{"id":15144,"name":"Ghostwalker Rags","icon":"inv_chest_plate01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,409,410,441,442,443,524,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1561,1562,2003,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,2004],"ilvl":37,"quality":2}, -{"id":15145,"name":"Ghostwalker Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,247,249,511,764,765,766,849,850,851,1019,1020,1021,1805,1844,1882,1958,2033,2034,237,1806,510,1843,1881,509,-81,-69,-19,-15,-13,-11,-9,1957],"ilvl":36,"quality":2}, -{"id":15146,"name":"Ghostwalker Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,441,442,443,524,525,526,609,610,611,694,696,779,780,781,864,865,866,1034,1035,1036,1204,1206,1614,1615,1813,1814,2004,2041,695,2003,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1205,2042],"ilvl":39,"quality":2}, -{"id":15147,"name":"Ghostwalker Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,133,134,135,147,151,152,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1020,1804,1994,1995,2032,1019,1805,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,2033],"ilvl":33,"quality":2}, -{"id":15148,"name":"Ghostwalker Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,177,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,1025,1026,1027,1110,1111,1112,1195,1196,1197,1610,1611,1808,1809,2036,2037,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":34,"quality":2}, -{"id":15149,"name":"Ghostwalker Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,940,942,1025,1026,1027,1195,1196,1197,1610,1611,1808,941,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1809,2036,2037],"ilvl":36,"quality":2}, -{"id":15150,"name":"Ghostwalker Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,186,187,515,516,517,600,601,602,771,855,856,857,1025,1026,1027,1110,1111,1112,1611,1998,253,254,255,772,770,1610,1999,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":36,"quality":2}, -{"id":15151,"name":"Ghostwalker Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,211,212,215,216,438,439,440,521,522,523,606,607,608,776,777,778,861,862,863,948,1031,1032,1033,1201,1202,1203,1559,1560,1812,946,2040,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,947,1811,2039],"ilvl":36,"quality":2}, -{"id":15152,"name":"Nocturnal Shoes","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,211,215,217,439,605,606,607,775,776,777,860,861,862,946,947,1030,1031,1032,1200,1201,1558,2000,2001,437,438,945,1202,1559,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":41,"quality":2}, -{"id":15153,"name":"Nocturnal Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,168,174,175,179,180,184,185,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1608,1609,1996,1997,2035,1806,2034,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1807],"ilvl":37,"quality":2}, -{"id":15154,"name":"Nocturnal Sash","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,1027,1028,1029,1112,1114,1197,1198,1199,1607,1611,1809,2037,1113,2038,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1810],"ilvl":38,"quality":2}, -{"id":15155,"name":"Nocturnal Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,942,943,944,1027,1028,1029,1197,1198,1199,1607,1611,1809,2037,1810,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2038],"ilvl":39,"quality":2}, -{"id":15156,"name":"Nocturnal Cap","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[615,787,335,336,386,531,532,616,617,700,702,785,786,870,871,872,1040,1041,1042,1127,1211,1212,1621,1622,1817,2006,2045,387,1816,2044,-81,-78,-9,1125,-325,-84,-69,-68,-19,-14,-13,-12,530,701,1126,1210,2007],"ilvl":43,"quality":2}, -{"id":15157,"name":"Nocturnal Leggings","icon":"inv_pants_03","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[358,359,411,446,612,613,614,782,783,784,867,868,869,954,1037,1039,1207,1209,1562,1563,1814,1815,2043,1038,1208,445,952,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,410,444,953,2042],"ilvl":41,"quality":2}, -{"id":15158,"name":"Nocturnal Shoulder Pads","icon":"inv_shoulder_22","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,520,521,605,606,607,775,776,777,860,861,862,1030,1032,1115,1116,1117,1200,1201,1202,1607,2000,2001,522,1031,1612,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":40,"quality":2}, -{"id":15159,"name":"Nocturnal Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,612,613,614,782,783,784,867,868,869,1037,1038,1039,1208,1209,1563,2004,2005,1562,1207,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":42,"quality":2}, -{"id":15160,"name":"Nocturnal Wristbands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,513,766,768,851,853,1023,1554,1555,2034,167,174,179,180,184,185,247,252,511,512,596,597,598,767,852,1021,1022,1806,1807,1996,2035,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,250],"ilvl":39,"quality":2}, -{"id":15161,"name":"Imposing Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,438,440,521,523,606,607,608,691,692,693,776,777,778,861,862,863,1031,1032,1033,1118,1201,1202,1203,1612,1613,2040,1116,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,439,522,1117,1811,1812,2039],"ilvl":43,"quality":2}, -{"id":15162,"name":"Imposing Boots","icon":"inv_boots_02","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,215,216,217,218,438,440,606,607,608,776,777,778,861,862,863,946,947,1031,1032,1033,1201,1203,1559,2002,439,948,1202,1560,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":45,"quality":2}, -{"id":15163,"name":"Imposing Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1556,1998,2036,1808,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":43,"quality":2}, -{"id":15164,"name":"Imposing Vest","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,388,413,414,618,619,620,788,789,790,873,874,875,1043,1045,1214,1215,1565,1566,2007,2008,387,1213,1044,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":47,"quality":2}, -{"id":15165,"name":"Imposing Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,185,186,599,769,854,1024,1194,1609,1610,1808,1997,1998,2035,1807,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,181,2036],"ilvl":42,"quality":2}, -{"id":15166,"name":"Imposing Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,522,523,606,607,608,692,693,777,778,861,862,863,946,947,948,1031,1032,1033,1201,1202,1203,1612,1613,1811,1812,2040,776,521,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,438,691,2039],"ilvl":45,"quality":2}, -{"id":15167,"name":"Imposing Bandana","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,618,619,620,703,705,788,789,790,873,874,875,1043,1044,1045,1129,1130,1213,1214,1215,1616,1622,1818,2007,2008,2045,1817,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,704,1128,2046],"ilvl":48,"quality":2}, -{"id":15168,"name":"Imposing Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,449,615,616,617,785,786,787,870,871,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,1816,1817,2044,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,2045],"ilvl":45,"quality":2}, -{"id":15169,"name":"Imposing Shoulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[608,211,212,213,214,217,218,522,523,606,607,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1202,1203,1612,1613,2002,521,1201,2001,-325,-84,-81,-78,-69,-68,-19,-9,-18,-13,-12],"ilvl":44,"quality":2}, -{"id":15170,"name":"Potent Armor","icon":"inv_chest_chain_13","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,364,365,390,391,416,417,624,625,626,794,795,796,879,880,881,1049,1050,1051,1219,1220,1221,1467,1568,1569,2010,2011,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1329,1374,1375,1420,1421,1513,1328],"ilvl":52,"quality":2}, -{"id":15171,"name":"Potent Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[611,1038,267,287,333,358,409,410,444,445,612,613,781,782,783,866,867,868,951,952,953,1036,1037,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,443],"ilvl":50,"quality":2}, -{"id":15172,"name":"Potent Bands","icon":"inv_bracer_14","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,602,603,604,772,774,857,858,859,1027,1028,1029,1197,1198,1199,1557,1809,1999,773,2037,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":47,"quality":2}, -{"id":15173,"name":"Potent Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,602,603,604,772,773,774,857,859,1027,1029,1197,1198,1611,1809,1999,2037,1028,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,858,1199],"ilvl":46,"quality":2}, -{"id":15174,"name":"Potent Gloves","icon":"inv_gauntlets_12","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[409,410,443,444,445,526,527,528,611,612,613,697,698,781,782,783,866,867,868,951,952,953,1036,1037,1038,1206,1207,1208,1614,1615,1813,1814,2042,696,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2041],"ilvl":50,"quality":2}, -{"id":15175,"name":"Potent Helmet","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,621,622,623,708,791,792,793,876,877,878,1046,1047,1048,1131,1133,1216,1217,1218,1617,1623,1820,2009,2010,2047,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,706,707,1132,1819,2048],"ilvl":51,"quality":2}, -{"id":15176,"name":"Potent Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,455,621,622,623,791,792,793,876,877,878,961,963,1046,1047,1048,1216,1217,1218,1567,1568,1819,1820,2047,2048,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,453,454,962],"ilvl":50,"quality":2}, -{"id":15177,"name":"Potent Shoulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1122,1123,1206,1207,1208,1614,1615,2003,2004,1121,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9],"ilvl":49,"quality":2}, -{"id":15178,"name":"Potent Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,1813,2040,2041,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":47,"quality":2}, -{"id":15179,"name":"Praetorian Padded Armor","icon":"inv_chest_chain_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,393,418,419,627,628,629,797,798,799,883,884,1052,1053,1054,1222,1223,1224,1570,1571,2012,2013,-329,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,882,1330,1376,1422,1423,1468,1469,1515],"ilvl":57,"quality":2}, -{"id":15180,"name":"Praetorian Girdle","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,446,447,529,614,615,616,699,700,701,784,785,786,869,870,871,1039,1040,1124,1209,1210,1323,1620,1815,2043,531,1041,1125,1126,530,1211,1461,448,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1369,1415,1507,-329],"ilvl":53,"quality":2}, -{"id":15181,"name":"Praetorian Boots","icon":"inv_boots_plate_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,360,412,447,449,615,616,617,785,786,787,870,871,872,955,956,957,1040,1041,1042,1210,1211,1212,1416,1462,1508,1564,2006,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,1324,1370],"ilvl":55,"quality":2}, -{"id":15182,"name":"Praetorian Wristbands","icon":"inv_bracer_14","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1558,1810,2000,2038,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":51,"quality":2}, -{"id":15183,"name":"Praetorian Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1607,1810,2000,2038,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9],"ilvl":50,"quality":2}, -{"id":15184,"name":"Praetorian Gloves","icon":"inv_gauntlets_29","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,529,531,614,615,616,699,700,784,785,786,869,870,871,954,955,956,1039,1040,1041,1209,1211,1323,1415,1507,1620,1815,2043,1210,-328,-327,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,447,448,530,701,1369,1461],"ilvl":54,"quality":2}, -{"id":15185,"name":"Praetorian Coif","icon":"inv_helmet_36","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,627,628,629,714,797,798,799,883,884,1052,1053,1054,1137,1139,1222,1224,1469,1618,1625,1823,2012,2050,2051,712,882,1138,1223,1330,1331,1422,1468,1822,1514,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,713,1376,1423,1515,2013,1377],"ilvl":57,"quality":2}, -{"id":15186,"name":"Praetorian Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[366,367,418,419,459,627,628,629,797,798,799,882,883,884,968,969,1052,1053,1054,1223,1224,1376,1570,1571,1822,1823,2050,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,460,461,967,1222,1330,1331,1377,1422,1468,1469,1514,1515,2051],"ilvl":55,"quality":2}, -{"id":15187,"name":"Praetorian Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,530,614,615,616,784,786,869,1620,871,1039,1210,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,529,785,870,1040,1041,1124,1209,1211,1369,1415,1507,2005,1125,1126],"ilvl":54,"quality":2}, -{"id":15188,"name":"Grand Armguards","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,217,607,861,1031,1033,1203,216,218,608,776,778,863,1201,1559,1560,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,211,213,215,606,777,1032,2002,2040,-326,862,1811,1812],"ilvl":57,"quality":2}, -{"id":15189,"name":"Grand Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,414,450,451,452,618,619,620,788,789,790,873,874,875,958,959,1043,1044,1045,1213,1214,1215,1417,1565,1566,2007,2008,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,960,1325,1371,1418,1463,1510],"ilvl":60,"quality":2}, -{"id":15190,"name":"Grand Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,214,215,216,217,218,606,607,608,776,777,778,861,863,1031,1032,1033,1201,1202,1203,1612,1613,1812,2001,2002,2039,2040,862,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,213,1366,1411,1412,1457,1458,1504,1811],"ilvl":55,"quality":2}, -{"id":15191,"name":"Grand Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,616,617,1040,1816,532,786,787,1041,1212,1508,1621,-328,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,448,449,530,615,702,870,872,1042,1127,1210,1211,1370,2044,447,700,785,871,1126],"ilvl":57,"quality":2}, -{"id":15192,"name":"Grand Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,451,452,618,619,620,703,704,788,789,790,873,874,875,958,1043,1044,1045,1213,1214,1215,1371,1372,1463,1464,1509,1616,1622,1817,1818,2045,2046,534,-329,-328,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,450,533,535,705,959,960,1325,1417,1510,-327],"ilvl":60,"quality":2}, -{"id":15193,"name":"Grand Crown","icon":"inv_helmet_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,548,550,633,634,635,719,720,803,804,805,888,889,890,1058,1059,1060,1143,1144,1145,1229,1230,1333,1426,1627,2015,2016,718,1379,1380,1628,1826,1228,1471,1517,1825,-329,-328,-327,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,549,1334,2053,2054,-326,1425,1472],"ilvl":62,"quality":2}, -{"id":15194,"name":"Grand Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,465,633,634,635,805,888,889,890,1058,1059,1060,1228,1229,1230,1573,1574,1825,1826,422,467,803,804,973,974,975,1426,2054,-327,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1425,2053,466,1333,1334,1379,1471,1517,-328,-326],"ilvl":61,"quality":2}, -{"id":15195,"name":"Grand Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,369,370,395,396,422,633,634,635,803,805,888,889,890,1058,1059,1060,1228,1230,1573,1574,2015,421,804,-329,-327,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1229,1380,1425,2016,-324,-326],"ilvl":62,"quality":2}, -{"id":15200,"name":"Senior Sergeant's Insignia","icon":"inv_misc_monsterscales_15","type":2,"stats":[0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":15202,"name":"Wildkeeper Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15203,"name":"Guststorm Legguards","icon":"inv_pants_08","type":9,"armorType":3,"stats":[3,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15204,"name":"Moonstone Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":18,"quality":2}, -{"id":15205,"name":"Owlsight Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2.6,"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":15206,"name":"Jadefinger Baton","icon":"inv_wand_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":15207,"name":"Steelcap Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":1}, -{"id":15210,"name":"Raider Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,23,1548,-84,-20,-17],"weaponDamageMin":11,"weaponDamageMax":20,"weaponSpeed":1.9,"ilvl":16,"quality":2}, -{"id":15211,"name":"Militant Shortsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,585,586,587,670,671,672,1180,1181,1182,1549,-68,-84,-78,-20,-17,-14],"weaponDamageMin":19,"weaponDamageMax":36,"weaponSpeed":2.5,"ilvl":22,"quality":2}, -{"id":15212,"name":"Fighter Broadsword","icon":"inv_sword_46","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-14,96,97,587,588,589,672,673,674,1182,1183,1184,1550,-84,-78,-68,-20,-17],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":2.8,"ilvl":27,"quality":2}, -{"id":15213,"name":"Mercenary Blade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,135,136,591,592,676,677,1186,1187,1551,1552,-84,-78,-68,-20,-17,-14],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.4,"ilvl":36,"quality":2}, -{"id":15214,"name":"Nobles Brand","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,594,595,679,680,1189,1190,1553,-84,-78,-68,-20,-17,-14],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":2.1,"ilvl":40,"quality":2}, -{"id":15215,"name":"Furious Falchion","icon":"inv_sword_16","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,679,680,681,1189,1190,1191,1553,1554,-84,-78,-68,-20,-17,-14],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.5,"ilvl":45,"quality":2}, -{"id":15216,"name":"Rune Sword","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,190,597,598,599,682,683,684,1192,1193,1194,1555,-84,-78,-68,-20,-17,-14],"weaponDamageMin":34,"weaponDamageMax":63,"weaponSpeed":1.6,"ilvl":51,"quality":2}, -{"id":15217,"name":"Widow Blade","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,599,684,1194,1555,1556,-84,-78,-68,-20,-17,-14],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":2,"ilvl":54,"quality":2}, -{"id":15218,"name":"Crystal Sword","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,600,601,685,686,1195,1196,1556,-84,-78,-68,-20,-17,-14],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":2.3,"ilvl":57,"quality":2}, -{"id":15219,"name":"Dimensional Blade","icon":"inv_sword_23","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,192,602,687,1197,1557,-84,-78,-68,-20,-17,-14],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.6,"ilvl":59,"quality":2}, -{"id":15220,"name":"Battlefell Sabre","icon":"inv_sword_36","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[187,188,192,193,602,603,604,687,688,689,1197,1198,1199,1557,1558,-84,-78,-68,-20,-17,-14],"weaponDamageMin":57,"weaponDamageMax":106,"weaponSpeed":2.2,"ilvl":62,"quality":2}, -{"id":15221,"name":"Holy War Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,603,604,605,688,689,690,1198,1199,1200,1558,-84,-78,-68,-20,-17,-14],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":2.2,"ilvl":65,"quality":2}, -{"id":15222,"name":"Barbed Club","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,23,24,1548,1549,1800,1801,1838,1839,1990,1991,2028,2029,-84,-20,-19,-17],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":2.3,"ilvl":19,"quality":2}, -{"id":15223,"name":"Jagged Star","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,585,586,587,670,671,672,1180,1181,1182,1549,1801,1839,1991,2029,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.8,"ilvl":24,"quality":2}, -{"id":15224,"name":"Battlesmasher","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[96,97,587,588,589,672,673,674,1182,1183,1184,1550,1802,1840,1992,2030,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":2.7,"ilvl":25,"quality":2}, -{"id":15225,"name":"Sequoia Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,590,591,592,675,676,677,1185,1186,1187,1551,1803,1841,1993,2031,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":32,"weaponDamageMax":60,"weaponSpeed":2.7,"ilvl":33,"quality":2}, -{"id":15226,"name":"Giant Club","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,135,136,154,155,593,678,1188,1552,1553,1804,1805,1842,1843,1994,1995,2032,2033,-84,-78,-20,-19,-17,-14],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.9,"ilvl":37,"quality":2}, -{"id":15227,"name":"Diamond-Tip Bludgeon","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,190,597,598,599,682,683,684,1192,1193,1194,1555,1807,1845,1997,2035,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":49,"weaponDamageMax":91,"weaponSpeed":2.4,"ilvl":49,"quality":2}, -{"id":15228,"name":"Smashing Star","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,599,684,1194,1807,1808,1845,1846,1997,1998,2035,2036,-84,-78,-68,-19,-17,-14],"weaponDamageMin":62,"weaponDamageMax":115,"weaponSpeed":2.8,"ilvl":53,"quality":2}, -{"id":15229,"name":"Blesswind Hammer","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,191,600,601,685,686,1195,1196,1556,1808,1846,1998,2036,-84,-78,-68,-20,-19,-17,-14],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.1,"ilvl":55,"quality":2}, -{"id":15230,"name":"Ridge Cleaver","icon":"inv_axe_21","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,502,503,504,587,588,589,672,673,674,842,843,844,1012,1013,1014,1097,1098,1099,1182,1183,1184,1550,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":2.2,"ilvl":25,"quality":2}, -{"id":15231,"name":"Splitting Hatchet","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,114,115,505,506,507,590,591,592,675,676,677,845,846,847,1015,1016,1017,1100,1101,1102,1185,1186,1187,1551,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.8,"ilvl":31,"quality":2}, -{"id":15232,"name":"Hacking Cleaver","icon":"inv_weapon_shortblade_13","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,114,115,505,506,507,590,591,592,675,676,677,845,846,847,1015,1016,1017,1100,1101,1102,1185,1186,1187,1551,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":22,"weaponDamageMax":43,"weaponSpeed":1.9,"ilvl":33,"quality":2}, -{"id":15233,"name":"Savage Axe","icon":"inv_axe_08","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,135,136,151,155,508,593,678,848,1018,1103,1188,1552,1553,154,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.8,"ilvl":39,"quality":2}, -{"id":15234,"name":"Greater Scythe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,154,155,509,510,594,595,679,680,849,850,1019,1020,1104,1105,1189,1190,1553,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.8,"ilvl":40,"quality":2}, -{"id":15235,"name":"Crescent Edge","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,189,511,512,513,596,597,598,681,682,683,851,852,853,1021,1022,1023,1106,1107,1108,1191,1192,1554,1193,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.1,"ilvl":48,"quality":2}, -{"id":15236,"name":"Moon Cleaver","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,185,186,190,191,514,599,684,854,1024,1109,1194,1555,1556,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":47,"weaponDamageMax":89,"weaponSpeed":2.2,"ilvl":52,"quality":2}, -{"id":15237,"name":"Corpse Harvester","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,186,191,515,516,600,601,685,686,855,856,1025,1026,1110,1111,1195,1196,1556,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":55,"quality":2}, -{"id":15238,"name":"Warlord's Axe","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,187,192,517,602,687,857,1027,1112,1197,1557,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":55,"weaponDamageMax":104,"weaponSpeed":2.3,"ilvl":58,"quality":2}, -{"id":15239,"name":"Felstone Reaver","icon":"inv_axe_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,187,192,193,517,518,519,602,603,604,687,688,689,857,858,859,1027,1028,1029,1112,1113,1114,1197,1198,1199,1557,1558,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,173,188],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":2,"ilvl":61,"quality":2}, -{"id":15240,"name":"Demon's Claw","icon":"inv_axe_16","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,518,519,520,603,604,605,688,689,690,858,859,860,1028,1029,1030,1113,1114,1115,1198,1199,1200,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,1558],"weaponDamageMin":61,"weaponDamageMax":113,"weaponSpeed":2.3,"ilvl":64,"quality":2}, -{"id":15241,"name":"Battle Knife","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,587,588,589,672,673,674,1182,1183,1184,1550,1802,1840,1878,1954,1992,2030,-84,-78,-68,-20,-19,-18,-17,-14],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":1.6,"ilvl":26,"quality":2}, -{"id":15242,"name":"Honed Stiletto","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,111,114,115,588,589,590,673,674,675,1183,1184,1185,1550,1551,1802,1803,1840,1841,1878,1879,1954,1992,1993,2030,2031,-14,1955,-84,-78,-68,-20,-19,-18,-17],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.4,"ilvl":30,"quality":2}, -{"id":15243,"name":"Deadly Kris","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,114,115,132,135,136,591,592,676,677,1186,1187,1551,1552,1803,1804,1879,1880,1955,1956,1993,1994,2031,2032,-84,-78,-68,-20,-19,-18,-17,-14,1841,1842],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":1.4,"ilvl":36,"quality":2}, -{"id":15244,"name":"Razor Blade","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,154,155,594,595,679,680,1189,1190,1553,1805,1843,1881,1957,1995,2033,-84,-78,-68,-20,-19,-18,-17,-14],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":1.7,"ilvl":42,"quality":2}, -{"id":15245,"name":"Vorpal Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,185,190,597,598,599,682,683,684,1192,1193,1194,1555,1807,1845,1883,1959,1997,2035,-84,-78,-68,-20,-19,-18,-17,-14,1810],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":1.6,"ilvl":50,"quality":2}, -{"id":15246,"name":"Demon Blade","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,187,188,192,193,602,603,604,687,688,689,1197,1198,1199,1557,1558,1809,1810,1847,1848,1885,1886,1961,2000,2037,2038,-84,-78,-68,-20,-19,-18,-17,-14,1962,1999],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.8,"ilvl":62,"quality":2}, -{"id":15247,"name":"Bloodstrike Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,603,604,605,688,689,690,1198,1199,1200,1558,1810,1848,1886,1962,2000,2038,-84,-78,-68,-20,-19,-18,-17,-14],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.7,"ilvl":64,"quality":2}, -{"id":15248,"name":"Gleaming Claymore","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,135,136,151,154,155,506,507,508,591,592,593,676,677,678,846,847,848,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":30,"weaponDamageMax":46,"weaponSpeed":2.9,"ilvl":20,"quality":2}, -{"id":15249,"name":"Polished Zweihander","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,185,186,190,191,512,513,514,597,598,599,682,683,684,852,853,854,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.6,"ilvl":26,"quality":2}, -{"id":15250,"name":"Glimmering Flamberge","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,188,193,211,217,219,518,519,520,603,604,605,688,689,690,858,859,860,1028,1029,1030,1113,1114,1115,1198,1199,1200,1558,1559,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.2,"ilvl":32,"quality":2}, -{"id":15251,"name":"Headstriker Sword","icon":"inv_sword_42","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[310,311,335,336,360,361,530,531,532,615,617,700,701,702,870,871,872,1040,1041,1042,1125,1126,1127,1210,1211,1212,1564,1565,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,616],"weaponDamageMin":62,"weaponDamageMax":94,"weaponSpeed":2.4,"ilvl":43,"quality":2}, -{"id":15252,"name":"Tusker Sword","icon":"inv_sword_45","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,363,364,536,537,538,621,622,623,706,707,708,876,877,878,1046,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":112,"weaponDamageMax":169,"weaponSpeed":3.7,"ilvl":49,"quality":2}, -{"id":15253,"name":"Beheading Blade","icon":"inv_sword_29","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,339,340,364,365,539,540,541,624,626,709,710,711,879,880,881,1049,1050,1051,1135,1136,1219,1220,1221,1569,625,1134,1568,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":113,"weaponDamageMax":170,"weaponSpeed":3.5,"ilvl":52,"quality":2}, -{"id":15254,"name":"Dark Espadon","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[314,315,339,340,364,365,539,540,541,624,626,709,710,711,879,880,881,1049,1050,1051,1135,1136,1219,1220,1221,1569,625,1134,1568,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":110,"weaponDamageMax":166,"weaponSpeed":3.3,"ilvl":54,"quality":2}, -{"id":15255,"name":"Gallant Flamberge","icon":"inv_sword_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,366,367,542,543,544,627,628,629,712,713,714,882,883,884,1052,1053,1054,1137,1138,1139,1222,1223,1224,1570,1571,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":120,"weaponDamageMax":181,"weaponSpeed":3.4,"ilvl":57,"quality":2}, -{"id":15256,"name":"Massacre Sword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-14,317,318,342,343,367,368,545,546,547,630,631,632,715,716,717,885,886,887,1055,1056,1057,1140,1141,1142,1225,1226,1227,1571,1572,-84,-81,-78,-69,-68,-20,-18,-17,-13,-12],"weaponDamageMin":139,"weaponDamageMax":209,"weaponSpeed":3.8,"ilvl":59,"quality":2}, -{"id":15257,"name":"Shin Blade","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,369,370,548,549,550,633,634,635,718,719,720,888,889,890,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":84,"weaponDamageMax":127,"weaponSpeed":2.2,"ilvl":62,"quality":2}, -{"id":15258,"name":"Divine Warblade","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[320,321,346,370,371,552,553,636,637,638,722,723,892,893,1061,1062,1063,1146,1148,1231,1233,1574,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,345,551,721,891,1147,1232,1575],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":2.7,"ilvl":65,"quality":2}, -{"id":15259,"name":"Hefty Battlehammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[180,181,185,186,190,191,597,598,599,682,683,684,852,853,854,937,938,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":43,"weaponDamageMax":65,"weaponSpeed":3.2,"ilvl":25,"quality":2}, -{"id":15260,"name":"Stone Hammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,307,308,333,409,410,609,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,1562,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":64,"weaponDamageMax":96,"weaponSpeed":3,"ilvl":38,"quality":2}, -{"id":15261,"name":"Sequoia Branch","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,309,333,334,410,411,612,613,614,697,698,699,867,868,869,952,953,954,1037,1038,1039,1122,1123,1124,1207,1208,1209,1562,1563,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":88,"weaponDamageMax":132,"weaponSpeed":3.8,"ilvl":40,"quality":2}, -{"id":15262,"name":"Greater Maul","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[311,312,336,337,413,414,618,619,620,703,704,705,874,875,958,959,960,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,873,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":3.4,"ilvl":46,"quality":2}, -{"id":15263,"name":"Royal Mallet","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[313,314,338,339,415,416,621,622,623,706,707,708,876,877,878,961,962,963,1046,1047,1048,1131,1132,1133,1216,1217,1218,1567,1568,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":83,"weaponDamageMax":126,"weaponSpeed":2.7,"ilvl":50,"quality":2}, -{"id":15264,"name":"Backbreaker","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,418,419,627,628,629,712,713,714,882,883,884,967,968,969,1052,1053,1054,1137,1138,1139,1222,1223,1224,1570,1571,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":107,"weaponDamageMax":162,"weaponSpeed":3.1,"ilvl":56,"quality":2}, -{"id":15265,"name":"Painbringer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,342,343,419,420,630,631,632,715,716,717,885,886,887,970,971,972,1055,1056,1057,1140,1141,1142,1225,1226,1227,1571,1572,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.8,"ilvl":58,"quality":2}, -{"id":15266,"name":"Fierce Mauler","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,421,422,633,634,635,718,719,720,888,889,890,973,974,975,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":125,"weaponDamageMax":188,"weaponSpeed":3.3,"ilvl":61,"quality":2}, -{"id":15267,"name":"Brutehammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,345,421,422,633,634,635,718,719,720,888,889,890,973,974,975,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,1574,-84,-81,-78,-69,-68,-20,-17,-15,-14,-12,-10],"weaponDamageMin":133,"weaponDamageMax":200,"weaponSpeed":3.4,"ilvl":63,"quality":2}, -{"id":15268,"name":"Twin-Bladed Axe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,96,97,111,114,115,503,504,505,588,589,590,673,674,675,843,844,845,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":2.7,"ilvl":16,"quality":2}, -{"id":15269,"name":"Massive Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,154,155,167,184,189,509,510,511,594,595,596,679,680,681,849,850,851,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":42,"weaponDamageMax":64,"weaponSpeed":3.3,"ilvl":24,"quality":2}, -{"id":15270,"name":"Gigantic War Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-14,311,312,336,337,361,362,533,534,535,618,619,620,703,704,705,873,874,875,1043,1044,1045,1128,1129,1130,1213,1214,1215,1565,1566,-84,-81,-78,-69,-68,-20,-18,-17,-13,-12],"weaponDamageMin":91,"weaponDamageMax":137,"weaponSpeed":3.2,"ilvl":46,"quality":2}, -{"id":15271,"name":"Colossal Great Axe","icon":"inv_axe_12","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[316,317,341,342,366,367,542,543,544,627,628,629,712,713,714,882,883,884,1052,1053,1054,1137,1138,1139,1222,1223,1224,1570,1571,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":132,"weaponDamageMax":198,"weaponSpeed":3.8,"ilvl":56,"quality":2}, -{"id":15272,"name":"Razor Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[317,318,342,343,367,368,545,546,547,630,631,632,715,716,717,885,886,887,1055,1056,1057,1140,1141,1142,1225,1226,1227,1571,1572,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":2.5,"ilvl":59,"quality":2}, -{"id":15273,"name":"Death Striker","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[319,320,344,369,370,548,549,550,633,634,635,718,719,720,888,890,1058,1059,1060,1143,1144,1145,1228,1229,1230,1573,-84,-81,-78,-69,-68,-20,-18,-17,-14,-13,-12,345,889,1574],"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.8,"ilvl":63,"quality":2}, -{"id":15274,"name":"Diviner Long Staff","icon":"inv_staff_26","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,539,540,541,624,625,626,794,795,796,879,880,881,1049,1051,1134,1135,1136,1219,1220,1221,1568,1569,1820,1858,1859,1896,1897,1972,1973,2010,2011,2048,2049,1050,1821,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":84,"weaponDamageMax":126,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":15275,"name":"Thaumaturgist Staff","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,416,417,539,540,541,624,625,626,794,795,796,879,880,881,1049,1051,1134,1135,1136,1219,1220,1221,1568,1569,1820,1858,1859,1896,1897,1972,1973,2010,2011,2048,2049,1050,1821,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":120,"weaponDamageMax":181,"weaponSpeed":3.6,"ilvl":54,"quality":2}, -{"id":15276,"name":"Magus Long Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,545,546,547,630,631,632,800,802,885,886,887,1055,1056,1057,1140,1141,1142,1226,1227,1572,1823,1824,1861,1899,1900,1975,1976,2013,2014,2051,2052,801,1225,1571,1862,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":122,"weaponDamageMax":184,"weaponSpeed":3.4,"ilvl":58,"quality":2}, -{"id":15278,"name":"Solstice Staff","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,419,420,545,546,547,630,631,632,800,802,885,886,887,1055,1056,1057,1140,1141,1142,1226,1227,1572,1823,1824,1861,1899,1900,1975,1976,2013,2014,2051,2052,801,1225,1571,1862,-84,-81,-78,-69,-68,-20,-19,-15,-13,-12,-9],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":2.6,"ilvl":60,"quality":2}, -{"id":15279,"name":"Ivory Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,135,152,153,154,237,248,249,508,509,510,763,764,765,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1805,1842,1843,1880,1881,1956,1957,2032,2033,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9,1804],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.4,"ilvl":51,"quality":2}, -{"id":15280,"name":"Wizard's Hand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,237,249,509,510,764,765,849,850,934,935,1019,1020,1104,1105,1805,1843,1881,1957,2033,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9],"weaponDamageMin":56,"weaponDamageMax":104,"weaponSpeed":1.8,"ilvl":53,"quality":2}, -{"id":15281,"name":"Glowstar Rod","icon":"inv_staff_10","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,154,174,179,184,237,247,249,509,510,511,764,766,850,851,934,936,1019,1020,1021,1104,1105,1106,1805,1806,1843,1844,1881,1882,1957,1958,2033,2034,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9,765,849,935],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":1.5,"ilvl":57,"quality":2}, -{"id":15282,"name":"Dragon Finger","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,179,184,247,511,766,851,936,1021,1106,1806,1844,1882,1958,2034,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":1.4,"ilvl":60,"quality":2}, -{"id":15283,"name":"Lunar Wand","icon":"inv_staff_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,180,185,250,251,252,512,513,514,767,768,769,852,853,854,937,938,939,1022,1023,1024,1108,1109,1807,1845,1883,1959,2035,-84,-81,-69,-19,-15,-13,-12,-11,-10,-9,1107],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":64,"quality":2}, -{"id":15284,"name":"Long Battle Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":2.2,"ilvl":29,"quality":2}, -{"id":15285,"name":"Archer's Longbow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":2.6,"ilvl":32,"quality":2}, -{"id":15286,"name":"Long Redwood Bow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.8,"ilvl":35,"quality":2}, -{"id":15287,"name":"Crusader Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,235,236,506,507,591,592,676,677,761,762,846,847,1016,1017,1709,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.2,"ilvl":45,"quality":2}, -{"id":15288,"name":"Blasthorn Bow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[1711,1712,-20],"weaponDamageMin":86,"weaponDamageMax":160,"weaponSpeed":2.6,"ilvl":61,"quality":2}, -{"id":15289,"name":"Archstrike Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,180,185,250,251,252,512,513,514,597,599,682,683,684,767,768,769,852,853,854,1023,1024,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9,598,1022,1712],"weaponDamageMin":79,"weaponDamageMax":148,"weaponSpeed":2.3,"ilvl":65,"quality":2}, -{"id":15291,"name":"Harpy Needler","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,151,153,154,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,1018,1019,1020,1709,1710,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":2.7,"ilvl":51,"quality":2}, -{"id":15294,"name":"Siege Bow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,154,237,249,509,510,594,595,679,680,764,765,849,850,1019,1020,1710,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.8,"ilvl":53,"quality":2}, -{"id":15295,"name":"Quillfire Bow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,154,167,179,184,247,509,510,511,594,595,596,679,680,681,764,765,766,849,851,1019,1020,1021,1710,1711,237,249,850,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":2.3,"ilvl":55,"quality":2}, -{"id":15296,"name":"Hawkeye Bow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,168,179,180,250,252,512,513,597,598,682,683,767,768,852,1022,1023,1712,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9,184,185,853,1711],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":1.7,"ilvl":63,"quality":2}, -{"id":15297,"name":"Grizzly Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":15298,"name":"Grizzly Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,25,27,227,228,754,839,1009,1799,1800,1837,1838,1875,1876,1913,1914,1952,2027,2028,1951,-81,-69,-19,-15,-13,-11,-9],"ilvl":13,"quality":2}, -{"id":15299,"name":"Grizzly Cape","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":15300,"name":"Grizzly Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15301,"name":"Grizzly Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":15302,"name":"Grizzly Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":15303,"name":"Grizzly Pants","icon":"inv_pants_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,28,93,95,229,231,238,256,501,502,585,586,587,755,756,757,840,841,842,925,926,927,1010,1011,1012,1180,1181,1182,1549,1550,1801,1802,2029,2030,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":14,"quality":2}, -{"id":15304,"name":"Grizzly Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,94,95,96,111,112,113,114,234,503,504,505,588,589,590,758,759,760,843,844,845,1015,1550,1551,1993,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,232,233,1013,1014,1992],"ilvl":16,"quality":2}, -{"id":15305,"name":"Feral Shoes","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,22,28,93,95,96,232,233,238,502,503,504,587,588,589,757,758,759,842,843,844,927,928,929,1012,1013,1014,1549,1550,1991,1992,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":18,"quality":2}, -{"id":15306,"name":"Feral Bindings","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[17,18,19,22,25,26,27,28,229,231,256,501,585,586,755,756,840,841,1010,1011,1548,1549,1801,1990,2029,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1800,1991,2028],"ilvl":16,"quality":2}, -{"id":15307,"name":"Feral Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-325,18,22,24,74,93,97,587,672,927,1097,1182,1651,1652,89,96,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":15308,"name":"Feral Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[26,74,89,94,232,233,238,502,503,504,587,588,589,672,673,674,757,758,759,842,843,1012,1013,1014,1097,1098,1182,1184,1801,1802,2029,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,844,1099,1183,2030],"ilvl":17,"quality":2}, -{"id":15309,"name":"Feral Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,14,15,16,17,19,25,27,48,62,227,228,584,754,839,1009,1799,1800,1989,1990,2027,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,2028],"ilvl":15,"quality":2}, -{"id":15310,"name":"Feral Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[28,74,89,95,232,233,238,502,503,504,587,588,589,672,674,757,758,759,842,843,844,927,928,929,1012,1013,1014,1182,1183,1184,1801,1802,2029,2030,673,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":18,"quality":2}, -{"id":15311,"name":"Feral Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,152,153,154,167,174,179,184,237,247,249,509,510,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1553,1554,1995,1996,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":22,"quality":2}, -{"id":15312,"name":"Feral Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,151,153,235,236,248,507,508,591,592,593,761,762,763,846,847,848,931,932,933,1016,1017,1018,1186,1187,1188,1552,1553,1804,2032,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,506,1805,2033],"ilvl":20,"quality":2}, -{"id":15313,"name":"Feral Shoulder Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":15322,"name":"Smoothbore Gun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":91,"weaponSpeed":2.5,"ilvl":39,"quality":2}, -{"id":15323,"name":"Percussion Shotgun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,151,153,154,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,1018,1019,1020,1709,1710,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":62,"weaponDamageMax":116,"weaponSpeed":2.3,"ilvl":50,"quality":2}, -{"id":15324,"name":"Burnside Rifle","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[151,153,154,167,179,184,247,509,510,511,594,595,596,679,680,681,764,765,766,849,851,1019,1020,1021,1710,1711,237,249,850,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":76,"weaponDamageMax":141,"weaponSpeed":2.5,"ilvl":56,"quality":2}, -{"id":15325,"name":"Sharpshooter Harquebus","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,179,184,247,511,596,681,766,851,1021,1711,-84,-81,-78,-69,-20,-18,-15,-14,-13,-11,-9],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.2,"ilvl":60,"quality":2}, -{"id":15329,"name":"Wrangler's Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,235,236,506,507,508,591,592,593,676,677,761,762,763,846,847,848,1016,1017,1018,1102,1186,1187,1188,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,108,112,128,248,678,1101,1103,1803,1804,2031,2032],"ilvl":24,"quality":2}, -{"id":15330,"name":"Wrangler's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,134,135,151,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,933,934,935,1018,1019,1020,1552,1553,1994,1995,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":25,"quality":2}, -{"id":15331,"name":"Wrangler's Wristbands","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[93,94,95,96,111,112,114,232,233,234,503,588,589,590,758,759,760,843,844,845,1013,1014,1550,1551,1802,1992,1993,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,113,504,505,1015,1803,2030,2031],"ilvl":23,"quality":2}, -{"id":15332,"name":"Wrangler's Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,234,235,236,505,506,507,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-81,-69,-19,-15,-13,-11,-9],"ilvl":27,"quality":2}, -{"id":15333,"name":"Wrangler's Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,94,95,96,108,111,112,113,114,232,233,234,503,504,505,588,589,590,758,759,760,843,844,845,1013,1014,1015,1802,1992,1993,2030,2031,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1803],"ilvl":22,"quality":2}, -{"id":15334,"name":"Wrangler's Gloves","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,147,153,237,248,249,508,509,510,593,594,595,678,679,680,763,764,765,848,849,850,933,934,1018,1019,1020,1188,1189,1190,1804,1805,2033,2032,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,128,935],"ilvl":27,"quality":2}, -{"id":15335,"name":"Briarsteel Shortsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.5,"ilvl":14,"quality":2}, -{"id":15336,"name":"Wrangler's Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,180,251,252,514,599,768,769,853,854,1023,1555,1556,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,181,250,512,513,597,598,767,852,939,1022,1024,1192,1193,1194,1807,2035],"ilvl":27,"quality":2}, -{"id":15337,"name":"Wrangler's Wraps","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,181,182,186,187,254,255,515,516,517,600,601,602,770,771,772,855,856,857,1025,1026,1027,1556,1557,1998,1999,253,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":29,"quality":2}, -{"id":15338,"name":"Wrangler's Mantle","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,174,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,1021,1022,1023,1106,1107,1108,1608,1996,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":28,"quality":2}, -{"id":15339,"name":"Pathfinder Hat","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[213,214,217,218,439,440,521,522,523,606,607,608,693,776,777,778,861,862,863,1031,1032,1033,1201,1203,1612,1613,1811,2002,2039,2040,692,1202,1812,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,438,691,2001],"ilvl":34,"quality":2}, -{"id":15340,"name":"Pathfinder Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[108,111,112,113,114,234,235,236,505,506,507,590,591,592,760,761,762,845,846,847,1015,1016,1017,1803,1993,2031,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9],"ilvl":27,"quality":2}, -{"id":15341,"name":"Pathfinder Footpads","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,179,184,247,250,252,511,512,513,596,597,598,766,767,768,851,852,853,936,937,938,1021,1022,1023,1554,1996,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":30,"quality":2}, -{"id":15342,"name":"Pathfinder Guard","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,235,236,248,506,507,508,761,762,763,847,848,1016,1017,1018,1804,1842,1880,2032,846,-81,-69,-19,-15,-13,-11,-9,1956],"ilvl":30,"quality":2}, -{"id":15343,"name":"Pathfinder Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,247,250,252,511,513,596,597,598,681,682,683,766,767,768,851,852,853,936,938,1021,1022,1023,1191,1193,1608,1806,2034,937,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,512,1192],"ilvl":30,"quality":2}, -{"id":15344,"name":"Pathfinder Pants","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,211,215,435,436,437,518,520,603,604,605,773,774,775,858,859,860,943,944,945,1028,1029,1030,1198,1199,1200,1558,1559,1810,2038,2039,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,519,1811],"ilvl":31,"quality":2}, -{"id":15345,"name":"Pathfinder Shoulder Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,185,250,251,514,597,598,599,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1609,252,1997,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,512,513],"ilvl":31,"quality":2}, -{"id":15346,"name":"Pathfinder Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,435,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1559,2000,436,2001,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,437],"ilvl":32,"quality":2}, -{"id":15347,"name":"Pathfinder Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[174,247,250,511,512,513,596,597,598,681,683,766,767,768,851,852,853,1021,1022,1023,1106,1107,1191,1192,1608,1806,2034,1193,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,252,682,1108],"ilvl":28,"quality":2}, -{"id":15348,"name":"Pathfinder Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[111,112,113,114,234,235,236,505,506,590,591,592,760,761,762,845,846,847,1015,1016,1017,1551,1803,1993,2031,507,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":26,"quality":2}, -{"id":15349,"name":"Headhunter's Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,251,512,513,514,597,598,599,684,767,768,769,852,853,854,1022,1023,1024,1107,1108,1109,1192,1193,1194,1609,2035,250,682,1807,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,252,683],"ilvl":33,"quality":2}, -{"id":15350,"name":"Headhunter's Slippers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,181,182,186,187,253,254,255,515,516,600,601,602,770,771,772,855,856,857,940,941,942,1025,1026,1027,1556,1557,1998,517,1999,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":34,"quality":2}, -{"id":15351,"name":"Headhunter's Bands","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,133,134,135,235,236,248,506,507,508,591,592,593,761,762,763,846,847,848,1016,1017,1018,1552,1804,1994,2032,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":30,"quality":2}, -{"id":15352,"name":"Headhunter's Buckler","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,247,249,511,764,765,766,849,850,851,1019,1020,1021,1805,1844,1882,1958,2033,2034,237,1806,510,1843,1881,509,-81,-69,-19,-15,-13,-11,-9,1957],"ilvl":34,"quality":2}, -{"id":15353,"name":"Headhunter's Headdress","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,383,384,441,442,443,524,525,526,609,610,611,694,696,779,780,781,864,865,866,1034,1035,1036,1204,1206,1614,1615,1813,1814,2004,2041,695,2003,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1205,2042],"ilvl":38,"quality":2}, -{"id":15354,"name":"Headhunter's Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,133,134,135,147,151,152,153,154,237,248,249,508,509,510,593,594,595,763,764,765,848,849,850,1018,1020,1804,1994,1995,2032,1019,1805,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,2033],"ilvl":32,"quality":2}, -{"id":15355,"name":"Headhunter's Mitts","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[181,182,253,254,255,515,516,517,600,601,602,685,686,687,770,771,772,855,856,857,940,942,1025,1026,1027,1195,1196,1197,1610,1611,1808,941,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1809,2036,2037],"ilvl":34,"quality":2}, -{"id":15356,"name":"Headhunter's Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,215,216,217,218,438,440,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1559,1560,2002,522,439,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,521,2001],"ilvl":36,"quality":2}, -{"id":15357,"name":"Headhunter's Spaulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,172,176,177,186,187,515,516,517,600,601,602,771,855,856,857,1025,1026,1027,1110,1111,1112,1611,1998,253,254,255,772,770,1610,1999,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":35,"quality":2}, -{"id":15358,"name":"Headhunter's Woolies","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-9,211,212,215,216,438,439,440,521,522,523,606,607,608,776,777,778,861,862,863,948,1031,1032,1033,1201,1202,1203,1559,1560,1812,946,2040,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,947,1811,2039],"ilvl":35,"quality":2}, -{"id":15359,"name":"Trickster's Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,612,613,614,782,783,784,867,868,869,1037,1038,1039,1208,1209,1563,2004,2005,1562,1207,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":41,"quality":2}, -{"id":15360,"name":"Trickster's Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,175,513,766,768,851,853,1023,1554,1555,2034,167,174,179,180,184,185,247,252,511,512,596,597,598,767,852,1021,1022,1806,1807,1996,2035,1997,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,250],"ilvl":38,"quality":2}, -{"id":15361,"name":"Trickster's Sash","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,178,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,1027,1028,1029,1112,1114,1197,1198,1199,1607,1611,1809,2037,1113,2038,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1810],"ilvl":37,"quality":2}, -{"id":15362,"name":"Trickster's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,182,183,187,188,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,942,943,944,1027,1028,1029,1557,1558,1999,2000,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-10,-9],"ilvl":39,"quality":2}, -{"id":15363,"name":"Trickster's Headdress","icon":"inv_helmet_19","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,527,528,529,612,613,614,698,699,782,783,784,868,869,1037,1038,1039,1123,1124,1209,1615,1620,2004,2005,2043,697,867,1122,1207,1814,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,1208,1815,2042],"ilvl":42,"quality":2}, -{"id":15364,"name":"Trickster's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,152,153,154,167,174,179,184,247,249,511,594,595,596,764,765,766,849,850,851,1019,1020,1021,1608,1805,1806,1996,2033,237,509,510,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1995,2034],"ilvl":36,"quality":2}, -{"id":15365,"name":"Trickster's Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[182,183,254,435,436,517,518,519,602,603,604,687,688,689,772,773,774,857,858,859,942,943,944,1027,1028,1029,1197,1198,1199,1607,1611,1809,2037,1810,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,2038],"ilvl":38,"quality":2}, -{"id":15366,"name":"Trickster's Leggings","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[358,359,411,446,612,613,614,782,783,784,867,868,869,954,1037,1039,1207,1209,1562,1563,1814,1815,2043,1038,1208,445,952,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,410,444,953,2042],"ilvl":40,"quality":2}, -{"id":15367,"name":"Trickster's Protector","icon":"inv_shield_16","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,180,250,511,512,766,767,768,851,1021,1022,1023,1357,1803,1841,1882,2034,2035,174,175,247,252,513,852,853,-327,-81,-69,-19,-15,-13,-11,-9,1883],"ilvl":39,"quality":2}, -{"id":15368,"name":"Trickster's Pauldrons","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,177,178,187,188,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1112,1113,1114,1607,1611,1999,2000,-18,-325,-84,-81,-78,-69,-19,-13,-12,-11,-9],"ilvl":39,"quality":2}, -{"id":15369,"name":"Wolf Rider's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,437,438,439,520,605,606,607,690,692,775,776,777,860,861,862,1030,1031,1032,1115,1116,1117,1200,1202,1607,1612,1810,2038,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,213,521,522,691,1201,1811,2039],"ilvl":42,"quality":2}, -{"id":15370,"name":"Wolf Rider's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,215,216,217,218,438,440,606,607,608,776,777,778,861,862,863,946,947,1031,1032,1033,1201,1203,1559,2002,439,948,1202,1560,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9],"ilvl":44,"quality":2}, -{"id":15371,"name":"Wolf Rider's Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,185,186,599,769,854,1024,1194,1609,1610,1808,1997,1998,2035,1807,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,181,2036],"ilvl":41,"quality":2}, -{"id":15372,"name":"Wolf Rider's Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,522,523,606,607,608,692,693,777,778,861,862,863,946,947,948,1031,1032,1033,1201,1202,1203,1612,1613,1811,1812,2040,776,521,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,438,691,2039],"ilvl":43,"quality":2}, -{"id":15373,"name":"Wolf Rider's Headgear","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,533,534,535,618,619,620,703,705,788,789,790,873,874,875,1043,1044,1045,1129,1130,1213,1214,1215,1616,1622,1818,2007,2008,2045,1817,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,704,1128,2046],"ilvl":47,"quality":2}, -{"id":15374,"name":"Wolf Rider's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,449,615,616,617,785,786,787,870,871,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,1816,1817,2044,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,2045],"ilvl":44,"quality":2}, -{"id":15375,"name":"Wolf Rider's Shoulder Pads","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[608,211,212,213,214,217,218,522,523,606,607,776,777,778,861,862,863,1031,1032,1033,1116,1117,1118,1202,1203,1612,1613,2002,521,1201,2001,-325,-84,-81,-78,-69,-68,-19,-9,-18,-13,-12],"ilvl":43,"quality":2}, -{"id":15376,"name":"Wolf Rider's Padded Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,388,413,414,618,619,620,788,789,790,873,874,875,1043,1045,1214,1215,1565,1566,2007,2008,387,1213,1044,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":46,"quality":2}, -{"id":15377,"name":"Wolf Rider's Wristbands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,599,769,854,1024,1194,1555,1556,1997,1998,2035,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1807,1808,2036],"ilvl":42,"quality":2}, -{"id":15378,"name":"Rageclaw Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,1813,2040,2041,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":46,"quality":2}, -{"id":15379,"name":"Rageclaw Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,216,218,267,287,409,443,609,610,611,779,780,781,864,865,866,949,950,1034,1035,1036,1204,1205,1560,1206,1561,2002,2003,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,441,442,951],"ilvl":48,"quality":2}, -{"id":15380,"name":"Rageclaw Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,602,603,604,772,774,857,858,859,1027,1028,1029,1197,1198,1199,1557,1809,1999,773,2037,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":46,"quality":2}, -{"id":15381,"name":"Rageclaw Chestguard","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,363,364,389,390,415,416,621,622,623,791,792,793,876,877,878,1046,1047,1048,1216,1217,1218,1567,2009,2010,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1568],"ilvl":51,"quality":2}, -{"id":15382,"name":"Rageclaw Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,600,601,770,771,855,856,1025,1026,1195,1196,1610,1808,1998,2036,-9,-325,-84,-81,-78,-69,-68,-19,-18,-15],"ilvl":45,"quality":2}, -{"id":15383,"name":"Rageclaw Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,609,610,611,695,696,779,780,781,864,865,866,949,950,951,1034,1035,1036,1204,1205,1206,1614,1813,2040,2041,525,526,694,1613,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1812],"ilvl":48,"quality":2}, -{"id":15384,"name":"Rageclaw Helm","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,389,390,536,537,538,621,622,623,708,791,792,793,876,877,878,1046,1047,1048,1131,1133,1216,1217,1218,1617,1623,1820,2009,2010,2047,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,706,707,1132,1819,2048],"ilvl":50,"quality":2}, -{"id":15385,"name":"Rageclaw Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,455,621,622,623,791,792,793,876,877,878,961,963,1046,1047,1048,1216,1217,1218,1567,1568,1819,1820,2047,2048,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,453,454,962],"ilvl":49,"quality":2}, -{"id":15386,"name":"Rageclaw Shoulder Pads","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,218,267,287,383,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1119,1120,1204,1205,1206,1613,1614,2002,2003,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,524,1121],"ilvl":48,"quality":2}, -{"id":15387,"name":"Jadefire Bracelets","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1558,1810,2000,2038,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":50,"quality":2}, -{"id":15388,"name":"Jadefire Belt","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[385,446,447,529,614,615,616,699,700,701,784,785,786,869,870,871,1039,1040,1124,1209,1210,1323,1620,1815,2043,531,1041,1125,1126,530,1211,1461,448,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1369,1415,1507,-329],"ilvl":52,"quality":2}, -{"id":15389,"name":"Jadefire Sabatons","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,411,446,447,614,615,616,784,785,786,869,870,871,954,955,1039,1209,1210,1563,2005,1040,-329,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,448,956,1041,1211,1323,1369,1415,1461,1507],"ilvl":53,"quality":2}, -{"id":15390,"name":"Jadefire Chestguard","icon":"inv_chest_plate07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,393,418,419,627,628,629,797,798,799,883,884,1052,1053,1054,1222,1223,1224,1570,1571,2012,2013,-329,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,882,1330,1376,1422,1423,1468,1469,1515],"ilvl":56,"quality":2}, -{"id":15391,"name":"Jadefire Cap","icon":"inv_helmet_40","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,542,543,544,627,628,629,714,797,798,799,883,884,1052,1053,1054,1137,1139,1222,1224,1469,1618,1625,1823,2012,2050,2051,712,882,1138,1223,1330,1331,1422,1468,1822,1514,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,713,1376,1423,1515,2013,1377],"ilvl":56,"quality":2}, -{"id":15392,"name":"Jadefire Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,603,604,605,773,774,775,858,859,860,1028,1029,1030,1198,1199,1200,1607,1810,2000,2038,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9],"ilvl":49,"quality":2}, -{"id":15393,"name":"Jadefire Gloves","icon":"inv_gauntlets_11","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,529,531,614,615,616,699,700,784,785,786,869,870,871,954,955,956,1039,1040,1041,1209,1211,1323,1415,1507,1620,1815,2043,1210,-328,-327,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,447,448,530,701,1369,1461],"ilvl":52,"quality":2}, -{"id":15394,"name":"Jadefire Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[364,365,416,417,456,458,624,625,626,794,795,796,879,880,881,964,965,1049,1050,1051,1220,1221,1467,1568,1569,1820,1821,2048,2049,457,966,1219,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1328,1375,1420,1421,1466,1374],"ilvl":54,"quality":2}, -{"id":15395,"name":"Jadefire Epaulets","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,530,614,615,616,784,786,869,1620,871,1039,1210,-325,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,529,785,870,1040,1041,1124,1209,1211,1369,1415,1507,2005,1125,1126],"ilvl":53,"quality":2}, -{"id":15396,"name":"Curvewood Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.5,"ilvl":14,"quality":2}, -{"id":15397,"name":"Oakthrush Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":32,"weaponSpeed":2.8,"ilvl":14,"quality":2}, -{"id":15398,"name":"Sandcomber Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15399,"name":"Dryweed Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":15400,"name":"Clamshell Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15401,"name":"Welldrip Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15402,"name":"Noosegrip Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15403,"name":"Ridgeback Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":15404,"name":"Breakwater Girdle","icon":"inv_belt_10","type":8,"armorType":3,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":1}, -{"id":15405,"name":"Shucking Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":15406,"name":"Crustacean Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"factionRestriction":1}, -{"id":15411,"name":"Mark of Fordring","icon":"inv_jewelry_talisman_07","type":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":15413,"name":"Ornate Adamantium Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,22,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,609,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":15418,"name":"Shimmering Platinum Warhammer","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":192,"weaponSpeed":3.1,"ilvl":63,"quality":3}, -{"id":15421,"name":"Shroud of the Exile","icon":"inv_misc_cape_07","type":4,"stats":[0,0,7,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":15424,"name":"Axe of Orgrimmar","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":18,"quality":2}, -{"id":15425,"name":"Peerless Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,217,607,861,1031,1033,1203,216,218,608,776,778,863,1201,1559,1560,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,211,213,215,606,777,1032,2002,2040,-326,862,1811,1812],"ilvl":55,"quality":2}, -{"id":15426,"name":"Peerless Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,414,450,451,452,618,619,620,788,789,790,873,874,875,958,959,1043,1044,1045,1213,1214,1215,1417,1565,1566,2007,2008,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,960,1325,1371,1418,1463,1510],"ilvl":58,"quality":2}, -{"id":15427,"name":"Peerless Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,211,213,215,217,605,606,607,775,776,777,860,861,862,1030,1031,1200,1201,1202,1503,1607,1612,1810,1811,2000,2001,2039,-329,-328,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-15,-9,1032,1319,1365,1411,2038],"ilvl":54,"quality":2}, -{"id":15428,"name":"Peerless Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,616,617,1040,1816,532,786,787,1041,1212,1508,1621,-328,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,448,449,530,615,702,870,872,1042,1127,1210,1211,1370,2044,447,700,785,871,1126],"ilvl":56,"quality":2}, -{"id":15429,"name":"Peerless Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,451,452,618,619,620,703,704,788,789,790,873,874,875,958,1043,1044,1045,1213,1214,1215,1371,1372,1463,1464,1509,1616,1622,1817,1818,2045,2046,534,-329,-328,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,450,533,535,705,959,960,1325,1417,1510,-327],"ilvl":58,"quality":2}, -{"id":15430,"name":"Peerless Headband","icon":"inv_misc_bandage_19","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,394,545,546,547,631,632,715,717,802,886,887,1055,1225,1227,1626,2014,2052,-327,-326,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,393,630,716,800,801,885,1056,1057,1142,1226,1618,1823,1824,2013],"ilvl":60,"quality":2}, -{"id":15431,"name":"Peerless Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[367,368,420,464,630,631,632,800,801,802,885,886,887,1055,1056,1057,1225,1226,1227,1377,1378,1515,1516,1571,1572,1823,1824,2051,2052,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,419,462,463,970,971,972,1331,1332,1423,1424,1469,1470],"ilvl":59,"quality":2}, -{"id":15432,"name":"Peerless Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,387,388,533,534,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1215,1325,1509,1616,1622,2007,2008,1129,535,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1128,1130,1326,1372,1417,1418,1463,1464],"ilvl":58,"quality":2}, -{"id":15433,"name":"Peerless Armor","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,369,370,395,396,422,633,634,635,803,805,888,889,890,1058,1059,1060,1228,1230,1573,1574,2015,421,804,-329,-327,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1229,1380,1425,2016,-324,-326],"ilvl":61,"quality":2}, -{"id":15434,"name":"Supreme Sash","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[388,389,453,454,536,620,621,622,705,706,707,790,791,792,875,876,877,1045,1046,1047,1130,1131,1132,1215,1216,1217,1326,1510,1616,1623,1818,2046,537,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,452,535,1372,1418,1819,2047,1464],"ilvl":61,"quality":2}, -{"id":15435,"name":"Supreme Shoes","icon":"inv_boots_plate_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,620,621,622,790,791,792,875,876,877,960,962,1045,1046,1047,1215,1216,1217,1465,1566,1567,2008,2009,415,454,961,1372,-328,-327,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,452,453,1418,1464,1510,-329,1326,1373],"ilvl":63,"quality":2}, -{"id":15436,"name":"Supreme Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,409,608,609,610,778,779,780,863,864,865,1033,1034,1035,1203,1204,1205,1320,1560,1561,1812,2002,2040,2041,383,1366,1412,1813,2003,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1458,-327,1321,1505],"ilvl":60,"quality":2}, -{"id":15437,"name":"Supreme Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,383,409,610,611,779,781,864,866,1034,1035,1206,2041,-329,-325,-84,-81,-78,-69,-68,-19,-18,-15,-9,609,780,865,1036,1204,1205,1367,1505,1614,1813,2003],"ilvl":61,"quality":2}, -{"id":15438,"name":"Supreme Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,453,454,535,537,620,621,622,705,706,707,790,791,792,875,876,877,960,961,962,1045,1046,1047,1215,1216,1217,1616,1818,2046,452,536,1623,1819,2047,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1372,1373,1418,1464,1510,1419,1511],"ilvl":63,"quality":2}, -{"id":15439,"name":"Supreme Crown","icon":"inv_crown_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,553,636,638,1063,1628,1629,2054,-327,-325,-84,-81,-78,-69,-68,-19,-14,-13,-12,-9,396,397,551,552,637,721,723,806,807,808,891,892,893,1061,1062,1146,1148,1231,1232,1233,1826,2017,2055],"ilvl":64,"quality":2}, -{"id":15440,"name":"Supreme Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,465,633,634,635,805,888,889,890,1058,1059,1060,1228,1229,1230,1573,1574,1825,1826,422,467,803,804,973,974,975,1426,2054,-327,-324,-81,-78,-69,-68,-20,-19,-18,-15,-11,-10,-9,1425,2053,466,1333,1334,1379,1471,1517,-328,-326],"ilvl":63,"quality":2}, -{"id":15441,"name":"Supreme Shoulders","icon":"inv_shoulder_21","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,536,537,620,621,622,790,791,792,875,876,877,1045,1131,1215,1216,1217,1616,1623,2008,2009,338,535,1046,1047,1130,1418,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1132,1326,1372,1419,1464,1511,1510],"ilvl":63,"quality":2}, -{"id":15442,"name":"Supreme Breastplate","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,422,423,636,637,638,806,807,808,891,892,893,1061,1063,1231,1233,1381,1427,1519,1574,1575,2016,2017,1232,-326,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,1062,1334,1335,-328,-327,-324,1473],"ilvl":65,"quality":2}, -{"id":15443,"name":"Kris of Orgrimmar","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.5,"ilvl":18,"quality":2}, -{"id":15444,"name":"Staff of Orgrimmar","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":18,"quality":2}, -{"id":15445,"name":"Hammer of Orgrimmar","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.9,"ilvl":18,"quality":2}, -{"id":15449,"name":"Ghastly Trousers","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15450,"name":"Dredgemire Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15451,"name":"Gargoyle Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15452,"name":"Featherbead Bracers","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":15453,"name":"Savannah Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"factionRestriction":2}, -{"id":15455,"name":"Dustfall Robes","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":1}, -{"id":15456,"name":"Lightstep Leggings","icon":"inv_pants_13","type":9,"armorType":2,"stats":[0,13,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"factionRestriction":1}, -{"id":15457,"name":"Desert Shoulders","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":15458,"name":"Tundra Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,2,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":15459,"name":"Grimtoll Wristguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[5,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"factionRestriction":2}, -{"id":15461,"name":"Lightheel Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":15462,"name":"Loamflake Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":15463,"name":"Palestrider Gloves","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":15464,"name":"Brute Hammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[4,1,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.3,"ilvl":28,"quality":2}, -{"id":15465,"name":"Stingshot Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":52,"weaponSpeed":1.8,"ilvl":28,"quality":2}, -{"id":15466,"name":"Clink Shield","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[3,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":15467,"name":"Inventor's League Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"factionRestriction":2}, -{"id":15468,"name":"Windsong Drape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":15469,"name":"Windsong Cinch","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":15470,"name":"Plainsguard Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":15471,"name":"Brawnhide Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,4,9,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"factionRestriction":2}, -{"id":15472,"name":"Charger's Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":15473,"name":"Charger's Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":15474,"name":"Charger's Bindings","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15475,"name":"Charger's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15476,"name":"Charger's Handwraps","icon":"inv_gauntlets_18","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":15477,"name":"Charger's Pants","icon":"inv_pants_12","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,23,584,669,839,924,1009,1094,1179,1547,1548,2028,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2027],"ilvl":11,"quality":2}, -{"id":15478,"name":"Charger's Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15479,"name":"Charger's Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,15,19,23,584,669,839,924,1009,1094,1179,1547,1548,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":11,"quality":2}, -{"id":15480,"name":"War Torn Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":15481,"name":"War Torn Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":1}, -{"id":15482,"name":"War Torn Bands","icon":"inv_bracer_08","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1}, -{"id":15483,"name":"War Torn Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":15484,"name":"War Torn Handgrips","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":15485,"name":"War Torn Pants","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[24,97,585,586,587,670,671,672,840,841,842,925,926,927,1010,1011,1012,1095,1096,1097,1180,1181,1182,1549,1550,2029,2030,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":14,"quality":2}, -{"id":15486,"name":"War Torn Shield","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,14,15,48,584,669,924,1094,1179,1647,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":12,"quality":2}, -{"id":15487,"name":"War Torn Tunic","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,96,97,114,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,-84,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":16,"quality":2}, -{"id":15488,"name":"Bloodspattered Surcoat","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,135,136,154,155,591,592,593,677,678,847,848,931,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,1553,-84,-81,-78,-69,-68,-20,-17,-14,-12,676,846],"ilvl":21,"quality":2}, -{"id":15489,"name":"Bloodspattered Sabatons","icon":"inv_boots_03","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,74,89,96,587,588,672,673,674,842,843,844,927,928,929,1012,1013,1014,1097,1098,1099,1182,1183,1184,589,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":16,"quality":2}, -{"id":15490,"name":"Bloodspattered Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":15491,"name":"Bloodspattered Gloves","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[23,24,584,585,586,670,839,840,841,924,925,926,1009,1010,1011,1094,1095,1096,1179,1180,1181,1548,1549,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,669,671,2028,2029],"ilvl":15,"quality":2}, -{"id":15492,"name":"Bloodspattered Sash","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[23,24,584,585,586,669,671,839,840,841,924,925,926,1009,1010,1011,1094,1095,1096,1179,1180,1181,1548,1549,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,670,2028,2029],"ilvl":15,"quality":2}, -{"id":15493,"name":"Bloodspattered Loincloth","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,2031,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2030],"ilvl":18,"quality":2}, -{"id":15494,"name":"Bloodspattered Shield","icon":"inv_shield_14","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[18,19,22,23,24,62,585,586,670,671,925,926,1095,1096,1180,1181,1650,1651,17,74,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":18,"quality":2}, -{"id":15495,"name":"Bloodspattered Wristbands","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[6,15,19,23,584,669,839,924,1009,1094,1179,1547,1548,2028,2027,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":15,"quality":2}, -{"id":15496,"name":"Bloodspattered Shoulder Pads","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":1}, -{"id":15497,"name":"Outrunner's Cord","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,930,1013,1014,1015,1098,1100,1183,1184,1185,1550,1551,2031,929,1099,2030,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":15498,"name":"Outrunner's Slippers","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,89,96,108,114,588,590,673,674,675,843,844,845,928,929,930,1014,1015,1098,1099,1100,1183,1184,1185,589,1013,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":20,"quality":2}, -{"id":15499,"name":"Outrunner's Cuffs","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,23,24,585,586,670,671,840,841,925,926,1010,1011,1095,1096,1180,1181,1548,1549,2028,2029,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":18,"quality":2}, -{"id":15500,"name":"Outrunner's Chestguard","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":24,"quality":2}, -{"id":15501,"name":"Outrunner's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[19,22,23,24,62,74,585,586,670,671,840,841,925,926,1010,1011,1095,1096,1180,1181,2028,2029,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":17,"quality":2}, -{"id":15502,"name":"Outrunner's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,2030,2031,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":20,"quality":2}, -{"id":15503,"name":"Outrunner's Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[155,189,594,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,2033,2034,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,595],"ilvl":22,"quality":2}, -{"id":15504,"name":"Outrunner's Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,96,97,108,111,114,115,588,589,590,673,674,675,928,929,930,1098,1099,1100,1183,1184,1185,1653,1654,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":22,"quality":2}, -{"id":15505,"name":"Outrunner's Pauldrons","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":1}, -{"id":15506,"name":"Grunt's Ankle Wraps","icon":"inv_boots_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,89,96,108,114,588,590,673,674,675,843,844,845,928,929,930,1014,1015,1098,1099,1100,1183,1184,1185,589,1013,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":21,"quality":2}, -{"id":15507,"name":"Grunt's Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,96,97,587,672,842,927,1012,1097,1182,1549,1550,2029,2030,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":15508,"name":"Grunt's Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[22,24,74,89,96,97,587,672,842,927,1012,1097,1182,2029,2030,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":19,"quality":2}, -{"id":15509,"name":"Grunt's Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,1550,1551,2030,2031,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":21,"quality":2}, -{"id":15510,"name":"Grunt's Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[97,115,588,589,590,673,674,675,843,844,845,928,930,1013,1014,1015,1098,1100,1183,1184,1185,1550,1551,2031,929,1099,2030,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":20,"quality":2}, -{"id":15511,"name":"Grunt's Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[155,189,594,596,679,680,681,849,850,851,934,935,936,1019,1020,1021,1104,1105,1106,1189,1190,1191,1553,1554,2033,2034,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,595],"ilvl":24,"quality":2}, -{"id":15512,"name":"Grunt's Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,93,96,97,108,111,114,115,588,589,590,673,674,675,928,929,930,1098,1099,1100,1183,1184,1185,1653,1654,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":24,"quality":2}, -{"id":15513,"name":"Grunt's Pauldrons","icon":"inv_shoulder_06","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,135,147,154,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":25,"quality":2}, -{"id":15514,"name":"Grunt's Chestpiece","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,186,190,191,597,599,682,684,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,598,683,852,938],"ilvl":26,"quality":2}, -{"id":15515,"name":"Spiked Chain Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,595,678,680,849,933,935,1018,1019,1020,1104,1105,1188,1189,1190,1552,1553,679,934,1103,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,593,594,848,850,2033],"ilvl":25,"quality":2}, -{"id":15516,"name":"Spiked Chain Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,135,147,154,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,-325,-84,-81,-78,-69,-68,-14,-12,-10,593],"ilvl":27,"quality":2}, -{"id":15517,"name":"Spiked Chain Wristbands","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,590,675,845,846,847,930,932,1015,1016,1017,1100,1101,1102,1185,1186,1187,1551,-68,591,592,676,677,2031,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,931],"ilvl":25,"quality":2}, -{"id":15518,"name":"Spiked Chain Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,191,192,600,601,602,685,686,687,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,855],"ilvl":30,"quality":2}, -{"id":15519,"name":"Spiked Chain Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,96,97,108,114,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,2030,2031,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":23,"quality":2}, -{"id":15520,"name":"Spiked Chain Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1105,1188,1189,1190,1552,1553,2033,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1104,2032],"ilvl":26,"quality":2}, -{"id":15521,"name":"Spiked Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,191,599,682,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,1556,2035,2036,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,597,598,683,938],"ilvl":27,"quality":2}, -{"id":15522,"name":"Spiked Chain Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,132,135,136,591,592,593,676,677,678,931,932,933,1101,1102,1103,1186,1187,1188,1656,1657,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":29,"quality":2}, -{"id":15523,"name":"Spiked Chain Shoulder Pads","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,135,147,154,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":27,"quality":2}, -{"id":15524,"name":"Sentry's Surcoat","icon":"inv_chest_leather_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,193,217,219,603,604,605,690,858,860,943,944,945,1030,1113,1114,1115,1198,1199,1200,1558,1029,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,688,689,859,1028,1559],"ilvl":31,"quality":2}, -{"id":15525,"name":"Sentry's Slippers","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,596,597,598,681,682,683,851,853,936,937,938,1021,1022,1106,1107,1108,1191,1192,1193,1608,-325,-84,-81,-78,-69,-68,-14,-12,-10,852,1023],"ilvl":28,"quality":2}, -{"id":15526,"name":"Sentry's Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[89,96,97,108,114,115,588,589,590,673,674,675,843,844,845,928,929,930,1013,1014,1015,1098,1099,1100,1183,1184,1185,2030,2031,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":24,"quality":2}, -{"id":15527,"name":"Sentry's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1105,1188,1189,1190,1552,1553,2033,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1104,2032],"ilvl":27,"quality":2}, -{"id":15528,"name":"Sentry's Sash","icon":"inv_belt_27","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[136,155,595,678,680,849,933,935,1018,1019,1020,1104,1105,1188,1189,1190,1552,1553,679,934,1103,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,593,594,848,850,2033],"ilvl":26,"quality":2}, -{"id":15529,"name":"Sentry's Leggings","icon":"inv_pants_wolf","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,687,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":29,"quality":2}, -{"id":15530,"name":"Sentry's Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[128,147,151,154,155,594,595,679,680,933,934,935,1103,1104,1105,1188,1189,1190,132,135,136,593,678,1659,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,1658],"ilvl":31,"quality":2}, -{"id":15531,"name":"Sentry's Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1608,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":30,"quality":2}, -{"id":15532,"name":"Sentry's Armsplints","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[114,115,590,675,845,846,847,930,932,1015,1016,1017,1100,1101,1102,1185,1186,1187,1551,-68,591,592,676,677,2031,-84,-81,-78,-69,-20,-19,-17,-14,-12,-10,931],"ilvl":26,"quality":2}, -{"id":15533,"name":"Sentry's Headdress","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[188,217,603,604,605,688,689,690,858,859,860,943,944,945,1030,1113,1114,1115,1198,1199,1200,1607,1612,2038,2039,1028,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,1029],"ilvl":31,"quality":2}, -{"id":15534,"name":"Wicked Chain Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,599,682,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,597,-325,-84,-81,-78,-69,-68,-14,-12,-10,598,683,1023],"ilvl":31,"quality":2}, -{"id":15535,"name":"Wicked Chain Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,591,592,593,676,677,678,846,847,848,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,2032,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,931],"ilvl":29,"quality":2}, -{"id":15536,"name":"Wicked Chain Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,692,693,861,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,691,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,607,862],"ilvl":34,"quality":2}, -{"id":15537,"name":"Wicked Chain Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,128,135,136,591,592,593,676,677,678,846,847,931,932,933,1017,1018,1101,1102,1103,1186,1187,1188,2032,848,1016,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12],"ilvl":28,"quality":2}, -{"id":15538,"name":"Wicked Chain Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[189,596,681,682,683,851,852,936,937,938,1021,1022,1023,1106,1107,1191,1192,1193,1554,2034,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,597,598,853,1108],"ilvl":30,"quality":2}, -{"id":15539,"name":"Wicked Chain Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[189,596,597,598,681,682,851,852,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1554,2034,853,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,683],"ilvl":30,"quality":2}, -{"id":15540,"name":"Wicked Chain Helmet","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1612,1613,2040,861,-325,-84,-81,-78,-69,-68,-14,-12,-10,606,862,2039,-19],"ilvl":34,"quality":2}, -{"id":15541,"name":"Wicked Chain Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[193,219,603,604,605,690,858,860,943,945,1028,1029,1030,1113,1115,1198,1199,1200,1558,1559,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,688,689,859,944,1114,2038],"ilvl":33,"quality":2}, -{"id":15542,"name":"Wicked Chain Shoulder Pads","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,597,598,599,683,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,682,1023,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":32,"quality":2}, -{"id":15543,"name":"Wicked Chain Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,154,155,167,184,189,594,595,596,679,680,681,935,1104,1106,1189,1190,1191,1608,1660,936,1105,1661,934,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":34,"quality":2}, -{"id":15544,"name":"Thick Scale Sabatons","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,599,682,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,597,-325,-84,-81,-78,-69,-68,-14,-12,-10,598,683,1023],"ilvl":32,"quality":2}, -{"id":15545,"name":"Thick Scale Bracelets","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,591,592,593,676,677,678,846,847,848,932,933,1016,1017,1018,1101,1102,1103,1186,1187,1188,1552,2032,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,931],"ilvl":30,"quality":2}, -{"id":15546,"name":"Thick Scale Breastplate","icon":"inv_chest_cloth_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,219,220,606,608,692,693,861,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1559,1560,691,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10,607,862],"ilvl":36,"quality":2}, -{"id":15547,"name":"Thick Scale Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-10,128,135,136,591,592,593,676,677,678,846,847,931,932,933,1017,1018,1101,1102,1103,1186,1187,1188,2032,848,1016,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12],"ilvl":29,"quality":2}, -{"id":15548,"name":"Thick Scale Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,599,682,683,684,853,854,939,1022,1023,1024,1107,1109,1192,1193,1194,1555,2035,598,938,1108,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,852,937],"ilvl":32,"quality":2}, -{"id":15549,"name":"Thick Scale Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,598,599,682,683,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,2035,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,938],"ilvl":31,"quality":2}, -{"id":15550,"name":"Thick Scale Crown","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[217,218,607,608,691,692,693,863,946,947,948,1031,1032,1033,1116,1117,1118,1201,1202,1203,1612,1613,2040,861,-325,-84,-81,-78,-69,-68,-14,-12,-10,606,862,2039,-19],"ilvl":35,"quality":2}, -{"id":15551,"name":"Thick Scale Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,693,861,862,863,947,948,1031,1032,1033,1118,1201,1202,1203,1559,1560,2039,607,946,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,691,692,2040],"ilvl":35,"quality":2}, -{"id":15552,"name":"Thick Scale Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[147,151,154,155,167,184,189,594,595,596,679,680,681,935,1104,1106,1189,1190,1191,1608,1660,936,1105,1661,934,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":15553,"name":"Thick Scale Shoulder Pads","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,600,687,855,856,940,941,1025,1027,1112,1195,1196,1197,1610,1611,602,685,857,942,1110,1111,-325,-84,-81,-78,-69,-68,-14,-12,-10,601,686,1026],"ilvl":34,"quality":2}, -{"id":15554,"name":"Pillager's Girdle","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[190,597,598,599,682,683,684,852,853,854,937,939,1022,1023,1024,1107,1108,1109,1192,1193,1194,1555,2035,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,938],"ilvl":33,"quality":2}, -{"id":15555,"name":"Pillager's Boots","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[185,599,682,684,852,853,854,937,938,939,1022,1024,1107,1108,1109,1192,1193,1194,1609,597,-325,-84,-81,-78,-69,-68,-14,-12,-10,598,683,1023],"ilvl":33,"quality":2}, -{"id":15556,"name":"Pillager's Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[135,136,154,155,593,594,595,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,1552,1553,2033,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2032],"ilvl":32,"quality":2}, -{"id":15557,"name":"Pillager's Chestguard","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,307,308,333,609,610,611,694,695,696,864,865,866,949,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1561,1562,950,-84,-81,-78,-69,-68,-20,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":15558,"name":"Pillager's Crown","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1614,1615,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,609,2041,2042],"ilvl":37,"quality":2}, -{"id":15559,"name":"Pillager's Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,135,136,147,154,155,594,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,593,595,-325,-84,-81,-69,-68,-19,-17,-14,-12,-10],"ilvl":31,"quality":2}, -{"id":15560,"name":"Pillager's Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,687,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":34,"quality":2}, -{"id":15561,"name":"Pillager's Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[219,220,606,608,693,861,862,863,947,948,1031,1032,1033,1118,1201,1202,1203,1559,1560,2039,607,946,1116,1117,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,691,692,2040],"ilvl":36,"quality":2}, -{"id":15562,"name":"Pillager's Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[186,187,600,687,855,856,940,941,1025,1027,1112,1195,1196,1197,1610,1611,602,685,857,942,1110,1111,-325,-84,-81,-78,-69,-68,-14,-12,-10,601,686,1026],"ilvl":36,"quality":2}, -{"id":15563,"name":"Pillager's Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[167,184,185,189,190,596,597,598,681,682,683,936,937,938,1106,1107,1108,1191,1192,1193,1609,1662,168,1608,1661,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":15565,"name":"Marauder's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,187,188,602,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1607,1611,603,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":15566,"name":"Marauder's Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,680,681,849,851,935,936,1019,1020,1021,1104,1106,1189,1190,1191,1553,1554,2033,679,850,2034,934,1105,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":35,"quality":2}, -{"id":15567,"name":"Marauder's Tunic","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,445,446,527,528,529,612,613,614,782,784,867,868,869,1037,1038,1039,1562,1563,2004,2005,444,783,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":40,"quality":2}, -{"id":15568,"name":"Marauder's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,135,136,147,154,155,594,678,679,680,848,849,850,933,934,935,1018,1019,1020,1103,1104,1105,1188,1189,1190,2032,2033,128,593,595,-325,-84,-81,-69,-68,-19,-17,-14,-12,-10],"ilvl":33,"quality":2}, -{"id":15569,"name":"Marauder's Crest","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,185,186,190,191,599,684,939,1109,1194,1609,1610,1664,1663,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10],"ilvl":40,"quality":2}, -{"id":15570,"name":"Marauder's Gauntlets","icon":"inv_gauntlets_24","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,687,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":36,"quality":2}, -{"id":15571,"name":"Marauder's Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,687,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,2037,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":35,"quality":2}, -{"id":15572,"name":"Marauder's Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1120,1121,1204,1205,1206,1614,1615,-325,-84,-81,-78,-69,-68,-19,-14,-12,-10,609,2041,2042],"ilvl":39,"quality":2}, -{"id":15573,"name":"Marauder's Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[307,308,609,610,611,694,695,696,864,865,866,949,950,951,1034,1035,1036,1119,1121,1204,1205,1206,1561,1562,1120,2041,2042,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":38,"quality":2}, -{"id":15574,"name":"Marauder's Shoulder Pads","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,437,438,439,520,521,605,606,607,775,777,860,862,1030,1031,1032,1115,1117,1607,2000,2001,776,861,1612,522,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1116],"ilvl":40,"quality":2}, -{"id":15575,"name":"Sparkleshell Belt","icon":"inv_belt_27","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[191,192,600,601,602,685,686,687,855,856,857,940,941,942,1025,1026,1027,1110,1111,1112,1195,1196,1197,1556,1557,2036,2037,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":15576,"name":"Sparkleshell Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,187,188,602,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1607,1611,603,-325,-84,-81,-78,-69,-14,-12,-10],"ilvl":39,"quality":2}, -{"id":15577,"name":"Sparkleshell Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[154,155,184,189,594,595,596,680,681,849,851,935,936,1019,1020,1021,1104,1106,1189,1190,1191,1553,1554,2033,679,850,2034,934,1105,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":36,"quality":2}, -{"id":15578,"name":"Sparkleshell Breastplate","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,445,446,527,528,529,612,613,614,782,784,867,868,869,1037,1038,1039,1562,1563,2004,2005,444,783,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":41,"quality":2}, -{"id":15579,"name":"Sparkleshell Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-68,147,154,155,184,189,596,681,849,851,934,935,936,1019,1021,1105,1106,1189,1190,1191,1608,594,595,679,680,850,1020,1104,-325,-84,-81,-78,-69,-19,-17,-14,-12,-10,2033,2034],"ilvl":35,"quality":2}, -{"id":15580,"name":"Sparkleshell Headwrap","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,444,445,446,527,528,529,612,613,614,697,698,699,783,784,867,869,1037,1038,1039,1207,1209,1615,1620,1815,2042,782,868,1208,2043,2005,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1814,2004],"ilvl":40,"quality":2}, -{"id":15581,"name":"Sparkleshell Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[192,193,602,603,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1557,1558,2038,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":38,"quality":2}, -{"id":15582,"name":"Sparkleshell Legguards","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,358,359,410,411,444,446,527,529,612,613,614,782,784,869,953,954,1037,1038,1039,1209,1562,1563,1814,1815,2042,2043,445,528,868,1208,-81,-78,-68,-20,-19,-18,-15,-13,-11,-10,-9,783,867,952,1207],"ilvl":40,"quality":2}, -{"id":15583,"name":"Sparkleshell Shoulder Pads","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,437,438,439,520,521,605,606,607,775,777,860,862,1030,1031,1032,1115,1117,1607,2000,2001,776,861,1612,522,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1116],"ilvl":41,"quality":2}, -{"id":15584,"name":"Sparkleshell Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,180,181,251,514,769,854,1024,1807,1808,1884,1959,2035,176,1883,1845,1846,2036,-81,-69,-19,-15,-13,-11,-9,1960],"ilvl":41,"quality":2}, -{"id":15585,"name":"Pardoc Grips","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":6142,"name":"Clam Bait"}}],"factionRestriction":2}, -{"id":15587,"name":"Ringtail Girdle","icon":"inv_belt_34","type":8,"armorType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":6142,"name":"Clam Bait"}}],"factionRestriction":2}, -{"id":15588,"name":"Bracesteel Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[4,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":6142,"name":"Clam Bait"}}],"factionRestriction":2}, -{"id":15589,"name":"Steadfast Stompers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,183,188,215,217,437,438,439,520,521,522,605,606,607,775,777,860,861,862,1030,1032,1200,1201,1202,1558,2000,211,776,1031,1559,2001,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":41,"quality":2}, -{"id":15590,"name":"Steadfast Bracelets","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1554,1555,2034,2035,-84,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":15591,"name":"Steadfast Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,360,361,386,412,413,447,448,449,530,531,532,615,616,617,785,786,787,870,871,872,1040,1041,1042,1564,1565,2006,387,2007,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":43,"quality":2}, -{"id":15592,"name":"Steadfast Buckler","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[176,181,253,255,515,516,770,771,855,856,1025,1026,1846,1884,2036,1808,1960,-81,-69,-19,-15,-13,-11,-9],"ilvl":43,"quality":2}, -{"id":15593,"name":"Steadfast Coronet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,384,385,444,445,446,527,528,529,612,613,614,697,698,699,783,784,867,869,1037,1038,1039,1207,1209,1615,1620,1815,2042,782,868,1208,2043,2005,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1814,2004],"ilvl":42,"quality":2}, -{"id":15594,"name":"Steadfast Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[184,185,189,190,596,597,598,681,682,683,851,852,853,936,937,938,1021,1022,1023,1106,1107,1108,1191,1192,1193,1608,1609,2034,2035,-325,-84,-81,-78,-69,-68,-19,-17,-14,-12,-10],"ilvl":37,"quality":2}, -{"id":15595,"name":"Steadfast Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[192,193,602,603,604,687,688,689,857,858,859,942,943,944,1027,1028,1029,1112,1113,1114,1197,1198,1199,1557,1558,2038,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,2037],"ilvl":39,"quality":2}, -{"id":15596,"name":"Steadfast Legplates","icon":"inv_pants_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,358,359,410,411,444,446,527,529,612,613,614,782,784,869,953,954,1037,1038,1039,1209,1562,1563,1814,1815,2042,2043,445,528,868,1208,-81,-78,-68,-20,-19,-18,-15,-13,-11,-10,-9,783,867,952,1207],"ilvl":41,"quality":2}, -{"id":15597,"name":"Steadfast Shoulders","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,188,211,213,217,437,438,439,520,521,605,606,607,775,777,860,862,1030,1031,1032,1115,1117,1607,2000,2001,776,861,1612,522,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1116],"ilvl":42,"quality":2}, -{"id":15598,"name":"Steadfast Girdle","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[192,193,602,603,687,688,689,857,858,859,942,944,1027,1028,1029,1112,1114,1197,1198,1199,1557,1558,604,943,2037,-81,-78,-69,-68,-20,-19,-17,-14,-12,-10,1113,2038],"ilvl":38,"quality":2}, -{"id":15599,"name":"Ancient Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,216,218,438,439,440,521,522,523,606,607,608,776,777,778,861,863,1031,1032,1033,1201,1202,1203,1559,1560,2002,215,217,862,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,2001],"ilvl":44,"quality":2}, -{"id":15600,"name":"Ancient Vambraces","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,186,251,514,599,769,854,1024,1555,1556,1997,1998,1807,1808,2035,2036,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":42,"quality":2}, -{"id":15601,"name":"Ancient Chestpiece","icon":"inv_chest_chain_10","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,361,362,387,388,413,414,450,451,452,533,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1566,2007,337,534,2008,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1565],"ilvl":46,"quality":2}, -{"id":15602,"name":"Ancient Crown","icon":"inv_helmet_11","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[335,336,386,387,447,448,449,530,531,532,615,616,617,702,785,786,787,870,872,1041,1042,1211,1622,1817,2006,2044,700,701,1212,1621,2045,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,871,1040,1210,1816,2007],"ilvl":45,"quality":2}, -{"id":15603,"name":"Ancient Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[168,171,175,176,180,181,185,251,514,599,769,854,1024,1609,1610,1807,1997,186,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998,2035,2036],"ilvl":41,"quality":2}, -{"id":15604,"name":"Ancient Defender","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,254,435,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1885,1961,2037,1847,-19,436,-81,-69,-15,-13,-11,-9],"ilvl":46,"quality":2}, -{"id":15605,"name":"Ancient Gauntlets","icon":"inv_gauntlets_16","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-69,183,215,437,438,439,520,521,522,605,606,607,690,691,692,775,776,860,861,862,945,946,1030,1031,1032,1200,1202,1607,2039,777,1201,1612,1811,1810,-325,-81,-78,-68,-19,-15,-14,-13,-11,-10,-9,947,2038],"ilvl":42,"quality":2}, -{"id":15606,"name":"Ancient Belt","icon":"inv_belt_10","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,437,438,439,520,521,522,605,606,690,691,692,775,777,860,862,1030,1031,1032,1115,1116,1200,1201,1607,1612,1810,1811,2038,2039,607,776,1117,1202,861,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":41,"quality":2}, -{"id":15607,"name":"Ancient Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[360,361,412,413,447,448,449,530,531,532,615,616,617,785,787,870,872,955,956,957,1040,1041,1042,1210,1211,1212,1564,1565,2044,2045,871,1816,786,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1817],"ilvl":44,"quality":2}, -{"id":15608,"name":"Ancient Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,438,440,522,523,606,607,608,776,777,778,861,862,863,1033,1116,1117,1118,1612,1613,2001,218,439,521,1032,2002,-78,217,1031,-325,-84,-81,-69,-19,-18,-13,-12,-11,-9],"ilvl":44,"quality":2}, -{"id":15609,"name":"Bonelink Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,361,362,387,388,413,414,450,451,452,533,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1566,2007,337,534,2008,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1565],"ilvl":47,"quality":2}, -{"id":15610,"name":"Bonelink Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1556,1808,1998,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,2036],"ilvl":43,"quality":2}, -{"id":15611,"name":"Bonelink Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1610,2036,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998],"ilvl":43,"quality":2}, -{"id":15612,"name":"Bonelink Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[215,216,439,440,522,523,606,607,608,693,776,777,778,861,862,863,946,947,948,1032,1033,1201,1202,1203,1612,1613,1811,2039,2040,438,521,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,691,692,1031,1812],"ilvl":44,"quality":2}, -{"id":15613,"name":"Bonelink Belt","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,213,437,438,439,520,521,522,605,606,690,691,692,775,777,860,862,1030,1031,1032,1115,1116,1200,1201,1607,1612,1810,1811,2038,2039,607,776,1117,1202,861,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":42,"quality":2}, -{"id":15614,"name":"Bonelink Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,216,218,438,439,440,521,522,523,606,607,608,776,777,778,861,863,1031,1032,1033,1201,1202,1203,1559,1560,2002,215,217,862,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,2001],"ilvl":45,"quality":2}, -{"id":15615,"name":"Bonelink Helmet","icon":"inv_helmet_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,387,388,451,452,533,534,535,619,620,705,788,790,873,874,875,1043,1044,1045,1213,1214,1215,1616,1622,1817,1818,2007,2008,2046,450,618,703,789,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,704,2045],"ilvl":46,"quality":2}, -{"id":15616,"name":"Bonelink Legplates","icon":"inv_pants_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[362,413,414,450,451,452,533,534,535,618,620,789,790,874,875,960,1043,1045,1213,1214,1215,1565,1566,1817,1818,2046,361,619,873,1044,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,788,958,959,2045],"ilvl":46,"quality":2}, -{"id":15617,"name":"Bonelink Epaulets","icon":"inv_shoulder_22","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,438,440,522,523,606,607,608,776,777,778,861,862,863,1033,1116,1117,1118,1612,1613,2001,218,439,521,1032,2002,-78,217,1031,-325,-84,-81,-69,-19,-18,-13,-12,-11,-9],"ilvl":45,"quality":2}, -{"id":15618,"name":"Bonelink Wall Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,254,435,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1885,1961,2037,1847,-19,436,-81,-69,-15,-13,-11,-9],"ilvl":47,"quality":2}, -{"id":15619,"name":"Gryphon Mail Belt","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,383,441,442,443,524,525,526,609,610,611,694,695,696,779,780,781,864,865,866,1034,1035,1036,1119,1120,1121,1204,1205,1206,1613,1614,1812,2040,2041,1813,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9],"ilvl":48,"quality":2}, -{"id":15620,"name":"Gryphon Mail Bracelets","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1557,1999,2037,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1809],"ilvl":47,"quality":2}, -{"id":15621,"name":"Gryphon Mail Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,435,436,437,519,520,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-81,-69,-19,-15,-13,-11,-9,518],"ilvl":51,"quality":2}, -{"id":15622,"name":"Gryphon Mail Breastplate","icon":"inv_chest_plate06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,339,363,364,389,390,415,453,454,455,536,537,538,621,622,623,791,792,793,876,877,878,1046,1047,1048,1567,1568,2009,2010,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,416],"ilvl":51,"quality":2}, -{"id":15623,"name":"Gryphon Mail Crown","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[338,389,390,453,455,536,537,538,621,622,623,706,707,708,792,793,876,877,878,1046,1047,1048,1216,1217,1218,1617,1623,2009,1819,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,339,454,791,1820,2010,2047,2048],"ilvl":50,"quality":2}, -{"id":15624,"name":"Gryphon Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[171,176,181,186,253,255,515,516,600,601,770,771,855,856,1025,1026,1610,2036,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1808,1998],"ilvl":45,"quality":2}, -{"id":15625,"name":"Gryphon Mail Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,525,526,609,610,611,695,779,780,781,864,865,866,950,951,1034,1035,1036,1204,1205,1206,1614,1813,694,696,949,1613,1812,2040,2041,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":47,"quality":2}, -{"id":15626,"name":"Gryphon Mail Greaves","icon":"inv_boots_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,216,267,287,409,441,442,443,524,525,526,609,610,611,779,780,781,865,866,1034,1035,1036,1204,1205,1206,1560,1561,2003,864,218,2002,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":47,"quality":2}, -{"id":15627,"name":"Gryphon Mail Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,453,454,455,537,538,621,622,623,791,792,793,876,877,878,961,962,963,1046,1047,1048,1216,1218,1567,1568,1820,2047,536,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1217,1819,2048],"ilvl":50,"quality":2}, -{"id":15628,"name":"Gryphon Mail Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,218,267,287,441,442,443,524,525,526,609,610,611,779,780,781,864,865,1034,1035,1036,1119,1120,1121,1613,1614,2003,383,866,2002,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":48,"quality":2}, -{"id":15629,"name":"Formidable Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,519,602,603,604,772,773,774,857,858,859,1027,1028,1029,1557,1999,2037,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1809],"ilvl":48,"quality":2}, -{"id":15630,"name":"Formidable Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,409,410,443,444,445,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1206,1207,1208,1561,1562,2003,2004,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9],"ilvl":49,"quality":2}, -{"id":15631,"name":"Formidable Chestpiece","icon":"inv_chest_chain_10","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,364,365,391,417,456,457,458,540,541,624,625,626,794,795,796,879,880,881,1049,1050,1051,1329,1374,1420,1467,1512,1568,1569,2010,2011,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,390,416,539,1375,1421,1513,1466],"ilvl":52,"quality":2}, -{"id":15632,"name":"Formidable Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,177,182,187,254,435,436,517,518,602,603,604,772,773,774,857,858,859,1027,1028,1029,1611,1999,519,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1809,2037],"ilvl":46,"quality":2}, -{"id":15633,"name":"Formidable Crest","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,213,215,437,438,439,520,775,776,777,860,861,862,1030,1031,1032,1318,1811,1848,1887,1963,2038,2039,-15,521,-328,-81,-69,-19,-13,-11,-9,522,1319,1364,1810,1849,1886,1962,-327,-324],"ilvl":52,"quality":2}, -{"id":15634,"name":"Formidable Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[339,340,390,391,456,457,458,539,540,541,624,625,626,709,710,711,794,795,796,879,880,881,1049,1050,1051,1220,1221,1329,1375,1421,1617,1624,1820,1821,2010,2011,2048,-329,-328,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,1219,1420,1467,1512,1513,2049],"ilvl":52,"quality":2}, -{"id":15635,"name":"Formidable Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,409,441,442,443,524,525,526,609,610,611,695,779,780,781,864,865,866,950,951,1034,1035,1036,1204,1205,1206,1614,1813,694,696,949,1613,1812,2040,2041,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9],"ilvl":48,"quality":2}, -{"id":15636,"name":"Formidable Belt","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,443,444,445,526,527,528,611,612,613,696,697,698,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,1814,2041,2042,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1813],"ilvl":49,"quality":2}, -{"id":15637,"name":"Formidable Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[363,364,415,416,453,454,455,537,538,621,622,623,791,792,793,876,877,878,961,962,963,1046,1047,1048,1216,1218,1567,1568,1820,2047,536,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,1217,1819,2048],"ilvl":51,"quality":2}, -{"id":15638,"name":"Formidable Shoulder Pads","icon":"inv_shoulder_30","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,443,444,445,526,527,528,611,612,613,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1614,1615,2003,2004,-325,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9],"ilvl":49,"quality":2}, -{"id":15639,"name":"Ironhide Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1810,2000,2038,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":50,"quality":2}, -{"id":15640,"name":"Ironhide Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,418,419,460,461,542,543,544,627,629,797,798,799,883,884,1052,1053,1054,1376,1423,1570,1571,2012,2013,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,393,459,628,882,1330,1331,1377,1422,1468,1514,1515],"ilvl":56,"quality":2}, -{"id":15641,"name":"Ironhide Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[383,384,443,444,445,526,527,528,611,612,613,696,697,698,781,782,783,866,867,868,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,1814,2041,2042,-325,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1813],"ilvl":51,"quality":2}, -{"id":15642,"name":"Ironhide Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,411,446,447,448,529,531,614,615,616,784,785,786,869,870,871,1039,1041,1209,1210,1211,1415,1507,1563,2005,530,1323,-329,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1040,-328,1369],"ilvl":52,"quality":2}, -{"id":15643,"name":"Ironhide Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1607,2000,2038,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1810],"ilvl":49,"quality":2}, -{"id":15644,"name":"Ironhide Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,447,448,529,530,531,614,615,616,699,700,701,784,785,786,869,870,871,954,955,956,1039,1040,1209,1210,1211,1323,1415,1507,1620,1815,2043,1041,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1369,1461],"ilvl":52,"quality":2}, -{"id":15645,"name":"Ironhide Helmet","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,459,460,461,542,543,544,627,629,713,714,797,798,799,882,883,884,1053,1054,1222,1223,1224,1331,1618,1625,2012,2013,2050,1468,1822,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,628,712,1052,1330,1376,1377,1422,1423,1514,1515,1823,2051],"ilvl":55,"quality":2}, -{"id":15646,"name":"Ironhide Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[366,367,418,459,460,461,542,543,544,627,628,629,797,798,799,882,883,884,967,969,1052,1054,1222,1223,1224,1423,1570,1571,1822,2050,419,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,968,1053,1330,1331,1376,1377,1422,1468,1469,1514,1823,2051],"ilvl":55,"quality":2}, -{"id":15647,"name":"Ironhide Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,446,447,448,529,530,531,614,615,616,784,785,786,869,870,871,1039,1041,1124,1125,1126,1323,1415,1461,1620,2005,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1040,1369,1507],"ilvl":53,"quality":2}, -{"id":15648,"name":"Ironhide Shield","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,440,521,523,777,778,861,863,1033,1811,214,438,776,862,1031,1457,1888,213,215,439,1812,1849,1850,1964,2040,-15,1887,-81,-69,-19,-11,-9,522,1032,1963,2039,-13,1503],"ilvl":56,"quality":2}, -{"id":15649,"name":"Merciless Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1558,1810,2000,2038,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9],"ilvl":51,"quality":2}, -{"id":15650,"name":"Merciless Surcoat","icon":"inv_chest_leather_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,418,419,460,461,542,543,544,627,629,797,798,799,883,884,1052,1053,1054,1376,1423,1570,1571,2012,2013,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,393,459,628,882,1330,1331,1377,1422,1468,1514,1515],"ilvl":57,"quality":2}, -{"id":15651,"name":"Merciless Crown","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,392,393,459,460,461,542,543,544,627,629,713,714,797,798,799,882,883,884,1053,1054,1222,1223,1224,1331,1618,1625,2012,2013,2050,1468,1822,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,628,712,1052,1330,1376,1377,1422,1423,1514,1515,1823,2051],"ilvl":56,"quality":2}, -{"id":15652,"name":"Merciless Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,188,435,436,437,518,519,520,603,604,605,773,774,775,858,859,860,1028,1029,1030,1607,2000,2038,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,1810],"ilvl":51,"quality":2}, -{"id":15653,"name":"Merciless Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[411,446,447,448,529,530,531,614,615,616,699,700,701,784,785,786,869,870,871,954,955,956,1039,1040,1209,1210,1211,1323,1415,1507,1620,1815,2043,1041,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1369,1461],"ilvl":53,"quality":2}, -{"id":15654,"name":"Merciless Belt","icon":"inv_belt_07","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-81,385,446,447,448,529,530,531,614,615,616,699,701,784,786,869,870,871,1039,1040,1041,1124,1126,1209,1210,1211,1620,1815,2043,1507,-329,-328,-327,-325,-324,-78,-69,-68,-19,-14,-13,-12,-11,-9,700,785,1125,1323,1369,1415,1461],"ilvl":54,"quality":2}, -{"id":15655,"name":"Merciless Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[366,367,418,459,460,461,542,543,544,627,628,629,797,798,799,882,883,884,967,969,1052,1054,1222,1223,1224,1423,1570,1571,1822,2050,419,-329,-328,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,968,1053,1330,1331,1376,1377,1422,1468,1469,1514,1823,2051],"ilvl":56,"quality":2}, -{"id":15656,"name":"Merciless Epaulets","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,385,446,447,448,529,530,531,614,615,616,784,785,786,869,870,871,1039,1041,1124,1125,1126,1323,1415,1461,1620,2005,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1040,1369,1507],"ilvl":54,"quality":2}, -{"id":15657,"name":"Merciless Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,440,521,523,777,778,861,863,1033,1811,214,438,776,862,1031,1457,1888,213,215,439,1812,1849,1850,1964,2040,-15,1887,-81,-69,-19,-11,-9,522,1032,1963,2039,-13,1503],"ilvl":57,"quality":2}, -{"id":15658,"name":"Impenetrable Sabatons","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,450,451,452,533,534,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1325,1371,1509,1565,1566,2007,2008,1372,-329,-328,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,414,1215,1326,1417,1463,1464,-326],"ilvl":59,"quality":2}, -{"id":15659,"name":"Impenetrable Bindings","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,215,216,217,218,438,440,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1559,1560,1811,1812,2001,2002,2039,2040,439,-329,-328,-327,-326,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1319,1320,1365,1366,1411,1412,1457,1458,1504],"ilvl":55,"quality":2}, -{"id":15660,"name":"Impenetrable Breastplate","icon":"inv_chest_plate01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,422,467,549,550,634,635,803,890,1060,1573,1574,345,395,466,1517,2015,-329,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,344,396,421,465,548,633,804,805,888,889,1058,1059,1471,2016,-328],"ilvl":61,"quality":2}, -{"id":15661,"name":"Impenetrable Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,178,183,211,213,215,217,437,438,439,520,521,605,606,607,775,776,777,860,861,862,1030,1031,1032,1318,1364,1365,1607,1612,2001,2038,-329,-328,-327,-326,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,188,522,1319,1410,1411,1457,1502,1503,1810,1811,2000,2039],"ilvl":54,"quality":2}, -{"id":15662,"name":"Impenetrable Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[412,447,448,449,530,531,532,615,616,617,700,701,702,785,786,787,870,871,872,956,957,1040,1041,1042,1210,1211,1212,1621,1816,2044,-329,-328,-327,-326,-325,-324,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,955,1324,1370,1416,1462,1508],"ilvl":57,"quality":2}, -{"id":15663,"name":"Impenetrable Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[386,447,448,449,530,531,532,615,616,617,700,701,702,785,786,787,870,871,872,1040,1041,1042,1125,1126,1127,1210,1211,1212,1416,1621,1816,2044,1324,1462,-328,-326,-325,-324,-81,-78,-69,-68,-19,-14,-13,-12,-11,-9,1370,1508,-327],"ilvl":56,"quality":2}, -{"id":15664,"name":"Impenetrable Helmet","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[342,343,393,394,462,463,464,545,546,547,630,631,632,715,716,717,800,802,885,887,1055,1057,1225,1226,1227,1618,1626,1823,1824,2014,2052,1378,-329,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,801,886,1056,1331,1332,1424,1470,1516,2013,2051,1469],"ilvl":60,"quality":2}, -{"id":15665,"name":"Impenetrable Legguards","icon":"inv_pants_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[367,368,419,420,462,463,464,545,546,547,631,632,800,802,886,887,970,972,1055,1056,1057,1225,1226,1227,1423,1469,1571,1572,1823,1824,2051,-329,-327,-326,-324,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,630,801,885,971,1332,1378,1424,1470,1516,2052,-328],"ilvl":60,"quality":2}, -{"id":15666,"name":"Impenetrable Pauldrons","icon":"inv_shoulder_13","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,387,388,450,451,452,533,534,535,618,619,620,788,789,873,875,1043,1044,1045,1128,1129,1130,1464,1616,1622,2007,2008,1325,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,790,874,1326,1371,1372,1417,1418,1463],"ilvl":59,"quality":2}, -{"id":15667,"name":"Impenetrable Wall","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[526,781,866,1851,1965,383,443,865,1034,1036,1813,409,442,524,525,779,780,864,1035,1321,1413,1889,2041,441,-329,-324,-81,-69,-19,-15,-13,-11,-9,1367,-327],"ilvl":61,"quality":2}, -{"id":15668,"name":"Magnificent Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,409,440,441,442,523,524,525,608,609,610,778,779,780,863,864,865,1033,1034,1035,1459,1561,1812,2002,2003,2041,-329,-328,-327,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1320,1321,1366,1367,1412,1458,1504,1560,1813,2040],"ilvl":58,"quality":2}, -{"id":15669,"name":"Magnificent Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,422,467,549,550,634,635,803,890,1060,1573,1574,345,395,466,1517,2015,-329,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,344,396,421,465,548,633,804,805,888,889,1058,1059,1471,2016,-328],"ilvl":62,"quality":2}, -{"id":15670,"name":"Magnificent Helmet","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[344,345,395,396,465,466,467,549,550,633,634,635,720,804,805,888,889,890,1058,1059,1060,1228,1229,1230,1334,1380,1627,1628,2015,2016,548,718,2053,2054,-329,-328,-326,-325,-324,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,719,803,1333,1379,1517,1518,1825,1826,-327,1471,1425,1426],"ilvl":61,"quality":2}, -{"id":15671,"name":"Magnificent Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[211,212,213,214,216,217,218,438,439,440,521,522,523,606,607,608,776,777,778,861,862,863,1031,1032,1033,1365,1366,1411,1612,1613,1812,2039,-329,-326,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,215,1320,1412,1457,1458,1503,1504,1811,2001,2002,2040,-324],"ilvl":56,"quality":2}, -{"id":15672,"name":"Magnificent Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[413,414,450,451,452,533,534,535,618,619,620,703,704,705,788,789,790,873,874,875,958,959,960,1043,1044,1045,1213,1214,1215,1372,1463,1616,1622,1817,1818,2046,-329,-328,-327,-326,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1325,1371,1417,1464,1509,1510,2045],"ilvl":60,"quality":2}, -{"id":15673,"name":"Magnificent Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[452,620,704,874,1130,1616,1622,2045,388,450,534,535,618,619,1043,1044,1045,1129,1817,-81,-78,-69,-68,-19,-13,-12,-11,-9,387,451,533,703,788,789,790,873,875,1128,1214,-328,-325,-14,705,1213,1215,1818],"ilvl":58,"quality":2}, -{"id":15674,"name":"Magnificent Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,413,450,451,452,533,534,535,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1325,1371,1509,1565,1566,2007,2008,1372,-329,-328,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,414,1215,1326,1417,1463,1464,-326],"ilvl":60,"quality":2}, -{"id":15675,"name":"Magnificent Guard","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[526,781,866,1851,1965,383,443,865,1034,1036,1813,409,442,524,525,779,780,864,1035,1321,1413,1889,2041,441,-329,-324,-81,-69,-19,-15,-13,-11,-9,1367,-327],"ilvl":62,"quality":2}, -{"id":15676,"name":"Magnificent Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,422,465,466,467,548,549,550,634,635,803,805,888,889,890,974,1060,1229,1230,1333,1334,1573,1574,1825,2053,804,1058,633,-328,-327,-326,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,973,975,1059,1228,1826,2054,-329,-324],"ilvl":61,"quality":2}, -{"id":15677,"name":"Magnificent Shoulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,452,453,535,536,537,620,621,622,790,791,875,876,877,1046,1047,1130,1131,1132,1372,1418,1616,1623,2009,338,454,792,1045,2008,-329,-328,-327,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1326,1327,1464,1510,-326],"ilvl":61,"quality":2}, -{"id":15678,"name":"Triumphant Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,338,362,363,414,415,452,453,454,535,536,537,620,621,622,790,791,792,875,876,877,1045,1046,1047,1216,1217,1326,1373,1566,1567,2008,2009,1215,1372,1511,-329,-328,-326,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1510,-327],"ilvl":63,"quality":2}, -{"id":15679,"name":"Triumphant Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,383,409,441,443,524,525,526,609,610,611,779,780,781,864,865,866,1034,1036,1321,1561,1813,2003,2041,442,-329,-328,-327,-326,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1035,1367,1413,1459,1505],"ilvl":61,"quality":2}, -{"id":15680,"name":"Triumphant Chestpiece","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[345,346,370,371,396,397,423,468,470,551,553,636,638,806,807,808,891,892,893,1062,1063,1574,1575,2017,422,469,552,637,1061,2016,-329,-326,-324,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,1335,1381,-328,-327,1427,1519],"ilvl":65,"quality":2}, -{"id":15681,"name":"Triumphant Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[212,214,216,218,267,287,383,440,441,442,523,524,525,608,609,610,778,779,780,863,864,1033,1034,1035,1320,1321,1458,1505,1613,1614,2002,2003,409,-327,-325,-84,-81,-78,-69,-19,-18,-15,-13,-11,-9,865,1366,1412,1413,1459,1504,1812,2040,2041],"ilvl":58,"quality":2}, -{"id":15682,"name":"Triumphant Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[414,415,452,453,454,535,536,537,620,621,622,705,706,707,790,792,875,876,877,961,962,1045,1047,1215,1216,1616,1623,1818,1819,2046,791,960,1046,1217,1510,2047,-329,-328,-327,-326,-325,-81,-78,-69,-68,-19,-15,-14,-13,-11,-10,-9,1326,1327,1372,1418,1464,-324],"ilvl":63,"quality":2}, -{"id":15683,"name":"Triumphant Girdle","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[452,620,704,874,1130,1616,1622,2045,388,450,534,535,618,619,1043,1044,1045,1129,1817,-81,-78,-69,-68,-19,-13,-12,-11,-9,387,451,533,703,788,789,790,873,875,1128,1214,-328,-325,-14,705,1213,1215,1818],"ilvl":60,"quality":2}, -{"id":15684,"name":"Triumphant Skullcap","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[396,397,470,552,1062,1063,1232,1381,1628,1629,-329,-327,-326,-325,-84,-81,-78,-69,-68,-19,-14,-13,-11,-9,345,346,468,469,551,553,636,637,638,721,722,723,806,807,808,892,893,1061,1231,1233,1826,1827,2017,2055],"ilvl":64,"quality":2}, -{"id":15685,"name":"Triumphant Legplates","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[369,370,421,422,465,466,467,548,549,550,634,635,803,805,888,889,890,974,1060,1229,1230,1333,1334,1573,1574,1825,2053,804,1058,633,-328,-327,-326,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-10,-9,973,975,1059,1228,1826,2054,-329,-324],"ilvl":63,"quality":2}, -{"id":15686,"name":"Triumphant Shoulder Pads","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[337,362,363,388,389,452,453,535,536,537,620,621,622,790,791,875,876,877,1046,1047,1130,1131,1132,1372,1418,1616,1623,2009,338,454,792,1045,2008,-329,-328,-327,-325,-324,-84,-81,-78,-69,-19,-18,-13,-12,-11,-9,1326,1327,1464,1510,-326],"ilvl":63,"quality":2}, -{"id":15687,"name":"Triumphant Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[384,528,1038,1966,410,783,1037,444,445,527,782,867,868,1814,1852,1890,-81,-69,-19,-15,-13,-11,-9,2042,-328,-327],"ilvl":65,"quality":2}, -{"id":15689,"name":"Trader's Ring","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":5821,"name":"Bodyguard for Hire"}}]}, -{"id":15690,"name":"Kodobone Necklace","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":5501,"name":"Bone Collector"}}]}, -{"id":15691,"name":"Sidegunner Shottie","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.9,"ilvl":38,"quality":2,"sources":[{"quest":{"id":5943,"name":"Gizelton Caravan"}}]}, -{"id":15692,"name":"Kodo Brander","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.9,"ilvl":38,"quality":2,"sources":[{"quest":{"id":5943,"name":"Gizelton Caravan"}}]}, -{"id":15693,"name":"Grand Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,387,388,533,534,618,619,620,788,789,790,873,874,875,1043,1044,1045,1213,1214,1215,1325,1509,1616,1622,2007,2008,1129,535,-329,-328,-327,-326,-325,-324,-84,-81,-78,-69,-68,-19,-18,-13,-12,-9,1128,1130,1326,1372,1417,1418,1463,1464],"ilvl":59,"quality":2}, -{"id":15694,"name":"Merciless Greaves","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[334,359,411,446,447,448,529,531,614,615,616,784,785,786,869,870,871,1039,1041,1209,1210,1211,1415,1507,1563,2005,530,1323,-329,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-13,-11,-9,1040,-328,1369],"ilvl":54,"quality":2}, -{"id":15695,"name":"Studded Ring Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":5943,"name":"Gizelton Caravan"}}]}, -{"id":15697,"name":"Kodo Rustler Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,3,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":5561,"name":"Kodo Roundup"}}]}, -{"id":15698,"name":"Wrangling Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[8,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":5561,"name":"Kodo Roundup"}}]}, -{"id":15702,"name":"Chemist's Ring","icon":"inv_misc_bone_05","type":11,"stats":[0,0,4,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":15703,"name":"Chemist's Smock","icon":"inv_misc_cape_11","type":4,"stats":[0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":15704,"name":"Hunter's Insignia Medal","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"quest":{"id":5057,"name":"Past Endeavors"}}]}, -{"id":15705,"name":"Tidecrest Blade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[8,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":115,"weaponSpeed":2.6,"ilvl":57,"quality":2}, -{"id":15706,"name":"Hunt Tracker Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.5,"ilvl":57,"quality":2}, -{"id":15707,"name":"Brantwood Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,15,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":15708,"name":"Blight Leather Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,13,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":15709,"name":"Gearforge Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[11,0,11,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":15782,"name":"Beaststalker Blade","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.2,"ilvl":60,"quality":2,"factionRestriction":2}, -{"id":15783,"name":"Beasthunter Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":1.7,"ilvl":60,"quality":2,"factionRestriction":2}, -{"id":15784,"name":"Crystal Breeze Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,12,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15786,"name":"Fernpulse Jerkin","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,5,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15787,"name":"Willow Band Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,20,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15789,"name":"Deep River Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15791,"name":"Turquoise Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,23,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":15792,"name":"Plow Wood Spaulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,6,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":15794,"name":"Ripped Ogre Loincloth","icon":"inv_pants_wolf","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":15795,"name":"Emerald Mist Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[12,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":15796,"name":"Seaspray Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"factionRestriction":2}, -{"id":15797,"name":"Shining Armplates","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[2,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2,"factionRestriction":2}, -{"id":15799,"name":"Heroic Commendation Medal","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,15,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{}}]}, -{"id":15800,"name":"Intrepid Shortsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":2.6,"ilvl":58,"quality":3,"sources":[{"quest":{}}]}, -{"id":15801,"name":"Valiant Shortsword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":2.1,"ilvl":58,"quality":3,"sources":[{"quest":{}}]}, -{"id":15802,"name":"Mooncloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,11,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":19435}},{"crafted":{"profession":11,"spellId":19435}}]}, -{"id":15804,"name":"Cerise Drape","icon":"inv_misc_cape_18","type":4,"stats":[0,6,7,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15805,"name":"Penelope's Rose","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":15806,"name":"Mirah's Song","icon":"inv_sword_34","type":13,"weaponType":9,"handType":2,"stats":[9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":87,"weaponSpeed":1.8,"ilvl":61,"quality":3}, -{"id":15807,"name":"Light Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":8,"quality":1}, -{"id":15808,"name":"Fine Light Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":34,"weaponSpeed":2.7,"ilvl":21,"quality":1}, -{"id":15809,"name":"Heavy Crossbow","icon":"inv_weapon_crossbow_03","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":61,"weaponSpeed":2.8,"ilvl":34,"quality":1}, -{"id":15810,"name":"Short Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":60,"weaponSpeed":3.3,"ilvl":25,"quality":1}, -{"id":15811,"name":"Heavy Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":102,"weaponSpeed":3.8,"ilvl":35,"quality":1}, -{"id":15812,"name":"Orchid Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,20,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15813,"name":"Gold Link Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15814,"name":"Hameya's Slayer","icon":"inv_sword_34","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":2,"ilvl":60,"quality":2}, -{"id":15815,"name":"Hameya's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":15822,"name":"Shadowskin Spaulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":6031,"name":"Runecloth"}}],"factionRestriction":2}, -{"id":15823,"name":"Bricksteel Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":6031,"name":"Runecloth"}}],"factionRestriction":2}, -{"id":15824,"name":"Astoria Robes","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,30,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15825,"name":"Traphook Jerkin","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15827,"name":"Jadescale Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,23,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15853,"name":"Windreaper","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.5,"ilvl":45,"quality":3}, -{"id":15854,"name":"Dancing Sliver","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":114,"weaponSpeed":2.4,"ilvl":45,"quality":3}, -{"id":15855,"name":"Ring of Protection","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15856,"name":"Archlight Talisman","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,8,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15857,"name":"Magebane Scion","icon":"inv_staff_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15858,"name":"Freewind Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,12,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15859,"name":"Seapost Girdle","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15860,"name":"Blinkstrike Armguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[13,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15861,"name":"Swiftfoot Treads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,17,12,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15862,"name":"Blitzcleaver","icon":"inv_weapon_halberd_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":2.2,"ilvl":54,"quality":2}, -{"id":15863,"name":"Grave Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":1.6,"ilvl":54,"quality":2}, -{"id":15864,"name":"Condor Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":6134,"name":"Ghost-o-plasm Round Up"}}]}, -{"id":15865,"name":"Anchorhold Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":6134,"name":"Ghost-o-plasm Round Up"}}]}, -{"id":15866,"name":"Veildust Medicine Bag","icon":"inv_misc_bag_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"classAllowlist":[1]}, -{"id":15867,"name":"Prismcharm","icon":"inv_misc_gem_variety_02","type":12,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15873,"name":"Ragged John's Neverending Cup","icon":"inv_drink_03","type":12,"stats":[0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":15887,"name":"Heroic Guard","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,307,609,611,694,696,949,951,1119,1121,1205,1206,1321,1614,1676,1120,-325,-84,-78,-68,-47,-18,-17,-14,-12,-10,610,695,950,1204,1367,1459,1675,-329,-327],"ilvl":62,"quality":2}, -{"id":15890,"name":"Vanguard Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15891,"name":"Hulking Shield","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2}, -{"id":15892,"name":"Slayer's Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2}, -{"id":15893,"name":"Prospector's Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":15894,"name":"Bristlebark Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":15895,"name":"Burnt Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":15903,"name":"Right-Handed Claw","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":1.5,"ilvl":25,"quality":1}, -{"id":15904,"name":"Right-Handed Blades","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.5,"ilvl":35,"quality":1}, -{"id":15905,"name":"Right-Handed Brass Knuckles","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.4,"ilvl":15,"quality":1}, -{"id":15906,"name":"Left-Handed Brass Knuckles","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.4,"ilvl":15,"quality":1}, -{"id":15907,"name":"Left-Handed Claw","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":1.5,"ilvl":25,"quality":1}, -{"id":15909,"name":"Left-Handed Blades","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.5,"ilvl":35,"quality":1}, -{"id":15912,"name":"Buccaneer's Orb","icon":"inv_wand_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,112,113,232,233,234,503,505,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1878,1879,1954,2030,2031,504,1955,-81,-69,-19,-15,-13,-11,-9],"ilvl":23,"quality":2}, -{"id":15918,"name":"Conjurer's Sphere","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,180,250,511,512,766,767,768,851,1021,1022,1023,1357,1803,1841,1882,2034,2035,174,175,247,252,513,852,853,-327,-81,-69,-19,-15,-13,-11,-9,1883],"ilvl":38,"quality":2}, -{"id":15925,"name":"Journeyman's Stave","icon":"inv_staff_20","type":13,"weaponType":5,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":15926,"name":"Spellbinder Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":15927,"name":"Bright Sphere","icon":"inv_misc_gem_pearl_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2}, -{"id":15928,"name":"Silver-Thread Rod","icon":"inv_wand_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2}, -{"id":15929,"name":"Nightsky Orb","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":15930,"name":"Imperial Red Scepter","icon":"inv_wand_06","type":13,"weaponType":5,"handType":3,"stats":[0,2,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":15931,"name":"Arcane Star","icon":"inv_staff_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":15932,"name":"Disciple's Stein","icon":"inv_drink_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,227,228,754,839,1009,1799,1837,1875,1951,2027,-81,-69,-19,-15,-13,-11,-9],"ilvl":12,"quality":2}, -{"id":15933,"name":"Simple Branch","icon":"inv_staff_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,25,27,227,228,754,839,1009,1799,1800,1837,1838,1875,1876,1913,1914,1952,2027,2028,1951,-81,-69,-19,-15,-13,-11,-9],"ilvl":15,"quality":2}, -{"id":15934,"name":"Sage's Stave","icon":"inv_staff_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,152,153,237,248,249,508,510,763,764,765,848,850,1018,1020,1805,1880,1881,1956,2032,849,1019,1843,1957,2033,133,509,-81,-69,-19,-15,-13,-11,-9,1804,1842],"ilvl":32,"quality":2}, -{"id":15935,"name":"Durable Rod","icon":"inv_staff_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,247,249,511,764,765,766,849,850,851,1019,1020,1021,1805,1844,1882,1958,2033,2034,237,1806,510,1843,1881,509,-81,-69,-19,-15,-13,-11,-9,1957],"ilvl":34,"quality":2}, -{"id":15936,"name":"Duskwoven Branch","icon":"inv_misc_branch_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,440,521,523,777,778,861,863,1033,1811,214,438,776,862,1031,1457,1888,213,215,439,1812,1849,1850,1964,2040,-15,1887,-81,-69,-19,-11,-9,522,1032,1963,2039,-13,1503],"ilvl":55,"quality":2}, -{"id":15937,"name":"Hibernal Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2}, -{"id":15938,"name":"Mystical Orb","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,383,409,440,441,442,523,524,525,778,779,780,864,865,1033,1034,1035,1321,1812,1813,1888,1964,1965,2040,863,1851,1889,-328,-81,-69,-19,-15,-13,-11,-9,1320,1458,1850,2041],"ilvl":58,"quality":2}, -{"id":15939,"name":"Councillor's Scepter","icon":"inv_wand_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,383,409,440,441,442,523,524,525,778,779,780,864,865,1033,1034,1035,1321,1812,1813,1888,1964,1965,2040,863,1851,1889,-328,-81,-69,-19,-15,-13,-11,-9,1320,1458,1850,2041],"ilvl":59,"quality":2}, -{"id":15940,"name":"Elegant Scepter","icon":"inv_wand_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[526,781,866,1851,1965,383,443,865,1034,1036,1813,409,442,524,525,779,780,864,1035,1321,1413,1889,2041,441,-329,-324,-81,-69,-19,-15,-13,-11,-9,1367,-327],"ilvl":62,"quality":2}, -{"id":15941,"name":"High Councillor's Scepter","icon":"inv_wand_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[384,528,1038,1966,410,783,1037,444,445,527,782,867,868,1814,1852,1890,-81,-69,-19,-15,-13,-11,-9,2042,-328,-327],"ilvl":64,"quality":2}, -{"id":15942,"name":"Master's Rod","icon":"inv_staff_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[384,528,1038,1966,410,783,1037,444,445,527,782,867,868,1814,1852,1890,-81,-69,-19,-15,-13,-11,-9,2042,-328,-327],"ilvl":65,"quality":2}, -{"id":15943,"name":"Imbued Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[3,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":15944,"name":"Ancestral Orb","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":15945,"name":"Runic Stave","icon":"inv_staff_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":15946,"name":"Mystic's Sphere","icon":"inv_misc_gem_pearl_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":15947,"name":"Sanguine Star","icon":"inv_staff_23","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2}, -{"id":15962,"name":"Satyr's Rod","icon":"inv_staff_08","type":13,"weaponType":5,"handType":3,"stats":[0,1,9,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":15963,"name":"Stonecloth Branch","icon":"inv_staff_20","type":13,"weaponType":5,"handType":3,"stats":[3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":15964,"name":"Silksand Star","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":15965,"name":"Windchaser Orb","icon":"inv_staff_03","type":13,"weaponType":5,"handType":3,"stats":[0,1,2,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":15966,"name":"Venomshroud Orb","icon":"inv_misc_gem_pearl_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2}, -{"id":15967,"name":"Highborne Star","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,3,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":15968,"name":"Elunarian Sphere","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,2,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":2}, -{"id":15969,"name":"Beaded Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,227,228,754,839,1009,1799,1837,1875,1951,2027,-81,-69,-19,-15,-13,-11,-9],"ilvl":10,"quality":2}, -{"id":15970,"name":"Native Branch","icon":"inv_wand_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[5,16,25,27,227,228,754,839,1009,1799,1800,1837,1838,1875,1876,1913,1914,1952,2027,2028,1951,-81,-69,-19,-15,-13,-11,-9],"ilvl":15,"quality":2}, -{"id":15971,"name":"Aboriginal Rod","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[26,28,94,95,238,502,757,842,1012,1801,1802,1839,1840,1877,1878,1953,1954,2029,2030,-81,-69,-19,-15,-13,-11,-9],"ilvl":20,"quality":2}, -{"id":15972,"name":"Ritual Stein","icon":"inv_drink_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[94,95,112,113,232,233,234,503,505,758,759,760,843,844,845,1013,1014,1015,1802,1803,1840,1841,1878,1879,1954,2030,2031,504,1955,-81,-69,-19,-15,-13,-11,-9],"ilvl":24,"quality":2}, -{"id":15973,"name":"Watcher's Star","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[133,134,235,236,248,506,507,508,761,762,763,847,848,1016,1017,1018,1804,1842,1880,2032,846,-81,-69,-19,-15,-13,-11,-9,1956],"ilvl":30,"quality":2}, -{"id":15974,"name":"Pagan Rod","icon":"inv_staff_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[112,113,234,235,236,505,506,507,760,761,762,845,846,847,1015,1016,1017,1803,1841,1879,1955,2031,-81,-69,-19,-15,-13,-11,-9],"ilvl":26,"quality":2}, -{"id":15975,"name":"Raincaller Scepter","icon":"inv_wand_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[134,152,153,237,248,249,508,510,763,764,765,848,850,1018,1020,1805,1880,1881,1956,2032,849,1019,1843,1957,2033,133,509,-81,-69,-19,-15,-13,-11,-9,1804,1842],"ilvl":31,"quality":2}, -{"id":15976,"name":"Thistlefur Branch","icon":"inv_wand_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[152,153,174,179,247,249,511,764,765,766,849,850,851,1019,1020,1021,1805,1844,1882,1958,2033,2034,237,1806,510,1843,1881,509,-81,-69,-19,-15,-13,-11,-9,1957],"ilvl":36,"quality":2}, -{"id":15977,"name":"Vital Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[179,180,250,511,512,766,767,768,851,1021,1022,1023,1357,1803,1841,1882,2034,2035,174,175,247,252,513,852,853,-327,-81,-69,-19,-15,-13,-11,-9,1883],"ilvl":37,"quality":2}, -{"id":15978,"name":"Geomancer's Rod","icon":"inv_staff_32","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,180,181,251,514,769,854,1024,1807,1808,1884,1959,2035,176,1883,1845,1846,2036,-81,-69,-19,-15,-13,-11,-9,1960],"ilvl":41,"quality":2}, -{"id":15979,"name":"Flamecloth Stave","icon":"inv_staff_28","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[175,180,181,251,514,769,854,1024,1807,1808,1884,1959,2035,176,1883,1845,1846,2036,-81,-69,-19,-15,-13,-11,-9,1960],"ilvl":42,"quality":2}, -{"id":15980,"name":"Darkmist Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,254,435,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1885,1961,2037,1847,-19,436,-81,-69,-15,-13,-11,-9],"ilvl":46,"quality":2}, -{"id":15981,"name":"Lunar Sphere","icon":"inv_misc_gem_pearl_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[177,182,254,435,517,518,519,772,773,774,857,858,859,1027,1028,1029,1809,1885,1961,2037,1847,-19,436,-81,-69,-15,-13,-11,-9],"ilvl":47,"quality":2}, -{"id":15982,"name":"Bloodwoven Rod","icon":"inv_staff_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,435,436,437,519,520,773,774,775,858,859,860,1028,1029,1030,1810,1848,1886,1962,2038,-81,-69,-19,-15,-13,-11,-9,518],"ilvl":51,"quality":2}, -{"id":15983,"name":"Gaea's Scepter","icon":"inv_wand_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[178,183,213,215,437,438,439,520,775,776,777,860,861,862,1030,1031,1032,1318,1811,1848,1887,1963,2038,2039,-15,521,-328,-81,-69,-19,-13,-11,-9,522,1319,1364,1810,1849,1886,1962,-327,-324],"ilvl":52,"quality":2}, -{"id":15984,"name":"Opulent Scepter","icon":"inv_staff_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,440,521,523,777,778,861,863,1033,1811,214,438,776,862,1031,1457,1888,213,215,439,1812,1849,1850,1964,2040,-15,1887,-81,-69,-19,-11,-9,522,1032,1963,2039,-13,1503],"ilvl":56,"quality":2}, -{"id":15985,"name":"Arachnidian Branch","icon":"inv_wand_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[216,440,521,523,777,778,861,863,1033,1811,214,438,776,862,1031,1457,1888,213,215,439,1812,1849,1850,1964,2040,-15,1887,-81,-69,-19,-11,-9,522,1032,1963,2039,-13,1503],"ilvl":57,"quality":2}, -{"id":15986,"name":"Bonecaster's Star","icon":"inv_staff_23","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[214,216,383,409,440,441,442,523,524,525,778,779,780,864,865,1033,1034,1035,1321,1812,1813,1888,1964,1965,2040,863,1851,1889,-328,-81,-69,-19,-15,-13,-11,-9,1320,1458,1850,2041],"ilvl":60,"quality":2}, -{"id":15987,"name":"Astral Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[526,781,866,1851,1965,383,443,865,1034,1036,1813,409,442,524,525,779,780,864,1035,1321,1413,1889,2041,441,-329,-324,-81,-69,-19,-15,-13,-11,-9,1367,-327],"ilvl":61,"quality":2}, -{"id":15988,"name":"Resplendent Orb","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[526,781,866,1851,1965,383,443,865,1034,1036,1813,409,442,524,525,779,780,864,1035,1321,1413,1889,2041,441,-329,-324,-81,-69,-19,-15,-13,-11,-9,1367,-327],"ilvl":63,"quality":2}, -{"id":15989,"name":"Eternal Rod","icon":"inv_staff_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[384,528,1038,1966,410,783,1037,444,445,527,782,867,868,1814,1852,1890,-81,-69,-19,-15,-13,-11,-9,2042,-328,-327],"ilvl":65,"quality":2}, -{"id":15990,"name":"Enduring Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[6,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":15991,"name":"Warleader's Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":2}, -{"id":15995,"name":"Thorium Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":2.5,"ilvl":52,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19792}},{"crafted":{"profession":4,"spellId":19792}}]}, -{"id":15999,"name":"Spellpower Goggles Xtreme Plus","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19794}},{"crafted":{"profession":4,"spellId":19794}}]}, -{"id":16004,"name":"Dark Iron Rifle","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":167,"weaponSpeed":2.7,"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19796}},{"crafted":{"profession":4,"spellId":19796}}]}, -{"id":16007,"name":"Flawless Arcanite Rifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,9,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":204,"weaponSpeed":3,"ilvl":61,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19833}},{"crafted":{"profession":4,"spellId":19833}}]}, -{"id":16008,"name":"Master Engineer's Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19825}},{"crafted":{"profession":4,"spellId":19825}}]}, -{"id":16009,"name":"Voice Amplification Modulator","icon":"inv_jewelry_amulet_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":19819}},{"crafted":{"profession":4,"spellId":19819}}]}, -{"id":16022,"name":"Arcanite Dragonling","icon":"inv_misc_head_dragon_bronze","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":19830}},{"crafted":{"profession":4,"spellId":19830}}]}, -{"id":16039,"name":"Ta'Kierthan Songblade","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":194,"weaponSpeed":3.3,"ilvl":57,"quality":3}, -{"id":16058,"name":"Fordring's Seal","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":16309,"name":"Drakefire Amulet","icon":"inv_jewelry_talisman_11","type":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":16335,"name":"Senior Sergeant's Insignia","icon":"inv_misc_monsterscales_15","type":2,"stats":[0,0,17,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16341,"name":"Sergeant's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16342,"name":"Sergeant's Cape","icon":"inv_misc_cape_21","type":4,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16345,"name":"High Warlord's Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16369,"name":"Knight-Lieutenant's Silk Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16391,"name":"Knight-Lieutenant's Silk Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16392,"name":"Knight-Lieutenant's Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16393,"name":"Knight-Lieutenant's Dragonhide Footwraps","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,12,17,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16396,"name":"Knight-Lieutenant's Leather Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16397,"name":"Knight-Lieutenant's Dragonhide Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16401,"name":"Knight-Lieutenant's Chain Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,7,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16403,"name":"Knight-Lieutenant's Chain Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,8,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16405,"name":"Knight-Lieutenant's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[8,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16406,"name":"Knight-Lieutenant's Plate Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16409,"name":"Knight-Lieutenant's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[15,0,16,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16410,"name":"Knight-Lieutenant's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[15,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16413,"name":"Knight-Captain's Silk Raiment","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16414,"name":"Knight-Captain's Silk Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16415,"name":"Lieutenant Commander's Silk Spaulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16416,"name":"Lieutenant Commander's Crown","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,16,16,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Regalia","setId":343}, -{"id":16417,"name":"Knight-Captain's Leather Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16418,"name":"Lieutenant Commander's Leather Veil","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,6,26,0,0,10,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16419,"name":"Knight-Captain's Leather Legguards","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,7,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16420,"name":"Lieutenant Commander's Leather Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,7,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Vestments","setId":348}, -{"id":16421,"name":"Knight-Captain's Dragonhide Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,13,25,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16422,"name":"Knight-Captain's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,23,9,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16423,"name":"Lieutenant Commander's Dragonhide Epaulets","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,10,22,7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16424,"name":"Lieutenant Commander's Dragonhide Shroud","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,19,31,11,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Sanctuary","setId":381}, -{"id":16425,"name":"Knight-Captain's Chain Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,23,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16426,"name":"Knight-Captain's Chain Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,12,26,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16427,"name":"Lieutenant Commander's Chain Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16428,"name":"Lieutenant Commander's Chain Helmet","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,16,29,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuit","setId":362}, -{"id":16429,"name":"Lieutenant Commander's Plate Helm","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16430,"name":"Knight-Captain's Plate Chestguard","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[9,6,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16431,"name":"Knight-Captain's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16432,"name":"Lieutenant Commander's Plate Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[7,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlegear","setId":282}, -{"id":16433,"name":"Knight-Captain's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[9,8,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16434,"name":"Lieutenant Commander's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16435,"name":"Knight-Captain's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16436,"name":"Lieutenant Commander's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[12,12,12,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Aegis","setId":401}, -{"id":16437,"name":"Marshal's Silk Footwraps","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,33,18,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16440,"name":"Marshal's Silk Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,23,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16441,"name":"Field Marshal's Coronet","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16442,"name":"Marshal's Silk Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,42,26,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16443,"name":"Field Marshal's Silk Vestments","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16444,"name":"Field Marshal's Silk Spaulders","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,33,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Field Marshal's Regalia","setId":388,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16446,"name":"Marshal's Leather Footguards","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16448,"name":"Marshal's Dragonhide Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,20,33,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16449,"name":"Field Marshal's Dragonhide Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,14,32,15,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16450,"name":"Marshal's Dragonhide Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,24,34,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,18,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16451,"name":"Field Marshal's Dragonhide Helmet","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,20,45,15,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16452,"name":"Field Marshal's Dragonhide Breastplate","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,25,37,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16453,"name":"Field Marshal's Leather Chestpiece","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,26,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16454,"name":"Marshal's Leather Handgrips","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,20,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16455,"name":"Field Marshal's Leather Mask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,27,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16456,"name":"Marshal's Leather Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,27,27,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16457,"name":"Field Marshal's Leather Epaulets","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,21,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Field Marshal's Vestments","setId":394,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16459,"name":"Marshal's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,18,29,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Field Marshal's Sanctuary","setId":397,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16462,"name":"Marshal's Chain Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,18,25,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16463,"name":"Marshal's Chain Grips","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,14,19,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16465,"name":"Field Marshal's Chain Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16466,"name":"Field Marshal's Chain Breastplate","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16467,"name":"Marshal's Chain Legguards","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,23,34,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16468,"name":"Field Marshal's Chain Spaulders","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,18,27,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Field Marshal's Pursuit","setId":395,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16471,"name":"Marshal's Lamellar Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[26,0,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16472,"name":"Marshal's Lamellar Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[23,0,29,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16473,"name":"Field Marshal's Lamellar Chestplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16474,"name":"Field Marshal's Lamellar Faceguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16475,"name":"Marshal's Lamellar Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[33,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16476,"name":"Field Marshal's Lamellar Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[16,0,29,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Field Marshal's Aegis","setId":402,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16477,"name":"Field Marshal's Plate Armor","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[16,14,33,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16478,"name":"Field Marshal's Plate Helm","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[28,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16479,"name":"Marshal's Plate Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,0,28,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16480,"name":"Field Marshal's Plate Shoulderguards","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[18,16,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16483,"name":"Marshal's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[18,12,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16484,"name":"Marshal's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[20,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Field Marshal's Battlegear","setId":384,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":16485,"name":"Blood Guard's Silk Footwraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16486,"name":"First Sergeant's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16487,"name":"Blood Guard's Silk Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16489,"name":"Champion's Silk Hood","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,16,16,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16490,"name":"Legionnaire's Silk Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16491,"name":"Legionnaire's Silk Robes","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16492,"name":"Champion's Silk Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"setName":"Champion's Regalia","setId":341}, -{"id":16494,"name":"Blood Guard's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,12,17,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16496,"name":"Blood Guard's Dragonhide Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16497,"name":"First Sergeant's Leather Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16498,"name":"Blood Guard's Leather Treads","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16499,"name":"Blood Guard's Leather Vices","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16501,"name":"Champion's Dragonhide Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,10,22,7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16502,"name":"Legionnaire's Dragonhide Trousers","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,23,9,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16503,"name":"Champion's Dragonhide Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,19,31,11,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16504,"name":"Legionnaire's Dragonhide Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,25,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"setName":"Champion's Sanctuary","setId":382}, -{"id":16505,"name":"Legionnaire's Leather Hauberk","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,13,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16506,"name":"Champion's Leather Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,6,26,0,0,10,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16507,"name":"Champion's Leather Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,7,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16508,"name":"Legionnaire's Leather Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,7,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"setName":"Champion's Vestments","setId":347}, -{"id":16509,"name":"Blood Guard's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[8,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16510,"name":"Blood Guard's Plate Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16513,"name":"Legionnaire's Plate Armor","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[9,6,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16514,"name":"Champion's Plate Headguard","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16515,"name":"Legionnaire's Plate Legguards","icon":"inv_pants_06","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16516,"name":"Champion's Plate Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[7,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlegear","setId":281}, -{"id":16518,"name":"Blood Guard's Mail Walkers","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,22,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16519,"name":"Blood Guard's Mail Grips","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[6,0,19,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16521,"name":"Champion's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,25,9,0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16522,"name":"Legionnaire's Mail Chestpiece","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16523,"name":"Legionnaire's Mail Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,5,27,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16524,"name":"Champion's Mail Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,29,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"setName":"Champion's Earthshaker","setId":301}, -{"id":16525,"name":"Legionnaire's Chain Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,23,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16526,"name":"Champion's Chain Headguard","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,16,29,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16527,"name":"Legionnaire's Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,12,26,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16528,"name":"Champion's Chain Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16530,"name":"Blood Guard's Chain Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,8,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16531,"name":"Blood Guard's Chain Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,7,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuit","setId":361}, -{"id":16532,"name":"First Sergeant's Mail Wristguards","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16533,"name":"Warlord's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16534,"name":"General's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,42,26,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16535,"name":"Warlord's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16536,"name":"Warlord's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,33,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16539,"name":"General's Silk Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,33,18,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16540,"name":"General's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,23,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"setName":"Warlord's Regalia","setId":387,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16541,"name":"Warlord's Plate Armor","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[16,14,33,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16542,"name":"Warlord's Plate Headpiece","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[28,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16543,"name":"General's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,0,28,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16544,"name":"Warlord's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[18,16,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16545,"name":"General's Plate Boots","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[18,12,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16548,"name":"General's Plate Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[20,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"setName":"Warlord's Battlegear","setId":383,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16549,"name":"Warlord's Dragonhide Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,25,37,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16550,"name":"Warlord's Dragonhide Helmet","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,20,45,15,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16551,"name":"Warlord's Dragonhide Epaulets","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,14,32,15,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16552,"name":"General's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,24,34,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,18,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16554,"name":"General's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,18,29,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16555,"name":"General's Dragonhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,20,33,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"setName":"Warlord's Sanctuary","setId":398,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16558,"name":"General's Leather Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16560,"name":"General's Leather Mitts","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,20,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16561,"name":"Warlord's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,27,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16562,"name":"Warlord's Leather Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,21,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16563,"name":"Warlord's Leather Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,26,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16564,"name":"General's Leather Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,27,27,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"setName":"Warlord's Vestments","setId":393,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16565,"name":"Warlord's Chain Chestpiece","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16566,"name":"Warlord's Chain Helmet","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16567,"name":"General's Chain Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,23,34,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16568,"name":"Warlord's Chain Shoulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,18,27,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16569,"name":"General's Chain Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,18,25,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16571,"name":"General's Chain Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,14,19,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"setName":"Warlord's Pursuit","setId":396,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16573,"name":"General's Mail Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,33,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16574,"name":"General's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,18,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16577,"name":"Warlord's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,15,49,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16578,"name":"Warlord's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,16,48,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16579,"name":"General's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,43,23,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16580,"name":"Warlord's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,17,34,0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Warlord's Earthshaker","setId":386,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":16604,"name":"Moon Robes of Elune","icon":"inv_chest_cloth_84v3","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":16605,"name":"Friar's Robes of the Light","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":16606,"name":"Juju Hex Robes","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":16607,"name":"Acolyte's Sacrificial Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":16608,"name":"Aquarius Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"classAllowlist":[1]}, -{"id":16622,"name":"Thornflinger","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":2.8,"ilvl":57,"quality":2}, -{"id":16623,"name":"Opaline Medallion","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":16658,"name":"Wildhunter Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":247,"name":"The Hunt Completed"}}],"factionRestriction":2}, -{"id":16659,"name":"Deftkin Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":824,"name":"Je'neu of the Earthen Ring"}}],"factionRestriction":2}, -{"id":16660,"name":"Driftmire Shield","icon":"inv_shield_16","type":13,"weaponType":7,"handType":3,"stats":[2,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":824,"name":"Je'neu of the Earthen Ring"}}],"factionRestriction":2}, -{"id":16661,"name":"Soft Willow Cape","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":824,"name":"Je'neu of the Earthen Ring"}}],"factionRestriction":2}, -{"id":16666,"name":"Vest of Elements","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,13,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16667,"name":"Coif of Elements","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,13,23,0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16668,"name":"Kilt of Elements","icon":"inv_pants_03","type":9,"armorType":3,"stats":[12,6,7,15,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16669,"name":"Pauldrons of Elements","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,14,15,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10339,"zoneId":1583}}]}, -{"id":16670,"name":"Boots of Elements","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,9,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9196,"zoneId":1583}}]}, -{"id":16671,"name":"Bindings of Elements","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16672,"name":"Gauntlets of Elements","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,4,10,0,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9816,"zoneId":1583}}]}, -{"id":16673,"name":"Cord of Elements","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,6,17,0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"The Elements","setId":187,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16674,"name":"Beaststalker's Tunic","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,14,27,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16675,"name":"Beaststalker's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,14,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":16676,"name":"Beaststalker's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,10,17,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9237,"zoneId":1583}}]}, -{"id":16677,"name":"Beaststalker's Cap","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,14,26,0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16678,"name":"Beaststalker's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[6,18,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16679,"name":"Beaststalker's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,8,21,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":16680,"name":"Beaststalker's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,9,15,0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16681,"name":"Beaststalker's Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Beaststalker Armor","setId":186,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16682,"name":"Magister's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,9,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10558,"zoneId":2017}}]}, -{"id":16683,"name":"Magister's Bindings","icon":"inv_jewelry_ring_23","type":6,"armorType":1,"stats":[0,0,4,15,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16684,"name":"Magister's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,9,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}}]}, -{"id":16685,"name":"Magister's Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,6,21,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16686,"name":"Magister's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,11,30,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16687,"name":"Magister's Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,12,20,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16688,"name":"Magister's Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,9,31,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16689,"name":"Magister's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,6,22,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Magister's Regalia","setId":181,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":16690,"name":"Devout Robe","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,13,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16691,"name":"Devout Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,9,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":16692,"name":"Devout Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,9,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10811,"zoneId":2017}}]}, -{"id":16693,"name":"Devout Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,13,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16694,"name":"Devout Skirt","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,12,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16695,"name":"Devout Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,4,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10264,"zoneId":1583}}]}, -{"id":16696,"name":"Devout Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,4,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16697,"name":"Devout Bracers","icon":"inv_belt_31","type":6,"armorType":1,"stats":[0,0,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Vestments of the Devout","setId":182,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16698,"name":"Dreadmist Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,15,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16699,"name":"Dreadmist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,15,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16700,"name":"Dreadmist Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,20,21,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16701,"name":"Dreadmist Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,14,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":16702,"name":"Dreadmist Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,10,17,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16703,"name":"Dreadmist Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,10,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16704,"name":"Dreadmist Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,17,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":16705,"name":"Dreadmist Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,13,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Dreadmist Raiment","setId":183,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}}]}, -{"id":16706,"name":"Wildheart Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,13,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16707,"name":"Shadowcraft Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,20,28,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16708,"name":"Shadowcraft Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,22,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":16709,"name":"Shadowcraft Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,25,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16710,"name":"Shadowcraft Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16711,"name":"Shadowcraft Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":16712,"name":"Shadowcraft Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,14,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9236,"zoneId":1583}}]}, -{"id":16713,"name":"Shadowcraft Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,14,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16714,"name":"Wildheart Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,7,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16715,"name":"Wildheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,10,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10596,"zoneId":1583}}]}, -{"id":16716,"name":"Wildheart Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,9,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":16717,"name":"Wildheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,0,9,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10516,"zoneId":2017}}]}, -{"id":16718,"name":"Wildheart Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,9,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10268,"zoneId":1583}}]}, -{"id":16719,"name":"Wildheart Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[13,12,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16720,"name":"Wildheart Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,6,10,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Wildheart Raiment","setId":185,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16721,"name":"Shadowcraft Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,26,13,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Shadowcraft Armor","setId":184,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16722,"name":"Lightforge Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[7,4,10,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":16723,"name":"Lightforge Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,9,15,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16724,"name":"Lightforge Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[14,0,9,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10808,"zoneId":2017}}]}, -{"id":16725,"name":"Lightforge Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[8,0,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":16726,"name":"Lightforge Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,21,16,0,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16727,"name":"Lightforge Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[13,6,20,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16728,"name":"Lightforge Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,8,14,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16729,"name":"Lightforge Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[9,4,15,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Lightforge Armor","setId":188,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":16730,"name":"Breastplate of Valor","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[15,10,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":16731,"name":"Helm of Valor","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[15,9,23,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":16732,"name":"Legplates of Valor","icon":"inv_pants_04","type":9,"armorType":4,"stats":[23,11,15,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":16733,"name":"Spaulders of Valor","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[11,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":16734,"name":"Boots of Valor","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[8,4,20,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10506,"zoneId":2057}}]}, -{"id":16735,"name":"Bracers of Valor","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[7,3,14,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}}]}, -{"id":16736,"name":"Belt of Valor","icon":"inv_belt_34","type":8,"armorType":4,"stats":[14,7,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1583,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":16737,"name":"Gauntlets of Valor","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[17,3,10,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"setName":"Battlegear of Valor","setId":189,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":16738,"name":"Witherseed Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,7,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":16739,"name":"Rugwood Mantle","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,6,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":16740,"name":"Shredder Operating Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,11,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"factionRestriction":2}, -{"id":16741,"name":"Oilrag Handwraps","icon":"inv_gauntlets_12","type":7,"armorType":2,"stats":[0,0,2,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"factionRestriction":2}, -{"id":16768,"name":"Furbolg Medicine Pouch","icon":"inv_misc_bag_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"soldBy":{"npcId":11555,"npcName":"Gorn One Eye","zoneId":361}}]}, -{"id":16769,"name":"Furbolg Medicine Totem","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.5,"ilvl":52,"quality":2,"sources":[{"soldBy":{"npcId":11555,"npcName":"Gorn One Eye","zoneId":361}}]}, -{"id":16787,"name":"Amulet of Draconic Subversion","icon":"inv_misc_armorkit_14","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":16788,"name":"Captain Rackmore's Wheel","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2}, -{"id":16789,"name":"Captain Rackmore's Tiller","icon":"inv_staff_08","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":1.5,"ilvl":36,"quality":2}, -{"id":16791,"name":"Silkstream Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":6027,"name":"Book of the Ancients"}}]}, -{"id":16793,"name":"Arcmetal Shoulders","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":6027,"name":"Book of the Ancients"}}]}, -{"id":16794,"name":"Gripsteel Wristguards","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[5,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":16795,"name":"Arcanist Crown","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,42,17,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16796,"name":"Arcanist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,39,17,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16797,"name":"Arcanist Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":16798,"name":"Arcanist Robes","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,42,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16799,"name":"Arcanist Bindings","icon":"inv_belt_29","type":6,"armorType":1,"stats":[0,0,23,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16800,"name":"Arcanist Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,26,9,11,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16801,"name":"Arcanist Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,27,12,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16802,"name":"Arcanist Belt","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,31,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[3],"setName":"Arcanist Regalia","setId":201,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16803,"name":"Felheart Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,30,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16804,"name":"Felheart Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,26,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16805,"name":"Felheart Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,8,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16806,"name":"Felheart Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,30,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16807,"name":"Felheart Shoulder Pads","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,38,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":16808,"name":"Felheart Horns","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,43,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16809,"name":"Felheart Robes","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,46,11,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16810,"name":"Felheart Pants","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,36,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[8],"setName":"Felheart Raiment","setId":203,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16811,"name":"Boots of Prophecy","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,33,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16812,"name":"Gloves of Prophecy","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,24,8,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16813,"name":"Circlet of Prophecy","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,43,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16814,"name":"Pants of Prophecy","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,41,10,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16815,"name":"Robes of Prophecy","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,45,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16816,"name":"Mantle of Prophecy","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,36,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":16817,"name":"Girdle of Prophecy","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,32,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16818,"name":"Netherwind Belt","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,32,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16819,"name":"Vambraces of Prophecy","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,22,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[5],"setName":"Vestments of Prophecy","setId":202,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16820,"name":"Nightslayer Chestpiece","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,29,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16821,"name":"Nightslayer Cover","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,20,21,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16822,"name":"Nightslayer Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,33,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16823,"name":"Nightslayer Shoulder Pads","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,26,12,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":16824,"name":"Nightslayer Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16825,"name":"Nightslayer Bracelets","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16826,"name":"Nightslayer Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,18,26,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16827,"name":"Nightslayer Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,17,24,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[6],"setName":"Nightslayer Armor","setId":204,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16828,"name":"Cenarion Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,32,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16829,"name":"Cenarion Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,27,8,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16830,"name":"Cenarion Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,26,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16831,"name":"Cenarion Gloves","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,33,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16832,"name":"Bloodfang Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,25,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16833,"name":"Cenarion Vestments","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,44,10,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16834,"name":"Cenarion Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,51,10,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16835,"name":"Cenarion Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,35,10,23,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16836,"name":"Cenarion Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,32,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[1],"setName":"Cenarion Raiment","setId":205,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":16837,"name":"Earthfury Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,23,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16838,"name":"Earthfury Belt","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,33,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16839,"name":"Earthfury Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,25,8,15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16840,"name":"Earthfury Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,27,5,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16841,"name":"Earthfury Vestments","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,43,10,13,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16842,"name":"Earthfury Helmet","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,44,10,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16843,"name":"Earthfury Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,35,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16844,"name":"Earthfury Epaulets","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,33,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[7],"setName":"The Earthfury","setId":207,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":16845,"name":"Giantstalker's Breastplate","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,18,30,0,0,0,14,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16846,"name":"Giantstalker's Helmet","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,26,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16847,"name":"Giantstalker's Leggings","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,35,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16848,"name":"Giantstalker's Epaulets","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,16,14,0,0,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":16849,"name":"Giantstalker's Boots","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,19,31,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16850,"name":"Giantstalker's Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,14,15,0,0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16851,"name":"Giantstalker's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,20,22,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16852,"name":"Giantstalker's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,12,23,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[2],"setName":"Giantstalker Armor","setId":206,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}}]}, -{"id":16853,"name":"Lawbringer Chestguard","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,43,14,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16854,"name":"Lawbringer Helm","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[0,0,42,14,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16855,"name":"Lawbringer Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,38,14,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16856,"name":"Lawbringer Spaulders","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[0,0,33,14,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":16857,"name":"Lawbringer Bracers","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,11,14,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16858,"name":"Lawbringer Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,34,17,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16859,"name":"Lawbringer Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,30,12,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16860,"name":"Lawbringer Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,28,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[4],"setName":"Lawbringer Armor","setId":208,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16861,"name":"Bracers of Might","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[11,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16862,"name":"Sabatons of Might","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[15,0,26,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}}]}, -{"id":16863,"name":"Gauntlets of Might","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[22,0,17,0,0,10,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":16864,"name":"Belt of Might","icon":"inv_belt_09","type":8,"armorType":4,"stats":[21,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2717,"otherName":"Trash"}}]}, -{"id":16865,"name":"Breastplate of Might","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[20,0,28,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":16866,"name":"Helm of Might","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[15,0,35,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":16867,"name":"Legplates of Might","icon":"inv_pants_04","type":9,"armorType":4,"stats":[24,0,23,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":16868,"name":"Pauldrons of Might","icon":"inv_shoulder_15","type":3,"armorType":4,"stats":[15,0,22,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Might","setId":209,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":16873,"name":"Braidfur Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,5,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":16886,"name":"Outlaw Sabre","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":67,"weaponSpeed":2.7,"ilvl":30,"quality":3,"factionRestriction":2}, -{"id":16887,"name":"Witch's Finger","icon":"inv_wand_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"factionRestriction":2}, -{"id":16889,"name":"Polished Walking Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":50,"weaponSpeed":2.6,"ilvl":24,"quality":2,"sources":[{"quest":{"id":6544,"name":"Torek's Assault"}}],"factionRestriction":2}, -{"id":16890,"name":"Slatemetal Cutlass","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":35,"weaponSpeed":2.2,"ilvl":24,"quality":2,"sources":[{"quest":{"id":6544,"name":"Torek's Assault"}}],"factionRestriction":2}, -{"id":16891,"name":"Claystone Shortsword","icon":"inv_sword_23","type":13,"weaponType":9,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.2,"ilvl":21,"quality":2,"factionRestriction":2}, -{"id":16894,"name":"Clear Crystal Rod","icon":"inv_wand_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":51,"weaponSpeed":3.1,"ilvl":21,"quality":2,"factionRestriction":2}, -{"id":16897,"name":"Stormrage Chestguard","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,0,43,19,17,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16898,"name":"Stormrage Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,30,12,11,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16899,"name":"Stormrage Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,31,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16900,"name":"Stormrage Cover","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,50,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16901,"name":"Stormrage Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,42,22,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16902,"name":"Stormrage Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,34,13,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16903,"name":"Stormrage Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,35,12,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16904,"name":"Stormrage Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,25,15,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[1],"setName":"Stormrage Raiment","setId":214,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16905,"name":"Bloodfang Chestpiece","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,26,26,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16906,"name":"Bloodfang Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,25,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16907,"name":"Bloodfang Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16908,"name":"Bloodfang Hood","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,27,40,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16909,"name":"Bloodfang Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,37,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16910,"name":"Bloodfang Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,20,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16911,"name":"Bloodfang Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,23,13,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[6],"setName":"Bloodfang Armor","setId":213,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16912,"name":"Netherwind Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,28,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16913,"name":"Netherwind Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,17,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16914,"name":"Netherwind Crown","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,42,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16915,"name":"Netherwind Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,42,26,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16916,"name":"Netherwind Robes","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,41,27,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16917,"name":"Netherwind Mantle","icon":"inv_shoulder_32","type":3,"armorType":1,"stats":[0,0,27,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16918,"name":"Netherwind Bindings","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,24,16,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[3],"setName":"Netherwind Regalia","setId":210,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16919,"name":"Boots of Transcendence","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,32,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16920,"name":"Handguards of Transcendence","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,32,13,13,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16921,"name":"Halo of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,43,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16922,"name":"Leggings of Transcendence","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,36,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16923,"name":"Robes of Transcendence","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,43,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16924,"name":"Pauldrons of Transcendence","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16925,"name":"Belt of Transcendence","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,40,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16926,"name":"Bindings of Transcendence","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,21,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[5],"setName":"Vestments of Transcendence","setId":211,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16927,"name":"Nemesis Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,34,20,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16928,"name":"Nemesis Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,13,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16929,"name":"Nemesis Skullcap","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,38,27,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16930,"name":"Nemesis Leggings","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,35,33,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16931,"name":"Nemesis Robes","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,27,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16932,"name":"Nemesis Spaulders","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,30,20,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16933,"name":"Nemesis Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,23,21,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16934,"name":"Nemesis Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,28,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[8],"setName":"Nemesis Raiment","setId":212,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16935,"name":"Dragonstalker's Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,16,17,0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16936,"name":"Dragonstalker's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,25,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16937,"name":"Dragonstalker's Spaulders","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,21,15,0,0,20,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16938,"name":"Dragonstalker's Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,30,16,0,0,23,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16939,"name":"Dragonstalker's Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,31,38,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16940,"name":"Dragonstalker's Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,23,27,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16941,"name":"Dragonstalker's Greaves","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,20,18,0,0,6,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16942,"name":"Dragonstalker's Breastplate","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,36,29,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[2],"setName":"Dragonstalker Armor","setId":215,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16943,"name":"Bracers of Ten Storms","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,13,16,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16944,"name":"Belt of Ten Storms","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,30,12,11,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16945,"name":"Epaulets of Ten Storms","icon":"inv_shoulder_33","type":3,"armorType":3,"stats":[0,0,23,17,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16946,"name":"Legplates of Ten Storms","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,32,25,20,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16947,"name":"Helmet of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,42,12,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16948,"name":"Gauntlets of Ten Storms","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,30,11,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16949,"name":"Greaves of Ten Storms","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,31,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16950,"name":"Breastplate of Ten Storms","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,48,20,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[7],"setName":"The Ten Storms","setId":216,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16951,"name":"Judgement Bindings","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,26,11,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16952,"name":"Judgement Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,33,24,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16953,"name":"Judgement Spaulders","icon":"inv_shoulder_37","type":3,"armorType":4,"stats":[0,0,31,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16954,"name":"Judgement Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,50,22,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16955,"name":"Judgement Crown","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,39,29,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16956,"name":"Judgement Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,34,23,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16957,"name":"Judgement Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,31,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16958,"name":"Judgement Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,39,27,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[4],"setName":"Judgement Armor","setId":217,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16959,"name":"Bracelets of Wrath","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[13,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":16960,"name":"Waistband of Wrath","icon":"inv_belt_09","type":8,"armorType":4,"stats":[20,0,20,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":16961,"name":"Pauldrons of Wrath","icon":"inv_shoulder_34","type":3,"armorType":4,"stats":[13,0,27,0,0,0,0,0,0,10,18,0,0,0,0,0,0,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":16962,"name":"Legplates of Wrath","icon":"inv_pants_04","type":9,"armorType":4,"stats":[19,0,27,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":16963,"name":"Helm of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[17,0,40,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":16964,"name":"Gauntlets of Wrath","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[15,0,20,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":16965,"name":"Sabatons of Wrath","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[13,0,30,0,0,0,0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,559,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":16966,"name":"Breastplate of Wrath","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[17,0,40,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Wrath","setId":218,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":16967,"name":"Feralas Ahi","icon":"inv_misc_monsterhead_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":1}, -{"id":16975,"name":"Warsong Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3,"factionRestriction":2}, -{"id":16977,"name":"Warsong Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3,"factionRestriction":2}, -{"id":16978,"name":"Warsong Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[10,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":3,"factionRestriction":2}, -{"id":16979,"name":"Flarecore Gloves","icon":"inv_gauntlets_26","type":7,"armorType":1,"stats":[0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"classAllowlist":[5,3,8],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":20849}},{"crafted":{"profession":11,"spellId":20849}}]}, -{"id":16980,"name":"Flarecore Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,9,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":20848}},{"crafted":{"profession":11,"spellId":20848}}]}, -{"id":16981,"name":"Owlbeard Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"factionRestriction":2}, -{"id":16982,"name":"Corehound Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":20853}},{"crafted":{"profession":8,"spellId":20853}}]}, -{"id":16983,"name":"Molten Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,16,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":20854}},{"crafted":{"profession":8,"spellId":20854}}]}, -{"id":16984,"name":"Black Dragonscale Boots","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"setName":"Black Dragon Mail","setId":489,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":20855}},{"crafted":{"profession":8,"spellId":20855}}]}, -{"id":16985,"name":"Windseeker Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":16986,"name":"Sandspire Gloves","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":16987,"name":"Screecher Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,6,3,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":16988,"name":"Fiery Chain Shoulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20873}},{"crafted":{"profession":2,"spellId":20873}}]}, -{"id":16989,"name":"Fiery Chain Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,10,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20872}},{"crafted":{"profession":2,"spellId":20872}}]}, -{"id":16990,"name":"Spritekin Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"factionRestriction":2}, -{"id":16992,"name":"Smokey's Explosive Launcher","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":2.7,"ilvl":60,"quality":2}, -{"id":16993,"name":"Smokey's Fireshooter","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":1.9,"ilvl":60,"quality":2}, -{"id":16994,"name":"Duskwing Gloves","icon":"inv_gauntlets_02","type":7,"armorType":2,"stats":[0,0,11,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"factionRestriction":2}, -{"id":16995,"name":"Duskwing Mantle","icon":"inv_shoulder_19","type":3,"armorType":2,"stats":[0,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"factionRestriction":2}, -{"id":16996,"name":"Gorewood Bow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":173,"weaponSpeed":2.5,"ilvl":62,"quality":3}, -{"id":16997,"name":"Stormrager","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":106,"weaponSpeed":1.3,"ilvl":62,"quality":3}, -{"id":16998,"name":"Sacred Protector","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":17000,"name":"Band of the Wraith","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":17001,"name":"Elemental Circle","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2,"factionRestriction":2}, -{"id":17002,"name":"Ichor Spitter","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":2.4,"ilvl":61,"quality":2,"factionRestriction":2}, -{"id":17003,"name":"Skullstone Hammer","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,4,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":2.7,"ilvl":61,"quality":2,"factionRestriction":2}, -{"id":17004,"name":"Sarah's Guide","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":142,"weaponSpeed":2.5,"ilvl":61,"quality":2,"factionRestriction":2}, -{"id":17005,"name":"Boorguard Tunic","icon":"inv_shirt_13","type":5,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":6621,"name":"King of the Foulweald"}}],"factionRestriction":2}, -{"id":17006,"name":"Cobalt Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[5,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":6621,"name":"King of the Foulweald"}}],"factionRestriction":2}, -{"id":17007,"name":"Stonerender Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,10,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":4}, -{"id":17013,"name":"Dark Iron Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,72,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20876}},{"crafted":{"profession":2,"spellId":20876}}]}, -{"id":17014,"name":"Dark Iron Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20874}},{"crafted":{"profession":2,"spellId":20874}}]}, -{"id":17015,"name":"Dark Iron Reaver","icon":"inv_sword_48","type":13,"weaponType":9,"handType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.4,"ilvl":65,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20890}},{"crafted":{"profession":2,"spellId":20890}}]}, -{"id":17016,"name":"Dark Iron Destroyer","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.4,"ilvl":65,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":20897}},{"crafted":{"profession":2,"spellId":20897}}]}, -{"id":17039,"name":"Skullbreaker","icon":"inv_misc_bone_dwarfskull_01","type":13,"weaponType":4,"handType":2,"stats":[6,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.5,"ilvl":45,"quality":3,"factionRestriction":2}, -{"id":17042,"name":"Nail Spitter","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":2.8,"ilvl":45,"quality":3,"factionRestriction":2}, -{"id":17043,"name":"Zealot's Robe","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,12,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"factionRestriction":2}, -{"id":17044,"name":"Will of the Martyr","icon":"inv_jewelry_talisman_07","type":2,"stats":[0,0,9,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"quest":{"id":5125,"name":"Aurius' Reckoning"}}]}, -{"id":17045,"name":"Blood of the Martyr","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,8,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"quest":{"id":5125,"name":"Aurius' Reckoning"}}]}, -{"id":17046,"name":"Gutterblade","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":46,"weaponSpeed":2.2,"ilvl":31,"quality":2}, -{"id":17047,"name":"Luminescent Amice","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,6,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2}, -{"id":17050,"name":"Chan's Imperial Robes","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,20,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":17054,"name":"Joonho's Mercy","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":91,"weaponSpeed":2.1,"ilvl":50,"quality":3}, -{"id":17055,"name":"Changuk Smasher","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,6,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":1.9,"ilvl":50,"quality":3}, -{"id":17061,"name":"Juno's Shadow","icon":"inv_misc_cape_20","type":4,"stats":[0,0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":17063,"name":"Band of Accuria","icon":"inv_jewelry_ring_15","type":11,"stats":[0,12,17,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17064,"name":"Shard of the Scale","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"setName":"Shard of the Gods","setId":241,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":17065,"name":"Medallion of Steadfast Might","icon":"inv_jewelry_amulet_03","type":2,"stats":[9,0,13,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":17066,"name":"Drillborer Disk","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,2195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":17067,"name":"Ancient Cornerstone Grimoire","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":17068,"name":"Deathbringer","icon":"inv_axe_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.9,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":17069,"name":"Striker's Mark","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,11,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":2.5,"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":17070,"name":"Fang of the Mystics","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":1,"stats":[0,0,15,0,10,0,14,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":1.5,"ilvl":70,"quality":4,"expansion":1}, -{"id":17071,"name":"Gutgore Ripper","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":119,"weaponSpeed":1.8,"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":17072,"name":"Blastershot Launcher","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,0,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":227,"weaponSpeed":2.6,"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":17073,"name":"Earthshaker","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":263,"weaponSpeed":3.5,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":17074,"name":"Shadowstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":221,"weaponSpeed":3.1,"ilvl":63,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":17075,"name":"Vis'kag the Bloodletter","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":2.6,"ilvl":74,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":17076,"name":"Bonereaver's Edge","icon":"inv_sword_12","type":13,"weaponType":9,"handType":4,"stats":[0,0,16,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":3.4,"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17077,"name":"Crimson Shocker","icon":"inv_staff_13","type":14,"rangedWeaponType":6,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":2,"ilvl":63,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":17078,"name":"Sapphiron Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":17082,"name":"Shard of the Flame","icon":"inv_misc_orb_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"unique":true,"setName":"Shard of the Gods","setId":241,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17102,"name":"Cloak of the Shrouded Mists","icon":"inv_misc_cape_17","type":4,"stats":[0,22,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17103,"name":"Azuresong Mageblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":2.4,"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":17104,"name":"Spinal Reaper","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.4,"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17105,"name":"Aurastone Hammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,12,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":2.7,"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":17106,"name":"Malistar's Defender","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17107,"name":"Dragon's Blood Cape","icon":"inv_misc_cape_08","type":4,"stats":[9,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":17109,"name":"Choker of Enlightenment","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,18,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}}]}, -{"id":17110,"name":"Seal of the Archmagus","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,11,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}}]}, -{"id":17111,"name":"Blazefury Medallion","icon":"inv_jewelry_talisman_01","type":2,"stats":[0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1}, -{"id":17112,"name":"Empyrean Demolisher","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":175,"weaponSpeed":2.8,"ilvl":66,"quality":4,"expansion":1}, -{"id":17113,"name":"Amberseal Keeper","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,30,0,30,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":168,"weaponDamageMax":252,"weaponSpeed":3.3,"ilvl":67,"quality":4,"expansion":1}, -{"id":17182,"name":"Sulfuras, Hand of Ragnaros","icon":"inv_hammer_unique_sulfuras","type":13,"weaponType":4,"handType":4,"stats":[12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":372,"weaponSpeed":3.7,"ilvl":80,"quality":5,"unique":true}, -{"id":17183,"name":"Dented Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1}, -{"id":17184,"name":"Small Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1}, -{"id":17185,"name":"Round Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":2}, -{"id":17186,"name":"Small Targe","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"factionRestriction":1}, -{"id":17187,"name":"Banded Buckler","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":17188,"name":"Ringed Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":1}, -{"id":17189,"name":"Metal Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":1}, -{"id":17190,"name":"Ornate Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":1}, -{"id":17191,"name":"Scepter of Celebras","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,0,10,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":125,"weaponSpeed":3,"ilvl":39,"quality":3,"unique":true}, -{"id":17192,"name":"Reinforced Targe","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":1}, -{"id":17193,"name":"Sulfuron Hammer","icon":"inv_hammer_unique_sulfuras","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":295,"weaponSpeed":3.7,"ilvl":67,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":21161}},{"crafted":{"profession":2,"spellId":21161}}]}, -{"id":17223,"name":"Thunderstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":221,"weaponSpeed":3.1,"ilvl":63,"quality":4}, -{"id":17508,"name":"Forcestone Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"factionRestriction":2}, -{"id":17523,"name":"Smokey's Drape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2}, -{"id":17562,"name":"Knight-Lieutenant's Dreadweave Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17564,"name":"Knight-Lieutenant's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17566,"name":"Lieutenant Commander's Headguard","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17567,"name":"Knight-Captain's Dreadweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17568,"name":"Knight-Captain's Dreadweave Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17569,"name":"Lieutenant Commander's Dreadweave Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Threads","setId":346}, -{"id":17570,"name":"Champion's Dreadweave Hood","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17571,"name":"Legionnaire's Dreadweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,26,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17572,"name":"Legionnaire's Dreadweave Robe","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17573,"name":"Champion's Dreadweave Shoulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17576,"name":"Blood Guard's Dreadweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17577,"name":"Blood Guard's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"setName":"Champion's Threads","setId":345}, -{"id":17578,"name":"Field Marshal's Coronal","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17579,"name":"Marshal's Dreadweave Leggings","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17580,"name":"Field Marshal's Dreadweave Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17581,"name":"Field Marshal's Dreadweave Robe","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17583,"name":"Marshal's Dreadweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17584,"name":"Marshal's Dreadweave Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Field Marshal's Threads","setId":392,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17586,"name":"General's Dreadweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17588,"name":"General's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17590,"name":"Warlord's Dreadweave Mantle","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,37,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17591,"name":"Warlord's Dreadweave Hood","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17592,"name":"Warlord's Dreadweave Robe","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17593,"name":"General's Dreadweave Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"setName":"Warlord's Threads","setId":391,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17594,"name":"Knight-Lieutenant's Satin Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17596,"name":"Knight-Lieutenant's Satin Gloves","icon":"inv_gauntlets_30","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17598,"name":"Lieutenant Commander's Diadem","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17599,"name":"Knight-Captain's Satin Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17600,"name":"Knight-Captain's Satin Robes","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17601,"name":"Lieutenant Commander's Satin Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Raiment","setId":344}, -{"id":17602,"name":"Field Marshal's Headdress","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17603,"name":"Marshal's Satin Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,46,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17604,"name":"Field Marshal's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17605,"name":"Field Marshal's Satin Vestments","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17607,"name":"Marshal's Satin Sandals","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17608,"name":"Marshal's Satin Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Field Marshal's Raiment","setId":389,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":17610,"name":"Champion's Satin Cowl","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17611,"name":"Legionnaire's Satin Trousers","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17612,"name":"Legionnaire's Satin Vestments","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17613,"name":"Champion's Satin Shoulderpads","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17616,"name":"Blood Guard's Satin Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17617,"name":"Blood Guard's Satin Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"setName":"Champion's Raiment","setId":342}, -{"id":17618,"name":"General's Satin Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17620,"name":"General's Satin Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17622,"name":"Warlord's Satin Mantle","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17623,"name":"Warlord's Satin Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17624,"name":"Warlord's Satin Robes","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17625,"name":"General's Satin Leggings","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,46,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"setName":"Warlord's Raiment","setId":390,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":17686,"name":"Master Hunter's Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.9,"ilvl":43,"quality":2}, -{"id":17687,"name":"Master Hunter's Rifle","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.9,"ilvl":43,"quality":2}, -{"id":17688,"name":"Jungle Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":17690,"name":"Frostwolf Insignia Rank 1","icon":"inv_jewelry_frostwolftrinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7161,"name":"Proving Grounds"}}],"factionRestriction":2}, -{"id":17691,"name":"Stormpike Insignia Rank 1","icon":"inv_jewelry_stormpiketrinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7162,"name":"Proving Grounds"}}],"factionRestriction":1}, -{"id":17692,"name":"Horn Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":6641,"name":"Vorsha the Lasher"}}],"factionRestriction":2}, -{"id":17694,"name":"Band of the Fist","icon":"inv_jewelry_ring_02","type":11,"stats":[3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"factionRestriction":2}, -{"id":17695,"name":"Chestnut Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"factionRestriction":2}, -{"id":17704,"name":"Edge of Winter","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":56,"weaponSpeed":2.1,"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":21913}},{"crafted":{"profession":2,"spellId":21913}}]}, -{"id":17705,"name":"Thrash Blade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.7,"ilvl":39,"quality":3}, -{"id":17707,"name":"Gemshard Heart","icon":"inv_stone_01","type":2,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17710,"name":"Charstone Dirk","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.8,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17711,"name":"Elemental Rockridge Leggings","icon":"inv_pants_04","type":9,"armorType":3,"stats":[15,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17713,"name":"Blackstone Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[6,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17714,"name":"Bracers of the Stone Princess","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,8,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17715,"name":"Eye of Theradras","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,8,17,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17717,"name":"Megashot Rifle","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":2.9,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13601,"zoneId":2100}}]}, -{"id":17718,"name":"Gizlock's Hypertech Buckler","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13601,"zoneId":2100}}]}, -{"id":17719,"name":"Inventor's Focal Sword","icon":"inv_sword_14","type":13,"weaponType":9,"handType":2,"stats":[0,0,4,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":2.2,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13601,"zoneId":2100}}]}, -{"id":17721,"name":"Gloves of the Greatfather","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":21943}},{"crafted":{"profession":8,"spellId":21943}}]}, -{"id":17728,"name":"Albino Crocscale Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,12,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13596,"zoneId":2100}}]}, -{"id":17730,"name":"Gatorbite Axe","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":150,"weaponSpeed":3.6,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13596,"zoneId":2100}}]}, -{"id":17732,"name":"Rotgrip Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,6,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13596,"zoneId":2100}}]}, -{"id":17734,"name":"Helm of the Mountain","icon":"inv_helmet_20","type":1,"armorType":3,"stats":[10,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12203,"zoneId":2100}}]}, -{"id":17736,"name":"Rockgrip Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,11,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12203,"zoneId":2100}}]}, -{"id":17737,"name":"Cloud Stone","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12203,"zoneId":2100}}]}, -{"id":17738,"name":"Claw of Celebras","icon":"ability_whirlwind","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.5,"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12225,"zoneId":2100}}]}, -{"id":17739,"name":"Grovekeeper's Drape","icon":"inv_misc_cape_17","type":4,"stats":[0,8,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12225,"zoneId":2100}}]}, -{"id":17740,"name":"Soothsayer's Headdress","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12225,"zoneId":2100}}]}, -{"id":17741,"name":"Nature's Embrace","icon":"inv_chest_cloth_15","type":5,"armorType":1,"stats":[0,0,15,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12237,"zoneId":2100}}]}, -{"id":17742,"name":"Fungus Shroud Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12237,"zoneId":2100}}]}, -{"id":17743,"name":"Resurgence Rod","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":3.8,"ilvl":39,"quality":3}, -{"id":17744,"name":"Heart of Noxxion","icon":"inv_misc_gem_pearl_06","type":12,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13282,"zoneId":2100}}]}, -{"id":17745,"name":"Noxious Shooter","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.6,"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13282,"zoneId":2100}}]}, -{"id":17746,"name":"Noxxion's Shackles","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13282,"zoneId":2100}}]}, -{"id":17748,"name":"Vinerot Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,7,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12258,"zoneId":2100}}]}, -{"id":17749,"name":"Phytoskin Spaulders","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,12,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12258,"zoneId":2100}}]}, -{"id":17750,"name":"Chloromesh Girdle","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,6,12,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12258,"zoneId":2100}}]}, -{"id":17751,"name":"Brusslehide Leggings","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,9,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12258,"zoneId":2100}}]}, -{"id":17752,"name":"Satyr's Lash","icon":"inv_weapon_shortblade_09","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.8,"ilvl":35,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12236,"zoneId":2100}}]}, -{"id":17753,"name":"Verdant Keeper's Aim","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2.8,"ilvl":39,"quality":3}, -{"id":17754,"name":"Infernal Trickster Leggings","icon":"inv_pants_wolf","type":9,"armorType":3,"stats":[0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12236,"zoneId":2100}}]}, -{"id":17755,"name":"Satyrmane Sash","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12236,"zoneId":2100}}]}, -{"id":17759,"name":"Mark of Resolution","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3}, -{"id":17766,"name":"Princess Theradras' Scepter","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":3.5,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17767,"name":"Bloomsprout Headpiece","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12237,"zoneId":2100}}]}, -{"id":17768,"name":"Woodseed Hoop","icon":"inv_jewelry_ring_18","type":11,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17770,"name":"Branchclaw Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17772,"name":"Zealous Shadowshard Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17773,"name":"Prodigious Shadowshard Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17774,"name":"Mark of the Chosen","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17775,"name":"Acumen Robes","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17776,"name":"Sprightring Helm","icon":"inv_helmet_35","type":1,"armorType":2,"stats":[0,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17777,"name":"Relentless Chain","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17778,"name":"Sagebrush Girdle","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17779,"name":"Hulkstone Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3}, -{"id":17780,"name":"Blade of Eternal Darkness","icon":"inv_sword_09","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":52,"weaponSpeed":1.5,"ilvl":39,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12201,"zoneId":2100}}]}, -{"id":17900,"name":"Stormpike Insignia Rank 2","icon":"inv_jewelry_stormpiketrinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7168,"name":"Rise and Be Recognized"}}],"factionRestriction":1}, -{"id":17901,"name":"Stormpike Insignia Rank 3","icon":"inv_jewelry_stormpiketrinket_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7169,"name":"Honored Amongst the Guard"}}],"factionRestriction":1}, -{"id":17902,"name":"Stormpike Insignia Rank 4","icon":"inv_jewelry_stormpiketrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":7170,"name":"Earned Reverence"}}],"factionRestriction":1}, -{"id":17903,"name":"Stormpike Insignia Rank 5","icon":"inv_jewelry_stormpiketrinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":7171,"name":"Legendary Heroes"}}],"factionRestriction":1}, -{"id":17904,"name":"Stormpike Insignia Rank 6","icon":"inv_jewelry_stormpiketrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true,"sources":[{"quest":{"id":7172,"name":"The Eye of Command"}}],"factionRestriction":1}, -{"id":17905,"name":"Frostwolf Insignia Rank 2","icon":"inv_jewelry_frostwolftrinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7163,"name":"Rise and Be Recognized"}}],"factionRestriction":2}, -{"id":17906,"name":"Frostwolf Insignia Rank 3","icon":"inv_jewelry_frostwolftrinket_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true,"sources":[{"quest":{"id":7164,"name":"Honored Amongst the Clan"}}],"factionRestriction":2}, -{"id":17907,"name":"Frostwolf Insignia Rank 4","icon":"inv_jewelry_frostwolftrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":7165,"name":"Earned Reverence"}}],"factionRestriction":2}, -{"id":17908,"name":"Frostwolf Insignia Rank 5","icon":"inv_jewelry_frostwolftrinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":7166,"name":"Legendary Heroes"}}],"factionRestriction":2}, -{"id":17909,"name":"Frostwolf Insignia Rank 6","icon":"inv_jewelry_frostwolftrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true,"sources":[{"quest":{"id":7167,"name":"The Eye of Command"}}],"factionRestriction":2}, -{"id":17922,"name":"Lionfur Armor","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":17943,"name":"Fist of Stone","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.6,"ilvl":39,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12203,"zoneId":2100}}]}, -{"id":17982,"name":"Ragnaros Core","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"unique":true}, -{"id":18022,"name":"Royal Seal of Alexis","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,10,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"factionRestriction":2}, -{"id":18043,"name":"Coal Miner Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,13,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Hurley Blackbreath"}}]}, -{"id":18044,"name":"Hurley's Tankard","icon":"inv_drink_04","type":13,"weaponType":4,"handType":2,"stats":[0,6,6,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Hurley Blackbreath"}}]}, -{"id":18047,"name":"Flame Walkers","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10899,"zoneId":1583}}]}, -{"id":18048,"name":"Mastersmith's Hammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10899,"zoneId":1583}}]}, -{"id":18082,"name":"Zum'rah's Vexing Cane","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,12,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":2.7,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7271,"zoneId":1176}}]}, -{"id":18083,"name":"Jumanza Grips","icon":"inv_gauntlets_09","type":7,"armorType":1,"stats":[0,0,9,9,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":7271,"zoneId":1176}}]}, -{"id":18102,"name":"Dragonrider Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":18103,"name":"Band of Rumination","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":18104,"name":"Feralsurge Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":18168,"name":"Force Reactive Disk","icon":"spell_arcane_portaldarnassus","type":13,"weaponType":7,"handType":3,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":22797}},{"crafted":{"profession":4,"spellId":22797}}]}, -{"id":18202,"name":"Eskhandar's Left Claw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":3,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.5,"ilvl":66,"quality":4,"unique":true,"setName":"Spirit of Eskhandar","setId":261,"expansion":1}, -{"id":18203,"name":"Eskhandar's Right Claw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":1,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.5,"ilvl":66,"quality":4,"unique":true,"setName":"Spirit of Eskhandar","setId":261,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}}]}, -{"id":18204,"name":"Eskhandar's Pelt","icon":"inv_misc_cape_07","type":4,"stats":[0,0,20,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1}, -{"id":18205,"name":"Eskhandar's Collar","icon":"inv_belt_12","type":2,"stats":[0,0,17,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":18208,"name":"Drape of Benediction","icon":"inv_misc_cape_04","type":4,"stats":[0,0,23,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"expansion":1}, -{"id":18238,"name":"Shadowskin Gloves","icon":"inv_gauntlets_32","type":7,"armorType":2,"stats":[0,0,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":22711}},{"crafted":{"profession":8,"spellId":22711}}]}, -{"id":18263,"name":"Flarecore Wraps","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22759}},{"crafted":{"profession":11,"spellId":22759}}]}, -{"id":18282,"name":"Core Marksman Rifle","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":200,"weaponSpeed":2.5,"ilvl":65,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":22795}},{"crafted":{"profession":4,"spellId":22795}}]}, -{"id":18289,"name":"Barbed Thorn Necklace","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18295,"name":"Phasing Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18296,"name":"Marksman Bands","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18298,"name":"Unbridled Leggings","icon":"inv_pants_11","type":9,"armorType":2,"stats":[20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18301,"name":"Lethtendris' Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":1.7,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14327,"zoneId":2557}}]}, -{"id":18302,"name":"Band of Vigor","icon":"inv_jewelry_ring_20","type":11,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14327,"zoneId":2557}}]}, -{"id":18305,"name":"Breakwater Legguards","icon":"inv_pants_04","type":9,"armorType":3,"stats":[10,0,10,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13280,"zoneId":2557}}]}, -{"id":18306,"name":"Gloves of Shadowy Mist","icon":"inv_gauntlets_22","type":7,"armorType":1,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11490,"zoneId":2557}}]}, -{"id":18307,"name":"Riptide Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,8,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13280,"zoneId":2557}}]}, -{"id":18308,"name":"Clever Hat","icon":"inv_helmet_51","type":1,"armorType":2,"stats":[0,0,10,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11490,"zoneId":2557}}]}, -{"id":18309,"name":"Gloves of Restoration","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18310,"name":"Fiendish Machete","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,7,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":88,"weaponSpeed":2.6,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18311,"name":"Quel'dorei Channeling Rod","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":123,"weaponSpeed":2.8,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14327,"zoneId":2557}}]}, -{"id":18312,"name":"Energized Chestplate","icon":"inv_chest_plate11","type":5,"armorType":3,"stats":[12,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18313,"name":"Helm of Awareness","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[10,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11490,"zoneId":2557}}]}, -{"id":18314,"name":"Ring of Demonic Guile","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18315,"name":"Ring of Demonic Potency","icon":"inv_jewelry_ring_28","type":11,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18317,"name":"Tempest Talisman","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13280,"zoneId":2557}}]}, -{"id":18318,"name":"Merciful Greaves","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,0,8,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18319,"name":"Fervent Helm","icon":"inv_helmet_38","type":1,"armorType":2,"stats":[0,10,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11490,"zoneId":2557}}]}, -{"id":18321,"name":"Energetic Rod","icon":"inv_mace_13","type":13,"weaponType":4,"handType":1,"stats":[0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":88,"weaponSpeed":2.6,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18322,"name":"Waterspout Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13280,"zoneId":2557}}]}, -{"id":18323,"name":"Satyr's Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.8,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11490,"zoneId":2557}}]}, -{"id":18324,"name":"Waveslicer","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[17,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.5,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13280,"zoneId":2557}}]}, -{"id":18325,"name":"Felhide Cap","icon":"inv_helmet_31","type":1,"armorType":2,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14327,"zoneId":2557}}]}, -{"id":18326,"name":"Razor Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18327,"name":"Whipvine Cord","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18328,"name":"Shadewood Cloak","icon":"inv_misc_cape_17","type":4,"stats":[10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11492,"zoneId":2557}}]}, -{"id":18337,"name":"Orphic Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":18338,"name":"Wand of Arcane Potency","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18339,"name":"Eidolon Cloak","icon":"inv_misc_cape_21","type":4,"stats":[0,0,9,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3}, -{"id":18340,"name":"Eidolon Talisman","icon":"inv_jewelry_talisman_14","type":2,"stats":[0,0,7,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18343,"name":"Petrified Band","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,5,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":18344,"name":"Stonebark Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,13,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2557,"otherName":"Trash"}}]}, -{"id":18345,"name":"Murmuring Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11467,"zoneId":2557}}]}, -{"id":18346,"name":"Threadbare Trousers","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,12,17,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11467,"zoneId":2557}}]}, -{"id":18347,"name":"Well Balanced Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11488,"zoneId":2557}}]}, -{"id":18348,"name":"Quel'Serrar","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":2,"ilvl":71,"quality":4,"unique":true,"classAllowlist":[9,4]}, -{"id":18349,"name":"Gauntlets of Accuracy","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,14,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11488,"zoneId":2557}}]}, -{"id":18350,"name":"Amplifying Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,6,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11487,"zoneId":2557}}]}, -{"id":18351,"name":"Magically Sealed Bracers","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[7,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11487,"zoneId":2557}}]}, -{"id":18352,"name":"Petrified Bark Shield","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[7,0,7,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11489,"zoneId":2557}}]}, -{"id":18353,"name":"Stoneflower Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":3,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11489,"zoneId":2557}}]}, -{"id":18354,"name":"Pimgib's Collar","icon":"inv_jewelry_amulet_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"classAllowlist":[8]}, -{"id":18366,"name":"Gordok's Handguards","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[13,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{}}]}, -{"id":18367,"name":"Gordok's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,0,9,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{}}]}, -{"id":18368,"name":"Gordok's Gloves","icon":"inv_gauntlets_01","type":7,"armorType":2,"stats":[0,13,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{}}]}, -{"id":18369,"name":"Gordok's Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,9,13,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{}}]}, -{"id":18370,"name":"Vigilance Charm","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18371,"name":"Mindtap Talisman","icon":"inv_battery_02","type":12,"stats":[0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11487,"zoneId":2557}}]}, -{"id":18372,"name":"Blade of the New Moon","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18373,"name":"Chestplate of Tranquility","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18374,"name":"Flamescarred Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11487,"zoneId":2557}}]}, -{"id":18375,"name":"Bracers of the Eclipse","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18376,"name":"Timeworn Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[6,0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18377,"name":"Quickdraw Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18378,"name":"Silvermoon Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18379,"name":"Odious Greaves","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18380,"name":"Eldritch Reinforced Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[14,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18381,"name":"Evil Eye Pendant","icon":"inv_misc_eye_01","type":2,"stats":[0,11,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18382,"name":"Fluctuating Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,7,7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18383,"name":"Force Imbued Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11488,"zoneId":2557}}]}, -{"id":18384,"name":"Bile-Etched Spaulders","icon":"inv_shoulder_17","type":3,"armorType":4,"stats":[10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18385,"name":"Robe of Everlasting Night","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18386,"name":"Padre's Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11488,"zoneId":2557}}]}, -{"id":18387,"name":"Brightspark Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11467,"zoneId":2557}}]}, -{"id":18388,"name":"Stoneshatter","icon":"inv_weapon_crossbow_08","type":14,"rangedWeaponType":2,"stats":[0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":2.9,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18389,"name":"Cloak of the Cosmos","icon":"inv_misc_cape_01","type":4,"stats":[0,0,6,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18390,"name":"Tanglemoss Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11489,"zoneId":2557}}]}, -{"id":18391,"name":"Eyestalk Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18392,"name":"Distracting Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":3,"stats":[0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":66,"weaponSpeed":1.8,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18393,"name":"Warpwood Binding","icon":"inv_belt_34","type":8,"armorType":3,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11489,"zoneId":2557}}]}, -{"id":18394,"name":"Demon Howl Wristguards","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11496,"zoneId":2557}}]}, -{"id":18395,"name":"Emerald Flame Ring","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,7,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18396,"name":"Mind Carver","icon":"inv_weapon_shortblade_22","type":13,"weaponType":9,"handType":1,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":2,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11486,"zoneId":2557}}]}, -{"id":18397,"name":"Elder Magus Pendant","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11487,"zoneId":2557}}]}, -{"id":18398,"name":"Tidal Loop","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,4,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":18399,"name":"Ocean's Breeze","icon":"inv_jewelry_ring_28","type":11,"stats":[4,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":18400,"name":"Ring of Living Stone","icon":"inv_jewelry_ring_19","type":11,"stats":[10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":18402,"name":"Glowing Crystal Ring","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":18403,"name":"Dragonslayer's Signet","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,12,12,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4}, -{"id":18404,"name":"Onyxia Tooth Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,12,9,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4}, -{"id":18405,"name":"Belt of the Archmage","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,10,25,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22866}},{"crafted":{"profession":11,"spellId":22866}}]}, -{"id":18406,"name":"Onyxia Blood Talisman","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4}, -{"id":18407,"name":"Felcloth Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22867}},{"crafted":{"profession":11,"spellId":22867}}]}, -{"id":18408,"name":"Inferno Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,14,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22868}},{"crafted":{"profession":11,"spellId":22868}}]}, -{"id":18409,"name":"Mooncloth Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,9,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22869}},{"crafted":{"profession":11,"spellId":22869}}]}, -{"id":18410,"name":"Sprinter's Sword","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":149,"weaponSpeed":2.8,"ilvl":57,"quality":2}, -{"id":18411,"name":"Spry Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,12,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":18413,"name":"Cloak of Warding","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,85,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22870}},{"crafted":{"profession":11,"spellId":22870}}]}, -{"id":18420,"name":"Bonecrusher","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[30,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":194,"weaponSpeed":3,"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":18421,"name":"Backwood Helm","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,25,13,0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":18424,"name":"Sedge Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":18425,"name":"Kreeg's Mug","icon":"inv_drink_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14322,"zoneId":2557}}]}, -{"id":18427,"name":"Sergeant's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18428,"name":"Senior Sergeant's Insignia","icon":"inv_misc_monsterscales_15","type":2,"stats":[0,0,14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18429,"name":"First Sergeant's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[7,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18430,"name":"First Sergeant's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18432,"name":"First Sergeant's Mail Wristguards","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18434,"name":"First Sergeant's Dragonhide Armguards","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18435,"name":"First Sergeant's Leather Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18436,"name":"First Sergeant's Dragonhide Armguards","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18437,"name":"First Sergeant's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18438,"name":"Sergeant's Mark","icon":"inv_shield_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"unique":true}, -{"id":18440,"name":"Sergeant's Cape","icon":"inv_misc_cape_21","type":4,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18441,"name":"Sergeant's Cape","icon":"inv_misc_cape_21","type":4,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18442,"name":"Master Sergeant's Insignia","icon":"inv_misc_monsterscales_09","type":2,"stats":[0,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18443,"name":"Master Sergeant's Insignia","icon":"inv_misc_monsterscales_09","type":2,"stats":[0,0,17,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18444,"name":"Master Sergeant's Insignia","icon":"inv_misc_monsterscales_09","type":2,"stats":[0,0,14,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18445,"name":"Sergeant Major's Plate Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[7,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18447,"name":"Sergeant Major's Plate Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18448,"name":"Sergeant Major's Chain Armguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18449,"name":"Sergeant Major's Chain Armguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18450,"name":"Robe of Combustion","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,12,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18451,"name":"Hyena Hide Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,11,11,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18452,"name":"Sergeant Major's Leather Armsplints","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18453,"name":"Sergeant Major's Leather Armsplints","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18454,"name":"Sergeant Major's Dragonhide Armsplints","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18455,"name":"Sergeant Major's Dragonhide Armsplints","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18456,"name":"Sergeant Major's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18457,"name":"Sergeant Major's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18458,"name":"Modest Armguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,7,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18459,"name":"Gallant's Wristguards","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18460,"name":"Unsophisticated Hand Cannon","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.7,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18461,"name":"Sergeant's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18462,"name":"Jagged Bone Fist","icon":"inv_gauntlets_13","type":13,"weaponType":3,"handType":2,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18463,"name":"Ogre Pocket Knife","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.5,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18464,"name":"Gordok Nose Ring","icon":"inv_jewelry_ring_06","type":11,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14321,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18465,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[6]}, -{"id":18466,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[9]}, -{"id":18467,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[8]}, -{"id":18468,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[3]}, -{"id":18469,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[5]}, -{"id":18470,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[1]}, -{"id":18471,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[7]}, -{"id":18472,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[4]}, -{"id":18473,"name":"Royal Seal of Eldre'Thalas","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"classAllowlist":[2]}, -{"id":18475,"name":"Oddly Magical Belt","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18476,"name":"Mud Stained Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18477,"name":"Shaggy Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18478,"name":"Hyena Hide Jerkin","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18479,"name":"Carrion Scorpid Helm","icon":"inv_helmet_11","type":1,"armorType":3,"stats":[0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18480,"name":"Scarab Plate Helm","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18481,"name":"Skullcracking Mace","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":164,"weaponSpeed":3.2,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18482,"name":"Ogre Toothpick Shooter","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":94,"weaponSpeed":2.2,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18483,"name":"Mana Channeling Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":1.6,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18484,"name":"Cho'Rush's Blade","icon":"inv_weapon_shortblade_04","type":13,"weaponType":9,"handType":2,"stats":[0,8,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":2.6,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18485,"name":"Observer's Shield","icon":"inv_shield_13","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18486,"name":"Mooncloth Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,12,25,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":22902}},{"crafted":{"profession":11,"spellId":22902}}]}, -{"id":18490,"name":"Insightful Hood","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,15,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18491,"name":"Lorespinner","icon":"inv_weapon_shortblade_21","type":13,"weaponType":2,"handType":2,"stats":[0,0,5,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":74,"weaponSpeed":1.5,"ilvl":57,"quality":3}, -{"id":18493,"name":"Bulky Iron Spaulders","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[14,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18494,"name":"Denwatcher's Shoulders","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,9,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18495,"name":"Redoubt Cloak","icon":"inv_misc_cape_21","type":4,"stats":[8,0,8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18496,"name":"Heliotrope Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18497,"name":"Sublime Wristguards","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18498,"name":"Hedgecutter","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[8,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":99,"weaponSpeed":2.5,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14326,"zoneId":2557}},{"drop":{"difficulty":1,"npcId":14323,"zoneId":2557}}]}, -{"id":18499,"name":"Barrier Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[7,0,11,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18500,"name":"Tarnished Elven Ring","icon":"inv_jewelry_ring_13","type":11,"stats":[0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18502,"name":"Monstrous Glaive","icon":"inv_weapon_halberd_09","type":13,"weaponType":6,"handType":4,"stats":[0,15,15,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":3.4,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14325,"zoneId":2557}}]}, -{"id":18503,"name":"Kromcrush's Chestplate","icon":"inv_chest_chain_14","type":5,"armorType":4,"stats":[12,0,12,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14325,"zoneId":2557}}]}, -{"id":18504,"name":"Girdle of Insight","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":22921}},{"crafted":{"profession":8,"spellId":22921}}]}, -{"id":18505,"name":"Mugger's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14325,"zoneId":2557}}]}, -{"id":18506,"name":"Mongoose Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,23,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":22922}},{"crafted":{"profession":8,"spellId":22922}}]}, -{"id":18507,"name":"Boots of the Full Moon","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14325,"zoneId":2557}}]}, -{"id":18508,"name":"Swift Flight Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":22923}},{"crafted":{"profession":8,"spellId":22923}}]}, -{"id":18509,"name":"Chromatic Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":22926}},{"crafted":{"profession":8,"spellId":22926}}]}, -{"id":18510,"name":"Hide of the Wild","icon":"inv_misc_cape_01","type":4,"stats":[0,0,17,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":22927}},{"crafted":{"profession":8,"spellId":22927}}]}, -{"id":18511,"name":"Shifting Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,17,8,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":22928}},{"crafted":{"profession":8,"spellId":22928}}]}, -{"id":18520,"name":"Barbarous Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":4,"stats":[19,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":180,"weaponSpeed":3.5,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18521,"name":"Grimy Metal Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[9,0,9,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18522,"name":"Band of the Ogre King","icon":"inv_jewelry_ring_32","type":11,"stats":[8,0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18523,"name":"Brightly Glowing Stone","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18524,"name":"Leggings of Destruction","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18525,"name":"Bracers of Prosperity","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18526,"name":"Crown of the Ogre King","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,15,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18527,"name":"Harmonious Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11501,"zoneId":2557}}]}, -{"id":18528,"name":"Cyclone Spaulders","icon":"inv_shoulder_26","type":3,"armorType":2,"stats":[0,0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18529,"name":"Elemental Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[11,0,11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18530,"name":"Ogre Forged Hauberk","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,21,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18531,"name":"Unyielding Maul","icon":"inv_hammer_22","type":13,"weaponType":4,"handType":4,"stats":[0,15,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":3.7,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18532,"name":"Mindsurge Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,12,12,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18533,"name":"Gordok Bracers of Power","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18534,"name":"Rod of the Ogre Magi","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":2.7,"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18535,"name":"Milli's Shield","icon":"inv_shield_12","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":18536,"name":"Milli's Lexicon","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,7,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":18537,"name":"Counterattack Lodestone","icon":"inv_stone_02","type":12,"stats":[14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18538,"name":"Treant's Bane","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[27,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":194,"weaponSpeed":3.4,"ilvl":49,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14324,"zoneId":2557}}]}, -{"id":18541,"name":"Puissant Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,12,0,0,10,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1}, -{"id":18542,"name":"Typhoon","icon":"inv_sword_41","type":13,"weaponType":9,"handType":4,"stats":[14,20,10,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":68,"quality":4,"expansion":1}, -{"id":18543,"name":"Ring of Entropy","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,11,13,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1}, -{"id":18544,"name":"Doomhide Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,21,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":18545,"name":"Leggings of Arcane Supremacy","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,38,25,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1}, -{"id":18546,"name":"Infernal Headcage","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,46,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1}, -{"id":18547,"name":"Unmelting Ice Girdle","icon":"inv_belt_31","type":8,"armorType":4,"stats":[14,14,14,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":18585,"name":"Band of Allegiance","icon":"inv_jewelry_ring_09","type":11,"stats":[9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":7541,"name":"Service to the Horde"}}],"factionRestriction":2}, -{"id":18586,"name":"Lonetree's Circle","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":7541,"name":"Service to the Horde"}}],"factionRestriction":2}, -{"id":18602,"name":"Tome of Sacrifice","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[8]}, -{"id":18608,"name":"Benediction","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,42,0,12,0,28,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":75,"quality":4,"unique":true,"classAllowlist":[5]}, -{"id":18609,"name":"Anathema","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,18,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":75,"quality":4,"unique":true,"classAllowlist":[5]}, -{"id":18610,"name":"Keen Machete","icon":"inv_sword_16","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.8,"ilvl":6,"quality":1}, -{"id":18611,"name":"Gnarlpine Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1}, -{"id":18612,"name":"Bloody Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":18634,"name":"Gyrofreeze Ice Reflector","icon":"inv_misc_enggizmos_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":23077}},{"crafted":{"profession":4,"spellId":23077}}]}, -{"id":18637,"name":"Major Recombobulator","icon":"inv_misc_enggizmos_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":23079}},{"crafted":{"profession":4,"spellId":23079}}]}, -{"id":18638,"name":"Hyper-Radiant Flame Reflector","icon":"inv_misc_enggizmos_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":23081}},{"crafted":{"profession":4,"spellId":23081}}]}, -{"id":18639,"name":"Ultra-Flash Shadow Reflector","icon":"inv_misc_enggizmos_16","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":23082}},{"crafted":{"profession":4,"spellId":23082}}]}, -{"id":18646,"name":"The Eye of Divinity","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"classAllowlist":[5],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18665,"name":"The Eye of Shadow","icon":"spell_shadow_unholyfrenzy","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":18671,"name":"Baron Charr's Sceptre","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":2.6,"ilvl":59,"quality":3}, -{"id":18672,"name":"Elemental Ember","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":18673,"name":"Avalanchion's Stony Hide","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[0,0,16,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":18674,"name":"Hardened Stone Band","icon":"inv_jewelry_ring_14","type":11,"stats":[8,0,8,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":2}, -{"id":18676,"name":"Sash of the Windreaver","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,12,20,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":18677,"name":"Zephyr Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":18678,"name":"Tempestria's Frozen Necklace","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3}, -{"id":18679,"name":"Frigid Ring","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":2}, -{"id":18680,"name":"Ancient Bone Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":2.8,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":18681,"name":"Burial Shawl","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":18682,"name":"Ghoul Skin Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":18683,"name":"Hammer of the Vesper","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":2,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":2.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":18684,"name":"Dimly Opalescent Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":18686,"name":"Bone Golem Shoulders","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11622,"zoneId":2057}}]}, -{"id":18689,"name":"Phantasmal Cloak","icon":"inv_misc_cape_20","type":4,"stats":[11,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,70,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":18690,"name":"Wraithplate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[12,0,17,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":18691,"name":"Dark Advisor's Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10432,"zoneId":2057}}]}, -{"id":18692,"name":"Death Knight Sabatons","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[10,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10433,"zoneId":2057}}]}, -{"id":18693,"name":"Shivery Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":18694,"name":"Shadowy Mail Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":18695,"name":"Spellbound Tome","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":18696,"name":"Intricately Runed Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[7,0,7,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,1353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10508,"zoneId":2057}}]}, -{"id":18697,"name":"Coldstone Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,8,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18698,"name":"Tattered Leather Hood","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,14,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18699,"name":"Icy Tomb Spaulders","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18700,"name":"Malefic Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18701,"name":"Innervating Band","icon":"inv_jewelry_ring_24","type":11,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18702,"name":"Belt of the Ordained","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2057,"otherName":"Trash"}}]}, -{"id":18706,"name":"Arena Master","icon":"inv_misc_armorkit_14","type":12,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":18709,"name":"Arena Wristguards","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":18710,"name":"Arena Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":18711,"name":"Arena Bands","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":18712,"name":"Arena Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":18713,"name":"Rhok'delar, Longbow of the Ancient Keepers","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":277,"weaponSpeed":2.9,"ilvl":75,"quality":4,"unique":true,"classAllowlist":[2]}, -{"id":18715,"name":"Lok'delar, Stave of the Ancient Keepers","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,15,26,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":282,"weaponSpeed":3.2,"ilvl":75,"quality":4,"unique":true,"classAllowlist":[2]}, -{"id":18716,"name":"Ash Covered Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,11,11,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10811,"zoneId":2017}}]}, -{"id":18717,"name":"Hammer of the Grand Crusader","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":4,"stats":[14,0,14,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":183,"weaponSpeed":3.7,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":18718,"name":"Grand Crusader's Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[12,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":18720,"name":"Shroud of the Nathrezim","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}}]}, -{"id":18721,"name":"Barrage Girdle","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,0,9,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":18722,"name":"Death Grips","icon":"inv_gauntlets_13","type":7,"armorType":4,"stats":[17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":18723,"name":"Animated Chain Necklace","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10439,"zoneId":2017}}]}, -{"id":18725,"name":"Peacemaker","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":124,"weaponDamageMax":187,"weaponSpeed":3.4,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":18726,"name":"Magistrate's Cuffs","icon":"inv_bracer_11","type":6,"armorType":2,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":18727,"name":"Crimson Felt Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,10,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":18728,"name":"Anastari Heirloom","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":18729,"name":"Screeching Bow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,4,4,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":138,"weaponSpeed":3,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":18730,"name":"Shadowy Laced Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10436,"zoneId":2017}}]}, -{"id":18734,"name":"Pale Moon Cloak","icon":"inv_misc_cape_11","type":4,"stats":[8,0,8,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":18735,"name":"Maleki's Footwraps","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,8,17,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":18736,"name":"Plaguehound Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18737,"name":"Bone Slicing Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":2.6,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10438,"zoneId":2017}}]}, -{"id":18738,"name":"Carapace Spine Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":2.9,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":18739,"name":"Chitinous Plate Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":18740,"name":"Thuzadin Sash","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,10,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10437,"zoneId":2017}}]}, -{"id":18741,"name":"Morlune's Bracer","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18742,"name":"Stratholme Militia Shoulderguard","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,12,12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18743,"name":"Gracious Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18744,"name":"Plaguebat Fur Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18745,"name":"Sacred Cloth Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Trash"}}]}, -{"id":18754,"name":"Fel Hardened Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[12,0,12,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14506,"zoneId":2557}}]}, -{"id":18755,"name":"Xorothian Firestick","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":2.6,"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14506,"zoneId":2557}}]}, -{"id":18756,"name":"Dreadguard's Protector","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[18,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14506,"zoneId":2557}}]}, -{"id":18757,"name":"Diabolic Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,16,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14506,"zoneId":2557}}]}, -{"id":18758,"name":"Specter's Blade","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":1.8,"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14516,"zoneId":2057}}]}, -{"id":18759,"name":"Malicious Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":3.1,"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14516,"zoneId":2057}}]}, -{"id":18760,"name":"Necromantic Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14516,"zoneId":2057}}]}, -{"id":18761,"name":"Oblivion's Touch","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":147,"weaponSpeed":1.8,"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14516,"zoneId":2057}}]}, -{"id":18762,"name":"Shard of the Green Flame","icon":"inv_misc_shadowegg","type":13,"weaponType":5,"handType":3,"stats":[0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"classAllowlist":[8]}, -{"id":18803,"name":"Hyperthermically Insulated Lava Dredger","icon":"inv_gizmo_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,25,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":234,"weaponSpeed":2.9,"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18805,"name":"Core Hound Tooth","icon":"inv_weapon_shortblade_11","type":13,"weaponType":2,"handType":2,"stats":[0,0,9,0,0,0,14,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":1.6,"ilvl":70,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18806,"name":"Core Forged Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,28,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,541,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18807,"name":"Helm of Latent Power","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,25,12,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"classAllowlist":[7]}, -{"id":18808,"name":"Gloves of the Hypnotic Flame","icon":"inv_gauntlets_03","type":7,"armorType":1,"stats":[0,0,35,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18809,"name":"Sash of Whispered Secrets","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,20,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18810,"name":"Wild Growth Spaulders","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,22,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18811,"name":"Fireproof Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,12,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18812,"name":"Wristguards of True Flight","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,19,11,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":18813,"name":"Ring of Binding","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10184,"zoneId":2159}}]}, -{"id":18814,"name":"Choker of the Fire Lord","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":18815,"name":"Essence of the Pure Flame","icon":"spell_fire_fire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":18816,"name":"Perdition's Blade","icon":"inv_sword_48","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.8,"ilvl":77,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":18817,"name":"Crown of Destruction","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,22,23,0,0,9,28,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":18820,"name":"Talisman of Ephemeral Power","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18821,"name":"Quick Strike Ring","icon":"inv_jewelry_ring_07","type":11,"stats":[5,0,8,0,0,0,14,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18822,"name":"Obsidian Edged Blade","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[42,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3.4,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18823,"name":"Aged Core Leather Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,15,15,0,0,0,14,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18824,"name":"Magma Tempered Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,35,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18825,"name":"Grand Marshal's Aegis","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[10,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18826,"name":"High Warlord's Shield Wall","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[10,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18827,"name":"Grand Marshal's Handaxe","icon":"inv_axe_24","type":13,"weaponType":1,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18828,"name":"High Warlord's Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18829,"name":"Deep Earth Spaulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,22,28,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18830,"name":"Grand Marshal's Sunderer","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18831,"name":"High Warlord's Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18832,"name":"Brutality Blade","icon":"inv_sword_15","type":13,"weaponType":9,"handType":2,"stats":[9,9,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":2.5,"ilvl":70,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}}]}, -{"id":18833,"name":"Grand Marshal's Bullseye","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":1.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18834,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[9],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18835,"name":"High Warlord's Recurve","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":1.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18836,"name":"Grand Marshal's Repeater","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18837,"name":"High Warlord's Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18838,"name":"Grand Marshal's Dirk","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":2,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18840,"name":"High Warlord's Razor","icon":"inv_weapon_shortblade_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":2,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18842,"name":"Staff of Dominance","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,54,0,14,0,14,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":234,"weaponSpeed":2.9,"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":18843,"name":"Grand Marshal's Right Hand Blade","icon":"inv_weapon_shortblade_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18844,"name":"High Warlord's Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18845,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18846,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[2],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18847,"name":"Grand Marshal's Left Hand Blade","icon":"ability_rogue_rupture","type":13,"weaponType":3,"handType":3,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18848,"name":"High Warlord's Left Claw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":3,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18849,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18850,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[3],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18851,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[5],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18852,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[8],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18853,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18854,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[9],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18855,"name":"Grand Marshal's Hand Cannon","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18856,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[2],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18857,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[6],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18858,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[8],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18859,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[3],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18860,"name":"High Warlord's Street Sweeper","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18861,"name":"Flamewaker Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[18,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,657,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18862,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[5],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18863,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18864,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18865,"name":"Grand Marshal's Punisher","icon":"inv_mace_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18866,"name":"High Warlord's Bludgeon","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18867,"name":"Grand Marshal's Battle Hammer","icon":"inv_hammer_03","type":13,"weaponType":4,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18868,"name":"High Warlord's Pulverizer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18869,"name":"Grand Marshal's Glaive","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18870,"name":"Helm of the Lifegiver","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,44,19,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18871,"name":"High Warlord's Pig Sticker","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18872,"name":"Manastorm Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,19,14,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18873,"name":"Grand Marshal's Stave","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,17,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":279,"weaponSpeed":3,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}]}, -{"id":18874,"name":"High Warlord's War Staff","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,17,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":279,"weaponSpeed":3,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}]}, -{"id":18875,"name":"Salamander Scale Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,26,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18876,"name":"Grand Marshal's Claymore","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":18877,"name":"High Warlord's Greatsword","icon":"inv_sword_48","type":13,"weaponType":9,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":18878,"name":"Sorcerous Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":1,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":1.4,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18879,"name":"Heavy Dark Iron Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,20,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":18948,"name":"Barbaric Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":23399}},{"crafted":{"profession":8,"spellId":23399}}]}, -{"id":18957,"name":"Brushwood Blade","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":2561,"name":"Druid of the Claw"}}],"factionRestriction":1}, -{"id":19019,"name":"Thunderfury, Blessed Blade of the Windseeker","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":115,"weaponSpeed":1.9,"ilvl":80,"quality":5,"unique":true,"sources":[{"quest":{"id":7787,"name":"Rise, Thunderfury!"}}]}, -{"id":19022,"name":"Nat Pagle's Extreme Angler FC-5000","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":140,"weaponSpeed":3,"ilvl":50,"quality":2,"sources":[{"quest":{}}]}, -{"id":19024,"name":"Arena Grand Master","icon":"inv_misc_armorkit_04","type":12,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":7838,"name":"Arena Grandmaster"}}]}, -{"id":19028,"name":"Elegant Dress","icon":"inv_chest_cloth_04","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"zoneId":12}}]}, -{"id":19037,"name":"Emerald Peak Spaulders","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[7,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"factionRestriction":2}, -{"id":19038,"name":"Ring of Subtlety","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"factionRestriction":2}, -{"id":19039,"name":"Zorbin's Water Resistant Hat","icon":"inv_helmet_51","type":1,"armorType":2,"stats":[0,0,9,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{}}]}, -{"id":19040,"name":"Zorbin's Mega-Slicer","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":2.3,"ilvl":48,"quality":2}, -{"id":19041,"name":"Pratt's Handcrafted Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,7,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":19042,"name":"Jangdor's Handcrafted Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,7,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"factionRestriction":2}, -{"id":19043,"name":"Heavy Timbermaw Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23628}},{"crafted":{"profession":2,"spellId":23628}}]}, -{"id":19044,"name":"Might of the Timbermaw","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":23703}},{"crafted":{"profession":8,"spellId":23703}}]}, -{"id":19047,"name":"Wisdom of the Timbermaw","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,0,21,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23662}},{"crafted":{"profession":11,"spellId":23662}}]}, -{"id":19048,"name":"Heavy Timbermaw Boots","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,10,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23629}},{"crafted":{"profession":2,"spellId":23629}}]}, -{"id":19049,"name":"Timbermaw Brawlers","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":23704}},{"crafted":{"profession":8,"spellId":23704}}]}, -{"id":19050,"name":"Mantle of the Timbermaw","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23663}},{"crafted":{"profession":11,"spellId":23663}}]}, -{"id":19051,"name":"Girdle of the Dawn","icon":"inv_belt_11","type":8,"armorType":4,"stats":[21,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23632}},{"crafted":{"profession":2,"spellId":23632}}]}, -{"id":19052,"name":"Dawn Treaders","icon":"inv_boots_cloth_08","type":10,"armorType":2,"stats":[0,7,18,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":23705}},{"crafted":{"profession":8,"spellId":23705}}]}, -{"id":19056,"name":"Argent Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,21,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23664}},{"crafted":{"profession":11,"spellId":23664}}]}, -{"id":19057,"name":"Gloves of the Dawn","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[23,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23633}},{"crafted":{"profession":2,"spellId":23633}}]}, -{"id":19058,"name":"Golden Mantle of the Dawn","icon":"inv_shoulder_26","type":3,"armorType":2,"stats":[0,0,22,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":23706}},{"crafted":{"profession":8,"spellId":23706}}]}, -{"id":19059,"name":"Argent Shoulders","icon":"inv_shoulder_13","type":3,"armorType":1,"stats":[0,0,23,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":64,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23665}},{"crafted":{"profession":11,"spellId":23665}}]}, -{"id":19083,"name":"Frostwolf Legionnaire's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19084,"name":"Stormpike Soldier's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19085,"name":"Frostwolf Advisor's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19086,"name":"Stormpike Sage's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19087,"name":"Frostwolf Plate Belt","icon":"inv_belt_35","type":8,"armorType":4,"stats":[18,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19088,"name":"Frostwolf Mail Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19089,"name":"Frostwolf Leather Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,11,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19090,"name":"Frostwolf Cloth Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19091,"name":"Stormpike Plate Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[18,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19092,"name":"Stormpike Mail Girdle","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19093,"name":"Stormpike Leather Girdle","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,11,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19094,"name":"Stormpike Cloth Girdle","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19095,"name":"Frostwolf Legionnaire's Pendant","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19096,"name":"Frostwolf Advisor's Pendant","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":2}, -{"id":19097,"name":"Stormpike Soldier's Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19098,"name":"Stormpike Sage's Pendant","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"factionRestriction":1}, -{"id":19099,"name":"Glacial Blade","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":1.8,"ilvl":65,"quality":3,"unique":true,"factionRestriction":2}, -{"id":19100,"name":"Electrified Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":1.8,"ilvl":65,"quality":3,"unique":true,"factionRestriction":1}, -{"id":19101,"name":"Whiteout Staff","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,37,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":3.1,"ilvl":65,"quality":3,"factionRestriction":2}, -{"id":19102,"name":"Crackling Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,37,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":3.1,"ilvl":65,"quality":3,"factionRestriction":1}, -{"id":19103,"name":"Frostbite","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.7,"ilvl":65,"quality":3,"unique":true,"factionRestriction":2}, -{"id":19104,"name":"Stormstrike Hammer","icon":"inv_hammer_21","type":13,"weaponType":4,"handType":2,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.7,"ilvl":65,"quality":3,"unique":true,"factionRestriction":1}, -{"id":19105,"name":"Frost Runed Headdress","icon":"inv_helmet_61","type":1,"armorType":1,"stats":[0,0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":19106,"name":"Ice Barbed Spear","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[13,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":3.6,"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":19107,"name":"Bloodseeker","icon":"inv_weapon_crossbow_07","type":14,"rangedWeaponType":2,"stats":[8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":214,"weaponSpeed":3.3,"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":19108,"name":"Wand of Biting Cold","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.5,"ilvl":63,"quality":3,"sources":[{"quest":{}}]}, -{"id":19109,"name":"Deep Rooted Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":19110,"name":"Cold Forged Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":2,"stats":[0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":2.6,"ilvl":63,"quality":3}, -{"id":19111,"name":"Winteraxe Epaulets","icon":"inv_shoulder_12","type":3,"armorType":3,"stats":[0,0,20,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":19112,"name":"Frozen Steel Vambraces","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[12,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":19113,"name":"Yeti Hide Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,8,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":19114,"name":"Highland Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":2.5,"ilvl":51,"quality":2,"factionRestriction":2}, -{"id":19115,"name":"Flask of Forest Mojo","icon":"inv_potion_19","type":13,"weaponType":5,"handType":3,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"factionRestriction":2}, -{"id":19116,"name":"Greenleaf Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":19117,"name":"Laquered Wooden Plate Legguards","icon":"inv_pants_05","type":9,"armorType":4,"stats":[17,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":19118,"name":"Nature's Breath","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":1.4,"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":19119,"name":"Owlbeast Hide Gloves","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,0,8,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"factionRestriction":2}, -{"id":19120,"name":"Rune of the Guard Captain","icon":"inv_misc_rune_07","type":12,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"factionRestriction":2}, -{"id":19121,"name":"Deep Woodlands Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":19123,"name":"Everwarm Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":19124,"name":"Slagplate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[12,0,12,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":19125,"name":"Seared Mail Girdle","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":19126,"name":"Slagplate Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[12,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":19127,"name":"Charred Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":19128,"name":"Seared Mail Vest","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":19130,"name":"Cold Snap","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":1.7,"ilvl":70,"quality":4,"expansion":1}, -{"id":19131,"name":"Snowblind Shoes","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,19,27,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1}, -{"id":19132,"name":"Crystal Adorned Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,21,42,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1}, -{"id":19133,"name":"Fel Infused Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,21,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":19134,"name":"Flayed Doomguard Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,34,12,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1}, -{"id":19135,"name":"Blacklight Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,11,13,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1}, -{"id":19136,"name":"Mana Igniting Cord","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,27,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":19137,"name":"Onslaught Girdle","icon":"inv_belt_29","type":8,"armorType":4,"stats":[31,0,11,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":19138,"name":"Band of Sulfuras","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,13,23,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11502,"zoneId":2717}}]}, -{"id":19139,"name":"Fireguard Shoulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":19140,"name":"Cauterizing Band","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,20,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12018,"zoneId":2717}}]}, -{"id":19141,"name":"Luffa","icon":"inv_fabric_wool_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":19142,"name":"Fire Runed Grimoire","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":19143,"name":"Flameguard Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[27,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":19144,"name":"Sabatons of the Flamewalker","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,15,27,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11982,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12057,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12056,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":11988,"zoneId":2717}}]}, -{"id":19145,"name":"Robe of Volatile Power","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,24,20,10,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":19146,"name":"Wristguards of Stability","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":19147,"name":"Ring of Spell Power","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12118,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12259,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12264,"zoneId":2717}},{"drop":{"difficulty":1,"npcId":12098,"zoneId":2717}}]}, -{"id":19148,"name":"Dark Iron Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23636}},{"crafted":{"profession":2,"spellId":23636}}]}, -{"id":19149,"name":"Lava Belt","icon":"inv_belt_32","type":8,"armorType":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":23707}},{"crafted":{"profession":8,"spellId":23707}}]}, -{"id":19156,"name":"Flarecore Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23666}},{"crafted":{"profession":11,"spellId":23666}}]}, -{"id":19157,"name":"Chromatic Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,22,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":23708}},{"crafted":{"profession":8,"spellId":23708}}]}, -{"id":19159,"name":"Woven Ivy Necklace","icon":"inv_misc_herb_15","type":2,"stats":[6,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"factionRestriction":2}, -{"id":19162,"name":"Corehound Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,24,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":23709}},{"crafted":{"profession":8,"spellId":23709}}]}, -{"id":19163,"name":"Molten Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":23710}},{"crafted":{"profession":8,"spellId":23710}}]}, -{"id":19164,"name":"Dark Iron Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23637}},{"crafted":{"profession":2,"spellId":23637}}]}, -{"id":19165,"name":"Flarecore Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,21,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":23667}},{"crafted":{"profession":11,"spellId":23667}}]}, -{"id":19166,"name":"Black Amnesty","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":1.6,"ilvl":66,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23638}},{"crafted":{"profession":2,"spellId":23638}}]}, -{"id":19167,"name":"Blackfury","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[35,0,15,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":2.1,"ilvl":66,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23639}},{"crafted":{"profession":2,"spellId":23639}}]}, -{"id":19168,"name":"Blackguard","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":121,"weaponSpeed":1.8,"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23652}},{"crafted":{"profession":2,"spellId":23652}}]}, -{"id":19169,"name":"Nightfall","icon":"inv_axe_12","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":282,"weaponSpeed":3.5,"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23653}},{"crafted":{"profession":2,"spellId":23653}}]}, -{"id":19170,"name":"Ebon Hand","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":2.5,"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":23650}},{"crafted":{"profession":2,"spellId":23650}}]}, -{"id":19287,"name":"Darkmoon Card: Heroism","icon":"inv_misc_ticket_tarot_heroism_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"sources":[{"quest":{"id":7928,"name":"Darkmoon Warlords Deck"}}]}, -{"id":19288,"name":"Darkmoon Card: Blue Dragon","icon":"inv_misc_ticket_tarot_bluedragon_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"sources":[{"quest":{"id":7907,"name":"Darkmoon Beast Deck"}}]}, -{"id":19289,"name":"Darkmoon Card: Maelstrom","icon":"inv_misc_ticket_tarot_maelstrom_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"sources":[{"quest":{"id":7929,"name":"Darkmoon Elementals Deck"}}]}, -{"id":19290,"name":"Darkmoon Card: Twisting Nether","icon":"inv_misc_ticket_tarot_twistingnether_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true,"sources":[{"quest":{"id":7927,"name":"Darkmoon Portals Deck"}}]}, -{"id":19292,"name":"Last Month's Mutton","icon":"inv_misc_food_18","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":2.5,"ilvl":34,"quality":1,"sources":[{"quest":{"id":7935,"name":"10 Tickets - Last Month's Mutton"}},{"soldBy":{"npcId":56041,"npcName":"Rona Greenteeth","zoneId":5861}}]}, -{"id":19293,"name":"Last Year's Mutton","icon":"inv_misc_food_18","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":82,"weaponSpeed":2,"ilvl":55,"quality":1,"sources":[{"quest":{"id":7936,"name":"50 Tickets - Last Year's Mutton"}},{"soldBy":{"npcId":56041,"npcName":"Rona Greenteeth","zoneId":5861}}]}, -{"id":19295,"name":"Darkmoon Flower","icon":"inv_misc_herb_19","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1,"sources":[{"quest":{"id":7930,"name":"5 Tickets - Darkmoon Flower"}},{"soldBy":{"npcId":14828,"npcName":"Gelvas Grimegate"}}]}, -{"id":19302,"name":"Darkmoon Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"soldBy":{"npcId":14846,"npcName":"Lhara","zoneId":5861}}]}, -{"id":19303,"name":"Darkmoon Necklace","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"soldBy":{"npcId":14846,"npcName":"Lhara","zoneId":5861}}]}, -{"id":19308,"name":"Tome of Arcane Domination","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19309,"name":"Tome of Shadow Force","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19310,"name":"Tome of the Ice Lord","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19311,"name":"Tome of Fiery Arcana","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19312,"name":"Lei of the Lifegiver","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19315,"name":"Therazane's Touch","icon":"inv_misc_branch_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19321,"name":"The Immovable Object","icon":"spell_frost_chillingarmor","type":13,"weaponType":7,"handType":3,"stats":[0,0,15,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,2186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19323,"name":"The Unstoppable Force","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":4,"stats":[19,0,15,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":292,"weaponSpeed":3.8,"ilvl":65,"quality":4}, -{"id":19324,"name":"The Lobotomizer","icon":"inv_sword_29","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.8,"ilvl":65,"quality":4,"unique":true}, -{"id":19325,"name":"Don Julio's Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true}, -{"id":19334,"name":"The Untamed Blade","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[0,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":289,"weaponSpeed":3.4,"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19335,"name":"Spineshatter","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[9,0,16,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":2.6,"ilvl":73,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19336,"name":"Arcane Infused Gem","icon":"spell_nature_wispsplode","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[2],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19337,"name":"The Black Book","icon":"inv_misc_book_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[8],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19339,"name":"Mind Quickening Gem","icon":"spell_nature_wispheal","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[3],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19340,"name":"Rune of Metamorphosis","icon":"inv_misc_rune_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[1],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19341,"name":"Lifegiving Gem","icon":"inv_misc_gem_pearl_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[9],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19342,"name":"Venomous Totem","icon":"inv_misc_idol_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[6],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19343,"name":"Scrolls of Blinding Light","icon":"inv_scroll_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[4],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19344,"name":"Natural Alignment Crystal","icon":"inv_misc_gem_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19345,"name":"Aegis of Preservation","icon":"classic_spell_holy_blessingofprotection","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"classAllowlist":[5],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19346,"name":"Dragonfang Blade","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,16,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":1.8,"ilvl":74,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19347,"name":"Claw of Chromaggus","icon":"inv_weapon_shortblade_28","type":13,"weaponType":2,"handType":1,"stats":[0,0,24,0,10,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":1.5,"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19348,"name":"Red Dragonscale Protector","icon":"inv_shield_20","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19349,"name":"Elementium Reinforced Bulwark","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[0,0,23,0,0,0,0,0,0,10,13,0,0,0,0,0,0,0,0,0,0,0,2243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19350,"name":"Heartstriker","icon":"inv_weapon_bow_09","type":14,"rangedWeaponType":1,"stats":[0,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":248,"weaponSpeed":2.6,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19351,"name":"Maladath, Runed Blade of the Black Flight","icon":"inv_sword_49","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,9,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":162,"weaponSpeed":2.2,"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19352,"name":"Chromatically Tempered Sword","icon":"inv_sword_51","type":13,"weaponType":9,"handType":2,"stats":[14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":2.6,"ilvl":77,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19353,"name":"Drake Talon Cleaver","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[22,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":199,"weaponDamageMax":300,"weaponSpeed":3.4,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19354,"name":"Draconic Avenger","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[21,0,18,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":262,"weaponSpeed":3.2,"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19355,"name":"Shadow Wing Focus Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,62,0,17,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":282,"weaponSpeed":3.2,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19356,"name":"Staff of the Shadow Flame","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,18,0,28,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":315,"weaponSpeed":3.2,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19357,"name":"Herald of Woe","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[31,0,22,0,0,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":199,"weaponDamageMax":300,"weaponSpeed":3.4,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19358,"name":"Draconic Maul","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[27,0,19,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":282,"weaponSpeed":3.5,"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19360,"name":"Lok'amir il Romathis","icon":"inv_mace_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,28,0,8,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":2.1,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19361,"name":"Ashjre'thul, Crossbow of Smiting","icon":"inv_weapon_crossbow_09","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":3.4,"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19362,"name":"Doom's Edge","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[9,16,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":154,"weaponSpeed":2.3,"ilvl":70,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19363,"name":"Crul'shorukh, Edge of Chaos","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":188,"weaponSpeed":2.3,"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19364,"name":"Ashkandi, Greatsword of the Brotherhood","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[0,0,33,0,0,0,0,0,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19365,"name":"Claw of the Black Drake","icon":"inv_weapon_shortblade_27","type":13,"weaponType":3,"handType":1,"stats":[13,0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":2.6,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19366,"name":"Master Dragonslayer's Orb","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,23,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4}, -{"id":19367,"name":"Dragon's Touch","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.6,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19368,"name":"Dragonbreath Hand Cannon","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":2.8,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19369,"name":"Gloves of Rapid Evolution","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,12,12,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19370,"name":"Mantle of the Blackwing Cabal","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,27,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12435,"zoneId":2677}}]}, -{"id":19371,"name":"Pendant of the Fallen Dragon","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,9,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19372,"name":"Helm of Endless Rage","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[26,26,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":13020,"zoneId":2677}}]}, -{"id":19373,"name":"Black Brood Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,17,12,0,0,22,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19374,"name":"Bracers of Arcane Accuracy","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,18,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":12017,"zoneId":2677}}]}, -{"id":19375,"name":"Mish'undare, Circlet of the Mind Flayer","icon":"inv_helmet_52","type":1,"armorType":1,"stats":[0,0,38,30,9,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19376,"name":"Archimtiros' Ring of Reckoning","icon":"inv_jewelry_ring_40","type":11,"stats":[0,14,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19377,"name":"Prestor's Talisman of Connivery","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,25,17,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19378,"name":"Cloak of the Brood Lord","icon":"inv_misc_cape_20","type":4,"stats":[0,0,23,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19379,"name":"Neltharion's Tear","icon":"inv_stone_15","type":12,"stats":[0,0,0,38,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19380,"name":"Therazane's Link","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,27,22,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19381,"name":"Boots of the Shadow Flame","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,22,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19382,"name":"Pure Elementium Band","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,18,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11583,"zoneId":2677}}]}, -{"id":19383,"name":"Master Dragonslayer's Medallion","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,14,24,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4}, -{"id":19384,"name":"Master Dragonslayer's Ring","icon":"inv_jewelry_ring_41","type":11,"stats":[0,0,14,0,0,10,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true}, -{"id":19385,"name":"Empowered Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,23,35,24,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19386,"name":"Elementium Threaded Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,13,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,128,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19387,"name":"Chromatic Boots","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[20,20,19,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19388,"name":"Angelista's Grasp","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,17,20,0,16,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19389,"name":"Taut Dragonhide Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19390,"name":"Taut Dragonhide Gloves","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,0,20,20,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19391,"name":"Shimmering Geta","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,13,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19392,"name":"Girdle of the Fallen Crusader","icon":"inv_belt_11","type":8,"armorType":4,"stats":[20,10,15,17,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19393,"name":"Primalist's Linked Waistguard","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,25,28,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14020,"zoneId":2677}}]}, -{"id":19394,"name":"Drake Talon Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[20,20,17,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19395,"name":"Rejuvenating Gem","icon":"inv_misc_gem_topaz_02","type":12,"stats":[0,0,0,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19396,"name":"Taut Dragonhide Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,30,17,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19397,"name":"Ring of Blackrock","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,0,16,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}},{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19398,"name":"Cloak of Firemaw","icon":"inv_misc_cape_18","type":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19399,"name":"Black Ash Robe","icon":"inv_chest_cloth_50","type":5,"armorType":1,"stats":[0,0,21,22,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19400,"name":"Firemaw's Clutch","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,23,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19401,"name":"Primalist's Linked Legguards","icon":"inv_pants_mail_19","type":9,"armorType":3,"stats":[0,0,22,22,0,8,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19402,"name":"Legguards of the Fallen Crusader","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[36,0,22,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11983,"zoneId":2677}}]}, -{"id":19403,"name":"Band of Forced Concentration","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,20,18,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19405,"name":"Malfurion's Blessed Bulwark","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,40,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,170,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19406,"name":"Drake Fang Talisman","icon":"inv_misc_bone_06","type":12,"stats":[0,0,0,0,0,20,0,0,0,12,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19407,"name":"Ebony Flame Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14601,"zoneId":2677}}]}, -{"id":19426,"name":"Orb of the Darkmoon","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,11,19,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"quest":{"id":7940,"name":"1200 Tickets - Orb of the Darkmoon"}}]}, -{"id":19430,"name":"Shroud of Pure Thought","icon":"inv_misc_cape_16","type":4,"stats":[0,0,20,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19431,"name":"Styleen's Impeding Scarab","icon":"inv_misc_armorkit_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19432,"name":"Circle of Applied Force","icon":"inv_jewelry_ring_37","type":11,"stats":[12,22,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19433,"name":"Emberweave Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,17,22,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11981,"zoneId":2677}}]}, -{"id":19434,"name":"Band of Dark Dominion","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19435,"name":"Essence Gatherer","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,5,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.4,"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19436,"name":"Cloak of Draconic Might","icon":"inv_misc_cape_11","type":4,"stats":[16,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19437,"name":"Boots of Pure Thought","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,20,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19438,"name":"Ringo's Blizzard Boots","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,22,28,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19439,"name":"Interlaced Shadow Jerkin","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,14,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2677,"otherName":"Trash"}}]}, -{"id":19491,"name":"Amulet of the Darkmoon","icon":"inv_jewelry_necklace_14","type":2,"stats":[10,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"quest":{"id":7981,"name":"1200 Tickets - Amulet of the Darkmoon"}}]}, -{"id":19507,"name":"Inquisitor's Shawl","icon":"inv_shoulder_27","type":3,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4542,"zoneId":796}}]}, -{"id":19508,"name":"Branded Leather Bracers","icon":"inv_bracer_11","type":6,"armorType":2,"stats":[0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4542,"zoneId":796}}]}, -{"id":19509,"name":"Dusty Mail Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":4542,"zoneId":796}}]}, -{"id":19510,"name":"Legionnaire's Band","icon":"inv_jewelry_ring_21","type":11,"stats":[12,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19511,"name":"Legionnaire's Band","icon":"inv_jewelry_ring_21","type":11,"stats":[10,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19512,"name":"Legionnaire's Band","icon":"inv_jewelry_ring_21","type":11,"stats":[8,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19513,"name":"Legionnaire's Band","icon":"inv_jewelry_ring_21","type":11,"stats":[6,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19514,"name":"Protector's Band","icon":"inv_jewelry_ring_10","type":11,"stats":[12,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19515,"name":"Protector's Band","icon":"inv_jewelry_ring_10","type":11,"stats":[8,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19516,"name":"Protector's Band","icon":"inv_jewelry_ring_10","type":11,"stats":[10,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19517,"name":"Protector's Band","icon":"inv_jewelry_ring_10","type":11,"stats":[6,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19518,"name":"Advisor's Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,8,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19519,"name":"Advisor's Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,6,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19520,"name":"Advisor's Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,5,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19521,"name":"Advisor's Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,4,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19522,"name":"Lorekeeper's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,8,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19523,"name":"Lorekeeper's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,6,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19524,"name":"Lorekeeper's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,5,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19525,"name":"Lorekeeper's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,4,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19526,"name":"Battle Healer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,11,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19527,"name":"Battle Healer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,9,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19528,"name":"Battle Healer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,8,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19529,"name":"Battle Healer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,6,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19530,"name":"Caretaker's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,11,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19531,"name":"Caretaker's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,9,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19532,"name":"Caretaker's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,8,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19533,"name":"Caretaker's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,6,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19534,"name":"Scout's Medallion","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19535,"name":"Scout's Medallion","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19536,"name":"Scout's Medallion","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19537,"name":"Scout's Medallion","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19538,"name":"Sentinel's Medallion","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19539,"name":"Sentinel's Medallion","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19540,"name":"Sentinel's Medallion","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19541,"name":"Sentinel's Medallion","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19542,"name":"Scout's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,13,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.7,"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19543,"name":"Scout's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.7,"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19544,"name":"Scout's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":1.7,"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19545,"name":"Scout's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.7,"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19546,"name":"Sentinel's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,13,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.7,"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19547,"name":"Sentinel's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.7,"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19548,"name":"Sentinel's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":1.7,"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19549,"name":"Sentinel's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.7,"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19550,"name":"Legionnaire's Sword","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[13,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.7,"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19551,"name":"Legionnaire's Sword","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":2.7,"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19552,"name":"Legionnaire's Sword","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.7,"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19553,"name":"Legionnaire's Sword","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[7,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":2.7,"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19554,"name":"Protector's Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[13,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.7,"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19555,"name":"Protector's Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[11,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":2.7,"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19556,"name":"Protector's Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.7,"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19557,"name":"Protector's Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[7,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":2.7,"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19558,"name":"Outrider's Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":2.4,"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19559,"name":"Outrider's Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":143,"weaponSpeed":2.4,"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19560,"name":"Outrider's Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":2.4,"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19561,"name":"Outrider's Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.4,"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19562,"name":"Outrunner's Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":2.4,"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19563,"name":"Outrunner's Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":143,"weaponSpeed":2.4,"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19564,"name":"Outrunner's Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":2.4,"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19565,"name":"Outrunner's Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.4,"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19566,"name":"Advisor's Gnarled Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,21,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":188,"weaponSpeed":2.9,"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19567,"name":"Advisor's Gnarled Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,18,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":2.9,"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19568,"name":"Advisor's Gnarled Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,14,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":133,"weaponSpeed":2.9,"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19569,"name":"Advisor's Gnarled Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,11,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":2.9,"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":19570,"name":"Lorekeeper's Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,21,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":188,"weaponSpeed":2.9,"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19571,"name":"Lorekeeper's Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,18,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":2.9,"ilvl":53,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19572,"name":"Lorekeeper's Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,14,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":133,"weaponSpeed":2.9,"ilvl":43,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19573,"name":"Lorekeeper's Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,11,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":2.9,"ilvl":33,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":19574,"name":"Strength of Mugamba","icon":"inv_jewelry_necklace_23","type":2,"stats":[7,0,10,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":8041,"name":"Strength of Mount Mugamba"}}]}, -{"id":19575,"name":"Strength of Mugamba","icon":"inv_jewelry_necklace_24","type":2,"stats":[7,6,10,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":8042,"name":"Strength of Mount Mugamba"}}]}, -{"id":19576,"name":"Strength of Mugamba","icon":"inv_jewelry_necklace_25","type":2,"stats":[8,8,13,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":8043,"name":"Strength of Mount Mugamba"}}]}, -{"id":19577,"name":"Rage of Mugamba","icon":"inv_jewelry_necklace_26","type":2,"stats":[8,8,13,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[9],"setName":"Vindicator's Battlegear","setId":474,"sources":[{"quest":{"id":8044,"name":"The Rage of Mugamba"}}]}, -{"id":19578,"name":"Berserker Bracers","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[19,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19579,"name":"Heathen's Brand","icon":"inv_jewelry_necklace_23","type":2,"stats":[8,0,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[4],"sources":[{"quest":{"id":8045,"name":"The Heathen's Brand"}}]}, -{"id":19580,"name":"Berserker Bracers","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[17,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":19581,"name":"Berserker Bracers","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[14,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4}, -{"id":19582,"name":"Windtalker's Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,19,8,0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19583,"name":"Windtalker's Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,17,7,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":19584,"name":"Windtalker's Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,14,6,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4}, -{"id":19585,"name":"Heathen's Brand","icon":"inv_jewelry_necklace_24","type":2,"stats":[8,0,8,0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":8046,"name":"The Heathen's Brand"}}]}, -{"id":19586,"name":"Heathen's Brand","icon":"inv_jewelry_necklace_25","type":2,"stats":[10,0,10,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":8047,"name":"The Heathen's Brand"}}]}, -{"id":19587,"name":"Forest Stalker's Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19588,"name":"Hero's Brand","icon":"inv_jewelry_necklace_26","type":2,"stats":[10,0,10,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[4],"setName":"Freethinker's Armor","setId":475,"sources":[{"quest":{"id":8048,"name":"The Hero's Brand"}}]}, -{"id":19589,"name":"Forest Stalker's Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,17,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":19590,"name":"Forest Stalker's Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4}, -{"id":19591,"name":"The Eye of Zuldazar","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,6,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[5],"sources":[{"quest":{"id":8049,"name":"The Eye of Zuldazar"}}]}, -{"id":19592,"name":"The Eye of Zuldazar","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,12,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":8050,"name":"The Eye of Zuldazar"}}]}, -{"id":19593,"name":"The Eye of Zuldazar","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,15,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":8051,"name":"The Eye of Zuldazar"}}]}, -{"id":19594,"name":"The All-Seeing Eye of Zuldazar","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,15,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[5],"setName":"Confessor's Raiment","setId":480,"sources":[{"quest":{"id":8052,"name":"The All-Seeing Eye of Zuldazar"}}]}, -{"id":19595,"name":"Dryad's Wrist Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,15,19,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":19596,"name":"Dryad's Wrist Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,12,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":4}, -{"id":19597,"name":"Dryad's Wrist Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,11,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":4}, -{"id":19598,"name":"Pebble of Kajaro","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[3],"sources":[{"quest":{"id":8101,"name":"The Pebble of Kajaro"}}]}, -{"id":19599,"name":"Pebble of Kajaro","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,17,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":8102,"name":"The Pebble of Kajaro"}}]}, -{"id":19600,"name":"Pebble of Kajaro","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,21,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":8103,"name":"The Pebble of Kajaro"}}]}, -{"id":19601,"name":"Jewel of Kajaro","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,21,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[3],"setName":"Illusionist's Attire","setId":482,"sources":[{"quest":{"id":8104,"name":"The Jewel of Kajaro"}}]}, -{"id":19602,"name":"Kezan's Taint","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[8],"sources":[{"quest":{"id":8106,"name":"Kezan's Taint"}}]}, -{"id":19603,"name":"Kezan's Taint","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[8],"sources":[{"quest":{"id":8107,"name":"Kezan's Taint"}}]}, -{"id":19604,"name":"Kezan's Taint","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"sources":[{"quest":{"id":8108,"name":"Kezan's Taint"}}]}, -{"id":19605,"name":"Kezan's Unstoppable Taint","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[8],"setName":"Demoniac's Threads","setId":481,"sources":[{"quest":{"id":8109,"name":"Kezan's Unstoppable Taint"}}]}, -{"id":19606,"name":"Vision of Voodress","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,8,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[7],"sources":[{"quest":{"id":8116,"name":"Vision of Voodress"}}]}, -{"id":19607,"name":"Vision of Voodress","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,8,8,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":8117,"name":"Vision of Voodress"}}]}, -{"id":19608,"name":"Vision of Voodress","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,10,10,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":8118,"name":"Vision of Voodress"}}]}, -{"id":19609,"name":"Unmarred Vision of Voodress","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,10,10,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[7],"setName":"Augur's Regalia","setId":476,"sources":[{"quest":{"id":8119,"name":"The Unmarred Vision of Voodress"}}]}, -{"id":19610,"name":"Enchanted South Seas Kelp","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,8,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[1],"sources":[{"quest":{"id":8110,"name":"Enchanted South Seas Kelp"}}]}, -{"id":19611,"name":"Enchanted South Seas Kelp","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,8,8,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":8111,"name":"Enchanted South Seas Kelp"}}]}, -{"id":19612,"name":"Enchanted South Seas Kelp","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,10,10,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":8112,"name":"Enchanted South Seas Kelp"}}]}, -{"id":19613,"name":"Pristine Enchanted South Seas Kelp","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,10,10,0,9,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[1],"setName":"Haruspex's Garb","setId":479,"sources":[{"quest":{"id":8113,"name":"Pristine Enchanted South Seas Kelp"}}]}, -{"id":19614,"name":"Zandalarian Shadow Talisman","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[6],"sources":[{"quest":{"id":8141,"name":"Zandalarian Shadow Talisman"}}]}, -{"id":19615,"name":"Zandalarian Shadow Talisman","icon":"inv_jewelry_necklace_24","type":2,"stats":[6,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":8142,"name":"Zandalarian Shadow Talisman"}}]}, -{"id":19616,"name":"Zandalarian Shadow Talisman","icon":"inv_jewelry_necklace_25","type":2,"stats":[6,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":8143,"name":"Zandalarian Shadow Talisman"}}]}, -{"id":19617,"name":"Zandalarian Shadow Mastery Talisman","icon":"inv_jewelry_necklace_26","type":2,"stats":[6,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6],"setName":"Madcap's Outfit","setId":478,"sources":[{"quest":{"id":8144,"name":"Zandalarian Shadow Mastery Talisman"}}]}, -{"id":19618,"name":"Maelstrom's Tendril","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"classAllowlist":[2],"sources":[{"quest":{"id":8145,"name":"The Maelstrom's Tendril"}}]}, -{"id":19619,"name":"Maelstrom's Tendril","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,12,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[2],"sources":[{"quest":{"id":8146,"name":"The Maelstrom's Tendril"}}]}, -{"id":19620,"name":"Maelstrom's Tendril","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,15,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"sources":[{"quest":{"id":8147,"name":"The Maelstrom's Tendril"}}]}, -{"id":19621,"name":"Maelstrom's Wrath","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,10,18,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[2],"setName":"Predator's Armor","setId":477,"sources":[{"quest":{"id":8148,"name":"Maelstrom's Wrath"}}]}, -{"id":19682,"name":"Bloodvine Vest","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,20,23,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodvine Garb","setId":421,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":24091}},{"crafted":{"profession":11,"spellId":24091}}]}, -{"id":19683,"name":"Bloodvine Leggings","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,9,32,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodvine Garb","setId":421,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":24092}},{"crafted":{"profession":11,"spellId":24092}}]}, -{"id":19684,"name":"Bloodvine Boots","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,24,16,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodvine Garb","setId":421,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":24093}},{"crafted":{"profession":11,"spellId":24093}}]}, -{"id":19685,"name":"Primal Batskin Jerkin","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,32,6,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Primal Batskin","setId":441,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24121}},{"crafted":{"profession":8,"spellId":24121}}]}, -{"id":19686,"name":"Primal Batskin Gloves","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,10,9,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Primal Batskin","setId":441,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24122}},{"crafted":{"profession":8,"spellId":24122}}]}, -{"id":19687,"name":"Primal Batskin Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,14,7,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Primal Batskin","setId":441,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24123}},{"crafted":{"profession":8,"spellId":24123}}]}, -{"id":19688,"name":"Blood Tiger Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,17,17,16,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Blood Tiger Harness","setId":442,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":24124}},{"crafted":{"profession":8,"spellId":24124}}]}, -{"id":19689,"name":"Blood Tiger Shoulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,13,13,12,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Blood Tiger Harness","setId":442,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":24125}},{"crafted":{"profession":8,"spellId":24125}}]}, -{"id":19690,"name":"Bloodsoul Breastplate","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,9,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodsoul Embrace","setId":443,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":24136}},{"crafted":{"profession":2,"spellId":24136}}]}, -{"id":19691,"name":"Bloodsoul Shoulders","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodsoul Embrace","setId":443,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":24137}},{"crafted":{"profession":2,"spellId":24137}}]}, -{"id":19692,"name":"Bloodsoul Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,10,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Bloodsoul Embrace","setId":443,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":24138}},{"crafted":{"profession":2,"spellId":24138}}]}, -{"id":19693,"name":"Darksoul Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,32,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"The Darksoul","setId":444,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24139}},{"crafted":{"profession":2,"spellId":24139}}]}, -{"id":19694,"name":"Darksoul Leggings","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,539,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"The Darksoul","setId":444,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24140}},{"crafted":{"profession":2,"spellId":24140}}]}, -{"id":19695,"name":"Darksoul Shoulders","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[0,0,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"The Darksoul","setId":444,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24141}},{"crafted":{"profession":2,"spellId":24141}}]}, -{"id":19808,"name":"Rockhide Strongfish","icon":"inv_misc_fish_27","type":13,"weaponType":4,"handType":2,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.5,"ilvl":45,"quality":2}, -{"id":19812,"name":"Rune of the Dawn","icon":"inv_misc_rune_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"unique":true}, -{"id":19822,"name":"Zandalar Vindicator's Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[23,15,24,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,767,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[9],"setName":"Vindicator's Battlegear","setId":474,"sources":[{"quest":{"id":8079,"name":"Paragons of Power: The Vindicator's Breastplate"}}]}, -{"id":19823,"name":"Zandalar Vindicator's Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[25,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[9],"setName":"Vindicator's Battlegear","setId":474,"sources":[{"quest":{"id":8078,"name":"Paragons of Power: The Vindicator's Belt"}}]}, -{"id":19824,"name":"Zandalar Vindicator's Armguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[9],"setName":"Vindicator's Battlegear","setId":474,"sources":[{"quest":{"id":8058,"name":"Paragons of Power: The Vindicator's Armguards"}}]}, -{"id":19825,"name":"Zandalar Freethinker's Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[27,0,26,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,767,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[4],"setName":"Freethinker's Armor","setId":475,"sources":[{"quest":{"id":8055,"name":"Paragons of Power: The Freethinker's Breastplate"}}]}, -{"id":19826,"name":"Zandalar Freethinker's Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[17,0,26,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[4],"setName":"Freethinker's Armor","setId":475,"sources":[{"quest":{"id":8054,"name":"Paragons of Power: The Freethinker's Belt"}}]}, -{"id":19827,"name":"Zandalar Freethinker's Armguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[12,0,20,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[4],"setName":"Freethinker's Armor","setId":475,"sources":[{"quest":{"id":8053,"name":"Paragons of Power: The Freethinker's Armguards"}}]}, -{"id":19828,"name":"Zandalar Augur's Hauberk","icon":"inv_chest_fur","type":5,"armorType":3,"stats":[0,0,31,29,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[7],"setName":"Augur's Regalia","setId":476,"sources":[{"quest":{"id":8075,"name":"Paragons of Power: The Augur's Hauberk"}}]}, -{"id":19829,"name":"Zandalar Augur's Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,0,31,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[7],"setName":"Augur's Regalia","setId":476,"sources":[{"quest":{"id":8074,"name":"Paragons of Power: The Augur's Belt"}}]}, -{"id":19830,"name":"Zandalar Augur's Bracers","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,0,21,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[7],"setName":"Augur's Regalia","setId":476,"sources":[{"quest":{"id":8056,"name":"Paragons of Power: The Augur's Bracers"}}]}, -{"id":19831,"name":"Zandalar Predator's Mantle","icon":"inv_shoulder_22","type":3,"armorType":3,"stats":[0,15,24,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"classAllowlist":[2],"setName":"Predator's Armor","setId":477,"sources":[{"quest":{"id":8067,"name":"Paragons of Power: The Predator's Mantle"}}]}, -{"id":19832,"name":"Zandalar Predator's Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,18,12,0,0,18,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[2],"setName":"Predator's Armor","setId":477,"sources":[{"quest":{"id":8066,"name":"Paragons of Power: The Predator's Belt"}}]}, -{"id":19833,"name":"Zandalar Predator's Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,10,10,0,10,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[2],"setName":"Predator's Armor","setId":477,"sources":[{"quest":{"id":8062,"name":"Paragons of Power: The Predator's Bracers"}}]}, -{"id":19834,"name":"Zandalar Madcap's Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,22,19,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6],"setName":"Madcap's Outfit","setId":478,"sources":[{"quest":{"id":8073,"name":"Paragons of Power: The Madcap's Tunic"}}]}, -{"id":19835,"name":"Zandalar Madcap's Mantle","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,20,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[6],"setName":"Madcap's Outfit","setId":478,"sources":[{"quest":{"id":8072,"name":"Paragons of Power: The Madcap's Mantle"}}]}, -{"id":19836,"name":"Zandalar Madcap's Bracers","icon":"inv_bracer_14","type":6,"armorType":2,"stats":[0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[6],"setName":"Madcap's Outfit","setId":478,"sources":[{"quest":{"id":8063,"name":"Paragons of Power: The Madcap's Bracers"}}]}, -{"id":19838,"name":"Zandalar Haruspex's Tunic","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,38,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[1],"setName":"Haruspex's Garb","setId":479,"sources":[{"quest":{"id":8065,"name":"Paragons of Power: The Haruspex's Tunic"}}]}, -{"id":19839,"name":"Zandalar Haruspex's Belt","icon":"inv_belt_01","type":8,"armorType":2,"stats":[0,0,31,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[1],"setName":"Haruspex's Garb","setId":479,"sources":[{"quest":{"id":8064,"name":"Paragons of Power: The Haruspex's Belt"}}]}, -{"id":19840,"name":"Zandalar Haruspex's Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,19,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[1],"setName":"Haruspex's Garb","setId":479,"sources":[{"quest":{"id":8057,"name":"Paragons of Power: The Haruspex's Bracers"}}]}, -{"id":19841,"name":"Zandalar Confessor's Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,35,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"classAllowlist":[5],"setName":"Confessor's Raiment","setId":480,"sources":[{"quest":{"id":8071,"name":"Paragons of Power: The Confessor's Mantle"}}]}, -{"id":19842,"name":"Zandalar Confessor's Bindings","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,32,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[5],"setName":"Confessor's Raiment","setId":480,"sources":[{"quest":{"id":8070,"name":"Paragons of Power: The Confessor's Bindings"}}]}, -{"id":19843,"name":"Zandalar Confessor's Wraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[5],"setName":"Confessor's Raiment","setId":480,"sources":[{"quest":{"id":8061,"name":"Paragons of Power: The Confessor's Wraps"}}]}, -{"id":19845,"name":"Zandalar Illusionist's Mantle","icon":"inv_shoulder_17","type":3,"armorType":1,"stats":[0,0,33,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[3],"setName":"Illusionist's Attire","setId":482,"sources":[{"quest":{"id":8068,"name":"Paragons of Power: The Illusionist's Mantle"}}]}, -{"id":19846,"name":"Zandalar Illusionist's Wraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,21,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[3],"setName":"Illusionist's Attire","setId":482,"sources":[{"quest":{"id":8060,"name":"Paragons of Power: The Illusionist's Wraps"}}]}, -{"id":19848,"name":"Zandalar Demoniac's Wraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[8],"setName":"Demoniac's Threads","setId":481,"sources":[{"quest":{"id":8059,"name":"Paragons of Power: The Demoniac's Wraps"}}]}, -{"id":19849,"name":"Zandalar Demoniac's Mantle","icon":"inv_shoulder_17","type":3,"armorType":1,"stats":[0,0,39,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":4,"classAllowlist":[8],"setName":"Demoniac's Threads","setId":481,"sources":[{"quest":{"id":8076,"name":"Paragons of Power: The Demoniac's Mantle"}}]}, -{"id":19852,"name":"Ancient Hakkari Manslayer","icon":"inv_axe_35","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":2,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19853,"name":"Gurubashi Dwarf Destroyer","icon":"inv_weapon_rifle_10","type":14,"rangedWeaponType":3,"stats":[0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":236,"weaponSpeed":2.8,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19854,"name":"Zin'rokh, Destroyer of Worlds","icon":"inv_sword_55","type":13,"weaponType":9,"handType":4,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":295,"weaponSpeed":3.8,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19855,"name":"Bloodsoaked Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[36,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19856,"name":"The Eye of Hakkar","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19857,"name":"Cloak of Consumption","icon":"inv_misc_cape_22","type":4,"stats":[0,0,15,20,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19859,"name":"Fang of the Faceless","icon":"inv_weapon_shortblade_30","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":1.9,"ilvl":68,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19861,"name":"Touch of Chaos","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":160,"weaponSpeed":1.5,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19862,"name":"Aegis of the Blood God","icon":"inv_shield_12","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19863,"name":"Primalist's Seal","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,18,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"unique":true,"setName":"Prayer of the Primal","setId":465,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19864,"name":"Bloodcaller","icon":"inv_sword_18","type":13,"weaponType":9,"handType":1,"stats":[0,0,26,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":2,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19865,"name":"Warblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.7,"ilvl":68,"quality":4,"setName":"The Twin Blades of Hakkari","setId":461,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19866,"name":"Warblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":9,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":106,"weaponSpeed":1.7,"ilvl":66,"quality":4,"setName":"The Twin Blades of Hakkari","setId":461,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}},{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19867,"name":"Bloodlord's Defender","icon":"inv_sword_54","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":1.9,"ilvl":66,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19869,"name":"Blooddrenched Grips","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,17,16,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19870,"name":"Hakkari Loa Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,11,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19871,"name":"Talisman of Protection","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,0,8,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":19873,"name":"Overlord's Crimson Band","icon":"inv_jewelry_ring_39","type":11,"stats":[9,8,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"unique":true,"setName":"Overlord's Resolution","setId":464,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19874,"name":"Halberd of Smiting","icon":"inv_weapon_halberd_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":263,"weaponSpeed":3.5,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19875,"name":"Bloodstained Coif","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,14,14,0,0,14,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19876,"name":"Soul Corrupter's Necklace","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,10,16,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":19877,"name":"Animist's Leggings","icon":"inv_pants_mail_14","type":9,"armorType":2,"stats":[0,0,32,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19878,"name":"Bloodsoaked Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[16,11,16,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19884,"name":"Jin'do's Judgement","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,19,0,0,16,36,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":165,"weaponDamageMax":248,"weaponSpeed":3.3,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19885,"name":"Jin'do's Evil Eye","icon":"inv_jewelry_ring_45","type":2,"stats":[0,0,16,20,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19886,"name":"The Hexxer's Cover","icon":"inv_mask_02","type":1,"armorType":1,"stats":[0,0,19,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19887,"name":"Bloodstained Legplates","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,24,15,0,0,0,14,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19888,"name":"Overlord's Embrace","icon":"inv_misc_cape_21","type":4,"stats":[0,0,10,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,95,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19889,"name":"Blooddrenched Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,35,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19890,"name":"Jin'do's Hexxer","icon":"inv_mace_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,15,0,0,0,14,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.4,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19891,"name":"Jin'do's Bag of Whammies","icon":"inv_misc_bag_10_black","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,15,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19892,"name":"Animist's Boots","icon":"inv_boots_chain_13","type":10,"armorType":2,"stats":[0,0,23,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19893,"name":"Zanzil's Seal","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,19,9,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"unique":true,"setName":"Zanzil's Concentration","setId":462,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19894,"name":"Bloodsoaked Gauntlets","icon":"inv_gauntlets_14","type":7,"armorType":4,"stats":[17,0,14,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19895,"name":"Bloodtinged Kilt","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,38,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":19896,"name":"Thekal's Grasp","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":1,"stats":[0,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":2.2,"ilvl":65,"quality":4,"setName":"Primal Blessing","setId":463,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":19897,"name":"Betrayer's Boots","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,20,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":19898,"name":"Seal of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,8,0,0,0,14,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"setName":"Major Mojo Infusion","setId":466,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":19899,"name":"Ritualistic Legguards","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,26,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":19900,"name":"Zulian Stone Axe","icon":"inv_axe_34","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,22,0,0,14,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":2.8,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19901,"name":"Zulian Slicer","icon":"inv_sword_35","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.5,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":19903,"name":"Fang of Venoxis","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":1,"stats":[0,0,12,0,17,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":80,"weaponSpeed":1.3,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19904,"name":"Runed Bloodstained Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,29,19,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19905,"name":"Zanzil's Band","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,0,13,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"setName":"Zanzil's Concentration","setId":462,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19906,"name":"Blooddrenched Footpads","icon":"inv_boots_chain_04","type":10,"armorType":2,"stats":[0,21,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19907,"name":"Zulian Tigerhide Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,13,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14507,"zoneId":1977}}]}, -{"id":19908,"name":"Sceptre of Smiting","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":145,"weaponSpeed":2.6,"ilvl":65,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":19909,"name":"Will of Arlokk","icon":"inv_staff_35","type":13,"weaponType":8,"handType":4,"stats":[0,0,33,0,35,0,0,0,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":222,"weaponSpeed":3,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14515,"zoneId":1977}}]}, -{"id":19910,"name":"Arlokk's Grasp","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":85,"weaponSpeed":1.5,"ilvl":65,"quality":4,"unique":true,"setName":"Primal Blessing","setId":463,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14515,"zoneId":1977}}]}, -{"id":19912,"name":"Overlord's Onyx Band","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,11,0,0,0,0,0,0,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"setName":"Overlord's Resolution","setId":464,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14515,"zoneId":1977}}]}, -{"id":19913,"name":"Bloodsoaked Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,8,25,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14515,"zoneId":1977}}]}, -{"id":19915,"name":"Zulian Defender","icon":"inv_shield_22","type":13,"weaponType":7,"handType":3,"stats":[0,0,15,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":19918,"name":"Jeklik's Crusher","icon":"inv_mace_19","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":248,"weaponSpeed":3.6,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":19919,"name":"Bloodstained Greaves","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,21,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":19920,"name":"Primalist's Band","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,8,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"setName":"Prayer of the Primal","setId":465,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":19921,"name":"Zulian Hacker","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[173,690,859,1115,1199,1200,-84,-81,-78,-14,193,605,858,860],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.4,"ilvl":65,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":19922,"name":"Arlokk's Hoodoo Stick","icon":"inv_misc_bone_dwarfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14515,"zoneId":1977}}]}, -{"id":19923,"name":"Jeklik's Opaline Talisman","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,0,19,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":19925,"name":"Band of Jin","icon":"inv_jewelry_ring_44","type":11,"stats":[0,14,8,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"setName":"Major Mojo Infusion","setId":466,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":19927,"name":"Mar'li's Touch","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,5,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":170,"weaponSpeed":1.7,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":19928,"name":"Animist's Spaulders","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,29,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":19929,"name":"Bloodtinged Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,19,16,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11380,"zoneId":1977}}]}, -{"id":19930,"name":"Mar'li's Eye","icon":"inv_zulgurubtrinket","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":19944,"name":"Nat Pagle's Fish Terminator","icon":"inv_fishingpole_02","type":13,"weaponType":8,"handType":4,"stats":[41,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":258,"weaponSpeed":3.5,"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15114,"zoneId":1977}}]}, -{"id":19945,"name":"Lizardscale Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,22,19,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15114,"zoneId":1977}}]}, -{"id":19946,"name":"Tigule's Harpoon","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":232,"weaponSpeed":3.3,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15114,"zoneId":1977}}]}, -{"id":19947,"name":"Nat Pagle's Broken Reel","icon":"inv_gizmo_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15114,"zoneId":1977}}]}, -{"id":19948,"name":"Zandalarian Hero Badge","icon":"inv_jewelry_necklace_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"unique":true,"sources":[{"quest":{"id":8183,"name":"The Heart of Hakkar"}}]}, -{"id":19949,"name":"Zandalarian Hero Medallion","icon":"inv_jewelry_necklace_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"unique":true,"sources":[{"quest":{"id":8183,"name":"The Heart of Hakkar"}}]}, -{"id":19950,"name":"Zandalarian Hero Charm","icon":"inv_jewelry_necklace_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"unique":true,"sources":[{"quest":{"id":8183,"name":"The Heart of Hakkar"}}]}, -{"id":19951,"name":"Gri'lek's Charm of Might","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[9],"setName":"Vindicator's Battlegear","setId":474}, -{"id":19952,"name":"Gri'lek's Charm of Valor","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[4],"setName":"Freethinker's Armor","setId":475}, -{"id":19953,"name":"Renataki's Charm of Beasts","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[2],"setName":"Predator's Armor","setId":477}, -{"id":19954,"name":"Renataki's Charm of Trickery","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[6],"setName":"Madcap's Outfit","setId":478}, -{"id":19955,"name":"Wushoolay's Charm of Nature","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[1],"setName":"Haruspex's Garb","setId":479}, -{"id":19956,"name":"Wushoolay's Charm of Spirits","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[7],"setName":"Augur's Regalia","setId":476}, -{"id":19957,"name":"Hazza'rah's Charm of Destruction","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[8],"setName":"Demoniac's Threads","setId":481}, -{"id":19958,"name":"Hazza'rah's Charm of Healing","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[5],"setName":"Confessor's Raiment","setId":480}, -{"id":19959,"name":"Hazza'rah's Charm of Magic","icon":"inv_jewelry_necklace_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[3],"setName":"Illusionist's Attire","setId":482}, -{"id":19961,"name":"Gri'lek's Grinder","icon":"inv_mace_04","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":2.4,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15082,"zoneId":1977}}]}, -{"id":19962,"name":"Gri'lek's Carver","icon":"inv_axe_24","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":274,"weaponSpeed":3.9,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15082,"zoneId":1977}}]}, -{"id":19963,"name":"Pitchfork of Madness","icon":"inv_spear_03","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":246,"weaponSpeed":3.5,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15084,"zoneId":1977}}]}, -{"id":19964,"name":"Renataki's Soul Conduit","icon":"inv_sword_37","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.1,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15084,"zoneId":1977}}]}, -{"id":19965,"name":"Wushoolay's Poker","icon":"inv_sword_37","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.6,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15085,"zoneId":1977}}]}, -{"id":19967,"name":"Thoughtblighter","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15083,"zoneId":1977}}]}, -{"id":19968,"name":"Fiery Retributer","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":1.8,"ilvl":68,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15083,"zoneId":1977}}]}, -{"id":19969,"name":"Nat Pagle's Extreme Anglin' Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":8225,"name":"Rare Fish - Brownell's Blue Striped Racer"}}]}, -{"id":19970,"name":"Arcanite Fishing Pole","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":63,"weaponSpeed":3,"ilvl":20,"quality":3,"unique":true,"sources":[{"quest":{"id":8193,"name":"Master Angler"}}]}, -{"id":19972,"name":"Lucky Fishing Hat","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":8221,"name":"Rare Fish - Keefer's Angelfish"}}]}, -{"id":19979,"name":"Hook of the Master Angler","icon":"trade_fishing","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"quest":{"id":8193,"name":"Master Angler"}}]}, -{"id":19982,"name":"Duskbat Drape","icon":"inv_misc_cape_20","type":4,"stats":[0,14,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[6]}, -{"id":19984,"name":"Ebon Mask","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,18,11,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[6]}, -{"id":19990,"name":"Blessed Prayer Beads","icon":"inv_jewelry_necklace_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[5]}, -{"id":19991,"name":"Devilsaur Eye","icon":"inv_misc_eye_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[2]}, -{"id":19992,"name":"Devilsaur Tooth","icon":"inv_misc_bone_07","type":12,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[2]}, -{"id":19993,"name":"Hoodoo Hunting Bow","icon":"inv_waepon_bow_zulgrub_d_02","type":14,"rangedWeaponType":1,"stats":[0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.8,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15085,"zoneId":1977}}]}, -{"id":19998,"name":"Bloodvine Lens","icon":"inv_helmet_44","type":1,"armorType":2,"stats":[0,0,12,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":24357}},{"crafted":{"profession":4,"spellId":24357}}]}, -{"id":19999,"name":"Bloodvine Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,0,0,16,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":24356}},{"crafted":{"profession":4,"spellId":24356}}]}, -{"id":20006,"name":"Circle of Hope","icon":"inv_jewelry_ring_32","type":11,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[5]}, -{"id":20032,"name":"Flowing Ritual Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,37,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14510,"zoneId":1977}}]}, -{"id":20033,"name":"Zandalar Demoniac's Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,35,23,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[8],"setName":"Demoniac's Threads","setId":481,"sources":[{"quest":{"id":8077,"name":"Paragons of Power: The Demoniac's Robes"}}]}, -{"id":20034,"name":"Zandalar Illusionist's Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,44,23,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[3],"setName":"Illusionist's Attire","setId":482,"sources":[{"quest":{"id":8069,"name":"Paragons of Power: The Illusionist's Robes"}}]}, -{"id":20035,"name":"Glacial Spike","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":1.3,"ilvl":52,"quality":3,"classAllowlist":[3]}, -{"id":20036,"name":"Fire Ruby","icon":"inv_misc_gem_bloodstone_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[3]}, -{"id":20037,"name":"Arcane Crystal Pendant","icon":"inv_misc_gem_topaz_01","type":2,"stats":[0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[3]}, -{"id":20038,"name":"Mandokir's Sting","icon":"inv_waepon_bow_zulgrub_d_01","type":14,"rangedWeaponType":1,"stats":[0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":212,"weaponSpeed":2.6,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":11382,"zoneId":1977}}]}, -{"id":20039,"name":"Dark Iron Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,120,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[287,333,611,612,613,696,697,698,866,867,868,951,952,953,1036,1037,1038,1121,1122,1123,1206,1207,1208,1614,1615,-325,-84,-81,-78,-69,-68,-14,-12,-10],"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24399}},{"crafted":{"profession":2,"spellId":24399}}]}, -{"id":20041,"name":"Highlander's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[17,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"setName":"The Highlander's Resolution","setId":467,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20042,"name":"Highlander's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[15,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"The Highlander's Resolve","setId":468,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20043,"name":"Highlander's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,17,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Highlander's Determination","setId":469,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20044,"name":"Highlander's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,10,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Highlander's Fortitude","setId":470,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20045,"name":"Highlander's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,17,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Highlander's Purpose","setId":471,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20046,"name":"Highlander's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,7,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Highlander's Will","setId":472,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20047,"name":"Highlander's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,12,12,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"The Highlander's Intent","setId":473,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20048,"name":"Highlander's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[14,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"setName":"The Highlander's Resolution","setId":467,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20049,"name":"Highlander's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[18,0,8,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"The Highlander's Resolve","setId":468,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20050,"name":"Highlander's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,10,21,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Highlander's Determination","setId":469,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20051,"name":"Highlander's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,21,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Highlander's Fortitude","setId":470,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20052,"name":"Highlander's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Highlander's Purpose","setId":471,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20053,"name":"Highlander's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,8,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Highlander's Will","setId":472,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20054,"name":"Highlander's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,21,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"The Highlander's Intent","setId":473,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20055,"name":"Highlander's Chain Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,14,33,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[2,7],"setName":"The Highlander's Determination","setId":469,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20056,"name":"Highlander's Mail Pauldrons","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,17,18,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[2,7],"setName":"The Highlander's Fortitude","setId":470,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20057,"name":"Highlander's Plate Spaulders","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[18,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[9,4],"setName":"The Highlander's Resolution","setId":467,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20058,"name":"Highlander's Lamellar Spaulders","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[22,0,15,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[4],"setName":"The Highlander's Resolve","setId":468,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20059,"name":"Highlander's Leather Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6,1],"setName":"The Highlander's Purpose","setId":471,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20060,"name":"Highlander's Lizardhide Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,15,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6,1],"setName":"The Highlander's Will","setId":472,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20061,"name":"Highlander's Epaulets","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,33,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[5,3,8],"setName":"The Highlander's Intent","setId":473,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20068,"name":"Deathguard's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,5,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20069,"name":"Ironbark Staff","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,26,0,0,0,28,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":243,"weaponSpeed":3.4,"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20070,"name":"Sageclaw","icon":"inv_sword_13","type":13,"weaponType":2,"handType":1,"stats":[0,0,8,0,0,0,14,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":95,"weaponSpeed":1.7,"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20071,"name":"Talisman of Arathor","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20072,"name":"Defiler's Talisman","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20073,"name":"Cloak of the Honor Guard","icon":"inv_misc_cape_02","type":4,"stats":[0,5,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20082,"name":"Woestave","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":1.9,"ilvl":52,"quality":3,"classAllowlist":[5]}, -{"id":20083,"name":"Hunting Spear","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,17,0,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":168,"weaponSpeed":3.1,"ilvl":52,"quality":3,"classAllowlist":[2]}, -{"id":20084,"name":"Hunting Net","icon":"inv_misc_net_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":20088,"name":"Highlander's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,10,8,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20089,"name":"Highlander's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,4,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20090,"name":"Highlander's Padded Girdle","icon":"inv_belt_20","type":8,"armorType":2,"stats":[0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20091,"name":"Highlander's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,8,17,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20092,"name":"Highlander's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,7,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20093,"name":"Highlander's Padded Greaves","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20094,"name":"Highlander's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20095,"name":"Highlander's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20096,"name":"Highlander's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20097,"name":"Highlander's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,10,8,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20098,"name":"Highlander's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20099,"name":"Highlander's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20100,"name":"Highlander's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,8,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20101,"name":"Highlander's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,6,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20102,"name":"Highlander's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,5,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20103,"name":"Highlander's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,6,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20104,"name":"Highlander's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20105,"name":"Highlander's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20106,"name":"Highlander's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[11,0,4,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20107,"name":"Highlander's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[12,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20108,"name":"Highlander's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[11,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20109,"name":"Highlander's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[12,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20110,"name":"Highlander's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[9,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20111,"name":"Highlander's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[9,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20112,"name":"Highlander's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20113,"name":"Highlander's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20114,"name":"Highlander's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20115,"name":"Highlander's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,10,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20116,"name":"Highlander's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20117,"name":"Highlander's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20118,"name":"Highlander's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,8,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20119,"name":"Highlander's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20120,"name":"Highlander's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":2,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20121,"name":"Highlander's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,17,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20122,"name":"Highlander's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,11,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20123,"name":"Highlander's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20124,"name":"Highlander's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[10,0,8,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20125,"name":"Highlander's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[15,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20126,"name":"Highlander's Mail Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20127,"name":"Highlander's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[11,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20128,"name":"Highlander's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20129,"name":"Highlander's Mail Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":20130,"name":"Diamond Flask","icon":"inv_drink_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[9]}, -{"id":20134,"name":"Skyfury Helm","icon":"inv_helmet_57","type":1,"armorType":3,"stats":[13,0,14,0,0,12,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"classAllowlist":[7]}, -{"id":20150,"name":"Defiler's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,17,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Defiler's Determination","setId":483,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20151,"name":"Defiler's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,10,8,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20152,"name":"Defiler's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":2,"stats":[0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20153,"name":"Defiler's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,4,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20154,"name":"Defiler's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,10,21,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Defiler's Determination","setId":483,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20155,"name":"Defiler's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,8,17,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20156,"name":"Defiler's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,7,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20157,"name":"Defiler's Chain Greaves","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20158,"name":"Defiler's Chain Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,14,33,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[2,7],"setName":"The Defiler's Determination","setId":483,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20159,"name":"Defiler's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,21,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"The Defiler's Intent","setId":485,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20160,"name":"Defiler's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20161,"name":"Defiler's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20162,"name":"Defiler's Cloth Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20163,"name":"Defiler's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,12,12,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"The Defiler's Intent","setId":485,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20164,"name":"Defiler's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20165,"name":"Defiler's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,10,8,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20166,"name":"Defiler's Cloth Girdle","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20167,"name":"Defiler's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,8,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Defiler's Will","setId":488,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20168,"name":"Defiler's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,6,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20169,"name":"Defiler's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,5,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20170,"name":"Defiler's Lizardhide Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,8,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20171,"name":"Defiler's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,7,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Defiler's Will","setId":488,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20172,"name":"Defiler's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20173,"name":"Defiler's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20174,"name":"Defiler's Lizardhide Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,6,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20175,"name":"Defiler's Lizardhide Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,15,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6,1],"setName":"The Defiler's Will","setId":488,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20176,"name":"Defiler's Epaulets","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,33,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[5,3,8],"setName":"The Defiler's Intent","setId":485,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20177,"name":"Defiler's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[15,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"The Defiler's Resolve","setId":908,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20178,"name":"Defiler's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,11,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20179,"name":"Defiler's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[11,0,4,0,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20180,"name":"Defiler's Lamellar Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[12,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20181,"name":"Defiler's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[18,0,8,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"setName":"The Defiler's Resolve","setId":908,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20182,"name":"Defiler's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[0,9,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20183,"name":"Defiler's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[9,0,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20184,"name":"Defiler's Lamellar Spaulders","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[22,0,15,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[4],"setName":"The Defiler's Resolve","setId":908,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20185,"name":"Defiler's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[12,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20186,"name":"Defiler's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Defiler's Purpose","setId":486,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20187,"name":"Defiler's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20188,"name":"Defiler's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20189,"name":"Defiler's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20190,"name":"Defiler's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,17,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6,1],"setName":"The Defiler's Purpose","setId":486,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20191,"name":"Defiler's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20192,"name":"Defiler's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20193,"name":"Defiler's Leather Girdle","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,10,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[6,1],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20194,"name":"Defiler's Leather Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[6,1],"setName":"The Defiler's Purpose","setId":486,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20195,"name":"Defiler's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,10,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Defiler's Fortitude","setId":484,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20196,"name":"Defiler's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,8,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20197,"name":"Defiler's Padded Girdle","icon":"inv_belt_20","type":8,"armorType":2,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20198,"name":"Defiler's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20199,"name":"Defiler's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,21,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"setName":"The Defiler's Fortitude","setId":484,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20200,"name":"Defiler's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,11,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20201,"name":"Defiler's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20202,"name":"Defiler's Mail Greaves","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,17,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[2,7],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20203,"name":"Defiler's Mail Pauldrons","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,17,18,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[2,7],"setName":"The Defiler's Fortitude","setId":484,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20204,"name":"Defiler's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[17,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"setName":"The Defiler's Resolution","setId":487,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20205,"name":"Defiler's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[10,0,8,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20206,"name":"Defiler's Plate Girdle","icon":"inv_belt_14","type":8,"armorType":4,"stats":[15,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20207,"name":"Defiler's Mail Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20208,"name":"Defiler's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[14,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"setName":"The Defiler's Resolution","setId":487,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20209,"name":"Defiler's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20210,"name":"Defiler's Mail Greaves","icon":"inv_boots_plate_04","type":10,"armorType":3,"stats":[6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20211,"name":"Defiler's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[11,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[9,4],"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20212,"name":"Defiler's Plate Spaulders","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[18,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"classAllowlist":[9,4],"setName":"The Defiler's Resolution","setId":487,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20213,"name":"Belt of Shrunken Heads","icon":"inv_belt_13","type":8,"armorType":4,"stats":[23,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"sources":[{"quest":{"id":8201,"name":"A Collection of Heads"}}]}, -{"id":20214,"name":"Mindfang","icon":"inv_sword_13","type":13,"weaponType":2,"handType":1,"stats":[0,0,8,0,0,0,14,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":95,"weaponSpeed":1.7,"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20215,"name":"Belt of Shriveled Heads","icon":"inv_belt_12","type":8,"armorType":3,"stats":[0,11,18,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"sources":[{"quest":{"id":8201,"name":"A Collection of Heads"}}]}, -{"id":20216,"name":"Belt of Preserved Heads","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,15,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"sources":[{"quest":{"id":8201,"name":"A Collection of Heads"}}]}, -{"id":20217,"name":"Belt of Tiny Heads","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,13,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"sources":[{"quest":{"id":8201,"name":"A Collection of Heads"}}]}, -{"id":20218,"name":"Faded Hakkari Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,5,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":20219,"name":"Tattered Hakkari Cape","icon":"inv_misc_cape_14","type":4,"stats":[7,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":20220,"name":"Ironbark Staff","icon":"inv_wand_04","type":13,"weaponType":8,"handType":4,"stats":[0,0,26,0,0,0,28,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":243,"weaponSpeed":3.4,"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":20255,"name":"Whisperwalk Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[6]}, -{"id":20257,"name":"Seafury Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,16,9,0,0,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14834,"zoneId":1977}}]}, -{"id":20258,"name":"Zulian Ceremonial Staff","icon":"inv_staff_34","type":13,"weaponType":8,"handType":4,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":174,"weaponSpeed":2.6,"ilvl":65,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":20259,"name":"Shadow Panther Hide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,15,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":20260,"name":"Seafury Leggings","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,15,28,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":20261,"name":"Shadow Panther Hide Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,16,17,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":20262,"name":"Seafury Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,24,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":20263,"name":"Gurubashi Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[22,21,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"Trash"}}]}, -{"id":20264,"name":"Peacekeeper Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,19,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4}, -{"id":20265,"name":"Peacekeeper Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,21,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14517,"zoneId":1977}}]}, -{"id":20266,"name":"Peacekeeper Leggings","icon":"inv_pants_plate_04","type":9,"armorType":4,"stats":[0,0,31,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14509,"zoneId":1977}}]}, -{"id":20295,"name":"Blue Dragonscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,35,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"setName":"Blue Dragon Mail","setId":491,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24654}},{"crafted":{"profession":8,"spellId":24654}}]}, -{"id":20296,"name":"Green Dragonscale Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"setName":"Green Dragon Mail","setId":490,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24655}},{"crafted":{"profession":8,"spellId":24655}}]}, -{"id":20369,"name":"Azurite Fists","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,6,7,7,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[7]}, -{"id":20380,"name":"Dreamscale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,15,15,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":24703}},{"crafted":{"profession":8,"spellId":24703}}]}, -{"id":20406,"name":"Twilight Cultist Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"setName":"Twilight Trappings","setId":492}, -{"id":20407,"name":"Twilight Cultist Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"setName":"Twilight Trappings","setId":492}, -{"id":20408,"name":"Twilight Cultist Cowl","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"setName":"Twilight Trappings","setId":492}, -{"id":20422,"name":"Twilight Cultist Medallion of Station","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{}}]}, -{"id":20425,"name":"Advisor's Gnarled Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,8,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":69,"weaponSpeed":2.9,"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20426,"name":"Advisor's Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,2,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20427,"name":"Battle Healer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20428,"name":"Caretaker's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20429,"name":"Legionnaire's Band","icon":"inv_jewelry_ring_21","type":11,"stats":[4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20430,"name":"Legionnaire's Sword","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.7,"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20431,"name":"Lorekeeper's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,2,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20434,"name":"Lorekeeper's Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,8,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":69,"weaponSpeed":2.9,"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20437,"name":"Outrider's Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.4,"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20438,"name":"Outrunner's Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.4,"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20439,"name":"Protector's Band","icon":"inv_jewelry_ring_10","type":11,"stats":[4,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20440,"name":"Protector's Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.7,"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20441,"name":"Scout's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.7,"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20442,"name":"Scout's Medallion","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":20443,"name":"Sentinel's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.7,"ilvl":23,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20444,"name":"Sentinel's Medallion","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":20451,"name":"Twilight Cultist Ring of Lordship","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1,"sources":[{"quest":{}}]}, -{"id":20476,"name":"Sandstalker Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24849}},{"crafted":{"profession":8,"spellId":24849}}]}, -{"id":20477,"name":"Sandstalker Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24850}},{"crafted":{"profession":8,"spellId":24850}}]}, -{"id":20478,"name":"Sandstalker Breastplate","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24851}},{"crafted":{"profession":8,"spellId":24851}}]}, -{"id":20479,"name":"Spitfire Breastplate","icon":"inv_chest_leather_02","type":5,"armorType":3,"stats":[0,16,24,0,0,16,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24848}},{"crafted":{"profession":8,"spellId":24848}}]}, -{"id":20480,"name":"Spitfire Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,12,18,0,0,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24847}},{"crafted":{"profession":8,"spellId":24847}}]}, -{"id":20481,"name":"Spitfire Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,9,14,0,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24846}},{"crafted":{"profession":8,"spellId":24846}}]}, -{"id":20487,"name":"Lok'delar, Stave of the Ancient Keepers DEP","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,26,15,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":282,"weaponSpeed":3.2,"ilvl":75,"quality":4,"unique":true,"classAllowlist":[2]}, -{"id":20503,"name":"Enamored Water Spirit","icon":"inv_wand_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[7]}, -{"id":20504,"name":"Lightforged Blade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[9,0,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":178,"weaponSpeed":3.3,"ilvl":52,"quality":3,"classAllowlist":[4]}, -{"id":20505,"name":"Chivalrous Signet","icon":"inv_jewelry_ring_43","type":11,"stats":[7,0,13,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[4]}, -{"id":20512,"name":"Sanctified Orb","icon":"inv_misc_gem_pearl_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[4]}, -{"id":20517,"name":"Razorsteel Shoulders","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[10,10,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[9]}, -{"id":20521,"name":"Fury Visor","icon":"inv_helmet_01","type":1,"armorType":4,"stats":[18,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[9]}, -{"id":20522,"name":"Feral Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":162,"weaponSpeed":3,"ilvl":52,"quality":3}, -{"id":20525,"name":"Earthen Sigil","icon":"spell_nature_nullward","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":20530,"name":"Robes of Servitude","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,23,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[8]}, -{"id":20534,"name":"Abyss Shard","icon":"inv_misc_gem_02","type":12,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[8]}, -{"id":20536,"name":"Soul Harvester","icon":"inv_sword_48","type":13,"weaponType":8,"handType":4,"stats":[0,0,16,17,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":178,"weaponSpeed":3.3,"ilvl":52,"quality":3,"classAllowlist":[8]}, -{"id":20537,"name":"Runed Stygian Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,8,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":24903}},{"crafted":{"profession":11,"spellId":24903}}]}, -{"id":20538,"name":"Runed Stygian Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,13,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":24901}},{"crafted":{"profession":11,"spellId":24901}}]}, -{"id":20539,"name":"Runed Stygian Belt","icon":"inv_belt_14","type":8,"armorType":1,"stats":[0,0,10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":24902}},{"crafted":{"profession":11,"spellId":24902}}]}, -{"id":20549,"name":"Darkrune Gauntlets","icon":"inv_gauntlets_27","type":7,"armorType":4,"stats":[0,0,8,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24912}},{"crafted":{"profession":2,"spellId":24912}}]}, -{"id":20550,"name":"Darkrune Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,14,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24914}},{"crafted":{"profession":2,"spellId":24914}}]}, -{"id":20551,"name":"Darkrune Helm","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":24913}},{"crafted":{"profession":2,"spellId":24913}}]}, -{"id":20556,"name":"Wildstaff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[10,0,10,0,0,10,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":135,"weaponSpeed":2.5,"ilvl":52,"quality":3,"classAllowlist":[7]}, -{"id":20575,"name":"Black Whelp Tunic","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":24940}},{"crafted":{"profession":8,"spellId":24940}}]}, -{"id":20577,"name":"Nightmare Blade","icon":"inv_sword_44","type":13,"weaponType":9,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":185,"weaponSpeed":2.7,"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20578,"name":"Emerald Dragonfang","icon":"inv_weapon_shortblade_22","type":13,"weaponType":2,"handType":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":1.8,"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20579,"name":"Green Dragonskin Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20580,"name":"Hammer of Bestial Fury","icon":"inv_mace_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":1.9,"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20581,"name":"Staff of Rampant Growth","icon":"inv_staff_36","type":13,"weaponType":8,"handType":4,"stats":[0,0,27,0,28,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":2.6,"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20582,"name":"Trance Stone","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,16,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20599,"name":"Polished Ironwood Crossbow","icon":"inv_weapon_crossbow_11","type":14,"rangedWeaponType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":169,"weaponDamageMax":254,"weaponSpeed":3.1,"ilvl":71,"quality":4,"expansion":1}, -{"id":20600,"name":"Malfurion's Signet Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"unique":true,"expansion":1,"sources":[{"quest":{"id":8447,"name":"Waking Legends"}}]}, -{"id":20615,"name":"Dragonspur Wraps","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20616,"name":"Dragonbone Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[9,0,13,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20617,"name":"Ancient Corroded Leggings","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,33,21,0,0,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20618,"name":"Gloves of Delusional Power","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,29,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20619,"name":"Acid Inscribed Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[8,0,19,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20621,"name":"Boots of the Endless Moor","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,16,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20622,"name":"Dragonheart Necklace","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,0,21,6,6,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20623,"name":"Circlet of Restless Dreams","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,21,38,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20624,"name":"Ring of the Unliving","icon":"inv_jewelry_ring_38","type":11,"stats":[0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"unique":true,"expansion":1}, -{"id":20625,"name":"Belt of the Dark Bog","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,21,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20626,"name":"Black Bark Wristbands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,16,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20627,"name":"Dark Heart Pants","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,24,20,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,44,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20628,"name":"Deviate Growth Cap","icon":"inv_helmet_43","type":1,"armorType":2,"stats":[0,0,28,29,20,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20629,"name":"Malignant Footguards","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,25,23,0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20630,"name":"Gauntlets of the Shining Light","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[20,0,29,0,0,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20631,"name":"Mendicant's Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,12,23,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20632,"name":"Mindtear Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,11,19,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20633,"name":"Unnatural Leather Spaulders","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,9,19,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20634,"name":"Boots of Fright","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,22,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20635,"name":"Jade Inlaid Vestments","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,32,38,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1}, -{"id":20636,"name":"Hibernation Crystal","icon":"inv_misc_gem_stone_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"expansion":1}, -{"id":20637,"name":"Acid Inscribed Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[12,0,16,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20638,"name":"Leggings of the Demented Mind","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,48,18,0,16,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20639,"name":"Strangely Glyphed Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[26,0,39,0,0,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1}, -{"id":20640,"name":"Southsea Head Bucket","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[6,0,15,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":20641,"name":"Southsea Mojo Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2}, -{"id":20642,"name":"Antiquated Nobleman's Tunic","icon":"inv_chest_cloth_47","type":5,"armorType":1,"stats":[0,0,19,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":8273,"name":"Oran's Gratitude"}}],"factionRestriction":2}, -{"id":20643,"name":"Undercity Reservist's Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,11,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":8273,"name":"Oran's Gratitude"}}],"factionRestriction":2}, -{"id":20645,"name":"Nature's Whisper","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":20646,"name":"Sandstrider's Mark","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":2.6,"ilvl":56,"quality":3,"sources":[{"quest":{"id":8283,"name":"Wanted - Deathclasp, Terror of the Sands"}}]}, -{"id":20647,"name":"Black Crystal Dagger","icon":"inv_weapon_shortblade_20","type":13,"weaponType":2,"handType":1,"stats":[0,0,5,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.8,"ilvl":56,"quality":3,"sources":[{"quest":{"id":8283,"name":"Wanted - Deathclasp, Terror of the Sands"}}]}, -{"id":20648,"name":"Cold Forged Hammer","icon":"inv_hammer_22","type":13,"weaponType":4,"handType":2,"stats":[0,0,5,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":2.5,"ilvl":63,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":20649,"name":"Sunprism Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":8321,"name":"Vyral the Vile"}}]}, -{"id":20650,"name":"Desert Wind Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[10,0,9,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":8321,"name":"Vyral the Vile"}}]}, -{"id":20652,"name":"Abyssal Cloth Slippers","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-332,2143,2144,2146,2147,2148,-330],"ilvl":60,"quality":2}, -{"id":20653,"name":"Abyssal Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2147,2148,2149,2150,2151,2146,-331,-330],"ilvl":60,"quality":2}, -{"id":20654,"name":"Amethyst War Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":179,"weaponSpeed":2.9,"ilvl":60,"quality":3}, -{"id":20655,"name":"Abyssal Cloth Handwraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-332,2143,2144,2146,2147,2148,-330],"ilvl":60,"quality":2}, -{"id":20656,"name":"Abyssal Mail Sabatons","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2143,2144,2145,2146,2147,2148,2149,2150,2151,-332,-331,-330],"ilvl":60,"quality":2}, -{"id":20657,"name":"Crystal Tipped Stiletto","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":1.9,"ilvl":60,"quality":3,"unique":true}, -{"id":20658,"name":"Abyssal Leather Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2143,2144,2145,2146,2147,2149,2150,2151,2148,-332,-331,-330],"ilvl":60,"quality":2}, -{"id":20659,"name":"Abyssal Mail Handguards","icon":"inv_gauntlets_32","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2152,2153,2154,-332,-331,-330],"ilvl":60,"quality":2}, -{"id":20660,"name":"Stonecutting Glaive","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":228,"weaponSpeed":3.7,"ilvl":60,"quality":3}, -{"id":20661,"name":"Abyssal Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2143,2144,2145,2146,2147,2149,2150,2151,2148,-332,-331,-330],"ilvl":60,"quality":2}, -{"id":20662,"name":"Abyssal Plate Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2147,2148,2149,2150,2151,2146,-331,-330],"ilvl":60,"quality":2}, -{"id":20663,"name":"Deep Strike Bow","icon":"inv_weapon_bow_10","type":14,"rangedWeaponType":1,"stats":[0,6,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":180,"weaponSpeed":2.7,"ilvl":60,"quality":3}, -{"id":20664,"name":"Abyssal Cloth Sash","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2152,2153,-332,-330],"ilvl":65,"quality":2}, -{"id":20665,"name":"Abyssal Leather Leggings","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2155,2156,2157,-332,-331],"ilvl":62,"quality":3}, -{"id":20666,"name":"Hardened Steel Warhammer","icon":"inv_hammer_14","type":13,"weaponType":4,"handType":1,"stats":[0,0,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":2.6,"ilvl":62,"quality":3}, -{"id":20667,"name":"Abyssal Leather Belt","icon":"inv_belt_30","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2152,2153,2154,-332,-331,-330],"ilvl":65,"quality":2}, -{"id":20668,"name":"Abyssal Mail Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2155,2156,2157,-332,-331,-330],"ilvl":62,"quality":3}, -{"id":20669,"name":"Darkstone Claymore","icon":"inv_sword_35","type":13,"weaponType":9,"handType":4,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":229,"weaponSpeed":3.6,"ilvl":62,"quality":3}, -{"id":20670,"name":"Abyssal Mail Clutch","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2152,2153,2154,-332,-331,-330],"ilvl":65,"quality":2}, -{"id":20671,"name":"Abyssal Plate Legguards","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2156,2157,-331,-330],"ilvl":62,"quality":3}, -{"id":20672,"name":"Sparkling Crystal Wand","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":122,"weaponSpeed":1.5,"ilvl":62,"quality":3}, -{"id":20673,"name":"Abyssal Plate Girdle","icon":"inv_belt_26","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2153,2154,-331,-330],"ilvl":65,"quality":2}, -{"id":20674,"name":"Abyssal Cloth Pants","icon":"inv_pants_cloth_04","type":9,"armorType":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2155,2156,-332,-330],"ilvl":62,"quality":3}, -{"id":20675,"name":"Soulrender","icon":"inv_axe_13","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.5,"ilvl":62,"quality":3}, -{"id":20680,"name":"Abyssal Mail Pauldrons","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2158],"ilvl":68,"quality":3}, -{"id":20681,"name":"Abyssal Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2161,2163],"ilvl":68,"quality":3}, -{"id":20682,"name":"Elemental Focus Band","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true}, -{"id":20683,"name":"Abyssal Plate Epaulets","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2158],"ilvl":68,"quality":3}, -{"id":20684,"name":"Abyssal Mail Armguards","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3}, -{"id":20685,"name":"Wavefront Necklace","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,0,11,11,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":20686,"name":"Abyssal Cloth Amice","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2159,2160],"ilvl":68,"quality":3}, -{"id":20687,"name":"Abyssal Plate Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2163],"ilvl":68,"quality":3}, -{"id":20688,"name":"Earthen Guard","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,19,0,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0,0,0,0,2186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":20689,"name":"Abyssal Leather Shoulders","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[2158],"ilvl":68,"quality":3}, -{"id":20690,"name":"Abyssal Cloth Wristbands","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3}, -{"id":20691,"name":"Windshear Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,15,14,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4}, -{"id":20692,"name":"Multicolored Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-329,-328,-327,-326,-324,1500],"ilvl":60,"quality":2}, -{"id":20693,"name":"Weighted Cloak","icon":"inv_misc_cape_02","type":4,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":20694,"name":"Glowing Black Orb","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2}, -{"id":20695,"name":"Abyssal War Beads","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":20696,"name":"Crystal Spiked Maul","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[16,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":168,"weaponDamageMax":252,"weaponSpeed":3.9,"ilvl":63,"quality":3}, -{"id":20697,"name":"Crystalline Threaded Cape","icon":"inv_misc_cape_19","type":4,"stats":[0,0,8,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":20698,"name":"Elemental Attuned Blade","icon":"inv_sword_22","type":13,"weaponType":9,"handType":1,"stats":[0,0,9,0,8,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.1,"ilvl":63,"quality":4}, -{"id":20699,"name":"Cenarion Reservist's Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,12,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8316,"name":"Armaments of War"}}]}, -{"id":20700,"name":"Cenarion Reservist's Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8376,"name":"Armaments of War"}}]}, -{"id":20701,"name":"Cenarion Reservist's Legguards","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8380,"name":"Armaments of War"}}]}, -{"id":20702,"name":"Cenarion Reservist's Legguards","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8377,"name":"Armaments of War"}}]}, -{"id":20703,"name":"Cenarion Reservist's Leggings","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8378,"name":"Armaments of War"}}]}, -{"id":20704,"name":"Cenarion Reservist's Leggings","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8382,"name":"Armaments of War"}}]}, -{"id":20705,"name":"Cenarion Reservist's Pants","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8381,"name":"Armaments of War"}}]}, -{"id":20706,"name":"Cenarion Reservist's Pants","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3}, -{"id":20707,"name":"Cenarion Reservist's Pants","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8379,"name":"Armaments of War"}}]}, -{"id":20710,"name":"Crystal Encrusted Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,19,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,399,21,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8316,"name":"Armaments of War"}}]}, -{"id":20711,"name":"Crystal Lined Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[11,0,20,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8376,"name":"Armaments of War"}}]}, -{"id":20712,"name":"Wastewalker's Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8380,"name":"Armaments of War"}}]}, -{"id":20713,"name":"Desertstalkers' Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,14,13,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8377,"name":"Armaments of War"}}]}, -{"id":20714,"name":"Sandstorm Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,20,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8382,"name":"Armaments of War"}}]}, -{"id":20715,"name":"Dunestalker's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8378,"name":"Armaments of War"}}]}, -{"id":20716,"name":"Sandworm Skin Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8381,"name":"Armaments of War"}}]}, -{"id":20717,"name":"Desert Bloom Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,8,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"sources":[{"quest":{"id":8379,"name":"Armaments of War"}}]}, -{"id":20720,"name":"Dark Whisper Blade","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":1,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.4,"ilvl":65,"quality":3}, -{"id":20721,"name":"Band of the Cultist","icon":"inv_jewelry_ring_27","type":11,"stats":[7,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"unique":true}, -{"id":20722,"name":"Crystal Slugthrower","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":2.8,"ilvl":65,"quality":3}, -{"id":20723,"name":"Brann's Trusty Pick","icon":"inv_pick_03","type":13,"weaponType":1,"handType":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":2.7,"ilvl":56,"quality":2,"sources":[{"quest":{"id":8308,"name":"Brann Bronzebeard's Lost Letter"}}]}, -{"id":20724,"name":"Corrupted Blackwood Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":178,"weaponSpeed":3.4,"ilvl":56,"quality":2,"sources":[{"quest":{"id":8306,"name":"Into The Maw of Madness"}}]}, -{"id":20818,"name":"Elegant Silver Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25280}},{"crafted":{"profession":7,"spellId":25280}}]}, -{"id":20820,"name":"Simple Pearl Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25284}},{"crafted":{"profession":7,"spellId":25284}}]}, -{"id":20821,"name":"Inlaid Malachite Ring","icon":"inv_jewelry_ring_23","type":11,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25283}},{"crafted":{"profession":7,"spellId":25283}}]}, -{"id":20823,"name":"Gloom Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25287}},{"crafted":{"profession":7,"spellId":25287}}]}, -{"id":20826,"name":"Heavy Silver Ring","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[132,136,593,678,761,762,763,933,1101,1186,1188,-68,-13,133,134,135,235,236,248,506,507,508,591,592,676,677,846,847,848,932,1016,1017,1018,1102,1103,1187,1360,1406,1751,1752,2072,2110,-84,-81,-78,-69,-19,-18,-17,-15,-14,-12,-11,-10,-9,931,-329,-328,-327,-326,-324,-29,1314,1452,1498],"ilvl":27,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25305}},{"crafted":{"profession":7,"spellId":25305}}]}, -{"id":20827,"name":"Ring of Silver Might","icon":"inv_jewelry_ring_05","type":11,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25317}},{"crafted":{"profession":7,"spellId":25317}}]}, -{"id":20828,"name":"Ring of Twilight Shadows","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25318}},{"crafted":{"profession":7,"spellId":25318}}]}, -{"id":20830,"name":"Amulet of the Moon","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25339}},{"crafted":{"profession":7,"spellId":25339}}]}, -{"id":20831,"name":"Heavy Golden Necklace of Battle","icon":"inv_jewelry_necklace_08","type":2,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25320}},{"crafted":{"profession":7,"spellId":25320}}]}, -{"id":20832,"name":"Moonsoul Crown","icon":"inv_crown_15","type":1,"armorType":1,"stats":[0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25321}},{"crafted":{"profession":7,"spellId":25321}}]}, -{"id":20833,"name":"Wicked Moonstone Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25323}},{"crafted":{"profession":7,"spellId":25323}}]}, -{"id":20835,"name":"Sunstrider Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.2,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8334,"name":"Aggression"}}]}, -{"id":20836,"name":"Sunstrider Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.7,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8334,"name":"Aggression"}}]}, -{"id":20837,"name":"Sunstrider Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":3.5,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8334,"name":"Aggression"}}]}, -{"id":20838,"name":"Sunstrider Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.3,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8335,"name":"Felendren the Banished"}}]}, -{"id":20839,"name":"Sunstrider Staff","icon":"inv_staff_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":10,"weaponSpeed":3.1,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8334,"name":"Aggression"}}]}, -{"id":20840,"name":"Sunstrider Mace","icon":"inv_mace_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.2,"ilvl":5,"quality":1,"sources":[{"quest":{"id":8334,"name":"Aggression"}}]}, -{"id":20841,"name":"Sunstrider Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8335,"name":"Felendren the Banished"}}]}, -{"id":20849,"name":"Arcane Forged Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.6,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20850,"name":"Arcane Forged Axe","icon":"inv_axe_19","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20851,"name":"Arcane Forged Mace","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.9,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20852,"name":"Arcane Forged Dirk","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.6,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20853,"name":"Mana Gathering Staff","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":3.2,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20891,"name":"Neophyte's Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20892,"name":"Acolyte's Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20893,"name":"Apprentice's Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20894,"name":"Apprentice's Pants","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20895,"name":"Apprentice's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20896,"name":"Lookout's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20898,"name":"Lookout's Shoes","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20899,"name":"Warder's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20900,"name":"Warder's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20902,"name":"Recruit's Pants","icon":"inv_pants_mail_03","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20903,"name":"Recruit's Boots","icon":"inv_boots_chain_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20904,"name":"Recruit's Tunic","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20906,"name":"Braided Copper Ring","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25493}},{"crafted":{"profession":7,"spellId":25493}}]}, -{"id":20907,"name":"Solid Bronze Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25490}},{"crafted":{"profession":7,"spellId":25490}}]}, -{"id":20909,"name":"Barbaric Iron Collar","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25498}},{"crafted":{"profession":7,"spellId":25498}}]}, -{"id":20910,"name":"Stiff Shortbow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2,"ilvl":4,"quality":1,"sources":[{"soldBy":{"npcId":15289,"npcName":"Raelis Dawnstar","zoneId":3430}}]}, -{"id":20911,"name":"Light Guard","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20912,"name":"Large Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20913,"name":"Medium Guard","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":20914,"name":"Unadorned Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20915,"name":"Unadorned Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20916,"name":"Unadorned Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20917,"name":"Unadorned Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20918,"name":"Unadorned Chain Leggings","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":20919,"name":"Unadorned Chain Vest","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15292,"npcName":"Faraden Thelryn","zoneId":3430}}]}, -{"id":20920,"name":"Sun Cured Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20921,"name":"Sun Cured Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20922,"name":"Sun Cured Bracers","icon":"inv_bracer_11","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20923,"name":"Sun Cured Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20924,"name":"Sun Cured Pants","icon":"inv_pants_10","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20925,"name":"Sun Cured Vest","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20950,"name":"Pendant of the Agate Shield","icon":"inv_shield_21","type":2,"stats":[4,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25610}},{"crafted":{"profession":7,"spellId":25610}}]}, -{"id":20954,"name":"Heavy Iron Knuckles","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":1.6,"ilvl":32,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25612}},{"crafted":{"profession":7,"spellId":25612}}]}, -{"id":20955,"name":"Golden Dragon Ring","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,0,0,0,0,0,0,0,4,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25613}},{"crafted":{"profession":7,"spellId":25613}}]}, -{"id":20956,"name":"Silver Rose Pendant","icon":"inv_jewelry_talisman_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25614}}]}, -{"id":20958,"name":"Blazing Citrine Ring","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25617}},{"crafted":{"profession":7,"spellId":25617}}]}, -{"id":20959,"name":"The Jade Eye","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25619}},{"crafted":{"profession":7,"spellId":25619}}]}, -{"id":20960,"name":"Engraved Truesilver Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25620}},{"crafted":{"profession":7,"spellId":25620}}]}, -{"id":20961,"name":"Citrine Ring of Rapid Healing","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":25621}},{"crafted":{"profession":7,"spellId":25621}}]}, -{"id":20964,"name":"Aquamarine Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[172,173,177,182,187,192,219,254,435,436,437,517,518,519,522,602,603,604,607,687,688,689,691,772,773,774,776,777,857,858,859,860,942,943,944,1027,1028,1029,1112,1113,1114,1115,1197,1198,1199,1201,1320,1366,1458,1459,1761,1762,1763,1766,2077,2115,2116,-81,-78,-68,1321,1367,1412,1413,1504,1505,-329,-328,-327,-326,-324,-84,-69,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,178,183,188,211,213,215,217,438,520,521,605,606,690,692,775,861,862,945,946,1030,1031,1032,1116,1117,1200,1202,2079,2117],"ilvl":42,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26874}},{"crafted":{"profession":7,"spellId":26874}}]}, -{"id":20966,"name":"Jade Pendant of Blasting","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25618}},{"crafted":{"profession":7,"spellId":25618}}]}, -{"id":20967,"name":"Citrine Pendant of Golden Healing","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":25622}},{"crafted":{"profession":7,"spellId":25622}}]}, -{"id":20969,"name":"Ruby Crown of Restoration","icon":"inv_crown_13","type":1,"armorType":1,"stats":[0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26878}},{"crafted":{"profession":7,"spellId":26878}}]}, -{"id":20977,"name":"Recruit's Shortsword","icon":"inv_sword_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.9,"ilvl":1,"quality":1}, -{"id":20978,"name":"Apprentice's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":24539,"npcName":"\"Silvermoon\" Harry","zoneId":495}}]}, -{"id":20979,"name":"Warder's Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":2,"ilvl":2,"quality":1}, -{"id":20980,"name":"Warder's Shortbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.3,"ilvl":2,"quality":1}, -{"id":20981,"name":"Neophyte's Mace","icon":"inv_mace_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.9,"ilvl":2,"quality":1}, -{"id":20982,"name":"Sharp Dagger","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":2,"quality":1}, -{"id":20983,"name":"Acolyte's Dagger","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":2,"quality":1,"sources":[{"soldBy":{"npcId":24539,"npcName":"\"Silvermoon\" Harry","zoneId":495}}]}, -{"id":20984,"name":"Recruit's Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":20985,"name":"Light Cloth Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20986,"name":"Light Cloth Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":20987,"name":"Light Cloth Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20988,"name":"Light Cloth Bracers","icon":"inv_bracer_03","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20989,"name":"Light Cloth Belt","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20990,"name":"Light Cloth Armor","icon":"inv_shirt_red_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"npcId":15291,"npcName":"Jainthess Thelryn","zoneId":3430}}]}, -{"id":20991,"name":"Daylight Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8336,"name":"A Fistful of Slivers"}}]}, -{"id":20992,"name":"Sunrise Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8326,"name":"Unfortunate Measures"}}]}, -{"id":20993,"name":"Lynxskin Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8326,"name":"Unfortunate Measures"}}]}, -{"id":20994,"name":"Green Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8326,"name":"Unfortunate Measures"}}]}, -{"id":20995,"name":"Well Watcher Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8330,"name":"Solanian's Belongings"}}]}, -{"id":20996,"name":"Sunspire Cord","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8330,"name":"Solanian's Belongings"}}]}, -{"id":20997,"name":"Green Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8325,"name":"Reclaiming Sunstrider Isle"}}]}, -{"id":20998,"name":"Wyrm Sash","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8325,"name":"Reclaiming Sunstrider Isle"}}]}, -{"id":20999,"name":"Green Chain Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8346,"name":"Thirst Unending"}}]}, -{"id":21000,"name":"Vigorous Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8346,"name":"Thirst Unending"}}]}, -{"id":21001,"name":"Striding Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8346,"name":"Thirst Unending"}}]}, -{"id":21002,"name":"Unkempt Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":21003,"name":"Unkempt Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":21004,"name":"Unkempt Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":21005,"name":"Unkempt Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":21006,"name":"Unkempt Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":21007,"name":"Unkempt Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21008,"name":"Unkempt Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21009,"name":"Scraggy Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":21010,"name":"Scraggy Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":21011,"name":"Scraggy Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21012,"name":"Scraggy Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21013,"name":"Scraggy Leather Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":21014,"name":"Scraggy Leather Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":21015,"name":"Shoddy Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":21016,"name":"Shoddy Chain Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":21017,"name":"Shoddy Chain Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":21018,"name":"Shoddy Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21019,"name":"Shoddy Chain Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21020,"name":"Shoddy Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3}, -{"id":21021,"name":"Battered Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4}, -{"id":21022,"name":"Weather Beaten Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2}, -{"id":21040,"name":"Narain's Robe","icon":"inv_chest_cloth_24","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":21115,"name":"Defiler's Talisman","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":21116,"name":"Defiler's Talisman","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":21117,"name":"Talisman of Arathor","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":21118,"name":"Talisman of Arathor","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":21119,"name":"Talisman of Arathor","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15127,"npcName":"Samuel Hawke","zoneId":45}}],"factionRestriction":1}, -{"id":21120,"name":"Defiler's Talisman","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":15126,"npcName":"Rutherford Twing","zoneId":45}}],"factionRestriction":2}, -{"id":21126,"name":"Death's Sting","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,10,0,0,0,0,0,7,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":144,"weaponSpeed":1.8,"ilvl":84,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21128,"name":"Staff of the Qiraji Prophets","icon":"inv_staff_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,45,0,8,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":170,"weaponDamageMax":255,"weaponSpeed":2.9,"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21134,"name":"Dark Edge of Insanity","icon":"inv_axe_24","type":13,"weaponType":1,"handType":4,"stats":[35,19,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":364,"weaponSpeed":3.5,"ilvl":84,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21154,"name":"Festival Dress","icon":"inv_chest_cloth_56","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":26403}},{"crafted":{"profession":11,"spellId":26403}}]}, -{"id":21157,"name":"Festive Green Dress","icon":"inv_chest_cloth_57","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8864,"name":"Festive Lunar Dresses"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21178,"name":"Gloves of Earthen Power","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,14,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":21179,"name":"Band of Earthen Wrath","icon":"inv_jewelry_ring_18","type":11,"stats":[0,0,0,8,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true}, -{"id":21180,"name":"Earthstrike","icon":"spell_nature_abolishmagic","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true}, -{"id":21181,"name":"Grace of Earth","icon":"inv_misc_herb_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"unique":true}, -{"id":21182,"name":"Band of Earthen Might","icon":"inv_jewelry_ring_19","type":11,"stats":[6,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"unique":true}, -{"id":21183,"name":"Earthpower Vest","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,33,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3}, -{"id":21184,"name":"Deeprock Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[19,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":21185,"name":"Earthcalm Orb","icon":"inv_misc_gem_pearl_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,15,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":21186,"name":"Rockfury Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,7,23,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4}, -{"id":21187,"name":"Earthweave Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3}, -{"id":21188,"name":"Fist of Cenarius","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,34,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":263,"weaponSpeed":3.5,"ilvl":66,"quality":4}, -{"id":21189,"name":"Might of Cenarius","icon":"inv_jewelry_ring_41","type":11,"stats":[0,0,8,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"unique":true}, -{"id":21190,"name":"Wrath of Cenarius","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"unique":true}, -{"id":21196,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[10,0,18,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true,"sources":[{"quest":{"id":8747,"name":"The Path of the Protector"}}]}, -{"id":21197,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[11,0,19,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"sources":[{"quest":{"id":8748,"name":"The Path of the Protector"}}]}, -{"id":21198,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[12,0,21,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"unique":true,"sources":[{"quest":{"id":8749,"name":"The Path of the Protector"}}]}, -{"id":21199,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[12,0,22,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"sources":[{"quest":{"id":8750,"name":"The Path of the Protector"}}]}, -{"id":21200,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[13,0,24,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":21201,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,14,16,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true,"sources":[{"quest":{"id":8752,"name":"The Path of the Conqueror"}}]}, -{"id":21202,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,15,17,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"sources":[{"quest":{"id":8753,"name":"The Path of the Conqueror"}}]}, -{"id":21203,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,17,20,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"unique":true,"sources":[{"quest":{"id":8754,"name":"The Path of the Conqueror"}}]}, -{"id":21204,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,17,21,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"sources":[{"quest":{"id":8755,"name":"The Path of the Conqueror"}}]}, -{"id":21205,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,18,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":21206,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,12,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true,"sources":[{"quest":{"id":8757,"name":"The Path of the Invoker"}}]}, -{"id":21207,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,14,19,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"sources":[{"quest":{"id":8758,"name":"The Path of the Invoker"}}]}, -{"id":21208,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,15,21,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"unique":true,"sources":[{"quest":{"id":8759,"name":"The Path of the Invoker"}}]}, -{"id":21209,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,15,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"sources":[{"quest":{"id":8760,"name":"The Path of the Invoker"}}]}, -{"id":21210,"name":"Signet Ring of the Bronze Dragonflight","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,16,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":21242,"name":"Blessed Qiraji War Axe","icon":"inv_axe_26","type":13,"weaponType":1,"handType":2,"stats":[0,0,9,10,0,0,14,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":205,"weaponSpeed":2.6,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8789,"name":"Imperial Qiraji Armaments"}}]}, -{"id":21244,"name":"Blessed Qiraji Pugio","icon":"inv_weapon_shortblade_35","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,0,0,10,14,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.7,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8789,"name":"Imperial Qiraji Armaments"}}]}, -{"id":21268,"name":"Blessed Qiraji War Hammer","icon":"inv_mace_24","type":13,"weaponType":4,"handType":2,"stats":[0,0,12,0,0,0,0,0,0,12,0,0,20,20,0,0,0,0,0,0,0,0,0,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":166,"weaponSpeed":2.1,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8790,"name":"Imperial Qiraji Regalia"}}]}, -{"id":21269,"name":"Blessed Qiraji Bulwark","icon":"inv_shield_23","type":13,"weaponType":7,"handType":3,"stats":[0,0,20,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,2253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":79,"quality":4,"sources":[{"quest":{"id":8789,"name":"Imperial Qiraji Armaments"}}]}, -{"id":21272,"name":"Blessed Qiraji Musket","icon":"inv_weapon_rifle_11","type":14,"rangedWeaponType":3,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":2.6,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8789,"name":"Imperial Qiraji Armaments"}}]}, -{"id":21273,"name":"Blessed Qiraji Acolyte Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,61,0,0,16,14,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8790,"name":"Imperial Qiraji Regalia"}}]}, -{"id":21275,"name":"Blessed Qiraji Augur Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,44,0,38,0,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3,"ilvl":79,"quality":4,"sources":[{"quest":{"id":8790,"name":"Imperial Qiraji Regalia"}}]}, -{"id":21278,"name":"Stormshroud Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,10,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"setName":"Stormshroud Armor","setId":142,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":26279}},{"crafted":{"profession":8,"spellId":26279}}]}, -{"id":21311,"name":"Earth Warder's Vest","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,0,13,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":21312,"name":"Belt of the Den Watcher","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,12,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":21316,"name":"Leggings of the Ursa","icon":"inv_pants_mail_10","type":9,"armorType":4,"stats":[17,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{}}]}, -{"id":21317,"name":"Helm of the Pathfinder","icon":"inv_helmet_10","type":1,"armorType":2,"stats":[0,0,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{}}]}, -{"id":21318,"name":"Earth Warder's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"sources":[{"quest":{}}]}, -{"id":21319,"name":"Gloves of the Pathfinder","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"sources":[{"quest":{}}]}, -{"id":21320,"name":"Vest of the Den Watcher","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"sources":[{"quest":{}}]}, -{"id":21322,"name":"Ursa's Embrace","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,17,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,539,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"sources":[{"quest":{}}]}, -{"id":21326,"name":"Defender of the Timbermaw","icon":"inv_misc_horn_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":4,"unique":true,"sources":[{"quest":{"id":8481,"name":"The Root of All Evil"}}]}, -{"id":21329,"name":"Conqueror's Crown","icon":"inv_helmet_72","type":1,"armorType":4,"stats":[29,18,34,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[9],"setName":"Battlegear","setId":496,"sources":[{"quest":{"id":8561,"name":"Conqueror's Crown"}}]}, -{"id":21330,"name":"Conqueror's Spaulders","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[28,0,21,0,0,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[9],"setName":"Battlegear","setId":496,"sources":[{"quest":{"id":8544,"name":"Conqueror's Spaulders"}}]}, -{"id":21331,"name":"Conqueror's Breastplate","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[34,24,38,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[9],"setName":"Battlegear","setId":496,"sources":[{"quest":{"id":8562,"name":"Conqueror's Breastplate"}}]}, -{"id":21332,"name":"Conqueror's Legguards","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[43,0,24,0,0,10,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[9],"setName":"Battlegear","setId":496,"sources":[{"quest":{"id":8560,"name":"Conqueror's Legguards"}}]}, -{"id":21333,"name":"Conqueror's Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[21,17,23,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,565,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[9],"setName":"Battlegear","setId":496,"sources":[{"quest":{"id":8559,"name":"Conqueror's Greaves"}}]}, -{"id":21334,"name":"Doomcaller's Robes","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,36,35,7,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[8],"setName":"Doomcaller's Attire","setId":499,"sources":[{"quest":{"id":8661,"name":"Doomcaller's Robes"}}]}, -{"id":21335,"name":"Doomcaller's Mantle","icon":"inv_shoulder_03","type":3,"armorType":1,"stats":[0,0,27,24,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[8],"setName":"Doomcaller's Attire","setId":499,"sources":[{"quest":{"id":8664,"name":"Doomcaller's Mantle"}}]}, -{"id":21336,"name":"Doomcaller's Trousers","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,48,29,9,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[8],"setName":"Doomcaller's Attire","setId":499,"sources":[{"quest":{"id":8663,"name":"Doomcaller's Trousers"}}]}, -{"id":21337,"name":"Doomcaller's Circlet","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,47,28,0,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[8],"setName":"Doomcaller's Attire","setId":499,"sources":[{"quest":{"id":8662,"name":"Doomcaller's Circlet"}}]}, -{"id":21338,"name":"Doomcaller's Footwraps","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,33,24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[8],"setName":"Doomcaller's Attire","setId":499,"sources":[{"quest":{"id":8660,"name":"Doomcaller's Footwraps"}}]}, -{"id":21343,"name":"Enigma Robes","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,40,33,7,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[3],"setName":"Enigma Vestments","setId":503,"sources":[{"quest":{"id":8633,"name":"Enigma Robes"}}]}, -{"id":21344,"name":"Enigma Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,28,24,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[3],"setName":"Enigma Vestments","setId":503,"sources":[{"quest":{"id":8634,"name":"Enigma Boots"}}]}, -{"id":21345,"name":"Enigma Shoulderpads","icon":"inv_shoulder_03","type":3,"armorType":1,"stats":[0,0,26,26,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[3],"setName":"Enigma Vestments","setId":503,"sources":[{"quest":{"id":8625,"name":"Enigma Shoulderpads"}}]}, -{"id":21346,"name":"Enigma Leggings","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,45,29,15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[3],"setName":"Enigma Vestments","setId":503,"sources":[{"quest":{"id":8631,"name":"Enigma Leggings"}}]}, -{"id":21347,"name":"Enigma Circlet","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,45,28,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[3],"setName":"Enigma Vestments","setId":503,"sources":[{"quest":{"id":8632,"name":"Enigma Circlet"}}]}, -{"id":21348,"name":"Tiara of the Oracle","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,41,24,0,8,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[5],"setName":"Garments of the Oracle","setId":507,"sources":[{"quest":{"id":8592,"name":"Tiara of the Oracle"}}]}, -{"id":21349,"name":"Footwraps of the Oracle","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,34,18,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[5],"setName":"Garments of the Oracle","setId":507,"sources":[{"quest":{"id":8596,"name":"Footwraps of the Oracle"}}]}, -{"id":21350,"name":"Mantle of the Oracle","icon":"inv_shoulder_03","type":3,"armorType":1,"stats":[0,0,38,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[5],"setName":"Garments of the Oracle","setId":507,"sources":[{"quest":{"id":8594,"name":"Mantle of the Oracle"}}]}, -{"id":21351,"name":"Vestments of the Oracle","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,47,31,15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[5],"setName":"Garments of the Oracle","setId":507,"sources":[{"quest":{"id":8603,"name":"Vestments of the Oracle"}}]}, -{"id":21352,"name":"Trousers of the Oracle","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,44,28,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[5],"setName":"Garments of the Oracle","setId":507,"sources":[{"quest":{"id":8593,"name":"Trousers of the Oracle"}}]}, -{"id":21353,"name":"Genesis Helm","icon":"inv_helmet_06","type":1,"armorType":2,"stats":[0,0,44,31,12,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[1],"setName":"Genesis Raiment","setId":493,"sources":[{"quest":{"id":8667,"name":"Genesis Helm"}}]}, -{"id":21354,"name":"Genesis Shoulderpads","icon":"inv_shoulder_03","type":3,"armorType":2,"stats":[0,0,35,17,0,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[1],"setName":"Genesis Raiment","setId":493,"sources":[{"quest":{"id":8669,"name":"Genesis Shoulderpads"}}]}, -{"id":21355,"name":"Genesis Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,33,22,12,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[1],"setName":"Genesis Raiment","setId":493,"sources":[{"quest":{"id":8665,"name":"Genesis Boots"}}]}, -{"id":21356,"name":"Genesis Trousers","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,44,31,14,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[1],"setName":"Genesis Raiment","setId":493,"sources":[{"quest":{"id":8668,"name":"Genesis Trousers"}}]}, -{"id":21357,"name":"Genesis Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,47,33,11,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[1],"setName":"Genesis Raiment","setId":493,"sources":[{"quest":{"id":8666,"name":"Genesis Vest"}}]}, -{"id":21359,"name":"Deathdealer's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,26,29,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[6],"setName":"Deathdealer's Embrace","setId":497,"sources":[{"quest":{"id":8637,"name":"Deathdealer's Boots"}}]}, -{"id":21360,"name":"Deathdealer's Helm","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,29,48,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[6],"setName":"Deathdealer's Embrace","setId":497,"sources":[{"quest":{"id":8639,"name":"Deathdealer's Helm"}}]}, -{"id":21361,"name":"Deathdealer's Spaulders","icon":"inv_shoulder_03","type":3,"armorType":2,"stats":[0,27,32,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[6],"setName":"Deathdealer's Embrace","setId":497,"sources":[{"quest":{"id":8641,"name":"Deathdealer's Spaulders"}}]}, -{"id":21362,"name":"Deathdealer's Leggings","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,38,39,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[6],"setName":"Deathdealer's Embrace","setId":497,"sources":[{"quest":{"id":8640,"name":"Deathdealer's Leggings"}}]}, -{"id":21364,"name":"Deathdealer's Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,37,42,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[6],"setName":"Deathdealer's Embrace","setId":497,"sources":[{"quest":{"id":8638,"name":"Deathdealer's Vest"}}]}, -{"id":21365,"name":"Striker's Footguards","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,21,22,0,0,6,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[2],"setName":"Striker's Garb","setId":509,"sources":[{"quest":{"id":8626,"name":"Striker's Footguards"}}]}, -{"id":21366,"name":"Striker's Diadem","icon":"inv_helmet_73","type":1,"armorType":3,"stats":[0,25,41,0,0,0,14,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[2],"setName":"Striker's Garb","setId":509,"sources":[{"quest":{"id":8657,"name":"Striker's Diadem"}}]}, -{"id":21367,"name":"Striker's Pauldrons","icon":"inv_shoulder_36","type":3,"armorType":3,"stats":[0,18,29,0,0,5,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[2],"setName":"Striker's Garb","setId":509,"sources":[{"quest":{"id":8659,"name":"Striker's Pauldrons"}}]}, -{"id":21368,"name":"Striker's Leggings","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,28,33,0,0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[2],"setName":"Striker's Garb","setId":509,"sources":[{"quest":{"id":8658,"name":"Striker's Leggings"}}]}, -{"id":21370,"name":"Striker's Hauberk","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,26,36,0,0,0,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[2],"setName":"Striker's Garb","setId":509,"sources":[{"quest":{"id":8656,"name":"Striker's Hauberk"}}]}, -{"id":21372,"name":"Stormcaller's Diadem","icon":"inv_helmet_73","type":1,"armorType":3,"stats":[0,20,41,31,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[7],"setName":"Stormcaller's Garb","setId":501,"sources":[{"quest":{"id":8623,"name":"Stormcaller's Diadem"}}]}, -{"id":21373,"name":"Stormcaller's Footguards","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,16,26,19,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[7],"setName":"Stormcaller's Garb","setId":501,"sources":[{"quest":{"id":8621,"name":"Stormcaller's Footguards"}}]}, -{"id":21374,"name":"Stormcaller's Hauberk","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,22,45,33,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[7],"setName":"Stormcaller's Garb","setId":501,"sources":[{"quest":{"id":8622,"name":"Stormcaller's Hauberk"}}]}, -{"id":21375,"name":"Stormcaller's Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,41,31,0,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[7],"setName":"Stormcaller's Garb","setId":501,"sources":[{"quest":{"id":8624,"name":"Stormcaller's Leggings"}}]}, -{"id":21376,"name":"Stormcaller's Pauldrons","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[0,15,26,24,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[7],"setName":"Stormcaller's Garb","setId":501,"sources":[{"quest":{"id":8602,"name":"Stormcaller's Pauldrons"}}]}, -{"id":21387,"name":"Avenger's Crown","icon":"inv_helmet_72","type":1,"armorType":4,"stats":[26,0,41,0,0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[4],"setName":"Avenger's Battlegear","setId":505,"sources":[{"quest":{"id":8628,"name":"Avenger's Crown"}}]}, -{"id":21388,"name":"Avenger's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":4,"stats":[24,0,29,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[4],"setName":"Avenger's Battlegear","setId":505,"sources":[{"quest":{"id":8655,"name":"Avenger's Greaves"}}]}, -{"id":21389,"name":"Avenger's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[28,0,45,0,0,11,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[4],"setName":"Avenger's Battlegear","setId":505,"sources":[{"quest":{"id":8627,"name":"Avenger's Breastplate"}}]}, -{"id":21390,"name":"Avenger's Legguards","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[27,0,41,0,0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"classAllowlist":[4],"setName":"Avenger's Battlegear","setId":505,"sources":[{"quest":{"id":8629,"name":"Avenger's Legguards"}}]}, -{"id":21391,"name":"Avenger's Pauldrons","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[25,0,26,0,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[4],"setName":"Avenger's Battlegear","setId":505,"sources":[{"quest":{"id":8630,"name":"Avenger's Pauldrons"}}]}, -{"id":21392,"name":"Sickle of Unyielding Strength","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[15,6,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":2.1,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[9],"setName":"Battlegear of Unyielding Strength","setId":495,"sources":[{"quest":{"id":8558,"name":"Sickle of Unyielding Strength"}}]}, -{"id":21393,"name":"Signet of Unyielding Strength","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[11,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[9],"setName":"Battlegear of Unyielding Strength","setId":495,"sources":[{"quest":{"id":8556,"name":"Signet of Unyielding Strength"}}]}, -{"id":21394,"name":"Drape of Unyielding Strength","icon":"inv_misc_cape_20","type":4,"stats":[15,9,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[9],"setName":"Battlegear of Unyielding Strength","setId":495,"sources":[{"quest":{"id":8557,"name":"Drape of Unyielding Strength"}}]}, -{"id":21395,"name":"Blade of Eternal Justice","icon":"inv_sword_57","type":13,"weaponType":9,"handType":2,"stats":[9,0,11,0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":154,"weaponSpeed":2.3,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[4],"setName":"Battlegear of Eternal Justice","setId":506,"sources":[{"quest":{"id":8711,"name":"Blade of Eternal Justice"}}]}, -{"id":21396,"name":"Ring of Eternal Justice","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[12,0,22,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[4],"setName":"Battlegear of Eternal Justice","setId":506,"sources":[{"quest":{"id":8703,"name":"Ring of Eternal Justice"}}]}, -{"id":21397,"name":"Cape of Eternal Justice","icon":"inv_misc_cape_14","type":4,"stats":[11,0,13,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[4],"setName":"Battlegear of Eternal Justice","setId":506,"sources":[{"quest":{"id":8695,"name":"Cape of Eternal Justice"}}]}, -{"id":21398,"name":"Hammer of the Gathering Storm","icon":"inv_mace22","type":13,"weaponType":4,"handType":1,"stats":[7,0,18,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":2.4,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[7],"setName":"Gift of the Gathering Storm","setId":502,"sources":[{"quest":{"id":8706,"name":"Hammer of the Gathering Storm"}}]}, -{"id":21399,"name":"Ring of the Gathering Storm","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,14,20,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[7],"setName":"Gift of the Gathering Storm","setId":502,"sources":[{"quest":{"id":8698,"name":"Ring of the Gathering Storm"}}]}, -{"id":21400,"name":"Cloak of the Gathering Storm","icon":"inv_misc_cape_16","type":4,"stats":[0,11,22,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[7],"setName":"Gift of the Gathering Storm","setId":502,"sources":[{"quest":{"id":8690,"name":"Cloak of the Gathering Storm"}}]}, -{"id":21401,"name":"Scythe of the Unseen Path","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[0,11,18,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":2.4,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[2],"setName":"Trappings of the Unseen Path","setId":510,"sources":[{"quest":{"id":8712,"name":"Scythe of the Unseen Path"}}]}, -{"id":21402,"name":"Signet of the Unseen Path","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,13,22,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[2],"setName":"Trappings of the Unseen Path","setId":510,"sources":[{"quest":{"id":8704,"name":"Signet of the Unseen Path"}}]}, -{"id":21403,"name":"Cloak of the Unseen Path","icon":"inv_misc_cape_15","type":4,"stats":[0,12,22,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[2],"setName":"Trappings of the Unseen Path","setId":510,"sources":[{"quest":{"id":8696,"name":"Cloak of the Unseen Path"}}]}, -{"id":21404,"name":"Dagger of Veiled Shadows","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":2,"stats":[7,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":121,"weaponSpeed":1.8,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[6],"setName":"Emblems of Veiled Shadows","setId":498,"sources":[{"quest":{"id":8709,"name":"Dagger of Veiled Shadows"}}]}, -{"id":21405,"name":"Band of Veiled Shadows","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[11,18,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[6],"setName":"Emblems of Veiled Shadows","setId":498,"sources":[{"quest":{"id":8701,"name":"Band of Veiled Shadows"}}]}, -{"id":21406,"name":"Cloak of Veiled Shadows","icon":"inv_misc_cape_19","type":4,"stats":[0,18,11,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[6],"setName":"Emblems of Veiled Shadows","setId":498,"sources":[{"quest":{"id":8693,"name":"Cloak of Veiled Shadows"}}]}, -{"id":21407,"name":"Mace of Unending Life","icon":"inv_mace22","type":13,"weaponType":4,"handType":4,"stats":[0,14,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":249,"weaponSpeed":2.6,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[1],"setName":"Symbols of Unending Life","setId":494,"sources":[{"quest":{"id":8708,"name":"Mace of Unending Life"}}]}, -{"id":21408,"name":"Band of Unending Life","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[10,10,9,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[1],"setName":"Symbols of Unending Life","setId":494,"sources":[{"quest":{"id":8700,"name":"Band of Unending Life"}}]}, -{"id":21409,"name":"Cloak of Unending Life","icon":"inv_misc_cape_15","type":4,"stats":[12,8,19,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[1],"setName":"Symbols of Unending Life","setId":494,"sources":[{"quest":{"id":8692,"name":"Cloak of Unending Life"}}]}, -{"id":21410,"name":"Gavel of Infinite Wisdom","icon":"inv_mace22","type":13,"weaponType":4,"handType":1,"stats":[0,0,20,0,10,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":2.7,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[5],"setName":"Finery of Infinite Wisdom","setId":508,"sources":[{"quest":{"id":8705,"name":"Gavel of Infinite Wisdom"}}]}, -{"id":21411,"name":"Ring of Infinite Wisdom","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,10,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[5],"setName":"Finery of Infinite Wisdom","setId":508,"sources":[{"quest":{"id":8697,"name":"Ring of Infinite Wisdom"}}]}, -{"id":21412,"name":"Shroud of Infinite Wisdom","icon":"inv_misc_cape_16","type":4,"stats":[0,0,25,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[5],"setName":"Finery of Infinite Wisdom","setId":508,"sources":[{"quest":{"id":8689,"name":"Shroud of Infinite Wisdom"}}]}, -{"id":21413,"name":"Blade of Vaulted Secrets","icon":"inv_sword_57","type":13,"weaponType":9,"handType":1,"stats":[0,0,24,0,0,8,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":154,"weaponSpeed":2.3,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[3],"setName":"Trappings of Vaulted Secrets","setId":504,"sources":[{"quest":{"id":8707,"name":"Blade of Vaulted Secrets"}}]}, -{"id":21414,"name":"Band of Vaulted Secrets","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,9,15,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[3],"setName":"Trappings of Vaulted Secrets","setId":504,"sources":[{"quest":{"id":8699,"name":"Band of Vaulted Secrets"}}]}, -{"id":21415,"name":"Drape of Vaulted Secrets","icon":"inv_misc_cape_19","type":4,"stats":[0,0,21,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[3],"setName":"Trappings of Vaulted Secrets","setId":504,"sources":[{"quest":{"id":8691,"name":"Drape of Vaulted Secrets"}}]}, -{"id":21416,"name":"Kris of Unspoken Names","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":1,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":1.5,"ilvl":70,"quality":4,"unique":true,"classAllowlist":[8],"setName":"Implements of Unspoken Names","setId":500,"sources":[{"quest":{"id":8710,"name":"Kris of Unspoken Names"}}]}, -{"id":21417,"name":"Ring of Unspoken Names","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,12,12,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"classAllowlist":[8],"setName":"Implements of Unspoken Names","setId":500,"sources":[{"quest":{"id":8702,"name":"Ring of Unspoken Names"}}]}, -{"id":21418,"name":"Shroud of Unspoken Names","icon":"inv_misc_cape_20","type":4,"stats":[0,0,22,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":67,"quality":4,"classAllowlist":[8],"setName":"Implements of Unspoken Names","setId":500,"sources":[{"quest":{"id":8694,"name":"Shroud of Unspoken Names"}}]}, -{"id":21452,"name":"Staff of the Ruins","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,44,0,0,8,21,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.4,"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21453,"name":"Mantle of the Horusath","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,37,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4}, -{"id":21454,"name":"Runic Stone Shoulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,37,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21455,"name":"Southwind Helm","icon":"inv_helmet_01","type":1,"armorType":2,"stats":[0,24,34,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21456,"name":"Sandstorm Cloak","icon":"inv_misc_cape_06","type":4,"stats":[12,0,12,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,120,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21457,"name":"Bracers of Brutality","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,12,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21458,"name":"Gauntlets of New Life","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,11,37,12,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21459,"name":"Crossbow of Imminent Doom","icon":"inv_weapon_crossbow_06","type":14,"rangedWeaponType":2,"stats":[5,7,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":259,"weaponSpeed":3.1,"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21460,"name":"Helm of Domination","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[21,11,28,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21461,"name":"Leggings of the Black Blizzard","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,29,35,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21462,"name":"Gloves of Dark Wisdom","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,37,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21463,"name":"Ossirian's Binding","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,25,19,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21464,"name":"Shackles of the Unscarred","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21466,"name":"Stinger of Ayamiss","icon":"inv_mace_23","type":13,"weaponType":4,"handType":1,"stats":[0,0,15,0,0,0,14,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.4,"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21467,"name":"Thick Silithid Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21468,"name":"Mantle of Maz'Nadir","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,25,18,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21469,"name":"Gauntlets of Southwind","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,23,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21470,"name":"Cloak of the Savior","icon":"inv_misc_cape_16","type":4,"stats":[0,0,20,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21471,"name":"Talon of Furious Concentration","icon":"inv_mace_21","type":13,"weaponType":5,"handType":3,"stats":[0,0,15,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21472,"name":"Dustwind Turban","icon":"inv_helmet_62","type":1,"armorType":1,"stats":[0,0,46,14,15,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21473,"name":"Eye of Moam","icon":"inv_misc_eye_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21474,"name":"Chitinous Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21475,"name":"Legplates of the Destroyer","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[24,0,34,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21476,"name":"Obsidian Scaled Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,21,34,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21477,"name":"Ring of Fury","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,9,0,0,10,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}}]}, -{"id":21478,"name":"Bow of Taut Sinew","icon":"inv_weapon_bow_13","type":14,"rangedWeaponType":1,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":185,"weaponSpeed":2.2,"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21479,"name":"Gauntlets of the Immovable","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[15,0,18,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15340,"zoneId":3429}},{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21480,"name":"Scaled Silithid Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,18,18,0,0,7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21481,"name":"Boots of the Desert Protector","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[14,0,14,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21482,"name":"Boots of the Fiery Sands","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,14,26,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21483,"name":"Ring of the Desert Winds","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,14,8,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21484,"name":"Helm of Regrowth","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,45,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15369,"zoneId":3429}}]}, -{"id":21485,"name":"Buru's Skull Fragment","icon":"inv_shield_22","type":13,"weaponType":7,"handType":3,"stats":[11,0,20,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,2200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21486,"name":"Gloves of the Swarm","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[16,0,34,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4}, -{"id":21487,"name":"Slimy Scaled Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,34,10,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21488,"name":"Fetish of Chitinous Spikes","icon":"inv_misc_ahnqirajtrinket_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21489,"name":"Quicksand Waders","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,26,14,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21490,"name":"Slime Kickers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[18,12,12,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21491,"name":"Scaled Bracers of the Gorger","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,15,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15370,"zoneId":3429}}]}, -{"id":21492,"name":"Manslayer of the Qiraji","icon":"inv_sword_56","type":13,"weaponType":9,"handType":4,"stats":[35,15,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":270,"weaponSpeed":3.6,"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21493,"name":"Boots of the Vanguard","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21494,"name":"Southwind's Grasp","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,23,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21495,"name":"Legplates of the Qiraji Command","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[20,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21496,"name":"Bracers of Qiraji Command","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,12,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21497,"name":"Boots of the Qiraji General","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,26,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429}}]}, -{"id":21498,"name":"Qiraji Sacrificial Dagger","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":1.9,"ilvl":66,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21499,"name":"Vestments of the Shifting Sands","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,31,27,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21500,"name":"Belt of the Inquisition","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,27,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21501,"name":"Toughened Silithid Hide Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21502,"name":"Sand Reaver Wristguards","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,16,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21503,"name":"Belt of the Sand Reaver","icon":"inv_belt_13","type":8,"armorType":4,"stats":[17,0,18,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,358,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15348,"zoneId":3429}}]}, -{"id":21504,"name":"Charm of the Shifting Sands","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,20,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"sources":[{"quest":{"id":8791,"name":"The Fall of Ossirian"}}]}, -{"id":21505,"name":"Choker of the Shifting Sands","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"sources":[{"quest":{"id":8791,"name":"The Fall of Ossirian"}}]}, -{"id":21506,"name":"Pendant of the Shifting Sands","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[14,0,21,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"sources":[{"quest":{"id":8791,"name":"The Fall of Ossirian"}}]}, -{"id":21507,"name":"Amulet of the Shifting Sands","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"sources":[{"quest":{"id":8791,"name":"The Fall of Ossirian"}}]}, -{"id":21517,"name":"Gnomish Turban of Psychic Might","icon":"inv_helmet_63","type":1,"armorType":1,"stats":[0,0,17,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4}, -{"id":21520,"name":"Ravencrest's Legacy","icon":"inv_sword_49","type":13,"weaponType":9,"handType":2,"stats":[13,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":157,"weaponSpeed":2.1,"ilvl":76,"quality":4,"unique":true,"sources":[{"quest":{"id":8745,"name":"Treasure of the Timeless One"}}]}, -{"id":21521,"name":"Runesword of the Red","icon":"inv_sword_51","type":13,"weaponType":9,"handType":1,"stats":[0,0,23,0,7,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":2.2,"ilvl":76,"quality":4,"sources":[{"quest":{"id":8745,"name":"Treasure of the Timeless One"}}]}, -{"id":21522,"name":"Shadowsong's Sorrow","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[9,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":1.7,"ilvl":76,"quality":4,"unique":true,"sources":[{"quest":{"id":8745,"name":"Treasure of the Timeless One"}}]}, -{"id":21523,"name":"Fang of Korialstrasz","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":1,"stats":[0,0,23,0,13,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":1.8,"ilvl":76,"quality":4,"sources":[{"quest":{"id":8745,"name":"Treasure of the Timeless One"}}]}, -{"id":21524,"name":"Red Winter Hat","icon":"inv_helmet_67","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2,"setName":"Winter Garb","setId":761,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}},{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}},{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":21525,"name":"Green Winter Hat","icon":"inv_helmet_68","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2,"setName":"Winter Garb","setId":761,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}},{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}},{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":21526,"name":"Band of Icy Depths","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"unique":true}, -{"id":21527,"name":"Darkwater Robes","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,32,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4}, -{"id":21529,"name":"Amulet of Shadow Shielding","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,18,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4}, -{"id":21530,"name":"Onyx Embedded Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,23,23,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4}, -{"id":21531,"name":"Drake Tooth Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4}, -{"id":21532,"name":"Drudge Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4}, -{"id":21538,"name":"Festive Pink Dress","icon":"inv_chest_cloth_58","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8864,"name":"Festive Lunar Dresses"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21539,"name":"Festive Purple Dress","icon":"inv_chest_cloth_59","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8864,"name":"Festive Lunar Dresses"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21541,"name":"Festive Black Pant Suit","icon":"inv_chest_cloth_53","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8865,"name":"Festive Lunar Pant Suits"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21542,"name":"Festival Suit","icon":"inv_chest_cloth_55","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":26407}},{"crafted":{"profession":11,"spellId":26407}}]}, -{"id":21543,"name":"Festive Teal Pant Suit","icon":"inv_chest_cloth_54","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8865,"name":"Festive Lunar Pant Suits"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21544,"name":"Festive Blue Pant Suit","icon":"inv_chest_cloth_52","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":8865,"name":"Festive Lunar Pant Suits"}},{"soldBy":{"npcId":15864,"npcName":"Valadar Starsong","zoneId":493}}]}, -{"id":21563,"name":"Don Rodrigo's Band","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true}, -{"id":21565,"name":"Rune of Perfection","icon":"inv_misc_rune_05","type":12,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"classAllowlist":[5,1,7,3,8]}, -{"id":21566,"name":"Rune of Perfection","icon":"inv_misc_rune_05","type":12,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"unique":true,"classAllowlist":[5,1,7,3,8]}, -{"id":21567,"name":"Rune of Duty","icon":"inv_misc_rune_02","type":12,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"classAllowlist":[9,4,2,6]}, -{"id":21568,"name":"Rune of Duty","icon":"inv_misc_rune_02","type":12,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"unique":true,"classAllowlist":[9,4,2,6]}, -{"id":21579,"name":"Vanquished Tentacle of C'Thun","icon":"inv_misc_ahnqirajtrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21581,"name":"Gauntlets of Annihilation","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[35,0,15,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21582,"name":"Grasp of the Old God","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,33,27,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21583,"name":"Cloak of Clarity","icon":"inv_misc_cape_02","type":4,"stats":[0,0,18,18,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21585,"name":"Dark Storm Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,31,32,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21586,"name":"Belt of Never-Ending Agony","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,32,20,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21596,"name":"Ring of the Godslayer","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[0,21,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21597,"name":"Royal Scepter of Vek'lor","icon":"inv_wand_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,17,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21598,"name":"Royal Qiraji Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[13,13,22,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21599,"name":"Vek'lor's Gloves of Devastation","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,22,21,0,0,17,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21600,"name":"Boots of Epiphany","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,35,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21601,"name":"Ring of Emperor Vek'lor","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,12,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21602,"name":"Qiraji Execution Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,16,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'lor"}}]}, -{"id":21603,"name":"Wand of Qiraji Nobility","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,5,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":1.6,"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Lord Kri"}}]}, -{"id":21604,"name":"Bracelets of Royal Redemption","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,17,24,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21605,"name":"Gloves of the Hidden Temple","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,21,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21606,"name":"Belt of the Fallen Emperor","icon":"inv_belt_34","type":8,"armorType":4,"stats":[17,0,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21607,"name":"Grasp of the Fallen Emperor","icon":"inv_belt_32","type":8,"armorType":3,"stats":[0,19,32,0,0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21608,"name":"Amulet of Vek'nilash","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[0,0,12,23,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21609,"name":"Regenerating Belt of Vek'nilash","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,32,25,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21610,"name":"Wormscale Blocker","icon":"inv_shield_24","type":13,"weaponType":7,"handType":3,"stats":[0,0,22,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":21611,"name":"Burrower Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,22,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":21615,"name":"Don Rigoberto's Lost Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,41,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":21616,"name":"Huhuran's Stinger","icon":"inv_weapon_bow_14","type":14,"rangedWeaponType":1,"stats":[0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":272,"weaponSpeed":2.7,"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21617,"name":"Wasphide Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,27,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21618,"name":"Hive Defiler Wristguards","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21619,"name":"Gloves of the Messiah","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,29,12,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21620,"name":"Ring of the Martyr","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,10,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21621,"name":"Cloak of the Golden Hive","icon":"inv_misc_cape_01","type":4,"stats":[13,10,19,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15509,"zoneId":3428}}]}, -{"id":21622,"name":"Sharpened Silithid Femur","icon":"inv_sword_83","type":13,"weaponType":9,"handType":1,"stats":[0,0,18,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":2.3,"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21623,"name":"Gauntlets of the Righteous Champion","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[22,0,27,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21624,"name":"Gauntlets of Kalimdor","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,26,24,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21625,"name":"Scarab Brooch","icon":"inv_misc_ahnqirajtrinket_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21626,"name":"Slime-Coated Leggings","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,20,39,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21627,"name":"Cloak of Untold Secrets","icon":"inv_misc_cape_20","type":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21635,"name":"Barb of the Sand Reaver","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[0,32,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":3.7,"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21639,"name":"Pauldrons of the Unrelenting","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[11,0,30,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21645,"name":"Hive Tunneler's Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,17,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21647,"name":"Fetish of the Sand Reaver","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21648,"name":"Recomposed Boots","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,30,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21650,"name":"Ancient Qiraji Ripper","icon":"inv_sword_84","type":13,"weaponType":9,"handType":2,"stats":[0,0,11,0,0,0,14,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.8,"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21651,"name":"Scaled Sand Reaver Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,31,23,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21652,"name":"Silithid Carapace Chestguard","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[17,14,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21663,"name":"Robes of the Guardian Saint","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,40,32,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21664,"name":"Barbed Choker","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,10,0,0,0,14,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21665,"name":"Mantle of Wicked Revenge","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":77,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":21666,"name":"Sartura's Might","icon":"inv_qirajidol_war","type":13,"weaponType":5,"handType":3,"stats":[0,0,11,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21667,"name":"Legplates of Blazing Light","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,39,35,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21668,"name":"Scaled Leggings of Qiraji Fury","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,41,31,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21669,"name":"Creeping Vine Helm","icon":"inv_helmet_01","type":1,"armorType":2,"stats":[0,0,45,27,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21670,"name":"Badge of the Swarmguard","icon":"inv_misc_ahnqirajtrinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21671,"name":"Robes of the Battleguard","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,36,31,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21672,"name":"Gloves of Enforcement","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,28,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21673,"name":"Silithid Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21674,"name":"Gauntlets of Steadfast Determination","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[19,18,20,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21675,"name":"Thick Qirajihide Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,17,26,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,202,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21676,"name":"Leggings of the Festering Swarm","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,39,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21677,"name":"Ring of the Qiraji Fury","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,12,0,0,0,14,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":21678,"name":"Necklace of Purity","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,21,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15516,"zoneId":3428}}]}, -{"id":21679,"name":"Kalimdor's Revenge","icon":"inv_sword_56","type":13,"weaponType":9,"handType":4,"stats":[24,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":315,"weaponSpeed":3.2,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15275,"zoneId":3428,"category":"Emperor Vek'nilash"}}]}, -{"id":21680,"name":"Vest of Swift Execution","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,41,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Lord Kri"}}]}, -{"id":21681,"name":"Ring of the Devoured","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,22,7,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Lord Kri"}}]}, -{"id":21682,"name":"Bile-Covered Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Princess Yauj"}}]}, -{"id":21683,"name":"Mantle of the Desert Crusade","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,35,20,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Princess Yauj"}}]}, -{"id":21684,"name":"Mantle of the Desert's Fury","icon":"inv_shoulder_28","type":3,"armorType":3,"stats":[0,0,35,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Princess Yauj"}}]}, -{"id":21685,"name":"Petrified Scarab","icon":"inv_misc_ahnqirajtrinket_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Lord Kri"}}]}, -{"id":21686,"name":"Mantle of Phrenic Power","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,38,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Princess Yauj"}}]}, -{"id":21687,"name":"Ukko's Ring of Darkness","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":76,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Princess Yauj"}}]}, -{"id":21688,"name":"Boots of the Fallen Hero","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[20,14,22,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Vem"}}]}, -{"id":21689,"name":"Gloves of Ebru","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,28,23,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Vem"}}]}, -{"id":21690,"name":"Angelista's Charm","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,26,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Vem"}}]}, -{"id":21691,"name":"Ooze-Ridden Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":4,"stats":[13,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428,"category":"Vem"}}]}, -{"id":21692,"name":"Triad Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[26,19,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21693,"name":"Guise of the Devourer","icon":"inv_helmet_06","type":1,"armorType":2,"stats":[0,19,46,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,290,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21694,"name":"Ternary Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,28,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21695,"name":"Angelista's Touch","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[11,0,17,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21696,"name":"Robes of the Triumvirate","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,21,22,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21697,"name":"Cape of the Trinity","icon":"inv_misc_cape_18","type":4,"stats":[0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15543,"zoneId":3428}}]}, -{"id":21698,"name":"Leggings of Immersion","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,36,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21699,"name":"Barrage Shoulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21700,"name":"Pendant of the Qiraji Guardian","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[12,11,17,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21701,"name":"Cloak of Concentrated Hatred","icon":"inv_misc_cape_02","type":4,"stats":[11,16,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21702,"name":"Amulet of Foul Warding","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21703,"name":"Hammer of Ji'zhi","icon":"inv_mace_21","type":13,"weaponType":4,"handType":4,"stats":[0,0,44,26,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":198,"weaponDamageMax":297,"weaponSpeed":3.5,"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21704,"name":"Boots of the Redeemed Prophecy","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,21,29,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21705,"name":"Boots of the Fallen Prophet","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,20,28,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21706,"name":"Boots of the Unwavering Will","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[12,8,29,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,550,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21707,"name":"Ring of Swarming Thought","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21708,"name":"Beetle Scaled Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,9,14,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21709,"name":"Ring of the Fallen God","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,11,32,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"unique":true,"sources":[{"quest":{"id":8802,"name":"The Savior of Kalimdor"}}]}, -{"id":21710,"name":"Cloak of the Fallen God","icon":"inv_misc_cape_10","type":4,"stats":[11,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"sources":[{"quest":{"id":8802,"name":"The Savior of Kalimdor"}}]}, -{"id":21712,"name":"Amulet of the Fallen God","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,11,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"sources":[{"quest":{"id":8802,"name":"The Savior of Kalimdor"}}]}, -{"id":21715,"name":"Sand Polished Hammer","icon":"inv_mace_24","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,14,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":2.6,"ilvl":72,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15339,"zoneId":3429}}]}, -{"id":21748,"name":"Figurine - Jade Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26872}},{"crafted":{"profession":7,"spellId":26872}}]}, -{"id":21753,"name":"Gem Studded Band","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26896}},{"crafted":{"profession":7,"spellId":26896}}]}, -{"id":21754,"name":"The Aquamarine Ward","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26887}},{"crafted":{"profession":7,"spellId":26887}}]}, -{"id":21755,"name":"Aquamarine Pendant of the Warrior","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26876}},{"crafted":{"profession":7,"spellId":26876}}]}, -{"id":21756,"name":"Figurine - Golden Hare","icon":"inv_jewelcrafting_goldenhare","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26873}},{"crafted":{"profession":7,"spellId":26873}}]}, -{"id":21758,"name":"Figurine - Black Pearl Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26875}},{"crafted":{"profession":7,"spellId":26875}}]}, -{"id":21760,"name":"Figurine - Truesilver Crab","icon":"inv_jewelcrafting_truesilvercrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26881}},{"crafted":{"profession":7,"spellId":26881}}]}, -{"id":21763,"name":"Figurine - Truesilver Boar","icon":"inv_jewelcrafting_truesilverboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26882}},{"crafted":{"profession":7,"spellId":26882}}]}, -{"id":21764,"name":"Ruby Pendant of Fire","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26883}},{"crafted":{"profession":7,"spellId":26883}}]}, -{"id":21765,"name":"Truesilver Healing Ring","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26885}},{"crafted":{"profession":7,"spellId":26885}}]}, -{"id":21766,"name":"Opal Necklace of Impact","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26897}},{"crafted":{"profession":7,"spellId":26897}}]}, -{"id":21767,"name":"Simple Opal Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26902}},{"crafted":{"profession":7,"spellId":26902}}]}, -{"id":21768,"name":"Sapphire Signet","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[308,333,358,384,444,445,527,528,612,697,698,782,783,867,868,952,953,1037,1038,1122,1123,1207,1208,1420,2082,2120,410,613,1419,1772,1773,-329,-327,-84,-81,-78,-69,-68,-29,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,1373,-328,-324,1327,1465,1466,1511],"ilvl":55,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26903}},{"crafted":{"profession":7,"spellId":26903}}]}, -{"id":21769,"name":"Figurine - Ruby Serpent","icon":"inv_jewelcrafting_rubyserpent","type":12,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26900}},{"crafted":{"profession":7,"spellId":26900}}]}, -{"id":21774,"name":"Emerald Crown of Destruction","icon":"inv_crown_14","type":1,"armorType":1,"stats":[0,0,0,26,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26906}},{"crafted":{"profession":7,"spellId":26906}}]}, -{"id":21775,"name":"Onslaught Ring","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26907}},{"crafted":{"profession":7,"spellId":26907}}]}, -{"id":21777,"name":"Figurine - Emerald Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26909}},{"crafted":{"profession":7,"spellId":26909}}]}, -{"id":21778,"name":"Ring of Bitter Shadows","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26910}},{"crafted":{"profession":7,"spellId":26910}}]}, -{"id":21779,"name":"Band of Natural Fire","icon":"inv_jewelry_ring_41","type":11,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26916}},{"crafted":{"profession":7,"spellId":26916}}]}, -{"id":21780,"name":"Blood Crown","icon":"inv_crown_13","type":1,"armorType":1,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26920}},{"crafted":{"profession":7,"spellId":26920}}]}, -{"id":21784,"name":"Figurine - Black Diamond Crab","icon":"inv_jewelcrafting_truesilvercrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26912}},{"crafted":{"profession":7,"spellId":26912}}]}, -{"id":21789,"name":"Figurine - Dark Iron Scorpid","icon":"ability_hunter_pet_scorpid","type":12,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26914}},{"crafted":{"profession":7,"spellId":26914}}]}, -{"id":21790,"name":"Sapphire Pendant of Winter Night","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26908}},{"crafted":{"profession":7,"spellId":26908}}]}, -{"id":21791,"name":"Living Emerald Pendant","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,16,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26911}},{"crafted":{"profession":7,"spellId":26911}}]}, -{"id":21792,"name":"Necklace of the Diamond Tower","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26915}},{"crafted":{"profession":7,"spellId":26915}}]}, -{"id":21793,"name":"Arcanite Sword Pendant","icon":"inv_weapon_shortblade_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26918}},{"crafted":{"profession":7,"spellId":26918}}]}, -{"id":21800,"name":"Silithid Husked Launcher","icon":"inv_weapon_rifle_10","type":14,"rangedWeaponType":3,"stats":[0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.8,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3429,"otherName":"Trash"}}]}, -{"id":21801,"name":"Antenna of Invigoration","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,6,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.6,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3429,"otherName":"Trash"}}]}, -{"id":21802,"name":"The Lost Kris of Zedd","icon":"inv_sword_32","type":13,"weaponType":2,"handType":1,"stats":[0,0,6,0,0,0,14,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.5,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3429,"otherName":"Trash"}}]}, -{"id":21803,"name":"Helm of the Holy Avenger","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,33,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3}, -{"id":21804,"name":"Coif of Elemental Fury","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,33,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3429,"otherName":"Trash"}}]}, -{"id":21805,"name":"Polished Obsidian Pauldrons","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[16,0,17,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3429,"otherName":"Trash"}}]}, -{"id":21806,"name":"Gavel of Qiraji Authority","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[15,0,29,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":162,"weaponSpeed":2.2,"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429,"category":"Trash"}}]}, -{"id":21809,"name":"Fury of the Forgotten Swarm","icon":"inv_jewelry_necklace_14","type":2,"stats":[8,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429,"category":"Trash"}}]}, -{"id":21810,"name":"Treads of the Wandering Nomad","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,27,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15341,"zoneId":3429,"category":"Trash"}}]}, -{"id":21814,"name":"Breastplate of Annihilation","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[37,0,13,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":73,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15263,"zoneId":3428}}]}, -{"id":21836,"name":"Ritssyn's Ring of Chaos","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,6,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21837,"name":"Anubisath Warhammer","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,0,0,9,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":1.8,"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21838,"name":"Garb of Royal Ascension","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,21,26,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21839,"name":"Scepter of the False Prophet","icon":"inv_mace22","type":13,"weaponType":4,"handType":1,"stats":[0,0,29,0,8,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.8,"ilvl":84,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":21846,"name":"Spellfire Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,27,35,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26752}},{"crafted":{"profession":11,"spellId":26752}}]}, -{"id":21847,"name":"Spellfire Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,35,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26753}},{"crafted":{"profession":11,"spellId":26753}}]}, -{"id":21848,"name":"Spellfire Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,26,50,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26754}},{"crafted":{"profession":11,"spellId":26754}}]}, -{"id":21849,"name":"Netherweave Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26764}},{"crafted":{"profession":11,"spellId":26764}}]}, -{"id":21850,"name":"Netherweave Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26765}},{"crafted":{"profession":11,"spellId":26765}}]}, -{"id":21851,"name":"Netherweave Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26770}},{"crafted":{"profession":11,"spellId":26770}}]}, -{"id":21852,"name":"Netherweave Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,45,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26771}},{"crafted":{"profession":11,"spellId":26771}}]}, -{"id":21853,"name":"Netherweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26772}},{"crafted":{"profession":11,"spellId":26772}}]}, -{"id":21854,"name":"Netherweave Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,45,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26773}},{"crafted":{"profession":11,"spellId":26773}}]}, -{"id":21855,"name":"Netherweave Tunic","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,45,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26774}},{"crafted":{"profession":11,"spellId":26774}}]}, -{"id":21856,"name":"Neretzek, The Blood Drinker","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":303,"weaponSpeed":3.7,"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21859,"name":"Imbued Netherweave Pants","icon":"inv_pants_leather_09","type":9,"armorType":1,"stats":[0,0,59,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26775}},{"crafted":{"profession":11,"spellId":26775}}]}, -{"id":21860,"name":"Imbued Netherweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,46,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26776}},{"crafted":{"profession":11,"spellId":26776}}]}, -{"id":21861,"name":"Imbued Netherweave Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,63,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26777}},{"crafted":{"profession":11,"spellId":26777}}]}, -{"id":21862,"name":"Imbued Netherweave Tunic","icon":"inv_chest_cloth_45","type":5,"armorType":1,"stats":[0,0,28,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26778}},{"crafted":{"profession":11,"spellId":26778}}]}, -{"id":21863,"name":"Soulcloth Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,24,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"setName":"Soulcloth Embrace","setId":557,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26779}},{"crafted":{"profession":11,"spellId":26779}}]}, -{"id":21864,"name":"Soulcloth Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,30,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"setName":"Soulcloth Embrace","setId":557,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26780}},{"crafted":{"profession":11,"spellId":26780}}]}, -{"id":21865,"name":"Soulcloth Vest","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,24,20,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"setName":"Soulcloth Embrace","setId":557,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":26781}},{"crafted":{"profession":11,"spellId":26781}}]}, -{"id":21866,"name":"Arcanoweave Bracers","icon":"inv_bracer_19","type":6,"armorType":1,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26782}},{"crafted":{"profession":11,"spellId":26782}}]}, -{"id":21867,"name":"Arcanoweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26783}},{"crafted":{"profession":11,"spellId":26783}}]}, -{"id":21868,"name":"Arcanoweave Robe","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,45,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26784}},{"crafted":{"profession":11,"spellId":26784}}]}, -{"id":21869,"name":"Frozen Shadoweave Shoulders","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,33,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26756}},{"crafted":{"profession":11,"spellId":26756}}]}, -{"id":21870,"name":"Frozen Shadoweave Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,21,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26757}},{"crafted":{"profession":11,"spellId":26757}}]}, -{"id":21871,"name":"Frozen Shadoweave Robe","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,45,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26758}},{"crafted":{"profession":11,"spellId":26758}}]}, -{"id":21873,"name":"Primal Mooncloth Belt","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,18,37,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26760}},{"crafted":{"profession":11,"spellId":26760}}]}, -{"id":21874,"name":"Primal Mooncloth Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,24,42,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26761}},{"crafted":{"profession":11,"spellId":26761}}]}, -{"id":21875,"name":"Primal Mooncloth Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,30,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26762}},{"crafted":{"profession":11,"spellId":26762}}]}, -{"id":21888,"name":"Gloves of the Immortal","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21889,"name":"Gloves of the Redeemed Prophecy","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,38,17,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"classAllowlist":[4],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21890,"name":"Gloves of the Fallen Prophet","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,35,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"classAllowlist":[7]}, -{"id":21891,"name":"Shard of the Fallen Star","icon":"inv_misc_ahnqirajtrinket_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":75,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3428,"otherName":"Trash"}}]}, -{"id":21931,"name":"Woven Copper Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26925}},{"crafted":{"profession":7,"spellId":26925}}]}, -{"id":21932,"name":"Heavy Copper Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26926}},{"crafted":{"profession":7,"spellId":26926}}]}, -{"id":21933,"name":"Thick Bronze Necklace","icon":"inv_belt_19","type":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26927}},{"crafted":{"profession":7,"spellId":26927}}]}, -{"id":21934,"name":"Ornate Tigerseye Necklace","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":26928}},{"crafted":{"profession":7,"spellId":26928}}]}, -{"id":21994,"name":"Belt of Heroism","icon":"inv_belt_34","type":8,"armorType":4,"stats":[15,9,12,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Battlegear of Heroism","setId":511}, -{"id":21995,"name":"Boots of Heroism","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[20,0,20,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Battlegear of Heroism","setId":511}, -{"id":21996,"name":"Bracers of Heroism","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[9,5,14,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[9],"setName":"Battlegear of Heroism","setId":511}, -{"id":21997,"name":"Breastplate of Heroism","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[21,13,26,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Battlegear of Heroism","setId":511}, -{"id":21998,"name":"Gauntlets of Heroism","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[20,0,13,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Battlegear of Heroism","setId":511}, -{"id":21999,"name":"Helm of Heroism","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[18,0,32,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Battlegear of Heroism","setId":511}, -{"id":22000,"name":"Legplates of Heroism","icon":"inv_pants_04","type":9,"armorType":4,"stats":[25,11,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Battlegear of Heroism","setId":511}, -{"id":22001,"name":"Spaulders of Heroism","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[12,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Battlegear of Heroism","setId":511}, -{"id":22002,"name":"Darkmantle Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[6],"setName":"Darkmantle Armor","setId":512}, -{"id":22003,"name":"Darkmantle Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Darkmantle Armor","setId":512}, -{"id":22004,"name":"Darkmantle Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,15,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[6],"setName":"Darkmantle Armor","setId":512}, -{"id":22005,"name":"Darkmantle Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,26,28,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Darkmantle Armor","setId":512}, -{"id":22006,"name":"Darkmantle Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"classAllowlist":[6],"setName":"Darkmantle Armor","setId":512}, -{"id":22007,"name":"Darkmantle Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,25,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Darkmantle Armor","setId":512}, -{"id":22008,"name":"Darkmantle Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Darkmantle Armor","setId":512}, -{"id":22009,"name":"Darkmantle Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,31,15,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Darkmantle Armor","setId":512}, -{"id":22010,"name":"Beastmaster's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,11,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Beastmaster Armor","setId":515}, -{"id":22011,"name":"Beastmaster's Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,11,11,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[2],"setName":"Beastmaster Armor","setId":515}, -{"id":22013,"name":"Beastmaster's Cap","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,15,29,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Beastmaster Armor","setId":515}, -{"id":22015,"name":"Beastmaster's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,11,22,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Beastmaster Armor","setId":515}, -{"id":22016,"name":"Beastmaster's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,8,25,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Beastmaster Armor","setId":515}, -{"id":22017,"name":"Beastmaster's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,19,21,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Beastmaster Armor","setId":515}, -{"id":22060,"name":"Beastmaster's Tunic","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,17,27,0,0,0,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Beastmaster Armor","setId":515}, -{"id":22061,"name":"Beastmaster's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Beastmaster Armor","setId":515}, -{"id":22062,"name":"Sorcerer's Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,25,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22063,"name":"Sorcerer's Bindings","icon":"inv_jewelry_ring_23","type":6,"armorType":1,"stats":[0,0,20,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[3],"setName":"Sorcerer's Regalia","setId":517}, -{"id":22064,"name":"Sorcerer's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22065,"name":"Sorcerer's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,40,9,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22066,"name":"Sorcerer's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,27,11,0,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22067,"name":"Sorcerer's Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,38,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22068,"name":"Sorcerer's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,27,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22069,"name":"Sorcerer's Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,39,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Sorcerer's Regalia","setId":517}, -{"id":22070,"name":"Deathmist Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Deathmist Raiment","setId":518}, -{"id":22071,"name":"Deathmist Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,23,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[8],"setName":"Deathmist Raiment","setId":518}, -{"id":22072,"name":"Deathmist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,40,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Deathmist Raiment","setId":518}, -{"id":22073,"name":"Deathmist Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Deathmist Raiment","setId":518}, -{"id":22074,"name":"Deathmist Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,45,14,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Deathmist Raiment","setId":518}, -{"id":22075,"name":"Deathmist Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,45,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Deathmist Raiment","setId":518}, -{"id":22076,"name":"Deathmist Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,34,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Deathmist Raiment","setId":518}, -{"id":22077,"name":"Deathmist Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,29,12,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Deathmist Raiment","setId":518}, -{"id":22078,"name":"Virtuous Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,24,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22079,"name":"Virtuous Bracers","icon":"inv_belt_31","type":6,"armorType":1,"stats":[0,0,15,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[5],"setName":"Vestments of the Virtuous","setId":514}, -{"id":22080,"name":"Virtuous Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,31,9,24,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22081,"name":"Virtuous Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,10,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22082,"name":"Virtuous Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,24,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22083,"name":"Virtuous Robe","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,41,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22084,"name":"Virtuous Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,24,10,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22085,"name":"Virtuous Skirt","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,26,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Vestments of the Virtuous","setId":514}, -{"id":22086,"name":"Soulforge Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[15,0,21,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Soulforge Armor","setId":516}, -{"id":22087,"name":"Soulforge Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[17,0,23,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Soulforge Armor","setId":516}, -{"id":22088,"name":"Soulforge Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[12,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[4],"setName":"Soulforge Armor","setId":516}, -{"id":22089,"name":"Soulforge Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[22,0,32,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Soulforge Armor","setId":516}, -{"id":22090,"name":"Soulforge Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[15,0,21,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Soulforge Armor","setId":516}, -{"id":22091,"name":"Soulforge Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[22,0,32,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Soulforge Armor","setId":516}, -{"id":22092,"name":"Soulforge Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[16,0,32,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Soulforge Armor","setId":516}, -{"id":22093,"name":"Soulforge Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[15,0,21,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Soulforge Armor","setId":516}, -{"id":22095,"name":"Bindings of The Five Thunders","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,18,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[7],"setName":"The Five Thunders","setId":519}, -{"id":22096,"name":"Boots of The Five Thunders","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,12,23,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"The Five Thunders","setId":519}, -{"id":22097,"name":"Coif of The Five Thunders","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,40,12,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"The Five Thunders","setId":519}, -{"id":22098,"name":"Cord of The Five Thunders","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,21,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"The Five Thunders","setId":519}, -{"id":22099,"name":"Gauntlets of The Five Thunders","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,10,27,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"The Five Thunders","setId":519}, -{"id":22100,"name":"Kilt of The Five Thunders","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,32,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"The Five Thunders","setId":519}, -{"id":22101,"name":"Pauldrons of The Five Thunders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,21,16,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"The Five Thunders","setId":519}, -{"id":22102,"name":"Vest of The Five Thunders","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,18,32,0,0,16,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"The Five Thunders","setId":519}, -{"id":22106,"name":"Feralheart Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,7,22,6,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Feralheart Raiment","setId":513}, -{"id":22107,"name":"Feralheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,12,25,9,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Feralheart Raiment","setId":513}, -{"id":22108,"name":"Feralheart Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,6,20,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[1],"setName":"Feralheart Raiment","setId":513}, -{"id":22109,"name":"Feralheart Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,14,34,14,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Feralheart Raiment","setId":513}, -{"id":22110,"name":"Feralheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,11,28,10,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Feralheart Raiment","setId":513}, -{"id":22111,"name":"Feralheart Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,14,33,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"setName":"Feralheart Raiment","setId":513}, -{"id":22112,"name":"Feralheart Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,8,24,5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"setName":"Feralheart Raiment","setId":513}, -{"id":22113,"name":"Feralheart Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,16,34,10,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"setName":"Feralheart Raiment","setId":513}, -{"id":22149,"name":"Beads of Ogre Mojo","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,19,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":22150,"name":"Beads of Ogre Might","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,7,0,0,10,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3}, -{"id":22191,"name":"Obsidian Mail Tunic","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,38,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27590}},{"crafted":{"profession":2,"spellId":27590}}]}, -{"id":22194,"name":"Black Grasp of the Destroyer","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,14,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27589}},{"crafted":{"profession":2,"spellId":27589}}]}, -{"id":22195,"name":"Light Obsidian Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,16,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27588}},{"crafted":{"profession":2,"spellId":27588}}]}, -{"id":22196,"name":"Thick Obsidian Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":4,"stats":[38,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27587}},{"crafted":{"profession":2,"spellId":27587}}]}, -{"id":22197,"name":"Heavy Obsidian Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27585}},{"crafted":{"profession":2,"spellId":27585}}]}, -{"id":22198,"name":"Jagged Obsidian Shield","icon":"inv_shield_22","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,2209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27586}},{"crafted":{"profession":2,"spellId":27586}}]}, -{"id":22204,"name":"Wristguards of Renown","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":22205,"name":"Black Steel Bindings","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[14,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Secret Safe"}},{"drop":{"difficulty":1,"npcId":9476,"zoneId":1584}}]}, -{"id":22206,"name":"Bouquet of Red Roses","icon":"inv_rosebouquet01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2,"unique":true}, -{"id":22207,"name":"Sash of the Grand Hunt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,13,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9019,"zoneId":1584}}]}, -{"id":22208,"name":"Lavastone Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[11,0,11,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":203,"weaponSpeed":3.5,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9938,"zoneId":1584}}]}, -{"id":22212,"name":"Golem Fitted Pauldrons","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,16,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9502,"zoneId":1584}}]}, -{"id":22223,"name":"Foreman's Head Protector","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9056,"zoneId":1584}}]}, -{"id":22225,"name":"Dragonskin Cowl","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,15,23,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10339,"zoneId":1583}}]}, -{"id":22231,"name":"Kayser's Boots of Precision","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9237,"zoneId":1583}}]}, -{"id":22232,"name":"Marksman's Girdle","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,17,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10584,"zoneId":1583}}]}, -{"id":22234,"name":"Mantle of Lost Hope","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,7,17,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9025,"zoneId":1584}}]}, -{"id":22240,"name":"Greaves of Withering Despair","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,10,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9018,"zoneId":1584}}]}, -{"id":22241,"name":"Dark Warder's Pauldrons","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9041,"zoneId":1584}}]}, -{"id":22242,"name":"Verek's Leash","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9042,"zoneId":1584}}]}, -{"id":22245,"name":"Soot Encrusted Footwear","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,11,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":8923,"zoneId":1584}}]}, -{"id":22247,"name":"Faith Healer's Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10429,"zoneId":1583}}]}, -{"id":22253,"name":"Tome of the Lost","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":22254,"name":"Wand of Eternal Light","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":1.5,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Secret Safe"}},{"drop":{"difficulty":1,"npcId":9476,"zoneId":1584}}]}, -{"id":22255,"name":"Magma Forged Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,12,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Secret Safe"}},{"drop":{"difficulty":1,"npcId":9476,"zoneId":1584}}]}, -{"id":22256,"name":"Mana Shaping Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9438,"zoneId":1584,"category":"Secret Safe"}},{"drop":{"difficulty":1,"npcId":9476,"zoneId":1584}}]}, -{"id":22257,"name":"Bloodclot Band","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9027,"zoneId":1584}}]}, -{"id":22266,"name":"Flarethorn","icon":"inv_spear_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":1.6,"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9027,"zoneId":1584}}]}, -{"id":22267,"name":"Spellweaver's Turban","icon":"inv_helmet_62","type":1,"armorType":1,"stats":[0,0,15,23,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":22268,"name":"Draconic Infused Emblem","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":22269,"name":"Shadow Prowler's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,14,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10363,"zoneId":1583}}]}, -{"id":22270,"name":"Entrenching Boots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[12,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9028,"zoneId":1584}}]}, -{"id":22271,"name":"Leggings of Frenzied Magic","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,10,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9027,"zoneId":1584}}]}, -{"id":22272,"name":"Forest's Embrace","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,12,25,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[1]}, -{"id":22274,"name":"Grizzled Pelt","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,17,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[1]}, -{"id":22275,"name":"Firemoss Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9537,"zoneId":1584,"category":"Hurley Blackbreath"}}]}, -{"id":22276,"name":"Lovely Red Dress","icon":"inv_chest_cloth_24","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22277,"name":"Red Dinner Suit","icon":"inv_shirt_red_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22278,"name":"Lovely Blue Dress","icon":"inv_chest_cloth_23","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22279,"name":"Lovely Black Dress","icon":"inv_chest_cloth_50","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":22280,"name":"Lovely Purple Dress","icon":"inv_chest_cloth_17","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22281,"name":"Blue Dinner Suit","icon":"inv_shirt_blue_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22282,"name":"Purple Dinner Suit","icon":"inv_shirt_purple_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":9029,"name":"A Bubbling Cauldron"}}]}, -{"id":22301,"name":"Ironweave Robe","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Sothos and Jarien's Heirlooms\"]..\" - \"..format(AL[\"Tier %s Sets"}}]}, -{"id":22302,"name":"Ironweave Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22303,"name":"Ironweave Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16118,"zoneId":2057}}]}, -{"id":22304,"name":"Ironweave Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22305,"name":"Ironweave Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16059,"zoneId":1584}}]}, -{"id":22306,"name":"Ironweave Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16080,"zoneId":1583}}]}, -{"id":22311,"name":"Ironweave Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10430,"zoneId":1583}}]}, -{"id":22313,"name":"Ironweave Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"classAllowlist":[5,3,8],"setName":"Ironweave Battlesuit","setId":520,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10220,"zoneId":1583}}]}, -{"id":22314,"name":"Huntsman's Harpoon","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":226,"weaponSpeed":3.6,"ilvl":61,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22315,"name":"Hammer of Revitalization","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":2.7,"ilvl":61,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22317,"name":"Lefty's Brass Knuckle","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":2.6,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16059,"zoneId":1584}}]}, -{"id":22318,"name":"Malgen's Long Bow","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,8,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":182,"weaponSpeed":2.9,"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16059,"zoneId":1584}}]}, -{"id":22319,"name":"Tome of Divine Right","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16080,"zoneId":1583}}]}, -{"id":22321,"name":"Heart of Wyrmthalak","icon":"inv_misc_gem_bloodstone_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9568,"zoneId":1583}}]}, -{"id":22322,"name":"The Jaw Breaker","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,5,5,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":134,"weaponSpeed":2.6,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16080,"zoneId":1583}}]}, -{"id":22325,"name":"Belt of the Trickster","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16080,"zoneId":1583}}]}, -{"id":22326,"name":"Amalgam's Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16118,"zoneId":2057}}]}, -{"id":22327,"name":"Amulet of the Redeemed","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,17,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Sothos and Jarien's Heirlooms\"]..\" - \"..format(AL[\"Tier %s Sets"}}]}, -{"id":22328,"name":"Legplates of Vigilance","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,22,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Sothos and Jarien's Heirlooms\"]..\" - \"..format(AL[\"Tier %s Sets"}}]}, -{"id":22329,"name":"Scepter of Interminable Focus","icon":"inv_wand_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,8,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Sothos and Jarien's Heirlooms\"]..\" - \"..format(AL[\"Tier %s Sets"}}]}, -{"id":22330,"name":"Shroud of Arcane Mastery","icon":"inv_misc_cape_16","type":4,"stats":[0,0,9,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16059,"zoneId":1584}}]}, -{"id":22331,"name":"Band of the Steadfast Hero","icon":"inv_jewelry_ring_33","type":11,"stats":[7,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16118,"zoneId":2057}}]}, -{"id":22332,"name":"Blade of Necromancy","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16118,"zoneId":2057}}]}, -{"id":22333,"name":"Hammer of Divine Might","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[14,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.5,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16118,"zoneId":2057}}]}, -{"id":22334,"name":"Band of Mending","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,7,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10812,"zoneId":2017}},{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Sothos and Jarien's Heirlooms\"]..\" - \"..format(AL[\"Tier %s Sets"}}]}, -{"id":22335,"name":"Lord Valthalak's Staff of Command","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,23,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":130,"weaponSpeed":2.1,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22336,"name":"Draconian Aegis of the Legion","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22337,"name":"Shroud of Domination","icon":"inv_misc_cape_19","type":4,"stats":[14,0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22339,"name":"Rune Band of Wizardry","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,8,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22340,"name":"Pendant of Celerity","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22342,"name":"Leggings of Torment","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,15,15,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22343,"name":"Handguards of Savagery","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16042,"zoneId":1583}}]}, -{"id":22345,"name":"Totem of Rebirth","icon":"inv_relics_totemofrebirth","type":14,"rangedWeaponType":4,"stats":[0,6,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"classAllowlist":[1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22347,"name":"Fahrad's Reloading Repeater","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,4,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":214,"weaponSpeed":3.2,"ilvl":65,"quality":3}, -{"id":22348,"name":"Doomulus Prime","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[22,0,22,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":265,"weaponSpeed":3.8,"ilvl":65,"quality":3}, -{"id":22377,"name":"The Thunderwood Poker","icon":"inv_sword_17","type":13,"weaponType":2,"handType":2,"stats":[0,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":1.8,"ilvl":65,"quality":3,"unique":true}, -{"id":22378,"name":"Ravenholdt Slicer","icon":"inv_sword_38","type":13,"weaponType":9,"handType":2,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":2.8,"ilvl":65,"quality":3}, -{"id":22379,"name":"Shivsprocket's Shiv","icon":"inv_sword_21","type":13,"weaponType":2,"handType":1,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":84,"weaponSpeed":1.5,"ilvl":65,"quality":3}, -{"id":22380,"name":"Simone's Cultivating Hammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":100,"weaponSpeed":1.8,"ilvl":65,"quality":3}, -{"id":22383,"name":"Sageblade","icon":"inv_sword_51","type":13,"weaponType":9,"handType":1,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":1.8,"ilvl":64,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27832}},{"crafted":{"profession":2,"spellId":27832}}]}, -{"id":22384,"name":"Persuader","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":2.7,"ilvl":63,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27830}},{"crafted":{"profession":2,"spellId":27830}}]}, -{"id":22385,"name":"Titanic Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[30,0,0,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":27829}},{"crafted":{"profession":2,"spellId":27829}}]}, -{"id":22394,"name":"Staff of Metanoia","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":100,"weaponSpeed":2.1,"ilvl":45,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10503,"zoneId":2057}}]}, -{"id":22395,"name":"Totem of Rage","icon":"inv_relics_totemofrage","type":14,"rangedWeaponType":4,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9938,"zoneId":1584}}]}, -{"id":22396,"name":"Totem of Life","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":22397,"name":"Idol of Ferocity","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,5,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9025,"zoneId":1584}}]}, -{"id":22398,"name":"Idol of Rejuvenation","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16080,"zoneId":1583}}]}, -{"id":22399,"name":"Idol of Health","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15299,"zoneId":3428}}]}, -{"id":22400,"name":"Libram of Truth","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[5,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":3,"classAllowlist":[4,10],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":9938,"zoneId":1584}}]}, -{"id":22401,"name":"Libram of Hope","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[6,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"classAllowlist":[4,10],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22402,"name":"Libram of Grace","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[0,0,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15510,"zoneId":3428}}]}, -{"id":22403,"name":"Nacreous Shell Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,8,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":22404,"name":"Willey's Back Scratcher","icon":"inv_weapon_shortblade_16","type":13,"weaponType":3,"handType":1,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.6,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":22405,"name":"Mantle of the Scarlet Crusade","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":22406,"name":"Redemption","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,12,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":104,"weaponSpeed":2.1,"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":22407,"name":"Helm of the New Moon","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,14,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10997,"zoneId":2017}}]}, -{"id":22408,"name":"Ritssyn's Wand of Bad Mojo","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":89,"weaponSpeed":1.3,"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":22409,"name":"Tunic of the Crescent Moon","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":22410,"name":"Gauntlets of Deftness","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":22411,"name":"Helm of the Executioner","icon":"inv_helmet_01","type":1,"armorType":4,"stats":[16,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":22412,"name":"Thuzadin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,12,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10440,"zoneId":2017}}]}, -{"id":22420,"name":"Dreadnaught Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[15,0,34,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught's Battlegear","setId":523}, -{"id":22422,"name":"Dreadnaught Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,26,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught's Battlegear","setId":523}, -{"id":22423,"name":"Dreadnaught Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[14,0,28,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught's Battlegear","setId":523}, -{"id":22424,"name":"Redemption Wristguards","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,33,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Redemption Armor","setId":528}, -{"id":22430,"name":"Redemption Boots","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,37,19,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"setName":"Redemption Armor","setId":528}, -{"id":22431,"name":"Redemption Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,47,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Redemption Armor","setId":528}, -{"id":22433,"name":"Don Mauricio's Band of Domination","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":1853,"zoneId":2057}}]}, -{"id":22440,"name":"Cryptstalker Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,22,23,0,0,10,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Armor","setId":530}, -{"id":22442,"name":"Cryptstalker Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,23,30,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Armor","setId":530}, -{"id":22443,"name":"Cryptstalker Wristguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,18,31,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Armor","setId":530}, -{"id":22458,"name":"Moonshadow Stave","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,15,18,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":200,"weaponSpeed":3.7,"ilvl":52,"quality":3,"classAllowlist":[1]}, -{"id":22468,"name":"Earthshatter Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,43,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"setName":"The Earthshatterer","setId":527}, -{"id":22470,"name":"Earthshatter Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,42,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"The Earthshatterer","setId":527}, -{"id":22471,"name":"Earthshatter Wristguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,33,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"The Earthshatterer","setId":527}, -{"id":22472,"name":"Boots of Ferocity","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16097,"zoneId":2557}}]}, -{"id":22480,"name":"Bonescythe Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,32,18,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"setName":"Bonescythe Armor","setId":524}, -{"id":22482,"name":"Bonescythe Waistguard","icon":"inv_belt_27","type":8,"armorType":2,"stats":[0,24,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Bonescythe Armor","setId":524}, -{"id":22483,"name":"Bonescythe Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,26,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Bonescythe Armor","setId":524}, -{"id":22488,"name":"Dreamwalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,54,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"setName":"Dreamwalker Raiment","setId":521}, -{"id":22492,"name":"Dreamwalker Boots","icon":"inv_boots_chain_05","type":10,"armorType":2,"stats":[0,0,38,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"setName":"Dreamwalker Raiment","setId":521}, -{"id":22494,"name":"Dreamwalker Girdle","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,36,23,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Dreamwalker Raiment","setId":521}, -{"id":22495,"name":"Dreamwalker Wristguards","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,29,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Dreamwalker Raiment","setId":521}, -{"id":22500,"name":"Frostfire Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,33,24,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"setName":"Frostfire Regalia","setId":526}, -{"id":22502,"name":"Frostfire Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,38,24,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Frostfire Regalia","setId":526}, -{"id":22503,"name":"Frostfire Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,27,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Frostfire Regalia","setId":526}, -{"id":22508,"name":"Plagueheart Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,33,27,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Raiment","setId":529}, -{"id":22510,"name":"Plagueheart Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,31,29,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Plagueheart Raiment","setId":529}, -{"id":22511,"name":"Plagueheart Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,33,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"setName":"Plagueheart Raiment","setId":529}, -{"id":22516,"name":"Sandals of Faith","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,39,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":86,"quality":4,"classAllowlist":[5],"setName":"Vestments of Faith","setId":525}, -{"id":22518,"name":"Belt of Faith","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,39,22,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[5],"setName":"Vestments of Faith","setId":525}, -{"id":22519,"name":"Bindings of Faith","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,25,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"classAllowlist":[5],"setName":"Vestments of Faith","setId":525}, -{"id":22589,"name":"Atiesh, Greatstaff of the Guardian","icon":"inv_staff_medivh","type":13,"weaponType":8,"handType":4,"stats":[0,0,59,0,0,16,24,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":2.9,"ilvl":90,"quality":5,"classAllowlist":[3],"sources":[{"quest":{"id":9270,"name":"Atiesh, Greatstaff of the Guardian"}}]}, -{"id":22630,"name":"Atiesh, Greatstaff of the Guardian","icon":"inv_staff_medivh","type":13,"weaponType":8,"handType":4,"stats":[0,0,55,0,0,0,28,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":2.9,"ilvl":90,"quality":5,"classAllowlist":[8],"sources":[{"quest":{"id":9271,"name":"Atiesh, Greatstaff of the Guardian"}}]}, -{"id":22631,"name":"Atiesh, Greatstaff of the Guardian","icon":"inv_staff_medivh","type":13,"weaponType":8,"handType":4,"stats":[0,0,53,0,27,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":2.9,"ilvl":90,"quality":5,"classAllowlist":[5],"sources":[{"quest":{"id":9257,"name":"Atiesh, Greatstaff of the Guardian"}}]}, -{"id":22632,"name":"Atiesh, Greatstaff of the Guardian","icon":"inv_staff_medivh","type":13,"weaponType":8,"handType":4,"stats":[0,0,53,137,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":2.9,"ilvl":90,"quality":5,"classAllowlist":[1],"sources":[{"quest":{"id":9269,"name":"Atiesh, Greatstaff of the Guardian"}}]}, -{"id":22651,"name":"Outrider's Plate Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[28,0,27,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22652,"name":"Glacial Vest","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28207}},{"crafted":{"profession":11,"spellId":28207}}]}, -{"id":22654,"name":"Glacial Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28205}},{"crafted":{"profession":11,"spellId":28205}}]}, -{"id":22655,"name":"Glacial Wrists","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28209}},{"crafted":{"profession":11,"spellId":28209}}]}, -{"id":22656,"name":"The Purifier","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":3,"ilvl":60,"quality":4}, -{"id":22657,"name":"Amulet of the Dawn","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,24,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":22658,"name":"Glacial Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28208}},{"crafted":{"profession":11,"spellId":28208}}]}, -{"id":22659,"name":"Medallion of the Dawn","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,12,0,0,0,14,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":22660,"name":"Gaea's Embrace","icon":"inv_misc_cape_17","type":4,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":28210}},{"crafted":{"profession":11,"spellId":28210}}]}, -{"id":22661,"name":"Polar Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28219}},{"crafted":{"profession":8,"spellId":28219}}]}, -{"id":22662,"name":"Polar Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28220}},{"crafted":{"profession":8,"spellId":28220}}]}, -{"id":22663,"name":"Polar Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28221}},{"crafted":{"profession":8,"spellId":28221}}]}, -{"id":22664,"name":"Icy Scale Breastplate","icon":"inv_chest_plate09","type":5,"armorType":3,"stats":[0,20,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28222}},{"crafted":{"profession":8,"spellId":28222}}]}, -{"id":22665,"name":"Icy Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28224}},{"crafted":{"profession":8,"spellId":28224}}]}, -{"id":22666,"name":"Icy Scale Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,11,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28223}},{"crafted":{"profession":8,"spellId":28223}}]}, -{"id":22667,"name":"Bracers of Hope","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,20,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":22668,"name":"Bracers of Subterfuge","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,15,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4}, -{"id":22669,"name":"Icebane Breastplate","icon":"inv_chest_chain_11","type":5,"armorType":4,"stats":[12,0,24,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,830,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":28242}},{"crafted":{"profession":2,"spellId":28242}}]}, -{"id":22670,"name":"Icebane Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[9,0,18,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":28243}},{"crafted":{"profession":2,"spellId":28243}}]}, -{"id":22671,"name":"Icebane Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[6,0,13,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":28244}},{"crafted":{"profession":2,"spellId":28244}}]}, -{"id":22672,"name":"Sentinel's Plate Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[28,0,27,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22673,"name":"Outrider's Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,35,15,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22676,"name":"Outrider's Mail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,14,22,0,0,16,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22678,"name":"Talisman of Ascendance","icon":"inv_misc_gem_pearl_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"unique":true}, -{"id":22680,"name":"Band of Resolution","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,18,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"unique":true}, -{"id":22681,"name":"Band of Piety","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,19,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"unique":true}, -{"id":22688,"name":"Verimonde's Last Resort","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":1.4,"ilvl":66,"quality":3}, -{"id":22689,"name":"Sanctified Leather Helm","icon":"inv_helmet_13","type":1,"armorType":2,"stats":[0,0,32,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3}, -{"id":22690,"name":"Leggings of the Plague Hunter","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,20,16,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3}, -{"id":22691,"name":"Corrupted Ashbringer","icon":"inv_sword_2h_ashbringercorrupt","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":389,"weaponSpeed":3.6,"ilvl":86,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":22699,"name":"Icebane Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[10,0,25,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4}, -{"id":22700,"name":"Glacial Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4}, -{"id":22701,"name":"Polar Leggings","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4}, -{"id":22702,"name":"Icy Scale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4}, -{"id":22707,"name":"Ramaladni's Icy Grasp","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":4,"unique":true}, -{"id":22711,"name":"Cloak of the Hakkari Worshippers","icon":"inv_misc_cape_16","type":4,"stats":[0,0,11,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22712,"name":"Might of the Tribe","icon":"inv_misc_cape_16","type":4,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22713,"name":"Zulian Scepter of Rites","icon":"inv_waepon_bow_zulgrub_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,16,0,10,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":152,"weaponSpeed":2.6,"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22714,"name":"Sacrificial Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[19,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22715,"name":"Gloves of the Tormented","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,19,9,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22716,"name":"Belt of Untapped Power","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,12,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22718,"name":"Blooddrenched Mask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,22,17,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22720,"name":"Zulian Headdress","icon":"inv_helmet_61","type":1,"armorType":1,"stats":[0,0,27,25,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22721,"name":"Band of Servitude","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22722,"name":"Seal of the Gurubashi Berserker","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,13,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":1977,"otherName":"High Priest Shared loot"}}]}, -{"id":22725,"name":"Band of Cenarius","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"unique":true}, -{"id":22730,"name":"Eyestalk Waist Cord","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,18,35,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":22731,"name":"Cloak of the Devoured","icon":"inv_misc_cape_18","type":4,"stats":[0,0,20,26,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":22732,"name":"Mark of C'Thun","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,24,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15727,"zoneId":3428}}]}, -{"id":22736,"name":"Andonisus, Reaper of Souls","icon":"inv_sword_61","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.8,"ilvl":100,"quality":5,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Atiesh"}}]}, -{"id":22740,"name":"Outrider's Leather Pants","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,28,27,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22741,"name":"Outrider's Lizardhide Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,22,42,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22742,"name":"Bloodsail Shirt","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":22744,"name":"Bloodsail Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":22745,"name":"Bloodsail Pants","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":22747,"name":"Outrider's Silk Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,39,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":22748,"name":"Sentinel's Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,35,15,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22749,"name":"Sentinel's Leather Pants","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,28,27,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22750,"name":"Sentinel's Lizardhide Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,22,42,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22752,"name":"Sentinel's Silk Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,39,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22753,"name":"Sentinel's Lamellar Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[32,0,21,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":22756,"name":"Sylvan Vest","icon":"inv_chest_plate07","type":5,"armorType":1,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28480}},{"crafted":{"profession":11,"spellId":28480}}]}, -{"id":22757,"name":"Sylvan Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28481}},{"crafted":{"profession":11,"spellId":28481}}]}, -{"id":22758,"name":"Sylvan Shoulders","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,18,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":28482}},{"crafted":{"profession":11,"spellId":28482}}]}, -{"id":22759,"name":"Bramblewood Helm","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":28472}},{"crafted":{"profession":8,"spellId":28472}}]}, -{"id":22760,"name":"Bramblewood Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28473}},{"crafted":{"profession":8,"spellId":28473}}]}, -{"id":22761,"name":"Bramblewood Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":28474}},{"crafted":{"profession":8,"spellId":28474}}]}, -{"id":22762,"name":"Ironvine Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":28461}},{"crafted":{"profession":2,"spellId":28461}}]}, -{"id":22763,"name":"Ironvine Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,10,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":28462}},{"crafted":{"profession":2,"spellId":28462}}]}, -{"id":22764,"name":"Ironvine Belt","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,12,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":28463}},{"crafted":{"profession":2,"spellId":28463}}]}, -{"id":22782,"name":"Sin'dorei Cloak of Warding","icon":"inv_misc_cape_08","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":22783,"name":"Sunwell Blade","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.6,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9176,"name":"The Twin Ziggurats"}}],"factionRestriction":2}, -{"id":22784,"name":"Sunwell Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9176,"name":"The Twin Ziggurats"}}],"factionRestriction":2}, -{"id":22798,"name":"Might of Menethil","icon":"inv_mace_25","type":13,"weaponType":4,"handType":4,"stats":[20,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":289,"weaponDamageMax":435,"weaponSpeed":3.8,"ilvl":89,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22799,"name":"Soulseeker","icon":"inv_staff_15","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,0,0,28,0,0,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":243,"weaponDamageMax":366,"weaponSpeed":3.2,"ilvl":89,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22800,"name":"Brimstone Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,0,16,14,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.2,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":22801,"name":"Spire of Twilight","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,65,0,26,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.2,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":22802,"name":"Kingsfall","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":2,"stats":[0,16,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":89,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22803,"name":"Midnight Haze","icon":"inv_knife_1h_stratholme_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,29,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.8,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":22804,"name":"Maexxna's Fang","icon":"inv_knife_1h_stratholme_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,8,0,0,10,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":22806,"name":"Widow's Remorse","icon":"inv_sword_60","type":13,"weaponType":9,"handType":2,"stats":[0,0,17,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.6,"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":22807,"name":"Wraith Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":1,"stats":[0,0,17,0,0,8,14,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":1.8,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":22808,"name":"The Castigator","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,10,14,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":221,"weaponSpeed":2.6,"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":22809,"name":"Maul of the Redeemed Crusader","icon":"inv_mace_26","type":13,"weaponType":4,"handType":4,"stats":[0,0,49,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":367,"weaponSpeed":3.6,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":22810,"name":"Toxin Injector","icon":"inv_weapon_rifle_11","type":14,"rangedWeaponType":3,"stats":[0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":22811,"name":"Soulstring","icon":"inv_weapon_bow_13","type":14,"rangedWeaponType":1,"stats":[0,8,6,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":321,"weaponSpeed":2.9,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":22812,"name":"Nerubian Slavemaker","icon":"inv_weapon_crossbow_12","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":213,"weaponDamageMax":396,"weaponSpeed":3.2,"ilvl":89,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22813,"name":"Claymore of Unholy Might","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":354,"weaponSpeed":3.6,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":22815,"name":"Severance","icon":"inv_axe_22","type":13,"weaponType":1,"handType":4,"stats":[43,0,18,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":354,"weaponSpeed":3.6,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":22816,"name":"Hatchet of Sundered Bone","icon":"inv_axe_08","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":221,"weaponSpeed":2.6,"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":22818,"name":"The Plague Bearer","icon":"inv_shield_27","type":13,"weaponType":7,"handType":3,"stats":[0,0,21,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,2273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":22819,"name":"Shield of Condemnation","icon":"inv_shield_28","type":13,"weaponType":7,"handType":3,"stats":[0,0,19,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22820,"name":"Wand of Fates","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,13,10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":222,"weaponSpeed":1.5,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":22821,"name":"Doomfinger","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":271,"weaponSpeed":1.5,"ilvl":92,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":22843,"name":"Blood Guard's Chain Greaves","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,14,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22852,"name":"Blood Guard's Dragonhide Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,19,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22855,"name":"Blood Guard's Dreadweave Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22856,"name":"Blood Guard's Leather Walkers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22857,"name":"Blood Guard's Mail Greaves","icon":"inv_boots_07","type":10,"armorType":3,"stats":[13,0,14,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22858,"name":"Blood Guard's Plate Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22859,"name":"Blood Guard's Satin Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22860,"name":"Blood Guard's Silk Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,23,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22862,"name":"Blood Guard's Chain Vices","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,12,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22863,"name":"Blood Guard's Dragonhide Grips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,13,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22864,"name":"Blood Guard's Leather Grips","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22865,"name":"Blood Guard's Dreadweave Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22867,"name":"Blood Guard's Mail Vices","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,21,11,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22868,"name":"Blood Guard's Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22869,"name":"Blood Guard's Satin Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22870,"name":"Blood Guard's Silk Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22872,"name":"Legionnaire's Plate Hauberk","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[21,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22873,"name":"Legionnaire's Plate Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[12,0,17,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22874,"name":"Legionnaire's Chain Hauberk","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22875,"name":"Legionnaire's Chain Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22876,"name":"Legionnaire's Mail Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,17,18,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22877,"name":"Legionnaire's Dragonhide Chestpiece","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,31,13,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22878,"name":"Legionnaire's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,30,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22879,"name":"Legionnaire's Leather Chestpiece","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22880,"name":"Legionnaire's Leather Legguards","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22881,"name":"Legionnaire's Dreadweave Legguards","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22882,"name":"Legionnaire's Satin Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22883,"name":"Legionnaire's Silk Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22884,"name":"Legionnaire's Dreadweave Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22885,"name":"Legionnaire's Satin Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22886,"name":"Legionnaire's Silk Tunic","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22887,"name":"Legionnaire's Mail Legguards","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,33,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":22935,"name":"Touch of Frost","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":22936,"name":"Wristguards of Vengeance","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[24,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":22937,"name":"Gem of Nerubis","icon":"inv_offhand_naxxramas_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":22938,"name":"Cryptfiend Silk Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,14,0,0,10,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,137,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":22939,"name":"Band of Unanswered Prayers","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,21,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":22940,"name":"Icebane Pauldrons","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[9,0,18,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":22941,"name":"Polar Shoulder Pads","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":22942,"name":"The Widow's Embrace","icon":"inv_mace_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,23,0,14,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.9,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":22943,"name":"Malice Stone Pendant","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":22947,"name":"Pendant of Forgotten Names","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,0,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":22951,"name":"Springpaw Hide Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":8491,"name":"Pelt Collection"}}],"factionRestriction":2}, -{"id":22952,"name":"Springpaw Hide Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":8491,"name":"Pelt Collection"}}],"factionRestriction":2}, -{"id":22953,"name":"Fur Lined Chain Shirt","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":8491,"name":"Pelt Collection"}}],"factionRestriction":2}, -{"id":22954,"name":"Kiss of the Spider","icon":"inv_trinket_naxxramas04","type":12,"stats":[0,0,0,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":22956,"name":"Rusty Mace","icon":"inv_mace_12","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.7,"ilvl":7,"quality":1,"sources":[{"quest":{"id":8480,"name":"Lost Armaments"}}],"factionRestriction":2}, -{"id":22957,"name":"Rusty Sin'dorei Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":7,"quality":1,"sources":[{"quest":{"id":8480,"name":"Lost Armaments"}}],"factionRestriction":2}, -{"id":22958,"name":"Farstrider Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":23,"weaponSpeed":3.3,"ilvl":10,"quality":1,"sources":[{"quest":{"id":8477,"name":"The Spearcrafter's Hammer"}}],"factionRestriction":2}, -{"id":22959,"name":"Smooth Metal Staff","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":20,"weaponSpeed":2.9,"ilvl":10,"quality":1,"sources":[{"quest":{"id":8477,"name":"The Spearcrafter's Hammer"}}],"factionRestriction":2}, -{"id":22960,"name":"Cloak of Suturing","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,18,22,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":22961,"name":"Band of Reanimation","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,22,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":22963,"name":"Ranger's Pocketknife","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":1.5,"ilvl":10,"quality":1,"sources":[{"quest":{"id":8477,"name":"The Spearcrafter's Hammer"}}],"factionRestriction":2}, -{"id":22964,"name":"Sunsail Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9076,"name":"Wretched Ringleader"}}],"factionRestriction":2}, -{"id":22965,"name":"Longshoreman's Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9076,"name":"Wretched Ringleader"}}],"factionRestriction":2}, -{"id":22966,"name":"Silk Wristbands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9076,"name":"Wretched Ringleader"}}],"factionRestriction":2}, -{"id":22967,"name":"Icy Scale Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":22968,"name":"Glacial Mantle","icon":"inv_shoulder_14","type":3,"armorType":1,"stats":[0,0,18,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":22969,"name":"Ven'jashi's Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2,"ilvl":11,"quality":2,"sources":[{"quest":{"id":8479,"name":"Zul'Marosh"}}],"factionRestriction":2}, -{"id":22971,"name":"Hoodoo Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.6,"ilvl":11,"quality":2,"sources":[{"quest":{"id":8479,"name":"Zul'Marosh"}}],"factionRestriction":2}, -{"id":22979,"name":"Slayer's Band","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":9156,"name":"Wanted: Knucklerot and Luzran"}}],"factionRestriction":2}, -{"id":22980,"name":"Staff of the Sun","icon":"inv_staff_39","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":3,"ilvl":21,"quality":3,"sources":[{"quest":{"id":9167,"name":"The Traitor's Destruction"}}],"factionRestriction":2}, -{"id":22981,"name":"Gluth's Missing Collar","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,24,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":22982,"name":"Farstrider's Longbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":41,"weaponSpeed":1.7,"ilvl":21,"quality":3,"sources":[{"quest":{"id":9167,"name":"The Traitor's Destruction"}}],"factionRestriction":2}, -{"id":22983,"name":"Rime Covered Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,23,33,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":22984,"name":"Dawnblade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.6,"ilvl":21,"quality":3,"sources":[{"quest":{"id":9167,"name":"The Traitor's Destruction"}}],"factionRestriction":2}, -{"id":22985,"name":"Suncrown Hauberk","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22986,"name":"Apothecary's Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22987,"name":"Deathstalker's Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22988,"name":"The End of Dreams","icon":"inv_mace_1h_stratholme_d_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,24,0,12,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":162,"weaponSpeed":1.9,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":22990,"name":"Tranquillien Champion's Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22991,"name":"Apprentice Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22992,"name":"Bogwalker Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22993,"name":"Volunteer's Greaves","icon":"inv_boots_01","type":10,"armorType":3,"stats":[2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":22994,"name":"Digested Hand of Power","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,10,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":22995,"name":"Sin'dorei Warblade","icon":"inv_sword_59","type":13,"weaponType":9,"handType":4,"stats":[10,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":75,"weaponSpeed":3.4,"ilvl":21,"quality":3,"sources":[{"quest":{"id":9167,"name":"The Traitor's Destruction"}}],"factionRestriction":2}, -{"id":22996,"name":"Reforged Quel'dorei Crest","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9170,"name":"Dar'Khan's Lieutenants"}}],"factionRestriction":2}, -{"id":22997,"name":"Ley-Keeper's Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":28,"weaponSpeed":1.4,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9170,"name":"Dar'Khan's Lieutenants"}}],"factionRestriction":2}, -{"id":22998,"name":"Ghostclaw Leggings","icon":"inv_pants_leather_06","type":9,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9170,"name":"Dar'Khan's Lieutenants"}}],"factionRestriction":2}, -{"id":23000,"name":"Plated Abomination Ribcage","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[45,0,25,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":23001,"name":"Eye of Diminution","icon":"inv_trinket_naxxramas02","type":12,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":23004,"name":"Idol of Longevity","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,15,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23005,"name":"Totem of Flowing Water","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,15,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23006,"name":"Libram of Light","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[0,0,15,10,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23009,"name":"Wand of the Whispering Dead","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,15,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":222,"weaponSpeed":1.5,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23014,"name":"Iblis, Blade of the Fallen Seraph","icon":"inv_sword_07","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,10,14,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.6,"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23017,"name":"Veil of Eclipse","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23018,"name":"Signet of the Fallen Defender","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23019,"name":"Icebane Helmet","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[12,0,24,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":23020,"name":"Polar Helmet","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,18,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":23021,"name":"The Soul Harvester's Bindings","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,23,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":23023,"name":"Sadist's Collar","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,24,0,0,0,14,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":23025,"name":"Seal of the Damned","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,17,18,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":23027,"name":"Warmth of Forgiveness","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":23028,"name":"Hailstone Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23029,"name":"Noth's Frigid Heart","icon":"inv_offhand_naxxramas_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,24,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23030,"name":"Cloak of the Scourge","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,23,0,0,10,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23031,"name":"Band of the Inevitable","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,0,31,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":23032,"name":"Glacial Headdress","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,39,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":23033,"name":"Icy Scale Coif","icon":"inv_helmet_20","type":1,"armorType":3,"stats":[0,18,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":23035,"name":"Preceptor's Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,41,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":23036,"name":"Necklace of Necropsy","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,20,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":23037,"name":"Ring of Spiritual Fervor","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,11,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":23038,"name":"Band of Unnatural Forces","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,0,0,0,10,14,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":23039,"name":"The Eye of Nerub","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,30,50,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.7,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":23040,"name":"Glyph of Deflection","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23041,"name":"Slayer's Crest","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23042,"name":"Loatheb's Reflection","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":23043,"name":"The Face of Death","icon":"inv_shield_26","type":13,"weaponType":7,"handType":3,"stats":[0,0,21,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,2477,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23044,"name":"Harbinger of Doom","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,8,8,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":126,"weaponSpeed":1.6,"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23045,"name":"Shroud of Dominion","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,0,11,0,0,0,14,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23046,"name":"The Restrained Essence of Sapphiron","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23047,"name":"Eye of the Dead","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23048,"name":"Sapphiron's Right Eye","icon":"inv_offhand_naxxramas_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23049,"name":"Sapphiron's Left Eye","icon":"inv_offhand_naxxramas_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,22,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23050,"name":"Cloak of the Necropolis","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,0,21,22,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23053,"name":"Stormrage's Talisman of Seething","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,12,0,0,0,28,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23054,"name":"Gressil, Dawn of Ruin","icon":"inv_sword_61","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":257,"weaponSpeed":2.7,"ilvl":89,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23056,"name":"Hammer of the Twisting Nether","icon":"inv_mace_27","type":13,"weaponType":4,"handType":1,"stats":[0,0,18,0,20,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.9,"ilvl":89,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23057,"name":"Gem of Trapped Innocents","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,15,13,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23059,"name":"Ring of the Dreadnaught","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,27,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[9],"setName":"Dreadnaught's Battlegear","setId":523,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23060,"name":"Bonescythe Ring","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[20,20,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[6],"setName":"Bonescythe Armor","setId":524,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23061,"name":"Ring of Faith","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,24,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[5],"setName":"Vestments of Faith","setId":525,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23062,"name":"Frostfire Ring","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,19,26,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[3],"setName":"Frostfire Regalia","setId":526,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23063,"name":"Plagueheart Ring","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[8],"setName":"Plagueheart Raiment","setId":529,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23064,"name":"Ring of the Dreamwalker","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,30,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[1],"setName":"Dreamwalker Raiment","setId":521,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23065,"name":"Ring of the Earthshatterer","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,30,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[7],"setName":"The Earthshatterer","setId":527,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23066,"name":"Ring of Redemption","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,30,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[4],"setName":"Redemption Armor","setId":528,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23067,"name":"Ring of the Cryptstalker","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,20,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":92,"quality":4,"unique":true,"classAllowlist":[2],"setName":"Cryptstalker Armor","setId":530,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23068,"name":"Legplates of Carnage","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[42,0,18,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":23069,"name":"Necro-Knight's Garb","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[5,3,8],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23070,"name":"Leggings of Polarity","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,31,38,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":23071,"name":"Leggings of Apocalypse","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,31,34,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":23072,"name":"Fists of the Unrelenting","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[26,0,26,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4}, -{"id":23073,"name":"Boots of Displacement","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,33,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":23075,"name":"Death's Bargain","icon":"inv_armor_shield_naxxramas_d_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,23,13,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":23078,"name":"Gauntlets of Undead Slaying","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Battlegear of Undead Slaying","setId":533}, -{"id":23081,"name":"Handwraps of Undead Slaying","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Undead Slayer's Armor","setId":534}, -{"id":23082,"name":"Handguards of Undead Slaying","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Garb of the Undead Slayer","setId":535}, -{"id":23084,"name":"Gloves of Undead Cleansing","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Regalia of Undead Cleansing","setId":536}, -{"id":23085,"name":"Robe of Undead Cleansing","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Regalia of Undead Cleansing","setId":536}, -{"id":23087,"name":"Breastplate of Undead Slaying","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Battlegear of Undead Slaying","setId":533}, -{"id":23088,"name":"Chestguard of Undead Slaying","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Garb of the Undead Slayer","setId":535}, -{"id":23089,"name":"Tunic of Undead Slaying","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Undead Slayer's Armor","setId":534}, -{"id":23090,"name":"Bracers of Undead Slaying","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Battlegear of Undead Slaying","setId":533}, -{"id":23091,"name":"Bracers of Undead Cleansing","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Regalia of Undead Cleansing","setId":536}, -{"id":23092,"name":"Wristguards of Undead Slaying","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Garb of the Undead Slayer","setId":535}, -{"id":23093,"name":"Wristwraps of Undead Slaying","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"setName":"Undead Slayer's Armor","setId":534}, -{"id":23124,"name":"Staff of Balzaphon","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,17,25,7,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":241,"weaponSpeed":3.9,"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14684,"zoneId":2017}}]}, -{"id":23125,"name":"Chains of the Lich","icon":"inv_belt_18","type":2,"stats":[0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14684,"zoneId":2017}}]}, -{"id":23126,"name":"Waistband of Balzaphon","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,26,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14684,"zoneId":2017}}]}, -{"id":23127,"name":"Cloak of Revanchion","icon":"inv_misc_cape_02","type":4,"stats":[10,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14690,"zoneId":2557}}]}, -{"id":23128,"name":"The Shadow's Grasp","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,26,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14690,"zoneId":2557}}]}, -{"id":23129,"name":"Bracers of Mending","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,14,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14690,"zoneId":2557}}]}, -{"id":23132,"name":"Lord Blackwood's Blade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":80,"weaponSpeed":1.5,"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14695,"zoneId":2057}}]}, -{"id":23139,"name":"Lord Blackwood's Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,10,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14695,"zoneId":2057}}]}, -{"id":23156,"name":"Blackwood's Thigh","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14695,"zoneId":2057}}]}, -{"id":23168,"name":"Scorn's Focal Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":1.4,"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14693,"zoneId":796}}]}, -{"id":23169,"name":"Scorn's Icy Choker","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14693,"zoneId":796}}]}, -{"id":23170,"name":"The Frozen Clutch","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14693,"zoneId":796}}]}, -{"id":23171,"name":"The Axe of Severing","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[7,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":66,"weaponSpeed":3,"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14682,"zoneId":209}}]}, -{"id":23173,"name":"Abomination Skin Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14682,"zoneId":209}}]}, -{"id":23177,"name":"Lady Falther'ess' Finger","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":1.3,"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14686,"zoneId":722}}]}, -{"id":23178,"name":"Mantle of Lady Falther'ess","icon":"inv_misc_cape_17","type":4,"stats":[0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":14686,"zoneId":722}}]}, -{"id":23197,"name":"Idol of the Moon","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[4,1,7]}, -{"id":23198,"name":"Idol of Brutality","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":3,"classAllowlist":[1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10435,"zoneId":2017}}]}, -{"id":23199,"name":"Totem of the Storm","icon":"inv_relics_totemofrage","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[4,1,7]}, -{"id":23200,"name":"Totem of Sustaining","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":23201,"name":"Libram of Divinity","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":10505,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":11261,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10901,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10507,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10504,"zoneId":2057}},{"drop":{"difficulty":1,"npcId":10502,"zoneId":2057}}]}, -{"id":23203,"name":"Libram of Fervor","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[6,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"classAllowlist":[4,10]}, -{"id":23206,"name":"Mark of the Champion","icon":"inv_misc_token_argentdawn2","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true}, -{"id":23207,"name":"Mark of the Champion","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true}, -{"id":23213,"name":"Scrapper's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23219,"name":"Girdle of the Mentor","icon":"inv_belt_13","type":8,"armorType":4,"stats":[21,20,21,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":23220,"name":"Crystal Webbed Robe","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,40,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":23221,"name":"Misplaced Servo Arm","icon":"inv_mace_28","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":238,"weaponSpeed":2.8,"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23226,"name":"Ghoul Skin Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,40,22,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23229,"name":"Sword of Sockety Goodness","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8,8],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":2.3,"ilvl":41,"quality":2}, -{"id":23230,"name":"Dagger of Sockety Goodness","icon":"inv_sword_14","type":13,"weaponType":9,"handType":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":2.3,"ilvl":41,"quality":2}, -{"id":23232,"name":"Huge Sword of Sockety Goodness","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8,8,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":69,"weaponSpeed":2.3,"ilvl":41,"quality":2}, -{"id":23237,"name":"Ring of the Eternal Flame","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,15,24,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23238,"name":"Stygian Buckler","icon":"inv_armor_shield_naxxramas_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23242,"name":"Claw of the Frost Wyrm","icon":"inv_weapon_hand_03","type":13,"weaponType":3,"handType":3,"stats":[0,0,8,0,0,10,14,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.5,"ilvl":88,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":23243,"name":"Champion's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[17,0,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23244,"name":"Champion's Plate Helm","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[21,0,24,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"setName":"Champion's Battlearmor","setId":537,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23251,"name":"Champion's Chain Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,12,21,0,0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23252,"name":"Champion's Chain Shoulders","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,12,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"setName":"Champion's Pursuance","setId":543,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23253,"name":"Champion's Dragonhide Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,16,36,15,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23254,"name":"Champion's Dragonhide Shoulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,12,24,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"setName":"Champion's Refuge","setId":539,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23255,"name":"Champion's Dreadweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,36,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23256,"name":"Champion's Dreadweave Spaulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,27,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"setName":"Champion's Dreadgear","setId":541,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23257,"name":"Champion's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,18,23,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23258,"name":"Champion's Leather Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,11,17,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"setName":"Champion's Guard","setId":522,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23259,"name":"Champion's Mail Headguard","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,24,16,0,0,21,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23260,"name":"Champion's Mail Pauldrons","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,23,13,0,0,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"setName":"Champion's Stormcaller","setId":538,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23261,"name":"Champion's Satin Hood","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,35,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23262,"name":"Champion's Satin Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,24,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"setName":"Champion's Investiture","setId":540,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23263,"name":"Champion's Silk Cowl","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,35,18,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23264,"name":"Champion's Silk Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,23,13,4,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"setName":"Champion's Arcanum","setId":542,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23265,"name":"Blackened Chain Girdle","icon":"inv_belt_10","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"sources":[{"quest":{"id":9363,"name":"Warning Fairbreeze Village"}}],"factionRestriction":2}, -{"id":23266,"name":"Ranger's Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"sources":[{"quest":{"id":9363,"name":"Warning Fairbreeze Village"}}],"factionRestriction":2}, -{"id":23267,"name":"Satin Lined Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":1,"sources":[{"quest":{"id":9363,"name":"Warning Fairbreeze Village"}}],"factionRestriction":2}, -{"id":23272,"name":"Knight-Captain's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[21,0,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23273,"name":"Knight-Captain's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[21,0,26,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23274,"name":"Knight-Lieutenant's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[12,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23275,"name":"Knight-Lieutenant's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[12,0,23,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23276,"name":"Lieutenant Commander's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[22,0,28,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23277,"name":"Lieutenant Commander's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[17,0,19,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"setName":"Lieutenant Commander's Redoubt","setId":544,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23278,"name":"Knight-Lieutenant's Chain Greaves","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,14,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23279,"name":"Knight-Lieutenant's Chain Vices","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,12,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23280,"name":"Knight-Lieutenant's Dragonhide Grips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,13,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23281,"name":"Knight-Lieutenant's Dragonhide Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,19,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23282,"name":"Knight-Lieutenant's Dreadweave Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23283,"name":"Knight-Lieutenant's Dreadweave Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23284,"name":"Knight-Lieutenant's Leather Grips","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23285,"name":"Knight-Lieutenant's Leather Walkers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23286,"name":"Knight-Lieutenant's Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23287,"name":"Knight-Lieutenant's Plate Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23288,"name":"Knight-Lieutenant's Satin Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23289,"name":"Knight-Lieutenant's Satin Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23290,"name":"Knight-Lieutenant's Silk Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23291,"name":"Knight-Lieutenant's Silk Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,23,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23292,"name":"Knight-Captain's Chain Hauberk","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23293,"name":"Knight-Captain's Chain Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23294,"name":"Knight-Captain's Dragonhide Chestpiece","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,31,13,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23295,"name":"Knight-Captain's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,30,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23296,"name":"Knight-Captain's Dreadweave Legguards","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23297,"name":"Knight-Captain's Dreadweave Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23298,"name":"Knight-Captain's Leather Chestpiece","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23299,"name":"Knight-Captain's Leather Legguards","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23300,"name":"Knight-Captain's Plate Hauberk","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[21,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23301,"name":"Knight-Captain's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[12,0,17,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23302,"name":"Knight-Captain's Satin Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23303,"name":"Knight-Captain's Satin Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23304,"name":"Knight-Captain's Silk Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23305,"name":"Knight-Captain's Silk Tunic","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23306,"name":"Lieutenant Commander's Chain Helm","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,12,21,0,0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23307,"name":"Lieutenant Commander's Chain Shoulders","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,12,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"setName":"Lieutenant Commander's Pursuance","setId":550,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23308,"name":"Lieutenant Commander's Dragonhide Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,16,36,15,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23309,"name":"Lieutenant Commander's Dragonhide Shoulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,12,24,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"setName":"Lieutenant Commander's Refuge","setId":551,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23310,"name":"Lieutenant Commander's Dreadweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,36,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23311,"name":"Lieutenant Commander's Dreadweave Spaulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,27,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"setName":"Lieutenant Commander's Dreadgear","setId":547,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23312,"name":"Lieutenant Commander's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,18,23,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23313,"name":"Lieutenant Commander's Leather Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,11,17,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"setName":"Lieutenant Commander's Guard","setId":548,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23314,"name":"Lieutenant Commander's Plate Helmet","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[21,0,24,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23315,"name":"Lieutenant Commander's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[17,0,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"setName":"Lieutenant Commander's Battlearmor","setId":545,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23316,"name":"Lieutenant Commander's Satin Hood","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,35,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23317,"name":"Lieutenant Commander's Satin Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,24,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"setName":"Lieutenant Commander's Investiture","setId":549,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23318,"name":"Lieutenant Commander's Silk Cowl","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,35,18,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23319,"name":"Lieutenant Commander's Silk Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,23,13,4,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"setName":"Lieutenant Commander's Arcanum","setId":546,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23321,"name":"Recruit's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18672,"npcName":"Thomas Yance"}}]}, -{"id":23322,"name":"Acolyte's Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23323,"name":"Crown of the Fire Festival","icon":"inv_helmet_96","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23324,"name":"Mantle of the Fire Festival","icon":"inv_shoulder_23","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Midsummer Reveler","setId":785,"sources":[{"quest":{"id":9323,"name":"Wild Fires in the Eastern Kingdoms"}}]}, -{"id":23344,"name":"Scout's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23346,"name":"Battleworn Claymore","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":23347,"name":"Weathered Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.5,"ilvl":2,"quality":1}, -{"id":23348,"name":"Scout's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23349,"name":"Battleworn Shoes","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23350,"name":"Battleworn Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23365,"name":"Steel Rimmed Buckler","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":23367,"name":"Light Silk Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8472,"name":"Major Malfunction"}}],"factionRestriction":2}, -{"id":23368,"name":"Soft Leather Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":23370,"name":"Ley-Keeper's Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.9,"ilvl":6,"quality":1,"sources":[{"quest":{"id":8486,"name":"Arcane Instability"}}],"factionRestriction":2}, -{"id":23371,"name":"Velania's Walking Stick","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":12,"weaponSpeed":3.1,"ilvl":6,"quality":1,"sources":[{"quest":{"id":8486,"name":"Arcane Instability"}}],"factionRestriction":2}, -{"id":23372,"name":"Bloodhawk Claymore","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":2.9,"ilvl":7,"quality":1,"sources":[{"quest":{"id":8483,"name":"The Dwarven Spy"}}],"factionRestriction":2}, -{"id":23373,"name":"Long Knife","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.1,"ilvl":7,"quality":1,"sources":[{"quest":{"id":8483,"name":"The Dwarven Spy"}}],"factionRestriction":2}, -{"id":23375,"name":"Black Leather Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":8475,"name":"The Dead Scar"}}],"factionRestriction":2}, -{"id":23376,"name":"Gatewatcher's Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":8475,"name":"The Dead Scar"}}],"factionRestriction":2}, -{"id":23377,"name":"Guard's Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":8475,"name":"The Dead Scar"}}],"factionRestriction":2}, -{"id":23390,"name":"Exodar Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":23391,"name":"Exodar Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.6,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":23392,"name":"Exodar Maul","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.1,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":23393,"name":"Exodar Shortsword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.1,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":23395,"name":"Farstrider's Buckler","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":8885,"name":"The Ring of Mmmrrrggglll"}}],"factionRestriction":2}, -{"id":23396,"name":"Slightly Used Ranger's Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":2.5,"ilvl":9,"quality":1,"sources":[{"quest":{"id":8885,"name":"The Ring of Mmmrrrggglll"}}],"factionRestriction":2}, -{"id":23397,"name":"Satin Lined Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":8885,"name":"The Ring of Mmmrrrggglll"}}],"factionRestriction":2}, -{"id":23398,"name":"Worn Ranger's Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2.1,"ilvl":9,"quality":1,"sources":[{"quest":{"id":8885,"name":"The Ring of Mmmrrrggglll"}}],"factionRestriction":2}, -{"id":23399,"name":"Fallen Apprentice's Robe","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":8890,"name":"Word from the Spire"}}],"factionRestriction":2}, -{"id":23400,"name":"Sylastor's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9169,"name":"Deactivate An'owyn"}}],"factionRestriction":2}, -{"id":23401,"name":"Divining Crystal","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9169,"name":"Deactivate An'owyn"}}],"factionRestriction":2}, -{"id":23402,"name":"Arcanist's Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.7,"ilvl":14,"quality":2,"sources":[{"quest":{"id":9140,"name":"Windrunner Village"}}],"factionRestriction":2}, -{"id":23403,"name":"Salvaged Mail Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9140,"name":"Windrunner Village"}}],"factionRestriction":2}, -{"id":23404,"name":"Padded Running Shoes","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9140,"name":"Windrunner Village"}}],"factionRestriction":2}, -{"id":23405,"name":"Farstrider's Tunic","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9146,"name":"Report to Captain Helios"}}],"factionRestriction":2}, -{"id":23406,"name":"Sentry Bracers","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9277,"name":"Assault on Zeb'Nowa"}}],"factionRestriction":2}, -{"id":23407,"name":"Supple Cotton Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9277,"name":"Assault on Zeb'Nowa"}}],"factionRestriction":2}, -{"id":23408,"name":"Farstrider's Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9277,"name":"Assault on Zeb'Nowa"}}],"factionRestriction":2}, -{"id":23409,"name":"Well Crafted Long Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.7,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9215,"name":"Bring Me Kel'gash's Head!"}}],"factionRestriction":2}, -{"id":23410,"name":"Well Crafted Sword","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":2.4,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9215,"name":"Bring Me Kel'gash's Head!"}}],"factionRestriction":2}, -{"id":23411,"name":"Well Crafted Staff","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":39,"weaponSpeed":2.5,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9215,"name":"Bring Me Kel'gash's Head!"}}],"factionRestriction":2}, -{"id":23412,"name":"Troll Kickers","icon":"inv_boots_01","type":10,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9212,"name":"Escape from the Catacombs"}}],"factionRestriction":2}, -{"id":23413,"name":"Troll Kickers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9212,"name":"Escape from the Catacombs"}}],"factionRestriction":2}, -{"id":23414,"name":"Troll Kickers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9212,"name":"Escape from the Catacombs"}}],"factionRestriction":2}, -{"id":23415,"name":"Survival Knife","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.5,"ilvl":15,"quality":2,"sources":[{"quest":{"id":9159,"name":"Curbing the Plague"}}],"factionRestriction":2}, -{"id":23420,"name":"Engraved Axe","icon":"inv_axe_22","type":13,"weaponType":1,"handType":4,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":43,"weaponSpeed":3.5,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":23421,"name":"Engraved Sword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":24,"weaponSpeed":2.4,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":23422,"name":"Engraved Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.5,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":23423,"name":"Mercenary Greatsword","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":2.9,"ilvl":10,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":10350,"name":"Behomat"}}],"factionRestriction":1}, -{"id":23429,"name":"Mercenary Clout","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":3.5,"ilvl":10,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":10350,"name":"Behomat"}}],"factionRestriction":1}, -{"id":23430,"name":"Mercenary Sword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2.4,"ilvl":10,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":10350,"name":"Behomat"}}],"factionRestriction":1}, -{"id":23431,"name":"Mercenary Stiletto","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":1.5,"ilvl":10,"quality":2,"classAllowlist":[9],"sources":[{"quest":{"id":10350,"name":"Behomat"}}],"factionRestriction":1}, -{"id":23432,"name":"Engraved Greatsword","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":2.9,"ilvl":15,"quality":2,"classAllowlist":[9]}, -{"id":23433,"name":"Blood Robes","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"classAllowlist":[5]}, -{"id":23434,"name":"Robes of the Shard","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"classAllowlist":[5]}, -{"id":23451,"name":"Grand Marshal's Mageblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}]}, -{"id":23452,"name":"Grand Marshal's Tome of Power","icon":"inv_misc_book_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23453,"name":"Grand Marshal's Tome of Restoration","icon":"inv_misc_book_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23454,"name":"Grand Marshal's Warhammer","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}]}, -{"id":23455,"name":"Grand Marshal's Demolisher","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23456,"name":"Grand Marshal's Swiftblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":23457,"name":"High Warlord's Destroyer","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4}, -{"id":23458,"name":"High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4}, -{"id":23459,"name":"High Warlord's Battle Mace","icon":"inv_mace_14","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4}, -{"id":23461,"name":"High Warlord's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4}, -{"id":23462,"name":"High Warlord's Tome of Destruction","icon":"inv_misc_book_15","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4}, -{"id":23463,"name":"High Warlord's Tome of Mending","icon":"inv_misc_book_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4}, -{"id":23464,"name":"High Warlord's Battle Mace","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}]}, -{"id":23465,"name":"High Warlord's Destroyer","icon":"inv_mace_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23466,"name":"High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}]}, -{"id":23467,"name":"High Warlord's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23468,"name":"High Warlord's Tome of Destruction","icon":"inv_misc_book_15","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23469,"name":"High Warlord's Tome of Mending","icon":"inv_misc_book_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":23471,"name":"Rugged Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23472,"name":"Rugged Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23474,"name":"Recruit's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23475,"name":"Recruit's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23477,"name":"Squire's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23478,"name":"Recruit's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23479,"name":"Recruit's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23482,"name":"Fel Iron Plate Gloves","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[24,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29545}},{"crafted":{"profession":2,"spellId":29545}}]}, -{"id":23484,"name":"Fel Iron Plate Belt","icon":"inv_belt_21","type":8,"armorType":4,"stats":[21,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29547}},{"crafted":{"profession":2,"spellId":29547}}]}, -{"id":23487,"name":"Fel Iron Plate Boots","icon":"inv_boots_chain_11","type":10,"armorType":4,"stats":[23,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29548}},{"crafted":{"profession":2,"spellId":29548}}]}, -{"id":23488,"name":"Fel Iron Plate Pants","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[34,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29549}},{"crafted":{"profession":2,"spellId":29549}}]}, -{"id":23489,"name":"Fel Iron Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[32,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29550}},{"crafted":{"profession":2,"spellId":29550}}]}, -{"id":23490,"name":"Fel Iron Chain Tunic","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,24,36,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"setName":"Fel Iron Chain","setId":561,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29556}},{"crafted":{"profession":2,"spellId":29556}}]}, -{"id":23491,"name":"Fel Iron Chain Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,24,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Fel Iron Chain","setId":561,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29552}},{"crafted":{"profession":2,"spellId":29552}}]}, -{"id":23493,"name":"Fel Iron Chain Coif","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,21,33,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"setName":"Fel Iron Chain","setId":561,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29551}},{"crafted":{"profession":2,"spellId":29551}}]}, -{"id":23494,"name":"Fel Iron Chain Bracers","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,13,19,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"setName":"Fel Iron Chain","setId":561,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29553}},{"crafted":{"profession":2,"spellId":29553}}]}, -{"id":23497,"name":"Fel Iron Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[8,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2,"ilvl":93,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29557}},{"crafted":{"profession":2,"spellId":29557}}]}, -{"id":23498,"name":"Fel Iron Hammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":143,"weaponSpeed":2.2,"ilvl":96,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29558}},{"crafted":{"profession":2,"spellId":29558}}]}, -{"id":23499,"name":"Fel Iron Greatsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":259,"weaponSpeed":3.2,"ilvl":99,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29565}},{"crafted":{"profession":2,"spellId":29565}}]}, -{"id":23502,"name":"Adamantite Maul","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":3.2,"ilvl":102,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29566}},{"crafted":{"profession":2,"spellId":29566}}]}, -{"id":23503,"name":"Adamantite Cleaver","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,25,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29568}},{"crafted":{"profession":2,"spellId":29568}}]}, -{"id":23504,"name":"Adamantite Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":1.9,"ilvl":105,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29569}},{"crafted":{"profession":2,"spellId":29569}}]}, -{"id":23505,"name":"Adamantite Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":1.7,"ilvl":108,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29571}},{"crafted":{"profession":2,"spellId":29571}}]}, -{"id":23506,"name":"Adamantite Plate Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29603}},{"crafted":{"profession":2,"spellId":29603}}]}, -{"id":23507,"name":"Adamantite Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[34,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29606}},{"crafted":{"profession":2,"spellId":29606}}]}, -{"id":23508,"name":"Adamantite Plate Gloves","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[24,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29605}},{"crafted":{"profession":2,"spellId":29605}}]}, -{"id":23509,"name":"Enchanted Adamantite Breastplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29610}},{"crafted":{"profession":2,"spellId":29610}}]}, -{"id":23510,"name":"Enchanted Adamantite Belt","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29608}},{"crafted":{"profession":2,"spellId":29608}}]}, -{"id":23511,"name":"Enchanted Adamantite Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29611}},{"crafted":{"profession":2,"spellId":29611}}]}, -{"id":23512,"name":"Enchanted Adamantite Leggings","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29613}},{"crafted":{"profession":2,"spellId":29613}}]}, -{"id":23513,"name":"Flamebane Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29617}},{"crafted":{"profession":2,"spellId":29617}}]}, -{"id":23514,"name":"Flamebane Gloves","icon":"inv_gauntlets_11","type":7,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29616}},{"crafted":{"profession":2,"spellId":29616}}]}, -{"id":23515,"name":"Flamebane Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29614}},{"crafted":{"profession":2,"spellId":29614}}]}, -{"id":23516,"name":"Flamebane Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29615}},{"crafted":{"profession":2,"spellId":29615}}]}, -{"id":23517,"name":"Felsteel Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,704,63,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29619}},{"crafted":{"profession":2,"spellId":29619}}]}, -{"id":23518,"name":"Felsteel Leggings","icon":"inv_pants_plate_06","type":9,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,985,71,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29620}},{"crafted":{"profession":2,"spellId":29620}}]}, -{"id":23519,"name":"Felsteel Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,917,97,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29621}},{"crafted":{"profession":2,"spellId":29621}}]}, -{"id":23520,"name":"Ragesteel Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[35,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29642}},{"crafted":{"profession":2,"spellId":29642}}]}, -{"id":23521,"name":"Ragesteel Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[45,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29643}},{"crafted":{"profession":2,"spellId":29643}}]}, -{"id":23522,"name":"Ragesteel Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":4,"stats":[50,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29645}},{"crafted":{"profession":2,"spellId":29645}}]}, -{"id":23523,"name":"Khorium Pants","icon":"inv_pants_plate_04","type":9,"armorType":4,"stats":[0,0,63,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29629}},{"crafted":{"profession":2,"spellId":29629}}]}, -{"id":23524,"name":"Khorium Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,46,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29628}},{"crafted":{"profession":2,"spellId":29628}}]}, -{"id":23525,"name":"Khorium Boots","icon":"inv_boots_chain_01","type":10,"armorType":4,"stats":[0,0,47,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29630}},{"crafted":{"profession":2,"spellId":29630}}]}, -{"id":23526,"name":"Swiftsteel Gloves","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,25,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29648}},{"crafted":{"profession":2,"spellId":29648}}]}, -{"id":23527,"name":"Earthpeace Breastplate","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,0,0,42,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29649}},{"crafted":{"profession":2,"spellId":29649}}]}, -{"id":23531,"name":"Felfury Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,20,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29658}},{"crafted":{"profession":2,"spellId":29658}}]}, -{"id":23532,"name":"Gauntlets of the Iron Tower","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,26,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29622}},{"crafted":{"profession":2,"spellId":29622}}]}, -{"id":23533,"name":"Steelgrip Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29662}},{"crafted":{"profession":2,"spellId":29662}}]}, -{"id":23534,"name":"Storm Helm","icon":"inv_helmet_29","type":1,"armorType":3,"stats":[0,39,21,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29663}},{"crafted":{"profession":2,"spellId":29663}}]}, -{"id":23535,"name":"Helm of the Stalwart Defender","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,47,0,0,0,0,0,0,23,0,0,0,0,0,0,23,0,0,0,0,0,1063,82,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29664}},{"crafted":{"profession":2,"spellId":29664}}]}, -{"id":23536,"name":"Oathkeeper's Helm","icon":"inv_helmet_38","type":1,"armorType":4,"stats":[0,0,55,22,22,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29668}},{"crafted":{"profession":2,"spellId":29668}}]}, -{"id":23537,"name":"Black Felsteel Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[26,0,15,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29669}},{"crafted":{"profession":2,"spellId":29669}}]}, -{"id":23538,"name":"Bracers of the Green Fortress","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29671}},{"crafted":{"profession":2,"spellId":29671}}]}, -{"id":23539,"name":"Blessed Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,25,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29672}},{"crafted":{"profession":2,"spellId":29672}}]}, -{"id":23540,"name":"Felsteel Longblade","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":2.2,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29692}},{"crafted":{"profession":2,"spellId":29692}}]}, -{"id":23541,"name":"Khorium Champion","icon":"inv_sword_08","type":13,"weaponType":9,"handType":4,"stats":[50,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":430,"weaponSpeed":3.3,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29693}},{"crafted":{"profession":2,"spellId":29693}}]}, -{"id":23542,"name":"Fel Edged Battleaxe","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":2.2,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29694}},{"crafted":{"profession":2,"spellId":29694}}]}, -{"id":23543,"name":"Felsteel Reaper","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":295,"weaponDamageMax":443,"weaponSpeed":3.4,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29695}},{"crafted":{"profession":2,"spellId":29695}}]}, -{"id":23544,"name":"Runic Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":261,"weaponSpeed":2.4,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29696}},{"crafted":{"profession":2,"spellId":29696}}]}, -{"id":23546,"name":"Fel Hardened Maul","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[50,0,46,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":430,"weaponSpeed":3.3,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29697}},{"crafted":{"profession":2,"spellId":29697}}]}, -{"id":23553,"name":"Living Branch","icon":"spell_nature_naturetouchgrow","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":19,"weaponSpeed":2.7,"ilvl":10,"quality":1}, -{"id":23554,"name":"Eternium Runed Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,29,0,0,0,21,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":185,"weaponSpeed":1.7,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29698}},{"crafted":{"profession":2,"spellId":29698}}]}, -{"id":23555,"name":"Dirge","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":152,"weaponSpeed":1.4,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29699}},{"crafted":{"profession":2,"spellId":29699}}]}, -{"id":23556,"name":"Hand of Eternity","icon":"inv_mace_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,30,0,18,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.9,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29700}},{"crafted":{"profession":2,"spellId":29700}}]}, -{"id":23557,"name":"Larvae of the Great Worm","icon":"inv_weapon_rifle_10","type":14,"rangedWeaponType":3,"stats":[0,9,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":319,"weaponSpeed":3,"ilvl":81,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":23558,"name":"The Burrower's Shell","icon":"inv_shield_23","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":23563,"name":"Nether Chain Shirt","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,24,40,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":107,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34529}},{"crafted":{"profession":2,"spellId":34529}}]}, -{"id":23564,"name":"Twisting Nether Chain Shirt","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,44,48,0,0,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34530}},{"crafted":{"profession":2,"spellId":34530}}]}, -{"id":23565,"name":"Embrace of the Twisting Nether","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,55,56,0,0,26,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36256}},{"crafted":{"profession":2,"spellId":36256}}]}, -{"id":23570,"name":"Jom Gabbar","icon":"inv_misc_enggizmos_19","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15517,"zoneId":3428}}]}, -{"id":23577,"name":"The Hungering Cold","icon":"inv_sword_62","type":13,"weaponType":9,"handType":2,"stats":[0,0,14,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":143,"weaponSpeed":1.5,"ilvl":89,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":23587,"name":"Mirren's Drinking Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,27,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9420,"name":"The Finest Down"}}],"factionRestriction":1}, -{"id":23663,"name":"Girdle of Elemental Fury","icon":"inv_belt_32","type":8,"armorType":3,"stats":[0,0,39,25,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23664,"name":"Pauldrons of Elemental Fury","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,0,38,22,0,8,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[7],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23665,"name":"Leggings of Elemental Fury","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,50,27,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[7],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23666,"name":"Belt of the Grand Crusader","icon":"inv_belt_27","type":8,"armorType":4,"stats":[18,0,34,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[4],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23667,"name":"Spaulders of the Grand Crusader","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[26,0,33,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[4],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23668,"name":"Leggings of the Grand Crusader","icon":"inv_pants_04","type":9,"armorType":4,"stats":[32,0,39,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":4,"classAllowlist":[4],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":23691,"name":"Corrupted Mark of the Lightbringer","icon":"inv_staff_23","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":23714,"name":"Perpetual Purple Firework","icon":"inv_misc_missilesmall_purple","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":4}, -{"id":23716,"name":"Carved Ogre Idol","icon":"inv_misc_idol_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":23717,"name":"Pitted Gold Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":23742,"name":"Fel Iron Musket","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":2.8,"ilvl":99,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30312}},{"crafted":{"profession":4,"spellId":30312}}]}, -{"id":23746,"name":"Adamantite Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":3,"ilvl":117,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30313}},{"crafted":{"profession":4,"spellId":30313}}]}, -{"id":23747,"name":"Felsteel Boomstick","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,12,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":2.4,"ilvl":108,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30314}},{"crafted":{"profession":4,"spellId":30314}}]}, -{"id":23748,"name":"Ornate Khorium Rifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,14,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":3.1,"ilvl":115,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30315}},{"crafted":{"profession":4,"spellId":30315}}]}, -{"id":23758,"name":"Cogspinner Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":106,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30316}},{"crafted":{"profession":4,"spellId":30316}}]}, -{"id":23761,"name":"Power Amplification Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,46,31,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":89,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30317}},{"crafted":{"profession":4,"spellId":30317}}]}, -{"id":23762,"name":"Ultra-Spectropic Detection Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,36,0,0,24,24,24,0,0,0,0,0,0,0,0,24,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30318}},{"crafted":{"profession":4,"spellId":30318}}]}, -{"id":23763,"name":"Hyper-Vision Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,42,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30325}},{"crafted":{"profession":4,"spellId":30325}}]}, -{"id":23824,"name":"Rocket Boots Xtreme","icon":"inv_gizmo_rocketboot_01","type":10,"armorType":2,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30556}},{"crafted":{"profession":4,"spellId":30556}}]}, -{"id":23825,"name":"Nigh-Invulnerability Belt","icon":"inv_belt_27","type":8,"armorType":1,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30570}},{"crafted":{"profession":4,"spellId":30570}}]}, -{"id":23828,"name":"Gnomish Power Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,32,50,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30574}},{"crafted":{"profession":4,"spellId":30574}}]}, -{"id":23829,"name":"Gnomish Battle Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,50,21,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30575}},{"crafted":{"profession":4,"spellId":30575}}]}, -{"id":23835,"name":"Gnomish Poultryizer","icon":"inv_misc_enggizmos_06","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30569}},{"crafted":{"profession":4,"spellId":30569}}]}, -{"id":23836,"name":"Goblin Rocket Launcher","icon":"inv_gizmo_rocketlauncher","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30563}},{"crafted":{"profession":4,"spellId":30563}}]}, -{"id":23838,"name":"Foreman's Enchanted Helmet","icon":"inv_helmet_60","type":1,"armorType":1,"stats":[0,0,70,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30565}},{"crafted":{"profession":4,"spellId":30565}}]}, -{"id":23839,"name":"Foreman's Reinforced Helmet","icon":"inv_helmet_60","type":1,"armorType":3,"stats":[0,31,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30566}},{"crafted":{"profession":4,"spellId":30566}}]}, -{"id":23844,"name":"Nolkai's Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":23909,"name":"Blood Elf Bandit Mask","icon":"inv_helmet_31","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":23923,"name":"Amani Sacrificial Dagger","icon":"inv_sword_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2,"ilvl":17,"quality":1}, -{"id":23924,"name":"Robes of Silvermoon","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":23931,"name":"Azure Watch Robes","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":2,"classAllowlist":[5]}, -{"id":24020,"name":"Shadowrend Longblade","icon":"inv_sword_63","type":13,"weaponType":9,"handType":2,"stats":[0,0,12,0,0,0,12,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":2.6,"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17306,"zoneId":3562}}]}, -{"id":24021,"name":"Light-Touched Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,25,38,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17306,"zoneId":3562}}]}, -{"id":24022,"name":"Scale Leggings of the Skirmisher","icon":"inv_pants_leather_15","type":9,"armorType":3,"stats":[0,22,35,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17306,"zoneId":3562}}]}, -{"id":24023,"name":"Bracers of Finesse","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17306,"zoneId":3562}}]}, -{"id":24024,"name":"Pauldrons of Arcane Rage","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,34,23,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17306,"zoneId":3562}}]}, -{"id":24044,"name":"Hellreaver","icon":"inv_weapon_halberd13","type":13,"weaponType":6,"handType":4,"stats":[30,0,27,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":3.4,"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24045,"name":"Band of Renewal","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,26,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24046,"name":"Kilt of Rolling Thunders","icon":"inv_pants_plate_10","type":9,"armorType":3,"stats":[0,0,42,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"classAllowlist":[7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24063,"name":"Shifting Sash of Midnight","icon":"inv_belt_29","type":8,"armorType":2,"stats":[0,15,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24064,"name":"Ironsole Clompers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[14,0,19,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24069,"name":"Crystalfire Staff","icon":"inv_staff_46","type":13,"weaponType":8,"handType":4,"stats":[0,0,64,0,0,0,16,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":174,"weaponSpeed":2.1,"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24073,"name":"Garrote-String Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,16,0,0,0,14,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24074,"name":"Fel Iron Blood Ring","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31048}},{"crafted":{"profession":7,"spellId":31048}}]}, -{"id":24075,"name":"Golden Draenite Ring","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31049}},{"crafted":{"profession":7,"spellId":31049}}]}, -{"id":24076,"name":"Azure Moonstone Ring","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31050}},{"crafted":{"profession":7,"spellId":31050}}]}, -{"id":24077,"name":"Thick Adamantite Necklace","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31051}},{"crafted":{"profession":7,"spellId":31051}}]}, -{"id":24078,"name":"Heavy Adamantite Ring","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":83,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31052}},{"crafted":{"profession":7,"spellId":31052}}]}, -{"id":24079,"name":"Khorium Band of Shadows","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31053}},{"crafted":{"profession":7,"spellId":31053}}]}, -{"id":24080,"name":"Khorium Band of Frost","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31054}},{"crafted":{"profession":7,"spellId":31054}}]}, -{"id":24082,"name":"Khorium Inferno Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31055}},{"crafted":{"profession":7,"spellId":31055}}]}, -{"id":24083,"name":"Lifegiver Britches","icon":"inv_pants_plate_01","type":9,"armorType":1,"stats":[0,0,40,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24085,"name":"Khorium Band of Leaves","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31056}},{"crafted":{"profession":7,"spellId":31056}}]}, -{"id":24086,"name":"Arcane Khorium Band","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31057}},{"crafted":{"profession":7,"spellId":31057}}]}, -{"id":24087,"name":"Heavy Felsteel Ring","icon":"inv_jewelry_ring_64","type":11,"stats":[25,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31058}},{"crafted":{"profession":7,"spellId":31058}}]}, -{"id":24088,"name":"Delicate Eternium Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[0,25,15,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":101,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31060}},{"crafted":{"profession":7,"spellId":31060}}]}, -{"id":24089,"name":"Blazing Eternium Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,18,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31061}},{"crafted":{"profession":7,"spellId":31061}}]}, -{"id":24090,"name":"Bloodstained Ravager Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,13,30,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24091,"name":"Tenacious Defender","icon":"inv_belt_27","type":8,"armorType":4,"stats":[15,14,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24092,"name":"Pendant of Frozen Flame","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31062}},{"crafted":{"profession":7,"spellId":31062}}]}, -{"id":24093,"name":"Pendant of Thawing","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31063}},{"crafted":{"profession":7,"spellId":31063}}]}, -{"id":24094,"name":"Heart Fire Warhammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":4,"stats":[19,0,39,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":182,"weaponSpeed":2.2,"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24095,"name":"Pendant of Withering","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31064}},{"crafted":{"profession":7,"spellId":31064}}]}, -{"id":24096,"name":"Heartblood Prayer Beads","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,28,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17308,"zoneId":3562}}]}, -{"id":24097,"name":"Pendant of Shadow's End","icon":"inv_jewelry_necklace_33","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31065}},{"crafted":{"profession":7,"spellId":31065}}]}, -{"id":24098,"name":"Pendant of the Null Rune","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31066}},{"crafted":{"profession":7,"spellId":31066}}]}, -{"id":24100,"name":"Warder's Dagger","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":2,"quality":1}, -{"id":24103,"name":"Moongraze Hide Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":10324,"name":"The Great Moongraze Hunt"}}],"factionRestriction":1}, -{"id":24104,"name":"Moongraze Fur Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":10324,"name":"The Great Moongraze Hunt"}}],"factionRestriction":1}, -{"id":24106,"name":"Thick Felsteel Necklace","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31067}},{"crafted":{"profession":7,"spellId":31067}}]}, -{"id":24107,"name":"Ravager Chitin Tunic","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9560,"name":"Beasts of the Apocalypse!"}}],"factionRestriction":1}, -{"id":24108,"name":"Ravager Hide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9560,"name":"Beasts of the Apocalypse!"}}],"factionRestriction":1}, -{"id":24109,"name":"Thick Ravager Belt","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9560,"name":"Beasts of the Apocalypse!"}}],"factionRestriction":1}, -{"id":24110,"name":"Living Ruby Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,35,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31068}},{"crafted":{"profession":7,"spellId":31068}}]}, -{"id":24111,"name":"Kurken Hide Jerkin","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9571,"name":"The Kurken's Hide"}}],"factionRestriction":1}, -{"id":24112,"name":"Kurkenstoks","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9571,"name":"The Kurken's Hide"}}],"factionRestriction":1}, -{"id":24113,"name":"Cowlen's Bracers of Kinship","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9528,"name":"A Cry For Help"}}],"factionRestriction":1}, -{"id":24114,"name":"Braided Eternium Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31070}},{"crafted":{"profession":7,"spellId":31070}}]}, -{"id":24116,"name":"Eye of the Night","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,0,0,0,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31071}},{"crafted":{"profession":7,"spellId":31071}}]}, -{"id":24117,"name":"Embrace of the Dawn","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31072}},{"crafted":{"profession":7,"spellId":31072}}]}, -{"id":24118,"name":"Signet of Argas","icon":"inv_jewelry_ring_08","type":11,"stats":[0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":24119,"name":"Band of Argas","icon":"inv_jewelry_ring_10","type":11,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":24120,"name":"Seal of Argas","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{}}]}, -{"id":24121,"name":"Chain of the Twilight Owl","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,29,18,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31076}},{"crafted":{"profession":7,"spellId":31076}}]}, -{"id":24122,"name":"Coronet of Verdant Flame","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,36,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31077}},{"crafted":{"profession":7,"spellId":31077}}]}, -{"id":24123,"name":"Circlet of Arcane Might","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,39,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31078}},{"crafted":{"profession":7,"spellId":31078}}]}, -{"id":24124,"name":"Figurine - Felsteel Boar","icon":"inv_jewelcrafting_truesilverboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31079}},{"crafted":{"profession":7,"spellId":31079}}]}, -{"id":24125,"name":"Figurine - Dawnstone Crab","icon":"inv_jewelcrafting_truesilvercrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31080}},{"crafted":{"profession":7,"spellId":31080}}]}, -{"id":24126,"name":"Figurine - Living Ruby Serpent","icon":"inv_jewelcrafting_rubyserpent","type":12,"stats":[0,0,33,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31081}},{"crafted":{"profession":7,"spellId":31081}}]}, -{"id":24127,"name":"Figurine - Talasite Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31082}},{"crafted":{"profession":7,"spellId":31082}}]}, -{"id":24128,"name":"Figurine - Nightseye Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31083}},{"crafted":{"profession":7,"spellId":31083}}]}, -{"id":24129,"name":"Salvaged Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":24130,"name":"Worn Slippers","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":24131,"name":"Slightly Rusted Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}]}, -{"id":24133,"name":"Weathered Mail Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":10303,"name":"The Blood Elves"}}],"factionRestriction":1}, -{"id":24134,"name":"Weathered Leather Vest","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":10303,"name":"The Blood Elves"}}],"factionRestriction":1}, -{"id":24135,"name":"Weathered Cloth Armor","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":10303,"name":"The Blood Elves"}}],"factionRestriction":1}, -{"id":24136,"name":"Farstrider's Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.8,"ilvl":12,"quality":2,"classAllowlist":[2]}, -{"id":24138,"name":"Silver Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":3.1,"ilvl":12,"quality":2,"classAllowlist":[2]}, -{"id":24141,"name":"Battle Worn Gauntlets","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9616,"name":"Bandits!"}}],"factionRestriction":1}, -{"id":24142,"name":"Battle Worn Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9616,"name":"Bandits!"}}],"factionRestriction":1}, -{"id":24144,"name":"Battle Worn Handguards","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":9616,"name":"Bandits!"}}]}, -{"id":24145,"name":"Initiate's Pants","icon":"inv_pants_mail_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":24146,"name":"Initiate's Boots","icon":"inv_boots_chain_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":24150,"name":"Mok'Nathal Wildercloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24151,"name":"Mok'Nathal Clan Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,72,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24154,"name":"Witching Band","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,28,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24155,"name":"Ursol's Claw","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,27,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":165,"weaponDamageMax":248,"weaponSpeed":3,"ilvl":85,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17537,"zoneId":3562}}]}, -{"id":24222,"name":"The Shadowfoot Stabber","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.8,"ilvl":57,"quality":3}, -{"id":24227,"name":"Soft Leather Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":24241,"name":"Green Chain Belt","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8472,"name":"Major Malfunction"}}],"factionRestriction":2}, -{"id":24249,"name":"Unyielding Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,159,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"The Unyielding","setId":570,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31434}},{"crafted":{"profession":11,"spellId":31434}}]}, -{"id":24250,"name":"Bracers of Havok","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31435}},{"crafted":{"profession":11,"spellId":31435}}]}, -{"id":24251,"name":"Blackstrike Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,12,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31437}},{"crafted":{"profession":11,"spellId":31437}}]}, -{"id":24252,"name":"Cloak of the Black Void","icon":"inv_misc_cape_20","type":4,"stats":[0,0,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31438}},{"crafted":{"profession":11,"spellId":31438}}]}, -{"id":24253,"name":"Cloak of Eternity","icon":"inv_misc_cape_10","type":4,"stats":[0,0,36,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31440}},{"crafted":{"profession":11,"spellId":31440}}]}, -{"id":24254,"name":"White Remedy Cape","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,27,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31441}},{"crafted":{"profession":11,"spellId":31441}}]}, -{"id":24255,"name":"Unyielding Girdle","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,233,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"The Unyielding","setId":570,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31442}},{"crafted":{"profession":11,"spellId":31442}}]}, -{"id":24256,"name":"Girdle of Ruination","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,28,33,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31443}},{"crafted":{"profession":11,"spellId":31443}}]}, -{"id":24257,"name":"Black Belt of Knowledge","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31444}},{"crafted":{"profession":11,"spellId":31444}}]}, -{"id":24258,"name":"Resolute Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,207,74,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31448}},{"crafted":{"profession":11,"spellId":31448}}]}, -{"id":24259,"name":"Vengeance Wrap","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,23,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,207,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31449}},{"crafted":{"profession":11,"spellId":31449}}]}, -{"id":24260,"name":"Manaweave Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31450}},{"crafted":{"profession":11,"spellId":31450}}]}, -{"id":24261,"name":"Whitemend Pants","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,39,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Whitemend Wisdom","setId":571,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31451}},{"crafted":{"profession":11,"spellId":31451}}]}, -{"id":24262,"name":"Spellstrike Pants","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,18,39,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Spellstrike Infusion","setId":559,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31452}},{"crafted":{"profession":11,"spellId":31452}}]}, -{"id":24263,"name":"Battlecast Pants","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,62,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Battlecast Garb","setId":572,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31453}},{"crafted":{"profession":11,"spellId":31453}}]}, -{"id":24264,"name":"Whitemend Hood","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,28,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Whitemend Wisdom","setId":571,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31454}},{"crafted":{"profession":11,"spellId":31454}}]}, -{"id":24266,"name":"Spellstrike Hood","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,26,39,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Spellstrike Infusion","setId":559,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31455}},{"crafted":{"profession":11,"spellId":31455}}]}, -{"id":24267,"name":"Battlecast Hood","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,64,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Battlecast Garb","setId":572,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31456}},{"crafted":{"profession":11,"spellId":31456}}]}, -{"id":24334,"name":"Wheel of the Lost Hope","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9683,"name":"Ending the Bloodcurse"}}],"factionRestriction":1}, -{"id":24339,"name":"Stung","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.5,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9315,"name":"Anok'suten"}}],"factionRestriction":2}, -{"id":24340,"name":"Vandril's Hand Me Down Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9315,"name":"Anok'suten"}}],"factionRestriction":2}, -{"id":24341,"name":"Fortified Oven Mitts","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9315,"name":"Anok'suten"}}],"factionRestriction":2}, -{"id":24342,"name":"Stillpine Shocker","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.6,"ilvl":13,"quality":2,"sources":[{"quest":{"id":9667,"name":"Saving Princess Stillpine"}}],"factionRestriction":1}, -{"id":24343,"name":"The Thumper","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":24,"weaponSpeed":2.7,"ilvl":13,"quality":2,"sources":[{"quest":{"id":9667,"name":"Saving Princess Stillpine"}}],"factionRestriction":1}, -{"id":24346,"name":"Robe of the Dragon Slayer","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,3,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":9689,"name":"Razormaw"}}],"factionRestriction":1}, -{"id":24347,"name":"Vest of the Dragon Slayer","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,3,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":9689,"name":"Razormaw"}}],"factionRestriction":1}, -{"id":24348,"name":"Tunic of the Dragon Slayer","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[3,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":9689,"name":"Razormaw"}}],"factionRestriction":1}, -{"id":24349,"name":"Signet Ring of the Hand","icon":"inv_jewelry_ring_18","type":11,"stats":[0,0,0,0,0,0,2,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9762,"name":"The Unwritten Prophecy"}}]}, -{"id":24350,"name":"Signet Ring of the Hand","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9762,"name":"The Unwritten Prophecy"}}]}, -{"id":24351,"name":"Mace of the Hand","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.3,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9759,"name":"Ending Their World"}}]}, -{"id":24352,"name":"Blade of the Hand","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":41,"weaponSpeed":2.6,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9759,"name":"Ending Their World"}}]}, -{"id":24353,"name":"Crossbow of the Hand","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":36,"weaponSpeed":2.7,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9759,"name":"Ending Their World"}}]}, -{"id":24354,"name":"Staff of the Hand","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":30,"weaponSpeed":2.2,"ilvl":20,"quality":2,"sources":[{"quest":{"id":9759,"name":"Ending Their World"}}]}, -{"id":24356,"name":"Wastewalker Shiv","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,12,0,0,12,0,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":1.8,"ilvl":91,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17941,"zoneId":3717}}]}, -{"id":24357,"name":"Vest of Living Lightning","icon":"inv_chest_cloth_06","type":5,"armorType":3,"stats":[0,0,26,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17941,"zoneId":3717}}]}, -{"id":24359,"name":"Princely Reign Leggings","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,45,28,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17941,"zoneId":3717}}]}, -{"id":24360,"name":"Tracker's Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,21,21,0,0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17941,"zoneId":3717}}]}, -{"id":24361,"name":"Spellfire Longsword","icon":"inv_sword_05","type":13,"weaponType":9,"handType":1,"stats":[0,0,27,0,0,10,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":2.2,"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17941,"zoneId":3717}}]}, -{"id":24362,"name":"Spore-Soaked Vaneer","icon":"inv_misc_cape_16","type":4,"stats":[0,0,28,16,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17942,"zoneId":3717}}]}, -{"id":24363,"name":"Unscarred Breastplate","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[26,21,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17942,"zoneId":3717}}]}, -{"id":24364,"name":"Azureplate Greaves","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[33,0,27,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17942,"zoneId":3717}}]}, -{"id":24365,"name":"Deft Handguards","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,26,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17942,"zoneId":3717}}]}, -{"id":24366,"name":"Scorpid-Sting Mantle","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[0,21,26,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17942,"zoneId":3717}}]}, -{"id":24376,"name":"Runed Fungalcap","icon":"inv_mushroom_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17991,"zoneId":3717}}]}, -{"id":24378,"name":"Coilfang Hammer of Renewal","icon":"inv_mace_40","type":13,"weaponType":4,"handType":1,"stats":[0,0,22,0,12,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":173,"weaponSpeed":2.4,"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17991,"zoneId":3717}}]}, -{"id":24379,"name":"Bogstrok Scale Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,22,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,128,83,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17991,"zoneId":3717}}]}, -{"id":24380,"name":"Calming Spore Reed","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,12,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":1.6,"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17991,"zoneId":3717}}]}, -{"id":24381,"name":"Coilfang Needler","icon":"inv_weapon_crossbow_11","type":14,"rangedWeaponType":2,"stats":[0,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":251,"weaponSpeed":2.9,"ilvl":91,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17991,"zoneId":3717}}]}, -{"id":24384,"name":"Diamond-Core Sledgemace","icon":"inv_mace_2h_blacksmithing_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,25,0,12,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":2.5,"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17381,"zoneId":3713}}]}, -{"id":24385,"name":"Pendant of Battle-Lust","icon":"inv_jewelry_necklace_17","type":2,"stats":[19,14,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17381,"zoneId":3713}}]}, -{"id":24386,"name":"Libram of Saints Departed","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[8,0,13,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"classAllowlist":[4,10],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17381,"zoneId":3713}}]}, -{"id":24387,"name":"Ironblade Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[20,14,19,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17381,"zoneId":3713}}]}, -{"id":24388,"name":"Girdle of the Gale Storm","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,31,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17381,"zoneId":3713}}]}, -{"id":24389,"name":"Legion Blunderbuss","icon":"inv_weapon_rifle_17","type":14,"rangedWeaponType":3,"stats":[0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":3,"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17380,"zoneId":3713}}]}, -{"id":24390,"name":"Auslese's Light Channeler","icon":"inv_qiraj_jewelencased","type":12,"stats":[0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17380,"zoneId":3713}}]}, -{"id":24391,"name":"Kilt of the Night Strider","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,0,45,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17380,"zoneId":3713}}]}, -{"id":24392,"name":"Arcing Bracers","icon":"inv_jewelry_ring_35","type":6,"armorType":1,"stats":[0,0,28,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17380,"zoneId":3713}}]}, -{"id":24393,"name":"Bloody Surgeon's Mitts","icon":"inv_misc_surgeonglove_01","type":7,"armorType":1,"stats":[0,0,30,14,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17380,"zoneId":3713}}]}, -{"id":24394,"name":"Warsong Howling Axe","icon":"inv_axe_61","type":13,"weaponType":1,"handType":4,"stats":[0,0,37,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":262,"weaponSpeed":3.1,"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17377,"zoneId":3713}}]}, -{"id":24395,"name":"Mindfire Waistband","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,23,18,8,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17377,"zoneId":3713}}]}, -{"id":24396,"name":"Vest of Vengeance","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,27,37,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17377,"zoneId":3713}}]}, -{"id":24397,"name":"Raiments of Divine Authority","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,36,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17377,"zoneId":3713}}]}, -{"id":24398,"name":"Mantle of the Dusk-Dweller","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,20,38,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17377,"zoneId":3713}}]}, -{"id":24413,"name":"Totem of the Thunderhead","icon":"spell_nature_lightning","type":14,"rangedWeaponType":4,"stats":[0,0,13,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17770,"zoneId":3716}}]}, -{"id":24423,"name":"Beaten Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":9305,"name":"Spare Parts"}}],"factionRestriction":1}, -{"id":24424,"name":"Rough Leather Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":9305,"name":"Spare Parts"}}],"factionRestriction":1}, -{"id":24425,"name":"Hand Sewn Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":9305,"name":"Spare Parts"}}],"factionRestriction":1}, -{"id":24430,"name":"Seafarer's Blade","icon":"inv_sword_draenei_07","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":19,"weaponSpeed":2.8,"ilvl":10,"quality":1,"sources":[{"quest":{"id":9537,"name":"Show Gnomercy"}}],"factionRestriction":1}, -{"id":24431,"name":"McWeaksauce's Meat Tenderizer","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2,"ilvl":10,"quality":1,"sources":[{"quest":{"id":9537,"name":"Show Gnomercy"}}],"factionRestriction":1}, -{"id":24432,"name":"The Shell Cracker","icon":"inv_mace_33","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":18,"weaponSpeed":2.6,"ilvl":10,"quality":1,"sources":[{"quest":{"id":9537,"name":"Show Gnomercy"}}],"factionRestriction":1}, -{"id":24433,"name":"Crossbow of the Albatross","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":14,"weaponSpeed":2.5,"ilvl":10,"quality":1,"sources":[{"quest":{"id":9537,"name":"Show Gnomercy"}}],"factionRestriction":1}, -{"id":24434,"name":"The Discipline Stick","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":18,"weaponSpeed":2.6,"ilvl":10,"quality":1,"sources":[{"quest":{"id":9537,"name":"Show Gnomercy"}}],"factionRestriction":1}, -{"id":24435,"name":"Reinforced Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":9456,"name":"Nightstalker Clean Up, Isle 2..."}}],"factionRestriction":1}, -{"id":24436,"name":"Huntsman's Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":9456,"name":"Nightstalker Clean Up, Isle 2..."}}],"factionRestriction":1}, -{"id":24437,"name":"Slightly Worn Bracer","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":9456,"name":"Nightstalker Clean Up, Isle 2..."}}],"factionRestriction":1}, -{"id":24438,"name":"Fur Covered Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9564,"name":"Gurf's Dignity"}}],"factionRestriction":1}, -{"id":24439,"name":"Savage Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9564,"name":"Gurf's Dignity"}}],"factionRestriction":1}, -{"id":24440,"name":"Heavy Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9564,"name":"Gurf's Dignity"}}],"factionRestriction":1}, -{"id":24441,"name":"Exodar Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":2.5,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":24442,"name":"Mail Belt of the Silverpine","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9546,"name":"Fulfilling a Promise"}}]}, -{"id":24443,"name":"Bracers of Shed Fur","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9546,"name":"Fulfilling a Promise"}}]}, -{"id":24444,"name":"Newly Weaved Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9546,"name":"Fulfilling a Promise"}}]}, -{"id":24445,"name":"Fortified Wristguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9573,"name":"Chieftain Oomooroo"}}],"factionRestriction":1}, -{"id":24446,"name":"Sturdy Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9573,"name":"Chieftain Oomooroo"}}],"factionRestriction":1}, -{"id":24447,"name":"Naga Scale Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"sources":[{"quest":{"id":9515,"name":"Warlord Sriss'tiz"}}],"factionRestriction":1}, -{"id":24450,"name":"Manaspark Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,26,14,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17770,"zoneId":3716}}]}, -{"id":24451,"name":"Lykul Bloodbands","icon":"inv_jewelry_ring_ahnqiraj_01","type":6,"armorType":3,"stats":[0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17770,"zoneId":3716}}]}, -{"id":24452,"name":"Starlight Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,31,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17770,"zoneId":3716}}]}, -{"id":24453,"name":"Zangartooth Shortblade","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":1,"stats":[0,0,26,0,0,12,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.5,"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17826,"zoneId":3716}}]}, -{"id":24454,"name":"Cloak of Enduring Swiftness","icon":"inv_misc_cape_13","type":4,"stats":[0,12,13,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17826,"zoneId":3716}}]}, -{"id":24455,"name":"Tunic of the Nightwatcher","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,44,22,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17826,"zoneId":3716}}]}, -{"id":24456,"name":"Greaves of the Iron Guardian","icon":"inv_pants_mail_19","type":9,"armorType":4,"stats":[32,0,33,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17826,"zoneId":3716}}]}, -{"id":24457,"name":"Truth Bearer Shoulderguards","icon":"inv_shoulder_21","type":3,"armorType":4,"stats":[22,0,21,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17826,"zoneId":3716}}]}, -{"id":24458,"name":"Studded Girdle of Virtue","icon":"inv_belt_01","type":8,"armorType":4,"stats":[0,0,18,19,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18105,"zoneId":3716}}]}, -{"id":24459,"name":"Cloak of Healing Rays","icon":"inv_misc_cape_06","type":4,"stats":[0,0,24,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18105,"zoneId":3716}}]}, -{"id":24460,"name":"Talisman of Tenacity","icon":"inv_misc_enggizmos_04","type":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18105,"zoneId":3716}}]}, -{"id":24461,"name":"Hatebringer","icon":"inv_mace_21","type":13,"weaponType":4,"handType":4,"stats":[25,0,21,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":212,"weaponDamageMax":318,"weaponSpeed":3.6,"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18105,"zoneId":3716}}]}, -{"id":24462,"name":"Luminous Pearls of Insight","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,17,21,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18105,"zoneId":3716}}]}, -{"id":24463,"name":"Pauldrons of Brute Force","icon":"inv_shoulder_15","type":3,"armorType":4,"stats":[16,0,22,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,623,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17882,"zoneId":3716}}]}, -{"id":24464,"name":"The Stalker's Fangs","icon":"inv_sword_53","type":13,"weaponType":2,"handType":2,"stats":[0,0,16,0,0,0,15,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.8,"ilvl":94,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17882,"zoneId":3716}}]}, -{"id":24465,"name":"Shamblehide Chestguard","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,22,16,0,0,19,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17882,"zoneId":3716}}]}, -{"id":24466,"name":"Skulldugger's Leggings","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,20,24,0,0,16,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17882,"zoneId":3716}}]}, -{"id":24481,"name":"Robes of the Augurer","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,34,24,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17882,"zoneId":3716}}]}, -{"id":24544,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567}, -{"id":24545,"name":"Gladiator's Plate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567}, -{"id":24546,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567}, -{"id":24547,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567}, -{"id":24549,"name":"Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567}, -{"id":24550,"name":"Gladiator's Greatsword","icon":"inv_sword_70","type":13,"weaponType":9,"handType":4,"stats":[32,0,48,0,0,20,35,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":123,"quality":4}, -{"id":24551,"name":"Talisman of the Horde","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"factionRestriction":2}, -{"id":24552,"name":"Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,64,31,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568}, -{"id":24553,"name":"Gladiator's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568}, -{"id":24554,"name":"Gladiator's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,47,27,0,12,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568}, -{"id":24555,"name":"Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568}, -{"id":24556,"name":"Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,57,27,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568}, -{"id":24557,"name":"Gladiator's War Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,0,21,36,0,0,0,0,0,0,0,250,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":2,"ilvl":123,"quality":4}, -{"id":24575,"name":"Outlander's Girdle","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24576,"name":"Loosely Threaded Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":24577,"name":"Loosely Threaded Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":24578,"name":"Loosely Threaded Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":24580,"name":"Loosely Threaded Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":24582,"name":"Outlander's Boots","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24583,"name":"Outlander's Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24584,"name":"Outlander's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24585,"name":"Outlander's Facewrap","icon":"inv_misc_bandana_03","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24586,"name":"Outlander's Leggings","icon":"inv_pants_cloth_03","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24587,"name":"Outlander's Pauldrons","icon":"inv_shoulder_08","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24588,"name":"Outlander's Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":81,"quality":2}, -{"id":24589,"name":"Fireheart Girdle","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24590,"name":"Fireheart Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24591,"name":"Fireheart Chestpiece","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24592,"name":"Fireheart Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24593,"name":"Fireheart Skullcap","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24594,"name":"Fireheart Leggings","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24595,"name":"Fireheart Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24596,"name":"Fireheart Bracers","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":84,"quality":2}, -{"id":24597,"name":"Starfire Sash","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24598,"name":"Starfire Sandals","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24599,"name":"Starfire Vest","icon":"inv_chest_leather_03","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24600,"name":"Starfire Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24601,"name":"Starfire Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24602,"name":"Starfire Trousers","icon":"inv_pants_leather_19","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24603,"name":"Starfire Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24604,"name":"Starfire Wristwraps","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":87,"quality":2}, -{"id":24605,"name":"Laughing Skull Waistguard","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24606,"name":"Laughing Skull Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24607,"name":"Laughing Skull Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24608,"name":"Laughing Skull Gloves","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24609,"name":"Laughing Skull Cap","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24610,"name":"Laughing Skull Pants","icon":"inv_pants_cloth_04","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24611,"name":"Laughing Skull Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24612,"name":"Laughing Skull Bracelets","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":90,"quality":2}, -{"id":24613,"name":"Vindicator Belt","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24614,"name":"Vindicator Boots","icon":"inv_boots_chain_08","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24615,"name":"Vindicator Tunic","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24616,"name":"Vindicator Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24617,"name":"Vindicator Cap","icon":"inv_helmet_61","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24618,"name":"Vindicator Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24619,"name":"Vindicator Shoulderpads","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24620,"name":"Vindicator Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":93,"quality":2}, -{"id":24621,"name":"Slavehandler Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24622,"name":"Slavehandler Footpads","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24623,"name":"Slavehandler Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24624,"name":"Slavehandler Handwraps","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24625,"name":"Slavehandler Cap","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24626,"name":"Slavehandler Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24627,"name":"Slavehandler Amice","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24628,"name":"Slavehandler Wristguards","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":96,"quality":2}, -{"id":24629,"name":"Feralfen Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24630,"name":"Feralfen Sandals","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24631,"name":"Feralfen Jerkin","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24632,"name":"Feralfen Hand","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24633,"name":"Feralfen Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24634,"name":"Feralfen Pants","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24635,"name":"Feralfen Amice","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24636,"name":"Feralfen Cuffs","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":99,"quality":2}, -{"id":24637,"name":"Mistyreed Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24638,"name":"Mistyreed Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24639,"name":"Mistyreed Tunic","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24640,"name":"Mistyreed Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24641,"name":"Mistyreed Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24642,"name":"Mistyreed Pants","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24643,"name":"Mistyreed Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24644,"name":"Mistyreed Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":102,"quality":2}, -{"id":24645,"name":"Astralaan Belt","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24646,"name":"Astralaan Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24647,"name":"Astralaan Robe","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24648,"name":"Astralaan Gloves","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24649,"name":"Astralaan Headdress","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24650,"name":"Astralaan Pants","icon":"inv_pants_plate_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24651,"name":"Astralaan Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24652,"name":"Astralaan Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":105,"quality":2}, -{"id":24653,"name":"Consortium Sash","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24654,"name":"Consortium Boot","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24655,"name":"Consortium Robe","icon":"inv_chest_cloth_50","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24656,"name":"Consortium Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24657,"name":"Consortium Hood","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24658,"name":"Consortium Pants","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24659,"name":"Consortium Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24660,"name":"Consortium Bracer","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":108,"quality":2}, -{"id":24661,"name":"Shadow Council Chain","icon":"inv_belt_21","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24662,"name":"Shadow Council Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24663,"name":"Shadow Council Tunic","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24664,"name":"Shadow Council Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24665,"name":"Shadow Council Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24666,"name":"Shadow Council Pants","icon":"inv_pants_cloth_04","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24667,"name":"Shadow Council Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24668,"name":"Shadow Council Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":111,"quality":2}, -{"id":24669,"name":"Eldr'naan Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24670,"name":"Eldr'naan Boots","icon":"inv_boots_chain_11","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24671,"name":"Eldr'naan Jerkin","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24672,"name":"Eldr'naan Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24673,"name":"Eldr'naan Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24674,"name":"Eldr'naan Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24675,"name":"Eldr'naan Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24676,"name":"Eldr'naan Bracelets","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":114,"quality":2}, -{"id":24677,"name":"Archmage Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24678,"name":"Archmage Slippers","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24679,"name":"Archmage Robe","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24680,"name":"Archmage Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24681,"name":"Archmage Headpiece","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24682,"name":"Archmage Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24683,"name":"Archmage Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24684,"name":"Archmage Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":117,"quality":2}, -{"id":24685,"name":"Elementalist Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24686,"name":"Elementalist Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24687,"name":"Elementalist Tunic","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24688,"name":"Elementalist Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24689,"name":"Elementalist Skullcap","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24690,"name":"Elementalist Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24691,"name":"Elementalist Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24692,"name":"Elementalist Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":120,"quality":2}, -{"id":24693,"name":"Bonechewer Pelt-Girdle","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24694,"name":"Bonechewer Shredboots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24695,"name":"Bonechewer Chestpiece","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24696,"name":"Bonechewer Spikegloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24697,"name":"Bonechewer Skincloak","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24698,"name":"Bonechewer Ripleggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24699,"name":"Bonechewer Shoulderguards","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24700,"name":"Bonechewer Bands","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":81,"quality":2}, -{"id":24701,"name":"Haal'eshi Cord","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24702,"name":"Haal'eshi Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24703,"name":"Haal'eshi Jerkin","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24704,"name":"Haal'eshi Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24705,"name":"Haal'eshi Hat","icon":"inv_helmet_21","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24706,"name":"Haal'eshi Leggings","icon":"inv_pants_cloth_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24707,"name":"Haal'eshi Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24708,"name":"Haal'eshi Bindings","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":84,"quality":2}, -{"id":24709,"name":"Vengeance Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24710,"name":"Vengeance Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24711,"name":"Vengeance Chestpiece","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24712,"name":"Vengeance Gloves","icon":"inv_gauntlets_14","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24713,"name":"Vengeance Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24714,"name":"Vengeance Legguards","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24715,"name":"Vengeance Pauldrons","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24716,"name":"Vengeance Bands","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":87,"quality":2}, -{"id":24717,"name":"Dreghood Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24718,"name":"Dreghood Boots","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24719,"name":"Dreghood Chestpiece","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24720,"name":"Dreghood Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24721,"name":"Dreghood Cowl","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24722,"name":"Dreghood Trousers","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24723,"name":"Dreghood Pauldrons","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24724,"name":"Dreghood Bands","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":90,"quality":2}, -{"id":24725,"name":"Dementia Cord","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24726,"name":"Dementia Boots","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24727,"name":"Dementia Vest","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24728,"name":"Dementia Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24729,"name":"Dementia Hood","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24730,"name":"Dementia Trousers","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24731,"name":"Dementia Shoulderguards","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24732,"name":"Dementia Armguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":93,"quality":2}, -{"id":24733,"name":"Sunroc Waistband","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24734,"name":"Sunroc Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24735,"name":"Sunroc Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24736,"name":"Sunroc Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24737,"name":"Sunroc Mask","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24738,"name":"Sunroc Pants","icon":"inv_pants_leather_20","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24739,"name":"Sunroc Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24740,"name":"Sunroc Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":96,"quality":2}, -{"id":24741,"name":"Ranger Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24742,"name":"Ranger Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24743,"name":"Ranger Jerkin","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24744,"name":"Ranger Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24745,"name":"Ranger Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24746,"name":"Ranger Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24747,"name":"Ranger Pauldrons","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24748,"name":"Ranger Armguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":99,"quality":2}, -{"id":24749,"name":"Daggerfen Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24750,"name":"Daggerfen Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24751,"name":"Daggerfen Battlevest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24752,"name":"Daggerfen Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24753,"name":"Daggerfen Cowl","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24754,"name":"Daggerfen Stitchpants","icon":"inv_pants_cloth_04","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24755,"name":"Daggerfen Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24756,"name":"Daggerfen Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":102,"quality":2}, -{"id":24757,"name":"Umbrafen Waistband","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24758,"name":"Umbrafen Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24759,"name":"Umbrafen Tunic","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24760,"name":"Umbrafen Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24761,"name":"Umbrafen Cap","icon":"inv_helmet_40","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24762,"name":"Umbrafen Britches","icon":"inv_pants_leather_15","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24763,"name":"Umbrafen Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24764,"name":"Umbrafen Bindings","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":105,"quality":2}, -{"id":24765,"name":"Clefthoof Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24766,"name":"Clefthoof Wanderboots","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24767,"name":"Clefthoof Hidemantle","icon":"inv_shirt_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24768,"name":"Clefthoof Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24769,"name":"Clefthoof Cover","icon":"inv_helmet_43","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24770,"name":"Clefthoof Britches","icon":"inv_pants_cloth_11","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24771,"name":"Clefthoof Shoulderguards","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24772,"name":"Clefthoof Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":108,"quality":2}, -{"id":24773,"name":"Boneshredder Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24774,"name":"Boneshredder Boots","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24775,"name":"Boneshredder Jerkin","icon":"inv_chest_cloth_33","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24776,"name":"Boneshredder Gloves","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24777,"name":"Boneshredder Skullcap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24778,"name":"Boneshredder Britches","icon":"inv_pants_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24779,"name":"Boneshredder Shoulderguards","icon":"inv_shoulder_03","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24780,"name":"Boneshredder Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":111,"quality":2}, -{"id":24781,"name":"Murkblood Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24782,"name":"Loosely Threaded Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":24783,"name":"Murkblood Boots","icon":"inv_boots_cloth_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24784,"name":"Murkblood Chestpiece","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24785,"name":"Murkblood Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24786,"name":"Murkblood Cover","icon":"inv_feather_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24787,"name":"Murkblood Pants","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24788,"name":"Murkblood Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24789,"name":"Murkblood Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":114,"quality":2}, -{"id":24790,"name":"Expedition Girdle","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24791,"name":"Expedition Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24792,"name":"Expedition Tunic","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24793,"name":"Expedition Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24794,"name":"Expedition Hood","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24795,"name":"Expedition Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24796,"name":"Expedition Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24797,"name":"Expedition Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":117,"quality":2}, -{"id":24798,"name":"Dragonhawk Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24799,"name":"Dragonhawk Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24800,"name":"Dragonhawk Tunic","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24801,"name":"Dragonhawk Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24802,"name":"Dragonhawk Hat","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24803,"name":"Dragonhawk Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24804,"name":"Dragonhawk Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24805,"name":"Dragonhawk Bands","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":120,"quality":2}, -{"id":24806,"name":"Unyielding Waistband","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24807,"name":"Unyielding Footwraps","icon":"inv_boots_cloth_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24808,"name":"Unyielding Chain Vest","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24809,"name":"Unyielding Fists","icon":"inv_gauntlets_21","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24810,"name":"Unyielding Helm","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24811,"name":"Unyielding Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24812,"name":"Unyielding Spaulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24813,"name":"Unyielding Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":81,"quality":2}, -{"id":24814,"name":"Felstone Waistband","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24815,"name":"Felstone Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24816,"name":"Felstone Chain Vest","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24817,"name":"Felstone Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24818,"name":"Felstone Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24819,"name":"Felstone Leggings","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24820,"name":"Felstone Spaulders","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24821,"name":"Felstone Bindings","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":84,"quality":2}, -{"id":24822,"name":"Netherstalker Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24823,"name":"Netherstalker Greaves","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24824,"name":"Netherstalker Armor","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24825,"name":"Netherstalker Gloves","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24826,"name":"Netherstalker Helmet","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24827,"name":"Netherstalker Legguards","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24828,"name":"Netherstalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24829,"name":"Netherstalker Bracer","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":87,"quality":2}, -{"id":24830,"name":"Nexus-Strider Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24831,"name":"Nexus-Strider Greaves","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24832,"name":"Nexus-Strider Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24833,"name":"Nexus-Strider Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24834,"name":"Nexus-Strider Helmet","icon":"inv_helmet_39","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24835,"name":"Nexus-Strider Legwraps","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24836,"name":"Nexus-Strider Mantle","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24837,"name":"Nexus-Strider Bracer","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":90,"quality":2}, -{"id":24838,"name":"Wrathfin Waistband","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24839,"name":"Wrathfin Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24840,"name":"Wrathfin Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24841,"name":"Wrathfin Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24842,"name":"Wrathfin Helmet","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24843,"name":"Wrathfin Legguards","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24844,"name":"Wrathfin Mantle","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24845,"name":"Wrathfin Bindings","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":93,"quality":2}, -{"id":24846,"name":"Fenclaw Waistband","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24847,"name":"Fenclaw Footwraps","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24848,"name":"Fenclaw Armor","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24849,"name":"Fenclaw Fists","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24850,"name":"Fenclaw Helm","icon":"inv_belt_17","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24851,"name":"Fenclaw Legguards","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24852,"name":"Fenclaw Mantle","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24853,"name":"Fenclaw Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":96,"quality":2}, -{"id":24854,"name":"Marshcreeper Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24855,"name":"Marshcreeper Sludgeboots","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24856,"name":"Marshcreeper Fen-Vest","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24857,"name":"Marshcreeper Gloves","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24858,"name":"Marshcreeper Helm","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24859,"name":"Marshcreeper Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24860,"name":"Marshcreeper Mantle","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24861,"name":"Marshcreeper Bracelets","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":99,"quality":2}, -{"id":24862,"name":"Blood Knight Girdle","icon":"inv_belt_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24863,"name":"Blood Knight Boots","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24864,"name":"Blood Knight Breastplate","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24865,"name":"Blood Knight Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24866,"name":"Blood Knight Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24867,"name":"Blood Knight Greaves","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24868,"name":"Blood Knight Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24869,"name":"Blood Knight Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":102,"quality":2}, -{"id":24870,"name":"Ironspine Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24871,"name":"Ironspine Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24872,"name":"Ironspine Chain Vest","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24873,"name":"Ironspine Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24874,"name":"Ironspine Helm","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24875,"name":"Ironspine Legguards","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24876,"name":"Ironspine Shoulderguards","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24877,"name":"Ironspine Bracelets","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":105,"quality":2}, -{"id":24878,"name":"Der'izu Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24879,"name":"Der'izu Greaves","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24880,"name":"Der'izu Chestpiece","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24881,"name":"Der'izu Fists","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24882,"name":"Der'izu Helm","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24883,"name":"Der'izu Legguards","icon":"inv_pants_leather_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24884,"name":"Der'izu Spaulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24885,"name":"Der'izu Bracer","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":108,"quality":2}, -{"id":24886,"name":"Skettis Belt","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24887,"name":"Skettis Footwraps","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24888,"name":"Skettis Chestpiece","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24889,"name":"Skettis Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24890,"name":"Skettis Helmet","icon":"inv_helmet_42","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24891,"name":"Skettis Legguards","icon":"inv_pants_cloth_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24892,"name":"Skettis Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24893,"name":"Skettis Bracer","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":111,"quality":2}, -{"id":24894,"name":"Sundered Waistband","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24895,"name":"Sundered Footwraps","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24896,"name":"Sundered Chestpiece","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24897,"name":"Sundered Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24898,"name":"Sundered Helmet","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24899,"name":"Sundered Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24900,"name":"Sundered Spaulders","icon":"inv_shoulder_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24901,"name":"Tortured Bracer","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":114,"quality":2}, -{"id":24902,"name":"Talhide Stitched-Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24903,"name":"Talhide Lined-Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24904,"name":"Talhide Chestpiece","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24905,"name":"Talhide Lined-Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24906,"name":"Talhide Helmet","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24907,"name":"Talhide Lined-Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24908,"name":"Talhide Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24909,"name":"Talhide Lined-Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":117,"quality":2}, -{"id":24910,"name":"Netherstorm Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24911,"name":"Netherstorm Greaves","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24912,"name":"Netherstorm Chestpiece","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24913,"name":"Netherstorm Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24914,"name":"Netherstorm Helm","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24915,"name":"Netherstorm Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24916,"name":"Netherstorm Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24917,"name":"Netherstorm Bracer","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":120,"quality":2}, -{"id":24918,"name":"Grimscale Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24919,"name":"Grimscale Sabatons","icon":"inv_boots_chain_06","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24920,"name":"Grimscale Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24921,"name":"Grimscale Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24922,"name":"Grimscale Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24923,"name":"Grimscale Legguards","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24924,"name":"Grimscale Pauldrons","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24925,"name":"Grimscale Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":24926,"name":"Ango'rosh Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24927,"name":"Ango'rosh Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24928,"name":"Ango'rosh Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24929,"name":"Ango'rosh Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24930,"name":"Ango'rosh Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24931,"name":"Ango'rosh Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24932,"name":"Ango'rosh Pauldrons","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24933,"name":"Ango'rosh Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":24934,"name":"Darkcrest Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24935,"name":"Darkcrest Sabatons","icon":"inv_boots_cloth_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24936,"name":"Darkcrest Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24937,"name":"Darkcrest Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24938,"name":"Darkcrest Helm","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24939,"name":"Darkcrest Legguards","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24940,"name":"Darkcrest Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24941,"name":"Darkcrest Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":24942,"name":"Bloodscale Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24943,"name":"Bloodscale Sabatons","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24944,"name":"Bloodscale Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24945,"name":"Bloodscale Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24946,"name":"Bloodscale Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24947,"name":"Bloodscale Legguards","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24948,"name":"Bloodscale Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24949,"name":"Bloodscale Bracers","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":24950,"name":"Bogslayer Belt","icon":"inv_belt_03","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24951,"name":"Bogslayer Sabatons","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24952,"name":"Bogslayer Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24953,"name":"Bogslayer Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24954,"name":"Bogslayer Helm","icon":"inv_helmet_45","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24955,"name":"Bogslayer Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24956,"name":"Bogslayer Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24957,"name":"Bogslayer Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":24958,"name":"Khan'aish Girdle","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24959,"name":"Khan'aish Greaves","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24960,"name":"Khan'aish Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24961,"name":"Khan'aish Gloves","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24962,"name":"Khan'aish Helmet","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24963,"name":"Khan'aish Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24964,"name":"Khan'aish Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,594,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24965,"name":"Khan'aish Bracers","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":24966,"name":"Talonguard Girdle","icon":"inv_belt_17","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24967,"name":"Talonguard Greaves","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24968,"name":"Talonguard Armor","icon":"inv_chest_samurai","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24969,"name":"Talonguard Gloves","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24970,"name":"Talonguard Helmet","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24971,"name":"Talonguard Legplates","icon":"inv_pants_leather_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24972,"name":"Talonguard Epaulets","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24973,"name":"Talonguard Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":24974,"name":"Reaver Girdle","icon":"inv_belt_26","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24975,"name":"Reaver Greaves","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24976,"name":"Reaver Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24977,"name":"Reaver Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24978,"name":"Reaver Helmet","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24979,"name":"Reaver Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24980,"name":"Reaver Epaulets","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24981,"name":"Reaver Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":24982,"name":"Boulderfist Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24983,"name":"Boulderfist Greaves","icon":"inv_boots_cloth_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24984,"name":"Boulderfist Armor","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24985,"name":"Boulderfist Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24986,"name":"Boulderfist Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24987,"name":"Boulderfist Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24988,"name":"Boulderfist Epaulets","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24989,"name":"Boulderfist Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":24990,"name":"Warmaul Belt","icon":"inv_belt_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24991,"name":"Warmaul Greaves","icon":"inv_boots_chain_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24992,"name":"Warmaul Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24993,"name":"Warmaul Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24994,"name":"Warmaul Helmet","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24995,"name":"Warmaul Legplates","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,883,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24996,"name":"Warmaul Epaulets","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24997,"name":"Warmaul Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":24998,"name":"Bloodfist Girdle","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":24999,"name":"Bloodfist Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25000,"name":"Bloodfist Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25001,"name":"Bloodfist Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25002,"name":"Bloodfist Helmet","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25003,"name":"Bloodfist Legplates","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25004,"name":"Bloodfist Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25005,"name":"Bloodfist Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25006,"name":"Conqueror's Girdle","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25007,"name":"Conqueror's Greaves","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25008,"name":"Conqueror's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25009,"name":"Conqueror's Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25010,"name":"Conqueror's Helmet","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25011,"name":"Conqueror's Legplates","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25012,"name":"Conqueror's Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25013,"name":"Conqueror's Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25014,"name":"Shattered Hand Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25015,"name":"Shattered Hand Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25016,"name":"Shattered Hand Breastplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25017,"name":"Shattered Hand Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25018,"name":"Shattered Hand Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25019,"name":"Shattered Hand Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25020,"name":"Shattered Hand Epaulets","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25021,"name":"Shattered Hand Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25022,"name":"Warlord's Iron-Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25023,"name":"Warlord's Sabatons","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25024,"name":"Warlord's Iron-Breastplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25025,"name":"Warlord's Iron-Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25026,"name":"Warlord's Iron-Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25027,"name":"Warlord's Iron-Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25028,"name":"Warlord's Iron-Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25029,"name":"Warlord's Iron-Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25030,"name":"Silky Velvet Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":81,"quality":2}, -{"id":25031,"name":"Silvermoon Royal Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":84,"quality":2}, -{"id":25032,"name":"Hellfire Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":87,"quality":2}, -{"id":25033,"name":"Scavenger's Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":90,"quality":2}, -{"id":25034,"name":"Elementalist Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":93,"quality":2}, -{"id":25035,"name":"Silver-Lined Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":96,"quality":2}, -{"id":25036,"name":"Boulderfist Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":99,"quality":2}, -{"id":25037,"name":"Patched Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":102,"quality":2}, -{"id":25038,"name":"Forest Shroud","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":105,"quality":2}, -{"id":25039,"name":"Farseer Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":108,"quality":2}, -{"id":25040,"name":"Murkblood Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":111,"quality":2}, -{"id":25041,"name":"Ambusher's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":114,"quality":2}, -{"id":25042,"name":"Nether Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":117,"quality":2}, -{"id":25043,"name":"Amber Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":120,"quality":2}, -{"id":25044,"name":"Rubellite Ring","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":25045,"name":"Azurite Ring","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":25046,"name":"Spined Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":25047,"name":"Tourmaline Loop","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":25048,"name":"Smoky Quartz Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":25049,"name":"Scheelite Ring","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":25050,"name":"Moldavite Ring","icon":"inv_jewelry_ring_18","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":25051,"name":"Blue Topaz Band","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":25052,"name":"Hauyne Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":25053,"name":"Lazuli Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":25054,"name":"Sodalite Band","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25055,"name":"Alexandrite Ring","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25056,"name":"Almandine Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25057,"name":"Amber Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25058,"name":"Anglesite Choker","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":81,"quality":2}, -{"id":25059,"name":"Fire Opal Collar","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":84,"quality":2}, -{"id":25060,"name":"Sunstone Necklace","icon":"inv_misc_gem_pearl_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":87,"quality":2}, -{"id":25061,"name":"Hiddenite Necklace","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":90,"quality":2}, -{"id":25062,"name":"Zircon Amulet","icon":"inv_misc_gem_diamond_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":93,"quality":2}, -{"id":25063,"name":"Multi-Colored Beads","icon":"inv_misc_gem_variety_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":96,"quality":2}, -{"id":25064,"name":"Amethyst Pendant","icon":"inv_misc_gem_amethyst_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":99,"quality":2}, -{"id":25065,"name":"Turquoise Brooch","icon":"inv_misc_gem_crystal_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":102,"quality":2}, -{"id":25066,"name":"Pink Sapphire Necklace","icon":"inv_misc_gem_amethyst_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":105,"quality":2}, -{"id":25067,"name":"Diopside Beads","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":108,"quality":2}, -{"id":25068,"name":"Kunzite Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":111,"quality":2}, -{"id":25069,"name":"Epidote Stone Necklace","icon":"inv_misc_gem_topaz_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":114,"quality":2}, -{"id":25070,"name":"Coral Beads","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":117,"quality":2}, -{"id":25071,"name":"Tanzanite Pendant","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":120,"quality":2}, -{"id":25072,"name":"Northman's Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":81,"quality":2}, -{"id":25073,"name":"Emperor Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":84,"quality":2}, -{"id":25074,"name":"Telaari Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":87,"quality":2}, -{"id":25075,"name":"Hardened Steel Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":90,"quality":2}, -{"id":25076,"name":"Screaming Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":93,"quality":2}, -{"id":25077,"name":"Modani War-Shield","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2005,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":96,"quality":2}, -{"id":25078,"name":"Zangari Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":99,"quality":2}, -{"id":25079,"name":"Outland Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":102,"quality":2}, -{"id":25080,"name":"Spell-Breaker Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":105,"quality":2}, -{"id":25081,"name":"Bayeaux Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":108,"quality":2}, -{"id":25082,"name":"Fel-Iron Shield","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":111,"quality":2}, -{"id":25083,"name":"Smouldering Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":114,"quality":2}, -{"id":25084,"name":"Zeth'Gor Shield","icon":"inv_shield_13","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":117,"quality":2}, -{"id":25085,"name":"Dragonscale Shield","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":120,"quality":2}, -{"id":25086,"name":"Dreamseeker Dandelion","icon":"inv_misc_flower_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":81,"quality":2}, -{"id":25087,"name":"Bleeding Eye","icon":"inv_wand_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":84,"quality":2}, -{"id":25088,"name":"Laughing Skull Orb","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":87,"quality":2}, -{"id":25089,"name":"Supplicant's Rod","icon":"inv_wand_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":90,"quality":2}, -{"id":25090,"name":"Slavehandler Rod","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":93,"quality":2}, -{"id":25091,"name":"Mistyreed Torch","icon":"inv_misc_bomb_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":96,"quality":2}, -{"id":25092,"name":"Consortium Crystal","icon":"inv_misc_gem_pearl_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":99,"quality":2}, -{"id":25093,"name":"Shadow Council Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":102,"quality":2}, -{"id":25094,"name":"Eldr'naan Scepter","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":105,"quality":2}, -{"id":25095,"name":"Archmage Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":108,"quality":2}, -{"id":25096,"name":"Elementalist Star","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":111,"quality":2}, -{"id":25097,"name":"Astralaan Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":114,"quality":2}, -{"id":25098,"name":"Tuurik Torch","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":117,"quality":2}, -{"id":25099,"name":"Draenei Crystal Rod","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":120,"quality":2}, -{"id":25100,"name":"Liege Blade","icon":"inv_sword_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.7,"ilvl":81,"quality":2}, -{"id":25101,"name":"Cross Pommel Dagger","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":1.7,"ilvl":84,"quality":2}, -{"id":25102,"name":"Jaedenis Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.7,"ilvl":87,"quality":2}, -{"id":25103,"name":"Nightstalker Dagger","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":56,"weaponDamageMax":106,"weaponSpeed":1.7,"ilvl":90,"quality":2}, -{"id":25104,"name":"Anzac Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":1.7,"ilvl":93,"quality":2}, -{"id":25105,"name":"Arachnid Dagger","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.7,"ilvl":96,"quality":2}, -{"id":25106,"name":"Cobra Shortblade","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":61,"weaponDamageMax":115,"weaponSpeed":1.7,"ilvl":99,"quality":2}, -{"id":25107,"name":"Draconic Dagger","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":1.7,"ilvl":102,"quality":2}, -{"id":25108,"name":"Grave Keeper Knife","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":1.7,"ilvl":105,"quality":2}, -{"id":25109,"name":"Moon Blade","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":1.7,"ilvl":108,"quality":2}, -{"id":25110,"name":"Sharp Bowie Knife","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.7,"ilvl":111,"quality":2}, -{"id":25111,"name":"Lionhead Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.7,"ilvl":114,"quality":2}, -{"id":25112,"name":"Fel Ripper","icon":"inv_weapon_shortblade_22","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.7,"ilvl":117,"quality":2}, -{"id":25113,"name":"Phantom Dagger","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.7,"ilvl":120,"quality":2}, -{"id":25114,"name":"Doomsayer's Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.6,"ilvl":81,"quality":2}, -{"id":25115,"name":"Riversong Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.6,"ilvl":84,"quality":2}, -{"id":25116,"name":"Pneumatic War Hammer","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.6,"ilvl":87,"quality":2}, -{"id":25117,"name":"Flanged Battle Mace","icon":"inv_mace_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":2.6,"ilvl":90,"quality":2}, -{"id":25118,"name":"Battle Star","icon":"inv_mace_15","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.6,"ilvl":93,"quality":2}, -{"id":25119,"name":"Silvermoon War-Mace","icon":"inv_mace_30","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":2.6,"ilvl":96,"quality":2}, -{"id":25120,"name":"Rockshard Club","icon":"inv_stone_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":2.6,"ilvl":99,"quality":2}, -{"id":25121,"name":"Dreaded Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":2.6,"ilvl":102,"quality":2}, -{"id":25122,"name":"Khorium Plated Bludgeon","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":2.6,"ilvl":105,"quality":2}, -{"id":25123,"name":"Boneshredder Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":2.6,"ilvl":108,"quality":2}, -{"id":25124,"name":"Footman Mace","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":2.6,"ilvl":111,"quality":2}, -{"id":25125,"name":"Retro-Spike Club","icon":"inv_misc_bone_humanskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.6,"ilvl":114,"quality":2}, -{"id":25126,"name":"Anvilmar Hammer","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.6,"ilvl":117,"quality":2}, -{"id":25127,"name":"Knight's War Hammer","icon":"inv_hammer_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.6,"ilvl":120,"quality":2}, -{"id":25128,"name":"Shining Mace","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25129,"name":"Giant's Leg Bone","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25130,"name":"Gronn-Bone Club","icon":"inv_mace_12","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25131,"name":"Hateful Bludgeon","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25132,"name":"Thrallmar War Hammer","icon":"inv_mace_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25133,"name":"Stormwind Maul","icon":"inv_mace_13","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25134,"name":"Highmountain Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25135,"name":"Clefthoof Mace","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25136,"name":"Blood Stained Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25137,"name":"Draenethyst Mallet","icon":"inv_mace_33","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25138,"name":"Blood Knight Maul","icon":"inv_mace_30","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25139,"name":"Algaz Battle Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25140,"name":"Commanding Mallet","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25141,"name":"Halaani Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25142,"name":"Telaari Longblade","icon":"inv_sword_draenei_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.6,"ilvl":81,"quality":2}, -{"id":25143,"name":"Silver Hand Blade","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.6,"ilvl":84,"quality":2}, -{"id":25144,"name":"Skettis Curved Blade","icon":"inv_sword_draenei_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.6,"ilvl":87,"quality":2}, -{"id":25145,"name":"Wisdom Blade","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":2.6,"ilvl":90,"quality":2}, -{"id":25146,"name":"Light-Etched Longsword","icon":"inv_sword_draenei_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.6,"ilvl":93,"quality":2}, -{"id":25147,"name":"Skystrider Katana","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":2.6,"ilvl":96,"quality":2}, -{"id":25148,"name":"Bone Collector Sword","icon":"inv_sword_draenei_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":2.6,"ilvl":99,"quality":2}, -{"id":25149,"name":"Baron's Broadsword","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":2.6,"ilvl":102,"quality":2}, -{"id":25150,"name":"Honor Hold Saber","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":2.6,"ilvl":105,"quality":2}, -{"id":25151,"name":"Assassins' Short Blade","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":2.6,"ilvl":108,"quality":2}, -{"id":25152,"name":"Howling Sword","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":2.6,"ilvl":111,"quality":2}, -{"id":25153,"name":"Gladiator Greatblade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.6,"ilvl":114,"quality":2}, -{"id":25154,"name":"Blood Groove Blade","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.6,"ilvl":117,"quality":2}, -{"id":25155,"name":"Iron Skull Sword","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.6,"ilvl":120,"quality":2}, -{"id":25156,"name":"Royal Crusader Sword","icon":"inv_sword_27","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25157,"name":"Serpentlord Claymore","icon":"inv_sword_draenei_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25158,"name":"Skeletal Broadsword","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25159,"name":"Thunderstrike Falchion","icon":"inv_sword_49","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25160,"name":"Vengeance Blade","icon":"inv_sword_64","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25161,"name":"Dragon Wing Blade","icon":"inv_sword_2h_blood_c_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25162,"name":"Darkened Broadsword","icon":"inv_sword_58","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25163,"name":"Elexorien Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25164,"name":"Crude Umbrafen Blade","icon":"inv_sword_draenei_07","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25165,"name":"Boulderfist Claymore","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25166,"name":"Mok'Nathal Warblade","icon":"inv_sword_55","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25167,"name":"Nethersteel Claymore","icon":"inv_sword_2h_blood_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25168,"name":"Sha'tari Longsword","icon":"inv_sword_draenei_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25169,"name":"Fel Orc Brute Sword","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25170,"name":"Rattan Bo Staff","icon":"inv_staff_19","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25171,"name":"Straight Hardwood Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25172,"name":"Jinbali Warp-Staff","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25173,"name":"Master's Bo Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25174,"name":"Hanbo Staff","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25175,"name":"Demoniac Longstaff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25176,"name":"Taiji Quarterstaff","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25177,"name":"Tanjo Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25178,"name":"Bata Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25179,"name":"Nguni Stick","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25180,"name":"Calenda Fighting Stick","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25181,"name":"Tapered Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25182,"name":"Crystal-Etched Warstaff","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25183,"name":"Voodoo Hex-Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25184,"name":"Ravager Claws","icon":"spell_nature_stoneclawtotem","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.6,"ilvl":81,"quality":2}, -{"id":25185,"name":"Thrasher Blades","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.6,"ilvl":84,"quality":2}, -{"id":25186,"name":"Vampiric Handscythes","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.6,"ilvl":87,"quality":2}, -{"id":25187,"name":"Shekketh Talons","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":2.6,"ilvl":90,"quality":2}, -{"id":25188,"name":"Spleenripper Claws","icon":"inv_misc_monsterclaw_01","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.6,"ilvl":93,"quality":2}, -{"id":25189,"name":"Ironspine Point","icon":"inv_gauntlets_08","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":2.6,"ilvl":96,"quality":2}, -{"id":25190,"name":"Wight's Claws","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":2.6,"ilvl":99,"quality":2}, -{"id":25191,"name":"Dread Fangs","icon":"inv_misc_monsterclaw_01","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":2.6,"ilvl":102,"quality":2}, -{"id":25192,"name":"Gutrippers","icon":"inv_misc_monsterfang_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":2.6,"ilvl":105,"quality":2}, -{"id":25193,"name":"Deathclaw Talons","icon":"inv_gauntlets_30","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":2.6,"ilvl":108,"quality":2}, -{"id":25194,"name":"Serpent's Fangs","icon":"inv_misc_bone_06","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":2.6,"ilvl":111,"quality":2}, -{"id":25195,"name":"Diamond Tipped Claws","icon":"inv_gauntlets_08","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.6,"ilvl":114,"quality":2}, -{"id":25196,"name":"Boneshredder Claws","icon":"inv_gauntlets_01","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.6,"ilvl":117,"quality":2}, -{"id":25197,"name":"Razor Scythes","icon":"inv_gauntlets_02","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.6,"ilvl":120,"quality":2}, -{"id":25198,"name":"Karaborian Battle Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.6,"ilvl":81,"quality":2}, -{"id":25199,"name":"Knight's War Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.6,"ilvl":84,"quality":2}, -{"id":25200,"name":"Jagged Broadaxe","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":2.6,"ilvl":87,"quality":2}, -{"id":25201,"name":"Reaver's Sickle","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":2.6,"ilvl":90,"quality":2}, -{"id":25202,"name":"Kingly Axe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.6,"ilvl":93,"quality":2}, -{"id":25203,"name":"Chipped Woodchopper","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":2.6,"ilvl":96,"quality":2}, -{"id":25204,"name":"Colossal War Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":2.6,"ilvl":99,"quality":2}, -{"id":25205,"name":"Silvermoon Crescent Axe","icon":"inv_axe_30","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":2.6,"ilvl":102,"quality":2}, -{"id":25206,"name":"Berserker Axe","icon":"inv_axe_32","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":2.6,"ilvl":105,"quality":2}, -{"id":25207,"name":"Shadowmoon Cleaver","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":2.6,"ilvl":108,"quality":2}, -{"id":25208,"name":"Bladespire Broadaxe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":2.6,"ilvl":111,"quality":2}, -{"id":25209,"name":"Amani Tomahawk","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.6,"ilvl":114,"quality":2}, -{"id":25210,"name":"Double-Bladed Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.6,"ilvl":117,"quality":2}, -{"id":25211,"name":"Rockbiter Cutter","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.6,"ilvl":120,"quality":2}, -{"id":25212,"name":"Lucky Strike Axe","icon":"inv_axe_45","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25213,"name":"Fel-Touched Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25214,"name":"Mok'Nathal Battleaxe","icon":"inv_axe_1h_blacksmithing_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25215,"name":"Spiked Battle Axe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25216,"name":"Ogre Splitting Axe","icon":"inv_axe_45","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25217,"name":"Sundering Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25218,"name":"Silver-Edged Axe","icon":"inv_axe_12","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25219,"name":"Rending Claw","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25220,"name":"Glorious War-Axe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25221,"name":"Ghostly Battle Axe","icon":"inv_axe_45","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25222,"name":"Ceremonial Slayer's Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25223,"name":"Windcaller Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25224,"name":"Slavemaster Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25225,"name":"Deepforge Broadaxe","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25226,"name":"War Scythe","icon":"inv_weapon_halberd_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25227,"name":"Sha'tari Longspear","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25228,"name":"Halberd Polearm","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25229,"name":"Partisan Polearm","icon":"inv_sword_44","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25230,"name":"Voulge Blade","icon":"inv_sword_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25231,"name":"Fel-Wrought Halberd","icon":"inv_sword_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25232,"name":"War Glaive","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25233,"name":"Battle Scythe","icon":"inv_weapon_shortblade_10","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25234,"name":"Telaari Polearm","icon":"inv_weapon_shortblade_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25235,"name":"Ethereal-Etched Glaive","icon":"inv_sword_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25236,"name":"Grim Scythe","icon":"inv_sword_59","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25237,"name":"Nether Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25238,"name":"Hellfire War Spear","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25239,"name":"Legend's Glaive","icon":"inv_sword_59","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25240,"name":"Azerothian Longbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":109,"weaponDamageMax":204,"weaponSpeed":2.7,"ilvl":81,"quality":2}, -{"id":25241,"name":"Ashenvale Longbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.7,"ilvl":84,"quality":2}, -{"id":25242,"name":"Telaari Longbow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":2.7,"ilvl":87,"quality":2}, -{"id":25243,"name":"Windtalker Bow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":2.7,"ilvl":90,"quality":2}, -{"id":25244,"name":"Viper Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.7,"ilvl":93,"quality":2}, -{"id":25245,"name":"Razorsong Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2.7,"ilvl":96,"quality":2}, -{"id":25246,"name":"Thalassian Compound Bow","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":2.7,"ilvl":99,"quality":2}, -{"id":25247,"name":"Expert's Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":2.7,"ilvl":102,"quality":2}, -{"id":25248,"name":"Talbuk Hunting Bow","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.7,"ilvl":105,"quality":2}, -{"id":25249,"name":"Ranger's Recurved Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":2.7,"ilvl":108,"quality":2}, -{"id":25250,"name":"Rocslayer Longbow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":2.7,"ilvl":111,"quality":2}, -{"id":25251,"name":"Orc Flatbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":2.7,"ilvl":114,"quality":2}, -{"id":25252,"name":"Dream Catcher Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":156,"weaponDamageMax":290,"weaponSpeed":2.7,"ilvl":117,"quality":2}, -{"id":25253,"name":"Windspear Longbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":160,"weaponDamageMax":297,"weaponSpeed":2.7,"ilvl":120,"quality":2}, -{"id":25254,"name":"Tower Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":109,"weaponDamageMax":204,"weaponSpeed":2.7,"ilvl":81,"quality":2}, -{"id":25255,"name":"Ram's Head Crossbow","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.7,"ilvl":84,"quality":2}, -{"id":25256,"name":"Stronghold Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":2.7,"ilvl":87,"quality":2}, -{"id":25257,"name":"Citadel Crossbow","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":2.7,"ilvl":90,"quality":2}, -{"id":25258,"name":"Repeater Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.7,"ilvl":93,"quality":2}, -{"id":25259,"name":"Collapsible Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2.7,"ilvl":96,"quality":2}, -{"id":25260,"name":"Archer's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":2.7,"ilvl":99,"quality":2}, -{"id":25261,"name":"Mighty Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":2.7,"ilvl":102,"quality":2}, -{"id":25262,"name":"Battle Damaged Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.7,"ilvl":105,"quality":2}, -{"id":25263,"name":"Assassins' Silent Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":2.7,"ilvl":108,"quality":2}, -{"id":25264,"name":"Pocket Ballista","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":2.7,"ilvl":111,"quality":2}, -{"id":25265,"name":"Barreled Crossbow","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":2.7,"ilvl":114,"quality":2}, -{"id":25266,"name":"Well-Balanced Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":156,"weaponDamageMax":290,"weaponSpeed":2.7,"ilvl":117,"quality":2}, -{"id":25267,"name":"Rampant Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":160,"weaponDamageMax":297,"weaponSpeed":2.7,"ilvl":120,"quality":2}, -{"id":25268,"name":"Lead-Slug Shotgun","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":109,"weaponDamageMax":204,"weaponSpeed":2.7,"ilvl":81,"quality":2}, -{"id":25269,"name":"Longbeard Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":2.7,"ilvl":84,"quality":2}, -{"id":25270,"name":"Gnomish Assault Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":2.7,"ilvl":87,"quality":2}, -{"id":25271,"name":"Croc-Hunter's Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":2.7,"ilvl":90,"quality":2}, -{"id":25272,"name":"PC-54 Shotgun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.7,"ilvl":93,"quality":2}, -{"id":25273,"name":"Sawed-Off Shotgun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2.7,"ilvl":96,"quality":2}, -{"id":25274,"name":"Cliffjumper Shotgun","icon":"inv_musket_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":2.7,"ilvl":99,"quality":2}, -{"id":25275,"name":"Dragonbreath Musket","icon":"inv_musket_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":2.7,"ilvl":102,"quality":2}, -{"id":25276,"name":"Tauren Runed Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.7,"ilvl":105,"quality":2}, -{"id":25277,"name":"Sporting Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":2.7,"ilvl":108,"quality":2}, -{"id":25278,"name":"Nesingwary Longrifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":2.7,"ilvl":111,"quality":2}, -{"id":25279,"name":"Sen'jin Longrifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":2.7,"ilvl":114,"quality":2}, -{"id":25280,"name":"Game Hunter Musket","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":156,"weaponDamageMax":290,"weaponSpeed":2.7,"ilvl":117,"quality":2}, -{"id":25281,"name":"Big-Boar Battle Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":160,"weaponDamageMax":297,"weaponSpeed":2.7,"ilvl":120,"quality":2}, -{"id":25282,"name":"Mahogany Wand","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.7,"ilvl":81,"quality":2}, -{"id":25283,"name":"Crystallized Ebony Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":91,"weaponDamageMax":169,"weaponSpeed":1.7,"ilvl":84,"quality":2}, -{"id":25284,"name":"Purpleheart Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":94,"weaponDamageMax":175,"weaponSpeed":1.7,"ilvl":87,"quality":2}, -{"id":25285,"name":"Bloodwood Wand","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":90,"quality":2}, -{"id":25286,"name":"Yew Wand","icon":"inv_misc_branch_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":93,"quality":2}, -{"id":25287,"name":"Magician's Wand","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":104,"weaponDamageMax":193,"weaponSpeed":1.7,"ilvl":96,"quality":2}, -{"id":25288,"name":"Conjurer's Wand","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.7,"ilvl":99,"quality":2}, -{"id":25289,"name":"Majestic Wand","icon":"inv_wand_08","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":102,"quality":2}, -{"id":25290,"name":"Solitaire Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":117,"weaponDamageMax":219,"weaponSpeed":1.7,"ilvl":105,"quality":2}, -{"id":25291,"name":"Nobility Torch","icon":"inv_misc_gem_pearl_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":108,"quality":2}, -{"id":25292,"name":"Mechano-Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":1.7,"ilvl":111,"quality":2}, -{"id":25293,"name":"Draenethyst Wand","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":130,"weaponDamageMax":242,"weaponSpeed":1.7,"ilvl":114,"quality":2}, -{"id":25294,"name":"Dragonscale Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":133,"weaponDamageMax":249,"weaponSpeed":1.7,"ilvl":117,"quality":2}, -{"id":25295,"name":"Flawless Wand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":1.7,"ilvl":120,"quality":2}, -{"id":25296,"name":"Absorption Dagger","icon":"inv_sword_bloodelf_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.7,"ilvl":81,"quality":2}, -{"id":25297,"name":"Tuning Knife","icon":"inv_sword_13","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":1.7,"ilvl":84,"quality":2}, -{"id":25298,"name":"Combustion Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.7,"ilvl":87,"quality":2}, -{"id":25299,"name":"Siphoning Dagger","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":56,"weaponDamageMax":106,"weaponSpeed":1.7,"ilvl":90,"quality":2}, -{"id":25300,"name":"Lightning Dagger","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":1.7,"ilvl":93,"quality":2}, -{"id":25301,"name":"Shattering Dagger","icon":"inv_sword_2h_blacksmithing_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.7,"ilvl":96,"quality":2}, -{"id":25302,"name":"Soul-Drain Dagger","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":61,"weaponDamageMax":115,"weaponSpeed":1.7,"ilvl":99,"quality":2}, -{"id":25303,"name":"Amplifying Blade","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":1.7,"ilvl":102,"quality":2}, -{"id":25304,"name":"Destructo-Blade","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":1.7,"ilvl":105,"quality":2}, -{"id":25305,"name":"Elemental Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":1.7,"ilvl":108,"quality":2}, -{"id":25306,"name":"Permafrost Dagger","icon":"inv_sword_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.7,"ilvl":111,"quality":2}, -{"id":25307,"name":"Shadow Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.7,"ilvl":114,"quality":2}, -{"id":25308,"name":"Thunder Spike","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.7,"ilvl":117,"quality":2}, -{"id":25309,"name":"Warpdagger","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.7,"ilvl":120,"quality":2}, -{"id":25310,"name":"Naaru Lightmace","icon":"inv_mace_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.7,"ilvl":81,"quality":2}, -{"id":25311,"name":"Revitalizing Hammer","icon":"inv_mace_35","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":1.7,"ilvl":84,"quality":2}, -{"id":25312,"name":"Glorious Scepter","icon":"inv_misc_orb_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.7,"ilvl":87,"quality":2}, -{"id":25313,"name":"Cold-Iron Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":56,"weaponDamageMax":106,"weaponSpeed":1.7,"ilvl":90,"quality":2}, -{"id":25314,"name":"Ceremonial Hammer","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":1.7,"ilvl":93,"quality":2}, -{"id":25315,"name":"Restorative Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.7,"ilvl":96,"quality":2}, -{"id":25316,"name":"Spirit-Clad Mace","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":61,"weaponDamageMax":115,"weaponSpeed":1.7,"ilvl":99,"quality":2}, -{"id":25317,"name":"Lesser Sledgemace","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":64,"weaponDamageMax":119,"weaponSpeed":1.7,"ilvl":102,"quality":2}, -{"id":25318,"name":"Ancestral Hammer","icon":"inv_mace_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":1.7,"ilvl":105,"quality":2}, -{"id":25319,"name":"Tranquility Mace","icon":"inv_mace_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":1.7,"ilvl":108,"quality":2}, -{"id":25320,"name":"Queen's Insignia","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.7,"ilvl":111,"quality":2}, -{"id":25321,"name":"Divine Hammer","icon":"inv_mace_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.7,"ilvl":114,"quality":2}, -{"id":25322,"name":"Lordly Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.7,"ilvl":117,"quality":2}, -{"id":25323,"name":"Ascendant's Scepter","icon":"inv_mace_47","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.7,"ilvl":120,"quality":2}, -{"id":25324,"name":"Angerstaff","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":3.5,"ilvl":81,"quality":2}, -{"id":25325,"name":"Brutal Scar-Limb","icon":"inv_staff_26","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":166,"weaponDamageMax":250,"weaponSpeed":3.5,"ilvl":84,"quality":2}, -{"id":25326,"name":"Primal Lore-Staff","icon":"inv_staff_17","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":170,"weaponDamageMax":256,"weaponSpeed":3.5,"ilvl":87,"quality":2}, -{"id":25327,"name":"Frenzied Staff","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":174,"weaponDamageMax":261,"weaponSpeed":3.5,"ilvl":90,"quality":2}, -{"id":25328,"name":"Faerie-Kind Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2}, -{"id":25329,"name":"Tranquility Staff","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3.5,"ilvl":96,"quality":2}, -{"id":25330,"name":"Starshine Staff","icon":"inv_wand_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2}, -{"id":25331,"name":"Vengeance Staff","icon":"inv_staff_39","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":196,"weaponDamageMax":294,"weaponSpeed":3.5,"ilvl":102,"quality":2}, -{"id":25332,"name":"Reflective Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":3.5,"ilvl":105,"quality":2}, -{"id":25333,"name":"Purification Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":210,"weaponDamageMax":316,"weaponSpeed":3.5,"ilvl":108,"quality":2}, -{"id":25334,"name":"Intimidating Greatstaff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":217,"weaponDamageMax":327,"weaponSpeed":3.5,"ilvl":111,"quality":2}, -{"id":25335,"name":"Feral Warp-Staff","icon":"inv_staff_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2}, -{"id":25336,"name":"Splintering Greatstaff","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.5,"ilvl":117,"quality":2}, -{"id":25337,"name":"Swarming Sting-Staff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.5,"ilvl":120,"quality":2}, -{"id":25338,"name":"Loosely Threaded Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25339,"name":"Loosely Threaded Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25340,"name":"Loosely Threaded Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25341,"name":"Dilapidated Cloth Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25342,"name":"Dilapidated Cloth Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25343,"name":"Dilapidated Cloth Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25344,"name":"Dilapidated Cloth Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25345,"name":"Dilapidated Cloth Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25346,"name":"Dilapidated Cloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25347,"name":"Dilapidated Cloth Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25348,"name":"Dilapidated Cloth Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25349,"name":"Moldy Leather Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25350,"name":"Moldy Leather Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25351,"name":"Moldy Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25352,"name":"Moldy Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25353,"name":"Moldy Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25354,"name":"Moldy Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25355,"name":"Moldy Leather Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25356,"name":"Moldy Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25357,"name":"Decaying Leather Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25358,"name":"Decaying Leather Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25359,"name":"Decaying Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25360,"name":"Decaying Leather Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25361,"name":"Decaying Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25362,"name":"Decaying Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25363,"name":"Decaying Leather Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25364,"name":"Decaying Leather Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25365,"name":"Eroded Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25366,"name":"Eroded Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25367,"name":"Eroded Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25368,"name":"Eroded Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25369,"name":"Eroded Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25370,"name":"Eroded Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25371,"name":"Eroded Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25372,"name":"Eroded Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25373,"name":"Corroded Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25374,"name":"Corroded Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25375,"name":"Corroded Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25376,"name":"Corroded Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25377,"name":"Corroded Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25378,"name":"Corroded Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25379,"name":"Corroded Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25380,"name":"Corroded Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25381,"name":"Tarnished Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25382,"name":"Tarnished Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25383,"name":"Tarnished Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25384,"name":"Tarnished Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25385,"name":"Tarnished Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25386,"name":"Tarnished Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25387,"name":"Tarnished Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25388,"name":"Tarnished Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66}, -{"id":25389,"name":"Deteriorating Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25390,"name":"Deteriorating Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25391,"name":"Deteriorating Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25392,"name":"Deteriorating Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25393,"name":"Deteriorating Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25394,"name":"Deteriorating Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25395,"name":"Deteriorating Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25396,"name":"Deteriorating Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":72}, -{"id":25397,"name":"Eroded Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":1.9,"ilvl":69}, -{"id":25398,"name":"Stone Reaper","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":93,"weaponSpeed":2.5,"ilvl":69}, -{"id":25399,"name":"Deteriorating Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":68,"weaponSpeed":2.2,"ilvl":69}, -{"id":25400,"name":"Tarnished Claymore","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":108,"weaponSpeed":2.9,"ilvl":69}, -{"id":25401,"name":"Corroded Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":71,"weaponSpeed":2.3,"ilvl":69}, -{"id":25402,"name":"The Stoppable Force","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":134,"weaponSpeed":3.6,"ilvl":69}, -{"id":25403,"name":"Sharpened Stilleto","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":50,"weaponSpeed":1.6,"ilvl":69}, -{"id":25404,"name":"Dense War Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":115,"weaponSpeed":3.1,"ilvl":69}, -{"id":25405,"name":"Rusted Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.8,"ilvl":69}, -{"id":25406,"name":"Broken Longbow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.5,"ilvl":69}, -{"id":25407,"name":"The Movable Object","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":69}, -{"id":25438,"name":"Malachite Pendant","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":32178}},{"crafted":{"profession":7,"spellId":32178}}]}, -{"id":25439,"name":"Tigerseye Band","icon":"inv_jewelry_ring_21","type":11,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":32179}},{"crafted":{"profession":7,"spellId":32179}}]}, -{"id":25464,"name":"Blood-Tempered Ranseur","icon":"inv_spear_10","type":13,"weaponType":6,"handType":4,"stats":[8,0,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.4,"ilvl":27,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":9710,"name":"The Blood-Tempered Ranseur"}}]}, -{"id":25478,"name":"Defender's Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[17,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9490,"name":"The Rock Flayer Matriarch"}}],"factionRestriction":1}, -{"id":25479,"name":"Boots of the Earthcaller","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9490,"name":"The Rock Flayer Matriarch"}}],"factionRestriction":1}, -{"id":25480,"name":"Wastewalker's Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,33,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9490,"name":"The Rock Flayer Matriarch"}}],"factionRestriction":1}, -{"id":25482,"name":"Venn'ren's Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,26,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9466,"name":"Wanted: Blacktalon the Savage"}}],"factionRestriction":2}, -{"id":25483,"name":"Fine Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,31,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9466,"name":"Wanted: Blacktalon the Savage"}}],"factionRestriction":2}, -{"id":25484,"name":"Telhamat Pendant","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9427,"name":"Cleansing the Waters"}}],"factionRestriction":1}, -{"id":25485,"name":"Amaan's Signet","icon":"inv_jewelry_ring_03","type":11,"stats":[18,0,15,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9427,"name":"Cleansing the Waters"}}],"factionRestriction":1}, -{"id":25486,"name":"Demonslayer's Wristguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,13,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9427,"name":"Cleansing the Waters"}}],"factionRestriction":1}, -{"id":25487,"name":"Wind Dancer's Pendant","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9418,"name":"Avruu's Orb"}}]}, -{"id":25488,"name":"Signet of Aeranas","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,18,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9418,"name":"Avruu's Orb"}}]}, -{"id":25489,"name":"Windtalker's Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,23,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9418,"name":"Avruu's Orb"}}]}, -{"id":25492,"name":"Earthcaller's Mace","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":2.5,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9447,"name":"Administering the Salve"}}],"factionRestriction":2}, -{"id":25494,"name":"Totemic Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,50,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":260,"weaponSpeed":3.4,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9447,"name":"Administering the Salve"}}],"factionRestriction":2}, -{"id":25495,"name":"Wolfrider's Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,10,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":115,"weaponSpeed":1.8,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9447,"name":"Administering the Salve"}}],"factionRestriction":2}, -{"id":25496,"name":"Mag'har Bow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":124,"weaponDamageMax":232,"weaponSpeed":2.8,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9447,"name":"Administering the Salve"}}],"factionRestriction":2}, -{"id":25499,"name":"Felblood Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9370,"name":"The Cleansing Must Be Stopped"}}],"factionRestriction":2}, -{"id":25500,"name":"Felforce Medallion","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9370,"name":"The Cleansing Must Be Stopped"}}],"factionRestriction":2}, -{"id":25501,"name":"Lost Anchorite's Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,20,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9370,"name":"The Cleansing Must Be Stopped"}}],"factionRestriction":2}, -{"id":25502,"name":"Lightbearer's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,0,36,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9391,"name":"Marking the Path"}}],"factionRestriction":2}, -{"id":25503,"name":"Flamehandler's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,17,16,0,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9391,"name":"Marking the Path"}}],"factionRestriction":2}, -{"id":25504,"name":"Pilgrim's Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,16,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9391,"name":"Marking the Path"}}],"factionRestriction":2}, -{"id":25505,"name":"Carinda's Wedding Band","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9472,"name":"Arelion's Mistress"}}],"factionRestriction":2}, -{"id":25506,"name":"Vindicator's Chain Helm","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,23,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9545,"name":"The Seer's Relic"}}],"factionRestriction":1}, -{"id":25507,"name":"Leggings of Telhamat","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,22,33,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9545,"name":"The Seer's Relic"}}],"factionRestriction":1}, -{"id":25508,"name":"Omenai Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,42,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9545,"name":"The Seer's Relic"}}],"factionRestriction":1}, -{"id":25510,"name":"Ceremonial Robes","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,42,22,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25511,"name":"Thunderforge Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,42,19,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25512,"name":"Tribal Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,19,42,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25513,"name":"Clefthoof Hide Mask","icon":"inv_misc_bandana_01","type":1,"armorType":2,"stats":[0,22,33,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25514,"name":"Ikeyen's Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,36,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":9788,"name":"A Damp, Dark Place"}}]}, -{"id":25515,"name":"Mud Encrusted Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":9788,"name":"A Damp, Dark Place"}}]}, -{"id":25516,"name":"Ikeyen's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,17,16,10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":9788,"name":"A Damp, Dark Place"}}]}, -{"id":25517,"name":"Preserver's Medallion","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9752,"name":"Escape from Umbrafen"}}]}, -{"id":25518,"name":"Explorer's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,35,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9752,"name":"Escape from Umbrafen"}}]}, -{"id":25519,"name":"Warden's Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":2.8,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9752,"name":"Escape from Umbrafen"}}]}, -{"id":25522,"name":"Marshstrider's Spaulders","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[22,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25523,"name":"Windcaller's Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,26,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25524,"name":"Cenarion Expedition Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,26,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25525,"name":"Zangar Epaulets","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,18,17,0,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9709,"name":"Stealing Back the Mushrooms"}}]}, -{"id":25530,"name":"Helm of Natural Purity","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[23,0,51,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9709,"name":"Stealing Back the Mushrooms"}}]}, -{"id":25534,"name":"Marsh Survivalist's Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,18,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9709,"name":"Stealing Back the Mushrooms"}}]}, -{"id":25536,"name":"Sporeggar Smasher","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,27,0,12,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.1,"ilvl":94,"quality":3,"sources":[{"quest":{"id":9729,"name":"Fhwoor Smash!"}}]}, -{"id":25537,"name":"Hewing Axe of the Marsh","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[29,28,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":265,"weaponSpeed":3,"ilvl":94,"quality":3,"sources":[{"quest":{"id":9729,"name":"Fhwoor Smash!"}}]}, -{"id":25538,"name":"Sporeling Claw","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,12,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":2.5,"ilvl":94,"quality":3,"sources":[{"quest":{"id":9729,"name":"Fhwoor Smash!"}}]}, -{"id":25540,"name":"Dark Cloak of the Marsh","icon":"inv_misc_cape_20","type":4,"stats":[0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":25541,"name":"Cenarion Ring of Casting","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,36,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":25542,"name":"Lucky Circle of the Fool","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,20,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9951,"name":"It's Watching You!"}}]}, -{"id":25543,"name":"Talbuk Sticker","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":1,"stats":[0,0,24,0,0,0,10,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":1.5,"ilvl":105,"quality":2,"sources":[{"quest":{"id":9859,"name":"Talbuk Mastery"}}]}, -{"id":25544,"name":"Zerid's Vintage Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,8,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.7,"ilvl":105,"quality":2,"sources":[{"quest":{"id":9900,"name":"Gava'xi"}}]}, -{"id":25545,"name":"Talbuk Dirk","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,11,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.8,"ilvl":105,"quality":2,"sources":[{"quest":{"id":9859,"name":"Talbuk Mastery"}}]}, -{"id":25553,"name":"Exodar Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"sources":[{"quest":{"id":9311,"name":"Blood Elf Spy"}}],"factionRestriction":1}, -{"id":25556,"name":"Oversized Ogre Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,46,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9810,"name":"The Spirit Polluted"}}]}, -{"id":25557,"name":"Salvaged Ango'rosh Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[19,0,27,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9810,"name":"The Spirit Polluted"}}]}, -{"id":25558,"name":"Ango'rosh Souleater's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,47,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9810,"name":"The Spirit Polluted"}}]}, -{"id":25559,"name":"Lo'ap's Tunic of Muck Diving","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,19,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":79,"quality":2,"sources":[{"quest":{"id":9815,"name":"Muck Diving"}}]}, -{"id":25560,"name":"Lo'ap's Muck Diving Pads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,13,26,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":79,"quality":2,"sources":[{"quest":{"id":9815,"name":"Muck Diving"}}]}, -{"id":25561,"name":"Muck-Ridden Galoshes","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[15,0,21,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":79,"quality":2,"sources":[{"quest":{"id":9815,"name":"Muck Diving"}}]}, -{"id":25562,"name":"Earthen Mark of Razing","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,23,15,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{"id":9853,"name":"Gurok the Usurper"}}]}, -{"id":25563,"name":"Earthen Mark of Power","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,20,10,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{"id":9853,"name":"Gurok the Usurper"}}]}, -{"id":25564,"name":"Earthen Mark of Health","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,20,10,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{"id":9853,"name":"Gurok the Usurper"}}]}, -{"id":25565,"name":"Spaulders of the Ring","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,18,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9862,"name":"Murkblood Corrupters"}}]}, -{"id":25566,"name":"Judicator's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,0,36,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9862,"name":"Murkblood Corrupters"}}]}, -{"id":25567,"name":"Cord of the Ring","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,42,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9862,"name":"Murkblood Corrupters"}}]}, -{"id":25568,"name":"Warcaster's Scaled Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,50,22,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25569,"name":"Murkblood Avenger's Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[26,25,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25570,"name":"Melia's Lustrous Crown","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,50,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25574,"name":"Greenkeeper's Pantaloons","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,41,22,15,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9866,"name":"He Will Walk The Earth..."}}],"factionRestriction":2}, -{"id":25575,"name":"Thunderbringer's Guard","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9866,"name":"He Will Walk The Earth..."}}],"factionRestriction":2}, -{"id":25576,"name":"Smuggler's Mitts","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9866,"name":"He Will Walk The Earth..."}}],"factionRestriction":2}, -{"id":25577,"name":"Greenblood Pantaloons","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,41,22,15,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9878,"name":"Solving the Problem"}}],"factionRestriction":1}, -{"id":25578,"name":"Caustic Feelers","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9878,"name":"Solving the Problem"}}],"factionRestriction":1}, -{"id":25579,"name":"Dark Shaman's Cover","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9878,"name":"Solving the Problem"}}],"factionRestriction":1}, -{"id":25583,"name":"Eighty Silver Links","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25584,"name":"Murkblood Oven Mitts","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,16,36,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25585,"name":"Murkblood Avenger's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[26,0,39,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25589,"name":"Clefthoof Helm","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[22,22,33,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9851,"name":"Clefthoof Mastery"}}]}, -{"id":25591,"name":"Clefthoof Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9851,"name":"Clefthoof Mastery"}}]}, -{"id":25592,"name":"Clefthoof Wristguards","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,21,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9851,"name":"Clefthoof Mastery"}}]}, -{"id":25593,"name":"Windroc Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[19,0,28,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9856,"name":"Windroc Mastery"}}]}, -{"id":25594,"name":"Windroc Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,19,27,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9856,"name":"Windroc Mastery"}}]}, -{"id":25595,"name":"Windroc Shroud","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,41,22,14,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9856,"name":"Windroc Mastery"}}]}, -{"id":25597,"name":"Vindicator's Cinch","icon":"inv_belt_15","type":8,"armorType":4,"stats":[16,0,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9783,"name":"An Unnatural Drought"}}],"factionRestriction":1}, -{"id":25598,"name":"Fen Strider's Bracer","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,12,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9783,"name":"An Unnatural Drought"}}],"factionRestriction":1}, -{"id":25599,"name":"Explorer's Bands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,18,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9783,"name":"An Unnatural Drought"}}],"factionRestriction":1}, -{"id":25600,"name":"Bog Walker's Bands","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,18,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9772,"name":"Jyoba's Report"}}],"factionRestriction":2}, -{"id":25601,"name":"Murk-Darkened Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,12,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9772,"name":"Jyoba's Report"}}],"factionRestriction":2}, -{"id":25602,"name":"Bog Walker's Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[16,0,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9772,"name":"Jyoba's Report"}}],"factionRestriction":2}, -{"id":25603,"name":"Lantresor's Warblade","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[42,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3,"ilvl":97,"quality":3,"sources":[{"quest":{"id":9933,"name":"Message to Telaar"}}],"factionRestriction":1}, -{"id":25605,"name":"Burning Blade Devotee's Cinch","icon":"inv_belt_07","type":8,"armorType":2,"stats":[0,0,33,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":9933,"name":"Message to Telaar"}}],"factionRestriction":1}, -{"id":25606,"name":"Burning Blade Cultist Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,24,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":9933,"name":"Message to Telaar"}}],"factionRestriction":1}, -{"id":25607,"name":"Burning Blade Cultist Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,24,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":9934,"name":"Message to Garadar"}}],"factionRestriction":2}, -{"id":25608,"name":"Lantresor's Warblade","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[42,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3,"ilvl":97,"quality":3,"sources":[{"quest":{"id":9934,"name":"Message to Garadar"}}],"factionRestriction":2}, -{"id":25609,"name":"Burning Blade Devotee's Cinch","icon":"inv_belt_07","type":8,"armorType":2,"stats":[0,0,33,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":9934,"name":"Message to Garadar"}}],"factionRestriction":2}, -{"id":25610,"name":"Fen Strider's Footguards","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[14,0,21,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":2,"sources":[{"quest":{"id":9816,"name":"Have You Ever Seen One of These?"}}],"factionRestriction":2}, -{"id":25611,"name":"The Witch Doctor's Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,32,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":2,"sources":[{"quest":{"id":9816,"name":"Have You Ever Seen One of These?"}}],"factionRestriction":2}, -{"id":25612,"name":"Daggerfen Mail","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,17,37,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"sources":[{"quest":{"id":9816,"name":"Have You Ever Seen One of These?"}}],"factionRestriction":2}, -{"id":25613,"name":"Feralfen Mystic's Handwraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,34,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9803,"name":"Messenger to the Feralfen"}}],"factionRestriction":1}, -{"id":25614,"name":"Feralfen Beastmaster's Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,21,46,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9803,"name":"Messenger to the Feralfen"}}],"factionRestriction":1}, -{"id":25615,"name":"Feralfen Champion's Boots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[18,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9803,"name":"Messenger to the Feralfen"}}],"factionRestriction":1}, -{"id":25616,"name":"Tim's Trusty Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,23,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9848,"name":"Secrets of the Daggerfen"}}],"factionRestriction":1}, -{"id":25617,"name":"Captain Krosh's Crash Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,23,43,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9823,"name":"Us or Them"}}],"factionRestriction":2}, -{"id":25618,"name":"Telaar Courier's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[13,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9839,"name":"Overlord Gorefist"}}],"factionRestriction":1}, -{"id":25619,"name":"Glowing Crystal Insignia","icon":"inv_jewelry_necklace_28","type":12,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9839,"name":"Overlord Gorefist"}}],"factionRestriction":1}, -{"id":25620,"name":"Ancient Crystal Talisman","icon":"inv_jewelry_necklace_28","type":12,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9847,"name":"A Spirit Ally?"}}],"factionRestriction":2}, -{"id":25621,"name":"Serpent Spirit's Drape","icon":"inv_misc_cape_02","type":4,"stats":[13,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9847,"name":"A Spirit Ally?"}}],"factionRestriction":2}, -{"id":25622,"name":"Staff of the Four Golden Coins","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,24,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":201,"weaponDamageMax":303,"weaponSpeed":3.6,"ilvl":102,"quality":2,"sources":[{"quest":{}}]}, -{"id":25623,"name":"Bracers of the Battle Cleric","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[12,0,16,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{}}]}, -{"id":25624,"name":"King's Bulwark","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{}}]}, -{"id":25628,"name":"Ogre Mauler's Badge","icon":"inv_jewelry_talisman_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9916,"name":"Bleeding Hollow Supply Crates"}}],"factionRestriction":2}, -{"id":25629,"name":"Ogre Handler's Shooter","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":102,"quality":2,"sources":[{"quest":{"id":9916,"name":"Bleeding Hollow Supply Crates"}}],"factionRestriction":2}, -{"id":25630,"name":"Ogre Basher's Slippers","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,35,18,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9916,"name":"Bleeding Hollow Supply Crates"}}],"factionRestriction":2}, -{"id":25631,"name":"Boots of the Specialist","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,36,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9924,"name":"Corki's Gone Missing Again!"}}],"factionRestriction":1}, -{"id":25632,"name":"Wand of Happiness","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":102,"quality":2,"sources":[{"quest":{"id":9924,"name":"Corki's Gone Missing Again!"}}],"factionRestriction":1}, -{"id":25633,"name":"Uniting Charm","icon":"inv_jewelry_talisman_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9924,"name":"Corki's Gone Missing Again!"}}],"factionRestriction":1}, -{"id":25634,"name":"Oshu'gun Relic","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9900,"name":"Gava'xi"}}]}, -{"id":25636,"name":"Talbuk Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,14,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9859,"name":"Talbuk Mastery"}}]}, -{"id":25637,"name":"Ethereal Sash","icon":"inv_belt_32","type":8,"armorType":1,"stats":[0,0,36,13,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":9900,"name":"Gava'xi"}}]}, -{"id":25639,"name":"Hemet's Elekk Gun","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":2.5,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":25640,"name":"Nesingwary Safari Stick","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":1.8,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":25643,"name":"Harold's Rejuvenating Broach","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,14,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":25644,"name":"Blessed Book of Nagrand","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,14,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":25645,"name":"Totem of the Plains","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,14,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":25653,"name":"Riding Crop","icon":"inv_misc_crop_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32461}},{"crafted":{"profession":8,"spellId":32461}}]}, -{"id":25654,"name":"Felscale Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,20,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"setName":"Felscale Armor","setId":611,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32462}},{"crafted":{"profession":8,"spellId":32462}}]}, -{"id":25655,"name":"Felscale Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,22,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Felscale Armor","setId":611,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32463}},{"crafted":{"profession":8,"spellId":32463}}]}, -{"id":25656,"name":"Felscale Pants","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,31,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"setName":"Felscale Armor","setId":611,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32464}},{"crafted":{"profession":8,"spellId":32464}}]}, -{"id":25657,"name":"Felscale Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,36,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"setName":"Felscale Armor","setId":611,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32465}},{"crafted":{"profession":8,"spellId":32465}}]}, -{"id":25659,"name":"Scaled Draenic Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,30,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"setName":"Scaled Draenic Armor","setId":612,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32469}},{"crafted":{"profession":8,"spellId":32469}}]}, -{"id":25660,"name":"Scaled Draenic Vest","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"setName":"Scaled Draenic Armor","setId":612,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32468}},{"crafted":{"profession":8,"spellId":32468}}]}, -{"id":25661,"name":"Scaled Draenic Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,24,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Scaled Draenic Armor","setId":612,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32467}},{"crafted":{"profession":8,"spellId":32467}}]}, -{"id":25662,"name":"Scaled Draenic Pants","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,30,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"setName":"Scaled Draenic Armor","setId":612,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32466}},{"crafted":{"profession":8,"spellId":32466}}]}, -{"id":25668,"name":"Thick Draenic Boots","icon":"inv_boots_chain_01","type":10,"armorType":2,"stats":[0,18,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"setName":"Thick Draenic Armor","setId":613,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32472}},{"crafted":{"profession":8,"spellId":32472}}]}, -{"id":25669,"name":"Thick Draenic Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,15,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"setName":"Thick Draenic Armor","setId":613,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32470}},{"crafted":{"profession":8,"spellId":32470}}]}, -{"id":25670,"name":"Thick Draenic Pants","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,23,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"setName":"Thick Draenic Armor","setId":613,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32471}},{"crafted":{"profession":8,"spellId":32471}}]}, -{"id":25671,"name":"Thick Draenic Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,26,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"setName":"Thick Draenic Armor","setId":613,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32473}},{"crafted":{"profession":8,"spellId":32473}}]}, -{"id":25673,"name":"Wild Draenish Boots","icon":"inv_boots_chain_01","type":10,"armorType":2,"stats":[0,0,18,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"setName":"Wild Draenish Armor","setId":614,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32478}},{"crafted":{"profession":8,"spellId":32478}}]}, -{"id":25674,"name":"Wild Draenish Gloves","icon":"inv_gauntlets_04","type":7,"armorType":2,"stats":[0,0,21,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"setName":"Wild Draenish Armor","setId":614,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32479}},{"crafted":{"profession":8,"spellId":32479}}]}, -{"id":25675,"name":"Wild Draenish Leggings","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,0,0,30,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"setName":"Wild Draenish Armor","setId":614,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32480}},{"crafted":{"profession":8,"spellId":32480}}]}, -{"id":25676,"name":"Wild Draenish Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,31,32,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"setName":"Wild Draenish Armor","setId":614,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32481}},{"crafted":{"profession":8,"spellId":32481}}]}, -{"id":25680,"name":"Stylin' Purple Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,48,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32485}},{"crafted":{"profession":8,"spellId":32485}}]}, -{"id":25681,"name":"Stylin' Adventure Hat","icon":"inv_helmet_51","type":1,"armorType":3,"stats":[0,0,0,43,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32487}},{"crafted":{"profession":8,"spellId":32487}}]}, -{"id":25682,"name":"Stylin' Jungle Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,24,61,16,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32489}},{"crafted":{"profession":8,"spellId":32489}}]}, -{"id":25683,"name":"Stylin' Crimson Hat","icon":"inv_helmet_50","type":1,"armorType":3,"stats":[0,48,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32488}},{"crafted":{"profession":8,"spellId":32488}}]}, -{"id":25685,"name":"Fel Leather Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,18,0,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32490}},{"crafted":{"profession":8,"spellId":32490}}]}, -{"id":25686,"name":"Fel Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,18,0,0,0,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32493}},{"crafted":{"profession":8,"spellId":32493}}]}, -{"id":25687,"name":"Fel Leather Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,26,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32494}},{"crafted":{"profession":8,"spellId":32494}}]}, -{"id":25689,"name":"Heavy Clefthoof Vest","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32495}},{"crafted":{"profession":8,"spellId":32495}}]}, -{"id":25690,"name":"Heavy Clefthoof Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,33,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32496}},{"crafted":{"profession":8,"spellId":32496}}]}, -{"id":25691,"name":"Heavy Clefthoof Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":3,"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32497}},{"crafted":{"profession":8,"spellId":32497}}]}, -{"id":25692,"name":"Netherfury Leggings","icon":"inv_pants_plate_12","type":9,"armorType":3,"stats":[0,0,37,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32502}},{"crafted":{"profession":8,"spellId":32502}}]}, -{"id":25693,"name":"Netherfury Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,36,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32503}},{"crafted":{"profession":8,"spellId":32503}}]}, -{"id":25694,"name":"Netherfury Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,27,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32501}},{"crafted":{"profession":8,"spellId":32501}}]}, -{"id":25695,"name":"Felstalker Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,25,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32498}},{"crafted":{"profession":8,"spellId":32498}}]}, -{"id":25696,"name":"Felstalker Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,26,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32500}},{"crafted":{"profession":8,"spellId":32500}}]}, -{"id":25697,"name":"Felstalker Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,19,27,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32499}},{"crafted":{"profession":8,"spellId":32499}}]}, -{"id":25701,"name":"Breastplate of Retribution","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[23,0,50,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25702,"name":"Scaled Legs of Ruination","icon":"inv_pants_04","type":9,"armorType":3,"stats":[0,0,51,23,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25710,"name":"Moonkin Headdress","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,45,20,20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25711,"name":"Deadly Borer Leggings","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,42,23,15,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25712,"name":"Perfectly Balanced Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,15,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25713,"name":"Holy Healing Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,23,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":25714,"name":"Crimson Pendant of Clarity","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,23,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":25715,"name":"Jade Warrior Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":4,"stats":[20,19,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":25716,"name":"Handguards of Precision","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":25717,"name":"Sure-Step Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":25718,"name":"Mantle of Magical Might","icon":"inv_shoulder_14","type":3,"armorType":1,"stats":[0,0,31,16,10,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":25759,"name":"Mogor's Anointing Club","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":1,"stats":[0,0,29,0,12,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":171,"weaponSpeed":2.1,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25760,"name":"Battle Mage's Baton","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,0,30,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":206,"weaponSpeed":2.1,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25761,"name":"Staff of Beasts","icon":"inv_staff_34","type":13,"weaponType":8,"handType":4,"stats":[0,30,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":215,"weaponDamageMax":323,"weaponSpeed":3.3,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25762,"name":"Honed Voidaxe","icon":"inv_axe_49","type":13,"weaponType":1,"handType":4,"stats":[31,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":221,"weaponDamageMax":333,"weaponSpeed":3.4,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25763,"name":"Ceremonial Warmaul Blood-Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":1.7,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25764,"name":"Mag'hari Fury Brand","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":204,"weaponSpeed":2.5,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9977,"name":"The Ring of Blood: The Final Challenge"}}]}, -{"id":25772,"name":"Crystalline Kopesh","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,13,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":165,"weaponSpeed":2.1,"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25773,"name":"Hungering Bone Cudgel","icon":"inv_mace_09","type":13,"weaponType":4,"handType":2,"stats":[0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.6,"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25774,"name":"Azure Lightblade","icon":"inv_weapon_shortblade_21","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,12,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":109,"weaponSpeed":1.5,"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25775,"name":"Ogre Slayer's Band","icon":"inv_jewelry_ring_02","type":11,"stats":[17,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25776,"name":"Ogre Slayer's Pendant","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,37,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25777,"name":"Ogre Slayer's Cover","icon":"inv_misc_cape_16","type":4,"stats":[0,0,27,17,11,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":25778,"name":"Manacles of Remembrance","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,15,14,9,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25779,"name":"Warmaul Slayer's Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25780,"name":"Warmaul Defender's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[14,0,21,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":25781,"name":"Segmented Breastplate","icon":"inv_chest_cloth_05","type":5,"armorType":4,"stats":[23,0,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9376,"name":"A Pilgrim's Plight"}}],"factionRestriction":2}, -{"id":25782,"name":"Sunstrider Legguards","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,22,33,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9376,"name":"A Pilgrim's Plight"}}],"factionRestriction":2}, -{"id":25783,"name":"Pilgrim's Cover","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,24,22,15,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9376,"name":"A Pilgrim's Plight"}}],"factionRestriction":2}, -{"id":25784,"name":"Imbued Chain","icon":"inv_jewelry_necklace_06","type":2,"stats":[12,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":9355,"name":"A Job for an Intelligent Man"}}]}, -{"id":25785,"name":"Adept's Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,17,11,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"unique":true,"sources":[{"quest":{"id":9355,"name":"A Job for an Intelligent Man"}}]}, -{"id":25786,"name":"Hypnotist's Watch","icon":"inv_misc_gem_variety_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9351,"name":"Voidwalkers Gone Wild"}}]}, -{"id":25787,"name":"Charm of Alacrity","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"sources":[{"quest":{"id":9351,"name":"Voidwalkers Gone Wild"}}]}, -{"id":25788,"name":"Dauntless Handguards","icon":"inv_gauntlets_12","type":7,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"sources":[{"quest":{}}]}, -{"id":25789,"name":"Rune-Engraved Belt","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,25,38,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"sources":[{"quest":{}}]}, -{"id":25790,"name":"Expedition Scout's Epaulets","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,25,38,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"sources":[{"quest":{}}]}, -{"id":25791,"name":"Gloves of Preservation","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,38,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"sources":[{"quest":{}}]}, -{"id":25792,"name":"Curate's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,38,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"sources":[{"quest":{}}]}, -{"id":25793,"name":"Curate's Footwraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":9497,"name":"Emblem of the Fel Horde"}}],"factionRestriction":2}, -{"id":25794,"name":"Bone Studded Girdle","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,21,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":9497,"name":"Emblem of the Fel Horde"}}],"factionRestriction":2}, -{"id":25795,"name":"Gloves of Preservation","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,32,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":9497,"name":"Emblem of the Fel Horde"}}],"factionRestriction":2}, -{"id":25796,"name":"Lurking Shadow Spaulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,21,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":9497,"name":"Emblem of the Fel Horde"}}],"factionRestriction":2}, -{"id":25797,"name":"Crushing Grasp","icon":"inv_gauntlets_12","type":7,"armorType":4,"stats":[0,0,31,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":9497,"name":"Emblem of the Fel Horde"}}],"factionRestriction":2}, -{"id":25803,"name":"Medallion of the Valiant Guardian","icon":"inv_jewelry_necklace_21","type":2,"stats":[17,0,27,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":25804,"name":"Naliko's Revenge","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":25805,"name":"Mantle of Vivification","icon":"inv_misc_cape_19","type":4,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":25806,"name":"Nethekurse's Rod of Torment","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,15,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":284,"weaponSpeed":1.8,"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":25808,"name":"Rod of Dire Shadows","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,15,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":284,"weaponSpeed":1.8,"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25809,"name":"Maimfist's Choker","icon":"inv_jewelry_necklace_17","type":2,"stats":[17,0,27,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25810,"name":"Vicar's Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25811,"name":"Conqueror's Band","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":25819,"name":"Breastplate of the Warbringer","icon":"inv_chest_chain_07","type":5,"armorType":4,"stats":[0,0,45,0,0,30,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10011,"name":"Forge Camp: Annihilated"}}]}, -{"id":25820,"name":"Metallic Headband of Simm'onz","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,45,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10011,"name":"Forge Camp: Annihilated"}}]}, -{"id":25821,"name":"Leggings of Unending Assault","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,31,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10011,"name":"Forge Camp: Annihilated"}}]}, -{"id":25822,"name":"Watcher's Tunic","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,45,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10011,"name":"Forge Camp: Annihilated"}}]}, -{"id":25823,"name":"Grunt's Waraxe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,0,16,0,0,11,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.9,"ilvl":85,"quality":3,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":25824,"name":"Farseer's Band","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,23,15,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":25825,"name":"Footman's Longsword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,16,0,0,11,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":145,"weaponSpeed":2.1,"ilvl":85,"quality":3,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":25826,"name":"Sage's Band","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,23,15,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":25827,"name":"Muck-Covered Drape","icon":"inv_misc_cape_17","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"soldBy":{"npcId":18382,"npcName":"Mycah","zoneId":3521}}]}, -{"id":25828,"name":"Petrified Lichen Guard","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[15,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18382,"npcName":"Mycah","zoneId":3521}}]}, -{"id":25829,"name":"Talisman of the Alliance","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":4,"unique":true,"factionRestriction":1}, -{"id":25830,"name":"Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,34,60,0,0,0,13,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,538,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577}, -{"id":25831,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,54,0,0,0,12,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,662,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577}, -{"id":25832,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,29,39,0,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577}, -{"id":25833,"name":"Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,36,64,0,0,0,19,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577}, -{"id":25834,"name":"Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,27,46,0,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577}, -{"id":25835,"name":"Explorer's Walking Stick","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":199,"weaponSpeed":2.3,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":25836,"name":"Preserver's Cudgel","icon":"inv_mace_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,24,0,12,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":180,"weaponSpeed":2.5,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":25838,"name":"Warden's Hauberk","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":25854,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,27,0,0,13,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579}, -{"id":25855,"name":"Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579}, -{"id":25856,"name":"Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,59,27,0,0,25,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579}, -{"id":25857,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579}, -{"id":25858,"name":"Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579}, -{"id":25861,"name":"Crude Throwing Axe","icon":"inv_axe_19","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.8,"ilvl":1,"quality":1}, -{"id":25871,"name":"Standard Thrown Weapon","icon":"inv_throwingknife_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":2,"ilvl":80,"quality":3}, -{"id":25872,"name":"Balanced Throwing Dagger","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":1.7,"ilvl":8,"quality":1}, -{"id":25873,"name":"Keen Throwing Knife","icon":"inv_throwingknife_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.9,"ilvl":16,"quality":1}, -{"id":25874,"name":"Large Throwing Knife","icon":"inv_throwingknife_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":3,"ilvl":20,"quality":1}, -{"id":25875,"name":"Deadly Throwing Axe","icon":"inv_throwingaxe_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2,"ilvl":27,"quality":1}, -{"id":25876,"name":"Gleaming Throwing Axe","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.8,"ilvl":40,"quality":1}, -{"id":25877,"name":"Master's Throwing Dagger","icon":"inv_throwingknife_03","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":2.2,"ilvl":65,"quality":1}, -{"id":25878,"name":"Dusksteel Throwing Knife","icon":"inv_throwingknife_03","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":95,"weaponSpeed":1.8,"ilvl":52,"quality":2,"classAllowlist":[6],"sources":[{"quest":{"id":8249,"name":"Junkboxes Needed"}}]}, -{"id":25913,"name":"Ring of the Slain Anchorite","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,18,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"sources":[{"quest":{"id":9387,"name":"Source of the Corruption"}}],"factionRestriction":2}, -{"id":25914,"name":"Broken Choker","icon":"inv_jewelry_necklace_03","type":2,"stats":[13,0,18,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9387,"name":"Source of the Corruption"}}],"factionRestriction":2}, -{"id":25915,"name":"Fallen Vindicator's Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,21,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9387,"name":"Source of the Corruption"}}],"factionRestriction":2}, -{"id":25916,"name":"Terokkar Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,13,0,0,0,10,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":2.6,"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25917,"name":"Healer's Staff of the Forest","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":161,"weaponDamageMax":242,"weaponSpeed":3.1,"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25918,"name":"Blood-Guided Knife","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.3,"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25919,"name":"Sedai's Necklace","icon":"inv_jewelry_necklace_16","type":2,"stats":[13,0,18,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9424,"name":"Makuru's Vengeance"}}],"factionRestriction":1}, -{"id":25920,"name":"Sedai's Blade","icon":"inv_sword_draenei_02","type":13,"weaponType":9,"handType":1,"stats":[0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9424,"name":"Makuru's Vengeance"}}],"factionRestriction":1}, -{"id":25921,"name":"Sedai's Ring","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,18,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"sources":[{"quest":{"id":9424,"name":"Makuru's Vengeance"}}],"factionRestriction":1}, -{"id":25922,"name":"Fearless Girdle","icon":"inv_belt_32","type":8,"armorType":4,"stats":[12,0,25,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25923,"name":"Fierce Mantle","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,32,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25924,"name":"Swamprunner's Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,32,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25925,"name":"Terrorcloth Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,27,9,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25926,"name":"Nexus-Stalker's Band","icon":"inv_jewelry_ring_04","type":11,"stats":[14,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10112,"name":"A Personal Favor"}}]}, -{"id":25927,"name":"Consortium Cloak of the Quick","icon":"inv_misc_cape_11","type":4,"stats":[0,14,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10112,"name":"A Personal Favor"}}]}, -{"id":25928,"name":"Ethereal Healing Pendant","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,21,14,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10112,"name":"A Personal Favor"}}]}, -{"id":25929,"name":"Cenarion Thicket Legplates","icon":"inv_pants_07","type":9,"armorType":4,"stats":[0,0,36,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25930,"name":"Cenarion Thicket Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,17,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25931,"name":"Cenarion Thicket Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,24,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25932,"name":"Cenarion Thicket Jerkin","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,17,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":25933,"name":"Extra Sharp Blade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[10,10,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":128,"weaponSpeed":1.9,"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25934,"name":"Spiked Destroyer","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[24,0,36,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":183,"weaponDamageMax":276,"weaponSpeed":3.4,"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25935,"name":"Invincible Stave","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,53,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":251,"weaponSpeed":3.1,"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":25936,"name":"Terokkar Tablet of Vim","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"unique":true,"sources":[{"quest":{}}]}, -{"id":25937,"name":"Terokkar Tablet of Precision","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"unique":true,"sources":[{"quest":{}}]}, -{"id":25939,"name":"Voidfire Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,17,9,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":257,"weaponSpeed":1.9,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":25940,"name":"Idol of the Claw","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,9,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"classAllowlist":[1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":25941,"name":"Boots of the Outlander","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,22,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":25942,"name":"Faith Bearer's Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[24,0,18,0,0,8,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":25943,"name":"Creepjacker","icon":"inv_weapon_shortblade_16","type":13,"weaponType":3,"handType":1,"stats":[0,0,13,0,0,0,13,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":197,"weaponSpeed":2.6,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":25944,"name":"Shaarde the Greater","icon":"inv_sword_82","type":13,"weaponType":9,"handType":4,"stats":[34,0,33,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":309,"weaponSpeed":3.4,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25945,"name":"Cloak of Revival","icon":"inv_misc_cape_17","type":4,"stats":[0,0,29,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25946,"name":"Nethershade Boots","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,22,41,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25947,"name":"Lightning-Rod Pauldrons","icon":"inv_shoulder_17","type":3,"armorType":3,"stats":[0,0,35,19,0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25948,"name":"Girdle of the Penitent","icon":"inv_belt_33","type":8,"armorType":4,"stats":[0,0,26,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10031,"name":"Helping the Lost Find Their Way"}}]}, -{"id":25949,"name":"Gloves of the Afterlife","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,27,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10031,"name":"Helping the Lost Find Their Way"}}]}, -{"id":25950,"name":"Staff of Polarities","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,0,28,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":2.1,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25951,"name":"Fleet Refugee's Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[0,18,27,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10031,"name":"Helping the Lost Find Their Way"}}]}, -{"id":25952,"name":"Scimitar of the Nexus-Stalkers","icon":"inv_sword_09","type":13,"weaponType":9,"handType":2,"stats":[0,14,16,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":1.5,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18343,"zoneId":3792}}]}, -{"id":25953,"name":"Ethereal Warp-Bow","icon":"inv_weapon_bow_20","type":14,"rangedWeaponType":1,"stats":[0,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":245,"weaponSpeed":2.7,"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25954,"name":"Sigil of Shaffar","icon":"inv_summerfest_symbol_high","type":2,"stats":[0,0,32,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25955,"name":"Mask of the Howling Storm","icon":"inv_helmet_57","type":1,"armorType":3,"stats":[0,20,45,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25956,"name":"Nexus-Bracers of Vigor","icon":"inv_bracer_05","type":6,"armorType":4,"stats":[23,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25957,"name":"Ethereal Boots of the Skystrider","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,36,22,12,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25958,"name":"Eagle Engraved Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[13,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10861,"name":"Veil Lithic: Preemptive Strike"}}]}, -{"id":25959,"name":"Feathered Armbands","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10861,"name":"Veil Lithic: Preemptive Strike"}}]}, -{"id":25960,"name":"Talonstalker Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10861,"name":"Veil Lithic: Preemptive Strike"}}]}, -{"id":25961,"name":"Feathered Wrist Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10861,"name":"Veil Lithic: Preemptive Strike"}}]}, -{"id":25962,"name":"Longstrider's Loop","icon":"inv_jewelry_ring_44","type":11,"stats":[0,16,29,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18344,"zoneId":3792}}]}, -{"id":25963,"name":"Kokorek's Signet","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[13,0,19,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"unique":true,"sources":[{"quest":{"id":10874,"name":"Veil Shalas: Signal Fires"}}]}, -{"id":25964,"name":"Shaarde the Lesser","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":157,"weaponSpeed":2,"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}]}, -{"id":25965,"name":"Cloak of Grasping Talons","icon":"inv_misc_cape_13","type":4,"stats":[0,11,24,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10874,"name":"Veil Shalas: Signal Fires"}}]}, -{"id":25966,"name":"Arakkoa Sage's Shawl","icon":"inv_misc_cape_16","type":4,"stats":[0,0,17,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":10874,"name":"Veil Shalas: Signal Fires"}}]}, -{"id":25967,"name":"Eagle Crested Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,31,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":25968,"name":"Shalassi Sentry's Epaulets","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,21,23,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":25970,"name":"Shalassi Oracle's Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":25971,"name":"Stout Oak Longbow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":247,"weaponSpeed":3.3,"ilvl":80,"quality":2,"sources":[{"quest":{}}]}, -{"id":25972,"name":"Deadeye's Piece","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[6,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":2.5,"ilvl":80,"quality":2,"sources":[{"quest":{}}]}, -{"id":25973,"name":"Dark Augur's Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,9,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":1.7,"ilvl":80,"quality":2,"sources":[{"quest":{}}]}, -{"id":25974,"name":"Helm of Lupine Cunning","icon":"inv_helmet_01","type":1,"armorType":1,"stats":[0,0,44,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25975,"name":"Wolf Hunter's Guise","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,23,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25976,"name":"Helm of Lupine Grace","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,23,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25977,"name":"Helm of Lupine Ferocity","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[23,0,34,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":25978,"name":"Seth's Graphite Fishing Pole","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":168,"weaponSpeed":3,"ilvl":60,"quality":2,"sources":[{"quest":{"id":10037,"name":"Rather Be Fishin'"}}]}, -{"id":25979,"name":"Flintlocke's Piloting Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[21,0,31,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10161,"name":"In Case of Emergency..."}}]}, -{"id":25980,"name":"Aerodynamic Scaled Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,31,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10161,"name":"In Case of Emergency..."}}]}, -{"id":25981,"name":"Dirigible Crash Helmet","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,0,47,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10161,"name":"In Case of Emergency..."}}]}, -{"id":25982,"name":"Foreman's Sash","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,29,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{}}]}, -{"id":25983,"name":"Heavy Miner's Belt","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{}}]}, -{"id":25984,"name":"Miner's Brace","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,16,22,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{}}]}, -{"id":25985,"name":"Cenarion Naturalist's Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,0,22,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3.7,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10255,"name":"Testing the Antidote"}}]}, -{"id":25986,"name":"Dreadtusk's Fury","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[23,0,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":168,"weaponSpeed":2.2,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10255,"name":"Testing the Antidote"}}]}, -{"id":25987,"name":"Helboar Carving Blade","icon":"inv_sword_10","type":13,"weaponType":9,"handType":4,"stats":[23,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":267,"weaponSpeed":3.5,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10255,"name":"Testing the Antidote"}}]}, -{"id":25988,"name":"Glowing Alabaster Ring","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,23,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2}, -{"id":25989,"name":"Draenethyst Chaplet","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,14,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10057,"name":"Looking to the Leadership"}}]}, -{"id":25990,"name":"Smooth Soapstone Band","icon":"inv_jewelry_ring_22","type":11,"stats":[0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2}, -{"id":25991,"name":"Seamless Stone Band","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,22,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2}, -{"id":25992,"name":"Enforcer's Chain","icon":"inv_jewelry_necklace_11","type":2,"stats":[15,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10057,"name":"Looking to the Leadership"}}]}, -{"id":25993,"name":"Finely Wrought Chain","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10057,"name":"Looking to the Leadership"}}]}, -{"id":25994,"name":"Rune of Force","icon":"inv_stone_weightstone_05","type":12,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"unique":true}, -{"id":25995,"name":"Star of Sha'naar","icon":"spell_arcane_arcane03","type":12,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"unique":true}, -{"id":25996,"name":"Emblem of Perseverance","icon":"inv_shield_02","type":12,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"unique":true}, -{"id":25997,"name":"Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,29,51,0,0,20,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578}, -{"id":25998,"name":"Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,51,0,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578}, -{"id":25999,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,19,42,0,0,12,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578}, -{"id":26000,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,25,40,0,0,0,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578}, -{"id":26001,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,30,54,25,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578}, -{"id":26004,"name":"Farmhand's Vest","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9624,"name":"A Favorite Treat"}}],"factionRestriction":1}, -{"id":26005,"name":"Maatparm's Fungus Lined Tunic","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9649,"name":"Ysera's Tears"}}],"factionRestriction":1}, -{"id":26006,"name":"Crystal-Flecked Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9581,"name":"Learning from the Crystals"}}],"factionRestriction":1}, -{"id":26007,"name":"Vindicator's Woolies","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9711,"name":"Matis the Cruel"}}],"factionRestriction":1}, -{"id":26008,"name":"Scholar's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9629,"name":"Catch and Release"}}],"factionRestriction":1}, -{"id":26009,"name":"Flutterer Silk Handwraps","icon":"inv_gauntlets_05","type":7,"armorType":1,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9761,"name":"Clearing the Way"}}],"factionRestriction":1}, -{"id":26010,"name":"Vindicator's Soft Sole Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9700,"name":"I Shoot Magic Into the Darkness"}}],"factionRestriction":1}, -{"id":26011,"name":"Cryo-Core Attendant's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9579,"name":"Galaen's Fate"}}],"factionRestriction":1}, -{"id":26012,"name":"Kessel's Cinch Wrap","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9666,"name":"Declaration of Power"}}],"factionRestriction":1}, -{"id":26013,"name":"Cincture of Woven Reeds","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9647,"name":"Culling the Flutterers"}}],"factionRestriction":1}, -{"id":26014,"name":"Maatparm's Fungus Lined Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9648,"name":"Maatparm Mushroom Menagerie"}}],"factionRestriction":1}, -{"id":26015,"name":"Anchorite Neophyte's Cuffs","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":26016,"name":"Surveyor's Mantle","icon":"inv_misc_cape_10","type":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9628,"name":"Salvaging the Data"}}],"factionRestriction":1}, -{"id":26017,"name":"Venomous Silk Cover","icon":"inv_misc_cape_04","type":4,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9670,"name":"They're Alive! Maybe..."}}],"factionRestriction":1}, -{"id":26018,"name":"Elekk Handler's Leathers","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9624,"name":"A Favorite Treat"}}],"factionRestriction":1}, -{"id":26019,"name":"Maatparm's Fungus Lined Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9649,"name":"Ysera's Tears"}}],"factionRestriction":1}, -{"id":26020,"name":"Shard-Covered Leggings","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9581,"name":"Learning from the Crystals"}}],"factionRestriction":1}, -{"id":26021,"name":"Vindicator's Leather Chaps","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9711,"name":"Matis the Cruel"}}],"factionRestriction":1}, -{"id":26022,"name":"Researcher's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9629,"name":"Catch and Release"}}],"factionRestriction":1}, -{"id":26023,"name":"Ravager Hide Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9761,"name":"Clearing the Way"}}],"factionRestriction":1}, -{"id":26024,"name":"Vindicator's Leather Moccasins","icon":"inv_boots_fabric_01","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9700,"name":"I Shoot Magic Into the Darkness"}}],"factionRestriction":1}, -{"id":26025,"name":"Technician's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9579,"name":"Galaen's Fate"}}],"factionRestriction":1}, -{"id":26026,"name":"Ornately Tooled Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9647,"name":"Culling the Flutterers"}}],"factionRestriction":1}, -{"id":26027,"name":"Kessel's Sweat Stained Elekk Leash","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9666,"name":"Declaration of Power"}}],"factionRestriction":1}, -{"id":26028,"name":"Maatparm's Fungus Lined Bands","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9648,"name":"Maatparm Mushroom Menagerie"}}],"factionRestriction":1}, -{"id":26029,"name":"Watchman's Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":26030,"name":"Maatparm's Fungus Lined Hauberk","icon":"inv_chest_plate05","type":5,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,30,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9649,"name":"Ysera's Tears"}}],"factionRestriction":1}, -{"id":26031,"name":"Elekk Rider's Mail","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9624,"name":"A Favorite Treat"}}],"factionRestriction":1}, -{"id":26032,"name":"Crystal-Studded Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9581,"name":"Learning from the Crystals"}}],"factionRestriction":1}, -{"id":26033,"name":"Vindicator's Iron Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9711,"name":"Matis the Cruel"}}],"factionRestriction":1}, -{"id":26034,"name":"Protective Field Gloves","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9629,"name":"Catch and Release"}}],"factionRestriction":1}, -{"id":26035,"name":"Corin's Handguards","icon":"inv_gauntlets_18","type":7,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9761,"name":"Clearing the Way"}}],"factionRestriction":1}, -{"id":26036,"name":"Vindicator's Stompers","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":9700,"name":"I Shoot Magic Into the Darkness"}}],"factionRestriction":1}, -{"id":26037,"name":"Lightweight Mesh Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":9579,"name":"Galaen's Fate"}}],"factionRestriction":1}, -{"id":26038,"name":"Segmented Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":9647,"name":"Culling the Flutterers"}}],"factionRestriction":1}, -{"id":26039,"name":"Kessel's Sturdy Riding Handle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9666,"name":"Declaration of Power"}}],"factionRestriction":1}, -{"id":26040,"name":"Maatparm's Fungus Lined Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9648,"name":"Maatparm Mushroom Menagerie"}}],"factionRestriction":1}, -{"id":26041,"name":"Vigilant Vambraces","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":26049,"name":"Old Elekk Prod","icon":"inv_torch_unlit","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.8,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9634,"name":"Alien Predators"}}],"factionRestriction":1}, -{"id":26050,"name":"Fist of Argus","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.2,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9694,"name":"Blood Watch"}}],"factionRestriction":1}, -{"id":26051,"name":"2 Stone Sledgehammer","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":33,"weaponSpeed":3.5,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9634,"name":"Alien Predators"}}],"factionRestriction":1}, -{"id":26052,"name":"Vindicator's Smasher","icon":"inv_mace_33","type":13,"weaponType":4,"handType":4,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":36,"weaponSpeed":2.8,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9703,"name":"The Cryo-Core"}}],"factionRestriction":1}, -{"id":26053,"name":"Elekk Handler's Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9634,"name":"Alien Predators"}}],"factionRestriction":1}, -{"id":26054,"name":"Blade of Argus","icon":"inv_sword_draenei_02","type":13,"weaponType":9,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9694,"name":"Blood Watch"}}],"factionRestriction":1}, -{"id":26055,"name":"Oculus of the Hidden Eye","icon":"inv_jewelry_ring_45","type":12,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}]}, -{"id":27389,"name":"Surplus Bastard Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":30,"weaponSpeed":3.2,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9634,"name":"Alien Predators"}}],"factionRestriction":1}, -{"id":27390,"name":"Vindicator's Letter Opener","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":37,"weaponSpeed":2.9,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9703,"name":"The Cryo-Core"}}],"factionRestriction":1}, -{"id":27398,"name":"Carved Crystalline Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9646,"name":"WANTED: Deathclaw"}}],"factionRestriction":1}, -{"id":27399,"name":"Stillpine Defender","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9544,"name":"The Prophecy of Akida"}}],"factionRestriction":1}, -{"id":27400,"name":"Peacekeeper's Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9646,"name":"WANTED: Deathclaw"}}],"factionRestriction":1}, -{"id":27401,"name":"Arugoo's Crossbow of Destruction","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":2.8,"ilvl":12,"quality":2,"sources":[{"quest":{"id":9544,"name":"The Prophecy of Akida"}}],"factionRestriction":1}, -{"id":27402,"name":"Huntsman's Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":2.8,"ilvl":17,"quality":2,"sources":[{"quest":{"id":9569,"name":"Containing the Threat"}}],"factionRestriction":1}, -{"id":27403,"name":"Stillpine Stinger","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.4,"ilvl":12,"quality":2,"sources":[{"quest":{"id":9544,"name":"The Prophecy of Akida"}}],"factionRestriction":1}, -{"id":27404,"name":"Lightspark","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.8,"ilvl":17,"quality":2,"sources":[{"quest":{"id":9569,"name":"Containing the Threat"}}],"factionRestriction":1}, -{"id":27408,"name":"Hope Bearer Helm","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[30,23,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}]}, -{"id":27409,"name":"Raven-Heart Headdress","icon":"inv_helmet_21","type":1,"armorType":2,"stats":[0,22,44,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}]}, -{"id":27410,"name":"Collar of Command","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,42,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}]}, -{"id":27411,"name":"Slippers of Serenity","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,32,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27412,"name":"Ironstaff of Regeneration","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,35,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":198,"weaponSpeed":2.1,"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27413,"name":"Ring of the Exarchs","icon":"inv_jewelry_ring_34","type":11,"stats":[0,17,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27414,"name":"Mok'Nathal Beast-Mask","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,23,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27415,"name":"Darkguard Face Mask","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,30,55,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27416,"name":"Fetish of the Fallen","icon":"inv_helmet_45","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}]}, -{"id":27417,"name":"Ravenwing Pauldrons","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,19,29,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}]}, -{"id":27418,"name":"Stormreaver Shadow-Kilt","icon":"inv_pants_leather_12","type":9,"armorType":1,"stats":[0,0,44,26,14,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}]}, -{"id":27420,"name":"Uther's Ceremonial Warboots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[25,0,21,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}]}, -{"id":27423,"name":"Cloak of Impulsiveness","icon":"inv_misc_cape_18","type":4,"stats":[0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}]}, -{"id":27424,"name":"Amani Venom-Axe","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[0,0,15,0,0,0,15,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":188,"weaponSpeed":2.3,"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}]}, -{"id":27426,"name":"Northshire Battlemace","icon":"inv_mace_55","type":13,"weaponType":4,"handType":1,"stats":[0,0,29,0,12,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.7,"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}]}, -{"id":27427,"name":"Durotan's Battle Harness","icon":"inv_chest_chain_12","type":5,"armorType":4,"stats":[31,0,34,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}]}, -{"id":27428,"name":"Stormfront Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,35,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}]}, -{"id":27430,"name":"Scaled Greaves of Patience","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,28,33,0,0,10,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}]}, -{"id":27431,"name":"Time-Shifted Dagger","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,0,0,13,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":1.7,"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}]}, -{"id":27432,"name":"Broxigar's Ring of Valor","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[21,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}]}, -{"id":27433,"name":"Pauldrons of Sufferance","icon":"inv_shoulder_26","type":3,"armorType":1,"stats":[0,0,28,16,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}]}, -{"id":27434,"name":"Mantle of Perenolde","icon":"inv_shoulder_35","type":3,"armorType":2,"stats":[0,10,24,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}]}, -{"id":27436,"name":"Iron Band of the Unbreakable","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,27,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}]}, -{"id":27440,"name":"Diamond Prism of Recurrence","icon":"inv_misc_gem_diamond_01","type":2,"stats":[0,0,29,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}]}, -{"id":27447,"name":"Bracers of Just Rewards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[23,0,16,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}]}, -{"id":27448,"name":"Cloak of the Everliving","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}]}, -{"id":27449,"name":"Blood Knight Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,26,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}]}, -{"id":27450,"name":"Wild Stalker Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,32,24,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}]}, -{"id":27451,"name":"Boots of the Darkwalker","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,55,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}]}, -{"id":27452,"name":"Light Scribe Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,26,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27453,"name":"Averinn's Ring of Slaying","icon":"inv_jewelry_ring_38","type":11,"stats":[0,22,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27454,"name":"Volcanic Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,45,25,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27455,"name":"Irondrake Faceguard","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[39,32,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27456,"name":"Raiments of Nature's Breath","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,55,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27457,"name":"Life Bearer's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[0,0,45,25,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27458,"name":"Oceansong Kilt","icon":"inv_pants_cloth_11","type":9,"armorType":3,"stats":[0,0,65,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27459,"name":"Vambraces of Daring","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[18,0,26,0,0,0,0,0,0,11,15,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27460,"name":"Reavers' Ring","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[23,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27461,"name":"Chestguard of the Prowler","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,35,54,0,0,17,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":27462,"name":"Crimson Bracers of Gloom","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,34,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27463,"name":"Terror Flame Dagger","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,14,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27464,"name":"Omor's Unyielding Will","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27465,"name":"Mana-Etched Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,38,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27466,"name":"Headdress of Alacrity","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,56,28,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27467,"name":"Silent-Strider Kneeboots","icon":"inv_boots_cloth_06","type":10,"armorType":2,"stats":[0,27,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27468,"name":"Moonglade Handwraps","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,19,42,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":27469,"name":"Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580}, -{"id":27470,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580}, -{"id":27471,"name":"Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580}, -{"id":27472,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,69,36,16,0,22,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580}, -{"id":27473,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,44,19,16,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580}, -{"id":27474,"name":"Beast Lord Handguards","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,25,28,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27475,"name":"Gauntlets of the Bold","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[17,16,31,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27476,"name":"Truncheon of Five Hells","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,19,0,0,14,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27477,"name":"Faol's Signet of Cleansing","icon":"inv_staff_24","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,27,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27478,"name":"Girdle of the Blasted Reaches","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,16,39,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27483,"name":"Moon-Touched Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,35,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}]}, -{"id":27484,"name":"Libram of Avengement","icon":"inv_misc_stonetablet_05","type":14,"rangedWeaponType":4,"stats":[11,0,16,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4,10],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}]}, -{"id":27485,"name":"Embroidered Cape of Mysteries","icon":"inv_misc_cape_18","type":4,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}]}, -{"id":27487,"name":"Bloodlord Legplates","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[38,0,27,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}]}, -{"id":27488,"name":"Mage-Collar of the Firestorm","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,61,33,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}]}, -{"id":27489,"name":"Virtue Bearer's Vambraces","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,24,16,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}]}, -{"id":27490,"name":"Firebrand Battleaxe","icon":"inv_axe_65","type":13,"weaponType":1,"handType":2,"stats":[17,0,15,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}]}, -{"id":27491,"name":"Signet of Repose","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,33,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}]}, -{"id":27492,"name":"Moonchild Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":2,"stats":[0,0,42,20,19,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}]}, -{"id":27493,"name":"Gloves of the Deadwatcher","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,25,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27494,"name":"Emerald Eye Bracer","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,18,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27495,"name":"Soldier's Dog Tags","icon":"inv_jewelry_necklace_39","type":2,"stats":[21,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27497,"name":"Doomplate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27505,"name":"Ruby Helm of the Just","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[36,0,37,0,0,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27506,"name":"Robe of Effervescent Light","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,56,33,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27507,"name":"Adamantine Repeater","icon":"inv_weapon_crossbow_15","type":14,"rangedWeaponType":2,"stats":[0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":336,"weaponSpeed":3,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27508,"name":"Incanter's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,43,25,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}]}, -{"id":27509,"name":"Handgrips of Assassination","icon":"inv_gauntlets_01","type":7,"armorType":2,"stats":[0,25,46,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":27512,"name":"The Willbreaker","icon":"inv_sword_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,27,0,0,0,17,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27514,"name":"Leggings of the Unrepentant","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,30,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27515,"name":"Huge Spotted Feltail","icon":"inv_misc_fish_39","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1}, -{"id":27516,"name":"Enormous Barbed Gill Trout","icon":"inv_misc_fish_37","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1}, -{"id":27517,"name":"Bands of Nethekurse","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,27,18,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}]}, -{"id":27518,"name":"Ivory Idol of the Moongoddess","icon":"spell_arcane_arcane03","type":14,"rangedWeaponType":4,"stats":[0,0,16,11,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}]}, -{"id":27519,"name":"Cloak of Malice","icon":"inv_misc_cape_06","type":4,"stats":[0,21,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}]}, -{"id":27520,"name":"Greathelm of the Unbreakable","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[36,0,48,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}]}, -{"id":27521,"name":"Telaari Hunting Girdle","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,25,36,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}]}, -{"id":27522,"name":"World's End Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27523,"name":"Exarch's Diamond Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27524,"name":"Firemaul of Destruction","icon":"inv_mace_36","type":13,"weaponType":4,"handType":4,"stats":[31,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":250,"weaponDamageMax":418,"weaponSpeed":3.7,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}]}, -{"id":27525,"name":"Jeweled Boots of Sanctification","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,45,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}]}, -{"id":27526,"name":"Skyfire Hawk-Bow","icon":"inv_weapon_bow_17","type":14,"rangedWeaponType":1,"stats":[0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":2.4,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}]}, -{"id":27527,"name":"Greaves of the Shatterer","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[25,0,37,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27528,"name":"Gauntlets of Desolation","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,17,25,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27529,"name":"Figurine of the Colossus","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27531,"name":"Wastewalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,32,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27533,"name":"Demonblood Eviscerator","icon":"inv_weapon_hand_05","type":13,"weaponType":3,"handType":1,"stats":[0,0,16,0,0,0,0,0,17,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27534,"name":"Hortus' Seal of Brilliance","icon":"inv_misc_gem_lionseye_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27535,"name":"Gauntlets of the Righteous","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,39,18,18,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27536,"name":"Hallowed Handwraps","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,37,23,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27537,"name":"Gloves of Oblivion","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,48,22,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27538,"name":"Lightsworn Hammer","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":1,"stats":[0,0,21,0,20,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27539,"name":"Justice Bearer's Pauldrons","icon":"inv_shoulder_37","type":3,"armorType":4,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27540,"name":"Nexus Torch","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,18,7,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":303,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":27541,"name":"Archery Belt of the Broken","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,29,24,0,0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27542,"name":"Cord of Belief","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,35,21,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27543,"name":"Starlight Dagger","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,0,16,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.5,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27544,"name":"Totem of Spontaneous Regrowth","icon":"spell_nature_protectionformnature","type":14,"rangedWeaponType":4,"stats":[0,0,16,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27545,"name":"Mennu's Scaled Leggings","icon":"inv_pants_mail_05","type":9,"armorType":2,"stats":[0,23,25,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27546,"name":"Traitor's Noose","icon":"inv_misc_noose_01","type":2,"stats":[0,0,18,0,0,12,18,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}]}, -{"id":27547,"name":"Coldwhisper Cord","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,40,25,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":27548,"name":"Girdle of Many Blessings","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,43,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":27549,"name":"Wavefury Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,41,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":27550,"name":"Ironscale War Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,26,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":27551,"name":"Skeletal Necklace of Battlerage","icon":"inv_jewelry_talisman_12","type":2,"stats":[26,0,21,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":27552,"name":"Soft Leather Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":8472,"name":"Major Malfunction"}}],"factionRestriction":2}, -{"id":27631,"name":"Needle Shrike","icon":"inv_throwingknife_06","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,11,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":124,"weaponSpeed":1.4,"ilvl":94,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17770,"zoneId":3716}}]}, -{"id":27637,"name":"Shadowstalker's Sash","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,17,33,0,0,0,13,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27638,"name":"Hierophant's Sash","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,42,19,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27639,"name":"Slayer's Waistguard","icon":"inv_belt_14","type":8,"armorType":4,"stats":[22,0,24,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27640,"name":"Hand of Argus Crossfire","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":30,"weaponSpeed":2.8,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9694,"name":"Blood Watch"}}],"factionRestriction":1}, -{"id":27641,"name":"Vindicator's Walking Stick","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":37,"weaponSpeed":2.9,"ilvl":16,"quality":2,"sources":[{"quest":{"id":9703,"name":"The Cryo-Core"}}],"factionRestriction":1}, -{"id":27643,"name":"Stormbreaker's Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,28,19,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27644,"name":"Avenger's Waistguard","icon":"inv_belt_14","type":8,"armorType":4,"stats":[25,0,24,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27645,"name":"Dreamstalker Sash","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,15,42,14,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,239,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27646,"name":"Marksman's Belt","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,19,35,0,0,0,9,10,0,0,0,0,0,0,0,0,13,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27647,"name":"Marksman's Legguards","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,25,44,0,0,0,11,11,0,0,0,0,0,0,0,0,13,0,0,0,0,0,566,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27648,"name":"Dreamstalker Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,20,33,20,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,371,17,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27649,"name":"Hierophant's Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,265,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27650,"name":"Shadowstalker's Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,23,42,0,0,0,15,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27652,"name":"Stormbreaker's Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,47,23,0,0,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,566,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27653,"name":"Slayer's Leggings","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[25,0,39,0,0,0,17,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27654,"name":"Avenger's Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[34,0,33,0,0,0,12,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":27672,"name":"Girdle of the Immovable","icon":"inv_belt_26","type":8,"armorType":4,"stats":[17,0,33,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27673,"name":"Phosphorescent Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[0,0,12,0,0,0,11,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27683,"name":"Quagmirran's Eye","icon":"inv_misc_gem_pearl_01","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27702,"name":"Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,66,17,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582}, -{"id":27703,"name":"Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582}, -{"id":27704,"name":"Gladiator's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,66,28,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582}, -{"id":27705,"name":"Gladiator's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,66,32,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582}, -{"id":27706,"name":"Gladiator's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,46,16,0,0,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582}, -{"id":27707,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581}, -{"id":27708,"name":"Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581}, -{"id":27709,"name":"Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581}, -{"id":27710,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581}, -{"id":27711,"name":"Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581}, -{"id":27712,"name":"Shackles of Quagmirran","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27713,"name":"Pauldrons of Desolation","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[0,23,16,0,0,17,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27714,"name":"Swamplight Lantern","icon":"inv_offhand_outlandraid_03orange","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27715,"name":"Circle's Stalwart Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[16,0,22,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10096,"name":"Saving the Sporeloks"}}]}, -{"id":27716,"name":"Refuge Armor","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,39,18,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":9788,"name":"A Damp, Dark Place"}}]}, -{"id":27717,"name":"Expedition Forager Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,18,27,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10096,"name":"Saving the Sporeloks"}}]}, -{"id":27718,"name":"Aldor Defender's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[21,14,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2}, -{"id":27719,"name":"Aldor Leggings of Puissance","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,15,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2}, -{"id":27720,"name":"Robes of the Aldor","icon":"inv_chest_cloth_13","type":5,"armorType":1,"stats":[0,0,15,15,9,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2}, -{"id":27721,"name":"Expedition Footgear","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[17,0,25,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9817,"name":"Leader of the Bloodscale"}}]}, -{"id":27722,"name":"Gloves of Marshmanship","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,17,26,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9817,"name":"Leader of the Bloodscale"}}]}, -{"id":27723,"name":"Belt of the Moonkin","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,21,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9817,"name":"Leader of the Bloodscale"}}]}, -{"id":27724,"name":"Wild Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,14,32,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9817,"name":"Leader of the Bloodscale"}}]}, -{"id":27725,"name":"Expedition Mantle","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[21,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9730,"name":"Leader of the Darkcrest"}}]}, -{"id":27726,"name":"Hearty Cenarion Cincture","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,14,32,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9730,"name":"Leader of the Darkcrest"}}]}, -{"id":27727,"name":"Swift Cenarion Footwear","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,24,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9730,"name":"Leader of the Darkcrest"}}]}, -{"id":27728,"name":"Cushy Cenarion Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9730,"name":"Leader of the Darkcrest"}}]}, -{"id":27730,"name":"Watcher's Cloak of Vigilance","icon":"inv_misc_cape_05","type":4,"stats":[13,0,18,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9731,"name":"Drain Schematics"}}]}, -{"id":27731,"name":"Vindicator's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,10,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10792,"name":"Zeth'Gor Must Burn!"}}],"factionRestriction":2}, -{"id":27732,"name":"Infiltrator's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,19,10,6,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10792,"name":"Zeth'Gor Must Burn!"}}],"factionRestriction":2}, -{"id":27733,"name":"Warden's Ring of Precision","icon":"inv_jewelry_ring_43","type":11,"stats":[0,12,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9731,"name":"Drain Schematics"}}]}, -{"id":27734,"name":"Expedition Caster's Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,21,9,10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9731,"name":"Drain Schematics"}}]}, -{"id":27735,"name":"Pendant of the Marsh","icon":"inv_jewelry_amulet_07","type":2,"stats":[0,0,21,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":9731,"name":"Drain Schematics"}}]}, -{"id":27737,"name":"Moonglade Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,13,40,13,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27738,"name":"Incanter's Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27739,"name":"Spaulders of the Righteous","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,41,13,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}]}, -{"id":27740,"name":"Band of Ursol","icon":"inv_jewelry_ring_24","type":11,"stats":[23,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27741,"name":"Bleeding Hollow Warhammer","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,28,0,0,0,16,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27742,"name":"Mage-Fury Girdle","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,42,24,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27743,"name":"Girdle of Living Flame","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,30,25,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27744,"name":"Idol of Ursoc","icon":"classic_ability_druid_demoralizingroar","type":14,"rangedWeaponType":4,"stats":[0,11,16,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,7],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27745,"name":"Hungarhide Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,27,38,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27746,"name":"Arcanium Signet Bands","icon":"inv_bracer_19","type":6,"armorType":1,"stats":[0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27747,"name":"Boggspine Knuckles","icon":"inv_weapon_hand_11","type":13,"weaponType":3,"handType":3,"stats":[0,15,13,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27748,"name":"Cassock of the Loyal","icon":"inv_chest_cloth_59","type":9,"armorType":4,"stats":[0,0,61,31,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}]}, -{"id":27749,"name":"Staff of the Wild","icon":"inv_staff_27","type":13,"weaponType":8,"handType":4,"stats":[0,20,46,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":251,"weaponSpeed":3.1,"ilvl":99,"quality":2,"sources":[{"quest":{"id":9726,"name":"Now That We're Friends..."}}]}, -{"id":27750,"name":"Hammer of the Sporelings","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,45,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":2.8,"ilvl":99,"quality":2,"sources":[{"quest":{"id":9726,"name":"Now That We're Friends..."}}]}, -{"id":27751,"name":"Survivalist's Pike","icon":"inv_spear_02","type":13,"weaponType":6,"handType":4,"stats":[0,21,45,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":259,"weaponSpeed":3.2,"ilvl":99,"quality":2,"sources":[{"quest":{"id":9726,"name":"Now That We're Friends..."}}]}, -{"id":27752,"name":"Zangarmarsh Claymore","icon":"inv_sword_38","type":13,"weaponType":9,"handType":4,"stats":[21,0,30,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":2.8,"ilvl":99,"quality":2,"sources":[{"quest":{"id":9726,"name":"Now That We're Friends..."}}]}, -{"id":27753,"name":"Ensorcelled Marshfang Blade","icon":"inv_sword_bloodelf_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,20,0,0,0,10,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":108,"weaponSpeed":1.7,"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":27754,"name":"Keen Marshfang Slicer","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,9,14,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.6,"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":27755,"name":"Girdle of Gallantry","icon":"inv_belt_29","type":8,"armorType":4,"stats":[27,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27756,"name":"Marshfang Blade Axe","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":1.5,"ilvl":93,"quality":2,"sources":[{"quest":{}}]}, -{"id":27757,"name":"Greatstaff of the Leviathan","icon":"inv_staff_56","type":13,"weaponType":8,"handType":4,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,103,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27758,"name":"Hydra-Fang Necklace","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,31,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27759,"name":"Headdress of the Tides","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,0,62,33,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27760,"name":"Dunewind Sash","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27761,"name":"Ring of the Shadow Deeps","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,15,0,0,13,21,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}]}, -{"id":27762,"name":"Weathered Band of the Swamplord","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,30,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27763,"name":"Crown of the Forest Lord","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,53,31,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27764,"name":"Hands of the Sun","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,42,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27765,"name":"Armwraps of Disdain","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27766,"name":"Swampstone Necklace","icon":"inv_jewelry_necklace_29","type":2,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27767,"name":"Bogreaver","icon":"inv_axe_55","type":13,"weaponType":1,"handType":2,"stats":[0,0,15,0,0,0,18,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":1.7,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}]}, -{"id":27768,"name":"Oracle Belt of Timeless Mystery","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,44,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,33,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5,3,8],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27769,"name":"Endbringer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":4,"stats":[29,0,28,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":381,"weaponSpeed":3.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27770,"name":"Argussian Compass","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27771,"name":"Doomplate Shoulderguards","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[19,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27772,"name":"Stormshield of Renewal","icon":"inv_shield_34","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27773,"name":"Barbaric Legstraps","icon":"inv_pants_leather_06","type":9,"armorType":3,"stats":[0,28,29,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27775,"name":"Hallowed Pauldrons","icon":"inv_shoulder_22","type":3,"armorType":1,"stats":[0,0,27,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}]}, -{"id":27776,"name":"Shoulderpads of Assassination","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,25,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27778,"name":"Spaulders of Oblivion","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27779,"name":"Bone Chain Necklace","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,19,34,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27780,"name":"Ring of Fabled Hope","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,18,27,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27781,"name":"Demonfang Ritual Helm","icon":"inv_helmet_72","type":1,"armorType":1,"stats":[0,0,63,31,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27783,"name":"Moonrage Girdle","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,33,21,21,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}]}, -{"id":27784,"name":"Scintillating Coral Band","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}]}, -{"id":27787,"name":"Chestguard of No Remorse","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,46,35,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}]}, -{"id":27788,"name":"Bloodsworn Warboots","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[31,0,29,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,770,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":27789,"name":"Cloak of Whispering Shells","icon":"inv_misc_cape_16","type":4,"stats":[0,0,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}]}, -{"id":27790,"name":"Mask of Penance","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,54,30,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}]}, -{"id":27791,"name":"Serpentcrest Life-Staff","icon":"inv_staff_48","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,46,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":260,"weaponSpeed":2.4,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}]}, -{"id":27792,"name":"Steam-Hinge Chain of Valor","icon":"ability_rogue_nervesofsteel","type":2,"stats":[0,0,26,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}]}, -{"id":27793,"name":"Earth Mantle Handwraps","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,36,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}]}, -{"id":27794,"name":"Recoilless Rocket Ripper X-54","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":183,"weaponDamageMax":341,"weaponSpeed":2.9,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}]}, -{"id":27795,"name":"Sash of Serpentra","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,47,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27796,"name":"Mana-Etched Spaulders","icon":"inv_shoulder_22","type":3,"armorType":1,"stats":[0,0,38,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27797,"name":"Wastewalker Shoulderpads","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,25,29,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":27798,"name":"Gauntlets of Vindication","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,46,9,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27799,"name":"Vermillion Robes of the Dominant","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,65,36,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27800,"name":"Earthsoul Britches","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,55,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":27801,"name":"Beast Lord Mantle","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,25,26,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27803,"name":"Shoulderguards of the Bold","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[25,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27804,"name":"Devilshark Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,22,0,0,0,0,0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27805,"name":"Ring of the Silver Hand","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,18,18,12,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27806,"name":"Fathomheart Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,46,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27813,"name":"Boots of the Colossus","icon":"inv_boots_chain_11","type":10,"armorType":4,"stats":[22,0,27,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27814,"name":"Twinblade of Mastery","icon":"inv_weapon_shortblade_30","type":13,"weaponType":2,"handType":2,"stats":[0,0,12,0,0,0,21,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":1.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27815,"name":"Totem of the Astral Winds","icon":"spell_unused","type":14,"rangedWeaponType":4,"stats":[0,11,16,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,7],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27816,"name":"Mindrage Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,33,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27817,"name":"Starbolt Longbow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,19,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":340,"weaponSpeed":2.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27818,"name":"Starry Robes of the Crescent","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,51,33,24,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}]}, -{"id":27821,"name":"Extravagant Boots of Malice","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,47,26,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27822,"name":"Crystal Band of Valor","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,27,0,0,16,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27823,"name":"Shard Encrusted Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,35,44,0,0,8,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27824,"name":"Robe of the Great Dark Beyond","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,53,33,18,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27825,"name":"Predatory Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,24,16,0,0,19,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27826,"name":"Mantle of the Sea Wolf","icon":"inv_shoulder_33","type":3,"armorType":3,"stats":[0,0,45,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}]}, -{"id":27827,"name":"Lucid Dream Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,27,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27828,"name":"Warp-Scarab Brooch","icon":"inv_scarab_crystal","type":12,"stats":[0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27829,"name":"Axe of the Nexus-Kings","icon":"inv_axe_70","type":13,"weaponType":1,"handType":4,"stats":[0,0,33,0,0,0,35,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":381,"weaponSpeed":3.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27830,"name":"Circlet of the Victor","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,25,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":18267,"npcName":"Battlecryer Blackeye","zoneId":3483}}],"factionRestriction":2}, -{"id":27831,"name":"Mantle of the Unforgiven","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,26,25,0,0,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27832,"name":"Band of the Victor","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,25,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":18267,"npcName":"Battlecryer Blackeye","zoneId":3483}}],"factionRestriction":2}, -{"id":27833,"name":"Band of the Victor","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,25,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":18266,"npcName":"Warrant Officer Tracy Proudwell","zoneId":3483}}],"factionRestriction":1}, -{"id":27834,"name":"Circlet of the Victor","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,25,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":18266,"npcName":"Warrant Officer Tracy Proudwell","zoneId":3483}}],"factionRestriction":1}, -{"id":27835,"name":"Stillwater Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,43,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27837,"name":"Wastewalker Leggings","icon":"inv_pants_mail_04","type":9,"armorType":2,"stats":[0,31,36,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27838,"name":"Incanter's Trousers","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,53,36,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27839,"name":"Legplates of the Righteous","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,47,24,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":27840,"name":"Scepter of Sha'tar","icon":"inv_mace_51","type":13,"weaponType":4,"handType":4,"stats":[31,0,28,0,0,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":245,"weaponDamageMax":408,"weaponSpeed":3.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27842,"name":"Grand Scepter of the Nexus-Kings","icon":"inv_staff_45","type":13,"weaponType":8,"handType":4,"stats":[0,0,82,0,0,19,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27843,"name":"Glyph-Lined Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,42,26,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27844,"name":"Pauldrons of Swift Retribution","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[29,0,24,0,0,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":27845,"name":"Magma Plume Boots","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,47,25,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27846,"name":"Claw of the Watcher","icon":"inv_weapon_hand_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":233,"weaponSpeed":2.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27847,"name":"Fanblade Pauldrons","icon":"inv_shoulder_34","type":3,"armorType":4,"stats":[16,0,22,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27848,"name":"Embroidered Spellpyre Boots","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,39,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}]}, -{"id":27865,"name":"Bracers of Shirrak","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,24,17,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27866,"name":"Scintillating Headdress of Second Sight","icon":"inv_helmet_52","type":1,"armorType":1,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}]}, -{"id":27867,"name":"Boots of the Unjust","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,32,25,0,0,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27868,"name":"Runesong Dagger","icon":"inv_weapon_shortblade_52","type":13,"weaponType":2,"handType":1,"stats":[0,0,21,0,0,0,20,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":136,"weaponSpeed":1.5,"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}]}, -{"id":27869,"name":"Soulpriest's Ring of Resolve","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27870,"name":"Doomplate Legguards","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[36,0,33,0,0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27871,"name":"Maladaar's Blessed Chaplet","icon":"spell_holy_summonlightwell","type":2,"stats":[0,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27872,"name":"The Harvester of Souls","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[16,0,13,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":27873,"name":"Moonglade Pants","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,25,53,25,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":27874,"name":"Beast Lord Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,30,40,0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":27875,"name":"Hallowed Trousers","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,56,33,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27876,"name":"Will of the Fallen Exarch","icon":"inv_mace_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,151,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":27877,"name":"Draenic Wildstaff","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,32,63,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":27878,"name":"Auchenai Death Shroud","icon":"inv_misc_cape_21","type":4,"stats":[0,15,32,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":27879,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583}, -{"id":27880,"name":"Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583}, -{"id":27881,"name":"Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583}, -{"id":27882,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[44,0,65,0,0,0,29,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583}, -{"id":27883,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[24,0,48,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583}, -{"id":27884,"name":"Ornate Boots of the Sanctified","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[37,0,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,770,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27885,"name":"Soul-Wand of the Aldor","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,16,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":293,"weaponSpeed":1.8,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27886,"name":"Idol of the Emerald Queen","icon":"spell_nature_natureresistancetotem","type":14,"rangedWeaponType":4,"stats":[0,0,16,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27887,"name":"Platinum Shield of the Valorous","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27888,"name":"Dream-Wing Helm","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,33,16,0,0,13,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27889,"name":"Jaedenfire Gloves of Annihilation","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,47,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}]}, -{"id":27890,"name":"Wand of the Netherwing","icon":"inv_wand_19","type":14,"rangedWeaponType":6,"stats":[0,0,19,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":293,"weaponSpeed":1.8,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":27891,"name":"Adamantine Figurine","icon":"inv_qirajidol_sage","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":27892,"name":"Cloak of the Inciter","icon":"inv_misc_cape_08","type":4,"stats":[0,0,15,0,0,16,18,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":27893,"name":"Ornate Leggings of the Venerated","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,21,35,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":27895,"name":"Band of Many Prisms","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27896,"name":"Alembic of Infernal Power","icon":"inv_potion_130","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27897,"name":"Breastplate of Many Graces","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,62,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}]}, -{"id":27898,"name":"Wrathfire Hand-Cannon","icon":"inv_weapon_rifle_20","type":14,"rangedWeaponType":3,"stats":[0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":2,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}]}, -{"id":27899,"name":"Mana Wrath","icon":"inv_sword_draenei_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,38,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":27900,"name":"Jewel of Charismatic Mystique","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}]}, -{"id":27901,"name":"Blackout Truncheon","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":136,"weaponSpeed":1.5,"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}]}, -{"id":27902,"name":"Silent Slippers of Meditation","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,46,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27903,"name":"Sonic Spear","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,35,57,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27904,"name":"Resounding Ring of Glory","icon":"inv_jewelry_ring_64","type":11,"stats":[24,0,24,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":27905,"name":"Greatsword of Horrid Dreams","icon":"inv_sword_2h_blood_c_03","type":13,"weaponType":9,"handType":1,"stats":[0,0,27,0,0,14,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27906,"name":"Crimsonforge Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[36,0,45,0,0,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}]}, -{"id":27907,"name":"Mana-Etched Pantaloons","icon":"inv_pants_cloth_17","type":9,"armorType":1,"stats":[0,0,62,28,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27908,"name":"Leggings of Assassination","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,40,50,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27910,"name":"Silvermoon Crest Shield","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,30,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27911,"name":"Epoch's Whispering Cinch","icon":"inv_belt_19","type":8,"armorType":2,"stats":[0,25,41,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":27912,"name":"Harness of the Deep Currents","icon":"inv_chest_leather_05","type":5,"armorType":3,"stats":[0,0,55,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27913,"name":"Whispering Blade of Slaying","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,0,0,15,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":164,"weaponSpeed":1.9,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":27914,"name":"Moonstrider Boots","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,41,21,16,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27915,"name":"Sky-Hunter Swift Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,25,41,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27916,"name":"Sethekk Feather-Darts","icon":"inv_throwingknife_06","type":14,"rangedWeaponType":5,"stats":[0,15,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":174,"weaponSpeed":1.6,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27917,"name":"Libram of the Eternal Rest","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[11,0,16,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"classAllowlist":[4,10],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27918,"name":"Bands of Syth","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[21,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27919,"name":"Light-Woven Slippers","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,41,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}]}, -{"id":27920,"name":"Mark of Conquest","icon":"inv_misc_armorkit_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[9,2,6,1],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27921,"name":"Mark of Conquest","icon":"inv_misc_armorkit_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[9,2,6,1],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27922,"name":"Mark of Defiance","icon":"inv_jewelry_necklace_16","type":12,"stats":[0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27924,"name":"Mark of Defiance","icon":"inv_jewelry_necklace_16","type":12,"stats":[0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27925,"name":"Ravenclaw Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,20,28,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27926,"name":"Mark of Vindication","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[4,7],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27927,"name":"Mark of Vindication","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"unique":true,"classAllowlist":[4,7],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27928,"name":"Terminal Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,7,0,0,0,12,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":1.6,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27929,"name":"Terminal Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,7,0,0,0,12,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":138,"weaponSpeed":1.6,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27930,"name":"Splintermark","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,8,7,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":234,"weaponSpeed":2.5,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27931,"name":"Splintermark","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,8,7,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":234,"weaponSpeed":2.5,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27936,"name":"Greaves of Desolation","icon":"inv_pants_cloth_20","type":9,"armorType":3,"stats":[0,33,24,0,0,12,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27937,"name":"Sky Breaker","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":27938,"name":"Savage Mask of the Lynx Lord","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,35,58,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":27939,"name":"Incendic Rod","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,8,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":240,"weaponSpeed":1.9,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27940,"name":"Marvelous Madstone of Immortality","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1}, -{"id":27941,"name":"Compassionate Critter's Friend","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1}, -{"id":27942,"name":"Incendic Rod","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,8,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":129,"weaponDamageMax":240,"weaponSpeed":1.9,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27944,"name":"Talisman of True Treasure Tracking","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1}, -{"id":27945,"name":"Shark's Tooth of Bona Fide Fluidic Mobility","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":27946,"name":"Avian Cloak of Feathers","icon":"inv_misc_cape_16","type":4,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27947,"name":"Totem of Impact","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27948,"name":"Trousers of Oblivion","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,69,33,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27949,"name":"Libram of Zeal","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[9,0,13,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27976,"name":"Polished Pendant of Edible Energy","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":1}, -{"id":27977,"name":"Legplates of the Bold","icon":"inv_pants_plate_06","type":9,"armorType":4,"stats":[31,19,45,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":27978,"name":"Soap on a Rope","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":27979,"name":"Stone of Stupendous Springing Strides","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":27980,"name":"Terokk's Nightmace","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[0,0,25,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":2,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27981,"name":"Sethekk Oracle Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,34,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27982,"name":"Charm of Potent and Powerful Passions","icon":"inv_jewelry_talisman_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":27983,"name":"Libram of Zeal","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[9,0,13,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27984,"name":"Totem of Impact","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27985,"name":"Deathforge Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[22,0,25,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27986,"name":"Crow Wing Reaper","icon":"inv_axe_69","type":13,"weaponType":1,"handType":4,"stats":[28,17,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":381,"weaponSpeed":3.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":27987,"name":"Melmorta's Twilight Longbow","icon":"inv_weapon_bow_19","type":14,"rangedWeaponType":1,"stats":[0,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":3,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":27988,"name":"Burnoose of Shifting Ages","icon":"inv_misc_cape_15","type":4,"stats":[0,0,15,0,0,0,0,0,0,26,10,0,0,0,0,0,0,0,0,0,0,0,182,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":27989,"name":"Idol of Savagery","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18564,"npcName":"Horde Field Scout","zoneId":3521}}],"factionRestriction":2}, -{"id":27990,"name":"Idol of Savagery","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18581,"npcName":"Alliance Field Scout","zoneId":3521}}],"factionRestriction":1}, -{"id":27992,"name":"Infallible Tikbalang Ward","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":27993,"name":"Mask of Inner Fire","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,60,32,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":27994,"name":"Mantle of Three Terrors","icon":"inv_shoulder_36","type":3,"armorType":1,"stats":[0,0,50,25,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":27995,"name":"Sun-Gilded Shouldercaps","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,25,47,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":27996,"name":"Ring of Spiritual Precision","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,13,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}]}, -{"id":28026,"name":"Crazy Cenarion Cloak","icon":"inv_misc_cape_16","type":4,"stats":[11,0,24,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9951,"name":"It's Watching You!"}}]}, -{"id":28027,"name":"Lunatic's Choker","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,24,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9951,"name":"It's Watching You!"}}]}, -{"id":28028,"name":"Moonstruck Bands","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,24,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9951,"name":"It's Watching You!"}}]}, -{"id":28029,"name":"Goldenvine Wraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,29,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":28030,"name":"Spell-Slinger's Protector","icon":"inv_misc_cape_16","type":4,"stats":[0,0,27,14,9,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10111,"name":"Bring Me The Egg!"}}]}, -{"id":28031,"name":"Nomad's Woven Cloak","icon":"inv_misc_cape_18","type":4,"stats":[14,14,21,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10111,"name":"Bring Me The Egg!"}}]}, -{"id":28032,"name":"Delicate Green Poncho","icon":"inv_misc_cape_05","type":4,"stats":[0,14,30,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10111,"name":"Bring Me The Egg!"}}]}, -{"id":28033,"name":"Epoch-Mender","icon":"inv_staff_46","type":13,"weaponType":8,"handType":4,"stats":[0,0,67,0,30,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":260,"weaponSpeed":2.4,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28034,"name":"Hourglass of the Unraveller","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28040,"name":"Vengeance of the Illidari","icon":"inv_datacrystal06","type":12,"stats":[0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":28041,"name":"Bladefist's Breadth","icon":"inv_datacrystal06","type":12,"stats":[0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":28042,"name":"Regal Protectorate","icon":"inv_datacrystal06","type":12,"stats":[0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":28043,"name":"Demon Stalker Pendant","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,18,0,0,6,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2}, -{"id":28044,"name":"Band of the Demon Stalker","icon":"inv_jewelry_ring_37","type":11,"stats":[12,12,0,0,0,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"unique":true}, -{"id":28045,"name":"Cloak of the Demon Stalker","icon":"inv_chest_cloth_14","type":4,"stats":[0,0,18,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2}, -{"id":28050,"name":"Sacred Feather Vest","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,26,36,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":28051,"name":"Jerkin of the Untamed Spirit","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,26,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":28052,"name":"Goldweave Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,27,36,8,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":28054,"name":"Fleshripper's Bladed Chestplate","icon":"inv_chest_wolf","type":5,"armorType":4,"stats":[36,0,22,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":28055,"name":"Gilded Crimson Chestplate","icon":"inv_chest_chain_07","type":5,"armorType":4,"stats":[0,0,26,36,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":28057,"name":"Bonechewer Berserker's Vest","icon":"inv_chest_plate16","type":5,"armorType":3,"stats":[0,36,26,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"sources":[{"quest":{}}]}, -{"id":28062,"name":"Expedition Repeater","icon":"inv_weapon_crossbow_08","type":14,"rangedWeaponType":2,"stats":[0,6,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":221,"weaponSpeed":2.9,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10132,"name":"Colossal Menace"}}]}, -{"id":28063,"name":"Survivalist's Wand","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":143,"weaponSpeed":1.3,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10132,"name":"Colossal Menace"}}]}, -{"id":28064,"name":"Idol of the Wild","icon":"spell_nature_spiritwolf","type":14,"rangedWeaponType":4,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"classAllowlist":[1,7],"sources":[{"quest":{"id":10132,"name":"Colossal Menace"}}]}, -{"id":28065,"name":"Libram of Wracking","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[7,0,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"classAllowlist":[4,10],"sources":[{"quest":{"id":10132,"name":"Colossal Menace"}}]}, -{"id":28066,"name":"Totem of Lightning","icon":"inv_relics_totemofrage","type":14,"rangedWeaponType":4,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"classAllowlist":[4,1,7],"sources":[{"quest":{"id":10132,"name":"Colossal Menace"}}]}, -{"id":28069,"name":"Golden Cenarion Greaves","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[34,0,12,0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"quest":{"id":10351,"name":"Natural Remedies"}}]}, -{"id":28070,"name":"Verdant Handwraps","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,23,30,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"quest":{"id":10351,"name":"Natural Remedies"}}]}, -{"id":28074,"name":"Studded Green Anklewraps","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,30,23,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"quest":{"id":10351,"name":"Natural Remedies"}}]}, -{"id":28075,"name":"Destroyers' Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,23,30,8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3,"sources":[{"quest":{"id":10351,"name":"Natural Remedies"}}]}, -{"id":28108,"name":"Power Infused Mushroom","icon":"inv_mushroom_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{}}]}, -{"id":28109,"name":"Essence Infused Mushroom","icon":"inv_mushroom_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{}}]}, -{"id":28121,"name":"Icon of Unyielding Courage","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":28124,"name":"Liar's Cord","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,17,24,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}]}, -{"id":28126,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,55,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584}, -{"id":28127,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,33,64,21,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584}, -{"id":28128,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,40,79,10,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584}, -{"id":28129,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,28,48,13,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584}, -{"id":28130,"name":"Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,32,61,13,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584}, -{"id":28134,"name":"Brooch of Heightened Potential","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,27,19,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}]}, -{"id":28136,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,48,32,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585}, -{"id":28137,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,62,37,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585}, -{"id":28138,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,66,43,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585}, -{"id":28139,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,41,24,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585}, -{"id":28140,"name":"Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,56,39,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585}, -{"id":28141,"name":"Ranger's Sash","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9159,"name":"Curbing the Plague"}}],"factionRestriction":2}, -{"id":28142,"name":"Farstrider's Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9159,"name":"Curbing the Plague"}}],"factionRestriction":2}, -{"id":28143,"name":"Rusted Chain Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":9159,"name":"Curbing the Plague"}}],"factionRestriction":2}, -{"id":28144,"name":"Troll Handler Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9146,"name":"Report to Captain Helios"}}],"factionRestriction":2}, -{"id":28145,"name":"Tranquillien Wraps","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":28146,"name":"Courier's Wraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9148,"name":"Delivery to Tranquillien"}}],"factionRestriction":2}, -{"id":28147,"name":"Tranquillien Scout's Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9148,"name":"Delivery to Tranquillien"}}],"factionRestriction":2}, -{"id":28148,"name":"Bronze Mail Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":9148,"name":"Delivery to Tranquillien"}}],"factionRestriction":2}, -{"id":28149,"name":"Tranquillien Breeches","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":9315,"name":"Anok'suten"}}],"factionRestriction":2}, -{"id":28150,"name":"Renzithen's Dusty Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":9149,"name":"The Plagued Coast"}}],"factionRestriction":2}, -{"id":28151,"name":"Arcanist's Wand","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":22,"weaponSpeed":1.6,"ilvl":14,"quality":2,"sources":[{"quest":{"id":9140,"name":"Windrunner Village"}}],"factionRestriction":2}, -{"id":28152,"name":"Quel'Thalas Recurve","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":2.7,"ilvl":11,"quality":2,"sources":[{"quest":{"id":9139,"name":"Goldenmist Village"}}],"factionRestriction":2}, -{"id":28153,"name":"Farstrider's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":9146,"name":"Report to Captain Helios"}}],"factionRestriction":2}, -{"id":28154,"name":"Red Silk Trousers","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9172,"name":"Report to Magister Kaendris"}}],"factionRestriction":2}, -{"id":28155,"name":"Apothecary's Waistband","icon":"inv_misc_bandana_03","type":8,"armorType":1,"stats":[0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":28156,"name":"Rotting Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9199,"name":"Troll Juju"}}],"factionRestriction":2}, -{"id":28157,"name":"Black Leather Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9172,"name":"Report to Magister Kaendris"}}],"factionRestriction":2}, -{"id":28158,"name":"Batskin Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":28159,"name":"Undertaker's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9199,"name":"Troll Juju"}}],"factionRestriction":2}, -{"id":28160,"name":"An'telas Scale Shirt","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9169,"name":"Deactivate An'owyn"}}],"factionRestriction":2}, -{"id":28161,"name":"Tranquillien Scale Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":9172,"name":"Report to Magister Kaendris"}}],"factionRestriction":2}, -{"id":28162,"name":"Tranquillien Defender's Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":28163,"name":"Maltendis' Handguards","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":9199,"name":"Troll Juju"}}],"factionRestriction":2}, -{"id":28164,"name":"Tranquillien Flamberge","icon":"inv_sword_07","type":13,"weaponType":9,"handType":4,"stats":[3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":44,"weaponSpeed":3.6,"ilvl":15,"quality":2,"sources":[{"soldBy":{"npcId":16528,"npcName":"Provisioner Vredigar","zoneId":3433}}]}, -{"id":28166,"name":"Shield of the Void","icon":"inv_shield_13","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,2319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18341,"zoneId":3792}}]}, -{"id":28167,"name":"Sha'tari Wrought Armguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[20,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28168,"name":"Insignia of the Mag'hari Hero","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,21,0,0,14,15,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":28169,"name":"Mag'hari Ritualist's Horns","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,32,43,0,12,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":28170,"name":"Auchenai Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28171,"name":"Spymistress' Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,18,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28172,"name":"Mag'hari Scout's Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,43,39,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":28173,"name":"Mag'hari Huntsman's Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,43,27,0,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":28174,"name":"Shattrath Wraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,28,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28175,"name":"Mag'hari Warlord's Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[12,0,64,0,0,15,12,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":28176,"name":"Sha'tari Wrought Greaves","icon":"inv_boots_chain_01","type":10,"armorType":4,"stats":[24,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28177,"name":"Auchenai Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28178,"name":"Spymistress' Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,18,15,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28179,"name":"Shattrath Jumpers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":28180,"name":"Myrmidon's Headdress","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[17,0,37,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[2,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":9763,"name":"The Warlord's Hideout"}}]}, -{"id":28181,"name":"Earthwarden's Coif","icon":"inv_helmet_38","type":1,"armorType":3,"stats":[0,25,39,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":9763,"name":"The Warlord's Hideout"}}]}, -{"id":28182,"name":"Helm of the Claw","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,33,44,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":9763,"name":"The Warlord's Hideout"}}]}, -{"id":28183,"name":"Hydromancer's Headwrap","icon":"inv_helmet_62","type":1,"armorType":1,"stats":[0,0,46,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":9763,"name":"The Warlord's Hideout"}}]}, -{"id":28184,"name":"Millennium Blade","icon":"inv_sword_64","type":13,"weaponType":9,"handType":2,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":2,"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28185,"name":"Khadgar's Kilt of Abjuration","icon":"inv_pants_leather_05","type":9,"armorType":1,"stats":[0,0,40,31,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28186,"name":"Laughing Skull Battle-Harness","icon":"inv_chest_leather_04","type":5,"armorType":3,"stats":[0,28,44,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28187,"name":"Star-Heart Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}]}, -{"id":28188,"name":"Bloodfire Greatstaff","icon":"inv_staff_40","type":13,"weaponType":8,"handType":4,"stats":[0,0,79,0,0,0,28,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28189,"name":"Latro's Shifting Sword","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,15,20,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.4,"ilvl":115,"quality":3,"setName":"Latro's Flurry","setId":737,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28190,"name":"Scarab of the Infinite Cycle","icon":"inv_misc_ahnqirajtrinket_06","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28191,"name":"Mana-Etched Vestments","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,47,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28192,"name":"Helm of Desolation","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,33,21,0,0,25,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28193,"name":"Mana-Etched Crown","icon":"inv_jewelry_ring_56","type":1,"armorType":1,"stats":[0,0,43,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28194,"name":"Primal Surge Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,32,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28202,"name":"Moonglade Robe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,25,42,25,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28203,"name":"Breastplate of the Righteous","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,54,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":28204,"name":"Tunic of Assassination","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,28,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28205,"name":"Breastplate of the Bold","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[23,21,33,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28206,"name":"Cowl of the Guiltless","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,26,28,0,0,0,0,0,0,30,0,0,0,0,0,0,31,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28207,"name":"Pauldrons of the Crimson Flight","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[40,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":28210,"name":"Bloodskull Destroyer","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,12,0,0,0,21,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28211,"name":"Lieutenant's Signet of Lordaeron","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,30,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28212,"name":"Aran's Sorcerous Slacks","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,53,20,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28213,"name":"Lordaeron Medical Guide","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,20,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28214,"name":"Grips of the Lunar Eclipse","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,45,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28215,"name":"Mok'Nathal Mask of Battle","icon":"inv_helmet_72","type":1,"armorType":3,"stats":[0,23,39,0,0,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}]}, -{"id":28216,"name":"Dathrohan's Ceremonial Hammer","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,26,0,18,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28217,"name":"Tarren Mill Vitality Locket","icon":"inv_trinket_honorhold","type":2,"stats":[0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28218,"name":"Pontiff's Pantaloons of Prophecy","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,39,25,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28219,"name":"Emerald-Scale Greaves","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,28,42,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28220,"name":"Moon-Crown Antlers","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,54,34,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28221,"name":"Boots of the Watchful Heart","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}]}, -{"id":28222,"name":"Reaver of the Infinites","icon":"inv_axe_71","type":13,"weaponType":1,"handType":4,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,50,50,0,0,27,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28223,"name":"Arcanist's Stone","icon":"inv_jewelcrafting_nightseye_01","type":12,"stats":[0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28224,"name":"Wastewalker Helm","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,28,30,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28225,"name":"Doomplate Warhelm","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[34,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28226,"name":"Timeslicer","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,0,0,15,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":1.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28227,"name":"Sparking Arcanite Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,26,19,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28228,"name":"Beast Lord Cuirass","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,20,50,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28229,"name":"Incanter's Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,43,25,22,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28230,"name":"Hallowed Garments","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,38,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":28232,"name":"Robe of Oblivion","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":28233,"name":"Necklace of Resplendent Hope","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28234,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[6],"factionRestriction":1}, -{"id":28235,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1],"factionRestriction":1}, -{"id":28236,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4],"factionRestriction":1}, -{"id":28237,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[2],"factionRestriction":1}, -{"id":28238,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[3],"factionRestriction":1}, -{"id":28239,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[3],"factionRestriction":2}, -{"id":28240,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[6],"factionRestriction":2}, -{"id":28241,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1],"factionRestriction":2}, -{"id":28242,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4],"factionRestriction":2}, -{"id":28243,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[2],"factionRestriction":2}, -{"id":28244,"name":"Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,28,0,0,0,10,0,0,0,0,0,36,36,0,0,17,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4}, -{"id":28245,"name":"Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4}, -{"id":28246,"name":"Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,21,0,0,0,16,0,0,0,0,0,32,32,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"unique":true}, -{"id":28247,"name":"Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,27,21,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"unique":true}, -{"id":28248,"name":"Totem of the Void","icon":"spell_arcane_blast","type":14,"rangedWeaponType":4,"stats":[0,0,16,11,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}]}, -{"id":28249,"name":"Capacitus' Cloak of Calibration","icon":"inv_misc_cape_20","type":4,"stats":[22,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}]}, -{"id":28250,"name":"Vestia's Pauldrons of Inner Grace","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,46,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}]}, -{"id":28251,"name":"Boots of the Glade-Keeper","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,43,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}]}, -{"id":28252,"name":"Bloodfyre Robes of Annihilation","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,51,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}]}, -{"id":28253,"name":"Plasma Rat's Hyper-Scythe","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[42,0,45,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}]}, -{"id":28254,"name":"Warp Engineer's Prismatic Chain","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,33,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}]}, -{"id":28255,"name":"Lunar-Claw Pauldrons","icon":"inv_shoulder_19","type":3,"armorType":2,"stats":[0,0,47,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}]}, -{"id":28256,"name":"Thoriumweave Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,89,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}]}, -{"id":28257,"name":"Hammer of the Penitent","icon":"inv_mace_13","type":13,"weaponType":4,"handType":1,"stats":[0,0,24,0,22,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}]}, -{"id":28258,"name":"Nethershrike","icon":"inv_misc_coin_10","type":14,"rangedWeaponType":5,"stats":[0,0,15,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":179,"weaponSpeed":1.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}]}, -{"id":28259,"name":"Cosmic Lifeband","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}]}, -{"id":28260,"name":"Manual of the Nethermancer","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,18,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}]}, -{"id":28262,"name":"Jade-Skull Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[30,0,50,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}]}, -{"id":28263,"name":"Stellaris","icon":"inv_axe_63","type":13,"weaponType":1,"handType":2,"stats":[0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":1.9,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}]}, -{"id":28264,"name":"Wastewalker Tunic","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,28,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":28265,"name":"Dath'Remar's Ring of Defense","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28266,"name":"Molten Earth Kilt","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,0,54,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28267,"name":"Edge of the Cosmos","icon":"inv_sword_77","type":13,"weaponType":9,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28268,"name":"Natural Mender's Wraps","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,45,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}]}, -{"id":28269,"name":"Baba's Cloak of Arcanistry","icon":"inv_misc_cape_05","type":4,"stats":[0,0,28,19,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28275,"name":"Beast Lord Helm","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,25,41,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28278,"name":"Incanter's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,42,25,17,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28285,"name":"Helm of the Righteous","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,45,20,16,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28286,"name":"Telescopic Sharprifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,14,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":364,"weaponSpeed":3,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28288,"name":"Abacus of Violent Odds","icon":"inv_misc_enggizmos_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":28293,"name":"High Warlord's Claymore","icon":"inv_sword_48","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28294,"name":"Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,15,0,0,0,12,0,0,0,0,0,0,26,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":294,"weaponDamageMax":442,"weaponSpeed":3.1,"ilvl":123,"quality":4}, -{"id":28295,"name":"Gladiator's Slicer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":2.6,"ilvl":123,"quality":4}, -{"id":28296,"name":"Libram of the Lightbringer","icon":"inv_misc_book_12","type":14,"rangedWeaponType":4,"stats":[0,0,16,11,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}]}, -{"id":28297,"name":"Gladiator's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,18,0,0,0,0,0,0,0,0,0,0,199,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":110,"weaponSpeed":1.6,"ilvl":123,"quality":4}, -{"id":28298,"name":"Gladiator's Decapitator","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,20,35,0,0,0,0,0,64,64,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":123,"quality":4}, -{"id":28299,"name":"Gladiator's Bonegrinder","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[32,0,48,0,0,20,35,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":123,"quality":4}, -{"id":28300,"name":"Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,48,0,0,0,35,0,0,0,0,0,70,70,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":313,"weaponSpeed":2.2,"ilvl":123,"quality":4}, -{"id":28301,"name":"Syrannis' Mystic Sheen","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}]}, -{"id":28302,"name":"Gladiator's Bonecracker","icon":"inv_mace_36","type":13,"weaponType":4,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":1.5,"ilvl":123,"quality":4}, -{"id":28303,"name":"Invoker's Signet","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":9156,"name":"Wanted: Knucklerot and Luzran"}}],"factionRestriction":2}, -{"id":28304,"name":"Prismatic Mittens of Mending","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}]}, -{"id":28305,"name":"Gladiator's Pummeler","icon":"inv_mace_36","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":2.6,"ilvl":123,"quality":4}, -{"id":28306,"name":"Towering Mantle of the Hunt","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,24,21,0,0,23,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}]}, -{"id":28307,"name":"Gladiator's Quickblade","icon":"inv_sword_71","type":13,"weaponType":9,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":1.5,"ilvl":123,"quality":4}, -{"id":28308,"name":"Gladiator's Cleaver","icon":"inv_axe_54","type":13,"weaponType":1,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":2.6,"ilvl":123,"quality":4}, -{"id":28309,"name":"Gladiator's Hacker","icon":"inv_axe_54","type":13,"weaponType":1,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":1.5,"ilvl":123,"quality":4}, -{"id":28310,"name":"Gladiator's Shiv","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":166,"weaponSpeed":1.4,"ilvl":123,"quality":4}, -{"id":28311,"name":"Revenger","icon":"inv_sword_79","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}]}, -{"id":28312,"name":"Gladiator's Shanker","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":1.8,"ilvl":123,"quality":4}, -{"id":28313,"name":"Gladiator's Right Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":1,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.6,"ilvl":123,"quality":4}, -{"id":28314,"name":"Gladiator's Left Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":1.5,"ilvl":123,"quality":4}, -{"id":28315,"name":"Stormreaver Warblades","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":3,"stats":[0,0,13,0,0,0,21,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}]}, -{"id":28316,"name":"Aegis of the Sunbird","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,0,0,0,0,0,0,19,10,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}]}, -{"id":28317,"name":"Energis Armwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,50,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}]}, -{"id":28318,"name":"Obsidian Clodstompers","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[34,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}]}, -{"id":28319,"name":"Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,15,0,0,0,11,0,0,0,0,0,24,24,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":248,"weaponSpeed":1.9,"ilvl":123,"quality":4}, -{"id":28320,"name":"Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":414,"weaponSpeed":1.9,"ilvl":123,"quality":4}, -{"id":28321,"name":"Enchanted Thorium Torque","icon":"inv_jewelry_ring_ahnqiraj_01","type":2,"stats":[0,0,27,0,0,16,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}]}, -{"id":28322,"name":"Runed Dagger of Solace","icon":"inv_weapon_shortblade_52","type":13,"weaponType":2,"handType":1,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,190,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.5,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}]}, -{"id":28323,"name":"Ring of Umbral Doom","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,18,0,0,0,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}]}, -{"id":28324,"name":"Gauntlets of Cruel Intention","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[30,0,25,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}]}, -{"id":28325,"name":"Dreamer's Dragonstaff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,27,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}]}, -{"id":28327,"name":"Arcane Netherband","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}]}, -{"id":28328,"name":"Mithril-Bark Cloak","icon":"inv_misc_cape_09","type":4,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}]}, -{"id":28331,"name":"Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,57,0,0,0,20,18,0,0,0,0,0,0,0,0,20,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586}, -{"id":28332,"name":"Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,56,0,0,0,19,19,0,0,0,0,0,0,0,0,31,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586}, -{"id":28333,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,27,38,0,0,0,11,9,0,0,0,0,0,0,0,0,18,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586}, -{"id":28334,"name":"Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,27,57,0,0,0,18,13,0,0,0,0,0,0,0,0,20,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586}, -{"id":28335,"name":"Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,26,42,0,0,0,14,13,0,0,0,0,0,0,0,0,18,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586}, -{"id":28337,"name":"Breastplate of Righteous Fury","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[31,0,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":28338,"name":"Devil-Stitched Leggings","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,56,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}]}, -{"id":28339,"name":"Boots of the Shifting Sands","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,20,30,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}]}, -{"id":28340,"name":"Mantle of Autumn","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,48,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}]}, -{"id":28341,"name":"Warpstaff of Arcanum","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,0,16,26,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28342,"name":"Warp Infused Drape","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,52,26,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28343,"name":"Jagged Bark Pendant","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28344,"name":"Wyrmfury Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,25,36,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28345,"name":"Warp Splinter's Thorn","icon":"inv_weapon_shortblade_57","type":13,"weaponType":2,"handType":2,"stats":[0,16,13,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":112,"weaponSpeed":1.3,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28346,"name":"Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4}, -{"id":28347,"name":"Warpscale Leggings","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,32,55,0,0,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28348,"name":"Moonglade Cowl","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,24,40,24,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28350,"name":"Warhelm of the Bold","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[24,22,23,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[3,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28355,"name":"Gladiator's Idol of Tenacity","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":28356,"name":"Gladiator's Libram of Justice","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":28357,"name":"Gladiator's Totem of the Third Wind","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":28358,"name":"Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,3806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4}, -{"id":28367,"name":"Greatsword of Forlorn Visions","icon":"inv_sword_58","type":13,"weaponType":9,"handType":4,"stats":[26,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28370,"name":"Bangle of Endless Blessings","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28371,"name":"Netherfury Cape","icon":"inv_misc_cape_02","type":4,"stats":[19,0,19,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":28372,"name":"Idol of Feral Shadows","icon":"ability_druid_healinginstincts","type":14,"rangedWeaponType":4,"stats":[0,11,16,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}]}, -{"id":28373,"name":"Cloak of Scintillating Auras","icon":"inv_misc_cape_14","type":4,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}]}, -{"id":28374,"name":"Mana-Sphere Shoulderguards","icon":"inv_shoulder_32","type":3,"armorType":1,"stats":[0,0,47,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}]}, -{"id":28375,"name":"Rubium War-Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[31,0,29,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}]}, -{"id":28377,"name":"Sergeant's Heavy Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,27,0,0,0,19,0,0,0,0,0,38,38,0,0,19,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"factionRestriction":2}, -{"id":28378,"name":"Sergeant's Heavy Cape","icon":"inv_misc_cape_07","type":4,"stats":[0,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"factionRestriction":2}, -{"id":28379,"name":"Sergeant's Heavy Cape","icon":"inv_misc_cape_07","type":4,"stats":[0,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"factionRestriction":1}, -{"id":28380,"name":"Sergeant's Heavy Cloak","icon":"inv_misc_cape_07","type":4,"stats":[0,0,27,0,0,0,19,0,0,0,0,0,38,38,0,0,19,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"factionRestriction":1}, -{"id":28381,"name":"General's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,25,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28383,"name":"General's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28384,"name":"Outland Striders","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,25,18,0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}]}, -{"id":28385,"name":"General's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28386,"name":"Nether Core's Control Rod","icon":"inv_wand_17","type":14,"rangedWeaponType":6,"stats":[0,0,18,11,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":303,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}]}, -{"id":28387,"name":"Lamp of Peaceful Repose","icon":"inv_mace_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}]}, -{"id":28390,"name":"Thatia's Self-Correcting Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[16,0,35,0,0,0,0,0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}]}, -{"id":28391,"name":"Worldfire Chestguard","icon":"inv_chest_wolf","type":5,"armorType":3,"stats":[0,0,61,34,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}]}, -{"id":28392,"name":"Reflex Blades","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":1,"stats":[0,0,13,0,0,16,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.7,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}]}, -{"id":28393,"name":"Warmaul of Infused Light","icon":"inv_mace_42","type":13,"weaponType":4,"handType":4,"stats":[20,0,30,0,0,0,21,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":245,"weaponDamageMax":408,"weaponSpeed":3.5,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}]}, -{"id":28394,"name":"Ryngo's Band of Ingenuity","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,25,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}]}, -{"id":28396,"name":"Gloves of the Unbound","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}]}, -{"id":28397,"name":"Emberhawk Crossbow","icon":"inv_weapon_crossbow_17","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,18,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":336,"weaponSpeed":3,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}]}, -{"id":28398,"name":"The Sleeper's Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,41,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}]}, -{"id":28400,"name":"Warp-Storm Warblade","icon":"inv_sword_51","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,15,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":1.7,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":28401,"name":"Hauberk of Desolation","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,25,28,0,0,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":28402,"name":"General's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28403,"name":"Doomplate Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[30,0,27,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28404,"name":"General's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28405,"name":"General's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28406,"name":"Sigil-Laced Boots","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,38,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28407,"name":"Elementium Band of the Sentry","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,24,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28408,"name":"Broken Silver Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":2.3,"ilvl":37,"quality":2}, -{"id":28409,"name":"General's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28410,"name":"General's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28411,"name":"General's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,36,17,0,0,12,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28412,"name":"Lamp of Peaceful Radiance","icon":"inv_offhand_outlandraid_03white","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,18,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28413,"name":"Hallowed Crown","icon":"inv_jewelry_ring_62","type":1,"armorType":1,"stats":[0,0,36,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28414,"name":"Helm of Assassination","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,33,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28415,"name":"Hood of Oblivion","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28416,"name":"Hungering Spineripper","icon":"inv_weapon_shortblade_35","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28418,"name":"Shiffar's Nexus-Horn","icon":"inv_gizmo_elementalblastingpowder","type":12,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28419,"name":"Choker of Fluid Thought","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,30,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":28422,"name":"General's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28423,"name":"General's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28424,"name":"General's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,28,0,0,0,7,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":28425,"name":"Fireguard","icon":"inv_sword_1h_blacksmithing_01","type":13,"weaponType":9,"handType":2,"stats":[0,16,23,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":1.6,"ilvl":107,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34535}},{"crafted":{"profession":2,"spellId":34535}}]}, -{"id":28426,"name":"Blazeguard","icon":"inv_sword_1h_blacksmithing_02","type":13,"weaponType":9,"handType":2,"stats":[0,17,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.6,"ilvl":123,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34537}},{"crafted":{"profession":2,"spellId":34537}}]}, -{"id":28427,"name":"Blazefury","icon":"inv_sword_1h_blacksmithing_03","type":13,"weaponType":9,"handType":2,"stats":[0,19,28,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.6,"ilvl":136,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36258}},{"crafted":{"profession":2,"spellId":36258}}]}, -{"id":28428,"name":"Lionheart Blade","icon":"inv_sword_2h_blacksmithing_01","type":13,"weaponType":9,"handType":4,"stats":[47,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":315,"weaponDamageMax":474,"weaponSpeed":3.6,"ilvl":107,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34538}},{"crafted":{"profession":2,"spellId":34538}}]}, -{"id":28429,"name":"Lionheart Champion","icon":"inv_sword_2h_blacksmithing_02","type":13,"weaponType":9,"handType":4,"stats":[49,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":123,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34540}},{"crafted":{"profession":2,"spellId":34540}}]}, -{"id":28430,"name":"Lionheart Executioner","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":4,"stats":[52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":549,"weaponSpeed":3.6,"ilvl":136,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36259}},{"crafted":{"profession":2,"spellId":36259}}]}, -{"id":28431,"name":"The Planar Edge","icon":"inv_axe_1h_blacksmithing_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.7,"ilvl":107,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34541}},{"crafted":{"profession":2,"spellId":34541}}]}, -{"id":28432,"name":"Black Planar Edge","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":320,"weaponSpeed":2.7,"ilvl":123,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34542}},{"crafted":{"profession":2,"spellId":34542}}]}, -{"id":28433,"name":"Wicked Edge of the Planes","icon":"inv_axe_1h_blacksmithing_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,23,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":184,"weaponDamageMax":343,"weaponSpeed":2.7,"ilvl":136,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36260}},{"crafted":{"profession":2,"spellId":36260}}]}, -{"id":28434,"name":"Lunar Crescent","icon":"inv_axe_50","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,47,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":324,"weaponDamageMax":487,"weaponSpeed":3.7,"ilvl":107,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34543}},{"crafted":{"profession":2,"spellId":34543}}]}, -{"id":28435,"name":"Mooncleaver","icon":"inv_axe_51","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,52,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":351,"weaponDamageMax":527,"weaponSpeed":3.7,"ilvl":123,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34544}},{"crafted":{"profession":2,"spellId":34544}}]}, -{"id":28436,"name":"Bloodmoon","icon":"inv_axe_52","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,56,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":375,"weaponDamageMax":564,"weaponSpeed":3.7,"ilvl":136,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36261}},{"crafted":{"profession":2,"spellId":36261}}]}, -{"id":28437,"name":"Drakefist Hammer","icon":"inv_mace_37","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.7,"ilvl":107,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34545}},{"crafted":{"profession":2,"spellId":34545}}]}, -{"id":28438,"name":"Dragonmaw","icon":"inv_mace_38","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":320,"weaponSpeed":2.7,"ilvl":123,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34546}},{"crafted":{"profession":2,"spellId":34546}}]}, -{"id":28439,"name":"Dragonstrike","icon":"inv_mace_39","type":13,"weaponType":4,"handType":2,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":184,"weaponDamageMax":343,"weaponSpeed":2.7,"ilvl":136,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36262}},{"crafted":{"profession":2,"spellId":36262}}]}, -{"id":28440,"name":"Thunder","icon":"inv_mace_2h_blacksmithing_01","type":13,"weaponType":4,"handType":4,"stats":[37,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":333,"weaponDamageMax":500,"weaponSpeed":3.8,"ilvl":107,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34547}},{"crafted":{"profession":2,"spellId":34547}}]}, -{"id":28441,"name":"Deep Thunder","icon":"inv_mace_2h_blacksmithing_02","type":13,"weaponType":4,"handType":4,"stats":[37,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":3.8,"ilvl":123,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34548}},{"crafted":{"profession":2,"spellId":34548}}]}, -{"id":28442,"name":"Stormherald","icon":"inv_mace_2h_blacksmithing_03","type":13,"weaponType":4,"handType":4,"stats":[42,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":579,"weaponSpeed":3.8,"ilvl":136,"quality":4,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36263}},{"crafted":{"profession":2,"spellId":36263}}]}, -{"id":28443,"name":"General's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,58,17,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28444,"name":"General's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,24,58,17,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28445,"name":"General's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,16,31,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,278,16,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":28446,"name":"General's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28447,"name":"General's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28448,"name":"General's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,32,10,10,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":28449,"name":"General's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28450,"name":"General's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28451,"name":"General's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,29,0,0,0,7,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28453,"name":"Bracers of the White Stag","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28454,"name":"Stalker's War Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,22,33,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28476,"name":"Gladiator's Maul","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[0,0,48,0,0,20,35,0,0,0,0,0,64,64,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":2,"ilvl":123,"quality":4}, -{"id":28477,"name":"Harbinger Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,39,22,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28483,"name":"Breastplate of Kings","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[31,0,46,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":107,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34533}},{"crafted":{"profession":2,"spellId":34533}}]}, -{"id":28484,"name":"Bulwark of Kings","icon":"inv_chest_plate15","type":5,"armorType":4,"stats":[35,0,55,0,0,23,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34534}},{"crafted":{"profession":2,"spellId":34534}}]}, -{"id":28485,"name":"Bulwark of the Ancient Kings","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[40,0,56,0,0,25,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36257}},{"crafted":{"profession":2,"spellId":36257}}]}, -{"id":28491,"name":"Windwalker's Footwraps","icon":"inv_boots_chain_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-55,-53,-51],"ilvl":94,"quality":3}, -{"id":28492,"name":"Talonite's Boots","icon":"inv_boots_cloth_16","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-57,-49],"ilvl":94,"quality":3}, -{"id":28493,"name":"Dreadhawk's Schynbald","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-54,-50],"ilvl":94,"quality":3}, -{"id":28494,"name":"Ravenguard's Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-56,-52],"ilvl":94,"quality":3}, -{"id":28495,"name":"Windwalker's Sash","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-55,-53,-51],"ilvl":99,"quality":2}, -{"id":28496,"name":"Talonite's Belt","icon":"inv_belt_10","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-57,-49],"ilvl":99,"quality":2}, -{"id":28497,"name":"Dreadhawk's Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-54,-50],"ilvl":99,"quality":2}, -{"id":28498,"name":"Ravenguard's Baldric","icon":"inv_belt_19","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-56,-52],"ilvl":99,"quality":2}, -{"id":28502,"name":"Vambraces of Courage","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[15,0,33,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28503,"name":"Whirlwind Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28504,"name":"Steelhawk Crossbow","icon":"inv_weapon_crossbow_18","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":415,"weaponSpeed":2.8,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28505,"name":"Gauntlets of Renewed Hope","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,47,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28506,"name":"Gloves of Dexterous Manipulation","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,35,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28507,"name":"Handwraps of Flowing Thought","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,43,30,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28508,"name":"Gloves of Saintly Blessings","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,48,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28509,"name":"Worgen Claw Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,20,39,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28510,"name":"Spectral Band of Innervation","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}]}, -{"id":28511,"name":"Bands of Indwelling","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,37,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28512,"name":"Bracers of Justice","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,41,21,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28514,"name":"Bracers of Maliciousness","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,25,25,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28515,"name":"Bands of Nefarious Deeds","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,45,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28516,"name":"Barbed Choker of Discipline","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,39,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28517,"name":"Boots of Foretelling","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,46,22,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28518,"name":"Iron Gauntlets of the Maiden","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28519,"name":"Gloves of Quickening","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,26,22,0,0,10,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28520,"name":"Gloves of Centering","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,41,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28521,"name":"Mitts of the Treemender","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,43,29,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28522,"name":"Shard of the Virtuous","icon":"inv_hammer_26","type":13,"weaponType":4,"handType":1,"stats":[0,0,39,0,16,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":217,"weaponSpeed":1.9,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28523,"name":"Totem of Healing Rains","icon":"spell_nature_giftofthewaterspirit","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}]}, -{"id":28524,"name":"Emerald Ripper","icon":"inv_weapon_shortblade_38","type":13,"weaponType":2,"handType":2,"stats":[0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":189,"weaponSpeed":1.8,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28525,"name":"Signet of Unshakable Faith","icon":"inv_jewelry_ring_60","type":13,"weaponType":5,"handType":3,"stats":[0,0,38,17,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28528,"name":"Moroes' Lucky Pocket Watch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28529,"name":"Royal Cloak of Arathi Kings","icon":"inv_misc_cape_10","type":4,"stats":[26,0,31,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28530,"name":"Brooch of Unquenchable Fury","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,42,22,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28531,"name":"Barbed Shrike","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":69,"weaponDamageMax":128,"weaponSpeed":1.7,"ilvl":81,"quality":2}, -{"id":28532,"name":"Silver Throwing Knives","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.7,"ilvl":84,"quality":2}, -{"id":28533,"name":"Wooden Boomerang","icon":"inv_weapon_shortblade_10","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":1.7,"ilvl":87,"quality":2}, -{"id":28534,"name":"Fel Tipped Dart","icon":"inv_weapon_shortblade_15","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":1.7,"ilvl":90,"quality":2}, -{"id":28535,"name":"Amani Throwing Axe","icon":"inv_axe_19","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.7,"ilvl":93,"quality":2}, -{"id":28536,"name":"Jagged Guillotine","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.7,"ilvl":96,"quality":2}, -{"id":28537,"name":"Wildhammer Throwing Axe","icon":"inv_axe_19","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.7,"ilvl":99,"quality":2}, -{"id":28538,"name":"Forked Shuriken","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":1.7,"ilvl":102,"quality":2}, -{"id":28539,"name":"Razor-Edged Boomerang","icon":"inv_weapon_shortblade_10","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":86,"weaponDamageMax":161,"weaponSpeed":1.7,"ilvl":105,"quality":2}, -{"id":28540,"name":"Arakkoa Talon-Axe","icon":"inv_axe_09","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":89,"weaponDamageMax":166,"weaponSpeed":1.7,"ilvl":108,"quality":2}, -{"id":28541,"name":"Sawshrike","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.7,"ilvl":111,"quality":2}, -{"id":28542,"name":"Heartseeker Knives","icon":"inv_weapon_shortblade_18","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":1.7,"ilvl":114,"quality":2}, -{"id":28543,"name":"Dreghood Throwing Axe","icon":"inv_axe_11","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.7,"ilvl":117,"quality":2}, -{"id":28544,"name":"Assassin's Shuriken","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":120,"quality":2}, -{"id":28545,"name":"Edgewalker Longboots","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,29,46,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28553,"name":"Band of the Exorcist","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,24,0,0,10,16,0,0,0,0,0,34,34,0,0,11,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28555,"name":"Seal of the Exorcist","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,24,24,0,12,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":95,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28559,"name":"Exorcist's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[25,0,30,0,0,0,25,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28560,"name":"Exorcist's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,41,25,0,0,16,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28561,"name":"Exorcist's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,27,36,0,0,0,10,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,345,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28565,"name":"Nethershard Girdle","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,50,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28566,"name":"Crimson Girdle of the Indomitable","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,36,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28567,"name":"Belt of Gale Force","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,52,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28568,"name":"Idol of the Avian Heart","icon":"inv_misc_thegoldencheep","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28569,"name":"Boots of Valiance","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,53,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28570,"name":"Shadow-Cloak of Dalaran","icon":"inv_misc_cape_20","type":4,"stats":[0,0,35,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}]}, -{"id":28572,"name":"Blade of the Unrequited","icon":"inv_weapon_shortblade_39","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,9,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":168,"weaponSpeed":1.6,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28573,"name":"Despair","icon":"inv_sword_69","type":13,"weaponType":9,"handType":4,"stats":[52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":319,"weaponDamageMax":479,"weaponSpeed":3.5,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28574,"name":"Exorcist's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,23,42,17,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,345,11,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28575,"name":"Exorcist's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,44,29,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,345,11,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28576,"name":"Exorcist's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,43,0,0,0,10,10,0,0,0,0,0,0,0,0,12,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28577,"name":"Exorcist's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,30,30,0,0,0,22,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28578,"name":"Masquerade Gown","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28579,"name":"Romulo's Poison Vial","icon":"inv_poison_mindnumbing","type":12,"stats":[0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28581,"name":"Wolfslayer Sniper Rifle","icon":"inv_weapon_rifle_23","type":14,"rangedWeaponType":3,"stats":[0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":215,"weaponDamageMax":400,"weaponSpeed":2.7,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}]}, -{"id":28582,"name":"Red Riding Hood's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,37,22,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}]}, -{"id":28583,"name":"Big Bad Wolf's Head","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,77,40,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}]}, -{"id":28584,"name":"Big Bad Wolf's Paw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":1,"stats":[0,17,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":2.5,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}]}, -{"id":28585,"name":"Ruby Slippers","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,57,30,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}]}, -{"id":28586,"name":"Wicked Witch's Hat","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,71,37,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}]}, -{"id":28587,"name":"Legacy","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,40,80,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":319,"weaponDamageMax":479,"weaponSpeed":3.5,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}]}, -{"id":28588,"name":"Blue Diamond Witchwand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,20,13,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":169,"weaponDamageMax":314,"weaponSpeed":1.5,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}]}, -{"id":28589,"name":"Beastmaw Pauldrons","icon":"inv_shoulder_36","type":3,"armorType":3,"stats":[0,24,42,0,0,20,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28590,"name":"Ribbon of Sacrifice","icon":"inv_misc_bandage_16","type":12,"stats":[0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28591,"name":"Earthsoul Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,53,37,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28592,"name":"Libram of Souls Redeemed","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28593,"name":"Eternium Greathelm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[31,0,48,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28594,"name":"Trial-Fire Trousers","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,77,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}]}, -{"id":28597,"name":"Panzar'Thar Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[24,0,51,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28599,"name":"Scaled Breastplate of Carnage","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,49,33,0,0,20,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28600,"name":"Stonebough Jerkin","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,65,35,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28601,"name":"Chestguard of the Conniver","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,45,69,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28602,"name":"Robe of the Elder Scribes","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,53,27,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28603,"name":"Talisman of Nightbane","icon":"inv_offhand_outlandraid_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28604,"name":"Nightstaff of the Everliving","icon":"inv_staff_57","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,55,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":291,"weaponDamageMax":438,"weaponSpeed":3.2,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28605,"name":"General's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,19,25,0,0,0,15,9,0,0,0,0,0,0,0,0,10,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28606,"name":"Shield of Impenetrable Darkness","icon":"inv_shield_29","type":13,"weaponType":7,"handType":3,"stats":[22,0,33,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28608,"name":"Ironstriders of Urgency","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[33,20,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28609,"name":"Emberspur Talisman","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28610,"name":"Ferocious Swift-Kickers","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,29,22,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28611,"name":"Dragonheart Flameshield","icon":"inv_shield_37","type":13,"weaponType":7,"handType":3,"stats":[0,0,38,20,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}]}, -{"id":28612,"name":"Pauldrons of the Solace-Giver","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,42,26,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28613,"name":"Grand Marshal's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1}, -{"id":28614,"name":"Grand Marshal's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1}, -{"id":28615,"name":"Grand Marshal's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1}, -{"id":28616,"name":"Grand Marshal's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1}, -{"id":28617,"name":"Grand Marshal's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1}, -{"id":28618,"name":"Grand Marshal's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,42,16,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1}, -{"id":28619,"name":"Grand Marshal's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1}, -{"id":28620,"name":"Grand Marshal's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,23,60,22,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1}, -{"id":28621,"name":"Wrynn Dynasty Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[24,0,48,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28622,"name":"Grand Marshal's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1}, -{"id":28623,"name":"Grand Marshal's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,14,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1}, -{"id":28624,"name":"Grand Marshal's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1}, -{"id":28625,"name":"Grand Marshal's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1}, -{"id":28626,"name":"Grand Marshal's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1}, -{"id":28627,"name":"Grand Marshal's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1}, -{"id":28628,"name":"Grand Marshal's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1}, -{"id":28629,"name":"General's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28630,"name":"General's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28631,"name":"Dragon-Quake Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,53,29,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28633,"name":"Staff of Infinite Mysteries","icon":"inv_weapon_halberd17","type":13,"weaponType":8,"handType":4,"stats":[0,0,103,0,0,23,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":291,"weaponDamageMax":438,"weaponSpeed":3.2,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28638,"name":"General's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28639,"name":"General's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28640,"name":"General's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28641,"name":"General's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28642,"name":"General's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28643,"name":"General's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":28644,"name":"General's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28645,"name":"General's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28646,"name":"General's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[26,0,22,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":28647,"name":"Forest Wind Shoulderpads","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,48,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28649,"name":"Garona's Signet Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,20,41,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}]}, -{"id":28652,"name":"Cincture of Will","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,50,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28653,"name":"Shadowvine Cloak of Infusion","icon":"inv_misc_cape_05","type":4,"stats":[0,0,0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28654,"name":"Malefic Girdle","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,50,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28655,"name":"Cord of Nature's Sustenance","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,52,29,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28656,"name":"Girdle of the Prowler","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,33,41,0,0,17,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28657,"name":"Fool's Bane","icon":"inv_weapon_shortblade_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.6,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28658,"name":"Terestian's Stranglestaff","icon":"inv_staff_55","type":13,"weaponType":8,"handType":4,"stats":[0,37,79,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":411,"weaponSpeed":3,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28659,"name":"Xavian Stiletto","icon":"inv_weapon_shortblade_35","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":192,"weaponSpeed":1.4,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28660,"name":"Gilded Thorium Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,230,82,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28661,"name":"Mender's Heart-Ring","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,37,20,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28662,"name":"Breastplate of the Lightbinder","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,66,40,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28663,"name":"Boots of the Incorrupt","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,45,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28666,"name":"Pauldrons of the Justice-Seeker","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[0,0,47,26,18,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28669,"name":"Rapscallion Boots","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,41,26,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28670,"name":"Boots of the Infernal Coven","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,29,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28671,"name":"Steelspine Faceguard","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,36,64,0,0,22,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28672,"name":"Drape of the Dark Reavers","icon":"inv_misc_cape_10","type":4,"stats":[0,24,35,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28673,"name":"Tirisfal Wand of Ascendancy","icon":"inv_wand_21","type":14,"rangedWeaponType":6,"stats":[0,0,18,13,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":169,"weaponDamageMax":314,"weaponSpeed":1.5,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28674,"name":"Saberclaw Talisman","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,21,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28675,"name":"Shermanar Great-Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,36,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28679,"name":"Grand Marshal's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,50,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1}, -{"id":28680,"name":"Grand Marshal's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1}, -{"id":28681,"name":"Grand Marshal's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,45,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1}, -{"id":28683,"name":"Grand Marshal's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,41,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1}, -{"id":28684,"name":"Grand Marshal's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1}, -{"id":28685,"name":"Grand Marshal's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1}, -{"id":28686,"name":"Grand Marshal's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1}, -{"id":28687,"name":"Grand Marshal's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1}, -{"id":28688,"name":"Grand Marshal's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1}, -{"id":28689,"name":"Grand Marshal's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,12,42,0,0,22,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1}, -{"id":28690,"name":"Grand Marshal's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1}, -{"id":28691,"name":"Grand Marshal's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1}, -{"id":28692,"name":"Grand Marshal's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1}, -{"id":28693,"name":"Grand Marshal's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,0,0,8,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1}, -{"id":28694,"name":"Grand Marshal's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1}, -{"id":28695,"name":"Grand Marshal's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1}, -{"id":28696,"name":"Grand Marshal's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1}, -{"id":28697,"name":"Grand Marshal's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1}, -{"id":28698,"name":"Grand Marshal's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1}, -{"id":28699,"name":"Grand Marshal's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1}, -{"id":28700,"name":"Grand Marshal's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1}, -{"id":28701,"name":"Grand Marshal's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1}, -{"id":28702,"name":"Grand Marshal's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1}, -{"id":28703,"name":"Grand Marshal's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1}, -{"id":28704,"name":"Grand Marshal's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1}, -{"id":28705,"name":"Grand Marshal's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1}, -{"id":28706,"name":"Grand Marshal's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1}, -{"id":28707,"name":"Grand Marshal's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1}, -{"id":28708,"name":"Grand Marshal's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1}, -{"id":28709,"name":"Grand Marshal's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[27,0,47,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1}, -{"id":28710,"name":"Grand Marshal's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,30,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1}, -{"id":28711,"name":"Grand Marshal's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[28,0,33,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1}, -{"id":28712,"name":"Grand Marshal's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[36,0,50,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1}, -{"id":28713,"name":"Grand Marshal's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[25,0,38,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1}, -{"id":28714,"name":"Grand Marshal's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1}, -{"id":28715,"name":"Grand Marshal's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1}, -{"id":28716,"name":"Grand Marshal's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1}, -{"id":28717,"name":"Grand Marshal's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1}, -{"id":28718,"name":"Grand Marshal's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1}, -{"id":28719,"name":"Grand Marshal's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1}, -{"id":28720,"name":"Grand Marshal's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,16,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1}, -{"id":28721,"name":"Grand Marshal's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1}, -{"id":28722,"name":"Grand Marshal's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1}, -{"id":28723,"name":"Grand Marshal's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1}, -{"id":28724,"name":"Grand Marshal's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1}, -{"id":28726,"name":"Mantle of the Mind Flayer","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,57,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28727,"name":"Pendant of the Violet Eye","icon":"inv_trinket_naxxramas02","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28728,"name":"Aran's Soothing Sapphire","icon":"inv_misc_gem_sapphire_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}]}, -{"id":28729,"name":"Spiteblade","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":165,"weaponDamageMax":308,"weaponSpeed":2.7,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28730,"name":"Mithril Band of the Unscarred","icon":"inv_jewelry_ring_24","type":11,"stats":[26,0,24,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28731,"name":"Shining Chain of the Afterworld","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,37,21,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28732,"name":"Cowl of Defiance","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,50,63,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28733,"name":"Girdle of Truth","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,54,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28734,"name":"Jewel of Infinite Possibilities","icon":"inv_misc_gem_ebondraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,35,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28735,"name":"Earthblood Chestguard","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,76,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28740,"name":"Rip-Flayer Leggings","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,28,18,0,0,20,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28741,"name":"Skulker's Greaves","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,32,57,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28742,"name":"Pantaloons of Repentance","icon":"inv_pants_cloth_13","type":9,"armorType":1,"stats":[0,0,59,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28743,"name":"Mantle of Abrahmis","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[21,0,43,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28744,"name":"Uni-Mind Headdress","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,68,39,0,19,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}]}, -{"id":28745,"name":"Mithril Chain of Heroism","icon":"inv_jewelry_necklace_06","type":2,"stats":[28,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28746,"name":"Fiend Slayer Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,26,36,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28747,"name":"Battlescar Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[23,0,28,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28748,"name":"Legplates of the Innocent","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,54,30,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28749,"name":"King's Defender","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,0,28,0,0,17,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":1.6,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28750,"name":"Girdle of Treachery","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,29,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28751,"name":"Heart-Flame Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,64,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28752,"name":"Forestlord Striders","icon":"inv_boots_chain_05","type":10,"armorType":2,"stats":[0,0,48,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28753,"name":"Ring of Recurrence","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,28,27,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28754,"name":"Triptych Shield of the Ancients","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28755,"name":"Bladed Shoulderpads of the Merciless","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,29,30,0,0,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28756,"name":"Headdress of the High Potentate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,71,37,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}]}, -{"id":28757,"name":"Ring of a Thousand Marks","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,21,0,0,19,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28758,"name":"Exorcist's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,41,25,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28759,"name":"Exorcist's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,54,25,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,246,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28760,"name":"Exorcist's Silk Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,41,25,0,0,25,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,246,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28761,"name":"Exorcist's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[29,0,30,0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"soldBy":{"zoneId":3519}}]}, -{"id":28762,"name":"Adornment of Stolen Souls","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,36,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28763,"name":"Jade Ring of the Everliving","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28764,"name":"Farstrider Wildercloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28765,"name":"Stainless Cloak of the Pure Hearted","icon":"inv_misc_cape_06","type":4,"stats":[0,0,42,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28766,"name":"Ruby Drape of the Mysticant","icon":"inv_misc_cape_18","type":4,"stats":[0,0,40,26,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28767,"name":"The Decapitator","icon":"inv_axe_66","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":312,"weaponSpeed":2.6,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28768,"name":"Malchazeen","icon":"inv_weapon_shortblade_40","type":13,"weaponType":2,"handType":2,"stats":[0,0,16,0,0,15,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":199,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28770,"name":"Nathrezim Mindblade","icon":"inv_weapon_shortblade_41","type":13,"weaponType":2,"handType":1,"stats":[0,0,34,0,0,0,23,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28771,"name":"Light's Justice","icon":"inv_mace_46","type":13,"weaponType":4,"handType":1,"stats":[0,0,36,0,20,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.8,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28772,"name":"Sunfury Bow of the Phoenix","icon":"inv_weapon_bow_18","type":14,"rangedWeaponType":1,"stats":[0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":243,"weaponDamageMax":452,"weaponSpeed":2.9,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28773,"name":"Gorehowl","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[49,43,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":345,"weaponDamageMax":518,"weaponSpeed":3.6,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}]}, -{"id":28774,"name":"Glaive of the Pit","icon":"inv_weapon_halberd16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":354,"weaponDamageMax":532,"weaponSpeed":3.7,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28775,"name":"Thundering Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[50,43,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28776,"name":"Liar's Tongue Gloves","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,36,31,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28777,"name":"Cloak of the Pit Stalker","icon":"inv_misc_cape_14","type":4,"stats":[0,0,28,0,0,0,24,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28778,"name":"Terror Pit Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,32,18,0,0,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28779,"name":"Girdle of the Endless Pit","icon":"inv_belt_22","type":8,"armorType":4,"stats":[34,0,30,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28780,"name":"Soul-Eater's Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,50,31,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28781,"name":"Karaborian Talisman","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,43,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28782,"name":"Crystalheart Pulse-Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,95,0,40,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":306,"weaponDamageMax":460,"weaponSpeed":3.2,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28783,"name":"Eredar Wand of Obliteration","icon":"inv_wand_20","type":14,"rangedWeaponType":6,"stats":[0,0,20,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.5,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28785,"name":"The Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}]}, -{"id":28789,"name":"Eye of Magtheridon","icon":"inv_elemental_mote_life01","type":12,"stats":[0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":28790,"name":"Naaru Lightwarden's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,44,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":28791,"name":"Ring of the Recalcitrant","icon":"inv_jewelry_ring_71","type":11,"stats":[0,24,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":28792,"name":"A'dal's Signet of Defense","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,34,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":28793,"name":"Band of Crimson Fury","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,41,24,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":28794,"name":"Axe of the Gronn Lords","icon":"inv_axe_64","type":13,"weaponType":1,"handType":4,"stats":[0,0,66,0,0,0,0,0,0,0,0,0,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":345,"weaponDamageMax":518,"weaponSpeed":3.6,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28795,"name":"Bladespire Warbands","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[20,0,16,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"gemSockets":[3,2],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28796,"name":"Malefic Mask of the Shadows","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,42,45,0,0,31,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28797,"name":"Brute Cloak of the Ogre-Magi","icon":"inv_misc_cape_16","type":4,"stats":[0,0,36,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28798,"name":"Badge of the Protector","icon":"inv_jewelry_talisman_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":1,"unique":true}, -{"id":28799,"name":"Belt of Divine Inspiration","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28800,"name":"Hammer of the Naaru","icon":"inv_hammer_28","type":13,"weaponType":4,"handType":4,"stats":[44,0,41,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":345,"weaponDamageMax":518,"weaponSpeed":3.6,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28801,"name":"Maulgar's Warhelm","icon":"inv_helmet_23","type":1,"armorType":3,"stats":[0,43,43,0,0,31,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}]}, -{"id":28802,"name":"Bloodmaw Magus-Blade","icon":"inv_sword_65","type":13,"weaponType":9,"handType":1,"stats":[0,0,29,0,0,0,25,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28803,"name":"Cowl of Nature's Breath","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,73,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28804,"name":"Collar of Cho'gall","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,72,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28805,"name":"High Warlord's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2}, -{"id":28806,"name":"High Warlord's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2}, -{"id":28807,"name":"High Warlord's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2}, -{"id":28808,"name":"High Warlord's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2}, -{"id":28809,"name":"High Warlord's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2}, -{"id":28810,"name":"Windshear Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,64,33,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28811,"name":"High Warlord's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,43,16,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2}, -{"id":28812,"name":"High Warlord's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2}, -{"id":28813,"name":"High Warlord's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,22,60,22,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2}, -{"id":28814,"name":"High Warlord's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2}, -{"id":28815,"name":"High Warlord's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,15,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2}, -{"id":28817,"name":"High Warlord's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2}, -{"id":28818,"name":"High Warlord's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2}, -{"id":28819,"name":"High Warlord's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2}, -{"id":28820,"name":"High Warlord's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2}, -{"id":28821,"name":"High Warlord's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2}, -{"id":28822,"name":"Teeth of Gruul","icon":"inv_misc_bone_09","type":2,"stats":[0,0,32,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28823,"name":"Eye of Gruul","icon":"spell_shadow_unholyfrenzy","type":12,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28824,"name":"Gauntlets of Martial Perfection","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[36,0,34,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"gemSockets":[3,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28825,"name":"Aldori Legacy Defender","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[15,0,39,0,0,12,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28826,"name":"Shuriken of Negation","icon":"inv_misc_ahnqirajtrinket_03","type":14,"rangedWeaponType":5,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":173,"weaponSpeed":1.2,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28827,"name":"Gauntlets of the Dragonslayer","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,24,51,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28828,"name":"Gronn-Stitched Girdle","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,36,27,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28830,"name":"Dragonspine Trophy","icon":"inv_misc_bone_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}]}, -{"id":28831,"name":"High Warlord's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,50,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2}, -{"id":28832,"name":"High Warlord's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2}, -{"id":28833,"name":"High Warlord's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,45,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2}, -{"id":28834,"name":"High Warlord's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2}, -{"id":28835,"name":"High Warlord's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,41,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2}, -{"id":28836,"name":"High Warlord's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2}, -{"id":28837,"name":"High Warlord's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2}, -{"id":28838,"name":"High Warlord's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2}, -{"id":28839,"name":"High Warlord's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2}, -{"id":28840,"name":"High Warlord's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2}, -{"id":28841,"name":"High Warlord's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,12,42,0,0,22,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2}, -{"id":28842,"name":"High Warlord's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2}, -{"id":28843,"name":"High Warlord's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2}, -{"id":28844,"name":"High Warlord's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2}, -{"id":28845,"name":"High Warlord's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,0,0,8,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2}, -{"id":28846,"name":"High Warlord's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2}, -{"id":28847,"name":"High Warlord's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2}, -{"id":28848,"name":"High Warlord's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2}, -{"id":28849,"name":"High Warlord's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2}, -{"id":28850,"name":"High Warlord's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2}, -{"id":28851,"name":"High Warlord's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2}, -{"id":28852,"name":"High Warlord's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2}, -{"id":28853,"name":"High Warlord's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2}, -{"id":28854,"name":"High Warlord's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2}, -{"id":28855,"name":"High Warlord's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2}, -{"id":28856,"name":"High Warlord's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2}, -{"id":28857,"name":"High Warlord's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2}, -{"id":28858,"name":"High Warlord's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2}, -{"id":28859,"name":"High Warlord's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2}, -{"id":28860,"name":"High Warlord's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2}, -{"id":28861,"name":"High Warlord's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[27,0,47,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2}, -{"id":28862,"name":"High Warlord's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,30,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2}, -{"id":28863,"name":"High Warlord's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[28,0,33,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2}, -{"id":28864,"name":"High Warlord's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[36,0,49,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2}, -{"id":28865,"name":"High Warlord's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[25,0,38,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2}, -{"id":28866,"name":"High Warlord's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2}, -{"id":28867,"name":"High Warlord's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2}, -{"id":28868,"name":"High Warlord's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2}, -{"id":28869,"name":"High Warlord's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2}, -{"id":28870,"name":"High Warlord's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2}, -{"id":28871,"name":"High Warlord's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2}, -{"id":28872,"name":"High Warlord's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,12,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2}, -{"id":28873,"name":"High Warlord's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2}, -{"id":28874,"name":"High Warlord's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2}, -{"id":28875,"name":"High Warlord's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2}, -{"id":28917,"name":"High Warlord's Bonegrinder","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28918,"name":"High Warlord's Decapitator","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28919,"name":"High Warlord's Maul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28920,"name":"High Warlord's Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28921,"name":"High Warlord's Hacker","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28922,"name":"High Warlord's Left Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":3,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28923,"name":"High Warlord's Painsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":246,"weaponSpeed":2.2,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28924,"name":"High Warlord's Bonecracker","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28925,"name":"High Warlord's Pummeler","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28926,"name":"High Warlord's Quickblade","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28928,"name":"High Warlord's Right Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":1,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28929,"name":"High Warlord's Shanker","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28930,"name":"High Warlord's Shiv","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":1.4,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28931,"name":"High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,0,13,0,0,0,0,0,0,0,0,190,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.6,"ilvl":115,"quality":3}, -{"id":28933,"name":"High Warlord's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,12,0,0,0,9,0,0,0,0,0,0,22,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":358,"weaponSpeed":3.2,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28935,"name":"High Warlord's War Staff","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,64,0,0,20,30,0,0,0,0,0,0,0,190,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":336,"weaponSpeed":3,"ilvl":115,"quality":3}, -{"id":28937,"name":"High Warlord's Slicer","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28938,"name":"High Warlord's Battletome","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28939,"name":"High Warlord's Barricade","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"factionRestriction":2}, -{"id":28940,"name":"Grand Marshal's Barricade","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28941,"name":"Grand Marshal's Battletome","icon":"inv_misc_book_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28942,"name":"Grand Marshal's Bonegrinder","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28943,"name":"Grand Marshal's Warblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28944,"name":"Grand Marshal's Cleaver","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28945,"name":"Grand Marshal's Decapitator","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28946,"name":"Grand Marshal's Hacker","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28947,"name":"Grand Marshal's Left Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":3,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28948,"name":"Grand Marshal's Maul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28949,"name":"Grand Marshal's Painsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":246,"weaponSpeed":2.2,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28950,"name":"Grand Marshal's Bonecracker","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28951,"name":"Grand Marshal's Pummeler","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28952,"name":"Grand Marshal's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28953,"name":"Grand Marshal's Right Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":1,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28954,"name":"Grand Marshal's Shanker","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28955,"name":"Grand Marshal's Shiv","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":1.4,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28956,"name":"Grand Marshal's Slicer","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":149,"weaponDamageMax":224,"weaponSpeed":2.6,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28957,"name":"Grand Marshal's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,0,13,0,0,0,0,0,0,0,0,190,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.6,"ilvl":115,"quality":3}, -{"id":28959,"name":"Grand Marshal's War Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,64,0,0,20,30,0,0,0,0,0,0,0,190,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":336,"weaponSpeed":3,"ilvl":115,"quality":3}, -{"id":28960,"name":"Grand Marshal's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,12,0,0,0,9,0,0,0,0,0,0,22,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":358,"weaponSpeed":3.2,"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":28963,"name":"Voidheart Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,70,34,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":28964,"name":"Voidheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,69,36,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":28966,"name":"Voidheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,74,42,0,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":28967,"name":"Voidheart Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,32,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":28968,"name":"Voidheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,57,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":28972,"name":"Flightblade Throwing Axe","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":2.2,"ilvl":60,"quality":3}, -{"id":28973,"name":"Marshal's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,29,0,0,0,7,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28974,"name":"Marshal's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28975,"name":"Marshal's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28976,"name":"Marshal's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,58,17,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28977,"name":"Marshal's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,24,58,17,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28978,"name":"Marshal's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,16,31,6,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,278,16,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":28979,"name":"Light Throwing Knife","icon":"inv_weapon_shortblade_20","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":1,"quality":1}, -{"id":28980,"name":"Marshal's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28981,"name":"Marshal's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28982,"name":"Marshal's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":28983,"name":"Marshal's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28984,"name":"Marshal's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":28985,"name":"Marshal's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28986,"name":"Marshal's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28987,"name":"Marshal's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":28988,"name":"Marshal's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,28,0,0,0,7,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":28989,"name":"Marshal's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,19,25,0,0,9,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28990,"name":"Marshal's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28991,"name":"Marshal's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28992,"name":"Marshal's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":28993,"name":"Marshal's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28994,"name":"Marshal's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":28995,"name":"Marshal's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28996,"name":"Marshal's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,25,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28997,"name":"Marshal's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4,10]}, -{"id":28998,"name":"Marshal's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":28999,"name":"Marshal's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[26,0,22,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":29000,"name":"Marshal's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":29001,"name":"Marshal's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":29002,"name":"Marshal's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,36,17,0,0,12,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":29003,"name":"Marshal's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":29004,"name":"Marshal's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":29005,"name":"Marshal's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":29006,"name":"Marshal's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,32,10,10,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":29007,"name":"Weighted Throwing Axe","icon":"inv_axe_20","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":1.9,"ilvl":8,"quality":1}, -{"id":29008,"name":"Sharp Throwing Axe","icon":"inv_axe_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.9,"ilvl":16,"quality":1}, -{"id":29009,"name":"Heavy Throwing Dagger","icon":"inv_weapon_shortblade_14","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.8,"ilvl":27,"quality":1}, -{"id":29010,"name":"Wicked Throwing Dagger","icon":"inv_weapon_shortblade_15","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":63,"weaponSpeed":1.8,"ilvl":40,"quality":1}, -{"id":29011,"name":"Warbringer Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[24,0,53,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29012,"name":"Warbringer Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[25,0,48,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29013,"name":"Jagged Throwing Axe","icon":"inv_throwingaxe_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":1.8,"ilvl":55,"quality":1}, -{"id":29014,"name":"Blacksteel Throwing Dagger","icon":"inv_weapon_shortblade_24","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":1.8,"ilvl":55,"quality":1}, -{"id":29015,"name":"Warbringer Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[36,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29016,"name":"Warbringer Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[22,0,38,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29017,"name":"Warbringer Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[28,0,38,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29019,"name":"Warbringer Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29020,"name":"Warbringer Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[34,23,33,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29021,"name":"Warbringer Battle-Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[45,0,45,0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29022,"name":"Warbringer Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[51,0,54,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29023,"name":"Warbringer Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[32,22,33,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29028,"name":"Cyclone Headdress","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,69,34,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29029,"name":"Cyclone Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,61,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29030,"name":"Cyclone Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,77,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29031,"name":"Cyclone Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,61,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29032,"name":"Cyclone Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,53,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29033,"name":"Cyclone Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,61,33,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29034,"name":"Cyclone Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,52,29,0,19,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29035,"name":"Cyclone Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,57,33,20,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29036,"name":"Cyclone Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,75,42,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29037,"name":"Cyclone Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,50,31,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29038,"name":"Cyclone Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,44,31,0,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29039,"name":"Cyclone Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,32,47,0,0,19,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29040,"name":"Cyclone Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,36,60,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29042,"name":"Cyclone War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,66,0,0,26,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29043,"name":"Cyclone Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,26,43,0,0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29044,"name":"Netherblade Facemask","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,39,61,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29045,"name":"Netherblade Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,37,69,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29046,"name":"Netherblade Breeches","icon":"inv_pants_plate_05","type":9,"armorType":2,"stats":[0,43,77,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29047,"name":"Netherblade Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,26,51,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29048,"name":"Netherblade Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,36,34,0,0,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29049,"name":"Light-Collar of the Incarnate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,59,33,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29050,"name":"Robes of the Incarnate","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,59,40,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29053,"name":"Trousers of the Incarnate","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,71,40,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29054,"name":"Light-Mantle of the Incarnate","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29055,"name":"Handwraps of the Incarnate","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29056,"name":"Shroud of the Incarnate","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,49,39,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29057,"name":"Gloves of the Incarnate","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,26,21,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29058,"name":"Soul-Collar of the Incarnate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,60,33,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29059,"name":"Leggings of the Incarnate","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,71,37,27,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29060,"name":"Soul-Mantle of the Incarnate","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29061,"name":"Justicar Diadem","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[0,0,61,34,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29062,"name":"Justicar Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,60,41,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29063,"name":"Justicar Leggings","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[0,0,80,40,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29064,"name":"Justicar Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,50,31,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29065,"name":"Justicar Gloves","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,56,34,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29066,"name":"Justicar Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[41,0,48,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29067,"name":"Justicar Handguards","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[35,0,34,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29068,"name":"Justicar Faceguard","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[35,0,43,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29069,"name":"Justicar Legguards","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[47,0,46,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29070,"name":"Justicar Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[29,0,37,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29071,"name":"Justicar Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[42,0,24,0,0,0,25,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29072,"name":"Justicar Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[38,0,29,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29073,"name":"Justicar Crown","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[43,0,33,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29074,"name":"Justicar Greaves","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[53,0,34,0,0,23,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29075,"name":"Justicar Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[36,0,24,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29076,"name":"Collar of the Aldor","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,57,35,17,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29077,"name":"Vestments of the Aldor","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,42,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29078,"name":"Legwraps of the Aldor","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,42,0,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29079,"name":"Pauldrons of the Aldor","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,23,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29080,"name":"Gloves of the Aldor","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,39,30,0,17,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29081,"name":"Demon Stalker Greathelm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,35,51,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29082,"name":"Demon Stalker Harness","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,35,57,0,0,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29083,"name":"Demon Stalker Greaves","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,41,56,0,0,15,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29084,"name":"Demon Stalker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,28,23,0,0,12,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29085,"name":"Demon Stalker Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,29,45,0,0,16,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29086,"name":"Crown of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,51,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29087,"name":"Chestguard of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,54,40,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29088,"name":"Legguards of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,65,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29089,"name":"Shoulderguards of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,40,31,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29090,"name":"Handguards of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,45,28,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29091,"name":"Chestpiece of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,51,39,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29092,"name":"Gloves of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,48,28,21,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29093,"name":"Antlers of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,54,31,22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29094,"name":"Britches of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,63,38,26,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29095,"name":"Pauldrons of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,43,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29096,"name":"Breastplate of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,42,65,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29097,"name":"Gauntlets of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,32,57,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29098,"name":"Stag-Helm of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,41,66,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29099,"name":"Greaves of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,42,77,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29100,"name":"Mantle of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,33,54,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":29108,"name":"Blade of the Unyielding","icon":"inv_sword_23","type":13,"weaponType":9,"handType":2,"stats":[0,8,17,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.4,"ilvl":87,"quality":2,"sources":[{"quest":{"id":10258,"name":"Honor the Fallen"}}],"factionRestriction":2}, -{"id":29109,"name":"Rod of the Unyielding","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,41,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":197,"weaponSpeed":2.7,"ilvl":87,"quality":2,"sources":[{"quest":{"id":10258,"name":"Honor the Fallen"}}],"factionRestriction":2}, -{"id":29115,"name":"Consortium Blaster","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,14,15,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":156,"weaponDamageMax":291,"weaponSpeed":2.4,"ilvl":115,"quality":3}, -{"id":29116,"name":"Nomad's Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,33,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":29117,"name":"Stormspire Vest","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,49,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":29119,"name":"Haramad's Bargain","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[26,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true}, -{"id":29121,"name":"Guile of Khoraazi","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":2,"stats":[0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":156,"weaponSpeed":1.6,"ilvl":100,"quality":4,"unique":true}, -{"id":29122,"name":"Nether Runner's Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,45,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4}, -{"id":29123,"name":"Medallion of the Lightbearer","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,18,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29124,"name":"Vindicator's Brand","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,19,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29125,"name":"Retainer's Blade","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":1.5,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29126,"name":"Seer's Signet","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,24,29,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29127,"name":"Vindicator's Hauberk","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29128,"name":"Lightwarden's Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,18,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29129,"name":"Anchorite's Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,55,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[4,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29130,"name":"Auchenai Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,19,26,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":156,"weaponDamageMax":235,"weaponSpeed":2.1,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":19321,"npcName":"Quartermaster Endarin","zoneId":3703}}]}, -{"id":29131,"name":"Retainer's Leggings","icon":"inv_pants_leather_18","type":9,"armorType":2,"stats":[0,46,28,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29132,"name":"Scryer's Bloodgem","icon":"inv_misc_gem_bloodstone_02","type":12,"stats":[0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29133,"name":"Seer's Cane","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,73,0,26,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":156,"weaponDamageMax":235,"weaponSpeed":2.1,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29134,"name":"Gauntlets of the Chosen","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,15,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":19331,"npcName":"Quartermaster Enuril","zoneId":3703}}]}, -{"id":29135,"name":"Earthcaller's Headdress","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,25,37,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29136,"name":"Far Seer's Helm","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,25,37,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29137,"name":"Hellscream's Will","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29138,"name":"Arechron's Gift","icon":"inv_mace_45","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29139,"name":"Ceremonial Cover","icon":"inv_misc_cape_06","type":4,"stats":[0,0,15,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29140,"name":"Cloak of the Ancient Spirits","icon":"inv_misc_cape_19","type":4,"stats":[0,0,15,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29141,"name":"Tempest Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,17,38,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29142,"name":"Kurenai Kilt","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,17,38,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29145,"name":"Band of Ancestral Spirits","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29146,"name":"Band of Elemental Spirits","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29147,"name":"Talbuk Hide Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,35,30,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20241,"npcName":"Provisioner Nasela","zoneId":3518}}],"factionRestriction":2}, -{"id":29148,"name":"Blackened Leather Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,35,30,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":20240,"npcName":"Trader Narasu","zoneId":3518}}],"factionRestriction":1}, -{"id":29149,"name":"Sporeling's Firestick","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,19,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":1.3,"ilvl":91,"quality":3,"sources":[{"soldBy":{"npcId":18382,"npcName":"Mycah","zoneId":3521}}]}, -{"id":29150,"name":"Hardened Stone Shard","icon":"inv_weapon_shortblade_08","type":13,"weaponType":2,"handType":2,"stats":[0,0,16,0,0,12,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":120,"weaponSpeed":1.8,"ilvl":91,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":18382,"npcName":"Mycah","zoneId":3521}}]}, -{"id":29151,"name":"Veteran's Musket","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,12,17,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":199,"weaponDamageMax":371,"weaponSpeed":2.7,"ilvl":100,"quality":4,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":29152,"name":"Marksman's Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,12,17,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":207,"weaponDamageMax":385,"weaponSpeed":2.8,"ilvl":100,"quality":4,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":29153,"name":"Blade of the Archmage","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":1,"stats":[0,0,22,0,0,0,21,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}]}, -{"id":29155,"name":"Stormcaller","icon":"inv_sword_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,23,0,0,0,21,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}]}, -{"id":29156,"name":"Honor's Call","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,13,0,0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":29157,"name":"Golden Ring of Power","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,9,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":34955}},{"crafted":{"profession":7,"spellId":34955}}]}, -{"id":29158,"name":"Truesilver Commander's Ring","icon":"inv_jewelry_ring_30","type":11,"stats":[7,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":34959}},{"crafted":{"profession":7,"spellId":34959}}]}, -{"id":29159,"name":"Glowing Thorium Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":34960}},{"crafted":{"profession":7,"spellId":34960}}]}, -{"id":29160,"name":"Emerald Lion Ring","icon":"inv_jewelry_ring_18","type":11,"stats":[6,5,5,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":34961}},{"crafted":{"profession":7,"spellId":34961}}]}, -{"id":29165,"name":"Warbringer","icon":"inv_axe_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,12,0,0,7,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":29166,"name":"Hellforged Halberd","icon":"inv_weapon_halberd_12","type":13,"weaponType":6,"handType":4,"stats":[0,26,69,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":29167,"name":"Blackened Spear","icon":"inv_spear_03","type":13,"weaponType":6,"handType":4,"stats":[0,26,69,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":392,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":29168,"name":"Ancestral Band","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":29169,"name":"Ring of Convalescence","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":29170,"name":"Windcaller's Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,24,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":29171,"name":"Earthwarden","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,39,0,0,0,0,0,24,27,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":3.2,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":29172,"name":"Ashyen's Gift","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,30,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":29173,"name":"Strength of the Untamed","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,27,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":29174,"name":"Watcher's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,56,36,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":29175,"name":"Gavel of Pure Light","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,23,0,20,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.9,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":29176,"name":"Crest of the Sha'tar","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[13,0,19,0,0,0,0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,3486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":29177,"name":"A'dal's Command","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[29,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":29179,"name":"Xi'ri's Gift","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":29180,"name":"Blessed Scale Girdle","icon":"inv_belt_08","type":8,"armorType":3,"stats":[0,35,30,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":29181,"name":"Timelapse Shard","icon":"inv_datacrystal02","type":12,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":29182,"name":"Riftmaker","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,21,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":117,"weaponDamageMax":176,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":29183,"name":"Bindings of the Timewalker","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,32,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":29184,"name":"Timewarden's Leggings","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,57,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":29185,"name":"Continuum Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":1,"stats":[0,0,35,0,0,8,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":29200,"name":"Falfindel's Blaster","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":2.8,"ilvl":31,"quality":2,"factionRestriction":1}, -{"id":29201,"name":"Thick Bronze Darts","icon":"inv_spear_05","type":14,"rangedWeaponType":5,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":2.2,"ilvl":20,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34979}},{"crafted":{"profession":2,"spellId":34979}}]}, -{"id":29202,"name":"Whirling Steel Axes","icon":"inv_axe_05","type":14,"rangedWeaponType":5,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":2.2,"ilvl":40,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34981}},{"crafted":{"profession":2,"spellId":34981}}]}, -{"id":29203,"name":"Enchanted Thorium Blades","icon":"inv_weapon_shortblade_26","type":14,"rangedWeaponType":5,"stats":[0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.2,"ilvl":60,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34982}},{"crafted":{"profession":2,"spellId":34982}}]}, -{"id":29204,"name":"Felsteel Whisper Knives","icon":"inv_weapon_shortblade_26","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,10,10,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":194,"weaponDamageMax":195,"weaponSpeed":2.2,"ilvl":110,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34983}},{"crafted":{"profession":2,"spellId":34983}}]}, -{"id":29210,"name":"Assassin's Throwing Axe","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":161,"weaponDamageMax":162,"weaponSpeed":3,"ilvl":63,"quality":3}, -{"id":29211,"name":"Fitz's Throwing Axe","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":143,"weaponDamageMax":215,"weaponSpeed":2.2,"ilvl":103,"quality":3,"sources":[{"quest":{"id":9852,"name":"The Ultimate Bloodsport"}}]}, -{"id":29212,"name":"Balanced Stone Dirk","icon":"inv_throwingknife_03","type":14,"rangedWeaponType":5,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.8,"ilvl":93,"quality":2,"sources":[{"quest":{"id":9447,"name":"Administering the Salve"}}],"factionRestriction":2}, -{"id":29237,"name":"Warpath Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[22,20,22,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":29238,"name":"Lion's Heart Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,22,31,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":29239,"name":"Eaglecrest Warboots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[29,21,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":29240,"name":"Bands of Negation","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,43,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":29241,"name":"Belt of Depravity","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,54,29,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":29242,"name":"Boots of Blasphemy","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":29243,"name":"Wave-Fury Vambraces","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,35,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":29244,"name":"Wave-Song Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,47,27,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":29245,"name":"Wave-Crest Striders","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,50,28,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":29246,"name":"Nightfall Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,24,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":29247,"name":"Girdle of the Deathdealer","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,28,53,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":29248,"name":"Shadowstep Striders","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,31,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":29249,"name":"Bands of the Benevolent","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,36,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":29250,"name":"Cord of Sanctification","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,46,28,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":29251,"name":"Boots of the Pious","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,47,28,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":29252,"name":"Bracers of Dignity","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,36,16,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":29253,"name":"Girdle of Valorous Deeds","icon":"inv_belt_11","type":8,"armorType":4,"stats":[30,0,37,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":29254,"name":"Boots of the Righteous Path","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,55,24,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":29255,"name":"Bands of Rarefied Magic","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":29257,"name":"Sash of Arcane Visions","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,39,24,19,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":29258,"name":"Boots of Ethereal Manipulation","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,51,28,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":29259,"name":"Bracers of the Hunt","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,19,31,0,0,10,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":29261,"name":"Girdle of Ferocity","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,28,41,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":29262,"name":"Boots of the Endless Hunt","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,26,40,0,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":29263,"name":"Forestheart Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,21,41,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":29264,"name":"Tree-Mender's Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,27,55,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":29265,"name":"Barkchip Boots","icon":"inv_boots_chain_05","type":10,"armorType":2,"stats":[0,27,54,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":29266,"name":"Azure-Shield of Coldarra","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[22,0,31,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29267,"name":"Light-Bearer's Faith Shield","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[0,0,41,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29268,"name":"Mazthoril Honor Shield","icon":"inv_shield_37","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,20,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29269,"name":"Sapphiron's Wing Bone","icon":"inv_misc_bone_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,36,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29270,"name":"Flametongue Seal","icon":"spell_fire_sealoffire","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,34,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29271,"name":"Talisman of Kalecgos","icon":"inv_offhand_outlandraid_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,21,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29272,"name":"Orb of the Soul-Eater","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29273,"name":"Khadgar's Knapsack","icon":"inv_misc_bag_10_green","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29274,"name":"Tears of Heaven","icon":"inv_potion_75","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,34,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29275,"name":"Searing Sunblade","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":3,"stats":[0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":77,"weaponDamageMax":145,"weaponSpeed":1.3,"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29276,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":29277,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,33,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29278,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,36,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29279,"name":"Violet Signet of the Great Protector","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,37,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29280,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,19,0,0,18,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":29281,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,24,0,0,22,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29282,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,0,0,24,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29283,"name":"Violet Signet of the Master Assassin","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,28,0,0,25,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29284,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":29285,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,38,22,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29286,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,41,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29287,"name":"Violet Signet of the Archmage","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,44,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29288,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":29289,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,39,21,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29290,"name":"Violet Signet of the Grand Restorer","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,44,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29291,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,43,23,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29294,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,37,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29295,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,40,0,0,0,0,0,0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29296,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,0,0,0,0,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":144,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29297,"name":"Band of the Eternal Defender","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,43,0,0,0,0,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":152,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29298,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,25,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29299,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,27,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29300,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,29,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":135,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29301,"name":"Band of the Eternal Champion","icon":"inv_jewelry_ring_55","type":11,"stats":[0,29,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":152,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29302,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,25,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29303,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,45,27,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29304,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,49,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":135,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29305,"name":"Band of the Eternal Sage","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,49,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":152,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29306,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,45,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29307,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29308,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,49,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":144,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":29312,"name":"Cover of Righteous Fury","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[40,0,34,0,0,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10253,"name":"Levixus the Soul Caller"}}]}, -{"id":29313,"name":"Earthbreaker's Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,43,21,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10253,"name":"Levixus the Soul Caller"}}]}, -{"id":29314,"name":"Leggings of the Third Coin","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,55,27,10,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10253,"name":"Levixus the Soul Caller"}}]}, -{"id":29315,"name":"Gloves of Penitence","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,36,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"sources":[{"quest":{"id":10253,"name":"Levixus the Soul Caller"}}]}, -{"id":29316,"name":"Warchief's Mantle","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[23,0,27,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}]}, -{"id":29317,"name":"Tempest's Touch","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,30,23,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}]}, -{"id":29318,"name":"Southshore Sneakers","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,21,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}]}, -{"id":29319,"name":"Tarren Mill Defender's Cinch","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,19,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{}}]}, -{"id":29320,"name":"Band of the Guardian","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,17,20,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29321,"name":"Time-Bending Gem","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,19,0,0,0,0,0,0,21,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29322,"name":"Keeper's Ring of Piety","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29323,"name":"Andormu's Tear","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,0,0,0,0,0,0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29325,"name":"Flesh Beast's Metal Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,25,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29326,"name":"Consortium Mantle of Phasing","icon":"inv_shoulder_03","type":3,"armorType":3,"stats":[0,23,0,0,0,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29327,"name":"Cryo-Mitts","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,33,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29328,"name":"Consortium Prince's Wrap","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,26,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29329,"name":"Terokk's Quill","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,54,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":246,"weaponDamageMax":370,"weaponSpeed":3.3,"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29330,"name":"The Saga of Terokk","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29332,"name":"Terokk's Mask","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,33,0,0,0,0,30,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29333,"name":"Torc of the Sethekk Prophet","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,27,16,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29334,"name":"Sethekk Oracle's Focus","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,29,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29335,"name":"Talon Lord's Collar","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,19,0,0,21,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29336,"name":"Mark of the Ravenguard","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{}}]}, -{"id":29337,"name":"The Exarch's Protector","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,0,0,0,0,18,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":29339,"name":"Auchenai Tracker's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,30,44,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":29340,"name":"Auchenai Monk's Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,24,14,0,0,19,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":29341,"name":"Auchenai Anchorite's Robe","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,36,24,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"sources":[{"quest":{}}]}, -{"id":29342,"name":"Consortium Plated Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,35,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29343,"name":"Haramad's Leggings of the Third Coin","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,44,23,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29344,"name":"Haramad's Linked Chain Pantaloons","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,29,30,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29345,"name":"Haramad's Leg Wraps","icon":"inv_pants_leather_12","type":9,"armorType":1,"stats":[0,0,0,11,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":29346,"name":"Feltooth Eviscerator","icon":"inv_sword_38","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.4,"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":29347,"name":"Talisman of the Breaker","icon":"ability_hunter_mastermarksman","type":2,"stats":[0,0,33,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":29348,"name":"The Bladefist","icon":"inv_weapon_hand_10","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":2.6,"ilvl":105,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}]}, -{"id":29349,"name":"Adamantine Chain of the Unbroken","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,19,0,0,0,30,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":29350,"name":"The Black Stalk","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,10,17,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.5,"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":29351,"name":"Wrathtide Longbow","icon":"inv_weapon_crossbow_16","type":14,"rangedWeaponType":1,"stats":[0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":228,"weaponDamageMax":424,"weaponSpeed":3,"ilvl":105,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":29352,"name":"Cobalt Band of Tyrigosa","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":29353,"name":"Shockwave Truncheon","icon":"inv_mace_54","type":13,"weaponType":4,"handType":1,"stats":[0,0,24,0,16,0,16,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.9,"ilvl":105,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":29354,"name":"Light-Touched Stole of Altruism","icon":"inv_misc_cape_06","type":4,"stats":[0,0,40,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}]}, -{"id":29355,"name":"Terokk's Shadowstaff","icon":"inv_weapon_halberd19","type":13,"weaponType":8,"handType":4,"stats":[0,0,77,0,0,0,37,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":278,"weaponDamageMax":417,"weaponSpeed":3.2,"ilvl":105,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":29356,"name":"Quantum Blade","icon":"inv_sword_81","type":13,"weaponType":9,"handType":4,"stats":[0,0,31,0,0,0,30,0,0,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":304,"weaponDamageMax":456,"weaponSpeed":3.5,"ilvl":105,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":29357,"name":"Master Thief's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,29,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":29359,"name":"Feral Staff of Lashing","icon":"inv_staff_56","type":13,"weaponType":8,"handType":4,"stats":[0,35,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":391,"weaponSpeed":3,"ilvl":105,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":29360,"name":"Vileblade of the Betrayer","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":181,"weaponSpeed":1.8,"ilvl":105,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}]}, -{"id":29362,"name":"The Sun Eater","icon":"inv_sword_63","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.6,"ilvl":105,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":29367,"name":"Ring of Cryptic Dreams","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,31,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29368,"name":"Manasurge Pendant","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29369,"name":"Shawl of Shifting Probabilities","icon":"inv_misc_cape_16","type":4,"stats":[0,0,32,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29370,"name":"Icon of the Silver Crescent","icon":"inv_weapon_shortblade_23","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29371,"name":"Nexus-Claw","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":2.8,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29372,"name":"Void-Talon","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":3,"stats":[0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29373,"name":"Band of Halos","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29374,"name":"Necklace of Eternal Hope","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,40,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29375,"name":"Bishop's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,31,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29376,"name":"Essence of the Martyr","icon":"inv_valentineperfumebottle","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29377,"name":"Ethereum Phase-Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,39,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":153,"weaponSpeed":1.7,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29378,"name":"Starheart Baton","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":1.9,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29379,"name":"Ring of Arathi Warlords","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,24,0,0,0,23,0,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29380,"name":"Ethereum Phase Blade","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":1,"stats":[0,0,24,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":143,"weaponSpeed":1.9,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29381,"name":"Choker of Vile Intent","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,20,37,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29382,"name":"Blood Knight War Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29383,"name":"Bloodlust Brooch","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29384,"name":"Ring of Unyielding Force","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,31,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29385,"name":"Farstrider Defender's Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,224,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29386,"name":"Necklace of the Juggernaut","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,19,33,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29387,"name":"Gnomeregan Auto-Dodger 600","icon":"inv_battery_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29388,"name":"Libram of Repentance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[12,0,18,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29389,"name":"Totem of the Pulsing Earth","icon":"inv_elemental_primal_earth","type":14,"rangedWeaponType":4,"stats":[0,0,18,12,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29390,"name":"Everbloom Idol","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,12,18,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":29391,"name":"Pulse Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":98,"weaponSpeed":1.3,"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":19536,"npcName":"Dealer Jadyan","zoneId":3523}}]}, -{"id":29398,"name":"Circle of Banishing","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"unique":true,"sources":[{"quest":{"id":10295,"name":"From the Abyss"}}],"factionRestriction":2}, -{"id":29399,"name":"Rod of the Void Caller","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,0,18,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":214,"weaponSpeed":2.8,"ilvl":93,"quality":2,"sources":[{"quest":{"id":10295,"name":"From the Abyss"}}],"factionRestriction":2}, -{"id":29400,"name":"Abyssal Shroud","icon":"inv_misc_cape_14","type":4,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":93,"quality":2,"sources":[{"quest":{"id":10295,"name":"From the Abyss"}}],"factionRestriction":2}, -{"id":29456,"name":"Gift of the Ethereal","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,12,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":2,"ilvl":94,"quality":3,"unique":true}, -{"id":29457,"name":"Nethershard","icon":"inv_weapon_shortblade_08","type":13,"weaponType":2,"handType":1,"stats":[0,0,32,0,0,0,6,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":94,"quality":3}, -{"id":29458,"name":"Aegis of the Vindicator","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[0,0,32,24,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}]}, -{"id":29463,"name":"Amber Bands of the Aggressor","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[22,18,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":29489,"name":"Enchanted Felscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35525}},{"crafted":{"profession":8,"spellId":35525}}]}, -{"id":29490,"name":"Enchanted Felscale Gloves","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35526}},{"crafted":{"profession":8,"spellId":35526}}]}, -{"id":29491,"name":"Enchanted Felscale Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35527}},{"crafted":{"profession":8,"spellId":35527}}]}, -{"id":29492,"name":"Flamescale Leggings","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35529}},{"crafted":{"profession":8,"spellId":35529}}]}, -{"id":29493,"name":"Flamescale Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35528}},{"crafted":{"profession":8,"spellId":35528}}]}, -{"id":29494,"name":"Flamescale Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35531}},{"crafted":{"profession":8,"spellId":35531}}]}, -{"id":29495,"name":"Enchanted Clefthoof Leggings","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35532}},{"crafted":{"profession":8,"spellId":35532}}]}, -{"id":29496,"name":"Enchanted Clefthoof Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35533}},{"crafted":{"profession":8,"spellId":35533}}]}, -{"id":29497,"name":"Enchanted Clefthoof Boots","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35534}},{"crafted":{"profession":8,"spellId":35534}}]}, -{"id":29498,"name":"Blastguard Pants","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35535}},{"crafted":{"profession":8,"spellId":35535}}]}, -{"id":29499,"name":"Blastguard Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35536}},{"crafted":{"profession":8,"spellId":35536}}]}, -{"id":29500,"name":"Blastguard Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35537}},{"crafted":{"profession":8,"spellId":35537}}]}, -{"id":29502,"name":"Cobrascale Hood","icon":"inv_helmet_38","type":1,"armorType":2,"stats":[0,37,73,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35558}},{"crafted":{"profession":8,"spellId":35558}}]}, -{"id":29503,"name":"Cobrascale Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,25,33,0,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35559}},{"crafted":{"profession":8,"spellId":35559}}]}, -{"id":29504,"name":"Windscale Hood","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,0,32,38,26,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35560}},{"crafted":{"profession":8,"spellId":35560}}]}, -{"id":29505,"name":"Hood of Primal Life","icon":"inv_helmet_32","type":1,"armorType":2,"stats":[0,0,67,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35561}},{"crafted":{"profession":8,"spellId":35561}}]}, -{"id":29506,"name":"Gloves of the Living Touch","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,32,35,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35562}},{"crafted":{"profession":8,"spellId":35562}}]}, -{"id":29507,"name":"Windslayer Wraps","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,39,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35563}},{"crafted":{"profession":8,"spellId":35563}}]}, -{"id":29508,"name":"Living Dragonscale Helm","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,49,37,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35564}},{"crafted":{"profession":8,"spellId":35564}}]}, -{"id":29509,"name":"Windstrike Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[36,18,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35568}},{"crafted":{"profession":8,"spellId":35568}}]}, -{"id":29510,"name":"Netherdrake Helm","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,45,16,0,0,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35572}},{"crafted":{"profession":8,"spellId":35572}}]}, -{"id":29511,"name":"Netherdrake Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,26,44,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35573}},{"crafted":{"profession":8,"spellId":35573}}]}, -{"id":29512,"name":"Earthen Netherscale Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,28,27,0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35567}},{"crafted":{"profession":8,"spellId":35567}}]}, -{"id":29514,"name":"Thick Netherscale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,38,55,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35574}},{"crafted":{"profession":8,"spellId":35574}}]}, -{"id":29515,"name":"Ebon Netherscale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,51,25,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35575}},{"crafted":{"profession":8,"spellId":35575}}]}, -{"id":29516,"name":"Ebon Netherscale Belt","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,31,21,0,0,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35576}},{"crafted":{"profession":8,"spellId":35576}}]}, -{"id":29517,"name":"Ebon Netherscale Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,23,25,0,0,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35577}},{"crafted":{"profession":8,"spellId":35577}}]}, -{"id":29518,"name":"Amani Scimitar","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.7,"ilvl":21,"quality":1}, -{"id":29519,"name":"Netherstrike Breastplate","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,51,32,20,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35580}},{"crafted":{"profession":8,"spellId":35580}}]}, -{"id":29520,"name":"Netherstrike Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,27,26,22,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35582}},{"crafted":{"profession":8,"spellId":35582}}]}, -{"id":29521,"name":"Netherstrike Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,24,17,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35584}},{"crafted":{"profession":8,"spellId":35584}}]}, -{"id":29522,"name":"Windhawk Hauberk","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,54,36,29,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35585}},{"crafted":{"profession":8,"spellId":35585}}]}, -{"id":29523,"name":"Windhawk Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,36,21,7,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35588}},{"crafted":{"profession":8,"spellId":35588}}]}, -{"id":29524,"name":"Windhawk Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,34,29,20,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35587}},{"crafted":{"profession":8,"spellId":35587}}]}, -{"id":29525,"name":"Primalstrike Vest","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,54,72,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35589}},{"crafted":{"profession":8,"spellId":35589}}]}, -{"id":29526,"name":"Primalstrike Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,42,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35590}},{"crafted":{"profession":8,"spellId":35590}}]}, -{"id":29527,"name":"Primalstrike Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35591}},{"crafted":{"profession":8,"spellId":35591}}]}, -{"id":29583,"name":"Sinister Scimitar","icon":"inv_sword_34","type":13,"weaponType":9,"handType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":2.9,"ilvl":20,"quality":2,"sources":[{"soldBy":{"npcId":16268,"npcName":"Eralan","zoneId":3433}}]}, -{"id":29584,"name":"Throat Piercers","icon":"inv_throwingknife_03","type":14,"rangedWeaponType":5,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":27,"weaponSpeed":1.8,"ilvl":19,"quality":2,"sources":[{"soldBy":{"npcId":16268,"npcName":"Eralan","zoneId":3433}}]}, -{"id":29592,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":29593,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":29594,"name":"Knight-Lieutenant's Mail Greaves","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,13,14,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29595,"name":"Knight-Lieutenant's Mail Vices","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,21,11,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29596,"name":"Knight-Captain's Mail Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,17,18,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29597,"name":"Knight-Captain's Mail Legguards","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,33,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29598,"name":"Lieutenant Commander's Mail Headguard","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,24,16,0,6,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29599,"name":"Lieutenant Commander's Mail Pauldrons","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,23,13,0,5,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"setName":"Lieutenant Commander's Earthshaker","setId":718,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29600,"name":"Blood Guard's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[12,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29601,"name":"Blood Guard's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[12,0,23,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29602,"name":"Legionnaire's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[21,0,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29603,"name":"Legionnaire's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[21,0,26,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29604,"name":"Champion's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[22,0,28,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29605,"name":"Champion's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[17,0,19,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"setName":"Champion's Redoubt","setId":697,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29606,"name":"Marshal's Mail Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,33,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29607,"name":"Marshal's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,18,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29608,"name":"Marshal's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,43,23,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29609,"name":"Field Marshal's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,15,49,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29610,"name":"Field Marshal's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,15,48,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29611,"name":"Field Marshal's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,21,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"setName":"Field Marshal's Earthshaker","setId":717,"sources":[{"soldBy":{"npcId":12785,"npcName":"Sergeant Major Clate","zoneId":1519}}],"factionRestriction":1}, -{"id":29612,"name":"General's Lamellar Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[23,0,29,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29613,"name":"General's Lamellar Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[26,0,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29614,"name":"General's Lamellar Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[33,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29615,"name":"Warlord's Lamellar Chestplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29616,"name":"Warlord's Lamellar Faceguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29617,"name":"Warlord's Lamellar Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[16,0,29,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"setName":"Warlord's Aegis","setId":698,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":29771,"name":"Kirin'Var Journeyman's Belt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,24,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10188,"name":"The Sigil of Krasus"}}]}, -{"id":29772,"name":"Kirin'Var Scout's Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,20,37,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10188,"name":"The Sigil of Krasus"}}]}, -{"id":29773,"name":"Battle-Mage's Helmet","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,39,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10188,"name":"The Sigil of Krasus"}}]}, -{"id":29774,"name":"Kirin'Var Defender's Chausses","icon":"inv_pants_02","type":9,"armorType":4,"stats":[0,0,41,26,18,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10188,"name":"The Sigil of Krasus"}}]}, -{"id":29775,"name":"Pendant of the Battle-Mage","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,12,21,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10176,"name":"Ar'kelos the Guardian"}}]}, -{"id":29776,"name":"Core of Ar'kelos","icon":"spell_nature_abolishmagic","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10176,"name":"Ar'kelos the Guardian"}}]}, -{"id":29777,"name":"Cloak of the Valiant Defender","icon":"inv_misc_cape_16","type":4,"stats":[0,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,160,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10176,"name":"Ar'kelos the Guardian"}}]}, -{"id":29779,"name":"Rejuvenating Scepter","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":186,"weaponSpeed":1.4,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10176,"name":"Ar'kelos the Guardian"}}]}, -{"id":29780,"name":"Kirin Tor Apprentice's Robes","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,44,34,0,14,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10320,"name":"Destroy Naberius!"}}]}, -{"id":29781,"name":"Lifewarden's Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,48,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10320,"name":"Destroy Naberius!"}}]}, -{"id":29782,"name":"Coif of the Wicked","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,26,59,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10320,"name":"Destroy Naberius!"}}]}, -{"id":29783,"name":"Legguards of the Resolute Defender","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,23,42,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10320,"name":"Destroy Naberius!"}}]}, -{"id":29784,"name":"Harmony's Touch","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,0,18,28,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10240,"name":"Building a Perimeter"}}]}, -{"id":29785,"name":"Crimson Mail Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,13,18,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10240,"name":"Building a Perimeter"}}]}, -{"id":29786,"name":"Kirin'Var Defender's Greaves","icon":"inv_boots_wolf","type":10,"armorType":4,"stats":[21,16,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10240,"name":"Building a Perimeter"}}]}, -{"id":29787,"name":"Master Smith's Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":2,"stats":[0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":202,"weaponSpeed":2.6,"ilvl":111,"quality":2,"sources":[{"quest":{"id":10332,"name":"Master Smith Rhonsus"}}]}, -{"id":29788,"name":"Finely Wrought Scale Leggings","icon":"inv_pants_02","type":9,"armorType":3,"stats":[0,38,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10332,"name":"Master Smith Rhonsus"}}]}, -{"id":29789,"name":"Andrethan's Masterwork","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[34,0,27,0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10332,"name":"Master Smith Rhonsus"}}]}, -{"id":29791,"name":"Reinforced Heaume","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[17,17,39,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10332,"name":"Master Smith Rhonsus"}}]}, -{"id":29792,"name":"Dawnstrike's Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,12,32,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10223,"name":"Down With Daellis"}}]}, -{"id":29793,"name":"Signet of the Violet Tower","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,11,25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10223,"name":"Down With Daellis"}}]}, -{"id":29794,"name":"Strength of the Violet Tower","icon":"inv_jewelry_necklace_15","type":2,"stats":[9,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10223,"name":"Down With Daellis"}}]}, -{"id":29804,"name":"Wrangler's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,28,24,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10337,"name":"When the Cows Come Home"}}]}, -{"id":29806,"name":"Cowpoke's Riding Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,21,18,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10337,"name":"When the Cows Come Home"}}]}, -{"id":29807,"name":"Engraved Cattleman's Buckle","icon":"inv_belt_01","type":8,"armorType":4,"stats":[21,0,30,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10337,"name":"When the Cows Come Home"}}]}, -{"id":29808,"name":"Shimmering Azure Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,29,20,0,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10274,"name":"Securing the Celestial Ridge"}}]}, -{"id":29810,"name":"Dragon Crested Epaulets","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,34,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10274,"name":"Securing the Celestial Ridge"}}]}, -{"id":29811,"name":"Goldenlink Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,19,18,0,0,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10274,"name":"Securing the Celestial Ridge"}}]}, -{"id":29812,"name":"Blued Steel Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,28,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10274,"name":"Securing the Celestial Ridge"}}]}, -{"id":29813,"name":"Cloak of Woven Energy","icon":"inv_misc_cape_19","type":4,"stats":[0,0,19,25,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10293,"name":"Hitting the Motherlode"}}]}, -{"id":29814,"name":"Celestial Jewel Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,20,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"unique":true,"sources":[{"quest":{"id":10293,"name":"Hitting the Motherlode"}}]}, -{"id":29815,"name":"Chain of Glowing Tendrils","icon":"inv_jewelry_necklace_04","type":2,"stats":[18,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10293,"name":"Hitting the Motherlode"}}]}, -{"id":29908,"name":"Rage Reaver","icon":"inv_axe_12","type":13,"weaponType":1,"handType":4,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":251,"weaponSpeed":3.6,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29909,"name":"Screaming Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,7,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":1.8,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29910,"name":"The Staff of Twin Worlds","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,37,0,13,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":237,"weaponSpeed":3.4,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29911,"name":"Agamaggan's Quill","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":158,"weaponDamageMax":237,"weaponSpeed":3.4,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29913,"name":"Foe Reaver","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[8,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":2.6,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29914,"name":"Hellfire Skiver","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":3,"stats":[0,7,16,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.4,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29915,"name":"Desolation Rod","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,11,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":154,"weaponSpeed":1.6,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29916,"name":"Ironstar Repeater","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":128,"weaponSpeed":2.2,"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29917,"name":"Landslide Buckler","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,21,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29918,"name":"Mindstorm Wristbands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,24,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29919,"name":"Adamantine Kite Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[8,6,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29920,"name":"Phoenix-Ring of Rebirth","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29921,"name":"Fire Crest Breastplate","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[0,0,65,37,26,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29922,"name":"Band of Al'ar","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,44,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29923,"name":"Talisman of the Sun King","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29924,"name":"Netherbane","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":327,"weaponSpeed":2.6,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29925,"name":"Phoenix-Wing Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,37,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29926,"name":"Whispering Tunic","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29927,"name":"Shadowbrim Travel Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29928,"name":"Wanderer's Stitched Trousers","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29929,"name":"Raging Spirit Harness","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29930,"name":"Nature-Stitched Kilt","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29931,"name":"Phantasmal Headdress","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29932,"name":"Arcane Ringed Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29933,"name":"Arcane Ringed Greaves","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29934,"name":"Helm of Affinity","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,36,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29935,"name":"Fire Scarred Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[20,0,36,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29936,"name":"Skyfire Greaves","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[0,0,36,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29937,"name":"Helm of Infinite Visions","icon":"inv_helmet_11","type":1,"armorType":4,"stats":[0,0,36,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29938,"name":"Battle Seeker Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29939,"name":"Flayer-Hide Leggings","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29940,"name":"Veteran's Skullcap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29941,"name":"Scale Brand Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29942,"name":"Battle Scarred Leggings","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29943,"name":"Legionnaire's Studded Helm","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,19,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29944,"name":"Protectorate Breastplate","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[19,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29945,"name":"Magistrate's Greaves","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[19,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29946,"name":"Invader's Greathelm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[19,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":81,"quality":2,"sources":[{"quest":{}}]}, -{"id":29947,"name":"Gloves of the Searing Grip","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,33,65,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29948,"name":"Claw of the Phoenix","icon":"inv_weapon_hand_12","type":13,"weaponType":3,"handType":3,"stats":[0,21,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":1.5,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29949,"name":"Arcanite Steam-Pistol","icon":"inv_weapon_rifle_18","type":14,"rangedWeaponType":3,"stats":[0,20,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":255,"weaponDamageMax":474,"weaponSpeed":2.9,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":29950,"name":"Greaves of the Bloodwarder","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[49,0,46,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29951,"name":"Star-Strider Boots","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,33,30,0,0,10,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29954,"name":"Spiritbinder's Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,24,28,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10185,"name":"A Fate Worse Than Death"}}]}, -{"id":29955,"name":"Mana Infused Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,18,21,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10185,"name":"A Fate Worse Than Death"}}]}, -{"id":29959,"name":"Spiritualist's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,27,17,12,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10185,"name":"A Fate Worse Than Death"}}]}, -{"id":29962,"name":"Heartrazor","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":2,"stats":[0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.8,"ilvl":134,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29964,"name":"Blackstorm Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,16,30,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36074}},{"crafted":{"profession":8,"spellId":36074}}]}, -{"id":29965,"name":"Girdle of the Righteous Path","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,57,35,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29966,"name":"Vambraces of Ending","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,26,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29967,"name":"Nether Vest","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,42,29,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10221,"name":"Dr. Boom!"}}]}, -{"id":29968,"name":"Nether Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,29,42,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10221,"name":"Dr. Boom!"}}]}, -{"id":29969,"name":"Sparky's Discarded Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[29,0,25,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10221,"name":"Dr. Boom!"}}]}, -{"id":29970,"name":"Wildfeather Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,0,24,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36075}},{"crafted":{"profession":8,"spellId":36075}}]}, -{"id":29971,"name":"Dragonstrike Leggings","icon":"inv_pants_plate_20","type":9,"armorType":3,"stats":[0,17,18,0,0,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36076}},{"crafted":{"profession":8,"spellId":36076}}]}, -{"id":29972,"name":"Trousers of the Astromancer","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,65,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29973,"name":"Primalstorm Breastplate","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,30,54,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36077}},{"crafted":{"profession":8,"spellId":36077}}]}, -{"id":29974,"name":"Living Crystal Breastplate","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,45,38,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36078}},{"crafted":{"profession":8,"spellId":36078}}]}, -{"id":29975,"name":"Golden Dragonstrike Breastplate","icon":"inv_chest_plate06","type":5,"armorType":3,"stats":[0,33,25,0,0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36079}},{"crafted":{"profession":8,"spellId":36079}}]}, -{"id":29976,"name":"Worldstorm Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,41,33,22,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29977,"name":"Star-Soul Breeches","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,51,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29978,"name":"Consortium Combatant's Robes","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,36,39,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10310,"name":"Sabotage the Warp-Gate!"}}]}, -{"id":29979,"name":"Netherstorm Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,39,36,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10310,"name":"Sabotage the Warp-Gate!"}}]}, -{"id":29980,"name":"Midrealm Leggings","icon":"inv_pants_13","type":9,"armorType":4,"stats":[39,0,16,0,0,10,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10310,"name":"Sabotage the Warp-Gate!"}}]}, -{"id":29981,"name":"Ethereum Life-Staff","icon":"inv_staff_52","type":13,"weaponType":8,"handType":4,"stats":[0,0,89,0,62,0,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3.2,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29982,"name":"Wand of the Forgotten Star","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,0,20,0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":186,"weaponDamageMax":346,"weaponSpeed":1.5,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":29983,"name":"Fel-Steel Warhelm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[46,0,46,0,0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":29984,"name":"Girdle of Zaetar","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,42,33,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":29985,"name":"Void Reaver Greaves","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,44,52,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":29986,"name":"Cowl of the Grand Engineer","icon":"inv_helmet_14","type":1,"armorType":1,"stats":[0,0,47,45,0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":29987,"name":"Gauntlets of the Sun King","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,54,36,20,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29988,"name":"The Nexus Key","icon":"inv_staff_43","type":13,"weaponType":8,"handType":4,"stats":[0,0,116,0,0,0,51,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.2,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29989,"name":"Sunshower Light Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,41,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29990,"name":"Crown of the Sun","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,72,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29991,"name":"Sunhawk Leggings","icon":"inv_pants_plate_07","type":9,"armorType":3,"stats":[0,0,64,49,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29992,"name":"Royal Cloak of the Sunstriders","icon":"inv_misc_cape_10","type":4,"stats":[0,0,45,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29993,"name":"Twinblade of the Phoenix","icon":"inv_sword_2h_blood_c_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,53,0,0,0,37,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":375,"weaponDamageMax":564,"weaponSpeed":3.6,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29994,"name":"Thalassian Wildercloak","icon":"inv_misc_cape_15","type":4,"stats":[0,28,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29995,"name":"Leggings of Murderous Intent","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,46,74,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29996,"name":"Rod of the Sun King","icon":"inv_mace_48","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":352,"weaponSpeed":2.7,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29997,"name":"Band of the Ranger-General","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,0,0,18,28,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29998,"name":"Royal Gauntlets of Silvermoon","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,57,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}]}, -{"id":29999,"name":"After Hours Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,28,27,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10199,"name":"That Little Extra Kick"}}]}, -{"id":30000,"name":"Mixologist's Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,27,28,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10199,"name":"That Little Extra Kick"}}]}, -{"id":30001,"name":"Doc's Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,28,12,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10199,"name":"That Little Extra Kick"}}]}, -{"id":30002,"name":"Boot's Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[28,0,12,0,0,0,7,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10199,"name":"That Little Extra Kick"}}]}, -{"id":30003,"name":"Gloves of the Nether-Stalker","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,30,27,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10318,"name":"Dealing with the Overmaster"}}]}, -{"id":30004,"name":"Landing Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10318,"name":"Dealing with the Overmaster"}}]}, -{"id":30005,"name":"Overmaster's Shoulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[30,0,12,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10318,"name":"Dealing with the Overmaster"}}]}, -{"id":30006,"name":"Wind Trader's Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,6,34,0,0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10318,"name":"Dealing with the Overmaster"}}]}, -{"id":30007,"name":"The Darkener's Grasp","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,40,0,0,0,0,0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"sources":[{"quest":{"id":11007,"name":"Kael'thas and the Verdant Sphere"}}]}, -{"id":30008,"name":"Pendant of the Lost Ages","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30009,"name":"The Burning Crusader","icon":"inv_axe_54","type":13,"weaponType":1,"handType":4,"stats":[27,27,27,0,0,26,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.6,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10408,"name":"Nexus-King Salhadaar"}}]}, -{"id":30010,"name":"Fleshling Simulation Staff","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,27,51,0,0,26,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":252,"weaponSpeed":2.4,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10408,"name":"Nexus-King Salhadaar"}}]}, -{"id":30011,"name":"Ameer's Impulse Taser","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,17,40,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":252,"weaponSpeed":2.4,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10408,"name":"Nexus-King Salhadaar"}}]}, -{"id":30012,"name":"Ameer's Judgement","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,65,0,27,0,17,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":252,"weaponSpeed":2.4,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10408,"name":"Nexus-King Salhadaar"}}]}, -{"id":30013,"name":"Twin-Bladed Ripper","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,12,23,0,0,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":157,"weaponSpeed":1.8,"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10408,"name":"Nexus-King Salhadaar"}}]}, -{"id":30014,"name":"X-52 Pilot's Leggings","icon":"inv_pants_cloth_07","type":9,"armorType":2,"stats":[0,31,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10249,"name":"Back to the Chief!"}}]}, -{"id":30015,"name":"The Sun King's Talisman","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,0,35,35,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"sources":[{"quest":{"id":11007,"name":"Kael'thas and the Verdant Sphere"}}]}, -{"id":30016,"name":"X-52 Technician's Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[38,0,36,0,0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10249,"name":"Back to the Chief!"}}]}, -{"id":30017,"name":"Telonicus' Pendant of Mayhem","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,27,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"sources":[{"quest":{"id":11007,"name":"Kael'thas and the Verdant Sphere"}}]}, -{"id":30018,"name":"Lord Sanguinar's Claim","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,40,36,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"sources":[{"quest":{"id":11007,"name":"Kael'thas and the Verdant Sphere"}}]}, -{"id":30019,"name":"Area 52 Defender's Pants","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,50,31,16,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{"id":10249,"name":"Back to the Chief!"}}]}, -{"id":30020,"name":"Fire-Cord of the Magus","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,43,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30021,"name":"Wildfury Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":452,"weaponSpeed":3,"ilvl":134,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30022,"name":"Pendant of the Perilous","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[32,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30023,"name":"Totem of the Maelstrom","icon":"spell_nature_earthbind","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30024,"name":"Mantle of the Elven Kings","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,41,33,0,18,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30025,"name":"Serpentshrine Shuriken","icon":"inv_throwingknife_06","type":14,"rangedWeaponType":5,"stats":[0,0,14,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":211,"weaponSpeed":1.4,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30026,"name":"Bands of the Celestial Archer","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,24,26,0,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30027,"name":"Boots of Courage Unending","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,37,41,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30028,"name":"Seventh Ring of the Tirisfalen","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,37,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30029,"name":"Bark-Gloves of Ancient Wisdom","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,49,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30030,"name":"Girdle of Fallen Stars","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,40,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}]}, -{"id":30031,"name":"Red Havoc Boots","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,49,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36392}},{"crafted":{"profession":2,"spellId":36392}}]}, -{"id":30032,"name":"Red Belt of Battle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[41,0,21,0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36390}},{"crafted":{"profession":2,"spellId":36390}}]}, -{"id":30033,"name":"Boots of the Protector","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[34,0,48,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36391}},{"crafted":{"profession":2,"spellId":36391}}]}, -{"id":30034,"name":"Belt of the Guardian","icon":"inv_belt_28","type":8,"armorType":4,"stats":[24,0,48,0,0,0,0,0,0,19,22,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36389}},{"crafted":{"profession":2,"spellId":36389}}]}, -{"id":30035,"name":"Boots of the Long Road","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,48,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36318}},{"crafted":{"profession":11,"spellId":36318}}]}, -{"id":30036,"name":"Belt of the Long Road","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,30,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36316}},{"crafted":{"profession":11,"spellId":36316}}]}, -{"id":30037,"name":"Boots of Blasting","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,47,33,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36317}},{"crafted":{"profession":11,"spellId":36317}}]}, -{"id":30038,"name":"Belt of Blasting","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,0,43,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36315}},{"crafted":{"profession":11,"spellId":36315}}]}, -{"id":30039,"name":"Boots of Utter Darkness","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,33,34,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36357}},{"crafted":{"profession":8,"spellId":36357}}]}, -{"id":30040,"name":"Belt of Deep Shadow","icon":"inv_belt_29","type":8,"armorType":2,"stats":[0,33,47,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36351}},{"crafted":{"profession":8,"spellId":36351}}]}, -{"id":30041,"name":"Boots of Natural Grace","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,33,64,13,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36355}},{"crafted":{"profession":8,"spellId":36355}}]}, -{"id":30042,"name":"Belt of Natural Power","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,29,59,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36349}},{"crafted":{"profession":8,"spellId":36349}}]}, -{"id":30043,"name":"Hurricane Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,48,33,16,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36359}},{"crafted":{"profession":8,"spellId":36359}}]}, -{"id":30044,"name":"Monsoon Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,44,33,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36353}},{"crafted":{"profession":8,"spellId":36353}}]}, -{"id":30045,"name":"Boots of the Crimson Hawk","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,29,51,0,0,0,19,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36358}},{"crafted":{"profession":8,"spellId":36358}}]}, -{"id":30046,"name":"Belt of the Black Eagle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,33,41,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36352}},{"crafted":{"profession":8,"spellId":36352}}]}, -{"id":30047,"name":"Blackfathom Warbands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30048,"name":"Brighthelm of Justice","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,77,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30049,"name":"Fathomstone","icon":"inv_misc_gem_azuredraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30050,"name":"Boots of the Shifting Nightmare","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,56,42,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30051,"name":"Idol of the Crescent Goddess","icon":"inv_qirajidol_night","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30052,"name":"Ring of Lethality","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,24,42,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30053,"name":"Pauldrons of the Wardancer","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[38,0,21,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30054,"name":"Ranger-General's Chestguard","icon":"inv_chest_plate09","type":5,"armorType":3,"stats":[0,44,48,0,0,0,14,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30055,"name":"Shoulderpads of the Stranger","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,33,55,0,0,0,16,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30056,"name":"Robe of Hateful Echoes","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,66,43,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30057,"name":"Bracers of Eradication","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,12,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30058,"name":"Mallet of the Tides","icon":"inv_weapon_shortblade_42","type":13,"weaponType":4,"handType":2,"stats":[0,0,34,0,0,0,0,0,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":1.7,"ilvl":134,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30059,"name":"Choker of Animalistic Fury","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,24,0,0,0,23,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30060,"name":"Boots of Effortless Striking","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30061,"name":"Ancestral Ring of Conquest","icon":"inv_jewelry_ring_41","type":11,"stats":[32,21,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30062,"name":"Grove-Bands of Remulos","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,31,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30063,"name":"Libram of Absolute Truth","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30064,"name":"Cord of Screaming Terrors","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,43,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30065,"name":"Glowing Breastplate of Truth","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,74,24,26,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30066,"name":"Tempest-Strider Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,48,23,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30067,"name":"Velvet Boots of the Guardian","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,39,42,15,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30068,"name":"Girdle of the Tidal Call","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,35,30,0,0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30069,"name":"Earthforged Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[16,0,16,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,4,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36122}},{"crafted":{"profession":2,"spellId":36122}}]}, -{"id":30070,"name":"Windforged Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,16,12,0,0,7,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36124}},{"crafted":{"profession":2,"spellId":36124}}]}, -{"id":30071,"name":"Light Earthforged Blade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":2.5,"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36125}},{"crafted":{"profession":2,"spellId":36125}}]}, -{"id":30072,"name":"Light Skyforged Axe","icon":"inv_axe_67","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":2.5,"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36126}},{"crafted":{"profession":2,"spellId":36126}}]}, -{"id":30073,"name":"Light Emberforged Hammer","icon":"inv_hammer_21","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":2.6,"ilvl":52,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36128}},{"crafted":{"profession":2,"spellId":36128}}]}, -{"id":30074,"name":"Heavy Earthforged Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[30,11,36,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36129}},{"crafted":{"profession":2,"spellId":36129}}]}, -{"id":30075,"name":"Gnarled Chestpiece of the Ancients","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,72,50,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30076,"name":"Stormforged Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,25,21,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36130}},{"crafted":{"profession":2,"spellId":36130}}]}, -{"id":30077,"name":"Windforged Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.7,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36131}},{"crafted":{"profession":2,"spellId":36131}}]}, -{"id":30079,"name":"Illidari Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,51,33,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30080,"name":"Luminescent Rod of the Naaru","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,21,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":186,"weaponDamageMax":346,"weaponSpeed":1.5,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30081,"name":"Warboots of Obliteration","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[44,0,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30082,"name":"Talon of Azshara","icon":"inv_sword_50","type":13,"weaponType":9,"handType":2,"stats":[0,15,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":339,"weaponSpeed":2.7,"ilvl":134,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30083,"name":"Ring of Sundered Souls","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30084,"name":"Pauldrons of the Argent Sentinel","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,51,34,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30085,"name":"Mantle of the Tireless Tracker","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,32,33,0,0,23,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30086,"name":"Stoneforged Claymore","icon":"inv_sword_37","type":13,"weaponType":9,"handType":4,"stats":[40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":207,"weaponDamageMax":311,"weaponSpeed":3.3,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36133}},{"crafted":{"profession":2,"spellId":36133}}]}, -{"id":30087,"name":"Stormforged Axe","icon":"inv_axe_39","type":13,"weaponType":1,"handType":2,"stats":[0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":205,"weaponSpeed":2.6,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36134}},{"crafted":{"profession":2,"spellId":36134}}]}, -{"id":30088,"name":"Skyforged Great Axe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,35,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":213,"weaponDamageMax":321,"weaponSpeed":3.4,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36135}},{"crafted":{"profession":2,"spellId":36135}}]}, -{"id":30089,"name":"Lavaforged Warhammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":197,"weaponSpeed":2.5,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36136}},{"crafted":{"profession":2,"spellId":36136}}]}, -{"id":30090,"name":"World Breaker","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[50,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":3.7,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30091,"name":"True-Aim Stalker Bands","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,25,18,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30092,"name":"Orca-Hide Boots","icon":"inv_boots_cloth_16","type":10,"armorType":2,"stats":[0,0,45,33,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30093,"name":"Great Earthforged Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":330,"weaponSpeed":3.5,"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36137}},{"crafted":{"profession":2,"spellId":36137}}]}, -{"id":30095,"name":"Fang of the Leviathan","icon":"inv_sword_73","type":13,"weaponType":9,"handType":1,"stats":[0,0,43,0,0,0,21,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.8,"ilvl":134,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30096,"name":"Girdle of the Invulnerable","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,37,0,0,0,0,0,0,31,19,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30097,"name":"Coral-Barbed Shoulderpads","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,0,54,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30098,"name":"Razor-Scale Battlecloak","icon":"inv_misc_cape_20","type":4,"stats":[33,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30099,"name":"Frayed Tether of the Drowned","icon":"inv_misc_noose_01","type":2,"stats":[0,0,45,0,0,18,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30100,"name":"Soul-Strider Boots","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,36,29,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30101,"name":"Bloodsea Brigand's Vest","icon":"inv_chest_plate08","type":5,"armorType":2,"stats":[0,46,24,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30102,"name":"Krakken-Heart Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[61,43,42,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30103,"name":"Fang of Vashj","icon":"inv_weapon_shortblade_39","type":13,"weaponType":2,"handType":2,"stats":[0,0,19,0,0,0,0,0,21,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":217,"weaponSpeed":1.8,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30104,"name":"Cobra-Lash Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,33,47,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30105,"name":"Serpent Spine Longbow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,19,17,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":3,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30106,"name":"Belt of One-Hundred Deaths","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,37,51,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30107,"name":"Vestments of the Sea-Witch","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,53,49,0,27,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30108,"name":"Lightfathom Scepter","icon":"inv_weapon_shortblade_43","type":13,"weaponType":4,"handType":1,"stats":[0,0,43,0,28,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":248,"weaponSpeed":1.9,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30109,"name":"Ring of Endless Coils","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,31,32,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30110,"name":"Coral Band of the Revived","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,32,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30112,"name":"Glorious Gauntlets of Crestfall","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,48,37,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30113,"name":"Destroyer Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[38,0,57,0,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30114,"name":"Destroyer Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[24,0,44,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30115,"name":"Destroyer Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[42,0,48,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30116,"name":"Destroyer Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[36,0,60,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30117,"name":"Destroyer Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[27,0,44,0,0,0,0,0,0,29,21,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30118,"name":"Destroyer Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[50,0,48,0,0,15,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30119,"name":"Destroyer Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[44,0,46,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30120,"name":"Destroyer Battle-Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[47,0,45,0,0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[1,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30121,"name":"Destroyer Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[52,0,57,0,0,22,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30122,"name":"Destroyer Shoulderblades","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[36,0,38,0,0,18,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30123,"name":"Crystalforge Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[41,0,55,0,0,0,0,0,0,28,34,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30124,"name":"Crystalforge Handguards","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[35,0,40,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30125,"name":"Crystalforge Faceguard","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[37,0,48,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30126,"name":"Crystalforge Legguards","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[39,0,54,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30127,"name":"Crystalforge Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[35,0,38,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30129,"name":"Crystalforge Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[56,0,40,0,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30130,"name":"Crystalforge Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[44,0,35,0,0,0,23,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30131,"name":"Crystalforge War-Helm","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[56,0,46,0,0,0,23,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30132,"name":"Crystalforge Greaves","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[59,0,42,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30133,"name":"Crystalforge Shoulderbraces","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[45,0,34,0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30134,"name":"Crystalforge Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,63,47,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30135,"name":"Crystalforge Gloves","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,51,35,22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30136,"name":"Crystalforge Greathelm","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[0,0,59,47,26,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30137,"name":"Crystalforge Leggings","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[0,0,68,46,26,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30138,"name":"Crystalforge Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,55,35,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30139,"name":"Rift Stalker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,48,51,0,0,19,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30140,"name":"Rift Stalker Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,34,44,0,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30141,"name":"Rift Stalker Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,41,55,0,0,26,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30142,"name":"Rift Stalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,53,59,0,0,18,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30143,"name":"Rift Stalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,26,47,0,0,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30144,"name":"Deathmantle Chestguard","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,47,80,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30145,"name":"Deathmantle Handguards","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,36,65,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30146,"name":"Deathmantle Helm","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,39,80,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30148,"name":"Deathmantle Legguards","icon":"inv_pants_plate_05","type":9,"armorType":2,"stats":[0,47,85,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30149,"name":"Deathmantle Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,34,58,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30150,"name":"Vestments of the Avatar","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,55,47,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30151,"name":"Gloves of the Avatar","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,35,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30152,"name":"Cowl of the Avatar","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,62,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30153,"name":"Breeches of the Avatar","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30154,"name":"Mantle of the Avatar","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,49,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30159,"name":"Shroud of the Avatar","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,47,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30160,"name":"Handguards of the Avatar","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,54,35,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30161,"name":"Hood of the Avatar","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,63,47,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30162,"name":"Leggings of the Avatar","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,0,25,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30163,"name":"Wings of the Avatar","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,35,24,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30164,"name":"Cataclysm Chestguard","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,64,41,30,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30165,"name":"Cataclysm Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,65,35,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30166,"name":"Cataclysm Headguard","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,0,72,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30167,"name":"Cataclysm Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,89,47,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30168,"name":"Cataclysm Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,53,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30169,"name":"Cataclysm Chestpiece","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,59,47,26,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30170,"name":"Cataclysm Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,49,35,0,19,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30171,"name":"Cataclysm Headpiece","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,0,58,46,0,18,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30172,"name":"Cataclysm Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,88,46,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30173,"name":"Cataclysm Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,41,35,16,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30185,"name":"Cataclysm Chestplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,41,66,0,0,19,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30186,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,47,27,0,0,12,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615}, -{"id":30187,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615}, -{"id":30188,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615}, -{"id":30189,"name":"Cataclysm Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,35,51,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30190,"name":"Cataclysm Helm","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,41,60,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30192,"name":"Cataclysm Legplates","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,41,78,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30194,"name":"Cataclysm Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,40,37,0,0,16,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30196,"name":"Robes of Tirisfal","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,47,20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30200,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,27,0,0,27,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615}, -{"id":30201,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615}, -{"id":30205,"name":"Gloves of Tirisfal","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,50,35,18,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30206,"name":"Cowl of Tirisfal","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,63,47,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30207,"name":"Leggings of Tirisfal","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,0,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30210,"name":"Mantle of Tirisfal","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,34,24,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30211,"name":"Gloves of the Corruptor","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,65,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30212,"name":"Hood of the Corruptor","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,80,47,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30213,"name":"Leggings of the Corruptor","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,72,47,0,24,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30214,"name":"Robe of the Corruptor","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,73,47,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30215,"name":"Mantle of the Corruptor","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,55,35,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30216,"name":"Nordrassil Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,64,47,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30217,"name":"Nordrassil Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,50,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30218,"name":"Junior Technician 3rd Grade Shoulders","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,28,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10186,"name":"You're Hired!"}}]}, -{"id":30219,"name":"Nordrassil Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,62,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30220,"name":"Nordrassil Life-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,68,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30221,"name":"Nordrassil Life-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,50,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30222,"name":"Nordrassil Chestplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,46,78,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30223,"name":"Nordrassil Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,69,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30224,"name":"Junior Technician 3rd Grade Gloves","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,24,28,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10186,"name":"You're Hired!"}}]}, -{"id":30225,"name":"Junior Technician 3rd Grade Bracers","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,10,24,0,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10186,"name":"You're Hired!"}}]}, -{"id":30226,"name":"Alley's Recurve","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,7,15,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.5,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10191,"name":"Mark V is Alive!"}}]}, -{"id":30227,"name":"Mark V's Throwing Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,7,15,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":166,"weaponSpeed":1.7,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10191,"name":"Mark V is Alive!"}}]}, -{"id":30228,"name":"Nordrassil Headdress","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,46,77,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30229,"name":"Nordrassil Feral-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,48,83,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30230,"name":"Nordrassil Feral-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,35,65,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30231,"name":"Nordrassil Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,63,46,0,19,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30232,"name":"Nordrassil Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,50,35,23,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30233,"name":"Nordrassil Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,58,46,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30234,"name":"Nordrassil Wrath-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,68,46,33,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30235,"name":"Nordrassil Wrath-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,50,35,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":30252,"name":"Unearthed Enkaat Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,15,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10191,"name":"Mark V is Alive!"}}]}, -{"id":30253,"name":"Ethereal Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,18,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10335,"name":"Surveying the Ruins"}}]}, -{"id":30254,"name":"Zephyrion's Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,18,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10335,"name":"Surveying the Ruins"}}]}, -{"id":30255,"name":"Chestguard of the Stormspire","icon":"inv_chest_leather_08","type":5,"armorType":3,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10335,"name":"Surveying the Ruins"}}]}, -{"id":30256,"name":"Pants of the Naaru","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,45,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10280,"name":"Special Delivery to Shattrath City"}}]}, -{"id":30257,"name":"Shattrath Leggings","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,35,48,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10280,"name":"Special Delivery to Shattrath City"}}]}, -{"id":30258,"name":"Chestplate of A'dal","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[35,0,27,0,0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10280,"name":"Special Delivery to Shattrath City"}}]}, -{"id":30262,"name":"Trep's Shoulderguards","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,0,26,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10226,"name":"Elemental Power Extraction"}}]}, -{"id":30263,"name":"Heavy-Duty Engineering Boots","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,13,15,0,0,26,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10226,"name":"Elemental Power Extraction"}}]}, -{"id":30264,"name":"Area 52 Engineering Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[10,13,19,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10226,"name":"Elemental Power Extraction"}}]}, -{"id":30265,"name":"Zaxxis Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,23,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10205,"name":"Warp-Raider Nesaad"}}]}, -{"id":30266,"name":"Zaxxis Boots","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,13,29,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10205,"name":"Warp-Raider Nesaad"}}]}, -{"id":30267,"name":"Zaxxis Gloves","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[13,12,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10205,"name":"Warp-Raider Nesaad"}}]}, -{"id":30268,"name":"Heap Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,32,24,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10309,"name":"It's a Fel Reaver, But with Heart"}}]}, -{"id":30269,"name":"Warp-Raider's Eyepatch","icon":"inv_helmet_45","type":1,"armorType":2,"stats":[0,25,43,0,0,15,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10309,"name":"It's a Fel Reaver, But with Heart"}}]}, -{"id":30270,"name":"Scavenged Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[14,15,36,0,0,14,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10309,"name":"It's a Fel Reaver, But with Heart"}}]}, -{"id":30271,"name":"Midrealm Hat","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10267,"name":"Rightful Repossession"}}]}, -{"id":30272,"name":"Eco-Dome Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,23,51,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10267,"name":"Rightful Repossession"}}]}, -{"id":30273,"name":"Duro Footgear","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,23,35,0,0,22,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10267,"name":"Rightful Repossession"}}]}, -{"id":30274,"name":"Papa's Armbands","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[0,0,18,8,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10206,"name":"Pick Your Part"}}]}, -{"id":30275,"name":"Mech Tech Shoulders","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[23,0,25,0,0,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10206,"name":"Pick Your Part"}}]}, -{"id":30276,"name":"Wheeler Family Heirloom","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,20,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10206,"name":"Pick Your Part"}}]}, -{"id":30277,"name":"Ripfang Paw","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":1,"stats":[0,10,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":210,"weaponSpeed":2.7,"ilvl":111,"quality":2,"sources":[{"quest":{"id":10235,"name":"Declawing Doomclaw"}}]}, -{"id":30278,"name":"Pilfered Ethereal Blade","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":124,"weaponSpeed":1.6,"ilvl":111,"quality":2,"sources":[{"quest":{"id":10235,"name":"Declawing Doomclaw"}}]}, -{"id":30279,"name":"Mama's Insurance","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,16,15,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":222,"weaponSpeed":2.2,"ilvl":111,"quality":2,"sources":[{"quest":{"id":10235,"name":"Declawing Doomclaw"}}]}, -{"id":30284,"name":"Audi's Embroidered Boots","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,19,22,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10435,"name":"Retrieving the Goods"}}]}, -{"id":30285,"name":"B.O.O.M. Operative's Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,23,34,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10435,"name":"Retrieving the Goods"}}]}, -{"id":30286,"name":"Otherworldly Pauldrons","icon":"inv_shoulder_30","type":3,"armorType":3,"stats":[0,0,19,22,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10435,"name":"Retrieving the Goods"}}]}, -{"id":30287,"name":"Mantle of Arcane Mastery","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,32,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2}, -{"id":30288,"name":"Cenarion Warden's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,18,18,0,0,16,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2}, -{"id":30289,"name":"Cenarion Warden's Belt","icon":"inv_belt_34","type":8,"armorType":3,"stats":[0,19,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2}, -{"id":30290,"name":"Leggings of Concentrated Power","icon":"inv_pants_03","type":9,"armorType":2,"stats":[0,0,51,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10440,"name":"Success!"}}]}, -{"id":30291,"name":"Nexus-Guard's Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,17,27,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10440,"name":"Success!"}}]}, -{"id":30293,"name":"Heavenly Inspiration","icon":"spell_nature_lightning","type":12,"stats":[0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"unique":true,"sources":[{"quest":{"id":10440,"name":"Success!"}}]}, -{"id":30294,"name":"Red Pointy Hat","icon":"inv_helmet_28","type":1,"armorType":1,"stats":[0,0,32,37,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10261,"name":"Wanted: Annihilator Servo!"}}]}, -{"id":30295,"name":"Exotic Spiked Shoulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10261,"name":"Wanted: Annihilator Servo!"}}]}, -{"id":30296,"name":"Lost Chestplate of the Reverent","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,44,25,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10261,"name":"Wanted: Annihilator Servo!"}}]}, -{"id":30297,"name":"Circlet of the Starcaller","icon":"inv_crown_01","type":1,"armorType":2,"stats":[0,0,41,40,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10439,"name":"Dimensius the All-Devouring"}}]}, -{"id":30298,"name":"Void Slayer's Tunic","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,47,40,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10439,"name":"Dimensius the All-Devouring"}}]}, -{"id":30299,"name":"Starcaller's Plated Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,41,40,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10439,"name":"Dimensius the All-Devouring"}}]}, -{"id":30300,"name":"Dabiri's Enigma","icon":"ability_warrior_shieldmastery","type":12,"stats":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10439,"name":"Dimensius the All-Devouring"}}]}, -{"id":30311,"name":"Warp Slicer","icon":"inv_sword_69","type":13,"weaponType":9,"handType":2,"stats":[0,0,35,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":2.9,"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30312,"name":"Infinity Blade","icon":"inv_weapon_shortblade_47","type":13,"weaponType":2,"handType":2,"stats":[0,0,35,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":2,"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30313,"name":"Staff of Disintegration","icon":"inv_staff_52","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,278,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":309,"weaponSpeed":2.8,"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30314,"name":"Phaseshift Bulwark","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,40,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,6190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30316,"name":"Devastation","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,75,0,0,0,50,0,0,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":496,"weaponDamageMax":744,"weaponSpeed":3.9,"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30317,"name":"Cosmic Infuser","icon":"inv_mace_48","type":13,"weaponType":4,"handType":1,"stats":[0,0,75,0,87,0,0,0,0,0,0,0,0,0,398,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":239,"weaponDamageMax":445,"weaponSpeed":2.8,"ilvl":175,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30318,"name":"Netherstrand Longbow","icon":"inv_weapon_bow_19","type":14,"rangedWeaponType":1,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":368,"weaponDamageMax":553,"weaponSpeed":2.9,"ilvl":175,"quality":5,"unique":true,"classAllowlist":[2,10],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}]}, -{"id":30328,"name":"Protectorate Assassin's Tunic","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,26,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10353,"name":"Arconus the Insatiable"}}]}, -{"id":30329,"name":"Flesh Handler's Headpiece","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,26,24,0,0,20,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10353,"name":"Arconus the Insatiable"}}]}, -{"id":30330,"name":"Starcaller's Plated Belt","icon":"inv_belt_04","type":8,"armorType":4,"stats":[0,0,41,20,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10353,"name":"Arconus the Insatiable"}}]}, -{"id":30331,"name":"Diviner's Cinch","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,36,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10425,"name":"Escape from the Staging Grounds"}}]}, -{"id":30332,"name":"Ferocious Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,16,28,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10425,"name":"Escape from the Staging Grounds"}}]}, -{"id":30333,"name":"Spaulders of the Protectorate","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,14,15,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10425,"name":"Escape from the Staging Grounds"}}]}, -{"id":30334,"name":"Starcaller's Plated Stompers","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,32,14,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10425,"name":"Escape from the Staging Grounds"}}]}, -{"id":30335,"name":"Druidic Force Boots","icon":"inv_boots_chain_08","type":10,"armorType":2,"stats":[0,0,34,20,12,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10406,"name":"Delivering the Message"}}]}, -{"id":30336,"name":"Surger's Hand Wraps","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,20,24,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10406,"name":"Delivering the Message"}}]}, -{"id":30337,"name":"Protectorate Headplate","icon":"inv_crown_01","type":1,"armorType":4,"stats":[20,0,38,0,0,12,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10406,"name":"Delivering the Message"}}]}, -{"id":30338,"name":"Diviner's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,27,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10413,"name":"The Horrors of Pollution"}}]}, -{"id":30339,"name":"Protectorate Assassin's Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[16,15,13,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10413,"name":"The Horrors of Pollution"}}]}, -{"id":30340,"name":"Starkiller's Bauble","icon":"spell_arcane_arcaneresilience","type":12,"stats":[0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"unique":true,"sources":[{"quest":{"id":10413,"name":"The Horrors of Pollution"}}]}, -{"id":30341,"name":"Flesh Handler's Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,18,39,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10345,"name":"The Flesh Lies..."}}]}, -{"id":30342,"name":"Protectorate Waistband","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,41,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10345,"name":"The Flesh Lies..."}}]}, -{"id":30343,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[8],"factionRestriction":2}, -{"id":30344,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[9],"factionRestriction":2}, -{"id":30345,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[7],"factionRestriction":2}, -{"id":30346,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[5],"factionRestriction":2}, -{"id":30348,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[8],"factionRestriction":1}, -{"id":30349,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[5],"factionRestriction":1}, -{"id":30350,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[9],"factionRestriction":1}, -{"id":30351,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[7],"factionRestriction":1}, -{"id":30352,"name":"Demolisher's Bracers","icon":"inv_bracer_12","type":6,"armorType":4,"stats":[14,0,21,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10345,"name":"The Flesh Lies..."}}]}, -{"id":30362,"name":"Energized Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,26,48,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10313,"name":"Measuring Warp Energies"}}]}, -{"id":30363,"name":"Warp-Shielded Hauberk","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,48,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10313,"name":"Measuring Warp Energies"}}]}, -{"id":30364,"name":"Resonating Axe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":2,"stats":[0,0,12,0,0,0,11,0,7,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":2.8,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10313,"name":"Measuring Warp Energies"}}]}, -{"id":30365,"name":"Overseer's Signet","icon":"inv_jewelry_ring_24","type":11,"stats":[25,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10323,"name":"Shutting Down Manaforge Ara"}}]}, -{"id":30366,"name":"Manastorm Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10365,"name":"Shutting Down Manaforge Ara"}}]}, -{"id":30368,"name":"Slippers of the High Priestess","icon":"inv_boots_chain_06","type":10,"armorType":1,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10409,"name":"Deathblow to the Legion"}}]}, -{"id":30369,"name":"Cleansed Fel Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,34,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10409,"name":"Deathblow to the Legion"}}]}, -{"id":30370,"name":"Gauntlets of the Redeemed Vindicator","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,24,38,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10409,"name":"Deathblow to the Legion"}}]}, -{"id":30371,"name":"Lightwarden's Girdle","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,38,24,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10409,"name":"Deathblow to the Legion"}}]}, -{"id":30372,"name":"Socrethar's Girdle","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,24,42,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10507,"name":"Turning Point"}}]}, -{"id":30373,"name":"Netherfused Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10507,"name":"Turning Point"}}]}, -{"id":30374,"name":"Greaves of Spellpower","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10507,"name":"Turning Point"}}]}, -{"id":30375,"name":"Gauntlets of the Vanquisher","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[24,23,30,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10507,"name":"Turning Point"}}]}, -{"id":30377,"name":"Karja's Medallion","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,23,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10323,"name":"Shutting Down Manaforge Ara"}}]}, -{"id":30378,"name":"Thalodien's Charm","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,0,37,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10365,"name":"Shutting Down Manaforge Ara"}}]}, -{"id":30379,"name":"Vindicator's Light Vest","icon":"inv_chest_cloth_01","type":5,"armorType":2,"stats":[0,35,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10381,"name":"Aldor No More"}}]}, -{"id":30380,"name":"Girdle of the Lost Vindicator","icon":"inv_belt_04","type":8,"armorType":4,"stats":[18,0,39,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10381,"name":"Aldor No More"}}]}, -{"id":30381,"name":"Kaylaan's Spaulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,27,26,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10381,"name":"Aldor No More"}}]}, -{"id":30382,"name":"Aldor Ceremonial Wraps","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,21,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10381,"name":"Aldor No More"}}]}, -{"id":30383,"name":"Belt of the Sage","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,16,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10198,"name":"Information Gathering"}}]}, -{"id":30384,"name":"Brightdawn Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10198,"name":"Information Gathering"}}]}, -{"id":30386,"name":"Bloodguard's Greaves","icon":"inv_boots_chain_06","type":10,"armorType":4,"stats":[11,0,42,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10198,"name":"Information Gathering"}}]}, -{"id":30394,"name":"Sunfury Blade","icon":"inv_sword_17","type":13,"weaponType":9,"handType":4,"stats":[39,0,0,0,0,0,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.5,"ilvl":114,"quality":2,"sources":[{"quest":{"id":10341,"name":"Kick Them While They're Down"}}]}, -{"id":30395,"name":"Warp-Master's Maul","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,32,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.8,"ilvl":114,"quality":2,"sources":[{"quest":{"id":10341,"name":"Kick Them While They're Down"}}]}, -{"id":30396,"name":"Jeweled Halberd","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,21,59,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":260,"weaponSpeed":2.7,"ilvl":114,"quality":2,"sources":[{"quest":{"id":10341,"name":"Kick Them While They're Down"}}]}, -{"id":30397,"name":"Spymaster's Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,7,18,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":2.7,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10198,"name":"Information Gathering"}}]}, -{"id":30398,"name":"Boots of the Beneficent","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10240,"name":"Building a Perimeter"}}]}, -{"id":30399,"name":"Nightstalker's Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,21,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10223,"name":"Down With Daellis"}}]}, -{"id":30400,"name":"Thadell's Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,29,14,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10337,"name":"When the Cows Come Home"}}]}, -{"id":30401,"name":"Farahlite Studded Boots","icon":"inv_boots_chain_07","type":10,"armorType":2,"stats":[0,28,24,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10185,"name":"A Fate Worse Than Death"}}]}, -{"id":30402,"name":"Field Agent's Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10435,"name":"Retrieving the Goods"}}]}, -{"id":30419,"name":"Brilliant Necklace","icon":"inv_jewelry_necklace_01","type":2,"stats":[2,2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":36523}},{"crafted":{"profession":7,"spellId":36523}}]}, -{"id":30420,"name":"Heavy Jade Ring","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":36524}},{"crafted":{"profession":7,"spellId":36524}}]}, -{"id":30421,"name":"Red Ring of Destruction","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":36525}},{"crafted":{"profession":7,"spellId":36525}}]}, -{"id":30422,"name":"Diamond Focus Ring","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":36526}},{"crafted":{"profession":7,"spellId":36526}}]}, -{"id":30446,"name":"Solarian's Sapphire","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[9],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":30447,"name":"Tome of Fiery Redemption","icon":"inv_misc_book_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":30448,"name":"Talon of Al'ar","icon":"spell_fire_soulburn","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[2],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":30449,"name":"Void Star Talisman","icon":"inv_misc_gem_ebondraenite_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[8],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":30450,"name":"Warp-Spring Coil","icon":"inv_gizmo_hardenedadamantitetube","type":12,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[6],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":30459,"name":"Netherflame Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,21,35,0,14,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36665}}]}, -{"id":30460,"name":"Netherflame Belt","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,16,25,0,25,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36667}}]}, -{"id":30461,"name":"Netherflame Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,16,25,0,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36668}}]}, -{"id":30463,"name":"Lifeblood Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36670}}]}, -{"id":30464,"name":"Lifeblood Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,23,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36672}}]}, -{"id":30486,"name":"Merciless Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[35,0,60,0,0,14,35,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Merciless Gladiator's Battlegear","setId":567}, -{"id":30487,"name":"Merciless Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,46,0,0,0,29,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Merciless Gladiator's Battlegear","setId":567}, -{"id":30488,"name":"Merciless Gladiator's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[35,0,54,0,0,14,31,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Merciless Gladiator's Battlegear","setId":567}, -{"id":30489,"name":"Merciless Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[47,0,63,0,0,14,43,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Merciless Gladiator's Battlegear","setId":567}, -{"id":30490,"name":"Merciless Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[29,0,51,0,0,0,27,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Merciless Gladiator's Battlegear","setId":567}, -{"id":30491,"name":"General's Plate Greaves Tier 2","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":30497,"name":"Sentinel's Mail Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,22,30,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14753,"npcName":"Illiyana Moonblaze","zoneId":331}}],"factionRestriction":1}, -{"id":30498,"name":"Outrider's Lamellar Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[32,0,21,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":4,"sources":[{"soldBy":{"npcId":14754,"npcName":"Kelm Hargunth","zoneId":17}}],"factionRestriction":2}, -{"id":30504,"name":"Leafblade Dagger","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.9,"ilvl":19,"quality":2,"unique":true,"classAllowlist":[6],"factionRestriction":2}, -{"id":30505,"name":"Ghostclaw Tunic","icon":"inv_shirt_green_01","type":5,"armorType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"classAllowlist":[6],"factionRestriction":2}, -{"id":30514,"name":"Nether Guards","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10221,"name":"Dr. Boom!"}}]}, -{"id":30515,"name":"Junior Technician 3rd Grade Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,33,37,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10186,"name":"You're Hired!"}}]}, -{"id":30516,"name":"Chief Engineer's Belt","icon":"inv_misc_bandana_01","type":8,"armorType":1,"stats":[0,0,24,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10226,"name":"Elemental Power Extraction"}}]}, -{"id":30517,"name":"Netherfarer's Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,47,26,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10353,"name":"Arconus the Insatiable"}}]}, -{"id":30518,"name":"Warpthread Vest","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,53,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10406,"name":"Delivering the Message"}}]}, -{"id":30519,"name":"Boots of the Nexus Warden","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,39,18,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10345,"name":"The Flesh Lies..."}}]}, -{"id":30520,"name":"Gold-Trimmed Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10440,"name":"Success!"}}]}, -{"id":30521,"name":"Warpweaver's Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,37,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10313,"name":"Measuring Warp Energies"}}]}, -{"id":30522,"name":"Conjurer's Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,0,0,27,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":3.4,"ilvl":114,"quality":2,"sources":[{"quest":{"id":10341,"name":"Kick Them While They're Down"}}]}, -{"id":30523,"name":"Hotshot Cattle Prod","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":1.7,"ilvl":111,"quality":2,"sources":[{"quest":{"id":10337,"name":"When the Cows Come Home"}}]}, -{"id":30531,"name":"Breeches of the Occultist","icon":"inv_pants_mail_20","type":9,"armorType":1,"stats":[0,0,53,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}]}, -{"id":30532,"name":"Kirin Tor Master's Trousers","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,53,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}]}, -{"id":30533,"name":"Vanquisher's Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[36,0,36,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":30534,"name":"Wyrmscale Greaves","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,48,0,0,0,16,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":30535,"name":"Forestwalker Kilt","icon":"inv_pants_mail_08","type":9,"armorType":2,"stats":[0,33,53,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":30536,"name":"Greaves of the Martyr","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[38,0,30,0,0,20,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}]}, -{"id":30538,"name":"Midnight Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,32,30,0,0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":30541,"name":"Stormsong Kilt","icon":"inv_pants_leather_03","type":9,"armorType":3,"stats":[0,0,53,30,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":30543,"name":"Pontifex Kilt","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,51,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}]}, -{"id":30568,"name":"The Sharp Cookie","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.4,"ilvl":108,"quality":2,"unique":true,"sources":[{"soldBy":{"npcId":21474,"npcName":"Coreiel","zoneId":3518}}],"factionRestriction":2}, -{"id":30569,"name":"Proximo's Rudius","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":1.5,"ilvl":70,"unique":true,"sources":[{"soldBy":{"zoneId":3518}}]}, -{"id":30570,"name":"Arkadian Claymore","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.6,"ilvl":114,"quality":2,"unique":true,"sources":[{"soldBy":{"npcId":21474,"npcName":"Coreiel","zoneId":3518}}],"factionRestriction":2}, -{"id":30597,"name":"Halaani Claymore","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":347,"weaponSpeed":3.6,"ilvl":114,"quality":2,"sources":[{"soldBy":{"npcId":21485,"npcName":"Aldraan","zoneId":3518}}],"factionRestriction":1}, -{"id":30599,"name":"Avenging Blades","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.4,"ilvl":108,"quality":2,"unique":true,"sources":[{"soldBy":{"npcId":21485,"npcName":"Aldraan","zoneId":3518}}],"factionRestriction":1}, -{"id":30619,"name":"Fel Reaver's Piston","icon":"inv_misc_enggizmos_14","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":30620,"name":"Spyglass of the Hidden Fleet","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}]}, -{"id":30621,"name":"Prism of Inner Calm","icon":"inv_misc_gem_diamond_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}]}, -{"id":30626,"name":"Sextant of Unstable Currents","icon":"inv_gizmo_09","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30627,"name":"Tsunami Talisman","icon":"spell_nature_unrelentingstorm","type":12,"stats":[0,0,0,0,0,10,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}]}, -{"id":30629,"name":"Scarab of Displacement","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30641,"name":"Boots of Elusion","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,34,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30642,"name":"Drape of the Righteous","icon":"inv_misc_cape_18","type":4,"stats":[0,0,20,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30643,"name":"Belt of the Tracker","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,21,23,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30644,"name":"Grips of Deftness","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,58,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30663,"name":"Fathom-Brooch of the Tidewalker","icon":"inv_misc_qirajicrystal_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}]}, -{"id":30664,"name":"Living Root of the Wildheart","icon":"inv_misc_herb_nightmarevine","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":30665,"name":"Earring of Soulful Meditation","icon":"inv_jewelry_ring_07","type":12,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[5],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":30666,"name":"Ritssyn's Lost Pendant","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,24,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30667,"name":"Ring of Unrelenting Storms","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,23,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30668,"name":"Grasp of the Dead","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,36,32,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30673,"name":"Inferno Waist Cord","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,27,42,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30674,"name":"Zierhut's Lost Treads","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,34,56,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}]}, -{"id":30675,"name":"Lurker's Cord","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}]}, -{"id":30676,"name":"Lurker's Grasp","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}]}, -{"id":30677,"name":"Lurker's Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}]}, -{"id":30678,"name":"Lurker's Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}]}, -{"id":30680,"name":"Glider's Foot-Wraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}]}, -{"id":30681,"name":"Glider's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}]}, -{"id":30682,"name":"Glider's Sabatons","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}]}, -{"id":30683,"name":"Glider's Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}]}, -{"id":30684,"name":"Ravager's Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}]}, -{"id":30685,"name":"Ravager's Wrist-Wraps","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}]}, -{"id":30686,"name":"Ravager's Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}]}, -{"id":30687,"name":"Ravager's Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}]}, -{"id":30696,"name":"Scourgebane","icon":"inv_misc_rune_10","type":12,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"classAllowlist":[4]}, -{"id":30705,"name":"Spaulders of Slaughter","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[30,0,22,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}]}, -{"id":30707,"name":"Nimble-Foot Treads","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,32,24,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}]}, -{"id":30708,"name":"Belt of Flowing Thought","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}]}, -{"id":30709,"name":"Pantaloons of Flaming Wrath","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,42,28,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}]}, -{"id":30710,"name":"Blood Guard's Necklace of Ferocity","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,17,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}]}, -{"id":30719,"name":"Spectrecles","icon":"inv_helmet_47","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"unique":true,"sources":[{"quest":{}}]}, -{"id":30720,"name":"Serpent-Coil Braid","icon":"spell_nature_poisoncleansingtotem","type":12,"stats":[0,0,0,0,0,12,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[3],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":30721,"name":"Spectrecles","icon":"inv_helmet_47","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"unique":true,"sources":[{"quest":{}}]}, -{"id":30722,"name":"Ethereum Nexus-Reaver","icon":"inv_axe_67","type":13,"weaponType":1,"handType":4,"stats":[50,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":346,"weaponDamageMax":519,"weaponSpeed":3.7,"ilvl":120,"quality":4,"expansion":2}, -{"id":30723,"name":"Talon of the Tempest","icon":"inv_weapon_shortblade_53","type":13,"weaponType":2,"handType":1,"stats":[0,0,15,0,0,9,19,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":210,"weaponSpeed":1.8,"ilvl":120,"quality":4,"unique":true,"expansion":2}, -{"id":30724,"name":"Barrel-Blade Longrifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":212,"weaponDamageMax":395,"weaponSpeed":2.6,"ilvl":120,"quality":4,"expansion":2}, -{"id":30725,"name":"Anger-Spark Gloves","icon":"inv_gauntlets_30","type":7,"armorType":1,"stats":[0,0,0,26,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30726,"name":"Archaic Charm of Presence","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,35,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30727,"name":"Gilded Trousers of Benediction","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,29,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30728,"name":"Fathom-Helm of the Deeps","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,44,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30729,"name":"Black-Iron Battlecloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30730,"name":"Terrorweave Tunic","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,48,0,0,0,21,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30731,"name":"Faceguard of the Endless Watch","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[25,0,49,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30732,"name":"Exodar Life-Staff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,46,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":449,"weaponSpeed":3.2,"ilvl":120,"quality":4,"expansion":2}, -{"id":30733,"name":"Hope Ender","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.6,"ilvl":120,"quality":4,"expansion":2}, -{"id":30734,"name":"Leggings of the Seventh Circle","icon":"inv_pants_leather_11","type":9,"armorType":1,"stats":[0,0,33,43,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30735,"name":"Ancient Spellcloak of the Highborne","icon":"inv_misc_cape_05","type":4,"stats":[0,0,23,31,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30736,"name":"Ring of Flowing Light","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,0,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"expansion":2}, -{"id":30737,"name":"Gold-Leaf Wildboots","icon":"inv_boots_cloth_08","type":10,"armorType":2,"stats":[0,0,29,39,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30738,"name":"Ring of Reciprocity","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,15,19,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"unique":true,"expansion":2}, -{"id":30739,"name":"Scaled Greaves of the Marksman","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,38,56,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30740,"name":"Ripfiend Shoulderplates","icon":"inv_shoulder_36","type":3,"armorType":4,"stats":[39,0,0,0,0,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30741,"name":"Topaz-Studded Battlegrips","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[21,0,49,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2}, -{"id":30749,"name":"Draenic Sparring Blade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":1.7,"ilvl":69,"quality":1}, -{"id":30750,"name":"Draenic Warblade","icon":"inv_sword_draenei_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.4,"ilvl":72,"quality":1}, -{"id":30751,"name":"Mag'hari Light Axe","icon":"inv_axe_17","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.8,"ilvl":70,"quality":1}, -{"id":30752,"name":"Mag'hari Battleaxe","icon":"inv_axe_20","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":110,"weaponSpeed":1.8,"ilvl":70,"quality":1}, -{"id":30753,"name":"Warphorn Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":156,"weaponSpeed":2.2,"ilvl":83,"quality":2}, -{"id":30754,"name":"Ancient Bone Mace","icon":"spell_shadow_shadowward","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":93,"weaponSpeed":1.8,"ilvl":71,"quality":1}, -{"id":30755,"name":"Mag'hari Fighting Claw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":1,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.6,"ilvl":80,"quality":2}, -{"id":30757,"name":"Draenic Light Crossbow","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2.3,"ilvl":71,"quality":1}, -{"id":30758,"name":"Aldor Guardian Rifle","icon":"inv_weapon_rifle_14","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.2,"ilvl":70,"quality":1}, -{"id":30759,"name":"Mag'hari Light Recurve","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":2.1,"ilvl":69,"quality":1}, -{"id":30760,"name":"Formal Draenic Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1}, -{"id":30761,"name":"Infernoweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30762,"name":"Infernoweave Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30763,"name":"Infernoweave Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30764,"name":"Infernoweave Gloves","icon":"inv_gauntlets_26","type":7,"armorType":1,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30765,"name":"Heavy Draenic Breastplate","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30766,"name":"Inferno Tempered Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30767,"name":"Inferno Tempered Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30768,"name":"Inferno Tempered Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30769,"name":"Inferno Tempered Chestguard","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30770,"name":"Inferno Forged Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30771,"name":"Heavy Draenic Bracers","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30772,"name":"Inferno Forged Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30773,"name":"Inferno Forged Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30774,"name":"Inferno Forged Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30775,"name":"Layered Bone Shield","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30776,"name":"Inferno Hardened Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30777,"name":"Aldor Heavy Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30778,"name":"Inferno Hardened Leggings","icon":"inv_pants_leather_18","type":9,"armorType":2,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30779,"name":"Inferno Hardened Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30780,"name":"Inferno Hardened Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":30781,"name":"Mag'hari Chain Vest","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30784,"name":"Worn Mag'hari Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":1}, -{"id":30787,"name":"Illidari-Bane Mageblade","icon":"inv_sword_77","type":13,"weaponType":2,"handType":1,"stats":[0,0,12,11,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":101,"weaponSpeed":1.6,"ilvl":115,"quality":3,"sources":[{"quest":{"id":10679,"name":"Quenching the Blade"}}]}, -{"id":30788,"name":"Illidari-Bane Broadsword","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.7,"ilvl":115,"quality":3,"sources":[{"quest":{"id":10679,"name":"Quenching the Blade"}}]}, -{"id":30789,"name":"Illidari-Bane Claymore","icon":"inv_sword_82","type":13,"weaponType":9,"handType":4,"stats":[0,0,34,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":276,"weaponDamageMax":414,"weaponSpeed":3.7,"ilvl":115,"quality":3,"sources":[{"quest":{"id":10679,"name":"Quenching the Blade"}}]}, -{"id":30804,"name":"Bronze Band of Force","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":37818}},{"crafted":{"profession":7,"spellId":37818}}]}, -{"id":30825,"name":"Ring of Arcane Shielding","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":37855}},{"crafted":{"profession":7,"spellId":37855}}]}, -{"id":30830,"name":"Trident of the Outcast Tribe","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[37,0,54,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":3.2,"ilvl":100,"quality":4,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30831,"name":"Cloak of Arcane Evasion","icon":"inv_misc_cape_16","type":4,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37873}},{"crafted":{"profession":11,"spellId":37873}}]}, -{"id":30832,"name":"Gavel of Unearthed Secrets","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,36,0,0,0,15,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":2.7,"ilvl":100,"quality":4,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30834,"name":"Shapeshifter's Signet","icon":"inv_jewelry_ring_41","type":11,"stats":[0,25,18,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30835,"name":"Salvager's Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,33,49,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30836,"name":"Leggings of the Skettis Exile","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,50,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30837,"name":"Flameheart Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37882}},{"crafted":{"profession":11,"spellId":37882}}]}, -{"id":30838,"name":"Flameheart Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37883}},{"crafted":{"profession":11,"spellId":37883}}]}, -{"id":30839,"name":"Flameheart Vest","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,30,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37884}},{"crafted":{"profession":11,"spellId":37884}}]}, -{"id":30841,"name":"Lower City Prayerbook","icon":"inv_misc_book_11","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":30847,"name":"X-52 Rocket Helmet","icon":"inv_helmet_49","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10249,"name":"Back to the Chief!"}}]}, -{"id":30855,"name":"Shatterstone Pick","icon":"inv_pick_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,7,0,0,0,7,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":1.8,"ilvl":84,"quality":2,"unique":true,"sources":[{"quest":{"id":10630,"name":"Beneath Thrallmar"}}]}, -{"id":30856,"name":"Underworld Helm","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[16,12,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"sources":[{"quest":{"id":10630,"name":"Beneath Thrallmar"}}]}, -{"id":30857,"name":"Deep Core Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":84,"quality":2,"unique":true,"sources":[{"quest":{"id":10630,"name":"Beneath Thrallmar"}}]}, -{"id":30859,"name":"Wand of the Seer","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,12,15,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":205,"weaponSpeed":1.3,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10507,"name":"Turning Point"}}]}, -{"id":30860,"name":"Kaylaan's Signet","icon":"inv_jewelry_ring_34","type":11,"stats":[0,15,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10409,"name":"Deathblow to the Legion"}}]}, -{"id":30861,"name":"Furious Shackles","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[35,0,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30862,"name":"Blessed Adamantite Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,28,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30863,"name":"Deadly Cuffs","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,29,28,0,0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30864,"name":"Bracers of the Pathfinder","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,25,45,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30865,"name":"Tracker's Blade","icon":"inv_weapon_shortblade_59","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,20,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.5,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30866,"name":"Blood-Stained Pauldrons","icon":"inv_shoulder_65","type":3,"armorType":4,"stats":[47,0,34,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30868,"name":"Rejuvenating Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,35,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30869,"name":"Howling Wind Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,45,28,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30870,"name":"Cuffs of Devastation","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,39,29,19,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30871,"name":"Bracers of Martyrdom","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,34,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30872,"name":"Chronicle of Dark Secrets","icon":"inv_offhand_hyjal_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,36,0,17,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30873,"name":"Stillwater Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,70,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}]}, -{"id":30874,"name":"The Unbreakable Will","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":1.6,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30878,"name":"Glimmering Steel Mantle","icon":"inv_shoulder_65","type":3,"armorType":4,"stats":[0,0,50,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30879,"name":"Don Alejandro's Money Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,38,60,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30880,"name":"Quickstrider Moccasins","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,29,57,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30881,"name":"Blade of Infamy","icon":"inv_sword_85","type":13,"weaponType":9,"handType":2,"stats":[0,28,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":339,"weaponSpeed":2.6,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30882,"name":"Bastion of Light","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,53,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30883,"name":"Pillar of Ferocity","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,96,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,0,0,0,0,157,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":3,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30884,"name":"Hatefury Mantle","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,32,47,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30885,"name":"Archbishop's Slippers","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,56,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30886,"name":"Enchanted Leather Sandals","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,58,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30887,"name":"Golden Links of Restoration","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,78,53,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30888,"name":"Anetheron's Noose","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,47,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}]}, -{"id":30889,"name":"Kaz'rogal's Hardened Heart","icon":"inv_shield_39","type":13,"weaponType":7,"handType":3,"stats":[21,0,43,0,0,18,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30891,"name":"Black Featherlight Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,49,41,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30892,"name":"Beast-Tamer's Shoulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,39,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30893,"name":"Sun-Touched Chain Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,61,50,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30894,"name":"Blue Suede Shoes","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,64,48,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30895,"name":"Angelista's Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30896,"name":"Glory of the Defender","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[37,0,75,0,0,29,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30897,"name":"Girdle of Hope","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,59,38,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30898,"name":"Shady Dealer's Pantaloons","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,51,102,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30899,"name":"Don Rodrigo's Poncho","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,64,53,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30900,"name":"Bow-Stitched Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,50,53,0,0,0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30901,"name":"Boundless Agony","icon":"inv_weapon_shortblade_59","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,24,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":217,"weaponSpeed":1.8,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}]}, -{"id":30902,"name":"Cataclysm's Edge","icon":"inv_sword_68","type":13,"weaponType":9,"handType":4,"stats":[75,0,49,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":580,"weaponSpeed":3.5,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30903,"name":"Legguards of Endless Rage","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[70,0,61,0,0,19,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30904,"name":"Savior's Grasp","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,106,48,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30905,"name":"Midnight Chestguard","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,53,64,0,0,29,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30906,"name":"Bristleblitz Striker","icon":"inv_weapon_bow_30","type":14,"rangedWeaponType":1,"stats":[0,0,28,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":289,"weaponDamageMax":538,"weaponSpeed":3,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30907,"name":"Mail of Fevered Pursuit","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,54,105,0,0,20,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30908,"name":"Apostle of Argus","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,0,58,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":353,"weaponDamageMax":530,"weaponSpeed":3.2,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30909,"name":"Antonidas' Aegis of Rapt Concentration","icon":"inv_shield_40","type":13,"weaponType":7,"handType":3,"stats":[0,0,43,36,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30910,"name":"Tempest of Chaos","icon":"inv_sword_90","type":13,"weaponType":9,"handType":1,"stats":[0,0,47,0,0,17,24,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":248,"weaponSpeed":1.8,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30911,"name":"Scepter of Purification","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30912,"name":"Leggings of Eternity","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,77,55,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30913,"name":"Robes of Rhonin","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,84,69,0,27,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}]}, -{"id":30914,"name":"Belt of the Crescent Moon","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,49,38,19,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30915,"name":"Belt of Seething Fury","icon":"inv_belt_27","type":8,"armorType":4,"stats":[48,0,37,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30916,"name":"Leggings of Channeled Elements","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,50,50,0,18,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30917,"name":"Razorfury Mantle","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,38,73,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30918,"name":"Hammer of Atonement","icon":"inv_mace_57","type":13,"weaponType":4,"handType":1,"stats":[0,0,47,0,0,0,23,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.8,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30919,"name":"Valestalker Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,38,39,0,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}]}, -{"id":30922,"name":"Ata'mal Crown","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,34,39,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":30923,"name":"Grom'tor's Bloodied Bandage","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,25,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10523,"name":"The Cipher of Damnation - The First Fragment Recovered"}}]}, -{"id":30924,"name":"Gloves of the High Magus","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,22,10,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{}}]}, -{"id":30925,"name":"Spaulders of the Torn-Heart","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,15,34,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30926,"name":"Ashwalker's Footwraps","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,27,18,8,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30927,"name":"Earthmender's Bracer of Shattering","icon":"inv_bracer_01","type":6,"armorType":1,"stats":[0,0,18,23,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10451,"name":"Escape from Coilskar Cistern"}}]}, -{"id":30928,"name":"Sketh'lon Survivor's Tunic","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,41,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10808,"name":"Thwart the Dark Conclave"}}]}, -{"id":30929,"name":"Soothsayer's Kilt","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,41,26,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30930,"name":"Grips of the Void","icon":"inv_gauntlets_09","type":7,"armorType":1,"stats":[0,0,26,30,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10481,"name":"Enraged Spirits of Air"}}]}, -{"id":30931,"name":"Ghostly Headwrap","icon":"inv_helmet_60","type":1,"armorType":1,"stats":[0,0,24,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,41,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10541,"name":"The Cipher of Damnation - The Second Fragment Recovered"}}]}, -{"id":30932,"name":"Akama's Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,15,34,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":30933,"name":"Hauberk of Karabor","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,45,42,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":30936,"name":"Eva's Strap","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,30,0,0,0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10541,"name":"The Cipher of Damnation - The Second Fragment Recovered"}}]}, -{"id":30937,"name":"Earthmender's Fists of Undoing","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,30,18,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10451,"name":"Escape from Coilskar Cistern"}}]}, -{"id":30938,"name":"Azurestrike Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,22,11,0,0,10,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30939,"name":"Felboar Hide Shoes","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,34,32,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30940,"name":"Aged Leather Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":30941,"name":"Ash Tempered Legguards","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,29,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10808,"name":"Thwart the Dark Conclave"}}]}, -{"id":30942,"name":"Manimal's Cinch","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10481,"name":"Enraged Spirits of Air"}}]}, -{"id":30943,"name":"Verdant Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,26,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":30944,"name":"Umberhowl's Collar","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30945,"name":"Grom'tor's Friend's Cousin's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,35,39,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10523,"name":"The Cipher of Damnation - The First Fragment Recovered"}}]}, -{"id":30946,"name":"Mooncrest Headdress","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,24,38,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30947,"name":"Crimson Mail Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,38,28,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30948,"name":"Sunfury Legguards","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,45,38,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":30950,"name":"Darkhunter's Cinch","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,28,23,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30951,"name":"Ar'tor's Mainstay","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,34,27,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30952,"name":"Earthmender's Crimson Spaulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,30,18,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10451,"name":"Escape from Coilskar Cistern"}}]}, -{"id":30953,"name":"Boots of the Skybreaker","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,24,33,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10481,"name":"Enraged Spirits of Air"}}]}, -{"id":30955,"name":"Crown of Cinders","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,21,45,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10808,"name":"Thwart the Dark Conclave"}}]}, -{"id":30956,"name":"Oronok's Old Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,12,26,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10523,"name":"The Cipher of Damnation - The First Fragment Recovered"}}]}, -{"id":30957,"name":"Oronok's Old Leggings","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10541,"name":"The Cipher of Damnation - The Second Fragment Recovered"}}]}, -{"id":30958,"name":"Blackened Chain Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":30959,"name":"Torn-Heart Family Tunic","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[39,0,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10541,"name":"The Cipher of Damnation - The Second Fragment Recovered"}}]}, -{"id":30960,"name":"Runed Sketh'lon Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[21,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10808,"name":"Thwart the Dark Conclave"}}]}, -{"id":30961,"name":"Ash-Covered Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":30962,"name":"Borak's Belt of Bravery","icon":"inv_belt_13","type":8,"armorType":4,"stats":[26,26,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30964,"name":"Skybreaker's Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[21,21,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10481,"name":"Enraged Spirits of Air"}}]}, -{"id":30966,"name":"Singed Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[21,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30967,"name":"The Hands of Fate","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[34,0,21,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10579,"name":"The Cipher of Damnation - The Third Fragment Recovered"}}]}, -{"id":30968,"name":"Earthmender's Plated Boots","icon":"inv_boots_02","type":10,"armorType":4,"stats":[0,0,32,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10451,"name":"Escape from Coilskar Cistern"}}]}, -{"id":30969,"name":"Onslaught Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[41,30,49,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30970,"name":"Onslaught Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[36,0,50,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30971,"name":"Torn-Heart Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":10541,"name":"The Cipher of Damnation - The Second Fragment Recovered"}}]}, -{"id":30972,"name":"Onslaught Battle-Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[54,41,54,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30973,"name":"Band of Anguish","icon":"inv_jewelry_ring_44","type":11,"stats":[0,13,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"sources":[{"quest":{}}]}, -{"id":30974,"name":"Onslaught Greathelm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[39,0,48,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30975,"name":"Onslaught Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[53,34,54,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30976,"name":"Onslaught Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[37,0,69,0,0,0,0,0,0,49,23,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30977,"name":"Onslaught Greaves","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,41,55,0,0,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30978,"name":"Onslaught Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[40,0,78,0,0,0,0,0,0,28,49,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30979,"name":"Onslaught Shoulderblades","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[39,39,34,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30980,"name":"Onslaught Shoulderguards","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[31,0,53,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30981,"name":"Grom'tor's Pendant of Conquest","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"unique":true,"sources":[{"quest":{"id":10523,"name":"The Cipher of Damnation - The First Fragment Recovered"}}]}, -{"id":30982,"name":"Lightbringer Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[51,0,37,0,0,0,19,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30983,"name":"Lightbringer Gloves","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,59,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30984,"name":"Spellbreaker's Buckler","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":30985,"name":"Lightbringer Handguards","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[43,0,44,0,0,0,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30986,"name":"Bloodforged Guard","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[9,12,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{}}]}, -{"id":30987,"name":"Lightbringer Faceguard","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[50,0,67,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30988,"name":"Lightbringer Greathelm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,73,54,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30989,"name":"Lightbringer War-Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[61,0,60,0,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30990,"name":"Lightbringer Breastplate","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[56,0,48,0,0,21,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30991,"name":"Lightbringer Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[43,0,69,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30992,"name":"Lightbringer Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,69,53,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30993,"name":"Lightbringer Greaves","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[68,0,48,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30994,"name":"Lightbringer Leggings","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,81,52,28,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30995,"name":"Lightbringer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[54,0,69,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30996,"name":"Lightbringer Pauldrons","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,58,39,20,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30997,"name":"Lightbringer Shoulderbraces","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[50,0,37,0,0,0,19,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30998,"name":"Lightbringer Shoulderguards","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[35,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":30999,"name":"Ashtongue Blade","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,11,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":122,"weaponSpeed":1.4,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31000,"name":"Bloodwarder's Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,15,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.6,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31001,"name":"Gronnstalker's Gloves","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,35,47,0,0,0,33,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31002,"name":"Summoner's Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,30,0,0,0,11,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":227,"weaponSpeed":2.6,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31003,"name":"Gronnstalker's Helmet","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,45,66,0,0,20,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31004,"name":"Gronnstalker's Chestguard","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,45,81,0,0,0,19,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31005,"name":"Gronnstalker's Leggings","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,66,64,0,0,0,19,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31006,"name":"Gronnstalker's Spaulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,34,48,0,0,0,18,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31007,"name":"Skyshatter Gloves","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,74,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31008,"name":"Skyshatter Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,57,39,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31009,"name":"Wildcaller","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,24,68,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":294,"weaponSpeed":2.8,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31010,"name":"Slayer's Axe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[51,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":336,"weaponSpeed":3.2,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31011,"name":"Skyshatter Grips","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,53,45,0,0,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31012,"name":"Skyshatter Helmet","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,70,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31013,"name":"Ceremonial Kris","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,30,0,10,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.6,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31014,"name":"Skyshatter Headguard","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,73,53,20,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31015,"name":"Skyshatter Cover","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,65,55,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31016,"name":"Skyshatter Chestguard","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,72,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31017,"name":"Skyshatter Breastplate","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,78,53,0,17,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31018,"name":"Skyshatter Tunic","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,56,67,0,0,15,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31019,"name":"Skyshatter Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,91,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31020,"name":"Skyshatter Legguards","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,77,53,0,20,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31021,"name":"Skyshatter Pants","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,46,81,0,0,21,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31022,"name":"Skyshatter Shoulderpads","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,56,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31023,"name":"Skyshatter Mantle","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,39,0,11,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31024,"name":"Skyshatter Pauldrons","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,43,48,0,0,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31025,"name":"Idol of the Avenger","icon":"inv_misc_rune_10","type":14,"rangedWeaponType":4,"stats":[0,0,15,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"quest":{}}]}, -{"id":31031,"name":"Stormfury Totem","icon":"spell_nature_manaregentotem","type":14,"rangedWeaponType":4,"stats":[0,10,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"unique":true,"classAllowlist":[1,7],"sources":[{"quest":{}}]}, -{"id":31032,"name":"Thunderheart Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,57,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31033,"name":"Libram of Righteous Power","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[10,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"quest":{}}]}, -{"id":31034,"name":"Thunderheart Gauntlets","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,39,72,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31035,"name":"Thunderheart Handguards","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,56,39,0,12,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31036,"name":"Oronok's Ancient Scepter","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,0,0,25,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":363,"weaponSpeed":3.5,"ilvl":108,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31037,"name":"Thunderheart Helmet","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,79,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31038,"name":"Staff of the Redeemer","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,26,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":363,"weaponSpeed":3.5,"ilvl":108,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31039,"name":"Thunderheart Cover","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,53,90,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31040,"name":"Thunderheart Headguard","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,59,53,0,13,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31041,"name":"Thunderheart Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,70,53,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31042,"name":"Thunderheart Chestguard","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,53,91,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31043,"name":"Thunderheart Vest","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,77,53,0,17,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31044,"name":"Thunderheart Leggings","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,53,95,12,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31045,"name":"Thunderheart Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,71,53,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31046,"name":"Thunderheart Pants","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,83,53,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31047,"name":"Thunderheart Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,57,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31048,"name":"Thunderheart Pauldrons","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,40,69,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31049,"name":"Thunderheart Shoulderpads","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,57,39,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31050,"name":"Gloves of the Malefic","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,73,39,0,11,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31051,"name":"Hood of the Malefic","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,82,54,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31052,"name":"Robe of the Malefic","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,82,54,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31053,"name":"Leggings of the Malefic","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,91,53,0,19,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31054,"name":"Mantle of the Malefic","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,59,39,0,21,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31055,"name":"Gloves of the Tempest","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,52,39,0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31056,"name":"Cowl of the Tempest","icon":"inv_helmet_101","type":1,"armorType":1,"stats":[0,0,68,53,0,13,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31057,"name":"Robes of the Tempest","icon":"inv_chest_cloth_67","type":5,"armorType":1,"stats":[0,0,71,53,0,13,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31058,"name":"Leggings of the Tempest","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,80,53,0,20,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31059,"name":"Mantle of the Tempest","icon":"inv_shoulder_64","type":3,"armorType":1,"stats":[0,0,51,39,21,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31060,"name":"Gloves of Absolution","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,64,39,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31061,"name":"Handguards of Absolution","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,57,39,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31062,"name":"Torn-Heart Axe of Battle","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[30,0,27,0,0,17,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":230,"weaponDamageMax":346,"weaponSpeed":3.3,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31063,"name":"Cowl of Absolution","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,63,53,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31064,"name":"Hood of Absolution","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,71,53,40,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31065,"name":"Shroud of Absolution","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,71,52,0,20,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31066,"name":"Vestments of Absolution","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,72,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31067,"name":"Leggings of Absolution","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,78,53,36,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31068,"name":"Breeches of Absolution","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,69,53,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31069,"name":"Mantle of Absolution","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,56,39,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31070,"name":"Shoulderpads of Absolution","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,51,39,0,12,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":23381,"npcName":"Tydormu"}}]}, -{"id":31071,"name":"Grom'tor's Charge","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,7,30,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.6,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31072,"name":"Lohn'goron, Bow of the Torn-Heart","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":159,"weaponDamageMax":296,"weaponSpeed":2.6,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31073,"name":"Borak's Reminder","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,11,30,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":84,"weaponDamageMax":157,"weaponSpeed":1.8,"ilvl":109,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31074,"name":"Amulet of the Torn-Heart","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{"id":10588,"name":"The Cipher of Damnation"}}]}, -{"id":31075,"name":"Evoker's Mark of the Redemption","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31076,"name":"Spellsword's Mark of the Redemption","icon":"inv_jewelry_ring_37","type":11,"stats":[23,0,14,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31077,"name":"Slayer's Mark of the Redemption","icon":"inv_jewelry_ring_39","type":11,"stats":[0,15,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31078,"name":"Protector's Mark of the Redemption","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,22,0,0,0,0,0,0,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31080,"name":"Mercurial Stone","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,27,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":1,"spellId":38070}},{"crafted":{"profession":1,"spellId":38070}}]}, -{"id":31104,"name":"Evoker's Helmet of Second Sight","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,26,30,8,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31105,"name":"Overlord's Helmet of Second Sight","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[29,0,22,0,0,13,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31106,"name":"Stalker's Helmet of Second Sight","icon":"inv_helmet_01","type":1,"armorType":3,"stats":[0,31,18,0,0,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31107,"name":"Shamanistic Helmet of Second Sight","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,26,30,10,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31109,"name":"Stealther's Helmet of Second Sight","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,30,41,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31110,"name":"Druidic Helmet of Second Sight","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,26,30,10,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31111,"name":"Uvuros Hide Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,26,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":31112,"name":"Uvuros Hide Boots","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,0,26,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":31113,"name":"Violet Badge","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"quest":{"id":9860,"name":"The New Directive"}}]}, -{"id":31114,"name":"Uvuros Hide Cinch","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,26,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":31115,"name":"Uvuros Plated Spaulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[24,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{}}]}, -{"id":31125,"name":"Boots of the Decimator","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[37,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":31126,"name":"Gloves of Ferocity","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,23,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":31127,"name":"Hauberk of Totemic Rage","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,23,35,0,0,22,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":31131,"name":"Sash of Silent Blades","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,28,23,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":31133,"name":"Leggings of Concentrated Darkness","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,38,32,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3}, -{"id":31134,"name":"Blade of Misfortune","icon":"inv_sword_71","type":13,"weaponType":9,"handType":4,"stats":[29,0,28,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":3.4,"ilvl":85,"quality":3}, -{"id":31136,"name":"Breastplate of Blade Turning","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[38,0,22,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3}, -{"id":31137,"name":"Gauntlets of Purification","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,16,25,12,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3}, -{"id":31138,"name":"Storm Lord's Girdle","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,24,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3}, -{"id":31139,"name":"Fist of Reckoning","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,10,16,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":2.7,"ilvl":88,"quality":3}, -{"id":31140,"name":"Cloak of Entropy","icon":"inv_misc_cape_16","type":4,"stats":[0,0,17,21,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3}, -{"id":31142,"name":"Blade of Trapped Knowledge","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":106,"weaponSpeed":1.5,"ilvl":88,"quality":3}, -{"id":31143,"name":"Shroud of Frenzy","icon":"inv_misc_cape_18","type":4,"stats":[21,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31145,"name":"Headdress of the Sleeper","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,24,14,0,41,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31147,"name":"Pendant of Cunning","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31148,"name":"Demon Hide Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,23,32,0,0,11,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31149,"name":"Gloves of Pandemonium","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,23,21,0,10,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31150,"name":"Gloves of Piety","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,26,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":91,"quality":3}, -{"id":31151,"name":"Girdle of Siege","icon":"inv_belt_23","type":8,"armorType":4,"stats":[30,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":31152,"name":"Chestguard of Illumination","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[42,0,19,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":31153,"name":"Axe of the Legion","icon":"inv_axe_18","type":13,"weaponType":1,"handType":2,"stats":[16,0,15,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":2.4,"ilvl":94,"quality":3}, -{"id":31154,"name":"Bronze Torc","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":38175}},{"crafted":{"profession":7,"spellId":38175}}]}, -{"id":31155,"name":"Drakescale Breastplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":109,"quality":3}, -{"id":31156,"name":"Drakescale Hauberk","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":109,"quality":3}, -{"id":31157,"name":"Drakehide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":109,"quality":3}, -{"id":31158,"name":"Drakeweave Raiment","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":109,"quality":3}, -{"id":31159,"name":"Felstone Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":109,"quality":3}, -{"id":31160,"name":"Felstone Epaulets","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":109,"quality":3}, -{"id":31161,"name":"Felstone Spaulders","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":109,"quality":3}, -{"id":31162,"name":"Felstone Mantle","icon":"inv_shoulder_30","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":109,"quality":3}, -{"id":31163,"name":"Nethersteel Handguards","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":103,"quality":3}, -{"id":31164,"name":"Nethersteel Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":103,"quality":3}, -{"id":31165,"name":"Nethersteel-Reinforced Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":103,"quality":3}, -{"id":31166,"name":"Nethersteel-Lined Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":103,"quality":3}, -{"id":31168,"name":"Demon-Forged Chestguard","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":82,"quality":3}, -{"id":31170,"name":"Demon-Forged Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":82,"quality":3}, -{"id":31172,"name":"Demon-Cured Tunic","icon":"inv_chest_samurai","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":82,"quality":3}, -{"id":31173,"name":"Boots of Savagery","icon":"inv_boots_02","type":10,"armorType":3,"stats":[27,0,18,0,0,10,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":31174,"name":"Demonweave Raiment","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":82,"quality":3}, -{"id":31175,"name":"Blade Dancer's Wristguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":31176,"name":"Rockwurm Plate Handguards","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":91,"quality":3}, -{"id":31177,"name":"Rockwurm Scale Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":91,"quality":3}, -{"id":31178,"name":"Amulet of Unstable Power","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,0,15,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3}, -{"id":31179,"name":"Rockwurm Hide Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":91,"quality":3}, -{"id":31180,"name":"Gauntlets of the Skullsplitter","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[31,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":31181,"name":"Rockwurm Hide Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":91,"quality":3}, -{"id":31182,"name":"Legion Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":85,"quality":3}, -{"id":31183,"name":"Legion Coif","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":85,"quality":3}, -{"id":31184,"name":"Legion Headguard","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":85,"quality":3}, -{"id":31185,"name":"Legion Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":85,"quality":3}, -{"id":31186,"name":"Braxxis' Staff of Slumber","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":181,"weaponDamageMax":273,"weaponSpeed":3,"ilvl":97,"quality":3}, -{"id":31187,"name":"Boots of the Pathfinder","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,24,0,0,0,0,19,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":31188,"name":"Crocolisk Scale Vambraces","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":94,"quality":3}, -{"id":31189,"name":"Crocolisk Scale Wristguards","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":94,"quality":3}, -{"id":31190,"name":"The Dreamer's Shoulderpads","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[23,21,16,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":31191,"name":"Crocolisk Hide Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":94,"quality":3}, -{"id":31192,"name":"Crocolisk Hide Bindings","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":94,"quality":3}, -{"id":31193,"name":"Blade of Unquenched Thirst","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":53,"weaponDamageMax":98,"weaponSpeed":1.3,"ilvl":97,"quality":3}, -{"id":31194,"name":"Gronn-Blessed Warbeads","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":97,"quality":3}, -{"id":31195,"name":"Voidplate Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":103,"quality":3}, -{"id":31196,"name":"Amulet of Sanctification","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,20,9,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3}, -{"id":31197,"name":"Voidscale Belt","icon":"inv_belt_32","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":103,"quality":3}, -{"id":31198,"name":"Voidhide Cord","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":103,"quality":3}, -{"id":31199,"name":"Voidweave Cilice","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":103,"quality":3}, -{"id":31200,"name":"Shield of the Wayward Footman","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,2477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":31201,"name":"Illidari Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":103,"quality":3}, -{"id":31202,"name":"Girdle of Divine Blessing","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,37,22,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":31203,"name":"Arcane Loop","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":103,"quality":3}, -{"id":31204,"name":"The Gunblade","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":2.8,"ilvl":100,"quality":3}, -{"id":31209,"name":"Chimaerascale Legplates","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":109,"quality":3}, -{"id":31210,"name":"Chimaerascale Legguards","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":109,"quality":3}, -{"id":31211,"name":"Chimaerahide Pants","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":109,"quality":3}, -{"id":31212,"name":"Chimaerahide Leggings","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":109,"quality":3}, -{"id":31213,"name":"Abyssal Plate Sabatons","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":109,"quality":3}, -{"id":31214,"name":"Abyssal Mail Greaves","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":109,"quality":3}, -{"id":31215,"name":"Abyssal Leather Treads","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":109,"quality":3}, -{"id":31216,"name":"Abyssal Cloth Footwraps","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":109,"quality":3}, -{"id":31217,"name":"Crimson Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":109,"quality":3}, -{"id":31218,"name":"Fiery Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":109,"quality":3}, -{"id":31219,"name":"Emerald Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":109,"quality":3}, -{"id":31220,"name":"Amethyst Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":109,"quality":3}, -{"id":31221,"name":"Illidari Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":103,"quality":3}, -{"id":31222,"name":"Headdress of Inner Rage","icon":"inv_helmet_57","type":1,"armorType":3,"stats":[0,46,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":31223,"name":"Illidari Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":103,"quality":3}, -{"id":31224,"name":"Illidari Bracers","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":103,"quality":3}, -{"id":31225,"name":"Illidari Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":103,"quality":3}, -{"id":31226,"name":"Leggings of the Sly","icon":"inv_pants_cloth_12","type":9,"armorType":2,"stats":[0,30,28,0,0,0,20,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":31227,"name":"Feathered Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":91,"quality":3}, -{"id":31228,"name":"Feathered Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":91,"quality":3}, -{"id":31229,"name":"Feathered Waistband","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":91,"quality":3}, -{"id":31230,"name":"Abyss Walker's Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,24,26,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3}, -{"id":31231,"name":"Feathered Sash","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":91,"quality":3}, -{"id":31232,"name":"Grim Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":91,"quality":3}, -{"id":31233,"name":"Grim Greaves","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":91,"quality":3}, -{"id":31234,"name":"Crystalblade of the Draenei","icon":"inv_sword_79","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.6,"ilvl":103,"quality":3}, -{"id":31235,"name":"Grim Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":91,"quality":3}, -{"id":31236,"name":"Grim Slippers","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":91,"quality":3}, -{"id":31237,"name":"Elekk Hide Leggings","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,38,28,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3}, -{"id":31238,"name":"Dragonbone Ring","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":94,"quality":3,"unique":true}, -{"id":31240,"name":"Scales of the Beast","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,30,42,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3}, -{"id":31242,"name":"Nagascale Legplates","icon":"inv_pants_plate_13","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":88,"quality":3}, -{"id":31243,"name":"Nagascale Legguards","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":88,"quality":3}, -{"id":31244,"name":"Nagahide Pants","icon":"inv_pants_leather_16","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":88,"quality":3}, -{"id":31246,"name":"Nagahide Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":88,"quality":3}, -{"id":31247,"name":"Bog Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-36,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":88,"quality":3}, -{"id":31248,"name":"Bog Epaulets","icon":"inv_shoulder_22","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-35,-34,-33,-32,-31,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-24],"ilvl":88,"quality":3}, -{"id":31249,"name":"Bog Spaulders","icon":"inv_shoulder_05","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-35,-26,-18,-11,-5,-39,-34,-33,-32,-31,-27,-24,-21,-20,-19,-17,-16,-15,-14,-13,-12,-10,-9,-8,-7,-6],"ilvl":88,"quality":3}, -{"id":31250,"name":"Bog Mantle","icon":"inv_shoulder_04","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":88,"quality":3}, -{"id":31253,"name":"(Action Figure) Night Elf Druid Staff","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.3,"ilvl":1,"quality":1}, -{"id":31254,"name":"Striderhide Cloak","icon":"inv_misc_cape_09","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":97,"quality":3}, -{"id":31255,"name":"Cloak of the Craft","icon":"inv_misc_cape_20","type":4,"stats":[0,25,15,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3}, -{"id":31256,"name":"Silvermoon Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-60,-58],"ilvl":18,"quality":2}, -{"id":31257,"name":"(Action Figure) Troll Priest Staff","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.3,"ilvl":1,"quality":1}, -{"id":31258,"name":"Band of Sorrow","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,27,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"unique":true}, -{"id":31259,"name":"(Action Figure) Human Warrior Sword","icon":"inv_sword_62","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3.3,"ilvl":1,"quality":1}, -{"id":31263,"name":"Silvermoon Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-60,-58],"ilvl":18,"quality":2}, -{"id":31264,"name":"Silvermoon Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-59,-58],"ilvl":18,"quality":2}, -{"id":31265,"name":"(Action Figure) Human Warrior Shield","icon":"inv_shield_26","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":31266,"name":"(Action Figure) Tauren Hunter Polearm","icon":"inv_weapon_halberd_09","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.3,"ilvl":1,"quality":1}, -{"id":31267,"name":"(Action Figure) Gnome Warrior Sword","icon":"inv_2h_auchindoun_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.3,"ilvl":1,"quality":1}, -{"id":31268,"name":"Abomination Cleaver","icon":"inv_axe_23","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-60,-58],"weaponDamageMin":13,"weaponDamageMax":18,"weaponSpeed":1.7,"ilvl":18,"quality":2}, -{"id":31269,"name":"Ghoul Hammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-60,-58],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":2.4,"ilvl":18,"quality":2}, -{"id":31270,"name":"Banshee Rod","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-59,-58],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.4,"ilvl":18,"quality":2}, -{"id":31272,"name":"Crown of Endless Knowledge","icon":"inv_misc_gem_bloodstone_02","type":1,"armorType":1,"stats":[0,0,50,31,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3}, -{"id":31275,"name":"Necklace of Trophies","icon":"inv_jewelry_necklace_19","type":2,"stats":[22,15,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31276,"name":"Boots of Zealotry","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[22,0,26,0,0,20,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31277,"name":"Pathfinder's Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3,"unique":true}, -{"id":31280,"name":"Thundercaller's Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,30,30,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31281,"name":"Mask of Veiled Death","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,40,0,0,0,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31282,"name":"Shroud of Spiritual Purity","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,45,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31283,"name":"Sash of Sealed Fate","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,23,30,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":106,"quality":3}, -{"id":31284,"name":"Bracers of Recklessness","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[29,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3}, -{"id":31285,"name":"Chestguard of the Talon","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,36,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3}, -{"id":31286,"name":"Breastplate of Rapid Striking","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,40,35,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3}, -{"id":31287,"name":"Draenei Honor Guard Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,16,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3}, -{"id":31288,"name":"The Master's Treads","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,24,41,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3}, -{"id":31289,"name":"Staff of Divine Infusion","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,35,0,50,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":367,"weaponSpeed":3.5,"ilvl":109,"quality":3}, -{"id":31290,"name":"Band of Dominion","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,0,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true}, -{"id":31291,"name":"Crystalforged War Axe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":4,"stats":[0,0,50,0,0,0,27,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":380,"weaponSpeed":3.5,"ilvl":112,"quality":3}, -{"id":31292,"name":"Crystal Pulse Shield","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3}, -{"id":31293,"name":"Girdle of Gale Force","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,32,21,0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3}, -{"id":31294,"name":"Pauldrons of Surging Mana","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,22,24,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3}, -{"id":31295,"name":"Chestguard of the Dark Stalker","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,42,31,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3}, -{"id":31297,"name":"Robe of the Crimson Order","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,35,43,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3}, -{"id":31298,"name":"Legguards of the Shattered Hand","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[39,32,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":31299,"name":"The Oathkeeper","icon":"inv_mace_47","type":13,"weaponType":4,"handType":4,"stats":[35,0,24,0,0,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":420,"weaponSpeed":3.6,"ilvl":115,"quality":3}, -{"id":31303,"name":"Valanos' Longbow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,11,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":340,"weaponSpeed":2.8,"ilvl":115,"quality":3}, -{"id":31304,"name":"The Essence Focuser","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,28,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3}, -{"id":31305,"name":"Ced's Carver","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3}, -{"id":31306,"name":"Leggings of the Sacred Crest","icon":"inv_pants_plate_01","type":9,"armorType":1,"stats":[0,0,31,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":31308,"name":"The Bringer of Death","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,59,0,0,0,42,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3}, -{"id":31312,"name":"Sinister Area 52 Boots","icon":"inv_boots_chain_04","type":10,"armorType":1,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10701,"name":"Breaking Down Netherock"}}]}, -{"id":31313,"name":"Nether-Rocket Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,24,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10701,"name":"Breaking Down Netherock"}}]}, -{"id":31314,"name":"Rocket-Chief Pauldrons","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10701,"name":"Breaking Down Netherock"}}]}, -{"id":31315,"name":"Goblin Girdle","icon":"inv_belt_11","type":8,"armorType":4,"stats":[19,0,30,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10701,"name":"Breaking Down Netherock"}}]}, -{"id":31318,"name":"Singing Crystal Axe","icon":"inv_axe_72","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":295,"weaponDamageMax":444,"weaponSpeed":3.5,"ilvl":100,"quality":4}, -{"id":31319,"name":"Band of Impenetrable Defenses","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,36,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true}, -{"id":31320,"name":"Chestguard of Exile","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,33,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31321,"name":"Choker of Repentance","icon":"inv_jewelry_necklace_33","type":2,"stats":[23,0,23,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31322,"name":"The Hammer of Destiny","icon":"inv_hammer_28","type":13,"weaponType":4,"handType":4,"stats":[32,0,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":304,"weaponDamageMax":457,"weaponSpeed":3.6,"ilvl":100,"quality":4}, -{"id":31323,"name":"Don Santos' Famous Hunting Rifle","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":199,"weaponDamageMax":371,"weaponSpeed":2.7,"ilvl":100,"quality":4}, -{"id":31326,"name":"Truestrike Ring","icon":"inv_jewelry_ring_58","type":11,"stats":[0,21,30,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true}, -{"id":31328,"name":"Leggings of Beast Mastery","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31329,"name":"Lifegiving Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,20,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31330,"name":"Lightning Crown","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,0,46,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31331,"name":"The Night Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":117,"weaponDamageMax":176,"weaponSpeed":1.8,"ilvl":100,"quality":4}, -{"id":31332,"name":"Blinkstrike","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":100,"quality":4}, -{"id":31333,"name":"The Night Watchman","icon":"inv_helmet_43","type":1,"armorType":2,"stats":[0,45,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31334,"name":"Staff of Natural Fury","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,91,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":380,"weaponSpeed":3,"ilvl":100,"quality":4}, -{"id":31335,"name":"Kilt of Living Growth","icon":"inv_pants_mail_08","type":9,"armorType":2,"stats":[0,0,44,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31336,"name":"Blade of Wizardry","icon":"inv_sword_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":100,"quality":4}, -{"id":31338,"name":"Charlotte's Ivy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"setName":"The Twin Stars","setId":667}, -{"id":31339,"name":"Lola's Eve","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,27,25,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"setName":"The Twin Stars","setId":667}, -{"id":31340,"name":"Will of Edward the Odd","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,45,45,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31341,"name":"Wyrmcultist's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"soldBy":{"npcId":22099,"npcName":"Wyrmcult Provisioner","zoneId":3522}}]}, -{"id":31342,"name":"The Ancient Scepter of Sue-Min","icon":"inv_mace_53","type":13,"weaponType":4,"handType":1,"stats":[0,0,23,0,20,0,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":119,"weaponDamageMax":222,"weaponSpeed":2.1,"ilvl":100,"quality":4}, -{"id":31343,"name":"Kamaei's Cerulean Skirt","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,38,53,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4}, -{"id":31364,"name":"Wildguard Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[0,0,45,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38473}},{"crafted":{"profession":2,"spellId":38473}}]}, -{"id":31367,"name":"Wildguard Leggings","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38475}},{"crafted":{"profession":2,"spellId":38475}}]}, -{"id":31368,"name":"Wildguard Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,58,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38476}},{"crafted":{"profession":2,"spellId":38476}}]}, -{"id":31369,"name":"Iceguard Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,49,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38477}},{"crafted":{"profession":2,"spellId":38477}}]}, -{"id":31370,"name":"Iceguard Leggings","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1035,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38478}},{"crafted":{"profession":2,"spellId":38478}}]}, -{"id":31371,"name":"Iceguard Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[0,0,64,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38479}},{"crafted":{"profession":2,"spellId":38479}}]}, -{"id":31375,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,55,28,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685}, -{"id":31376,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,72,34,16,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685}, -{"id":31377,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,75,38,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685}, -{"id":31378,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,21,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685}, -{"id":31379,"name":"Gladiator's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,65,34,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685}, -{"id":31380,"name":"Acrobat's Mark of the Sha'tar","icon":"inv_jewelry_ring_64","type":11,"stats":[29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10781,"name":"Battle of the Crimson Watch"}}]}, -{"id":31381,"name":"Aggressor's Mark of the Sha'tar","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,0,0,0,0,29,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10781,"name":"Battle of the Crimson Watch"}}]}, -{"id":31382,"name":"Mage's Mark of the Sha'tar","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,0,12,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10781,"name":"Battle of the Crimson Watch"}}]}, -{"id":31383,"name":"Spiritualist's Mark of the Sha'tar","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,0,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":10781,"name":"Battle of the Crimson Watch"}}]}, -{"id":31396,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686}, -{"id":31397,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686}, -{"id":31398,"name":"The Frozen Eye","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":38503}},{"crafted":{"profession":7,"spellId":38503}}]}, -{"id":31399,"name":"The Natural Ward","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":38504}},{"crafted":{"profession":7,"spellId":38504}}]}, -{"id":31400,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,63,28,0,0,17,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686}, -{"id":31406,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,70,36,16,0,21,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686}, -{"id":31407,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,46,19,16,0,18,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686}, -{"id":31409,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687}, -{"id":31410,"name":"Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,25,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687}, -{"id":31411,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,28,28,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687}, -{"id":31412,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687}, -{"id":31413,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,21,16,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687}, -{"id":31414,"name":"Wild Wood Staff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,21,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":289,"weaponSpeed":3.2,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10771,"name":"From the Ashes"}}]}, -{"id":31415,"name":"Iron Oak Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[21,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":111,"quality":2,"sources":[{"quest":{"id":10771,"name":"From the Ashes"}}]}, -{"id":31416,"name":"Scorch Wood Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,12,11,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.2,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10771,"name":"From the Ashes"}}]}, -{"id":31417,"name":"Staff of the Ashtongue Deathsworn","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,25,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":258,"weaponDamageMax":388,"weaponSpeed":3.7,"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31418,"name":"Sylvanaar Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,24,26,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10457,"name":"Protecting Our Own"}}]}, -{"id":31419,"name":"Living Grove Shoulderpads","icon":"inv_shoulder_26","type":3,"armorType":2,"stats":[0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10457,"name":"Protecting Our Own"}}]}, -{"id":31420,"name":"Protector's Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,26,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10457,"name":"Protecting Our Own"}}]}, -{"id":31421,"name":"Sentinel Armbands","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[20,0,10,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10457,"name":"Protecting Our Own"}}]}, -{"id":31422,"name":"Heavy Elven Dirk","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.8,"ilvl":102,"quality":2,"unique":true,"sources":[{"quest":{"id":10690,"name":"The Den Mother"}}],"factionRestriction":1}, -{"id":31423,"name":"Wolf Hewer's Axe","icon":"inv_axe_05","type":13,"weaponType":1,"handType":2,"stats":[17,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":2.4,"ilvl":102,"quality":2,"sources":[{"quest":{"id":10690,"name":"The Den Mother"}}],"factionRestriction":1}, -{"id":31424,"name":"Arcane Wand of Sylvanaar","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":199,"weaponSpeed":1.6,"ilvl":102,"quality":2,"sources":[{"quest":{"id":10690,"name":"The Den Mother"}}],"factionRestriction":1}, -{"id":31425,"name":"Ogre Vanquisher's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,10,15,6,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10504,"name":"The Bladespire Ogres"}}]}, -{"id":31426,"name":"Agile Mountain Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,20,12,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10504,"name":"The Bladespire Ogres"}}]}, -{"id":31427,"name":"Sylvanaar Defender's Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":3,"stats":[0,26,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10504,"name":"The Bladespire Ogres"}}]}, -{"id":31428,"name":"Commander Skyshadow's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10504,"name":"The Bladespire Ogres"}}]}, -{"id":31429,"name":"Spelunker's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,22,26,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10510,"name":"Into the Draenethyst Mine"}}]}, -{"id":31430,"name":"Miner's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10510,"name":"Into the Draenethyst Mine"}}]}, -{"id":31431,"name":"All-Weather Armguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,20,8,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10510,"name":"Into the Draenethyst Mine"}}]}, -{"id":31432,"name":"Explorer's Boots","icon":"inv_boots_chain_03","type":10,"armorType":4,"stats":[26,0,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10510,"name":"Into the Draenethyst Mine"}}]}, -{"id":31433,"name":"Sylvanaar Elite Caster's Armor","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,34,36,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10518,"name":"Planting the Banner"}}],"factionRestriction":1}, -{"id":31434,"name":"Ogre Assassin's Britches","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,36,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10518,"name":"Planting the Banner"}}],"factionRestriction":1}, -{"id":31435,"name":"Gurn's Horned Helmet","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,36,30,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10518,"name":"Planting the Banner"}}],"factionRestriction":1}, -{"id":31436,"name":"Sylvanaar Champion's Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[23,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10518,"name":"Planting the Banner"}}],"factionRestriction":1}, -{"id":31438,"name":"Fizit's Mantle of Drake Hunting","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,27,15,18,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10609,"name":"What Came First, the Drake or the Egg?"}}]}, -{"id":31439,"name":"Precise Gloves of Alacrity","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,27,23,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10609,"name":"What Came First, the Drake or the Egg?"}}]}, -{"id":31440,"name":"Devolved Drake Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,27,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10609,"name":"What Came First, the Drake or the Egg?"}}]}, -{"id":31441,"name":"Clocktock's Jumpers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[15,0,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10609,"name":"What Came First, the Drake or the Egg?"}}]}, -{"id":31442,"name":"Metro's Slimming Legs","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,23,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10594,"name":"Gauging the Resonant Frequency"}}],"factionRestriction":1}, -{"id":31443,"name":"Nickwinkle's Harness Experiment","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,20,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10594,"name":"Gauging the Resonant Frequency"}}],"factionRestriction":1}, -{"id":31444,"name":"Party Hat Mistake","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,30,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10594,"name":"Gauging the Resonant Frequency"}}],"factionRestriction":1}, -{"id":31445,"name":"Last Year's \"In\" Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[24,0,24,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10594,"name":"Gauging the Resonant Frequency"}}],"factionRestriction":1}, -{"id":31446,"name":"Vibro Shanker","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":2,"stats":[0,10,15,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":1.4,"ilvl":105,"quality":2,"sources":[{"quest":{"id":10632,"name":"Cutting Your Teeth"}}],"factionRestriction":1}, -{"id":31447,"name":"Vibro Dagger","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,24,0,10,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":1.4,"ilvl":105,"quality":2,"sources":[{"quest":{"id":10632,"name":"Cutting Your Teeth"}}],"factionRestriction":1}, -{"id":31448,"name":"Vibro Sword","icon":"inv_weapon_shortblade_29","type":13,"weaponType":9,"handType":1,"stats":[0,0,17,0,10,0,10,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":1.4,"ilvl":105,"quality":2,"sources":[{"quest":{"id":10632,"name":"Cutting Your Teeth"}}],"factionRestriction":1}, -{"id":31452,"name":"Energized Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10657,"name":"Ride the Lightning"}}],"factionRestriction":1}, -{"id":31453,"name":"Charged Footwear","icon":"inv_boots_plate_05","type":10,"armorType":2,"stats":[0,15,16,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10657,"name":"Ride the Lightning"}}],"factionRestriction":1}, -{"id":31454,"name":"Scalewing Gloves","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,24,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10657,"name":"Ride the Lightning"}}],"factionRestriction":1}, -{"id":31455,"name":"Muscle Toning Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[15,0,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10657,"name":"Ride the Lightning"}}],"factionRestriction":1}, -{"id":31456,"name":"Gnomish Casting Boots","icon":"inv_boots_chain_01","type":10,"armorType":1,"stats":[0,0,12,16,7,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10675,"name":"Show Them Gnome Mercy!"}}],"factionRestriction":1}, -{"id":31457,"name":"Toshley's Station Hero's Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,21,22,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10675,"name":"Show Them Gnome Mercy!"}}],"factionRestriction":1}, -{"id":31458,"name":"Razaani-Buster Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,21,15,0,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10675,"name":"Show Them Gnome Mercy!"}}],"factionRestriction":1}, -{"id":31459,"name":"Soul Saver's Chest Plate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[37,0,17,0,0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10675,"name":"Show Them Gnome Mercy!"}}],"factionRestriction":1}, -{"id":31460,"name":"Sha'tari Vindicator's Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,33,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":10704,"name":"How to Break Into the Arcatraz"}}]}, -{"id":31461,"name":"A'dal's Gift","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,38,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":10704,"name":"How to Break Into the Arcatraz"}}]}, -{"id":31462,"name":"Shattrath's Champion Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,25,33,0,0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":10704,"name":"How to Break Into the Arcatraz"}}]}, -{"id":31464,"name":"Naaru Belt of Precision","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,25,33,0,0,15,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":10704,"name":"How to Break Into the Arcatraz"}}]}, -{"id":31465,"name":"Sha'tari Anchorite's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,41,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":10704,"name":"How to Break Into the Arcatraz"}}]}, -{"id":31470,"name":"Witch Doctor's Beads","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,34,35,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10544,"name":"A Curse Upon Both of Your Clans!"}}],"factionRestriction":2}, -{"id":31471,"name":"T'chali's Kilt","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10544,"name":"A Curse Upon Both of Your Clans!"}}],"factionRestriction":2}, -{"id":31472,"name":"Hexxer's Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10544,"name":"A Curse Upon Both of Your Clans!"}}],"factionRestriction":2}, -{"id":31473,"name":"Ogre Defiler's Handguards","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10544,"name":"A Curse Upon Both of Your Clans!"}}],"factionRestriction":2}, -{"id":31474,"name":"Wand of the Ancestors","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":206,"weaponSpeed":1.6,"ilvl":105,"quality":2,"sources":[{"quest":{"id":10526,"name":"The Thunderspike"}}],"factionRestriction":2}, -{"id":31475,"name":"Thunderlord Scalpel","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":1,"stats":[0,0,24,0,10,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":102,"weaponSpeed":1.4,"ilvl":105,"quality":2,"sources":[{"quest":{"id":10526,"name":"The Thunderspike"}}],"factionRestriction":2}, -{"id":31476,"name":"Slow Death Dirk","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.8,"ilvl":105,"quality":2,"unique":true,"sources":[{"quest":{"id":10526,"name":"The Thunderspike"}}],"factionRestriction":2}, -{"id":31477,"name":"Red Hands of the Thunderlord","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,24,26,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10505,"name":"The Bloodmaul Ogres"}}],"factionRestriction":2}, -{"id":31478,"name":"Tor'chunk's Foot Covers","icon":"inv_boots_chain_04","type":10,"armorType":2,"stats":[0,15,15,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10505,"name":"The Bloodmaul Ogres"}}],"factionRestriction":2}, -{"id":31479,"name":"Rugged Mountain Bracers","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,20,8,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10505,"name":"The Bloodmaul Ogres"}}],"factionRestriction":2}, -{"id":31480,"name":"Ogre Beater's Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10505,"name":"The Bloodmaul Ogres"}}],"factionRestriction":2}, -{"id":31481,"name":"Thunderlord Armbands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10488,"name":"Protecting Our Own"}}],"factionRestriction":2}, -{"id":31482,"name":"Dire Wolf Handler Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10488,"name":"Protecting Our Own"}}],"factionRestriction":2}, -{"id":31483,"name":"Gor'drek's Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[26,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10488,"name":"Protecting Our Own"}}],"factionRestriction":2}, -{"id":31484,"name":"Wolf Chaps","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10488,"name":"Protecting Our Own"}}],"factionRestriction":2}, -{"id":31485,"name":"Dark Deed Leggings","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,21,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10489,"name":"Felling an Ancient Tree"}}],"factionRestriction":2}, -{"id":31486,"name":"Bear-Strength Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,20,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10489,"name":"Felling an Ancient Tree"}}],"factionRestriction":2}, -{"id":31487,"name":"Wild Horned Helm","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,35,30,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10489,"name":"Felling an Ancient Tree"}}],"factionRestriction":2}, -{"id":31488,"name":"Boots of the Ancient-Killer","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[18,0,23,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10489,"name":"Felling an Ancient Tree"}}],"factionRestriction":2}, -{"id":31490,"name":"Netherwing Protector's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,15,22,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31491,"name":"Netherwing Defender's Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[13,0,30,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31492,"name":"Claw of the Netherwing Flight","icon":"inv_weapon_shortblade_38","type":13,"weaponType":2,"handType":2,"stats":[0,15,23,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.8,"ilvl":108,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":31493,"name":"Netherwing Spiritualist's Charm","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,23,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":3,"sources":[{"quest":{}}]}, -{"id":31494,"name":"Netherwing Sorceror's Charm","icon":"inv_offhand_blood_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,23,15,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":3,"sources":[{"quest":{}}]}, -{"id":31508,"name":"Coven Britches","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,56,21,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10748,"name":"Maxnar Must Die!"}}]}, -{"id":31509,"name":"Wyrmcultist's Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,15,21,10,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10747,"name":"Whelps of the Wyrmcult"}}]}, -{"id":31510,"name":"Hewing Gloves","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,33,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10713,"name":"...and a Time for Action"}}]}, -{"id":31511,"name":"Chest of the Wyrmcult","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,21,15,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10748,"name":"Maxnar Must Die!"}}]}, -{"id":31512,"name":"Tree Warden's Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,15,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10713,"name":"...and a Time for Action"}}]}, -{"id":31513,"name":"Blackwhelp Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,0,17,27,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10747,"name":"Whelps of the Wyrmcult"}}]}, -{"id":31514,"name":"Dragonkin Shirt","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,37,33,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10748,"name":"Maxnar Must Die!"}}]}, -{"id":31515,"name":"Whelpscale Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,0,33,15,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10747,"name":"Whelps of the Wyrmcult"}}]}, -{"id":31516,"name":"Bracers of the Weald","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,11,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10713,"name":"...and a Time for Action"}}]}, -{"id":31519,"name":"Inkling's Leggings","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[37,0,22,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,883,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10747,"name":"Whelps of the Wyrmcult"}}]}, -{"id":31520,"name":"Blackwing Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[21,0,0,0,0,15,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10748,"name":"Maxnar Must Die!"}}]}, -{"id":31521,"name":"Expedition Defender's Shoulders","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[18,0,16,0,0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10713,"name":"...and a Time for Action"}}]}, -{"id":31523,"name":"Treebole's Hoop","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,18,13,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10830,"name":"Exorcising the Trees"}}]}, -{"id":31526,"name":"Raven's Wood Exorciser's Band","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,18,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10830,"name":"Exorcising the Trees"}}]}, -{"id":31527,"name":"Leafbeard Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,12,29,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10830,"name":"Exorcising the Trees"}}]}, -{"id":31528,"name":"Ring of the Stonebark","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,12,18,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10830,"name":"Exorcising the Trees"}}]}, -{"id":31531,"name":"Wraithcloth Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,12,21,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10607,"name":"Whispers of the Raven God"}}]}, -{"id":31532,"name":"Supple Leather Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,22,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10607,"name":"Whispers of the Raven God"}}]}, -{"id":31533,"name":"Diluvian Spaulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,24,11,10,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10607,"name":"Whispers of the Raven God"}}]}, -{"id":31534,"name":"Whiteknuckle Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10607,"name":"Whispers of the Raven God"}}]}, -{"id":31537,"name":"Darktread Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,17,15,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":31538,"name":"Twin Moon Shoulderguards","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,26,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":31539,"name":"Chaintwine Cinch","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,26,14,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":31540,"name":"Fairweather's Wristguards","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{}}]}, -{"id":31541,"name":"Whistling Sword","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,11,0,0,0,11,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":108,"quality":2,"sources":[{"quest":{}}]}, -{"id":31542,"name":"Fanged Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,39,0,0,0,26,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":289,"weaponSpeed":3.2,"ilvl":108,"quality":2,"sources":[{"quest":{}}]}, -{"id":31543,"name":"Adjudicator's Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,39,0,26,0,26,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":162,"weaponDamageMax":244,"weaponSpeed":2.7,"ilvl":108,"quality":2,"sources":[{"quest":{}}]}, -{"id":31544,"name":"Clefthoof Hide Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,30,52,0,0,17,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31545,"name":"Oilcloth Breeches","icon":"inv_pants_cloth_14","type":9,"armorType":2,"stats":[0,30,24,0,0,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31546,"name":"Tourmaline Crown","icon":"inv_misc_gem_ruby_03","type":1,"armorType":1,"stats":[0,0,38,30,17,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31547,"name":"Malefactor's Eyepatch","icon":"inv_helmet_45","type":1,"armorType":3,"stats":[0,30,38,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31548,"name":"Blackened Chestplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,30,27,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31549,"name":"Leonine Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[45,0,27,0,0,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"sources":[{"quest":{}}]}, -{"id":31552,"name":"Windchanneller's Miter","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31553,"name":"Windchanneller's Mantle","icon":"inv_shoulder_04","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31554,"name":"Windchanneller's Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31555,"name":"Windchanneller's Ceinture","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31556,"name":"Windchanneller's Leggings","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31557,"name":"Windchanneller's Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":109,"quality":3}, -{"id":31558,"name":"Windchanneller's Bindings","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31559,"name":"Windchanneller's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31560,"name":"Skystalker's Shroud","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31561,"name":"Skystalker's Shoulders","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31562,"name":"Skystalker's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31563,"name":"Skystalker's Cord","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31564,"name":"Skystalker's Leggings","icon":"inv_pants_plate_20","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31565,"name":"Skystalker's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":109,"quality":3}, -{"id":31566,"name":"Skystalker's Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31567,"name":"Skystalker's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-41,-40,-39],"ilvl":115,"quality":3}, -{"id":31568,"name":"Mistshroud Helm","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31569,"name":"Mistshroud Shoulders","icon":"inv_shoulder_24","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31570,"name":"Mistshroud Tunic","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31571,"name":"Mistshroud Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31572,"name":"Mistshroud Pants","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31573,"name":"Mistshroud Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":109,"quality":3}, -{"id":31574,"name":"Mistshroud Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31575,"name":"Mistshroud Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39],"ilvl":115,"quality":3}, -{"id":31576,"name":"Slatesteel Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31577,"name":"Slatesteel Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31578,"name":"Slatesteel Breastplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31579,"name":"Slatesteel Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31580,"name":"Slatesteel Leggings","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31581,"name":"Slatesteel Boots","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":109,"quality":3}, -{"id":31582,"name":"Slatesteel Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31583,"name":"Slatesteel Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":31584,"name":"High Warlord's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2}, -{"id":31585,"name":"High Warlord's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2}, -{"id":31586,"name":"High Warlord's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2}, -{"id":31587,"name":"High Warlord's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2}, -{"id":31588,"name":"High Warlord's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2}, -{"id":31589,"name":"Grand Marshal's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1}, -{"id":31590,"name":"Grand Marshal's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1}, -{"id":31591,"name":"Grand Marshal's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1}, -{"id":31592,"name":"Grand Marshal's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1}, -{"id":31593,"name":"Grand Marshal's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1}, -{"id":31594,"name":"General's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":31595,"name":"General's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":31596,"name":"Marshal's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":31597,"name":"Marshal's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6,1]}, -{"id":31598,"name":"General's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,31,10,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":31599,"name":"Marshal's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,31,10,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[6,1]}, -{"id":31613,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,69,19,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690}, -{"id":31614,"name":"Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690}, -{"id":31615,"name":"Ancient Draenei Arcane Relic","icon":"inv_jewelry_talisman_13","type":12,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"unique":true,"sources":[{"quest":{"id":10842,"name":"Vengeful Souls"}}]}, -{"id":31616,"name":"Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,73,26,0,0,21,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690}, -{"id":31617,"name":"Ancient Draenei War Talisman","icon":"inv_jewelry_talisman_14","type":12,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"unique":true,"sources":[{"quest":{"id":10842,"name":"Vengeful Souls"}}]}, -{"id":31618,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,72,32,0,0,32,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690}, -{"id":31619,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,50,16,0,0,23,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690}, -{"id":31620,"name":"Grand Marshal's Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1}, -{"id":31621,"name":"High Warlord's Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2}, -{"id":31622,"name":"Grand Marshal's Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,59,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1}, -{"id":31623,"name":"Grand Marshal's Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1}, -{"id":31624,"name":"Grand Marshal's Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1}, -{"id":31625,"name":"Grand Marshal's Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1}, -{"id":31626,"name":"High Warlord's Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2}, -{"id":31627,"name":"High Warlord's Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2}, -{"id":31628,"name":"High Warlord's Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2}, -{"id":31629,"name":"High Warlord's Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2}, -{"id":31630,"name":"Grand Marshal's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1}, -{"id":31631,"name":"Grand Marshal's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1}, -{"id":31632,"name":"Grand Marshal's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1}, -{"id":31633,"name":"Grand Marshal's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1}, -{"id":31634,"name":"Grand Marshal's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1}, -{"id":31635,"name":"High Warlord's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2}, -{"id":31636,"name":"High Warlord's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2}, -{"id":31637,"name":"High Warlord's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2}, -{"id":31638,"name":"High Warlord's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2}, -{"id":31639,"name":"High Warlord's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2}, -{"id":31640,"name":"Grand Marshal's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1}, -{"id":31641,"name":"Grand Marshal's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1}, -{"id":31642,"name":"Grand Marshal's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1}, -{"id":31643,"name":"Grand Marshal's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1}, -{"id":31644,"name":"Grand Marshal's Ringmail Shoulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1}, -{"id":31646,"name":"High Warlord's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2}, -{"id":31647,"name":"High Warlord's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2}, -{"id":31648,"name":"High Warlord's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2}, -{"id":31649,"name":"High Warlord's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2}, -{"id":31650,"name":"High Warlord's Ringmail Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2}, -{"id":31657,"name":"Chemise of Rebirth","icon":"inv_chest_cloth_06","type":5,"armorType":1,"stats":[0,0,27,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10096,"name":"Saving the Sporeloks"}}]}, -{"id":31658,"name":"Scout's Hood","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,18,23,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":10096,"name":"Saving the Sporeloks"}}]}, -{"id":31659,"name":"Researcher's Mantle","icon":"inv_shoulder_27","type":3,"armorType":1,"stats":[0,0,24,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9783,"name":"An Unnatural Drought"}}],"factionRestriction":1}, -{"id":31660,"name":"Feralfen Skulker's Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":9803,"name":"Messenger to the Feralfen"}}],"factionRestriction":1}, -{"id":31661,"name":"Leesa'oh's Wristbands","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,13,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{"id":9709,"name":"Stealing Back the Mushrooms"}}]}, -{"id":31683,"name":"Dreadwing Skin Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,11,16,7,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10845,"name":"Slay the Brood Mother"}}],"factionRestriction":2}, -{"id":31684,"name":"Netherhide Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,17,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10845,"name":"Slay the Brood Mother"}}],"factionRestriction":2}, -{"id":31685,"name":"Brood Mother Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,21,0,0,0,10,37,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10845,"name":"Slay the Brood Mother"}}],"factionRestriction":2}, -{"id":31686,"name":"Nether Protector's Chest","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[37,0,0,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10845,"name":"Slay the Brood Mother"}}],"factionRestriction":2}, -{"id":31687,"name":"Mok'Nathal Mantle","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,27,16,18,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10867,"name":"There Can Be Only One Response"}}],"factionRestriction":2}, -{"id":31688,"name":"Spiritcaller's Mask","icon":"ability_druid_predatoryinstincts","type":1,"armorType":2,"stats":[0,21,22,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10867,"name":"There Can Be Only One Response"}}],"factionRestriction":2}, -{"id":31689,"name":"Mok'Nathal Hero's Pantaloons","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,21,15,0,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10867,"name":"There Can Be Only One Response"}}],"factionRestriction":2}, -{"id":31690,"name":"Belt of the Soul Saver","icon":"inv_belt_23","type":8,"armorType":4,"stats":[17,0,25,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10867,"name":"There Can Be Only One Response"}}],"factionRestriction":2}, -{"id":31691,"name":"Natasha's Guardian Cord","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,15,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31692,"name":"Natasha's Ember Necklace","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31693,"name":"Natasha's Arcane Filament","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31694,"name":"Natasha's Pack Collar","icon":"inv_jewelry_necklace_33","type":2,"stats":[25,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31695,"name":"Natasha's Choker","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,0,0,0,10,15,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31696,"name":"Natasha's Battle Chain","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,0,0,0,0,0,0,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":3,"sources":[{"quest":{"id":10912,"name":"The Hound-Master"}}]}, -{"id":31699,"name":"Imbued Draenethyst Crystal","icon":"inv_offhand_draenei_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,17,21,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10857,"name":"Teleport This!"}}]}, -{"id":31700,"name":"Runed Silver Staff","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,65,55,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":289,"weaponSpeed":3.2,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10857,"name":"Teleport This!"}}]}, -{"id":31701,"name":"Saboteur's Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[37,0,22,0,0,18,21,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":198,"weaponDamageMax":298,"weaponSpeed":3.3,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10857,"name":"Teleport This!"}}]}, -{"id":31703,"name":"Nether-Stalker's Blade","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,8,24,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":135,"weaponSpeed":1.8,"ilvl":108,"quality":2,"sources":[{"quest":{"id":10857,"name":"Teleport This!"}}]}, -{"id":31711,"name":"Nether-Empowered Footgear","icon":"inv_boots_chain_08","type":10,"armorType":1,"stats":[0,0,12,15,7,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10853,"name":"Spirit Calling"}}],"factionRestriction":2}, -{"id":31712,"name":"Mok'Nathal Champion's Shoulderguards","icon":"inv_shoulder_28","type":3,"armorType":2,"stats":[0,27,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10853,"name":"Spirit Calling"}}],"factionRestriction":2}, -{"id":31713,"name":"Ritualist's Helm","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,30,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10853,"name":"Spirit Calling"}}],"factionRestriction":2}, -{"id":31714,"name":"Nether Drake Wristguards","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[20,0,12,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":2,"sources":[{"quest":{"id":10853,"name":"Spirit Calling"}}],"factionRestriction":2}, -{"id":31715,"name":"Demoniac Soul Prison","icon":"inv_misc_gem_amethyst_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,9,16,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":87,"quality":2,"sources":[{"quest":{"id":10838,"name":"The Demoniac Scryer"}}],"factionRestriction":2}, -{"id":31717,"name":"Shadowcast Tunic","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,33,38,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":31718,"name":"Darkstorm Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,38,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":31719,"name":"Stormstrike Vest","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,0,33,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":31720,"name":"Battlemaster's Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[38,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":88,"quality":3,"sources":[{"quest":{}}]}, -{"id":31723,"name":"Madman's Blade","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,6,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":91,"weaponSpeed":1.4,"ilvl":96,"quality":2,"unique":true,"sources":[{"quest":{"id":9951,"name":"It's Watching You!"}}]}, -{"id":31724,"name":"Arakkoa Divining Rod","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.6,"ilvl":99,"quality":2,"sources":[{"quest":{"id":10112,"name":"A Personal Favor"}}]}, -{"id":31725,"name":"Cilice of Suffering","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,22,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10031,"name":"Helping the Lost Find Their Way"}}]}, -{"id":31726,"name":"Necklace of Bloodied Feathers","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,35,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"sources":[{"quest":{"id":10879,"name":"The Skettis Offensive"}}]}, -{"id":31727,"name":"Choker of Bloodied Feathers","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,15,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":94,"quality":3,"sources":[{"quest":{"id":10879,"name":"The Skettis Offensive"}}]}, -{"id":31728,"name":"Heirloom Signet of Willpower","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,18,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10881,"name":"The Shadow Tomb"}}]}, -{"id":31729,"name":"Heirloom Signet of Valor","icon":"inv_jewelry_ring_10","type":11,"stats":[0,11,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10881,"name":"The Shadow Tomb"}}]}, -{"id":31730,"name":"Heirloom Signet of Convalescence","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,18,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2}, -{"id":31731,"name":"Mekeda's Gift","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,20,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10887,"name":"Escaping the Tomb"}}]}, -{"id":31732,"name":"Unearthed Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,20,13,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10887,"name":"Escaping the Tomb"}}]}, -{"id":31733,"name":"Akuno's Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,7,8,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":128,"weaponSpeed":1.9,"ilvl":99,"quality":2,"sources":[{"quest":{"id":10887,"name":"Escaping the Tomb"}}]}, -{"id":31734,"name":"Ancient Draenei Crest","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[14,0,21,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10887,"name":"Escaping the Tomb"}}]}, -{"id":31745,"name":"Illidari-Bane Dagger","icon":"inv_sword_78","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"sources":[{"quest":{"id":10679,"name":"Quenching the Blade"}}]}, -{"id":31746,"name":"Phoenix-Fire Band","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":31747,"name":"Potent Sha'tari Pendant","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":31748,"name":"Shattrath Choker of Power","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,46,46,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":31749,"name":"A'dal's Recovery Necklace","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":31756,"name":"Dib'Muad's Crysknife","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,19,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.4,"ilvl":94,"quality":3,"sources":[{"quest":{"id":10930,"name":"The Big Bone Worm"}}]}, -{"id":31758,"name":"Revered Mother's Crysknife","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":1,"stats":[0,0,14,0,0,0,19,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.4,"ilvl":94,"quality":3,"sources":[{"quest":{"id":10930,"name":"The Big Bone Worm"}}]}, -{"id":31759,"name":"Shani's Crysknife","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,9,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.8,"ilvl":94,"quality":3,"sources":[{"quest":{"id":10930,"name":"The Big Bone Worm"}}]}, -{"id":31761,"name":"Talonbranch Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,6,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":193,"weaponSpeed":1.7,"ilvl":96,"quality":2,"sources":[{"quest":{"id":10848,"name":"Veil Rhaze: Unliving Evil"}}]}, -{"id":31762,"name":"Feather-Wrapped Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,13,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2.7,"ilvl":96,"quality":2,"sources":[{"quest":{"id":10848,"name":"Veil Rhaze: Unliving Evil"}}]}, -{"id":31764,"name":"Stillfire Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,0,45,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10898,"name":"Skywing"}}]}, -{"id":31765,"name":"Redeemer's Plate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,45,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10898,"name":"Skywing"}}]}, -{"id":31766,"name":"Skywitch Hat","icon":"inv_helmet_65","type":1,"armorType":1,"stats":[0,0,45,21,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10898,"name":"Skywing"}}]}, -{"id":31768,"name":"Deep Mire Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,18,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{"id":9772,"name":"Jyoba's Report"}}],"factionRestriction":2}, -{"id":31770,"name":"Marsh Bracers","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,20,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":96,"quality":2,"sources":[{"quest":{}}]}, -{"id":31782,"name":"Warpstalker Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,21,30,0,0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":31783,"name":"Bloodfire Leggings","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,54,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":31784,"name":"Ancient Terokkar Hood","icon":"inv_helmet_31","type":1,"armorType":2,"stats":[0,18,21,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":31785,"name":"Edge of Inevitability","icon":"inv_axe_17","type":13,"weaponType":1,"handType":4,"stats":[34,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":284,"weaponSpeed":3.5,"ilvl":99,"quality":2,"sources":[{"quest":{}}]}, -{"id":31786,"name":"Blacksting Shoulders","icon":"inv_shoulder_25","type":3,"armorType":3,"stats":[0,16,24,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{}}]}, -{"id":31787,"name":"Stalwart Girdle","icon":"inv_belt_07","type":8,"armorType":4,"stats":[0,0,32,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{}}]}, -{"id":31788,"name":"Blacksting Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,14,32,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{}}]}, -{"id":31789,"name":"Marshfang Boots","icon":"inv_boots_08","type":10,"armorType":1,"stats":[0,0,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":90,"quality":2,"sources":[{"quest":{}}]}, -{"id":31790,"name":"Expedition Pendant","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10821,"name":"You're Fired!"}}]}, -{"id":31791,"name":"Wildlord's Band","icon":"inv_jewelry_ring_58","type":11,"stats":[0,0,12,21,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"unique":true,"sources":[{"quest":{"id":10821,"name":"You're Fired!"}}]}, -{"id":31792,"name":"Evergrove Ranger's Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,12,20,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10821,"name":"You're Fired!"}}]}, -{"id":31793,"name":"Ruuan Weald Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":108,"quality":2,"sources":[{"quest":{"id":10821,"name":"You're Fired!"}}]}, -{"id":31794,"name":"Sha'tari Vindicator's Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[21,0,45,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10915,"name":"The Fallen Exarch"}}]}, -{"id":31796,"name":"Sha'tari Marksman's Gloves","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,15,23,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10915,"name":"The Fallen Exarch"}}]}, -{"id":31797,"name":"Elekk Hide Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,0,18,21,16,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10915,"name":"The Fallen Exarch"}}]}, -{"id":31798,"name":"Death-Speaker's Tunic","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,41,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":99,"quality":2,"sources":[{"quest":{"id":10915,"name":"The Fallen Exarch"}}]}, -{"id":31816,"name":"Dragonbone Greatsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[40,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":3.2,"ilvl":102,"quality":2,"sources":[{"quest":{"id":10923,"name":"Evil Draws Near"}}]}, -{"id":31817,"name":"Dragonbone Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,19,15,0,0,10,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10923,"name":"Evil Draws Near"}}]}, -{"id":31818,"name":"Dragonbone Talisman","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,12,14,7,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10923,"name":"Evil Draws Near"}}]}, -{"id":31819,"name":"Noble Plate Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[21,0,30,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10921,"name":"Terokkarantula"}}]}, -{"id":31820,"name":"Blessed Signet Ring","icon":"inv_jewelry_ring_43","type":11,"stats":[13,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10921,"name":"Terokkarantula"}}]}, -{"id":31821,"name":"Blade of Retribution","icon":"inv_sword_59","type":13,"weaponType":9,"handType":1,"stats":[0,0,15,0,0,0,16,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.9,"ilvl":102,"quality":2,"sources":[{"quest":{"id":10921,"name":"Terokkarantula"}}]}, -{"id":31823,"name":"Book of Many Blessings","icon":"inv_misc_book_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":102,"quality":2,"sources":[{"quest":{"id":10921,"name":"Terokkarantula"}}]}, -{"id":31856,"name":"Darkmoon Card: Crusade","icon":"inv_misc_ticket_tarot_crusade","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"sources":[{"quest":{"id":10938,"name":"Darkmoon Blessings Deck"}}]}, -{"id":31857,"name":"Darkmoon Card: Wrath","icon":"inv_misc_ticket_tarot_wrath","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"sources":[{"quest":{"id":10939,"name":"Darkmoon Storms Deck"}}]}, -{"id":31858,"name":"Darkmoon Card: Vengeance","icon":"inv_misc_ticket_tarot_vengeance","type":12,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"sources":[{"quest":{"id":10940,"name":"Darkmoon Furies Deck"}}]}, -{"id":31859,"name":"Darkmoon Card: Madness","icon":"inv_misc_ticket_tarot_madness","type":12,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"sources":[{"quest":{"id":10941,"name":"Darkmoon Lunacy Deck"}}]}, -{"id":31919,"name":"Nexus-Prince's Ring of Balance","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[20,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31920,"name":"Shaffar's Band of Brutality","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,0,0,0,19,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31921,"name":"Yor's Collapsing Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,30,20,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31922,"name":"Ring of Conflict Survival","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,28,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31923,"name":"Band of the Crystalline Void","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,30,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31924,"name":"Yor's Revenge","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}]}, -{"id":31925,"name":"Fiery Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31926,"name":"Frigid Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31927,"name":"Living Band","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31928,"name":"Dark Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31929,"name":"Enigmatic Band","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31930,"name":"Enigmatic Charm","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31931,"name":"Fiery Charm","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31932,"name":"Living Charm","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31933,"name":"Dark Charm","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31934,"name":"Frigid Charm","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31935,"name":"Frigid Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31936,"name":"Fiery Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31937,"name":"Living Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31938,"name":"Enigmatic Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31939,"name":"Dark Cloak","icon":"inv_misc_cape_21","type":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-65,-64,-63,-62,-61],"ilvl":109,"quality":3}, -{"id":31940,"name":"Ethereum Torque","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-66,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31942,"name":"Deathwing Brood Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-66,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36],"ilvl":115,"quality":3}, -{"id":31943,"name":"Ethereum Band","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-66,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36],"ilvl":109,"quality":3}, -{"id":31958,"name":"Merciless Gladiator's Bonecracker","icon":"inv_mace_36","type":13,"weaponType":4,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.5,"ilvl":136,"quality":4}, -{"id":31959,"name":"Merciless Gladiator's Bonegrinder","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[42,0,55,0,0,18,42,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":549,"weaponSpeed":3.6,"ilvl":136,"quality":4}, -{"id":31960,"name":"Merciless Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,31,62,0,0,0,21,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Merciless Gladiator's Pursuit","setId":586}, -{"id":31961,"name":"Merciless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,30,51,0,0,0,17,17,0,0,0,0,0,0,0,0,21,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Merciless Gladiator's Pursuit","setId":586}, -{"id":31962,"name":"Merciless Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,37,63,0,0,0,22,25,0,0,0,0,0,0,0,0,22,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Merciless Gladiator's Pursuit","setId":586}, -{"id":31963,"name":"Merciless Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,38,60,0,0,0,21,26,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Merciless Gladiator's Pursuit","setId":586}, -{"id":31964,"name":"Merciless Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,32,45,0,0,0,14,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Merciless Gladiator's Pursuit","setId":586}, -{"id":31965,"name":"Merciless Gladiator's Cleaver","icon":"inv_axe_54","type":13,"weaponType":1,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":136,"quality":4}, -{"id":31966,"name":"Merciless Gladiator's Decapitator","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,55,0,0,18,42,0,0,0,0,0,84,84,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":549,"weaponSpeed":3.6,"ilvl":136,"quality":4}, -{"id":31967,"name":"Merciless Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,34,60,7,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Sanctuary","setId":584}, -{"id":31968,"name":"Merciless Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,36,77,23,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,587,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Sanctuary","setId":584}, -{"id":31969,"name":"Merciless Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,43,82,10,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,632,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Sanctuary","setId":584}, -{"id":31971,"name":"Merciless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,30,57,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,542,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Sanctuary","setId":584}, -{"id":31972,"name":"Merciless Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,37,68,15,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,722,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Sanctuary","setId":584}, -{"id":31973,"name":"Merciless Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,62,31,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Dreadgear","setId":568}, -{"id":31974,"name":"Merciless Gladiator's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,72,31,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Dreadgear","setId":568}, -{"id":31975,"name":"Merciless Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,82,45,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Dreadgear","setId":568}, -{"id":31976,"name":"Merciless Gladiator's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,31,0,13,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,393,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Dreadgear","setId":568}, -{"id":31977,"name":"Merciless Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,72,38,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Dreadgear","setId":568}, -{"id":31978,"name":"Merciless Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4}, -{"id":31979,"name":"Merciless Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,31,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Felshroud","setId":615}, -{"id":31980,"name":"Merciless Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,36,0,0,18,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Felshroud","setId":615}, -{"id":31981,"name":"Merciless Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,51,31,0,0,19,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Felshroud","setId":615}, -{"id":31982,"name":"Merciless Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Felshroud","setId":615}, -{"id":31983,"name":"Merciless Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,68,42,0,0,29,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Merciless Gladiator's Felshroud","setId":615}, -{"id":31984,"name":"Merciless Gladiator's Greatsword","icon":"inv_sword_70","type":13,"weaponType":9,"handType":4,"stats":[42,0,55,0,0,18,42,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":549,"weaponSpeed":3.6,"ilvl":136,"quality":4}, -{"id":31985,"name":"Merciless Gladiator's Hacker","icon":"inv_axe_54","type":13,"weaponType":1,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.5,"ilvl":136,"quality":4}, -{"id":31986,"name":"Merciless Gladiator's Crossbow of the Phoenix","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,21,0,0,0,15,0,0,0,0,0,0,26,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":304,"weaponDamageMax":457,"weaponSpeed":3,"ilvl":136,"quality":4}, -{"id":31987,"name":"Merciless Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,64,33,18,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,451,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Refuge","setId":685}, -{"id":31988,"name":"Merciless Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,78,37,18,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,587,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Refuge","setId":685}, -{"id":31989,"name":"Merciless Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,83,42,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,632,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Refuge","setId":685}, -{"id":31990,"name":"Merciless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,53,23,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,542,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Refuge","setId":685}, -{"id":31991,"name":"Merciless Gladiator's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,71,36,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,722,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Refuge","setId":685}, -{"id":31992,"name":"Merciless Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,73,22,0,0,34,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Aegis","setId":582}, -{"id":31993,"name":"Merciless Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Aegis","setId":582}, -{"id":31995,"name":"Merciless Gladiator's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,75,36,0,0,35,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Aegis","setId":582}, -{"id":31996,"name":"Merciless Gladiator's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,53,21,0,0,25,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Aegis","setId":582}, -{"id":31997,"name":"Merciless Gladiator's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,74,33,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Aegis","setId":582}, -{"id":31998,"name":"Merciless Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,31,53,0,0,0,16,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Merciless Gladiator's Vestments","setId":577}, -{"id":31999,"name":"Merciless Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,37,68,0,0,0,17,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,587,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Merciless Gladiator's Vestments","setId":577}, -{"id":32000,"name":"Merciless Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,41,69,0,0,0,21,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,632,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Merciless Gladiator's Vestments","setId":577}, -{"id":32001,"name":"Merciless Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,32,47,0,0,0,24,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,542,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Merciless Gladiator's Vestments","setId":577}, -{"id":32002,"name":"Merciless Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,37,65,0,0,0,13,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,722,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Merciless Gladiator's Vestments","setId":577}, -{"id":32003,"name":"Merciless Gladiator's Left Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.5,"ilvl":136,"quality":4}, -{"id":32004,"name":"Merciless Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,31,57,0,0,20,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Earthshaker","setId":578}, -{"id":32005,"name":"Merciless Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,29,45,0,0,0,29,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Earthshaker","setId":578}, -{"id":32006,"name":"Merciless Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,37,60,0,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Earthshaker","setId":578}, -{"id":32007,"name":"Merciless Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,34,60,29,0,0,40,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Earthshaker","setId":578}, -{"id":32008,"name":"Merciless Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,22,48,0,0,16,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Earthshaker","setId":578}, -{"id":32009,"name":"Merciless Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,63,32,20,0,25,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Thunderfist","setId":580}, -{"id":32010,"name":"Merciless Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,54,30,0,0,25,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Thunderfist","setId":580}, -{"id":32011,"name":"Merciless Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,66,37,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Thunderfist","setId":580}, -{"id":32012,"name":"Merciless Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,76,42,20,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Thunderfist","setId":580}, -{"id":32013,"name":"Merciless Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,51,22,16,0,20,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Thunderfist","setId":580}, -{"id":32014,"name":"Merciless Gladiator's Maul","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[0,0,55,0,0,18,42,0,0,0,0,0,84,84,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":2,"ilvl":136,"quality":4}, -{"id":32015,"name":"Merciless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,55,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Investiture","setId":687}, -{"id":32016,"name":"Merciless Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,27,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Investiture","setId":687}, -{"id":32017,"name":"Merciless Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,70,33,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Investiture","setId":687}, -{"id":32018,"name":"Merciless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,53,22,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,393,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Investiture","setId":687}, -{"id":32019,"name":"Merciless Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,24,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Investiture","setId":687}, -{"id":32020,"name":"Merciless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,75,21,0,0,32,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Redemption","setId":690}, -{"id":32021,"name":"Merciless Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,59,29,0,0,25,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Redemption","setId":690}, -{"id":32022,"name":"Merciless Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,77,30,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Redemption","setId":690}, -{"id":32023,"name":"Merciless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,81,37,0,0,36,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Redemption","setId":690}, -{"id":32024,"name":"Merciless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,54,20,0,0,25,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Redemption","setId":690}, -{"id":32025,"name":"Merciless Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,55,0,0,0,42,0,0,0,0,0,82,82,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":335,"weaponSpeed":2.2,"ilvl":136,"quality":4}, -{"id":32026,"name":"Merciless Gladiator's Pummeler","icon":"inv_mace_36","type":13,"weaponType":4,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":136,"quality":4}, -{"id":32027,"name":"Merciless Gladiator's Quickblade","icon":"inv_sword_71","type":13,"weaponType":9,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.5,"ilvl":136,"quality":4}, -{"id":32028,"name":"Merciless Gladiator's Right Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":1,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":136,"quality":4}, -{"id":32029,"name":"Merciless Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,65,32,18,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Wartide","setId":686}, -{"id":32030,"name":"Merciless Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,55,32,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Wartide","setId":686}, -{"id":32031,"name":"Merciless Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,72,34,0,0,21,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Wartide","setId":686}, -{"id":32032,"name":"Merciless Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,76,41,20,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Wartide","setId":686}, -{"id":32033,"name":"Merciless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,52,22,16,0,18,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Merciless Gladiator's Wartide","setId":686}, -{"id":32034,"name":"Merciless Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Raiment","setId":581}, -{"id":32035,"name":"Merciless Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Raiment","setId":581}, -{"id":32036,"name":"Merciless Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,80,44,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Raiment","setId":581}, -{"id":32037,"name":"Merciless Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,54,23,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Raiment","setId":581}, -{"id":32038,"name":"Merciless Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,30,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Merciless Gladiator's Raiment","setId":581}, -{"id":32039,"name":"Merciless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[37,0,73,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Vindication","setId":583}, -{"id":32040,"name":"Merciless Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Vindication","setId":583}, -{"id":32041,"name":"Merciless Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[37,0,73,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Vindication","setId":583}, -{"id":32042,"name":"Merciless Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[49,0,73,0,0,0,33,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Vindication","setId":583}, -{"id":32043,"name":"Merciless Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[28,0,54,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Merciless Gladiator's Vindication","setId":583}, -{"id":32044,"name":"Merciless Gladiator's Shanker","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":211,"weaponSpeed":1.8,"ilvl":136,"quality":4}, -{"id":32045,"name":"Merciless Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4}, -{"id":32046,"name":"Merciless Gladiator's Shiv","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":178,"weaponSpeed":1.4,"ilvl":136,"quality":4}, -{"id":32047,"name":"Merciless Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,51,31,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Merciless Gladiator's Regalia","setId":579}, -{"id":32048,"name":"Merciless Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,68,36,0,0,20,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Merciless Gladiator's Regalia","setId":579}, -{"id":32049,"name":"Merciless Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,57,31,0,0,19,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Merciless Gladiator's Regalia","setId":579}, -{"id":32050,"name":"Merciless Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,524,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Merciless Gladiator's Regalia","setId":579}, -{"id":32051,"name":"Merciless Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,80,42,0,0,29,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Merciless Gladiator's Regalia","setId":579}, -{"id":32052,"name":"Merciless Gladiator's Slicer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":2.6,"ilvl":136,"quality":4}, -{"id":32053,"name":"Merciless Gladiator's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,42,0,0,15,0,0,0,0,0,0,0,0,282,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.6,"ilvl":136,"quality":4}, -{"id":32054,"name":"Merciless Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,21,0,0,0,16,0,0,0,0,0,28,28,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":198,"weaponSpeed":1.3,"ilvl":136,"quality":4}, -{"id":32055,"name":"Merciless Gladiator's War Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,89,0,0,24,42,0,0,0,0,0,0,0,280,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":2,"ilvl":136,"quality":4}, -{"id":32056,"name":"Merciless Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,53,34,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Wildhide","setId":585}, -{"id":32057,"name":"Merciless Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,68,42,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,587,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Wildhide","setId":585}, -{"id":32058,"name":"Merciless Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,73,48,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,632,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Wildhide","setId":585}, -{"id":32059,"name":"Merciless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,28,10,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,542,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Wildhide","setId":585}, -{"id":32060,"name":"Merciless Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,63,42,16,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,722,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Merciless Gladiator's Wildhide","setId":585}, -{"id":32072,"name":"Gauntlets of Dissension","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[24,23,36,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}]}, -{"id":32073,"name":"Spaulders of Dementia","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[25,24,34,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}]}, -{"id":32076,"name":"Handguards of the Steady","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,29,40,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}]}, -{"id":32077,"name":"Wrath Infused Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,57,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}]}, -{"id":32078,"name":"Pauldrons of Wild Magic","icon":"inv_shoulder_33","type":3,"armorType":3,"stats":[0,0,47,28,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}]}, -{"id":32080,"name":"Mantle of Shadowy Embrace","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,39,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}]}, -{"id":32081,"name":"Eye of the Stalker","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}]}, -{"id":32082,"name":"The Fel Barrier","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}]}, -{"id":32083,"name":"Faceguard of Determination","icon":"inv_helmet_01","type":1,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,42,24,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32084,"name":"Helmet of the Steadfast Champion","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[0,0,54,32,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32085,"name":"Warpstalker Helm","icon":"inv_helmet_72","type":1,"armorType":3,"stats":[0,24,63,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32086,"name":"Storm Master's Helmet","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,54,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32087,"name":"Mask of the Deceiver","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,32,63,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32088,"name":"Cowl of Beastly Rage","icon":"inv_helmet_38","type":1,"armorType":2,"stats":[0,30,53,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32089,"name":"Mana-Binders Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,61,29,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32090,"name":"Cowl of Naaru Blessings","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,54,30,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":32232,"name":"Eternium Shell Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[24,0,52,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32234,"name":"Fists of Mukoa","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,38,37,0,0,0,25,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32235,"name":"Cursed Vision of Sargeras","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,54,78,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32236,"name":"Rising Tide","icon":"inv_axe_56","type":13,"weaponType":1,"handType":2,"stats":[0,0,33,0,0,21,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":313,"weaponSpeed":2.6,"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32237,"name":"The Maelstrom's Fury","icon":"inv_weapon_shortblade_58","type":13,"weaponType":2,"handType":1,"stats":[0,0,48,0,0,0,22,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.8,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32238,"name":"Ring of Calming Waves","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,45,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32239,"name":"Slippers of the Seacaller","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,39,38,18,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32240,"name":"Guise of the Tidal Lurker","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,69,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32241,"name":"Helm of Soothing Currents","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,77,53,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32242,"name":"Boots of Oceanic Fury","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,62,47,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32243,"name":"Pearl Inlaid Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,58,38,20,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32245,"name":"Tide-Stomper's Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[26,0,56,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32247,"name":"Ring of Captured Storms","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,0,36,0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32248,"name":"Halberd of Desolation","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,51,99,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":548,"weaponSpeed":3.5,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32250,"name":"Pauldrons of Abyssal Fury","icon":"inv_shoulder_haremmatron_d_01","type":3,"armorType":4,"stats":[24,0,72,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32251,"name":"Wraps of Precise Flight","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,29,43,0,0,0,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32252,"name":"Nether Shadow Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,43,80,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32253,"name":"Legionkiller","icon":"inv_weapon_crossbow_20","type":14,"rangedWeaponType":2,"stats":[0,21,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":2.9,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32254,"name":"The Brutalizer","icon":"inv_axe_59","type":13,"weaponType":1,"handType":2,"stats":[0,0,33,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":193,"weaponSpeed":1.6,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32255,"name":"Felstone Bulwark","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,29,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32256,"name":"Waistwrap of Infinity","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,48,48,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32257,"name":"Idol of the White Stag","icon":"inv_qirajidol_alabaster","type":14,"rangedWeaponType":4,"stats":[0,16,24,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32258,"name":"Naturalist's Preserving Cinch","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32259,"name":"Bands of the Coming Storm","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,53,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32260,"name":"Choker of Endless Nightmares","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,0,0,0,21,27,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32261,"name":"Band of the Abyssal Lord","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,53,0,0,21,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32262,"name":"Syphon of the Nathrezim","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.8,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}]}, -{"id":32263,"name":"Praetorian's Legguards","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[35,0,75,0,0,18,0,0,0,28,29,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32264,"name":"Shoulders of the Hidden Predator","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,38,71,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32265,"name":"Shadow-Walker's Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,38,59,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32266,"name":"Ring of Deceitful Intent","icon":"inv_jewelry_ring_68","type":11,"stats":[0,21,64,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32267,"name":"Boots of the Resilient","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[25,0,51,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}]}, -{"id":32268,"name":"Myrmidon's Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[18,0,56,0,0,17,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32269,"name":"Messenger of Fate","icon":"inv_weapon_shortblade_63","type":13,"weaponType":2,"handType":2,"stats":[0,22,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":169,"weaponSpeed":1.4,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32270,"name":"Focused Mana Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,43,36,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32271,"name":"Kilt of Immortal Nature","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,77,53,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32273,"name":"Amice of Brilliant Light","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,59,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32275,"name":"Spiritwalker Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,59,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32276,"name":"Flashfire Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,50,38,0,0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32278,"name":"Grips of Silent Justice","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[40,0,37,0,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32279,"name":"The Seeker's Wristguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[28,0,43,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32280,"name":"Gauntlets of Enforcement","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[22,0,70,0,0,0,0,0,21,21,24,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32323,"name":"Shadowmoon Destroyer's Drape","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,24,0,0,17,24,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32324,"name":"Insidious Bands","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,29,53,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32325,"name":"Rifle of the Stoic Guardian","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,31,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":1.9,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32326,"name":"Twisted Blades of Zarak","icon":"inv_throwingknife_04","type":14,"rangedWeaponType":5,"stats":[0,23,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":219,"weaponSpeed":1.4,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32327,"name":"Robe of the Shadow Council","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,68,62,26,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32328,"name":"Botanist's Gloves of Growth","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,40,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32329,"name":"Cowl of Benevolence","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,60,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32330,"name":"Totem of Ancestral Guidance","icon":"spell_nature_giftofthewaterspirit","type":14,"rangedWeaponType":4,"stats":[0,0,24,16,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32331,"name":"Cloak of the Illidari Council","icon":"inv_misc_cape_20","type":4,"stats":[0,0,36,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32332,"name":"Torch of the Damned","icon":"inv_mace_49","type":13,"weaponType":4,"handType":4,"stats":[51,0,45,0,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":396,"weaponDamageMax":595,"weaponSpeed":3.8,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32333,"name":"Girdle of Stability","icon":"inv_belt_33","type":8,"armorType":4,"stats":[24,0,56,0,0,0,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32334,"name":"Vest of Mounting Assault","icon":"inv_chest_samurai","type":5,"armorType":3,"stats":[0,58,41,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32335,"name":"Unstoppable Aggressor's Ring","icon":"inv_jewelry_ring_71","type":11,"stats":[36,0,28,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32336,"name":"Black Bow of the Betrayer","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,23,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":289,"weaponDamageMax":538,"weaponSpeed":3,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32337,"name":"Shroud of Forgiveness","icon":"inv_misc_cape_13","type":4,"stats":[0,0,42,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32338,"name":"Blood-Cursed Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,40,47,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32339,"name":"Belt of Primal Majesty","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,58,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32340,"name":"Garments of Temperance","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,77,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32341,"name":"Leggings of Divine Retribution","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[51,0,51,0,0,0,35,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32342,"name":"Girdle of Mighty Resolve","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,0,56,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32343,"name":"Wand of Prismatic Focus","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,21,21,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":193,"weaponDamageMax":360,"weaponSpeed":1.5,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32344,"name":"Staff of Immaculate Recovery","icon":"inv_staff_61","type":13,"weaponType":8,"handType":4,"stats":[0,0,112,0,53,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.2,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32345,"name":"Dreadboots of the Legion","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[38,0,40,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32346,"name":"Boneweave Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,50,57,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32347,"name":"Grips of Damnation","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,38,59,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32348,"name":"Soul Cleaver","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[65,0,63,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":579,"weaponSpeed":3.7,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32349,"name":"Translucent Spellthread Necklace","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,0,39,0,15,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32350,"name":"Touch of Inspiration","icon":"inv_misc_gem_ebondraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32351,"name":"Elunite Empowered Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,45,29,0,19,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32352,"name":"Naturewarden's Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,50,38,18,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32353,"name":"Gloves of Unfailing Faith","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,56,34,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32354,"name":"Crown of Empowered Fate","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,60,53,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32361,"name":"Blind-Seers Icon","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,36,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32362,"name":"Pendant of Titans","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,43,0,0,20,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32363,"name":"Naaru-Blessed Life Rod","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,23,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":193,"weaponDamageMax":360,"weaponSpeed":1.5,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32365,"name":"Heartshatter Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[63,0,45,0,0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32366,"name":"Shadowmaster's Boots","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,38,62,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32367,"name":"Leggings of Devastation","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,77,51,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32368,"name":"Tome of the Lightbringer","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[16,0,24,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[4,10],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32369,"name":"Blade of Savagery","icon":"inv_sword_87","type":13,"weaponType":9,"handType":2,"stats":[0,0,19,0,0,15,22,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.4,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32370,"name":"Nadina's Pendant of Purity","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,28,36,20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}]}, -{"id":32373,"name":"Helm of the Illidari Shatterer","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[51,0,29,0,0,34,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32374,"name":"Zhar'doom, Greatstaff of the Devourer","icon":"inv_staff_59","type":13,"weaponType":8,"handType":4,"stats":[0,0,105,0,0,0,36,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":353,"weaponDamageMax":530,"weaponSpeed":3.2,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32375,"name":"Bulwark of Azzinoth","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[29,0,40,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32376,"name":"Forest Prowler's Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,50,53,0,0,0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32377,"name":"Mantle of Darkness","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,47,34,0,0,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}]}, -{"id":32378,"name":"Silver Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":2.3,"ilvl":37,"quality":2}, -{"id":32387,"name":"Idol of the Raven Goddess","icon":"inv-mount_raven_54","type":14,"rangedWeaponType":4,"stats":[8,8,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1]}, -{"id":32389,"name":"Soulguard Leggings","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40023}},{"crafted":{"profession":11,"spellId":40023}}]}, -{"id":32390,"name":"Soulguard Girdle","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40024}},{"crafted":{"profession":11,"spellId":40024}}]}, -{"id":32391,"name":"Soulguard Slippers","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40020}},{"crafted":{"profession":11,"spellId":40020}}]}, -{"id":32392,"name":"Soulguard Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40021}},{"crafted":{"profession":11,"spellId":40021}}]}, -{"id":32393,"name":"Redeemed Soul Cinch","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40006}},{"crafted":{"profession":8,"spellId":40006}}]}, -{"id":32394,"name":"Redeemed Soul Moccasins","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40003}},{"crafted":{"profession":8,"spellId":40003}}]}, -{"id":32395,"name":"Redeemed Soul Wristguards","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40004}},{"crafted":{"profession":8,"spellId":40004}}]}, -{"id":32396,"name":"Redeemed Soul Legguards","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40005}},{"crafted":{"profession":8,"spellId":40005}}]}, -{"id":32397,"name":"Waistguard of Shackled Souls","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40002}},{"crafted":{"profession":8,"spellId":40002}}]}, -{"id":32398,"name":"Boots of Shackled Souls","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":39997}},{"crafted":{"profession":8,"spellId":39997}}]}, -{"id":32399,"name":"Bracers of Shackled Souls","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":52733}},{"crafted":{"profession":8,"spellId":52733}}]}, -{"id":32400,"name":"Greaves of Shackled Souls","icon":"inv_pants_plate_12","type":9,"armorType":3,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40001}},{"crafted":{"profession":8,"spellId":40001}}]}, -{"id":32401,"name":"Shadesteel Girdle","icon":"inv_belt_30","type":8,"armorType":4,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40036}},{"crafted":{"profession":2,"spellId":40036}}]}, -{"id":32402,"name":"Shadesteel Sabots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40033}},{"crafted":{"profession":2,"spellId":40033}}]}, -{"id":32403,"name":"Shadesteel Bracers","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,637,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40034}},{"crafted":{"profession":2,"spellId":40034}}]}, -{"id":32404,"name":"Shadesteel Greaves","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40035}},{"crafted":{"profession":2,"spellId":40035}}]}, -{"id":32414,"name":"Tom's Legs A","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[37,0,54,0,0,18,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"classAllowlist":[9]}, -{"id":32415,"name":"Tom's Legs B","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[40,0,58,0,0,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"classAllowlist":[9]}, -{"id":32416,"name":"Tom's Legs C","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[45,0,66,0,0,22,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":4,"classAllowlist":[9]}, -{"id":32417,"name":"Tom's Legs 1","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[41,0,60,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"classAllowlist":[9]}, -{"id":32418,"name":"Tom's Legs 2","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[46,0,69,0,0,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"classAllowlist":[9]}, -{"id":32419,"name":"Tom's Legs 3","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[54,0,79,0,0,26,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":145,"quality":4,"classAllowlist":[9]}, -{"id":32420,"name":"Night's End","icon":"inv_misc_cape_20","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40060}},{"crafted":{"profession":11,"spellId":40060}}]}, -{"id":32450,"name":"Gladiator's Gavel","icon":"inv_mace_47","type":13,"weaponType":4,"handType":1,"stats":[0,0,41,0,0,0,0,0,0,0,0,0,0,0,246,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.6,"ilvl":123,"quality":4}, -{"id":32451,"name":"Gladiator's Salvation","icon":"inv_mace_47","type":13,"weaponType":4,"handType":1,"stats":[0,0,41,0,0,0,0,0,0,0,0,0,0,0,246,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":190,"weaponSpeed":1.6,"ilvl":123,"quality":4}, -{"id":32452,"name":"Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4}, -{"id":32461,"name":"Furious Gizmatic Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[48,0,28,0,0,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":40274}},{"crafted":{"profession":4,"spellId":40274}}]}, -{"id":32471,"name":"Shard of Azzinoth","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":161,"weaponDamageMax":242,"weaponSpeed":1.9,"ilvl":151,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32472,"name":"Justicebringer 2000 Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,36,46,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41311}},{"crafted":{"profession":4,"spellId":41311}}]}, -{"id":32473,"name":"Tankatronic Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[26,0,67,0,0,13,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41312}},{"crafted":{"profession":4,"spellId":41312}}]}, -{"id":32474,"name":"Surestrike Goggles v2.0","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,48,28,0,0,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41314}},{"crafted":{"profession":4,"spellId":41314}}]}, -{"id":32475,"name":"Living Replicator Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,53,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41316}},{"crafted":{"profession":4,"spellId":41316}}]}, -{"id":32476,"name":"Gadgetstorm Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,28,47,0,12,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"classAllowlist":[7],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41315}},{"crafted":{"profession":4,"spellId":41315}}]}, -{"id":32478,"name":"Deathblow X11 Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,48,64,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41317}},{"crafted":{"profession":4,"spellId":41317}}]}, -{"id":32479,"name":"Wonderheal XT40 Shades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,54,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41318}},{"crafted":{"profession":4,"spellId":41318}}]}, -{"id":32480,"name":"Magnified Moon Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,44,43,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"classAllowlist":[1],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41319}},{"crafted":{"profession":4,"spellId":41319}}]}, -{"id":32481,"name":"Charm of Swift Flight","icon":"spell_nature_giftofthewaterspirit","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"unique":true,"classAllowlist":[1]}, -{"id":32482,"name":"Touch of Victory","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":429,"weaponSpeed":1.9,"ilvl":130,"quality":4}, -{"id":32483,"name":"The Skull of Gul'dan","icon":"inv_misc_bone_elfskull_01","type":12,"stats":[0,0,0,47,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32485,"name":"Ashtongue Talisman of Valor","icon":"inv_jewelry_necklace_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[9],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32486,"name":"Ashtongue Talisman of Equilibrium","icon":"inv_qiraj_jewelengraved","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32487,"name":"Ashtongue Talisman of Swiftness","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[2],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32488,"name":"Ashtongue Talisman of Insight","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[3],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32489,"name":"Ashtongue Talisman of Zeal","icon":"inv_qiraj_jewelblessed","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[4],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32490,"name":"Ashtongue Talisman of Acumen","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[5],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32491,"name":"Ashtongue Talisman of Vision","icon":"inv_jewelry_necklace_31","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[7],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32492,"name":"Ashtongue Talisman of Lethality","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[6],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32493,"name":"Ashtongue Talisman of Shadows","icon":"inv_qirajidol_night","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"classAllowlist":[8],"sources":[{"soldBy":{"npcId":23159,"npcName":"Okuno","zoneId":3959}}]}, -{"id":32494,"name":"Destruction Holo-Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,44,55,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"classAllowlist":[3,5,8],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41320}},{"crafted":{"profession":4,"spellId":41320}}]}, -{"id":32495,"name":"Powerheal 4000 Lens","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,53,46,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":127,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41321}},{"crafted":{"profession":4,"spellId":41321}}]}, -{"id":32496,"name":"Memento of Tyrande","icon":"inv_summerfest_fireflower","type":12,"stats":[0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32497,"name":"Stormrage Signet Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,33,0,0,30,18,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32500,"name":"Crystal Spire of Karabor","icon":"inv_mace_56","type":13,"weaponType":4,"handType":1,"stats":[0,0,33,0,16,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":248,"weaponSpeed":1.8,"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32501,"name":"Shadowmoon Insignia","icon":"inv_jewelcrafting_shadowsongamethyst_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}]}, -{"id":32505,"name":"Madness of the Betrayer","icon":"spell_shadow_charm","type":12,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32508,"name":"Necklace of the Deep","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":40514}},{"crafted":{"profession":7,"spellId":40514}}]}, -{"id":32510,"name":"Softstep Boots of Tracking","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,38,41,0,0,37,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32512,"name":"Girdle of Lordaeron's Fallen","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,60,32,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}]}, -{"id":32513,"name":"Wristbands of Divine Influence","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,42,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}]}, -{"id":32514,"name":"Skettis Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-57,-56,-55,-54,-53,-52,-51,-50,-49],"ilvl":115,"quality":3}, -{"id":32515,"name":"Wristguards of Determination","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,37,0,0,0,0,0,0,24,13,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}]}, -{"id":32516,"name":"Wraps of Purification","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,46,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":32517,"name":"The Wavemender's Mantle","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}]}, -{"id":32518,"name":"Veil of Turning Leaves","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,54,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32519,"name":"Belt of Divine Guidance","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,53,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}]}, -{"id":32520,"name":"Manaforged Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"ilvl":109,"quality":3}, -{"id":32521,"name":"Faceplate of the Impenetrable","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[26,0,82,0,0,0,0,0,0,41,29,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32522,"name":"Demonic Bulwark","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-66,-41,-37],"ilvl":115,"quality":3}, -{"id":32524,"name":"Shroud of the Highborne","icon":"inv_misc_cape_06","type":4,"stats":[0,0,44,31,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32525,"name":"Cowl of the Illidari High Lord","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,60,55,0,21,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32526,"name":"Band of Devastation","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,44,0,0,0,0,31,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32527,"name":"Ring of Ancient Knowledge","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,45,33,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32528,"name":"Blessed Band of Karabor","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,38,33,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32529,"name":"Heretic's Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[35,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":32531,"name":"Gezzarak's Fang","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":32532,"name":"Windrager's Coils","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,30,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":32533,"name":"Karrog's Shard","icon":"inv_misc_gem_flamespessarite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,30,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":32534,"name":"Brooch of the Immortal King","icon":"inv_jewelry_necklace_28","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true}, -{"id":32535,"name":"Gift of the Talonpriests","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true}, -{"id":32536,"name":"Terokk's Gavel","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-43,-41,-40],"weaponDamageMin":125,"weaponDamageMax":233,"weaponSpeed":2.5,"ilvl":115,"quality":3}, -{"id":32537,"name":"Terokk's Gavel","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":2,"ilvl":115,"quality":3}, -{"id":32538,"name":"Skywitch's Drape","icon":"inv_misc_cape_05","type":4,"stats":[0,0,23,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":23367,"npcName":"Grella","zoneId":3519}}]}, -{"id":32539,"name":"Skyguard's Drape","icon":"inv_misc_cape_08","type":4,"stats":[0,15,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":23367,"npcName":"Grella","zoneId":3519}}]}, -{"id":32540,"name":"Terokk's Might","icon":"inv_misc_cape_08","type":4,"stats":[0,16,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4}, -{"id":32541,"name":"Terokk's Wisdom","icon":"inv_misc_cape_02","type":4,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4}, -{"id":32568,"name":"Swiftsteel Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[35,0,32,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41132}},{"crafted":{"profession":2,"spellId":41132}}]}, -{"id":32570,"name":"Swiftsteel Shoulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[47,0,29,0,0,19,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41133}},{"crafted":{"profession":2,"spellId":41133}}]}, -{"id":32571,"name":"Dawnsteel Bracers","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,42,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41134}},{"crafted":{"profession":2,"spellId":41134}}]}, -{"id":32573,"name":"Dawnsteel Shoulders","icon":"inv_shoulder_66","type":3,"armorType":4,"stats":[0,0,55,37,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41135}},{"crafted":{"profession":2,"spellId":41135}}]}, -{"id":32574,"name":"Bindings of Lightning Reflexes","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,28,29,0,0,0,21,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41161}},{"crafted":{"profession":8,"spellId":41161}}]}, -{"id":32575,"name":"Shoulders of Lightning Reflexes","icon":"inv_shoulder_66","type":3,"armorType":3,"stats":[0,37,38,0,0,0,27,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41162}},{"crafted":{"profession":8,"spellId":41162}}]}, -{"id":32577,"name":"Living Earth Bindings","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41163}},{"crafted":{"profession":8,"spellId":41163}}]}, -{"id":32579,"name":"Living Earth Shoulders","icon":"inv_shoulder_66","type":3,"armorType":3,"stats":[0,0,56,39,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41164}},{"crafted":{"profession":8,"spellId":41164}}]}, -{"id":32580,"name":"Swiftstrike Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,25,48,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41158}},{"crafted":{"profession":8,"spellId":41158}}]}, -{"id":32581,"name":"Swiftstrike Shoulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,37,58,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41160}},{"crafted":{"profession":8,"spellId":41160}}]}, -{"id":32582,"name":"Bracers of Renewed Life","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,42,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41156}},{"crafted":{"profession":8,"spellId":41156}}]}, -{"id":32583,"name":"Shoulderpads of Renewed Life","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,58,37,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41157}},{"crafted":{"profession":8,"spellId":41157}}]}, -{"id":32584,"name":"Swiftheal Wraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41207}},{"crafted":{"profession":11,"spellId":41207}}]}, -{"id":32585,"name":"Swiftheal Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,34,38,28,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41208}},{"crafted":{"profession":11,"spellId":41208}}]}, -{"id":32586,"name":"Bracers of Nimble Thought","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41205}},{"crafted":{"profession":11,"spellId":41205}}]}, -{"id":32587,"name":"Mantle of Nimble Thought","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,57,38,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41206}},{"crafted":{"profession":11,"spellId":41206}}]}, -{"id":32589,"name":"Hellfire-Encased Pendant","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,31,36,12,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32590,"name":"Nethervoid Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,41,37,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32591,"name":"Choker of Serrated Blades","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,37,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32592,"name":"Chestguard of Relentless Storms","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,61,63,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32593,"name":"Treads of the Den Mother","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,39,78,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32606,"name":"Girdle of the Lightbearer","icon":"inv_belt_28","type":8,"armorType":4,"stats":[49,0,33,0,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32608,"name":"Pillager's Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[38,0,45,0,0,18,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32609,"name":"Boots of the Divine Light","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,62,33,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32645,"name":"Crystalline Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,12,16,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":355,"weaponSpeed":2.8,"ilvl":100,"quality":4,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32647,"name":"Shard-Bound Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32648,"name":"Vortex Walking Boots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[28,0,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32649,"name":"Medallion of Karabor","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":32650,"name":"Cerulean Crystal Rod","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":1.5,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32651,"name":"Crystal Orb of Enlightenment","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32652,"name":"Ogri'la Aegis","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[0,0,18,0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32653,"name":"Apexis Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,28,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32654,"name":"Crystalforged Trinket","icon":"inv_datacrystal01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":23428,"npcName":"Jho'nass","zoneId":3522}}]}, -{"id":32655,"name":"Crystalweave Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,24,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4}, -{"id":32656,"name":"Crystalhide Handwraps","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,28,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4}, -{"id":32658,"name":"Badge of Tenacity","icon":"inv_misc_armorkit_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true}, -{"id":32659,"name":"Crystal-Infused Shiv","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,11,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":115,"quality":3}, -{"id":32660,"name":"Crystalforged Sword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":1,"stats":[0,0,32,0,0,0,11,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3}, -{"id":32661,"name":"Apexis Crystal Mace","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,8,20,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3}, -{"id":32662,"name":"Flaming Quartz Staff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,73,0,0,0,26,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":156,"weaponDamageMax":235,"weaponSpeed":2.1,"ilvl":115,"quality":3}, -{"id":32663,"name":"Apexis Cleaver","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[46,0,39,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.6,"ilvl":115,"quality":3}, -{"id":32664,"name":"Dreamcrystal Band","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,15,26,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true}, -{"id":32665,"name":"Crystalweave Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,15,15,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":32694,"name":"Overseer's Badge","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":2,"unique":true,"sources":[{"quest":{"id":11053,"name":"Rise, Overseer!"}}]}, -{"id":32695,"name":"Captain's Badge","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"unique":true,"sources":[{"quest":{"id":11084,"name":"Stand Tall, Captain!"}}]}, -{"id":32756,"name":"Gyro-Balanced Khorium Destroyer","icon":"inv_weapon_rifle_13","type":14,"rangedWeaponType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":213,"weaponDamageMax":396,"weaponSpeed":2.8,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41307}},{"crafted":{"profession":4,"spellId":41307}}]}, -{"id":32757,"name":"Blessed Medallion of Karabor","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"sources":[{"quest":{"id":10959,"name":"The Fall of the Betrayer"}}]}, -{"id":32769,"name":"Belt of the Raven Lord","icon":"inv_belt_19","type":8,"armorType":2,"stats":[0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}]}, -{"id":32770,"name":"Skyguard Silver Cross","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":23367,"npcName":"Grella","zoneId":3519}}]}, -{"id":32771,"name":"Airman's Ribbon of Gallantry","icon":"inv_misc_ribbon_01","type":12,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":23367,"npcName":"Grella","zoneId":3519}}]}, -{"id":32772,"name":"Brilliant Pearl Band","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":97,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":41414}},{"crafted":{"profession":7,"spellId":41414}}]}, -{"id":32774,"name":"The Black Pearl","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,33,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"unique":true,"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":41415}},{"crafted":{"profession":7,"spellId":41415}}]}, -{"id":32776,"name":"Crown of the Sea Witch","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,54,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":41418}},{"crafted":{"profession":7,"spellId":41418}}]}, -{"id":32778,"name":"Boots of Righteous Fortitude","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,43,25,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}]}, -{"id":32779,"name":"Band of Frigid Elements","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,20,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}]}, -{"id":32780,"name":"The Boomstick","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,0,21,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}]}, -{"id":32781,"name":"Talon of Anzu","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,10,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":1.5,"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}]}, -{"id":32785,"name":"Veteran's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,30,56,0,0,0,16,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32786,"name":"Veteran's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,66,19,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32787,"name":"Veteran's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32788,"name":"Veteran's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,59,32,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32789,"name":"Veteran's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32790,"name":"Veteran's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,30,53,0,0,0,16,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32791,"name":"Veteran's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,30,45,0,0,0,40,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32792,"name":"Veteran's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32793,"name":"Veteran's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[31,0,45,0,0,0,31,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4,10]}, -{"id":32794,"name":"Veteran's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32795,"name":"Veteran's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32796,"name":"Veteran's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32797,"name":"Veteran's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,30,56,0,0,0,16,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32798,"name":"Veteran's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,66,19,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32799,"name":"Veteran's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32800,"name":"Veteran's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32801,"name":"Veteran's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32802,"name":"Veteran's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,30,53,0,0,0,16,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32803,"name":"Veteran's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,31,45,0,0,0,39,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32804,"name":"Veteran's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32805,"name":"Veteran's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[31,0,45,0,0,0,31,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4,10]}, -{"id":32806,"name":"Veteran's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32807,"name":"Veteran's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32808,"name":"Veteran's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[6,1]}, -{"id":32809,"name":"Veteran's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,20,33,0,0,0,8,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[2,7]}, -{"id":32810,"name":"Veteran's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,39,9,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[6,1]}, -{"id":32811,"name":"Veteran's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,21,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32812,"name":"Veteran's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,39,14,16,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[6,1]}, -{"id":32813,"name":"Veteran's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,35,19,0,0,16,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[9,4]}, -{"id":32814,"name":"Veteran's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,21,33,0,0,0,9,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,293,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[6,1]}, -{"id":32816,"name":"Veteran's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,21,29,0,0,0,22,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[2,7]}, -{"id":32817,"name":"Veteran's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[2,7]}, -{"id":32818,"name":"Veteran's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,30,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[9,4,10]}, -{"id":32819,"name":"Veteran's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,37,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[9,4]}, -{"id":32820,"name":"Veteran's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,39,19,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32821,"name":"Veteran's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,38,16,16,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[6,1]}, -{"id":32829,"name":"Windcharger's Lance","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":357,"weaponSpeed":3.4,"ilvl":109,"quality":3,"sources":[{"quest":{"id":11073,"name":"Terokk's Downfall"}}]}, -{"id":32830,"name":"Severin's Cane","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":252,"weaponSpeed":2.4,"ilvl":109,"quality":3,"sources":[{"quest":{"id":11073,"name":"Terokk's Downfall"}}]}, -{"id":32831,"name":"Jeweled Rod","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,18,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":284,"weaponSpeed":1.8,"ilvl":109,"quality":3,"sources":[{"quest":{"id":11073,"name":"Terokk's Downfall"}}]}, -{"id":32832,"name":"Scout's Throwing Knives","icon":"inv_throwingknife_02","type":14,"rangedWeaponType":5,"stats":[0,0,18,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":231,"weaponSpeed":2.2,"ilvl":109,"quality":3,"sources":[{"quest":{"id":11073,"name":"Terokk's Downfall"}}]}, -{"id":32837,"name":"Warglaive of Azzinoth","icon":"inv_weapon_glave_01","type":13,"weaponType":9,"handType":1,"stats":[0,22,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":398,"weaponSpeed":2.8,"ilvl":156,"quality":5,"unique":true,"classAllowlist":[9,6,10],"setName":"The Twin Blades of Azzinoth","setId":699,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32838,"name":"Warglaive of Azzinoth","icon":"inv_weapon_glave_01","type":13,"weaponType":9,"handType":3,"stats":[0,21,46,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.4,"ilvl":156,"quality":5,"unique":true,"classAllowlist":[9,6,10],"setName":"The Twin Blades of Azzinoth","setId":699,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}]}, -{"id":32854,"name":"Hammer of Righteous Might","icon":"inv_mace_41","type":13,"weaponType":4,"handType":4,"stats":[0,0,83,0,38,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":274,"weaponSpeed":2.1,"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":43846}},{"crafted":{"profession":2,"spellId":43846}}]}, -{"id":32863,"name":"Skybreaker Whip","icon":"inv_misc_crop_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"unique":true,"sources":[{"quest":{"id":11071,"name":"Dragonmaw Race: Captain Skyshatter"}}]}, -{"id":32864,"name":"Commander's Badge","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":109,"quality":3,"unique":true,"sources":[{"quest":{"id":11092,"name":"Hail, Commander!"}}]}, -{"id":32865,"name":"Drake Tamer's Gloves","icon":"inv_gauntlets_03","type":7,"armorType":2,"stats":[0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11041,"name":"A Job Unfinished..."}}]}, -{"id":32866,"name":"Ascendant's Boots","icon":"inv_boots_02","type":10,"armorType":4,"stats":[0,0,22,0,0,0,0,0,0,21,15,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11041,"name":"A Job Unfinished..."}}]}, -{"id":32867,"name":"Dragonmaw Augur's Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,40,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11041,"name":"A Job Unfinished..."}}]}, -{"id":32868,"name":"Skybreaker's Mantle","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11041,"name":"A Job Unfinished..."}}]}, -{"id":32869,"name":"Illidari Lord's Tunic","icon":"inv_chest_chain_07","type":5,"armorType":2,"stats":[0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11090,"name":"Subdue the Subduer"}}]}, -{"id":32870,"name":"Legguards of Contemplation","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,22,24,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11090,"name":"Subdue the Subduer"}}]}, -{"id":32871,"name":"Horns of the Illidari","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,24,0,0,0,0,0,0,29,22,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":114,"quality":2,"sources":[{"quest":{"id":11090,"name":"Subdue the Subduer"}}]}, -{"id":32872,"name":"Illidari Rod of Discipline","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.4,"ilvl":114,"quality":2,"sources":[{"quest":{"id":11090,"name":"Subdue the Subduer"}}]}, -{"id":32912,"name":"Yellow Brewfest Stein","icon":"inv_misc_beer_01","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32914,"name":"Bland Shiv","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":146,"weaponSpeed":1.8,"ilvl":101,"quality":4}, -{"id":32915,"name":"Filled Yellow Brewfest Stein","icon":"inv_misc_beer_02","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32917,"name":"Filled Yellow Brewfest Stein","icon":"inv_misc_beer_02","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32918,"name":"Filled Yellow Brewfest Stein","icon":"inv_misc_beer_02","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32919,"name":"Filled Yellow Brewfest Stein","icon":"inv_misc_beer_02","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32920,"name":"Filled Yellow Brewfest Stein","icon":"inv_misc_beer_02","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":32941,"name":"Corruptor's Signet","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,18,28,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true}, -{"id":32942,"name":"Ring of the Overseer","icon":"inv_jewelry_ring_22","type":11,"stats":[0,16,42,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"unique":true}, -{"id":32943,"name":"Swiftsteel Bludgeon","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,19,0,27,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.5,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":32944,"name":"Talon of the Phoenix","icon":"inv_weapon_hand_12","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,15,19,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":339,"weaponSpeed":2.7,"ilvl":134,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}]}, -{"id":32945,"name":"Fist of Molten Fury","icon":"inv_weapon_hand_14","type":13,"weaponType":3,"handType":3,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":181,"weaponSpeed":1.5,"ilvl":141,"quality":4,"setName":"The Fists of Fury","setId":719,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}]}, -{"id":32946,"name":"Claw of Molten Fury","icon":"inv_weapon_hand_14","type":13,"weaponType":3,"handType":1,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":216,"weaponDamageMax":325,"weaponSpeed":2.7,"ilvl":141,"quality":4,"setName":"The Fists of Fury","setId":719,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}]}, -{"id":32949,"name":"Unusually Slow Sword","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":431,"weaponSpeed":6,"ilvl":115,"quality":3}, -{"id":32950,"name":"Unusually Slow Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":363,"weaponDamageMax":363,"weaponSpeed":6,"ilvl":100,"quality":3}, -{"id":32951,"name":"Unusually Slow Two-Hander","icon":"inv_sword_36","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":746,"weaponDamageMax":747,"weaponSpeed":8,"ilvl":115,"quality":3}, -{"id":32961,"name":"Merciless Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4}, -{"id":32962,"name":"Merciless Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,26,14,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":443,"weaponSpeed":1.9,"ilvl":136,"quality":4}, -{"id":32963,"name":"Merciless Gladiator's Gavel","icon":"inv_mace_47","type":13,"weaponType":4,"handType":1,"stats":[0,0,41,0,0,15,0,0,0,0,0,0,0,0,281,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.6,"ilvl":136,"quality":4}, -{"id":32964,"name":"Merciless Gladiator's Salvation","icon":"inv_mace_47","type":13,"weaponType":4,"handType":1,"stats":[0,0,47,0,0,0,0,0,0,0,0,0,0,0,281,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.6,"ilvl":136,"quality":4}, -{"id":32973,"name":"General's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32974,"name":"General's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32975,"name":"General's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32976,"name":"Marshal's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32977,"name":"Marshal's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32978,"name":"Marshal's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32979,"name":"Veteran's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32980,"name":"Veteran's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,21,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32981,"name":"Veteran's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[5,3,8]}, -{"id":32982,"name":"General's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":32983,"name":"General's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":32984,"name":"General's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":32985,"name":"Marshal's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":32986,"name":"Marshal's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[9,4]}, -{"id":32987,"name":"Marshal's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9,4]}, -{"id":32988,"name":"Veteran's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32989,"name":"Veteran's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,35,19,0,0,16,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[9,4]}, -{"id":32990,"name":"Veteran's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[9,4]}, -{"id":32991,"name":"General's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":32992,"name":"General's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":32993,"name":"General's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":32994,"name":"Marshal's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":113,"quality":4,"classAllowlist":[2,7]}, -{"id":32995,"name":"Marshal's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":32996,"name":"Marshal's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2,7]}, -{"id":32997,"name":"Veteran's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":126,"quality":4,"classAllowlist":[2,7]}, -{"id":32998,"name":"Veteran's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":32999,"name":"Veteran's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"classAllowlist":[2,7]}, -{"id":33006,"name":"Vengeful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_19","type":14,"rangedWeaponType":2,"stats":[0,0,24,0,0,0,16,0,0,0,0,0,0,34,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3,"ilvl":146,"quality":4}, -{"id":33012,"name":"Terokkar Lilac","icon":"inv_misc_herb_dreamfoil","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":33014,"name":"Fine Poking Stick","icon":"inv_misc_root_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":1}, -{"id":33016,"name":"Blue Brewfest Stein","icon":"inv_misc_beer_03","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33017,"name":"Filled Blue Brewfest Stein","icon":"inv_misc_beer_04","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33018,"name":"Filled Blue Brewfest Stein","icon":"inv_misc_beer_04","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33019,"name":"Filled Blue Brewfest Stein","icon":"inv_misc_beer_04","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33020,"name":"Filled Blue Brewfest Stein","icon":"inv_misc_beer_04","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33021,"name":"Filled Blue Brewfest Stein","icon":"inv_misc_beer_04","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":11,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":33047,"name":"Belbi's Eyesight Enhancing Romance Goggles","icon":"inv_gizmo_newgoggles","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"unique":true,"factionRestriction":1}, -{"id":33054,"name":"The Seal of Danzalar","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,33,21,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}]}, -{"id":33055,"name":"Band of Vile Aggression","icon":"inv_jewelry_ring_71","type":11,"stats":[0,0,37,0,0,0,0,0,0,0,0,0,50,50,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}]}, -{"id":33056,"name":"Veteran's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,34,25,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33057,"name":"Veteran's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,30,0,0,0,22,0,0,0,0,0,42,42,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33058,"name":"Band of the Vigilant","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,33,21,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}]}, -{"id":33064,"name":"Veteran's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,42,20,12,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33065,"name":"Veteran's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,41,22,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33066,"name":"Veteran's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,31,0,0,0,18,0,0,0,0,0,42,42,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33067,"name":"Veteran's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,34,18,0,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33068,"name":"Veteran's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,20,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":33076,"name":"Merciless Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33077,"name":"Merciless Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33078,"name":"Merciless Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33097,"name":"Mushroom Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33104,"name":"Ring of Skill","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":3}, -{"id":33105,"name":"Budd's Guise of Zul'aman","icon":"inv_misc_head_troll_01","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":33122,"name":"Cloak of Darkness","icon":"inv_misc_cape_20","type":4,"stats":[23,0,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":120,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":42546}},{"crafted":{"profession":8,"spellId":42546}}]}, -{"id":33173,"name":"Ragesteel Shoulders","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[32,0,12,0,0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":42662}},{"crafted":{"profession":2,"spellId":42662}}]}, -{"id":33191,"name":"Jungle Stompers","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[19,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33192,"name":"Carved Witch Doctor's Stick","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":184,"weaponDamageMax":343,"weaponSpeed":1.5,"ilvl":132,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33193,"name":"Mossy Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33194,"name":"Ancient Ceremonial Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33195,"name":"Cracked Stone Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33196,"name":"Softly-Glowing Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33197,"name":"Mossy Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33198,"name":"Necklace of Decay","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33199,"name":"Pendant of Old","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33200,"name":"Ancient Ceremonial Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33201,"name":"Silver Moonstone Pendant","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":103,"quality":2}, -{"id":33203,"name":"Robes of Heavenly Purpose","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,42,46,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33204,"name":"Shadowprowler's Chestguard","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,40,45,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":42731}},{"crafted":{"profession":8,"spellId":42731}}]}, -{"id":33206,"name":"Pauldrons of Primal Fury","icon":"inv_shoulder_85","type":3,"armorType":3,"stats":[0,29,54,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33207,"name":"Implacable Guardian Sabatons","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[0,0,41,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33211,"name":"Bladeangel's Money Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,29,48,0,0,0,21,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33214,"name":"Akil'zon's Talonblade","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.5,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33215,"name":"Bloodstained Elven Battlevest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[46,0,69,0,0,0,35,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33216,"name":"Chestguard of Hidden Purpose","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[0,0,60,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33222,"name":"Nyn'jah's Tabi Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,30,48,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33228,"name":"Crimson Tunic","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"factionRestriction":1}, -{"id":33229,"name":"Mordant's Travel Tunic","icon":"inv_chest_cloth_86","type":5,"armorType":1,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":33230,"name":"Leggings of the Long Road","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":33231,"name":"Oversized Stonemaul Hood","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33232,"name":"Journeyman's Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":33233,"name":"Cobalt-threaded Gloves","icon":"inv_gauntlets_118","type":7,"armorType":1,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33235,"name":"Journeyman's Epaulets","icon":"inv_shoulder_146v4","type":3,"armorType":1,"stats":[0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33237,"name":"Brogg's Battle Harness","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":33239,"name":"Marshwarden's Tunic","icon":"inv_chest_leather_28v2","type":5,"armorType":2,"stats":[0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33240,"name":"Grimtotem Earthbinder's Tunic","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,0,0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33241,"name":"Oiled Leather Leggings","icon":"inv_pants_leather_40v2","type":9,"armorType":2,"stats":[0,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33242,"name":"Raptorhide Legguards","icon":"inv_pants_leather_40","type":9,"armorType":2,"stats":[0,0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33243,"name":"Skirmisher's Cover","icon":"inv_helmet_54","type":1,"armorType":2,"stats":[0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":33244,"name":"The Wanderer's Cover","icon":"inv_helmet_175","type":1,"armorType":2,"stats":[0,11,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33245,"name":"Grimsby's Gaudy Girdle","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":33247,"name":"Swift Wind Spaulder","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":33248,"name":"Crested Shoulderguard","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":33249,"name":"Boots of the Skirmisher","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":33250,"name":"Archer's Wristguard","icon":"inv_bracer_64","type":6,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}]}, -{"id":33251,"name":"Steel-Banded Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":33252,"name":"Gleaming Scale Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[12,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2}, -{"id":33253,"name":"Golden Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[16,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"factionRestriction":1}, -{"id":33255,"name":"Rustproof Waistguard","icon":"inv_belt_86v2","type":8,"armorType":4,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33256,"name":"Refitted Bruiser Gauntlets","icon":"inv_gauntlets_107v2","type":7,"armorType":4,"stats":[5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33257,"name":"Scaled Marshwalkers","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":33258,"name":"Protective Engineer's Leggings","icon":"inv_pants_plate_38v2","type":9,"armorType":4,"stats":[11,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33259,"name":"Crimson Barbut","icon":"inv_helmet_187v2","type":1,"armorType":3,"stats":[13,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}]}, -{"id":33260,"name":"Spellbound Cloak","icon":"inv_misc_cape_19","type":4,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33261,"name":"Destroyer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33262,"name":"Morlann's Seal","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2}, -{"id":33263,"name":"Raptor Eye Ring","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":33264,"name":"Glowing Tourmaline Ring","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33265,"name":"Pendant of Ferocity","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":33266,"name":"Book of the Adept","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":33267,"name":"Fleshripper","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":1.8,"ilvl":37,"quality":2,"sources":[{"quest":{}}]}, -{"id":33268,"name":"Bone Dirk","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":37,"weaponSpeed":1.4,"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33269,"name":"Bejeweled Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":1.8,"ilvl":37,"quality":2}, -{"id":33270,"name":"Mariner's Sword","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.3,"ilvl":38,"quality":2}, -{"id":33271,"name":"Battlecaster's Edge","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":1.5,"ilvl":39,"quality":2,"sources":[{"quest":{}}]}, -{"id":33272,"name":"Biting Axe","icon":"inv_axe_07","type":13,"weaponType":1,"handType":2,"stats":[3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.6,"ilvl":38,"quality":2}, -{"id":33273,"name":"Seasoned Marshwood Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.7,"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":33274,"name":"Mercenary's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":83,"weaponSpeed":2.7,"ilvl":37,"quality":2}, -{"id":33279,"name":"Iron-Tusk Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[22,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33280,"name":"War-Feathered Loop","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,29,59,0,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33281,"name":"Brooch of Nature's Mercy","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,36,34,19,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33283,"name":"Amani Punisher","icon":"inv_mace_32","type":13,"weaponType":4,"handType":1,"stats":[0,0,46,0,0,20,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.6,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33285,"name":"Fury of the Ursine","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,28,25,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33286,"name":"Mojo-Mender's Mask","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,68,45,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33287,"name":"Gnarled Ironwood Pauldrons","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,42,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33291,"name":"Voodoo-Woven Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,39,34,0,17,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33292,"name":"Hallowed Helm","icon":"inv_misc_bag_28_halloween","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}]}, -{"id":33293,"name":"Signet of Ancient Magics","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,28,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}]}, -{"id":33296,"name":"Brooch of Deftness","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,48,0,0,22,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33297,"name":"The Savage's Choker","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,37,0,0,0,0,25,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33298,"name":"Prowler's Strikeblade","icon":"inv_weapon_shortblade_65","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,0,20,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.5,"ilvl":132,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33299,"name":"Spaulders of the Advocate","icon":"inv_shoulder_84","type":3,"armorType":4,"stats":[0,0,47,29,28,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33300,"name":"Shoulderpads of Dancing Blades","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,34,66,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33303,"name":"Skullshatter Warboots","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[30,0,37,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33304,"name":"Cloak of Subjugated Power","icon":"inv_misc_cape_20","type":4,"stats":[0,0,42,23,0,0,16,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33309,"name":"Merciless Gladiator's Redoubt","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4}, -{"id":33313,"name":"Merciless Gladiator's Barrier","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4}, -{"id":33317,"name":"Robe of Departed Spirits","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,60,46,30,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33322,"name":"Shimmer-Pelt Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,65,46,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33324,"name":"Treads of the Life Path","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,53,34,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33325,"name":"Voodoo Shaker","icon":"inv_offhand_zulaman_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33326,"name":"Bulwark of the Amani Empire","icon":"inv_shield_42","type":13,"weaponType":7,"handType":3,"stats":[19,0,42,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,3825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33327,"name":"Mask of Introspection","icon":"inv_mask_02","type":1,"armorType":4,"stats":[0,0,69,39,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33328,"name":"Arrow-Fall Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,39,62,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33329,"name":"Shadowtooth Trollskin Cuirass","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,46,85,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33331,"name":"Chain of Unleashed Rage","icon":"inv_belt_18","type":8,"armorType":4,"stats":[34,0,37,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33332,"name":"Enamelled Disc of Mojo","icon":"inv_shield_43","type":13,"weaponType":7,"handType":3,"stats":[0,0,37,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33333,"name":"Kharmaa's Shroud of Hope","icon":"inv_misc_cape_06","type":4,"stats":[0,0,42,23,16,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33334,"name":"Fetish of the Primal Gods","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,32,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33354,"name":"Wub's Cursed Hexblade","icon":"inv_weapon_shortblade_64","type":13,"weaponType":2,"handType":1,"stats":[0,0,32,0,0,13,27,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":1.8,"ilvl":132,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33356,"name":"Helm of Natural Regeneration","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,69,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33357,"name":"Footpads of Madness","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,43,43,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}]}, -{"id":33358,"name":"Thread-Bare Cloth Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33359,"name":"Thread-Bare Cloth Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33360,"name":"Thread-Bare Cloth Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33361,"name":"Thread-Bare Cloth Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33362,"name":"Thread-Bare Cloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33363,"name":"Thread-Bare Cloth Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33364,"name":"Thread-Bare Cloth Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33365,"name":"Frost-Rimed Cloth Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33366,"name":"Frost-Rimed Cloth Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33367,"name":"Frost-Rimed Cloth Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33368,"name":"Frost-Rimed Cloth Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33369,"name":"Frost-Rimed Cloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33370,"name":"Frost-Rimed Cloth Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33371,"name":"Frost-Rimed Cloth Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33372,"name":"Fur-Lined Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33373,"name":"Fur-Lined Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33374,"name":"Fur-Lined Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33375,"name":"Fur-Lined Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33376,"name":"Fur-Lined Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33377,"name":"Fur-Lined Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33378,"name":"Fur-Lined Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33379,"name":"Frozen Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33380,"name":"Frozen Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33381,"name":"Frozen Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33382,"name":"Frozen Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33383,"name":"Frozen Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33384,"name":"Frozen Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33385,"name":"Frozen Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33386,"name":"Man'kin'do's Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,45,29,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33388,"name":"Heartless","icon":"inv_sword_107","type":13,"weaponType":9,"handType":2,"stats":[0,0,30,0,0,0,0,20,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33389,"name":"Dagger of Bad Mojo","icon":"inv_weapon_shortblade_60","type":13,"weaponType":2,"handType":2,"stats":[0,21,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":207,"weaponSpeed":1.8,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33390,"name":"Icy Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33391,"name":"Icy Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33392,"name":"Icy Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33393,"name":"Icy Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33394,"name":"Icy Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33395,"name":"Icy Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,565,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33396,"name":"Icy Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33397,"name":"Frigid Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33398,"name":"Frigid Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33399,"name":"Frigid Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33400,"name":"Frigid Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33401,"name":"Frigid Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33402,"name":"Frigid Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33403,"name":"Frigid Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33404,"name":"Ice-Bound Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33405,"name":"Ice-Bound Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33406,"name":"Ice-Bound Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33407,"name":"Ice-Bound Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33408,"name":"Ice-Bound Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33409,"name":"Ice-Bound Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33410,"name":"Ice-Bound Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33412,"name":"Frost-Worn Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33413,"name":"Frost-Worn Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33414,"name":"Frost-Worn Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33415,"name":"Frost-Worn Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33416,"name":"Frost-Worn Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33417,"name":"Frost-Worn Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33419,"name":"Frost-Worn Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33421,"name":"Battleworn Tuskguard","icon":"inv_helmet_111","type":1,"armorType":4,"stats":[34,0,60,0,0,0,0,0,0,40,23,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33422,"name":"Shattered Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":2.5,"ilvl":125}, -{"id":33423,"name":"Rime-Covered Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":193,"weaponSpeed":2.3,"ilvl":125}, -{"id":33424,"name":"Cracked Iron Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":207,"weaponDamageMax":312,"weaponSpeed":3.1,"ilvl":125}, -{"id":33425,"name":"Ice-Pitted Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":99,"weaponDamageMax":185,"weaponSpeed":2.2,"ilvl":125}, -{"id":33426,"name":"Chipped Timber Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":1.9,"ilvl":125}, -{"id":33427,"name":"Frost-Encrusted Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":125}, -{"id":33428,"name":"Dulled Shiv","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.6,"ilvl":125}, -{"id":33429,"name":"Ice Cleaver","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":252,"weaponSpeed":2.5,"ilvl":125}, -{"id":33430,"name":"Abandoned Greatsword","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":194,"weaponDamageMax":292,"weaponSpeed":2.9,"ilvl":125}, -{"id":33431,"name":"Icesmashing Mace","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":241,"weaponDamageMax":362,"weaponSpeed":3.6,"ilvl":125}, -{"id":33432,"name":"Coif of the Jungle Stalker","icon":"inv_helmet_113","type":1,"armorType":3,"stats":[0,36,69,0,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33433,"name":"Frigid Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33434,"name":"Frozen Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33435,"name":"Frost-Worn Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33436,"name":"Frost-Rimed Cloth Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":132}, -{"id":33437,"name":"Icy Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33438,"name":"Thread-Bare Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33439,"name":"Fur-Lined Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,347,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33440,"name":"Ice-Bound Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":118}, -{"id":33446,"name":"Girdle of Stromgarde's Hope","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,47,36,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33453,"name":"Hood of Hexing","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,55,48,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33463,"name":"Hood of the Third Eye","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,72,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33464,"name":"Hex Lord's Voodoo Pauldrons","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,47,30,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33465,"name":"Staff of Primal Fury","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,49,70,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":3,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33466,"name":"Loop of Cursed Bones","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,37,27,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33467,"name":"Blade of Twisted Visions","icon":"inv_sword_109","type":13,"weaponType":9,"handType":1,"stats":[0,0,48,0,0,0,0,21,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.8,"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33468,"name":"Dark Blessing","icon":"inv_staff_64","type":13,"weaponType":4,"handType":1,"stats":[0,0,29,0,0,0,0,30,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":1.9,"ilvl":138,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33469,"name":"Hauberk of the Empire's Champion","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,68,48,30,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33471,"name":"Two-Toed Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,59,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33473,"name":"Chestguard of the Warlord","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[27,0,60,0,0,26,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33474,"name":"Ancient Amani Longbow","icon":"inv_weapon_bow_32","type":14,"rangedWeaponType":1,"stats":[0,19,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":3,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33476,"name":"Cleaver of the Unforgiving","icon":"inv_axe_84","type":13,"weaponType":1,"handType":2,"stats":[0,0,31,0,0,12,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":205,"weaponSpeed":1.6,"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33478,"name":"Jin'rohk, The Great Apocalypse","icon":"inv_sword_108","type":13,"weaponType":9,"handType":4,"stats":[0,0,49,0,0,0,0,45,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":380,"weaponDamageMax":570,"weaponSpeed":3.7,"ilvl":138,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33479,"name":"Grimgrin Faceguard","icon":"inv_helmet_116","type":1,"armorType":2,"stats":[0,41,81,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33480,"name":"Cord of Braided Troll Hair","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,51,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33481,"name":"Pauldrons of Stone Resolve","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[19,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33483,"name":"Life-Step Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,41,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33484,"name":"Dory's Embrace","icon":"inv_misc_cape_20","type":4,"stats":[0,0,34,0,0,0,20,17,0,0,0,0,46,46,0,0,20,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33489,"name":"Mantle of Ill Intent","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,48,34,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33490,"name":"Staff of Dark Mending","icon":"inv_staff_63","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,40,0,0,0,0,0,0,0,0,0,270,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":477,"weaponSpeed":3.2,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33491,"name":"Tuskbreaker","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,19,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":469,"weaponSpeed":2.9,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33492,"name":"Trollbane","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[0,39,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":358,"weaponDamageMax":537,"weaponSpeed":3.6,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33493,"name":"Umbral Shiv","icon":"inv_weapon_shortblade_66","type":13,"weaponType":2,"handType":2,"stats":[0,12,30,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":207,"weaponSpeed":1.8,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33494,"name":"Amani Divining Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,96,0,0,0,31,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":477,"weaponSpeed":3.2,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33495,"name":"Rage","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":1,"stats":[0,20,18,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33496,"name":"Signet of Primal Wrath","icon":"inv_jewelry_ring_44","type":11,"stats":[0,28,55,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33497,"name":"Mana Attuned Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,29,29,0,18,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33498,"name":"Signet of the Quiet Forest","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,26,28,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33499,"name":"Signet of the Last Defender","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,45,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33500,"name":"Signet of Eternal Life","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33501,"name":"Bloodthirster's Wargreaves","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[46,0,43,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33502,"name":"Libram of Mending","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33503,"name":"Libram of Divine Judgement","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[14,0,21,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33504,"name":"Libram of Divine Purpose","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[14,0,21,0,0,0,0,0,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33505,"name":"Totem of Living Water","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33506,"name":"Skycall Totem","icon":"spell_nature_callstorm","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33507,"name":"Stonebreaker's Totem","icon":"spell_nature_earthquake","type":14,"rangedWeaponType":4,"stats":[0,14,21,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33508,"name":"Idol of Budding Life","icon":"spell_nature_protectionformnature","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33509,"name":"Idol of Terror","icon":"classic_ability_druid_demoralizingroar","type":14,"rangedWeaponType":4,"stats":[0,14,21,0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33510,"name":"Idol of the Unseen Moon","icon":"spell_nature_sentinal","type":14,"rangedWeaponType":4,"stats":[0,0,21,14,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33512,"name":"Furious Deathgrips","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[34,0,37,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33513,"name":"Eternium Rage-Shackles","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[32,0,32,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33514,"name":"Pauldrons of Gruesome Fate","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[42,0,33,0,0,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33515,"name":"Unwavering Legguards","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[26,0,73,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33516,"name":"Bracers of the Ancient Phalanx","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[22,0,45,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33517,"name":"Bonefist Gauntlets","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[30,0,51,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33518,"name":"High Justicar's Legplates","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[0,0,66,46,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33519,"name":"Handguards of the Templar","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[0,0,50,34,10,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33520,"name":"Vambraces of the Naaru","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,37,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33522,"name":"Chestguard of the Stoic Guardian","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[38,0,60,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33523,"name":"Sabatons of the Righteous Defender","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[20,0,45,0,0,18,0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33524,"name":"Girdle of the Protector","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,40,0,0,18,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33527,"name":"Shifting Camouflage Pants","icon":"inv_pants_leather_23","type":9,"armorType":3,"stats":[0,45,68,0,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33528,"name":"Gauntlets of Sniping","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,29,43,0,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33529,"name":"Steadying Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,25,37,0,0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33530,"name":"Natural Life Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,0,77,40,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33531,"name":"Polished Waterscale Gloves","icon":"inv_gauntlets_68","type":7,"armorType":3,"stats":[0,0,50,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33532,"name":"Gleaming Earthen Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33533,"name":"Avalanche Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,0,68,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}]}, -{"id":33534,"name":"Grips of Nature's Wrath","icon":"inv_gauntlets_68","type":7,"armorType":3,"stats":[0,0,53,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33535,"name":"Earthquake Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,38,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33536,"name":"Stormwrap","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,45,29,0,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33537,"name":"Treads of Booming Thunder","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,53,34,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33538,"name":"Shallow-Grave Trousers","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,46,85,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33539,"name":"Trickster's Stickyfingers","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,34,55,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33540,"name":"Master Assassin Wristwraps","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,25,36,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33552,"name":"Pants of Splendid Recovery","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,68,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33557,"name":"Gargon's Bracers of Peaceful Slumber","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33559,"name":"Starfire Waistband","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,41,34,16,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33566,"name":"Blessed Elunite Coverings","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,63,46,18,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33577,"name":"Moon-Walkers","icon":"inv_boots_cloth_16","type":10,"armorType":2,"stats":[0,0,54,29,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33578,"name":"Armwraps of the Kaldorei Protector","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,39,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33579,"name":"Vestments of Hibernation","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,46,89,13,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33580,"name":"Band of the Swift Paw","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,26,48,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33582,"name":"Footwraps of Wild Encroachment","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,33,54,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33583,"name":"Waistguard of the Great Beast","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,29,59,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,2],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33584,"name":"Pantaloons of Arcane Annihilation","icon":"inv_pants_cloth_21","type":9,"armorType":1,"stats":[0,0,65,46,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33585,"name":"Achromic Trousers of the Naaru","icon":"inv_pants_plate_09","type":9,"armorType":1,"stats":[0,0,65,46,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33586,"name":"Studious Wraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,41,34,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33587,"name":"Light-Blessed Bonds","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,41,34,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33588,"name":"Runed Spell-Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,35,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33589,"name":"Wristguards of Tranquil Thought","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,28,25,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33590,"name":"Cloak of Fiends","icon":"inv_misc_cape_20","type":4,"stats":[0,20,42,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33591,"name":"Shadowcaster's Drape","icon":"inv_misc_cape_19","type":4,"stats":[0,0,39,23,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33592,"name":"Cloak of Ancient Rituals","icon":"inv_misc_cape_16","type":4,"stats":[0,0,39,23,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33593,"name":"Slikk's Cloak of Placation","icon":"inv_misc_cape_18","type":4,"stats":[0,0,37,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,246,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33640,"name":"Fury","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":3,"stats":[0,0,20,0,0,20,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":132,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}]}, -{"id":33661,"name":"Vengeful Gladiator's Barrier","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":33662,"name":"Vengeful Gladiator's Bonecracker","icon":"inv_mace_41","type":13,"weaponType":4,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":33663,"name":"Vengeful Gladiator's Bonegrinder","icon":"inv_mace_43","type":13,"weaponType":4,"handType":4,"stats":[46,0,62,0,0,15,46,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":580,"weaponSpeed":3.6,"ilvl":146,"quality":4}, -{"id":33664,"name":"Vengeful Gladiator's Chain Armor","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,27,71,0,0,12,33,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Vengeful Gladiator's Pursuit","setId":586}, -{"id":33665,"name":"Vengeful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,33,56,0,0,0,19,20,0,0,0,0,0,0,0,0,21,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Vengeful Gladiator's Pursuit","setId":586}, -{"id":33666,"name":"Vengeful Gladiator's Chain Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,33,71,0,0,12,41,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Vengeful Gladiator's Pursuit","setId":586}, -{"id":33667,"name":"Vengeful Gladiator's Chain Leggings","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,34,68,0,0,12,41,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Vengeful Gladiator's Pursuit","setId":586}, -{"id":33668,"name":"Vengeful Gladiator's Chain Spaulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,35,50,0,0,0,16,15,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Vengeful Gladiator's Pursuit","setId":586}, -{"id":33669,"name":"Vengeful Gladiator's Cleaver","icon":"inv_axe_84","type":13,"weaponType":1,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":33670,"name":"Vengeful Gladiator's Decapitator","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[0,0,62,0,0,15,46,14,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":580,"weaponSpeed":3.6,"ilvl":146,"quality":4}, -{"id":33671,"name":"Vengeful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,32,68,21,0,9,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,494,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Sanctuary","setId":584}, -{"id":33672,"name":"Vengeful Gladiator's Dragonhide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,32,78,23,0,12,27,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,642,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Sanctuary","setId":584}, -{"id":33673,"name":"Vengeful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,37,82,30,0,12,13,12,0,0,0,0,0,0,0,0,29,0,0,0,0,0,691,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Sanctuary","setId":584}, -{"id":33674,"name":"Vengeful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,30,66,16,0,0,17,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Sanctuary","setId":584}, -{"id":33675,"name":"Vengeful Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,31,74,22,0,12,19,12,0,0,0,0,0,0,0,0,26,0,0,0,0,0,790,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Sanctuary","setId":584}, -{"id":33676,"name":"Vengeful Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,70,35,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Dreadgear","setId":568}, -{"id":33677,"name":"Vengeful Gladiator's Dreadweave Hood","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,83,36,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Dreadgear","setId":568}, -{"id":33678,"name":"Vengeful Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,93,50,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Dreadgear","setId":568}, -{"id":33679,"name":"Vengeful Gladiator's Dreadweave Mantle","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,51,34,0,16,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Dreadgear","setId":568}, -{"id":33680,"name":"Vengeful Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,80,43,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Dreadgear","setId":568}, -{"id":33681,"name":"Vengeful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":33682,"name":"Vengeful Gladiator's Felweave Amice","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,52,34,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Felshroud","setId":615}, -{"id":33683,"name":"Vengeful Gladiator's Felweave Cowl","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,67,40,0,0,22,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Felshroud","setId":615}, -{"id":33684,"name":"Vengeful Gladiator's Felweave Handguards","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,58,34,0,0,22,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Felshroud","setId":615}, -{"id":33685,"name":"Vengeful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,63,33,0,0,33,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Felshroud","setId":615}, -{"id":33686,"name":"Vengeful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,77,45,0,0,33,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Vengeful Gladiator's Felshroud","setId":615}, -{"id":33687,"name":"Vengeful Gladiator's Gavel","icon":"inv_mace_56","type":13,"weaponType":4,"handType":1,"stats":[0,0,45,0,0,17,0,0,0,0,0,0,0,0,309,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.6,"ilvl":146,"quality":4}, -{"id":33688,"name":"Vengeful Gladiator's Greatsword","icon":"inv_sword_108","type":13,"weaponType":9,"handType":4,"stats":[46,0,62,0,0,15,46,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":386,"weaponDamageMax":580,"weaponSpeed":3.6,"ilvl":146,"quality":4}, -{"id":33689,"name":"Vengeful Gladiator's Hacker","icon":"inv_axe_84","type":13,"weaponType":1,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":33690,"name":"Vengeful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,71,36,20,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,494,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Refuge","setId":685}, -{"id":33691,"name":"Vengeful Gladiator's Kodohide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,87,41,20,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,642,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Refuge","setId":685}, -{"id":33692,"name":"Vengeful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,93,46,36,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,691,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Refuge","setId":685}, -{"id":33693,"name":"Vengeful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,59,26,12,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Refuge","setId":685}, -{"id":33694,"name":"Vengeful Gladiator's Kodohide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,81,40,22,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,790,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Refuge","setId":685}, -{"id":33695,"name":"Vengeful Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,83,26,0,0,38,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Aegis","setId":582}, -{"id":33696,"name":"Vengeful Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,67,30,0,0,29,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Aegis","setId":582}, -{"id":33697,"name":"Vengeful Gladiator's Lamellar Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,84,37,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Aegis","setId":582}, -{"id":33698,"name":"Vengeful Gladiator's Lamellar Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,85,40,0,0,39,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Aegis","setId":582}, -{"id":33699,"name":"Vengeful Gladiator's Lamellar Shoulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,59,24,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Aegis","setId":582}, -{"id":33700,"name":"Vengeful Gladiator's Leather Gloves","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,494,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Vengeful Gladiator's Vestments","setId":577}, -{"id":33701,"name":"Vengeful Gladiator's Leather Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,31,78,0,0,12,21,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,642,20,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Vengeful Gladiator's Vestments","setId":577}, -{"id":33702,"name":"Vengeful Gladiator's Leather Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,35,78,0,0,12,25,12,0,0,0,0,0,0,0,0,40,0,0,0,0,0,691,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Vengeful Gladiator's Vestments","setId":577}, -{"id":33703,"name":"Vengeful Gladiator's Leather Spaulders","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,34,54,0,0,0,27,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Vengeful Gladiator's Vestments","setId":577}, -{"id":33704,"name":"Vengeful Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,31,75,0,0,12,17,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,790,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Vengeful Gladiator's Vestments","setId":577}, -{"id":33705,"name":"Vengeful Gladiator's Left Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":33706,"name":"Vengeful Gladiator's Linked Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,27,64,0,0,12,42,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Earthshaker","setId":578}, -{"id":33707,"name":"Vengeful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,33,51,0,0,0,32,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Earthshaker","setId":578}, -{"id":33708,"name":"Vengeful Gladiator's Linked Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,34,67,0,0,12,33,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Earthshaker","setId":578}, -{"id":33709,"name":"Vengeful Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,38,67,33,0,12,36,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Earthshaker","setId":578}, -{"id":33710,"name":"Vengeful Gladiator's Linked Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,25,52,0,0,18,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Earthshaker","setId":578}, -{"id":33711,"name":"Vengeful Gladiator's Mail Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,72,36,22,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Thunderfist","setId":580}, -{"id":33712,"name":"Vengeful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,60,33,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Thunderfist","setId":580}, -{"id":33713,"name":"Vengeful Gladiator's Mail Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,76,42,0,0,26,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Thunderfist","setId":580}, -{"id":33714,"name":"Vengeful Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,85,45,22,0,29,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Thunderfist","setId":580}, -{"id":33715,"name":"Vengeful Gladiator's Mail Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,25,16,0,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Thunderfist","setId":580}, -{"id":33716,"name":"Vengeful Gladiator's Staff","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,62,0,0,22,46,0,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":322,"weaponSpeed":2,"ilvl":146,"quality":4}, -{"id":33717,"name":"Vengeful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,63,30,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Investiture","setId":687}, -{"id":33718,"name":"Vengeful Gladiator's Mooncloth Hood","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,81,32,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Investiture","setId":687}, -{"id":33719,"name":"Vengeful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,84,37,36,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Investiture","setId":687}, -{"id":33720,"name":"Vengeful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,60,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,428,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Investiture","setId":687}, -{"id":33721,"name":"Vengeful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,76,27,22,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Investiture","setId":687}, -{"id":33722,"name":"Vengeful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,85,25,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Redemption","setId":690}, -{"id":33723,"name":"Vengeful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,66,32,0,0,28,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Redemption","setId":690}, -{"id":33724,"name":"Vengeful Gladiator's Ornamented Headcover","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,86,34,0,0,26,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Redemption","setId":690}, -{"id":33725,"name":"Vengeful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,90,41,0,0,40,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Redemption","setId":690}, -{"id":33726,"name":"Vengeful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,60,23,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Redemption","setId":690}, -{"id":33727,"name":"Vengeful Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,62,0,0,0,47,0,0,0,0,0,92,92,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":354,"weaponSpeed":2.2,"ilvl":146,"quality":4}, -{"id":33728,"name":"Vengeful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[39,0,67,0,0,12,39,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Vengeful Gladiator's Battlegear","setId":567}, -{"id":33729,"name":"Vengeful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[37,0,52,0,0,0,32,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Vengeful Gladiator's Battlegear","setId":567}, -{"id":33730,"name":"Vengeful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[39,0,61,0,0,12,35,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Vengeful Gladiator's Battlegear","setId":567}, -{"id":33731,"name":"Vengeful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[51,0,70,0,0,12,47,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Vengeful Gladiator's Battlegear","setId":567}, -{"id":33732,"name":"Vengeful Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[33,0,57,0,0,0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Vengeful Gladiator's Battlegear","setId":567}, -{"id":33733,"name":"Vengeful Gladiator's Pummeler","icon":"inv_mace_41","type":13,"weaponType":4,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":33734,"name":"Vengeful Gladiator's Quickblade","icon":"inv_sword_89","type":13,"weaponType":9,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":33735,"name":"Vengeful Gladiator's Redoubt","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":33736,"name":"Vengeful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":33737,"name":"Vengeful Gladiator's Right Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":1,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":33738,"name":"Vengeful Gladiator's Ringmail Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,74,36,20,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Wartide","setId":686}, -{"id":33739,"name":"Vengeful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,61,35,0,0,25,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Wartide","setId":686}, -{"id":33740,"name":"Vengeful Gladiator's Ringmail Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,82,38,0,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Wartide","setId":686}, -{"id":33741,"name":"Vengeful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,85,45,22,0,29,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Wartide","setId":686}, -{"id":33742,"name":"Vengeful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,58,25,18,0,20,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Vengeful Gladiator's Wartide","setId":686}, -{"id":33743,"name":"Vengeful Gladiator's Salvation","icon":"inv_mace_56","type":13,"weaponType":4,"handType":1,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,309,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.6,"ilvl":146,"quality":4}, -{"id":33744,"name":"Vengeful Gladiator's Satin Gloves","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,61,30,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Raiment","setId":581}, -{"id":33745,"name":"Vengeful Gladiator's Satin Hood","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,78,36,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Raiment","setId":581}, -{"id":33746,"name":"Vengeful Gladiator's Satin Leggings","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,91,49,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Raiment","setId":581}, -{"id":33747,"name":"Vengeful Gladiator's Satin Mantle","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,62,27,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Raiment","setId":581}, -{"id":33748,"name":"Vengeful Gladiator's Satin Robe","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,78,34,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vengeful Gladiator's Raiment","setId":581}, -{"id":33749,"name":"Vengeful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[42,0,81,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Vindication","setId":583}, -{"id":33750,"name":"Vengeful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Vindication","setId":583}, -{"id":33751,"name":"Vengeful Gladiator's Scaled Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[42,0,81,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Vindication","setId":583}, -{"id":33752,"name":"Vengeful Gladiator's Scaled Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[54,0,81,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Vindication","setId":583}, -{"id":33753,"name":"Vengeful Gladiator's Scaled Shoulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[32,0,60,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Vengeful Gladiator's Vindication","setId":583}, -{"id":33754,"name":"Vengeful Gladiator's Shanker","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":223,"weaponSpeed":1.8,"ilvl":146,"quality":4}, -{"id":33755,"name":"Vengeful Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":33756,"name":"Vengeful Gladiator's Shiv","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":188,"weaponSpeed":1.4,"ilvl":146,"quality":4}, -{"id":33757,"name":"Vengeful Gladiator's Silk Amice","icon":"inv_shoulder_64","type":3,"armorType":1,"stats":[0,0,52,34,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Vengeful Gladiator's Regalia","setId":579}, -{"id":33758,"name":"Vengeful Gladiator's Silk Cowl","icon":"inv_helmet_101","type":1,"armorType":1,"stats":[0,0,70,40,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Vengeful Gladiator's Regalia","setId":579}, -{"id":33759,"name":"Vengeful Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,58,34,0,0,22,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Vengeful Gladiator's Regalia","setId":579}, -{"id":33760,"name":"Vengeful Gladiator's Silk Raiment","icon":"inv_chest_cloth_67","type":5,"armorType":1,"stats":[0,0,63,33,0,0,33,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Vengeful Gladiator's Regalia","setId":579}, -{"id":33761,"name":"Vengeful Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,82,45,0,0,33,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Vengeful Gladiator's Regalia","setId":579}, -{"id":33762,"name":"Vengeful Gladiator's Slicer","icon":"inv_sword_89","type":13,"weaponType":9,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":322,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":33763,"name":"Vengeful Gladiator's Spellblade","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":1,"stats":[0,0,45,0,0,17,0,0,0,0,0,0,0,0,309,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.6,"ilvl":146,"quality":4}, -{"id":33764,"name":"Vengeful Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,29,15,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":468,"weaponSpeed":1.9,"ilvl":146,"quality":4}, -{"id":33765,"name":"Vengeful Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,24,0,0,0,17,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":306,"weaponSpeed":1.9,"ilvl":146,"quality":4}, -{"id":33766,"name":"Vengeful Gladiator's War Staff","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,98,0,0,0,46,0,0,0,0,0,0,0,310,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":322,"weaponSpeed":2,"ilvl":146,"quality":4}, -{"id":33767,"name":"Vengeful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,59,37,10,0,12,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,494,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Wildhide","setId":585}, -{"id":33768,"name":"Vengeful Gladiator's Wyrmhide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,77,45,16,0,17,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,642,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Wildhide","setId":585}, -{"id":33769,"name":"Vengeful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,83,52,22,0,22,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,691,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Wildhide","setId":585}, -{"id":33770,"name":"Vengeful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,55,31,8,0,8,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,592,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Wildhide","setId":585}, -{"id":33771,"name":"Vengeful Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,73,45,12,0,13,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,790,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Vengeful Gladiator's Wildhide","setId":585}, -{"id":33791,"name":"Heavy Copper Longsword","icon":"inv_sword_25","type":13,"weaponType":9,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.5,"ilvl":11,"quality":2,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":43549}},{"crafted":{"profession":2,"spellId":43549}}]}, -{"id":33801,"name":"Vengeful Gladiator's Mutilator","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":146,"quality":4}, -{"id":33805,"name":"Shadowhunter's Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,33,48,0,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33808,"name":"The Horseman's Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[40,0,46,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":33810,"name":"Amani Mask of Death","icon":"inv_helmet_114","type":1,"armorType":4,"stats":[46,0,51,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33811,"name":"Vindicator's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[35,0,49,0,0,0,35,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4,10]}, -{"id":33812,"name":"Vindicator's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[35,0,49,0,0,0,35,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4,10]}, -{"id":33813,"name":"Vindicator's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,36,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[9,4,10]}, -{"id":33820,"name":"Weather-Beaten Fishing Hat","icon":"inv_helmet_31","type":1,"armorType":1,"stats":[0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":3}, -{"id":33828,"name":"Tome of Diabolic Remedy","icon":"inv_offhand_stratholme_a_01","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33829,"name":"Hex Shrunken Head","icon":"inv_misc_head_troll_01","type":12,"stats":[0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":33830,"name":"Ancient Aqir Artifact","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33831,"name":"Berserker's Call","icon":"racial_troll_berserk","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}]}, -{"id":33832,"name":"Battlemaster's Determination","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33841,"name":"Vengeful Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,25,17,11,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33842,"name":"Vengeful Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,25,17,11,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33843,"name":"Vengeful Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,25,17,11,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33853,"name":"Vindicator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,40,28,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33855,"name":"Tarnished Silver Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1}, -{"id":33862,"name":"Brewfest Regalia","icon":"inv_chest_cloth_69","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33863,"name":"Brewfest Dress","icon":"inv_chest_cloth_70","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33864,"name":"Brown Brewfest Hat","icon":"inv_helmet_118","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33868,"name":"Brewfest Boots","icon":"inv_boots_cloth_17","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33876,"name":"Vindicator's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,39,0,0,0,11,12,0,0,0,0,0,0,0,0,13,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[2,7]}, -{"id":33877,"name":"Vindicator's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,33,62,0,0,0,18,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33878,"name":"Vindicator's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,33,62,0,0,0,18,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33879,"name":"Vindicator's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,30,64,20,0,0,21,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33880,"name":"Vindicator's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,30,64,20,0,0,21,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33881,"name":"Vindicator's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,22,47,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[6,1]}, -{"id":33882,"name":"Vindicator's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33883,"name":"Vindicator's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33884,"name":"Vindicator's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33885,"name":"Vindicator's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33886,"name":"Vindicator's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33887,"name":"Vindicator's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,47,18,18,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[6,1]}, -{"id":33888,"name":"Vindicator's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33889,"name":"Vindicator's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,23,0,0,20,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[9,4]}, -{"id":33890,"name":"Vindicator's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33891,"name":"Vindicator's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33892,"name":"Vindicator's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33893,"name":"Vindicator's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,25,39,0,0,0,12,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[6,1]}, -{"id":33894,"name":"Vindicator's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,25,33,0,0,0,28,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[2,7]}, -{"id":33895,"name":"Vindicator's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,34,49,0,0,0,44,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33896,"name":"Vindicator's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,33,49,0,0,0,45,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33897,"name":"Vindicator's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,41,23,0,0,21,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[2,7]}, -{"id":33898,"name":"Vindicator's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33899,"name":"Vindicator's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33900,"name":"Vindicator's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33901,"name":"Vindicator's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33902,"name":"Vindicator's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33903,"name":"Vindicator's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33904,"name":"Vindicator's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,23,0,0,20,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[9,4]}, -{"id":33905,"name":"Vindicator's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33906,"name":"Vindicator's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,41,23,0,0,21,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[2,7]}, -{"id":33907,"name":"Vindicator's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33908,"name":"Vindicator's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[2,7]}, -{"id":33909,"name":"Vindicator's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33910,"name":"Vindicator's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,43,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[9,4]}, -{"id":33911,"name":"Vindicator's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[9,4]}, -{"id":33912,"name":"Vindicator's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,66,30,0,0,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33913,"name":"Vindicator's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,47,23,0,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33914,"name":"Vindicator's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,66,30,0,0,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[5,3,8]}, -{"id":33915,"name":"Vindicator's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33916,"name":"Vindicator's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"classAllowlist":[6,1]}, -{"id":33917,"name":"Vindicator's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,46,20,18,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"classAllowlist":[6,1]}, -{"id":33918,"name":"Vindicator's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,48,23,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33919,"name":"Vindicator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,34,0,0,0,26,8,0,0,0,0,44,44,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33920,"name":"Vindicator's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,21,0,0,21,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33921,"name":"Vindicator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,49,26,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33922,"name":"Vindicator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,43,23,16,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33923,"name":"Vindicator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,0,0,0,22,0,0,0,0,0,50,50,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":33936,"name":"Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33937,"name":"Merciless Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":33938,"name":"Vengeful Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[17,0,25,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":33939,"name":"Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,13,19,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33940,"name":"Merciless Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33941,"name":"Vengeful Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,17,25,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33942,"name":"Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33943,"name":"Merciless Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33944,"name":"Vengeful Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,25,17,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33945,"name":"Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,13,19,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33946,"name":"Merciless Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33947,"name":"Vengeful Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,17,25,0,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":33948,"name":"Gladiator's Libram of Vengeance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[13,0,19,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":33949,"name":"Merciless Gladiator's Libram of Vengeance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":33950,"name":"Vengeful Gladiator's Libram of Vengeance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[17,0,25,0,0,0,0,11,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":33951,"name":"Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,19,13,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33952,"name":"Merciless Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33953,"name":"Vengeful Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,25,17,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":33957,"name":"Witches Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":33958,"name":"The Horseman's Signet Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":33959,"name":"Ring of Ghoulish Delight","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":33964,"name":"Helm of the Stormcaller","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,68,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4}, -{"id":33965,"name":"Hauberk of the Furious Elements","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,68,46,0,0,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33966,"name":"Brewfest Slippers","icon":"inv_boots_cloth_18","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33967,"name":"Green Brewfest Hat","icon":"inv_helmet_117","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33968,"name":"Blue Brewfest Hat","icon":"inv_helmet_120","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33969,"name":"Purple Brewfest Hat","icon":"inv_helmet_119","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Brewfest Garb","setId":762}, -{"id":33970,"name":"Pauldrons of the Furious Elements","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,48,34,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33971,"name":"Elunite Imbued Leggings","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,68,39,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}]}, -{"id":33972,"name":"Mask of Primal Power","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,69,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33973,"name":"Pauldrons of Tribal Fury","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,42,33,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":33974,"name":"Grasp of the Moonkin","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,0,55,34,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":34008,"name":"Blix's Eyesight Enhancing Romance Goggles","icon":"inv_gizmo_newgoggles","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"unique":true,"factionRestriction":2}, -{"id":34009,"name":"Hammer of Judgement","icon":"inv_mace_57","type":13,"weaponType":4,"handType":1,"stats":[0,0,50,0,0,22,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.8,"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":34010,"name":"Pepe's Shroud of Pacification","icon":"inv_misc_cape_16","type":4,"stats":[0,0,45,0,0,25,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}]}, -{"id":34011,"name":"Illidari Runeshield","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,64,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":34012,"name":"Shroud of the Final Stand","icon":"inv_misc_cape_16","type":4,"stats":[0,0,43,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}]}, -{"id":34014,"name":"Vengeful Gladiator's Waraxe","icon":"inv_axe_61","type":13,"weaponType":1,"handType":4,"stats":[0,0,62,0,0,15,46,14,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[2]}, -{"id":34015,"name":"Vengeful Gladiator's Chopper","icon":"inv_axe_84","type":13,"weaponType":1,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":34016,"name":"Vengeful Gladiator's Left Render","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":2.6,"ilvl":146,"quality":4}, -{"id":34029,"name":"Tiny Voodoo Mask","icon":"inv_helm_mask_zulgurub_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}]}, -{"id":34033,"name":"Vengeful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,34,24,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":4}, -{"id":34049,"name":"Battlemaster's Audacity","icon":"spell_nature_focusedmind","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":34050,"name":"Battlemaster's Perseverance","icon":"spell_holy_heroism","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":34059,"name":"Vengeful Gladiator's Baton of Light","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,29,15,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":468,"weaponSpeed":1.9,"ilvl":146,"quality":4}, -{"id":34066,"name":"Vengeful Gladiator's Piercing Touch","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":468,"weaponSpeed":1.9,"ilvl":146,"quality":4}, -{"id":34073,"name":"The Horseman's Signet Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":34074,"name":"Witches Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":34075,"name":"Ring of Ghoulish Delight","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":34085,"name":"Red Winter Clothes","icon":"inv_chest_christmas02","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"setName":"Winter Garb","setId":761,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":44958}},{"crafted":{"profession":11,"spellId":44958}}]}, -{"id":34086,"name":"Winter Boots","icon":"inv_boots_christmas01","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"setName":"Winter Garb","setId":761,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":44953}},{"crafted":{"profession":8,"spellId":44953}}]}, -{"id":34087,"name":"Green Winter Clothes","icon":"inv_chest_christmas01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"setName":"Winter Garb","setId":761,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":44950}},{"crafted":{"profession":11,"spellId":44950}}]}, -{"id":34107,"name":"Tattered Shoulderpads","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3}, -{"id":34138,"name":"Enchanted White Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,24,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":186,"weaponDamageMax":347,"weaponSpeed":1.3,"ilvl":175,"quality":3}, -{"id":34139,"name":"Enchanted Crimson Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,26,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":201,"weaponDamageMax":374,"weaponSpeed":1.4,"ilvl":175,"quality":3}, -{"id":34140,"name":"Dark Iron Tankard","icon":"inv_drink_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":34144,"name":"Branch of Destruction","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,26,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.4,"ilvl":175,"quality":4}, -{"id":34145,"name":"Rod of Devastation","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,26,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":1.4,"ilvl":190,"quality":4}, -{"id":34147,"name":"Silverstave","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,24,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":1.3,"ilvl":175,"quality":4}, -{"id":34148,"name":"Purified Silverstave","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,24,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":1.3,"ilvl":190,"quality":4}, -{"id":34162,"name":"Battlemaster's Depravity","icon":"ability_rogue_sinistercalling","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":34163,"name":"Battlemaster's Cruelty","icon":"ability_warrior_focusedrage","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":34164,"name":"Dragonscale-Encrusted Longblade","icon":"inv_sword_115","type":13,"weaponType":9,"handType":2,"stats":[0,0,36,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34165,"name":"Fang of Kalecgos","icon":"inv_weapon_shortblade_74","type":13,"weaponType":2,"handType":2,"stats":[0,25,36,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34166,"name":"Band of Lucent Beams","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,46,33,20,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34167,"name":"Legplates of the Holy Juggernaut","icon":"inv_pants_plate_22","type":9,"armorType":4,"stats":[0,0,83,45,46,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34168,"name":"Starstalker Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,60,64,0,0,20,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34169,"name":"Breeches of Natural Aggression","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,78,61,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34170,"name":"Pantaloons of Calming Strife","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,62,61,42,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}]}, -{"id":34176,"name":"Reign of Misery","icon":"inv_mace_73","type":13,"weaponType":4,"handType":1,"stats":[0,0,46,0,0,0,0,30,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":225,"weaponSpeed":1.6,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34177,"name":"Clutch of Demise","icon":"inv_jewelry_necklace_43","type":2,"stats":[0,25,61,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34178,"name":"Collar of the Pit Lord","icon":"inv_jewelry_necklace_47","type":2,"stats":[0,0,63,0,0,0,0,0,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34179,"name":"Heart of the Pit","icon":"inv_offhand_sunwell_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,48,33,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34180,"name":"Felfury Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[61,0,48,0,0,0,34,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34181,"name":"Leggings of Calamity","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,82,61,0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}]}, -{"id":34182,"name":"Grand Magister's Staff of Torrents","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,101,0,0,50,49,0,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":359,"weaponDamageMax":539,"weaponSpeed":3.2,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34183,"name":"Shivering Felspine","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,52,90,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":393,"weaponDamageMax":590,"weaponSpeed":3.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34184,"name":"Brooch of the Highborne","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,50,32,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34185,"name":"Sword Breaker's Bulwark","icon":"inv_shield_53","type":13,"weaponType":7,"handType":3,"stats":[21,0,49,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,5101,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34186,"name":"Chain Links of the Tumultuous Storm","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,82,61,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34188,"name":"Leggings of the Immortal Night","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,62,82,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34189,"name":"Band of Ruinous Delight","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,30,0,0,0,32,23,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34190,"name":"Crimson Paragon's Cover","icon":"inv_misc_cape_18","type":4,"stats":[0,0,61,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34192,"name":"Pauldrons of Perseverance","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[30,0,60,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34193,"name":"Spaulders of the Thalassian Savior","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,49,45,36,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34194,"name":"Mantle of the Golden Forest","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,45,75,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34195,"name":"Shoulderpads of Vehemence","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,45,71,0,0,26,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34196,"name":"Golden Bow of Quel'Thalas","icon":"inv_weapon_bow_38","type":14,"rangedWeaponType":1,"stats":[0,18,26,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":294,"weaponDamageMax":547,"weaponSpeed":3,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34197,"name":"Shiv of Exsanguination","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,25,32,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":1.8,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34198,"name":"Stanchion of Primal Instinct","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,75,90,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":336,"weaponDamageMax":505,"weaponSpeed":3,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34199,"name":"Archon's Gavel","icon":"inv_mace_71","type":13,"weaponType":4,"handType":1,"stats":[0,0,46,0,26,0,0,0,0,0,0,0,0,0,333,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":1.8,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34202,"name":"Shawl of Wonderment","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,54,45,22,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34203,"name":"Grip of Mannoroth","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,20,0,31,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34204,"name":"Amulet of Unfettered Magics","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,0,37,33,0,15,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34205,"name":"Shroud of Redeemed Souls","icon":"inv_misc_cape_06","type":4,"stats":[0,0,47,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34206,"name":"Book of Highborne Hymns","icon":"inv_offhand_sunwell_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,32,22,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34208,"name":"Equilibrium Epaulets","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,56,45,30,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34209,"name":"Spaulders of Reclamation","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,50,45,30,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34210,"name":"Amice of the Convoker","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,59,45,0,0,22,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":34211,"name":"Harness of Carnal Instinct","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,75,107,22,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34212,"name":"Sunglow Vest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34213,"name":"Ring of Hardened Resolve","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,48,0,0,0,0,0,22,32,28,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34214,"name":"Muramasa","icon":"inv_sword_114","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,17,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34215,"name":"Warharness of Reckless Fury","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[61,0,67,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34216,"name":"Heroic Judicator's Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[61,0,78,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34227,"name":"Deadman's Hand","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":4,"unique":true,"expansion":1}, -{"id":34228,"name":"Vicious Hawkstrider Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,52,82,0,0,0,26,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34229,"name":"Garments of Serene Shores","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,82,61,40,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34230,"name":"Ring of Omnipotence","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,32,34,0,0,22,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34231,"name":"Aegis of Angelic Fortune","icon":"inv_shield_52","type":13,"weaponType":7,"handType":3,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34232,"name":"Fel Conquerer Raiments","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,91,61,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34233,"name":"Robes of Faltered Light","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,74,61,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34234,"name":"Shadowed Gauntlets of Paroxysm","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,41,71,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34240,"name":"Gauntlets of the Soothed Soul","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,57,45,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34241,"name":"Cloak of Unforgivable Sin","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,26,59,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34242,"name":"Tattered Cape of Antonidas","icon":"inv_misc_cape_20","type":4,"stats":[0,0,48,36,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34243,"name":"Helm of Burning Righteousness","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,87,63,36,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34244,"name":"Duplicitous Guise","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,63,91,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34245,"name":"Cover of Ursol the Wise","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,83,64,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34247,"name":"Apolyon, the Soul-Render","icon":"inv_sword_116","type":13,"weaponType":9,"handType":4,"stats":[0,0,75,0,0,0,42,32,0,0,0,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":404,"weaponDamageMax":607,"weaponSpeed":3.4,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34249,"name":"Hula Girl Doll","icon":"inv_misc_toy_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1}, -{"id":34329,"name":"Crux of the Apocalypse","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,18,43,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":1.8,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34331,"name":"Hand of the Deceiver","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":1,"stats":[0,0,28,0,0,0,28,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":2.6,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34332,"name":"Cowl of Gul'dan","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,87,63,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34333,"name":"Coif of Alleria","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,63,62,0,0,0,58,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34334,"name":"Thori'dal, the Stars' Fury","icon":"inv_weapon_bow_39","type":14,"rangedWeaponType":1,"stats":[0,17,26,0,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":281,"weaponDamageMax":522,"weaponSpeed":2.7,"ilvl":164,"quality":5,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34335,"name":"Hammer of Sanctification","icon":"inv_mace_72","type":13,"weaponType":4,"handType":1,"stats":[0,0,42,0,22,0,0,23,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":268,"weaponSpeed":1.8,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34336,"name":"Sunflare","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":1,"stats":[0,0,35,0,0,0,30,23,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":268,"weaponSpeed":1.8,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34337,"name":"Golden Staff of the Sin'dorei","icon":"inv_staff_73","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,57,0,0,32,0,0,0,0,0,0,367,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":380,"weaponDamageMax":571,"weaponSpeed":3.2,"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34339,"name":"Cowl of Light's Purity","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34340,"name":"Dark Conjuror's Collar","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,0,0,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34341,"name":"Borderland Paingrips","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[47,0,48,0,0,0,39,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,0,0,0,0],"gemSockets":[2,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34342,"name":"Handguards of the Dawn","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,61,40,36,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34343,"name":"Thalassian Ranger Gauntlets","icon":"inv_gauntlets_51","type":7,"armorType":3,"stats":[0,40,63,0,0,0,47,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34344,"name":"Handguards of Defiled Worlds","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,61,40,0,27,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34345,"name":"Crown of Anasterian","icon":"inv_helmet_92","type":1,"armorType":4,"stats":[61,0,67,0,0,0,40,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}]}, -{"id":34346,"name":"Mounting Vengeance","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":3,"stats":[0,0,22,0,0,0,20,0,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34347,"name":"Wand of the Demonsoul","icon":"inv_wand_25","type":14,"rangedWeaponType":6,"stats":[0,0,18,19,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":1.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34348,"name":"Wand of Cleansing Light","icon":"inv_wand_24","type":14,"rangedWeaponType":6,"stats":[0,0,12,19,18,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":1.5,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34349,"name":"Blade of Life's Inevitability","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,0,19,0,0,0,0,16,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":2,"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34350,"name":"Gauntlets of the Ancient Shadowmoon","icon":"inv_gauntlets_41","type":7,"armorType":3,"stats":[0,0,59,37,0,0,28,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34351,"name":"Tranquil Majesty Wraps","icon":"inv_gauntlets_48","type":7,"armorType":2,"stats":[0,0,54,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":34352,"name":"Borderland Fortress Grips","icon":"inv_gauntlets_68","type":7,"armorType":4,"stats":[29,0,66,0,0,0,0,0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}]}, -{"id":34353,"name":"Quad Deathblow X44 Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,61,94,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1,6],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46116}},{"crafted":{"profession":4,"spellId":46116}}]}, -{"id":34354,"name":"Mayhem Projection Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[62,0,47,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46114}},{"crafted":{"profession":4,"spellId":46114}}]}, -{"id":34355,"name":"Lightning Etched Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,47,61,0,25,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46112}},{"crafted":{"profession":4,"spellId":46112}}]}, -{"id":34356,"name":"Surestrike Goggles v3.0","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,62,47,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46113}},{"crafted":{"profession":4,"spellId":46113}}]}, -{"id":34357,"name":"Hard Khorium Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[34,0,86,0,0,27,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46115}},{"crafted":{"profession":4,"spellId":46115}}]}, -{"id":34358,"name":"Hard Khorium Choker","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,42,0,0,0,22,29,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46127}},{"crafted":{"profession":7,"spellId":46127}}]}, -{"id":34359,"name":"Pendant of Sunfire","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,42,29,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46125}},{"crafted":{"profession":7,"spellId":46125}}]}, -{"id":34360,"name":"Amulet of Flowing Life","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,42,29,26,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46126}},{"crafted":{"profession":7,"spellId":46126}}]}, -{"id":34361,"name":"Hard Khorium Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,30,64,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46124}},{"crafted":{"profession":7,"spellId":46124}}]}, -{"id":34362,"name":"Loop of Forged Power","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,52,29,0,19,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46122}},{"crafted":{"profession":7,"spellId":46122}}]}, -{"id":34363,"name":"Ring of Flowing Life","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,52,29,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46123}},{"crafted":{"profession":7,"spellId":46123}}]}, -{"id":34364,"name":"Sunfire Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,65,61,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46130}},{"crafted":{"profession":11,"spellId":46130}}]}, -{"id":34365,"name":"Robe of Eternal Light","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,65,61,40,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46131}},{"crafted":{"profession":11,"spellId":46131}}]}, -{"id":34366,"name":"Sunfire Handwraps","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,59,45,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46128}},{"crafted":{"profession":11,"spellId":46128}}]}, -{"id":34367,"name":"Hands of Eternal Light","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,59,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46129}},{"crafted":{"profession":11,"spellId":46129}}]}, -{"id":34369,"name":"Carapace of Sun and Shadow","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,60,81,0,0,30,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46138}},{"crafted":{"profession":8,"spellId":46138}}]}, -{"id":34370,"name":"Gloves of Immortal Dusk","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,45,59,0,0,0,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46134}},{"crafted":{"profession":8,"spellId":46134}}]}, -{"id":34371,"name":"Leather Chestguard of the Sun","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,82,61,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46136}},{"crafted":{"profession":8,"spellId":46136}}]}, -{"id":34372,"name":"Leather Gauntlets of the Sun","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,48,38,30,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46132}},{"crafted":{"profession":8,"spellId":46132}}]}, -{"id":34373,"name":"Embrace of the Phoenix","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,52,66,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46137}},{"crafted":{"profession":8,"spellId":46137}}]}, -{"id":34374,"name":"Fletcher's Gloves of the Phoenix","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,38,53,0,0,0,30,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46133}},{"crafted":{"profession":8,"spellId":46133}}]}, -{"id":34375,"name":"Sun-Drenched Scale Chestguard","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,82,61,26,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46139}},{"crafted":{"profession":8,"spellId":46139}}]}, -{"id":34376,"name":"Sun-Drenched Scale Gloves","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,74,38,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46135}},{"crafted":{"profession":8,"spellId":46135}}]}, -{"id":34377,"name":"Hard Khorium Battleplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[61,0,55,0,0,0,41,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46144}},{"crafted":{"profession":2,"spellId":46144}}]}, -{"id":34378,"name":"Hard Khorium Battlefists","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[45,0,45,0,0,23,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46141}},{"crafted":{"profession":2,"spellId":46141}}]}, -{"id":34379,"name":"Sunblessed Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,87,52,36,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46142}},{"crafted":{"profession":2,"spellId":46142}}]}, -{"id":34380,"name":"Sunblessed Gauntlets","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,60,38,20,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46140}},{"crafted":{"profession":2,"spellId":46140}}]}, -{"id":34381,"name":"Felstrength Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[40,0,78,0,0,0,0,0,34,55,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34382,"name":"Judicator's Legguards","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[50,0,78,0,0,0,0,0,0,56,22,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34383,"name":"Kilt of Spiritual Reconstruction","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,82,61,36,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34384,"name":"Breeches of Natural Splendor","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,78,61,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34385,"name":"Leggings of the Immortal Beast","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,56,101,25,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34386,"name":"Pantaloons of Growing Strife","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,62,61,25,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34388,"name":"Pauldrons of Berserking","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[45,0,48,0,0,0,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34389,"name":"Spaulders of the Thalassian Defender","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[44,0,60,0,0,0,0,0,0,27,34,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34390,"name":"Erupting Epaulets","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,56,45,0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34391,"name":"Spaulders of Devastation","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,54,45,26,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34392,"name":"Demontooth Shoulderpads","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,42,82,0,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34393,"name":"Shoulderpads of Knowledge's Pursuit","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,45,22,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34394,"name":"Breastplate of Agony's Aversion","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[40,0,78,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34395,"name":"Noble Judicator's Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,98,52,26,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34396,"name":"Garments of Crashing Shores","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,82,61,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34397,"name":"Bladed Chaos Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,60,81,0,0,0,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34398,"name":"Utopian Tunic of Elune","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34399,"name":"Robes of Ghostly Hatred","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,74,61,32,0,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34400,"name":"Crown of Dath'Remar","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[36,0,91,0,0,0,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34401,"name":"Helm of Uther's Resolve","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[42,0,91,0,0,0,0,0,0,55,25,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34402,"name":"Shroud of Chieftain Ner'zhul","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34403,"name":"Cover of Ursoc the Mighty","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,80,61,30,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34404,"name":"Mask of the Fury Hunter","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,50,100,20,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34405,"name":"Helm of Arcane Purity","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,38,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34406,"name":"Gloves of Tyri's Power","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,61,40,27,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":164,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34407,"name":"Tranquil Moonlight Wraps","icon":"inv_gauntlets_51","type":7,"armorType":2,"stats":[0,0,54,43,20,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34408,"name":"Gloves of the Forest Drifter","icon":"inv_gauntlets_51","type":7,"armorType":2,"stats":[0,42,72,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34409,"name":"Gauntlets of the Ancient Frostwolf","icon":"inv_gauntlets_52","type":7,"armorType":3,"stats":[0,0,59,37,26,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"sources":[{"soldBy":{"npcId":25977,"npcName":"Yrma","zoneId":4080}}]}, -{"id":34415,"name":"Crystaline Shard Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,11,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3}, -{"id":34416,"name":"Gloves of the Dune","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"factionRestriction":1}, -{"id":34417,"name":"Marauder's Handwraps","icon":"inv_gauntlets_09","type":7,"armorType":2,"stats":[0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"factionRestriction":1}, -{"id":34418,"name":"Scrying Wand","icon":"inv_wand_08","type":14,"rangedWeaponType":6,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":1.8,"ilvl":50,"quality":3,"sources":[{"quest":{"id":2964,"name":"A Future Task"}}]}, -{"id":34419,"name":"Thorium Flight Blade","icon":"inv_throwingaxe_06","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":131,"weaponSpeed":3,"ilvl":50,"quality":3,"sources":[{"quest":{"id":2964,"name":"A Future Task"}}]}, -{"id":34421,"name":"Cave Crawler's Mail Treads","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,11,14,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"factionRestriction":2}, -{"id":34422,"name":"Tempered Thorium Boots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[12,0,11,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"factionRestriction":2}, -{"id":34423,"name":"Strength of the High Chief","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":34424,"name":"Power of the High Chief","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":34427,"name":"Blackened Naaru Sliver","icon":"inv_jewelry_talisman_16","type":12,"stats":[0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34428,"name":"Steely Naaru Sliver","icon":"inv_jewelry_talisman_18","type":12,"stats":[0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34429,"name":"Shifting Naaru Sliver","icon":"inv_jewelry_talisman_15","type":12,"stats":[0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34430,"name":"Glimmering Naaru Sliver","icon":"inv_jewelry_talisman_17","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":34431,"name":"Lightbringer Bands","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[33,0,15,0,0,0,30,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34432,"name":"Lightbringer Bracers","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,37,33,26,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34433,"name":"Lightbringer Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[21,0,49,0,0,0,0,0,0,32,15,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34434,"name":"Bracers of Absolution","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,39,33,21,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34435,"name":"Cuffs of Absolution","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,39,33,20,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34436,"name":"Bracers of the Malefic","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,38,33,0,0,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34437,"name":"Skyshatter Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,33,0,0,28,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34438,"name":"Skyshatter Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,33,28,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34439,"name":"Skyshatter Wristguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,40,33,0,0,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34441,"name":"Onslaught Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[33,0,0,0,0,16,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34442,"name":"Onslaught Wristguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[19,0,49,0,0,0,0,0,0,29,18,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34443,"name":"Gronnstalker's Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,32,30,0,0,0,30,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34444,"name":"Thunderheart Wristguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,29,61,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34445,"name":"Thunderheart Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,33,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34446,"name":"Thunderheart Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,33,0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34447,"name":"Bracers of the Tempest","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,33,33,0,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34470,"name":"Timbal's Focusing Crystal","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}]}, -{"id":34471,"name":"Vial of the Sunwell","icon":"inv_potion_106","type":12,"stats":[0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}]}, -{"id":34472,"name":"Shard of Contempt","icon":"inv_misc_rune_04","type":12,"stats":[0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}]}, -{"id":34473,"name":"Commendation of Kael'thas","icon":"inv_misc_idol_05","type":12,"stats":[0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}]}, -{"id":34484,"name":"Old Ironjaw","icon":"inv_misc_fish_31","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":34485,"name":"Lightbringer Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[44,0,24,0,0,0,42,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34486,"name":"Old Crafty","icon":"inv_misc_fish_35","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":34487,"name":"Lightbringer Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,48,55,43,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34488,"name":"Lightbringer Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[30,0,64,0,0,0,0,0,0,42,20,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34527,"name":"Belt of Absolution","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,48,43,40,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34528,"name":"Cord of Absolution","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,51,43,0,14,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34529,"name":"Vengeful Gladiator's Longbow","icon":"inv_weapon_bow_20","type":14,"rangedWeaponType":1,"stats":[0,0,24,0,0,0,16,0,0,0,0,0,0,34,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3,"ilvl":146,"quality":4}, -{"id":34530,"name":"Vengeful Gladiator's Rifle","icon":"inv_weapon_rifle_15","type":14,"rangedWeaponType":3,"stats":[0,0,24,0,0,0,16,0,0,0,0,0,0,34,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3,"ilvl":146,"quality":4}, -{"id":34540,"name":"Vengeful Gladiator's Battle Staff","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,98,0,0,28,46,0,0,0,0,0,0,0,310,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":322,"weaponSpeed":2,"ilvl":146,"quality":4}, -{"id":34541,"name":"Belt of the Malefic","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,51,43,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34542,"name":"Skyshatter Cord","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,48,43,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34543,"name":"Skyshatter Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,50,43,0,0,36,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34545,"name":"Skyshatter Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,49,43,0,0,0,0,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34546,"name":"Onslaught Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[43,0,0,0,0,0,40,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34547,"name":"Onslaught Waistguard","icon":"inv_belt_33","type":8,"armorType":4,"stats":[28,0,64,0,0,0,0,0,27,38,37,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34549,"name":"Gronnstalker's Belt","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,52,35,0,0,24,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34554,"name":"Thunderheart Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,50,43,43,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34555,"name":"Thunderheart Cord","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,50,43,0,0,29,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34556,"name":"Thunderheart Waistguard","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,40,69,20,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34557,"name":"Belt of the Tempest","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,48,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34559,"name":"Lightbringer Treads","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,50,43,22,0,30,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34560,"name":"Lightbringer Stompers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[30,0,58,0,0,0,0,0,0,32,21,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34561,"name":"Lightbringer Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[42,0,22,0,0,0,40,27,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34562,"name":"Boots of Absolution","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,54,43,37,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34563,"name":"Treads of Absolution","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,52,43,22,0,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34564,"name":"Boots of the Malefic","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,47,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34565,"name":"Skyshatter Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,50,43,36,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34566,"name":"Skyshatter Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,50,43,0,0,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34567,"name":"Skyshatter Greaves","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,52,36,0,0,0,20,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34568,"name":"Onslaught Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[25,0,64,0,0,0,0,0,26,34,20,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34569,"name":"Onslaught Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[44,0,0,0,0,25,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34570,"name":"Gronnstalker's Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,52,39,0,0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34571,"name":"Thunderheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,53,43,38,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34572,"name":"Thunderheart Footwraps","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,50,43,0,0,28,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34573,"name":"Thunderheart Treads","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,35,80,18,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34574,"name":"Boots of the Tempest","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,48,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"sources":[{"soldBy":{"npcId":25976,"npcName":"Theremis","zoneId":4080}}]}, -{"id":34601,"name":"Shoulderplates of Everlasting Pain","icon":"inv_shoulder_27","type":3,"armorType":4,"stats":[30,0,33,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}]}, -{"id":34602,"name":"Eversong Cuffs","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}]}, -{"id":34603,"name":"Distracting Blades","icon":"inv_throwingknife_01","type":14,"rangedWeaponType":5,"stats":[0,14,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":274,"weaponSpeed":2,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}]}, -{"id":34604,"name":"Jaded Crystal Dagger","icon":"inv_weapon_shortblade_54","type":13,"weaponType":2,"handType":1,"stats":[0,0,38,0,0,0,0,18,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":205,"weaponSpeed":1.8,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}]}, -{"id":34605,"name":"Breastplate of Fierce Survival","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,53,40,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}]}, -{"id":34606,"name":"Edge of Oppression","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,25,0,0,0,0,17,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":148,"weaponSpeed":1.3,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}]}, -{"id":34607,"name":"Fel-Tinged Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,36,30,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}]}, -{"id":34608,"name":"Rod of the Blazing Light","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,41,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":291,"weaponDamageMax":438,"weaponSpeed":3.2,"ilvl":115,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}]}, -{"id":34609,"name":"Quickening Blade of the Prince","icon":"inv_sword_64","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":180,"weaponSpeed":1.5,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34610,"name":"Scarlet Sin'dorei Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,48,44,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34611,"name":"Cudgel of Consecration","icon":"inv_mace_31","type":13,"weaponType":4,"handType":1,"stats":[0,0,34,0,0,18,0,0,0,0,0,0,0,0,254,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":1.9,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34612,"name":"Greaves of the Penitent Knight","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,44,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34613,"name":"Shoulderpads of the Silvermoon Retainer","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,35,59,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34614,"name":"Tunic of the Ranger Lord","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,45,51,0,0,0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34615,"name":"Netherforce Chestplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,42,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34616,"name":"Breeching Comet","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[0,18,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":312,"weaponSpeed":2.6,"ilvl":125,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}]}, -{"id":34622,"name":"Spinesever","icon":"inv_weapon_shortblade_24","type":14,"rangedWeaponType":5,"stats":[0,11,20,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":279,"weaponSpeed":2.2,"ilvl":100,"quality":4}, -{"id":34625,"name":"Kharmaa's Ring of Fate","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,30,22,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34626,"name":"Prototype Tonk Controller","icon":"inv_gizmo_goblingtonkcontroller","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1}, -{"id":34648,"name":"Acherus Knight's Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[10,7,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34649,"name":"Acherus Knight's Gauntlets","icon":"inv_gauntlets_32","type":7,"armorType":4,"stats":[15,0,6,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34650,"name":"Acherus Knight's Tunic","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[20,0,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34651,"name":"Acherus Knight's Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[10,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34652,"name":"Acherus Knight's Hood","icon":"inv_helmet_125","type":1,"armorType":4,"stats":[15,0,15,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34653,"name":"Acherus Knight's Wristguard","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[7,0,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34655,"name":"Acherus Knight's Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[11,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34656,"name":"Acherus Knight's Legplates","icon":"inv_pants_cloth_27","type":9,"armorType":4,"stats":[13,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34657,"name":"Choker of Damnation","icon":"inv_jewelry_necklace_01","type":2,"stats":[9,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34658,"name":"Plague Band","icon":"inv_jewelry_ring_03","type":11,"stats":[11,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34659,"name":"Acherus Knight's Shroud","icon":"inv_misc_cape_19","type":4,"stats":[12,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34661,"name":"Massacre Sword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":191,"weaponSpeed":3.1,"ilvl":60,"quality":3,"sources":[{"quest":{"id":1,"name":"Kanrethad's Quest"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":34665,"name":"Bombardier's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,14,24,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.8,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34666,"name":"The Sunbreaker","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,14,24,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":2.7,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34667,"name":"Archmage's Guile","icon":"inv_sword_59","type":13,"weaponType":9,"handType":1,"stats":[0,0,21,0,0,0,20,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.3,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34670,"name":"Seeker's Gavel","icon":"inv_mace_35","type":13,"weaponType":4,"handType":1,"stats":[0,0,32,0,0,11,0,0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.3,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34671,"name":"K'iru's Presage","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,27,0,18,0,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.3,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34672,"name":"Inuuro's Blade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,8,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":1.4,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34673,"name":"Legionfoe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[31,0,45,0,0,0,26,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":276,"weaponDamageMax":414,"weaponSpeed":3.7,"ilvl":115,"quality":3,"unique":true,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34674,"name":"Truestrike Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,10,20,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":194,"weaponDamageMax":291,"weaponSpeed":2.6,"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34675,"name":"Sunward Crest","icon":"inv_shield_48","type":13,"weaponType":7,"handType":3,"stats":[22,0,31,0,0,13,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34676,"name":"Dawnforged Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,0,0,13,0,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34678,"name":"Shattered Sun Pendant of Acumen","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34679,"name":"Shattered Sun Pendant of Might","icon":"inv_jewelry_necklace_38","type":2,"stats":[0,18,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34680,"name":"Shattered Sun Pendant of Resolve","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,48,0,0,13,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"sources":[{"soldBy":{"npcId":25032,"npcName":"Eldara Dawnrunner","zoneId":4080}}]}, -{"id":34683,"name":"Sandals of Summer","icon":"inv_boots_cloth_20","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Midsummer Reveler","setId":785}, -{"id":34685,"name":"Vestment of Summer","icon":"inv_chest_cloth_72","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"setName":"Midsummer Reveler","setId":785}, -{"id":34697,"name":"Bindings of Raging Fire","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,19,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34698,"name":"Bracers of the Forest Stalker","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,16,19,0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34699,"name":"Sun-Forged Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,13,15,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34700,"name":"Gauntlets of Divine Blessings","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,30,25,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34701,"name":"Leggings of the Betrayed","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,33,48,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34702,"name":"Cloak of Swift Mending","icon":"inv_misc_cape_19","type":4,"stats":[0,0,18,19,12,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}]}, -{"id":34703,"name":"Latro's Dancing Blade","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.6,"ilvl":115,"quality":3,"unique":true,"setName":"Latro's Flurry","setId":737,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34704,"name":"Band of Arcane Alacrity","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,19,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34705,"name":"Bracers of Divine Infusion","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,25,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34706,"name":"Band of Determination","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,35,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34707,"name":"Boots of Resuscitation","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,28,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34708,"name":"Cloak of the Coming Night","icon":"inv_misc_cape_06","type":4,"stats":[0,0,18,0,0,12,0,18,0,0,0,0,38,38,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}]}, -{"id":34712,"name":"Prismatic Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true}, -{"id":34716,"name":"Silver Cufflinks","icon":"inv_jewelry_talisman_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34718,"name":"Black Leather Shoes","icon":"inv_boots_cloth_17","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34782,"name":"Imbued Scourge Shroud","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":11633,"name":"Blending In"}}]}, -{"id":34783,"name":"Nightstrike","icon":"inv_weapon_shortblade_14","type":14,"rangedWeaponType":5,"stats":[0,0,16,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":246,"weaponSpeed":2.2,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34788,"name":"Duskhallow Mantle","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,20,25,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34789,"name":"Bracers of Slaughter","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[19,0,15,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34790,"name":"Battle-Mace of the High Priestess","icon":"inv_mace_34","type":13,"weaponType":4,"handType":1,"stats":[0,0,21,0,0,0,0,15,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":2.3,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34791,"name":"Gauntlets of the Tranquil Waves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,20,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34792,"name":"Cloak of the Betrayed","icon":"inv_misc_cape_18","type":4,"stats":[0,0,23,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}]}, -{"id":34793,"name":"Cord of Reconstruction","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,27,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34794,"name":"Axe of Shattered Dreams","icon":"inv_axe_69","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,0,32,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":426,"weaponSpeed":3.8,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34795,"name":"Helm of Sanctification","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,32,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34796,"name":"Robes of Summer Flame","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,32,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34797,"name":"Sun-Infused Focus Staff","icon":"inv_staff_39","type":13,"weaponType":8,"handType":4,"stats":[0,0,58,0,0,23,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":2.4,"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34798,"name":"Band of Celerity","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34799,"name":"Hauberk of the War Bringer","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,38,38,0,0,0,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34807,"name":"Sunstrider Warboots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[29,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"gemSockets":[2,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34808,"name":"Gloves of Arcane Acuity","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,35,29,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34809,"name":"Sunrage Treads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,29,53,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34810,"name":"Cloak of Blade Turning","icon":"inv_misc_cape_20","type":4,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,224,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}]}, -{"id":34826,"name":"Gold Wedding Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34827,"name":"Noble's Monocle","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34828,"name":"Antique Silver Cufflinks","icon":"inv_jewelry_ring_67","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34829,"name":"Ornate Drinking Stein","icon":"inv_drink_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":34837,"name":"The 2 Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":143,"quality":4}, -{"id":34847,"name":"Annihilator Holo-Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,72,69,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46111}},{"crafted":{"profession":4,"spellId":46111}}]}, -{"id":34859,"name":"Razor Sharp Fillet Knife","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":102,"weaponSpeed":1.3,"ilvl":115,"quality":1}, -{"id":34887,"name":"Angelista's Revenge","icon":"inv_jewelry_ring_79","type":11,"stats":[0,29,54,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":34888,"name":"Ring of the Stalwart Protector","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,45,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":34889,"name":"Fused Nethergon Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,42,30,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":34890,"name":"Anveena's Touch","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,42,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":34891,"name":"The Blade of Harbingers","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,55,53,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":375,"weaponDamageMax":563,"weaponSpeed":3.5,"ilvl":146,"quality":4}, -{"id":34892,"name":"Crossbow of Relentless Strikes","icon":"inv_weapon_crossbow_26","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,14,18,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":262,"weaponDamageMax":488,"weaponSpeed":2.8,"ilvl":146,"quality":4}, -{"id":34893,"name":"Vanir's Right Fist of Brutality","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":1,"stats":[0,23,33,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":335,"weaponSpeed":2.5,"ilvl":146,"quality":4}, -{"id":34894,"name":"Blade of Serration","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,0,24,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":146,"quality":4}, -{"id":34895,"name":"Scryer's Blade of Focus","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":1,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":146,"quality":4,"unique":true}, -{"id":34896,"name":"Gavel of Naaru Blessings","icon":"inv_mace_82","type":13,"weaponType":4,"handType":1,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.6,"ilvl":146,"quality":4}, -{"id":34898,"name":"Staff of the Forest Lord","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,52,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":483,"weaponSpeed":3,"ilvl":146,"quality":4}, -{"id":34900,"name":"Shroud of Nature's Harmony","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,71,53,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34901,"name":"Grovewalker's Leggings","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,0,74,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34902,"name":"Oakleaf-Spun Handguards","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,55,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34903,"name":"Embrace of Starlight","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,68,51,26,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34904,"name":"Barbed Gloves of the Sage","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,0,55,38,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34905,"name":"Crystalwind Leggings","icon":"inv_pants_leather_16","type":9,"armorType":2,"stats":[0,0,72,52,32,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34906,"name":"Embrace of Everlasting Prowess","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,49,93,23,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34910,"name":"Tameless Breeches","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,48,90,20,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34911,"name":"Handwraps of the Aggressor","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,36,66,19,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34912,"name":"Scaled Drakeskin Chestguard","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,51,59,0,0,0,47,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34914,"name":"Leggings of the Pursuit","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[0,52,61,0,0,15,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34916,"name":"Gauntlets of Rapidity","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,39,44,0,0,0,16,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34917,"name":"Shroud of the Lore`nial","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,65,52,0,29,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34918,"name":"Legwraps of Sweltering Flame","icon":"inv_pants_cloth_17","type":9,"armorType":1,"stats":[0,0,68,53,0,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34919,"name":"Boots of Incantations","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,57,40,0,17,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34921,"name":"Ecclesiastical Cuirass","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,89,44,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34922,"name":"Greaves of Pacification","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[0,0,87,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34923,"name":"Waistguard of Reparation","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,65,33,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34924,"name":"Gown of Spiritual Wonder","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,66,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34925,"name":"Adorned Supernal Legwraps","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,65,52,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34926,"name":"Slippers of Dutiful Mending","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,49,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34927,"name":"Tunic of the Dark Hour","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,51,88,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34928,"name":"Trousers of the Scryers' Retainer","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,52,82,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34929,"name":"Belt of the Silent Path","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,39,63,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34930,"name":"Wave of Life Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,87,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34931,"name":"Runed Scales of Antiquity","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,77,52,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34932,"name":"Clutch of the Soothing Breeze","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,62,39,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34933,"name":"Hauberk of Whirling Fury","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,68,52,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34934,"name":"Rushing Storm Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,72,52,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34935,"name":"Aftershock Waistguard","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,51,39,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34936,"name":"Tormented Demonsoul Robes","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,72,53,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34937,"name":"Corrupted Soulcloth Pantaloons","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,65,52,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34938,"name":"Enslaved Doomguard Soulgrips","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,55,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34939,"name":"Chestplate of Stoicism","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[34,0,78,0,0,0,0,0,0,51,26,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34940,"name":"Sunguard Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[29,0,78,0,0,0,0,0,23,47,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34941,"name":"Girdle of the Fearless","icon":"inv_belt_27","type":8,"armorType":4,"stats":[23,0,58,0,0,0,0,0,22,34,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34942,"name":"Breastplate of Ire","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[52,0,64,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34943,"name":"Legplates of Unending Fury","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[52,0,48,0,0,25,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34944,"name":"Girdle of Seething Rage","icon":"inv_belt_13","type":8,"armorType":4,"stats":[40,0,55,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34945,"name":"Shattrath Protectorate's Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[51,0,78,0,0,34,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34946,"name":"Inscribed Legplates of the Aldor","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[32,0,78,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34947,"name":"Blue's Greaves of the Righteous Guardian","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[34,0,58,0,0,22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4}, -{"id":34949,"name":"Swift Blade of Uncertainty","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,24,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":34950,"name":"Vanir's Left Fist of Savagery","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,21,0,23,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":201,"weaponSpeed":1.5,"ilvl":146,"quality":4}, -{"id":34951,"name":"Vanir's Left Fist of Brutality","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,21,0,23,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":335,"weaponSpeed":2.5,"ilvl":146,"quality":4}, -{"id":34952,"name":"The Mutilator","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,24,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":146,"quality":4}, -{"id":34985,"name":"Brutal Gladiator's Baton of Light","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,32,17,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":490,"weaponSpeed":1.9,"ilvl":154,"quality":4}, -{"id":34986,"name":"Brutal Gladiator's Barrier","icon":"inv_shield_54","type":13,"weaponType":7,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":34987,"name":"Brutal Gladiator's Battle Staff","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,0,32,50,0,0,0,0,0,0,0,333,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":2,"ilvl":154,"quality":4}, -{"id":34988,"name":"Brutal Gladiator's Bonecracker","icon":"inv_mace_74","type":13,"weaponType":4,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4}, -{"id":34989,"name":"Brutal Gladiator's Bonegrinder","icon":"inv_mace_49","type":13,"weaponType":4,"handType":4,"stats":[50,0,66,0,0,19,50,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":404,"weaponDamageMax":606,"weaponSpeed":3.6,"ilvl":154,"quality":4}, -{"id":34990,"name":"Brutal Gladiator's Chain Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,32,81,0,0,16,39,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Brutal Gladiator's Pursuit","setId":586}, -{"id":34991,"name":"Brutal Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,37,63,0,0,0,23,24,0,0,0,0,0,0,0,0,21,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Brutal Gladiator's Pursuit","setId":586}, -{"id":34992,"name":"Brutal Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,37,81,0,0,17,47,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Brutal Gladiator's Pursuit","setId":586}, -{"id":34993,"name":"Brutal Gladiator's Chain Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,38,78,0,0,17,47,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Brutal Gladiator's Pursuit","setId":586}, -{"id":34994,"name":"Brutal Gladiator's Chain Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,39,58,0,0,0,20,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Brutal Gladiator's Pursuit","setId":586}, -{"id":34995,"name":"Brutal Gladiator's Chopper","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":34996,"name":"Brutal Gladiator's Cleaver","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":34997,"name":"Brutal Gladiator's Decapitator","icon":"inv_axe_73","type":13,"weaponType":1,"handType":4,"stats":[0,0,66,0,0,19,50,14,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":404,"weaponDamageMax":606,"weaponSpeed":3.6,"ilvl":154,"quality":4}, -{"id":34998,"name":"Brutal Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,75,25,0,13,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,555,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Sanctuary","setId":584}, -{"id":34999,"name":"Brutal Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,36,87,28,0,17,31,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,721,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Sanctuary","setId":584}, -{"id":35000,"name":"Brutal Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,41,91,34,0,17,18,12,0,0,0,0,0,0,0,0,29,0,0,0,0,0,777,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Sanctuary","setId":584}, -{"id":35001,"name":"Brutal Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,34,74,20,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Sanctuary","setId":584}, -{"id":35002,"name":"Brutal Gladiator's Dragonhide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,36,84,26,0,16,23,12,0,0,0,0,0,0,0,0,26,0,0,0,0,0,887,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Sanctuary","setId":584}, -{"id":35003,"name":"Brutal Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,81,40,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Dreadgear","setId":568}, -{"id":35004,"name":"Brutal Gladiator's Dreadweave Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,98,43,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Dreadgear","setId":568}, -{"id":35005,"name":"Brutal Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,108,57,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Dreadgear","setId":568}, -{"id":35006,"name":"Brutal Gladiator's Dreadweave Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,20,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Dreadgear","setId":568}, -{"id":35007,"name":"Brutal Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,95,49,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Dreadgear","setId":568}, -{"id":35008,"name":"Brutal Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":35009,"name":"Brutal Gladiator's Felweave Amice","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Felshroud","setId":615}, -{"id":35010,"name":"Brutal Gladiator's Felweave Cowl","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,79,46,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Felshroud","setId":615}, -{"id":35011,"name":"Brutal Gladiator's Felweave Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,68,38,0,0,26,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Felshroud","setId":615}, -{"id":35012,"name":"Brutal Gladiator's Felweave Raiment","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,75,39,0,0,39,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Felshroud","setId":615}, -{"id":35013,"name":"Brutal Gladiator's Felweave Trousers","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,89,51,0,0,39,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Brutal Gladiator's Felshroud","setId":615}, -{"id":35014,"name":"Brutal Gladiator's Gavel","icon":"inv_mace_73","type":13,"weaponType":4,"handType":1,"stats":[0,0,48,0,0,19,0,0,0,0,0,0,0,0,333,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":225,"weaponSpeed":1.6,"ilvl":154,"quality":4}, -{"id":35015,"name":"Brutal Gladiator's Greatsword","icon":"inv_sword_116","type":13,"weaponType":9,"handType":4,"stats":[50,0,66,0,0,19,50,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":404,"weaponDamageMax":606,"weaponSpeed":3.6,"ilvl":154,"quality":4}, -{"id":35016,"name":"Brutal Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,40,28,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":35017,"name":"Brutal Gladiator's Hacker","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4}, -{"id":35018,"name":"Brutal Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_26","type":14,"rangedWeaponType":2,"stats":[0,0,27,0,0,0,17,0,0,0,0,0,0,38,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":336,"weaponDamageMax":505,"weaponSpeed":3,"ilvl":154,"quality":4}, -{"id":35019,"name":"Brutal Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,19,28,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1,7]}, -{"id":35020,"name":"Brutal Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,28,19,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,1,7]}, -{"id":35021,"name":"Brutal Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,28,19,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,1,7]}, -{"id":35022,"name":"Brutal Gladiator's Kodohide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,81,40,26,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,555,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Refuge","setId":685}, -{"id":35023,"name":"Brutal Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,99,47,28,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,721,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Refuge","setId":685}, -{"id":35024,"name":"Brutal Gladiator's Kodohide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,0,105,52,40,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,777,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Refuge","setId":685}, -{"id":35025,"name":"Brutal Gladiator's Kodohide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,69,30,18,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Refuge","setId":685}, -{"id":35026,"name":"Brutal Gladiator's Kodohide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,97,46,28,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,887,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Refuge","setId":685}, -{"id":35027,"name":"Brutal Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,95,32,0,0,44,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Aegis","setId":582}, -{"id":35028,"name":"Brutal Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Aegis","setId":582}, -{"id":35029,"name":"Brutal Gladiator's Lamellar Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[0,0,96,43,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Aegis","setId":582}, -{"id":35030,"name":"Brutal Gladiator's Lamellar Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,97,46,0,0,45,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Aegis","setId":582}, -{"id":35031,"name":"Brutal Gladiator's Lamellar Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,69,28,0,0,32,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Aegis","setId":582}, -{"id":35032,"name":"Brutal Gladiator's Leather Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,555,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Brutal Gladiator's Vestments","setId":577}, -{"id":35033,"name":"Brutal Gladiator's Leather Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,36,89,0,0,17,26,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,721,20,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Brutal Gladiator's Vestments","setId":577}, -{"id":35034,"name":"Brutal Gladiator's Leather Legguards","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,40,89,0,0,17,30,12,0,0,0,0,0,0,0,0,40,0,0,0,0,0,777,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Brutal Gladiator's Vestments","setId":577}, -{"id":35035,"name":"Brutal Gladiator's Leather Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,39,63,0,0,0,31,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Brutal Gladiator's Vestments","setId":577}, -{"id":35036,"name":"Brutal Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,36,86,0,0,17,22,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,887,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Brutal Gladiator's Vestments","setId":577}, -{"id":35037,"name":"Brutal Gladiator's Left Render","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":35038,"name":"Brutal Gladiator's Left Ripper","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4}, -{"id":35039,"name":"Brutal Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[19,0,28,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,10]}, -{"id":35040,"name":"Brutal Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,28,19,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,1,7]}, -{"id":35041,"name":"Brutal Gladiator's Libram of Vengeance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[19,0,28,0,0,0,0,13,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,10]}, -{"id":35042,"name":"Brutal Gladiator's Linked Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,32,71,0,0,17,49,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Earthshaker","setId":578}, -{"id":35043,"name":"Brutal Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,38,58,0,0,0,37,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Earthshaker","setId":578}, -{"id":35044,"name":"Brutal Gladiator's Linked Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,40,74,0,0,18,39,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Earthshaker","setId":578}, -{"id":35045,"name":"Brutal Gladiator's Linked Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,43,74,0,0,17,41,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Earthshaker","setId":578}, -{"id":35046,"name":"Brutal Gladiator's Linked Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,30,58,0,0,20,31,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Earthshaker","setId":578}, -{"id":35047,"name":"Brutal Gladiator's Longbow","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,0,27,0,0,0,17,0,0,0,0,0,0,38,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":336,"weaponDamageMax":505,"weaponSpeed":3,"ilvl":154,"quality":4}, -{"id":35048,"name":"Brutal Gladiator's Mail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,83,42,28,0,34,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Thunderfist","setId":580}, -{"id":35049,"name":"Brutal Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,71,37,0,0,32,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Thunderfist","setId":580}, -{"id":35050,"name":"Brutal Gladiator's Mail Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,88,47,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Thunderfist","setId":580}, -{"id":35051,"name":"Brutal Gladiator's Mail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,96,50,28,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Thunderfist","setId":580}, -{"id":35052,"name":"Brutal Gladiator's Mail Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,65,29,20,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Thunderfist","setId":580}, -{"id":35053,"name":"Brutal Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Investiture","setId":687}, -{"id":35054,"name":"Brutal Gladiator's Mooncloth Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,95,39,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Investiture","setId":687}, -{"id":35055,"name":"Brutal Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,96,43,40,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Investiture","setId":687}, -{"id":35056,"name":"Brutal Gladiator's Mooncloth Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,71,31,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Investiture","setId":687}, -{"id":35057,"name":"Brutal Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_60","type":5,"armorType":1,"stats":[0,0,88,33,28,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Investiture","setId":687}, -{"id":35058,"name":"Brutal Gladiator's Mutilator","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":1.8,"ilvl":154,"quality":4}, -{"id":35059,"name":"Brutal Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,98,31,0,0,42,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Redemption","setId":690}, -{"id":35060,"name":"Brutal Gladiator's Ornamented Gloves","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,82,36,0,0,33,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Redemption","setId":690}, -{"id":35061,"name":"Brutal Gladiator's Ornamented Headcover","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[0,0,98,40,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Redemption","setId":690}, -{"id":35062,"name":"Brutal Gladiator's Ornamented Legplates","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,102,47,0,0,46,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Redemption","setId":690}, -{"id":35063,"name":"Brutal Gladiator's Ornamented Spaulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,71,27,0,0,32,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Redemption","setId":690}, -{"id":35064,"name":"Brutal Gladiator's Painsaw","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,0,68,0,0,0,51,0,0,0,0,0,102,102,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":371,"weaponSpeed":2.2,"ilvl":154,"quality":4}, -{"id":35065,"name":"Brutal Gladiator's Piercing Touch","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,19,14,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":490,"weaponSpeed":1.9,"ilvl":154,"quality":4}, -{"id":35066,"name":"Brutal Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[45,0,76,0,0,18,45,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Brutal Gladiator's Battlegear","setId":567}, -{"id":35067,"name":"Brutal Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[42,0,59,0,0,0,37,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Brutal Gladiator's Battlegear","setId":567}, -{"id":35068,"name":"Brutal Gladiator's Plate Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[45,0,68,0,0,18,41,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Brutal Gladiator's Battlegear","setId":567}, -{"id":35069,"name":"Brutal Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[57,0,77,0,0,18,53,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Brutal Gladiator's Battlegear","setId":567}, -{"id":35070,"name":"Brutal Gladiator's Plate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[38,0,64,0,0,0,35,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Brutal Gladiator's Battlegear","setId":567}, -{"id":35071,"name":"Brutal Gladiator's Pummeler","icon":"inv_mace_74","type":13,"weaponType":4,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":35072,"name":"Brutal Gladiator's Quickblade","icon":"inv_sword_114","type":13,"weaponType":9,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":154,"quality":4}, -{"id":35073,"name":"Brutal Gladiator's Redoubt","icon":"inv_shield_52","type":13,"weaponType":7,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":35074,"name":"Brutal Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":35075,"name":"Brutal Gladiator's Rifle","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,27,0,0,0,17,0,0,0,0,0,0,38,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":336,"weaponDamageMax":505,"weaponSpeed":3,"ilvl":154,"quality":4}, -{"id":35076,"name":"Brutal Gladiator's Right Ripper","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":1,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":35077,"name":"Brutal Gladiator's Ringmail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,86,42,28,0,36,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Wartide","setId":686}, -{"id":35078,"name":"Brutal Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,71,39,0,0,29,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Wartide","setId":686}, -{"id":35079,"name":"Brutal Gladiator's Ringmail Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,94,44,0,0,31,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Wartide","setId":686}, -{"id":35080,"name":"Brutal Gladiator's Ringmail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,96,50,28,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Wartide","setId":686}, -{"id":35081,"name":"Brutal Gladiator's Ringmail Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,66,29,20,0,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Brutal Gladiator's Wartide","setId":686}, -{"id":35082,"name":"Brutal Gladiator's Salvation","icon":"inv_mace_71","type":13,"weaponType":4,"handType":1,"stats":[0,0,57,0,0,0,0,0,0,0,0,0,0,0,330,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":225,"weaponSpeed":1.6,"ilvl":154,"quality":4}, -{"id":35083,"name":"Brutal Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Raiment","setId":581}, -{"id":35084,"name":"Brutal Gladiator's Satin Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,91,43,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Raiment","setId":581}, -{"id":35085,"name":"Brutal Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,105,56,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Raiment","setId":581}, -{"id":35086,"name":"Brutal Gladiator's Satin Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,72,32,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Raiment","setId":581}, -{"id":35087,"name":"Brutal Gladiator's Satin Robe","icon":"inv_chest_cloth_60","type":5,"armorType":1,"stats":[0,0,92,42,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Brutal Gladiator's Raiment","setId":581}, -{"id":35088,"name":"Brutal Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[61,0,61,0,0,17,41,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Vindication","setId":583}, -{"id":35089,"name":"Brutal Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Vindication","setId":583}, -{"id":35090,"name":"Brutal Gladiator's Scaled Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[61,0,92,0,0,17,33,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Vindication","setId":583}, -{"id":35091,"name":"Brutal Gladiator's Scaled Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[61,0,92,0,0,17,41,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Vindication","setId":583}, -{"id":35092,"name":"Brutal Gladiator's Scaled Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Brutal Gladiator's Vindication","setId":583}, -{"id":35093,"name":"Brutal Gladiator's Shanker","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":1.8,"ilvl":154,"quality":4}, -{"id":35094,"name":"Brutal Gladiator's Shield Wall","icon":"inv_shield_53","type":13,"weaponType":7,"handType":3,"stats":[0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4}, -{"id":35095,"name":"Brutal Gladiator's Shiv","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":105,"weaponDamageMax":197,"weaponSpeed":1.4,"ilvl":154,"quality":4}, -{"id":35096,"name":"Brutal Gladiator's Silk Amice","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Brutal Gladiator's Regalia","setId":579}, -{"id":35097,"name":"Brutal Gladiator's Silk Cowl","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,82,46,0,0,30,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Brutal Gladiator's Regalia","setId":579}, -{"id":35098,"name":"Brutal Gladiator's Silk Handguards","icon":"inv_gauntlets_47","type":7,"armorType":1,"stats":[0,0,68,38,0,0,26,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Brutal Gladiator's Regalia","setId":579}, -{"id":35099,"name":"Brutal Gladiator's Silk Raiment","icon":"inv_chest_cloth_62","type":5,"armorType":1,"stats":[0,0,75,39,0,0,39,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Brutal Gladiator's Regalia","setId":579}, -{"id":35100,"name":"Brutal Gladiator's Silk Trousers","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,95,51,0,0,39,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Brutal Gladiator's Regalia","setId":579}, -{"id":35101,"name":"Brutal Gladiator's Slicer","icon":"inv_sword_114","type":13,"weaponType":9,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":2.6,"ilvl":154,"quality":4}, -{"id":35102,"name":"Brutal Gladiator's Spellblade","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":1,"stats":[0,0,48,0,0,19,0,0,0,0,0,0,0,0,333,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":225,"weaponSpeed":1.6,"ilvl":154,"quality":4}, -{"id":35103,"name":"Brutal Gladiator's Staff","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,66,0,0,26,50,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":2,"ilvl":154,"quality":4}, -{"id":35104,"name":"Brutal Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,19,28,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1,7]}, -{"id":35105,"name":"Brutal Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,28,19,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,1,7]}, -{"id":35106,"name":"Brutal Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,28,19,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[4,1,7]}, -{"id":35107,"name":"Brutal Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,33,17,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":263,"weaponDamageMax":490,"weaponSpeed":1.9,"ilvl":154,"quality":4}, -{"id":35108,"name":"Brutal Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":213,"weaponDamageMax":320,"weaponSpeed":1.9,"ilvl":154,"quality":4}, -{"id":35109,"name":"Brutal Gladiator's War Staff","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,0,0,50,0,0,0,0,0,0,0,333,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":2,"ilvl":154,"quality":4}, -{"id":35110,"name":"Brutal Gladiator's Waraxe","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":1,"stats":[0,0,31,0,0,9,20,6,0,0,0,0,42,42,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[2]}, -{"id":35111,"name":"Brutal Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,67,42,16,0,16,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,555,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Wildhide","setId":585}, -{"id":35112,"name":"Brutal Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,88,50,20,0,22,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,721,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Wildhide","setId":585}, -{"id":35113,"name":"Brutal Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,0,94,57,28,0,27,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,777,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Wildhide","setId":585}, -{"id":35114,"name":"Brutal Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,64,35,12,0,13,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,666,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Wildhide","setId":585}, -{"id":35115,"name":"Brutal Gladiator's Wyrmhide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,84,50,18,0,18,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,887,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Brutal Gladiator's Wildhide","setId":585}, -{"id":35129,"name":"Guardian's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,47,26,0,0,0,14,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true}, -{"id":35130,"name":"Guardian's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,54,26,18,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true}, -{"id":35131,"name":"Guardian's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,38,0,0,0,30,8,0,0,0,0,52,52,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true}, -{"id":35132,"name":"Guardian's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,47,24,0,0,24,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":35133,"name":"Guardian's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,56,30,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":35134,"name":"Guardian's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,50,26,18,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":35135,"name":"Guardian's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,39,0,0,0,26,0,0,0,0,0,58,58,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":35136,"name":"Guardian's Chain Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,37,69,0,0,0,22,23,0,0,0,0,0,0,0,0,21,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35137,"name":"Guardian's Dragonhide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,34,72,24,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35138,"name":"Guardian's Dreadweave Stalkers","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,84,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35139,"name":"Guardian's Kodohide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35140,"name":"Guardian's Lamellar Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35141,"name":"Guardian's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35142,"name":"Guardian's Linked Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,38,55,0,0,27,38,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35143,"name":"Guardian's Mail Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35144,"name":"Guardian's Mooncloth Slippers","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35145,"name":"Guardian's Ornamented Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35146,"name":"Guardian's Plate Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[40,0,56,0,0,0,40,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4,10]}, -{"id":35147,"name":"Guardian's Ringmail Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35148,"name":"Guardian's Scaled Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35149,"name":"Guardian's Silk Footguards","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,76,34,0,0,32,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35150,"name":"Guardian's Wyrmhide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35151,"name":"Guardian's Chain Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,37,69,0,0,0,22,23,0,0,0,0,0,0,0,0,21,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35152,"name":"Guardian's Dragonhide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,34,72,24,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35153,"name":"Guardian's Dreadweave Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,84,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35154,"name":"Guardian's Kodohide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35155,"name":"Guardian's Lamellar Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35156,"name":"Guardian's Leather Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35157,"name":"Guardian's Linked Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,38,55,0,0,28,37,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35158,"name":"Guardian's Mail Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35159,"name":"Guardian's Mooncloth Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35160,"name":"Guardian's Ornamented Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35161,"name":"Guardian's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[40,0,56,0,0,0,40,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4,10]}, -{"id":35162,"name":"Guardian's Ringmail Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[2,7]}, -{"id":35163,"name":"Guardian's Scaled Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[9,4]}, -{"id":35164,"name":"Guardian's Silk Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,76,34,0,0,32,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35165,"name":"Guardian's Wyrmhide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[6,1]}, -{"id":35166,"name":"Guardian's Chain Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,26,44,0,0,0,14,15,0,0,0,0,0,0,0,0,13,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2,7]}, -{"id":35167,"name":"Guardian's Dragonhide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,25,53,0,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[6,1]}, -{"id":35168,"name":"Guardian's Dreadweave Cuffs","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,56,29,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35169,"name":"Guardian's Kodohide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,51,21,20,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[6,1]}, -{"id":35170,"name":"Guardian's Lamellar Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,47,26,0,0,23,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9,4]}, -{"id":35171,"name":"Guardian's Leather Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,28,46,0,0,0,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[6,1]}, -{"id":35172,"name":"Guardian's Linked Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,28,37,0,0,0,24,17,0,0,0,0,0,0,0,0,12,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2,7]}, -{"id":35173,"name":"Guardian's Mail Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,47,26,0,0,24,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2,7]}, -{"id":35174,"name":"Guardian's Mooncloth Cuffs","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,56,29,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35175,"name":"Guardian's Ornamented Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,47,26,0,0,23,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9,4]}, -{"id":35176,"name":"Guardian's Plate Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[28,0,40,0,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9,4,10]}, -{"id":35177,"name":"Guardian's Ringmail Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,47,26,0,0,24,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[2,7]}, -{"id":35178,"name":"Guardian's Scaled Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[29,0,49,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[9,4]}, -{"id":35179,"name":"Guardian's Silk Cuffs","icon":"inv_bracer_14","type":6,"armorType":1,"stats":[0,0,53,26,0,0,18,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[5,3,8]}, -{"id":35180,"name":"Guardian's Wyrmhide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,52,23,20,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"classAllowlist":[6,1]}, -{"id":35181,"name":"Powerheal 9000 Lens","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,82,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46108}},{"crafted":{"profession":4,"spellId":46108}}]}, -{"id":35182,"name":"Hyper-Magnified Moon Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,72,55,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[1],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46109}},{"crafted":{"profession":4,"spellId":46109}}]}, -{"id":35183,"name":"Wonderheal XT68 Shades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,82,61,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46106}},{"crafted":{"profession":4,"spellId":46106}}]}, -{"id":35184,"name":"Primal-Attuned Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,81,61,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46110}},{"crafted":{"profession":4,"spellId":46110}}]}, -{"id":35185,"name":"Justicebringer 3000 Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,65,58,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46107}},{"crafted":{"profession":4,"spellId":46107}}]}, -{"id":35282,"name":"Sin'dorei Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,33,29,0,0,28,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":35283,"name":"Sin'dorei Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,44,29,18,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":35284,"name":"Sin'dorei Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,30,0,0,0,28,0,0,0,0,0,58,58,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}]}, -{"id":35290,"name":"Sin'dorei Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,29,0,0,19,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":35291,"name":"Sin'dorei Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,33,29,20,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":35292,"name":"Sin'dorei Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,18,0,0,0,28,0,0,0,0,0,58,58,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}]}, -{"id":35317,"name":"Vindicator's Pendant of Reprieve","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,23,0,0,0,23,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":35319,"name":"Vindicator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,21,0,0,0,21,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":35320,"name":"Vindicator's Band of Subjugation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,33,22,0,0,0,30,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":141,"quality":4,"unique":true}, -{"id":35321,"name":"Cloak of Arcane Alacrity","icon":"inv_misc_cape_20","type":4,"stats":[0,0,42,23,0,0,0,16,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":35324,"name":"Cloak of Swift Reprieve","icon":"inv_misc_cape_06","type":4,"stats":[0,0,42,23,0,0,0,16,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":35326,"name":"Battlemaster's Alacrity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4,"sources":[{"soldBy":{"npcId":18525,"npcName":"G'eras","zoneId":3703}}]}, -{"id":35327,"name":"Battlemaster's Alacrity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":133,"quality":4}, -{"id":35328,"name":"Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35329,"name":"Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35330,"name":"Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35331,"name":"Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35332,"name":"Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35333,"name":"Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35334,"name":"Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35335,"name":"Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35336,"name":"Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35337,"name":"Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35338,"name":"Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35339,"name":"Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35340,"name":"Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35341,"name":"Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35342,"name":"Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35343,"name":"Evoker's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35344,"name":"Evoker's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35345,"name":"Evoker's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35346,"name":"Evoker's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35347,"name":"Evoker's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35356,"name":"Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,43,16,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35357,"name":"Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35358,"name":"Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,22,60,22,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35359,"name":"Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35360,"name":"Dragonhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,15,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"zoneId":3483}}],"factionRestriction":2}, -{"id":35361,"name":"Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35362,"name":"Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35363,"name":"Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35364,"name":"Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"zoneId":3483}}],"factionRestriction":2}, -{"id":35365,"name":"Kodohide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35366,"name":"Opportunist's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35367,"name":"Opportunist's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35368,"name":"Opportunist's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35369,"name":"Opportunist's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35370,"name":"Opportunist's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35371,"name":"Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"zoneId":3483}}],"factionRestriction":2}, -{"id":35372,"name":"Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,12,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35373,"name":"Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35374,"name":"Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35375,"name":"Wyrmhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35376,"name":"Stalker's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35377,"name":"Stalker's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35378,"name":"Stalker's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35379,"name":"Stalker's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35380,"name":"Stalker's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35381,"name":"Seer's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,22,42,12,0,0,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35382,"name":"Seer's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35383,"name":"Seer's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35384,"name":"Seer's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35385,"name":"Seer's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,8,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35386,"name":"Seer's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35387,"name":"Seer's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35388,"name":"Seer's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35389,"name":"Seer's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35390,"name":"Seer's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35391,"name":"Seer's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":21655,"npcName":"Nakodu","zoneId":3703}}]}, -{"id":35392,"name":"Seer's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35393,"name":"Seer's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":21643,"npcName":"Alurmi","zoneId":440}}]}, -{"id":35394,"name":"Seer's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":17904,"npcName":"Fedryen Swiftspear","zoneId":3521}}]}, -{"id":35395,"name":"Seer's Ringmail Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":21432,"npcName":"Almaador","zoneId":3703}}]}, -{"id":35402,"name":"Crusader's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35403,"name":"Crusader's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35404,"name":"Crusader's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35405,"name":"Crusader's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35406,"name":"Crusader's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35407,"name":"Savage Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35408,"name":"Savage Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35409,"name":"Savage Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35410,"name":"Savage Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35411,"name":"Savage Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35412,"name":"Crusader's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,42,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35413,"name":"Crusader's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,25,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"npcId":17585,"npcName":"Quartermaster Urgronn","zoneId":3483}}],"factionRestriction":2}, -{"id":35414,"name":"Crusader's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[35,0,30,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"zoneId":440}}]}, -{"id":35415,"name":"Crusader's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[43,0,42,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"zoneId":3521}}]}, -{"id":35416,"name":"Crusader's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[28,0,33,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"zoneId":3703}}]}, -{"id":35464,"name":"Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35465,"name":"Evoker's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35466,"name":"Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35467,"name":"Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35468,"name":"Opportunist's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35469,"name":"Dragonhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,15,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35470,"name":"Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35471,"name":"Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35472,"name":"Seer's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35473,"name":"Seer's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35474,"name":"Seer's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35475,"name":"Stalker's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35476,"name":"Crusader's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35477,"name":"Crusader's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,25,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35478,"name":"Savage Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"sources":[{"soldBy":{"npcId":17657,"npcName":"Logistics Officer Ulrike","zoneId":3483}}],"factionRestriction":1}, -{"id":35494,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"stats":[0,0,31,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35495,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35496,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,224,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35497,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"stats":[0,0,32,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35507,"name":"Amulet of Bitter Hatred","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,20,37,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35508,"name":"Choker of the Arctic Flow","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":35509,"name":"Amulet of Glacial Tranquility","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,40,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":35511,"name":"Hailstone Pendant","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,33,0,0,19,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4}, -{"id":35514,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,32,0,33,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":3.2,"ilvl":110,"quality":4,"unique":true}, -{"id":35570,"name":"Keleseth's Blade of Evocation","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":1,"stats":[0,0,36,0,31,0,0,0,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":1.8,"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}]}, -{"id":35571,"name":"Dragon Stabler's Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,32,72,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}]}, -{"id":35572,"name":"Reinforced Velvet Helm","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,91,44,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}]}, -{"id":35573,"name":"Arm Blade of Augelmir","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":1,"stats":[0,0,18,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":312,"weaponSpeed":2.4,"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}]}, -{"id":35574,"name":"Chestplate of the Northern Lights","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,101,40,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}]}, -{"id":35575,"name":"Skarvald's Dragonskin Habergeon","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,60,79,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}]}, -{"id":35576,"name":"Ingvar's Monolithic Cleaver","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[56,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":498,"weaponSpeed":3.2,"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}]}, -{"id":35577,"name":"Holistic Patchwork Breeches","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,73,40,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}]}, -{"id":35578,"name":"Overlaid Chain Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,75,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}]}, -{"id":35579,"name":"Vrykul Shackles","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,27,59,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":206,"otherName":"Trash"}}]}, -{"id":35580,"name":"Skein Woven Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,71,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":206,"otherName":"Trash"}}]}, -{"id":35581,"name":"Rocket Boots Xtreme Lite","icon":"inv_gizmo_rocketboot_01","type":10,"armorType":1,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":112,"quality":3,"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46697}},{"crafted":{"profession":4,"spellId":46697}}]}, -{"id":35583,"name":"Witch Doctor's Wildstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,87,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":429,"weaponSpeed":2.4,"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}]}, -{"id":35584,"name":"Embroidered Gown of Zul'Drak","icon":"inv_chest_cloth_27","type":5,"armorType":1,"stats":[0,0,105,51,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}]}, -{"id":35585,"name":"Cannibal's Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,61,88,0,0,30,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}]}, -{"id":35587,"name":"Frozen Scepter of Necromancy","icon":"inv_mace_60","type":13,"weaponType":4,"handType":1,"stats":[0,0,51,0,35,0,0,0,0,0,0,0,0,0,366,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":184,"weaponDamageMax":342,"weaponSpeed":2.3,"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}]}, -{"id":35588,"name":"Forlorn Breastplate of War","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[54,0,61,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}]}, -{"id":35589,"name":"Arcane Focal Signet","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,63,28,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}]}, -{"id":35590,"name":"Drakkari Hunting Bow","icon":"inv_weapon_bow_34","type":14,"rangedWeaponType":1,"stats":[0,27,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":503,"weaponSpeed":2.6,"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}]}, -{"id":35591,"name":"Shoulderguards of the Ice Troll","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,50,78,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}]}, -{"id":35592,"name":"Hauberk of Totemic Mastery","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,118,52,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}]}, -{"id":35593,"name":"Steel Bear Trap Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[29,0,34,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}}]}, -{"id":35594,"name":"Snowmelt Silken Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,71,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}}]}, -{"id":35595,"name":"Glacier Sharpened Vileblade","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,29,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":208,"weaponSpeed":1.7,"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}]}, -{"id":35596,"name":"Attuned Crystalline Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,69,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}]}, -{"id":35597,"name":"Band of Glittering Permafrost","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,56,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}]}, -{"id":35598,"name":"Tome of the Lore Keepers","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,55,22,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}]}, -{"id":35599,"name":"Gauntlets of Serpent Scales","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,74,32,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}]}, -{"id":35600,"name":"Cleated Ice Boots","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,41,45,0,0,0,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}]}, -{"id":35601,"name":"Drakonid Arm Blade","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":3,"stats":[0,32,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}]}, -{"id":35602,"name":"Chiseled Stalagmite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[55,0,48,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}]}, -{"id":35603,"name":"Greaves of the Blue Flight","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,74,32,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}]}, -{"id":35604,"name":"Insulating Bindings","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,56,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}]}, -{"id":35605,"name":"Belt of Draconic Runes","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,65,32,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}]}, -{"id":35606,"name":"Blade of Nadox","icon":"inv_weapon_shortblade_35","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":205,"weaponSpeed":1.6,"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}]}, -{"id":35607,"name":"Ahn'kahar Handwraps","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,71,33,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}]}, -{"id":35608,"name":"Crawler-Emblem Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[0,0,80,33,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}]}, -{"id":35609,"name":"Talisman of Scourge Command","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,53,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}]}, -{"id":35610,"name":"Slasher's Amulet","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,0,0,0,0,25,45,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}]}, -{"id":35611,"name":"Gloves of the Blood Prince","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,71,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}]}, -{"id":35612,"name":"Mantle of Echoing Bats","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,71,33,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}]}, -{"id":35613,"name":"Pyramid Embossed Belt","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,46,62,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}]}, -{"id":35614,"name":"Volazj's Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[33,0,0,0,0,25,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}]}, -{"id":35615,"name":"Glowworm Cavern Bindings","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,60,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4494,"otherName":"Trash"}}]}, -{"id":35616,"name":"Spored Tendrils Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,45,47,0,0,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4494,"otherName":"Trash"}}]}, -{"id":35617,"name":"Wand of Shimmering Scales","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,0,22,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":1.8,"ilvl":159,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}]}, -{"id":35618,"name":"Troll Butcherer","icon":"inv_sword_95","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":352,"weaponDamageMax":528,"weaponSpeed":3.1,"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}]}, -{"id":35619,"name":"Infection Resistant Legguards","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,46,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}]}, -{"id":35620,"name":"Berserker's Horns","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,100,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}]}, -{"id":35630,"name":"Summoner's Stone Gavel","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,35,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":327,"weaponSpeed":2.3,"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}]}, -{"id":35631,"name":"Crystal Pendant of Warding","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,60,26,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}]}, -{"id":35632,"name":"Robes of Novos","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,96,46,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}]}, -{"id":35633,"name":"Staff of the Great Reptile","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,81,0,0,66,0,0,0,0,0,0,339,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":358,"weaponSpeed":2.1,"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}]}, -{"id":35634,"name":"Scabrous-Hide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,63,99,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}]}, -{"id":35635,"name":"Stable Master's Breeches","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,108,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}]}, -{"id":35636,"name":"Tharon'ja's Aegis","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,26,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}]}, -{"id":35637,"name":"Muradin's Lost Greaves","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[46,0,52,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}]}, -{"id":35638,"name":"Helmet of Living Flesh","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,61,67,0,0,0,46,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}]}, -{"id":35639,"name":"Brighthelm of Guarding","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,118,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":35640,"name":"Darkweb Bindings","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,34,42,0,0,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":35641,"name":"Scytheclaw Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,72,35,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":35642,"name":"Riot Shield","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[34,0,51,0,0,0,0,0,0,23,22,0,0,0,0,0,0,0,0,0,0,0,5851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29266,"zoneId":4415}}]}, -{"id":35643,"name":"Spaulders of Ichoron","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,85,36,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29313,"zoneId":4415}}]}, -{"id":35644,"name":"Xevozz's Belt","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,49,65,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29266,"zoneId":4415}}]}, -{"id":35645,"name":"Prison Warden's Shotgun","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":510,"weaponSpeed":2.7,"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29312,"zoneId":4415}}]}, -{"id":35646,"name":"Lava Burn Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,81,35,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29312,"zoneId":4415}}]}, -{"id":35647,"name":"Handguards of Rapid Pursuit","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,49,71,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29313,"zoneId":4415}}]}, -{"id":35649,"name":"Jailer's Baton","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,68,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":279,"weaponDamageMax":419,"weaponSpeed":2.4,"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}]}, -{"id":35650,"name":"Boots of the Portal Guardian","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,0,85,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}]}, -{"id":35651,"name":"Plate Claws of the Dragon","icon":"inv_gauntlets_01","type":7,"armorType":4,"stats":[55,0,51,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}]}, -{"id":35652,"name":"Incessant Torch","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":258,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":35653,"name":"Girdle of the Mystical Prison","icon":"inv_belt_28","type":8,"armorType":4,"stats":[36,0,40,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":35654,"name":"Bindings of the Bastille","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,57,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":35655,"name":"Cobweb Machete","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":141,"weaponDamageMax":213,"weaponSpeed":1.7,"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}]}, -{"id":35656,"name":"Aura Focused Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,75,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}]}, -{"id":35657,"name":"Exquisite Spider-Silk Footwraps","icon":"inv_boots_cloth_20","type":10,"armorType":1,"stats":[0,0,66,31,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}]}, -{"id":35658,"name":"Life-Staff of the Web Lair","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,0,60,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":391,"weaponSpeed":2.4,"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}]}, -{"id":35659,"name":"Treads of Aspiring Heights","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,45,68,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}]}, -{"id":35660,"name":"Spinneret Epaulets","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,65,33,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}]}, -{"id":35661,"name":"Signet of Arachnathid Command","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[30,0,46,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}]}, -{"id":35662,"name":"Wing Cover Girdle","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,62,34,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}]}, -{"id":35663,"name":"Charmed Silken Cord","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,64,32,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}]}, -{"id":35664,"name":"Unknown Archaeologist's Hammer","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,18,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":217,"weaponSpeed":1.6,"ilvl":163,"quality":3}, -{"id":35665,"name":"Soothing Lichen Wraps","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,56,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3}, -{"id":35666,"name":"Mark of the Spider","icon":"ability_hunter_pet_spider","type":2,"stats":[0,0,48,24,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3}, -{"id":35670,"name":"Brann's Lost Mining Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[52,0,60,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}]}, -{"id":35672,"name":"Hollow Geode Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,132,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}]}, -{"id":35673,"name":"Leggings of Burning Gleam","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,108,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}]}, -{"id":35675,"name":"Linked Armor of the Sphere","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,68,88,0,0,28,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}]}, -{"id":35676,"name":"Constellation Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,71,95,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,876,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}]}, -{"id":35677,"name":"Cosmos Vestments","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,119,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}]}, -{"id":35678,"name":"Ironshaper's Legplates","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,132,52,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}]}, -{"id":35679,"name":"Static Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,119,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}]}, -{"id":35680,"name":"Amulet of Wills","icon":"inv_jewelry_necklace_41","type":2,"stats":[36,0,55,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}]}, -{"id":35681,"name":"Unrelenting Blade","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,47,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":211,"weaponSpeed":1.5,"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":35682,"name":"Rune Giant Bindings","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,70,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":35683,"name":"Palladium Ring","icon":"inv_gizmo_hardenedadamantitetube","type":11,"stats":[0,0,54,0,0,0,36,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":35693,"name":"Figurine - Empyrean Tortoise","icon":"ability_hunter_pet_turtle","type":12,"stats":[0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46775}},{"crafted":{"profession":7,"spellId":46775}}]}, -{"id":35694,"name":"Figurine - Khorium Boar","icon":"inv_jewelcrafting_truesilverboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46776}},{"crafted":{"profession":7,"spellId":46776}}]}, -{"id":35700,"name":"Figurine - Crimson Serpent","icon":"inv_jewelcrafting_rubyserpent","type":12,"stats":[0,0,49,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46777}},{"crafted":{"profession":7,"spellId":46777}}]}, -{"id":35702,"name":"Figurine - Shadowsong Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46778}},{"crafted":{"profession":7,"spellId":46778}}]}, -{"id":35703,"name":"Figurine - Seaspray Albatross","icon":"inv_qirajidol_obsidian","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46779}},{"crafted":{"profession":7,"spellId":46779}}]}, -{"id":35733,"name":"Ring of Harmonic Beauty","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}]}, -{"id":35748,"name":"Guardian's Alchemist Stone","icon":"classic_spell_nature_healingway","type":12,"stats":[0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47046}},{"crafted":{"profession":1,"spellId":47046}}]}, -{"id":35749,"name":"Sorcerer's Alchemist Stone","icon":"classic_spell_nature_healingway","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47048}},{"crafted":{"profession":1,"spellId":47048}}]}, -{"id":35750,"name":"Redeemer's Alchemist Stone","icon":"classic_spell_nature_healingway","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47049}},{"crafted":{"profession":1,"spellId":47049}}]}, -{"id":35751,"name":"Assassin's Alchemist Stone","icon":"classic_spell_nature_healingway","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47050}},{"crafted":{"profession":1,"spellId":47050}}]}, -{"id":35807,"name":"Bramblethorn Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35808,"name":"Coldstone Cutlass","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35809,"name":"Earthspike","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,37,0,0,11,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":1.5,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35810,"name":"Pacifying Pummeler","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,27,0,22,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.2,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35811,"name":"Elekk-Horn Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35812,"name":"Cragthumper","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[25,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":489,"weaponSpeed":3.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35814,"name":"Benevolent Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,45,22,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35815,"name":"Bone-Threaded Harness","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,35,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35816,"name":"Blood-Stained Chain Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,33,50,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11290,"name":"Dragonflayer Battle Plans"}}],"factionRestriction":1}, -{"id":35817,"name":"Nerubian Inner Husk","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[18,0,45,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35818,"name":"Stretch-Hide Spaulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35820,"name":"Deacon's Wraps","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35821,"name":"Streamlined Stompers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,36,0,0,0,38,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35822,"name":"Scavenged Tirasian Plate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35823,"name":"Ice-Rimed Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,11,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":154,"weaponSpeed":1.4,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35824,"name":"Stoneblade Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,24,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35826,"name":"Whelpling-Skull Zapper","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,25,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35827,"name":"Regal Sceptre","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35829,"name":"Coldspike Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,8,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":416,"weaponSpeed":2.9,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35830,"name":"Worn Vrykul Smasher","icon":"inv_gauntlets_05","type":13,"weaponType":3,"handType":3,"stats":[18,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35832,"name":"Blauvelt's Special Occasion Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,27,22,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35833,"name":"Imperious Worghide Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,36,31,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35834,"name":"Nimblefinger Scaled Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,59,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35835,"name":"Antique Reinforced Legguards","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[58,0,33,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35839,"name":"Runed Clamshell Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35841,"name":"Frost-Trimmed Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,21,16,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35842,"name":"Azure Chain Hauberk","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,52,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35843,"name":"Ramshorn-Inlaid Shoulders","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[21,0,16,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35844,"name":"Shock-Resistant Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,30,26,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35845,"name":"Crystalline Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.5,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35846,"name":"Banded Chain Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35848,"name":"Munificent Legguards","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,33,30,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35849,"name":"Featherweight Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,48,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":489,"weaponSpeed":3.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35851,"name":"Acid-Etched Knuckles","icon":"inv_gauntlets_05","type":13,"weaponType":3,"handType":1,"stats":[0,0,27,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35852,"name":"Fullered Coldsteel Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,11,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.8,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35856,"name":"Hair-Trigger Blunderbuss","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,0,22,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35857,"name":"Munificent Bulwark","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,14,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35858,"name":"Tome of Alacrity","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,20,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35859,"name":"Fire-Purifying Tunic","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35860,"name":"Flexible Leather Footwraps","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,21,18,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35861,"name":"Inescapable Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,24,21,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35862,"name":"Light-Bound Chestguard","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,89,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35863,"name":"Earth-Infused Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,53,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35864,"name":"Fizznik's Patented Earwarmer","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,52,45,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35865,"name":"Arcanum Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,23,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35866,"name":"Master Artilleryman Boots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[24,0,22,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35867,"name":"Nimblefinger Band","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,18,16,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11282,"name":"A Lesson in Fear"}}],"factionRestriction":2}, -{"id":35868,"name":"Grounded Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,48,52,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11282,"name":"A Lesson in Fear"}}],"factionRestriction":2}, -{"id":35869,"name":"Hex-Linked Stronghelm","icon":"inv_helmet_124","type":1,"armorType":3,"stats":[0,30,33,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11282,"name":"A Lesson in Fear"}}],"factionRestriction":2}, -{"id":35870,"name":"Stoneground Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,61,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11282,"name":"A Lesson in Fear"}}],"factionRestriction":2}, -{"id":35871,"name":"Indigo Robe of Replenishment","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,31,32,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35872,"name":"Iron-Studded Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,32,31,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35873,"name":"Interlinked Chain Girdle","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35875,"name":"Beneficent Skullcap","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,30,31,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35876,"name":"Talbuk Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,14,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":35877,"name":"Worgskin Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,21,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35878,"name":"Dusk-Linked Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,53,45,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35879,"name":"Gold-Plated Coldsteel Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[21,0,0,0,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35880,"name":"Earthwell Footwraps","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,62,20,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35881,"name":"Lost Vrykul Signet","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,18,0,0,30,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35882,"name":"Magispike Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,80,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35883,"name":"Silversteel Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,21,16,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35884,"name":"Regal Pantaloons","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,53,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35885,"name":"Tribal Chestguard","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,33,30,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35886,"name":"Worgtooth Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,52,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35887,"name":"Loam-Stained Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,62,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35888,"name":"Embossed Ermine Girdle","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,24,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35889,"name":"Bone-Inlaid Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,30,24,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35890,"name":"Magdun Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35891,"name":"Runeplate Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[37,0,36,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35892,"name":"Flamebinder Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,26,27,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35893,"name":"Coldstone-Inlaid Waistguard","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,36,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35894,"name":"Purestrike Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,16,18,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35895,"name":"Emeraldscale Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,22,24,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35896,"name":"Icestriker Bands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,40,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35897,"name":"Ice-Crusted Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,18,0,0,0,20,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35898,"name":"Reinforced Tuskhide Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,32,0,0,52,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35899,"name":"Bloodbinder's Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,22,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35900,"name":"Supple Doeskin Moccasins","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,18,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35901,"name":"Rejuvenating Cord","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,24,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35902,"name":"Shock-Bound Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,37,38,12,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35903,"name":"Onyx Grips","icon":"inv_gauntlets_14","type":7,"armorType":4,"stats":[21,0,0,0,0,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35904,"name":"Puissance-Infused Pendant","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,18,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35905,"name":"Vinewoven Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,48,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35909,"name":"Sun-Fired Striders","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35910,"name":"Shaleground Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[20,0,19,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35911,"name":"Unsparing Band","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,29,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35912,"name":"Crackling Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,24,18,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35913,"name":"Gholamweave Leggings","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,82,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35914,"name":"Proto-Drake Tooth Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,38,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35915,"name":"Darksteel Ringmail Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,24,21,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35916,"name":"Worgblood Berserker's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[34,0,42,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35917,"name":"Wrathwrought Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,20,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11240,"name":"Leader of the Deranged"}}],"factionRestriction":1}, -{"id":35918,"name":"Spiked Skullguard","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,30,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11240,"name":"Leader of the Deranged"}}],"factionRestriction":1}, -{"id":35919,"name":"Whispersteel Handguards","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,39,18,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11240,"name":"Leader of the Deranged"}}],"factionRestriction":1}, -{"id":35920,"name":"Feather-Lined Shoulderpads","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[39,0,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11240,"name":"Leader of the Deranged"}}],"factionRestriction":1}, -{"id":35921,"name":"Flint-Reinforced Spaulders","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,25,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11182,"name":"Root Causes"}}]}, -{"id":35922,"name":"Dark Iron Signet","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,18,0,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11182,"name":"Root Causes"}}]}, -{"id":35923,"name":"Cold-Iron Armbands","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,47,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11182,"name":"Root Causes"}}]}, -{"id":35924,"name":"Arcanum-Bound Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,24,12,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11182,"name":"Root Causes"}}]}, -{"id":35925,"name":"Shimmering Cold-Iron Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,32,19,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35926,"name":"Artfully Tooled Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,48,51,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35927,"name":"Songscale Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,53,33,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35928,"name":"Cold-Forged Bronze Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[22,0,45,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35929,"name":"Gholamcloth Wrap","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,59,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35930,"name":"Inscribed Worghide Treads","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,60,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35931,"name":"Appointed Scalemail Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,0,31,26,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35932,"name":"Earthbinder's Regenerating Band","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,12,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35933,"name":"Ramshorn Greathelm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,34,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35934,"name":"Ghoul-Crushing Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[21,0,24,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35935,"name":"Infused Coldstone Rune","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35936,"name":"Worg-Fang Talisman","icon":"inv_weapon_hand_03","type":2,"stats":[0,0,22,0,0,0,19,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35937,"name":"Braxley's Backyard Moonshine","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35938,"name":"Drape of Munificence","icon":"inv_misc_cape_20","type":4,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":35955,"name":"Farshire Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35956,"name":"Farshire Footpads","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35957,"name":"Farshire Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35958,"name":"Farshire Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35959,"name":"Farshire Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35960,"name":"Farshire Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35961,"name":"Farshire Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35962,"name":"Farshire Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":130,"quality":2}, -{"id":35963,"name":"Bloodspore Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35964,"name":"Bloodspore Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35965,"name":"Bloodspore Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35966,"name":"Bloodspore Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35967,"name":"Bloodspore Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35968,"name":"Bloodspore Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35969,"name":"Bloodspore Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35970,"name":"Bloodspore Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":134,"quality":2}, -{"id":35971,"name":"Mur'ghoul Girdle","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35972,"name":"Mur'ghoul Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35973,"name":"Mur'ghoul Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35974,"name":"Mur'ghoul Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35975,"name":"Mur'ghoul Cap","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35976,"name":"Mur'ghoul Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35977,"name":"Mur'ghoul Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35978,"name":"Mur'ghoul Wristwraps","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":138,"quality":2}, -{"id":35979,"name":"Foothold Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35980,"name":"Foothold Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35981,"name":"Foothold Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35982,"name":"Foothold Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35983,"name":"Foothold Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35984,"name":"Foothold Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35985,"name":"Foothold Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35986,"name":"Foothold Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":142,"quality":2}, -{"id":35987,"name":"Bristlepine Cord","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35988,"name":"Bristlepine Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35989,"name":"Bristlepine Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35990,"name":"Bristlepine Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35991,"name":"Bristlepine Headpiece","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35992,"name":"Bristlepine Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35993,"name":"Bristlepine Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35994,"name":"Bristlepine Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":146,"quality":2}, -{"id":35995,"name":"Voldrune Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":35996,"name":"Voldrune Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":35997,"name":"Voldrune Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":35998,"name":"Voldrune Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":35999,"name":"Voldrune Crown","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":36000,"name":"Voldrune Legs","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":36001,"name":"Voldrune Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":36002,"name":"Voldrune Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":150,"quality":2}, -{"id":36003,"name":"Icemist Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36004,"name":"Icemist Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36005,"name":"Icemist Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36006,"name":"Icemist Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36007,"name":"Icemist Circlet","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36008,"name":"Icemist Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36009,"name":"Icemist Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36010,"name":"Icemist Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":154,"quality":2}, -{"id":36011,"name":"Tethys Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36012,"name":"Tethys Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36013,"name":"Tethys Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36014,"name":"Tethys Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36015,"name":"Tethys Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36016,"name":"Tethys Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36017,"name":"Tethys Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36018,"name":"Tethys Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":158,"quality":2}, -{"id":36019,"name":"Aerie Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36020,"name":"Aerie Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36021,"name":"Aerie Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36022,"name":"Aerie Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36023,"name":"Aerie Headpiece","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36024,"name":"Aerie Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36025,"name":"Aerie Shoulderpads","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36026,"name":"Aerie Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":162,"quality":2}, -{"id":36027,"name":"Oracle Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36028,"name":"Oracle Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36029,"name":"Oracle Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36030,"name":"Oracle Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36031,"name":"Oracle Circlet","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36032,"name":"Oracle Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36033,"name":"Oracle Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36034,"name":"Oracle Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":166,"quality":2}, -{"id":36035,"name":"Condor Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36036,"name":"Condor Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36037,"name":"Condor Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36038,"name":"Condor Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36039,"name":"Condor Headpiece","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36040,"name":"Condor Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36041,"name":"Condor Shoulderpads","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36042,"name":"Condor Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":170,"quality":2}, -{"id":36043,"name":"Crystalsong Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36044,"name":"Crystalsong Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36045,"name":"Crystalsong Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36046,"name":"Crystalsong Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36047,"name":"Crystalsong Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36048,"name":"Crystalsong Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36049,"name":"Crystalsong Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36050,"name":"Crystalsong Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":174,"quality":2}, -{"id":36051,"name":"Vizier Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36052,"name":"Vizier Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36053,"name":"Vizier Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36054,"name":"Vizier Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36055,"name":"Vizier Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36056,"name":"Vizier Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36057,"name":"Vizier Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36058,"name":"Vizier Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":178,"quality":2}, -{"id":36059,"name":"Coldwraith Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36060,"name":"Coldwraith Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36061,"name":"Coldwraith Robe","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36062,"name":"Coldwraith Handwraps","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36063,"name":"Coldwraith Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36064,"name":"Coldwraith Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36065,"name":"Coldwraith Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36066,"name":"Coldwraith Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":182,"quality":2}, -{"id":36067,"name":"Daggercap Waistband","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36068,"name":"Daggercap Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36069,"name":"Daggercap Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36070,"name":"Daggercap Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36071,"name":"Daggercap Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36072,"name":"Daggercap Trousers","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36073,"name":"Daggercap Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36074,"name":"Daggercap Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":130,"quality":2}, -{"id":36075,"name":"Winterfin Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36076,"name":"Winterfin Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36077,"name":"Winterfin Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36078,"name":"Winterfin Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36079,"name":"Winterfin Cowl","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36080,"name":"Winterfin Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36081,"name":"Winterfin Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36082,"name":"Winterfin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":134,"quality":2}, -{"id":36083,"name":"Riplash Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36084,"name":"Riplash Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36085,"name":"Riplash Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36086,"name":"Riplash Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36087,"name":"Riplash Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36088,"name":"Riplash Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36089,"name":"Riplash Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36090,"name":"Riplash Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":138,"quality":2}, -{"id":36091,"name":"Wildevar Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36092,"name":"Wildevar Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36093,"name":"Wildevar Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36094,"name":"Wildevar Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36095,"name":"Wildevar Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36096,"name":"Wildevar Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36097,"name":"Wildevar Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36098,"name":"Wildevar Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":142,"quality":2}, -{"id":36099,"name":"Caribou Waistband","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36100,"name":"Caribou Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36101,"name":"Caribou Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36102,"name":"Caribou Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36103,"name":"Caribou Cowl","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36104,"name":"Caribou Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36105,"name":"Caribou Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36106,"name":"Caribou Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":146,"quality":2}, -{"id":36107,"name":"Vileprey Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36108,"name":"Vileprey Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36109,"name":"Vileprey Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36110,"name":"Vileprey Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36111,"name":"Vileprey Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36112,"name":"Vileprey Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36113,"name":"Vileprey Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36114,"name":"Vileprey Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":150,"quality":2}, -{"id":36115,"name":"Taunka Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36116,"name":"Taunka Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36117,"name":"Taunka Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36118,"name":"Taunka Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36119,"name":"Taunka Hat","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36120,"name":"Taunka Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36121,"name":"Taunka Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36122,"name":"Taunka Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":154,"quality":2}, -{"id":36123,"name":"Muradin Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36124,"name":"Muradin Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36125,"name":"Muradin Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36126,"name":"Muradin Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36127,"name":"Muradin Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36128,"name":"Muradin Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36129,"name":"Muradin Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36130,"name":"Muradin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":158,"quality":2}, -{"id":36131,"name":"Wolverine Girdle","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36132,"name":"Wolverine Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36133,"name":"Wolverine Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36134,"name":"Wolverine Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36135,"name":"Wolverine Cap","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36136,"name":"Wolverine Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36137,"name":"Wolverine Shoulderguards","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36138,"name":"Wolverine Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":162,"quality":2}, -{"id":36139,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36140,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36141,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36142,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36143,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36144,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36145,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36146,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":166,"quality":2}, -{"id":36147,"name":"Pygmy Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36148,"name":"Pygmy Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36149,"name":"Pygmy Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36150,"name":"Pygmy Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36151,"name":"Pygmy Helmet","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36152,"name":"Pygmy Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36153,"name":"Pygmy Shoulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36154,"name":"Pygmy Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":170,"quality":2}, -{"id":36155,"name":"Wendigo Girdle","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36156,"name":"Wendigo Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36157,"name":"Wendigo Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36158,"name":"Wendigo Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36159,"name":"Wendigo Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36160,"name":"Wendigo Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36161,"name":"Wendigo Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36162,"name":"Wendigo Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":174,"quality":2}, -{"id":36163,"name":"Webspinner Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36164,"name":"Webspinner Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36165,"name":"Webspinner Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36166,"name":"Webspinner Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36167,"name":"Webspinner Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36168,"name":"Webspinner Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36169,"name":"Webspinner Shoulderguards","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36170,"name":"Webspinner Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":178,"quality":2}, -{"id":36171,"name":"Geist Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36172,"name":"Geist Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36173,"name":"Geist Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36174,"name":"Geist Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36175,"name":"Geist Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36176,"name":"Geist Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36177,"name":"Geist Shoulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36178,"name":"Geist Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":182,"quality":2}, -{"id":36179,"name":"Garmaul Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36180,"name":"Garmaul Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36181,"name":"Garmaul Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36182,"name":"Garmaul Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36183,"name":"Garmaul Helmet","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36184,"name":"Garmaul Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36185,"name":"Garmaul Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36186,"name":"Garmaul Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":130,"quality":2}, -{"id":36187,"name":"Njord Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36188,"name":"Njord Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36189,"name":"Njord Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36190,"name":"Njord Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36191,"name":"Njord Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36192,"name":"Njord Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36193,"name":"Njord Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36194,"name":"Njord Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":134,"quality":2}, -{"id":36195,"name":"Skom Stitched-Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36196,"name":"Skom Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36197,"name":"Skom Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36198,"name":"Skom Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36199,"name":"Skom Helm","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36200,"name":"Skom Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36201,"name":"Skom Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36202,"name":"Skom Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":138,"quality":2}, -{"id":36203,"name":"Nifflevar Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36204,"name":"Nifflevar Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36205,"name":"Nifflevar Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36206,"name":"Nifflevar Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36207,"name":"Nifflevar Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36208,"name":"Nifflevar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36209,"name":"Nifflevar Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36210,"name":"Nifflevar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":142,"quality":2}, -{"id":36211,"name":"Orca Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36212,"name":"Orca Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36213,"name":"Orca Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36214,"name":"Orca Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36215,"name":"Orca Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36216,"name":"Orca Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36217,"name":"Orca Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36218,"name":"Orca Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":146,"quality":2}, -{"id":36219,"name":"Amberpine Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36220,"name":"Amberpine Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36221,"name":"Amberpine Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36222,"name":"Amberpine Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36223,"name":"Amberpine Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36224,"name":"Amberpine Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36225,"name":"Amberpine Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36226,"name":"Amberpine Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":150,"quality":2}, -{"id":36227,"name":"Trapper Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36228,"name":"Trapper Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36229,"name":"Trapper Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36230,"name":"Trapper Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36231,"name":"Trapper Helm","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36232,"name":"Trapper Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36233,"name":"Trapper Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36234,"name":"Trapper Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":154,"quality":2}, -{"id":36235,"name":"Shoveltusk Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36236,"name":"Shoveltusk Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36237,"name":"Shoveltusk Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36238,"name":"Shoveltusk Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36239,"name":"Shoveltusk Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36240,"name":"Shoveltusk Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36241,"name":"Shoveltusk Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36242,"name":"Shoveltusk Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":158,"quality":2}, -{"id":36243,"name":"Mammoth Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36244,"name":"Mammoth Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36245,"name":"Mammoth Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36246,"name":"Mammoth Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36247,"name":"Mammoth Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36248,"name":"Mammoth Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36249,"name":"Mammoth Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36250,"name":"Mammoth Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":162,"quality":2}, -{"id":36251,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36252,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36253,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36254,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36255,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36256,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36257,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36258,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":166,"quality":2}, -{"id":36259,"name":"Cormorant Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36260,"name":"Cormorant Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36261,"name":"Cormorant Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36262,"name":"Cormorant Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36263,"name":"Cormorant Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36264,"name":"Cormorant Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36265,"name":"Cormorant Mantle","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36266,"name":"Cormorant Bracelets","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":170,"quality":2}, -{"id":36267,"name":"Ulduar Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36268,"name":"Ulduar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36269,"name":"Ulduar Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36270,"name":"Ulduar Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36271,"name":"Ulduar Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36272,"name":"Ulduar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36273,"name":"Ulduar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36274,"name":"Ulduar Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":174,"quality":2}, -{"id":36275,"name":"Spiderlord Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36276,"name":"Spiderlord Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36277,"name":"Spiderlord Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36278,"name":"Spiderlord Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36279,"name":"Spiderlord Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36280,"name":"Spiderlord Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36281,"name":"Spiderlord Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36282,"name":"Spiderlord Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":178,"quality":2}, -{"id":36283,"name":"Spectral Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36284,"name":"Spectral Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36285,"name":"Spectral Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36286,"name":"Spectral Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36287,"name":"Spectral Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36288,"name":"Spectral Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36289,"name":"Spectral Mantle","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36290,"name":"Spectral Bracelets","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":182,"quality":2}, -{"id":36291,"name":"Westguard Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36292,"name":"Westguard Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36293,"name":"Westguard Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36294,"name":"Westguard Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,664,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36295,"name":"Westguard Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36296,"name":"Westguard Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36297,"name":"Westguard Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36298,"name":"Westguard Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":130,"quality":2}, -{"id":36299,"name":"Coldrock Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36300,"name":"Coldrock Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36301,"name":"Coldrock Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36302,"name":"Coldrock Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36303,"name":"Coldrock Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36304,"name":"Coldrock Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36305,"name":"Coldrock Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36306,"name":"Coldrock Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":134,"quality":2}, -{"id":36307,"name":"Baleheim Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36308,"name":"Baleheim Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36309,"name":"Baleheim Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36310,"name":"Baleheim Gloves","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36311,"name":"Baleheim Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36312,"name":"Baleheim Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36313,"name":"Baleheim Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36314,"name":"Baleheim Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":138,"quality":2}, -{"id":36315,"name":"Wyrmskull Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36316,"name":"Wyrmskull Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36317,"name":"Wyrmskull Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36318,"name":"Wyrmskull Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36319,"name":"Wyrmskull Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36320,"name":"Wyrmskull Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36321,"name":"Wyrmskull Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36322,"name":"Wyrmskull Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":142,"quality":2}, -{"id":36323,"name":"Halgrind Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36324,"name":"Halgrind Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36325,"name":"Halgrind Carapace","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36326,"name":"Halgrind Gloves","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36327,"name":"Halgrind Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36328,"name":"Halgrind Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36329,"name":"Halgrind Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36330,"name":"Halgrind Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":146,"quality":2}, -{"id":36331,"name":"Grizzlemaw Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36332,"name":"Grizzlemaw Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36333,"name":"Grizzlemaw Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36334,"name":"Grizzlemaw Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36335,"name":"Grizzlemaw Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36336,"name":"Grizzlemaw Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36337,"name":"Grizzlemaw Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36338,"name":"Grizzlemaw Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":150,"quality":2}, -{"id":36339,"name":"Bloodmar Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36340,"name":"Bloodmar Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36341,"name":"Bloodmar Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36342,"name":"Bloodmar Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36343,"name":"Bloodmar Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36344,"name":"Bloodmar Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36345,"name":"Bloodmar Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36346,"name":"Bloodmar Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":154,"quality":2}, -{"id":36347,"name":"Jormungar Girdle","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36348,"name":"Jormungar Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36349,"name":"Jormungar Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36350,"name":"Jormungar Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36351,"name":"Jormungar Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36352,"name":"Jormungar Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36353,"name":"Jormungar Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36354,"name":"Jormungar Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":158,"quality":2}, -{"id":36355,"name":"Frostpaw Belt","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36356,"name":"Frostpaw Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36357,"name":"Frostpaw Armor","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36358,"name":"Frostpaw Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36359,"name":"Frostpaw Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36360,"name":"Frostpaw Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36361,"name":"Frostpaw Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36362,"name":"Frostpaw Vambraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":162,"quality":2}, -{"id":36363,"name":"Magnataur Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36364,"name":"Magnataur Sabatons","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36365,"name":"Magnataur Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36366,"name":"Magnataur Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36367,"name":"Magnataur Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36368,"name":"Magnataur Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36369,"name":"Magnataur Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36370,"name":"Magnataur Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":166,"quality":2}, -{"id":36371,"name":"Kraken Girdle","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36372,"name":"Kraken Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36373,"name":"Kraken Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36374,"name":"Kraken Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36375,"name":"Kraken Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36376,"name":"Kraken Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36377,"name":"Kraken Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36378,"name":"Kraken Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":170,"quality":2}, -{"id":36379,"name":"Golem Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36380,"name":"Golem Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36381,"name":"Golem Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36382,"name":"Golem Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36383,"name":"Golem Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36384,"name":"Golem Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36385,"name":"Golem Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36386,"name":"Golem Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":2}, -{"id":36387,"name":"Revenant Belt","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36388,"name":"Revenant Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36389,"name":"Revenant Armor","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36390,"name":"Revenant Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36391,"name":"Revenant Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36392,"name":"Revenant Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36393,"name":"Revenant Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36394,"name":"Revenant Bracers","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":178,"quality":2}, -{"id":36395,"name":"Necropolis Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36396,"name":"Necropolis Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36397,"name":"Necropolis Breastplate","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36398,"name":"Necropolis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36399,"name":"Necropolis Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36400,"name":"Necropolis Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36401,"name":"Necropolis Epaulets","icon":"inv_shoulder_15","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36402,"name":"Necropolis Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":182,"quality":2}, -{"id":36403,"name":"Riding Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":130,"quality":2}, -{"id":36404,"name":"Suede Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":134,"quality":2}, -{"id":36405,"name":"Double Cape","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":138,"quality":2}, -{"id":36406,"name":"Wayfarer's Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":142,"quality":2}, -{"id":36407,"name":"Lace-Trimmed Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":146,"quality":2}, -{"id":36408,"name":"Reversible Wool Cape","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":150,"quality":2}, -{"id":36409,"name":"Crushed Velvet Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":154,"quality":2}, -{"id":36410,"name":"Caribou Skin Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":158,"quality":2}, -{"id":36411,"name":"Brawler's Cape","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":162,"quality":2}, -{"id":36412,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":166,"quality":2}, -{"id":36413,"name":"Dyed Taffeta Cape","icon":"inv_misc_cape_18","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":170,"quality":2}, -{"id":36414,"name":"Mammoth Fur Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":174,"quality":2}, -{"id":36415,"name":"Vintage Satin Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":178,"quality":2}, -{"id":36416,"name":"Regal Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-38,-36,-35,-34,-33,-32,-31,-27,-26,-25,-24,-22,-20,-19,-18,-17,-16,-15,-14,-12,-11,-10,-9,-8,-7,-6,-5,-42,-37,-23,-21,-13],"ilvl":182,"quality":2}, -{"id":36417,"name":"Oval Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":130,"quality":2}, -{"id":36418,"name":"Floral Loop","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":134,"quality":2}, -{"id":36419,"name":"Glass Ring","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":138,"quality":2}, -{"id":36420,"name":"Gemstone Ring","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":142,"quality":2}, -{"id":36421,"name":"Devotional Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":146,"quality":2}, -{"id":36422,"name":"Filigree Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":150,"quality":2}, -{"id":36423,"name":"Posy Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":154,"quality":2}, -{"id":36424,"name":"Cameo Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":158,"quality":2}, -{"id":36425,"name":"Gold Twisted Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":162,"quality":2}, -{"id":36426,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":166,"quality":2}, -{"id":36427,"name":"Engraved Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":170,"quality":2}, -{"id":36428,"name":"Bouquet Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":174,"quality":2}, -{"id":36429,"name":"Spur Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":178,"quality":2}, -{"id":36430,"name":"Puzzle Ring","icon":"inv_jewelry_ring_32","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":182,"quality":2}, -{"id":36431,"name":"Painted Wooden Beads","icon":"inv_misc_gem_variety_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":130,"quality":2}, -{"id":36432,"name":"Silver Rope Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":134,"quality":2}, -{"id":36433,"name":"Snake Entwined Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":138,"quality":2}, -{"id":36434,"name":"Gold Mesh Collar","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":142,"quality":2}, -{"id":36435,"name":"Embroidered Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":146,"quality":2}, -{"id":36436,"name":"Jasper Bead Necklace","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":150,"quality":2}, -{"id":36437,"name":"Figaro Chain","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":154,"quality":2}, -{"id":36438,"name":"Shark-Toothed Necklace","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":158,"quality":2}, -{"id":36439,"name":"Serpentine Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":162,"quality":2}, -{"id":36440,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":166,"quality":2}, -{"id":36441,"name":"Pearl Woven Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":170,"quality":2}, -{"id":36442,"name":"Silken Cord Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":174,"quality":2}, -{"id":36443,"name":"Platinum Medallion","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":178,"quality":2}, -{"id":36444,"name":"Ice Encrusted Amulet","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"ilvl":182,"quality":2}, -{"id":36445,"name":"Riveted Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":130,"quality":2}, -{"id":36446,"name":"Forged-Iron Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":134,"quality":2}, -{"id":36447,"name":"Kaskala Buckler","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":138,"quality":2}, -{"id":36448,"name":"Spiked Targe","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":142,"quality":2}, -{"id":36449,"name":"Vrykul Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":146,"quality":2}, -{"id":36450,"name":"Strapped Heater Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":150,"quality":2}, -{"id":36451,"name":"Kamagua Shield","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":154,"quality":2}, -{"id":36452,"name":"Spoke Shield","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":158,"quality":2}, -{"id":36453,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":162,"quality":2}, -{"id":36454,"name":"Domed Buckler","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":166,"quality":2}, -{"id":36455,"name":"Plated Bulwark","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":170,"quality":2}, -{"id":36456,"name":"Icy Kite Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":174,"quality":2}, -{"id":36457,"name":"Ivory Shield","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":178,"quality":2}, -{"id":36458,"name":"Frozen Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-47,-45,-44,-43,-41,-39,-36,-35,-34,-33,-32,-31,-27,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-26,-24],"ilvl":182,"quality":2}, -{"id":36459,"name":"Icy Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":130,"quality":2}, -{"id":36460,"name":"Northern Star","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":134,"quality":2}, -{"id":36461,"name":"Demon-Skull Orb","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":138,"quality":2}, -{"id":36462,"name":"Coldarra Crystal","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":142,"quality":2}, -{"id":36463,"name":"Polished Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":146,"quality":2}, -{"id":36464,"name":"Darkened Scepter","icon":"inv_wand_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":150,"quality":2}, -{"id":36465,"name":"Evergreen Branch","icon":"inv_misc_herb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":154,"quality":2}, -{"id":36466,"name":"Facetted Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":158,"quality":2}, -{"id":36467,"name":"Reflecting Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":162,"quality":2}, -{"id":36468,"name":"Glistening Star","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":166,"quality":2}, -{"id":36469,"name":"Lidless Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":170,"quality":2}, -{"id":36470,"name":"Gilded Scepter","icon":"inv_wand_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":174,"quality":2}, -{"id":36471,"name":"Ice Crystal","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":178,"quality":2}, -{"id":36472,"name":"Carved Rod","icon":"inv_misc_branch_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-39,-38,-37,-36,-35,-33,-32,-31,-25,-24,-22,-19,-16,-15,-9,-8,-6,-34,-23,-21,-26],"ilvl":182,"quality":2}, -{"id":36473,"name":"Pioneer's Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":130,"quality":2}, -{"id":36474,"name":"Engraved Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":1.7,"ilvl":134,"quality":2}, -{"id":36475,"name":"Seal Shortblade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":138,"quality":2}, -{"id":36476,"name":"Whale Ripper","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.7,"ilvl":142,"quality":2}, -{"id":36477,"name":"Twin-Edged Stiletto","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2}, -{"id":36478,"name":"Frosty Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.7,"ilvl":150,"quality":2}, -{"id":36479,"name":"Snobold Ripper","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.7,"ilvl":154,"quality":2}, -{"id":36480,"name":"Ebony Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.7,"ilvl":158,"quality":2}, -{"id":36481,"name":"Trapper Knife","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":162,"quality":2}, -{"id":36482,"name":"Parrying Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":36483,"name":"Mandible Edge","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":1.7,"ilvl":170,"quality":2}, -{"id":36484,"name":"Etched Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":174,"quality":2}, -{"id":36485,"name":"Sinuous Keris","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.7,"ilvl":178,"quality":2}, -{"id":36486,"name":"Ornate Pugio","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-19,-18,-16,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-44,-43,-39,-17,-12],"weaponDamageMin":127,"weaponDamageMax":236,"weaponSpeed":1.7,"ilvl":182,"quality":2}, -{"id":36487,"name":"Stone-Headed Gavel","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.6,"ilvl":130,"quality":2}, -{"id":36488,"name":"Conifer Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":2.6,"ilvl":134,"quality":2}, -{"id":36489,"name":"Iron Flanged Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2}, -{"id":36490,"name":"Tuskarr Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.6,"ilvl":142,"quality":2}, -{"id":36491,"name":"Serrated Maul","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2}, -{"id":36492,"name":"Peaked Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.6,"ilvl":150,"quality":2}, -{"id":36493,"name":"Furbolg Truncheon","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2}, -{"id":36494,"name":"Barbed Star","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.6,"ilvl":158,"quality":2}, -{"id":36495,"name":"Ferrous Hammer","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":162,"quality":2}, -{"id":36496,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":36497,"name":"Adamant Mallet","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":2.6,"ilvl":170,"quality":2}, -{"id":36498,"name":"Nerubian Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2}, -{"id":36499,"name":"Frigid War-Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.6,"ilvl":178,"quality":2}, -{"id":36500,"name":"Gargoyle's Mace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-40,-39,-36,-20,-19,-18,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-17],"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":2.6,"ilvl":182,"quality":2}, -{"id":36501,"name":"Granite Maul","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36502,"name":"Ungainly Mace","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36503,"name":"Toothless Bludgeon","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36504,"name":"Cleft-Edged Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36505,"name":"Frosted Steel Mallet","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36506,"name":"Vaulted Mace","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36507,"name":"Iron-Molded Fist","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36508,"name":"Cumbersome Sledgehammer","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36509,"name":"Femur-Shafted Mace","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36510,"name":"Lumbering Bludgeon","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36511,"name":"Arctic War Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36512,"name":"Onerous Mallet","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36513,"name":"Lode-Headed Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36514,"name":"Kingly Battlehammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-43,-41,-39,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-5,-6,-8],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36515,"name":"Raider's Cutlass","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.6,"ilvl":130,"quality":2}, -{"id":36516,"name":"Tribal Blade","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":2.6,"ilvl":134,"quality":2}, -{"id":36517,"name":"Iron-Grip Shortsword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2}, -{"id":36518,"name":"Tundra's Edge","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.6,"ilvl":142,"quality":2}, -{"id":36519,"name":"Moonlit Katana","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2}, -{"id":36520,"name":"Chopping Wideblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.6,"ilvl":150,"quality":2}, -{"id":36521,"name":"Shimmering Sabre","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2}, -{"id":36522,"name":"Scored Blade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.6,"ilvl":158,"quality":2}, -{"id":36523,"name":"Trollish Slicer","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":162,"quality":2}, -{"id":36524,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":36525,"name":"Craggy Machete","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":2.6,"ilvl":170,"quality":2}, -{"id":36526,"name":"Sleeted Longsword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2}, -{"id":36527,"name":"Blackened Blade","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.6,"ilvl":178,"quality":2}, -{"id":36528,"name":"Skeleton's Sword","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5],"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":2.6,"ilvl":182,"quality":2}, -{"id":36529,"name":"Unearthed Broadsword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36530,"name":"Whetted Ironblade","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36531,"name":"Sawtooth Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36532,"name":"Shark Fin Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36533,"name":"Adorned Broadsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36534,"name":"Tempered-Steel Blade","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36535,"name":"Dragon's Rib Sword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36536,"name":"Inlaid Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36537,"name":"Fur-Grip Broadsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36538,"name":"Trollish Destroyer","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36539,"name":"Chilled Warblade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36540,"name":"Petrified Sword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36541,"name":"Wintry Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36542,"name":"Invasion Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-36,-19,-18,-17,-15,-14,-13,-12,-11,-10,-9,-8,-7,-5,-20,-16,-6],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36543,"name":"Survival Stick","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36544,"name":"Journeyed Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36545,"name":"Branched Stick","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36546,"name":"Unusual Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36547,"name":"Jester's Stick","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36548,"name":"Promised Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36549,"name":"Pulsing Quarterstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36550,"name":"Refulgent Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36551,"name":"Ritual Greatstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36552,"name":"Spiked Greatstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36553,"name":"Desecrated Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36554,"name":"Cursed Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36555,"name":"Minion Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36556,"name":"Apocalyptic Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-43,-40,-39,-19,-18,-17,-15,-14,-13,-12,-10,-9,-8,-7,-6,-5,-45,-41,-20,-11,-16],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36557,"name":"Meat Ripper","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.6,"ilvl":130,"quality":2}, -{"id":36558,"name":"Curved Scratcher","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":2.6,"ilvl":134,"quality":2}, -{"id":36559,"name":"Prized Handscythes","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2}, -{"id":36560,"name":"Fighter's Grip","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.6,"ilvl":142,"quality":2}, -{"id":36561,"name":"Mummified Paw","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2}, -{"id":36562,"name":"Blue-Nailed Claws","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.6,"ilvl":150,"quality":2}, -{"id":36563,"name":"Gloved Talons","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2}, -{"id":36564,"name":"Spider Claw","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.6,"ilvl":158,"quality":2}, -{"id":36565,"name":"Hero's Knuckles","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":162,"quality":2}, -{"id":36566,"name":"Gilded Fangs","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":36567,"name":"Six-Fingered Claws","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":2.6,"ilvl":170,"quality":2}, -{"id":36568,"name":"Hollowed Bone Knuckles","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2}, -{"id":36569,"name":"Savage Talons","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.6,"ilvl":178,"quality":2}, -{"id":36570,"name":"Corrupted Scythes","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-39,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-7,-6,-5,-44,-43,-8],"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":2.6,"ilvl":182,"quality":2}, -{"id":36571,"name":"Splicing Axe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.6,"ilvl":130,"quality":2}, -{"id":36572,"name":"Dinged Cleaver","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":2.6,"ilvl":134,"quality":2}, -{"id":36573,"name":"Primeval Adze","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2}, -{"id":36574,"name":"Bone Cleaver","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.6,"ilvl":142,"quality":2}, -{"id":36575,"name":"Dragonflayer Hatchet","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2}, -{"id":36576,"name":"Beaked Axe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.6,"ilvl":150,"quality":2}, -{"id":36577,"name":"Disk Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2}, -{"id":36578,"name":"Troll Chopper","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.6,"ilvl":158,"quality":2}, -{"id":36579,"name":"Boreal Woodchopper","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":174,"weaponDamageMax":323,"weaponSpeed":2.6,"ilvl":162,"quality":2}, -{"id":36580,"name":"Dire Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":36581,"name":"Wolvar Handaxe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":2.6,"ilvl":170,"quality":2}, -{"id":36582,"name":"Ice Pick","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2}, -{"id":36583,"name":"Skeletal Hacker","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.6,"ilvl":178,"quality":2}, -{"id":36584,"name":"Snowy Edge","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":2.6,"ilvl":182,"quality":2}, -{"id":36585,"name":"Finned Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36586,"name":"Wreaking Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36587,"name":"Taunka Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36588,"name":"Burning Battleaxe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36589,"name":"Segmenting Broadaxe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36590,"name":"Bone Plate Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36591,"name":"Winged Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36592,"name":"Deforester Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36593,"name":"Troll Decollator","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36594,"name":"Fracturing Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36595,"name":"Planate Broadaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36596,"name":"Rupturing Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36597,"name":"Ice-Splintering Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36598,"name":"Scarlet Battle Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-44,-41,-40,-39,-36,-20,-19,-18,-17,-15,-14,-13,-11,-10,-9,-8,-7,-6,-5,-43,-16,-12],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36599,"name":"Ocean Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36600,"name":"Village Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36601,"name":"Patient Harpoon","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36602,"name":"Rust-Covered Polearm","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36603,"name":"Archaic Longspear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36604,"name":"Grizzly Glaive","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36605,"name":"Wind Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36606,"name":"Rugged Polearm","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36607,"name":"Dwarven Halberd","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36608,"name":"Piercing Glaive","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36609,"name":"Abandoned Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36610,"name":"Plagued Pike","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36611,"name":"Bleak Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36612,"name":"Scourge War Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-40,-20,-18,-17,-16,-15,-14,-12,-11,-10,-9,-7,-6,-44,-36,-19,-13,-5,-8],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36613,"name":"Honorable Longbow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":200,"weaponDamageMax":373,"weaponSpeed":2.7,"ilvl":130,"quality":2}, -{"id":36614,"name":"Yew Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":2.7,"ilvl":134,"quality":2}, -{"id":36615,"name":"Expert's Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":138,"quality":2}, -{"id":36616,"name":"Dutiful Longbow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.7,"ilvl":142,"quality":2}, -{"id":36617,"name":"Yielding Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":216,"weaponDamageMax":402,"weaponSpeed":2.7,"ilvl":146,"quality":2}, -{"id":36618,"name":"Twisted Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":220,"weaponDamageMax":410,"weaponSpeed":2.7,"ilvl":150,"quality":2}, -{"id":36619,"name":"Astral Light Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":2.7,"ilvl":154,"quality":2}, -{"id":36620,"name":"Tracking Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":230,"weaponDamageMax":427,"weaponSpeed":2.7,"ilvl":158,"quality":2}, -{"id":36621,"name":"Advanced Flatbow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":235,"weaponDamageMax":436,"weaponSpeed":2.7,"ilvl":162,"quality":2}, -{"id":36622,"name":"Acute Shortbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.7,"ilvl":166,"quality":2}, -{"id":36623,"name":"Harnessed Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":245,"weaponDamageMax":456,"weaponSpeed":2.7,"ilvl":170,"quality":2}, -{"id":36624,"name":"Shrieking Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.7,"ilvl":174,"quality":2}, -{"id":36625,"name":"Massive Recurved Bow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":2.7,"ilvl":178,"quality":2}, -{"id":36626,"name":"Military Compound Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":262,"weaponDamageMax":487,"weaponSpeed":2.7,"ilvl":182,"quality":2}, -{"id":36627,"name":"Composite Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":200,"weaponDamageMax":373,"weaponSpeed":2.7,"ilvl":130,"quality":2}, -{"id":36628,"name":"Under-Arm Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":2.7,"ilvl":134,"quality":2}, -{"id":36629,"name":"Ferocious Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":138,"quality":2}, -{"id":36630,"name":"Sinewed Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.7,"ilvl":142,"quality":2}, -{"id":36631,"name":"Horned Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":216,"weaponDamageMax":402,"weaponSpeed":2.7,"ilvl":146,"quality":2}, -{"id":36632,"name":"Slingshot Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":220,"weaponDamageMax":410,"weaponSpeed":2.7,"ilvl":150,"quality":2}, -{"id":36633,"name":"Palisade Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":2.7,"ilvl":154,"quality":2}, -{"id":36634,"name":"Pain Repeater","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":230,"weaponDamageMax":427,"weaponSpeed":2.7,"ilvl":158,"quality":2}, -{"id":36635,"name":"Marvelous Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":235,"weaponDamageMax":436,"weaponSpeed":2.7,"ilvl":162,"quality":2}, -{"id":36636,"name":"Arbalest Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.7,"ilvl":166,"quality":2}, -{"id":36637,"name":"Horrific Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":245,"weaponDamageMax":456,"weaponSpeed":2.7,"ilvl":170,"quality":2}, -{"id":36638,"name":"Bloody Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.7,"ilvl":174,"quality":2}, -{"id":36639,"name":"Brutal Ballista","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":2.7,"ilvl":178,"quality":2}, -{"id":36640,"name":"Scourge Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":262,"weaponDamageMax":487,"weaponSpeed":2.7,"ilvl":182,"quality":2}, -{"id":36641,"name":"Bound Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":200,"weaponDamageMax":373,"weaponSpeed":2.7,"ilvl":130,"quality":2}, -{"id":36642,"name":"Flintlock Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":2.7,"ilvl":134,"quality":2}, -{"id":36643,"name":"Tracker's Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":138,"quality":2}, -{"id":36644,"name":"Inelegant Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.7,"ilvl":142,"quality":2}, -{"id":36645,"name":"Tuskarr Boomstick","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":216,"weaponDamageMax":402,"weaponSpeed":2.7,"ilvl":146,"quality":2}, -{"id":36646,"name":"Haggard Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":220,"weaponDamageMax":410,"weaponSpeed":2.7,"ilvl":150,"quality":2}, -{"id":36647,"name":"Noisy Blaster","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":2.7,"ilvl":154,"quality":2}, -{"id":36648,"name":"Trapper's Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":230,"weaponDamageMax":427,"weaponSpeed":2.7,"ilvl":158,"quality":2}, -{"id":36649,"name":"Tundra Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":235,"weaponDamageMax":436,"weaponSpeed":2.7,"ilvl":162,"quality":2}, -{"id":36650,"name":"Mammoth Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.7,"ilvl":166,"quality":2}, -{"id":36651,"name":"Muzzled Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":245,"weaponDamageMax":456,"weaponSpeed":2.7,"ilvl":170,"quality":2}, -{"id":36652,"name":"Stocky Shotgun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.7,"ilvl":174,"quality":2}, -{"id":36653,"name":"Precipice Longrifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":2.7,"ilvl":178,"quality":2}, -{"id":36654,"name":"Harsh-Winter Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":262,"weaponDamageMax":487,"weaponSpeed":2.7,"ilvl":182,"quality":2}, -{"id":36655,"name":"Pearled Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":1.7,"ilvl":130,"quality":2}, -{"id":36656,"name":"Darkened Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":181,"weaponDamageMax":338,"weaponSpeed":1.7,"ilvl":134,"quality":2}, -{"id":36657,"name":"Vicious Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.7,"ilvl":138,"quality":2}, -{"id":36658,"name":"Extinguished Spark","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":188,"weaponDamageMax":351,"weaponSpeed":1.7,"ilvl":142,"quality":2}, -{"id":36659,"name":"Shivery Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":1.7,"ilvl":146,"quality":2}, -{"id":36660,"name":"Melted Wand","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":1.7,"ilvl":150,"quality":2}, -{"id":36661,"name":"Enigmatic Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":200,"weaponDamageMax":373,"weaponSpeed":1.7,"ilvl":154,"quality":2}, -{"id":36662,"name":"Voodoo Wand","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":1.7,"ilvl":158,"quality":2}, -{"id":36663,"name":"Ancient Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.7,"ilvl":162,"quality":2}, -{"id":36664,"name":"Chilled Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":213,"weaponDamageMax":397,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":36665,"name":"Wasteland Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":218,"weaponDamageMax":405,"weaponSpeed":1.7,"ilvl":170,"quality":2}, -{"id":36666,"name":"Polar Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":223,"weaponDamageMax":414,"weaponSpeed":1.7,"ilvl":174,"quality":2}, -{"id":36667,"name":"Solid Ice Wand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":228,"weaponDamageMax":424,"weaponSpeed":1.7,"ilvl":178,"quality":2}, -{"id":36668,"name":"Mindless Wand","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6],"weaponDamageMin":233,"weaponDamageMax":433,"weaponSpeed":1.7,"ilvl":182,"quality":2}, -{"id":36669,"name":"Eccentric Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":130,"quality":2}, -{"id":36670,"name":"Gypsy Blade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":1.7,"ilvl":134,"quality":2}, -{"id":36671,"name":"Ominous Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":138,"quality":2}, -{"id":36672,"name":"Strange Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.7,"ilvl":142,"quality":2}, -{"id":36673,"name":"Wise Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2}, -{"id":36674,"name":"Old Tooth","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.7,"ilvl":150,"quality":2}, -{"id":36675,"name":"Sockeye Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.7,"ilvl":154,"quality":2}, -{"id":36676,"name":"Water Blade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.7,"ilvl":158,"quality":2}, -{"id":36677,"name":"Levitating Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":162,"quality":2}, -{"id":36678,"name":"Runed Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":36679,"name":"Singing Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":1.7,"ilvl":170,"quality":2}, -{"id":36680,"name":"Mystic Fang","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":174,"quality":2}, -{"id":36681,"name":"Wisdom Carver","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.7,"ilvl":178,"quality":2}, -{"id":36682,"name":"Seduced Blade","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":127,"weaponDamageMax":236,"weaponSpeed":1.7,"ilvl":182,"quality":2}, -{"id":36683,"name":"Enshrined Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":130,"quality":2}, -{"id":36684,"name":"Ambrosial Hammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":1.7,"ilvl":134,"quality":2}, -{"id":36685,"name":"Placid Lightmace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":138,"quality":2}, -{"id":36686,"name":"Harmonious Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.7,"ilvl":142,"quality":2}, -{"id":36687,"name":"Illuminated Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2}, -{"id":36688,"name":"Sacrosanct Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.7,"ilvl":150,"quality":2}, -{"id":36689,"name":"Refreshing Hammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.7,"ilvl":154,"quality":2}, -{"id":36690,"name":"Unearthly Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.7,"ilvl":158,"quality":2}, -{"id":36691,"name":"Dignified Hammer","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":1.7,"ilvl":162,"quality":2}, -{"id":36692,"name":"Remedial Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":36693,"name":"Serene Hammer","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":1.7,"ilvl":170,"quality":2}, -{"id":36694,"name":"Beatific Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":174,"quality":2}, -{"id":36695,"name":"Dogmatic Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.7,"ilvl":178,"quality":2}, -{"id":36696,"name":"Graced Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-44,-19,-16,-15,-9,-8,-6],"weaponDamageMin":127,"weaponDamageMax":236,"weaponSpeed":1.7,"ilvl":182,"quality":2}, -{"id":36697,"name":"Aquatic Greatstaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":297,"weaponDamageMax":446,"weaponSpeed":3.5,"ilvl":130,"quality":2}, -{"id":36698,"name":"Conifer Cone Staff","icon":"inv_staff_36","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.5,"ilvl":134,"quality":2}, -{"id":36699,"name":"Iceberg Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2}, -{"id":36700,"name":"Peat Greatstaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":314,"weaponDamageMax":472,"weaponSpeed":3.5,"ilvl":142,"quality":2}, -{"id":36701,"name":"Pine Needle Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2}, -{"id":36702,"name":"Melting Icestaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2}, -{"id":36703,"name":"Tusked Greatstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2}, -{"id":36704,"name":"Hive Comb Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":340,"weaponDamageMax":511,"weaponSpeed":3.5,"ilvl":158,"quality":2}, -{"id":36705,"name":"Geyser Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.5,"ilvl":162,"quality":2}, -{"id":36706,"name":"Tenacious Vine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":36707,"name":"Cascading Water Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":363,"weaponDamageMax":545,"weaponSpeed":3.5,"ilvl":170,"quality":2}, -{"id":36708,"name":"Snow Blossom Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2}, -{"id":36709,"name":"Crystal Woodstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":379,"weaponDamageMax":570,"weaponSpeed":3.5,"ilvl":178,"quality":2}, -{"id":36710,"name":"Avalanche Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-41,-17,-16,-14,-7],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":3.5,"ilvl":182,"quality":2}, -{"id":36711,"name":"Forsaken Edge","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.7,"ilvl":130,"quality":2}, -{"id":36712,"name":"Howling Throwing Knives","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.7,"ilvl":134,"quality":2}, -{"id":36713,"name":"Reaching Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":1.7,"ilvl":138,"quality":2}, -{"id":36714,"name":"Tuskarr's Piercers","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":133,"weaponDamageMax":248,"weaponSpeed":1.7,"ilvl":142,"quality":2}, -{"id":36715,"name":"Runed Shuriken","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":1.7,"ilvl":146,"quality":2}, -{"id":36716,"name":"Threatening Darts","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":139,"weaponDamageMax":258,"weaponSpeed":1.7,"ilvl":150,"quality":2}, -{"id":36717,"name":"Venture Co. Throwing Axe","icon":"inv_throwingaxe_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":141,"weaponDamageMax":264,"weaponSpeed":1.7,"ilvl":154,"quality":2}, -{"id":36718,"name":"Nexus Shrike","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":144,"weaponDamageMax":269,"weaponSpeed":1.7,"ilvl":158,"quality":2}, -{"id":36719,"name":"Hunter's Scout","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":147,"weaponDamageMax":275,"weaponSpeed":1.7,"ilvl":162,"quality":2}, -{"id":36720,"name":"Flying Knives","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":36721,"name":"Dragon's Teeth","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":1.7,"ilvl":170,"quality":2}, -{"id":36722,"name":"Pyramid Throwing Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":157,"weaponDamageMax":293,"weaponSpeed":1.7,"ilvl":174,"quality":2}, -{"id":36723,"name":"Clawed Shuriken","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":161,"weaponDamageMax":300,"weaponSpeed":1.7,"ilvl":178,"quality":2}, -{"id":36724,"name":"Frozen Throwing Blades","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45,-41,-20,-19,-18,-16,-15,-12,-9,-7,-6,-5,-40,-17,-13,-8,-14,-11,-10],"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.7,"ilvl":182,"quality":2}, -{"id":36737,"name":"Brutal Gladiator's Hatchet","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,20,6,0,0,0,0,42,42,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":196,"weaponDamageMax":365,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[2]}, -{"id":36866,"name":"HF BLUE Leather DPS Chest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,58,63,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":36867,"name":"HF BLUE Plate DPS Chest","icon":"inv_chest_wolf","type":5,"armorType":4,"stats":[32,0,24,0,0,0,60,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":36871,"name":"Fury of the Encroaching Storm","icon":"inv_datacrystal06","type":12,"stats":[0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"unique":true,"sources":[{"quest":{"id":11572,"name":"Return to Atuik"}}]}, -{"id":36872,"name":"Mender of the Oncoming Dawn","icon":"inv_misc_surgeonglove_01","type":12,"stats":[0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"unique":true,"sources":[{"quest":{"id":11572,"name":"Return to Atuik"}}]}, -{"id":36874,"name":"Horn of the Herald","icon":"inv_misc_horn_03","type":12,"stats":[0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"unique":true,"sources":[{"quest":{"id":11572,"name":"Return to Atuik"}}]}, -{"id":36878,"name":"Writhing Longstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,45,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36879,"name":"Soldier's Spiked Mace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,22,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36880,"name":"Vicious Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,46,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":1.5,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36881,"name":"Medic's Morning Star","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,33,0,18,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.2,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36882,"name":"Warsong Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,13,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":416,"weaponSpeed":2.9,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11602,"name":"Cutting Off the Source"}}],"factionRestriction":2}, -{"id":36883,"name":"Combatant Greatsword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[36,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":476,"weaponSpeed":3.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36884,"name":"Transborean Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,80,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36885,"name":"Marshwalker Chestpiece","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,55,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36886,"name":"Westrift Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,53,33,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36887,"name":"Mightstone Pauldrons","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[16,0,32,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36888,"name":"Marshwalker Legguards","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,52,36,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36937,"name":"Tundrastrider Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,78,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36938,"name":"Mightstone Breastplate","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[50,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":36939,"name":"Nymph Stockings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,75,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11868,"name":"The Culler Cometh"}}]}, -{"id":36943,"name":"Timeless Beads of Eternos","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,53,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}]}, -{"id":36944,"name":"Lifeblade of Belgaristrasz","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,29,50,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":259,"weaponSpeed":1.8,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}]}, -{"id":36945,"name":"Verdisa's Cuffs of Dreaming","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,48,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}]}, -{"id":36946,"name":"Runic Cage Chestpiece","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,85,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}]}, -{"id":36947,"name":"Centrifuge Core Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,39,54,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}]}, -{"id":36948,"name":"Horned Helm of Varos","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,103,69,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}]}, -{"id":36949,"name":"Gloves of the Azure-Lord","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,85,51,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}]}, -{"id":36950,"name":"Wing Commander's Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[70,0,78,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}]}, -{"id":36951,"name":"Sidestepping Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,51,96,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}]}, -{"id":36952,"name":"Girdle of Obscuring","icon":"inv_belt_33","type":8,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}]}, -{"id":36953,"name":"Spaulders of Skillful Maneuvers","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,51,74,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}]}, -{"id":36954,"name":"The Conjurer's Slippers","icon":"inv_boots_cloth_18","type":10,"armorType":1,"stats":[0,0,73,51,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}]}, -{"id":36961,"name":"Dragonflight Great-Ring","icon":"inv_jewelry_ring_40","type":11,"stats":[26,0,58,0,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36962,"name":"Wyrmclaw Battleaxe","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[0,69,123,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":437,"weaponDamageMax":656,"weaponSpeed":3.5,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36969,"name":"Helm of the Ley-Guardian","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[40,0,105,0,0,36,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36971,"name":"Headguard of Westrift","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,69,81,0,0,35,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36972,"name":"Tome of Arcane Phenomena","icon":"inv_misc_book_07","type":12,"stats":[0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36973,"name":"Vestments of the Scholar","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,97,69,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36974,"name":"Eregos' Ornamented Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,98,69,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36975,"name":"Malygos' Favor","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,108,0,95,0,0,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":450,"weaponSpeed":2.4,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}]}, -{"id":36976,"name":"Ring-Lord's Leggings","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,115,68,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":36977,"name":"Bindings of the Construct","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,71,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":36978,"name":"Ley-Whelphide Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,52,95,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":36979,"name":"Bjarngrim Family Signet","icon":"inv_jewelry_ring_43","type":11,"stats":[0,38,69,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}]}, -{"id":36980,"name":"Hewn Sparring Quarterstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,52,155,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":450,"weaponSpeed":2.4,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}]}, -{"id":36981,"name":"Hardened Vrykul Throwing Axe","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,33,0,0,21,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":2.2,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}]}, -{"id":36982,"name":"Mantle of Electrical Charges","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}]}, -{"id":36983,"name":"Cape of Seething Steam","icon":"inv_misc_cape_20","type":4,"stats":[0,0,64,39,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}]}, -{"id":36984,"name":"Eternally Folded Blade","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[29,0,45,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.6,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}]}, -{"id":36985,"name":"Volkhan's Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,115,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}]}, -{"id":36986,"name":"Kilt of Molten Golems","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,0,104,69,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}]}, -{"id":36988,"name":"Chaotic Spiral Amulet","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,54,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36989,"name":"Ancient Measuring Rod","icon":"inv_torch_unlit","type":14,"rangedWeaponType":6,"stats":[0,0,35,22,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":278,"weaponDamageMax":516,"weaponSpeed":1.8,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36991,"name":"Raiments of the Titans","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,97,69,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36992,"name":"Leather-Braced Chain Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,61,78,0,0,0,37,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36993,"name":"Seal of the Pantheon","icon":"inv_misc_armorkit_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36994,"name":"Projectile Activator","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,30,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":306,"weaponDamageMax":568,"weaponSpeed":2.8,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36995,"name":"Fists of Loken","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[52,0,76,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36996,"name":"Hood of the Furtive Assassin","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,69,105,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}]}, -{"id":36997,"name":"Sash of the Hardened Watcher","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,55,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":36998,"name":"Assailant Shroud","icon":"inv_misc_cape_18","type":4,"stats":[0,0,18,0,0,16,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11868,"name":"The Culler Cometh"}}]}, -{"id":36999,"name":"Boots of the Terrestrial Guardian","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,46,53,0,0,0,23,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":37000,"name":"Storming Vortex Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,55,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":37002,"name":"Binder's Links","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,51,48,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11868,"name":"The Culler Cometh"}}]}, -{"id":37004,"name":"Plainwatcher Legplates","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,78,24,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11868,"name":"The Culler Cometh"}}]}, -{"id":37005,"name":"D.E.H.T.A. Overshirt","icon":"inv_chest_cloth_45","type":5,"armorType":1,"stats":[0,0,36,37,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11879,"name":"Kaw the Mammoth Destroyer"}}]}, -{"id":37007,"name":"Faux Leather Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,38,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11879,"name":"Kaw the Mammoth Destroyer"}}]}, -{"id":37008,"name":"Ethical Epaulettes","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,35,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11879,"name":"Kaw the Mammoth Destroyer"}}]}, -{"id":37009,"name":"Moral Sabatons","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[38,0,31,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11879,"name":"Kaw the Mammoth Destroyer"}}]}, -{"id":37014,"name":"Rod of Poacher Punishment","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37015,"name":"Dowsing Rod","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,11,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":207,"weaponDamageMax":385,"weaponSpeed":1.9,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37016,"name":"Wand of the Keeper","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37017,"name":"Nimble Blade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":154,"weaponSpeed":1.4,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37018,"name":"G.E.H.T.A.","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,17,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37019,"name":"Borean Ward","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,30,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11872,"name":"The Nefarious Clam Master..."}}]}, -{"id":37021,"name":"Claw of the Tuskarr","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37022,"name":"Shark Stabber","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,22,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.8,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37023,"name":"Compact Arrow Launcher","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":416,"weaponSpeed":2.9,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37024,"name":"Medicine Stick","icon":"inv_misc_flute_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37025,"name":"Blubber Carver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":450,"weaponSpeed":3.4,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37026,"name":"Spirit Channeller's Rod","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,78,0,42,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11613,"name":"Karuk's Oath"}}]}, -{"id":37028,"name":"Condor-Bone Star","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11664,"name":"Escaping the Mist"}}],"factionRestriction":2}, -{"id":37029,"name":"Fin Carver","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,22,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.7,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11968,"name":"The Tides Turn"}}]}, -{"id":37030,"name":"Blubber Grinder","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[25,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":476,"weaponSpeed":3.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11968,"name":"The Tides Turn"}}]}, -{"id":37031,"name":"Zook's Walking Stick","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,77,0,0,0,44,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11968,"name":"The Tides Turn"}}]}, -{"id":37032,"name":"Edge of the Tuskarr","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,11,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":320,"weaponSpeed":2.9,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11968,"name":"The Tides Turn"}}]}, -{"id":37033,"name":"Manual of the Tides","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11968,"name":"The Tides Turn"}}]}, -{"id":37034,"name":"Lobstrock Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11560,"name":"Oh Noes, the Tadpoles!"}}]}, -{"id":37036,"name":"Fish-Eye Poker","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,11,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.8,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37037,"name":"Ritualistic Athame","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,29,44,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":202,"weaponSpeed":1.4,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}]}, -{"id":37038,"name":"Brazier Igniter","icon":"inv_wand_17","type":14,"rangedWeaponType":6,"stats":[0,0,30,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":278,"weaponDamageMax":516,"weaponSpeed":1.8,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}]}, -{"id":37039,"name":"Mrgl Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":2,"stats":[0,0,16,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37040,"name":"Svala's Bloodied Shackles","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[38,0,58,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}]}, -{"id":37041,"name":"Scepter of the Winterfin","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,22,0,0,18,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":2.2,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37042,"name":"Glimmering Orca Tooth","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,15,24,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.8,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37043,"name":"Tear-Linked Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,51,61,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}]}, -{"id":37044,"name":"Amphibious Speargun","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,30,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":216,"weaponDamageMax":401,"weaponSpeed":2.8,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37046,"name":"Shell Smasher","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,51,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":308,"weaponDamageMax":463,"weaponSpeed":3.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11570,"name":"Escape from the Winterfin Caverns"}}]}, -{"id":37047,"name":"Branch of Everlasting Flame","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,0,17,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":152,"weaponDamageMax":284,"weaponSpeed":1.4,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37048,"name":"Shroud of Resurrection","icon":"inv_misc_cape_06","type":4,"stats":[0,0,54,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}]}, -{"id":37049,"name":"Lost Marksman's Rifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37050,"name":"Trophy Gatherer","icon":"inv_weapon_bow_36","type":14,"rangedWeaponType":1,"stats":[0,0,31,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":327,"weaponDamageMax":609,"weaponSpeed":3,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}]}, -{"id":37051,"name":"Seal of Valgarde","icon":"inv_staff_24","type":13,"weaponType":5,"handType":3,"stats":[0,0,51,38,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}]}, -{"id":37052,"name":"Reanimated Armor","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[68,0,105,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}]}, -{"id":37053,"name":"Amulet of Deflected Blows","icon":"inv_jewelry_necklace_14","type":2,"stats":[38,0,58,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}]}, -{"id":37054,"name":"Frostbiter","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[31,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":476,"weaponSpeed":3.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37055,"name":"Silken Amice of the Ymirjar","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}]}, -{"id":37056,"name":"Harpooner's Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,73,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}]}, -{"id":37057,"name":"Drake Rider's Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,69,110,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}]}, -{"id":37058,"name":"Signet of Ranulf","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,54,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37060,"name":"Jeweled Coronation Sword","icon":"inv_sword_91","type":13,"weaponType":9,"handType":1,"stats":[0,0,48,0,23,0,30,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.6,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37061,"name":"Tor's Crest","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,54,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37062,"name":"Crown of Forgotten Kings","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,97,69,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37064,"name":"Vestige of Haldor","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37065,"name":"Ymiron's Blade","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,29,56,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":218,"weaponDamageMax":406,"weaponSpeed":2.6,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37066,"name":"Ancient Royal Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[70,0,102,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37067,"name":"Ceremonial Pyre Mantle","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,50,77,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}]}, -{"id":37068,"name":"Berserker's Sabatons","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[51,40,76,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37069,"name":"Dragonflayer Seer's Bindings","icon":"inv_bracer_11","type":6,"armorType":3,"stats":[0,0,54,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37070,"name":"Tundra Wolf Boots","icon":"inv_boots_chain_12","type":10,"armorType":2,"stats":[0,0,72,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37072,"name":"Jagged Icefist","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[0,0,33,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37073,"name":"Hungering Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":489,"weaponSpeed":3.7,"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37074,"name":"Greatmother's Talisman of Cleansing","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11689,"name":"Return with the Bad News"}}],"factionRestriction":2}, -{"id":37075,"name":"Serrated Scale Shank","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,37,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":1.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37076,"name":"Fiery Prod","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,22,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":176,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37077,"name":"Smoldering Talon","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[0,0,0,0,0,0,13,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37078,"name":"Rod of the Crimson Keeper","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,20,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37079,"name":"Enchanted Wire Stitching","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,55,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}]}, -{"id":37080,"name":"Crimson Will","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,82,0,0,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":450,"weaponSpeed":3.4,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37081,"name":"Meathook's Slicer","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,29,52,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.6,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}]}, -{"id":37082,"name":"Slaughterhouse Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}]}, -{"id":37083,"name":"Kilt of Sewn Flesh","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,116,69,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}]}, -{"id":37084,"name":"Flowing Cloak of Command","icon":"inv_misc_cape_21","type":4,"stats":[37,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,364,104,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}]}, -{"id":37086,"name":"Tome of Salramm","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,45,39,19,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}]}, -{"id":37088,"name":"Spiked Metal Cilice","icon":"inv_belt_23","type":8,"armorType":4,"stats":[51,37,43,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}]}, -{"id":37095,"name":"Waistband of the Thuzadin","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,51,77,0,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}]}, -{"id":37096,"name":"Necklace of the Chrono-Lord","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,38,75,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}]}, -{"id":37099,"name":"Sempiternal Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,115,0,53,0,68,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":262,"weaponDamageMax":393,"weaponSpeed":2.1,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}]}, -{"id":37105,"name":"Treads of Altered History","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,74,51,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}]}, -{"id":37106,"name":"Ouroboros Belt","icon":"inv_jewelry_ring_41","type":8,"armorType":2,"stats":[0,0,73,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}]}, -{"id":37107,"name":"Leeka's Shield","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[37,0,60,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,6367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37108,"name":"Dreadlord's Blade","icon":"inv_sword_100","type":13,"weaponType":9,"handType":4,"stats":[70,0,102,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.4,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37109,"name":"Discarded Silver Hand Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,72,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37110,"name":"Gauntlets of Dark Conversion","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,75,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37111,"name":"Soul Preserver","icon":"inv_misc_orb_03","type":12,"stats":[0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37112,"name":"Beguiling Scepter","icon":"inv_mace_60","type":13,"weaponType":4,"handType":1,"stats":[0,0,65,0,0,0,30,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":193,"weaponDamageMax":359,"weaponSpeed":2.3,"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37113,"name":"Demonic Fabric Bands","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,59,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37114,"name":"Gloves of Northern Lordaeron","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}]}, -{"id":37115,"name":"Crusader's Square Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[50,0,78,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}]}, -{"id":37116,"name":"Epaulets of Market Row","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,78,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}]}, -{"id":37117,"name":"King's Square Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,39,68,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}]}, -{"id":37122,"name":"Taut Driftwood Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11909,"name":"Defeat the Gearmaster"}}],"factionRestriction":2}, -{"id":37127,"name":"Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":37128,"name":"Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true}, -{"id":37134,"name":"Telestra's Journal","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,66,43,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}]}, -{"id":37135,"name":"Arcane-Shielded Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[61,0,93,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}]}, -{"id":37138,"name":"Bands of Channeled Energy","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,60,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}]}, -{"id":37139,"name":"Spaulders of the Careless Thief","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,58,93,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}]}, -{"id":37141,"name":"Amulet of Dazzling Light","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,77,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}]}, -{"id":37144,"name":"Hauberk of the Arcane Wraith","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,77,94,0,0,0,45,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}]}, -{"id":37149,"name":"Helm of Anomalus","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,84,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}]}, -{"id":37150,"name":"Rift Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[50,0,85,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}]}, -{"id":37151,"name":"Band of Frosted Thorns","icon":"inv_jewelry_ring_47","type":11,"stats":[45,0,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}]}, -{"id":37152,"name":"Girdle of Ice","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,82,58,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}]}, -{"id":37153,"name":"Gloves of the Crystal Gardener","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,82,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}]}, -{"id":37155,"name":"Frozen Forest Kilt","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,111,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}]}, -{"id":37162,"name":"Bulwark of the Noble Protector","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[43,0,64,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37165,"name":"Crystal-Infused Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,69,108,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37166,"name":"Sphere of Red Dragon's Blood","icon":"spell_shadow_bloodboil","type":12,"stats":[0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37167,"name":"Dragon Slayer's Sabatons","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,50,57,0,0,0,42,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37169,"name":"War Mace of Unrequited Love","icon":"inv_mace_77","type":13,"weaponType":4,"handType":1,"stats":[0,0,74,0,48,0,0,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":429,"weaponSpeed":2.3,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37170,"name":"Interwoven Scale Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,50,73,0,0,0,32,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37171,"name":"Flame-Bathed Steel Girdle","icon":"inv_belt_34","type":8,"armorType":4,"stats":[66,0,85,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37172,"name":"Gloves of Glistening Runes","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,94,58,44,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}]}, -{"id":37174,"name":"Rippling Azure Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,64,43,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37175,"name":"Glassy Silver Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[35,0,52,0,0,0,0,0,0,25,31,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37176,"name":"Cavern Leather Treads","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,0,68,50,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37177,"name":"Wand of the San'layn","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,0,18,0,14,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}]}, -{"id":37178,"name":"Strategist's Belt","icon":"inv_belt_34","type":8,"armorType":4,"stats":[52,0,73,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}]}, -{"id":37179,"name":"Infantry Assault Blade","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[24,0,49,0,0,0,0,0,19,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}]}, -{"id":37180,"name":"Battlemap Hide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,95,78,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}]}, -{"id":37181,"name":"Dagger of Betrayal","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,24,58,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":1.8,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}]}, -{"id":37182,"name":"Helmet of the Constructor","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,93,60,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}]}, -{"id":37183,"name":"Bindings of the Tunneler","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,42,85,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}]}, -{"id":37184,"name":"Dalronn's Jerkin","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,113,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}]}, -{"id":37186,"name":"Unsmashable Heavy Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[43,0,64,0,0,0,0,0,0,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37188,"name":"Plunderer's Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,62,62,0,0,0,36,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37189,"name":"Breeches of the Caller","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,127,62,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37190,"name":"Enraged Feral Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,78,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":488,"weaponSpeed":2.4,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37191,"name":"Drake-Mounted Crossbow","icon":"inv_weapon_crossbow_28","type":14,"rangedWeaponType":2,"stats":[0,29,42,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":418,"weaponDamageMax":627,"weaponSpeed":2.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37192,"name":"Annhylde's Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,75,50,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37193,"name":"Staggering Legplates","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[83,0,109,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37194,"name":"Sharp-Barbed Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,66,107,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}]}, -{"id":37195,"name":"Band of Enchanted Growth","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,63,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}]}, -{"id":37196,"name":"Runecaster's Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,85,58,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":206,"otherName":"Trash"}}]}, -{"id":37197,"name":"Tattered Castle Drape","icon":"inv_misc_cape_02","type":4,"stats":[42,0,66,0,0,0,0,0,0,29,28,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":206,"otherName":"Trash"}}]}, -{"id":37203,"name":"Regenerative Cloth","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,33,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11884,"name":"Nedar, Lord of Rhinos..."}}]}, -{"id":37204,"name":"Transborean Leggings","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,77,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37205,"name":"Transborean Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,31,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37206,"name":"Weathered Worker Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37207,"name":"Seafarer Boots","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,53,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37208,"name":"Transborean Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37209,"name":"Wharfmaster's Hat","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,84,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11619,"name":"Gamel the Cruel"}}]}, -{"id":37210,"name":"Seafarer Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,19,26,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37211,"name":"Iceflow Footwraps","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,19,38,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11949,"name":"Not Without a Fight!"}}]}, -{"id":37212,"name":"Transborean Wraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,41,37,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11664,"name":"Escaping the Mist"}}],"factionRestriction":2}, -{"id":37213,"name":"Iceflow Wristwraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11626,"name":"The Emissary"}}]}, -{"id":37214,"name":"Sweltering Leggings","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,55,50,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37215,"name":"Lost Sea Oculus","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,0,39,0,0,44,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11566,"name":"Surrender... Not!"}}]}, -{"id":37216,"name":"Facade Shield of Glyphs","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,64,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}]}, -{"id":37217,"name":"Golden Limb Bands","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[44,0,64,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}]}, -{"id":37218,"name":"Stone-Worn Footwraps","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,83,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}]}, -{"id":37219,"name":"Custodian's Chestpiece","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,77,84,0,0,0,78,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}]}, -{"id":37220,"name":"Essence of Gossamer","icon":"inv_fabric_moonrag_02","type":12,"stats":[0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}]}, -{"id":37221,"name":"Hollowed Mandible Legplates","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,62,90,0,0,0,62,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}]}, -{"id":37222,"name":"Egg Sac Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,114,62,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}]}, -{"id":37223,"name":"Sweltering Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,57,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37224,"name":"Sweltering Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,24,21,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11681,"name":"Rescuing Evanor"}}]}, -{"id":37225,"name":"Sweltering Sandals","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,0,29,0,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37226,"name":"Sweltering Robes","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,79,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11919,"name":"Drake Hunt"}}]}, -{"id":37227,"name":"Seafarer Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11610,"name":"Leading the Ancestors Home"}}]}, -{"id":37228,"name":"Sweltering Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,32,21,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37230,"name":"Grotto Mist Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,73,50,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}]}, -{"id":37231,"name":"Frostspeaker Collar","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,24,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37232,"name":"Ring of the Traitor King","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,59,44,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37234,"name":"Layered Frost Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,97,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37235,"name":"Crypt Lord's Deft Blade","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,19,50,0,0,24,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":2.5,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37236,"name":"Insect Vestments","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,111,62,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37237,"name":"Chitin Shell Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[63,0,93,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37238,"name":"Rod of the Fallen Monarch","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,39,28,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":617,"weaponSpeed":1.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37239,"name":"Layered Frost Sandals","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,57,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37240,"name":"Flamebeard's Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,71,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37241,"name":"Ancient Aligned Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[38,0,99,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37242,"name":"Sash of the Servant","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,102,65,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}]}, -{"id":37243,"name":"Treasure Seeker's Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,58,82,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}]}, -{"id":37244,"name":"Fungi-Coated Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,82,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37245,"name":"Tangled Web Bindings","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,60,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37255,"name":"The Interrogator","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,0,48,0,0,32,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}]}, -{"id":37256,"name":"Scaled Armor of Drakos","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,111,78,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}]}, -{"id":37257,"name":"Band of Torture","icon":"inv_jewelry_ring_39","type":11,"stats":[42,0,66,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}]}, -{"id":37258,"name":"Drakewing Raiments","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,114,62,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}]}, -{"id":37260,"name":"Cloudstrider's Waraxe","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[24,0,49,0,0,0,0,0,19,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":1.9,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}]}, -{"id":37261,"name":"Gloves of Radiant Light","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,83,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}]}, -{"id":37262,"name":"Azure Ringmail Leggings","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,77,77,0,0,0,78,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}]}, -{"id":37263,"name":"Legplates of the Oculus Guardian","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[78,60,58,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}]}, -{"id":37264,"name":"Pendulum of Telluric Currents","icon":"inv_misc_enggizmos_12","type":12,"stats":[0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}]}, -{"id":37270,"name":"Layered Frost Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,45,38,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37271,"name":"Dusk Watcher's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,37,21,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37272,"name":"Wizzlenob Shoulder Covers","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,51,28,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37273,"name":"Crimson Keeper Mitts","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,42,36,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37274,"name":"Mender's Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,72,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37275,"name":"Mantle of Congealed Anger","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,23,28,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37276,"name":"Grek'lor's Loungewear","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,36,38,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11652,"name":"The Plains of Nasam"}}],"factionRestriction":2}, -{"id":37277,"name":"Ermine Ruff Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,25,0,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11705,"name":"Foolish Endeavors"}}],"factionRestriction":2}, -{"id":37280,"name":"Flame Hardened Waistband","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,30,32,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11957,"name":"Saragosa's End"}}]}, -{"id":37282,"name":"Cavernous Gauntlets","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,42,28,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":12728,"name":"Monitoring the Rift: Winterfin Cavern"}}]}, -{"id":37283,"name":"Wandering Healer's Kilt","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,42,38,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37288,"name":"Catalytic Bands","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,60,43,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}]}, -{"id":37289,"name":"Sash of Phantasmal Images","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,82,58,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}]}, -{"id":37290,"name":"Dragon Prow Amulet","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,60,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":37291,"name":"Ancient Dragon Spirit Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,64,44,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37292,"name":"Ley-Guardian's Legguards","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[45,0,117,0,0,40,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37293,"name":"Mask of the Watcher","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,70,90,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37294,"name":"Crown of Unbridled Magic","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,104,69,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37316,"name":"HF28 Leather Physical Legs4","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,37,36,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37319,"name":"Grips of the Windswept Plains","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,31,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37320,"name":"Spaulders of Echoing Truth","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,31,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":12728,"name":"Monitoring the Rift: Winterfin Cavern"}}]}, -{"id":37322,"name":"Flame Hardened Wristbindings","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,16,16,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11957,"name":"Saragosa's End"}}]}, -{"id":37325,"name":"Warsong Scout Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,16,57,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11652,"name":"The Plains of Nasam"}}],"factionRestriction":2}, -{"id":37351,"name":"Reinforced Caribou-Hide Leggings","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,30,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37352,"name":"Regenerative Hide Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37353,"name":"Reinforced Caribou-Hide Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,31,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37354,"name":"Reinforced Caribou-Hide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,37,67,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37355,"name":"Reinforced Caribou-Hide Chestguard","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,38,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37356,"name":"Rhinohide Wristwraps","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,16,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37357,"name":"Shivering Healer's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,24,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37360,"name":"Staff of Draconic Combat","icon":"inv_staff_83","type":13,"weaponType":8,"handType":4,"stats":[0,0,152,0,69,0,0,88,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":2.1,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37361,"name":"Cuffs of Winged Levitation","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,71,50,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37362,"name":"Leggings of Protective Auras","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,127,73,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37363,"name":"Gauntlets of Dragon Wrath","icon":"inv_gauntlets_50","type":7,"armorType":4,"stats":[67,48,97,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}]}, -{"id":37364,"name":"Frostbridge Orb","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":37365,"name":"Bands of the Sky Ring","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,64,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":37366,"name":"Drake-Champion's Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,43,80,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}]}, -{"id":37367,"name":"Echoing Stompers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[60,38,57,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}]}, -{"id":37368,"name":"Silent Spectator Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,74,50,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}]}, -{"id":37369,"name":"Sorrowgrave's Breeches","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,129,70,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}]}, -{"id":37370,"name":"Cuffs of the Trussed Hall","icon":"inv_bracer_04","type":6,"armorType":1,"stats":[0,0,63,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}]}, -{"id":37371,"name":"Ring of the Frenzied Wolvar","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,63,44,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}]}, -{"id":37373,"name":"Massive Spaulders of the Jormungar","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,58,87,0,0,33,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}]}, -{"id":37374,"name":"Ravenous Leggings of the Furbolg","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,62,128,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}]}, -{"id":37375,"name":"Rhinohide Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,39,31,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37376,"name":"Ferocious Pauldrons of the Rhino","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,82,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}]}, -{"id":37377,"name":"Netherbreath Spellblade","icon":"inv_sword_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,54,0,26,0,34,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":305,"weaponSpeed":1.8,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}]}, -{"id":37378,"name":"Sealskin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11623,"name":"A Visit to the Curator"}}]}, -{"id":37379,"name":"Skadi's Iron Belt","icon":"inv_belt_29","type":8,"armorType":4,"stats":[49,0,87,0,0,0,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}]}, -{"id":37380,"name":"Whalehunter Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,53,45,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11610,"name":"Leading the Ancestors Home"}}]}, -{"id":37382,"name":"Charred Drakehide Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,39,30,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11919,"name":"Drake Hunt"}}]}, -{"id":37383,"name":"Seared Scale Cape","icon":"inv_misc_cape_05","type":4,"stats":[0,16,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11914,"name":"Keep the Secret Safe"}}]}, -{"id":37384,"name":"Staff of Wayward Principles","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,137,0,56,0,0,78,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":488,"weaponSpeed":2.4,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}]}, -{"id":37385,"name":"Seared Harness","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,55,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37386,"name":"Ruby Heart Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,33,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37387,"name":"Charred Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11681,"name":"Rescuing Evanor"}}]}, -{"id":37388,"name":"Reinforced Elastic Band","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,22,0,0,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37389,"name":"Crenelation Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,111,70,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}]}, -{"id":37390,"name":"Meteorite Whetstone","icon":"inv_misc_stonetablet_02","type":12,"stats":[0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37391,"name":"Rhinohide Mask","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,52,45,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37392,"name":"Soggy Hide Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11566,"name":"Surrender... Not!"}}]}, -{"id":37393,"name":"Shadewrap Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37394,"name":"Marshwalker Waistguard","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,21,24,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37395,"name":"Ornamented Plate Regalia","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[0,0,111,61,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37396,"name":"Whalehunter Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,23,26,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11626,"name":"The Emissary"}}]}, -{"id":37397,"name":"Gold Amulet of Kings","icon":"inv_jewelry_amulet_03","type":2,"stats":[47,0,57,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37398,"name":"Mantle of Discarded Ways","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,82,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37399,"name":"Floodplain Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,31,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11664,"name":"Escaping the Mist"}}],"factionRestriction":2}, -{"id":37400,"name":"Whalehunter Cuffs","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,30,0,0,0,0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37401,"name":"Red Sword of Courage","icon":"inv_sword_117","type":13,"weaponType":9,"handType":2,"stats":[25,0,58,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37402,"name":"Floodplain Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,78,30,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37403,"name":"Marshwalker Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37404,"name":"Floodplain Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37405,"name":"Marshwalker Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37406,"name":"Denwatcher's Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,33,51,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11884,"name":"Nedar, Lord of Rhinos..."}}]}, -{"id":37407,"name":"Sovereign's Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,66,87,0,0,43,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37408,"name":"Girdle of Bane","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,94,66,0,48,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37409,"name":"Gilt-Edged Leather Gauntlets","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,66,97,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}]}, -{"id":37410,"name":"Tracker's Balanced Knives","icon":"inv_misc_coin_10","type":14,"rangedWeaponType":5,"stats":[0,0,39,0,0,0,26,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37414,"name":"Farseer's Headpiece","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,48,27,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11884,"name":"Nedar, Lord of Rhinos..."}}]}, -{"id":37415,"name":"Tundrastrider Ringmail","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37417,"name":"Westrift Handcovers","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,27,26,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37418,"name":"Seaspeaker Legguards","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,36,48,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37419,"name":"Seaspeaker Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,24,21,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11619,"name":"Gamel the Cruel"}}]}, -{"id":37420,"name":"Sharkproof Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,20,0,18,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37421,"name":"Waverunner Waistband","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,26,37,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11949,"name":"Not Without a Fight!"}}]}, -{"id":37422,"name":"Westrift Wristguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,24,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11664,"name":"Escaping the Mist"}}],"factionRestriction":2}, -{"id":37423,"name":"Sharkproof Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,53,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11626,"name":"The Emissary"}}]}, -{"id":37424,"name":"Plainhunter's Epaulettes","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,28,0,0,0,27,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37425,"name":"Tundrastrider Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,31,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37426,"name":"Rusty Mesh Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,52,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11566,"name":"Surrender... Not!"}}]}, -{"id":37427,"name":"Plainhunter's Waistband","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,28,41,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37428,"name":"Ring-Ridden Wrist Protectors","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,16,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37429,"name":"Glimmering Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11681,"name":"Rescuing Evanor"}}]}, -{"id":37433,"name":"Layered Scale Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37434,"name":"Cauterizing Chain Strand","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11914,"name":"Keep the Secret Safe"}}]}, -{"id":37435,"name":"Flame Infused Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11919,"name":"Drake Hunt"}}]}, -{"id":37436,"name":"Seaspeaker Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11623,"name":"A Visit to the Curator"}}]}, -{"id":37437,"name":"Plainhunter's Chestpiece","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,23,45,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37439,"name":"Spiked Magmoth Gloves","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,21,30,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37440,"name":"Spiked Magmoth Chestpiece","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,53,33,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37441,"name":"Spiked Magmoth Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,21,58,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37442,"name":"Chilled Mail Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,0,21,40,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37443,"name":"Spiked Magmoth Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,37,57,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37444,"name":"Wavekeeper's Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,33,53,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37446,"name":"Tank Commander's Treads","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,28,40,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11652,"name":"The Plains of Nasam"}}],"factionRestriction":2}, -{"id":37447,"name":"Reinforced Mendicant's Cowl","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,53,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11705,"name":"Foolish Endeavors"}}],"factionRestriction":2}, -{"id":37456,"name":"Cauterizing Chain Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11957,"name":"Saragosa's End"}}]}, -{"id":37458,"name":"Wristguards of Rocky Horror","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,0,0,0,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":12728,"name":"Monitoring the Rift: Winterfin Cavern"}}]}, -{"id":37461,"name":"Tidebreaker Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,27,98,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":334,"weaponDamageMax":502,"weaponSpeed":3.4,"ilvl":145,"quality":3,"sources":[{"soldBy":{"npcId":25206,"npcName":"Ahlurglgr","zoneId":3537}}]}, -{"id":37462,"name":"Sea King's Crown","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,32,34,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":145,"quality":2,"sources":[{"soldBy":{"npcId":25206,"npcName":"Ahlurglgr","zoneId":3537}}]}, -{"id":37463,"name":"Winterfin Patch of Honor","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,40,51,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":145,"quality":2,"sources":[{"soldBy":{"npcId":25206,"npcName":"Ahlurglgr","zoneId":3537}}]}, -{"id":37468,"name":"HF28 Plate Physical Boots4","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[39,0,24,0,0,0,40,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37471,"name":"Girdle of Ripped Space","icon":"inv_belt_35","type":8,"armorType":4,"stats":[16,0,58,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":12728,"name":"Monitoring the Rift: Winterfin Cavern"}}]}, -{"id":37475,"name":"Benign Crusader's Plate","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,31,53,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11705,"name":"Foolish Endeavors"}}],"factionRestriction":2}, -{"id":37476,"name":"Grek'lor's Breastplate of Bloodrage","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,80,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11652,"name":"The Plains of Nasam"}}],"factionRestriction":2}, -{"id":37477,"name":"Lost Crusader Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,33,30,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37478,"name":"Amberplate Grips","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,0,0,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37479,"name":"Amberplate Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[30,0,80,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37480,"name":"Mightstone Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[30,0,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37481,"name":"Chestguard of Salved Wounds","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,33,53,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37482,"name":"Mightstone Legplates","icon":"inv_pants_plate_09","type":9,"armorType":4,"stats":[24,0,36,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37483,"name":"Seabone Heaume","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37484,"name":"Mendicant's Treads","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37485,"name":"Clam Collector Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[21,0,58,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37486,"name":"Landlocked Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[16,0,45,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11949,"name":"Not Without a Fight!"}}]}, -{"id":37487,"name":"Seabone Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[38,0,57,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11626,"name":"The Emissary"}}]}, -{"id":37505,"name":"Battle Leader's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[53,22,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37506,"name":"Bogstrok Plate Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,24,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11566,"name":"Surrender... Not!"}}]}, -{"id":37507,"name":"Chilled Shoulderplates","icon":"inv_shoulder_76","type":3,"armorType":4,"stats":[16,0,58,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37508,"name":"Sinking Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11560,"name":"Oh Noes, the Tadpoles!"}}]}, -{"id":37509,"name":"Seething Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[39,0,0,0,0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11681,"name":"Rescuing Evanor"}}]}, -{"id":37510,"name":"Wristguards of Edification","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,18,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37511,"name":"Crucible Waistguard","icon":"inv_belt_32","type":8,"armorType":4,"stats":[21,0,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37512,"name":"Gauntlets of the Crimson Guardian","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11914,"name":"Keep the Secret Safe"}}]}, -{"id":37513,"name":"Helm of the Crimson Drakonid","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[22,0,0,0,0,0,53,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11919,"name":"Drake Hunt"}}]}, -{"id":37514,"name":"Freed Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11610,"name":"Leading the Ancestors Home"}}]}, -{"id":37515,"name":"Lost Crusader Waistguard","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,40,28,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11623,"name":"A Visit to the Curator"}}]}, -{"id":37516,"name":"Chilled Greaves","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[21,0,0,0,0,0,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37517,"name":"Chilled Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[39,0,0,0,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37518,"name":"Amberplate Waistguard","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,58,0,0,0,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37519,"name":"Amberplate Headguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[30,0,80,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37520,"name":"Plainkeeper Blockade","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11884,"name":"Nedar, Lord of Rhinos..."}}]}, -{"id":37521,"name":"Icechill Buckler","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,0,0,0,0,0,12,0,30,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11623,"name":"A Visit to the Curator"}}]}, -{"id":37522,"name":"Earthborn Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11909,"name":"Defeat the Gearmaster"}}],"factionRestriction":2}, -{"id":37523,"name":"Rigid Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,45,0,0,0,0,0,16,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11619,"name":"Gamel the Cruel"}}]}, -{"id":37524,"name":"Scout's Signet Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,0,0,0,0,16,12,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37525,"name":"Deep Sea Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,18,30,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11949,"name":"Not Without a Fight!"}}]}, -{"id":37526,"name":"Thin Dexterity Enhancing Tube","icon":"inv_gizmo_felironcasing","type":11,"stats":[0,0,18,0,0,0,30,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37527,"name":"Shimmering Band","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,31,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11560,"name":"Oh Noes, the Tadpoles!"}}]}, -{"id":37528,"name":"Dry Earth Circle","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,24,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37529,"name":"Shivering Healer's Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,45,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37530,"name":"Icy Ripper Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,31,0,0,0,21,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37531,"name":"Circle of Frigid Wind","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37535,"name":"Stave of the Windborn","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,55,36,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11909,"name":"Defeat the Gearmaster"}}],"factionRestriction":2}, -{"id":37537,"name":"Stave of the Spiritcaller","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,52,0,0,38,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":397,"weaponSpeed":3,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11909,"name":"Defeat the Gearmaster"}}],"factionRestriction":2}, -{"id":37541,"name":"Giant Turtle Collar","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11619,"name":"Gamel the Cruel"}}]}, -{"id":37543,"name":"Pugnacious Collar","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,52,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37544,"name":"Drakebone Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,0,0,0,0,12,0,30,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37545,"name":"Graven Shoveltusk Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,47,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11705,"name":"Foolish Endeavors"}}],"factionRestriction":2}, -{"id":37546,"name":"Choker of the Northern Wind","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,45,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37547,"name":"Fireborn Warhammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,11,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":2.5,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11909,"name":"Defeat the Gearmaster"}}],"factionRestriction":2}, -{"id":37548,"name":"Iceflow Collar","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,24,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11610,"name":"Leading the Ancestors Home"}}]}, -{"id":37555,"name":"Warsong's Wrath","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11608,"name":"Bury Those Cockroaches!"}}],"factionRestriction":2}, -{"id":37556,"name":"Talisman of the Tundra","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37557,"name":"Warsong's Fervor","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11592,"name":"We Strike!"}}],"factionRestriction":2}, -{"id":37558,"name":"Tidal Boon","icon":"inv_jewelry_necklace_32","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11560,"name":"Oh Noes, the Tadpoles!"}}]}, -{"id":37559,"name":"Serrah's Star","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11914,"name":"Keep the Secret Safe"}}]}, -{"id":37560,"name":"Vial of Renewal","icon":"inv_valentinecolognebottle","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37561,"name":"Touch of the Elements","icon":"inv_crown_13","type":12,"stats":[0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2}, -{"id":37562,"name":"Fury of the Crimson Drake","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11957,"name":"Saragosa's End"}}]}, -{"id":37564,"name":"Scaled Flame Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11969,"name":"Springing the Trap"}}]}, -{"id":37566,"name":"Durable Worghide Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,0,0,12,16,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{}}]}, -{"id":37573,"name":"Idol of the Plainstalker","icon":"classic_ability_druid_demoralizingroar","type":14,"rangedWeaponType":4,"stats":[0,12,18,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"unique":true,"classAllowlist":[1,7],"sources":[{"quest":{}}]}, -{"id":37574,"name":"Libram of Furious Blows","icon":"inv_misc_stonetablet_05","type":14,"rangedWeaponType":4,"stats":[12,0,18,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"unique":true,"classAllowlist":[4,10],"sources":[{"quest":{}}]}, -{"id":37575,"name":"Totem of the Tundra","icon":"spell_nature_earthquake","type":14,"rangedWeaponType":4,"stats":[0,12,18,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"unique":true,"classAllowlist":[1,7],"sources":[{"quest":{}}]}, -{"id":37587,"name":"Ymirjar Physician's Robe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,113,78,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37590,"name":"Bands of Fading Light","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,63,35,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":1196,"otherName":"Trash"}}]}, -{"id":37591,"name":"Nerubian Shield Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[43,0,64,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}]}, -{"id":37592,"name":"Brood Plague Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,92,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}]}, -{"id":37593,"name":"Sprinting Shoulderpads","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,58,102,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}]}, -{"id":37594,"name":"Elder Headpiece","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,130,78,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}]}, -{"id":37595,"name":"Necklace of Taldaram","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,64,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}]}, -{"id":37596,"name":"Direbrew's Bottle DO NOT USE","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1}, -{"id":37597,"name":"Direbrew's Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2,"ilvl":115,"quality":4}, -{"id":37611,"name":"Epic Bland Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":186,"weaponSpeed":1.8,"ilvl":146,"quality":4}, -{"id":37612,"name":"Bonegrinder Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[70,0,91,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}]}, -{"id":37613,"name":"Flame Sphere Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,78,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}]}, -{"id":37614,"name":"Gauntlets of the Plundering Geist","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,58,75,0,0,0,44,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}]}, -{"id":37615,"name":"Titanium Compound Bow","icon":"inv_weapon_bow_35","type":14,"rangedWeaponType":1,"stats":[0,24,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":343,"weaponDamageMax":638,"weaponSpeed":2.9,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37616,"name":"Kilt of the Forgotten One","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,112,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37617,"name":"Staff of Sinister Claws","icon":"inv_staff_37","type":13,"weaponType":8,"handType":4,"stats":[0,0,144,0,51,0,0,78,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":2.1,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37618,"name":"Greaves of Ancient Evil","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[57,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37619,"name":"Wand of Ahn'kahet","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,41,28,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":617,"weaponSpeed":1.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37620,"name":"Bracers of the Herald","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[34,0,75,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37622,"name":"Skirt of the Old Kingdom","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,127,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37623,"name":"Fiery Obelisk Handguards","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,96,66,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}]}, -{"id":37624,"name":"Stained-Glass Shard Ring","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,30,78,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4494,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}]}, -{"id":37625,"name":"Web Winder Gloves","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,84,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4494,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}]}, -{"id":37626,"name":"Wand of Sseratus","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,34,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}]}, -{"id":37627,"name":"Snake Den Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[50,0,85,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}]}, -{"id":37628,"name":"Slad'ran's Coiled Cord","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,82,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}]}, -{"id":37629,"name":"Slithering Slippers","icon":"inv_boots_cloth_15","type":10,"armorType":1,"stats":[0,0,82,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}]}, -{"id":37630,"name":"Shroud of Moorabi","icon":"inv_misc_cape_19","type":4,"stats":[0,0,72,44,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}]}, -{"id":37631,"name":"Fist of the Deity","icon":"inv_sword_draenei_05","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,25,0,38,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}]}, -{"id":37632,"name":"Mojo Frenzy Greaves","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,86,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}]}, -{"id":37633,"name":"Ground Tremor Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[48,0,93,0,0,37,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}]}, -{"id":37634,"name":"Bracers of the Divine Elemental","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,60,43,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}]}, -{"id":37635,"name":"Pauldrons of the Colossus","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}]}, -{"id":37636,"name":"Helm of Cheated Fate","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,78,138,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}]}, -{"id":37637,"name":"Living Mojo Belt","icon":"inv_belt_14","type":8,"armorType":1,"stats":[0,0,95,50,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}]}, -{"id":37638,"name":"Offering of Sacrifice","icon":"spell_holy_sealofsacrifice","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37639,"name":"Grips of the Beast God","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,50,77,0,0,40,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37640,"name":"Boots of Transformation","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,82,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37641,"name":"Arcane Flame Altar-Garb","icon":"inv_chest_cloth_71","type":5,"armorType":1,"stats":[0,0,130,78,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37642,"name":"Hemorrhaging Circle","icon":"inv_jewelry_ring_39","type":11,"stats":[0,49,95,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37643,"name":"Sash of Blood Removal","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,94,66,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37644,"name":"Gored Hide Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,90,172,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37645,"name":"Horn-Tipped Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[38,0,97,0,0,0,0,0,67,48,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}]}, -{"id":37646,"name":"Burning Skull Pendant","icon":"spell_fire_totemofwrath","type":2,"stats":[44,0,63,0,0,0,0,0,0,28,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}]}, -{"id":37647,"name":"Cloak of Bloodied Waters","icon":"inv_misc_cape_18","type":4,"stats":[60,0,37,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}]}, -{"id":37648,"name":"Belt of Tasseled Lanterns","icon":"inv_belt_08","type":8,"armorType":3,"stats":[0,50,69,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}]}, -{"id":37649,"name":"Quarry Chisel","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,48,0,0,33,0,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":219,"weaponSpeed":1.4,"ilvl":200,"quality":3}, -{"id":37650,"name":"Shardling Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,112,70,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}]}, -{"id":37651,"name":"The Prospector's Prize","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,27,29,0,51,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}]}, -{"id":37652,"name":"Spaulders of Krystallus","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,81,50,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}]}, -{"id":37653,"name":"Sword of Justice","icon":"inv_sword_102","type":13,"weaponType":9,"handType":4,"stats":[70,0,105,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":514,"weaponDamageMax":772,"weaponSpeed":3.8,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}]}, -{"id":37654,"name":"Sabatons of the Ages","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,0,84,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}]}, -{"id":37655,"name":"Mantle of the Tribunal","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,100,58,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}]}, -{"id":37656,"name":"Raging Construct Bands","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,43,53,0,0,18,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}]}, -{"id":37657,"name":"Spark of Life","icon":"inv_misc_enggizmos_06","type":12,"stats":[0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37658,"name":"Sun-Emblazoned Chestplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[53,0,117,0,0,51,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37659,"name":"Enti's Quenched Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":172,"weaponSpeed":3.7,"ilvl":200}, -{"id":37660,"name":"Forge Ember","icon":"spell_fire_fire","type":12,"stats":[0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37666,"name":"Boots of the Whirling Mist","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,58,108,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37667,"name":"The Fleshshaper","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":2,"stats":[0,22,86,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37668,"name":"Bands of the Stoneforge","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[50,0,73,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37669,"name":"Leggings of the Stone Halls","icon":"inv_pants_leather_09","type":9,"armorType":3,"stats":[0,90,125,0,0,0,64,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37670,"name":"Sjonnir's Girdle","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}]}, -{"id":37671,"name":"Refined Ore Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[57,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":37672,"name":"Patina-Coated Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,112,78,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":37673,"name":"Dark Runic Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,81,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}]}, -{"id":37675,"name":"Legplates of Steel Implants","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[70,0,103,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}]}, -{"id":37678,"name":"Bile-Cured Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,58,111,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}]}, -{"id":37679,"name":"Spaulders of the Abomination","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,50,66,0,0,0,30,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}]}, -{"id":37680,"name":"Belt of Unified Souls","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,94,58,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}]}, -{"id":37681,"name":"Gavel of the Fleshcrafter","icon":"inv_mace_60","type":13,"weaponType":4,"handType":1,"stats":[0,0,74,0,32,0,0,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":389,"weaponSpeed":2.3,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}]}, -{"id":37682,"name":"Bindings of Dark Will","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[42,0,66,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}]}, -{"id":37683,"name":"Necromancer's Amulet","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,64,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}]}, -{"id":37684,"name":"Forgotten Shadow Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,90,70,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}]}, -{"id":37685,"name":"Mobius Band","icon":"inv_jewelry_ring_71","type":11,"stats":[0,43,83,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}]}, -{"id":37686,"name":"Cracked Epoch Grasps","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,84,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}]}, -{"id":37687,"name":"Gloves of Distorted Time","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,81,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}]}, -{"id":37688,"name":"Legplates of the Infinite Drakonid","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[78,0,117,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}]}, -{"id":37689,"name":"Pendant of the Nathrezim","icon":"inv_jewelry_necklace_43","type":2,"stats":[43,0,64,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37690,"name":"Pauldrons of Destiny","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,84,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37691,"name":"Mantle of Deceit","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,104,58,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37692,"name":"Pierce's Pistol","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,34,0,0,0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":343,"weaponDamageMax":638,"weaponSpeed":2.9,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37693,"name":"Greed","icon":"inv_weapon_hand_06","type":13,"weaponType":3,"handType":1,"stats":[0,29,88,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37694,"name":"Band of Guile","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[0,0,75,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37695,"name":"Legguards of Nature's Power","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,0,128,89,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37696,"name":"Plague-Infected Bracers","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,71,50,28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":37697,"name":"Trade District Knife","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,24,58,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":1.8,"ilvl":200,"quality":3}, -{"id":37698,"name":"Spaulders of Elder's Square","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[60,0,79,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37699,"name":"Festival Lane Girdle","icon":"inv_belt_17","type":8,"armorType":4,"stats":[0,0,86,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37708,"name":"Stick","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3,"ilvl":1,"quality":1,"sources":[{"quest":{"id":12414,"name":"Mounting Up"}}]}, -{"id":37712,"name":"Terrace Defence Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[58,0,63,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}]}, -{"id":37714,"name":"Batrider's Cord","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,58,101,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}]}, -{"id":37715,"name":"Cowl of the Dire Troll","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,112,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}]}, -{"id":37717,"name":"Legs of Physical Regeneration","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,133,78,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}]}, -{"id":37718,"name":"Temple Crystal Fragment","icon":"inv_datacrystal01","type":13,"weaponType":5,"handType":3,"stats":[0,0,63,44,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}]}, -{"id":37721,"name":"Cursed Lich Blade","icon":"inv_sword_91","type":13,"weaponType":9,"handType":1,"stats":[0,0,57,0,0,34,24,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}]}, -{"id":37722,"name":"Breastplate of Undeath","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[80,112,75,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}]}, -{"id":37723,"name":"Incisor Fragment","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}]}, -{"id":37724,"name":"Handler's Arm Strap","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,62,44,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}]}, -{"id":37725,"name":"Savage Wound Wrap","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,59,44,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}]}, -{"id":37726,"name":"King Dred's Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,78,109,0,0,52,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}]}, -{"id":37728,"name":"Cloak of the Enemy","icon":"inv_misc_cape_21","type":4,"stats":[31,0,66,0,0,25,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}]}, -{"id":37729,"name":"Grips of Sculptured Icicles","icon":"inv_gauntlets_61","type":7,"armorType":4,"stats":[0,0,101,58,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}]}, -{"id":37730,"name":"Cleric's Linen Shoes","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,73,50,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}]}, -{"id":37731,"name":"Opposed Stasis Leggings","icon":"inv_pants_cloth_23","type":9,"armorType":1,"stats":[0,0,110,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}]}, -{"id":37732,"name":"Spectral Seal of the Prophet","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,52,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37733,"name":"Mojo Masked Crusher","icon":"inv_mace_63","type":13,"weaponType":4,"handType":4,"stats":[78,45,84,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":457,"weaponDamageMax":762,"weaponSpeed":3.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37734,"name":"Talisman of Troll Divinity","icon":"racial_troll_berserk","type":12,"stats":[0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37735,"name":"Ziggurat Imprinted Chestguard","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[76,0,117,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37739,"name":"Brutal Gladiator's Blade of Alacrity","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":1,"stats":[0,0,32,21,0,18,0,227,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":115,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[5,1,7,3,8]}, -{"id":37740,"name":"Brutal Gladiator's Swift Judgement","icon":"inv_mace_71","type":13,"weaponType":4,"handType":1,"stats":[0,0,38,25,0,0,0,227,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":115,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[4,5,1,7]}, -{"id":37743,"name":"Legguards of Brutalization","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[37,0,43,0,0,0,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37744,"name":"Horrorblood Treads","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,29,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37745,"name":"Greenhealer's Garb","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,51,40,25,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37746,"name":"Helm of the Burning Soul","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,71,34,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37747,"name":"Beneficent Bulwark","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,29,19,22,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37748,"name":"Winterfall's Frozen Necklace","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,21,22,16,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":130,"quality":3}, -{"id":37749,"name":"Shocking Claws","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":3,"stats":[0,0,22,0,0,23,22,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.7,"ilvl":134,"quality":3}, -{"id":37751,"name":"Tooga's Lost Toenail","icon":"inv_jewelry_ring_80","type":11,"stats":[19,0,28,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":3,"unique":true}, -{"id":37752,"name":"Sandals of Broken Dreams","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,50,29,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":3}, -{"id":37753,"name":"Mendicant's Robe of Mendacity","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,48,37,40,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":37754,"name":"Shimmersteel Hood","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,81,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3}, -{"id":37755,"name":"Leggings of the Icy Heart","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,60,40,43,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3}, -{"id":37756,"name":"Zoe's Comforting Cape","icon":"inv_misc_cape_04","type":4,"stats":[0,0,26,27,23,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3}, -{"id":37757,"name":"Charlotte's Chastizing Pauldrons","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,57,34,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":37758,"name":"Raine's Choker of Combustion","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,41,27,0,0,21,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"setName":"Raine's Revenge","setId":759}, -{"id":37759,"name":"Rhie-Ay's Clutching Gauntlets","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,44,25,40,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3}, -{"id":37760,"name":"Cracklefire Wristguards","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,59,30,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":3}, -{"id":37761,"name":"Shimmerthread Girdle","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,42,44,41,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":37762,"name":"Many-Pocketed Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,30,55,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":3}, -{"id":37763,"name":"Treads of the Purifier","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,48,30,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":37764,"name":"Corehound Fang Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,28,63,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3}, -{"id":37765,"name":"Leggings of the Water Moccasin","icon":"inv_pants_mail_11","type":9,"armorType":2,"stats":[0,0,92,42,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3}, -{"id":37766,"name":"Bracers of Unmitigated Larceny","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,28,50,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":37767,"name":"Ryft's Deathgaze","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,48,80,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3}, -{"id":37768,"name":"Leggings of Violent Exsanguination","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,53,95,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3}, -{"id":37769,"name":"Gnarled Shovelhorn Spaulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,65,38,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":37770,"name":"Bulge-Concealing Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,56,105,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":3}, -{"id":37771,"name":"Wristguards of Verdant Recovery","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,65,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":37772,"name":"Wub's Electrospike Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,46,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":3}, -{"id":37773,"name":"Shock-Inducing Girdle","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,30,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":37774,"name":"Leggings of Aqueous Dissolution","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,74,44,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3}, -{"id":37775,"name":"Helm of the Broken Ram","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,46,52,0,0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3}, -{"id":37776,"name":"Bracers of Accurate Fire","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,26,50,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3}, -{"id":37777,"name":"Bracers of Sizzling Heat","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,50,21,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":37778,"name":"Girdle of Unerring Flight","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,36,59,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3}, -{"id":37779,"name":"Nixod's Chain-Threshed Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,41,77,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":37780,"name":"Condor-Bone Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,55,55,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":3}, -{"id":37781,"name":"Grips of the Warming Heart","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,50,41,28,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":37782,"name":"Gauntlets of the Cheerful Hearth","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,44,22,20,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":3}, -{"id":37783,"name":"Blood-Tempered Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[30,23,40,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3}, -{"id":37784,"name":"Keystone Great-Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[32,0,75,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37785,"name":"Girdle of the Howling Berserker","icon":"inv_belt_27","type":8,"armorType":4,"stats":[29,0,37,0,0,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3}, -{"id":37786,"name":"Legguards of the Forlorn Seas","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,47,48,40,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3}, -{"id":37787,"name":"Greathelm of the Unyielding Bull","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[32,0,75,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,1400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":37788,"name":"Limb Regeneration Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,72,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37789,"name":"Gauntlets of Disembowelment","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[38,0,36,0,0,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3}, -{"id":37790,"name":"Belt of Crystalline Tears","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,60,40,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3}, -{"id":37791,"name":"Leggings of the Winged Serpent","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,127,89,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37792,"name":"Agin's Crushing Carapace","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[42,0,82,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":37793,"name":"Skullcage of Eternal Terror","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[57,0,82,0,0,43,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":3}, -{"id":37794,"name":"Torta's Oversized Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[32,0,49,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":37795,"name":"Grips of the Valiant Champion","icon":"inv_gauntlets_44","type":7,"armorType":4,"stats":[31,0,48,0,0,0,0,0,0,21,24,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3}, -{"id":37796,"name":"Earthbound Cape","icon":"inv_misc_cape_17","type":4,"stats":[21,0,31,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3}, -{"id":37797,"name":"Cloak of the Agile Mind","icon":"inv_misc_cape_18","type":4,"stats":[0,30,28,23,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":37798,"name":"Overlook Handguards","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}]}, -{"id":37799,"name":"Reanimator's Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,63,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":37800,"name":"Aviary Guardsman's Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,70,84,0,0,0,60,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":37801,"name":"Waistguard of the Risen Knight","icon":"inv_belt_34","type":8,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}]}, -{"id":37802,"name":"Elanor's Edge","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,17,24,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":137,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":146,"quality":3}, -{"id":37803,"name":"Lola's Lifegiving Branch","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,78,0,56,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":342,"weaponSpeed":2.4,"ilvl":138,"quality":3}, -{"id":37804,"name":"Bloodwood Greatstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":316,"weaponDamageMax":475,"weaponSpeed":3,"ilvl":158,"quality":3}, -{"id":37805,"name":"Melia's Magnificent Scepter","icon":"inv_mace_59","type":13,"weaponType":4,"handType":1,"stats":[0,0,32,0,26,0,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":232,"weaponSpeed":1.8,"ilvl":154,"quality":3}, -{"id":37806,"name":"Zabra's Misplaced Staff","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,101,0,0,34,53,0,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":345,"weaponDamageMax":518,"weaponSpeed":3.2,"ilvl":162,"quality":3}, -{"id":37807,"name":"Lydia's Sharpened Swordbreaker","icon":"inv_sword_2h_blood_c_03","type":13,"weaponType":9,"handType":2,"stats":[27,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.7,"ilvl":150,"quality":3}, -{"id":37808,"name":"Dragonjaw Mauler","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":130,"weaponDamageMax":243,"weaponSpeed":1.8,"ilvl":162,"quality":3}, -{"id":37809,"name":"Roc-Feather Longbow","icon":"inv_weapon_bow_34","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":254,"weaponDamageMax":474,"weaponSpeed":2.7,"ilvl":162,"quality":3}, -{"id":37810,"name":"Blade-Binding Bulwark","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[19,0,43,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,4814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3}, -{"id":37811,"name":"Captain Carver's Persuader","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[29,0,60,0,0,0,40,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":346,"weaponDamageMax":520,"weaponSpeed":3.5,"ilvl":146,"quality":3}, -{"id":37812,"name":"Petrified Ironwood Smasher","icon":"inv_mace_64","type":13,"weaponType":4,"handType":4,"stats":[77,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":337,"weaponDamageMax":507,"weaponSpeed":3.2,"ilvl":158,"quality":3}, -{"id":37813,"name":"Banner Slicer","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,72,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":309,"weaponDamageMax":465,"weaponSpeed":3,"ilvl":154,"quality":3}, -{"id":37814,"name":"Iron Dwarf Smith Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}]}, -{"id":37817,"name":"Branch of Sinful Reprieve","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,39,17,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3}, -{"id":37818,"name":"Patroller's War-Kilt","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,110,70,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}]}, -{"id":37819,"name":"Milan's Mastercraft Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,24,0,0,15,24,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"unique":true}, -{"id":37820,"name":"Worgen's Ring of Revitalization","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,31,0,0,0,0,0,0,21,0,0,0,0,0,0,24,0,0,0,0,0,0,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":3,"unique":true}, -{"id":37821,"name":"Raine's Signet of Blasting","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,48,27,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"setName":"Raine's Revenge","setId":759}, -{"id":37822,"name":"Twisted Puzzle-Ring","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,50,30,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":3,"unique":true}, -{"id":37823,"name":"Draconic Choker of Ferocity","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,34,0,0,19,30,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":37824,"name":"Gwyneth's Runed Dragonwand","icon":"inv_wand_10","type":14,"rangedWeaponType":6,"stats":[0,0,35,17,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":398,"weaponSpeed":1.5,"ilvl":174,"quality":3}, -{"id":37825,"name":"Traditionally Dyed Handguards","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,91,50,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}]}, -{"id":37826,"name":"The General's Steel Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[58,36,85,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}]}, -{"id":37835,"name":"Je'Tze's Bell","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":37840,"name":"Shroud of Reverberation","icon":"inv_misc_cape_06","type":4,"stats":[0,25,96,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}]}, -{"id":37841,"name":"Slag Footguards","icon":"inv_boots_chain_07","type":10,"armorType":2,"stats":[0,58,99,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}]}, -{"id":37842,"name":"Belt of Vivacity","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,85,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}]}, -{"id":37843,"name":"Giant-Hair Woven Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,97,58,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}]}, -{"id":37844,"name":"Winged Talisman","icon":"spell_shadow_burningspirit","type":12,"stats":[0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}]}, -{"id":37845,"name":"Cord of Swirling Winds","icon":"inv_belt_36","type":8,"armorType":3,"stats":[0,58,78,0,0,0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}]}, -{"id":37846,"name":"Charged-Bolt Grips","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,50,100,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}]}, -{"id":37847,"name":"Skywall Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,81,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":37848,"name":"Lightning Giant Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,76,152,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":488,"weaponSpeed":2.4,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37849,"name":"Planetary Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[80,76,78,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37850,"name":"Flowing Sash of Order","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,81,50,0,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37851,"name":"Ornate Woolen Stola","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,134,78,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37852,"name":"Colossal Skull-Clad Cleaver","icon":"inv_axe_76","type":13,"weaponType":1,"handType":4,"stats":[90,54,94,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":507,"weaponDamageMax":761,"weaponSpeed":3.4,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37853,"name":"Advanced Tooled-Leather Bands","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,50,73,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37854,"name":"Woven Bracae Leggings","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,127,90,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37855,"name":"Mail Girdle of the Audient Earth","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}]}, -{"id":37856,"name":"Librarian's Paper Cutter","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,25,0,0,0,26,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":203,"weaponSpeed":1.3,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":37857,"name":"Helm of the Lightning Halls","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,111,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":37858,"name":"Awakened Handguards","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,81,58,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}]}, -{"id":37861,"name":"Necklace of Arcane Spheres","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,29,82,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}]}, -{"id":37862,"name":"Gauntlets of the Water Revenant","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[42,0,87,0,0,33,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}]}, -{"id":37864,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"factionRestriction":1}, -{"id":37865,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":128,"quality":4,"unique":true,"factionRestriction":2}, -{"id":37867,"name":"Footwraps of Teleportation","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,98,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}]}, -{"id":37868,"name":"Girdle of the Ethereal","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,83,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}]}, -{"id":37869,"name":"Globule Signet","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,60,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}]}, -{"id":37870,"name":"Twin-Headed Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,58,66,0,0,0,58,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}]}, -{"id":37871,"name":"The Key","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,34,57,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}]}, -{"id":37872,"name":"Lavanthor's Talisman","icon":"inv_misc_armorkit_21","type":12,"stats":[0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}]}, -{"id":37873,"name":"Mark of the War Prisoner","icon":"inv_jewelry_talisman_13","type":12,"stats":[0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37874,"name":"Gauntlets of Capture","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[58,34,64,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37875,"name":"Spaulders of the Violet Hold","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,84,50,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37876,"name":"Cyanigosa's Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,110,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37883,"name":"Staff of Trickery","icon":"inv_staff_84","type":13,"weaponType":8,"handType":4,"stats":[0,89,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":358,"weaponDamageMax":537,"weaponSpeed":2.4,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37884,"name":"Azure Cloth Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,70,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37886,"name":"Handgrips of the Savage Emissary","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,66,77,0,0,0,36,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":37889,"name":"Prison Manifest","icon":"inv_misc_book_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,72,44,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":37890,"name":"Chain Gang Legguards","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,78,150,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":37891,"name":"Cast Iron Shackles","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[43,28,64,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}]}, -{"id":37927,"name":"Guardian's Band of Subjugation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,36,24,0,0,0,34,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4,"unique":true}, -{"id":37928,"name":"Guardian's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,47,24,0,0,0,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":37929,"name":"Guardian's Pendant of Reprieve","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,26,0,0,0,26,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":4}, -{"id":37934,"name":"Noble's Elementium Signet","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":37936,"name":"Fisherman's Earwarmer","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,33,35,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12017,"name":"Meat on the Hook"}}]}, -{"id":37937,"name":"Alystros' Plume Cinch","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,65,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12456,"name":"The Plume of Alystros"}}]}, -{"id":37938,"name":"Visionary's Robes","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,42,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12282,"name":"Imprints on the Past"}}],"factionRestriction":1}, -{"id":37939,"name":"Baleen Braided Collar","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11959,"name":"Slay Loguhn"}}]}, -{"id":37940,"name":"Mantle of Itharius","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,32,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12459,"name":"That Which Creates Can Also Destroy"}}]}, -{"id":37941,"name":"Fading Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,26,42,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12013,"name":"End Arcanimus"}}]}, -{"id":37942,"name":"Kirin Tor Initiate's Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,63,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37943,"name":"Kirin Tor Initiate's Cowl","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,52,56,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37944,"name":"High Priest Forith's Robes","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,42,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12267,"name":"Neltharion's Flame"}}]}, -{"id":37945,"name":"Thin Jormungar Legwraps","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,42,45,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12080,"name":"Really Big Worm"}}]}, -{"id":37947,"name":"Miraculous Waistwarming Band","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,31,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12052,"name":"Harp on This!"}}]}, -{"id":37948,"name":"Refractive Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,60,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12047,"name":"Something That Doesn't Melt"}}]}, -{"id":37949,"name":"Saboteur's Wrap","icon":"inv_misc_cape_06","type":4,"stats":[0,0,22,0,0,0,25,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37950,"name":"Highseas Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,31,0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37953,"name":"Wastewind Garments","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,33,56,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37954,"name":"Wastewind Cinch","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,48,33,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37956,"name":"Frontrunner's Blessed Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,24,26,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37957,"name":"Wastewind Bracers","icon":"inv_bracer_01","type":6,"armorType":1,"stats":[0,0,24,26,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37958,"name":"Wastewind Headcover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,82,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37959,"name":"Wastewind Pauldrons","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,68,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37960,"name":"Oath Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,27,32,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37961,"name":"Wastewind Leggings","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,36,57,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37962,"name":"Treads of the Charred Canyon","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,27,23,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37963,"name":"Wastewind Handwraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,59,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12188,"name":"The Forsaken Blight and You: How Not to Die"}}],"factionRestriction":2}, -{"id":37964,"name":"Spiderwarder Braces","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,51,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11980,"name":"Pride of the Horde"}}],"factionRestriction":2}, -{"id":37965,"name":"Wyrmward Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,66,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37966,"name":"Bracers of Nature's Fury","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,18,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37968,"name":"Robe of Calcified Tears","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,86,33,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12273,"name":"The Denouncement"}}],"factionRestriction":2}, -{"id":37969,"name":"Chaos Mender Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,18,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12090,"name":"Wanted: Gigantaur"}}],"factionRestriction":2}, -{"id":37970,"name":"Feathers of the Dragon Wastes","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,57,33,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12091,"name":"Wanted: Dreadtalon"}}],"factionRestriction":2}, -{"id":37971,"name":"Sash of the Nibbling Plague","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12211,"name":"Let Them Not Rise!"}}],"factionRestriction":2}, -{"id":37980,"name":"Moa'ki Thresherhide Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,45,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12017,"name":"Meat on the Hook"}}]}, -{"id":37981,"name":"Ancient Dreamer's Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,68,41,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12456,"name":"The Plume of Alystros"}}]}, -{"id":37982,"name":"Gleaming Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,27,0,0,0,0,0,13,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11959,"name":"Slay Loguhn"}}]}, -{"id":37983,"name":"Gloves of the Emerald Stalker","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,31,46,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12459,"name":"That Which Creates Can Also Destroy"}}]}, -{"id":37984,"name":"Deathtouched Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,33,36,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12013,"name":"End Arcanimus"}}]}, -{"id":37985,"name":"Violet Stalker Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,33,46,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37986,"name":"Hood of the Forgotten Rifleman","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,41,48,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37987,"name":"Violet Stalker Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,32,19,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37988,"name":"Lord Prestor's Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,0,32,18,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12267,"name":"Neltharion's Flame"}}]}, -{"id":37989,"name":"Rattlebore Slayer Leggings","icon":"inv_pants_leather_06","type":9,"armorType":2,"stats":[0,45,48,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12080,"name":"Really Big Worm"}}]}, -{"id":37990,"name":"Narf's Explosiveproof Strand","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,31,36,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12052,"name":"Harp on This!"}}]}, -{"id":37991,"name":"Hyper-Amplified Natural Leather Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,39,55,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12047,"name":"Something That Doesn't Melt"}}]}, -{"id":37992,"name":"Ritual Neckguard","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,37,22,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37993,"name":"Glade Wanderer Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,35,43,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37995,"name":"Snowfall Reaver Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,36,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37996,"name":"Snowfall Reaver Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37998,"name":"Snowfall Reaver Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,33,0,0,0,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":37999,"name":"Glade Wanderer Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38000,"name":"Snowfall Reaver Breastplate","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,56,39,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38001,"name":"Snowfall Reaver Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,42,36,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38002,"name":"Honorborn Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,32,0,0,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38003,"name":"Snowfall Reaver Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,57,50,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38004,"name":"Scourgeslayer Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,63,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38005,"name":"Spiritfury Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,48,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12188,"name":"The Forsaken Blight and You: How Not to Die"}}],"factionRestriction":2}, -{"id":38006,"name":"Glade Wanderer Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11980,"name":"Pride of the Horde"}}],"factionRestriction":2}, -{"id":38007,"name":"Canyon Runner's Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38008,"name":"Lothalar Woodwalker Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,43,27,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38010,"name":"Scourgeslayer Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,84,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12498,"name":"On Ruby Wings"}}]}, -{"id":38011,"name":"Torturer's Fleshwoven Leggings","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,30,78,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12273,"name":"The Denouncement"}}],"factionRestriction":2}, -{"id":38012,"name":"Lothalar Woodwalker Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,29,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12090,"name":"Wanted: Gigantaur"}}],"factionRestriction":2}, -{"id":38013,"name":"Lothalar Woodwalker Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12091,"name":"Wanted: Dreadtalon"}}],"factionRestriction":2}, -{"id":38014,"name":"Vermin-Handler's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,39,0,0,0,0,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12211,"name":"Let Them Not Rise!"}}],"factionRestriction":2}, -{"id":38023,"name":"Sharkdiver's Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,47,55,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12017,"name":"Meat on the Hook"}}]}, -{"id":38024,"name":"Verdant Linked Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,23,27,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12456,"name":"The Plume of Alystros"}}]}, -{"id":38025,"name":"Guiding Gloves of the Seer","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,27,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12282,"name":"Imprints on the Past"}}],"factionRestriction":1}, -{"id":38026,"name":"Sharkdiver's Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,50,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11959,"name":"Slay Loguhn"}}]}, -{"id":38027,"name":"Verdant Hunter's Guise","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,33,39,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12459,"name":"That Which Creates Can Also Destroy"}}]}, -{"id":38028,"name":"Ring of the Afterlife","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12013,"name":"End Arcanimus"}}]}, -{"id":38029,"name":"Azurehunter Handguards","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38030,"name":"Chestpiece of the Forgotten Captain","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,57,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38031,"name":"Azurehunter Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,26,47,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38032,"name":"Wyrm-Slave Collar","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,0,0,0,0,32,13,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12267,"name":"Neltharion's Flame"}}]}, -{"id":38033,"name":"Ice Heart Chestguard","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,39,56,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12080,"name":"Really Big Worm"}}]}, -{"id":38034,"name":"Serrated Chain Links","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,43,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12052,"name":"Harp on This!"}}]}, -{"id":38035,"name":"Tightened Chainmesh Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,27,23,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12047,"name":"Something That Doesn't Melt"}}]}, -{"id":38036,"name":"Circlet of the Forgotten Mercenary","icon":"inv_jewelry_ring_06","type":11,"stats":[0,0,0,13,18,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38037,"name":"Westwind Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38039,"name":"Iceshear Pauldrons","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38040,"name":"Iceshear Bindings","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38041,"name":"Westwind Waistband","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,47,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38042,"name":"Scourge Ghoul Collar","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,26,0,0,0,0,0,14,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38043,"name":"Anub'ar-Husk Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,45,61,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38044,"name":"Anub'ar-Husk Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,31,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38045,"name":"Anub'ar-Husk Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,45,62,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38046,"name":"Wyrmfire Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,18,64,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38047,"name":"Belt of Ghostly Essence","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,45,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12188,"name":"The Forsaken Blight and You: How Not to Die"}}],"factionRestriction":2}, -{"id":38048,"name":"Breastplate of Sizzling Chitin","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,48,33,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11980,"name":"Pride of the Horde"}}],"factionRestriction":2}, -{"id":38049,"name":"Wyrmchaser's Waistguard","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,43,0,0,0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38051,"name":"Star's Rest Treads","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,30,45,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38053,"name":"Wyrmfire Links","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,56,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12498,"name":"On Ruby Wings"}}]}, -{"id":38054,"name":"Paingiver Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,33,46,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38055,"name":"Ridgehunter Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,31,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12090,"name":"Wanted: Gigantaur"}}],"factionRestriction":2}, -{"id":38056,"name":"Ridgehunter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,34,85,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12091,"name":"Wanted: Dreadtalon"}}],"factionRestriction":2}, -{"id":38057,"name":"Rodent-Proof Headguard","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,41,61,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12211,"name":"Let Them Not Rise!"}}],"factionRestriction":2}, -{"id":38068,"name":"Sinner's Repentance","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,27,0,0,0,13,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38070,"name":"Foresight's Anticipation","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12282,"name":"Imprints on the Past"}}],"factionRestriction":1}, -{"id":38071,"name":"Valonforth's Remembrance","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38072,"name":"Thunder Capacitor","icon":"inv_misc_enggizmos_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12047,"name":"Something That Doesn't Melt"}}]}, -{"id":38073,"name":"Will of the Red Dragonflight","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12498,"name":"On Ruby Wings"}}]}, -{"id":38080,"name":"Automated Weapon Coater","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12047,"name":"Something That Doesn't Melt"}}]}, -{"id":38081,"name":"Scarab of Isanoth","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11980,"name":"Pride of the Horde"}}],"factionRestriction":2}, -{"id":38084,"name":"Crustacean Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[23,0,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12017,"name":"Meat on the Hook"}}]}, -{"id":38085,"name":"Belt of the Emerald Guardian","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,27,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12456,"name":"The Plume of Alystros"}}]}, -{"id":38086,"name":"Vigilant Skullcap","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,91,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12282,"name":"Imprints on the Past"}}],"factionRestriction":1}, -{"id":38087,"name":"Sea Rusted Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,50,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11959,"name":"Slay Loguhn"}}]}, -{"id":38088,"name":"Breastplate of Nature's Ire","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[33,0,36,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12459,"name":"That Which Creates Can Also Destroy"}}]}, -{"id":38089,"name":"Ruby Shades","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18756,"npcName":"Haris Pilton","zoneId":3703}}]}, -{"id":38090,"name":"Sapphire Pinky Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18756,"npcName":"Haris Pilton","zoneId":3703}}]}, -{"id":38091,"name":"Gold Eternium Band","icon":"inv_jewelry_ring_71","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":18756,"npcName":"Haris Pilton","zoneId":3703}}]}, -{"id":38092,"name":"Crystalplate Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[23,0,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12013,"name":"End Arcanimus"}}]}, -{"id":38093,"name":"Dalaran Sentry Wristbraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[13,0,48,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38094,"name":"Dalaran Sentry Headguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[33,0,36,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38095,"name":"Legplates of the Conquered Knight","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,65,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12267,"name":"Neltharion's Flame"}}]}, -{"id":38096,"name":"Crystalplate Legguards","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[24,0,86,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12080,"name":"Really Big Worm"}}]}, -{"id":38097,"name":"Experimental Utility Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[43,0,0,0,0,0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12052,"name":"Harp on This!"}}]}, -{"id":38100,"name":"Crystalplate Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[23,0,65,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38101,"name":"Stonepath Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[31,0,45,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38102,"name":"Stonepath Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[18,0,0,0,0,23,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38103,"name":"Petrified Bone Chestguard","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[0,0,62,41,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38104,"name":"Stonepath Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[24,0,85,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38105,"name":"Stonepath Pauldrons","icon":"inv_shoulder_80","type":3,"armorType":4,"stats":[23,0,0,0,0,0,18,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38106,"name":"Petrified Bone Footguards","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38107,"name":"Stonepath Chestguard","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[33,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38108,"name":"Conscript's Ruby Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[31,0,45,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38109,"name":"Wraithshimmer Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[57,0,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12188,"name":"The Forsaken Blight and You: How Not to Die"}}],"factionRestriction":2}, -{"id":38110,"name":"Legplates of the Agmar Preserver","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,36,33,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":11980,"name":"Pride of the Horde"}}],"factionRestriction":2}, -{"id":38111,"name":"Wyrmbane Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[32,0,0,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38112,"name":"Bark Covered Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[23,0,64,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38114,"name":"Chestplate of the Ruby Champion","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[57,0,0,0,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12498,"name":"On Ruby Wings"}}]}, -{"id":38115,"name":"Sabatons of the Enforcer","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[30,30,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38116,"name":"Plated Magnataur Leggings","icon":"inv_pants_plate_09","type":9,"armorType":4,"stats":[33,0,0,0,0,0,57,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12090,"name":"Wanted: Gigantaur"}}],"factionRestriction":2}, -{"id":38117,"name":"Dreadtalon's Clutch","icon":"inv_belt_28","type":8,"armorType":4,"stats":[23,0,62,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12091,"name":"Wanted: Dreadtalon"}}],"factionRestriction":2}, -{"id":38118,"name":"Bite-Proof Grips","icon":"inv_gauntlets_13","type":7,"armorType":4,"stats":[43,0,27,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12211,"name":"Let Them Not Rise!"}}],"factionRestriction":2}, -{"id":38126,"name":"Frostbite Warstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,39,60,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38127,"name":"Carved Dragonbone Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,26,0,16,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.2,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38128,"name":"Staff of the Spiked Beast","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,84,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38129,"name":"Staff of the Ley Mender","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,56,0,0,45,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38130,"name":"Emme's Lost Spellblade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,28,0,0,0,24,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38131,"name":"Staff of Ruby Wood","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,60,0,39,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38132,"name":"Moonrest Garden Stave","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,90,0,39,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38133,"name":"Timeshattered Spire","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":330,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12470,"name":"Mystery of the Infinite"}}]}, -{"id":38134,"name":"Bloodtinged Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,16,0,26,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.5,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38135,"name":"Mace of the Fallen Raven Priest","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,16,0,0,26,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.2,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38137,"name":"Endurance of the Spell Warder","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,114,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38138,"name":"Keldonus' Missing Spellshard","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,40,0,0,0,14,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38141,"name":"Coldwind Scratching Pole","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,56,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38142,"name":"Infused Dragonbone Splinter","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":1,"stats":[0,0,21,0,0,0,0,27,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38143,"name":"Composite Harpyspine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,68,0,52,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":413,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38146,"name":"Gleaming Iceblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":2.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38147,"name":"Corrupted Band","icon":"inv_jewelry_ring_03","type":11,"stats":[11,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"sources":[{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38148,"name":"Chilled Headsmasher","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,68,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38150,"name":"Imported Ironshod Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,21,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":2.8,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12032,"name":"Conversing With the Depths"}}]}, -{"id":38151,"name":"Daschal's Discarded Shiv","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,24,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":160,"weaponSpeed":1.4,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38152,"name":"Mace of the Violet Guardian","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38153,"name":"Mana Infused Claw","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[26,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.4,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38154,"name":"Taigasha","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,16,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.7,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38155,"name":"Shortblade of the Ruby Ally","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,26,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38156,"name":"Battered Magnataur Dualblade","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,45,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":348,"weaponDamageMax":523,"weaponSpeed":3.8,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38157,"name":"Longbow of the Ruby Rider","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,18,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":240,"weaponDamageMax":447,"weaponSpeed":3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38160,"name":"Soul-Trader's Bindings","icon":"inv_misc_bandage_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38161,"name":"Soul-Trader's Gloves","icon":"inv_gauntlets_17","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38162,"name":"Soul-Trader's Boots","icon":"inv_boots_chain_08","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38163,"name":"Soul-Trader's Head Wrap","icon":"inv_misc_bandage_17","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38169,"name":"Keen Woodland Shank","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,19,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38170,"name":"Spiked Coldwind Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[26,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38171,"name":"Battleworn Magnataur Crusher","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,39,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":330,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38172,"name":"Crossbow of the Hardened Ranger","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":2.8,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38173,"name":"Dagger of the Returning Past","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":1.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12470,"name":"Mystery of the Infinite"}}]}, -{"id":38174,"name":"Time-Bending Smasher","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,19,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.6,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12470,"name":"Mystery of the Infinite"}}]}, -{"id":38175,"name":"The Horseman's Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":1,"stats":[0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":165,"weaponDamageMax":308,"weaponSpeed":2.7,"ilvl":115,"quality":4,"unique":true}, -{"id":38176,"name":"Stronghold Battlemace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38177,"name":"Siege Captain's Gun","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":2.8,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38178,"name":"Battlement Enforcer's Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[45,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.3,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38181,"name":"Warblade of the Forgotten Footman","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":311,"weaponDamageMax":468,"weaponSpeed":3.4,"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38187,"name":"Reactive Waraxe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,36,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.7,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38188,"name":"Claw of the Undead Ravager","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[0,18,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":86,"weaponDamageMax":160,"weaponSpeed":1.4,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12545,"name":"The Cleansing Of Jintha'kalar"}}]}, -{"id":38189,"name":"Backtwister","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,40,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38190,"name":"Scourgeslayer's Shank","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,27,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12545,"name":"The Cleansing Of Jintha'kalar"}}]}, -{"id":38191,"name":"Compact Explosive Delivery Device","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38194,"name":"Mageslayer Rifle","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,8,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":248,"weaponDamageMax":462,"weaponSpeed":3.1,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38195,"name":"Magister's Bane","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[59,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38196,"name":"Bloodsmeared Brutalizer","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,36,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12089,"name":"Wanted: Magister Keldonus"}}],"factionRestriction":2}, -{"id":38197,"name":"Mounted Boneshredder","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,45,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.3,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12050,"name":"Lumber Hack"}}]}, -{"id":38198,"name":"Joint-Severing Quickblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12545,"name":"The Cleansing Of Jintha'kalar"}}]}, -{"id":38202,"name":"Twig of Happy Reminders","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":2.1,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12470,"name":"Mystery of the Infinite"}}]}, -{"id":38206,"name":"Wand of Blinding Light","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,0,21,0,15,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":1.6,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12545,"name":"The Cleansing Of Jintha'kalar"}}]}, -{"id":38207,"name":"Wand of Purifying Fire","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":204,"weaponDamageMax":379,"weaponSpeed":1.8,"ilvl":146,"quality":2,"sources":[{"quest":{"id":12545,"name":"The Cleansing Of Jintha'kalar"}}]}, -{"id":38208,"name":"Valiance Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,13,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":223,"weaponDamageMax":416,"weaponSpeed":2.9,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11797,"name":"The Siege"}}],"factionRestriction":1}, -{"id":38212,"name":"Death Knight's Anguish","icon":"inv_misc_noose_01","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11938,"name":"Buying Some Time"}}],"factionRestriction":1}, -{"id":38213,"name":"Harbinger's Wrath","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11792,"name":"Enemies of the Light"}}],"factionRestriction":1}, -{"id":38214,"name":"Hypergizmatic Energy Booster","icon":"inv_misc_enggizmos_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11701,"name":"Back to the Airstrip"}}],"factionRestriction":1}, -{"id":38217,"name":"Tome of the Violet Tower","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38218,"name":"Executioner's Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,31,0,0,0,36,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{}}]}, -{"id":38219,"name":"Ring of Decimation","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,36,28,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":38220,"name":"Signet of Swift Judgment","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,41,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"unique":true,"sources":[{"quest":{}}]}, -{"id":38221,"name":"Shroud of Fluid Strikes","icon":"inv_misc_cape_06","type":4,"stats":[0,0,42,0,0,0,0,30,0,0,0,0,60,60,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":11973,"name":"Prisoner of War"}}]}, -{"id":38222,"name":"Mantle of Keristrasza","icon":"inv_misc_cape_06","type":4,"stats":[0,0,51,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":11973,"name":"Prisoner of War"}}]}, -{"id":38223,"name":"Cloak of Azure Lights","icon":"inv_misc_cape_06","type":4,"stats":[0,0,41,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":11973,"name":"Prisoner of War"}}]}, -{"id":38224,"name":"Life Binder Talisman","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12151,"name":"Wanton Warlord"}}]}, -{"id":38226,"name":"Chain of the Tolling Bell","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,27,0,0,20,0,0,21,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11965,"name":"Call to Arms!"}}],"factionRestriction":1}, -{"id":38227,"name":"Indomitable Choker of Light","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,41,25,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11965,"name":"Call to Arms!"}}],"factionRestriction":1}, -{"id":38228,"name":"Pendant of Revolutionary Thought","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,50,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11965,"name":"Call to Arms!"}}],"factionRestriction":1}, -{"id":38230,"name":"Clutch of Undying Will","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,41,25,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11898,"name":"Breaking Through"}}],"factionRestriction":2}, -{"id":38231,"name":"Choker of Forceful Redemption","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,27,0,0,20,0,0,21,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11898,"name":"Breaking Through"}}],"factionRestriction":2}, -{"id":38232,"name":"Chain of Vigilant Thought","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,50,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11898,"name":"Breaking Through"}}],"factionRestriction":2}, -{"id":38237,"name":"Axe of Frozen Death","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[37,0,54,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38238,"name":"Borean Smasher","icon":"inv_weapon_hand_18","type":13,"weaponType":3,"handType":1,"stats":[0,15,34,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.8,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38239,"name":"Tower of the Infinite Mind","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,0,32,36,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":3,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38240,"name":"Staff of the Purposeful Mendicant","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,36,0,0,37,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":3,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38241,"name":"Fury of the Raging Dragon","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,12,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":478,"weaponSpeed":3.1,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38242,"name":"Fang of the Desolate Soul","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,16,35,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":1.8,"ilvl":138,"quality":3,"sources":[{"quest":{}}]}, -{"id":38243,"name":"Ravaging Steelfist","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[0,15,34,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.8,"ilvl":138,"quality":3}, -{"id":38244,"name":"Valorous Exterminator","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[37,0,54,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":341,"weaponDamageMax":513,"weaponSpeed":3.6,"ilvl":138,"quality":3}, -{"id":38245,"name":"Crystalline Providence","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,36,0,0,37,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":3,"ilvl":138,"quality":3}, -{"id":38246,"name":"Skull-Forged Blunderbuss","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,12,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":478,"weaponSpeed":3.1,"ilvl":138,"quality":3}, -{"id":38247,"name":"Entrail Render","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,16,35,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":1.8,"ilvl":138,"quality":3}, -{"id":38248,"name":"Torch of the Fallen Souls","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,0,32,36,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":284,"weaponDamageMax":427,"weaponSpeed":3,"ilvl":138,"quality":3}, -{"id":38250,"name":"Activist's Signet of Blasting","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,21,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11892,"name":"The Assassination of Harold Lane"}}]}, -{"id":38251,"name":"Ring of Indignant Rage","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,27,0,0,20,20,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11892,"name":"The Assassination of Harold Lane"}}]}, -{"id":38252,"name":"Band of Wholesome Preservation","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,30,22,18,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11892,"name":"The Assassination of Harold Lane"}}]}, -{"id":38257,"name":"Strike of the Seas","icon":"inv_spear_14","type":12,"stats":[0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11471,"name":"The Jig is Up"}}]}, -{"id":38258,"name":"Sailor's Knotted Charm","icon":"inv_misc_net_01","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11471,"name":"The Jig is Up"}}]}, -{"id":38259,"name":"First Mate's Pocketwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":3,"sources":[{"quest":{"id":11471,"name":"The Jig is Up"}}]}, -{"id":38262,"name":"Well-Worn Bat","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.4,"ilvl":1}, -{"id":38268,"name":"Spare Hand","icon":"inv_gauntlets_09","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2.5,"ilvl":1}, -{"id":38276,"name":"Haliscan Brimmed Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":1,"expansion":2,"sources":[{"quest":{}},{"drop":{"difficulty":1,"npcId":28132,"zoneId":2367}},{"drop":{"difficulty":2,"npcId":28132,"zoneId":2367}}]}, -{"id":38277,"name":"Haliscan Jacket","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":50644}},{"crafted":{"profession":11,"spellId":50644}}]}, -{"id":38278,"name":"Haliscan Pantaloons","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":1,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":50647}},{"crafted":{"profession":11,"spellId":50647}}]}, -{"id":38282,"name":"Bland Two-Handed Blade","icon":"inv_sword_80","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":285,"weaponSpeed":2.7,"ilvl":100,"quality":4}, -{"id":38284,"name":"Siegemaster's Torch Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,18,33,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38285,"name":"Soul-Trader's Waistband","icon":"inv_belt_03","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38286,"name":"Soul-Trader's Pauldrons","icon":"inv_shoulder_24","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":38287,"name":"Empty Mug of Direbrew","icon":"inv_drink_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":38288,"name":"Direbrew Hops","icon":"inv_misc_herb_08","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":38289,"name":"Coren's Lucky Coin","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":38290,"name":"Dark Iron Smoking Pipe","icon":"inv_misc_pipe_01","type":12,"stats":[0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":110,"quality":4,"unique":true}, -{"id":38293,"name":"Suntouched Flowers","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,22,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{}}]}, -{"id":38295,"name":"Idol of the Wastes","icon":"inv_bijou_red","type":14,"rangedWeaponType":4,"stats":[0,13,19,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"unique":true,"classAllowlist":[1,7],"sources":[{"quest":{}}]}, -{"id":38318,"name":"Darkmoon Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-81,-79,-73,-69,-39,-30,-15,-9],"ilvl":20,"quality":2,"sources":[{"quest":{"id":12517,"name":"Rogues Deck"}}]}, -{"id":38322,"name":"Iron-Bound Tome","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,49,63,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59497}},{"crafted":{"profession":6,"spellId":59497}}]}, -{"id":38353,"name":"Venture Bay Buccaneer's Cape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,30,0,0,0,28,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38354,"name":"Oil-Stained Tarp","icon":"inv_misc_cape_20","type":4,"stats":[0,0,35,27,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38355,"name":"Thick Goblin Back Protector","icon":"inv_misc_cape_10","type":4,"stats":[27,0,45,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38356,"name":"Venture Battle Wand","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,6,15,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":262,"weaponDamageMax":487,"weaponSpeed":2.1,"ilvl":150,"quality":3,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38357,"name":"Sharpened Throwing Gizmo","icon":"inv_misc_coin_10","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,23,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":161,"weaponDamageMax":243,"weaponSpeed":1.6,"ilvl":150,"quality":3,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38358,"name":"Arcane Revitalizer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38359,"name":"Goblin Repetition Reducer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38360,"name":"Idol of Arcane Terror","icon":"inv_misc_root_02","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38361,"name":"Venture Co. Lightning Rod","icon":"spell_fire_felfire","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38362,"name":"Venture Co. Libram of Retribution","icon":"inv_misc_stonetablet_05","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38363,"name":"Venture Co. Libram of Protection","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38364,"name":"Venture Co. Libram of Mostly Holy Deeds","icon":"inv_misc_stonetablet_04","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38365,"name":"Idol of Perspicacious Attacks","icon":"classic_ability_druid_demoralizingroar","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38366,"name":"Idol of Pure Thoughts","icon":"ability_druid_treeoflife","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38367,"name":"Venture Co. Flame Slicer","icon":"spell_fire_burnout","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38368,"name":"Totem of the Bay","icon":"spell_shaman_earthlivingweapon","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":38383,"name":"Valonforth's Folly","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2}, -{"id":38387,"name":"Grizzled Hat","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":38388,"name":"Cap of the North","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":38389,"name":"Comfy Raccoonskin Hat","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":38390,"name":"The Rugged Marksman","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3}, -{"id":38400,"name":"Arctic Chestpiece","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,50,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50944}},{"crafted":{"profession":8,"spellId":50944}}]}, -{"id":38401,"name":"Arctic Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,42,60,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50945}},{"crafted":{"profession":8,"spellId":50945}}]}, -{"id":38402,"name":"Arctic Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50946}},{"crafted":{"profession":8,"spellId":50946}}]}, -{"id":38403,"name":"Arctic Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,38,29,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50947}},{"crafted":{"profession":8,"spellId":50947}}]}, -{"id":38404,"name":"Arctic Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50948}},{"crafted":{"profession":8,"spellId":50948}}]}, -{"id":38405,"name":"Arctic Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,35,33,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50949}},{"crafted":{"profession":8,"spellId":50949}}]}, -{"id":38406,"name":"Iceborne Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,45,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50943}},{"crafted":{"profession":8,"spellId":50943}}]}, -{"id":38407,"name":"Iceborne Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,49,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50942}},{"crafted":{"profession":8,"spellId":50942}}]}, -{"id":38408,"name":"Iceborne Chestguard","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,36,48,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50938}},{"crafted":{"profession":8,"spellId":50938}}]}, -{"id":38409,"name":"Iceborne Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,55,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50941}},{"crafted":{"profession":8,"spellId":50941}}]}, -{"id":38410,"name":"Iceborne Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,71,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50939}},{"crafted":{"profession":8,"spellId":50939}}]}, -{"id":38411,"name":"Iceborne Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,57,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50940}},{"crafted":{"profession":8,"spellId":50940}}]}, -{"id":38412,"name":"Frostscale Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,28,38,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50955}},{"crafted":{"profession":8,"spellId":50955}}]}, -{"id":38413,"name":"Frostscale Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,39,0,0,0,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50954}},{"crafted":{"profession":8,"spellId":50954}}]}, -{"id":38414,"name":"Frostscale Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,38,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50950}},{"crafted":{"profession":8,"spellId":50950}}]}, -{"id":38415,"name":"Frostscale Gloves","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,30,43,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50953}},{"crafted":{"profession":8,"spellId":50953}}]}, -{"id":38416,"name":"Frostscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,50,51,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50951}},{"crafted":{"profession":8,"spellId":50951}}]}, -{"id":38417,"name":"Nerubian Shoulders","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,29,39,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50958}},{"crafted":{"profession":8,"spellId":50958}}]}, -{"id":38418,"name":"Nerubian Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50961}},{"crafted":{"profession":8,"spellId":50961}}]}, -{"id":38419,"name":"Nerubian Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,27,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50960}},{"crafted":{"profession":8,"spellId":50960}}]}, -{"id":38420,"name":"Nerubian Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,48,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50956}},{"crafted":{"profession":8,"spellId":50956}}]}, -{"id":38421,"name":"Nerubian Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,33,35,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50959}},{"crafted":{"profession":8,"spellId":50959}}]}, -{"id":38422,"name":"Nerubian Legguards","icon":"inv_pants_leather_09","type":9,"armorType":3,"stats":[0,0,51,48,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50957}},{"crafted":{"profession":8,"spellId":50957}}]}, -{"id":38424,"name":"Frostscale Shoulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,38,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50952}},{"crafted":{"profession":8,"spellId":50952}}]}, -{"id":38433,"name":"Arctic Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51571}},{"crafted":{"profession":8,"spellId":51571}}]}, -{"id":38434,"name":"Iceborne Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,30,21,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60607}},{"crafted":{"profession":8,"spellId":60607}}]}, -{"id":38435,"name":"Nerubian Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,32,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60622}},{"crafted":{"profession":8,"spellId":60622}}]}, -{"id":38436,"name":"Frostscale Bracers","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,24,35,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60599}},{"crafted":{"profession":8,"spellId":60599}}]}, -{"id":38437,"name":"Arctic Helm","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,53,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51572}},{"crafted":{"profession":8,"spellId":51572}}]}, -{"id":38438,"name":"Iceborne Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,53,35,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60608}},{"crafted":{"profession":8,"spellId":60608}}]}, -{"id":38439,"name":"Nerubian Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,54,53,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60624}},{"crafted":{"profession":8,"spellId":60624}}]}, -{"id":38440,"name":"Frostscale Helm","icon":"inv_helmet_11","type":1,"armorType":3,"stats":[0,42,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60600}},{"crafted":{"profession":8,"spellId":60600}}]}, -{"id":38441,"name":"Cloak of Harsh Winds","icon":"inv_misc_cape_14","type":4,"stats":[0,14,49,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60631}},{"crafted":{"profession":8,"spellId":60631}}]}, -{"id":38442,"name":"Mail Melee Leatherworking Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3}, -{"id":38443,"name":"Mail Melee Leatherworking Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3}, -{"id":38444,"name":"Mail Melee Leatherworking Bracer","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3}, -{"id":38445,"name":"Mail Caster Leatherworking Helm","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3}, -{"id":38448,"name":"Leather Melee Leatherworking Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187}, -{"id":38452,"name":"Bulwark of the Warchief","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,31,32,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38453,"name":"Shield of the Lion-Hearted","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,31,32,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38454,"name":"Warsong Punisher","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[26,0,36,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":1.6,"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38455,"name":"Hammer of the Alliance Vanguard","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[26,0,36,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":221,"weaponSpeed":1.6,"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38456,"name":"Sin'dorei Recurve Bow","icon":"inv_weapon_bow_35","type":14,"rangedWeaponType":1,"stats":[0,17,27,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":556,"weaponSpeed":3.1,"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38457,"name":"Sawed-Off Hand Cannon","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,17,27,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":299,"weaponDamageMax":556,"weaponSpeed":3.1,"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38458,"name":"Darkspear Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38459,"name":"Orb of the Eastern Kingdoms","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38460,"name":"Charged Wand of the Cleft","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,27,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":532,"weaponSpeed":2.1,"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38461,"name":"Warsong Shanker","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,27,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.5,"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38462,"name":"Warsong Stormshield","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,69,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":2}, -{"id":38463,"name":"Lordaeron's Resolve","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,69,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38464,"name":"Gnomish Magician's Quill","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,27,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":532,"weaponSpeed":2.1,"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38465,"name":"Vanguard Soldier's Dagger","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,27,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.5,"ilvl":166,"quality":3,"factionRestriction":1}, -{"id":38468,"name":"Kalu'ak Peacebringer","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":198,"weaponSpeed":1.6,"ilvl":146,"quality":3}, -{"id":38506,"name":"Don Carlos' Famous Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":28132,"zoneId":2367}}]}, -{"id":38513,"name":"Boarhide Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":38524,"name":"Carapace of the Scarlet Commander","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[57,0,0,0,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2}, -{"id":38525,"name":"Jailor's Padded Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,84,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2}, -{"id":38526,"name":"Binding of the Imprisoned Soul","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2}, -{"id":38527,"name":"Onslaught Scalemail Hauberk","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,56,0,24,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2}, -{"id":38528,"name":"Legpads of the Inquisitor","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,30,78,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12442,"name":"Wanted: Onslaught Commander Iustus"}}],"factionRestriction":1}, -{"id":38529,"name":"Robe of the Justicebringer","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,86,33,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"sources":[{"quest":{"id":12442,"name":"Wanted: Onslaught Commander Iustus"}}],"factionRestriction":1}, -{"id":38530,"name":"Wrap of Vigorous Destruction","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,53,36,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38531,"name":"Links of Righteous Persecution","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,29,40,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38532,"name":"Belt of Vengeful Purification","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,35,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38533,"name":"Girdle of Forceful Annihilation","icon":"inv_belt_35","type":8,"armorType":4,"stats":[36,0,43,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38534,"name":"Purity-Anointed Warbands","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[29,0,36,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":12285,"name":"Do Unto Others"}}],"factionRestriction":2}, -{"id":38535,"name":"Wristguards of the Remorseful","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,38,28,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":12285,"name":"Do Unto Others"}}],"factionRestriction":2}, -{"id":38536,"name":"Bindings of the Forceful Vanquisher","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,39,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":12285,"name":"Do Unto Others"}}],"factionRestriction":2}, -{"id":38537,"name":"Cuffs of the Decapitator","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,27,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":12285,"name":"Do Unto Others"}}],"factionRestriction":2}, -{"id":38540,"name":"Sandals of Chaos Resolution","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,53,35,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38541,"name":"Implacable Zombie Crushers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[36,0,49,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38542,"name":"Treads of the Valiant Struggle","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,35,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38543,"name":"Reinforced Traveler's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,34,52,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{}}]}, -{"id":38572,"name":"Bounty Procurement Enhancer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true}, -{"id":38579,"name":"Venomous Tome","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"soldBy":{"npcId":28347,"npcName":"Miles Sidney","zoneId":1519}}]}, -{"id":38588,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[10],"factionRestriction":2}, -{"id":38589,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"unique":true,"classAllowlist":[10],"factionRestriction":1}, -{"id":38590,"name":"Black Chitinguard Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,39,89,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51568}},{"crafted":{"profession":8,"spellId":51568}}]}, -{"id":38591,"name":"Dark Arctic Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,55,111,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51569}},{"crafted":{"profession":8,"spellId":51569}}]}, -{"id":38592,"name":"Dark Arctic Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,52,122,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51570}},{"crafted":{"profession":8,"spellId":51570}}]}, -{"id":38611,"name":"Ringlet of Repose","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,54,37,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}]}, -{"id":38613,"name":"Chain of Fiery Orbs","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,55,36,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}]}, -{"id":38614,"name":"Embrace of Sorrow","icon":"inv_misc_cape_13","type":4,"stats":[0,25,64,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}]}, -{"id":38615,"name":"Lightning-Charged Gloves","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,83,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}]}, -{"id":38616,"name":"Maiden's Girdle","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,89,58,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}]}, -{"id":38617,"name":"Woeful Band","icon":"inv_jewelry_ring_66","type":11,"stats":[44,0,63,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}]}, -{"id":38618,"name":"Hammer of Grief","icon":"inv_hammer_25","type":13,"weaponType":4,"handType":4,"stats":[0,0,117,0,0,0,77,0,0,0,0,0,156,156,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}]}, -{"id":38632,"name":"Greatsword of the Ebon Blade","icon":"inv_sword_126","type":13,"weaponType":9,"handType":4,"stats":[30,0,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":3.4,"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12801,"name":"The Light of Dawn"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38633,"name":"Greataxe of the Ebon Blade","icon":"inv_axe_95","type":13,"weaponType":1,"handType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":3.4,"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12801,"name":"The Light of Dawn"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38645,"name":"Bone-Plated Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38646,"name":"Bone-Plated Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38647,"name":"Bone-Plated Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38648,"name":"Bone-Plated Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38649,"name":"Bone-Plated Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38650,"name":"Bone-Plated Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38651,"name":"Bone-Plated Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1,"sources":[{"soldBy":{"npcId":28500,"npcName":"Master Siegesmith Corvus"}}]}, -{"id":38661,"name":"Greathelm of the Scourge Champion","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[27,0,19,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12779,"name":"An End To All Things..."}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38662,"name":"Bladed Ebon Amulet","icon":"inv_jewelry_necklace_17","type":2,"stats":[16,0,18,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12657,"name":"The Might Of The Scourge"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38663,"name":"Blood-Soaked Saronite Plated Spaulders","icon":"inv_shoulder_78","type":3,"armorType":4,"stats":[23,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12757,"name":"Scarlet Armies Approach..."}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38664,"name":"Sky Darkener's Shroud of the Unholy","icon":"inv_misc_cape_21","type":4,"stats":[15,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12679,"name":"Tonight We Dine In Havenshire"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38665,"name":"Saronite War Plate","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[29,0,24,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,632,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12727,"name":"Bloody Breakout"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38666,"name":"Plated Saronite Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[12,0,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12701,"name":"Massacre At Light's Point"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38667,"name":"Bloodbane's Gauntlets of Command","icon":"inv_gauntlets_71","type":7,"armorType":4,"stats":[17,15,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12724,"name":"The Path Of The Righteous Crusader"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38668,"name":"The Plaguebringer's Girdle","icon":"inv_belt_36","type":8,"armorType":4,"stats":[23,0,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12716,"name":"The Plaguebringer's Request"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38669,"name":"Engraved Saronite Legplates","icon":"inv_pants_cloth_27","type":9,"armorType":4,"stats":[30,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12706,"name":"Victory At Death's Breach!"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38670,"name":"Greaves of the Slaughter","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[20,0,16,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12722,"name":"Lambs To The Slaughter"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38671,"name":"Valanar's Signet Ring","icon":"inv_jewelry_ring_38","type":11,"stats":[12,0,18,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12678,"name":"If Chaos Drives, Let Suffering Hold The Reins"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38672,"name":"Keleseth's Signet Ring","icon":"inv_jewelry_ring_56","type":11,"stats":[18,0,15,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12720,"name":"How To Win Friends And Influence Enemies"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38674,"name":"Soul Harvester's Charm","icon":"inv_crown_15","type":12,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12698,"name":"The Gift That Keeps On Giving"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38675,"name":"Signet of the Dark Brotherhood","icon":"inv_misc_statue_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12751,"name":"A Sort Of Homecoming"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":38691,"name":"Ancestral Claymore","icon":"inv_sword_92","type":13,"weaponType":9,"handType":4,"stats":[63,0,95,0,0,0,53,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":436,"weaponDamageMax":655,"weaponSpeed":3.5,"ilvl":1,"quality":7}, -{"id":38692,"name":"Warbranch of Cenarius","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":436,"weaponDamageMax":655,"weaponSpeed":3.5,"ilvl":1,"quality":3}, -{"id":38693,"name":"Tirisfal Spellblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":1,"stats":[0,0,27,32,0,0,14,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":201,"weaponDamageMax":374,"weaponSpeed":2.4,"ilvl":1,"quality":3}, -{"id":38707,"name":"Runed Soulblade","icon":"inv_sword_2h_blood_b_01","type":13,"weaponType":9,"handType":4,"stats":[29,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":214,"weaponSpeed":3.2,"ilvl":65,"quality":3,"unique":true,"classAllowlist":[10],"sources":[{"quest":{"id":28512,"name":"Quartermaster Ozorg"}}]}, -{"id":38710,"name":"Wayfinder's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,59,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38711,"name":"Grounded Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,77,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38712,"name":"Headbinder's Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,56,38,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38713,"name":"Spaulders of Foresight","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12185,"name":"Put on Your Best Face for Loken"}}],"factionRestriction":1}, -{"id":38714,"name":"Path-Cutter's Cord","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,65,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12027,"name":"Mr. Floppy's Perilous Adventure"}}],"factionRestriction":1}, -{"id":38715,"name":"Forge-Scarred Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,41,28,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11985,"name":"Into the Breach"}}]}, -{"id":38716,"name":"Ethereal Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,55,56,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11991,"name":"Subject to Interpretation"}}]}, -{"id":38717,"name":"Dusty Miner's Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,105,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12014,"name":"Steady as a Rock?"}}],"factionRestriction":1}, -{"id":38718,"name":"Wispy Shoulderpads","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,63,27,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12068,"name":"Voices From the Dust"}}]}, -{"id":38719,"name":"Robe of Expurgation","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,106,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38726,"name":"Instigator's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,40,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38727,"name":"Foreseer's Girdle","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,44,38,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12328,"name":"Ruuna's Request"}}]}, -{"id":38728,"name":"Kilt of Peaceful Reclamation","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,56,38,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12114,"name":"Therapy"}}]}, -{"id":38729,"name":"Sandals of Quick Escape","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,42,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12082,"name":"Dun-da-Dun-tah!"}}]}, -{"id":38730,"name":"Bell-Ringer's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,63,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12120,"name":"Drak'aguul's Mallet"}}]}, -{"id":38732,"name":"Bramble-Proof Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,54,56,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38733,"name":"Raiment of the Caged Beast","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,84,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38734,"name":"Abandoned Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,106,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38735,"name":"Specially Treated Robes","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,57,56,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38736,"name":"Smuggler's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,25,41,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":38737,"name":"Shock-Proof Head Protector","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,59,68,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":38739,"name":"Fleshwerk Shackles","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,30,39,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13144,"name":"Killing Two Scourge With One Skeleton"}}]}, -{"id":38741,"name":"Gloves of Tormented Recollection","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,39,34,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":38743,"name":"Band of the Tender","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38744,"name":"Solstice Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,48,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12330,"name":"Anatoly Will Talk"}}]}, -{"id":38745,"name":"Fetid Loop","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,32,21,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12227,"name":"Doing Your Duty"}}],"factionRestriction":1}, -{"id":38746,"name":"Rancid Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,32,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12227,"name":"Doing Your Duty"}}],"factionRestriction":1}, -{"id":38747,"name":"Mildly Tarnished Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,0,0,0,21,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12227,"name":"Doing Your Duty"}}],"factionRestriction":1}, -{"id":38748,"name":"Seal of the Slumbering Wolf","icon":"inv_jewelry_ring_28","type":11,"stats":[0,21,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12330,"name":"Anatoly Will Talk"}}]}, -{"id":38749,"name":"Thane-Reaper's Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,0,0,22,0,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38750,"name":"Worgslayer's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,0,0,0,21,22,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38751,"name":"Vengeful Spirit Beads","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,33,0,0,0,22,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12068,"name":"Voices From the Dust"}}]}, -{"id":38752,"name":"Tatjana's Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,32,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12330,"name":"Anatoly Will Talk"}}]}, -{"id":38753,"name":"Hoarder's Necklace","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,36,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38754,"name":"Pruning Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,36,0,0,24,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12307,"name":"Wolfsbane Root"}}],"factionRestriction":1}, -{"id":38755,"name":"Scepter of Passionate Reprisal","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12134,"name":"Sasha's Hunt"}}]}, -{"id":38756,"name":"Drape of Horticultural Sanitization","icon":"inv_misc_cape_15","type":4,"stats":[0,0,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12307,"name":"Wolfsbane Root"}}],"factionRestriction":1}, -{"id":38757,"name":"Drape of the Possessive Soul","icon":"inv_misc_cape_15","type":4,"stats":[0,0,30,0,0,0,0,22,0,0,0,0,62,62,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38758,"name":"Therapeutic Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,33,0,0,31,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12114,"name":"Therapy"}}]}, -{"id":38759,"name":"Injured Trapper's Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,36,23,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38760,"name":"Mendicant's Charm","icon":"inv_misc_candle_01","type":12,"stats":[0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38761,"name":"Talon of Hatred","icon":"inv_misc_horn_05","type":12,"stats":[0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38762,"name":"Insignia of Bloody Fire","icon":"spell_fire_playingwithfire","type":12,"stats":[0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":38763,"name":"Futuresight Rune","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13343,"name":"Mystery of the Infinite, Redux"}}]}, -{"id":38764,"name":"Rune of Finite Variation","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13343,"name":"Mystery of the Infinite, Redux"}}]}, -{"id":38765,"name":"Rune of Infinite Power","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13343,"name":"Mystery of the Infinite, Redux"}}]}, -{"id":39010,"name":"Wolfslayer's Crest","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12134,"name":"Sasha's Hunt"}}]}, -{"id":39011,"name":"Bloody Bulwark","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[21,0,48,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12134,"name":"Sasha's Hunt"}}]}, -{"id":39013,"name":"Discoverer's Mitts","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39015,"name":"Crackpot Spaulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39016,"name":"Tunic of the Rectified Thane","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39017,"name":"Belt of Keen Hearing","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,41,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12185,"name":"Put on Your Best Face for Loken"}}],"factionRestriction":1}, -{"id":39018,"name":"Boots of Safe Travel","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,28,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12027,"name":"Mr. Floppy's Perilous Adventure"}}],"factionRestriction":1}, -{"id":39019,"name":"Iron-Shatter Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11985,"name":"Into the Breach"}}]}, -{"id":39020,"name":"Drakuru's Ghastly Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11991,"name":"Subject to Interpretation"}}]}, -{"id":39021,"name":"Ectoplasm Stained Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,32,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12014,"name":"Steady as a Rock?"}}],"factionRestriction":1}, -{"id":39022,"name":"Helm of Rising Smoke","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12068,"name":"Voices From the Dust"}}]}, -{"id":39023,"name":"Wax-Coated Chestguard","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,56,56,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39025,"name":"Shackles of Sanity","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39026,"name":"Pauldrons of the Prophet","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12328,"name":"Ruuna's Request"}}]}, -{"id":39027,"name":"Leggings of Anger Management","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12114,"name":"Therapy"}}]}, -{"id":39028,"name":"Coiled Leather Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,27,42,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12082,"name":"Dun-da-Dun-tah!"}}]}, -{"id":39029,"name":"Waistguard of Expedient Procurement","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,28,41,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12120,"name":"Drak'aguul's Mallet"}}]}, -{"id":39030,"name":"Patchhide Pants","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,56,57,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39031,"name":"Boots of Internal Strife","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39033,"name":"Discarded Miner's Jerkin","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,56,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39034,"name":"Bearskin Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,56,56,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39035,"name":"Glacier-walker's Mukluks","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,43,48,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39036,"name":"Hulking Horror Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,68,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39038,"name":"Fleshwerk Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,39,39,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13144,"name":"Killing Two Scourge With One Skeleton"}}]}, -{"id":39040,"name":"Gloves of Troubled Memory","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,53,51,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39043,"name":"Trailbreaker's Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39044,"name":"Short-Circuiting Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39045,"name":"Legguards of Refuted Feudalism","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39046,"name":"Shoulderpads of Imminent Disaster","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12185,"name":"Put on Your Best Face for Loken"}}],"factionRestriction":1}, -{"id":39047,"name":"Legguards of Unerring Navigation","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12027,"name":"Mr. Floppy's Perilous Adventure"}}],"factionRestriction":1}, -{"id":39049,"name":"Helm of Spirit Links","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,104,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11991,"name":"Subject to Interpretation"}}]}, -{"id":39050,"name":"Ghostridden Waistguard","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12014,"name":"Steady as a Rock?"}}],"factionRestriction":1}, -{"id":39051,"name":"Plane-Shifted Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,63,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12068,"name":"Voices From the Dust"}}]}, -{"id":39052,"name":"Acid-Resistant Hauberk","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,83,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39053,"name":"Helm of the Furbolg Purifier","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39054,"name":"Gossamer-Stained Grips","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,42,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12328,"name":"Ruuna's Request"}}]}, -{"id":39055,"name":"Handguards of Extermination","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12114,"name":"Therapy"}}]}, -{"id":39056,"name":"Whip-Stitched Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,31,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12082,"name":"Dun-da-Dun-tah!"}}]}, -{"id":39057,"name":"Polished Staghorn Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,53,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12120,"name":"Drak'aguul's Mallet"}}]}, -{"id":39058,"name":"Legguards of Swift Pursuit","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,56,0,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39059,"name":"Wristguard of the Tormented Soul","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,47,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39060,"name":"Patched Trapper Pauldrons","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39062,"name":"Herbalist's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12307,"name":"Wolfsbane Root"}}],"factionRestriction":1}, -{"id":39064,"name":"Hide-Lined Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,55,54,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39065,"name":"Skycaptain's Belt","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,43,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39066,"name":"Leggings of the Turning Point","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,62,77,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39068,"name":"Flesh-Scaled Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,39,30,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13144,"name":"Killing Two Scourge With One Skeleton"}}]}, -{"id":39070,"name":"Gloves of the Mad Bomber","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,36,44,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39072,"name":"Blacksoul Protector's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[32,0,48,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11319,"name":"Seeds of the Blacksouled Keepers"}}]}, -{"id":39073,"name":"Root of the Everlasting","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.6,"ilvl":138,"quality":2,"sources":[{"quest":{"id":11319,"name":"Seeds of the Blacksouled Keepers"}}]}, -{"id":39074,"name":"Drape of Distilled Hatred","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,17,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"sources":[{"quest":{"id":11319,"name":"Seeds of the Blacksouled Keepers"}}]}, -{"id":39075,"name":"Waywalker's Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[42,0,40,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39076,"name":"Golem-Rider's Greaves","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[56,0,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39077,"name":"Skull-Reshaper's Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,85,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39078,"name":"Whispering Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[42,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12185,"name":"Put on Your Best Face for Loken"}}],"factionRestriction":1}, -{"id":39079,"name":"Bracers of the Chaperon","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[32,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12027,"name":"Mr. Floppy's Perilous Adventure"}}],"factionRestriction":1}, -{"id":39080,"name":"Grips of Flawed Temper","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[42,0,39,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11985,"name":"Into the Breach"}}]}, -{"id":39081,"name":"Spiritforged Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[38,0,55,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":11991,"name":"Subject to Interpretation"}}]}, -{"id":39082,"name":"Shocksteel Shoulderguards","icon":"inv_shoulder_69","type":3,"armorType":4,"stats":[27,0,63,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12014,"name":"Steady as a Rock?"}}],"factionRestriction":1}, -{"id":39083,"name":"Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[33,0,36,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52572}},{"crafted":{"profession":2,"spellId":52572}}]}, -{"id":39084,"name":"Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[33,0,51,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52571}},{"crafted":{"profession":2,"spellId":52571}}]}, -{"id":39085,"name":"Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52570}},{"crafted":{"profession":2,"spellId":52570}}]}, -{"id":39086,"name":"Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[40,0,66,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52567}},{"crafted":{"profession":2,"spellId":52567}}]}, -{"id":39087,"name":"Cobalt Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[25,0,39,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52568}},{"crafted":{"profession":2,"spellId":52568}}]}, -{"id":39088,"name":"Cobalt Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[29,0,44,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52569}},{"crafted":{"profession":2,"spellId":52569}}]}, -{"id":39089,"name":"Spiritforged Legguards","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":2,"sources":[{"quest":{"id":12068,"name":"Voices From the Dust"}}]}, -{"id":39090,"name":"Chestplate of Untimely Rewards","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[56,0,54,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39091,"name":"Blood-Spattered Spaulders","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[41,0,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39092,"name":"Thought-Purifying Protector","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[58,0,54,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12328,"name":"Ruuna's Request"}}]}, -{"id":39093,"name":"Chestguard of Expressed Fury","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,80,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12114,"name":"Therapy"}}]}, -{"id":39094,"name":"Load-Bearing Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,0,39,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12082,"name":"Dun-da-Dun-tah!"}}]}, -{"id":39095,"name":"Hammer-Holder's Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[26,0,38,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12120,"name":"Drak'aguul's Mallet"}}]}, -{"id":39096,"name":"Snaptooth Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[59,0,51,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39097,"name":"Sabatons of Crushed Humanity","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,66,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39098,"name":"Rusty Cave Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,36,0,0,24,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39099,"name":"Carapace of the Fallen","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[60,0,0,0,0,0,33,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{}}]}, -{"id":39100,"name":"Plated Bracelet of the Skies","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[21,0,0,0,0,0,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39102,"name":"Icewalker's Spikes","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[52,0,0,0,0,0,27,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39104,"name":"Hardened Bone Wrist Protectors","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[39,0,30,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13144,"name":"Killing Two Scourge With One Skeleton"}}]}, -{"id":39105,"name":"Girdle of Growing Vines","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,36,42,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12307,"name":"Wolfsbane Root"}}],"factionRestriction":1}, -{"id":39108,"name":"Bloodstained Helmet","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[51,0,0,0,0,0,41,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39109,"name":"Branch of the Roaming Spirit","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,49,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12099,"name":"Free at Last"}}]}, -{"id":39110,"name":"Staff of Righteous Vengeance","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,59,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":276,"weaponDamageMax":415,"weaponSpeed":2.9,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12134,"name":"Sasha's Hunt"}}]}, -{"id":39112,"name":"Talon of Freedom","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":2.7,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12099,"name":"Free at Last"}}]}, -{"id":39113,"name":"Jagged Troll Render","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[21,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":147,"weaponDamageMax":274,"weaponSpeed":2.3,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39114,"name":"Axe of the Warlord's Demise","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,49,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":387,"weaponSpeed":2.7,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39115,"name":"Axe of Bloodstained Ice","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[53,0,79,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":392,"weaponDamageMax":589,"weaponSpeed":3.7,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39116,"name":"Grinder of Reverse Emancipation","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[46,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":334,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39117,"name":"Liberator's Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,64,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":343,"weaponDamageMax":515,"weaponSpeed":3.6,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12099,"name":"Free at Last"}}]}, -{"id":39118,"name":"Glowing Voodoo Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,37,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39119,"name":"Bondsniper","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,20,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.9,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12099,"name":"Free at Last"}}]}, -{"id":39120,"name":"Spire of Soaring Rumination","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,62,0,46,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12099,"name":"Free at Last"}}]}, -{"id":39121,"name":"Cultist's Cauldron Stirrer","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,114,0,0,0,0,52,0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":307,"weaponDamageMax":462,"weaponSpeed":2.9,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39124,"name":"Branch of Insightful Dreams","icon":"inv_wand_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39125,"name":"Beaked Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":89,"weaponDamageMax":167,"weaponSpeed":1.4,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39127,"name":"Serrated Cold-Iron Slicer","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,21,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.6,"ilvl":154,"quality":2,"sources":[{"quest":{"id":12152,"name":"Jin'arrak's End"}}]}, -{"id":39128,"name":"Yoke Slasher","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39129,"name":"Spike of Renounced Autonomy","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.8,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39130,"name":"Corrupter's Shanker","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,23,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39131,"name":"Warbling Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,19,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":258,"weaponDamageMax":481,"weaponSpeed":3.1,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39132,"name":"Sword of the Caged Mind","icon":"inv_sword_86","type":13,"weaponType":9,"handType":1,"stats":[0,0,56,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":1.6,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39133,"name":"Necrolord's Sacrificial Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,44,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":199,"weaponSpeed":1.5,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39134,"name":"Bow of Regression","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,22,18,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":278,"weaponDamageMax":517,"weaponSpeed":3,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39135,"name":"Wyrmstalker's Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,18,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.8,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39136,"name":"Reanimator's Hacker","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[24,0,0,0,0,0,23,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39138,"name":"Deadly Razordarts","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,17,0,0,0,0,16,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":328,"weaponSpeed":1.9,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39139,"name":"Ravaging Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[67,0,72,0,0,0,38,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}]}, -{"id":39140,"name":"Knife of Incision","icon":"inv_knife_1h_stratholme_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,19,72,0,0,0,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":1.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}]}, -{"id":39141,"name":"Deflection Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[38,0,75,0,0,25,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}]}, -{"id":39142,"name":"Mace of Helotry","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,42,0,18,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":141,"weaponDamageMax":262,"weaponSpeed":2.2,"ilvl":154,"quality":2,"sources":[{"quest":{"id":11984,"name":"Filling the Cages"}}]}, -{"id":39143,"name":"Writhing Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,30,0,0,0,31,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.2,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39144,"name":"Twisted Hooligan Whacker","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,24,0,0,0,0,0,20,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39146,"name":"Collar of Dissolution","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,36,78,0,0,24,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}]}, -{"id":39147,"name":"113 Pound Swordfish","icon":"inv_misc_fish_23","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":1}, -{"id":39168,"name":"Worg-Rendering Shoulderguards","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[40,0,42,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12164,"name":"Hour of the Worg"}}]}, -{"id":39169,"name":"Keen Razorfang Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12164,"name":"Hour of the Worg"}}]}, -{"id":39170,"name":"Furred Worgslayer Spaulders","icon":"inv_shoulder_74","type":3,"armorType":1,"stats":[0,0,71,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12164,"name":"Hour of the Worg"}}]}, -{"id":39171,"name":"Fangsever Shoulderguards","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12164,"name":"Hour of the Worg"}}]}, -{"id":39172,"name":"Bone-Polished Iceplate Shoulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[29,0,62,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12164,"name":"Hour of the Worg"}}]}, -{"id":39173,"name":"Bulwark of the Tormented God","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[21,0,44,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,4619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39174,"name":"Legguards of Dissolved Hope","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[62,0,48,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39175,"name":"Leggings of Forceful Purification","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[38,0,87,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39176,"name":"Kilt of Deific Torment","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,54,59,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39177,"name":"Pants of Purified Wind","icon":"inv_pants_leather_20","type":9,"armorType":2,"stats":[0,60,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39178,"name":"Greaves of Sanctified Dissolution","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,59,77,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{}}]}, -{"id":39179,"name":"Charged Earthlink Grips","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[44,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12431,"name":"The Conquest Pit: Final Showdown"}}],"factionRestriction":2}, -{"id":39180,"name":"Handguards of the Sanguine Gladiator","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[26,0,66,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1077,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12431,"name":"The Conquest Pit: Final Showdown"}}],"factionRestriction":2}, -{"id":39181,"name":"Grips of Torrential Power","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,42,28,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12431,"name":"The Conquest Pit: Final Showdown"}}],"factionRestriction":2}, -{"id":39182,"name":"Handguards of Deluded Might","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,42,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12431,"name":"The Conquest Pit: Final Showdown"}}],"factionRestriction":2}, -{"id":39183,"name":"Shining Buckle Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"sources":[{"quest":{"id":12431,"name":"The Conquest Pit: Final Showdown"}}],"factionRestriction":2}, -{"id":39188,"name":"Chivalric Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,128,73,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}]}, -{"id":39189,"name":"Boots of Persistence","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,95,66,32,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}]}, -{"id":39190,"name":"Agonal Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,95,65,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}]}, -{"id":39191,"name":"Splint-Bound Leggings","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,123,73,68,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}]}, -{"id":39192,"name":"Gloves of Dark Gestures","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,95,58,0,25,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}]}, -{"id":39193,"name":"Band of Neglected Pleas","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,71,50,32,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}]}, -{"id":39194,"name":"Rusted-Link Spiked Gauntlets","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,58,79,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":39195,"name":"Bracers of Lost Sentiments","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[50,0,73,0,0,25,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}]}, -{"id":39196,"name":"Boots of the Worshiper","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,66,91,0,0,0,38,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}]}, -{"id":39197,"name":"Gauntlets of the Master","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[51,0,99,0,0,33,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}]}, -{"id":39198,"name":"Frostblight Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,95,65,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}]}, -{"id":39199,"name":"Watchful Eye","icon":"inv_offhand_naxxramas_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,71,50,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}]}, -{"id":39200,"name":"Grieving Spellblade","icon":"inv_sword_61","type":13,"weaponType":9,"handType":1,"stats":[0,0,70,0,0,0,37,27,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}]}, -{"id":39202,"name":"Rusted Pitchfork","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":2.1,"ilvl":7}, -{"id":39205,"name":"Sole-Less Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5}, -{"id":39208,"name":"Sigil of the Dark Rider","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[7,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[4,10],"sources":[{"quest":{"id":12687,"name":"Into the Realm of Shadows"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":39215,"name":"Boots of the Follower","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,77,66,66,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}]}, -{"id":39216,"name":"Sash of Mortal Desire","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,94,65,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}]}, -{"id":39217,"name":"Avenging Combat Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,128,73,38,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":39221,"name":"Wraith Spear","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,90,130,0,0,0,68,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":552,"weaponDamageMax":829,"weaponSpeed":3.7,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}]}, -{"id":39224,"name":"Leggings of Discord","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,90,121,0,0,0,68,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}]}, -{"id":39225,"name":"Cloak of Armed Strife","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[39,0,50,0,0,28,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,404,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}]}, -{"id":39226,"name":"Maexxna's Femur","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,27,68,0,0,0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":39228,"name":"Web Cocoon Grips","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,94,66,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}]}, -{"id":39229,"name":"Embrace of the Spider","icon":"inv_trinket_naxxramas04","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}]}, -{"id":39230,"name":"Spaulders of the Monstrosity","icon":"inv_shoulder_72","type":3,"armorType":2,"stats":[0,0,94,67,48,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}]}, -{"id":39231,"name":"Timeworn Silken Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,71,50,28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":39232,"name":"Pendant of Lost Vocations","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,69,49,30,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}]}, -{"id":39233,"name":"Aegis of Damnation","icon":"inv_shield_28","type":13,"weaponType":7,"handType":3,"stats":[0,0,67,51,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}]}, -{"id":39234,"name":"Plague-Impervious Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[65,0,99,0,0,0,0,0,0,53,33,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}]}, -{"id":39235,"name":"Bone-Framed Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,75,49,30,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}]}, -{"id":39236,"name":"Trespasser's Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,66,70,0,0,0,62,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}]}, -{"id":39237,"name":"Spaulders of Resumed Battle","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,66,106,0,0,38,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}]}, -{"id":39239,"name":"Chestplate of the Risen Soldier","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[90,0,96,0,0,0,52,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}]}, -{"id":39240,"name":"Noth's Curse","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,123,73,52,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}]}, -{"id":39241,"name":"Dark Shroud of the Scourge","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,0,70,51,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}]}, -{"id":39242,"name":"Robes of Hoarse Breaths","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,132,89,66,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}]}, -{"id":39243,"name":"Handgrips of the Foredoomed","icon":"inv_gauntlets_27","type":7,"armorType":3,"stats":[0,0,94,65,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}]}, -{"id":39244,"name":"Ring of the Fated","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,71,36,0,0,50,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}]}, -{"id":39245,"name":"Demise","icon":"inv_mace_25","type":13,"weaponType":4,"handType":4,"stats":[90,0,103,0,0,45,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":522,"weaponDamageMax":784,"weaponSpeed":3.5,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}]}, -{"id":39246,"name":"Amulet of Autopsy","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[50,0,75,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}]}, -{"id":39247,"name":"Cuffs of Dark Shadows","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,50,80,0,0,0,32,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}]}, -{"id":39248,"name":"Tunic of the Lost Pack","icon":"inv_chest_leather_02","type":5,"armorType":3,"stats":[0,89,134,0,0,52,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":39249,"name":"Shoulderplates of Bloodshed","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[59,0,72,0,0,30,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}]}, -{"id":39250,"name":"Ring of Holy Cleansing","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,70,50,29,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}]}, -{"id":39251,"name":"Necrogenic Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,97,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}]}, -{"id":39252,"name":"Preceptor's Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,70,50,0,33,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}]}, -{"id":39254,"name":"Saltarello Shoes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,94,66,51,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":39255,"name":"Staff of the Plague Beast","icon":"inv_staff_77","type":13,"weaponType":8,"handType":4,"stats":[0,89,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":358,"weaponDamageMax":537,"weaponSpeed":2.4,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}]}, -{"id":39256,"name":"Sulfur Stave","icon":"inv_staff_34","type":13,"weaponType":8,"handType":4,"stats":[0,0,169,0,0,59,89,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":2.1,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}]}, -{"id":39257,"name":"Loatheb's Shadow","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}]}, -{"id":39258,"name":"Legplates of Inescapable Death","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[73,0,111,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}]}, -{"id":39259,"name":"Fungi-Stained Coverings","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,127,73,65,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}]}, -{"id":39260,"name":"Helm of the Corrupted Mind","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,128,72,0,0,49,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}]}, -{"id":39261,"name":"Tainted Girdle of Mending","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,97,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}]}, -{"id":39262,"name":"Gauntlets of Combined Strength","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[65,0,99,0,0,0,33,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":39263,"name":"Dissevered Leggings","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,73,134,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}]}, -{"id":39267,"name":"Abomination Shoulderblades","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[53,0,87,0,0,28,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}]}, -{"id":39270,"name":"Hatestrike","icon":"inv_sword_61","type":13,"weaponType":9,"handType":2,"stats":[0,25,72,0,0,22,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}}]}, -{"id":39271,"name":"Blade of Dormant Memories","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":1,"stats":[0,0,66,0,0,0,40,27,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":39272,"name":"Drape of Surgery","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,74,50,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}]}, -{"id":39273,"name":"Sullen Cloth Boots","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,92,65,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}]}, -{"id":39274,"name":"Retcher's Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,0,92,66,28,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}]}, -{"id":39275,"name":"Contagion Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,66,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}]}, -{"id":39276,"name":"The Skull of Ruin","icon":"inv_shield_26","type":13,"weaponType":7,"handType":3,"stats":[50,0,75,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}}]}, -{"id":39277,"name":"Sealing Ring of Grobbulus","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,36,89,0,0,0,38,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":39278,"name":"Bands of Anxiety","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,50,75,0,0,29,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}]}, -{"id":39279,"name":"Blistered Belt of Decay","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,66,100,0,0,0,33,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}]}, -{"id":39280,"name":"Leggings of Innumerable Barbs","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[74,0,133,0,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}]}, -{"id":39281,"name":"Infection Repulser","icon":"inv_mace_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,66,0,28,0,0,40,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}]}, -{"id":39282,"name":"Bone-Linked Amulet","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,58,49,25,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}}]}, -{"id":39283,"name":"Putrescent Bands","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,60,49,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}]}, -{"id":39284,"name":"Miasma Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,97,66,43,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}]}, -{"id":39285,"name":"Handgrips of Turmoil","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,97,58,36,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}]}, -{"id":39291,"name":"Torment of the Banished","icon":"inv_sword_60","type":13,"weaponType":9,"handType":2,"stats":[0,27,72,0,0,0,26,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}]}, -{"id":39292,"name":"Repelling Charge","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}]}, -{"id":39293,"name":"Blackened Legplates of Feugen","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,128,89,58,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}]}, -{"id":39294,"name":"Arc-Scorched Helmet","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,74,111,0,0,0,71,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}]}, -{"id":39295,"name":"Cowl of Sheet Lightning","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,127,73,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}]}, -{"id":39296,"name":"Accursed Bow of the Elite","icon":"inv_weapon_bow_13","type":14,"rangedWeaponType":1,"stats":[0,28,37,0,0,16,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":679,"weaponSpeed":2.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}]}, -{"id":39297,"name":"Cloak of Darkening","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,29,97,0,0,0,24,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}]}, -{"id":39298,"name":"Waistguard of the Tutor","icon":"inv_belt_12","type":8,"armorType":4,"stats":[67,0,97,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}]}, -{"id":39299,"name":"Rapid Attack Gloves","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,58,100,0,0,0,0,40,33,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}]}, -{"id":39306,"name":"Plated Gloves of Relief","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,94,58,48,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}]}, -{"id":39307,"name":"Iron Rings of Endurance","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,70,50,30,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":39308,"name":"Girdle of Lenience","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,94,66,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}]}, -{"id":39309,"name":"Leggings of the Instructor","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,122,74,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}]}, -{"id":39310,"name":"Mantle of the Extensive Mind","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,99,66,46,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":39311,"name":"Scepter of Murmuring Spirits","icon":"inv_offhand_naxxramas_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,65,50,32,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":39320,"name":"Sky Darkener's Shroud of Blood","icon":"inv_misc_cape_08","type":4,"stats":[15,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12679,"name":"Tonight We Dine In Havenshire"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":39322,"name":"Shroud of the North Wind","icon":"inv_misc_cape_05","type":4,"stats":[15,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":3,"classAllowlist":[10],"sources":[{"quest":{"id":12679,"name":"Tonight We Dine In Havenshire"}},{"soldBy":{"npcId":28512,"npcName":"Quartermaster Ozorg"}}]}, -{"id":39323,"name":"Scrap-Hide Spaulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,84,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12558,"name":"Dreadsaber Mastery: Ready to Pounce"}}]}, -{"id":39330,"name":"Fingers of Dextrous Decimation","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,44,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12592,"name":"The Great Hunter's Challenge"}}]}, -{"id":39331,"name":"Tooth-Marked Girdle","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,72,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12569,"name":"Crocolisk Mastery: The Ambush"}}]}, -{"id":39332,"name":"Ogre-Crushing Wristguards","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,29,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12525,"name":"Wipe That Grin Off His Face"}}]}, -{"id":39333,"name":"Nimblefoot Moccasins","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,63,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12556,"name":"Rhino Mastery: The Kill"}}]}, -{"id":39335,"name":"Leggings of Mending Fronds","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,57,62,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12570,"name":"Fortunate Misunderstandings"}}]}, -{"id":39336,"name":"Bracers of Prompt Reclamation","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,32,31,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12575,"name":"The Lost Mistwhisper Treasure"}}]}, -{"id":39337,"name":"Stained Coop Warmer","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,0,38,38,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12532,"name":"Flown the Coop!"}}]}, -{"id":39344,"name":"Slayer of the Lifeless","icon":"inv_sword_62","type":13,"weaponType":9,"handType":2,"stats":[29,0,57,0,0,19,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}]}, -{"id":39345,"name":"Girdle of the Ascended Phantom","icon":"inv_belt_15","type":8,"armorType":4,"stats":[67,0,97,0,0,51,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}]}, -{"id":39346,"name":"Chitin-Reinforced Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,57,62,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12534,"name":"The Sapphire Queen"}}]}, -{"id":39347,"name":"Gloves of the Crackling Storm","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,46,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12537,"name":"Lightning Definitely Strikes Twice"}}]}, -{"id":39348,"name":"Aged Watcher's Legwraps","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,60,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12691,"name":"A Timeworn Coffer"}}]}, -{"id":39363,"name":"Binding of Purified Corpses","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,44,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12561,"name":"An Issue of Trust"}}]}, -{"id":39364,"name":"Hood of the Titan Defender","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,58,41,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2}, -{"id":39365,"name":"Lifewarden's Raiment","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,83,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12617,"name":"Exterminate the Intruders"}}]}, -{"id":39366,"name":"Spaulders of the Runeseeker","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,41,47,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12547,"name":"The Activation Rune"}}]}, -{"id":39367,"name":"Cowl of the Purifier","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,63,55,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12611,"name":"Returned Sevenfold"}}]}, -{"id":39368,"name":"Field Researcher's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,47,42,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12681,"name":"Reagent Agent"}}]}, -{"id":39369,"name":"Sabatons of Deathlike Gloom","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,94,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}]}, -{"id":39370,"name":"Keleseth's Persuader","icon":"inv_sword_2h_blood_b_01","type":13,"weaponType":9,"handType":4,"stats":[30,0,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":3.4,"ilvl":70,"quality":3}, -{"id":39371,"name":"Keleseth's Persuader","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.3,"ilvl":70,"quality":1}, -{"id":39372,"name":"Mantle of the Dark Messenger","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,0,43,32,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39373,"name":"Bracers of Rapid Death","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,30,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12592,"name":"The Great Hunter's Challenge"}}]}, -{"id":39374,"name":"Crocscale Moccasins","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,48,32,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12569,"name":"Crocolisk Mastery: The Ambush"}}]}, -{"id":39375,"name":"Dreadsaber Tooth Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,48,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12558,"name":"Dreadsaber Mastery: Ready to Pounce"}}]}, -{"id":39376,"name":"Bracers of the Rejuvenated Forest","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,32,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12525,"name":"Wipe That Grin Off His Face"}}]}, -{"id":39377,"name":"Toenail Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,33,47,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12556,"name":"Rhino Mastery: The Kill"}}]}, -{"id":39378,"name":"Ragged Leaf Grips","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,48,43,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12570,"name":"Fortunate Misunderstandings"}}]}, -{"id":39379,"name":"Spectral Rider's Girdle","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,66,77,0,0,0,65,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}]}, -{"id":39380,"name":"Legguards of the Aggressive Emissary","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,54,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12575,"name":"The Lost Mistwhisper Treasure"}}]}, -{"id":39383,"name":"Egg-Warming Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,49,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12532,"name":"Flown the Coop!"}}]}, -{"id":39385,"name":"Helm of the Ancient Horn","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,51,66,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12617,"name":"Exterminate the Intruders"}}]}, -{"id":39386,"name":"Tunic of Dislocation","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,74,144,0,0,0,0,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}]}, -{"id":39387,"name":"Stinger-Proof Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,60,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12534,"name":"The Sapphire Queen"}}]}, -{"id":39388,"name":"Spirit-World Glass","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":39389,"name":"Signet of the Malevolent","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,75,39,0,49,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}]}, -{"id":39390,"name":"Resurgent Phantom Bindings","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,64,50,38,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}]}, -{"id":39391,"name":"Heinous Mail Chestguard","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,128,73,40,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}]}, -{"id":39392,"name":"Veiled Amulet of Life","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,70,50,34,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}]}, -{"id":39393,"name":"Claymore of Ancient Power","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,64,160,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":522,"weaponDamageMax":784,"weaponSpeed":3.5,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":39394,"name":"Charmed Cierge","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,127,0,90,0,0,89,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":477,"weaponDamageMax":717,"weaponSpeed":3.2,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}]}, -{"id":39395,"name":"Thane's Tainted Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[73,0,111,0,0,0,0,0,0,59,44,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}]}, -{"id":39396,"name":"Gown of Blaumeux","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,144,90,0,45,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}]}, -{"id":39397,"name":"Pauldrons of Havoc","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,66,87,0,0,0,60,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":39398,"name":"Massive Skeletal Ribcage","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[68,0,135,0,0,0,0,0,45,0,87,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}]}, -{"id":39399,"name":"Helm of the Vast Legions","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,74,126,0,0,43,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}]}, -{"id":39400,"name":"Static-Dispersing Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,44,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12537,"name":"Lightning Definitely Strikes Twice"}}]}, -{"id":39401,"name":"Circle of Death","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[50,0,51,0,0,0,49,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}]}, -{"id":39402,"name":"Binding of the Ancient Keeper","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,45,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12691,"name":"A Timeworn Coffer"}}]}, -{"id":39403,"name":"Helm of the Unsubmissive","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[74,0,96,0,0,36,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":39404,"name":"Cloak of Mastery","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,50,92,0,0,21,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}]}, -{"id":39405,"name":"Helmet of the Inner Sanctum","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,135,73,0,0,48,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}]}, -{"id":39406,"name":"Splattered Zombie Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,33,33,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12561,"name":"An Issue of Trust"}}]}, -{"id":39407,"name":"Circle of Life","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,72,50,32,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}]}, -{"id":39408,"name":"Leggings of Sapphiron","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,110,75,72,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}]}, -{"id":39409,"name":"Cowl of Winged Fear","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,134,74,45,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}]}, -{"id":39410,"name":"Gauntlets of Rampant Destruction","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,45,44,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2}, -{"id":39411,"name":"Legguards of Guided Travel","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,61,60,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12547,"name":"The Activation Rune"}}]}, -{"id":39412,"name":"Scourgebane Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,45,47,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12611,"name":"Returned Sevenfold"}}]}, -{"id":39413,"name":"Hydrafang Breeches","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,63,59,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12681,"name":"Reagent Agent"}}]}, -{"id":39414,"name":"Gilly's Strangulation Gauntlets","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,44,48,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39415,"name":"Shroud of the Citadel","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,72,50,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":39416,"name":"Kel'Thuzad's Reach","icon":"inv_weapon_hand_03","type":13,"weaponType":3,"handType":1,"stats":[0,21,81,0,0,0,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":39417,"name":"Death's Bite","icon":"inv_axe_2h_stratholme_d_01","type":13,"weaponType":1,"handType":4,"stats":[101,0,114,0,0,62,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":831,"weaponSpeed":3.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":39419,"name":"Nerubian Conquerer","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,32,57,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":413,"weaponDamageMax":768,"weaponSpeed":2.9,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":39420,"name":"Anarchy","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":2,"stats":[0,29,83,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":39421,"name":"Gem of Imprisoned Vassals","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,32,104,0,0,0,41,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":39422,"name":"Staff of the Plaguehound","icon":"inv_staff_80","type":13,"weaponType":8,"handType":4,"stats":[0,72,225,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":587,"weaponSpeed":2.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}]}, -{"id":39423,"name":"Hammer of the Astral Plane","icon":"inv_mace_27","type":13,"weaponType":4,"handType":1,"stats":[0,0,77,0,0,0,42,31,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":39424,"name":"The Soulblade","icon":"inv_knife_1h_stratholme_d_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,79,0,0,30,42,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":39425,"name":"Cloak of the Dying","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,80,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":39426,"name":"Wand of the Archlich","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,40,32,24,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":362,"weaponDamageMax":674,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":39427,"name":"Omen of Ruin","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,29,71,0,0,0,29,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":39428,"name":"Faceguard of Flawless Aim","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,60,62,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12592,"name":"The Great Hunter's Challenge"}}]}, -{"id":39429,"name":"Pauldrons of Swift Replenishment","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,42,31,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12558,"name":"Dreadsaber Mastery: Ready to Pounce"}}]}, -{"id":39430,"name":"Spitelinked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,31,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12525,"name":"Wipe That Grin Off His Face"}}]}, -{"id":39431,"name":"Shaved Rhinohorn Chestguard","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,60,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12556,"name":"Rhino Mastery: The Kill"}}]}, -{"id":39432,"name":"Belt of Misconceptions","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,0,67,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12570,"name":"Fortunate Misunderstandings"}}]}, -{"id":39433,"name":"Clear Earthen Scalemail","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,56,43,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12575,"name":"The Lost Mistwhisper Treasure"}}]}, -{"id":39435,"name":"Straw-Lined Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,62,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12532,"name":"Flown the Coop!"}}]}, -{"id":39436,"name":"Insect-Filtering Faceguard","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,84,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12534,"name":"The Sapphire Queen"}}]}, -{"id":39437,"name":"Belt of Trapped Lightning","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,30,40,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12537,"name":"Lightning Definitely Strikes Twice"}}]}, -{"id":39438,"name":"Rockhandler's Gloves","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,30,38,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12691,"name":"A Timeworn Coffer"}}]}, -{"id":39439,"name":"Skeleton Smashers","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,44,47,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12561,"name":"An Issue of Trust"}}]}, -{"id":39440,"name":"Greaves of the Titan Protectorate","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,59,63,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2}, -{"id":39441,"name":"Treads of Bound Life","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,47,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12617,"name":"Exterminate the Intruders"}}]}, -{"id":39442,"name":"Seeing-Eye Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,47,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12547,"name":"The Activation Rune"}}]}, -{"id":39443,"name":"Chain Gloves of the Demonic Minion","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,55,47,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39444,"name":"Keeper's Touch","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,41,44,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12611,"name":"Returned Sevenfold"}}]}, -{"id":39445,"name":"Roc Hunter's Bracer","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,33,31,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12681,"name":"Reagent Agent"}}]}, -{"id":39446,"name":"Pauldrons of Resolution","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,44,47,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12624,"name":"It Could Be Anywhere!"}}]}, -{"id":39448,"name":"Helm of Brutal Slaughter","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[60,0,63,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12592,"name":"The Great Hunter's Challenge"}}]}, -{"id":39449,"name":"Wristguards of Titanic Vengeance","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[33,0,30,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12617,"name":"Exterminate the Intruders"}}]}, -{"id":39450,"name":"Bug-Smashing Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[27,0,66,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12534,"name":"The Sapphire Queen"}}]}, -{"id":39451,"name":"Pauldrons of the Silent Mist","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,66,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12558,"name":"Dreadsaber Mastery: Ready to Pounce"}}]}, -{"id":39452,"name":"Roaming Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,30,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12525,"name":"Wipe That Grin Off His Face"}}]}, -{"id":39453,"name":"Rhino-Tail Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[44,0,41,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12556,"name":"Rhino Mastery: The Kill"}}]}, -{"id":39454,"name":"Handguards of Transient Friendship","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[26,0,66,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12575,"name":"The Lost Mistwhisper Treasure"}}]}, -{"id":39455,"name":"Cracked Nest Stabilizer","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,69,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12532,"name":"Flown the Coop!"}}]}, -{"id":39457,"name":"Zepik's Grounded Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[44,0,53,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12537,"name":"Lightning Definitely Strikes Twice"}}]}, -{"id":39458,"name":"Cultbreaker's Chestguard","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[53,0,80,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39459,"name":"Preservative-Stained Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[46,0,45,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12561,"name":"An Issue of Trust"}}]}, -{"id":39460,"name":"Sabatons of the Rampaging Construct","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,64,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2}, -{"id":39461,"name":"Muck-Stained Carapace","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[58,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12569,"name":"Crocolisk Mastery: The Ambush"}}]}, -{"id":39462,"name":"Legplates of the Northern Expedition","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,65,59,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{}}]}, -{"id":39463,"name":"Norrington's Burnished Breastplate","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,48,59,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12681,"name":"Reagent Agent"}}]}, -{"id":39464,"name":"Lifegiver's Ward","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[24,0,51,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12611,"name":"Returned Sevenfold"}}]}, -{"id":39465,"name":"Pathfinding Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,39,0,0,0,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12547,"name":"The Activation Rune"}}]}, -{"id":39466,"name":"Boots of Dominance","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[43,26,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12624,"name":"It Could Be Anywhere!"}}]}, -{"id":39467,"name":"Minion Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[50,0,75,0,0,0,0,0,0,38,24,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":39468,"name":"The Stray","icon":"inv_weapon_hand_03","type":13,"weaponType":3,"handType":3,"stats":[0,22,72,0,0,27,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":39470,"name":"Medallion of the Disgraced","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[48,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":39471,"name":"Gutbuster of Aldur'thar","icon":"inv_belt_33","type":8,"armorType":4,"stats":[39,0,58,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39472,"name":"Chain of Latent Energies","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,69,50,0,34,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}]}, -{"id":39473,"name":"Contortion","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,43,28,20,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":617,"weaponSpeed":1.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":39474,"name":"Ring of Devoted Promises","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,36,0,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12624,"name":"It Could Be Anywhere!"}}]}, -{"id":39475,"name":"Artruis' Focus Stone","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,45,34,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12581,"name":"A Hero's Burden"}}]}, -{"id":39478,"name":"Cloak of the Deadliest Game","icon":"inv_misc_cape_21","type":4,"stats":[0,0,33,0,0,0,19,33,0,0,0,0,48,48,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":39479,"name":"Cloak of Renewed Hope","icon":"inv_misc_cape_15","type":4,"stats":[0,0,30,32,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12624,"name":"It Could Be Anywhere!"}}]}, -{"id":39480,"name":"Bent Crocolisk Tooth","icon":"inv_jewelry_ring_64","type":11,"stats":[0,34,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12569,"name":"Crocolisk Mastery: The Ambush"}}]}, -{"id":39481,"name":"Signet of the Avenging Heart","icon":"inv_jewelry_ring_28","type":11,"stats":[22,0,34,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12611,"name":"Returned Sevenfold"}}]}, -{"id":39482,"name":"Ring of Misinterpreted Gestures","icon":"inv_jewelry_ring_28","type":11,"stats":[26,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12570,"name":"Fortunate Misunderstandings"}}]}, -{"id":39483,"name":"Choker of Binding","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,29,29,26,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12581,"name":"A Hero's Burden"}}]}, -{"id":39484,"name":"Spiked Collar of Servitude","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,28,0,0,0,29,26,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12581,"name":"A Hero's Burden"}}]}, -{"id":39485,"name":"Blood-Infused Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[24,0,51,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12581,"name":"A Hero's Burden"}}]}, -{"id":39486,"name":"Hemet's Trophy Gun","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,22,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":509,"weaponSpeed":2.9,"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":39487,"name":"Dragon Slayer's Shortbow","icon":"inv_weapon_bow_36","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,16,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":491,"weaponSpeed":2.8,"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":39488,"name":"Nesingwary Brush Burner","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,21,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":293,"weaponDamageMax":545,"weaponSpeed":2.2,"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":39490,"name":"Dorian's Prybar","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,15,21,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.4,"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":39491,"name":"Heroes' Frostfire Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,113,74,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39492,"name":"Heroes' Frostfire Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,110,74,60,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39493,"name":"Heroes' Frostfire Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,74,0,36,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39494,"name":"Heroes' Frostfire Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,93,58,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39495,"name":"Heroes' Frostfire Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,100,50,0,33,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39496,"name":"Heroes' Plagueheart Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,124,74,46,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39497,"name":"Heroes' Plagueheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,134,74,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39498,"name":"Heroes' Plagueheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,131,74,0,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39499,"name":"Heroes' Plagueheart Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,99,58,0,30,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39500,"name":"Heroes' Plagueheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,50,0,0,38,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39503,"name":"Bronzed Dome Protector","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[38,0,90,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12558,"name":"Dreadsaber Mastery: Ready to Pounce"}}]}, -{"id":39507,"name":"Darkmoon Chain Shirt","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-72,-68,-20,-14],"ilvl":20,"quality":2,"sources":[{"quest":{"id":12517,"name":"Rogues Deck"}}]}, -{"id":39508,"name":"Stonebound Chestguard","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[35,0,90,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12691,"name":"A Timeworn Coffer"}}]}, -{"id":39509,"name":"Darkmoon Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,-71,-20,-18,-14],"ilvl":20,"quality":2,"sources":[{"quest":{"id":12517,"name":"Rogues Deck"}}]}, -{"id":39514,"name":"Heroes' Crown of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,108,73,64,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39515,"name":"Heroes' Robe of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,118,73,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39517,"name":"Heroes' Leggings of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,75,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39518,"name":"Heroes' Shoulderpads of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,94,58,44,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39519,"name":"Heroes' Gloves of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,88,58,49,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39521,"name":"Heroes' Circlet of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,108,73,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39522,"name":"Wolvar Shortbow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":2.4,"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":29014,"npcName":"Grakjek","zoneId":3711}}]}, -{"id":39523,"name":"Heroes' Raiments of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,119,73,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39528,"name":"Heroes' Pants of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,75,51,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39529,"name":"Heroes' Mantle of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,94,58,0,36,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39530,"name":"Heroes' Handwraps of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,88,58,0,0,49,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":39531,"name":"Heroes' Dreamwalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,128,73,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39534,"name":"Pauldrons of the Lightning Revenant","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[44,0,76,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}]}, -{"id":39535,"name":"Ionar's Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,74,51,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}]}, -{"id":39536,"name":"Thundercloud Grasps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,90,51,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}]}, -{"id":39538,"name":"Heroes' Dreamwalker Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,122,73,69,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39539,"name":"Heroes' Dreamwalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,123,73,68,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39542,"name":"Heroes' Dreamwalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,90,58,51,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39543,"name":"Heroes' Dreamwalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,94,58,48,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39544,"name":"Heroes' Dreamwalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,94,58,30,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39545,"name":"Heroes' Dreamwalker Cover","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,123,73,0,36,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39546,"name":"Heroes' Dreamwalker Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,123,73,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39547,"name":"Heroes' Dreamwalker Vestments","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,0,121,73,0,0,54,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39548,"name":"Heroes' Dreamwalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,94,58,0,29,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39553,"name":"Heroes' Dreamwalker Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,73,135,0,0,0,44,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39554,"name":"Heroes' Dreamwalker Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,74,142,0,0,0,54,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39555,"name":"Heroes' Dreamwalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,73,145,0,0,0,51,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39556,"name":"Heroes' Dreamwalker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,58,107,0,0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39557,"name":"Heroes' Dreamwalker Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,51,106,0,0,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39558,"name":"Heroes' Bonescythe Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,74,133,0,0,0,43,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39560,"name":"Heroes' Bonescythe Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,58,98,0,0,33,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39561,"name":"Heroes' Bonescythe Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,73,128,0,0,0,52,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39564,"name":"Heroes' Bonescythe Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,81,136,0,0,37,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39565,"name":"Heroes' Bonescythe Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,45,98,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":39578,"name":"Heroes' Cryptstalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,73,105,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39579,"name":"Heroes' Cryptstalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,73,134,0,0,44,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39580,"name":"Heroes' Cryptstalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,74,111,0,0,0,68,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39581,"name":"Heroes' Cryptstalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,58,78,0,0,0,58,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39582,"name":"Heroes' Cryptstalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,58,82,0,0,0,56,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39583,"name":"Heroes' Earthshatter Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,123,73,42,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39588,"name":"Heroes' Earthshatter Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,127,73,50,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39589,"name":"Heroes' Earthshatter Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,141,73,38,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39590,"name":"Heroes' Earthshatter Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,94,58,32,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39591,"name":"Heroes' Earthshatter Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,97,58,40,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39592,"name":"Heroes' Earthshatter Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,128,73,0,0,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39593,"name":"Heroes' Earthshatter Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,97,58,0,38,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39594,"name":"Heroes' Earthshatter Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,123,73,0,0,43,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39595,"name":"Heroes' Earthshatter Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,141,73,0,37,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39596,"name":"Heroes' Earthshatter Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,94,58,0,32,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39597,"name":"Heroes' Earthshatter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,73,134,0,0,56,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39601,"name":"Heroes' Earthshatter Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,58,82,0,0,0,62,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39602,"name":"Heroes' Earthshatter Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,65,134,0,0,36,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39603,"name":"Heroes' Earthshatter War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,73,134,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39604,"name":"Heroes' Earthshatter Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,58,99,0,0,0,43,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":39605,"name":"Heroes' Dreadnaught Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,0,81,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39606,"name":"Heroes' Dreadnaught Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,90,0,0,52,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39607,"name":"Heroes' Dreadnaught Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,90,0,0,0,72,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39608,"name":"Heroes' Dreadnaught Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,0,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39609,"name":"Heroes' Dreadnaught Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,33,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39610,"name":"Heroes' Dreadnaught Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,30,0,0,0,49,43,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39611,"name":"Heroes' Dreadnaught Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[81,0,111,0,0,0,0,0,0,71,38,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39612,"name":"Heroes' Dreadnaught Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,59,41,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39613,"name":"Heroes' Dreadnaught Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,57,25,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39617,"name":"Heroes' Scourgeborne Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[74,0,90,0,0,0,60,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39618,"name":"Heroes' Scourgeborne Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,33,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39619,"name":"Heroes' Scourgeborne Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,29,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39620,"name":"Heroes' Scourgeborne Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,90,0,0,0,72,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39621,"name":"Heroes' Scourgeborne Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,39,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39622,"name":"Heroes' Dreadnaught Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,0,0,0,30,0,61,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39623,"name":"Heroes' Scourgeborne Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[81,0,111,0,0,0,0,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39624,"name":"Heroes' Scourgeborne Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,30,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39625,"name":"Heroes' Scourgeborne Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,0,0,0,30,0,69,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39626,"name":"Heroes' Scourgeborne Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[72,0,111,0,0,30,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39627,"name":"Heroes' Scourgeborne Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,43,45,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39628,"name":"Heroes' Redemption Headpiece","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[0,0,128,73,42,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39629,"name":"Heroes' Redemption Tunic","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,128,73,46,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39630,"name":"Heroes' Redemption Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,127,73,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39631,"name":"Heroes' Redemption Spaulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,95,58,0,0,48,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39632,"name":"Heroes' Redemption Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,94,58,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39633,"name":"Heroes' Redemption Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,103,0,0,0,74,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39634,"name":"Heroes' Redemption Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,0,46,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39635,"name":"Heroes' Redemption Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,29,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39636,"name":"Heroes' Redemption Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[81,0,90,0,0,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39637,"name":"Heroes' Redemption Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,39,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39638,"name":"Heroes' Redemption Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39639,"name":"Heroes' Redemption Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,30,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39640,"name":"Heroes' Redemption Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,0,0,0,30,43,49,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39641,"name":"Heroes' Redemption Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39642,"name":"Heroes' Redemption Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[60,0,87,0,0,0,0,0,0,50,35,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":39648,"name":"Kurzel's Rage","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,49,0,0,33,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12037,"name":"Search and Rescue"}}]}, -{"id":39649,"name":"Kurzel's Angst","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,58,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12037,"name":"Search and Rescue"}}]}, -{"id":39650,"name":"Kurzel's Warband","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[33,0,49,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12037,"name":"Search and Rescue"}}]}, -{"id":39652,"name":"Choker of the Betrayer","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,0,0,0,23,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12713,"name":"Betrayal"}}]}, -{"id":39653,"name":"Choker of Betrayal","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,48,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12713,"name":"Betrayal"}}]}, -{"id":39655,"name":"Betrayer's Choker","icon":"inv_jewelry_necklace_17","type":2,"stats":[24,0,49,0,0,19,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{"id":12713,"name":"Betrayal"}}]}, -{"id":39657,"name":"Tornado Cuffs","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,39,33,0,0,0,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}]}, -{"id":39672,"name":"Drape of the Offered Branch","icon":"inv_misc_cape_15","type":4,"stats":[0,0,35,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12573,"name":"Making Peace"}}]}, -{"id":39673,"name":"Lightning Beetle's Cape","icon":"inv_misc_cape_13","type":4,"stats":[0,0,29,34,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12573,"name":"Making Peace"}}]}, -{"id":39674,"name":"Cloak of the Buzzing Swarm","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,0,22,35,0,0,0,0,44,44,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12573,"name":"Making Peace"}}]}, -{"id":39675,"name":"Cloak of the Hardened Tortoise","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[24,0,47,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"sources":[{"quest":{"id":12573,"name":"Making Peace"}}]}, -{"id":39676,"name":"Wraps of the San'layn","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,39,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{}}]}, -{"id":39678,"name":"Vendetta Bindings","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,28,41,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{}}]}, -{"id":39679,"name":"Runecaster's Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,47,29,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{}}]}, -{"id":39680,"name":"Vambraces of the Vengeance Bringer","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[30,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{}}]}, -{"id":39688,"name":"Mark \"S\" Boomstick","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,17,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":281,"weaponDamageMax":523,"weaponSpeed":2.9,"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":54353}},{"crafted":{"profession":4,"spellId":54353}}]}, -{"id":39701,"name":"Dawnwalkers","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,74,99,0,0,50,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39702,"name":"Arachnoid Gold Band","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,56,75,0,0,0,44,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39703,"name":"Rescinding Grips","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,107,75,0,0,53,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39704,"name":"Pauldrons of Unnatural Death","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[57,0,100,0,0,0,0,0,30,0,72,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39706,"name":"Sabatons of Sudden Reprisal","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[67,0,82,0,0,0,66,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39707,"name":"Verdant Tundra Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,87,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":2}, -{"id":39708,"name":"Verdant Tundra Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,39,38,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":2}, -{"id":39709,"name":"Verdant Tundra Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,60,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":2}, -{"id":39710,"name":"Verdant Tundra Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":2}, -{"id":39711,"name":"Verdant Tundra Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,23,31,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":2}, -{"id":39712,"name":"Gemmed Wand of the Nerubians","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,45,32,0,18,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":362,"weaponDamageMax":674,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39714,"name":"Webbed Death","icon":"inv_weapon_shortblade_58","type":13,"weaponType":2,"handType":2,"stats":[0,43,65,0,0,21,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":1.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39716,"name":"Shield of Assimilation","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39717,"name":"Inexorable Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[74,0,94,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39718,"name":"Corpse Scarab Handguards","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,107,67,40,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39719,"name":"Mantle of the Locusts","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,87,67,67,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39720,"name":"Leggings of Atrophy","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,144,101,0,50,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39721,"name":"Sash of the Parlor","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,112,75,56,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39722,"name":"Swarm Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,80,56,32,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}]}, -{"id":39723,"name":"Fire-Scorched Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[100,0,150,0,0,59,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39724,"name":"Cult's Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,100,151,0,0,76,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39725,"name":"Epaulets of the Grieving Servant","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,107,75,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39726,"name":"Callous-Hearted Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[74,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39727,"name":"Dislocating Handguards","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,75,118,0,0,50,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39728,"name":"Totem of Misery","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39729,"name":"Bracers of the Tyrant","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[57,0,61,0,0,0,0,55,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39730,"name":"Widow's Fury","icon":"inv_sword_98","type":13,"weaponType":9,"handType":2,"stats":[0,43,66,0,0,0,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39731,"name":"Punctilious Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,80,56,39,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39732,"name":"Faerlina's Madness","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,143,101,0,58,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39733,"name":"Gloves of Token Respect","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,107,75,53,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39734,"name":"Atonement Greaves","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,105,75,56,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39735,"name":"Belt of False Dignity","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,105,75,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39756,"name":"Tunic of Prejudice","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,143,101,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39757,"name":"Idol of Worship","icon":"inv_qirajidol_strife","type":14,"rangedWeaponType":4,"stats":[0,32,47,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":39758,"name":"The Jawbone","icon":"inv_mace_83","type":13,"weaponType":4,"handType":4,"stats":[101,0,108,0,0,0,0,99,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39759,"name":"Ablative Chitin Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[74,0,100,0,0,37,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39760,"name":"Helm of Diminished Pride","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,137,101,58,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39761,"name":"Infectious Skitterer Leggings","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,100,152,0,0,0,72,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39762,"name":"Torn Web Wrapping","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,75,112,0,0,44,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39763,"name":"Wraith Strike","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":1,"stats":[0,0,75,0,0,0,31,43,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39764,"name":"Bindings of the Hapless Prey","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[56,0,84,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39765,"name":"Sinner's Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,48,84,0,0,0,41,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39766,"name":"Matriarch's Spawn","icon":"inv_offhand_naxxramas_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,78,56,43,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39767,"name":"Undiminished Battleplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[100,0,115,0,0,100,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":39768,"name":"Cowl of the Perished","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,143,101,72,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":39769,"name":"Arcanite Ripper","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,0,24,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":542,"weaponSpeed":3.8,"ilvl":115,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":28194,"zoneId":3457}}]}, -{"id":39770,"name":"Soothsayer's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,50,43,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12707,"name":"Wooly Justice"}}]}, -{"id":39771,"name":"Embattled Legwraps","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,85,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12504,"name":"Argent Crusade, We Are Leaving!"}}]}, -{"id":39772,"name":"Bloodbinder's Wrist Wraps","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,27,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12639,"name":"The Frozen Earth"}}]}, -{"id":39773,"name":"Soothsayer's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,36,43,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12584,"name":"Pure Evil"}}]}, -{"id":39775,"name":"Soothsayer's Sandals","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,46,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12622,"name":"The Leaders at Jin'Alai"}}]}, -{"id":39776,"name":"Bloodbinder's Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,41,43,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"sources":[{"quest":{"id":12707,"name":"Wooly Justice"}}]}, -{"id":39777,"name":"Band of Misty Mojo","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,27,24,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12662,"name":"Bringing Down Heb'Jin"}}]}, -{"id":39778,"name":"Bloodletter's Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[57,0,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12707,"name":"Wooly Justice"}}]}, -{"id":39779,"name":"Crusader's Ripcord","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,51,33,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12740,"name":"Parachutes for the Argent Crusade"}}]}, -{"id":39780,"name":"Valiant Belt of Battle","icon":"inv_belt_27","type":8,"armorType":3,"stats":[0,58,50,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12504,"name":"Argent Crusade, We Are Leaving!"}}]}, -{"id":39781,"name":"Bloodbinder's Raiment","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,87,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12510,"name":"Precious Elemental Fluids"}}]}, -{"id":39782,"name":"Thick Bracers of Battle","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[32,0,33,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12504,"name":"Argent Crusade, We Are Leaving!"}}]}, -{"id":39783,"name":"Bloodbinder's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,0,42,43,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12639,"name":"The Frozen Earth"}}]}, -{"id":39784,"name":"Staff of the Dutybound","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,58,0,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":282,"weaponDamageMax":424,"weaponSpeed":2.9,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39785,"name":"Soothsayer's Garb","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,113,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12516,"name":"Too Much of a Good Thing"}}]}, -{"id":39786,"name":"Band of the Bloodletter","icon":"inv_jewelry_ring_46","type":11,"stats":[32,0,36,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12639,"name":"The Frozen Earth"}}]}, -{"id":39787,"name":"Soothsayer's Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,44,36,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12632,"name":"But First My Offspring"}}]}, -{"id":39788,"name":"Leggings of the Ritual","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,50,69,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12662,"name":"Bringing Down Heb'Jin"}}]}, -{"id":39789,"name":"Bloodbinder's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,45,34,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12647,"name":"An End to the Suffering"}}]}, -{"id":39790,"name":"Gauntlets of the Altar","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[31,0,37,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12662,"name":"Bringing Down Heb'Jin"}}]}, -{"id":39791,"name":"Soothsayer's Wristwraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,32,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12674,"name":"Hell Hath a Fury"}}]}, -{"id":39792,"name":"Ritualistic Band of Light","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,31,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12584,"name":"Pure Evil"}}]}, -{"id":39793,"name":"Neckcharm of Mighty Mojo","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,38,27,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12685,"name":"You Reap What You Sow"}}]}, -{"id":39794,"name":"Bloodbinder's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,45,36,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12721,"name":"Rampage"}}]}, -{"id":39795,"name":"Boots of the Altar","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[43,0,36,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12584,"name":"Pure Evil"}}]}, -{"id":39796,"name":"Boots of the Great Sacrifice","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,42,37,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12622,"name":"The Leaders at Jin'Alai"}}]}, -{"id":39797,"name":"Bloodbinder's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,53,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12709,"name":"Hexed Caches"}}]}, -{"id":39798,"name":"Ring of Ancestral Protectors","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[21,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12622,"name":"The Leaders at Jin'Alai"}}]}, -{"id":39799,"name":"Rescuer's Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12740,"name":"Parachutes for the Argent Crusade"}}]}, -{"id":39800,"name":"Pantaloons of the Dutybound","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,51,59,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12596,"name":"Pa'Troll"}}]}, -{"id":39801,"name":"Boots of the Rescuer","icon":"inv_boots_chain_09","type":10,"armorType":4,"stats":[42,0,37,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12740,"name":"Parachutes for the Argent Crusade"}}]}, -{"id":39802,"name":"Crusader's Greatblade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,53,0,0,0,0,0,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":321,"weaponDamageMax":482,"weaponSpeed":3.3,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12609,"name":"Stocking the Shelves"}}]}, -{"id":39803,"name":"Gauntlets of the Great Sacrifice","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,42,0,0,0,0,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12510,"name":"Precious Elemental Fluids"}}]}, -{"id":39804,"name":"Braided Bat Sinew","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,46,0,27,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12610,"name":"Clipping Their Wings"}}]}, -{"id":39805,"name":"Chestplate of the Altar","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[63,0,0,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12510,"name":"Precious Elemental Fluids"}}]}, -{"id":39806,"name":"Blade of Diligence","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,31,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.6,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39807,"name":"Rescuer's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,59,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12512,"name":"Leave No One Behind"}}]}, -{"id":39808,"name":"Staff of Diligence","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,63,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":282,"weaponDamageMax":424,"weaponSpeed":2.9,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39809,"name":"Sandals of Spying","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12661,"name":"Infiltrating Voltarus"}}]}, -{"id":39810,"name":"Cords of Duplicity","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,46,27,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12669,"name":"So Far, So Bad"}}]}, -{"id":39811,"name":"Badge of the Infiltrator","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12676,"name":"Sabotage"}}]}, -{"id":39812,"name":"Soiled Trousers","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,63,36,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12652,"name":"Feedin' Da Goolz"}}]}, -{"id":39814,"name":"Slippers of the Broken Front","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,38,55,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39815,"name":"Bloodbinder's Links","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,0,0,58,38,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12516,"name":"Too Much of a Good Thing"}}]}, -{"id":39816,"name":"Medic's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,44,29,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12903,"name":"That's What Friends Are For..."}}]}, -{"id":39817,"name":"Brazen Offender's Shoulderplates","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[43,0,0,0,0,0,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12516,"name":"Too Much of a Good Thing"}}]}, -{"id":39818,"name":"Frigid Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,18,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":1.5,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12707,"name":"Wooly Justice"}}]}, -{"id":39819,"name":"Bloodbinder's Runestone","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":39820,"name":"Blade of Valorous Service","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,24,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.5,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12740,"name":"Parachutes for the Argent Crusade"}}]}, -{"id":39821,"name":"Spiritist's Focus","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12632,"name":"But First My Offspring"}}]}, -{"id":39822,"name":"Knife of the Dutybound","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,35,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.7,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39823,"name":"Dutybound Mace of Purity","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,36,0,26,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":268,"weaponSpeed":2.2,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39824,"name":"Cleaver of Diligence","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[55,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":526,"weaponSpeed":3.6,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12555,"name":"A Tangled Skein"}}]}, -{"id":39825,"name":"Belt of the Bloodbinder","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,42,42,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12647,"name":"An End to the Suffering"}}]}, -{"id":39826,"name":"Bloodletter's Blade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":207,"weaponSpeed":1.7,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12685,"name":"You Reap What You Sow"}}]}, -{"id":39827,"name":"Vile Tome of Tenets","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,34,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12596,"name":"Pa'Troll"}}]}, -{"id":39828,"name":"Punisher's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,24,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":39829,"name":"High-Strung Bow","icon":"inv_weapon_bow_42","type":14,"rangedWeaponType":1,"stats":[0,27,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":3,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12609,"name":"Stocking the Shelves"}}]}, -{"id":39830,"name":"Fist of Subtlety","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[0,21,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":329,"weaponSpeed":2.7,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12661,"name":"Infiltrating Voltarus"}}]}, -{"id":39831,"name":"Petrified Ghoul Finger","icon":"inv_jewelry_ring_23","type":11,"stats":[17,0,0,0,0,0,28,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12652,"name":"Feedin' Da Goolz"}}]}, -{"id":39833,"name":"Supple Bloodbinder's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,35,37,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12707,"name":"Wooly Justice"}}]}, -{"id":39834,"name":"Embattled Jerkin","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,63,38,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12504,"name":"Argent Crusade, We Are Leaving!"}}]}, -{"id":39835,"name":"Supple Bloodbinder's Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,87,39,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12639,"name":"The Frozen Earth"}}]}, -{"id":39836,"name":"Supple Mantle of the Bloodletter","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,28,41,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12662,"name":"Bringing Down Heb'Jin"}}]}, -{"id":39837,"name":"Gloves of Swift Death","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,44,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12584,"name":"Pure Evil"}}]}, -{"id":39838,"name":"Supple Belt of the Bloodletter","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,43,0,0,0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12622,"name":"The Leaders at Jin'Alai"}}]}, -{"id":39839,"name":"Ritualistic Shoulderguards","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12674,"name":"Hell Hath a Fury"}}]}, -{"id":39840,"name":"Rescuer's Ripcord","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,33,33,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12740,"name":"Parachutes for the Argent Crusade"}}]}, -{"id":39841,"name":"Ancestral Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[47,0,30,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12674,"name":"Hell Hath a Fury"}}]}, -{"id":39842,"name":"Bloodletter's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,46,41,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12510,"name":"Precious Elemental Fluids"}}]}, -{"id":39843,"name":"Supple Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,19,30,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12516,"name":"Too Much of a Good Thing"}}]}, -{"id":39844,"name":"Ritualistic Shield","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12685,"name":"You Reap What You Sow"}}]}, -{"id":39845,"name":"Ancestral Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[25,0,63,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12685,"name":"You Reap What You Sow"}}]}, -{"id":39846,"name":"Bloodletter's Headgear","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,58,49,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12721,"name":"Rampage"}}]}, -{"id":39847,"name":"Ancestral War Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[44,0,40,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12721,"name":"Rampage"}}]}, -{"id":39848,"name":"Neckcharm of the Bloodletter","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,31,0,0,0,22,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12709,"name":"Hexed Caches"}}]}, -{"id":39849,"name":"Belt of Divine Ancestry","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,63,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12709,"name":"Hexed Caches"}}]}, -{"id":39850,"name":"Wristguards of Service","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,32,33,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12596,"name":"Pa'Troll"}}]}, -{"id":39851,"name":"Ribbed Helm of Servitude","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[63,36,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12596,"name":"Pa'Troll"}}]}, -{"id":39852,"name":"Victorious Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":1,"stats":[0,0,36,0,0,0,25,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.5,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12609,"name":"Stocking the Shelves"}}]}, -{"id":39853,"name":"Thorny Bough of the Light","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,58,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":282,"weaponDamageMax":424,"weaponSpeed":2.9,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12609,"name":"Stocking the Shelves"}}]}, -{"id":39854,"name":"Huntsman's Jerkin","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,58,49,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12610,"name":"Clipping Their Wings"}}]}, -{"id":39855,"name":"Gauntlets of the Gatherer","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[42,0,0,0,0,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12610,"name":"Clipping Their Wings"}}]}, -{"id":39856,"name":"Bloodletter's Pants","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,61,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12632,"name":"But First My Offspring"}}]}, -{"id":39857,"name":"Rescuer's Binding","icon":"inv_belt_33","type":8,"armorType":3,"stats":[0,42,36,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12512,"name":"Leave No One Behind"}}]}, -{"id":39858,"name":"Drape of the Bloodletter","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,20,19,0,0,0,0,68,68,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12647,"name":"An End to the Suffering"}}]}, -{"id":39859,"name":"Bloodletter's Skullcap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,53,62,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12674,"name":"Hell Hath a Fury"}}]}, -{"id":39860,"name":"Vindicator's Bracers of Sacrifice","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[35,0,0,0,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12512,"name":"Leave No One Behind"}}]}, -{"id":39861,"name":"Supple Bloodbinder's Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,0,53,40,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12685,"name":"You Reap What You Sow"}}]}, -{"id":39862,"name":"Supple Vest of the Bloodletter","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,42,92,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12721,"name":"Rampage"}}]}, -{"id":39863,"name":"Supple Vest of the Bloodbinder","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,79,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12709,"name":"Hexed Caches"}}]}, -{"id":39864,"name":"Belt of Service","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,30,45,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12596,"name":"Pa'Troll"}}]}, -{"id":39865,"name":"Knuckle of Victory","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[22,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":304,"weaponSpeed":2.5,"ilvl":158,"quality":2,"sources":[{"quest":{"id":12609,"name":"Stocking the Shelves"}}]}, -{"id":39866,"name":"Gauntlets of the Secret Agent","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12661,"name":"Infiltrating Voltarus"}}]}, -{"id":39867,"name":"Bat Fur Mitts","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,45,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12610,"name":"Clipping Their Wings"}}]}, -{"id":39868,"name":"Ravager's Skullcap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,53,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12512,"name":"Leave No One Behind"}}]}, -{"id":39869,"name":"Double-Agent's Wristwraps","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,29,36,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12661,"name":"Infiltrating Voltarus"}}]}, -{"id":39870,"name":"Drape of Duplicity","icon":"inv_misc_cape_15","type":4,"stats":[0,0,27,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12661,"name":"Infiltrating Voltarus"}}]}, -{"id":39871,"name":"Subtle Boots of the Infiltrator","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,31,59,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12669,"name":"So Far, So Bad"}}]}, -{"id":39872,"name":"Helm of Subtle Whispers","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,83,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12669,"name":"So Far, So Bad"}}]}, -{"id":39873,"name":"Skins of Subterfuge","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,61,56,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12676,"name":"Sabotage"}}]}, -{"id":39874,"name":"Infiltrator's Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[24,0,48,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12669,"name":"So Far, So Bad"}}]}, -{"id":39875,"name":"Shoulderguards of Subterfuge","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,43,0,0,0,24,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12676,"name":"Sabotage"}}]}, -{"id":39876,"name":"Aged Abomination Tripe","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,0,45,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12652,"name":"Feedin' Da Goolz"}}]}, -{"id":39877,"name":"Belt of the Betrayer","icon":"inv_belt_27","type":8,"armorType":4,"stats":[47,0,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12676,"name":"Sabotage"}}]}, -{"id":39880,"name":"Redigested Mail Scraps","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,27,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12652,"name":"Feedin' Da Goolz"}}]}, -{"id":39881,"name":"Mantle of Reanimation","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,45,46,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{}}]}, -{"id":39882,"name":"Carved Bone Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[0,0,57,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12652,"name":"Feedin' Da Goolz"}}]}, -{"id":39886,"name":"Greenhealer's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,69,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12903,"name":"That's What Friends Are For..."}}]}, -{"id":39887,"name":"Geist Stalker Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,72,51,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39888,"name":"Scourgebane Pauldrons","icon":"inv_shoulder_69","type":3,"armorType":4,"stats":[43,0,60,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":39889,"name":"Horn of Argent Fury","icon":"inv_misc_horn_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12903,"name":"That's What Friends Are For..."}}]}, -{"id":39890,"name":"Purifier's Pantaloons","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,57,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12903,"name":"That's What Friends Are For..."}}]}, -{"id":39891,"name":"Brazen Offender's Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[29,0,46,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12632,"name":"But First My Offspring"}}]}, -{"id":39893,"name":"Ancestral Chestplates","icon":"inv_chest_chain_14","type":5,"armorType":4,"stats":[0,0,50,63,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12647,"name":"An End to the Suffering"}}]}, -{"id":39894,"name":"Darkcloth Shoulders","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-81,-79,-73,-69,-39,-30,-15,-9],"ilvl":25,"quality":3,"sources":[{"quest":{"id":12798,"name":"Swords Deck"}}]}, -{"id":39895,"name":"Cloaked Shoulderpads","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-78,-71,-20,-18,-14],"ilvl":25,"quality":3,"sources":[{"quest":{"id":12798,"name":"Swords Deck"}}]}, -{"id":39897,"name":"Azure Shoulderguards","icon":"inv_shoulder_25","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-72,-68,-20,-14],"ilvl":25,"quality":3,"sources":[{"quest":{"id":12798,"name":"Swords Deck"}}]}, -{"id":39987,"name":"Tuskarr Fishing Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":2,"ilvl":75,"quality":1}, -{"id":39995,"name":"Tuskarr Javelin","icon":"inv_spear_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":1.5,"ilvl":75,"quality":1}, -{"id":40004,"name":"Forsaken Greatsword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":155,"weaponSpeed":2.4,"ilvl":75,"quality":1}, -{"id":40005,"name":"Forsaken Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":64,"weaponSpeed":1.3,"ilvl":75,"quality":1}, -{"id":40006,"name":"Forsaken Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":74,"weaponSpeed":1.5,"ilvl":75,"quality":1}, -{"id":40007,"name":"Forsaken Throwing Knife","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":1.5,"ilvl":75,"quality":1}, -{"id":40018,"name":"Wand of Onyx","icon":"inv_wand_10","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.3,"ilvl":75,"quality":1}, -{"id":40019,"name":"Wand of Amber","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.3,"ilvl":75,"quality":1}, -{"id":40020,"name":"Wand of Jade","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.3,"ilvl":75,"quality":1}, -{"id":40021,"name":"Wand of Crystal","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":111,"weaponSpeed":1.3,"ilvl":75,"quality":1}, -{"id":40060,"name":"Distorted Limbs","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,143,101,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":40061,"name":"Quivering Tunic","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,143,101,66,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":40062,"name":"Digested Silken Robes","icon":"inv_chest_cloth_44","type":5,"armorType":1,"stats":[0,0,134,101,63,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":40063,"name":"Mantle of Shattered Kinship","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,0,107,75,51,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}]}, -{"id":40064,"name":"Thunderstorm Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,90,56,0,28,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40065,"name":"Fool's Trial","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,38,104,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40069,"name":"Heritage","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[43,0,84,0,0,28,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40071,"name":"Chains of Adoration","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,80,56,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40074,"name":"Strong-Handed Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,56,82,0,0,28,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40075,"name":"Ruthlessness","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[57,0,61,0,0,0,54,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40080,"name":"Lost Jewel","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,77,56,37,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40107,"name":"Sand-Worn Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[56,0,84,0,0,0,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40108,"name":"Seized Beauty","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,80,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}]}, -{"id":40184,"name":"Crippled Treads","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,75,95,0,0,0,74,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40185,"name":"Shoulderguards of Opportunity","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[69,0,82,0,0,0,65,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40186,"name":"Thrusting Bands","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,56,86,0,0,36,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40187,"name":"Poignant Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,107,67,0,0,35,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40188,"name":"Gauntlets of the Disobedient","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[74,0,112,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40189,"name":"Angry Dread","icon":"inv_mace_73","type":13,"weaponType":4,"handType":2,"stats":[0,31,80,0,0,25,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":2.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40190,"name":"Spinning Fate","icon":"inv_throwingknife_08","type":14,"rangedWeaponType":5,"stats":[0,16,53,0,0,32,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":293,"weaponDamageMax":440,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40191,"name":"Libram of Radiance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[32,0,47,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40192,"name":"Accursed Spine","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,78,56,32,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40193,"name":"Tunic of Masked Suffering","icon":"inv_chest_samurai","type":5,"armorType":3,"stats":[0,100,128,0,0,0,100,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40194,"name":"Blanketing Robes of Snow","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,144,113,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40196,"name":"Legguards of the Undisturbed","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,143,101,66,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40197,"name":"Gloves of the Fallen Wizard","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,75,0,25,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40198,"name":"Bands of Impurity","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,75,48,37,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40200,"name":"Belt of Potent Chanting","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,107,75,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}]}, -{"id":40201,"name":"Leggings of Colossal Strides","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,100,119,0,0,0,89,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40203,"name":"Breastplate of Tormented Rage","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[84,0,150,0,0,36,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40204,"name":"Legguards of the Apostle","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,143,101,0,0,58,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40205,"name":"Stalk-Skin Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,64,123,0,0,0,62,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40206,"name":"Iron-Spring Jumpers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[76,0,85,0,0,73,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40207,"name":"Sigil of Awareness","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[32,0,47,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40208,"name":"Cryptfiend's Bite","icon":"inv_weapon_halberd_26","type":13,"weaponType":6,"handType":4,"stats":[0,51,194,0,0,0,58,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40209,"name":"Bindings of the Decrepit","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40210,"name":"Chestguard of Bitter Charms","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,132,101,66,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40218,"name":"CRobinson Plate Helm","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40219,"name":"CRobinson Plate Shoulders","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40220,"name":"CRobinson Plate Chest","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40221,"name":"CRobinson Plate Belt","icon":"inv_belt_07","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40222,"name":"CRobinson Plate Pants","icon":"inv_pants_cloth_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40223,"name":"CRobinson Plate Boots","icon":"inv_boots_chain_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40224,"name":"CRobinson Plate Gloves","icon":"inv_gauntlets_12","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40225,"name":"CRobinson Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40226,"name":"CRobinson Leather Shoulders","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40227,"name":"CRobinson Leather Chest","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40228,"name":"CRobinson Leather Belt","icon":"inv_belt_07","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40229,"name":"CRobinson Leather Pants","icon":"inv_pants_cloth_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40230,"name":"CRobinson Leather Boots","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40231,"name":"CRobinson Leather Gloves","icon":"inv_gauntlets_12","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":40233,"name":"The Undeath Carrier","icon":"inv_staff_86","type":13,"weaponType":8,"handType":4,"stats":[0,100,199,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":587,"weaponSpeed":2.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40234,"name":"Heigan's Putrid Vestments","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,161,85,0,49,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40235,"name":"Helm of Pilgrimage","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,143,101,66,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40236,"name":"Serene Echoes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,107,75,50,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40237,"name":"Eruption-Scarred Boots","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,119,67,0,0,42,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40238,"name":"Gloves of the Dancing Bear","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,105,65,50,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}]}, -{"id":40239,"name":"The Hand of Nerub","icon":"inv_weapon_hand_05","type":13,"weaponType":3,"handType":3,"stats":[0,33,80,0,0,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40240,"name":"Greaves of Turbulence","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[100,0,150,0,0,0,0,0,0,66,67,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40241,"name":"Girdle of Unity","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,105,75,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40242,"name":"Grotesque Handgrips","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,66,86,0,0,0,65,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40243,"name":"Footwraps of Vile Deceit","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,67,120,0,0,0,0,49,30,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40244,"name":"The Impossible Dream","icon":"inv_mace_84","type":13,"weaponType":4,"handType":1,"stats":[0,0,77,0,31,0,42,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40245,"name":"Fading Glow","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,46,32,22,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":402,"weaponDamageMax":748,"weaponSpeed":2,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40246,"name":"Boots of Impetuous Ideals","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,112,75,0,37,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40247,"name":"Cowl of Innocent Delight","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,168,101,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40249,"name":"Vest of Vitality","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,144,85,50,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}]}, -{"id":40250,"name":"Aged Winter Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,38,105,0,0,0,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40251,"name":"Shroud of Luminosity","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,90,56,0,0,38,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40252,"name":"Cloak of the Shadowed Sun","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[56,0,84,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,428,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40253,"name":"Shawl of the Old Maid","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,80,56,38,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40254,"name":"Cloak of Averted Crisis","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,0,82,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40255,"name":"Dying Curse","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40256,"name":"Grim Toll","icon":"inv_trinket_naxxramas04","type":12,"stats":[0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40257,"name":"Defender's Code","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40258,"name":"Forethought Talisman","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40259,"name":"Waistguard of Divine Grace","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,112,75,0,0,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40260,"name":"Belt of the Tortured","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,75,116,0,0,50,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40261,"name":"Crude Discolored Battlegrips","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[75,0,82,0,0,74,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40262,"name":"Gloves of Calculated Risk","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,75,112,0,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40263,"name":"Fleshless Girdle","icon":"inv_belt_34","type":8,"armorType":4,"stats":[75,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40264,"name":"Split Greathammer","icon":"inv_mace_78","type":13,"weaponType":4,"handType":2,"stats":[0,43,69,0,0,0,29,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.6,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40265,"name":"Arrowsong","icon":"inv_weapon_bow_40","type":14,"rangedWeaponType":1,"stats":[0,31,51,0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":399,"weaponDamageMax":741,"weaponSpeed":2.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40266,"name":"Hero's Surrender","icon":"inv_shield_56","type":13,"weaponType":7,"handType":3,"stats":[56,0,84,0,0,0,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40267,"name":"Totem of Hex","icon":"spell_nature_diseasecleansingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40268,"name":"Libram of Tolerance","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40269,"name":"Boots of Persuasion","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,113,67,55,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40270,"name":"Boots of Septic Wounds","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,108,67,49,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40271,"name":"Sash of Solitude","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,108,67,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40272,"name":"Girdle of the Gambit","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,119,75,50,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40273,"name":"Surplus Limb","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,84,56,0,32,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}]}, -{"id":40274,"name":"Bracers of Liberation","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,84,56,0,0,41,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40275,"name":"Depraved Linked Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,74,86,0,0,0,66,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40277,"name":"Tunic of Indulgence","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,85,151,0,0,42,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40278,"name":"Girdle of Chivalry","icon":"inv_belt_34","type":8,"armorType":4,"stats":[70,0,88,0,0,46,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40279,"name":"Chestguard of the Exhausted","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,39,87,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40280,"name":"Origin of Nightmares","icon":"inv_staff_90","type":13,"weaponType":8,"handType":4,"stats":[0,100,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":587,"weaponSpeed":2.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40281,"name":"Twilight Mist","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,25,83,0,0,21,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40282,"name":"Slime Stream Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,48,84,0,0,28,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40283,"name":"Fallout Impervious Tunic","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,137,85,0,0,61,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40284,"name":"Plague Igniter","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,40,32,20,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":362,"weaponDamageMax":674,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40285,"name":"Desecrated Past","icon":"inv_pants_leather_22","type":9,"armorType":2,"stats":[0,0,150,101,77,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40286,"name":"Mantle of the Corrupted","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,113,75,0,37,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40287,"name":"Cowl of Vanity","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,139,85,63,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40288,"name":"Spaulders of Incoherence","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,0,105,66,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40289,"name":"Sympathetic Amice","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,120,75,38,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40290,"name":"Gaze of the Punishing Construct","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,83,53,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12546,"name":"Reclamation"}}]}, -{"id":40291,"name":"Helm of the Avenging Protector","icon":"inv_helmet128","type":1,"armorType":2,"stats":[0,53,95,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12546,"name":"Reclamation"}}]}, -{"id":40292,"name":"Headguard of Vast Destruction","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,46,40,0,0,15,45,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12546,"name":"Reclamation"}}]}, -{"id":40293,"name":"Helm of Towering Rage","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[50,0,69,0,0,0,46,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12546,"name":"Reclamation"}}]}, -{"id":40294,"name":"Riveted Abomination Leggings","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[101,0,108,0,0,59,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40295,"name":"Greathelm of the Titan Protectorate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[50,0,80,0,0,0,0,0,34,40,0,0,0,0,0,0,0,0,0,0,0,0,1517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12546,"name":"Reclamation"}}]}, -{"id":40296,"name":"Cover of Silence","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,100,147,0,0,50,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40297,"name":"Sabatons of Endurance","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[57,0,111,0,0,0,0,0,38,74,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40298,"name":"Faceguard of the Succumbed","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,137,85,0,0,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40299,"name":"Pauldrons of the Abandoned","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,75,90,0,0,0,72,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40300,"name":"Spire of Sunset","icon":"inv_staff_82","type":13,"weaponType":8,"handType":4,"stats":[0,0,179,0,58,0,0,99,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":3.2,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40301,"name":"Cincture of Polarity","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,107,75,0,43,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40302,"name":"Benefactor's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,119,75,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40303,"name":"Wraps of the Persecuted","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,107,75,50,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40304,"name":"Headpiece of Fungal Bloom","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,162,85,50,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}]}, -{"id":40305,"name":"Spaulders of Egotism","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,75,113,0,0,0,57,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40306,"name":"Bracers of the Unholy Knight","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[48,0,72,0,0,0,0,0,0,46,26,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40315,"name":"Shoulderpads of Secret Arts","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,67,112,0,0,35,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40316,"name":"Gauntlets of Guiding Touch","icon":"inv_gauntlets_15","type":7,"armorType":4,"stats":[0,0,107,67,42,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40317,"name":"Girdle of Razuvious","icon":"inv_belt_34","type":8,"armorType":4,"stats":[75,0,85,0,0,0,74,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40318,"name":"Legplates of Double Strikes","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[84,0,120,0,0,0,64,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40319,"name":"Chestpiece of Suspicion","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,100,160,0,0,0,50,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40320,"name":"Faithful Steel Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,111,75,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40321,"name":"Idol of the Shooting Star","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40322,"name":"Totem of Dueling","icon":"spell_nature_groundingtotem","type":14,"rangedWeaponType":4,"stats":[0,32,47,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40323,"name":"Esteemed Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,74,48,35,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40324,"name":"Bands of Mutual Respect","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,84,48,0,0,43,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40325,"name":"Bindings of the Expansive Mind","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,84,56,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40326,"name":"Boots of Forlorn Wishes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,95,67,66,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40327,"name":"Girdle of Recuperation","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,0,113,75,0,0,57,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}]}, -{"id":40328,"name":"Helm of Vital Protection","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[68,0,126,0,0,0,0,0,36,0,86,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40329,"name":"Hood of the Exodus","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,84,162,0,0,0,0,50,35,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40330,"name":"Bracers of Unrelenting Attack","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[50,0,48,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40331,"name":"Leggings of Failed Escape","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,84,151,0,0,43,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40332,"name":"Abetment Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,82,48,30,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40333,"name":"Leggings of Fleeting Moments","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,100,149,0,0,0,77,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40334,"name":"Burdened Shoulderplates","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[75,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40335,"name":"Touch of Horror","icon":"inv_mace_80","type":14,"rangedWeaponType":6,"stats":[0,0,36,32,30,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":402,"weaponDamageMax":748,"weaponSpeed":2,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40336,"name":"Life and Death","icon":"inv_sword_121","type":13,"weaponType":9,"handType":1,"stats":[0,0,81,0,0,0,42,29,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40337,"name":"Libram of Resurgence","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[32,0,47,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40338,"name":"Bindings of Yearning","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,84,56,28,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40339,"name":"Gothik's Cowl","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,137,85,0,0,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40340,"name":"Helm of Unleashed Energy","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,146,85,62,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40341,"name":"Shackled Cinch","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,108,75,38,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40342,"name":"Idol of Awakening","icon":"inv_misc_thegoldencheep","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}]}, -{"id":40343,"name":"Armageddon","icon":"inv_sword_104","type":13,"weaponType":9,"handType":4,"stats":[101,0,108,0,0,0,58,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":831,"weaponSpeed":3.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40344,"name":"Helm of the Grave","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,85,117,0,0,0,75,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40345,"name":"Broken Promise","icon":"inv_sword_115","type":13,"weaponType":9,"handType":2,"stats":[29,0,64,0,0,16,0,0,20,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":2.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40346,"name":"Final Voyage","icon":"inv_weapon_crossbow_25","type":14,"rangedWeaponType":2,"stats":[0,18,60,0,0,0,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":684,"weaponSpeed":2.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40347,"name":"Zeliek's Gauntlets","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[67,0,79,0,0,0,0,67,43,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40348,"name":"Damnation","icon":"inv_staff_67","type":13,"weaponType":8,"handType":4,"stats":[0,0,180,0,85,0,91,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":342,"weaponDamageMax":513,"weaponSpeed":2.1,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40349,"name":"Gloves of Peaceful Death","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,105,73,57,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40350,"name":"Urn of Lost Memories","icon":"inv_offhand_naxxramas_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,68,56,42,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40351,"name":"Mantle of the Fatigued Sage","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,103,67,0,35,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}]}, -{"id":40352,"name":"Leggings of Voracious Shadows","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,146,85,0,0,50,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}]}, -{"id":40353,"name":"Polished Protodrake Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,31,26,0,0,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":3,"sources":[{"quest":{"id":12614,"name":"Post-partum Aggression"}}]}, -{"id":40354,"name":"Monster Slayer's Kit","icon":"inv_misc_bag_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"quest":{"id":12616,"name":"Chamber of Secrets"}}]}, -{"id":40362,"name":"Gloves of Fast Reactions","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,66,110,0,0,0,38,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40363,"name":"Bone-Inlaid Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,154,85,56,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40365,"name":"Breastplate of Frozen Pain","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[85,0,150,0,0,43,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40366,"name":"Platehelm of the Great Wyrm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[100,0,151,0,0,0,0,0,0,65,67,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40367,"name":"Boots of the Great Construct","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,67,98,0,0,0,61,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40368,"name":"Murder","icon":"inv_weapon_shortblade_84","type":13,"weaponType":2,"handType":2,"stats":[0,25,83,0,0,21,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40369,"name":"Icy Blast Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,56,70,0,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40370,"name":"Gatekeeper","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[43,0,84,0,0,28,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40371,"name":"Bandit's Insignia","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40372,"name":"Rune of Repulsion","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40373,"name":"Extract of Necromantic Power","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40374,"name":"Cosmic Lights","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,79,56,0,0,37,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40375,"name":"Ring of Decaying Beauty","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,81,56,40,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40376,"name":"Legwraps of the Defeated Dragon","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,152,85,0,50,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40377,"name":"Noble Birthright Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,105,67,46,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40378,"name":"Ceaseless Pity","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,78,56,32,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40379,"name":"Legguards of the Boneyard","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,137,85,58,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40380,"name":"Gloves of Grandeur","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,123,75,0,38,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40381,"name":"Sympathy","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,143,85,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40382,"name":"Soul of the Dead","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}]}, -{"id":40383,"name":"Calamity's Grasp","icon":"inv_weapon_hand_20","type":13,"weaponType":3,"handType":1,"stats":[0,36,87,0,0,0,37,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":356,"weaponDamageMax":535,"weaponSpeed":2.6,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40384,"name":"Betrayer of Humanity","icon":"inv_axe_99","type":13,"weaponType":1,"handType":4,"stats":[0,66,218,0,0,0,87,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":606,"weaponDamageMax":910,"weaponSpeed":3.4,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40385,"name":"Envoy of Mortality","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,36,63,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":452,"weaponDamageMax":841,"weaponSpeed":2.9,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40386,"name":"Sinister Revenge","icon":"inv_weapon_shortblade_92","type":13,"weaponType":2,"handType":2,"stats":[0,36,87,0,0,37,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":246,"weaponDamageMax":370,"weaponSpeed":1.8,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40387,"name":"Boundless Ambition","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[49,0,94,0,0,0,0,0,31,46,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40388,"name":"Journey's End","icon":"inv_staff_89","type":13,"weaponType":8,"handType":4,"stats":[0,87,214,0,0,0,57,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":428,"weaponDamageMax":642,"weaponSpeed":2.4,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40395,"name":"Torch of Holy Fire","icon":"inv_mace_82","type":13,"weaponType":4,"handType":1,"stats":[0,0,82,0,38,0,0,48,0,0,0,0,0,0,651,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":216,"weaponDamageMax":401,"weaponSpeed":1.8,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40396,"name":"The Turning Tide","icon":"inv_sword_130","type":13,"weaponType":9,"handType":1,"stats":[0,0,83,0,0,0,37,48,0,0,0,0,0,0,654,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":216,"weaponDamageMax":401,"weaponSpeed":1.8,"ilvl":226,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40398,"name":"Leggings of Mortal Arrogance","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,159,98,71,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40399,"name":"Signet of Manifested Pain","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,90,63,0,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40400,"name":"Wall of Terror","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[63,0,94,0,0,0,0,0,0,50,31,0,0,0,0,0,0,0,0,0,0,0,7046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40401,"name":"Voice of Reason","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[0,0,92,63,0,0,46,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40402,"name":"Last Laugh","icon":"inv_axe_61","type":13,"weaponType":1,"handType":2,"stats":[37,0,73,0,0,24,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.6,"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40403,"name":"Drape of the Deadly Foe","icon":"inv_misc_cape_naxxramas_03","type":4,"stats":[0,42,118,0,0,0,49,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40405,"name":"Cape of the Unworthy Wizard","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,82,63,49,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}]}, -{"id":40406,"name":"Inevitable Defeat","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":4,"stats":[100,80,120,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":831,"weaponSpeed":3.4,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40407,"name":"Silent Crusader","icon":"inv_sword_120","type":13,"weaponType":9,"handType":2,"stats":[0,21,85,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":2.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40408,"name":"Haunting Call","icon":"inv_weapon_shortblade_82","type":13,"weaponType":2,"handType":1,"stats":[0,0,76,0,0,45,23,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40409,"name":"Boots of the Escaped Captive","icon":"inv_boots_chain_01","type":10,"armorType":2,"stats":[0,0,99,75,38,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40410,"name":"Shadow of the Ghoul","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[56,0,84,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40412,"name":"Ousted Bead Necklace","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,84,43,56,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40414,"name":"Shoulderguards of the Undaunted","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[75,0,85,0,0,75,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}]}, -{"id":40415,"name":"Valorous Frostfire Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,112,59,0,38,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40416,"name":"Valorous Frostfire Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,126,84,66,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40417,"name":"Valorous Frostfire Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,152,85,0,43,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40418,"name":"Valorous Frostfire Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,141,85,66,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40419,"name":"Valorous Frostfire Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,107,67,0,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40420,"name":"Valorous Plagueheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,113,59,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40421,"name":"Valorous Plagueheart Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,141,85,50,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40422,"name":"Valorous Plagueheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,146,85,0,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40423,"name":"Valorous Plagueheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,150,85,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40424,"name":"Valorous Plagueheart Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,111,67,0,35,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40426,"name":"Signet of the Accord","icon":"inv_jewelry_ring_70","type":11,"stats":[36,0,73,0,0,0,0,0,29,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":40427,"name":"Circle of Arcane Streams","icon":"spell_arcane_blast","type":2,"stats":[0,0,78,45,0,31,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}]}, -{"id":40428,"name":"Titan's Outlook","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[103,0,99,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}]}, -{"id":40429,"name":"Crimson Steel","icon":"inv_weapon_hand_18","type":13,"weaponType":3,"handType":1,"stats":[0,19,66,0,0,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}]}, -{"id":40430,"name":"Majestic Dragon Figurine","icon":"inv_misc_head_dragon_green","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}]}, -{"id":40431,"name":"Fury of the Five Flights","icon":"spell_shadow_rainoffire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40432,"name":"Illustration of the Dragon Soul","icon":"inv_offhand_hyjal_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40433,"name":"Wyrmrest Band","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,76,57,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40437,"name":"Concealment Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,66,119,0,0,0,45,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40438,"name":"Council Chamber Epaulets","icon":"inv_shoulder_80","type":3,"armorType":3,"stats":[0,0,106,77,32,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40439,"name":"Mantle of the Eternal Sentinel","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,97,78,0,0,61,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40440,"name":"Brutal Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[45,0,76,0,0,18,45,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Brutal Gladiator's Dreadplate","setId":760}, -{"id":40441,"name":"Brutal Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[42,0,59,0,0,0,37,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Brutal Gladiator's Dreadplate","setId":760}, -{"id":40442,"name":"Brutal Gladiator's Dreadplate Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[45,0,68,0,0,18,41,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Brutal Gladiator's Dreadplate","setId":760}, -{"id":40443,"name":"Brutal Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[57,0,77,0,0,18,53,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Brutal Gladiator's Dreadplate","setId":760}, -{"id":40444,"name":"Brutal Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[38,0,64,0,0,0,35,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Brutal Gladiator's Dreadplate","setId":760}, -{"id":40445,"name":"Valorous Gloves of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,67,41,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40446,"name":"Dragon Brood Legguards","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[77,0,152,0,0,50,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40447,"name":"Valorous Crown of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,125,85,67,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40448,"name":"Valorous Leggings of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,143,85,67,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40449,"name":"Valorous Robe of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,132,85,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40450,"name":"Valorous Shoulderpads of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,105,67,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40451,"name":"Hyaline Helm of the Sniper","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,86,151,0,0,39,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40453,"name":"Chestplate of the Great Aspects","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,133,105,0,0,27,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40454,"name":"Valorous Handwraps of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,67,0,0,56,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40455,"name":"Staff of Restraint","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,0,185,0,84,0,68,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":521,"weaponDamageMax":782,"weaponSpeed":3.2,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}]}, -{"id":40456,"name":"Valorous Circlet of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,128,84,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40457,"name":"Valorous Pants of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,143,85,58,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40458,"name":"Valorous Raiments of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,143,85,0,50,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40459,"name":"Valorous Mantle of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,107,67,0,41,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":40460,"name":"Valorous Dreamwalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,105,67,55,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40461,"name":"Valorous Dreamwalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,143,85,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40462,"name":"Valorous Dreamwalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,137,85,77,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40463,"name":"Valorous Dreamwalker Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,137,85,77,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40465,"name":"Valorous Dreamwalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,103,67,57,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40466,"name":"Valorous Dreamwalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,107,67,35,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40467,"name":"Valorous Dreamwalker Cover","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,137,85,0,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40468,"name":"Valorous Dreamwalker Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,143,85,59,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40469,"name":"Valorous Dreamwalker Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,135,85,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40470,"name":"Valorous Dreamwalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,105,67,0,35,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40471,"name":"Valorous Dreamwalker Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,85,163,0,0,0,57,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40472,"name":"Valorous Dreamwalker Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,59,120,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40473,"name":"Valorous Dreamwalker Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,85,151,0,0,0,51,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40474,"name":"Surge Needle Ring","icon":"inv_jewelry_ring_78","type":11,"stats":[0,41,95,0,0,32,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":40475,"name":"Barricade of Eternity","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[43,0,84,0,0,0,0,0,28,0,55,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}]}, -{"id":40476,"name":"Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":13408,"name":"Hellfire Fortifications"}}],"factionRestriction":1}, -{"id":40477,"name":"Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"unique":true,"sources":[{"quest":{"id":13409,"name":"Hellfire Fortifications"}}],"factionRestriction":2}, -{"id":40483,"name":"Insignia of the Scourge","icon":"inv_jewelry_talisman_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"unique":true,"classAllowlist":[10],"sources":[{"quest":{"id":12733,"name":"Death's Challenge"}}]}, -{"id":40486,"name":"Necklace of the Glittering Chamber","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,77,59,38,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":40488,"name":"Ice Spire Scepter","icon":"inv_mace_77","type":13,"weaponType":4,"handType":1,"stats":[0,0,81,0,25,0,0,38,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":40489,"name":"Greatstaff of the Nexus","icon":"inv_staff_83","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,95,0,104,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":342,"weaponDamageMax":513,"weaponSpeed":2.1,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}]}, -{"id":40490,"name":"Necromantic Wristguards","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,43,52,0,0,0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":40491,"name":"Hailstorm","icon":"inv_sword_122","type":13,"weaponType":9,"handType":2,"stats":[0,31,78,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}]}, -{"id":40492,"name":"Argent War Horn","icon":"inv_misc_horn_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":40493,"name":"Valorous Dreamwalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,85,163,0,0,0,55,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40494,"name":"Valorous Dreamwalker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,67,120,0,0,0,49,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40495,"name":"Valorous Bonescythe Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,84,152,0,0,0,44,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40496,"name":"Valorous Bonescythe Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,66,111,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40497,"name":"Black Ice","icon":"inv_weapon_halberd17","type":13,"weaponType":6,"handType":4,"stats":[0,108,141,0,0,72,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":570,"weaponDamageMax":856,"weaponSpeed":3.5,"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":40499,"name":"Valorous Bonescythe Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,85,144,0,0,0,58,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40500,"name":"Valorous Bonescythe Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,92,153,0,0,42,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40502,"name":"Valorous Bonescythe Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,55,111,0,0,0,58,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":40503,"name":"Valorous Cryptstalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,84,151,0,0,51,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40504,"name":"Valorous Cryptstalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,67,93,0,0,0,63,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40505,"name":"Valorous Cryptstalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,84,112,0,0,0,90,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40506,"name":"Valorous Cryptstalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,85,133,0,0,0,78,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40507,"name":"Valorous Cryptstalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,66,91,0,0,0,66,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40508,"name":"Valorous Earthshatter Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,143,85,58,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40509,"name":"Valorous Earthshatter Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,110,63,46,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40510,"name":"Valorous Earthshatter Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,138,85,50,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40511,"name":"Focusing Energy Epaulets","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[0,0,102,78,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":40512,"name":"Valorous Earthshatter Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,85,40,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40513,"name":"Valorous Earthshatter Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,105,67,40,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40514,"name":"Valorous Earthshatter Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,143,85,0,0,60,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40515,"name":"Valorous Earthshatter Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,108,66,0,44,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40516,"name":"Valorous Earthshatter Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,137,85,0,0,51,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40517,"name":"Valorous Earthshatter Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,84,0,42,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40518,"name":"Valorous Earthshatter Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,110,67,0,37,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40519,"name":"Footsteps of Malygos","icon":"inv_boots_chain_13","type":10,"armorType":2,"stats":[0,0,106,77,0,0,41,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":40520,"name":"Valorous Earthshatter Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,67,93,0,0,0,69,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40521,"name":"Valorous Earthshatter Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,76,151,0,0,51,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40522,"name":"Valorous Earthshatter War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,84,151,0,0,51,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40523,"name":"Valorous Earthshatter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,84,151,0,0,64,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40524,"name":"Valorous Earthshatter Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,67,112,0,0,0,49,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":40525,"name":"Valorous Dreadnaught Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,100,0,0,66,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40526,"name":"Gown of the Spell-Weaver","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,143,94,0,72,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":40527,"name":"Valorous Dreadnaught Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,42,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40528,"name":"Valorous Dreadnaught Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,102,0,0,0,92,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40529,"name":"Valorous Dreadnaught Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,84,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40530,"name":"Valorous Dreadnaught Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,82,0,0,0,58,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40531,"name":"Mark of Norgannon","icon":"ability_hunter_readiness","type":12,"stats":[0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40532,"name":"Living Ice Crystals","icon":"inv_datacrystal09","type":12,"stats":[0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40539,"name":"Chestguard of the Recluse","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,116,143,0,0,0,0,63,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40541,"name":"Frosted Adroit Handguards","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,87,118,0,0,58,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40543,"name":"Blue Aspect Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,101,125,0,0,0,87,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40544,"name":"Valorous Dreadnaught Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,127,0,0,0,0,0,0,78,45,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40545,"name":"Valorous Dreadnaught Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,100,0,0,0,0,0,34,0,70,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40546,"name":"Valorous Dreadnaught Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,35,0,0,0,58,51,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40547,"name":"Valorous Dreadnaught Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,72,45,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40548,"name":"Valorous Dreadnaught Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,100,0,0,0,0,0,0,65,29,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40549,"name":"Boots of the Renewed Flight","icon":"inv_boots_leather_02","type":10,"armorType":3,"stats":[0,88,95,0,0,0,83,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40550,"name":"Valorous Scourgeborne Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[85,0,102,0,0,0,67,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40552,"name":"Valorous Scourgeborne Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,39,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40553,"name":"Electrified Blade","icon":"inv_sword_22","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":2.9,"ilvl":200,"quality":4,"unique":true}, -{"id":40554,"name":"Valorous Scourgeborne Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,100,0,0,34,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40555,"name":"Mantle of Dissemination","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,126,84,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40556,"name":"Valorous Scourgeborne Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,84,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40557,"name":"Valorous Scourgeborne Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,82,0,0,43,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40558,"name":"Arcanic Tramplers","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,125,85,62,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40559,"name":"Valorous Scourgeborne Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,127,0,0,0,0,0,0,74,53,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40560,"name":"Leggings of the Wanton Spellcaster","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,158,113,0,82,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40561,"name":"Leash of Heedless Magic","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,117,88,48,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40562,"name":"Hood of Rationality","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,143,103,81,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40563,"name":"Valorous Scourgeborne Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40564,"name":"Winter Spectacle Gloves","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,123,85,62,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40565,"name":"Valorous Scourgeborne Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,0,0,0,35,0,82,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40566,"name":"Unravelling Strands of Sanity","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,121,84,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40567,"name":"Valorous Scourgeborne Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[80,0,127,0,0,35,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40568,"name":"Valorous Scourgeborne Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,100,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40569,"name":"Valorous Redemption Tunic","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,143,85,50,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40570,"name":"Valorous Redemption Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,105,67,0,0,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40571,"name":"Valorous Redemption Headpiece","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[0,0,143,85,50,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40572,"name":"Valorous Redemption Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,143,85,0,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40573,"name":"Valorous Redemption Spaulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,105,67,0,0,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40574,"name":"Valorous Redemption Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[85,0,115,0,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40575,"name":"Valorous Redemption Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,0,50,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40576,"name":"Valorous Redemption Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,67,0,0,40,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40577,"name":"Valorous Redemption Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,66,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40578,"name":"Valorous Redemption Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,79,0,0,43,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40579,"name":"Valorous Redemption Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40580,"name":"Valorous Redemption Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,100,0,0,37,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40581,"name":"Valorous Redemption Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,0,0,0,35,66,51,0,0,0,0,0,0,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40583,"name":"Valorous Redemption Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40584,"name":"Valorous Redemption Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[68,0,100,0,0,0,0,0,0,58,39,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"sources":[{"soldBy":{"npcId":28997,"npcName":"Griselda Hunderland","zoneId":4395}}]}, -{"id":40585,"name":"Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,75,50,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":40586,"name":"Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,33,95,0,0,0,34,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":40588,"name":"Tunic of the Artifact Guardian","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,153,117,58,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40589,"name":"Legplates of Sovereignty","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[82,0,171,0,0,0,0,0,66,0,107,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40590,"name":"Elevated Lair Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,119,85,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40591,"name":"Melancholy Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[77,0,107,0,0,0,54,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40592,"name":"Boots of Healing Energies","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,118,84,66,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40593,"name":"Argent Tome","icon":"inv_misc_book_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":40594,"name":"Spaulders of Catatonia","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,125,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}]}, -{"id":40601,"name":"Argent Dawn Banner","icon":"inv_bannerpvp_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3}, -{"id":40602,"name":"Robes of Mutation","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,143,85,71,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}]}, -{"id":40668,"name":"Cobalt Triangle Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[22,0,33,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,3282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54550}},{"crafted":{"profession":2,"spellId":54550}}]}, -{"id":40669,"name":"Tempered Saronite Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[24,0,49,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54551}},{"crafted":{"profession":2,"spellId":54551}}]}, -{"id":40670,"name":"Saronite Defender","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[17,0,61,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54557}},{"crafted":{"profession":2,"spellId":54557}}]}, -{"id":40671,"name":"Tempered Saronite Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[42,0,69,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54552}},{"crafted":{"profession":2,"spellId":54552}}]}, -{"id":40672,"name":"Tempered Saronite Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[49,0,90,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1957,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54553}},{"crafted":{"profession":2,"spellId":54553}}]}, -{"id":40673,"name":"Tempered Saronite Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[46,0,52,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54555}},{"crafted":{"profession":2,"spellId":54555}}]}, -{"id":40674,"name":"Tempered Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[43,0,114,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54554}},{"crafted":{"profession":2,"spellId":54554}}]}, -{"id":40675,"name":"Tempered Saronite Shoulders","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[41,0,84,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54556}},{"crafted":{"profession":2,"spellId":54556}}]}, -{"id":40678,"name":"Pendant of the Outcast Hero","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,45,95,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40679,"name":"Chained Military Gorget","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[41,0,75,0,0,21,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40680,"name":"Encircling Burnished Gold Chains","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,80,50,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40681,"name":"Lattice Choker of Light","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,71,50,32,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40682,"name":"Sundial of the Exiled","icon":"ability_hunter_readiness","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40683,"name":"Valor Medal of the First War","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40684,"name":"Mirror of Truth","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40685,"name":"The Egg of Mortal Essence","icon":"inv_egg_05","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40687,"name":"Flores' Lost Seal of Approval","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1}, -{"id":40688,"name":"Verdungo's Barbarian Cord","icon":"inv_belt_13","type":8,"armorType":4,"stats":[58,0,99,0,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40689,"name":"Waistguard of Living Iron","icon":"inv_belt_29","type":8,"armorType":4,"stats":[57,0,88,0,0,0,0,0,0,52,32,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40691,"name":"Magroth's Meditative Cincture","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,94,58,0,0,38,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40692,"name":"Vereesa's Silver Chain Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,58,99,0,0,30,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40693,"name":"Beadwork Belt of Shamanic Vision","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,93,58,38,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40694,"name":"Jorach's Crocolisk Skin Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,58,91,0,0,0,46,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40695,"name":"Vine Belt of the Woodland Dryad","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,94,58,38,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40696,"name":"Plush Sash of Guzbah","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,95,58,0,33,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40697,"name":"Elegant Temple Gardens' Girdle","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,97,58,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40698,"name":"Ward of the Violet Citadel","icon":"inv_offhand_dalaran_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,75,50,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40699,"name":"Handbook of Obscure Remedies","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,73,50,38,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40700,"name":"Protective Barricade of the Light","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[0,0,75,50,38,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40701,"name":"Crygil's Discarded Plate Panel","icon":"inv_shield_41","type":13,"weaponType":7,"handType":3,"stats":[38,0,75,0,0,25,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40702,"name":"Rolfsen's Ripper","icon":"inv_weapon_shortblade_88","type":13,"weaponType":2,"handType":3,"stats":[0,0,73,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.7,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40703,"name":"Grasscutter","icon":"inv_sword_123","type":13,"weaponType":9,"handType":3,"stats":[0,25,72,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40704,"name":"Pride","icon":"inv_weapon_hand_06","type":13,"weaponType":3,"handType":3,"stats":[0,0,72,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":467,"weaponSpeed":2.5,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40705,"name":"Libram of Renewal","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40706,"name":"Libram of Reciprocation","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40707,"name":"Libram of Obstruction","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,0,0,0,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40708,"name":"Totem of the Elemental Plane","icon":"spell_nature_unrelentingstorm","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,0,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40709,"name":"Totem of Forest Growth","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40710,"name":"Totem of Splintering","icon":"inv_relics_totemofrebirth","type":14,"rangedWeaponType":4,"stats":[0,28,42,0,0,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40711,"name":"Idol of Lush Moss","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40712,"name":"Idol of Steadfast Renewal","icon":"spell_arcane_arcane03","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40713,"name":"Idol of the Ravenous Beast","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,28,42,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40714,"name":"Sigil of the Unfaltering Knight","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40715,"name":"Sigil of Haunted Dreams","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40716,"name":"Lillehoff's Winged Blades","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,19,52,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":1.8,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40717,"name":"Ring of Invincibility","icon":"inv_jewelry_ring_47","type":11,"stats":[0,28,104,0,0,0,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40718,"name":"Signet of the Impregnable Fortress","icon":"inv_jewelry_ring_46","type":11,"stats":[38,0,84,0,0,27,0,0,21,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40719,"name":"Band of Channeled Magic","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,78,56,32,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40720,"name":"Renewal of Life","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,82,56,42,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40721,"name":"Hammerhead Sharkskin Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,28,109,0,0,0,43,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40722,"name":"Platinum Mesh Cloak","icon":"inv_misc_cape_20","type":4,"stats":[41,0,84,0,0,32,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40723,"name":"Disguise of the Kumiho","icon":"inv_misc_cape_18","type":4,"stats":[0,0,79,56,37,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40724,"name":"Cloak of Kea Feathers","icon":"inv_misc_cape_17","type":4,"stats":[0,0,80,56,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40733,"name":"Wristbands of the Sentinel Huntress","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[56,0,61,0,0,0,56,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40734,"name":"Bracers of Dalaran's Parapets","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[43,0,84,0,0,28,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40735,"name":"Zartson's Jungle Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,84,56,32,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40736,"name":"Armguard of the Tower Archer","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,56,84,0,0,33,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40737,"name":"Pigmented Clan Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,84,56,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40738,"name":"Wristwraps of the Cutthroat","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,56,84,0,0,0,32,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40739,"name":"Bands of the Great Tree","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,82,56,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40740,"name":"Wraps of the Astral Traveler","icon":"inv_bracer_18","type":6,"armorType":1,"stats":[0,0,82,56,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40741,"name":"Cuffs of the Shadow Ascendant","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40742,"name":"Bladed Steelboots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[75,0,112,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40743,"name":"Kyzoc's Ground Stompers","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[75,0,111,0,0,0,0,0,0,62,34,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40745,"name":"Sabatons of Rapid Recovery","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,111,75,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40746,"name":"Pack-Ice Striders","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,75,112,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40747,"name":"Treads of Coastal Wandering","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,108,75,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40748,"name":"Boots of Captain Ellis","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,75,105,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40749,"name":"Rainey's Chewed Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,112,75,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40750,"name":"Xintor's Expeditionary Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,105,75,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40751,"name":"Slippers of the Holy Light","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,110,75,57,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":40755,"name":"Enticing Sabatons","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[45,0,66,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{}}]}, -{"id":40756,"name":"Shoulders of the Seducer","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,0,63,44,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{}}]}, -{"id":40757,"name":"Shackles of Dark Whispers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,33,64,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{}}]}, -{"id":40758,"name":"Shroud of Temptation","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,86,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"sources":[{"quest":{}}]}, -{"id":40767,"name":"Sonic Booster","icon":"inv_gizmo_goblinboombox_01","type":12,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56466}},{"crafted":{"profession":4,"spellId":56466}}]}, -{"id":40778,"name":"Savage Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40779,"name":"Savage Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40780,"name":"Savage Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40781,"name":"Hateful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40782,"name":"Hateful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40783,"name":"Hateful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40784,"name":"Deadly Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40785,"name":"Deadly Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40786,"name":"Deadly Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40787,"name":"Furious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40788,"name":"Furious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40789,"name":"Furious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40790,"name":"Relentless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40791,"name":"Relentless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40792,"name":"Relentless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40797,"name":"Savage Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1412,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40798,"name":"Savage Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1412,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40799,"name":"Savage Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1412,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40801,"name":"Hateful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40802,"name":"Hateful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40803,"name":"Hateful Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40804,"name":"Deadly Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40805,"name":"Deadly Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40806,"name":"Deadly Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40807,"name":"Furious Gladiator's Plate Gauntlets","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40808,"name":"Furious Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40809,"name":"Furious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40810,"name":"Relentless Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40811,"name":"Relentless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40812,"name":"Relentless Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40816,"name":"Savage Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40817,"name":"Savage Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40818,"name":"Savage Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40819,"name":"Hateful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40820,"name":"Hateful Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40821,"name":"Hateful Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40822,"name":"Sigil of the Frozen Conscience","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":40823,"name":"Deadly Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40824,"name":"Deadly Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40825,"name":"Deadly Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40826,"name":"Furious Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40827,"name":"Furious Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40828,"name":"Furious Gladiator's Scaled Helm","icon":"inv_helmet_133","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40829,"name":"Relentless Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40830,"name":"Relentless Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40831,"name":"Relentless Gladiator's Scaled Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40836,"name":"Savage Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40837,"name":"Savage Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40838,"name":"Savage Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40840,"name":"Hateful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40841,"name":"Hateful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40842,"name":"Hateful Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40844,"name":"Deadly Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40845,"name":"Deadly Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40846,"name":"Deadly Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40847,"name":"Furious Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40848,"name":"Furious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40849,"name":"Furious Gladiator's Scaled Legguards","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40850,"name":"Relentless Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":40851,"name":"Relentless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":40852,"name":"Relentless Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":40856,"name":"Savage Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40857,"name":"Savage Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40858,"name":"Savage Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40859,"name":"Hateful Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40860,"name":"Hateful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40861,"name":"Hateful Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40862,"name":"Deadly Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40863,"name":"Deadly Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40864,"name":"Deadly Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40865,"name":"Noise Machine","icon":"inv_gizmo_goblinboombox_01","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56467}},{"crafted":{"profession":4,"spellId":56467}}]}, -{"id":40866,"name":"Furious Gladiator's Plate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40867,"name":"Sigil of the Wild Buck","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":40868,"name":"Furious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40869,"name":"Furious Gladiator's Scaled Shoulders","icon":"inv_shoulder_94","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40870,"name":"Relentless Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":40871,"name":"Relentless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":40872,"name":"Relentless Gladiator's Scaled Shoulders","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":40875,"name":"Sigil of Arthritic Binding","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"classAllowlist":[4,10],"sources":[{"soldBy":{"zoneId":394}}]}, -{"id":40877,"name":"Hateful Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40878,"name":"Hateful Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40879,"name":"Deadly Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40880,"name":"Deadly Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40881,"name":"Furious Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[82,0,134,0,0,0,52,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40882,"name":"Furious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[82,0,134,0,0,0,52,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40883,"name":"Relentless Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40884,"name":"Relentless Gladiator's Greaves of Triumph","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[93,0,151,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40887,"name":"Hateful Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[50,0,73,0,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40888,"name":"Deadly Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[56,0,84,0,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9,4,10]}, -{"id":40889,"name":"Furious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[67,0,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40890,"name":"Relentless Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[76,0,114,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":40898,"name":"Savage Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40904,"name":"Hateful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40905,"name":"Deadly Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40907,"name":"Furious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40910,"name":"Relentless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40918,"name":"Savage Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1412,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40925,"name":"Hateful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40926,"name":"Deadly Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1476,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40927,"name":"Furious Gladiator's Ornamented Gloves","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40928,"name":"Relentless Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40930,"name":"Savage Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1836,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40931,"name":"Hateful Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40932,"name":"Deadly Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1919,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40933,"name":"Furious Gladiator's Ornamented Headcover","icon":"inv_helmet_133","type":1,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40934,"name":"Relentless Gladiator's Ornamented Headcover","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40936,"name":"Savage Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40937,"name":"Hateful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40938,"name":"Deadly Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40939,"name":"Furious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40940,"name":"Relentless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":40942,"name":"Spiked Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[30,0,0,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54917}},{"crafted":{"profession":2,"spellId":54917}}]}, -{"id":40943,"name":"Spiked Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[58,0,0,0,0,0,43,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54947}},{"crafted":{"profession":2,"spellId":54947}}]}, -{"id":40949,"name":"Spiked Cobalt Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[38,0,0,0,0,0,29,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54918}},{"crafted":{"profession":2,"spellId":54918}}]}, -{"id":40950,"name":"Spiked Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[40,0,0,0,0,14,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54941}},{"crafted":{"profession":2,"spellId":54941}}]}, -{"id":40951,"name":"Spiked Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[54,0,0,0,0,0,29,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54944}},{"crafted":{"profession":2,"spellId":54944}}]}, -{"id":40952,"name":"Spiked Cobalt Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[45,0,0,0,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54945}},{"crafted":{"profession":2,"spellId":54945}}]}, -{"id":40953,"name":"Spiked Cobalt Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[34,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54946}},{"crafted":{"profession":2,"spellId":54946}}]}, -{"id":40954,"name":"Spiked Cobalt Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[34,0,0,0,0,0,26,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54948}},{"crafted":{"profession":2,"spellId":54948}}]}, -{"id":40955,"name":"Horned Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[66,0,0,0,0,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54949}},{"crafted":{"profession":2,"spellId":54949}}]}, -{"id":40956,"name":"Reinforced Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54978}},{"crafted":{"profession":2,"spellId":54978}}]}, -{"id":40957,"name":"Reinforced Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[40,0,60,0,0,0,40,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54979}},{"crafted":{"profession":2,"spellId":54979}}]}, -{"id":40958,"name":"Reinforced Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[48,0,63,0,0,0,31,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54980}},{"crafted":{"profession":2,"spellId":54980}}]}, -{"id":40959,"name":"Reinforced Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[47,0,64,0,0,0,38,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":170,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54981}},{"crafted":{"profession":2,"spellId":54981}}]}, -{"id":40960,"name":"Savage Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1694,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40961,"name":"Hateful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40962,"name":"Deadly Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1771,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40963,"name":"Furious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_94","type":3,"armorType":4,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40964,"name":"Relentless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,155,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":40966,"name":"Hateful Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4]}, -{"id":40972,"name":"Hateful Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4]}, -{"id":40973,"name":"Hateful Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4]}, -{"id":40974,"name":"Deadly Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4]}, -{"id":40975,"name":"Deadly Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4]}, -{"id":40976,"name":"Furious Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40977,"name":"Furious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40978,"name":"Relentless Gladiator's Girdle of Salvation","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[0,0,144,93,60,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40979,"name":"Relentless Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,144,93,60,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40982,"name":"Deadly Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4]}, -{"id":40983,"name":"Furious Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40984,"name":"Relentless Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,107,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":40986,"name":"Savage Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":40987,"name":"Savage Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":40988,"name":"Hateful Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":40989,"name":"Hateful Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":40990,"name":"Deadly Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":40991,"name":"Deadly Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":40992,"name":"Furious Gladiator's Ringmail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":40993,"name":"Furious Gladiator's Mail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":40994,"name":"Relentless Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":40995,"name":"Relentless Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":40998,"name":"Savage Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,990,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":40999,"name":"Hateful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,94,58,28,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41000,"name":"Deadly Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41001,"name":"Furious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,0,127,82,40,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41002,"name":"Relentless Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,152,99,64,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41004,"name":"Savage Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,990,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41005,"name":"Hateful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41006,"name":"Deadly Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41007,"name":"Furious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41008,"name":"Relentless Gladiator's Mail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41010,"name":"Savage Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41011,"name":"Hateful Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41012,"name":"Deadly Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,143,85,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41013,"name":"Furious Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41014,"name":"Relentless Gladiator's Ringmail Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41016,"name":"Savage Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41017,"name":"Hateful Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41018,"name":"Deadly Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41019,"name":"Furious Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41020,"name":"Relentless Gladiator's Mail Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41023,"name":"Savage Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41024,"name":"Savage Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,81,50,30,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41025,"name":"Hateful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41026,"name":"Deadly Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,143,85,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41027,"name":"Furious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41028,"name":"Relentless Gladiator's Ringmail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":41030,"name":"Savage Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41031,"name":"Hateful Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41032,"name":"Deadly Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41033,"name":"Furious Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41034,"name":"Relentless Gladiator's Mail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":41036,"name":"Hateful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41037,"name":"Deadly Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41038,"name":"Furious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,0,127,82,50,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41039,"name":"Relentless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,64,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":41041,"name":"Savage Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41042,"name":"Hateful Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41043,"name":"Deadly Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41044,"name":"Furious Gladiator's Mail Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41045,"name":"Relentless Gladiator's Mail Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":41047,"name":"Hateful Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41048,"name":"Deadly Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41049,"name":"Hateful Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41050,"name":"Hateful Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41051,"name":"Furious Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41052,"name":"Relentless Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,144,93,60,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41054,"name":"Deadly Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41055,"name":"Furious Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41056,"name":"Relentless Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,144,93,60,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41059,"name":"Deadly Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41060,"name":"Furious Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,92,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41061,"name":"Relentless Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,107,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41063,"name":"Hateful Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41064,"name":"Deadly Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41065,"name":"Furious Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41066,"name":"Relentless Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,107,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41068,"name":"Hateful Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41069,"name":"Deadly Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41070,"name":"Furious Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41071,"name":"Relentless Gladiator's Waistguard of Dominance","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41073,"name":"Hateful Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41074,"name":"Deadly Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41075,"name":"Furious Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41076,"name":"Relentless Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41078,"name":"Savage Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41079,"name":"Hateful Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41080,"name":"Deadly Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41081,"name":"Furious Gladiator's Linked Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41082,"name":"Relentless Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41084,"name":"Savage Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41085,"name":"Hateful Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41086,"name":"Deadly Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41087,"name":"Furious Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41088,"name":"Relentless Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,128,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41112,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-99,-88,-42,-39,-36,-15,-6],"ilvl":183,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56465}},{"crafted":{"profession":4,"spellId":56465}}]}, -{"id":41113,"name":"Saronite Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[25,0,66,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,5851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55014}},{"crafted":{"profession":2,"spellId":55014}}]}, -{"id":41114,"name":"Tempered Saronite Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[28,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55015}},{"crafted":{"profession":2,"spellId":55015}}]}, -{"id":41116,"name":"Tempered Saronite Bracers","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[27,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55017}},{"crafted":{"profession":2,"spellId":55017}}]}, -{"id":41117,"name":"Saronite Protector","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,26,41,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55013}},{"crafted":{"profession":2,"spellId":55013}}]}, -{"id":41121,"name":"Gnomish Lightning Generator","icon":"spell_nature_lightningoverload","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56469}},{"crafted":{"profession":4,"spellId":56469}}]}, -{"id":41126,"name":"Brilliant Saronite Legplates","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[0,0,0,76,30,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55055}},{"crafted":{"profession":2,"spellId":55055}}]}, -{"id":41127,"name":"Brilliant Saronite Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,38,60,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55056}},{"crafted":{"profession":2,"spellId":55056}}]}, -{"id":41128,"name":"Brilliant Saronite Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,42,56,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55057}},{"crafted":{"profession":2,"spellId":55057}}]}, -{"id":41129,"name":"Brilliant Saronite Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,0,88,50,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55058}},{"crafted":{"profession":2,"spellId":55058}}]}, -{"id":41134,"name":"Savage Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,990,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41135,"name":"Hateful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41136,"name":"Deadly Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41137,"name":"Furious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41138,"name":"Relentless Gladiator's Linked Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41140,"name":"Savage Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,990,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41141,"name":"Hateful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1024,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41142,"name":"Deadly Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41143,"name":"Furious Gladiator's Chain Gauntlets","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,89,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41144,"name":"Relentless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_74","type":7,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41148,"name":"Savage Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,54,117,0,0,0,28,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41149,"name":"Hateful Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,65,134,0,0,0,36,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41150,"name":"Deadly Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,76,151,0,0,0,43,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41151,"name":"Furious Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,96,181,0,0,0,56,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41152,"name":"Relentless Gladiator's Linked Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,120,215,0,0,0,72,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41154,"name":"Savage Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,54,117,0,0,0,28,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41155,"name":"Hateful Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,65,134,0,0,0,36,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41156,"name":"Deadly Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,76,151,0,0,0,43,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1360,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41157,"name":"Furious Gladiator's Chain Helm","icon":"inv_helmet_125","type":1,"armorType":3,"stats":[0,96,181,0,0,0,56,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41158,"name":"Relentless Gladiator's Chain Helm","icon":"inv_helmet_73","type":1,"armorType":3,"stats":[0,120,215,0,0,0,72,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41160,"name":"Savage Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41162,"name":"Hateful Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41168,"name":"Armor Plated Combat Shotgun","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,0,42,0,0,18,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2,"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56479}},{"crafted":{"profession":4,"spellId":56479}}]}, -{"id":41181,"name":"Honed Cobalt Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,51,0,0,0,0,154,154,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":509,"weaponSpeed":3.2,"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55174}},{"crafted":{"profession":2,"spellId":55174}}]}, -{"id":41182,"name":"Savage Cobalt Slicer","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,30,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.6,"ilvl":163,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55177}},{"crafted":{"profession":2,"spellId":55177}}]}, -{"id":41183,"name":"Saronite Ambusher","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":218,"weaponSpeed":1.7,"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55179}},{"crafted":{"profession":2,"spellId":55179}}]}, -{"id":41184,"name":"Saronite Shiv","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,35,0,0,15,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":122,"weaponDamageMax":183,"weaponSpeed":1.4,"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55181}},{"crafted":{"profession":2,"spellId":55181}}]}, -{"id":41185,"name":"Furious Saronite Beatstick","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.4,"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55182}},{"crafted":{"profession":2,"spellId":55182}}]}, -{"id":41186,"name":"Corroded Saronite Edge","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,0,50,0,0,14,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":208,"weaponDamageMax":387,"weaponSpeed":2.6,"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55183}},{"crafted":{"profession":2,"spellId":55183}}]}, -{"id":41187,"name":"Corroded Saronite Woundbringer","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,28,50,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":144,"weaponDamageMax":268,"weaponSpeed":1.8,"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55184}},{"crafted":{"profession":2,"spellId":55184}}]}, -{"id":41188,"name":"Saronite Mindcrusher","icon":"inv_mace_63","type":13,"weaponType":4,"handType":4,"stats":[88,0,57,0,0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":428,"weaponDamageMax":643,"weaponSpeed":3.6,"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55185}},{"crafted":{"profession":2,"spellId":55185}}]}, -{"id":41189,"name":"Chestplate of Conquest","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[88,0,57,0,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55186}},{"crafted":{"profession":2,"spellId":55186}}]}, -{"id":41190,"name":"Legplates of Conquest","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[54,0,81,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,39,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55187}},{"crafted":{"profession":2,"spellId":55187}}]}, -{"id":41198,"name":"Deadly Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41199,"name":"Furious Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41200,"name":"Relentless Gladiator's Linked Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":41202,"name":"Savage Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41203,"name":"Hateful Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41204,"name":"Deadly Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1465,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41205,"name":"Furious Gladiator's Chain Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41206,"name":"Relentless Gladiator's Chain Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":41208,"name":"Savage Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41209,"name":"Hateful Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41210,"name":"Deadly Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41211,"name":"Furious Gladiator's Linked Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41212,"name":"Relentless Gladiator's Linked Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":41214,"name":"Savage Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41215,"name":"Hateful Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41216,"name":"Deadly Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41217,"name":"Furious Gladiator's Chain Spaulders","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41218,"name":"Relentless Gladiator's Chain Spaulders","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":41223,"name":"Hateful Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,50,75,0,0,0,33,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41224,"name":"Deadly Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,56,84,0,0,0,38,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41225,"name":"Furious Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,63,95,0,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41226,"name":"Relentless Gladiator's Wristguards of Triumph","icon":"inv_bracer_28","type":6,"armorType":3,"stats":[0,76,114,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41228,"name":"Hateful Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41229,"name":"Deadly Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41230,"name":"Furious Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,69,127,0,0,0,56,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41231,"name":"Relentless Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_02","type":10,"armorType":3,"stats":[0,85,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41233,"name":"Hateful Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7]}, -{"id":41234,"name":"Deadly Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7]}, -{"id":41235,"name":"Furious Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,69,127,0,0,0,56,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,961,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41236,"name":"Relentless Gladiator's Waistguard of Triumph","icon":"inv_belt_49","type":8,"armorType":3,"stats":[0,85,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":41238,"name":"Cloak of Tormented Skies","icon":"inv_misc_cape_14","type":4,"stats":[31,0,48,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,312,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":55199}},{"crafted":{"profession":8,"spellId":55199}}]}, -{"id":41239,"name":"Sturdy Cobalt Quickblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,19,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":146,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55200}},{"crafted":{"profession":2,"spellId":55200}}]}, -{"id":41240,"name":"Cobalt Tenderizer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,26,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":146,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55201}},{"crafted":{"profession":2,"spellId":55201}}]}, -{"id":41241,"name":"Sure-Fire Shuriken","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,0,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":139,"weaponDamageMax":258,"weaponSpeed":1.7,"ilvl":150,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55202}},{"crafted":{"profession":2,"spellId":55202}}]}, -{"id":41242,"name":"Forged Cobalt Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[61,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":327,"weaponDamageMax":491,"weaponSpeed":3.5,"ilvl":150,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55203}},{"crafted":{"profession":2,"spellId":55203}}]}, -{"id":41243,"name":"Notched Cobalt War Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,18,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":2.6,"ilvl":154,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55204}},{"crafted":{"profession":2,"spellId":55204}}]}, -{"id":41245,"name":"Deadly Saronite Dirk","icon":"inv_weapon_shortblade_06","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,17,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":168,"weaponDamageMax":314,"weaponSpeed":1.7,"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55206}},{"crafted":{"profession":2,"spellId":55206}}]}, -{"id":41257,"name":"Titansteel Destroyer","icon":"inv_mace_84","type":13,"weaponType":4,"handType":4,"stats":[124,0,105,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":507,"weaponDamageMax":761,"weaponSpeed":3.4,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55369}},{"crafted":{"profession":2,"spellId":55369}}]}, -{"id":41264,"name":"Deflecting Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":55243}}]}, -{"id":41268,"name":"Savage Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,665,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41269,"name":"Savage Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41270,"name":"Savage Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41271,"name":"Savage Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,81,50,31,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41272,"name":"Savage Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41273,"name":"Hateful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41274,"name":"Deadly Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,859,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41275,"name":"Furious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,127,82,51,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41276,"name":"Relentless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41278,"name":"Savage Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41279,"name":"Hateful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41280,"name":"Deadly Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,859,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41281,"name":"Furious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41282,"name":"Relentless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41284,"name":"Hateful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,58,27,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,688,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41286,"name":"Deadly Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41287,"name":"Furious Gladiator's Kodohide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,0,127,82,39,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41288,"name":"Relentless Gladiator's Kodohide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,825,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41290,"name":"Savage Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,665,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41291,"name":"Hateful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,688,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41292,"name":"Deadly Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41293,"name":"Furious Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41294,"name":"Relentless Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,825,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41296,"name":"Hateful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41297,"name":"Deadly Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41298,"name":"Furious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41299,"name":"Relentless Gladiator's Kodohide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41301,"name":"Savage Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41302,"name":"Hateful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41303,"name":"Deadly Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41304,"name":"Furious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41305,"name":"Relentless Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41308,"name":"Hateful Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41309,"name":"Deadly Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":41310,"name":"Furious Gladiator's Kodohide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41311,"name":"Relentless Gladiator's Kodohide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41313,"name":"Savage Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41314,"name":"Hateful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41315,"name":"Deadly Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":41316,"name":"Furious Gladiator's Wyrmhide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41317,"name":"Relentless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41319,"name":"Hateful Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41320,"name":"Deadly Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41321,"name":"Furious Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41322,"name":"Relentless Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":41324,"name":"Savage Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41325,"name":"Hateful Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41326,"name":"Deadly Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41327,"name":"Furious Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41328,"name":"Relentless Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":41330,"name":"Hateful Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41331,"name":"Hateful Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41332,"name":"Hateful Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41342,"name":"Staff of the Shadow Flame (Purple Enchant)","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,18,0,28,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":315,"weaponSpeed":3.2,"ilvl":81,"quality":4}, -{"id":41344,"name":"Helm of Command","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[95,0,0,0,0,0,55,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55302}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55302}}]}, -{"id":41345,"name":"Daunting Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[54,0,93,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55303}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55303}}]}, -{"id":41346,"name":"Righteous Greaves","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,93,88,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55304}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55304}}]}, -{"id":41347,"name":"Savage Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[59,0,99,0,0,0,44,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55310}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55310}}]}, -{"id":41348,"name":"Savage Saronite Walkers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[27,0,57,0,0,0,52,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55308}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55308}}]}, -{"id":41349,"name":"Savage Saronite Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[52,0,66,0,0,0,27,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55309}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55309}}]}, -{"id":41350,"name":"Savage Saronite Skullshield","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[37,0,78,0,0,0,70,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55312}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55312}}]}, -{"id":41351,"name":"Savage Saronite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[52,0,66,0,0,0,43,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55306}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55306}}]}, -{"id":41352,"name":"Savage Saronite Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[44,0,40,0,0,0,43,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55307}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55307}}]}, -{"id":41353,"name":"Savage Saronite Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[72,0,105,0,0,0,37,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55311}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55311}}]}, -{"id":41354,"name":"Savage Saronite Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[37,0,48,0,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55305}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55305}}]}, -{"id":41355,"name":"Vengeance Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[53,0,0,0,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55298}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55298}}]}, -{"id":41356,"name":"Righteous Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,45,71,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55300}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55300}}]}, -{"id":41357,"name":"Daunting Handguards","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[30,0,60,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55301}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":55301}}]}, -{"id":41383,"name":"Titansteel Bonecrusher","icon":"inv_mace_87","type":13,"weaponType":4,"handType":1,"stats":[0,0,59,0,0,0,0,0,29,0,0,0,140,140,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":467,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55370}},{"crafted":{"profession":2,"spellId":55370}}]}, -{"id":41384,"name":"Titansteel Guardian","icon":"inv_mace_87","type":13,"weaponType":4,"handType":1,"stats":[0,0,58,0,0,0,29,0,0,0,0,0,0,0,572,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":467,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55371}},{"crafted":{"profession":2,"spellId":55371}}]}, -{"id":41386,"name":"Spiked Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[97,0,0,0,0,60,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55372}},{"crafted":{"profession":2,"spellId":55372}}]}, -{"id":41387,"name":"Tempered Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[61,0,162,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55373}},{"crafted":{"profession":2,"spellId":55373}}]}, -{"id":41388,"name":"Brilliant Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,0,92,60,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55374}},{"crafted":{"profession":2,"spellId":55374}}]}, -{"id":41391,"name":"Spiked Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[80,0,67,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55375}},{"crafted":{"profession":2,"spellId":55375}}]}, -{"id":41392,"name":"Tempered Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[45,0,120,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55376}},{"crafted":{"profession":2,"spellId":55376}}]}, -{"id":41394,"name":"Brilliant Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,79,46,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55377}},{"crafted":{"profession":2,"spellId":55377}}]}, -{"id":41512,"name":"Frostwoven Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,22,26,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56031}},{"crafted":{"profession":11,"spellId":56031}}]}, -{"id":41513,"name":"Frostwoven Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,28,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55902}},{"crafted":{"profession":11,"spellId":55902}}]}, -{"id":41515,"name":"Frostwoven Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,39,46,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":134,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55903}},{"crafted":{"profession":11,"spellId":55903}}]}, -{"id":41516,"name":"Frostsavage Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59586}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59586}}]}, -{"id":41519,"name":"Frostwoven Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,43,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56030}},{"crafted":{"profession":11,"spellId":56030}}]}, -{"id":41520,"name":"Frostwoven Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55906}},{"crafted":{"profession":11,"spellId":55906}}]}, -{"id":41521,"name":"Frostwoven Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,43,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55907}},{"crafted":{"profession":11,"spellId":55907}}]}, -{"id":41522,"name":"Frostwoven Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55908}},{"crafted":{"profession":11,"spellId":55908}}]}, -{"id":41523,"name":"Mystic Frostwoven Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,35,36,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55910}},{"crafted":{"profession":11,"spellId":55910}}]}, -{"id":41525,"name":"Mystic Frostwoven Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,61,62,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55911}},{"crafted":{"profession":11,"spellId":55911}}]}, -{"id":41528,"name":"Mystic Frostwoven Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,27,27,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55913}},{"crafted":{"profession":11,"spellId":55913}}]}, -{"id":41543,"name":"Duskweave Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,45,42,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55914}},{"crafted":{"profession":11,"spellId":55914}}]}, -{"id":41544,"name":"Duskweave Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,48,45,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55924}}]}, -{"id":41545,"name":"Duskweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,47,43,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55922}},{"crafted":{"profession":11,"spellId":55922}}]}, -{"id":41546,"name":"Duskweave Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,62,56,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55919}},{"crafted":{"profession":11,"spellId":55919}}]}, -{"id":41548,"name":"Duskweave Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,62,56,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55901}},{"crafted":{"profession":11,"spellId":55901}}]}, -{"id":41549,"name":"Duskweave Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,63,58,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55921}},{"crafted":{"profession":11,"spellId":55921}}]}, -{"id":41550,"name":"Duskweave Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,65,60,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55923}},{"crafted":{"profession":11,"spellId":55923}}]}, -{"id":41551,"name":"Duskweave Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,36,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55920}},{"crafted":{"profession":11,"spellId":55920}}]}, -{"id":41553,"name":"Black Duskweave Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,101,69,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55925}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":55925}}]}, -{"id":41554,"name":"Black Duskweave Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,102,68,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55941}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":55941}}]}, -{"id":41555,"name":"Black Duskweave Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,55,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55943}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":55943}}]}, -{"id":41587,"name":"Battlemaster's Celerity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41588,"name":"Battlemaster's Aggression","icon":"ability_warrior_focusedrage","type":12,"stats":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41589,"name":"Battlemaster's Resolve","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41590,"name":"Battlemaster's Courage","icon":"spell_nature_focusedmind","type":12,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41591,"name":"Sergeant's Reinforced Cape","icon":"inv_misc_cape_07","type":4,"stats":[0,0,42,28,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41592,"name":"The Gladiator's Resolution","icon":"inv_misc_cape_07","type":4,"stats":[0,0,42,0,0,0,33,0,0,0,0,0,56,56,0,0,20,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":41607,"name":"Cloak of the Moon","icon":"inv_misc_cape_16","type":4,"stats":[0,0,41,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56014}},{"crafted":{"profession":11,"spellId":56014}}]}, -{"id":41608,"name":"Cloak of Frozen Spirits","icon":"inv_misc_cape_16","type":4,"stats":[0,0,42,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":154,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56015}},{"crafted":{"profession":11,"spellId":56015}}]}, -{"id":41609,"name":"Wispcloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,73,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56016}},{"crafted":{"profession":11,"spellId":56016}}]}, -{"id":41610,"name":"Deathchill Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,0,50,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56017}},{"crafted":{"profession":11,"spellId":56017}}]}, -{"id":41616,"name":"Deadly Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41617,"name":"Furious Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,668,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41618,"name":"Relentless Gladiator's Belt of Salvation","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41620,"name":"Deadly Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,787,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41621,"name":"Furious Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,817,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41622,"name":"Relentless Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41624,"name":"Deadly Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41625,"name":"Furious Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41626,"name":"Relentless Gladiator's Armwraps of Salvation","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,0,107,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41628,"name":"Hateful Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41629,"name":"Deadly Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41630,"name":"Furious Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,668,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41631,"name":"Relentless Gladiator's Belt of Dominance","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41633,"name":"Hateful Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41634,"name":"Deadly Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,787,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41635,"name":"Furious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,817,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41636,"name":"Relentless Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41638,"name":"Hateful Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41639,"name":"Deadly Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41640,"name":"Furious Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41641,"name":"Relentless Gladiator's Armwraps of Dominance","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,0,107,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41643,"name":"Savage Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,50,82,0,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,665,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41644,"name":"Savage Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,62,93,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41645,"name":"Savage Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41646,"name":"Savage Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,50,82,0,0,0,30,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41647,"name":"Savage Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41648,"name":"Hateful Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41649,"name":"Deadly Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41650,"name":"Furious Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41651,"name":"Relentless Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41653,"name":"Hateful Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41654,"name":"Deadly Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41655,"name":"Furious Gladiator's Leather Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41656,"name":"Relentless Gladiator's Leather Legguards","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41658,"name":"Savage Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41659,"name":"Hateful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41660,"name":"Deadly Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41661,"name":"Furious Gladiator's Dragonhide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41662,"name":"Relentless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41664,"name":"Savage Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41665,"name":"Hateful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41666,"name":"Deadly Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1002,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41667,"name":"Furious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41668,"name":"Relentless Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41670,"name":"Hateful Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41671,"name":"Deadly Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,84,126,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41672,"name":"Furious Gladiator's Leather Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41673,"name":"Relentless Gladiator's Leather Helm","icon":"inv_helmet_87","type":1,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41675,"name":"Savage Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,62,93,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41676,"name":"Hateful Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41677,"name":"Deadly Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,84,126,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41678,"name":"Furious Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41679,"name":"Relentless Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41681,"name":"Hateful Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41682,"name":"Deadly Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,67,107,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,859,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41683,"name":"Furious Gladiator's Leather Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,82,127,0,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41684,"name":"Relentless Gladiator's Leather Spaulders","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":41712,"name":"Savage Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,50,82,0,0,0,30,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41713,"name":"Hateful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41714,"name":"Deadly Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,67,107,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,859,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41715,"name":"Furious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,82,127,0,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41716,"name":"Relentless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41746,"name":"Brunnhildar Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":139,"weaponDamageMax":209,"weaponSpeed":3,"ilvl":85,"quality":1,"sources":[{"soldBy":{"npcId":30006,"npcName":"Warsmith Sigfinna","zoneId":67}}]}, -{"id":41752,"name":"Brunnhildar Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":107,"weaponDamageMax":161,"weaponSpeed":3,"ilvl":85,"quality":1,"sources":[{"soldBy":{"npcId":30006,"npcName":"Warsmith Sigfinna","zoneId":67}}]}, -{"id":41754,"name":"Brunnhildar Shield","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":1,"sources":[{"soldBy":{"npcId":30006,"npcName":"Warsmith Sigfinna","zoneId":67}}]}, -{"id":41755,"name":"The Fire Extinguisher","icon":"inv_staff_76","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":188,"weaponDamageMax":352,"weaponSpeed":3.1,"ilvl":158,"quality":3,"sources":[{"quest":{"id":12859,"name":"This Just In: Fire Still Hot!"}}]}, -{"id":41756,"name":"Heart's Blood Signet","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,33,32,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":41757,"name":"Vest of Unyielding Companionship","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":41758,"name":"Blood-Bond Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,63,0,36,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":41759,"name":"Shackles of Perpetual Friendship","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[20,0,24,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2}, -{"id":41760,"name":"Emancipator's Robes","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,63,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12861,"name":"Trolls Is Gone Crazy!"}}]}, -{"id":41761,"name":"Wristguard of Healing Fingers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,30,32,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12861,"name":"Trolls Is Gone Crazy!"}}]}, -{"id":41762,"name":"Freedom-Path Treads","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,42,44,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12861,"name":"Trolls Is Gone Crazy!"}}]}, -{"id":41763,"name":"Leggings of the Canny Chief","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[40,0,60,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":2,"sources":[{"quest":{"id":12861,"name":"Trolls Is Gone Crazy!"}}]}, -{"id":41765,"name":"Hateful Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,58,94,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,688,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41766,"name":"Deadly Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,67,105,0,0,0,31,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41767,"name":"Furious Gladiator's Leather Gloves","icon":"inv_gauntlets_53","type":7,"armorType":2,"stats":[0,82,127,0,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41768,"name":"Relentless Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,825,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":41770,"name":"Savage Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,50,82,0,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,665,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":41771,"name":"Hateful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,58,94,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,688,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41772,"name":"Deadly Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,67,105,0,0,0,31,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,716,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41773,"name":"Furious Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,82,127,0,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41774,"name":"Relentless Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,825,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":41815,"name":"Icier Barbed Spear","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,62,89,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":372,"weaponDamageMax":558,"weaponSpeed":3.2,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41816,"name":"De-Raged Waraxe","icon":"inv_axe_82","type":13,"weaponType":1,"handType":4,"stats":[61,0,93,0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":610,"weaponSpeed":3.5,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41821,"name":"Chilly Slobberknocker","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,119,0,0,50,0,47,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":3.1,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41822,"name":"Screw-Sprung Fixer-Upper","icon":"inv_mace_60","type":13,"weaponType":4,"handType":1,"stats":[0,0,44,0,26,0,21,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":172,"weaponDamageMax":320,"weaponSpeed":2.2,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41824,"name":"Crimson Cranium Crusher","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,19,46,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":219,"weaponDamageMax":407,"weaponSpeed":2.8,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41825,"name":"Wodin's Second-Best Shanker","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,27,29,0,0,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":262,"weaponSpeed":1.8,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12948,"name":"The Champion of Anguish"}}]}, -{"id":41826,"name":"Grips of the Giant-Rider","icon":"inv_gauntlets_41","type":7,"armorType":1,"stats":[0,0,59,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12919,"name":"The Storm King's Vengeance"}}]}, -{"id":41827,"name":"Hateful Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41828,"name":"Hateful Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41829,"name":"Horns of Electrified Terror","icon":"inv_helmet_100","type":1,"armorType":2,"stats":[0,52,80,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12919,"name":"The Storm King's Vengeance"}}]}, -{"id":41830,"name":"Hateful Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,50,71,0,0,0,33,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1]}, -{"id":41831,"name":"Deadly Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41832,"name":"Furious Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,77,119,0,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,668,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41833,"name":"Relentless Gladiator's Belt of Triumph","icon":"inv_belt_43c","type":8,"armorType":2,"stats":[0,93,144,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41835,"name":"Deadly Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,787,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41836,"name":"Furious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,77,119,0,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,817,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41837,"name":"Relentless Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,93,144,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41839,"name":"Deadly Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,56,82,0,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1]}, -{"id":41840,"name":"Furious Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,63,90,0,0,0,43,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41841,"name":"Relentless Gladiator's Armwraps of Triumph","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,76,108,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":41844,"name":"Bracers of Vengeful Flight","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,29,43,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12919,"name":"The Storm King's Vengeance"}}]}, -{"id":41845,"name":"Life-Light Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,71,39,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12919,"name":"The Storm King's Vengeance"}}]}, -{"id":41846,"name":"Clutch of the Storm Giant","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[38,0,79,0,0,0,0,0,30,52,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12919,"name":"The Storm King's Vengeance"}}]}, -{"id":41847,"name":"Savage Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,488,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41848,"name":"Savage Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41849,"name":"Savage Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41850,"name":"Savage Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,81,50,31,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41851,"name":"Savage Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,780,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41852,"name":"Hateful Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41853,"name":"Deadly Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41854,"name":"Furious Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41855,"name":"Relentless Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41857,"name":"Hateful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41858,"name":"Deadly Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41859,"name":"Furious Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41860,"name":"Relentless Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41862,"name":"Hateful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41863,"name":"Deadly Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41864,"name":"Furious Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41865,"name":"Relentless Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41867,"name":"Hateful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,605,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41868,"name":"Deadly Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41869,"name":"Furious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,127,82,51,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41870,"name":"Relentless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":41872,"name":"Hateful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,27,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41873,"name":"Deadly Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41874,"name":"Furious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,127,82,39,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,578,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41875,"name":"Relentless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":41877,"name":"Hateful Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,454,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41878,"name":"Hateful Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41879,"name":"Hateful Gladiator's Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,555,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41880,"name":"Deadly Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,481,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41881,"name":"Furious Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,508,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41882,"name":"Relentless Gladiator's Cord of Salvation","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41884,"name":"Deadly Gladiator's Treads of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,588,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41885,"name":"Furious Gladiator's Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,621,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41886,"name":"Relentless Gladiator's Treads of Salvation","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41890,"name":"Robe of the Conquered Prophet","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,77,53,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,574,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12730,"name":"Convocation at Zol'Heb"}}]}, -{"id":41891,"name":"Intricate Zandalari Tunic","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,53,101,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12730,"name":"Convocation at Zol'Heb"}}]}, -{"id":41892,"name":"Deadly Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41893,"name":"Furious Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41894,"name":"Relentless Gladiator's Cuffs of Salvation","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,107,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41896,"name":"Hateful Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,454,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41897,"name":"Deadly Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,481,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41898,"name":"Furious Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,508,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41899,"name":"Relentless Gladiator's Cord of Dominance","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41901,"name":"Hateful Gladiator's Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,555,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41902,"name":"Deadly Gladiator's Treads of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,588,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41903,"name":"Furious Gladiator's Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,621,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41904,"name":"Relentless Gladiator's Treads of Dominance","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41905,"name":"Chestguard of Rampaging Fury","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,56,68,0,0,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12730,"name":"Convocation at Zol'Heb"}}]}, -{"id":41907,"name":"Hateful Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41908,"name":"Deadly Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8]}, -{"id":41909,"name":"Furious Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41910,"name":"Relentless Gladiator's Cuffs of Dominance","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,107,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":41912,"name":"Savage Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41913,"name":"Hateful Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41914,"name":"Deadly Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41915,"name":"Furious Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41916,"name":"Relentless Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41918,"name":"Savage Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,780,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41919,"name":"Hateful Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41920,"name":"Deadly Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41921,"name":"Furious Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41922,"name":"Relentless Gladiator's Satin Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41924,"name":"Savage Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41925,"name":"Hateful Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41926,"name":"Deadly Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41927,"name":"Furious Gladiator's Satin Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41928,"name":"Relentless Gladiator's Satin Leggings","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41930,"name":"Savage Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41931,"name":"Hateful Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,605,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41932,"name":"Links of the Terrified Deity","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[56,0,67,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12730,"name":"Convocation at Zol'Heb"}}]}, -{"id":41933,"name":"Deadly Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41934,"name":"Furious Gladiator's Satin Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41935,"name":"Relentless Gladiator's Satin Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41937,"name":"Savage Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,488,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":41938,"name":"Hateful Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41939,"name":"Deadly Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41940,"name":"Furious Gladiator's Satin Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,578,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41941,"name":"Relentless Gladiator's Satin Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":41943,"name":"Savage Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41944,"name":"Hateful Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41945,"name":"Deadly Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41946,"name":"Furious Gladiator's Silk Cowl","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41947,"name":"Relentless Gladiator's Silk Cowl","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41949,"name":"Savage Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,780,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41950,"name":"Hateful Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41951,"name":"Deadly Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41953,"name":"Furious Gladiator's Silk Raiment","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41954,"name":"Relentless Gladiator's Silk Raiment","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41956,"name":"Savage Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41957,"name":"Hateful Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41958,"name":"Deadly Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41959,"name":"Furious Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41960,"name":"Relentless Gladiator's Silk Trousers","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41962,"name":"Savage Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41963,"name":"Hateful Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,605,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41964,"name":"Deadly Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41965,"name":"Furious Gladiator's Silk Amice","icon":"inv_shoulder_49","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41966,"name":"Relentless Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41968,"name":"Savage Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,488,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":41969,"name":"Hateful Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41970,"name":"Deadly Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41971,"name":"Furious Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,578,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41972,"name":"Relentless Gladiator's Silk Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":41974,"name":"Cobalt Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[25,0,27,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55834}},{"crafted":{"profession":2,"spellId":55834}}]}, -{"id":41975,"name":"Cobalt Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[37,0,39,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":142,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55835}},{"crafted":{"profession":2,"spellId":55835}}]}, -{"id":41984,"name":"Hat of Wintry Doom","icon":"inv_helmet_120","type":1,"armorType":1,"stats":[0,0,104,45,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56018}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56018}}]}, -{"id":41985,"name":"Silky Iceshard Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,76,51,0,0,37,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56019}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56019}}]}, -{"id":41986,"name":"Deep Frozen Cord","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,89,52,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56020}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56020}}]}, -{"id":41987,"name":"Staff of the Sorrowful Chieftain","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,61,93,0,0,0,44,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":3.1,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12857,"name":"Wanted: Ragemane's Flipper"}}]}, -{"id":41990,"name":"Savage Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,634,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41991,"name":"Hateful Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41992,"name":"Deadly Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41993,"name":"Furious Gladiator's Felweave Cowl","icon":"inv_helmet_137","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41994,"name":"Relentless Gladiator's Felweave Cowl","icon":"inv_helmet_137","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41996,"name":"Savage Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,780,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41997,"name":"Deadly Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":41998,"name":"Furious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":41999,"name":"Relentless Gladiator's Felweave Raiment","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42001,"name":"Hateful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42002,"name":"Savage Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,683,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42003,"name":"Hateful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,706,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42004,"name":"Deadly Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42005,"name":"Furious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42006,"name":"Relentless Gladiator's Felweave Trousers","icon":"inv_pants_cloth_30","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42008,"name":"Savage Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42009,"name":"Hateful Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,605,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42010,"name":"Deadly Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42011,"name":"Furious Gladiator's Felweave Amice","icon":"inv_shoulder_101","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42012,"name":"Relentless Gladiator's Felweave Amice","icon":"inv_shoulder_106","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42014,"name":"Savage Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,488,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":42015,"name":"Hateful Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,504,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42016,"name":"Deadly Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42017,"name":"Furious Gladiator's Felweave Handguards","icon":"inv_gauntlets_72","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,578,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42018,"name":"Relentless Gladiator's Felweave Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":42020,"name":"Hateful Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42021,"name":"Hateful Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,73,0,0,34,0,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42022,"name":"Hateful Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42023,"name":"Hateful Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,0,0,34,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42024,"name":"Hateful Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,34,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42025,"name":"Hateful Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42026,"name":"Hateful Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42027,"name":"Deadly Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,84,0,0,0,38,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42028,"name":"Deadly Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42029,"name":"Deadly Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42030,"name":"Deadly Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42031,"name":"Deadly Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,0,0,38,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42032,"name":"Deadly Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42033,"name":"Deadly Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42034,"name":"Furious Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42035,"name":"Furious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,44,0,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42036,"name":"Furious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42037,"name":"Furious Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,42,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42038,"name":"Furious Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,0,0,42,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42039,"name":"Furious Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42040,"name":"Furious Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42041,"name":"Relentless Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42042,"name":"Relentless Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42043,"name":"Relentless Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42044,"name":"Relentless Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42045,"name":"Relentless Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42046,"name":"Relentless Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42047,"name":"Relentless Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42055,"name":"Hateful Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42056,"name":"Hateful Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,70,50,0,0,0,34,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42057,"name":"Hateful Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"stats":[0,0,70,50,0,34,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42058,"name":"Hateful Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42059,"name":"Hateful Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42060,"name":"Hateful Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42061,"name":"Hateful Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"stats":[0,0,73,0,0,34,0,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42062,"name":"Deadly Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42063,"name":"Deadly Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,82,56,0,0,0,38,0,0,0,0,0,0,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42064,"name":"Deadly Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42065,"name":"Deadly Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42066,"name":"Deadly Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42067,"name":"Deadly Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"stats":[0,0,84,0,0,0,38,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42068,"name":"Deadly Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42069,"name":"Furious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42070,"name":"Furious Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,90,62,0,0,0,42,0,0,0,0,0,0,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42071,"name":"Furious Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"stats":[0,0,90,62,0,42,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42072,"name":"Furious Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42073,"name":"Furious Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42074,"name":"Furious Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42075,"name":"Furious Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"stats":[0,0,99,0,0,44,0,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":42076,"name":"Relentless Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42077,"name":"Relentless Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,108,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42078,"name":"Relentless Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_06","type":4,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42079,"name":"Relentless Gladiator's Cloak of Salvation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42080,"name":"Relentless Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42081,"name":"Relentless Gladiator's Cloak of Triumph","icon":"inv_misc_cape_18","type":4,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42082,"name":"Relentless Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":42084,"name":"Snowhide Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42088,"name":"Snowhide Hoof-Warmers","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42092,"name":"Snowhide Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42093,"name":"Frostmoon Pants","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,101,52,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56021}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56021}}]}, -{"id":42094,"name":"Snowhide Cap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42095,"name":"Light Blessed Mittens","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,74,50,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56022}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56022}}]}, -{"id":42096,"name":"Aurora Slippers","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56023}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":56023}}]}, -{"id":42097,"name":"Snowhide Mitts","icon":"inv_gauntlets_02","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42098,"name":"Snowhide Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42099,"name":"Snowhide Vest","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":26697,"npcName":"Tewah Chillmane","zoneId":3537}}]}, -{"id":42100,"name":"Moonshroud Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,127,90,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56024}},{"crafted":{"profession":11,"spellId":56024}}]}, -{"id":42101,"name":"Ebonweave Robe","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,150,90,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56026}},{"crafted":{"profession":11,"spellId":56026}}]}, -{"id":42102,"name":"Spellweave Robe","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,96,89,52,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56028}},{"crafted":{"profession":11,"spellId":56028}}]}, -{"id":42103,"name":"Moonshroud Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,94,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56025}},{"crafted":{"profession":11,"spellId":56025}}]}, -{"id":42110,"name":"Hateful Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":42111,"name":"Ebonweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,111,66,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56027}},{"crafted":{"profession":11,"spellId":56027}}]}, -{"id":42112,"name":"Hateful Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":42113,"name":"Spellweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,72,66,39,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56029}},{"crafted":{"profession":11,"spellId":56029}}]}, -{"id":42114,"name":"Deadly Gladiator's Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true}, -{"id":42115,"name":"Deadly Gladiator's Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true}, -{"id":42116,"name":"Furious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3}, -{"id":42117,"name":"Furious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3}, -{"id":42118,"name":"Relentless Gladiator's Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3}, -{"id":42119,"name":"Relentless Gladiator's Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3}, -{"id":42122,"name":"Medallion of the Horde","icon":"inv_jewelry_necklace_38","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":42123,"name":"Medallion of the Alliance","icon":"inv_jewelry_necklace_37","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":42124,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":1519}}],"factionRestriction":1}, -{"id":42126,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":42128,"name":"Battlemaster's Hostility","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42129,"name":"Battlemaster's Accuracy","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42130,"name":"Battlemaster's Avidity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42131,"name":"Battlemaster's Conviction","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42132,"name":"Battlemaster's Bravery","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42133,"name":"Battlemaster's Fury","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":42134,"name":"Battlemaster's Precision","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":42135,"name":"Battlemaster's Vivacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":42136,"name":"Battlemaster's Rage","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":42137,"name":"Battlemaster's Ruination","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":42206,"name":"Savage Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42207,"name":"Hateful Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42208,"name":"Deadly Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42209,"name":"Furious Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42210,"name":"Relentless Gladiator's Cleaver","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42212,"name":"Savage Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42213,"name":"Savage Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":254,"weaponSpeed":1.5,"ilvl":200,"quality":3}, -{"id":42214,"name":"Savage Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[2]}, -{"id":42215,"name":"Savage Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":305,"weaponSpeed":1.8,"ilvl":200,"quality":3}, -{"id":42216,"name":"Savage Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":1.8,"ilvl":200,"quality":3}, -{"id":42217,"name":"Savage Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":1.4,"ilvl":200,"quality":3}, -{"id":42218,"name":"Savage Gladiator's Right Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":1,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42219,"name":"Savage Gladiator's Left Render","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42220,"name":"Savage Gladiator's Left Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":254,"weaponSpeed":1.5,"ilvl":200,"quality":3}, -{"id":42221,"name":"Savage Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":254,"weaponSpeed":1.5,"ilvl":200,"quality":3}, -{"id":42222,"name":"Savage Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42223,"name":"Savage Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":254,"weaponSpeed":1.5,"ilvl":200,"quality":3}, -{"id":42224,"name":"Savage Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2.6,"ilvl":200,"quality":3}, -{"id":42226,"name":"Hateful Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":42227,"name":"Deadly Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4}, -{"id":42228,"name":"Furious Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4}, -{"id":42229,"name":"Relentless Gladiator's Hacker","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4}, -{"id":42231,"name":"Hateful Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42232,"name":"Deadly Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42233,"name":"Furious Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42234,"name":"Relentless Gladiator's Chopper","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42236,"name":"Hateful Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[2]}, -{"id":42237,"name":"Deadly Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[2]}, -{"id":42238,"name":"Furious Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[2]}, -{"id":42241,"name":"Hateful Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":1.8,"ilvl":200,"quality":4}, -{"id":42242,"name":"Deadly Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":338,"weaponSpeed":1.8,"ilvl":213,"quality":4}, -{"id":42243,"name":"Furious Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":404,"weaponSpeed":1.8,"ilvl":238,"quality":4}, -{"id":42244,"name":"Relentless Gladiator's Shanker","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4}, -{"id":42247,"name":"Hateful Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":261,"weaponSpeed":1.4,"ilvl":200,"quality":4}, -{"id":42248,"name":"Deadly Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":1.4,"ilvl":213,"quality":4}, -{"id":42249,"name":"Furious Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":183,"weaponDamageMax":340,"weaponSpeed":1.4,"ilvl":238,"quality":4}, -{"id":42250,"name":"Relentless Gladiator's Shiv","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":1.4,"ilvl":245,"quality":4}, -{"id":42254,"name":"Hateful Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4}, -{"id":42255,"name":"Deadly Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":1.8,"ilvl":213,"quality":4}, -{"id":42256,"name":"Furious Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":438,"weaponSpeed":1.8,"ilvl":238,"quality":4}, -{"id":42257,"name":"Relentless Gladiator's Mutilator","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4}, -{"id":42259,"name":"Hateful Gladiator's Right Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":1,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42260,"name":"Deadly Gladiator's Right Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":1,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42261,"name":"Furious Gladiator's Right Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":1,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42262,"name":"Relentless Gladiator's Right Ripper","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":1,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42264,"name":"Hateful Gladiator's Left Render","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42265,"name":"Deadly Gladiator's Left Render","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42266,"name":"Furious Gladiator's Left Render","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42267,"name":"Relentless Gladiator's Left Render","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42269,"name":"Hateful Gladiator's Left Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":42270,"name":"Deadly Gladiator's Left Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4}, -{"id":42271,"name":"Furious Gladiator's Left Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4}, -{"id":42272,"name":"Relentless Gladiator's Left Ripper","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4}, -{"id":42274,"name":"Hateful Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42275,"name":"Deadly Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":530,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42276,"name":"Furious Gladiator's Pummeler","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42277,"name":"Relentless Gladiator's Pummeler","icon":"inv_mace_110","type":13,"weaponType":4,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42279,"name":"Hateful Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":42280,"name":"Deadly Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4}, -{"id":42281,"name":"Furious Gladiator's Bonecracker","icon":"inv_mace_17","type":13,"weaponType":4,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4}, -{"id":42282,"name":"Relentless Gladiator's Bonecracker","icon":"inv_mace_110","type":13,"weaponType":4,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4}, -{"id":42284,"name":"Hateful Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":42285,"name":"Deadly Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2.6,"ilvl":213,"quality":4}, -{"id":42286,"name":"Furious Gladiator's Slicer","icon":"inv_sword_58","type":13,"weaponType":9,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2.6,"ilvl":238,"quality":4}, -{"id":42287,"name":"Relentless Gladiator's Slicer","icon":"inv_sword_146","type":13,"weaponType":9,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2.6,"ilvl":245,"quality":4}, -{"id":42289,"name":"Hateful Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":42290,"name":"Deadly Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.5,"ilvl":213,"quality":4}, -{"id":42291,"name":"Furious Gladiator's Quickblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":3,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4}, -{"id":42292,"name":"Relentless Gladiator's Quickblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4}, -{"id":42294,"name":"Savage Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3}, -{"id":42295,"name":"Savage Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3}, -{"id":42296,"name":"Savage Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3}, -{"id":42297,"name":"Savage Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3}, -{"id":42316,"name":"Hateful Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":3.6,"ilvl":200,"quality":4}, -{"id":42317,"name":"Deadly Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4}, -{"id":42318,"name":"Furious Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":700,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":238,"quality":4}, -{"id":42319,"name":"Relentless Gladiator's Decapitator","icon":"inv_axe_111","type":13,"weaponType":1,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4}, -{"id":42321,"name":"Hateful Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":3.6,"ilvl":200,"quality":4}, -{"id":42322,"name":"Deadly Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4}, -{"id":42323,"name":"Furious Gladiator's Bonegrinder","icon":"inv_mace_74","type":13,"weaponType":4,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":700,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":238,"quality":4}, -{"id":42324,"name":"Relentless Gladiator's Bonegrinder","icon":"inv_mace_112","type":13,"weaponType":4,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4}, -{"id":42326,"name":"Hateful Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":3.6,"ilvl":200,"quality":4}, -{"id":42327,"name":"Deadly Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4}, -{"id":42328,"name":"Furious Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":700,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":238,"quality":4}, -{"id":42329,"name":"Relentless Gladiator's Pike","icon":"inv_staff_104","type":13,"weaponType":6,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4}, -{"id":42331,"name":"Hateful Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":3.6,"ilvl":200,"quality":4}, -{"id":42332,"name":"Deadly Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.6,"ilvl":213,"quality":4}, -{"id":42333,"name":"Furious Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":700,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":238,"quality":4}, -{"id":42334,"name":"Relentless Gladiator's Greatsword","icon":"inv_sword_149","type":13,"weaponType":9,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4}, -{"id":42336,"name":"Bloodstone Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,0,0,0,4,16,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56193}},{"crafted":{"profession":7,"spellId":56193}}]}, -{"id":42337,"name":"Sun Rock Ring","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,18,21,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56194}},{"crafted":{"profession":7,"spellId":56194}}]}, -{"id":42338,"name":"Jade Dagger Pendant","icon":"inv_weapon_shortblade_22","type":2,"stats":[0,0,40,0,0,0,19,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56195}},{"crafted":{"profession":7,"spellId":56195}}]}, -{"id":42339,"name":"Blood Sun Necklace","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,0,34,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56196}},{"crafted":{"profession":7,"spellId":56196}}]}, -{"id":42340,"name":"Dream Signet","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":174,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56197}},{"crafted":{"profession":7,"spellId":56197}}]}, -{"id":42341,"name":"Figurine - Ruby Hare","icon":"inv_jewelcrafting_crimsonhare","type":12,"stats":[0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56199}},{"crafted":{"profession":7,"spellId":56199}}]}, -{"id":42343,"name":"Savage Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,63,0,0,0,28,0,0,0,0,0,0,0,444,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.6,"ilvl":200,"quality":3}, -{"id":42344,"name":"Savage Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,63,0,28,0,0,0,0,0,0,0,0,0,444,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.6,"ilvl":200,"quality":3}, -{"id":42345,"name":"Hateful Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,73,0,0,0,32,0,0,0,0,0,0,0,511,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4}, -{"id":42346,"name":"Deadly Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,82,0,0,0,36,0,0,0,0,0,0,0,577,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.6,"ilvl":213,"quality":4}, -{"id":42347,"name":"Furious Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,0,0,689,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.6,"ilvl":238,"quality":4}, -{"id":42348,"name":"Relentless Gladiator's Spellblade","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,111,0,0,0,41,0,0,0,0,0,0,0,777,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4}, -{"id":42351,"name":"Hateful Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,73,0,32,0,0,0,0,0,0,0,0,0,511,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":160,"weaponDamageMax":299,"weaponSpeed":1.6,"ilvl":200,"quality":4}, -{"id":42352,"name":"Deadly Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":1,"stats":[0,0,82,0,36,0,0,0,0,0,0,0,0,0,577,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.6,"ilvl":213,"quality":4}, -{"id":42353,"name":"Furious Gladiator's Gavel","icon":"inv_mace_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,99,0,36,0,0,0,0,0,0,0,0,0,689,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.6,"ilvl":238,"quality":4}, -{"id":42354,"name":"Relentless Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":1,"stats":[0,0,111,0,42,0,0,0,0,0,0,0,0,0,777,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4}, -{"id":42356,"name":"Savage Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,0,66,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3}, -{"id":42359,"name":"Hateful Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,0,75,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2,"ilvl":200,"quality":4}, -{"id":42362,"name":"Deadly Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,0,85,0,0,0,0,0,0,0,577,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2,"ilvl":213,"quality":4}, -{"id":42364,"name":"Furious Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,0,86,0,0,0,0,0,0,0,689,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2,"ilvl":238,"quality":4}, -{"id":42366,"name":"Relentless Gladiator's Battle Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,0,99,0,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2,"ilvl":245,"quality":4}, -{"id":42382,"name":"Savage Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,66,0,0,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3}, -{"id":42383,"name":"Hateful Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,75,0,0,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2,"ilvl":200,"quality":4}, -{"id":42384,"name":"Deadly Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,85,0,0,0,0,0,0,0,0,0,577,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2,"ilvl":213,"quality":4}, -{"id":42385,"name":"Furious Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,86,0,0,0,0,0,0,0,0,0,689,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2,"ilvl":238,"quality":4}, -{"id":42386,"name":"Relentless Gladiator's Energy Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,98,0,0,0,0,0,0,0,0,0,777,0,98,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2,"ilvl":245,"quality":4}, -{"id":42388,"name":"Savage Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,50,112,0,0,0,66,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1]}, -{"id":42389,"name":"Hateful Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,57,130,0,0,0,75,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1]}, -{"id":42390,"name":"Deadly Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,64,147,0,0,0,85,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1]}, -{"id":42391,"name":"Furious Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,112,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1]}, -{"id":42392,"name":"Relentless Gladiator's Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,120,204,0,0,0,74,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1]}, -{"id":42395,"name":"Figurine - Twilight Serpent","icon":"inv_jewelcrafting_purpleserpent","type":12,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56201}},{"crafted":{"profession":7,"spellId":56201}}]}, -{"id":42413,"name":"Figurine - Sapphire Owl","icon":"inv_jewelcrafting_azureowl","type":12,"stats":[0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56202}},{"crafted":{"profession":7,"spellId":56202}}]}, -{"id":42418,"name":"Figurine - Emerald Boar","icon":"inv_jewelcrafting_emeraldboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56203}},{"crafted":{"profession":7,"spellId":56203}}]}, -{"id":42435,"name":"Titansteel Shanker","icon":"inv_weapon_shortblade_76","type":13,"weaponType":2,"handType":2,"stats":[0,0,45,0,0,0,23,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":183,"weaponDamageMax":276,"weaponSpeed":1.6,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56234}},{"crafted":{"profession":2,"spellId":56234}}]}, -{"id":42443,"name":"Cudgel of Saronite Justice","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,26,0,0,38,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.4,"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56280}},{"crafted":{"profession":2,"spellId":56280}}]}, -{"id":42444,"name":"Savage Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,36,0,0,0,16,0,0,0,0,0,48,48,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":386,"weaponSpeed":1.9,"ilvl":200,"quality":3}, -{"id":42445,"name":"Savage Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,24,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":610,"weaponSpeed":3,"ilvl":200,"quality":3}, -{"id":42446,"name":"Savage Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,36,0,0,0,16,0,0,0,0,0,48,48,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":610,"weaponSpeed":3,"ilvl":200,"quality":3}, -{"id":42447,"name":"Savage Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,24,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":406,"weaponDamageMax":610,"weaponSpeed":3,"ilvl":200,"quality":3}, -{"id":42448,"name":"Savage Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,34,24,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":591,"weaponSpeed":1.9,"ilvl":200,"quality":3}, -{"id":42449,"name":"Hateful Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,42,0,0,0,18,0,0,0,0,0,56,56,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.9,"ilvl":200,"quality":4}, -{"id":42450,"name":"Deadly Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,48,0,0,0,21,0,0,0,0,0,62,62,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":309,"weaponDamageMax":464,"weaponSpeed":1.9,"ilvl":213,"quality":4}, -{"id":42451,"name":"Furious Gladiator's War Edge","icon":"inv_axe_03","type":14,"rangedWeaponType":5,"stats":[0,0,58,0,0,0,27,0,0,0,0,0,80,80,0,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":369,"weaponDamageMax":554,"weaponSpeed":1.9,"ilvl":238,"quality":4}, -{"id":42483,"name":"Relentless Gladiator's War Edge","icon":"inv_throwingaxepvp320_07","type":14,"rangedWeaponType":5,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,85,85,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":1.9,"ilvl":245,"quality":4}, -{"id":42484,"name":"Hateful Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,28,42,0,0,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":447,"weaponDamageMax":672,"weaponSpeed":3,"ilvl":200,"quality":4}, -{"id":42485,"name":"Deadly Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,31,48,0,0,0,21,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":488,"weaponDamageMax":733,"weaponSpeed":3,"ilvl":213,"quality":4}, -{"id":42486,"name":"Furious Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,38,58,0,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":558,"weaponDamageMax":838,"weaponSpeed":3,"ilvl":238,"quality":4}, -{"id":42487,"name":"Relentless Gladiator's Rifle","icon":"inv_weapon_rifle_37","type":14,"rangedWeaponType":3,"stats":[0,43,64,0,0,0,28,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":613,"weaponDamageMax":921,"weaponSpeed":3,"ilvl":245,"quality":4}, -{"id":42489,"name":"Hateful Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,28,42,0,0,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":447,"weaponDamageMax":672,"weaponSpeed":3,"ilvl":200,"quality":4}, -{"id":42490,"name":"Deadly Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,31,48,0,0,0,21,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":488,"weaponDamageMax":733,"weaponSpeed":3,"ilvl":213,"quality":4}, -{"id":42491,"name":"Furious Gladiator's Longbow","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,38,58,0,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":558,"weaponDamageMax":838,"weaponSpeed":3,"ilvl":238,"quality":4}, -{"id":42492,"name":"Relentless Gladiator's Longbow","icon":"inv_weapon_bow_54","type":14,"rangedWeaponType":1,"stats":[0,43,64,0,0,0,28,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":613,"weaponDamageMax":921,"weaponSpeed":3,"ilvl":245,"quality":4}, -{"id":42494,"name":"Hateful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,42,0,0,0,18,0,0,0,0,0,56,56,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":447,"weaponDamageMax":672,"weaponSpeed":3,"ilvl":200,"quality":4}, -{"id":42495,"name":"Deadly Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,48,0,0,0,21,0,0,0,0,0,62,62,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":488,"weaponDamageMax":733,"weaponSpeed":3,"ilvl":213,"quality":4}, -{"id":42496,"name":"Furious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,58,0,0,0,27,0,0,0,0,0,80,80,0,0,26,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":558,"weaponDamageMax":838,"weaponSpeed":3,"ilvl":238,"quality":4}, -{"id":42498,"name":"Relentless Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_36","type":14,"rangedWeaponType":2,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,85,85,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":613,"weaponDamageMax":921,"weaponSpeed":3,"ilvl":245,"quality":4}, -{"id":42501,"name":"Hateful Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,38,28,0,0,19,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":1.9,"ilvl":200,"quality":4}, -{"id":42502,"name":"Deadly Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,46,32,0,0,21,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":711,"weaponSpeed":1.9,"ilvl":213,"quality":4}, -{"id":42503,"name":"Furious Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,54,38,0,0,25,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":463,"weaponDamageMax":861,"weaponSpeed":1.9,"ilvl":238,"quality":4}, -{"id":42504,"name":"Relentless Gladiator's Touch of Defeat","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,62,43,0,0,28,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":480,"weaponDamageMax":893,"weaponSpeed":1.9,"ilvl":245,"quality":4}, -{"id":42508,"name":"Titansteel Shield Wall","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[36,0,69,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56400}},{"crafted":{"profession":2,"spellId":56400}}]}, -{"id":42511,"name":"Savage Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,34,24,16,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":591,"weaponSpeed":1.9,"ilvl":200,"quality":3}, -{"id":42512,"name":"Hateful Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,38,28,19,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":1.9,"ilvl":200,"quality":4}, -{"id":42513,"name":"Deadly Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,44,32,21,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":711,"weaponSpeed":1.9,"ilvl":213,"quality":4}, -{"id":42514,"name":"Furious Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,54,38,25,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":463,"weaponDamageMax":861,"weaponSpeed":1.9,"ilvl":238,"quality":4}, -{"id":42515,"name":"Relentless Gladiator's Baton of Light","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,62,43,28,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":480,"weaponDamageMax":893,"weaponSpeed":1.9,"ilvl":245,"quality":4}, -{"id":42517,"name":"Savage Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,34,24,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":591,"weaponSpeed":1.9,"ilvl":200,"quality":3}, -{"id":42518,"name":"Hateful Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,38,28,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":1.9,"ilvl":200,"quality":4}, -{"id":42519,"name":"Deadly Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,46,32,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":711,"weaponSpeed":1.9,"ilvl":213,"quality":4}, -{"id":42520,"name":"Furious Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,54,38,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":463,"weaponDamageMax":861,"weaponSpeed":1.9,"ilvl":238,"quality":4}, -{"id":42521,"name":"Relentless Gladiator's Piercing Touch","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":480,"weaponDamageMax":893,"weaponSpeed":1.9,"ilvl":245,"quality":4}, -{"id":42523,"name":"Savage Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42524,"name":"Hateful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42525,"name":"Deadly Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42526,"name":"Furious Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,0,0,44,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42527,"name":"Relentless Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,113,80,0,0,53,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42529,"name":"Savage Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,29,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42530,"name":"Hateful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42531,"name":"Deadly Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42532,"name":"Furious Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,44,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42533,"name":"Relentless Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,113,80,53,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42535,"name":"Savage Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42536,"name":"Hateful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42537,"name":"Deadly Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42538,"name":"Furious Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42539,"name":"Relentless Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,113,80,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42549,"name":"Armored Titanium Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[73,0,111,0,0,0,0,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56480}},{"crafted":{"profession":4,"spellId":56480}}]}, -{"id":42550,"name":"Weakness Spectralizers","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,74,150,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56481}},{"crafted":{"profession":4,"spellId":56481}}]}, -{"id":42551,"name":"Truesight Ice Blinders","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,74,115,0,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56574}},{"crafted":{"profession":4,"spellId":56574}}]}, -{"id":42552,"name":"Charged Titanium Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[75,0,109,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56483}},{"crafted":{"profession":4,"spellId":56483}}]}, -{"id":42553,"name":"Visage Liquification Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56484}},{"crafted":{"profession":4,"spellId":56484}}]}, -{"id":42554,"name":"Greensight Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56486}},{"crafted":{"profession":4,"spellId":56486}}]}, -{"id":42555,"name":"Electroflux Sight Enhancers","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56487}},{"crafted":{"profession":4,"spellId":56487}}]}, -{"id":42556,"name":"Savage Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42557,"name":"Savage Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42558,"name":"Hateful Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42559,"name":"Deadly Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42560,"name":"Furious Gladiator's Shield Wall","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,7117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42561,"name":"Relentless Gladiator's Shield Wall","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42563,"name":"Hateful Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42564,"name":"Deadly Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42565,"name":"Furious Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,0,0,44,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,7117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42566,"name":"Relentless Gladiator's Barrier","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,113,80,0,0,53,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42568,"name":"Savage Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,30,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":42569,"name":"Hateful Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":42570,"name":"Deadly Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4}, -{"id":42571,"name":"Furious Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,46,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,7117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4}, -{"id":42572,"name":"Relentless Gladiator's Redoubt","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,113,80,54,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":42574,"name":"Savage Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,24,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1,7]}, -{"id":42575,"name":"Savage Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,36,24,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,1,7]}, -{"id":42576,"name":"Savage Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,36,24,16,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,1,7]}, -{"id":42577,"name":"Hateful Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42578,"name":"Deadly Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42579,"name":"Furious Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42580,"name":"Relentless Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,68,45,30,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42582,"name":"Hateful Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42583,"name":"Deadly Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42584,"name":"Furious Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42585,"name":"Relentless Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,68,45,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42587,"name":"Hateful Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,28,42,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1,7]}, -{"id":42588,"name":"Deadly Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,32,47,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1,7]}, -{"id":42589,"name":"Furious Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,38,57,0,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[1,7]}, -{"id":42591,"name":"Relentless Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,45,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1,7]}, -{"id":42593,"name":"Savage Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,24,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[1,7]}, -{"id":42594,"name":"Savage Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,36,24,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,1,7]}, -{"id":42595,"name":"Savage Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,36,24,16,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,1,7]}, -{"id":42596,"name":"Hateful Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42597,"name":"Deadly Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42598,"name":"Furious Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42599,"name":"Relentless Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,68,45,30,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42601,"name":"Hateful Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42602,"name":"Deadly Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42603,"name":"Furious Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42604,"name":"Relentless Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,68,45,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42606,"name":"Hateful Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,28,42,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1,7]}, -{"id":42607,"name":"Deadly Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,32,47,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1,7]}, -{"id":42608,"name":"Furious Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42609,"name":"Relentless Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,45,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1,7]}, -{"id":42611,"name":"Savage Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[24,0,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,10]}, -{"id":42612,"name":"Savage Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,36,24,16,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,1,7]}, -{"id":42613,"name":"Hateful Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,42,28,19,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42614,"name":"Deadly Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,47,32,21,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42615,"name":"Furious Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,57,38,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42616,"name":"Relentless Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,68,45,30,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,1,7]}, -{"id":42618,"name":"Savage Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[24,0,36,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"classAllowlist":[4,10]}, -{"id":42619,"name":"Hateful Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,10]}, -{"id":42620,"name":"Deadly Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[32,0,47,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,10]}, -{"id":42621,"name":"Furious Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[38,0,57,0,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,10]}, -{"id":42622,"name":"Relentless Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,10]}, -{"id":42625,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42626,"name":"Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42627,"name":"Gladiator's Plate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42628,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42629,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42630,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42631,"name":"Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42632,"name":"Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42633,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[44,0,65,0,0,0,29,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42634,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[24,0,48,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42635,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,69,19,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42636,"name":"Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42637,"name":"Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,73,26,0,0,21,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42638,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,72,32,0,0,32,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42639,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,50,16,0,0,23,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[4]}, -{"id":42642,"name":"Titanium Impact Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,33,86,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56496}},{"crafted":{"profession":7,"spellId":56496}}]}, -{"id":42643,"name":"Titanium Earthguard Ring","icon":"inv_jewelry_ring_59","type":11,"stats":[50,0,63,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56497}},{"crafted":{"profession":7,"spellId":56497}}]}, -{"id":42644,"name":"Titanium Spellshock Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,73,42,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56498}},{"crafted":{"profession":7,"spellId":56498}}]}, -{"id":42645,"name":"Titanium Impact Choker","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,33,86,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56499}},{"crafted":{"profession":7,"spellId":56499}}]}, -{"id":42646,"name":"Titanium Earthguard Chain","icon":"inv_jewelry_necklace_33","type":2,"stats":[49,0,63,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56500}},{"crafted":{"profession":7,"spellId":56500}}]}, -{"id":42647,"name":"Titanium Spellshock Necklace","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,73,42,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56501}},{"crafted":{"profession":7,"spellId":56501}}]}, -{"id":42654,"name":"Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42655,"name":"Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42656,"name":"Gladiator's Dreadplate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42657,"name":"Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42658,"name":"Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[9]}, -{"id":42659,"name":"Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":42660,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":42661,"name":"Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":42662,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,69,36,16,0,22,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":42663,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,44,19,16,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":42664,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42665,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42666,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,63,28,0,0,17,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42667,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,70,36,16,0,21,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42668,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,46,19,16,0,18,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42669,"name":"Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[29,0,51,0,0,20,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42670,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[25,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42671,"name":"Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[34,0,51,0,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42672,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,42,54,0,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42673,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[19,0,42,0,0,12,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[7]}, -{"id":42674,"name":"Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,27,57,0,0,0,18,13,0,0,0,0,0,0,0,0,20,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2]}, -{"id":42675,"name":"Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,26,42,0,0,0,14,13,0,0,0,0,0,0,0,0,18,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2]}, -{"id":42676,"name":"Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,57,0,0,0,20,18,0,0,0,0,0,0,0,0,20,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2]}, -{"id":42677,"name":"Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,56,0,0,0,19,19,0,0,0,0,0,0,0,0,31,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2]}, -{"id":42678,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,27,38,0,0,0,11,9,0,0,0,0,0,0,0,0,18,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[2]}, -{"id":42680,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,55,28,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42681,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,72,34,16,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42682,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,75,38,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42683,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,21,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42684,"name":"Gladiator's Kodohide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,65,34,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42685,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,48,32,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42686,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,62,37,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42687,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,66,43,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42688,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,41,24,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42689,"name":"Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,56,39,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42690,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,55,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42691,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,33,64,21,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42692,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,40,79,10,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42693,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,28,48,13,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42694,"name":"Gladiator's Dragonhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,32,61,13,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[1]}, -{"id":42695,"name":"Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,27,46,0,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6]}, -{"id":42696,"name":"Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,34,60,0,0,0,13,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,538,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6]}, -{"id":42697,"name":"Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,36,64,0,0,0,19,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6]}, -{"id":42698,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,29,39,0,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6]}, -{"id":42699,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,54,0,0,0,12,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,662,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[6]}, -{"id":42703,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5]}, -{"id":42704,"name":"Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,25,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5]}, -{"id":42705,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,28,28,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5]}, -{"id":42706,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5]}, -{"id":42707,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,21,16,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5]}, -{"id":42708,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":42709,"name":"Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":42710,"name":"Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":42711,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":42712,"name":"Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":42713,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,27,0,0,13,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3]}, -{"id":42714,"name":"Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3]}, -{"id":42715,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3]}, -{"id":42716,"name":"Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,59,27,0,0,25,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3]}, -{"id":42717,"name":"Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[3]}, -{"id":42718,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,47,27,0,0,12,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8]}, -{"id":42719,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8]}, -{"id":42720,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8]}, -{"id":42721,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,27,0,0,27,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8]}, -{"id":42722,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":123,"quality":4,"classAllowlist":[8]}, -{"id":42723,"name":"Ornate Saronite Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,59,38,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56549}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56549}}]}, -{"id":42724,"name":"Ornate Saronite Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56553}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56553}}]}, -{"id":42725,"name":"Ornate Saronite Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56555}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56555}}]}, -{"id":42726,"name":"Ornate Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56554}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56554}}]}, -{"id":42727,"name":"Ornate Saronite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56550}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56550}}]}, -{"id":42728,"name":"Ornate Saronite Skullshield","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56556}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56556}}]}, -{"id":42729,"name":"Ornate Saronite Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56551}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56551}}]}, -{"id":42730,"name":"Ornate Saronite Walkers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56552}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":2,"spellId":56552}}]}, -{"id":42731,"name":"Leggings of Visceral Strikes","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,69,101,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60660}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60660}}]}, -{"id":42758,"name":"Time-Twisted Wraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11905,"name":"Postponing the Inevitable"}}]}, -{"id":42760,"name":"Sandals of Mystical Evolution","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,72,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11911,"name":"Quickening"}}]}, -{"id":42761,"name":"Time-Stop Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,37,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11905,"name":"Postponing the Inevitable"}}]}, -{"id":42762,"name":"Treads of Torn Future","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,44,62,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11911,"name":"Quickening"}}]}, -{"id":42763,"name":"Bindings of Sabotage","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,38,66,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11905,"name":"Postponing the Inevitable"}}]}, -{"id":42765,"name":"Gauntlets of the Disturbed Giant","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[27,0,57,0,0,21,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11905,"name":"Postponing the Inevitable"}}]}, -{"id":42766,"name":"Spiked Treads of Mutation","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,54,39,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11911,"name":"Quickening"}}]}, -{"id":42767,"name":"Invigorating Sabatons","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,54,40,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11911,"name":"Quickening"}}]}, -{"id":42768,"name":"Boots of the Unbowed Protector","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[38,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3,"sources":[{"quest":{"id":11911,"name":"Quickening"}}]}, -{"id":42785,"name":"Mammoth Sinew Cinch","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,54,50,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12828,"name":"Ample Inspiration"}}]}, -{"id":42786,"name":"Daschal's Serrated Blade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.5,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12832,"name":"Bitter Departure"}}]}, -{"id":42787,"name":"Ironwool Bindings","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,30,29,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12820,"name":"A Delicate Touch"}}]}, -{"id":42788,"name":"Frosthowl Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,74,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42789,"name":"Boots of the Howling Winds","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,56,43,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42790,"name":"K3 Surgeon's Gloves","icon":"inv_misc_surgeonglove_01","type":7,"armorType":1,"stats":[0,0,0,53,26,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12824,"name":"Demolitionist Extraordinaire"}}]}, -{"id":42791,"name":"Ring of Order","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,49,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12986,"name":"Fate of the Titans"}}],"factionRestriction":1}, -{"id":42792,"name":"Vestments of Dun Niffelem","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,88,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12924,"name":"Forging an Alliance"}}]}, -{"id":42793,"name":"Locket of Snowcrest","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,35,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13010,"name":"Krolmir, Hammer of Storms"}}]}, -{"id":42794,"name":"Hardened Vine of the Mauler","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,71,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":329,"weaponDamageMax":494,"weaponSpeed":3.1,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42795,"name":"Leggings of Renewed Hope","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,71,36,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12965,"name":"The Gifts of Loken"}}]}, -{"id":42796,"name":"Lantern of Enchanted Flame","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,59,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12984,"name":"Valduran the Stormborn"}}]}, -{"id":42798,"name":"Mammoth Hide Galoshes","icon":"inv_boots_cloth_17","type":10,"armorType":2,"stats":[0,0,38,55,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12828,"name":"Ample Inspiration"}}]}, -{"id":42799,"name":"Snowblind Butcher","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,59,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12832,"name":"Bitter Departure"}}]}, -{"id":42800,"name":"Gale-Wind Guard","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,48,44,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12820,"name":"A Delicate Touch"}}]}, -{"id":42801,"name":"Nomadic Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,32,34,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42802,"name":"Hardened Whipping Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,55,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42803,"name":"Buckshot-Proof Battlesurgeon's Protector","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,85,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12824,"name":"Demolitionist Extraordinaire"}}]}, -{"id":42804,"name":"Spiked Iceclimber's Boots","icon":"inv_boots_chain_13","type":10,"armorType":2,"stats":[0,53,39,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12986,"name":"Fate of the Titans"}}],"factionRestriction":1}, -{"id":42805,"name":"Njormeld's Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,57,41,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12924,"name":"Forging an Alliance"}}]}, -{"id":42806,"name":"Storm-Weathered Cuffs","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,37,33,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13010,"name":"Krolmir, Hammer of Storms"}}]}, -{"id":42807,"name":"Blade of the Inception","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,32,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42808,"name":"Bouldercrag's Pendant","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,24,0,0,0,43,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12965,"name":"The Gifts of Loken"}}]}, -{"id":42809,"name":"Bloodied Leather Gloves","icon":"inv_misc_surgeonglove_01","type":7,"armorType":2,"stats":[0,38,49,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12984,"name":"Valduran the Stormborn"}}]}, -{"id":42810,"name":"Wooly Cowl","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,74,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12828,"name":"Ample Inspiration"}}]}, -{"id":42811,"name":"Twisted Reflection","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,37,0,0,0,31,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12832,"name":"Bitter Departure"}}]}, -{"id":42812,"name":"Commemorative K3 Expedition Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,24,0,0,0,0,20,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12820,"name":"A Delicate Touch"}}]}, -{"id":42813,"name":"Chestplate of the Northern Ranger","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,61,56,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42814,"name":"Broken Chastity Belt","icon":"inv_belt_34","type":8,"armorType":3,"stats":[0,0,57,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42815,"name":"Mammoth Mukluks","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,0,46,52,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12824,"name":"Demolitionist Extraordinaire"}}]}, -{"id":42816,"name":"Cuffs of Invention","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,24,35,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12986,"name":"Fate of the Titans"}}],"factionRestriction":1}, -{"id":42817,"name":"Reforged Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,54,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12924,"name":"Forging an Alliance"}}]}, -{"id":42818,"name":"Stormstalker's Clutch","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,52,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13010,"name":"Krolmir, Hammer of Storms"}}]}, -{"id":42819,"name":"Maker's Touch","icon":"inv_mace_69","type":13,"weaponType":4,"handType":1,"stats":[0,0,41,0,30,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":2.4,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42820,"name":"Mantle of Bouldercrag","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,45,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12965,"name":"The Gifts of Loken"}}]}, -{"id":42821,"name":"Belt of the Stormforged","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,45,52,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12984,"name":"Valduran the Stormborn"}}]}, -{"id":42822,"name":"K3 Pachyderm Prevention Device","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,24,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":241,"weaponDamageMax":448,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12828,"name":"Ample Inspiration"}}]}, -{"id":42823,"name":"Ricket's Beatstick","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,31,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12824,"name":"Demolitionist Extraordinaire"}}]}, -{"id":42824,"name":"Maker's Edge","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[60,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":3.4,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42825,"name":"Polished Tusk Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12828,"name":"Ample Inspiration"}}]}, -{"id":42826,"name":"Goblin Damage Absorber","icon":"inv_belt_35","type":8,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,549,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12824,"name":"Demolitionist Extraordinaire"}}]}, -{"id":42827,"name":"Rockshaper's Resolve","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[53,0,80,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12965,"name":"The Gifts of Loken"}}]}, -{"id":42828,"name":"Garm's Ward","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,110,0,40,0,39,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":254,"weaponDamageMax":382,"weaponSpeed":2.4,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12832,"name":"Bitter Departure"}}]}, -{"id":42829,"name":"Plated Skullguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,60,72,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12820,"name":"A Delicate Touch"}}]}, -{"id":42830,"name":"Ring of Jokkum","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,62,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12924,"name":"Forging an Alliance"}}]}, -{"id":42831,"name":"Maiden's Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,25,32,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42832,"name":"Coldblooded Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[61,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42833,"name":"Jawbreakers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[43,0,55,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":42834,"name":"Mantle of Long Winter","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[29,0,42,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12986,"name":"Fate of the Titans"}}],"factionRestriction":1}, -{"id":42835,"name":"Backhanded Grips","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[41,0,0,0,0,0,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13010,"name":"Krolmir, Hammer of Storms"}}]}, -{"id":42836,"name":"Rockshaper Stompers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[55,0,45,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12984,"name":"Valduran the Stormborn"}}]}, -{"id":42841,"name":"Leggings of the Frozen Wastes","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,89,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12886,"name":"The Drakkensryd"}}]}, -{"id":42842,"name":"Fur-Lined Shoulder Warmers","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,43,0,0,36,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12843,"name":"They Took Our Men!"}}]}, -{"id":42843,"name":"Mildred's Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,66,68,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12906,"name":"Discipline"}}]}, -{"id":42844,"name":"Robes of Lightning","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,110,65,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{}}]}, -{"id":42845,"name":"Brunnhildar Runed Ring","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,30,26,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12900,"name":"Making a Harness"}}]}, -{"id":42846,"name":"Jormungar Galoshes","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,41,34,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12989,"name":"The Slithering Darkness"}}]}, -{"id":42847,"name":"Terrace Gazer's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,71,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13005,"name":"The Earthen Oath"}}]}, -{"id":42848,"name":"Razor-Sharp Icicle","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,27,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13051,"name":"Territorial Trespass"}}]}, -{"id":42849,"name":"Flowing Valkyrion Robes","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,60,63,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12942,"name":"Off With Their Black Wings"}}]}, -{"id":42850,"name":"Flamebringer's Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,36,70,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12953,"name":"Valkyrion Must Burn"}}]}, -{"id":42851,"name":"Hateful Gladiator's Libram of Fortitude","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[28,0,42,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4,10]}, -{"id":42852,"name":"Deadly Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[32,0,47,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4,10]}, -{"id":42853,"name":"Furious Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[38,0,57,0,0,0,25,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":238,"quality":4,"classAllowlist":[4,10]}, -{"id":42854,"name":"Relentless Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4,10]}, -{"id":42856,"name":"Frosthowl Amulet","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,57,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":42857,"name":"Thorim's Riding Crop","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,95,0,0,0,0,70,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":478,"weaponSpeed":3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13051,"name":"Territorial Trespass"}}]}, -{"id":42858,"name":"Crossbow of the Storms","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13051,"name":"Territorial Trespass"}}]}, -{"id":42859,"name":"Thorim's Crusher","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[62,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":525,"weaponSpeed":3.3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13051,"name":"Territorial Trespass"}}]}, -{"id":42860,"name":"Broodmother's Protector","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,44,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13051,"name":"Territorial Trespass"}}]}, -{"id":42861,"name":"Jormungar Fang","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,29,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":186,"weaponSpeed":1.4,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12989,"name":"The Slithering Darkness"}}]}, -{"id":42862,"name":"Hyldnir Painbringer","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":3,"stats":[0,21,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.5,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12942,"name":"Off With Their Black Wings"}}]}, -{"id":42863,"name":"Sharpened Hyldnir Harpoon","icon":"inv_spear_01","type":14,"rangedWeaponType":5,"stats":[0,0,38,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12886,"name":"The Drakkensryd"}}]}, -{"id":42864,"name":"Frozen Mood Ring","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,0,0,25,41,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12843,"name":"They Took Our Men!"}}]}, -{"id":42865,"name":"Frost Hardened Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,37,31,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12886,"name":"The Drakkensryd"}}]}, -{"id":42866,"name":"Fur-Lined Mittens","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,0,41,33,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12843,"name":"They Took Our Men!"}}]}, -{"id":42867,"name":"Cured Proto-Drake Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,51,68,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12906,"name":"Discipline"}}]}, -{"id":42868,"name":"Hyldnir Headcracker","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,25,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.5,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12971,"name":"Taking on All Challengers"}}]}, -{"id":42869,"name":"Yeti Hide Mantle","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,43,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12900,"name":"Making a Harness"}}]}, -{"id":42870,"name":"Hibernal Chestguard","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,39,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12989,"name":"The Slithering Darkness"}}]}, -{"id":42871,"name":"Bracer of Tarbash","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,32,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13005,"name":"The Earthen Oath"}}]}, -{"id":42872,"name":"Proto-Drake Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,59,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12942,"name":"Off With Their Black Wings"}}]}, -{"id":42874,"name":"Wooly Stompers","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,55,0,0,0,0,25,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12953,"name":"Valkyrion Must Burn"}}]}, -{"id":42875,"name":"Worg-Hide Pants","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,56,51,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":42876,"name":"Light-Touched Mantle","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,44,43,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12886,"name":"The Drakkensryd"}}]}, -{"id":42877,"name":"Chestguard of the Frozen Ascent","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,59,56,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12843,"name":"They Took Our Men!"}}]}, -{"id":42878,"name":"Vrykul Training Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[40,0,59,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12906,"name":"Discipline"}}]}, -{"id":42879,"name":"Crown of Hyldnir","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[53,0,79,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12971,"name":"Taking on All Challengers"}}]}, -{"id":42880,"name":"Astrid's Riding Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[55,0,42,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12900,"name":"Making a Harness"}}]}, -{"id":42881,"name":"Bjornrittar's Chilled Legguards","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12989,"name":"The Slithering Darkness"}}]}, -{"id":42882,"name":"Thorim's Grasp","icon":"inv_belt_27","type":8,"armorType":4,"stats":[55,0,44,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13005,"name":"The Earthen Oath"}}]}, -{"id":42883,"name":"Iva's Boots","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,64,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12942,"name":"Off With Their Black Wings"}}]}, -{"id":42884,"name":"Steel-Tipped Snowboots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12953,"name":"Valkyrion Must Burn"}}]}, -{"id":42885,"name":"Mountaineer's Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[56,0,0,0,0,0,40,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":42886,"name":"Gloves of the Howling Peaks","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,40,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":42887,"name":"Pauldrons of the Ascent","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,43,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12886,"name":"The Drakkensryd"}}]}, -{"id":42888,"name":"Summit Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,27,24,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12843,"name":"They Took Our Men!"}}]}, -{"id":42889,"name":"Mildred's Grasp","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,40,0,0,0,0,32,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12906,"name":"Discipline"}}]}, -{"id":42890,"name":"Proto-Scale Pants","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,44,61,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12971,"name":"Taking on All Challengers"}}]}, -{"id":42891,"name":"Brunnhildar Snowkickers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,41,57,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12900,"name":"Making a Harness"}}]}, -{"id":42892,"name":"Scaled Proto-Wristguard","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,42,31,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12942,"name":"Off With Their Black Wings"}}]}, -{"id":42893,"name":"Shoulders of Earthen Might","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,27,33,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13005,"name":"The Earthen Oath"}}]}, -{"id":42895,"name":"Scaled Jormungar Protector","icon":"inv_helmet_106","type":1,"armorType":3,"stats":[0,61,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12989,"name":"The Slithering Darkness"}}]}, -{"id":42896,"name":"Valkyrion Tracker's Chestguard","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,61,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12953,"name":"Valkyrion Must Burn"}}]}, -{"id":42943,"name":"Bloodied Arcanite Reaper","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[68,0,103,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":444,"weaponDamageMax":741,"weaponSpeed":3.8,"ilvl":1,"quality":7}, -{"id":42944,"name":"Balanced Heartseeker","icon":"inv_sword_17","type":13,"weaponType":2,"handType":2,"stats":[0,36,0,0,0,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":1.7,"ilvl":1,"quality":7}, -{"id":42945,"name":"Venerable Dal'Rend's Sacred Charge","icon":"inv_sword_43","type":13,"weaponType":9,"handType":1,"stats":[0,29,44,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.8,"ilvl":1,"quality":7}, -{"id":42946,"name":"Charmed Ancient Bone Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,27,0,0,0,15,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":305,"weaponDamageMax":568,"weaponSpeed":2.8,"ilvl":1,"quality":7}, -{"id":42947,"name":"Dignified Headmaster's Charge","icon":"inv_jewelry_talisman_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,93,76,0,0,62,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":361,"weaponDamageMax":543,"weaponSpeed":2.9,"ilvl":1,"quality":7}, -{"id":42948,"name":"Devout Aurastone Hammer","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":1,"stats":[0,0,28,42,0,0,15,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.7,"ilvl":1,"quality":7}, -{"id":42949,"name":"Polished Spaulders of Valor","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[64,0,64,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42950,"name":"Champion Herod's Shoulder","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,51,76,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42951,"name":"Mystical Pauldrons of Elements","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,76,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42952,"name":"Stained Shadowcraft Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,70,46,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42984,"name":"Preened Ironfeather Shoulders","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,76,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42985,"name":"Tattered Dreadmist Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,76,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42987,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13326,"name":"Darkmoon Nobles Deck"}}]}, -{"id":42988,"name":"Darkmoon Card: Illusion","icon":"inv_inscription_tarotillusion","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13324,"name":"Darkmoon Prisms Deck"}}]}, -{"id":42989,"name":"Darkmoon Card: Berserker!","icon":"inv_inscription_tarotberserker","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13325,"name":"Darkmoon Chaos Deck"}}]}, -{"id":42990,"name":"Darkmoon Card: Death","icon":"inv_inscription_tarotdeath","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13327,"name":"Darkmoon Undeath Deck"}}]}, -{"id":42991,"name":"Swift Hand of Justice","icon":"inv_jewelry_talisman_01","type":12,"stats":[0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":42992,"name":"Discerning Eye of the Beast","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":43068,"name":"Blessed Spaulders of Undead Slaying","icon":"inv_shoulder_21","type":3,"armorType":4,"stats":[30,0,45,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Battlegear of Undead Slaying","setId":784}, -{"id":43069,"name":"Blessed Breastplate of Undead Slaying","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[41,0,58,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Battlegear of Undead Slaying","setId":784}, -{"id":43070,"name":"Blessed Gauntlets of Undead Slaying","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[32,0,45,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Battlegear of Undead Slaying","setId":784}, -{"id":43071,"name":"Blessed Legplates of Undead Slaying","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[41,0,59,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Battlegear of Undead Slaying","setId":784}, -{"id":43072,"name":"Blessed Robe of Undead Cleansing","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,55,38,24,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Regalia of Undead Cleansing","setId":781}, -{"id":43073,"name":"Blessed Gloves of Undead Cleansing","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,61,37,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Regalia of Undead Cleansing","setId":781}, -{"id":43074,"name":"Blessed Mantle of Undead Cleansing","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,43,27,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Regalia of Undead Cleansing","setId":781}, -{"id":43075,"name":"Blessed Trousers of Undead Cleansing","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,51,38,29,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Regalia of Undead Cleansing","setId":781}, -{"id":43076,"name":"Blessed Tunic of Undead Slaying","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,39,69,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Undead Slayer's Blessed Armor","setId":782}, -{"id":43077,"name":"Blessed Shoulderpads of Undead Slaying","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,22,53,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Undead Slayer's Blessed Armor","setId":782}, -{"id":43078,"name":"Blessed Grips of Undead Slaying","icon":"inv_gauntlets_47","type":7,"armorType":2,"stats":[0,29,57,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Undead Slayer's Blessed Armor","setId":782}, -{"id":43079,"name":"Blessed Leggings of Undead Slaying","icon":"inv_pants_cloth_21","type":9,"armorType":2,"stats":[0,39,64,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Undead Slayer's Blessed Armor","setId":782}, -{"id":43080,"name":"Blessed Hauberk of Undead Slaying","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,29,59,0,0,0,29,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Garb of the Undead Slayer","setId":783}, -{"id":43081,"name":"Blessed Pauldrons of Undead Slaying","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,22,45,0,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Garb of the Undead Slayer","setId":783}, -{"id":43082,"name":"Blessed Handguards of Undead Slaying","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,28,43,0,0,0,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Garb of the Undead Slayer","setId":783}, -{"id":43083,"name":"Blessed Greaves of Undead Slaying","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,31,56,0,0,0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":4,"setName":"Blessed Garb of the Undead Slayer","setId":783}, -{"id":43085,"name":"Royal Crest of Lordaeron","icon":"inv_shield_58","type":13,"weaponType":7,"handType":3,"stats":[38,0,75,0,0,25,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}]}, -{"id":43129,"name":"Razorstrike Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,63,102,0,0,0,46,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60649}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60649}}]}, -{"id":43130,"name":"Virulent Spaulders","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,47,73,0,0,0,34,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60651}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60651}}]}, -{"id":43131,"name":"Eaglebane Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,41,82,0,0,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60652}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60652}}]}, -{"id":43132,"name":"Nightshock Hood","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,107,63,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60655}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60655}}]}, -{"id":43133,"name":"Nightshock Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,78,46,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60658}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60658}}]}, -{"id":43160,"name":"Leggings of Fastidious Decapitation","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,95,52,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12554,"name":"Malas the Corrupter"}}]}, -{"id":43161,"name":"Legguards of Solemn Revenge","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,96,50,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12554,"name":"Malas the Corrupter"}}]}, -{"id":43162,"name":"Ceremonial Pike Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,73,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12554,"name":"Malas the Corrupter"}}]}, -{"id":43163,"name":"Legplates of the Vengeful Mendicant","icon":"inv_pants_plate_13","type":9,"armorType":4,"stats":[0,0,75,51,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":158,"quality":3,"sources":[{"quest":{"id":12554,"name":"Malas the Corrupter"}}]}, -{"id":43164,"name":"Sly Mojo Sash","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,74,43,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43165,"name":"Strange Voodoo Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,36,74,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43167,"name":"Ranger's Belt of the Fallen Empire","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,48,61,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43168,"name":"Clasp of the Fallen Demi-God","icon":"inv_belt_35","type":8,"armorType":4,"stats":[44,0,54,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43171,"name":"Fur-Lined Moccasins","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,47,35,38,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43172,"name":"Rhino Hide Kneeboots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,46,73,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43173,"name":"Scaled Boots of Fallen Hope","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,67,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43174,"name":"Trollkickers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[43,0,58,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43176,"name":"Slippers of the Mojo Dojo","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,83,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43177,"name":"Voodoo Signet","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,57,34,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43178,"name":"Ring of Foul Mojo","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,30,0,0,29,35,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43179,"name":"Solid Platinum Band","icon":"inv_jewelry_ring_69","type":11,"stats":[34,0,51,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43180,"name":"Lion's Head Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,44,47,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{}}]}, -{"id":43181,"name":"Shoulders of the Northern Lights","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,61,38,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3}, -{"id":43182,"name":"Cured Mammoth Hide Mantle","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,38,62,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3}, -{"id":43183,"name":"Tundra Tracker's Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,37,68,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3}, -{"id":43184,"name":"Tundra Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[37,0,56,0,0,0,0,0,0,37,17,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":155,"quality":3}, -{"id":43185,"name":"Wand of Chilled Renewal","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,21,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":478,"weaponSpeed":1.8,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43186,"name":"Iceshrieker's Touch","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,29,23,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":228,"weaponDamageMax":425,"weaponSpeed":1.6,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43187,"name":"Weighted Throwing Axe","icon":"inv_axe_09","type":14,"rangedWeaponType":5,"stats":[18,0,28,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":2,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43188,"name":"Razor-Sharp Ice Shards","icon":"ability_piercedamage","type":14,"rangedWeaponType":5,"stats":[0,27,10,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.5,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43189,"name":"Amberglow Signet","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,49,33,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43190,"name":"Iceforged Battle Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[26,0,51,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43191,"name":"Jagged Ice Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,27,63,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43192,"name":"Ring of the Northern Winds","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,55,34,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43193,"name":"Lightning Infused Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,71,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43194,"name":"Charred Leather Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,41,75,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43195,"name":"Stormforged Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,83,42,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43197,"name":"Pauldrons of Extinguished Hatred","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,67,45,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43198,"name":"Mantle of Volkhan","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[54,0,45,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":43200,"name":"Snowdrift Pantaloons","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,86,56,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13007,"name":"The Iron Colossus"}}]}, -{"id":43201,"name":"Leggings of Heightened Renewal","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,0,101,62,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13007,"name":"The Iron Colossus"}}]}, -{"id":43202,"name":"Jormungar Hide Legguards","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,53,99,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13007,"name":"The Iron Colossus"}}]}, -{"id":43203,"name":"Iron Colossus Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[61,0,91,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13007,"name":"The Iron Colossus"}}]}, -{"id":43204,"name":"Hyldnir Runeweaver's Garb","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,54,54,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12971,"name":"Taking on All Challengers"}}]}, -{"id":43207,"name":"Hardened Tongue Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,68,111,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{}}]}, -{"id":43208,"name":"Lightningbringer's Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,66,107,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{}}]}, -{"id":43209,"name":"Breastplate of Jagged Stone","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[69,0,103,0,0,0,49,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{}}]}, -{"id":43210,"name":"Gloves of the Servant","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,93,53,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13047,"name":"The Reckoning"}}]}, -{"id":43211,"name":"Rough Climber's Grips","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,41,81,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13047,"name":"The Reckoning"}}]}, -{"id":43212,"name":"Gauntlets of the Windreacher","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,89,53,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13047,"name":"The Reckoning"}}]}, -{"id":43213,"name":"Gauntlets of Vigilance","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[51,34,76,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13047,"name":"The Reckoning"}}]}, -{"id":43244,"name":"Crystal Citrine Necklace","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,29,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58141}},{"crafted":{"profession":7,"spellId":58141}}]}, -{"id":43245,"name":"Crystal Chalcedony Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,19,0,0,0,17,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58142}},{"crafted":{"profession":7,"spellId":58142}}]}, -{"id":43246,"name":"Earthshadow Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,32,22,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58143}},{"crafted":{"profession":7,"spellId":58143}}]}, -{"id":43247,"name":"Jade Ring of Slaying","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,43,0,0,0,0,0,21,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58144}},{"crafted":{"profession":7,"spellId":58144}}]}, -{"id":43248,"name":"Stoneguard Band","icon":"inv_jewelry_ring_02","type":11,"stats":[20,0,39,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58145}},{"crafted":{"profession":7,"spellId":58145}}]}, -{"id":43249,"name":"Shadowmight Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,15,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":162,"quality":2,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58146}},{"crafted":{"profession":7,"spellId":58146}}]}, -{"id":43250,"name":"Ring of Earthen Might","icon":"inv_jewelry_ring_75","type":11,"stats":[38,0,34,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58147}},{"crafted":{"profession":7,"spellId":58147}}]}, -{"id":43251,"name":"Ring of Scarlet Shadows","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[0,0,0,0,0,38,31,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58148}},{"crafted":{"profession":7,"spellId":58148}}]}, -{"id":43252,"name":"Windfire Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,27,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58149}},{"crafted":{"profession":7,"spellId":58149}}]}, -{"id":43253,"name":"Ring of Northern Tears","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,31,0,31,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58150}},{"crafted":{"profession":7,"spellId":58150}}]}, -{"id":43255,"name":"Seafoam Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":2,"stats":[0,47,94,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60665}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60665}}]}, -{"id":43256,"name":"Jormscale Footpads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,47,87,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60666}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60666}}]}, -{"id":43257,"name":"Wildscale Breastplate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,51,68,68,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60669}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60669}}]}, -{"id":43258,"name":"Purehorn Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,70,57,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60671}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60671}}]}, -{"id":43260,"name":"Eviscerator's Facemask","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60697}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60697}}]}, -{"id":43261,"name":"Overcast Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60715}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60715}}]}, -{"id":43262,"name":"Overcast Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60716}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60716}}]}, -{"id":43263,"name":"Overcast Chestguard","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60718}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60718}}]}, -{"id":43264,"name":"Overcast Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,59,38,25,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60720}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60720}}]}, -{"id":43265,"name":"Overcast Handwraps","icon":"inv_gauntlets_02","type":7,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60721}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60721}}]}, -{"id":43266,"name":"Overcast Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60723}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60723}}]}, -{"id":43271,"name":"Overcast Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60725}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60725}}]}, -{"id":43273,"name":"Overcast Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60727}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60727}}]}, -{"id":43277,"name":"Jedoga's Greatring","icon":"inv_jewelry_ring_71","type":11,"stats":[0,22,71,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}]}, -{"id":43278,"name":"Cloak of the Darkcaster","icon":"inv_misc_cape_06","type":4,"stats":[0,0,44,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}]}, -{"id":43279,"name":"Battlechest of the Twilight Cult","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[43,0,82,0,0,0,0,0,27,60,0,0,0,0,0,0,0,0,0,0,0,0,1957,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}]}, -{"id":43280,"name":"Faceguard of the Hammer Clan","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,112,77,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}]}, -{"id":43281,"name":"Edge of Oblivion","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[80,0,117,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}]}, -{"id":43282,"name":"Shadowseeker's Pendant","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[42,0,66,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}]}, -{"id":43283,"name":"Subterranean Waterfall Shroud","icon":"inv_misc_cape_05","type":4,"stats":[0,0,53,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}]}, -{"id":43284,"name":"Amanitar Skullbow","icon":"inv_weapon_crossbow_22","type":14,"rangedWeaponType":2,"stats":[0,28,46,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":392,"weaponDamageMax":589,"weaponSpeed":2.9,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}]}, -{"id":43285,"name":"Amulet of the Spell Flinger","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[0,0,65,43,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}]}, -{"id":43286,"name":"Legguards of Swarming Attacks","icon":"inv_pants_mail_07","type":9,"armorType":2,"stats":[0,48,118,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}]}, -{"id":43287,"name":"Silken Bridge Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,83,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}]}, -{"id":43305,"name":"Shroud of Akali","icon":"inv_misc_cape_20","type":4,"stats":[0,0,66,36,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}]}, -{"id":43306,"name":"Gal'darah's Signet","icon":"inv_jewelry_ring_76","type":11,"stats":[26,0,54,0,0,0,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}]}, -{"id":43309,"name":"Amulet of the Stampede","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,0,0,0,0,0,56,21,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}]}, -{"id":43310,"name":"Engraved Chestplate of Eck","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[62,0,117,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}]}, -{"id":43311,"name":"Helmet of the Shrine","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,62,108,0,0,0,40,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}]}, -{"id":43312,"name":"Gorloc Muddy Footwraps","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,50,83,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}]}, -{"id":43313,"name":"Leggings of the Ruins Dweller","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,92,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}]}, -{"id":43327,"name":"Stratholme Lily","icon":"inv_misc_herb_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":70,"quality":1,"sources":[{"soldBy":{"npcId":31021,"npcName":"Sophie Aaren","zoneId":4100}}]}, -{"id":43353,"name":"Void Sentry Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[60,0,78,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29314,"zoneId":4415}}]}, -{"id":43358,"name":"Pendant of Shadow Beams","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,50,34,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29314,"zoneId":4415}}]}, -{"id":43363,"name":"Screeching Cape","icon":"inv_misc_cape_21","type":4,"stats":[25,0,51,0,0,0,0,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29315,"zoneId":4415}}]}, -{"id":43375,"name":"Trousers of the Arakkoa","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,78,68,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29315,"zoneId":4415}}]}, -{"id":43382,"name":"Band of Eyes","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,48,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29316,"zoneId":4415}}]}, -{"id":43387,"name":"Shoulderplates of the Beholder","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[40,0,67,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29316,"zoneId":4415}}]}, -{"id":43401,"name":"Water-Drenched Robe","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,111,62,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}]}, -{"id":43402,"name":"The Obliterator Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[57,0,0,0,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}]}, -{"id":43403,"name":"Shroud of Darkness","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,36,93,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}]}, -{"id":43404,"name":"Zuramat's Necklace","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,80,43,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}]}, -{"id":43405,"name":"Sabatons of Erekem","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,107,50,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}]}, -{"id":43406,"name":"Cloak of the Gushing Wound","icon":"inv_misc_cape_18","type":4,"stats":[0,43,80,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}]}, -{"id":43407,"name":"Stormstrike Mace","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[0,0,36,0,0,0,42,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}]}, -{"id":43408,"name":"Solitaire of Reflecting Beams","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,63,43,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}]}, -{"id":43409,"name":"Saliva Corroded Pike","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[86,0,135,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}]}, -{"id":43410,"name":"Moragg's Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,117,62,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}]}, -{"id":43433,"name":"Eviscerator's Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60702}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60702}}]}, -{"id":43434,"name":"Eviscerator's Chestguard","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60703}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60703}}]}, -{"id":43435,"name":"Eviscerator's Bindings","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,39,57,0,0,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60704}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60704}}]}, -{"id":43436,"name":"Eviscerator's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60705}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60705}}]}, -{"id":43437,"name":"Eviscerator's Waistguard","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60706}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60706}}]}, -{"id":43438,"name":"Eviscerator's Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60711}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60711}}]}, -{"id":43439,"name":"Eviscerator's Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,51,71,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60712}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60712}}]}, -{"id":43442,"name":"Swiftarrow Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60734}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60734}}]}, -{"id":43443,"name":"Swiftarrow Boots","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60737}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60737}}]}, -{"id":43444,"name":"Swiftarrow Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,38,58,0,0,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60731}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60731}}]}, -{"id":43445,"name":"Swiftarrow Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60730}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60730}}]}, -{"id":43446,"name":"Swiftarrow Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60732}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60732}}]}, -{"id":43447,"name":"Swiftarrow Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60728}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60728}}]}, -{"id":43448,"name":"Swiftarrow Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60735}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60735}}]}, -{"id":43449,"name":"Swiftarrow Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60729}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60729}}]}, -{"id":43450,"name":"Stormhide Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60750}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60750}}]}, -{"id":43451,"name":"Stormhide Stompers","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60752}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60752}}]}, -{"id":43452,"name":"Stormhide Wristguards","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,0,57,39,26,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,674,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60748}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60748}}]}, -{"id":43453,"name":"Stormhide Hauberk","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60747}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60747}}]}, -{"id":43454,"name":"Stormhide Grips","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60749}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60749}}]}, -{"id":43455,"name":"Stormhide Crown","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60743}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60743}}]}, -{"id":43456,"name":"Stormhide Legguards","icon":"inv_pants_mail_18","type":9,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60751}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60751}}]}, -{"id":43457,"name":"Stormhide Shoulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60746}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":8,"spellId":60746}}]}, -{"id":43458,"name":"Giantmaim Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,90,106,0,0,0,59,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60754}},{"crafted":{"profession":8,"spellId":60754}}]}, -{"id":43459,"name":"Giantmaim Bracers","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,50,65,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60755}},{"crafted":{"profession":8,"spellId":60755}}]}, -{"id":43460,"name":"Giantmaim Girdle","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,65,92,0,0,0,44,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":43461,"name":"Revenant's Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,128,90,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60756}},{"crafted":{"profession":8,"spellId":60756}}]}, -{"id":43469,"name":"Revenant's Treads","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,94,66,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60757}},{"crafted":{"profession":8,"spellId":60757}}]}, -{"id":43475,"name":"Grips of the Chilling Revenant","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,81,58,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":43476,"name":"Trollwoven Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,78,98,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":43481,"name":"Trollwoven Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,72,123,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60758}},{"crafted":{"profession":8,"spellId":60758}}]}, -{"id":43482,"name":"Savage Titanium Ring","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,48,0,0,0,33,0,0,0,0,0,32,32,0,0,32,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58492}},{"crafted":{"profession":7,"spellId":58492}}]}, -{"id":43484,"name":"Trollwoven Girdle","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,66,128,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60759}},{"crafted":{"profession":8,"spellId":60759}}]}, -{"id":43486,"name":"Mohawk Mask","icon":"ability_ambush","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":43495,"name":"Earthgiving Legguards","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,0,131,90,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60760}},{"crafted":{"profession":8,"spellId":60760}}]}, -{"id":43498,"name":"Savage Titanium Band","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,48,16,0,0,0,33,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58507}},{"crafted":{"profession":7,"spellId":58507}}]}, -{"id":43500,"name":"Bolstered Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[68,0,123,0,0,45,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}]}, -{"id":43502,"name":"Earthgiving Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60761}},{"crafted":{"profession":8,"spellId":60761}}]}, -{"id":43515,"name":"Mystic Tome","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":58565}},{"crafted":{"profession":6,"spellId":58565}}]}, -{"id":43555,"name":"Deputy Pa'trolla Badge","icon":"inv_misc_coin_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":43565,"name":"Durable Nerubhide Cape","icon":"inv_misc_cape_14","type":4,"stats":[41,0,75,0,0,0,0,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60640}},{"crafted":{"profession":8,"spellId":60640}}]}, -{"id":43566,"name":"Ice Striker's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,24,113,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60637}},{"crafted":{"profession":8,"spellId":60637}}]}, -{"id":43573,"name":"Tears of Bitter Anguish","icon":"inv_elemental_crystal_water","type":12,"stats":[0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":43582,"name":"Titanium Frostguard Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58954}},{"crafted":{"profession":7,"spellId":58954}}]}, -{"id":43583,"name":"Glacial Robe","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60993}},{"crafted":{"profession":11,"spellId":60993}}]}, -{"id":43584,"name":"Glacial Waistband","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60990}},{"crafted":{"profession":11,"spellId":60990}}]}, -{"id":43585,"name":"Glacial Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60994}},{"crafted":{"profession":11,"spellId":60994}}]}, -{"id":43586,"name":"Icebane Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":4,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61008}},{"crafted":{"profession":2,"spellId":61008}}]}, -{"id":43587,"name":"Icebane Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61009}},{"crafted":{"profession":2,"spellId":61009}}]}, -{"id":43588,"name":"Icebane Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61010}},{"crafted":{"profession":2,"spellId":61010}}]}, -{"id":43590,"name":"Polar Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60996}},{"crafted":{"profession":8,"spellId":60996}}]}, -{"id":43591,"name":"Polar Cord","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60997}},{"crafted":{"profession":8,"spellId":60997}}]}, -{"id":43592,"name":"Polar Boots","icon":"inv_boots_cloth_01","type":10,"armorType":2,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60998}},{"crafted":{"profession":8,"spellId":60998}}]}, -{"id":43593,"name":"Icy Scale Chestguard","icon":"inv_chest_plate09","type":5,"armorType":3,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60999}},{"crafted":{"profession":8,"spellId":60999}}]}, -{"id":43594,"name":"Icy Scale Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":61000}},{"crafted":{"profession":8,"spellId":61000}}]}, -{"id":43595,"name":"Icy Scale Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":61002}},{"crafted":{"profession":8,"spellId":61002}}]}, -{"id":43600,"name":"Brunnhildar Harpoon","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":176,"weaponDamageMax":265,"weaponSpeed":3.8,"ilvl":85,"quality":1,"sources":[{"soldBy":{"npcId":30006,"npcName":"Warsmith Sigfinna","zoneId":67}}]}, -{"id":43601,"name":"Brunnhildar Great Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":186,"weaponDamageMax":279,"weaponSpeed":4,"ilvl":85,"quality":1,"sources":[{"soldBy":{"npcId":30006,"npcName":"Warsmith Sigfinna","zoneId":67}}]}, -{"id":43611,"name":"Krol Cleaver","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,36,71,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4}, -{"id":43612,"name":"Spineslicer","icon":"inv_weapon_shortblade_24","type":14,"rangedWeaponType":5,"stats":[0,26,44,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":328,"weaponDamageMax":493,"weaponSpeed":2.2,"ilvl":200,"quality":4}, -{"id":43613,"name":"The Dusk Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":310,"weaponSpeed":1.8,"ilvl":200,"quality":4}, -{"id":43654,"name":"Tome of the Dawn","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59475}},{"crafted":{"profession":6,"spellId":59475}}]}, -{"id":43655,"name":"Book of Survival","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59478}},{"crafted":{"profession":6,"spellId":59478}}]}, -{"id":43656,"name":"Tome of Kings","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,6,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59484}},{"crafted":{"profession":6,"spellId":59484}}]}, -{"id":43657,"name":"Royal Guide of Escape Routes","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59486}},{"crafted":{"profession":6,"spellId":59486}}]}, -{"id":43659,"name":"Bloodied Prison Shank","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":2,"ilvl":136}, -{"id":43660,"name":"Fire Eater's Guide","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59489}},{"crafted":{"profession":6,"spellId":59489}}]}, -{"id":43661,"name":"Book of Stars","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59490}},{"crafted":{"profession":6,"spellId":59490}}]}, -{"id":43663,"name":"Stormbound Tome","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,15,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59493}},{"crafted":{"profession":6,"spellId":59493}}]}, -{"id":43664,"name":"Manual of Clouds","icon":"inv_misc_book_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,14,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59494}},{"crafted":{"profession":6,"spellId":59494}}]}, -{"id":43666,"name":"Hellfire Tome","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59495}},{"crafted":{"profession":6,"spellId":59495}}]}, -{"id":43667,"name":"Book of Clever Tricks","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":85,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59496}},{"crafted":{"profession":6,"spellId":59496}}]}, -{"id":43828,"name":"Touch of Light","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,27,15,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13039,"name":"Defending The Vanguard"}}]}, -{"id":43829,"name":"Crusader's Locket","icon":"inv_jewelry_talisman_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13039,"name":"Defending The Vanguard"}}]}, -{"id":43830,"name":"Cobalt's Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,83,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13125,"name":"The Air Stands Still"}}]}, -{"id":43831,"name":"Enchanted Plate Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,44,55,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13039,"name":"Defending The Vanguard"}}]}, -{"id":43832,"name":"The Argent Resolve","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,60,0,0,0,51,0,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":573,"weaponSpeed":3.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13110,"name":"The Restless Dead"}}]}, -{"id":43833,"name":"Blade of Echoes","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,25,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13110,"name":"The Restless Dead"}}]}, -{"id":43834,"name":"Staff of Redeemed Souls","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,56,0,61,0,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":478,"weaponSpeed":3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13110,"name":"The Restless Dead"}}]}, -{"id":43835,"name":"Hand of Gustav","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,32,0,21,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":2.4,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13110,"name":"The Restless Dead"}}]}, -{"id":43836,"name":"Thorny Rose Brooch","icon":"inv_jewelry_talisman_03","type":12,"stats":[0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43837,"name":"Softly Glowing Orb","icon":"achievement_dungeon_ulduar77","type":12,"stats":[0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43838,"name":"Chuchu's Tiny Box of Horrors","icon":"inv_box_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43839,"name":"Leiah's Footpads","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,33,31,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13125,"name":"The Air Stands Still"}}]}, -{"id":43840,"name":"Sixen's Skullcap","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,43,48,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13125,"name":"The Air Stands Still"}}]}, -{"id":43841,"name":"Argent Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,0,38,26,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13039,"name":"Defending The Vanguard"}}]}, -{"id":43842,"name":"Jayde's Reinforced Handguards","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[41,0,57,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13125,"name":"The Air Stands Still"}}]}, -{"id":43843,"name":"Iron Coffin Lid","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[23,0,51,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12955,"name":"Eliminate the Competition"}}]}, -{"id":43844,"name":"Ebon Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[34,0,52,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12982,"name":"Ebon Blade Prisoners"}}]}, -{"id":43845,"name":"Legplates of Dominion","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[54,0,79,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13145,"name":"The Vile Hold"}}]}, -{"id":43846,"name":"Helmet of the Dedicated","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[58,0,79,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12814,"name":"You'll Need a Gryphon"}}]}, -{"id":43847,"name":"Demolisher's Grips","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,60,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43848,"name":"Bracers of Icy Resolve","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[23,0,38,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":43849,"name":"Chain of the Sovereign","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[29,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12893,"name":"Free Your Mind"}}]}, -{"id":43855,"name":"Adepts Wristwraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,66,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13130,"name":"The Stone That Started A Revolution"}}]}, -{"id":43856,"name":"Sigrid's Mittens","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12955,"name":"Eliminate the Competition"}}]}, -{"id":43857,"name":"Duke Lankral's Velvet Slippers","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,60,43,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12943,"name":"Shadow Vault Decree"}}]}, -{"id":43858,"name":"Vrykul Crusher","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":307,"weaponDamageMax":462,"weaponSpeed":2.9,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12992,"name":"Crush Dem Vrykuls!"}}]}, -{"id":43859,"name":"Shadow Vault Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,59,48,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12982,"name":"Ebon Blade Prisoners"}}]}, -{"id":43860,"name":"Brilliant Saronite Belt","icon":"inv_belt_20","type":8,"armorType":4,"stats":[0,0,0,56,28,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59436}},{"crafted":{"profession":2,"spellId":59436}}]}, -{"id":43861,"name":"Bone Witch's Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,33,26,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13043,"name":"The Sum is Greater than the Parts"}}]}, -{"id":43862,"name":"Mantle of the Underhalls","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,54,43,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13059,"name":"Revenge for the Vargul"}}]}, -{"id":43863,"name":"Pantaloons of the Water Magi","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,68,55,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13091,"name":"The Art of Being a Water Terror"}}]}, -{"id":43864,"name":"Brilliant Saronite Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,33,30,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59438}},{"crafted":{"profession":2,"spellId":59438}}]}, -{"id":43865,"name":"Brilliant Saronite Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,65,56,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59440}},{"crafted":{"profession":2,"spellId":59440}}]}, -{"id":43866,"name":"Lithe Stalker's Cord","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,62,41,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13145,"name":"The Vile Hold"}}]}, -{"id":43870,"name":"Brilliant Saronite Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,79,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":179,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59441}},{"crafted":{"profession":2,"spellId":59441}}]}, -{"id":43871,"name":"Saronite Spellblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":1,"stats":[0,0,38,0,0,0,38,0,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":109,"weaponDamageMax":203,"weaponSpeed":1.4,"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59442}},{"crafted":{"profession":2,"spellId":59442}}]}, -{"id":43872,"name":"Weeping Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,32,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13172,"name":"Seeds of Chaos"}}]}, -{"id":43873,"name":"Frail Bone Wand","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,21,15,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13161,"name":"The Rider of the Unholy"}}]}, -{"id":43874,"name":"Lady Nightswood's Engagement Ring","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,29,30,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12893,"name":"Free Your Mind"}}]}, -{"id":43875,"name":"Axe of the Cunning","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[16,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13162,"name":"The Rider of Frost"}}]}, -{"id":43877,"name":"Blood-Forged Circle","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,0,15,19,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13163,"name":"The Rider of Blood"}}]}, -{"id":43878,"name":"Mantle of Unholy Power","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,82,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":43879,"name":"Gryphon Rider's Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,36,20,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12814,"name":"You'll Need a Gryphon"}}]}, -{"id":43880,"name":"Fair Touch of the Crusader","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,26,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13211,"name":"By Fire Be Purged"}}]}, -{"id":43881,"name":"Demolisher Driver's Dustcoat","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,92,53,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43882,"name":"Cultist's Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,76,56,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43883,"name":"Arete's Command","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[77,0,43,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":360,"weaponDamageMax":541,"weaponSpeed":3.4,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12840,"name":"In Strict Confidence"}}]}, -{"id":43884,"name":"Amulet of the Malefic Necromancer","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,28,22,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43885,"name":"Scourgehammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,80,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":557,"weaponSpeed":3.5,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43888,"name":"Blunt Brainwasher","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,11,33,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43889,"name":"Hulking Abomination Hide Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,25,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43890,"name":"Interrogator's Flaming Knuckles","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,12,15,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.5,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12840,"name":"In Strict Confidence"}}]}, -{"id":43891,"name":"Jhaeqon's Tunic","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,52,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43892,"name":"Refurbished Demolisher Gear Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,30,58,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43893,"name":"Olakin's Enchanted Torch","icon":"inv_torch_thrown","type":14,"rangedWeaponType":6,"stats":[0,0,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13211,"name":"By Fire Be Purged"}}]}, -{"id":43894,"name":"Gryphon Hide Moccasins","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,55,38,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12814,"name":"You'll Need a Gryphon"}}]}, -{"id":43895,"name":"Leggings of Silent Echoes","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,112,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":43896,"name":"Grotesque Butcher's Pants","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,59,58,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13163,"name":"The Rider of Blood"}}]}, -{"id":43897,"name":"Frost Climber's Hatchet","icon":"inv_axe_86","type":13,"weaponType":1,"handType":1,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13162,"name":"The Rider of Frost"}}]}, -{"id":43898,"name":"Icy Quick Edge","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13162,"name":"The Rider of Frost"}}]}, -{"id":43899,"name":"Sapph's Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,64,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":382,"weaponDamageMax":573,"weaponSpeed":3.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13162,"name":"The Rider of Frost"}}]}, -{"id":43900,"name":"Fleshwerk Throwing Glaive","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,17,25,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13211,"name":"By Fire Be Purged"}}]}, -{"id":43903,"name":"Ring of the Fallen Shadow Adept","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,44,38,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43904,"name":"Discarded Slaughterhouse Gloves","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,50,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13161,"name":"The Rider of the Unholy"}}]}, -{"id":43905,"name":"Fur-Lined Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,114,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13172,"name":"Seeds of Chaos"}}]}, -{"id":43906,"name":"Cunning Leather Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,55,66,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13145,"name":"The Vile Hold"}}]}, -{"id":43907,"name":"Spear-Sisters Mantle","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,36,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13091,"name":"The Art of Being a Water Terror"}}]}, -{"id":43908,"name":"Boots of the Fallen Thane","icon":"inv_boots_chain_10","type":10,"armorType":2,"stats":[0,0,71,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13059,"name":"Revenge for the Vargul"}}]}, -{"id":43909,"name":"Belt of Njorndar","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,40,59,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13043,"name":"The Sum is Greater than the Parts"}}]}, -{"id":43910,"name":"Gloves of the Flayed","icon":"inv_gauntlets_01","type":7,"armorType":2,"stats":[0,0,50,41,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12982,"name":"Ebon Blade Prisoners"}}]}, -{"id":43911,"name":"Vile's Poker","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":226,"weaponSpeed":1.7,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12992,"name":"Crush Dem Vrykuls!"}}]}, -{"id":43912,"name":"Vest of Jotunheim","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12943,"name":"Shadow Vault Decree"}}]}, -{"id":43913,"name":"Efrem's Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,36,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12955,"name":"Eliminate the Competition"}}]}, -{"id":43914,"name":"Girdle of Reprieve","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,77,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13130,"name":"The Stone That Started A Revolution"}}]}, -{"id":43915,"name":"Pilot's Knife","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,29,24,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":186,"weaponSpeed":1.4,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43916,"name":"Mace of the Final Command","icon":"inv_mace_62","type":13,"weaponType":4,"handType":1,"stats":[0,0,32,0,0,0,0,33,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.6,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43917,"name":"Ritualist's Bloodletter","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,39,0,0,30,0,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43918,"name":"Shooter's Glory","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,18,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.8,"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43919,"name":"Curved Assassin's Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,10,0,0,0,0,22,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":1.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12840,"name":"In Strict Confidence"}}]}, -{"id":43920,"name":"Growler's Intimidation","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,79,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":307,"weaponDamageMax":462,"weaponSpeed":2.9,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12840,"name":"In Strict Confidence"}}]}, -{"id":43921,"name":"Staff of Interrogation","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,111,0,0,0,58,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":478,"weaponSpeed":3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12840,"name":"In Strict Confidence"}}]}, -{"id":43922,"name":"Honed Lightblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,26,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":174,"quality":2}, -{"id":43923,"name":"Bloodblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":114,"weaponDamageMax":212,"weaponSpeed":1.6,"ilvl":174,"quality":2,"sources":[{"quest":{"id":13172,"name":"Seeds of Chaos"}}]}, -{"id":43924,"name":"Illskar's Greatcloak","icon":"inv_misc_cape_08","type":4,"stats":[20,0,42,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13059,"name":"Revenge for the Vargul"}}]}, -{"id":43925,"name":"Shadow Vault Shawl","icon":"inv_misc_cape_02","type":4,"stats":[0,0,55,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12893,"name":"Free Your Mind"}}]}, -{"id":43926,"name":"Signet of Baron Sliver","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,24,0,0,25,0,0,0,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12893,"name":"Free Your Mind"}}]}, -{"id":43927,"name":"Wrought-Iron Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,128,0,0,0,36,0,0,0,0,0,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":318,"weaponDamageMax":478,"weaponSpeed":3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12992,"name":"Crush Dem Vrykuls!"}}]}, -{"id":43928,"name":"Bow of Bone and Sinew","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,23,19,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.8,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12992,"name":"Crush Dem Vrykuls!"}}]}, -{"id":43929,"name":"Vile's Uglystick","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[53,0,80,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":525,"weaponSpeed":3.3,"ilvl":174,"quality":2,"sources":[{"quest":{"id":12992,"name":"Crush Dem Vrykuls!"}}]}, -{"id":43930,"name":"Accelerator Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,18,55,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43931,"name":"Savryn's Muddy Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,45,52,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43932,"name":"Drivetrain Chain Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,53,69,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{}}]}, -{"id":43933,"name":"Gauntlets of Urgency","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,53,38,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12814,"name":"You'll Need a Gryphon"}}]}, -{"id":43934,"name":"Enchanted Bracelets of the Scout","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,40,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13145,"name":"The Vile Hold"}}]}, -{"id":43935,"name":"Links of the Battlemender","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,75,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12982,"name":"Ebon Blade Prisoners"}}]}, -{"id":43936,"name":"Battlesurgeon's Gauntlets","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,51,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":43937,"name":"Blood-Stalker's Cover","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,45,53,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13163,"name":"The Rider of Blood"}}]}, -{"id":43938,"name":"Belt of Rising Hope","icon":"inv_belt_31","type":8,"armorType":4,"stats":[0,0,47,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2}, -{"id":43939,"name":"Breastplate of Splattered Blood","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[53,0,80,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13163,"name":"The Rider of Blood"}}]}, -{"id":43940,"name":"Plated Legs of the Unholy","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[71,0,0,0,0,45,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13161,"name":"The Rider of the Unholy"}}]}, -{"id":43941,"name":"Grimy Saronite Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13172,"name":"Seeds of Chaos"}}]}, -{"id":43942,"name":"Jotunheim Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,43,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13091,"name":"The Art of Being a Water Terror"}}]}, -{"id":43943,"name":"Gauntlets of the Holy Gladiator","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,87,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13059,"name":"Revenge for the Vargul"}}]}, -{"id":43944,"name":"Rings of Nergeld","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[26,0,0,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13043,"name":"The Sum is Greater than the Parts"}}]}, -{"id":43945,"name":"Blackened Breastplate of the Vault","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[68,0,66,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12943,"name":"Shadow Vault Decree"}}]}, -{"id":43946,"name":"Chestplate of the Glacial Crusader","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,58,68,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12955,"name":"Eliminate the Competition"}}]}, -{"id":43947,"name":"Stability Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[39,0,44,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13130,"name":"The Stone That Started A Revolution"}}]}, -{"id":43948,"name":"Blood-Encrusted Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,33,62,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13161,"name":"The Rider of the Unholy"}}]}, -{"id":43969,"name":"Frostsavage Belt","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59582}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59582}}]}, -{"id":43970,"name":"Frostsavage Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59585}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59585}}]}, -{"id":43971,"name":"Frostsavage Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59589}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59589}}]}, -{"id":43972,"name":"Frostsavage Robe","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59587}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59587}}]}, -{"id":43973,"name":"Frostsavage Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59584}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59584}}]}, -{"id":43974,"name":"Frostsavage Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,59,38,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59583}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59583}}]}, -{"id":43975,"name":"Frostsavage Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59588}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":59588}}]}, -{"id":43976,"name":"Chain Gloves of the Quarry","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,54,50,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13172,"name":"Seeds of Chaos"}}]}, -{"id":43977,"name":"Links of the Sleep-Watcher","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,59,67,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13091,"name":"The Art of Being a Water Terror"}}]}, -{"id":43978,"name":"Circlet of Suffering","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,63,59,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13059,"name":"Revenge for the Vargul"}}]}, -{"id":43979,"name":"Glaciel Ranger's Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,70,69,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13043,"name":"The Sum is Greater than the Parts"}}]}, -{"id":43980,"name":"Thane's Restraints","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12943,"name":"Shadow Vault Decree"}}]}, -{"id":43981,"name":"Gauntlets of Onu'zun","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,52,40,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":12955,"name":"Eliminate the Competition"}}]}, -{"id":43982,"name":"Architect's Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,38,45,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":2,"sources":[{"quest":{"id":13130,"name":"The Stone That Started A Revolution"}}]}, -{"id":43988,"name":"Gale-Proof Cloak","icon":"inv_misc_cape_20","type":4,"stats":[36,0,63,0,0,0,0,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}]}, -{"id":43989,"name":"Remembrance Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,97,58,36,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}]}, -{"id":43990,"name":"Blade-Scarred Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,74,134,0,0,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}]}, -{"id":43991,"name":"Legguards of Composure","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,123,73,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}]}, -{"id":43992,"name":"Volitant Amulet","icon":"inv_jewelry_necklace_41","type":2,"stats":[0,0,71,42,32,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}]}, -{"id":43993,"name":"Greatring of Collision","icon":"inv_jewelry_ring_66","type":11,"stats":[0,20,102,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}]}, -{"id":43994,"name":"Belabored Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[85,0,150,0,0,42,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":43995,"name":"Enamored Cowl","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,121,85,79,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":43996,"name":"Sabatons of Firmament","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,110,67,40,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":43998,"name":"Chestguard of Flagrant Prowess","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,84,151,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":43999,"name":"Ring of the Empty Horizon","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,82,48,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true}, -{"id":44000,"name":"Dragonstorm Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,61,58,0,0,0,0,0,0,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}]}, -{"id":44002,"name":"The Sanctum's Flowing Vestments","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,85,51,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}]}, -{"id":44003,"name":"Upstanding Spaulders","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,66,83,0,0,0,75,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1255,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}]}, -{"id":44004,"name":"Bountiful Gauntlets","icon":"inv_gauntlets_69","type":7,"armorType":3,"stats":[0,0,108,67,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}]}, -{"id":44005,"name":"Pennant Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,92,55,0,0,34,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}]}, -{"id":44006,"name":"Obsidian Greathelm","icon":"inv_helmet_95","type":1,"armorType":4,"stats":[98,0,145,0,0,0,76,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}]}, -{"id":44007,"name":"Headpiece of Reconciliation","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,161,97,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}]}, -{"id":44008,"name":"Unsullied Cuffs","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,92,55,42,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}]}, -{"id":44011,"name":"Leggings of the Honored","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,98,169,0,0,66,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}]}, -{"id":44013,"name":"Cannoneer's Fuselighter","icon":"inv_gizmo_elementalblastingpowder","type":12,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13086,"name":"The Last Line Of Defense"}}]}, -{"id":44014,"name":"Fezzik's Pocketwatch","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13086,"name":"The Last Line Of Defense"}}]}, -{"id":44015,"name":"Cannoneer's Morale","icon":"inv_datacrystal08","type":12,"stats":[0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13086,"name":"The Last Line Of Defense"}}]}, -{"id":44016,"name":"Wristguard of the Bone Witch","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,66,34,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13137,"name":"Not-So-Honorable Combat"}}]}, -{"id":44017,"name":"Emeline's Locket","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,42,34,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":12852,"name":"The Admiral Revealed"}}]}, -{"id":44018,"name":"Bridenbrad's Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,66,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13083,"name":"Light Within the Darkness"}}]}, -{"id":44019,"name":"The Argent Skullcap","icon":"inv_helmet_63","type":1,"armorType":1,"stats":[0,0,89,61,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13157,"name":"The Crusaders' Pinnacle"}}]}, -{"id":44020,"name":"Bloodbane's Fall","icon":"inv_misc_cape_19","type":4,"stats":[0,0,50,35,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13164,"name":"The Fate of Bloodbane"}}]}, -{"id":44021,"name":"The Darkspeaker's Footpads","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,68,44,26,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13308,"name":"Mind Tricks"}}]}, -{"id":44022,"name":"The Witching Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,38,34,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13142,"name":"Banshee's Revenge"}}]}, -{"id":44023,"name":"Bonecaster's Endgame","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,59,34,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13142,"name":"Banshee's Revenge"}}]}, -{"id":44024,"name":"The Darkspeaker's Treads","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,45,75,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13308,"name":"Mind Tricks"}}]}, -{"id":44025,"name":"Bloodbane Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,35,49,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13164,"name":"The Fate of Bloodbane"}}]}, -{"id":44026,"name":"Bloodbane's Resolve","icon":"inv_misc_cape_14","type":4,"stats":[34,0,51,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13164,"name":"The Fate of Bloodbane"}}]}, -{"id":44027,"name":"Bloodbane Shroud","icon":"inv_misc_cape_12","type":4,"stats":[0,0,59,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13164,"name":"The Fate of Bloodbane"}}]}, -{"id":44028,"name":"Vengance Shiv","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,26,39,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":217,"weaponSpeed":1.5,"ilvl":174,"quality":3,"sources":[{"quest":{"id":13142,"name":"Banshee's Revenge"}}]}, -{"id":44029,"name":"Quickblade of Cold Return","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,0,39,0,0,0,0,0,0,0,26,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.6,"ilvl":174,"quality":3,"sources":[{"quest":{"id":13142,"name":"Banshee's Revenge"}}]}, -{"id":44030,"name":"The Darkspeaker's Sabatons","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,64,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13308,"name":"Mind Tricks"}}]}, -{"id":44031,"name":"The Darkspeaker's Iron Walkers","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[47,0,67,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13308,"name":"Mind Tricks"}}]}, -{"id":44032,"name":"Bulwark of Redemption","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,58,33,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13142,"name":"Banshee's Revenge"}}]}, -{"id":44033,"name":"The Severed Noose of Westwind","icon":"inv_misc_noose_01","type":2,"stats":[0,29,53,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":12852,"name":"The Admiral Revealed"}}]}, -{"id":44034,"name":"Amulet of the Crusade","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,43,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":12852,"name":"The Admiral Revealed"}}]}, -{"id":44035,"name":"Reinforced Titanium Neckguard","icon":"inv_belt_22","type":2,"stats":[34,0,27,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":12852,"name":"The Admiral Revealed"}}]}, -{"id":44036,"name":"Njorndar Furywraps","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,34,63,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13137,"name":"Not-So-Honorable Combat"}}]}, -{"id":44037,"name":"Iskalder's Fate","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,23,63,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13137,"name":"Not-So-Honorable Combat"}}]}, -{"id":44038,"name":"Battlescar Spirebands","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[35,0,48,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13137,"name":"Not-So-Honorable Combat"}}]}, -{"id":44039,"name":"Signet of Bridenbrad","icon":"inv_jewelry_ring_43","type":11,"stats":[0,24,62,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13083,"name":"Light Within the Darkness"}}]}, -{"id":44040,"name":"The Crusader's Resolution","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[43,0,91,0,0,0,0,0,38,60,0,0,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13157,"name":"The Crusaders' Pinnacle"}}]}, -{"id":44041,"name":"Belt of the Never-Forgotten","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,82,45,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13083,"name":"Light Within the Darkness"}}]}, -{"id":44042,"name":"Chained Belt of Remembrance","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,66,45,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13083,"name":"Light Within the Darkness"}}]}, -{"id":44043,"name":"Girdle of Eternal Memory","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,79,45,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13083,"name":"Light Within the Darkness"}}]}, -{"id":44044,"name":"Tirion's Headwrap","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,52,115,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13157,"name":"The Crusaders' Pinnacle"}}]}, -{"id":44045,"name":"Crusader's Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,67,91,0,0,0,33,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13157,"name":"The Crusaders' Pinnacle"}}]}, -{"id":44046,"name":"The Argent Crown","icon":"inv_helmet_122","type":1,"armorType":4,"stats":[0,0,79,67,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13157,"name":"The Crusaders' Pinnacle"}}]}, -{"id":44050,"name":"Mastercraft Kalu'ak Fishing Pole","icon":"inv_fishingpole_03","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":447,"weaponDamageMax":672,"weaponSpeed":3,"ilvl":200,"quality":4,"unique":true}, -{"id":44051,"name":"Traditional Flensing Knife","icon":"inv_weapon_shortblade_87","type":13,"weaponType":2,"handType":2,"stats":[0,29,54,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":1.7,"ilvl":187,"quality":3}, -{"id":44052,"name":"Totemic Purification Rod","icon":"inv_mace_76","type":13,"weaponType":4,"handType":1,"stats":[0,0,72,0,0,0,0,32,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":218,"weaponDamageMax":406,"weaponSpeed":2.6,"ilvl":187,"quality":3}, -{"id":44053,"name":"Whale-Stick Harpoon","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[0,69,134,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":449,"weaponDamageMax":675,"weaponSpeed":3.6,"ilvl":187,"quality":3}, -{"id":44054,"name":"Whale-Skin Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,57,86,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44055,"name":"Whale-Skin Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,83,55,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44057,"name":"Ivory-Reinforced Chestguard","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[43,0,84,0,0,0,0,0,28,56,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44058,"name":"Whalebone Carapace","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[75,0,61,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44059,"name":"Cuttlefish Scale Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,56,99,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44060,"name":"Cuttlefish Tooth Ringmail","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,82,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44061,"name":"Pigment-Stained Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,80,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44062,"name":"Turtle-Minders Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,104,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":3}, -{"id":44063,"name":"Figurine - Monarch Crab","icon":"inv_jewelcrafting_goldencrab","type":12,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":59759}},{"crafted":{"profession":7,"spellId":59759}}]}, -{"id":44073,"name":"Frenzyheart Insignia of Fury","icon":"inv_misc_rune_14","type":12,"stats":[0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44074,"name":"Oracle Talisman of Ablution","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44091,"name":"Sharpened Scarlet Kris","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,29,44,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":1.5,"ilvl":1,"quality":7}, -{"id":44092,"name":"Reforged Truesilver Champion","icon":"inv_sword_19","type":13,"weaponType":9,"handType":4,"stats":[95,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":3.6,"ilvl":1,"quality":7}, -{"id":44093,"name":"Upgraded Dwarven Hand Cannon","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,34,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":316,"weaponDamageMax":588,"weaponSpeed":2.9,"ilvl":1,"quality":7}, -{"id":44094,"name":"The Blessed Hammer of Grace","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":1,"stats":[0,0,37,0,19,0,0,0,0,0,0,0,0,0,395,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.7,"ilvl":1,"quality":7}, -{"id":44095,"name":"Grand Staff of Jordan","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,103,0,0,68,0,0,0,0,0,0,0,0,395,0,68,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":461,"weaponDamageMax":693,"weaponSpeed":3.7,"ilvl":1,"quality":7}, -{"id":44096,"name":"Battleworn Thrash Blade","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":201,"weaponDamageMax":374,"weaponSpeed":2.4,"ilvl":1,"quality":7,"unique":true}, -{"id":44097,"name":"Inherited Insignia of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7,"unique":true,"factionRestriction":2}, -{"id":44098,"name":"Inherited Insignia of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}],"factionRestriction":1}, -{"id":44099,"name":"Strengthened Stockade Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44100,"name":"Pristine Lightforge Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,64,43,0,0,43,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44101,"name":"Prized Beastmaster's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44102,"name":"Aged Pauldrons of The Five Thunders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,76,51,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44103,"name":"Exceptional Stormshroud Shoulders","icon":"inv_shoulder_05","type":3,"armorType":2,"stats":[0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44104,"name":"Fishy Cinch","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44105,"name":"Lasting Feralheart Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,51,51,0,0,34,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44106,"name":"Glitterscale Wrap","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,51,102,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44107,"name":"Exquisite Sunderseer Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,51,51,0,0,34,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":44108,"name":"Shinygem Rod","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,31,22,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":278,"weaponDamageMax":516,"weaponSpeed":1.8,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44109,"name":"Toothslice Helm","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,69,119,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44110,"name":"Sharkjaw Cap","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,116,69,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44111,"name":"Gold Star Spaulders","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[50,0,57,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44112,"name":"Glimmershell Shoulder Protectors","icon":"inv_shoulder_haremmatron_d_01","type":3,"armorType":4,"stats":[50,0,75,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31910,"npcName":"Geen","zoneId":3711}}]}, -{"id":44116,"name":"Muddied Crimson Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44117,"name":"Azure Strappy Pants","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,69,116,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44118,"name":"Stolen Vrykul Harpoon","icon":"inv_spear_03","type":14,"rangedWeaponType":5,"stats":[0,17,59,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":229,"weaponDamageMax":426,"weaponSpeed":2.1,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44120,"name":"Giant-Sized Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[40,0,77,0,0,25,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44121,"name":"Sparkly Shiny Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,88,51,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44122,"name":"Scavenged Feathery Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,122,69,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44123,"name":"Discarded Titanium Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,116,68,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":31911,"npcName":"Tanak","zoneId":3711}}]}, -{"id":44166,"name":"Lightblade Rivener","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,29,44,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":202,"weaponSpeed":1.4,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44167,"name":"Shroud of Dedicated Research","icon":"inv_misc_cape_06","type":4,"stats":[0,0,54,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44170,"name":"Helm of the Majestic Stag","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,116,67,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44171,"name":"Spaulders of Grounded Lightning","icon":"inv_shoulder_97","type":3,"armorType":3,"stats":[0,34,77,0,0,0,34,34,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44173,"name":"Flameheart Spell Scalpel","icon":"inv_sword_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,58,0,0,34,25,0,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":164,"weaponDamageMax":305,"weaponSpeed":1.8,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44174,"name":"Stave of Shrouded Mysteries","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,117,0,0,0,0,0,0,56,0,0,155,155,0,0,0,0,0,0,0,0,0,90,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":392,"weaponDamageMax":589,"weaponSpeed":2.9,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44176,"name":"Girdle of the Warrior Magi","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,84,58,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44179,"name":"Mind-Expanding Leggings","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,78,112,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44180,"name":"Robes of Crackling Flame","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,132,89,66,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44181,"name":"Ghostflicker Waistband","icon":"inv_belt_39","type":8,"armorType":2,"stats":[0,0,99,66,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44182,"name":"Boots of Twinkling Stars","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,42,83,0,0,0,25,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44183,"name":"Fireproven Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[67,0,99,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32287,"npcName":"Archmage Alvareaux","zoneId":4395}}]}, -{"id":44187,"name":"Fang of Truth","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,32,49,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":126,"weaponDamageMax":234,"weaponSpeed":1.5,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44188,"name":"Cloak of Peaceful Resolutions","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[31,0,64,0,0,25,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44189,"name":"Giant Ring Belt","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,51,77,0,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44190,"name":"Spaulders of Frozen Knives","icon":"inv_shoulder_101","type":3,"armorType":2,"stats":[0,50,77,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44191,"name":"Ice-Rimed Chopper","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[80,0,117,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3}, -{"id":44192,"name":"Stalactite Chopper","icon":"inv_axe_30","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,34,26,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":237,"weaponDamageMax":440,"weaponSpeed":2.6,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44193,"name":"Broken Stalactite","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,26,36,0,0,28,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":1.8,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44194,"name":"Giant-Friend Kilt","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,111,77,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44195,"name":"Spaulders of the Giant Lords","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[66,0,64,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32540,"npcName":"Lillehoff","zoneId":67}}]}, -{"id":44196,"name":"Sash of the Wizened Wyrm","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,85,51,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44197,"name":"Bracers of Accorded Courtesy","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,54,39,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44198,"name":"Breastplate of the Solemn Council","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[49,0,117,0,0,0,0,0,56,76,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44199,"name":"Gavel of the Brewing Storm","icon":"inv_mace_60","type":13,"weaponType":4,"handType":1,"stats":[0,0,66,0,0,0,24,25,0,0,0,0,0,0,444,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":389,"weaponSpeed":2.3,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44200,"name":"Ancestral Sinew Wristguards","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,60,43,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44201,"name":"Sabatons of Draconic Vigor","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[44,0,85,0,0,29,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44202,"name":"Sandals of Crimson Fury","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,93,66,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44203,"name":"Dragonfriend Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,50,84,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44204,"name":"Grips of Fierce Pronouncements","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44205,"name":"Legplates of Bloody Reprisal","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[96,0,117,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32533,"npcName":"Cielstrasza","zoneId":65}}]}, -{"id":44210,"name":"Faces of Doom","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,63,42,42,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59498}},{"crafted":{"profession":6,"spellId":59498}}]}, -{"id":44211,"name":"Frostwoven Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":138,"quality":2,"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55904}},{"crafted":{"profession":11,"spellId":55904}}]}, -{"id":44213,"name":"Darkmoon Pendant","icon":"inv_jewelry_amulet_07","type":2,"stats":[0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":12518,"name":"Mages Deck"}}]}, -{"id":44214,"name":"Purifying Torch","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,21,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":459,"weaponSpeed":1.6,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44215,"name":"Darkmoon Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":12518,"name":"Mages Deck"}}]}, -{"id":44216,"name":"Cloak of Holy Extermination","icon":"inv_misc_cape_12","type":4,"stats":[0,39,72,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44217,"name":"Darkmoon Dirk","icon":"inv_sword_31","type":13,"weaponType":2,"handType":2,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":66,"weaponSpeed":1.8,"ilvl":45,"quality":3,"sources":[{"quest":{"id":13311,"name":"Demons Deck"}}]}, -{"id":44218,"name":"Darkmoon Executioner","icon":"inv_axe_03","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":3.5,"ilvl":45,"quality":3,"sources":[{"quest":{"id":13311,"name":"Demons Deck"}}]}, -{"id":44219,"name":"Darkmoon Magestaff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":101,"weaponDamageMax":152,"weaponSpeed":3.2,"ilvl":45,"quality":3,"sources":[{"quest":{"id":13311,"name":"Demons Deck"}}]}, -{"id":44239,"name":"Standard Issue Legguards","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,116,68,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44240,"name":"Special Issue Legplates","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[30,0,102,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44241,"name":"Unholy Persuader","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":3,"stats":[0,30,46,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":210,"weaponDamageMax":390,"weaponSpeed":2.5,"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44242,"name":"Dark Soldier Cape","icon":"inv_misc_cape_21","type":4,"stats":[0,0,64,39,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44243,"name":"Toxin-Tempered Sabatons","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44244,"name":"Argent Skeleton Crusher","icon":"inv_staff_71","type":13,"weaponType":4,"handType":4,"stats":[84,0,100,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":731,"weaponSpeed":3.6,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44245,"name":"Zombie Sweeper Shotgun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,34,0,0,0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":343,"weaponDamageMax":638,"weaponSpeed":2.9,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44247,"name":"Fang-Deflecting Faceguard","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[89,0,87,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44248,"name":"Battle Mender's Helm","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,111,78,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44249,"name":"Runeblade of Demonstrable Power","icon":"inv_sword_95","type":13,"weaponType":9,"handType":4,"stats":[0,63,126,0,0,0,67,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":474,"weaponDamageMax":711,"weaponSpeed":3.5,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44250,"name":"Reaper of Dark Souls","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,0,24,0,0,33,26,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":281,"weaponDamageMax":422,"weaponSpeed":2.7,"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44253,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13326,"name":"Darkmoon Nobles Deck"}}]}, -{"id":44254,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13326,"name":"Darkmoon Nobles Deck"}}]}, -{"id":44255,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"quest":{"id":13326,"name":"Darkmoon Nobles Deck"}}]}, -{"id":44256,"name":"Sterile Flesh-Handling Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44257,"name":"Spaulders of the Black Arrow","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,58,81,0,0,0,33,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44258,"name":"Wound-Binder's Wristguards","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,76,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44283,"name":"Signet of Hopeful Light","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,88,50,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44295,"name":"Polished Regimental Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,89,128,0,0,49,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44296,"name":"Helm of Purified Thoughts","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[0,0,152,72,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44297,"name":"Boots of the Neverending Path","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,61,94,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":30431,"npcName":"Veteran Crusader Aliocha Segard","zoneId":210}}]}, -{"id":44302,"name":"Belt of Dark Mending","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,104,66,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44303,"name":"Darkheart Chestguard","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,90,149,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44305,"name":"Kilt of Dark Mercy","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,0,127,89,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44306,"name":"Death-Inured Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[50,0,73,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"sources":[{"soldBy":{"npcId":32538,"npcName":"Duchess Mynx","zoneId":210}}]}, -{"id":44308,"name":"Signet of Edward the Odd","icon":"inv_jewelry_ring_76","type":11,"stats":[0,49,73,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":44309,"name":"Sash of Jordan","icon":"inv_belt_40","type":8,"armorType":1,"stats":[0,0,95,56,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44310,"name":"Namlak's Supernumerary Sticker","icon":"inv_weapon_shortblade_63","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,32,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":44311,"name":"Avool's Sword of Jin","icon":"inv_sword_109","type":13,"weaponType":9,"handType":2,"stats":[0,38,62,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4}, -{"id":44312,"name":"Wapach's Spaulders of Solidarity","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[53,0,100,0,0,0,0,0,42,58,0,0,0,0,0,0,0,0,0,0,0,0,1753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44313,"name":"Zom's Crackling Bulwark","icon":"inv_shield_34","type":13,"weaponType":7,"handType":3,"stats":[0,0,74,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44322,"name":"Mercurial Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,0,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60396}},{"crafted":{"profession":1,"spellId":60396}}]}, -{"id":44323,"name":"Indestructible Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,75,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60403}},{"crafted":{"profession":1,"spellId":60403}}]}, -{"id":44324,"name":"Mighty Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60405}},{"crafted":{"profession":1,"spellId":60405}}]}, -{"id":44333,"name":"Ghostcrawler's Greaves","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,0,77,66,66,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44334,"name":"Ring of Temerity","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,57,34,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13124,"name":"The Struggle Persists"}}]}, -{"id":44335,"name":"Band of Motivation","icon":"inv_jewelry_ring_33","type":11,"stats":[0,19,77,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13124,"name":"The Struggle Persists"}}]}, -{"id":44336,"name":"Flourishing Band","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,59,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13124,"name":"The Struggle Persists"}}]}, -{"id":44337,"name":"Staunch Signet","icon":"inv_jewelry_ring_12","type":11,"stats":[34,0,51,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13124,"name":"The Struggle Persists"}}]}, -{"id":44338,"name":"Cuffs of Gratitude","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,51,34,26,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13128,"name":"A Wing and a Prayer"}}]}, -{"id":44339,"name":"Soaring Wristwraps","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,51,34,25,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13128,"name":"A Wing and a Prayer"}}]}, -{"id":44340,"name":"Bindings of Raelorasz","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,34,37,0,0,0,25,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13128,"name":"A Wing and a Prayer"}}]}, -{"id":44341,"name":"Bracers of Reverence","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[25,0,51,0,0,19,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13128,"name":"A Wing and a Prayer"}}]}, -{"id":44342,"name":"Tattooed Deerskin Leggings","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,55,88,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{}}]}, -{"id":44343,"name":"Conferred Pantaloons","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,78,58,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{}}]}, -{"id":44344,"name":"Labyrinthine Legguards","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,57,86,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{}}]}, -{"id":44345,"name":"Dalaran Warden's Legplates","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,86,38,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{}}]}, -{"id":44346,"name":"Warchief's Leggings of Wisdom","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,65,47,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44347,"name":"Warchief's Legguards of Heroism","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,77,47,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44348,"name":"Warchief's Leggings of Valor","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,91,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44349,"name":"Warchief's Legplates of Carnage","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[37,0,0,0,0,28,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44350,"name":"Mantle of Thwarted Evil","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,72,41,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"sources":[{"quest":{"id":13187,"name":"The Faceless Ones"}}]}, -{"id":44351,"name":"Shoulderpads of Abhorrence","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,41,80,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"sources":[{"quest":{"id":13187,"name":"The Faceless Ones"}}]}, -{"id":44352,"name":"Shoulderplates of the Abolished","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[42,0,60,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"sources":[{"quest":{"id":13187,"name":"The Faceless Ones"}}]}, -{"id":44353,"name":"Epaulets of the Faceless Ones","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,62,41,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":163,"quality":3,"sources":[{"quest":{"id":13187,"name":"The Faceless Ones"}}]}, -{"id":44354,"name":"Assault Hauberk","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,61,96,0,0,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13413,"name":"Aces High!"}}]}, -{"id":44355,"name":"Incursion Vestments","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,99,57,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{"id":13413,"name":"Aces High!"}}]}, -{"id":44356,"name":"Vest of the Assailant","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,64,100,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{"id":13413,"name":"Aces High!"}}]}, -{"id":44357,"name":"Besieging Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,95,57,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1957,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"sources":[{"quest":{"id":13413,"name":"Aces High!"}}]}, -{"id":44358,"name":"Kilix's Silk Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,44,40,22,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44359,"name":"Don Soto's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,40,61,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44360,"name":"Husk Shard Sabatons","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,40,54,0,0,0,26,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44361,"name":"Greaves of the Traitor","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[40,0,58,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44362,"name":"Expelling Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,1133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44363,"name":"Purging Handguards","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,65,40,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44364,"name":"Wraps of Quelled Bane","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,31,35,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44365,"name":"Gloves of Banished Infliction","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,59,40,29,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{}}]}, -{"id":44366,"name":"Shameful Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,24,30,22,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":13129,"name":"Head Games"}}]}, -{"id":44367,"name":"Scorned Bands","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,29,55,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":13129,"name":"Head Games"}}]}, -{"id":44368,"name":"Accused Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,43,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":13129,"name":"Head Games"}}]}, -{"id":44369,"name":"Disavowed Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,41,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"sources":[{"quest":{"id":13129,"name":"Head Games"}}]}, -{"id":44370,"name":"Mantle of the Intrepid Explorer","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,50,46,46,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13207,"name":"Halls of Stone"}}]}, -{"id":44371,"name":"Shoulderpads of the Adventurer","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,51,46,46,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13207,"name":"Halls of Stone"}}]}, -{"id":44372,"name":"Spaulders of Lost Secrets","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,34,59,0,0,46,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13207,"name":"Halls of Stone"}}]}, -{"id":44373,"name":"Pauldrons of Reconnaissance","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[34,0,69,0,0,0,0,0,24,46,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"sources":[{"quest":{"id":13207,"name":"Halls of Stone"}}]}, -{"id":44374,"name":"Amulet of the Tranquil Mind","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,23,28,20,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":44375,"name":"Razor-Blade Pendant","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[30,0,37,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":44376,"name":"Necklace of Fragmented Light","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,38,28,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":44377,"name":"Woven Steel Necklace","icon":"inv_jewelry_necklace_04","type":2,"stats":[27,0,42,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":151,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":44378,"name":"Mantle of the Flesh Giant","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,80,45,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13235,"name":"The Flesh Giant Champion"}}]}, -{"id":44379,"name":"Shoulderpads of Fleshwerks","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,45,80,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13235,"name":"The Flesh Giant Champion"}}]}, -{"id":44380,"name":"Giant Champion's Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,80,45,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13235,"name":"The Flesh Giant Champion"}}]}, -{"id":44381,"name":"Pauldrons of Morbidus","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,72,45,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{"id":13235,"name":"The Flesh Giant Champion"}}]}, -{"id":44382,"name":"Robes of Refrained Celebration","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"sources":[{"quest":{"id":13219,"name":"Battle at Valhalas: Final Challenge"}}]}, -{"id":44383,"name":"Battleplate of Unheard Ovation","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[70,0,102,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,2213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"sources":[{"quest":{"id":13219,"name":"Battle at Valhalas: Final Challenge"}}]}, -{"id":44384,"name":"Chestguard of Unwanted Success","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,111,66,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"sources":[{"quest":{"id":13219,"name":"Battle at Valhalas: Final Challenge"}}]}, -{"id":44385,"name":"Tunic of the Unduly Victorious","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":183,"quality":3,"sources":[{"quest":{"id":13219,"name":"Battle at Valhalas: Final Challenge"}}]}, -{"id":44386,"name":"Newt-Eye Ring","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,51,34,28,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44387,"name":"Bat-Wool Signet","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,38,34,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44388,"name":"Frog-Toe Band","icon":"inv_jewelry_ring_44","type":11,"stats":[0,20,68,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44389,"name":"Curative Necklace","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,51,23,36,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":44390,"name":"Venomous Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,20,27,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":44391,"name":"Cast Steel Choker","icon":"inv_jewelry_necklace_14","type":2,"stats":[34,0,51,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":44392,"name":"Necklace of Permeation","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,57,34,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":174,"quality":3}, -{"id":44393,"name":"Polished Zombie Exterminator","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,28,0,0,0,19,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":526,"weaponSpeed":2.8,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44394,"name":"Encrusted Zombie Finger","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,17,15,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":478,"weaponSpeed":1.8,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44395,"name":"Touch of Unlife","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,17,15,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":478,"weaponSpeed":1.8,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44396,"name":"Gloves of the Time Guardian","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,71,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13151,"name":"A Royal Escort"}}]}, -{"id":44397,"name":"Handwraps of Preserved History","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,47,96,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13151,"name":"A Royal Escort"}}]}, -{"id":44398,"name":"Grips of Chronological Events","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,51,78,0,0,0,37,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13151,"name":"A Royal Escort"}}]}, -{"id":44399,"name":"Gauntlets of The Culling","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[52,0,76,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13151,"name":"A Royal Escort"}}]}, -{"id":44400,"name":"Necklace of Calm Skies","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,46,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":13206,"name":"Disarmament"}}],"factionRestriction":2}, -{"id":44401,"name":"Hundred Tooth Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,17,59,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":13206,"name":"Disarmament"}}],"factionRestriction":2}, -{"id":44402,"name":"Tiled-Stone Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[20,0,39,0,0,0,0,0,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":13206,"name":"Disarmament"}}],"factionRestriction":2}, -{"id":44403,"name":"Amulet of Constrained Power","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,36,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"sources":[{"quest":{"id":13206,"name":"Disarmament"}}],"factionRestriction":2}, -{"id":44404,"name":"Bauble-Woven Gown","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,94,69,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13131,"name":"Junk in My Trunk"}}]}, -{"id":44405,"name":"Exotic Leather Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,69,132,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13131,"name":"Junk in My Trunk"}}]}, -{"id":44406,"name":"Gilded Ringmail Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,69,89,0,0,0,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13131,"name":"Junk in My Trunk"}}]}, -{"id":44407,"name":"Silver-Plated Battlechest","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[60,0,103,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13131,"name":"Junk in My Trunk"}}]}, -{"id":44408,"name":"Cowl of the Vindictive Captain","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,116,69,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13132,"name":"Vengeance Be Mine!"}}]}, -{"id":44409,"name":"Headguard of Retaliation","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,69,134,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13132,"name":"Vengeance Be Mine!"}}]}, -{"id":44410,"name":"Helmet of Just Retribution","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,46,120,0,0,0,49,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13132,"name":"Vengeance Be Mine!"}}]}, -{"id":44411,"name":"Platehelm of Irate Revenge","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,115,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13132,"name":"Vengeance Be Mine!"}}]}, -{"id":44412,"name":"Faceguard of Punishment","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[70,0,102,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":3,"sources":[{"quest":{"id":13132,"name":"Vengeance Be Mine!"}}]}, -{"id":44415,"name":"Savage Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,0,0,66,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3}, -{"id":44416,"name":"Savage Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,66,0,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":406,"weaponSpeed":2,"ilvl":200,"quality":3}, -{"id":44417,"name":"Hateful Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,0,0,75,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2,"ilvl":200,"quality":4}, -{"id":44418,"name":"Hateful Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,75,0,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":2,"ilvl":200,"quality":4}, -{"id":44419,"name":"Deadly Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,0,0,85,0,0,0,0,0,0,577,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2,"ilvl":213,"quality":4}, -{"id":44420,"name":"Deadly Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,85,0,0,0,0,0,0,0,0,577,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":489,"weaponSpeed":2,"ilvl":213,"quality":4}, -{"id":44421,"name":"Furious Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,0,0,86,0,0,0,0,0,0,689,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2,"ilvl":238,"quality":4}, -{"id":44422,"name":"Furious Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,86,0,0,0,0,0,0,0,0,689,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2,"ilvl":238,"quality":4}, -{"id":44423,"name":"Relentless Gladiator's War Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,0,0,99,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2,"ilvl":245,"quality":4}, -{"id":44424,"name":"Relentless Gladiator's Focus Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,99,0,0,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2,"ilvl":245,"quality":4}, -{"id":44429,"name":"Volanthius Shroud","icon":"inv_misc_cape_07","type":4,"stats":[0,0,42,28,0,0,19,18,0,0,0,0,0,0,0,0,28,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":44431,"name":"Cloak of Certain Reprieve","icon":"inv_misc_cape_07","type":4,"stats":[0,0,52,28,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":156,"quality":4}, -{"id":44436,"name":"Dark Frostscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,39,69,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60601}},{"crafted":{"profession":8,"spellId":60601}}]}, -{"id":44437,"name":"Dark Frostscale Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,55,98,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60604}},{"crafted":{"profession":8,"spellId":60604}}]}, -{"id":44438,"name":"Dragonstompers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,46,64,0,0,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60605}},{"crafted":{"profession":8,"spellId":60605}}]}, -{"id":44440,"name":"Dark Iceborne Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,78,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60611}},{"crafted":{"profession":8,"spellId":60611}}]}, -{"id":44441,"name":"Dark Iceborne Chestguard","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,84,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60613}},{"crafted":{"profession":8,"spellId":60613}}]}, -{"id":44442,"name":"Bugsquashers","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,64,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60620}},{"crafted":{"profession":8,"spellId":60620}}]}, -{"id":44443,"name":"Dark Nerubian Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,110,57,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":167,"quality":3,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60627}},{"crafted":{"profession":8,"spellId":60627}}]}, -{"id":44444,"name":"Dark Nerubian Chestpiece","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,114,60,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":171,"quality":3,"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60629}},{"crafted":{"profession":8,"spellId":60629}}]}, -{"id":44445,"name":"Scaled Icewalkers","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,64,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60630}},{"crafted":{"profession":8,"spellId":60630}}]}, -{"id":44504,"name":"Nesingwary 4000","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,39,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":365,"weaponDamageMax":679,"weaponSpeed":2.8,"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":60874}},{"crafted":{"profession":4,"spellId":60874}}]}, -{"id":44505,"name":"Dustbringer","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":117,"weaponDamageMax":219,"weaponSpeed":1.4,"ilvl":187,"quality":3}, -{"id":44579,"name":"Medallion of Heroism","icon":"inv_jewelry_talisman_07","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"unique":true,"factionRestriction":2}, -{"id":44583,"name":"Warchief's Legguards of Brutality","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,47,82,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44590,"name":"Warchief's Leggings of Foresight","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,47,66,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":2}, -{"id":44591,"name":"Wrynn's Leggings of Foresight","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,47,66,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44592,"name":"Wrynn's Leggings of Valor","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,91,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44593,"name":"Wrynn's Leggings of Wisdom","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,65,47,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44594,"name":"Wrynn's Legguards of Brutality","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,47,82,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44595,"name":"Wrynn's Legguards of Heroism","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,77,47,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44596,"name":"Wrynn's Legplates of Carnage","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[37,0,0,0,0,28,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"factionRestriction":1}, -{"id":44597,"name":"Medallion of Heroism","icon":"inv_jewelry_talisman_07","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":146,"quality":3,"unique":true,"factionRestriction":1}, -{"id":44635,"name":"Dalaran Rifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":1.5,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29476,"npcName":"Dagna Flintlock","zoneId":4395}}]}, -{"id":44636,"name":"Dalaran Cudgel","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.5,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29497,"npcName":"Walther Whiteford","zoneId":4395}}]}, -{"id":44637,"name":"Dalaran Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":145,"weaponSpeed":2,"ilvl":80,"quality":1}, -{"id":44638,"name":"Dalaran Sword","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":1.4,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":28991,"npcName":"Valaden Silverblade","zoneId":4395}}]}, -{"id":44639,"name":"Dalaran Greatsword","icon":"inv_sword_40","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":2.1,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":28991,"npcName":"Valaden Silverblade","zoneId":4395}}]}, -{"id":44640,"name":"Dalaran Great Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":70,"weaponDamageMax":131,"weaponSpeed":1.8,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29496,"npcName":"Kerta the Bold","zoneId":4395}}]}, -{"id":44641,"name":"Dalaran Knuckles","icon":"inv_gauntlets_11","type":13,"weaponType":3,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.3,"ilvl":80,"quality":1,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":44642,"name":"Dalaran Axe","icon":"inv_axe_30","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.5,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29496,"npcName":"Kerta the Bold","zoneId":4395}}]}, -{"id":44643,"name":"Dalaran Bow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":62,"weaponDamageMax":116,"weaponSpeed":1.6,"ilvl":80,"quality":1}, -{"id":44644,"name":"Dalaran Dart","icon":"inv_throwingknife_03","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.2,"ilvl":80,"quality":1,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":44645,"name":"Dalaran Hammer","icon":"inv_mace_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":145,"weaponSpeed":2,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29497,"npcName":"Walther Whiteford","zoneId":4395}}]}, -{"id":44647,"name":"Violet Hat","icon":"inv_helmet_27","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":29702,"npcName":"Chameli Banaphash","zoneId":4395}}]}, -{"id":44648,"name":"Purple Turban","icon":"inv_helmet_62","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":29702,"npcName":"Chameli Banaphash","zoneId":4395}}]}, -{"id":44649,"name":"Crystalbark's Toenail","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":159,"quality":3}, -{"id":44652,"name":"Dalaran Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.3,"ilvl":80,"quality":1,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":44654,"name":"Dalaran Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":145,"weaponSpeed":2,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29496,"npcName":"Kerta the Bold","zoneId":4395}}]}, -{"id":44655,"name":"Dalaran Stave","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":145,"weaponSpeed":2,"ilvl":80,"quality":1,"sources":[{"soldBy":{"npcId":29494,"npcName":"Shen Kang Cheng","zoneId":4395}}]}, -{"id":44657,"name":"Torque of the Red Dragonflight","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,80,48,38,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":44658,"name":"Chain of the Ancient Wyrm","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,80,48,0,30,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":44659,"name":"Pendant of the Dragonsworn","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,38,95,0,0,0,35,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":44660,"name":"Drakescale Collar","icon":"inv_jewelry_necklace_05","type":2,"stats":[56,0,72,0,0,0,0,0,0,24,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":44661,"name":"Wyrmrest Necklace of Power","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,89,55,0,33,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"sources":[{"quest":{"id":13385,"name":"Heroic Judgment at the Eye of Eternity"}}]}, -{"id":44662,"name":"Life-Binder's Locket","icon":"inv_jewelry_talisman_09","type":2,"stats":[0,0,89,55,40,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"sources":[{"quest":{"id":13385,"name":"Heroic Judgment at the Eye of Eternity"}}]}, -{"id":44664,"name":"Favor of the Dragon Queen","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,42,109,0,0,0,41,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"sources":[{"quest":{"id":13385,"name":"Heroic Judgment at the Eye of Eternity"}}]}, -{"id":44665,"name":"Nexus War Champion Beads","icon":"inv_jewelry_necklace_02","type":2,"stats":[63,0,94,0,0,0,0,0,0,28,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"sources":[{"quest":{"id":13385,"name":"Heroic Judgment at the Eye of Eternity"}}]}, -{"id":44666,"name":"Fumblub's Seat Cushion","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":159,"quality":3}, -{"id":44667,"name":"Mammoth-Hair Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":159,"quality":3}, -{"id":44668,"name":"Egg-Warming Blanket","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":159,"quality":3}, -{"id":44669,"name":"Worgen-Scored Shackles","icon":"inv_bracer_28","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":159,"quality":3}, -{"id":44670,"name":"Soul-Sealed Belt","icon":"inv_belt_36","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1020,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":159,"quality":3}, -{"id":44671,"name":"Highlord's Padded Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":167,"quality":3}, -{"id":44672,"name":"Seal-Fur Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":167,"quality":3}, -{"id":44673,"name":"Mammoth-Riding Boots","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":167,"quality":3}, -{"id":44674,"name":"Ichor-Stained Wraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":167,"quality":3}, -{"id":44675,"name":"Rock-Giant's Pinky Cover","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":167,"quality":3}, -{"id":44676,"name":"Syreian's Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":167,"quality":3}, -{"id":44677,"name":"Eternal Observer's Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,1823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":174,"quality":3}, -{"id":44678,"name":"Wine Glass","icon":"inv_drink_22","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":44679,"name":"Red Wine Glass","icon":"inv_drink_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":44681,"name":"Titanium Brain-Gear","icon":"inv_misc_gear_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":183,"quality":3,"unique":true}, -{"id":44682,"name":"Time-Forward Talisman","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":183,"quality":3}, -{"id":44683,"name":"King's Eyesocket","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":175,"quality":3,"unique":true}, -{"id":44685,"name":"Calcified Web Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":175,"quality":3}, -{"id":44686,"name":"Ethereal Terror Handwraps","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":175,"quality":3}, -{"id":44687,"name":"Loque'Nahak's Pelt","icon":"inv_misc_cape_21","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":175,"quality":3}, -{"id":44688,"name":"Loque'Nahak's Severed Fang","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":175,"quality":3}, -{"id":44691,"name":"Aotona's Collar","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":175,"quality":3}, -{"id":44692,"name":"Dalaran Nurse's Gown","icon":"inv_chest_cloth_12","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":29628,"npcName":"Angelique Butler","zoneId":4395}}]}, -{"id":44695,"name":"Corroded Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":183,"quality":3}, -{"id":44696,"name":"Giant's Toewrap","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":183,"quality":3}, -{"id":44697,"name":"Val'kyr Vestments","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":183,"quality":3}, -{"id":44703,"name":"Dark Herring","icon":"inv_misc_fish_64","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":146,"weaponDamageMax":271,"weaponSpeed":1.9,"ilvl":187,"quality":2}, -{"id":44708,"name":"Dirkee's Superstructure","icon":"inv_gizmo_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,99,0,0,0,44,59,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":618,"weaponSpeed":3.3,"ilvl":187,"quality":3}, -{"id":44731,"name":"Bouquet of Ebon Roses","icon":"inv_jewelry_talisman_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":2,"unique":true}, -{"id":44732,"name":"Azure Dragonleather Helm","icon":"inv_helmet_86","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":183,"quality":3}, -{"id":44734,"name":"Hammer of Quiet Mourning","icon":"inv_mace_61","type":13,"weaponType":4,"handType":1,"stats":[26,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":233,"weaponSpeed":1.6,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12857,"name":"Wanted: Ragemane's Flipper"}}]}, -{"id":44735,"name":"Crescent of Brooding Fury","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[20,0,39,0,0,0,0,0,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":378,"weaponSpeed":2.6,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12857,"name":"Wanted: Ragemane's Flipper"}}]}, -{"id":44736,"name":"Sword of Heartwrenching Slaughter","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[25,0,39,0,0,0,0,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":247,"weaponSpeed":1.7,"ilvl":175,"quality":3,"sources":[{"quest":{"id":12857,"name":"Wanted: Ragemane's Flipper"}}]}, -{"id":44737,"name":"Draenic Silk Robes","icon":"inv_chest_cloth_26","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":32638,"npcName":"Hakmud of Argus"}}]}, -{"id":44740,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-89,-51,-40,-26,-20,-18,-5],"ilvl":183,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61481}},{"crafted":{"profession":4,"spellId":61481}}]}, -{"id":44741,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-50,-40,-36,-26,-20,-18,-5],"ilvl":183,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61482}},{"crafted":{"profession":4,"spellId":61482}}]}, -{"id":44742,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-99,-56,-41,-17,-14,-5],"ilvl":183,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61483}},{"crafted":{"profession":4,"spellId":61483}}]}, -{"id":44743,"name":"Cultist Acolyte's Hood","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":1}, -{"id":44745,"name":"Blade of the Empty Void","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[24,0,41,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.6,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44746,"name":"Knife of the Tarnished Soul","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,25,29,0,0,0,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":260,"weaponSpeed":1.8,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44747,"name":"Hammer of Wrenching Change","icon":"inv_mace_59","type":13,"weaponType":4,"handType":1,"stats":[0,0,55,0,20,0,14,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":163,"weaponDamageMax":303,"weaponSpeed":2.1,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44748,"name":"Stave of Youthful Sorrow","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,99,0,0,44,67,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":358,"weaponDamageMax":537,"weaponSpeed":3.1,"ilvl":174,"quality":3,"sources":[{"quest":{}}]}, -{"id":44785,"name":"Pilgrim's Dress","icon":"inv_chest_cloth_51","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":44788,"name":"Pilgrim's Boots","icon":"inv_boots_cloth_17","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":44800,"name":"Spring Robes","icon":"inv_chest_cloth_13","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"zoneId":12}}]}, -{"id":44802,"name":"Borrowed Egg Basket","icon":"inv_misc_easterbasket","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":44803,"name":"Spring Circlet","icon":"inv_misc_rabbit_ears","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"zoneId":12}}]}, -{"id":44869,"name":"Frenzyheart Insignia of Fury","icon":"inv_misc_rune_14","type":12,"stats":[0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44870,"name":"Oracle Talisman of Ablution","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":44891,"name":"Titan-Forged Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44892,"name":"Titan-Forged Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44893,"name":"Titan-Forged Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,757,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44894,"name":"Titan-Forged Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44895,"name":"Titan-Forged Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[58,0,99,0,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44896,"name":"Titan-Forged Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44897,"name":"Titan-Forged Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44898,"name":"Titan-Forged Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,50,99,0,0,44,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44899,"name":"Titan-Forged Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,555,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44900,"name":"Titan-Forged Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,555,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44901,"name":"Titan-Forged Plate Headcover of Salvation","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44902,"name":"Titan-Forged Plate Helm of Triumph","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[74,0,133,0,0,44,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44903,"name":"Titan-Forged Chain Helm of Triumph","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,65,134,0,0,36,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44904,"name":"Titan-Forged Mail Helm of Dominance","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44905,"name":"Titan-Forged Ringmail Helm of Salvation","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44906,"name":"Titan-Forged Leather Helm of Salvation","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44907,"name":"Titan-Forged Leather Helm of Dominance","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44908,"name":"Titan-Forged Leather Helm of Triumph","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44909,"name":"Titan-Forged Hood of Salvation","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44910,"name":"Titan-Forged Hood of Dominance","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44912,"name":"Flow of Knowledge","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44914,"name":"Anvil of Titans","icon":"trade_blacksmithing","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":44930,"name":"Windripper Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,97,66,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":62176}},{"crafted":{"profession":8,"spellId":62176}}]}, -{"id":44931,"name":"Windripper Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,0,131,90,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":62177}},{"crafted":{"profession":8,"spellId":62177}}]}, -{"id":44934,"name":"Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,75,50,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":44935,"name":"Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[50,0,75,0,0,0,34,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":44949,"name":"Unbreakable Healing Amplifiers","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":62271}},{"crafted":{"profession":4,"spellId":62271}}]}, -{"id":45044,"name":"Cloak of Cenarius","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"sources":[{"quest":{"id":13626,"name":"Respect for the Fallen"}}]}, -{"id":45052,"name":"Gruffscale Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2}, -{"id":45061,"name":"Foam Sword","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"unique":true}, -{"id":45067,"name":"Egg Basket","icon":"inv_misc_easterbasket","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":45073,"name":"Spring Flowers","icon":"inv_misc_roses_01","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":2,"ilvl":1,"quality":1,"sources":[{"soldBy":{"zoneId":12}}]}, -{"id":45074,"name":"Claymore of the Prophet","icon":"inv_sword_143","type":13,"weaponType":9,"handType":4,"stats":[101,0,104,0,0,67,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":492,"weaponDamageMax":739,"weaponSpeed":3.3,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45075,"name":"Ironforge Smasher","icon":"inv_mace_29","type":13,"weaponType":4,"handType":2,"stats":[0,39,48,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45076,"name":"Teldrassil Protector","icon":"inv_axe_107","type":13,"weaponType":1,"handType":2,"stats":[29,0,43,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.7,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45077,"name":"Dagger of the Rising Moon","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":2,"stats":[0,0,43,0,0,38,22,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":293,"weaponSpeed":1.7,"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45078,"name":"Dagger of Lunar Purity","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":1,"stats":[0,0,64,0,38,0,0,30,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}]}, -{"id":45085,"name":"Titansteel Spellblade","icon":"inv_sword_73","type":13,"weaponType":2,"handType":1,"stats":[0,0,34,0,0,30,53,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":251,"weaponDamageMax":467,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63182}},{"crafted":{"profession":2,"spellId":63182}}]}, -{"id":45086,"name":"Rising Sun","icon":"inv_throwingknife_08","type":14,"rangedWeaponType":5,"stats":[0,26,73,0,0,25,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":350,"weaponDamageMax":525,"weaponSpeed":1.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45106,"name":"Strength of the Automaton","icon":"inv_jewelry_ring_58","type":11,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45107,"name":"Iron Riveted War Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,137,0,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45108,"name":"Mechanist's Bindings","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,63,95,0,0,0,39,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45109,"name":"Gloves of the Fiery Behemoth","icon":"inv_gauntlets_51","type":7,"armorType":3,"stats":[0,84,100,0,0,0,77,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45110,"name":"Titanguard","icon":"inv_sword_132","type":13,"weaponType":9,"handType":2,"stats":[39,0,82,0,0,29,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.6,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45111,"name":"Mimiron's Inferno Couplings","icon":"inv_bracer_28","type":6,"armorType":4,"stats":[49,0,99,0,0,36,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45112,"name":"The Leviathan's Coil","icon":"inv_jewelry_ring_71","type":11,"stats":[67,0,99,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45113,"name":"Glowing Ring of Reclamation","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,90,63,44,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45114,"name":"Steamcaller's Totem","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,54,36,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45115,"name":"Leviathan Fueling Manual","icon":"inv_offhand_ulduarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,89,64,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45116,"name":"Freya's Choker of Warding","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,89,63,46,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45117,"name":"Constructor's Handwraps","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,125,85,53,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45118,"name":"Steamworker's Goggles","icon":"inv_helmet_47","type":1,"armorType":3,"stats":[0,0,161,97,56,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45119,"name":"Embrace of the Leviathan","icon":"inv_belt_49","type":8,"armorType":1,"stats":[0,0,119,85,62,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}]}, -{"id":45120,"name":"Basic Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3,"ilvl":1,"quality":1}, -{"id":45128,"name":"Silvery Sylvan Stave","icon":"inv_staff_96","type":13,"weaponType":8,"handType":4,"stats":[0,103,149,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":418,"weaponDamageMax":627,"weaponSpeed":2.8,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45129,"name":"Gnomeregan Bonechopper","icon":"inv_sword_58","type":13,"weaponType":9,"handType":1,"stats":[0,0,82,0,0,29,22,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":210}}]}, -{"id":45130,"name":"Blunderbuss of Khaz Modan","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,32,39,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":432,"weaponDamageMax":649,"weaponSpeed":2.9,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45131,"name":"Jouster's Fury","icon":"inv_banner_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45132,"name":"Golden Saronite Dragon","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":1,"stats":[0,32,89,0,0,40,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":447,"weaponDamageMax":671,"weaponSpeed":2.7,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45133,"name":"Pendant of Fiery Havoc","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,103,64,0,46,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45134,"name":"Plated Leggings of Ruination","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[107,0,191,0,0,0,97,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2134,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45135,"name":"Boots of Fiery Resolution","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,135,87,64,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45136,"name":"Shoulderpads of Dormant Energies","icon":"inv_shoulder_84","type":3,"armorType":2,"stats":[0,0,139,79,56,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45137,"name":"Veranus' Bane","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[29,0,60,0,0,21,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":472,"weaponDamageMax":877,"weaponSpeed":2.9,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45138,"name":"Drape of the Drakerider","icon":"inv_misc_cape_12","type":4,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45139,"name":"Dragonslayer's Brace","icon":"inv_belt_34","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45140,"name":"Razorscale Shoulderguards","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,121,85,50,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45141,"name":"Proto-Hide Leggings","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,105,158,0,0,0,86,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45142,"name":"Remorse","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[0,52,80,0,0,0,0,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45143,"name":"Saronite Mesh Legguards","icon":"inv_pants_plate_25","type":9,"armorType":3,"stats":[0,97,155,0,0,0,98,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45144,"name":"Sigil of Deflection","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[36,0,54,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45145,"name":"Libram of the Sacred Shield","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[36,0,54,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45146,"name":"Shackles of the Odalisque","icon":"inv_bracer_27","type":6,"armorType":1,"stats":[0,0,82,63,49,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45147,"name":"Guiding Star","icon":"inv_mace_89","type":13,"weaponType":4,"handType":1,"stats":[0,0,81,0,38,0,0,49,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":438,"weaponSpeed":1.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45148,"name":"Living Flame","icon":"spell_fire_burnout","type":12,"stats":[0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45149,"name":"Bracers of the Broodmother","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,92,63,49,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45150,"name":"Collar of the Wyrmhunter","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,162,97,0,51,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45151,"name":"Belt of the Fallen Wyrm","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,122,85,0,0,49,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45152,"name":"Pendant of Azure Dreams","icon":"inv_jewelry_necklace_16","type":2,"stats":[43,0,57,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45153,"name":"Susurrating Shell Necklace","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,47,77,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45154,"name":"Necklace of Valiant Blood","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,48,43,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45155,"name":"Choker of Spiral Focus","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,64,44,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45156,"name":"Sash of Shattering Hearts","icon":"inv_belt_42b","type":8,"armorType":1,"stats":[0,0,76,57,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45157,"name":"Cindershard Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,63,88,0,0,42,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45158,"name":"Heart of Iron","icon":"inv_spiritshard_01","type":12,"stats":[0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45159,"name":"Treads of Nimble Evasion","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,58,84,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45160,"name":"Girdle of Valorous Defeat","icon":"inv_belt_36","type":8,"armorType":4,"stats":[50,0,75,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45161,"name":"Girdle of Embers","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[86,0,126,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45162,"name":"Flamestalker Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,85,118,0,0,0,62,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45163,"name":"Stanchions of Unseatable Furor","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45164,"name":"Helm of the Furnace Master","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,97,134,0,0,0,95,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45165,"name":"Worldcarver","icon":"inv_axe_102","type":13,"weaponType":1,"handType":4,"stats":[120,0,179,0,0,0,0,74,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":991,"weaponSpeed":3.4,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45166,"name":"Charred Saronite Greaves","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[66,0,134,0,0,49,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45167,"name":"Lifeforge Breastplate","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,169,105,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45168,"name":"Pyrelight Circle","icon":"inv_jewelry_ring_71","type":11,"stats":[0,0,95,63,0,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45169,"name":"Totem of the Dancing Flame","icon":"inv_misc_herb_flamecap","type":14,"rangedWeaponType":4,"stats":[0,36,54,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45170,"name":"Scepter of Creation","icon":"inv_wand_29","type":14,"rangedWeaponType":6,"stats":[0,0,59,38,25,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":487,"weaponDamageMax":906,"weaponSpeed":2,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45171,"name":"Intensity","icon":"inv_staff_95","type":13,"weaponType":8,"handType":4,"stats":[0,0,215,0,0,120,86,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":407,"weaponDamageMax":612,"weaponSpeed":2.1,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45176,"name":"Foam Sword","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"unique":true}, -{"id":45177,"name":"Foam Sword","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"unique":true}, -{"id":45178,"name":"Foam Sword","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"unique":true}, -{"id":45179,"name":"Foam Sword","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"unique":true}, -{"id":45181,"name":"Wrap of the Everliving Tree","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,104,62,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45182,"name":"Gauntlets of Shattered Pride","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,104,59,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45183,"name":"Treads of the Glorious Spirit","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,82,61,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45184,"name":"Cinch of Bonded Servitude","icon":"inv_belt_44c","type":8,"armorType":3,"stats":[0,58,90,0,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":1}, -{"id":45185,"name":"Flamewrought Cinch","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,119,85,62,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45186,"name":"Soot-Covered Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,121,77,0,52,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45187,"name":"Wristguards of the Firetender","icon":"inv_bracer_24","type":6,"armorType":3,"stats":[0,0,92,63,36,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}]}, -{"id":45193,"name":"Insurmountable Fervor","icon":"inv_jewelry_necklace_33","type":2,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45203,"name":"Grimhorn Crusher","icon":"inv_mace_81","type":13,"weaponType":4,"handType":2,"stats":[0,39,48,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":2.6,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45204,"name":"Axe of the Sen'jin Protector","icon":"inv_axe_108","type":13,"weaponType":1,"handType":2,"stats":[29,0,43,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.7,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45205,"name":"Greatsword of the Sin'dorei","icon":"inv_weapon_shortblade_98","type":13,"weaponType":9,"handType":4,"stats":[101,0,104,0,0,67,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":492,"weaponDamageMax":739,"weaponSpeed":3.3,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45206,"name":"Choker of Feral Fury","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,47,77,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45207,"name":"Necklace of Stolen Skulls","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,64,44,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45208,"name":"Blade of the Keening Banshee","icon":"inv_sword_61","type":13,"weaponType":9,"handType":1,"stats":[0,0,82,0,0,29,22,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":180,"weaponDamageMax":336,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":210}}]}, -{"id":45209,"name":"Sash of Trumpeted Pride","icon":"inv_belt_38c","type":8,"armorType":1,"stats":[0,0,76,57,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45210,"name":"Sen'jin Beakblade Longrifle","icon":"inv_weapon_rifle_34","type":14,"rangedWeaponType":3,"stats":[0,32,39,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":432,"weaponDamageMax":649,"weaponSpeed":2.9,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45211,"name":"Waistguard of Equine Fury","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,104,62,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45212,"name":"Staff of Feral Furies","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,103,149,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":418,"weaponDamageMax":627,"weaponSpeed":2.8,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45213,"name":"Pendant of Emerald Crusader","icon":"inv_jewelry_necklace_42","type":2,"stats":[0,0,48,43,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45214,"name":"Scalpel of the Royal Apothecary","icon":"inv_weapon_shortblade_76","type":13,"weaponType":2,"handType":1,"stats":[0,0,64,0,38,0,0,30,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":1.5,"ilvl":200,"quality":4,"sources":[{"soldBy":{"zoneId":210}}]}, -{"id":45215,"name":"Links of Unquenched Savagery","icon":"inv_belt_47c","type":8,"armorType":3,"stats":[0,58,90,0,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45216,"name":"Gauntlets of Mending Touch","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,104,59,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45217,"name":"Clinch of Savage Fury","icon":"inv_belt_46","type":8,"armorType":4,"stats":[50,0,75,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45218,"name":"Blood-Caked Stompers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45219,"name":"Jouster's Fury","icon":"inv_banner_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"unique":true,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45220,"name":"Treads of the Earnest Squire","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,58,84,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45221,"name":"Treads of Whispering Dreams","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,82,61,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45222,"name":"Spinal Destroyer","icon":"inv_weapon_shortblade_97","type":13,"weaponType":2,"handType":2,"stats":[0,0,43,0,0,38,22,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":293,"weaponSpeed":1.7,"ilvl":200,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45223,"name":"Razor's Edge Pendant","icon":"inv_jewelry_necklace_34","type":2,"stats":[43,0,57,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"sources":[{"soldBy":{"zoneId":210}}],"factionRestriction":2}, -{"id":45224,"name":"Drape of the Lithe","icon":"inv_misc_cape_02","type":4,"stats":[0,63,95,0,0,36,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45225,"name":"Steelbreaker's Embrace","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[106,0,170,0,0,0,87,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45226,"name":"Ancient Iron Heaume","icon":"inv_helmet_91","type":1,"armorType":4,"stats":[0,0,165,98,0,0,67,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45227,"name":"Iron-Studded Mantle","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,85,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45228,"name":"Handguards of the Enclave","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45232,"name":"Runed Ironhide Boots","icon":"inv_boots_cloth_19","type":10,"armorType":2,"stats":[0,77,123,0,0,0,49,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45233,"name":"Stormrune Edge","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[0,121,180,0,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":991,"weaponSpeed":3.4,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45234,"name":"Rapture","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,0,224,0,121,0,81,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":407,"weaponDamageMax":612,"weaponSpeed":2.1,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45235,"name":"Radiant Seal","icon":"inv_jewelry_ring_64","type":11,"stats":[0,0,95,63,36,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45236,"name":"Unblinking Eye","icon":"inv_misc_gem_lionseye_01","type":2,"stats":[0,0,83,63,41,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45237,"name":"Phaelia's Vestments of the Sprouting Seed","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,161,106,75,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45238,"name":"Overload Legwraps","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,161,113,0,81,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45239,"name":"Runeshaper's Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,125,77,0,0,41,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45240,"name":"Raiments of the Iron Council","icon":"inv_chest_cloth_65","type":5,"armorType":1,"stats":[0,0,165,98,57,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}]}, -{"id":45241,"name":"Belt of Colossal Rage","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[82,0,142,0,0,54,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1372,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45242,"name":"Drape of Mortal Downfall","icon":"inv_misc_cape_13","type":4,"stats":[0,0,103,64,0,41,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45243,"name":"Sapphire Amulet of Renewal","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,107,64,47,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45244,"name":"Greaves of Swift Vengeance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,79,143,0,0,55,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45245,"name":"Shoulderpads of the Intruder","icon":"inv_shoulder_51","type":3,"armorType":2,"stats":[0,87,141,0,0,55,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45246,"name":"Golem-Shard Sticker","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":2,"stats":[0,52,80,0,0,0,34,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45247,"name":"Signet of the Earthshaker","icon":"inv_jewelry_ring_74","type":11,"stats":[67,0,99,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45248,"name":"Clockwork Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[106,0,170,0,0,66,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45249,"name":"Brass-Lined Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,85,100,0,0,0,86,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45250,"name":"Crazed Construct Ring","icon":"inv_jewelry_ring_66","type":11,"stats":[63,0,95,0,0,43,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45251,"name":"Shoulderplates of the Deconstructor","icon":"inv_shoulder_96","type":3,"armorType":4,"stats":[89,0,134,0,0,43,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45252,"name":"Horologist's Wristguards","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,95,63,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45253,"name":"Mantle of Wavering Calm","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,126,85,62,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45254,"name":"Sigil of the Vengeful Heart","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[36,0,54,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45255,"name":"Thunderfall Totem","icon":"spell_nature_diseasecleansingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,54,36,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45256,"name":"Twisted Visage","icon":"inv_staff_95","type":13,"weaponType":8,"handType":4,"stats":[0,120,181,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":466,"weaponDamageMax":700,"weaponSpeed":2.4,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45257,"name":"Quartz Crystal Wand","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,53,38,0,27,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":438,"weaponDamageMax":815,"weaponSpeed":1.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45258,"name":"Sandals of Rash Temperament","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,122,85,0,57,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45259,"name":"Quartz-Studded Harness","icon":"inv_chest_plate19","type":5,"armorType":3,"stats":[0,0,165,97,70,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45260,"name":"Boots of Hasty Revival","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,125,77,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}]}, -{"id":45261,"name":"Giant's Bane","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,38,55,0,0,0,21,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":472,"weaponDamageMax":877,"weaponSpeed":2.9,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45262,"name":"Necklace of Unerring Mettle","icon":"inv_jewelry_necklace_41","type":2,"stats":[67,0,99,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45263,"name":"Wrathstone","icon":"inv_pet_scorchedstone","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45264,"name":"Decimator's Armguards","icon":"inv_bracer_26b","type":6,"armorType":4,"stats":[63,0,95,0,0,38,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45265,"name":"Shoulderpads of the Monolith","icon":"inv_shoulder_51","type":3,"armorType":2,"stats":[0,77,118,0,0,0,48,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45266,"name":"Malice","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,52,81,0,0,0,37,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":327,"weaponDamageMax":608,"weaponSpeed":2.5,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45267,"name":"Saronite Plated Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2088,236,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45268,"name":"Gloves of the Pythonic Guardian","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,121,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45269,"name":"Unfaltering Armguards","icon":"inv_bracer_31a","type":6,"armorType":4,"stats":[0,0,90,55,36,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1044,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45270,"name":"Idol of the Crying Wind","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,54,36,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"classAllowlist":[4,1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45271,"name":"Ironmender","icon":"inv_offhand_ulduarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,93,63,45,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45272,"name":"Robes of the Umbral Brute","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,161,105,0,0,58,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45273,"name":"Handwraps of Plentiful Recovery","icon":"inv_gauntlets_57","type":7,"armorType":1,"stats":[0,0,125,85,56,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45274,"name":"Leggings of the Stoneweaver","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,165,106,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45275,"name":"Bracers of Unleashed Magic","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,99,63,0,36,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}]}, -{"id":45282,"name":"Ironsoul","icon":"inv_mace_94","type":13,"weaponType":4,"handType":4,"stats":[111,0,133,0,0,0,73,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":619,"weaponDamageMax":930,"weaponSpeed":3.5,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}]}, -{"id":45283,"name":"Flamewatch Armguards","icon":"inv_bracer_31a","type":6,"armorType":4,"stats":[50,0,93,0,0,28,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}]}, -{"id":45284,"name":"Kinetic Ripper","icon":"inv_weapon_hand_22","type":13,"weaponType":3,"handType":3,"stats":[0,49,68,0,0,23,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":1.5,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":45285,"name":"Might of the Leviathan","icon":"inv_jewelry_necklace_09","type":2,"stats":[60,0,88,0,0,36,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":45286,"name":"Pyrite Infuser","icon":"spell_frost_fireresistancetotem","type":12,"stats":[0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}]}, -{"id":45287,"name":"Firesoul","icon":"inv_sword_134","type":13,"weaponType":9,"handType":1,"stats":[0,0,102,0,0,34,0,26,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":190,"weaponDamageMax":355,"weaponSpeed":1.6,"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}]}, -{"id":45288,"name":"Firestrider Chestguard","icon":"inv_chest_mail_06","type":5,"armorType":3,"stats":[0,0,158,93,0,0,57,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}]}, -{"id":45289,"name":"Lifespark Visage","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,152,90,45,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":45291,"name":"Combustion Bracers","icon":"inv_bracer_25a","type":6,"armorType":1,"stats":[0,0,87,60,0,32,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}]}, -{"id":45292,"name":"Energy Siphon","icon":"ability_druid_typhoon","type":12,"stats":[0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}]}, -{"id":45293,"name":"Handguards of Potent Cures","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,122,84,57,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45294,"name":"Petrified Ivy Sprig","icon":"inv_wand_29","type":14,"rangedWeaponType":6,"stats":[0,0,41,38,0,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":455,"weaponDamageMax":845,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45295,"name":"Gilded Steel Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[92,0,180,0,0,0,0,0,66,0,104,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45296,"name":"Twirling Blades","icon":"inv_throwingknife_08","type":14,"rangedWeaponType":5,"stats":[0,26,56,0,0,25,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":429,"weaponDamageMax":644,"weaponSpeed":2.1,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45297,"name":"Shimmering Seal","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,95,63,0,42,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45298,"name":"Razorscale Talon","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,38,89,0,0,0,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":2.6,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}]}, -{"id":45299,"name":"Dragonsteel Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[81,0,128,0,0,0,75,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":45300,"name":"Mantle of Fiery Vengeance","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,65,120,0,0,0,83,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45301,"name":"Bracers of the Smothering Inferno","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[0,59,89,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}]}, -{"id":45302,"name":"Treads of the Invader","icon":"inv_boots_mail_01","type":10,"armorType":2,"stats":[0,84,116,0,0,0,63,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}]}, -{"id":45303,"name":"Band of Draconic Guile","icon":"inv_jewelry_ring_04","type":11,"stats":[0,62,87,0,0,0,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":45304,"name":"Stormtempered Girdle","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[59,0,126,0,0,45,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}]}, -{"id":45305,"name":"Breastplate of the Afterlife","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,179,81,60,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}]}, -{"id":45306,"name":"Binding of the Dragon Matriarch","icon":"inv_belt_49a","type":8,"armorType":1,"stats":[0,0,104,78,58,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}]}, -{"id":45307,"name":"Ironscale Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,171,93,76,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":45308,"name":"Eye of the Broodmother","icon":"inv_misc_eye_02","type":12,"stats":[0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}]}, -{"id":45309,"name":"Rifle of the Platinum Guard","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,0,44,0,0,25,31,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":416,"weaponDamageMax":773,"weaponSpeed":2.8,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}]}, -{"id":45310,"name":"Gauntlets of the Iron Furnace","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[62,0,124,0,0,0,43,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}]}, -{"id":45311,"name":"Relentless Edge","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,69,203,0,0,0,80,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":566,"weaponDamageMax":850,"weaponSpeed":3.2,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":45312,"name":"Gloves of Smoldering Touch","icon":"inv_gauntlets_47","type":7,"armorType":2,"stats":[0,88,110,0,0,0,56,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":45313,"name":"Furnace Stone","icon":"inv_shield_59","type":12,"stats":[0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":45314,"name":"Igniter Rod","icon":"inv_offhand_ulduarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,84,55,36,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}]}, -{"id":45315,"name":"Stonerender","icon":"inv_mace_90","type":13,"weaponType":4,"handType":2,"stats":[0,51,77,0,0,0,30,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":1.5,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45316,"name":"Armbraces of the Vibrant Flame","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,66,68,36,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}]}, -{"id":45317,"name":"Shawl of the Caretaker","icon":"inv_misc_cape_09","type":4,"stats":[0,0,88,63,30,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}]}, -{"id":45318,"name":"Drape of Fuming Anger","icon":"inv_misc_cape_22","type":4,"stats":[60,0,88,0,0,0,32,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}]}, -{"id":45319,"name":"Cloak of the Makers","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[49,0,99,0,0,36,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45320,"name":"Shoulderplates of the Eternal","icon":"inv_shoulder_88","type":3,"armorType":4,"stats":[79,0,126,0,0,43,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45321,"name":"Pauldrons of Tempered Will","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,134,79,0,0,43,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}}]}, -{"id":45322,"name":"Cloak of the Iron Council","icon":"inv_misc_cape_21","type":4,"stats":[52,0,95,0,0,0,0,0,26,54,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}]}, -{"id":45324,"name":"Leggings of Swift Reflexes","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,112,160,0,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":45325,"name":"Gloves of the Stonereaper","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,77,126,0,0,65,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45326,"name":"Platinum Band of the Aesir","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[44,0,99,0,0,0,0,0,42,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45327,"name":"Siren's Cry","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,38,57,0,0,0,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45329,"name":"Circlet of True Sight","icon":"inv_jewelry_ring_73","type":1,"armorType":3,"stats":[0,82,159,0,0,71,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}]}, -{"id":45330,"name":"Greaves of Iron Intensity","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[80,0,118,0,0,59,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":45331,"name":"Rune-Etched Nightblade","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[0,49,69,0,0,0,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":167,"weaponDamageMax":310,"weaponSpeed":1.4,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}]}, -{"id":45332,"name":"Stormtip","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":1,"stats":[0,0,64,0,34,0,0,53,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":398,"weaponSpeed":1.8,"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}]}, -{"id":45333,"name":"Belt of the Iron Servant","icon":"inv_belt_46a","type":8,"armorType":3,"stats":[0,0,119,79,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}]}, -{"id":45334,"name":"Unbreakable Chestguard","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[112,0,169,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45335,"name":"Valorous Darkruned Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,86,49,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45336,"name":"Valorous Darkruned Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[86,0,143,0,0,37,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45337,"name":"Valorous Darkruned Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[61,0,126,0,0,0,0,0,36,0,74,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45338,"name":"Valorous Darkruned Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,143,0,0,0,0,0,54,0,104,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45339,"name":"Valorous Darkruned Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,126,0,0,0,0,0,0,65,36,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45340,"name":"Valorous Darkruned Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,158,0,0,0,75,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45341,"name":"Valorous Darkruned Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,55,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45342,"name":"Valorous Darkruned Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[81,0,128,0,0,0,69,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45343,"name":"Valorous Darkruned Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[92,0,158,0,0,0,69,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45344,"name":"Valorous Darkruned Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,118,0,0,43,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45345,"name":"Valorous Nightsong Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,111,71,53,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45346,"name":"Valorous Nightsong Headpiece","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,150,90,55,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45347,"name":"Valorous Nightsong Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,150,90,71,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45348,"name":"Valorous Nightsong Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,150,90,63,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45349,"name":"Valorous Nightsong Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,111,70,53,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45351,"name":"Valorous Nightsong Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,111,71,0,52,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45352,"name":"Valorous Nightsong Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,111,71,45,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45353,"name":"Valorous Nightsong Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,150,90,0,54,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45354,"name":"Valorous Nightsong Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,150,90,55,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45355,"name":"Valorous Nightsong Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,84,132,0,0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45356,"name":"Valorous Nightsong Headguard","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,79,165,0,0,0,74,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45357,"name":"Valorous Nightsong Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,113,145,0,0,0,69,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45358,"name":"Valorous Nightsong Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,96,168,0,0,48,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45359,"name":"Valorous Nightsong Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,75,109,0,0,0,59,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45360,"name":"Valorous Scourgestalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,71,118,0,0,49,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45361,"name":"Valorous Scourgestalker Headpiece","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,90,107,0,0,0,99,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45362,"name":"Valorous Scourgestalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,106,118,0,0,0,92,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45363,"name":"Valorous Scourgestalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,71,118,0,0,47,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45364,"name":"Valorous Scourgestalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,90,159,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45365,"name":"Valorous Kirin Tor Hood","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,133,90,0,64,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin'dor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45367,"name":"Valorous Kirin Tor Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,137,98,0,62,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin'dor Garb","setId":836,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45368,"name":"Valorous Kirin Tor Tunic","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,137,106,46,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin'dor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45369,"name":"Valorous Kirin Tor Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,78,30,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin'dor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45370,"name":"Valorous Aegis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,111,71,46,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45371,"name":"Valorous Aegis Greaves","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,150,90,70,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45372,"name":"Valorous Aegis Headpiece","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[0,0,150,90,0,0,54,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45373,"name":"Valorous Aegis Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45374,"name":"Valorous Aegis Tunic","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[0,0,150,90,70,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45375,"name":"Valorous Aegis Battleplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[92,0,158,0,0,78,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45376,"name":"Valorous Aegis Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,0,59,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45377,"name":"Valorous Aegis Helm","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[103,0,128,0,0,0,64,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45378,"name":"Boots of the Petrified Forest","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,0,116,79,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}]}, -{"id":45379,"name":"Valorous Aegis Legplates","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[92,0,158,0,0,57,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45380,"name":"Valorous Aegis Shoulderplates","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[73,0,118,0,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45381,"name":"Valorous Aegis Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,77,51,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45382,"name":"Valorous Aegis Faceguard","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,83,40,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45383,"name":"Valorous Aegis Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[83,0,112,0,0,0,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45384,"name":"Valorous Aegis Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,72,55,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45385,"name":"Valorous Aegis Shoulderguards","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[83,0,112,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45386,"name":"Valorous Cowl of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,132,90,71,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45387,"name":"Valorous Gloves of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,100,79,57,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45388,"name":"Valorous Leggings of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,137,106,54,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45389,"name":"Valorous Robe of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,151,90,76,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45390,"name":"Valorous Shoulderpads of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,71,37,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45391,"name":"Valorous Circlet of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,137,90,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45392,"name":"Valorous Handwraps of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,89,79,49,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45393,"name":"Valorous Mantle of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,104,71,46,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45394,"name":"Valorous Pants of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,155,90,52,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45395,"name":"Valorous Raiments of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,141,106,0,68,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45396,"name":"Valorous Terrorblade Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,96,146,0,0,0,66,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45397,"name":"Valorous Terrorblade Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,84,107,0,0,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45398,"name":"Valorous Terrorblade Helmet","icon":"inv_helmet_100-tga","type":1,"armorType":2,"stats":[0,106,114,0,0,0,75,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45399,"name":"Valorous Terrorblade Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,100,148,0,0,0,66,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45400,"name":"Valorous Terrorblade Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,84,116,0,0,55,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":45401,"name":"Valorous Worldbreaker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45402,"name":"Valorous Worldbreaker Headpiece","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,150,90,0,0,55,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45403,"name":"Valorous Worldbreaker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,150,90,70,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45404,"name":"Valorous Worldbreaker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,111,71,46,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45405,"name":"Valorous Worldbreaker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,150,90,70,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45406,"name":"Valorous Worldbreaker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45408,"name":"Valorous Worldbreaker Helm","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,150,90,0,55,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45409,"name":"Valorous Worldbreaker Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,150,90,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45410,"name":"Valorous Worldbreaker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,111,71,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45411,"name":"Valorous Worldbreaker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,150,90,0,55,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45412,"name":"Valorous Worldbreaker Faceguard","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,94,115,0,0,0,89,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45413,"name":"Valorous Worldbreaker Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,90,159,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45414,"name":"Valorous Worldbreaker Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,71,118,0,0,0,0,56,41,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45415,"name":"Valorous Worldbreaker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,71,118,0,0,0,52,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45416,"name":"Valorous Worldbreaker War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,90,159,0,0,46,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":45417,"name":"Valorous Deathbringer Hood","icon":"inv_helmet_131","type":1,"armorType":1,"stats":[0,0,141,90,37,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45418,"name":"Lady Maye's Sapphire Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,87,61,44,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}]}, -{"id":45419,"name":"Valorous Deathbringer Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,116,79,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45420,"name":"Valorous Deathbringer Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,151,106,44,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45421,"name":"Valorous Deathbringer Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,138,98,0,68,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45422,"name":"Valorous Deathbringer Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,111,79,0,0,53,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":45423,"name":"Runetouch Wristwraps","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,86,59,29,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}]}, -{"id":45424,"name":"Valorous Siegebreaker Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,49,77,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45425,"name":"Valorous Siegebreaker Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,78,47,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45426,"name":"Valorous Siegebreaker Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[59,0,112,0,0,45,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45427,"name":"Valorous Siegebreaker Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,71,56,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45428,"name":"Valorous Siegebreaker Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[59,0,112,0,0,0,0,0,45,73,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45429,"name":"Valorous Siegebreaker Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,158,0,0,0,57,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45430,"name":"Valorous Siegebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,37,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45431,"name":"Valorous Siegebreaker Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[81,0,128,0,0,0,58,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45432,"name":"Valorous Siegebreaker Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[92,0,158,0,0,72,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45433,"name":"Valorous Siegebreaker Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,118,0,0,46,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":45434,"name":"Greaves of the Rockmender","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,125,77,56,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45435,"name":"Cowl of the Absolute","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,156,114,0,86,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45436,"name":"Libram of the Resolute","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,54,36,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45437,"name":"Runescribed Blade","icon":"inv_sword_134","type":13,"weaponType":9,"handType":1,"stats":[0,0,90,0,37,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":438,"weaponSpeed":1.8,"ilvl":238,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45438,"name":"Ring of the Faithful Servant","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,95,63,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45439,"name":"Unwavering Stare","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,165,98,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45440,"name":"Amice of the Stoic Watch","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45441,"name":"Sandals of the Ancient Keeper","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,119,85,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}]}, -{"id":45442,"name":"Sorthalis, Hammer of the Watchers","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[45,0,79,0,0,0,0,0,32,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":431,"weaponSpeed":1.6,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45443,"name":"Charm of Meticulous Timing","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,103,64,48,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45444,"name":"Gloves of the Steady Hand","icon":"inv_gauntlets_48","type":7,"armorType":3,"stats":[0,79,143,0,0,52,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45445,"name":"Breastplate of the Devoted","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,187,112,0,0,76,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45446,"name":"Grasps of Reason","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,106,64,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45447,"name":"Watchful Eye of Fate","icon":"inv_jewelry_ring_45","type":2,"stats":[0,0,79,63,37,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45448,"name":"Perilous Bite","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,58,75,0,0,39,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":282,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45449,"name":"The Masticator","icon":"inv_weapon_hand_22","type":13,"weaponType":3,"handType":1,"stats":[0,48,79,0,0,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":2.7,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45450,"name":"Northern Barrier","icon":"inv_shield_66","type":13,"weaponType":7,"handType":3,"stats":[44,0,99,0,0,30,0,0,30,67,0,0,0,0,0,0,0,0,0,0,0,0,7046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}]}, -{"id":45451,"name":"Frozen Loop","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,89,63,0,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}]}, -{"id":45452,"name":"Frostplate Greaves","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,165,106,68,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}]}, -{"id":45453,"name":"Winter's Icy Embrace","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,97,126,0,0,0,81,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}]}, -{"id":45454,"name":"Frost-Bound Chain Bracers","icon":"inv_bracer_25","type":6,"armorType":3,"stats":[0,63,95,0,0,40,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}]}, -{"id":45455,"name":"Belt of the Crystal Tree","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,120,84,51,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45456,"name":"Loop of the Agile","icon":"inv_jewelry_ring_71","type":11,"stats":[0,71,82,0,0,0,51,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45457,"name":"Staff of Endless Winter","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,227,0,84,0,104,0,0,0,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":452,"weaponDamageMax":679,"weaponSpeed":2.1,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45458,"name":"Stormedge","icon":"inv_axe_102","type":13,"weaponType":1,"handType":4,"stats":[112,0,132,0,0,102,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":619,"weaponDamageMax":930,"weaponSpeed":3.5,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}]}, -{"id":45459,"name":"Frigid Strength of Hodir","icon":"inv_jewelry_necklace_04","type":2,"stats":[65,0,107,0,0,45,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45460,"name":"Bindings of Winter Gale","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,103,64,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45461,"name":"Drape of Icy Intent","icon":"inv_misc_cape_05","type":4,"stats":[0,64,110,0,0,40,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"phase":2,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45462,"name":"Gloves of the Frozen Glade","icon":"inv_gauntlets_74","type":7,"armorType":2,"stats":[0,0,141,79,56,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,778,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45463,"name":"Vulmir, the Northern Tempest","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,52,80,0,0,37,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":339,"weaponDamageMax":632,"weaponSpeed":2.6,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}]}, -{"id":45464,"name":"Cowl of Icy Breaths","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,142,98,0,60,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}]}, -{"id":45466,"name":"Scale of Fates","icon":"inv_spiritshard_02","type":12,"stats":[0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}]}, -{"id":45467,"name":"Belt of the Betrayed","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,85,99,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}]}, -{"id":45468,"name":"Leggings of Lost Love","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,165,98,86,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}]}, -{"id":45469,"name":"Sif's Promise","icon":"inv_jewelry_ring_54","type":11,"stats":[63,0,95,0,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}]}, -{"id":45470,"name":"Wisdom's Hold","icon":"inv_shield_65","type":13,"weaponType":7,"handType":3,"stats":[0,0,107,64,0,0,40,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7202,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45471,"name":"Fate's Clutch","icon":"inv_jewelry_ring_69","type":11,"stats":[58,0,109,0,0,0,0,0,41,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45472,"name":"Warhelm of the Champion","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[139,0,165,0,0,69,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45473,"name":"Embrace of the Gladiator","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,112,174,0,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45474,"name":"Pauldrons of the Combatant","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,0,139,79,62,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45479,"name":"The Lifebinder","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,0,226,0,80,0,0,120,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":407,"weaponDamageMax":612,"weaponSpeed":2.1,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}]}, -{"id":45480,"name":"Nymph Heart Charm","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,63,99,0,0,36,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}]}, -{"id":45481,"name":"Gauntlets of Ruthless Reprisal","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[86,0,126,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}]}, -{"id":45482,"name":"Leggings of the Lifetender","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,165,98,76,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}]}, -{"id":45483,"name":"Boots of the Servant","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,118,77,48,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}]}, -{"id":45484,"name":"Bladetwister","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,55,72,0,0,0,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":377,"weaponSpeed":1.4,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45485,"name":"Bronze Pendant of the Vanir","icon":"inv_jewelry_necklace_47","type":2,"stats":[80,0,109,0,0,0,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45486,"name":"Drape of the Sullen Goddess","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,103,64,48,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45487,"name":"Handguards of Revitalization","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[96,0,145,0,0,0,0,0,0,66,46,0,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45488,"name":"Leggings of the Enslaved Idol","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,182,104,0,70,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45489,"name":"Insanity's Grip","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":1,"stats":[0,52,83,0,0,0,34,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2.6,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}]}, -{"id":45490,"name":"Pandora's Plea","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}]}, -{"id":45491,"name":"Waistguard of the Creator","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,77,127,0,0,0,43,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}]}, -{"id":45492,"name":"Malleable Steelweave Mantle","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,121,77,56,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}]}, -{"id":45493,"name":"Asimov's Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,82,63,44,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}]}, -{"id":45494,"name":"Delirium's Touch","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":3,"stats":[0,35,93,0,0,0,27,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":421,"weaponSpeed":1.5,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45495,"name":"Conductive Seal","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,93,64,39,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45496,"name":"Titanskin Cloak","icon":"inv_misc_cape_19","type":4,"stats":[54,0,109,0,0,27,0,0,35,80,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45497,"name":"Crown of Luminescence","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,187,112,70,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,780,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45498,"name":"Lotrafen, Spear of the Damned","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,120,169,0,0,0,87,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":660,"weaponDamageMax":991,"weaponSpeed":3.4,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45501,"name":"Boots of the Underdweller","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[86,0,126,0,0,52,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45502,"name":"Helm of the Faceless","icon":"inv_helmet_138","type":1,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,65,59,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45503,"name":"Metallic Loop of the Sufferer","icon":"inv_jewelry_ring_35","type":11,"stats":[0,62,99,0,0,0,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45504,"name":"Darkcore Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,106,170,0,0,52,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45505,"name":"Belt of Clinging Hope","icon":"inv_belt_44b","type":8,"armorType":4,"stats":[0,0,121,85,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45507,"name":"The General's Heart","icon":"inv_misc_ahnqirajtrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45508,"name":"Belt of the Darkspeaker","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,119,77,0,56,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45509,"name":"Idol of the Corruptor","icon":"inv_qirajidol_strife","type":14,"rangedWeaponType":4,"stats":[0,36,54,0,0,0,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,7],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45510,"name":"Libram of Discord","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[36,0,54,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4,10],"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}]}, -{"id":45511,"name":"Scepter of Lost Souls","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,57,38,0,0,18,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":438,"weaponDamageMax":815,"weaponSpeed":1.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45512,"name":"Grips of the Unbroken","icon":"inv_gauntlets_53","type":7,"armorType":2,"stats":[0,0,121,77,64,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45513,"name":"Boots of the Forgotten Depths","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,126,85,50,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45514,"name":"Mantle of the Unknowing","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,118,77,62,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45515,"name":"Ring of the Vacant Eye","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,92,63,0,44,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}]}, -{"id":45516,"name":"Voldrethar, Dark Blade of Oblivion","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[114,0,191,0,0,0,98,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":775,"weaponDamageMax":1163,"weaponSpeed":3.6,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45517,"name":"Pendulum of Infinity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,64,101,0,0,0,48,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45518,"name":"Flare of the Heavens","icon":"spell_holy_summonlightwell","type":12,"stats":[0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45519,"name":"Vestments of the Blind Denizen","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,159,104,78,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45520,"name":"Handwraps of the Vigilant","icon":"inv_gauntlets_71","type":7,"armorType":1,"stats":[0,0,135,79,51,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45521,"name":"Earthshaper","icon":"inv_mace_93","type":13,"weaponType":4,"handType":4,"stats":[120,0,180,0,0,74,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":700,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45522,"name":"Blood of the Old God","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45523,"name":"Garona's Guise","icon":"inv_helmet_100-tga","type":1,"armorType":2,"stats":[0,98,147,0,0,0,0,76,59,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45524,"name":"Chestguard of Insidious Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45525,"name":"Godbane Signet","icon":"inv_jewelry_ring_54","type":11,"stats":[0,46,118,0,0,0,42,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45527,"name":"Soulscribe","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":1,"stats":[0,0,96,0,0,0,28,48,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":438,"weaponSpeed":1.8,"ilvl":238,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45529,"name":"Shawl of Haunted Memories","icon":"inv_misc_cape_16","type":4,"stats":[0,0,86,63,49,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45530,"name":"Sanity's Bond","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,95,63,50,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45531,"name":"Chestguard of the Fallen God","icon":"inv_chest_leather_13","type":5,"armorType":3,"stats":[0,0,161,106,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45532,"name":"Cowl of Dark Whispers","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,138,98,80,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}]}, -{"id":45533,"name":"Dark Edge of Depravity","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,112,189,0,0,64,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":754,"weaponDamageMax":1131,"weaponSpeed":3.5,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45534,"name":"Seal of the Betrayed King","icon":"inv_jewelry_ring_76","type":11,"stats":[65,0,107,0,0,45,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45535,"name":"Show of Faith","icon":"spell_holy_improvedresistanceauras","type":12,"stats":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45536,"name":"Legguards of Cunning Deception","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,112,181,0,0,0,78,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45537,"name":"Treads of the False Oracle","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,139,79,0,0,61,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45538,"name":"Titanstone Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[49,0,99,0,0,0,0,0,36,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45539,"name":"Pendant of Focused Energies","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,0,95,63,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45540,"name":"Bladebearer's Signet","icon":"inv_jewelry_ring_72","type":11,"stats":[63,0,95,0,0,49,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45541,"name":"Shroud of Alteration","icon":"inv_misc_cape_05","type":4,"stats":[0,0,90,63,46,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45542,"name":"Greaves of the Stonewarder","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,45,60,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45543,"name":"Shoulders of Misfortune","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,77,99,0,0,0,70,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45544,"name":"Leggings of the Tortured Earth","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,165,114,76,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45547,"name":"Relic Hunter's Cord","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,85,131,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45548,"name":"Belt of the Sleeper","icon":"inv_belt_49c","type":8,"armorType":2,"stats":[0,0,121,85,60,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45549,"name":"Grips of Chaos","icon":"inv_bracer_31b","type":6,"armorType":1,"stats":[0,0,90,63,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45550,"name":"Belt of the Titans","icon":"inv_belt_34","type":8,"armorType":4,"stats":[73,0,134,0,0,0,61,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63187}},{"crafted":{"profession":2,"spellId":63187}}]}, -{"id":45551,"name":"Indestructible Plate Girdle","icon":"inv_belt_45a","type":8,"armorType":4,"stats":[89,0,109,0,0,0,0,0,0,61,37,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63191}},{"crafted":{"profession":2,"spellId":63191}}]}, -{"id":45552,"name":"Plate Girdle of Righteousness","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,107,69,56,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63189}},{"crafted":{"profession":2,"spellId":63189}}]}, -{"id":45553,"name":"Belt of Dragons","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,69,99,0,0,0,73,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63194}},{"crafted":{"profession":8,"spellId":63194}}]}, -{"id":45554,"name":"Blue Belt of Chaos","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[0,0,121,69,40,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63196}},{"crafted":{"profession":8,"spellId":63196}}]}, -{"id":45555,"name":"Death-Warmed Belt","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,69,118,0,0,40,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63198}},{"crafted":{"profession":8,"spellId":63198}}]}, -{"id":45556,"name":"Belt of Arctic Life","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,0,122,69,57,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63200}},{"crafted":{"profession":8,"spellId":63200}}]}, -{"id":45557,"name":"Sash of Ancient Power","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,119,69,0,43,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63203}},{"crafted":{"profession":11,"spellId":63203}}]}, -{"id":45558,"name":"Cord of the White Dawn","icon":"inv_belt_40b","type":8,"armorType":1,"stats":[0,0,125,69,48,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63205}},{"crafted":{"profession":11,"spellId":63205}}]}, -{"id":45559,"name":"Battlelord's Plate Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[73,0,134,0,0,0,52,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63188}},{"crafted":{"profession":2,"spellId":63188}}]}, -{"id":45560,"name":"Spiked Deathdealers","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[90,0,109,0,0,0,0,0,0,61,37,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63192}},{"crafted":{"profession":2,"spellId":63192}}]}, -{"id":45561,"name":"Treads of Destiny","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,122,69,48,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63190}},{"crafted":{"profession":2,"spellId":63190}}]}, -{"id":45562,"name":"Boots of Living Scale","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,69,100,0,0,0,72,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63195}},{"crafted":{"profession":8,"spellId":63195}}]}, -{"id":45563,"name":"Lightning Grounded Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,119,69,40,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63197}},{"crafted":{"profession":8,"spellId":63197}}]}, -{"id":45564,"name":"Footpads of Silence","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,69,112,0,0,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63199}},{"crafted":{"profession":8,"spellId":63199}}]}, -{"id":45565,"name":"Boots of Wintry Endurance","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,119,69,49,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63201}},{"crafted":{"profession":8,"spellId":63201}}]}, -{"id":45566,"name":"Spellslinger's Slippers","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,119,69,41,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63204}},{"crafted":{"profession":11,"spellId":63204}}]}, -{"id":45567,"name":"Savior's Slippers","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,122,69,57,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63206}},{"crafted":{"profession":11,"spellId":63206}}]}, -{"id":45570,"name":"Skyforge Crossbow","icon":"inv_weapon_crossbow_33","type":14,"rangedWeaponType":2,"stats":[0,40,63,0,0,23,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":548,"weaponDamageMax":822,"weaponSpeed":2.8,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45587,"name":"Bulwark of Algalon","icon":"inv_shield_67","type":13,"weaponType":7,"handType":3,"stats":[80,0,109,0,0,0,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,7202,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45588,"name":"Drape of the Skyborn","icon":"inv_misc_cape_21","type":4,"stats":[73,0,120,0,0,42,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"sources":[{"quest":{"id":13819,"name":"Heroic: All Is Well That Ends Well"}}]}, -{"id":45594,"name":"Legplates of the Endless Void","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[146,0,178,0,0,0,0,0,0,83,67,0,0,0,0,0,0,0,0,0,0,0,2134,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45599,"name":"Sabatons of Lifeless Night","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[82,0,142,0,0,0,73,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1677,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45605,"name":"Daschal's Bite","icon":"inv_weapon_shortblade_74","type":13,"weaponType":2,"handType":2,"stats":[0,52,80,0,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":268,"weaponDamageMax":404,"weaponSpeed":1.8,"ilvl":238,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}]}, -{"id":45607,"name":"Fang of Oblivion","icon":"inv_weapon_shortblade_84","type":13,"weaponType":2,"handType":2,"stats":[0,47,86,0,0,0,29,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":1.8,"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}},{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45608,"name":"Brann's Signet Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,64,100,0,0,0,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"sources":[{"quest":{"id":13819,"name":"Heroic: All Is Well That Ends Well"}}]}, -{"id":45609,"name":"Comet's Trail","icon":"spell_arcane_starfire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,271,271,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}},{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45610,"name":"Boundless Gaze","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,104,192,0,0,74,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45611,"name":"Solar Bindings","icon":"inv_bracer_26","type":6,"armorType":2,"stats":[0,64,94,0,0,0,0,48,47,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45612,"name":"Constellus","icon":"inv_mace_92","type":13,"weaponType":4,"handType":1,"stats":[0,0,102,0,48,0,29,0,0,0,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":1.8,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45613,"name":"Dreambinder","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,112,158,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":516,"weaponDamageMax":776,"weaponSpeed":2.4,"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45614,"name":"Starshine Circle","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,103,64,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"unique":true,"sources":[{"quest":{"id":13819,"name":"Heroic: All Is Well That Ends Well"}}]}, -{"id":45615,"name":"Planewalker Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,139,79,64,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45616,"name":"Star-Beaded Clutch","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,139,79,48,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45617,"name":"Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,101,72,0,51,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45618,"name":"Sunglimmer Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,107,64,55,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"sources":[{"quest":{"id":13819,"name":"Heroic: All Is Well That Ends Well"}}]}, -{"id":45619,"name":"Starwatcher's Binding","icon":"inv_belt_46","type":8,"armorType":1,"stats":[0,0,139,79,64,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45620,"name":"Starshard Edge","icon":"inv_weapon_shortblade_92","type":13,"weaponType":2,"handType":1,"stats":[0,0,92,0,0,39,43,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":1.8,"ilvl":252,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45626,"name":"Spidersilk Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,4,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63742}},{"crafted":{"profession":11,"spellId":63742}}]}, -{"id":45627,"name":"Amulet of Truesight","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":63743}},{"crafted":{"profession":7,"spellId":63743}}]}, -{"id":45629,"name":"Shadoweave Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,9,12,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":45630,"name":"Invisible Axe","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":91,"weaponSpeed":2.6,"ilvl":81}, -{"id":45631,"name":"High-Powered Flashlight","icon":"inv_misc_spyglass_03","type":12,"stats":[0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"unique":true,"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":63750}},{"crafted":{"profession":4,"spellId":63750}}]}, -{"id":45663,"name":"Armbands of Bedlam","icon":"inv_bracer_23a","type":6,"armorType":4,"stats":[65,0,107,0,0,0,54,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45665,"name":"Pharos Gloves","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,135,79,0,0,64,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":252,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}]}, -{"id":45675,"name":"Power Enhancing Loop","icon":"inv_jewelry_ring_78","type":11,"stats":[60,0,88,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}]}, -{"id":45676,"name":"Chestplate of Vicious Potency","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[99,0,158,0,0,0,48,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":45677,"name":"Treacherous Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,63,113,0,0,57,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}]}, -{"id":45679,"name":"Gloves of Taut Grip","icon":"inv_gauntlets_54","type":7,"armorType":3,"stats":[0,59,114,0,0,0,70,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}]}, -{"id":45680,"name":"Armbands of the Construct","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,89,59,32,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":45682,"name":"Pulsing Spellshield","icon":"inv_shield_64","type":13,"weaponType":7,"handType":3,"stats":[0,0,84,59,0,0,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":45685,"name":"Plasma Foil","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":1,"stats":[0,0,76,0,46,0,35,0,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":398,"weaponSpeed":1.8,"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}]}, -{"id":45686,"name":"Vest of the Glowing Crescent","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,151,106,57,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}]}, -{"id":45687,"name":"Helm of Veiled Energies","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,141,90,0,0,65,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}]}, -{"id":45688,"name":"Inscribed Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,37,106,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":45689,"name":"Inscribed Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,84,56,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":45690,"name":"Inscribed Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[63,0,94,0,0,0,43,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":45691,"name":"Inscribed Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,84,56,0,0,37,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":45694,"name":"Conductive Cord","icon":"inv_belt_44","type":8,"armorType":1,"stats":[0,0,117,79,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}]}, -{"id":45695,"name":"Spire of Withering Dreams","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,73,189,0,0,0,67,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":495,"weaponDamageMax":744,"weaponSpeed":2.8,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}]}, -{"id":45696,"name":"Mark of the Unyielding","icon":"inv_jewelry_necklace_18","type":2,"stats":[63,0,93,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":45697,"name":"Shoulderguards of the Solemn Watch","icon":"inv_shoulder_104","type":3,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,36,65,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}]}, -{"id":45698,"name":"Sabatons of the Iron Watcher","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,117,78,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}]}, -{"id":45699,"name":"Pendant of the Piercing Glare","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,86,59,0,46,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":45700,"name":"Stoneguard","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[37,0,73,0,0,25,0,0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":190,"weaponDamageMax":355,"weaponSpeed":1.6,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}]}, -{"id":45701,"name":"Greaves of the Earthbinder","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,108,75,42,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}]}, -{"id":45702,"name":"Emerald Signet Ring","icon":"inv_jewelry_ring_74","type":11,"stats":[0,0,83,60,0,34,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}]}, -{"id":45704,"name":"Shawl of the Shattered Giant","icon":"inv_misc_cape_18","type":4,"stats":[0,63,87,0,0,34,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}]}, -{"id":45707,"name":"Shieldwall of the Breaker","icon":"inv_shield_67","type":13,"weaponType":7,"handType":3,"stats":[42,0,70,0,0,0,0,0,34,0,57,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":45708,"name":"Archaedas' Lost Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[83,0,169,0,0,0,0,0,61,69,55,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}]}, -{"id":45709,"name":"Nimble Climber's Belt","icon":"inv_belt_40a","type":8,"armorType":2,"stats":[0,84,115,0,0,59,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":45711,"name":"Ironaya's Discarded Mantle","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,79,95,0,0,0,71,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":45712,"name":"Chestplate of Titanic Fury","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[99,0,158,0,0,66,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}]}, -{"id":45713,"name":"Nurturing Touch","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,51,33,24,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":1.8,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}]}, -{"id":45808,"name":"Runed Mana Band","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64727}},{"crafted":{"profession":7,"spellId":64727}}]}, -{"id":45809,"name":"Scarlet Signet","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,65,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64728}},{"crafted":{"profession":7,"spellId":64728}}]}, -{"id":45810,"name":"Cloak of Crimson Snow","icon":"inv_misc_cape_19","type":4,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":64730}},{"crafted":{"profession":11,"spellId":64730}}]}, -{"id":45811,"name":"Frostguard Drape","icon":"inv_misc_cape_19","type":4,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":64729}},{"soldBy":{"npcId":199649,"npcName":"Crafted Gearataur"}},{"crafted":{"profession":11,"spellId":64729}}]}, -{"id":45812,"name":"Emerald Choker","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64725}},{"crafted":{"profession":7,"spellId":64725}}]}, -{"id":45813,"name":"Sky Sapphire Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64726}},{"crafted":{"profession":7,"spellId":64726}}]}, -{"id":45819,"name":"Spiked Battleguard Choker","icon":"inv_jewelry_necklace_42","type":2,"stats":[69,0,98,0,0,48,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45820,"name":"Broach of the Wailing Night","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,63,99,0,0,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45821,"name":"Shard of the Crystal Forest","icon":"inv_jewelry_necklace_47","type":2,"stats":[44,0,99,0,0,42,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45822,"name":"Evoker's Charm","icon":"inv_jewelry_necklace_41","type":2,"stats":[0,0,96,63,41,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45823,"name":"Frozen Tear of Elune","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,96,63,42,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45824,"name":"Belt of the Singing Blade","icon":"inv_belt_34","type":8,"armorType":4,"stats":[92,0,131,0,0,52,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45825,"name":"Shieldwarder Girdle","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[60,0,134,0,0,56,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45826,"name":"Girdle of Unyielding Trust","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[0,0,127,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45827,"name":"Belt of the Ardent Marksman","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,85,127,0,0,53,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45828,"name":"Windchill Binding","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,126,85,50,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45829,"name":"Belt of the Twilight Assassin","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,84,133,0,0,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45830,"name":"Belt of the Living Thicket","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,122,85,56,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45831,"name":"Sash of Potent Incantations","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,122,85,63,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45832,"name":"Mantle of the Preserver","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,117,78,46,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}]}, -{"id":45833,"name":"Bladebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[92,0,131,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45834,"name":"Gauntlets of the Royal Watch","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[63,0,134,0,0,49,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45835,"name":"Gauntlets of Serene Blessing","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,122,85,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45836,"name":"Gloves of Unerring Aim","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,85,99,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45837,"name":"Gloves of Augury","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,126,85,50,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45838,"name":"Gloves of the Blind Stalker","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,85,131,0,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45839,"name":"Grips of the Secret Grove","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,122,85,63,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45840,"name":"Touch of the Occult","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,122,85,63,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45841,"name":"Legplates of the Violet Champion","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[99,0,171,0,0,0,72,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45842,"name":"Wyrmguard Legplates","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45843,"name":"Legguards of the Peaceful Covenant","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,169,98,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45844,"name":"Leggings of the Tireless Sentry","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45845,"name":"Leggings of the Weary Mystic","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,170,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45846,"name":"Leggings of Wavering Shadow","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,98,160,0,0,68,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45847,"name":"Wildstrider Legguards","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,161,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45848,"name":"Legwraps of the Master Conjurer","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,165,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":45849,"name":"Twilight Tome","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,25,35,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":64053}},{"crafted":{"profession":6,"spellId":64053}}]}, -{"id":45850,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3}, -{"id":45851,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3}, -{"id":45852,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3}, -{"id":45853,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3}, -{"id":45854,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":159,"quality":3,"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":64051}},{"crafted":{"profession":6,"spellId":64051}}]}, -{"id":45858,"name":"Nat's Lucky Fishing Pole","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":63,"weaponSpeed":3,"ilvl":20,"quality":3,"unique":true}, -{"id":45859,"name":"The 5 Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,55,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":206,"quality":4,"unique":true}, -{"id":45860,"name":"Crystal Tiara","icon":"inv_crown_01","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":45861,"name":"Diamond-Tipped Cane","icon":"inv_wand_07","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":2.2,"ilvl":6,"quality":1}, -{"id":45864,"name":"Cover of the Keepers","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,141,90,45,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}]}, -{"id":45865,"name":"Raiments of the Corrupted","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,149,100,0,76,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}]}, -{"id":45866,"name":"Elemental Focus Stone","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}]}, -{"id":45867,"name":"Breastplate of the Stoneshaper","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,165,97,0,0,70,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45868,"name":"Aesir's Edge","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[97,0,161,0,0,0,92,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1104,"weaponSpeed":3.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45869,"name":"Fluxing Energy Coils","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,71,81,0,0,46,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45870,"name":"Magnetized Projectile Emitter","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,33,55,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":488,"weaponDamageMax":908,"weaponSpeed":3,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45871,"name":"Seal of Ulduar","icon":"achievement_dungeon_ulduarraid_misc_02","type":11,"stats":[45,0,82,0,0,0,0,0,25,0,40,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45872,"name":"Avalanche","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,33,59,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":800,"weaponSpeed":2.9,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":45873,"name":"Winter's Frigid Embrace","icon":"inv_misc_cape_13","type":4,"stats":[0,63,90,0,0,0,43,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":45874,"name":"Signet of Winter","icon":"inv_jewelry_ring_35","type":11,"stats":[63,0,94,0,0,0,0,0,0,45,36,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}]}, -{"id":45876,"name":"Shiver","icon":"inv_mace_90","type":13,"weaponType":4,"handType":2,"stats":[41,0,88,0,0,26,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45877,"name":"The Boreal Guard","icon":"inv_shield_66","type":13,"weaponType":7,"handType":3,"stats":[44,0,105,0,0,0,0,0,0,33,54,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45886,"name":"Icecore Staff","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,209,0,84,0,0,93,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":429,"weaponDamageMax":644,"weaponSpeed":2.1,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45887,"name":"Ice Layered Barrier","icon":"inv_shield_65","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,40,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45888,"name":"Bitter Cold Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[56,0,95,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1044,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45892,"name":"Legacy of Thunder","icon":"inv_mace_89","type":13,"weaponType":4,"handType":2,"stats":[37,0,73,0,0,0,0,0,24,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":1.7,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}]}, -{"id":45893,"name":"Guise of the Midgard Serpent","icon":"inv_helmet_100-tga","type":1,"armorType":2,"stats":[0,107,140,0,0,0,64,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}]}, -{"id":45894,"name":"Leggings of Unstable Discharge","icon":"inv_pants_cloth_30","type":9,"armorType":1,"stats":[0,0,171,106,53,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}]}, -{"id":45895,"name":"Belt of the Blood Pit","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,79,101,0,0,0,67,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}]}, -{"id":45927,"name":"Handwraps of Resonance","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,112,85,53,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}]}, -{"id":45928,"name":"Gauntlets of the Thunder God","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,101,85,0,0,41,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45929,"name":"Sif's Remembrance","icon":"spell_ice_rune","type":12,"stats":[0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45930,"name":"Combatant's Bootblade","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,50,72,0,0,0,32,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":331,"weaponSpeed":1.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45931,"name":"Mjolnir Runestone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45933,"name":"Pendant of the Shallow Grave","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,82,63,0,0,41,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45934,"name":"Unraveling Reach","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,155,0,0,114,93,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2.1,"ilvl":225,"quality":4}, -{"id":45935,"name":"Ironbark Faceguard","icon":"inv_helmet_95","type":1,"armorType":4,"stats":[70,0,143,0,0,0,0,0,62,87,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":45936,"name":"Legplates of Flourishing Resolve","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,171,106,66,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4}, -{"id":45937,"name":"Furious Gladiator's Shotgun","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,41,68,0,0,0,30,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":587,"weaponDamageMax":881,"weaponSpeed":3,"ilvl":252,"quality":4}, -{"id":45938,"name":"Furious Gladiator's Recurve","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,41,68,0,0,0,30,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":587,"weaponDamageMax":881,"weaponSpeed":3,"ilvl":252,"quality":4}, -{"id":45939,"name":"Furious Gladiator's Repeater","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,68,0,0,0,30,0,0,0,0,0,93,93,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":587,"weaponDamageMax":881,"weaponSpeed":3,"ilvl":252,"quality":4}, -{"id":45940,"name":"Tunic of the Limber Stalker","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,112,153,0,0,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}]}, -{"id":45941,"name":"Chestguard of the Lasher","icon":"inv_chest_leather_15","type":5,"armorType":3,"stats":[0,106,159,0,0,62,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4}, -{"id":45943,"name":"Gloves of Whispering Winds","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,125,85,0,0,50,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45945,"name":"Seed of Budding Carnage","icon":"spell_nature_wispsplodegreen","type":2,"stats":[0,65,104,0,0,32,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45946,"name":"Fire Orchid Signet","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,90,63,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45947,"name":"Serilas, Blood Blade of Invar One-Arm","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,59,66,0,0,32,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45948,"name":"Furious Gladiator's Sunderer","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":775,"weaponDamageMax":1163,"weaponSpeed":3.6,"ilvl":252,"quality":4}, -{"id":45949,"name":"Furious Gladiator's Crusher","icon":"inv_mace_74","type":13,"weaponType":4,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":775,"weaponDamageMax":1163,"weaponSpeed":3.6,"ilvl":252,"quality":4}, -{"id":45950,"name":"Furious Gladiator's Claymore","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":775,"weaponDamageMax":1163,"weaponSpeed":3.6,"ilvl":252,"quality":4}, -{"id":45951,"name":"Furious Gladiator's Halberd","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":775,"weaponDamageMax":1163,"weaponSpeed":3.6,"ilvl":252,"quality":4}, -{"id":45952,"name":"Furious Gladiator's Greatstaff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,128,219,0,0,0,80,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1]}, -{"id":45953,"name":"Furious Gladiator's Combat Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,0,0,92,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2,"ilvl":252,"quality":4}, -{"id":45954,"name":"Furious Gladiator's Acute Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,92,0,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2,"ilvl":252,"quality":4}, -{"id":45955,"name":"Furious Gladiator's Skirmish Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,0,92,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2,"ilvl":252,"quality":4}, -{"id":45956,"name":"Furious Gladiator's Light Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,92,0,0,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2,"ilvl":252,"quality":4}, -{"id":45957,"name":"Furious Gladiator's Handaxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":700,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45958,"name":"Furious Gladiator's Spike","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":298,"weaponDamageMax":448,"weaponSpeed":1.8,"ilvl":252,"quality":4}, -{"id":45959,"name":"Furious Gladiator's Truncheon","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":700,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45960,"name":"Furious Gladiator's Longblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":646,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45961,"name":"Furious Gladiator's Dicer","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":404,"weaponSpeed":1.5,"ilvl":252,"quality":4}, -{"id":45962,"name":"Furious Gladiator's Dirk","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":202,"weaponDamageMax":377,"weaponSpeed":1.4,"ilvl":252,"quality":4}, -{"id":45963,"name":"Furious Gladiator's Left Razor","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":404,"weaponSpeed":1.5,"ilvl":252,"quality":4}, -{"id":45964,"name":"Furious Gladiator's Punisher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":404,"weaponSpeed":1.5,"ilvl":252,"quality":4}, -{"id":45965,"name":"Furious Gladiator's Swiftblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":217,"weaponDamageMax":404,"weaponSpeed":1.5,"ilvl":252,"quality":4}, -{"id":45966,"name":"Furious Gladiator's Splitter","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":700,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45967,"name":"Furious Gladiator's Eviscerator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":261,"weaponDamageMax":485,"weaponSpeed":1.8,"ilvl":252,"quality":4}, -{"id":45968,"name":"Furious Gladiator's Left Claw","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":700,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45969,"name":"Furious Gladiator's Grasp","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":1,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":700,"weaponSpeed":2.6,"ilvl":252,"quality":4}, -{"id":45970,"name":"Furious Gladiator's Mageblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":1,"stats":[0,0,104,0,0,0,39,0,0,0,0,0,0,0,735,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":431,"weaponSpeed":1.6,"ilvl":252,"quality":4}, -{"id":45971,"name":"Furious Gladiator's Salvation","icon":"inv_mace_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,104,0,40,0,0,0,0,0,0,0,0,0,735,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":231,"weaponDamageMax":431,"weaponSpeed":1.6,"ilvl":252,"quality":4}, -{"id":45972,"name":"Pulse Baton","icon":"inv_mace_90","type":13,"weaponType":4,"handType":1,"stats":[0,0,74,0,38,0,46,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":214,"weaponDamageMax":398,"weaponSpeed":1.8,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":45973,"name":"Stylish Power Cape","icon":"inv_misc_cape_14","type":4,"stats":[60,0,88,0,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}]}, -{"id":45974,"name":"Shoulderguards of Assimilation","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,0,118,78,46,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}]}, -{"id":45975,"name":"Cable of the Metrognome","icon":"inv_belt_49","type":8,"armorType":4,"stats":[0,0,116,79,56,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}]}, -{"id":45976,"name":"Static Charge Handwraps","icon":"inv_gauntlets_52","type":7,"armorType":1,"stats":[0,0,114,79,0,60,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}]}, -{"id":45982,"name":"Fused Alloy Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[99,0,170,0,0,87,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45988,"name":"Greaves of the Iron Army","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[63,0,116,0,0,0,0,0,43,0,80,0,0,0,0,0,0,0,0,0,0,0,1640,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45989,"name":"Tempered Mercury Greaves","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,69,127,0,0,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45990,"name":"Fusion Blade","icon":"inv_sword_132","type":13,"weaponType":9,"handType":1,"stats":[0,0,79,0,0,52,37,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45991,"name":"Bone Fishing Pole","icon":"achievement_profession_fishing_journeymanfisher","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":50,"weaponSpeed":3,"ilvl":15,"quality":3,"unique":true}, -{"id":45992,"name":"Jeweled Fishing Pole","icon":"inv_fishingpole_05","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":50,"weaponSpeed":3,"ilvl":15,"quality":3,"unique":true}, -{"id":45993,"name":"Mimiron's Flight Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,110,160,0,0,0,68,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":45994,"name":"Lost Ring","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":200,"quality":3,"unique":true}, -{"id":45995,"name":"Forgotten Necklace","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":200,"quality":3,"unique":true}, -{"id":45996,"name":"Hoperender","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,112,142,0,0,66,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":619,"weaponDamageMax":930,"weaponSpeed":3.5,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}]}, -{"id":45997,"name":"Gauntlets of the Wretched","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[80,0,118,0,0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}]}, -{"id":45998,"name":"Battered Jungle Hat","icon":"inv_helmet_50","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":46008,"name":"Choker of the Abyss","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,63,69,0,0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":46009,"name":"Bindings of the Depths","icon":"inv_bracer_32","type":6,"armorType":2,"stats":[0,0,81,60,34,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":46010,"name":"Darkstone Ring","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[60,0,88,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}]}, -{"id":46011,"name":"Shadowbite","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,48,59,0,0,37,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":245,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":46012,"name":"Vestments of the Piercing Light","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,151,106,76,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}]}, -{"id":46013,"name":"Underworld Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,111,79,46,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}]}, -{"id":46014,"name":"Saronite Animus Cloak","icon":"inv_misc_cape_20","type":4,"stats":[45,0,93,0,0,35,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}]}, -{"id":46015,"name":"Pendant of Endless Despair","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,89,60,46,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}]}, -{"id":46016,"name":"Abaddon","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[112,0,168,0,0,66,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":602,"weaponDamageMax":903,"weaponSpeed":3.4,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}]}, -{"id":46018,"name":"Deliverance","icon":"inv_weapon_crossbow_33","type":14,"rangedWeaponType":2,"stats":[0,25,60,0,0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":492,"weaponDamageMax":739,"weaponSpeed":2.9,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}]}, -{"id":46019,"name":"Leggings of the Insatiable","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,106,159,0,0,67,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}}]}, -{"id":46021,"name":"Royal Seal of King Llane","icon":"inv_crown_13","type":12,"stats":[0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":46022,"name":"Pendant of a Thousand Maws","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[71,0,72,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":46024,"name":"Kingsbane","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,49,65,0,0,38,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":190,"weaponDamageMax":286,"weaponSpeed":1.4,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":46025,"name":"Devotion","icon":"inv_staff_92","type":13,"weaponType":8,"handType":4,"stats":[0,0,188,0,106,0,0,87,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2.1,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}]}, -{"id":46028,"name":"Faceguard of the Eyeless Horror","icon":"inv_helmet_129","type":1,"armorType":4,"stats":[0,0,125,90,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":46030,"name":"Treads of the Dragon Council","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,116,79,42,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":46031,"name":"Touch of Madness","icon":"inv_axe_101","type":13,"weaponType":1,"handType":2,"stats":[0,25,91,0,0,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":2.6,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":46032,"name":"Drape of the Faceless General","icon":"inv_misc_cape_14","type":4,"stats":[0,60,93,0,0,0,40,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46033,"name":"Tortured Earth","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,88,213,0,0,56,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":573,"weaponDamageMax":859,"weaponSpeed":2.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46034,"name":"Leggings of Profound Darkness","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,155,113,66,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46035,"name":"Aesuga, Hand of the Ardent Champion","icon":"inv_mace_92","type":13,"weaponType":4,"handType":1,"stats":[0,0,96,0,0,0,41,22,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46036,"name":"Void Sabre","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,59,79,0,0,41,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46037,"name":"Shoulderplates of the Celestial Watch","icon":"inv_shoulder_49","type":3,"armorType":4,"stats":[72,0,126,0,0,0,64,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46038,"name":"Dark Matter","icon":"spell_shadow_seedofdestruction","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,251,251,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46039,"name":"Breastplate of the Timeless","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[92,0,167,0,0,0,0,0,66,0,98,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46040,"name":"Strength of the Heavens","icon":"inv_jewelry_necklace_47","type":2,"stats":[58,0,95,0,0,0,48,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46041,"name":"Starfall Girdle","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[72,0,126,0,0,0,46,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46042,"name":"Drape of the Messenger","icon":"inv_misc_cape_06","type":4,"stats":[0,0,74,63,0,31,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46043,"name":"Gloves of the Endless Dark","icon":"inv_gauntlets_54","type":7,"armorType":2,"stats":[0,96,85,0,0,74,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46044,"name":"Observer's Mantle","icon":"inv_shoulder_31","type":3,"armorType":3,"stats":[0,0,112,85,0,0,46,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46045,"name":"Pulsar Gloves","icon":"inv_gauntlets_70","type":7,"armorType":1,"stats":[0,0,109,85,0,50,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46046,"name":"Nebula Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,77,63,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46047,"name":"Pendant of the Somber Witness","icon":"inv_jewelry_necklace_42","type":2,"stats":[0,0,92,56,38,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46048,"name":"Band of Lights","icon":"inv_jewelry_ring_68","type":11,"stats":[0,64,84,0,0,52,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46049,"name":"Zodiac Leggings","icon":"inv_pants_leather_22","type":9,"armorType":2,"stats":[0,0,143,113,66,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46050,"name":"Starlight Treads","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,121,80,45,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46051,"name":"Meteorite Crystal","icon":"achievement_dungeon_ulduarraid_misc_04","type":12,"stats":[0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}]}, -{"id":46057,"name":"Titan-Forged Chestguard of Salvation","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[0,0,143,84,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46058,"name":"Titan-Forged Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[85,0,150,0,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46059,"name":"Titan-Forged Chain Armor of Triumph","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,67,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46060,"name":"Titan-Forged Ringmail of Salvation","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46061,"name":"Titan-Forged Mail Armor of Domination","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1674,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46062,"name":"Titan-Forged Leather Tunic of Triumph","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46063,"name":"Titan-Forged Leather Chestguard of Salvation","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46064,"name":"Titan-Forged Leather Chestguard of Dominance","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46065,"name":"Titan-Forged Raiment of Dominance","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46066,"name":"Titan-Forged Raiment of Salvation","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,855,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46067,"name":"Hammer of Crushing Whispers","icon":"inv_mace_93","type":13,"weaponType":4,"handType":4,"stats":[137,0,157,0,0,75,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1104,"weaponSpeed":3.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46068,"name":"Amice of Inconceivable Horror","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,91,85,42,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46069,"name":"Alliance Lance","icon":"inv_spear_05","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3,"ilvl":1,"quality":1,"unique":true,"factionRestriction":1}, -{"id":46070,"name":"Horde Lance","icon":"inv_spear_05","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3,"ilvl":1,"quality":1,"unique":true,"factionRestriction":2}, -{"id":46071,"name":"Titan-Forged Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46072,"name":"Titan-Forged Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[67,0,111,0,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1328,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46073,"name":"Titan-Forged Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46074,"name":"Titan-Forged Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,0,0,40,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46075,"name":"Titan-Forged Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,59,112,0,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,942,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46076,"name":"Titan-Forged Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46077,"name":"Titan-Forged Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46078,"name":"Titan-Forged Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,644,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46079,"name":"Titan-Forged Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,481,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46080,"name":"Titan-Forged Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,481,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46081,"name":"Titan-Forged Rune of Audacity","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46082,"name":"Titan-Forged Rune of Determination","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46083,"name":"Titan-Forged Rune of Accuracy","icon":"inv_misc_rune_07","type":12,"stats":[0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46084,"name":"Titan-Forged Rune of Cruelty","icon":"inv_misc_rune_06","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46085,"name":"Titan-Forged Rune of Alacrity","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46086,"name":"Platinum Disks of Battle","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46087,"name":"Platinum Disks of Sorcery","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46088,"name":"Platinum Disks of Swiftness","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":213,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":46095,"name":"Soul-Devouring Cinch","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,97,113,0,0,0,60,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46096,"name":"Signet of Soft Lament","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,92,63,36,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46097,"name":"Caress of Insanity","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,45,90,0,0,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":690,"weaponSpeed":2.7,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":207128,"npcName":"Animated Constellation","zoneId":4395}},{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46106,"name":"Argent Lance","icon":"inv_spear_05","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3,"ilvl":1,"quality":1,"unique":true}, -{"id":46111,"name":"Conqueror's Darkruned Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[99,0,170,0,0,0,82,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46113,"name":"Conqueror's Darkruned Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46115,"name":"Conqueror's Darkruned Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[89,0,137,0,0,0,75,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46116,"name":"Conqueror's Darkruned Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[99,0,170,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46117,"name":"Conqueror's Darkruned Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[95,0,108,0,0,43,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46118,"name":"Conqueror's Darkruned Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,93,52,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46119,"name":"Conqueror's Darkruned Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[66,0,136,0,0,0,0,0,39,0,80,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46120,"name":"Conqueror's Darkruned Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[91,0,156,0,0,41,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46121,"name":"Conqueror's Darkruned Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[81,0,156,0,0,0,0,0,59,0,110,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46122,"name":"Conqueror's Darkruned Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,136,0,0,0,0,0,0,69,38,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46123,"name":"Conqueror's Terrorblade Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,103,159,0,0,0,70,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46124,"name":"Conqueror's Terrorblade Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,90,117,0,0,57,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46125,"name":"Conqueror's Terrorblade Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,114,129,0,0,0,82,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46126,"name":"Conqueror's Terrorblade Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,107,159,0,0,0,70,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46127,"name":"Conqueror's Terrorblade Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,90,125,0,0,59,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46129,"name":"Conqueror's Kirin Tor Hood","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,144,97,0,69,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46130,"name":"Conqueror's Kirin Tor Tunic","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,147,113,50,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46131,"name":"Valorous Kirin Tor Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,79,0,55,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin'dor Garb","setId":836,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46132,"name":"Conqueror's Kirin Tor Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,112,85,0,60,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46133,"name":"Conqueror's Kirin Tor Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,149,105,0,66,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46134,"name":"Conqueror's Kirin Tor Shoulderpads","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,122,84,33,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46135,"name":"Conqueror's Deathbringer Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,125,85,0,65,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46136,"name":"Conqueror's Deathbringer Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,121,85,0,0,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46137,"name":"Conqueror's Deathbringer Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,148,106,0,73,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46138,"name":"Idol of the Flourishing Life","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,54,36,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"classAllowlist":[4,1,7],"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":46139,"name":"Conqueror's Deathbringer Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,161,113,49,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46140,"name":"Conqueror's Deathbringer Hood","icon":"inv_helmet_131","type":1,"armorType":1,"stats":[0,0,152,97,41,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46141,"name":"Conqueror's Scourgestalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,98,170,0,0,66,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46142,"name":"Conqueror's Scourgestalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,77,127,0,0,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46143,"name":"Conqueror's Scourgestalker Headpiece","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,98,116,0,0,0,106,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46144,"name":"Conqueror's Scourgestalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,114,126,0,0,0,98,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46145,"name":"Conqueror's Scourgestalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,77,127,0,0,48,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46146,"name":"Conqueror's Siegebreaker Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[99,0,170,0,0,0,62,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46148,"name":"Conqueror's Siegebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,40,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46149,"name":"Conqueror's Siegebreaker Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[95,0,108,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46150,"name":"Conqueror's Siegebreaker Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[99,0,170,0,0,79,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46151,"name":"Conqueror's Siegebreaker Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[89,0,137,0,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46152,"name":"Conqueror's Aegis Shoulderplates","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[95,0,108,0,0,0,59,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46153,"name":"Conqueror's Aegis Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[99,0,170,0,0,62,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46154,"name":"Conqueror's Aegis Battleplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[99,0,170,0,0,84,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46155,"name":"Conqueror's Aegis Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,0,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46156,"name":"Conqueror's Aegis Helm","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[112,0,137,0,0,0,70,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46157,"name":"Conqueror's Nightsong Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,82,119,0,0,0,66,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46158,"name":"Conqueror's Nightsong Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,90,143,0,0,0,46,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46159,"name":"Conqueror's Nightsong Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,103,180,0,0,52,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46160,"name":"Conqueror's Nightsong Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,121,156,0,0,0,74,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46161,"name":"Conqueror's Nightsong Headguard","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,87,177,0,0,0,80,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46162,"name":"Conqueror's Siegebreaker Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,51,83,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46163,"name":"Conqueror's Handwraps of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,96,85,54,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46164,"name":"Conqueror's Siegebreaker Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[64,0,122,0,0,49,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46165,"name":"Conqueror's Mantle of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,77,49,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46166,"name":"Conqueror's Siegebreaker Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,83,54,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46167,"name":"Conqueror's Siegebreaker Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[64,0,122,0,0,0,0,0,49,79,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46168,"name":"Conqueror's Raiments of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,153,113,0,74,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46169,"name":"Conqueror's Siegebreaker Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,59,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46170,"name":"Conqueror's Pants of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,167,97,52,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46172,"name":"Conqueror's Circlet of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,149,97,0,0,70,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46173,"name":"Conqueror's Aegis Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,83,54,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46174,"name":"Conqueror's Aegis Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,45,61,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46175,"name":"Conqueror's Aegis Faceguard","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,89,43,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46176,"name":"Conqueror's Aegis Legguards","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,60,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46177,"name":"Conqueror's Aegis Shoulderguards","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46178,"name":"Conqueror's Aegis Tunic","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2386,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46179,"name":"Conqueror's Aegis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,119,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1491,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46180,"name":"Conqueror's Aegis Headpiece","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[0,0,161,98,0,0,59,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1939,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46181,"name":"Conqueror's Aegis Greaves","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[0,0,161,98,76,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46182,"name":"Conqueror's Aegis Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"sources":[{"soldBy":{"npcId":34252,"npcName":"Dubin Clay","zoneId":4395}}]}, -{"id":46183,"name":"Conqueror's Nightsong Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,119,77,57,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46184,"name":"Conqueror's Nightsong Headpiece","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,161,98,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46185,"name":"Conqueror's Nightsong Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,161,98,76,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46186,"name":"Conqueror's Nightsong Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,161,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46187,"name":"Conqueror's Nightsong Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,119,77,57,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46188,"name":"Conqueror's Gloves of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,108,85,60,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46189,"name":"Conqueror's Nightsong Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,119,77,0,57,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46190,"name":"Conqueror's Shoulderpads of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,122,77,41,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46191,"name":"Conqueror's Nightsong Cover","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,161,98,0,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46192,"name":"Conqueror's Nightsong Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,161,98,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46193,"name":"Conqueror's Robe of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,161,98,81,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46194,"name":"Conqueror's Nightsong Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,161,98,60,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1188,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46195,"name":"Conqueror's Leggings of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,149,113,60,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46196,"name":"Conqueror's Nightsong Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,119,77,49,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46197,"name":"Conqueror's Cowl of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,143,98,76,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"sources":[{"soldBy":{"npcId":28995,"npcName":"Paldesse","zoneId":4395}}]}, -{"id":46198,"name":"Conqueror's Worldbreaker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46199,"name":"Conqueror's Worldbreaker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46200,"name":"Conqueror's Worldbreaker Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,77,127,0,0,0,0,56,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46201,"name":"Conqueror's Worldbreaker Headpiece","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,161,98,0,0,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46202,"name":"Conqueror's Worldbreaker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46203,"name":"Conqueror's Worldbreaker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,77,127,0,0,0,56,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46204,"name":"Conqueror's Worldbreaker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,119,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46205,"name":"Conqueror's Worldbreaker Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,98,170,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46206,"name":"Conqueror's Worldbreaker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,161,98,0,60,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46207,"name":"Conqueror's Worldbreaker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46208,"name":"Conqueror's Worldbreaker War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,88,170,0,0,60,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46209,"name":"Conqueror's Worldbreaker Helm","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,161,98,0,60,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46210,"name":"Conqueror's Worldbreaker Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,98,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46211,"name":"Conqueror's Worldbreaker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,119,77,0,0,57,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46212,"name":"Conqueror's Worldbreaker Faceguard","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,102,123,0,0,0,95,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"sources":[{"soldBy":{"npcId":29523,"npcName":"Bragund Brightlink","zoneId":4395}}]}, -{"id":46312,"name":"Vanquished Clutches of Yogg-Saron","icon":"inv_misc_ahnqirajtrinket_05","type":12,"stats":[0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}]}, -{"id":46313,"name":"Valorous Nightsong Cover","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,150,90,0,55,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"sources":[{"soldBy":{"npcId":28992,"npcName":"Valerie Langrom","zoneId":4395}}]}, -{"id":46320,"name":"Drape of the Skyherald","icon":"inv_misc_cape_21","type":4,"stats":[62,0,108,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"sources":[{"quest":{"id":13631,"name":"All Is Well That Ends Well"}}]}, -{"id":46321,"name":"Sunglimmer Drape","icon":"inv_misc_cape_06","type":4,"stats":[0,0,95,55,48,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"sources":[{"quest":{"id":13631,"name":"All Is Well That Ends Well"}}]}, -{"id":46322,"name":"Brann's Sealing Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,55,97,0,0,0,36,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"sources":[{"quest":{"id":13631,"name":"All Is Well That Ends Well"}}]}, -{"id":46323,"name":"Starshine Signet","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,92,55,42,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"unique":true,"sources":[{"quest":{"id":13631,"name":"All Is Well That Ends Well"}}]}, -{"id":46324,"name":"Gondria's Spectral Claw","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":175,"quality":3,"unique":true}, -{"id":46326,"name":"Conqueror's Darkruned Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46327,"name":"Conqueror's Siegebreaker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46328,"name":"Conqueror's Aegis Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46329,"name":"Conqueror's Boots of Sanctification","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46330,"name":"Conqueror's Nightsong Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46331,"name":"Conqueror's Terrorblade Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46332,"name":"Conqueror's Kirin Tor Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46333,"name":"Conqueror's Deathbringer Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46334,"name":"Conqueror's Worldbreaker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46335,"name":"Conqueror's Scourgestalker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1553,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":46337,"name":"Staats' Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":10,"quality":1,"sources":[{"quest":{"id":13537,"name":"A Taste for Grouper"}}],"factionRestriction":1}, -{"id":46339,"name":"Mimiron's Repeater","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[35,0,54,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":800,"weaponSpeed":2.9,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}]}, -{"id":46340,"name":"Adamant Handguards","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,25,69,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}]}, -{"id":46341,"name":"Drape of the Spellweaver","icon":"inv_misc_cape_09","type":4,"stats":[0,0,90,58,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}]}, -{"id":46342,"name":"Golemheart Longbow","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,35,55,0,0,0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":800,"weaponSpeed":2.9,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}]}, -{"id":46343,"name":"Fervor of the Protectorate","icon":"inv_jewelry_necklace_18","type":2,"stats":[49,0,94,0,0,0,0,0,32,0,62,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}]}, -{"id":46344,"name":"Iceshear Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,110,79,55,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}]}, -{"id":46345,"name":"Bracers of Righteous Reformation","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,88,44,46,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}]}, -{"id":46346,"name":"Boots of Unsettled Prey","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,79,95,0,0,0,77,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}]}, -{"id":46347,"name":"Cloak of the Dormant Blaze","icon":"inv_misc_cape_09","type":4,"stats":[0,0,85,59,48,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}]}, -{"id":46349,"name":"Chef's Hat","icon":"achievement_profession_chefhat","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3}, -{"id":46350,"name":"Pillar of Fortitude","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,81,0,53,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":513,"weaponDamageMax":771,"weaponSpeed":2.9,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}]}, -{"id":46351,"name":"Bloodcrush Cudgel","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,49,71,0,0,0,47,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":1.5,"ilvl":225,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}]}, -{"id":46373,"name":"Furious Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":46374,"name":"Relentless Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3}, -{"id":46393,"name":"Apprentice's Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":46394,"name":"Acolyte's Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":46723,"name":"Pilgrim's Hat","icon":"inv_helmet_65","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":46735,"name":"Synthebrew Goggles","icon":"inv_gizmo_newgoggles","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1,"unique":true}, -{"id":46800,"name":"Pilgrim's Attire","icon":"inv_shirt_black_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":46824,"name":"Pilgrim's Robe","icon":"inv_chest_cloth_40","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":46839,"name":"Frostwolf Insignia Rank 7","icon":"inv_jewelry_frostwolftrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":46840,"name":"Frostwolf Insignia Rank 7","icon":"inv_jewelry_frostwolftrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":46842,"name":"Crusader's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":46860,"name":"Whimsical Skull Mask","icon":"inv_misc_bone_skull_02","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":34382,"npcName":"Chapman"}}]}, -{"id":46861,"name":"Bouquet of Orange Marigolds","icon":"inv_misc_marrigolds_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":1,"sources":[{"soldBy":{"npcId":34382,"npcName":"Chapman"}}]}, -{"id":46958,"name":"Steel Bladebreaker","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":330,"weaponSpeed":1.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46959,"name":"Band of the Violent Temperment","icon":"inv_jewelry_ring_76","type":11,"stats":[75,0,113,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46960,"name":"Breastplate of Cruel Intent","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,128,160,0,0,0,111,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46961,"name":"Boneshatter Armplates","icon":"inv_bracer_27b","type":6,"armorType":4,"stats":[75,0,113,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46962,"name":"Chestplate of the Towering Monstrosity","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,119,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46963,"name":"Crystal Plated Vanguard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[71,0,108,0,0,0,0,0,0,55,39,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46964,"name":"Crystal Plated Vanguard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[80,0,108,0,0,0,0,0,0,55,42,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46965,"name":"Breastplate of Cruel Intent","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,137,181,0,0,0,121,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46966,"name":"Band of the Violent Temperment","icon":"inv_jewelry_ring_76","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46967,"name":"Boneshatter Armplates","icon":"inv_bracer_27b","type":6,"armorType":4,"stats":[77,0,128,0,0,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46968,"name":"Chestplate of the Towering Monstrosity","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[116,0,182,0,0,0,0,0,78,137,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46969,"name":"Steel Bladebreaker","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":364,"weaponSpeed":1.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46970,"name":"Drape of the Untamed Predator","icon":"inv_misc_cape_16","type":4,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46971,"name":"Drape of the Untamed Predator","icon":"inv_misc_cape_16","type":4,"stats":[0,77,116,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46972,"name":"Cord of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46973,"name":"Cord of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46974,"name":"Leggings of the Broken Beast","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,128,192,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46975,"name":"Leggings of the Broken Beast","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,206,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46976,"name":"Shawl of the Refreshing Winds","icon":"inv_misc_cape_16","type":4,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46977,"name":"Shawl of the Refreshing Winds","icon":"inv_misc_cape_16","type":4,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46978,"name":"Totem of the Earthen Ring","icon":"inv_relics_totemofrebirth","type":14,"rangedWeaponType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"classAllowlist":[7]}, -{"id":46979,"name":"Blade of Tarasque","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":1,"stats":[0,0,97,0,0,45,0,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}]}, -{"id":46980,"name":"Blade of Tarasque","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":1,"stats":[0,0,109,0,0,51,0,57,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}]}, -{"id":46985,"name":"Boots of the Courageous","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46986,"name":"Boots of the Courageous","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46988,"name":"Boots of the Unrelenting Storm","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46989,"name":"Boots of the Unrelenting Storm","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,161,98,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46990,"name":"Belt of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46991,"name":"Belt of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46992,"name":"Flowing Vestments of Ascent","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46993,"name":"Flowing Vestments of Ascent","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":46994,"name":"Talonstrike","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,43,64,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":572,"weaponDamageMax":859,"weaponSpeed":2.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":46995,"name":"Talonstrike","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,40,61,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":630,"weaponDamageMax":946,"weaponSpeed":2.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":46996,"name":"Lionhead Slasher","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":46997,"name":"Dawnbreaker Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":46999,"name":"Bloodbath Belt","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47000,"name":"Cuirass of Calamitous Fate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,120,180,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47001,"name":"Lionhead Slasher","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,66,87,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47002,"name":"Bloodbath Belt","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[98,0,170,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[4,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47003,"name":"Dawnbreaker Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,82,52,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47004,"name":"Cuirass of Calamitous Fate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,137,206,0,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47041,"name":"Solace of the Defeated","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47042,"name":"Pride of the Eredar","icon":"inv_misc_cape_16","type":4,"stats":[58,0,114,0,0,0,0,0,38,75,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47043,"name":"Charge of the Demon Lord","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47051,"name":"Leggings of the Soothing Touch","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47052,"name":"Legguards of Feverish Dedication","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,0,119,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47053,"name":"Symbol of Transgression","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47054,"name":"Band of Deplorable Violence","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,109,76,44,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47055,"name":"Bracers of the Autumn Willow","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47056,"name":"Bracers of Cloudy Omen","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47057,"name":"Legplates of Failing Light","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,193,120,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47059,"name":"Solace of the Defeated","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47060,"name":"Charge of the Demon Lord","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47061,"name":"Legguards of Feverish Dedication","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[116,0,194,0,0,0,0,0,78,0,129,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47062,"name":"Leggings of the Soothing Touch","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47063,"name":"Pride of the Eredar","icon":"inv_misc_cape_16","type":4,"stats":[65,0,116,0,0,0,0,0,43,78,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47064,"name":"Symbol of Transgression","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47066,"name":"Bracers of the Autumn Willow","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,122,77,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47067,"name":"Legplates of Failing Light","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,218,129,0,0,88,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47068,"name":"Bracers of Cloudy Omen","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47069,"name":"Justicebringer","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[128,0,204,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47070,"name":"Ring of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47071,"name":"Treads of the Icewalker","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,93,152,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47072,"name":"Girdle of Bloodied Scars","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47073,"name":"Bracers of the Untold Massacre","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,76,75,0,0,0,75,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47074,"name":"Bracers of the Untold Massacre","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,77,84,0,0,0,78,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47075,"name":"Ring of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47076,"name":"Girdle of Bloodied Scars","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,74,60,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47077,"name":"Treads of the Icewalker","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,98,158,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47078,"name":"Justicebringer","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47079,"name":"Bastion of Purity","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,109,76,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47080,"name":"Satrina's Impeding Scarab","icon":"inv_scarab_crystal","type":12,"stats":[0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47081,"name":"Cord of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,0,51,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47082,"name":"Chestplate of the Frostborn Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47083,"name":"Legguards of Concealed Hatred","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47084,"name":"Cord of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,161,98,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47085,"name":"Bastion of Purity","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,122,85,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47086,"name":"Chestplate of the Frostborn Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47087,"name":"Legguards of Concealed Hatred","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47088,"name":"Satrina's Impeding Scarab","icon":"inv_scarab_crystal","type":12,"stats":[0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47089,"name":"Cloak of Displacement","icon":"inv_misc_cape_16","type":4,"stats":[0,0,108,76,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47090,"name":"Boots of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47092,"name":"Boots of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47093,"name":"Vambraces of the Broken Bond","icon":"inv_bracer_28b","type":6,"armorType":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47094,"name":"Vestments of the Shattered Fellowship","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47095,"name":"Cloak of Displacement","icon":"inv_misc_cape_16","type":4,"stats":[0,0,121,77,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47096,"name":"Vestments of the Shattered Fellowship","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,129,102,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47097,"name":"Boots of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47098,"name":"Vambraces of the Broken Bond","icon":"inv_bracer_28b","type":6,"armorType":4,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47099,"name":"Boots of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47102,"name":"Manaweave Robe","icon":"inv_chest_cloth_36","type":5,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"classAllowlist":[3]}, -{"id":47103,"name":"Rotting Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":47104,"name":"Twin Spike","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47105,"name":"The Executioner's Malice","icon":"inv_jewelry_necklace_33","type":2,"stats":[76,0,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47106,"name":"Sabatons of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,96,151,0,0,53,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47107,"name":"Belt of the Merciless Killer","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,93,152,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47108,"name":"Bracers of the Shieldmaiden","icon":"inv_bracer_31","type":6,"armorType":4,"stats":[58,0,114,0,0,0,0,0,38,0,75,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47109,"name":"Sabatons of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,98,170,0,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47110,"name":"The Executioner's Malice","icon":"inv_jewelry_necklace_33","type":2,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47111,"name":"Bracers of the Shieldmaiden","icon":"inv_bracer_31","type":6,"armorType":4,"stats":[65,0,116,0,0,0,0,0,43,0,78,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47112,"name":"Belt of the Merciless Killer","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,98,158,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47113,"name":"Twin Spike","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":312,"weaponDamageMax":468,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47114,"name":"Lupine Longstaff","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,128,204,0,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":490,"weaponDamageMax":736,"weaponSpeed":2.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47115,"name":"Death's Verdict","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47116,"name":"The Arbiter's Muse","icon":"inv_jewelry_necklace_44","type":2,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47121,"name":"Legguards of Ascension","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47126,"name":"Skyweaver Robes","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47129,"name":"Skyweaver Robes","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47130,"name":"Lupine Longstaff","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,137,218,0,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":811,"weaponSpeed":2.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47131,"name":"Death's Verdict","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,288,288,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47132,"name":"Legguards of Ascension","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47133,"name":"The Arbiter's Muse","icon":"inv_jewelry_necklace_44","type":2,"stats":[85,0,116,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47138,"name":"Chalice of Searing Light","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47139,"name":"Wail of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,109,76,0,0,58,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47140,"name":"Cord of Pale Thorns","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47141,"name":"Bindings of Dark Essence","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,109,76,0,38,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47142,"name":"Breastplate of the Frozen Lake","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47143,"name":"Bindings of Dark Essence","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,122,77,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47144,"name":"Wail of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,122,77,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47145,"name":"Cord of Pale Thorns","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47146,"name":"Chalice of Searing Light","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,57,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47147,"name":"Breastplate of the Frozen Lake","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47148,"name":"Stormpike Cleaver","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47149,"name":"Signet of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47150,"name":"Greaves of the 7th Legion","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[93,0,151,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47151,"name":"Bracers of Dark Determination","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,76,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47152,"name":"Belt of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47153,"name":"Belt of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47154,"name":"Greaves of the 7th Legion","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[98,0,171,0,0,0,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47155,"name":"Bracers of Dark Determination","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,69,116,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47156,"name":"Stormpike Cleaver","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47157,"name":"Signet of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[85,0,116,0,0,0,0,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47170,"name":"Belt of Fierce Competition","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,66,82,0,0,0,31,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47171,"name":"Legguards of Abandoned Fealty","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[44,0,134,0,0,0,0,0,56,90,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47172,"name":"Helm of the Bested Gallant","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,98,82,0,0,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47173,"name":"Bindings of the Wicked","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,72,50,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47174,"name":"Binding of the Tranquil Glade","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,98,59,49,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47175,"name":"Scale Boots of the Outlander","icon":"inv_boots_leather01","type":10,"armorType":3,"stats":[0,50,98,0,0,0,47,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}]}, -{"id":47176,"name":"Breastplate of the Imperial Joust","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[90,0,96,0,0,48,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2337,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47177,"name":"Gloves of the Argent Fanatic","icon":"inv_gauntlets_68","type":7,"armorType":2,"stats":[0,66,84,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47178,"name":"Carapace of Grim Visions","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,0,108,90,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47181,"name":"Belt of the Churning Blaze","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,95,67,0,50,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47182,"name":"Reign of the Unliving","icon":"inv_crown_13","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47183,"name":"Strength of the Nerub","icon":"inv_misc_cape_16","type":4,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47184,"name":"Legguards of the Lurking Threat","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47185,"name":"Leggings of the Haggard Apprentice","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,114,82,56,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47186,"name":"Legwraps of the Awakening","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47187,"name":"Leggings of the Deepening Void","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47188,"name":"Reign of the Unliving","icon":"inv_crown_13","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47189,"name":"Leggings of the Deepening Void","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47190,"name":"Legwraps of the Awakening","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47191,"name":"Legguards of the Lurking Threat","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,129,196,0,0,0,129,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47192,"name":"Strength of the Nerub","icon":"inv_misc_cape_16","type":4,"stats":[77,0,128,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47193,"name":"Misery's End","icon":"inv_mace_107","type":13,"weaponType":4,"handType":1,"stats":[0,0,109,0,0,0,39,58,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47194,"name":"Footpads of the Icy Floe","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47195,"name":"Belt of the Forgotten Martyr","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47197,"name":"Gauntlets of the Stouthearted Crusader","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[76,0,64,0,0,0,46,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47199,"name":"Greaves of the Grand Paladin","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,82,63,40,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47200,"name":"Signet of Purity","icon":"inv_jewelry_ring_64","type":11,"stats":[0,0,73,50,30,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47201,"name":"Boots of Heartfelt Repentance","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[41,0,99,0,0,0,0,0,29,65,0,0,0,0,0,0,0,0,0,0,0,0,1607,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47202,"name":"Leggings of Brazen Trespass","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,89,110,0,0,64,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47203,"name":"Armbands of the Ashen Saint","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47204,"name":"Chestguard of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47205,"name":"Footpads of the Icy Floe","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,161,98,0,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47206,"name":"Misery's End","icon":"inv_mace_107","type":13,"weaponType":4,"handType":1,"stats":[0,0,124,0,0,0,44,66,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47207,"name":"Belt of the Forgotten Martyr","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47208,"name":"Armbands of the Ashen Saint","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47209,"name":"Chestguard of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,129,102,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47210,"name":"Mantle of Gnarled Overgrowth","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,0,96,67,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}]}, -{"id":47211,"name":"Wristguards of Ceaseless Regret","icon":"inv_bracer_23b","type":6,"armorType":3,"stats":[0,38,62,0,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,717,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47212,"name":"Mercy's Hold","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[42,0,99,0,0,0,0,0,35,57,0,0,0,0,0,0,0,0,0,0,0,0,1461,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47213,"name":"Abyssal Rune","icon":"inv_misc_rune_09","type":12,"stats":[0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47214,"name":"Banner of Victory","icon":"inv_bannerpvp_03","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47215,"name":"Tears of the Vanquished","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47216,"name":"The Black Heart","icon":"inv_misc_gem_bloodstone_02","type":12,"stats":[0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47217,"name":"Gaze of the Somber Keeper","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,98,74,56,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47218,"name":"The Confessor's Binding","icon":"inv_belt_48","type":8,"armorType":1,"stats":[0,0,92,59,45,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47219,"name":"Brilliant Hailstone Amulet","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,65,46,0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}]}, -{"id":47220,"name":"Helm of the Violent Fray","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[90,0,72,0,0,0,44,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47221,"name":"Shoulderpads of the Infamous Knave","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,62,94,0,0,27,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47222,"name":"Uruka's Band of Zeal","icon":"inv_jewelry_ring_79","type":11,"stats":[0,36,89,0,0,0,34,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47223,"name":"Ring of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47224,"name":"Ring of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,121,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47225,"name":"Maiden's Favor","icon":"inv_misc_cape_16","type":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47226,"name":"Mantle of Inconsolable Fear","icon":"inv_shoulder_31","type":3,"armorType":1,"stats":[0,0,98,67,0,0,37,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47227,"name":"Girdle of the Pallid Knight","icon":"inv_belt_28","type":8,"armorType":4,"stats":[48,0,99,0,0,24,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47228,"name":"Leggings of the Bloodless Knight","icon":"inv_pants_plate_24","type":9,"armorType":3,"stats":[0,0,118,90,0,0,56,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47229,"name":"Girdle of Arrogant Downfall","icon":"inv_belt_50","type":8,"armorType":4,"stats":[68,0,76,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1315,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47230,"name":"Handwraps of Surrendered Hope","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,92,63,49,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47231,"name":"Belt of Merciless Cruelty","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,48,92,0,0,0,51,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47232,"name":"Drape of the Undefeated","icon":"inv_misc_cape_20","type":4,"stats":[57,0,57,0,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}]}, -{"id":47233,"name":"Archon Glaive","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,128,192,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211332,"npcName":"Korralin Hoperender","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47234,"name":"Gloves of Bitter Reprisal","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47235,"name":"Gloves of the Lifeless Touch","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47236,"name":"Gloves of the Lifeless Touch","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47237,"name":"Band of Deplorable Violence","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,122,77,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47238,"name":"Maiden's Favor","icon":"inv_misc_cape_16","type":4,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47239,"name":"Archon Glaive","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,137,218,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1183,"weaponSpeed":3.5,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47240,"name":"Gloves of Bitter Reprisal","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[98,0,171,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47243,"name":"Mark of the Relentless","icon":"inv_jewelry_ring_60","type":11,"stats":[48,0,89,0,0,0,0,0,26,30,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47244,"name":"Chestguard of the Ravenous Fiend","icon":"inv_chest_mail_06","type":5,"armorType":3,"stats":[0,98,159,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47245,"name":"Pauldrons of Concealed Loathing","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,71,118,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47248,"name":"Treads of Dismal Fortune","icon":"inv_boots_mail_01","type":10,"armorType":2,"stats":[0,73,100,0,0,0,59,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47249,"name":"Leggings of the Snowy Bramble","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,152,106,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47250,"name":"Pauldrons of the Deafening Gale","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,0,119,73,0,60,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47251,"name":"Cuirass of Cruel Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,128,160,0,0,0,111,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47252,"name":"Ring of the Violent Temperament","icon":"inv_jewelry_ring_76","type":11,"stats":[75,0,113,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47253,"name":"Boneshatter Vambraces","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[75,0,113,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47254,"name":"Hauberk of the Towering Monstrosity","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,119,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47255,"name":"Stygian Bladebreaker","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":330,"weaponSpeed":1.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47256,"name":"Drape of the Refreshing Winds","icon":"inv_misc_cape_18","type":4,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47257,"name":"Cloak of the Untamed Predator","icon":"inv_misc_cape_18","type":4,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47258,"name":"Belt of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47259,"name":"Legwraps of the Broken Beast","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,128,192,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47260,"name":"Forlorn Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[71,0,108,0,0,0,0,0,0,55,39,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47261,"name":"Barb of Tarasque","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":1,"stats":[0,0,97,0,0,45,0,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}]}, -{"id":47262,"name":"Boots of the Harsh Winter","icon":"inv_boots_leather_04b","type":10,"armorType":2,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47263,"name":"Sabatons of the Courageous","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47264,"name":"Flowing Robes of Ascent","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47265,"name":"Binding of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47266,"name":"Blood Fury","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47267,"name":"Death's Head Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,43,64,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":572,"weaponDamageMax":859,"weaponSpeed":2.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47268,"name":"Bloodbath Girdle","icon":"inv_belt_50","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47269,"name":"Dawnbreaker Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47270,"name":"Vest of Calamitous Fate","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,120,180,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47271,"name":"Solace of the Fallen","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47272,"name":"Charge of the Eredar","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47273,"name":"Legplates of Feverish Dedication","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,0,119,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47274,"name":"Pants of the Soothing Touch","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47275,"name":"Pride of the Demon Lord","icon":"inv_misc_cape_18","type":4,"stats":[58,0,114,0,0,0,0,0,38,75,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47276,"name":"Talisman of Heedless Sins","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47277,"name":"Bindings of the Autumn Willow","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47278,"name":"Circle of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47279,"name":"Leggings of Failing Light","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,193,120,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47280,"name":"Wristwraps of Cloudy Omen","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47281,"name":"Bracers of the Silent Massacre","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,76,75,0,0,0,75,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47282,"name":"Band of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47283,"name":"Belt of Bloodied Scars","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47284,"name":"Icewalker Treads","icon":"inv_boots_leather_04a","type":10,"armorType":2,"stats":[0,93,152,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47285,"name":"Dual-Blade Butcher","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47286,"name":"Belt of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,0,51,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47287,"name":"Bastion of Resolve","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,109,76,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47288,"name":"Chestplate of the Frostwolf Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47289,"name":"Leggings of Concealed Hatred","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47290,"name":"Juggernaut's Vitality","icon":"inv_scarab_crystal","type":12,"stats":[0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47291,"name":"Shroud of Displacement","icon":"inv_misc_cape_18","type":4,"stats":[0,0,109,76,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47292,"name":"Robes of the Shattered Fellowship","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47293,"name":"Sandals of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47294,"name":"Bracers of the Broken Bond","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47295,"name":"Sabatons of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47296,"name":"Greaves of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47297,"name":"The Executioner's Vice","icon":"inv_jewelry_necklace_33","type":2,"stats":[75,0,113,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47298,"name":"Armguards of the Shieldmaiden","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[58,0,114,0,0,0,0,0,38,0,75,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47299,"name":"Belt of the Pitiless Killer","icon":"inv_belt_38b","type":8,"armorType":2,"stats":[0,93,152,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47300,"name":"Gouge of the Frigid Heart","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47301,"name":"Skyweaver Vestments","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47302,"name":"Twin's Pact","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,128,204,0,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":490,"weaponDamageMax":736,"weaponSpeed":2.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47303,"name":"Death's Choice","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47304,"name":"Legplates of Ascension","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47305,"name":"Legionnaire's Gorget","icon":"inv_jewelry_necklace_44","type":2,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47306,"name":"Dark Essence Bindings","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,109,76,0,38,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47307,"name":"Cry of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,109,76,0,0,58,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47308,"name":"Belt of Pale Thorns","icon":"inv_belt_46c","type":8,"armorType":2,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47309,"name":"Mystifying Charm","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47310,"name":"Chestplate of the Frozen Lake","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47311,"name":"Waistguard of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47312,"name":"Greaves of the Saronite Citadel","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[93,0,151,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47313,"name":"Armbands of Dark Determination","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,76,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47314,"name":"Hellscream Slicer","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47315,"name":"Band of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47316,"name":"Reign of the Dead","icon":"inv_crown_13","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47317,"name":"Breeches of the Deepening Void","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47318,"name":"Leggings of the Awakening","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47319,"name":"Leggings of the Lurking Threat","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47320,"name":"Might of the Nerub","icon":"inv_misc_cape_18","type":4,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47321,"name":"Boots of the Icy Floe","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,144,93,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47322,"name":"Suffering's End","icon":"inv_mace_103","type":13,"weaponType":4,"handType":1,"stats":[0,0,109,0,0,0,39,58,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47323,"name":"Girdle of the Forgotten Martyr","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47324,"name":"Bindings of the Ashen Saint","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47325,"name":"Cuirass of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47326,"name":"Handwraps of the Lifeless Touch","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47327,"name":"Lurid Manifestation","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,109,76,44,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47328,"name":"Maiden's Adoration","icon":"inv_misc_cape_18","type":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47329,"name":"Hellion Glaive","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,128,192,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"soldBy":{"npcId":211340,"npcName":"Kolara Dreamsmasher","zoneId":4395}},{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47330,"name":"Gauntlets of Bitter Reprisal","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47412,"name":"Cuirass of Cruel Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,137,181,0,0,0,121,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47413,"name":"Ring of the Violent Temperament","icon":"inv_jewelry_ring_76","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47414,"name":"Boneshatter Vambraces","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[77,0,128,0,0,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47415,"name":"Hauberk of the Towering Monstrosity","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[116,0,182,0,0,0,0,0,78,137,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47416,"name":"Stygian Bladebreaker","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":364,"weaponSpeed":1.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47417,"name":"Drape of the Refreshing Winds","icon":"inv_misc_cape_18","type":4,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47418,"name":"Cloak of the Untamed Predator","icon":"inv_misc_cape_18","type":4,"stats":[0,77,116,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47419,"name":"Belt of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47420,"name":"Legwraps of the Broken Beast","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,137,206,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47421,"name":"Forlorn Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[80,0,108,0,0,0,0,0,0,55,42,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47422,"name":"Barb of Tarasque","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":1,"stats":[0,0,109,0,0,51,0,57,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}]}, -{"id":47423,"name":"Boots of the Harsh Winter","icon":"inv_boots_leather_04b","type":10,"armorType":2,"stats":[0,0,161,98,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47424,"name":"Sabatons of the Courageous","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47425,"name":"Flowing Robes of Ascent","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47426,"name":"Binding of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,162,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47427,"name":"Blood Fury","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,66,87,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47428,"name":"Death's Head Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,40,61,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":630,"weaponDamageMax":946,"weaponSpeed":2.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47429,"name":"Bloodbath Girdle","icon":"inv_belt_50","type":8,"armorType":4,"stats":[98,0,170,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[4,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47430,"name":"Dawnbreaker Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,82,52,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47431,"name":"Vest of Calamitous Fate","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,137,206,0,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47432,"name":"Solace of the Fallen","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47433,"name":"Charge of the Eredar","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47434,"name":"Legplates of Feverish Dedication","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,194,0,0,0,0,0,78,0,129,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47435,"name":"Pants of the Soothing Touch","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47436,"name":"Pride of the Demon Lord","icon":"inv_misc_cape_18","type":4,"stats":[65,0,116,0,0,0,0,0,43,78,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47437,"name":"Talisman of Heedless Sins","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47438,"name":"Bindings of the Autumn Willow","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,122,77,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47439,"name":"Circle of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,122,77,56,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47440,"name":"Leggings of Failing Light","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,218,129,0,0,88,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47441,"name":"Wristwraps of Cloudy Omen","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47442,"name":"Bracers of the Silent Massacre","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,77,84,0,0,0,78,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47443,"name":"Band of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47444,"name":"Belt of Bloodied Scars","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,74,60,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47445,"name":"Icewalker Treads","icon":"inv_boots_leather_04a","type":10,"armorType":2,"stats":[0,98,158,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,940,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47446,"name":"Dual-Blade Butcher","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47447,"name":"Belt of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,161,98,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47448,"name":"Bastion of Resolve","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,122,85,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47449,"name":"Chestplate of the Frostwolf Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47450,"name":"Leggings of Concealed Hatred","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47451,"name":"Juggernaut's Vitality","icon":"inv_scarab_crystal","type":12,"stats":[0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47452,"name":"Shroud of Displacement","icon":"inv_misc_cape_18","type":4,"stats":[0,0,122,77,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47453,"name":"Robes of the Shattered Fellowship","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,129,102,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47454,"name":"Sandals of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47455,"name":"Bracers of the Broken Bond","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47456,"name":"Sabatons of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47457,"name":"Greaves of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47458,"name":"The Executioner's Vice","icon":"inv_jewelry_necklace_33","type":2,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47459,"name":"Armguards of the Shieldmaiden","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[65,0,116,0,0,0,0,0,43,0,78,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47460,"name":"Belt of the Pitiless Killer","icon":"inv_belt_38b","type":8,"armorType":2,"stats":[0,98,158,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47461,"name":"Gouge of the Frigid Heart","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":312,"weaponDamageMax":468,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47462,"name":"Skyweaver Vestments","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47463,"name":"Twin's Pact","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,137,218,0,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":811,"weaponSpeed":2.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47464,"name":"Death's Choice","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,288,288,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47465,"name":"Legplates of Ascension","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47466,"name":"Legionnaire's Gorget","icon":"inv_jewelry_necklace_44","type":2,"stats":[85,0,116,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47467,"name":"Dark Essence Bindings","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,122,77,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47468,"name":"Cry of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,122,77,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47469,"name":"Belt of Pale Thorns","icon":"inv_belt_46c","type":8,"armorType":2,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47470,"name":"Mystifying Charm","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,57,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47471,"name":"Chestplate of the Frozen Lake","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47472,"name":"Waistguard of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1068,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47473,"name":"Greaves of the Saronite Citadel","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[98,0,171,0,0,0,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47474,"name":"Armbands of Dark Determination","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,69,116,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47475,"name":"Hellscream Slicer","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47476,"name":"Band of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[85,0,116,0,0,0,0,0,0,60,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47477,"name":"Reign of the Dead","icon":"inv_crown_13","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47478,"name":"Breeches of the Deepening Void","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47479,"name":"Leggings of the Awakening","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47480,"name":"Leggings of the Lurking Threat","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,129,196,0,0,0,129,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47481,"name":"Might of the Nerub","icon":"inv_misc_cape_18","type":4,"stats":[77,0,128,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47482,"name":"Boots of the Icy Floe","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,161,98,0,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47483,"name":"Suffering's End","icon":"inv_mace_103","type":13,"weaponType":4,"handType":1,"stats":[0,0,124,0,0,0,44,66,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47484,"name":"Girdle of the Forgotten Martyr","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47485,"name":"Bindings of the Ashen Saint","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47486,"name":"Cuirass of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,129,102,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47487,"name":"Handwraps of the Lifeless Touch","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47489,"name":"Lurid Manifestation","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,122,77,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47490,"name":"Maiden's Adoration","icon":"inv_misc_cape_18","type":4,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47491,"name":"Hellion Glaive","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,137,218,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":788,"weaponDamageMax":1183,"weaponSpeed":3.5,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47492,"name":"Gauntlets of Bitter Reprisal","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[98,0,171,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47493,"name":"Edge of Ruin","icon":"inv_axe_76","type":13,"weaponType":1,"handType":4,"stats":[106,0,135,0,0,0,62,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":594,"weaponDamageMax":892,"weaponSpeed":3.5,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}]}, -{"id":47494,"name":"Ancient Pendant of Arathor","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,42,106,0,0,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47495,"name":"Legplates of Relentless Onslaught","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[106,0,141,0,0,0,50,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47496,"name":"Armbands of the Wary Lookout","icon":"inv_bracer_22b","type":6,"armorType":2,"stats":[0,59,84,0,0,40,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47497,"name":"Helm of the Crestfallen Challenger","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[66,0,135,0,0,54,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47498,"name":"Gloves of Dismal Fortune","icon":"inv_gauntlets_74","type":7,"armorType":2,"stats":[0,0,109,79,0,0,50,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47500,"name":"Peacekeeper Blade","icon":"inv_sword_142","type":13,"weaponType":9,"handType":2,"stats":[31,0,69,0,0,0,0,0,21,29,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":1.5,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47501,"name":"Kurisu's Indecision","icon":"inv_misc_cape_18","type":4,"stats":[0,0,86,60,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47502,"name":"Majestic Silversmith Shoulderplates","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[71,0,106,0,0,0,40,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47503,"name":"Legplates of the Argent Armistice","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,151,106,76,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47504,"name":"Barkhide Treads","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,112,79,0,34,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47506,"name":"Silverwing Defender","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[66,0,87,0,0,0,0,0,0,45,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47508,"name":"Aledar's Battlestar","icon":"inv_mace_100","type":13,"weaponType":4,"handType":2,"stats":[0,46,64,0,0,13,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":297,"weaponDamageMax":552,"weaponSpeed":2.6,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47509,"name":"Mariel's Sorrow","icon":"inv_mace_102","type":13,"weaponType":4,"handType":1,"stats":[0,0,86,0,46,0,31,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":1.8,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}]}, -{"id":47510,"name":"Trueheart Girdle","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,107,79,0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47511,"name":"Plated Greaves of Providence","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[75,0,106,0,0,0,38,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47512,"name":"Sinner's Confession","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,86,60,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47513,"name":"Orgrim's Deflector","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[66,0,87,0,0,0,0,0,0,45,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47514,"name":"Regal Aurous Shoulderplates","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[59,0,115,0,0,35,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47515,"name":"Decimation","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,137,230,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":766,"weaponDamageMax":1149,"weaponSpeed":3.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":47516,"name":"Fleshrender","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":766,"weaponDamageMax":1149,"weaponSpeed":3.4,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":47517,"name":"Blade of the Unbroken Covenant","icon":"inv_sword_144","type":13,"weaponType":9,"handType":1,"stats":[0,0,118,0,0,0,58,39,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":47518,"name":"Mortalis","icon":"inv_sword_137","type":13,"weaponType":9,"handType":1,"stats":[0,0,118,0,0,0,58,39,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":47519,"name":"Catastrophe","icon":"inv_mace_106","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,96,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47520,"name":"Grievance","icon":"inv_mace_104","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,96,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47521,"name":"BRK-1000","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,48,85,0,0,0,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":571,"weaponDamageMax":1062,"weaponSpeed":2.9,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":47522,"name":"Marrowstrike","icon":"inv_weapon_halberd16","type":13,"weaponType":6,"handType":4,"stats":[0,106,162,0,0,0,57,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":594,"weaponDamageMax":892,"weaponSpeed":3.5,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}]}, -{"id":47523,"name":"Fezzik's Autocannon","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,48,85,0,0,0,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":571,"weaponDamageMax":1062,"weaponSpeed":2.9,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":47524,"name":"Clemency","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,287,0,86,0,137,0,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":2.1,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}]}, -{"id":47525,"name":"Sufferance","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,287,0,86,0,137,0,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":2.1,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}]}, -{"id":47526,"name":"Remorseless","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,58,99,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47527,"name":"Embrace of Madness","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,127,106,56,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47528,"name":"Cudgel of the Damned","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,58,99,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47529,"name":"Mask of Distant Memory","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,98,129,0,0,64,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47545,"name":"Vereesa's Dexterity","icon":"inv_misc_cape_16","type":4,"stats":[0,97,134,0,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47546,"name":"Sylvanas' Cunning","icon":"inv_misc_cape_18","type":4,"stats":[0,97,134,0,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47547,"name":"Varian's Furor","icon":"inv_misc_cape_16","type":4,"stats":[89,0,146,0,0,57,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47548,"name":"Garrosh's Rage","icon":"inv_misc_cape_18","type":4,"stats":[89,0,146,0,0,57,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47549,"name":"Magni's Resolution","icon":"inv_misc_cape_16","type":4,"stats":[97,0,134,0,0,0,0,0,0,69,51,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":47550,"name":"Cairne's Endurance","icon":"inv_misc_cape_18","type":4,"stats":[97,0,134,0,0,0,0,0,0,69,51,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":47551,"name":"Aethas' Intensity","icon":"inv_misc_cape_18","type":4,"stats":[0,0,139,89,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":47552,"name":"Jaina's Radiance","icon":"inv_misc_cape_16","type":4,"stats":[0,0,139,89,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":47553,"name":"Bolvar's Devotion","icon":"inv_misc_cape_16","type":4,"stats":[0,0,139,89,65,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":47554,"name":"Lady Liadrin's Conviction","icon":"inv_misc_cape_18","type":4,"stats":[0,0,139,89,65,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":47560,"name":"Boots of the Crackling Flame","icon":"inv_boots_cloth_22","type":10,"armorType":1,"stats":[0,0,112,79,0,35,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47561,"name":"Gloves of the Dark Exile","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,79,72,0,0,0,70,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47562,"name":"Symbol of Redemption","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,75,57,42,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47563,"name":"Girdle of the Dauntless Conqueror","icon":"inv_belt_49","type":8,"armorType":3,"stats":[0,0,109,76,57,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47564,"name":"Gaze of the Unknown","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,115,98,0,57,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47565,"name":"Vambraces of Unholy Command","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[60,0,89,0,0,0,29,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47566,"name":"The Warlord's Depravity","icon":"inv_jewelry_necklace_29","type":2,"stats":[42,0,89,0,0,0,0,0,0,43,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47567,"name":"Gauntlets of Revelation","icon":"inv_gauntlets_77a","type":7,"armorType":4,"stats":[0,0,102,75,54,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47568,"name":"True-Aim Long Rifle","icon":"inv_weapon_rifle_34","type":14,"rangedWeaponType":3,"stats":[0,34,66,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":3,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47569,"name":"Spectral Kris","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":1,"stats":[0,0,53,0,0,0,36,46,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":1.8,"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":47570,"name":"Saronite Swordbreakers","icon":"inv_bracer_32a","type":6,"armorType":4,"stats":[58,0,102,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67092}},{"crafted":{"profession":2,"spellId":67092}}],"factionRestriction":1}, -{"id":47571,"name":"Saronite Swordbreakers","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[58,0,102,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67131}},{"crafted":{"profession":2,"spellId":67131}}],"factionRestriction":2}, -{"id":47572,"name":"Titanium Spikeguards","icon":"inv_bracer_37","type":6,"armorType":4,"stats":[68,0,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67094}},{"crafted":{"profession":2,"spellId":67094}}],"factionRestriction":1}, -{"id":47573,"name":"Titanium Spikeguards","icon":"inv_bracer_26b","type":6,"armorType":4,"stats":[68,0,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67133}},{"crafted":{"profession":2,"spellId":67133}}],"factionRestriction":2}, -{"id":47574,"name":"Sunforged Bracers","icon":"inv_bracer_32a","type":6,"armorType":4,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67096}},{"crafted":{"profession":2,"spellId":67096}}],"factionRestriction":1}, -{"id":47575,"name":"Sunforged Bracers","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67135}},{"crafted":{"profession":2,"spellId":67135}}],"factionRestriction":2}, -{"id":47576,"name":"Crusader's Dragonscale Bracers","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,68,114,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67083}},{"crafted":{"profession":8,"spellId":67083}}],"factionRestriction":1}, -{"id":47577,"name":"Crusader's Dragonscale Bracers","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,68,114,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67143}},{"crafted":{"profession":8,"spellId":67143}}],"factionRestriction":2}, -{"id":47578,"name":"Carnivorous Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,100,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47579,"name":"Black Chitin Bracers","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67081}},{"crafted":{"profession":8,"spellId":67081}}],"factionRestriction":1}, -{"id":47580,"name":"Black Chitin Bracers","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67137}},{"crafted":{"profession":8,"spellId":67137}}],"factionRestriction":2}, -{"id":47581,"name":"Bracers of Swift Death","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,68,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67087}},{"crafted":{"profession":8,"spellId":67087}}],"factionRestriction":1}, -{"id":47582,"name":"Bracers of Swift Death","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,68,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67139}},{"crafted":{"profession":8,"spellId":67139}}],"factionRestriction":2}, -{"id":47583,"name":"Moonshadow Armguards","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67085}},{"crafted":{"profession":8,"spellId":67085}}],"factionRestriction":1}, -{"id":47584,"name":"Moonshadow Armguards","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67141}},{"crafted":{"profession":8,"spellId":67141}}],"factionRestriction":2}, -{"id":47585,"name":"Bejeweled Wizard's Bracers","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,68,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67079}},{"crafted":{"profession":11,"spellId":67079}}],"factionRestriction":1}, -{"id":47586,"name":"Bejeweled Wizard's Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,108,68,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67145}},{"crafted":{"profession":11,"spellId":67145}}],"factionRestriction":2}, -{"id":47587,"name":"Royal Moonshroud Bracers","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67065}},{"crafted":{"profession":11,"spellId":67065}}],"factionRestriction":1}, -{"id":47588,"name":"Royal Moonshroud Bracers","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67147}},{"crafted":{"profession":11,"spellId":67147}}],"factionRestriction":2}, -{"id":47589,"name":"Titanium Razorplate","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[112,0,203,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67093}},{"crafted":{"profession":2,"spellId":67093}}],"factionRestriction":1}, -{"id":47590,"name":"Titanium Razorplate","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[112,0,203,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67132}},{"crafted":{"profession":2,"spellId":67132}}],"factionRestriction":2}, -{"id":47591,"name":"Breastplate of the White Knight","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,168,0,0,0,0,0,0,91,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67091}},{"crafted":{"profession":2,"spellId":67091}}],"factionRestriction":1}, -{"id":47592,"name":"Breastplate of the White Knight","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[103,0,168,0,0,0,0,0,0,91,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67130}},{"crafted":{"profession":2,"spellId":67130}}],"factionRestriction":2}, -{"id":47593,"name":"Sunforged Breastplate","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67095}},{"crafted":{"profession":2,"spellId":67095}}],"factionRestriction":1}, -{"id":47594,"name":"Sunforged Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67134}},{"crafted":{"profession":2,"spellId":67134}}],"factionRestriction":2}, -{"id":47595,"name":"Crusader's Dragonscale Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,161,0,0,0,112,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67082}},{"crafted":{"profession":8,"spellId":67082}}],"factionRestriction":1}, -{"id":47596,"name":"Crusader's Dragonscale Breastplate","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,120,161,0,0,0,112,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67138}},{"crafted":{"profession":8,"spellId":67138}}],"factionRestriction":2}, -{"id":47597,"name":"Ensorcelled Nerubian Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67080}},{"crafted":{"profession":8,"spellId":67080}}],"factionRestriction":1}, -{"id":47598,"name":"Ensorcelled Nerubian Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67136}},{"crafted":{"profession":8,"spellId":67136}}],"factionRestriction":2}, -{"id":47599,"name":"Knightbane Carapace","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,112,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67086}},{"crafted":{"profession":8,"spellId":67086}}],"factionRestriction":1}, -{"id":47600,"name":"Knightbane Carapace","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,112,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67142}},{"crafted":{"profession":8,"spellId":67142}}],"factionRestriction":2}, -{"id":47601,"name":"Lunar Eclipse Robes","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67140}},{"crafted":{"profession":8,"spellId":67140}}],"factionRestriction":2}, -{"id":47602,"name":"Lunar Eclipse Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67084}},{"crafted":{"profession":8,"spellId":67084}}],"factionRestriction":1}, -{"id":47603,"name":"Merlin's Robe","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,112,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67066}},{"crafted":{"profession":11,"spellId":67066}}],"factionRestriction":1}, -{"id":47604,"name":"Merlin's Robe","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,193,112,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67146}},{"crafted":{"profession":11,"spellId":67146}}],"factionRestriction":2}, -{"id":47605,"name":"Royal Moonshroud Robe","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67064}},{"crafted":{"profession":11,"spellId":67064}}],"factionRestriction":1}, -{"id":47606,"name":"Royal Moonshroud Robe","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67144}},{"crafted":{"profession":11,"spellId":67144}}],"factionRestriction":2}, -{"id":47607,"name":"Collar of Ceaseless Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,67,97,0,0,0,46,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47608,"name":"Acidmaw Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,85,123,0,0,63,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,830,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47609,"name":"Gauntlets of Rising Anger","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[81,0,134,0,0,46,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47610,"name":"Armbands of the Northern Stalker","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,67,100,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47611,"name":"Dreadscale Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[48,0,100,0,0,39,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47612,"name":"Rod of Imprisoned Souls","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,56,38,0,0,28,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":414,"weaponDamageMax":769,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47613,"name":"Shoulderpads of the Glacial Wilds","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,116,74,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47614,"name":"Girdle of the Impaler","icon":"inv_belt_50","type":8,"armorType":4,"stats":[81,0,134,0,0,0,58,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47615,"name":"Belt of the Frozen Reach","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[0,0,128,90,0,0,45,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47616,"name":"Shoulderguards of the Spirit Walker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,123,82,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47617,"name":"Icehowl Cinch","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,120,82,0,57,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47618,"name":"Firestorm Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,95,67,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47619,"name":"Amulet of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,95,67,44,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47620,"name":"Leggings of the Demonic Messenger","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,176,113,86,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47621,"name":"Girdle of the Farseer","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,129,89,68,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47658,"name":"Brimstone Igniter","icon":"inv_wand_32","type":14,"rangedWeaponType":6,"stats":[0,0,60,43,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.8,"ilvl":245,"quality":4}, -{"id":47659,"name":"Crimson Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,43,64,0,0,0,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":368,"weaponDamageMax":552,"weaponSpeed":1.8,"ilvl":245,"quality":4}, -{"id":47660,"name":"Blades of the Sable Cross","icon":"inv_throwingaxepvp320_07","type":14,"rangedWeaponType":5,"stats":[32,0,64,0,0,22,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":368,"weaponDamageMax":552,"weaponSpeed":1.8,"ilvl":245,"quality":4}, -{"id":47661,"name":"Libram of Valiance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[43,0,64,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4,10]}, -{"id":47662,"name":"Libram of Veracity","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,64,43,28,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4,1,7]}, -{"id":47663,"name":"Felspark Bindings","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,94,67,0,36,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47664,"name":"Libram of Defiance","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[43,0,64,0,0,28,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4,10]}, -{"id":47665,"name":"Totem of Calming Tides","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,64,43,28,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4,1,7]}, -{"id":47666,"name":"Totem of Electrifying Wind","icon":"spell_nature_diseasecleansingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,64,43,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4,1,7]}, -{"id":47667,"name":"Totem of Quaking Earth","icon":"spell_nature_earthelemental_totem","type":14,"rangedWeaponType":4,"stats":[0,43,64,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1,7]}, -{"id":47668,"name":"Idol of Mutilation","icon":"inv_qirajidol_strife","type":14,"rangedWeaponType":4,"stats":[0,43,64,0,0,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":47669,"name":"Belt of the Winter Solstice","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,128,82,60,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47670,"name":"Idol of Lunar Fury","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,64,43,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":47671,"name":"Idol of Flaring Growth","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,64,43,28,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":47672,"name":"Sigil of Insolence","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[43,0,64,0,0,28,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":47673,"name":"Sigil of Virulence","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[43,0,64,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":47674,"name":"Helm of Thunderous Rampage","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[112,0,204,0,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47675,"name":"Faceplate of Thunderous Rampage","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[112,0,204,0,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47676,"name":"Dirk of the Night Watch","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,37,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":301,"weaponSpeed":1.4,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47677,"name":"Faceplate of the Honorbound","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[103,0,168,0,0,0,0,0,69,111,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47678,"name":"Headplate of the Honorbound","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[103,0,168,0,0,0,0,0,69,111,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47679,"name":"Endurance of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[39,0,100,0,0,0,0,0,48,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47680,"name":"Armguards of the Nether Lord","icon":"inv_bracer_29a","type":6,"armorType":4,"stats":[67,0,100,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47681,"name":"Heaume of the Restless Watch","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47682,"name":"Helm of the Restless Watch","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47683,"name":"Sentinel Scouting Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,89,106,0,0,0,82,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47684,"name":"Coif of the Brooding Dragon","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47685,"name":"Helm of the Brooding Dragon","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47686,"name":"Helm of Inner Warmth","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47687,"name":"Headguard of Inner Warmth","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47688,"name":"Mask of Lethal Intent","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,120,192,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47689,"name":"Hood of Lethal Intent","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,192,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47690,"name":"Helm of Abundant Growth","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,82,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47691,"name":"Mask of Abundant Growth","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,82,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47692,"name":"Hood of Smoldering Aftermath","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47693,"name":"Hood of Fiery Aftermath","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47694,"name":"Helm of Clouded Sight","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47695,"name":"Hood of Clouded Sight","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47696,"name":"Shoulderplates of Trembling Rage","icon":"inv_shoulder_88","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47697,"name":"Pauldrons of Trembling Rage","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47698,"name":"Shoulderplates of Enduring Order","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47699,"name":"Shoulderguards of Enduring Order","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47700,"name":"Loop of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[67,0,100,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47701,"name":"Shoulderplates of the Cavalier","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47702,"name":"Pauldrons of the Cavalier","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47703,"name":"Planestalker Signet","icon":"inv_jewelry_ring_61","type":11,"stats":[0,61,108,0,0,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47704,"name":"Epaulets of the Devourer","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47705,"name":"Pauldrons of the Devourer","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47706,"name":"Shoulders of the Groundbreaker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47707,"name":"Mantle of the Groundbreaker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47708,"name":"Duskstalker Shoulderpads","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,93,152,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47709,"name":"Duskstalker Pauldrons","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,93,152,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47710,"name":"Epaulets of the Fateful Accord","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47711,"name":"Girdle of the Nether Champion","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47712,"name":"Shoulders of the Fateful Accord","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47713,"name":"Mantle of Catastrophic Emanation","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47714,"name":"Pauldrons of Catastrophic Emanation","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47715,"name":"Pauldrons of Revered Mortality","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":1}, -{"id":47716,"name":"Mantle of Revered Mortality","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"factionRestriction":2}, -{"id":47717,"name":"Faceplate of the Silver Champion","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[104,0,168,0,0,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47718,"name":"Helm of the Silver Ranger","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,96,181,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47719,"name":"Gloves of the Silver Assassin","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,85,126,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47720,"name":"Pauldrons of the Silver Defender","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[81,0,134,0,0,0,0,0,0,50,58,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47721,"name":"Sandals of the Silver Magus","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,126,86,0,40,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47724,"name":"Blade of the Silver Disciple","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":1,"stats":[0,0,74,0,0,0,32,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}]}, -{"id":47725,"name":"Victor's Call","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47726,"name":"Talisman of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47727,"name":"Fervor of the Frostborn","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47728,"name":"Binding Light","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47729,"name":"Bloodshed Band","icon":"inv_jewelry_ring_71","type":11,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47730,"name":"Dexterous Brightstone Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47731,"name":"Clutch of Fortification","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47732,"name":"Band of the Invoker","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47733,"name":"Heartmender Circle","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47734,"name":"Mark of Supremacy","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47735,"name":"Glyph of Indomitability","icon":"inv_spiritshard_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":47736,"name":"Icefall Blade","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":387,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47737,"name":"Reckoning","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,112,172,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47738,"name":"Sabatons of the Lingering Vortex","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[60,0,134,0,0,40,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47739,"name":"Armor of Shifting Shadows","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,118,152,0,0,0,81,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47740,"name":"The Diplomat","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,35,64,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47741,"name":"Baelgun's Heavy Crossbow","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,38,57,0,0,0,26,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":539,"weaponDamageMax":810,"weaponSpeed":2.9,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47742,"name":"Chalice of Benedictus","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,59,0,37,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47743,"name":"Enlightenment","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,153,0,0,0,113,108,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":577,"weaponDamageMax":866,"weaponSpeed":3.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}]}, -{"id":47744,"name":"Gloves of the Azure Prophet","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47745,"name":"Gloves of Looming Shadow","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,116,82,0,44,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47746,"name":"Helm of the Snowy Grotto","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,146,105,78,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47747,"name":"Darkbane Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,92,59,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47748,"name":"Khadgar's Hood of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,173,97,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1}, -{"id":47749,"name":"Khadgar's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1}, -{"id":47750,"name":"Khadgar's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1}, -{"id":47751,"name":"Khadgar's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1}, -{"id":47752,"name":"Khadgar's Gauntlets of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1}, -{"id":47753,"name":"Khadgar's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47754,"name":"Khadgar's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47755,"name":"Khadgar's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47756,"name":"Khadgar's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47757,"name":"Khadgar's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47758,"name":"Khadgar's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47759,"name":"Khadgar's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47760,"name":"Khadgar's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47761,"name":"Khadgar's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47762,"name":"Khadgar's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47763,"name":"Sunstrider's Gauntlets of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47764,"name":"Sunstrider's Hood of Triumph","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47765,"name":"Sunstrider's Leggings of Triumph","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,218,137,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47766,"name":"Sunstrider's Robe of Triumph","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,218,137,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47767,"name":"Sunstrider's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47768,"name":"Sunstrider's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47769,"name":"Sunstrider's Robe of Triumph","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,193,120,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47770,"name":"Sunstrider's Leggings of Triumph","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47771,"name":"Sunstrider's Hood of Triumph","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47772,"name":"Sunstrider's Gauntlets of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47773,"name":"Sunstrider's Gauntlets of Conquest","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2}, -{"id":47774,"name":"Sunstrider's Hood of Conquest","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,173,97,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2}, -{"id":47775,"name":"Sunstrider's Leggings of Conquest","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2}, -{"id":47776,"name":"Sunstrider's Robe of Conquest","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2}, -{"id":47777,"name":"Sunstrider's Shoulderpads of Conquest","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2}, -{"id":47778,"name":"Kel'Thuzad's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47779,"name":"Kel'Thuzad's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47780,"name":"Kel'Thuzad's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47781,"name":"Kel'Thuzad's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47782,"name":"Kel'Thuzad's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47783,"name":"Kel'Thuzad's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1}, -{"id":47784,"name":"Kel'Thuzad's Hood of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1}, -{"id":47785,"name":"Kel'Thuzad's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1}, -{"id":47786,"name":"Kel'Thuzad's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1}, -{"id":47787,"name":"Kel'Thuzad's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1}, -{"id":47788,"name":"Kel'Thuzad's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47789,"name":"Kel'Thuzad's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47790,"name":"Kel'Thuzad's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,0,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47791,"name":"Kel'Thuzad's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47792,"name":"Kel'Thuzad's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,161,106,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":47793,"name":"Gul'dan's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,161,106,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47794,"name":"Gul'dan's Robe of Triumph","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,218,137,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47795,"name":"Gul'dan's Leggings of Triumph","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,218,137,0,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47796,"name":"Gul'dan's Hood of Triumph","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47797,"name":"Gul'dan's Gloves of Triumph","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":47798,"name":"Gul'dan's Shoulderpads of Conquest","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2}, -{"id":47799,"name":"Gul'dan's Robe of Conquest","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2}, -{"id":47800,"name":"Gul'dan's Leggings of Conquest","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2}, -{"id":47801,"name":"Gul'dan's Hood of Conquest","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2}, -{"id":47802,"name":"Gul'dan's Gloves of Conquest","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2}, -{"id":47803,"name":"Gul'dan's Gloves of Triumph","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47804,"name":"Gul'dan's Hood of Triumph","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47805,"name":"Gul'dan's Leggings of Triumph","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47806,"name":"Gul'dan's Robe of Triumph","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47807,"name":"Gul'dan's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":47808,"name":"The Lion's Maw","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47809,"name":"Argent Resolve","icon":"inv_mace_107","type":13,"weaponType":4,"handType":1,"stats":[0,0,73,0,52,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47810,"name":"Crusader's Glory","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47811,"name":"Chestguard of the Warden","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,90,56,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47812,"name":"Vigilant Ward","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,83,59,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47813,"name":"Helmet of the Crypt Lord","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,161,105,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47814,"name":"Westfall Saber","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[0,52,75,0,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47815,"name":"Cold Convergence","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,192,0,0,0,88,116,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":390,"weaponDamageMax":586,"weaponSpeed":2.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47816,"name":"The Grinder","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,48,62,0,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47829,"name":"Pauldrons of the Timeless Hunter","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,89,99,0,0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47830,"name":"Legplates of the Silver Hand","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[104,0,168,0,0,0,57,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47832,"name":"Spaulders of the Snow Bandit","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,84,120,0,0,0,51,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47834,"name":"Fordragon Blades","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47835,"name":"Bulwark of the Royal Guard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[51,0,100,0,0,0,0,0,0,34,49,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47836,"name":"Legplates of the Immortal Spider","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[0,0,161,113,70,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47837,"name":"Cinch of the Undying","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,122,90,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47838,"name":"Vestments of the Sleepless","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,167,113,0,86,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47849,"name":"Collar of Unending Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,67,97,0,0,0,46,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47850,"name":"Bracers of the Northern Stalker","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,67,100,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47851,"name":"Gauntlets of Mounting Anger","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,46,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47852,"name":"Dreadscale Bracers","icon":"inv_bracer_32b","type":6,"armorType":4,"stats":[48,0,100,0,0,39,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47853,"name":"Acidmaw Treads","icon":"inv_boots_leather_03a","type":10,"armorType":2,"stats":[0,85,123,0,0,63,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,830,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47854,"name":"Gormok's Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,100,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47855,"name":"Icehowl Binding","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,120,82,0,57,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47856,"name":"Scepter of Imprisoned Souls","icon":"inv_wand_31","type":14,"rangedWeaponType":6,"stats":[0,0,56,38,0,0,28,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":414,"weaponDamageMax":769,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47857,"name":"Pauldrons of the Glacial Wilds","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,116,74,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47858,"name":"Girdle of the Frozen Reach","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,128,90,0,0,45,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47859,"name":"Belt of the Impaler","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[81,0,134,0,0,0,58,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47860,"name":"Pauldrons of the Spirit Walker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,123,82,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47861,"name":"Felspark Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,94,67,0,36,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47862,"name":"Firestorm Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,95,67,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47863,"name":"Belt of the Bloodhoof Emissary","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,128,82,60,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47864,"name":"Pendant of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,95,67,44,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47865,"name":"Legwraps of the Demonic Messenger","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,176,113,86,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47866,"name":"Darkspear Ritual Binding","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,129,89,68,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47867,"name":"Warsong Poacher's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,89,106,0,0,0,82,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47868,"name":"Planestalker Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,61,108,0,0,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47869,"name":"Armplates of the Nether Lord","icon":"inv_bracer_26","type":6,"armorType":4,"stats":[67,0,100,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47870,"name":"Belt of the Nether Champion","icon":"inv_belt_50","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47871,"name":"Orcish Deathblade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,37,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":301,"weaponSpeed":1.4,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47872,"name":"Fortitude of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[39,0,100,0,0,0,0,0,48,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":47873,"name":"Sunreaver Magus' Sandals","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,126,86,0,40,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47874,"name":"Sunreaver Disciple's Blade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":1,"stats":[0,0,74,0,0,0,32,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}]}, -{"id":47875,"name":"Sunreaver Ranger's Helm","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,96,181,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47876,"name":"Sunreaver Champion's Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[104,0,168,0,0,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47877,"name":"Sunreaver Defender's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,0,0,0,0,50,58,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47878,"name":"Sunreaver Assassin's Gloves","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,85,126,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47879,"name":"Fetish of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47880,"name":"Binding Stone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47881,"name":"Vengeance of the Forsaken","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47882,"name":"Eitrigg's Oath","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":47883,"name":"Widebarrel Flintlock","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,35,64,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":456,"weaponDamageMax":847,"weaponSpeed":2.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47884,"name":"Edge of Agony","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,112,172,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47885,"name":"Greaves of the Lingering Vortex","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[60,0,134,0,0,40,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47886,"name":"Nemesis Blade","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":387,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47887,"name":"Vest of Shifting Shadows","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,118,152,0,0,0,81,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47888,"name":"Band of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[67,0,100,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47889,"name":"Looming Shadow Wraps","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,116,82,0,44,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47890,"name":"Darkbane Amulet","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,92,59,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47891,"name":"Helm of the High Mesa","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,146,105,78,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47892,"name":"Illumination","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,153,0,0,0,113,108,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":577,"weaponDamageMax":866,"weaponSpeed":3.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}]}, -{"id":47893,"name":"Sen'jin Ritualist Gloves","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47894,"name":"Mace of the Earthborn Chieftain","icon":"inv_mace_103","type":13,"weaponType":4,"handType":1,"stats":[0,0,73,0,52,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47895,"name":"Pride of the Kor'kron","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,83,59,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47896,"name":"Stoneskin Chestplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,90,56,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47897,"name":"Helm of the Crypt Lord","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,161,105,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47898,"name":"Frostblade Hatchet","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47899,"name":"Ardent Guard","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47900,"name":"Perdition","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,192,0,0,0,88,116,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":390,"weaponDamageMax":586,"weaponSpeed":2.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47901,"name":"Pauldrons of the Shadow Hunter","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,89,99,0,0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47902,"name":"Legplates of Redeemed Blood","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,168,0,0,0,57,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47903,"name":"Forsaken Bonecarver","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[0,52,75,0,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47904,"name":"Shoulderpads of the Snow Bandit","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,84,120,0,0,0,51,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47905,"name":"Blackhorn Bludgeon","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,48,62,0,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47906,"name":"Robes of the Sleepless","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,167,113,0,86,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47907,"name":"Darkmaw Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,38,57,0,0,0,26,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":539,"weaponDamageMax":810,"weaponSpeed":2.9,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47908,"name":"Sunwalker Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,161,113,70,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47909,"name":"Belt of the Eternal","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,122,90,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47910,"name":"Aegis of the Coliseum","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[51,0,100,0,0,0,0,0,0,34,49,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47911,"name":"Anguish","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":47913,"name":"Lightbane Focus","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,59,0,37,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":47914,"name":"Velen's Cowl of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,173,97,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1}, -{"id":47915,"name":"Collar of Ceaseless Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,70,108,0,0,0,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47916,"name":"Armbands of the Northern Stalker","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,70,114,0,0,50,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47917,"name":"Gauntlets of Rising Anger","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[85,0,151,0,0,45,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47918,"name":"Dreadscale Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[50,0,102,0,0,44,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47919,"name":"Acidmaw Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,93,131,0,0,69,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47920,"name":"Carnivorous Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,113,0,0,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47921,"name":"Icehowl Cinch","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,129,85,0,61,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47922,"name":"Rod of Imprisoned Souls","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,63,43,0,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47923,"name":"Shoulderpads of the Glacial Wilds","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,133,85,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47924,"name":"Belt of the Frozen Reach","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[0,0,142,93,0,0,45,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47925,"name":"Girdle of the Impaler","icon":"inv_belt_50","type":8,"armorType":4,"stats":[85,0,151,0,0,0,63,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47926,"name":"Shoulderguards of the Spirit Walker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,135,85,0,0,72,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1}, -{"id":47927,"name":"Felspark Bindings","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,107,68,0,33,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47928,"name":"Firestorm Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,107,68,0,56,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47929,"name":"Belt of the Winter Solstice","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,144,85,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47930,"name":"Amulet of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,108,68,42,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47931,"name":"Leggings of the Demonic Messenger","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,186,128,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47932,"name":"Girdle of the Farseer","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,133,93,77,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47933,"name":"Sentinel Scouting Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,101,114,0,0,0,87,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47934,"name":"Planestalker Signet","icon":"inv_jewelry_ring_61","type":11,"stats":[0,70,122,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47935,"name":"Armguards of the Nether Lord","icon":"inv_bracer_29a","type":6,"armorType":4,"stats":[67,0,113,0,0,0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47936,"name":"Velen's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1}, -{"id":47937,"name":"Girdle of the Nether Champion","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[97,0,139,0,0,0,0,0,0,84,34,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47938,"name":"Dirk of the Night Watch","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,82,0,0,42,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":330,"weaponSpeed":1.4,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47939,"name":"Endurance of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[40,0,114,0,0,0,0,0,46,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":47940,"name":"Sandals of the Silver Magus","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,130,89,0,47,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47941,"name":"Blade of the Silver Disciple","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":1,"stats":[0,0,84,0,0,0,37,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}]}, -{"id":47942,"name":"Helm of the Silver Ranger","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,112,204,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47943,"name":"Faceplate of the Silver Champion","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[120,0,192,0,0,0,69,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47944,"name":"Pauldrons of the Silver Defender","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[91,0,139,0,0,0,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47945,"name":"Gloves of the Silver Assassin","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,97,118,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47946,"name":"Talisman of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47947,"name":"Binding Light","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47948,"name":"Victor's Call","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47949,"name":"Fervor of the Frostborn","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1}, -{"id":47950,"name":"The Diplomat","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,40,73,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":501,"weaponDamageMax":931,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47951,"name":"Reckoning","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,120,193,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47952,"name":"Sabatons of the Lingering Vortex","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[64,0,151,0,0,47,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47953,"name":"Icefall Blade","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,66,0,0,0,41,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47954,"name":"Armor of Shifting Shadows","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,126,162,0,0,0,93,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47955,"name":"Loop of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[64,0,114,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47956,"name":"Gloves of Looming Shadow","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,132,93,0,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47957,"name":"Darkbane Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,105,68,0,42,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47958,"name":"Chalice of Benedictus","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,104,68,0,43,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47959,"name":"Helm of the Snowy Grotto","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,167,120,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47960,"name":"Enlightenment","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,163,0,0,0,122,117,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":634,"weaponDamageMax":951,"weaponSpeed":3.1,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}]}, -{"id":47961,"name":"Gloves of the Azure Prophet","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,85,46,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":47962,"name":"Argent Resolve","icon":"inv_mace_107","type":13,"weaponType":4,"handType":1,"stats":[0,0,82,0,50,0,50,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47963,"name":"Vigilant Ward","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,95,68,54,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47964,"name":"Chestguard of the Warden","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,95,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47965,"name":"Helmet of the Crypt Lord","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,181,120,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47966,"name":"The Lion's Maw","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,50,83,0,0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47967,"name":"Crusader's Glory","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47968,"name":"Cold Convergence","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,206,0,0,0,95,128,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":429,"weaponDamageMax":644,"weaponSpeed":2.1,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":47969,"name":"Pauldrons of the Timeless Hunter","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,101,108,0,0,0,86,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47970,"name":"Legplates of the Silver Hand","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[120,0,192,0,0,0,65,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47971,"name":"Westfall Saber","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[0,58,73,0,0,0,24,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47972,"name":"Spaulders of the Snow Bandit","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,91,130,0,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47973,"name":"The Grinder","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,54,71,0,0,0,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47974,"name":"Vestments of the Sleepless","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,181,120,0,96,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47975,"name":"Baelgun's Heavy Crossbow","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,35,64,0,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":593,"weaponDamageMax":890,"weaponSpeed":2.9,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47976,"name":"Legplates of the Immortal Spider","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[0,0,181,128,80,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47977,"name":"Cinch of the Undying","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,138,101,72,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47978,"name":"Bulwark of the Royal Guard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[58,0,114,0,0,0,0,0,0,38,58,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47979,"name":"Fordragon Blades","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,118,181,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1}, -{"id":47980,"name":"Velen's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1}, -{"id":47981,"name":"Velen's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1}, -{"id":47982,"name":"Velen's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1}, -{"id":47983,"name":"Velen's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47984,"name":"Velen's Cowl of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47985,"name":"Velen's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47986,"name":"Velen's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47987,"name":"Velen's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":47988,"name":"Collar of Unending Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,70,108,0,0,0,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47989,"name":"Bracers of the Northern Stalker","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,70,114,0,0,50,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47990,"name":"Gauntlets of Mounting Anger","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[85,0,151,0,0,45,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47991,"name":"Dreadscale Bracers","icon":"inv_bracer_32b","type":6,"armorType":4,"stats":[50,0,102,0,0,44,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47992,"name":"Acidmaw Treads","icon":"inv_boots_leather_03a","type":10,"armorType":2,"stats":[0,93,131,0,0,69,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47993,"name":"Gormok's Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,113,0,0,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47994,"name":"Icehowl Binding","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,129,85,0,61,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47995,"name":"Scepter of Imprisoned Souls","icon":"inv_wand_31","type":14,"rangedWeaponType":6,"stats":[0,0,63,43,0,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47996,"name":"Pauldrons of the Glacial Wilds","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,133,85,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47997,"name":"Girdle of the Frozen Reach","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,142,93,0,0,45,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47998,"name":"Belt of the Impaler","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[85,0,151,0,0,0,63,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":47999,"name":"Pauldrons of the Spirit Walker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,135,85,0,0,72,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2}, -{"id":48000,"name":"Felspark Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,107,68,0,33,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48001,"name":"Firestorm Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,107,68,0,56,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48002,"name":"Belt of the Bloodhoof Emissary","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,144,85,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48003,"name":"Pendant of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,108,68,42,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48004,"name":"Legwraps of the Demonic Messenger","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,186,128,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48005,"name":"Darkspear Ritual Binding","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,133,93,77,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48006,"name":"Warsong Poacher's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,101,114,0,0,0,87,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48007,"name":"Planestalker Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,70,122,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48008,"name":"Armplates of the Nether Lord","icon":"inv_bracer_26","type":6,"armorType":4,"stats":[67,0,113,0,0,0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48009,"name":"Belt of the Nether Champion","icon":"inv_belt_50","type":8,"armorType":4,"stats":[97,0,139,0,0,0,0,0,0,84,34,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48010,"name":"Orcish Deathblade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,58,82,0,0,42,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":330,"weaponSpeed":1.4,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48011,"name":"Fortitude of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[40,0,114,0,0,0,0,0,46,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":48012,"name":"Sunreaver Magus' Sandals","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,130,89,0,47,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48013,"name":"Sunreaver Disciple's Blade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":1,"stats":[0,0,84,0,0,0,37,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}]}, -{"id":48014,"name":"Sunreaver Ranger's Helm","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,112,204,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48015,"name":"Sunreaver Champion's Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[120,0,192,0,0,0,69,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48016,"name":"Sunreaver Defender's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[91,0,139,0,0,0,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48017,"name":"Sunreaver Assassin's Gloves","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,97,118,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48018,"name":"Fetish of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48019,"name":"Binding Stone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48020,"name":"Vengeance of the Forsaken","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48021,"name":"Eitrigg's Oath","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2}, -{"id":48022,"name":"Widebarrel Flintlock","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,40,73,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":501,"weaponDamageMax":931,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48023,"name":"Edge of Agony","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,120,193,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48024,"name":"Greaves of the Lingering Vortex","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[64,0,151,0,0,47,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48025,"name":"Nemesis Blade","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,52,66,0,0,0,41,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":283,"weaponDamageMax":425,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48026,"name":"Vest of Shifting Shadows","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,126,162,0,0,0,93,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48027,"name":"Band of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[64,0,114,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48028,"name":"Looming Shadow Wraps","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,132,93,0,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48029,"name":"Velen's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48030,"name":"Darkbane Amulet","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,105,68,0,42,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48031,"name":"Velen's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48032,"name":"Lightbane Focus","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,104,68,0,43,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48033,"name":"Velen's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48034,"name":"Helm of the High Mesa","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,167,120,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48035,"name":"Velen's Cowl of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48036,"name":"Illumination","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,163,0,0,0,122,117,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":634,"weaponDamageMax":951,"weaponSpeed":3.1,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}]}, -{"id":48037,"name":"Velen's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48038,"name":"Sen'jin Ritualist Gloves","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,85,46,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":48039,"name":"Mace of the Earthborn Chieftain","icon":"inv_mace_103","type":13,"weaponType":4,"handType":1,"stats":[0,0,82,0,50,0,50,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":48040,"name":"Pride of the Kor'kron","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,95,68,54,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48041,"name":"Stoneskin Chestplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,95,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48042,"name":"Helm of the Crypt Lord","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,181,120,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48043,"name":"Frostblade Hatchet","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,50,83,0,0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48044,"name":"Ardent Guard","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48045,"name":"Perdition","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,206,0,0,0,95,128,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":429,"weaponDamageMax":644,"weaponSpeed":2.1,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}]}, -{"id":48046,"name":"Pauldrons of the Shadow Hunter","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,101,108,0,0,0,86,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48047,"name":"Legplates of the Redeemed Blood Knight","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,192,0,0,0,65,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48048,"name":"Forsaken Bonecarver","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[0,58,73,0,0,0,24,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48049,"name":"Shoulderpads of the Snow Bandit","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,91,130,0,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48050,"name":"Blackhorn Bludgeon","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,54,71,0,0,0,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48051,"name":"Robes of the Sleepless","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,181,120,0,96,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48052,"name":"Darkmaw Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,35,64,0,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":593,"weaponDamageMax":890,"weaponSpeed":2.9,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48053,"name":"Sunwalker Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,181,128,80,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48054,"name":"Belt of the Eternal","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,138,101,72,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48055,"name":"Aegis of the Coliseum","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[58,0,114,0,0,0,0,0,0,38,58,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48056,"name":"Anguish","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,118,181,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2}, -{"id":48057,"name":"Zabra's Gloves of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48058,"name":"Zabra's Cowl of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,218,129,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48059,"name":"Zabra's Leggings of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48060,"name":"Zabra's Robe of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48061,"name":"Zabra's Shoulderpads of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48062,"name":"Zabra's Shoulderpads of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48063,"name":"Zabra's Robe of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48064,"name":"Zabra's Leggings of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48065,"name":"Zabra's Cowl of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48066,"name":"Zabra's Gloves of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48067,"name":"Zabra's Gloves of Conquest","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2}, -{"id":48068,"name":"Zabra's Cowl of Conquest","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,173,97,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2}, -{"id":48069,"name":"Zabra's Leggings of Conquest","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2}, -{"id":48070,"name":"Zabra's Robe of Conquest","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2}, -{"id":48071,"name":"Zabra's Shoulderpads of Conquest","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2}, -{"id":48072,"name":"Velen's Handwraps of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1}, -{"id":48073,"name":"Velen's Circlet of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1}, -{"id":48074,"name":"Velen's Pants of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1}, -{"id":48075,"name":"Velen's Raiments of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1}, -{"id":48076,"name":"Velen's Mantle of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1}, -{"id":48077,"name":"Velen's Handwraps of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48078,"name":"Velen's Circlet of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48079,"name":"Velen's Pants of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48080,"name":"Velen's Raiments of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48081,"name":"Velen's Mantle of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48082,"name":"Velen's Mantle of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48083,"name":"Velen's Raiments of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48084,"name":"Velen's Pants of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48085,"name":"Velen's Circlet of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48086,"name":"Velen's Handwraps of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48087,"name":"Zabra's Handwraps of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48088,"name":"Zabra's Circlet of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48089,"name":"Zabra's Pants of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,137,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48090,"name":"Zabra's Raiments of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48091,"name":"Zabra's Mantle of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48092,"name":"Zabra's Mantle of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48093,"name":"Zabra's Raiments of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48094,"name":"Zabra's Pants of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48095,"name":"Zabra's Circlet of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48096,"name":"Zabra's Handwraps of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48097,"name":"Zabra's Handwraps of Conquest","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2}, -{"id":48098,"name":"Zabra's Circlet of Conquest","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2}, -{"id":48099,"name":"Zabra's Pants of Conquest","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2}, -{"id":48100,"name":"Zabra's Raiments of Conquest","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2}, -{"id":48101,"name":"Zabra's Mantle of Conquest","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2}, -{"id":48102,"name":"Malfurion's Headpiece of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1}, -{"id":48129,"name":"Malfurion's Robe of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1}, -{"id":48130,"name":"Malfurion's Leggings of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1}, -{"id":48131,"name":"Malfurion's Spaulders of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1}, -{"id":48132,"name":"Malfurion's Handguards of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1}, -{"id":48133,"name":"Malfurion's Handguards of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48134,"name":"Malfurion's Headpiece of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48135,"name":"Malfurion's Leggings of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48136,"name":"Malfurion's Robe of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48137,"name":"Malfurion's Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48138,"name":"Malfurion's Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48139,"name":"Malfurion's Robe of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48140,"name":"Malfurion's Leggings of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48141,"name":"Malfurion's Headpiece of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48142,"name":"Malfurion's Handguards of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48143,"name":"Runetotem's Handguards of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48144,"name":"Runetotem's Headpiece of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48145,"name":"Runetotem's Leggings of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48146,"name":"Runetotem's Robe of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48147,"name":"Runetotem's Spaulders of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48148,"name":"Runetotem's Spaulders of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48149,"name":"Runetotem's Robe of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48150,"name":"Runetotem's Leggings of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48151,"name":"Runetotem's Headpiece of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48152,"name":"Runetotem's Handguards of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48153,"name":"Runetotem's Handguards of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2}, -{"id":48154,"name":"Runetotem's Headpiece of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2}, -{"id":48155,"name":"Runetotem's Leggings of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2}, -{"id":48156,"name":"Runetotem's Robe of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2}, -{"id":48157,"name":"Runetotem's Spaulders of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2}, -{"id":48158,"name":"Malfurion's Cover of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1}, -{"id":48159,"name":"Malfurion's Vestments of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1}, -{"id":48160,"name":"Malfurion's Trousers of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1}, -{"id":48161,"name":"Malfurion's Mantle of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1}, -{"id":48162,"name":"Malfurion's Gloves of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1}, -{"id":48163,"name":"Malfurion's Gloves of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48164,"name":"Malfurion's Cover of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48165,"name":"Malfurion's Trousers of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48166,"name":"Malfurion's Vestments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48167,"name":"Malfurion's Mantle of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48168,"name":"Malfurion's Mantle of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48169,"name":"Malfurion's Vestments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,137,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48170,"name":"Malfurion's Trousers of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48171,"name":"Malfurion's Cover of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48172,"name":"Malfurion's Gloves of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48173,"name":"Runetotem's Gloves of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48174,"name":"Runetotem's Cover of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48175,"name":"Runetotem's Trousers of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48176,"name":"Runetotem's Vestments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,137,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48177,"name":"Runetotem's Mantle of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,161,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48178,"name":"Runetotem's Mantle of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48179,"name":"Runetotem's Vestments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48180,"name":"Runetotem's Trousers of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48181,"name":"Runetotem's Cover of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48182,"name":"Runetotem's Gloves of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48183,"name":"Runetotem's Gloves of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2}, -{"id":48184,"name":"Runetotem's Cover of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2}, -{"id":48185,"name":"Runetotem's Trousers of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2}, -{"id":48186,"name":"Runetotem's Vestments of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2}, -{"id":48187,"name":"Runetotem's Mantle of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2}, -{"id":48188,"name":"Runetotem's Headguard of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2}, -{"id":48189,"name":"Runetotem's Raiments of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2}, -{"id":48190,"name":"Runetotem's Legguards of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2}, -{"id":48191,"name":"Runetotem's Shoulderpads of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2}, -{"id":48192,"name":"Runetotem's Handgrips of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2}, -{"id":48193,"name":"Runetotem's Handgrips of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,93,152,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48194,"name":"Runetotem's Headguard of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48195,"name":"Runetotem's Legguards of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,120,180,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48196,"name":"Runetotem's Raiments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,120,204,0,0,0,84,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48197,"name":"Runetotem's Shoulderpads of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,93,152,0,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48198,"name":"Runetotem's Shoulderpads of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,106,170,0,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48199,"name":"Runetotem's Raiments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,137,230,0,0,0,96,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48200,"name":"Runetotem's Legguards of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,137,206,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48201,"name":"Runetotem's Headguard of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48202,"name":"Runetotem's Handgrips of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48203,"name":"Malfurion's Handgrips of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48204,"name":"Malfurion's Headguard of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48205,"name":"Malfurion's Legguards of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,206,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48206,"name":"Malfurion's Raiments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,137,230,0,0,0,96,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48207,"name":"Malfurion's Shoulderpads of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,106,170,0,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48208,"name":"Malfurion's Shoulderpads of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,93,152,0,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48209,"name":"Malfurion's Raiments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,120,204,0,0,0,84,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48210,"name":"Malfurion's Legguards of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,120,180,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48211,"name":"Malfurion's Headguard of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48212,"name":"Malfurion's Handgrips of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,93,152,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48213,"name":"Malfurion's Handgrips of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1}, -{"id":48214,"name":"Malfurion's Headguard of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1}, -{"id":48215,"name":"Malfurion's Legguards of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1}, -{"id":48216,"name":"Malfurion's Raiments of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1}, -{"id":48217,"name":"Malfurion's Shoulderpads of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1}, -{"id":48218,"name":"VanCleef's Helmet of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1}, -{"id":48219,"name":"VanCleef's Breastplate of Conquest","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1}, -{"id":48220,"name":"VanCleef's Legplates of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1}, -{"id":48221,"name":"VanCleef's Pauldrons of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1}, -{"id":48222,"name":"VanCleef's Gauntlets of Conquest","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1}, -{"id":48223,"name":"VanCleef's Breastplate of Triumph","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,120,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48224,"name":"VanCleef's Gauntlets of Triumph","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,101,140,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48225,"name":"VanCleef's Helmet of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48226,"name":"VanCleef's Legplates of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,120,192,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48227,"name":"VanCleef's Pauldrons of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,101,140,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48228,"name":"VanCleef's Pauldrons of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,114,158,0,0,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48229,"name":"VanCleef's Legplates of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,218,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48230,"name":"VanCleef's Helmet of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48231,"name":"VanCleef's Gauntlets of Triumph","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,114,158,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48232,"name":"VanCleef's Breastplate of Triumph","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48233,"name":"Garona's Breastplate of Triumph","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48234,"name":"Garona's Gauntlets of Triumph","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,114,158,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48235,"name":"Garona's Helmet of Triumph","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48236,"name":"Garona's Legplates of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,137,218,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48237,"name":"Garona's Pauldrons of Triumph","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,114,158,0,0,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48238,"name":"Garona's Pauldrons of Triumph","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,101,140,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48239,"name":"Garona's Legplates of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,120,192,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48240,"name":"Garona's Helmet of Triumph","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48241,"name":"Garona's Gauntlets of Triumph","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,101,140,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48242,"name":"Garona's Breastplate of Triumph","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,120,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48243,"name":"Garona's Breastplate of Conquest","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2}, -{"id":48244,"name":"Garona's Gauntlets of Conquest","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2}, -{"id":48245,"name":"Garona's Helmet of Conquest","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2}, -{"id":48246,"name":"Garona's Legplates of Conquest","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2}, -{"id":48247,"name":"Garona's Pauldrons of Conquest","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2}, -{"id":48250,"name":"Windrunner's Headpiece of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1}, -{"id":48251,"name":"Windrunner's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,104,181,0,0,62,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1}, -{"id":48252,"name":"Windrunner's Legguards of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1}, -{"id":48253,"name":"Windrunner's Spaulders of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1}, -{"id":48254,"name":"Windrunner's Handguards of Conquest","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,81,106,0,0,0,82,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1}, -{"id":48255,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,204,0,0,71,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48256,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48257,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48258,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48259,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48260,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48261,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,137,196,0,0,0,137,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48262,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,137,181,0,0,0,137,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48263,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,106,135,0,0,0,106,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48264,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,137,230,0,0,82,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48265,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,137,230,0,0,82,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48266,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,106,135,0,0,0,106,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48267,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,137,181,0,0,0,137,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48268,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,137,196,0,0,0,137,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48269,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48270,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48271,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48272,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48273,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48274,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48275,"name":"Windrunner's Tunic of Conquest","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2}, -{"id":48276,"name":"Windrunner's Handguards of Conquest","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,81,106,0,0,0,82,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2}, -{"id":48277,"name":"Windrunner's Headpiece of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2}, -{"id":48278,"name":"Windrunner's Legguards of Conquest","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2}, -{"id":48279,"name":"Windrunner's Spaulders of Conquest","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2}, -{"id":48280,"name":"Nobundo's Headpiece of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1}, -{"id":48281,"name":"Nobundo's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1}, -{"id":48282,"name":"Nobundo's Legguards of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1}, -{"id":48283,"name":"Nobundo's Spaulders of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1}, -{"id":48284,"name":"Nobundo's Handguards of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1}, -{"id":48285,"name":"Nobundo's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48286,"name":"Nobundo's Handguards of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,93,68,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48287,"name":"Nobundo's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,80,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48288,"name":"Nobundo's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,80,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48289,"name":"Nobundo's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,68,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48290,"name":"Nobundo's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48291,"name":"Nobundo's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,137,92,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48292,"name":"Nobundo's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,218,129,92,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48293,"name":"Nobundo's Handguards of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48294,"name":"Nobundo's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48295,"name":"Thrall's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2}, -{"id":48296,"name":"Thrall's Handguards of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2}, -{"id":48297,"name":"Thrall's Headpiece of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2}, -{"id":48298,"name":"Thrall's Legguards of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2}, -{"id":48299,"name":"Thrall's Spaulders of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2}, -{"id":48300,"name":"Thrall's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48301,"name":"Thrall's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,93,68,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48302,"name":"Thrall's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,80,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48303,"name":"Thrall's Legguards of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,80,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48304,"name":"Thrall's Spaulders of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,68,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48305,"name":"Thrall's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48306,"name":"Thrall's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48307,"name":"Thrall's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,218,129,92,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48308,"name":"Thrall's Legguards of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,137,92,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48309,"name":"Thrall's Spaulders of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48310,"name":"Nobundo's Hauberk of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1}, -{"id":48312,"name":"Nobundo's Gloves of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1}, -{"id":48313,"name":"Nobundo's Helm of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1}, -{"id":48314,"name":"Nobundo's Kilt of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1}, -{"id":48315,"name":"Nobundo's Shoulderpads of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1}, -{"id":48316,"name":"Nobundo's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48317,"name":"Nobundo's Gloves of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,93,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48318,"name":"Nobundo's Helm of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48319,"name":"Nobundo's Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48320,"name":"Nobundo's Shoulderpads of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48321,"name":"Nobundo's Shoulderpads of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48322,"name":"Nobundo's Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48323,"name":"Nobundo's Helm of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,218,129,0,0,92,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48324,"name":"Nobundo's Gloves of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,161,106,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48325,"name":"Nobundo's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48326,"name":"Thrall's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48327,"name":"Thrall's Gloves of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,161,106,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48328,"name":"Thrall's Helm of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,218,129,0,0,92,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48329,"name":"Thrall's Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48330,"name":"Thrall's Shoulderpads of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48331,"name":"Thrall's Shoulderpads of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48332,"name":"Thrall's Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48333,"name":"Thrall's Helm of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48334,"name":"Thrall's Gloves of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,93,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48335,"name":"Thrall's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48336,"name":"Thrall's Hauberk of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2}, -{"id":48337,"name":"Thrall's Gloves of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2}, -{"id":48338,"name":"Thrall's Helm of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2}, -{"id":48339,"name":"Thrall's Kilt of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2}, -{"id":48340,"name":"Thrall's Shoulderpads of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2}, -{"id":48341,"name":"Nobundo's Chestguard of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1}, -{"id":48342,"name":"Nobundo's Grips of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1}, -{"id":48343,"name":"Nobundo's Faceguard of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,96,181,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1}, -{"id":48344,"name":"Nobundo's War-Kilt of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1}, -{"id":48345,"name":"Nobundo's Shoulderguards of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1}, -{"id":48346,"name":"Nobundo's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,136,160,0,0,0,111,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48347,"name":"Nobundo's Grips of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,93,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48348,"name":"Nobundo's Faceguard of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,112,204,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48349,"name":"Nobundo's War-Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48350,"name":"Nobundo's Shoulderguards of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48351,"name":"Nobundo's Shoulderguards of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48352,"name":"Nobundo's War-Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,137,230,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48353,"name":"Nobundo's Faceguard of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,129,230,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48354,"name":"Nobundo's Grips of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,106,170,0,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48355,"name":"Nobundo's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,153,181,0,0,0,129,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48356,"name":"Thrall's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,153,181,0,0,0,129,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48357,"name":"Thrall's Grips of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,106,170,0,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48358,"name":"Thrall's Faceguard of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,129,230,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48359,"name":"Thrall's War-Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,137,230,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1662,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48360,"name":"Thrall's Shoulderguards of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48361,"name":"Thrall's Shoulderguards of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48362,"name":"Thrall's War-Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48363,"name":"Thrall's Faceguard of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,112,204,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48364,"name":"Thrall's Grips of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,93,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48365,"name":"Thrall's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,136,160,0,0,0,111,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1806,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48366,"name":"Thrall's Chestguard of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2}, -{"id":48367,"name":"Thrall's Grips of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2}, -{"id":48368,"name":"Thrall's Faceguard of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,96,181,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2}, -{"id":48369,"name":"Thrall's War-Kilt of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2}, -{"id":48370,"name":"Thrall's Shoulderguards of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2}, -{"id":48371,"name":"Wrynn's Helmet of Conquest","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1}, -{"id":48372,"name":"Wrynn's Battleplate of Conquest","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1}, -{"id":48373,"name":"Wrynn's Legplates of Conquest","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1}, -{"id":48374,"name":"Wrynn's Shoulderplates of Conquest","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1}, -{"id":48375,"name":"Wrynn's Gauntlets of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1}, -{"id":48376,"name":"Wrynn's Battleplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48377,"name":"Wrynn's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48378,"name":"Wrynn's Helmet of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[112,0,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48379,"name":"Wrynn's Legplates of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48380,"name":"Wrynn's Shoulderplates of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48381,"name":"Wrynn's Shoulderplates of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[106,0,171,0,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48382,"name":"Wrynn's Legplates of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48383,"name":"Wrynn's Helmet of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[129,0,229,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48384,"name":"Wrynn's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48385,"name":"Wrynn's Battleplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48386,"name":"Hellscream's Battleplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2}, -{"id":48387,"name":"Hellscream's Gauntlets of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2}, -{"id":48388,"name":"Hellscream's Helmet of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2}, -{"id":48389,"name":"Hellscream's Legplates of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2}, -{"id":48390,"name":"Hellscream's Shoulderplates of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2}, -{"id":48391,"name":"Hellscream's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48392,"name":"Hellscream's Gauntlets of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48393,"name":"Hellscream's Helmet of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48394,"name":"Hellscream's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48395,"name":"Hellscream's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48396,"name":"Hellscream's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48397,"name":"Hellscream's Gauntlets of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48398,"name":"Hellscream's Helmet of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[129,0,229,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48399,"name":"Hellscream's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48400,"name":"Hellscream's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[106,0,171,0,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48402,"name":"Relentless Gladiator's Sunderer","icon":"inv_axe_111","type":13,"weaponType":1,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4}, -{"id":48404,"name":"Relentless Gladiator's Crusher","icon":"inv_mace_112","type":13,"weaponType":4,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4}, -{"id":48406,"name":"Relentless Gladiator's Claymore","icon":"inv_sword_149","type":13,"weaponType":9,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4}, -{"id":48408,"name":"Relentless Gladiator's Mageblade","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,125,0,0,0,48,0,0,0,0,0,0,0,878,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4}, -{"id":48410,"name":"Relentless Gladiator's Skirmish Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,0,113,0,0,0,0,0,0,0,878,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2,"ilvl":258,"quality":4}, -{"id":48412,"name":"Relentless Gladiator's Acute Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,113,0,0,0,0,0,0,0,0,878,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2,"ilvl":258,"quality":4}, -{"id":48414,"name":"Relentless Gladiator's Combat Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,0,0,113,0,0,0,0,0,0,878,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2,"ilvl":258,"quality":4}, -{"id":48420,"name":"Relentless Gladiator's Recurve","icon":"inv_weapon_bow_54","type":14,"rangedWeaponType":1,"stats":[0,48,73,0,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":676,"weaponDamageMax":1014,"weaponSpeed":3,"ilvl":258,"quality":4}, -{"id":48422,"name":"Relentless Gladiator's Repeater","icon":"inv_weapon_crossbow_36","type":14,"rangedWeaponType":2,"stats":[0,0,73,0,0,0,32,0,0,0,0,0,97,97,0,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":676,"weaponDamageMax":1014,"weaponSpeed":3,"ilvl":258,"quality":4}, -{"id":48424,"name":"Relentless Gladiator's Shotgun","icon":"inv_weapon_rifle_37","type":14,"rangedWeaponType":3,"stats":[0,48,73,0,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":676,"weaponDamageMax":1014,"weaponSpeed":3,"ilvl":258,"quality":4}, -{"id":48426,"name":"Relentless Gladiator's Dicer","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4}, -{"id":48428,"name":"Relentless Gladiator's Dirk","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":1.4,"ilvl":258,"quality":4}, -{"id":48429,"name":"Wrynn's Greathelm of Conquest","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1}, -{"id":48430,"name":"Wrynn's Greathelm of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48432,"name":"Relentless Gladiator's Left Razor","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4}, -{"id":48433,"name":"Wrynn's Greathelm of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,73,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48435,"name":"Relentless Gladiator's Punisher","icon":"inv_mace_111","type":13,"weaponType":4,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4}, -{"id":48436,"name":"Wrynn's Breastplate of Conquest","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1}, -{"id":48438,"name":"Relentless Gladiator's Swiftblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.5,"ilvl":258,"quality":4}, -{"id":48440,"name":"Relentless Gladiator's Splitter","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48442,"name":"Relentless Gladiator's Eviscerator","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4}, -{"id":48444,"name":"Relentless Gladiator's Left Claw","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48445,"name":"Wrynn's Legguards of Conquest","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1}, -{"id":48446,"name":"Wrynn's Legguards of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48447,"name":"Wrynn's Legguards of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48448,"name":"Wrynn's Pauldrons of Conquest","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,90,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1}, -{"id":48449,"name":"Wrynn's Handguards of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1}, -{"id":48450,"name":"Wrynn's Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48451,"name":"Wrynn's Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48452,"name":"Wrynn's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48453,"name":"Wrynn's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48454,"name":"Wrynn's Pauldrons of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48455,"name":"Wrynn's Pauldrons of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48456,"name":"Hellscream's Breastplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2}, -{"id":48457,"name":"Hellscream's Handguards of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2}, -{"id":48458,"name":"Hellscream's Greathelm of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2}, -{"id":48459,"name":"Hellscream's Legguards of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2}, -{"id":48460,"name":"Hellscream's Pauldrons of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,90,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2}, -{"id":48461,"name":"Hellscream's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48462,"name":"Hellscream's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48463,"name":"Hellscream's Greathelm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48464,"name":"Hellscream's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48465,"name":"Hellscream's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48466,"name":"Hellscream's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48467,"name":"Hellscream's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48468,"name":"Hellscream's Greathelm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,73,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48469,"name":"Hellscream's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48470,"name":"Hellscream's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48472,"name":"Thassarian's Helmet of Conquest","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1}, -{"id":48474,"name":"Thassarian's Battleplate of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1}, -{"id":48476,"name":"Thassarian's Legplates of Conquest","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1}, -{"id":48478,"name":"Thassarian's Shoulderplates of Conquest","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1}, -{"id":48480,"name":"Thassarian's Gauntlets of Conquest","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1}, -{"id":48481,"name":"Thassarian's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48482,"name":"Thassarian's Gauntlets of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48483,"name":"Thassarian's Helmet of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48484,"name":"Thassarian's Legplates of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48485,"name":"Thassarian's Shoulderplates of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48486,"name":"Thassarian's Shoulderplates of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48487,"name":"Thassarian's Legplates of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48488,"name":"Thassarian's Helmet of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48489,"name":"Thassarian's Gauntlets of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48490,"name":"Thassarian's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48491,"name":"Koltira's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48492,"name":"Koltira's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48493,"name":"Koltira's Helmet of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48494,"name":"Koltira's Legplates of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48495,"name":"Koltira's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48496,"name":"Koltira's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48497,"name":"Koltira's Legplates of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48498,"name":"Koltira's Helmet of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48499,"name":"Koltira's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48500,"name":"Koltira's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48501,"name":"Koltira's Battleplate of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2}, -{"id":48502,"name":"Koltira's Gauntlets of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2}, -{"id":48503,"name":"Koltira's Helmet of Conquest","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2}, -{"id":48504,"name":"Koltira's Legplates of Conquest","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2}, -{"id":48505,"name":"Koltira's Shoulderplates of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2}, -{"id":48507,"name":"Relentless Gladiator's Handaxe","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48509,"name":"Relentless Gladiator's Spike","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":312,"weaponDamageMax":468,"weaponSpeed":1.8,"ilvl":258,"quality":4}, -{"id":48511,"name":"Relentless Gladiator's Truncheon","icon":"inv_mace_110","type":13,"weaponType":4,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48513,"name":"Relentless Gladiator's Longblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48515,"name":"Relentless Gladiator's Grasp","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":1,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":394,"weaponDamageMax":732,"weaponSpeed":2.6,"ilvl":258,"quality":4}, -{"id":48517,"name":"Relentless Gladiator's Halberd","icon":"inv_staff_104","type":13,"weaponType":6,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4}, -{"id":48519,"name":"Relentless Gladiator's Salvation","icon":"inv_mace_111","type":13,"weaponType":4,"handType":1,"stats":[0,0,125,0,48,0,0,0,0,0,0,0,0,0,878,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4}, -{"id":48521,"name":"Relentless Gladiator's Light Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,113,0,0,0,0,0,0,0,0,0,878,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2,"ilvl":258,"quality":4}, -{"id":48523,"name":"Relentless Gladiator's Greatstaff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,137,230,0,0,0,86,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1]}, -{"id":48529,"name":"Thassarian's Faceguard of Conquest","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[92,0,145,0,0,45,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1}, -{"id":48531,"name":"Thassarian's Chestguard of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,85,57,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1}, -{"id":48533,"name":"Thassarian's Legguards of Conquest","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,89,53,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1}, -{"id":48535,"name":"Thassarian's Pauldrons of Conquest","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[68,0,122,0,0,37,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1}, -{"id":48537,"name":"Thassarian's Handguards of Conquest","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1}, -{"id":48538,"name":"Thassarian's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,97,65,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48539,"name":"Thassarian's Handguards of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,80,45,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48540,"name":"Thassarian's Faceguard of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[103,0,168,0,0,53,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48541,"name":"Thassarian's Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,101,61,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48542,"name":"Thassarian's Pauldrons of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[77,0,139,0,0,43,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48543,"name":"Thassarian's Pauldrons of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[86,0,158,0,0,50,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48544,"name":"Thassarian's Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,115,70,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48545,"name":"Thassarian's Faceguard of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[116,0,194,0,0,62,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48546,"name":"Thassarian's Handguards of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,90,52,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48547,"name":"Thassarian's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,110,74,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48548,"name":"Koltira's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,110,74,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48549,"name":"Koltira's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,90,52,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48550,"name":"Koltira's Faceguard of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[116,0,194,0,0,62,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48551,"name":"Koltira's Legguards of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,114,70,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48552,"name":"Koltira's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[86,0,158,0,0,50,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48553,"name":"Koltira's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[77,0,139,0,0,43,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48554,"name":"Koltira's Legguards of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,101,61,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48555,"name":"Koltira's Faceguard of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[103,0,168,0,0,53,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48556,"name":"Koltira's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,80,45,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48557,"name":"Koltira's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,97,65,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48558,"name":"Koltira's Chestguard of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,85,57,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2}, -{"id":48559,"name":"Koltira's Handguards of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2}, -{"id":48560,"name":"Koltira's Faceguard of Conquest","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[92,0,145,0,0,45,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2}, -{"id":48561,"name":"Koltira's Legguards of Conquest","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,89,53,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2}, -{"id":48562,"name":"Koltira's Pauldrons of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[68,0,122,0,0,37,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2}, -{"id":48564,"name":"Turalyon's Headpiece of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1}, -{"id":48566,"name":"Turalyon's Tunic of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1}, -{"id":48568,"name":"Turalyon's Greaves of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1}, -{"id":48572,"name":"Turalyon's Spaulders of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1}, -{"id":48574,"name":"Turalyon's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1}, -{"id":48575,"name":"Turalyon's Tunic of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48576,"name":"Turalyon's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,144,93,60,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48577,"name":"Turalyon's Headpiece of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,193,112,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48578,"name":"Turalyon's Greaves of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48579,"name":"Turalyon's Spaulders of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48580,"name":"Turalyon's Spaulders of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48581,"name":"Turalyon's Greaves of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48582,"name":"Turalyon's Headpiece of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48583,"name":"Turalyon's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48584,"name":"Turalyon's Tunic of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48585,"name":"Liadrin's Spaulders of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48586,"name":"Liadrin's Greaves of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48587,"name":"Liadrin's Headpiece of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48588,"name":"Liadrin's Gloves of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48589,"name":"Liadrin's Tunic of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48590,"name":"Liadrin's Spaulders of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48591,"name":"Liadrin's Greaves of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48592,"name":"Liadrin's Headpiece of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,193,112,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48593,"name":"Liadrin's Gloves of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,144,93,60,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48594,"name":"Liadrin's Tunic of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48595,"name":"Liadrin's Spaulders of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2}, -{"id":48596,"name":"Liadrin's Greaves of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2}, -{"id":48597,"name":"Liadrin's Headpiece of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2}, -{"id":48598,"name":"Liadrin's Gloves of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2}, -{"id":48599,"name":"Liadrin's Tunic of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2}, -{"id":48602,"name":"Turalyon's Battleplate of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1}, -{"id":48603,"name":"Turalyon's Gauntlets of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1}, -{"id":48604,"name":"Turalyon's Helm of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1}, -{"id":48605,"name":"Turalyon's Legplates of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1}, -{"id":48606,"name":"Turalyon's Shoulderplates of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1}, -{"id":48607,"name":"Turalyon's Battleplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48608,"name":"Turalyon's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48609,"name":"Turalyon's Helm of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48610,"name":"Turalyon's Legplates of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48611,"name":"Turalyon's Shoulderplates of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48612,"name":"Turalyon's Shoulderplates of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48613,"name":"Turalyon's Legplates of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48614,"name":"Turalyon's Helm of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48615,"name":"Turalyon's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48616,"name":"Turalyon's Battleplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48617,"name":"Liadrin's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48618,"name":"Liadrin's Gauntlets of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48619,"name":"Liadrin's Helm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48620,"name":"Liadrin's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48621,"name":"Liadrin's Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[106,0,171,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48622,"name":"Liadrin's Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48623,"name":"Liadrin's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48624,"name":"Liadrin's Helm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48625,"name":"Liadrin's Gauntlets of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48626,"name":"Liadrin's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48627,"name":"Liadrin's Shoulderplates of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2}, -{"id":48628,"name":"Liadrin's Legplates of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2}, -{"id":48629,"name":"Liadrin's Helm of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2}, -{"id":48630,"name":"Liadrin's Gauntlets of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2}, -{"id":48631,"name":"Liadrin's Battleplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2}, -{"id":48632,"name":"Turalyon's Breastplate of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1}, -{"id":48633,"name":"Turalyon's Handguards of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1}, -{"id":48634,"name":"Turalyon's Faceguard of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1}, -{"id":48635,"name":"Turalyon's Legguards of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1}, -{"id":48636,"name":"Turalyon's Shoulderguards of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,90,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1}, -{"id":48637,"name":"Turalyon's Shoulderguards of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48638,"name":"Turalyon's Legguards of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48639,"name":"Turalyon's Faceguard of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,90,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48640,"name":"Turalyon's Handguards of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48641,"name":"Turalyon's Breastplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35577,"npcName":"Valiant Laradia","zoneId":210}}],"factionRestriction":1}, -{"id":48642,"name":"Turalyon's Breastplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48643,"name":"Turalyon's Handguards of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48644,"name":"Turalyon's Faceguard of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,102,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48645,"name":"Turalyon's Legguards of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48646,"name":"Turalyon's Shoulderguards of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"sources":[{"soldBy":{"npcId":35575,"npcName":"Champion Isimode","zoneId":210}}],"factionRestriction":1}, -{"id":48647,"name":"Liadrin's Shoulderguards of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1943,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48648,"name":"Liadrin's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48649,"name":"Liadrin's Faceguard of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,102,0,0,0,0,0,0,0,0,0,0,0,2105,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48650,"name":"Liadrin's Handguards of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1619,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48651,"name":"Liadrin's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2591,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35576,"npcName":"Champion Faesrol","zoneId":210}}],"factionRestriction":2}, -{"id":48652,"name":"Liadrin's Breastplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2}, -{"id":48653,"name":"Liadrin's Handguards of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2}, -{"id":48654,"name":"Liadrin's Faceguard of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2}, -{"id":48655,"name":"Liadrin's Legguards of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2}, -{"id":48656,"name":"Liadrin's Shoulderguards of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,90,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2}, -{"id":48657,"name":"Liadrin's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48658,"name":"Liadrin's Handguards of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48659,"name":"Liadrin's Faceguard of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,90,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48660,"name":"Liadrin's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48661,"name":"Liadrin's Shoulderguards of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"sources":[{"soldBy":{"npcId":35578,"npcName":"Valiant Bressia","zoneId":210}}],"factionRestriction":2}, -{"id":48663,"name":"Tankard O' Terror","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,47,64,0,0,0,29,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":312,"weaponDamageMax":580,"weaponSpeed":2.6,"ilvl":226,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":48666,"name":"Drape of the Sunreavers","icon":"inv_misc_cape_18","type":4,"stats":[0,0,122,77,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":48667,"name":"Shawl of the Devout Crusader","icon":"inv_misc_cape_18","type":4,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":48668,"name":"Cloak of Serrated Blades","icon":"inv_misc_cape_18","type":4,"stats":[0,85,116,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":48669,"name":"Cloak of the Triumphant Combatant","icon":"inv_misc_cape_18","type":4,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":48670,"name":"Cloak of the Unflinching Guardian","icon":"inv_misc_cape_18","type":4,"stats":[85,0,116,0,0,0,0,0,0,60,45,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":48671,"name":"Drape of Bitter Incantation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,122,77,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":48672,"name":"Shawl of Fervent Crusader","icon":"inv_misc_cape_16","type":4,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":48673,"name":"Cloak of the Silver Covenant","icon":"inv_misc_cape_16","type":4,"stats":[0,85,116,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":48674,"name":"Cloak of the Victorious Combatant","icon":"inv_misc_cape_16","type":4,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":48675,"name":"Cloak of the Unmoving Guardian","icon":"inv_misc_cape_16","type":4,"stats":[85,0,116,0,0,0,0,0,0,60,45,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":48677,"name":"Champion's Deathdealer Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,68,103,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48683,"name":"Mystical Vest of Elements","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,103,68,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48685,"name":"Polished Breastplate of Valor","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[78,0,78,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48687,"name":"Preened Ironfeather Breastplate","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,103,68,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48689,"name":"Stained Shadowcraft Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,68,103,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48691,"name":"Tattered Dreadmist Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,103,68,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,729,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":48693,"name":"Heartsmasher","icon":"inv_mace_103","type":13,"weaponType":4,"handType":1,"stats":[0,0,92,0,0,0,36,54,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":48695,"name":"Mor'kosh, the Bloodreaver","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[128,0,204,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":48697,"name":"Frenzystrike Longbow","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,39,55,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":501,"weaponDamageMax":931,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":48699,"name":"Blood and Glory","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,46,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":48701,"name":"Spellharvest","icon":"inv_sword_137","type":13,"weaponType":9,"handType":1,"stats":[0,0,104,0,0,32,0,52,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":48703,"name":"The Facebreaker","icon":"inv_weapon_hand_30","type":13,"weaponType":3,"handType":1,"stats":[0,58,71,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2}, -{"id":48705,"name":"Attrition","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,128,165,0,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":490,"weaponDamageMax":736,"weaponSpeed":2.4,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2}, -{"id":48708,"name":"Spellstorm Blade","icon":"inv_sword_144","type":13,"weaponType":9,"handType":1,"stats":[0,0,104,0,0,32,0,52,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":48709,"name":"Heartcrusher","icon":"inv_mace_107","type":13,"weaponType":4,"handType":1,"stats":[0,0,92,0,0,0,36,54,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}]}, -{"id":48710,"name":"Paragon's Breadth","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,128,165,0,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":490,"weaponDamageMax":736,"weaponSpeed":2.4,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":48711,"name":"Rhok'shalla, the Shadow's Bane","icon":"inv_weapon_bow_52","type":14,"rangedWeaponType":1,"stats":[0,39,55,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":501,"weaponDamageMax":931,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":48712,"name":"The Spinebreaker","icon":"inv_weapon_hand_29","type":13,"weaponType":3,"handType":1,"stats":[0,58,71,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":409,"weaponDamageMax":614,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":48713,"name":"Lothar's Edge","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[128,0,204,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":736,"weaponDamageMax":1105,"weaponSpeed":3.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1}, -{"id":48714,"name":"Honor of the Fallen","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,46,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1}, -{"id":48716,"name":"Venerable Mass of McGowan","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,29,44,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.8,"ilvl":1,"quality":7}, -{"id":48718,"name":"Repurposed Lava Dredger","icon":"inv_gizmo_02","type":13,"weaponType":4,"handType":4,"stats":[0,68,103,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":361,"weaponDamageMax":543,"weaponSpeed":2.9,"ilvl":1,"quality":7}, -{"id":48722,"name":"Shard of the Crystal Heart","icon":"inv_spiritshard_01","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":48724,"name":"Talisman of Resurgence","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":48945,"name":"Gnomish Thinking Cap","icon":"inv_helmet_49","type":1,"stats":[0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":48954,"name":"Etched Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,41,119,0,0,0,43,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":48955,"name":"Etched Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,94,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":48956,"name":"Etched Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[67,0,99,0,0,0,45,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":48957,"name":"Etched Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,94,63,0,0,41,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":48974,"name":"Titan-Forged Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,63,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48975,"name":"Titan-Forged Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48976,"name":"Titan-Forged Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,63,90,0,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48977,"name":"Titan-Forged Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,90,63,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48978,"name":"Titan-Forged Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[63,0,95,0,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1044,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48979,"name":"Titan-Forged Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48980,"name":"Titan-Forged Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,63,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48981,"name":"Titan-Forged Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48982,"name":"Titan-Forged Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,63,95,0,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48983,"name":"Titan-Forged Chain Leggings of Triumph","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,104,181,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48987,"name":"Titan-Forged Leather Legguards of Salvation","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,171,105,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48988,"name":"Titan-Forged Leather Legguards of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,104,171,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48990,"name":"Titan-Forged Mail Leggings of Dominance","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,171,105,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48991,"name":"Titan-Forged Cloth Leggings of Salvation","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,171,105,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48992,"name":"Titan-Forged Plate Legguards of Salvation","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48993,"name":"Titan-Forged Plate Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[104,0,181,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48994,"name":"Titan-Forged Ringmail Leggings of Salvation","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,171,105,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1509,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48997,"name":"Titan-Forged Cloth Trousers of Domination","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48998,"name":"Titan-Forged Leather Legguards of Dominance","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,171,105,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":48999,"name":"Titan-Forged Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":49000,"name":"Titan-Forged Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,95,0,0,0,42,0,0,0,0,0,126,126,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":49074,"name":"Coren's Chromium Coaster","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49076,"name":"Mithril Pocketwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49078,"name":"Ancient Pickled Egg","icon":"inv_egg_02","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49080,"name":"Brawler's Souvenir","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49116,"name":"Bitter Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49118,"name":"Bubbling Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49120,"name":"Direbrew's Bloody Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,38,58,0,0,22,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":373,"weaponSpeed":2,"ilvl":200,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}]}, -{"id":49121,"name":"Ring of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,33,94,0,0,29,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":49123,"name":"The Horseman's Seal","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,71,50,0,29,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":49124,"name":"Wicked Witch's Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,71,50,33,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true}, -{"id":49126,"name":"The Horseman's Horrific Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[86,0,102,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1899,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4}, -{"id":49128,"name":"The Horseman's Baleful Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":1,"stats":[0,26,72,0,0,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":271,"weaponDamageMax":504,"weaponSpeed":2.7,"ilvl":200,"quality":4,"unique":true}, -{"id":49179,"name":"Relentless Gladiator's Cord of Alacrity","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,0,0,0,59,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":49181,"name":"Relentless Gladiator's Cuffs of Alacrity","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,107,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":49183,"name":"Relentless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,0,0,59,0,0,0,0,0,0,0,0,67,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":49185,"name":"Relentless Gladiator's Wand of Alacrity","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,62,43,0,0,0,28,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":480,"weaponDamageMax":893,"weaponSpeed":1.9,"ilvl":245,"quality":4}, -{"id":49187,"name":"Relentless Gladiator's Compendium","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,113,80,0,0,0,53,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4}, -{"id":49189,"name":"Relentless Gladiator's Blade of Alacrity","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,111,0,0,0,0,41,0,0,0,0,0,0,777,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":220,"weaponDamageMax":409,"weaponSpeed":1.6,"ilvl":245,"quality":4}, -{"id":49191,"name":"Relentless Gladiator's Blade of Celerity","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,125,0,0,0,0,48,0,0,0,0,0,0,878,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4}, -{"id":49227,"name":"Skoll's Fang","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":1.7,"ilvl":187,"quality":3}, -{"id":49231,"name":"Boots of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,128,90,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":49232,"name":"Sandals of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,128,90,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":49233,"name":"Sandals of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,51,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2}, -{"id":49234,"name":"Boots of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,51,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1}, -{"id":49235,"name":"Boots of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":49236,"name":"Sabatons of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":49237,"name":"Sabatons of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,85,52,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2}, -{"id":49238,"name":"Boots of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,85,52,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1}, -{"id":49241,"name":"Waterlogged Cloth Vest","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49242,"name":"Waterlogged Cloth Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49243,"name":"Waterlogged Cloth Pants","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}],"factionRestriction":2}, -{"id":49244,"name":"Waterlogged Cloth Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49245,"name":"Waterlogged Cloth Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49246,"name":"Waterlogged Cloth Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49247,"name":"Drenched Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49248,"name":"Drenched Leather Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49249,"name":"Drenched Leather Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49250,"name":"Drenched Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49251,"name":"Drenched Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49252,"name":"Drenched Leather Vest","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"soldBy":{"zoneId":4720}}]}, -{"id":49257,"name":"Seashell Throwing Axe","icon":"inv_axe_19","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.8,"ilvl":3,"quality":1}, -{"id":49258,"name":"Light Throwing Tusk","icon":"achievement_reputation_tuskarr","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.6,"ilvl":3,"quality":1}, -{"id":49259,"name":"Salvaged Chain Armor","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49260,"name":"Salvaged Chain Belt","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49261,"name":"Salvaged Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49262,"name":"Salvaged Chain Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49263,"name":"Salvaged Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49264,"name":"Salvaged Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49265,"name":"Recovered Knit Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49266,"name":"Recovered Knit Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49267,"name":"Recovered Knit Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49268,"name":"Recovered Knit Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49269,"name":"Recovered Knit Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49270,"name":"Recovered Knit Vest","icon":"inv_shirt_07","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49271,"name":"Water-Stained Leather Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49272,"name":"Water-Stained Leather Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49273,"name":"Water-Stained Leather Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49274,"name":"Water-Stained Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49275,"name":"Water-Stained Leather Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49276,"name":"Water-Stained Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49296,"name":"Singed Vis'kag the Bloodletter","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49297,"name":"Empowered Deathbringer","icon":"inv_axe_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":338,"weaponDamageMax":628,"weaponSpeed":2.7,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49298,"name":"Glinting Azuresong Mageblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":1,"stats":[0,0,91,0,0,39,45,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":300,"weaponDamageMax":558,"weaponSpeed":2.4,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49299,"name":"Keen Obsidian Edged Blade","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[129,0,159,0,0,0,61,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49301,"name":"Reclaimed Thunderstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,78,203,0,0,0,0,55,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":577,"weaponDamageMax":866,"weaponSpeed":3.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49302,"name":"Reclaimed Shadowstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,104,154,0,0,0,64,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":577,"weaponDamageMax":866,"weaponSpeed":3.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49303,"name":"Gleaming Quel'Serrar","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":250,"weaponDamageMax":465,"weaponSpeed":2,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[9,4,10],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49304,"name":"Sharpened Fang of the Mystics","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":1,"stats":[0,0,86,0,52,0,40,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49305,"name":"Snub-Nose Blastershot Launcher","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,38,75,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":472,"weaponDamageMax":877,"weaponSpeed":2.9,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49306,"name":"Eskhandar's Choker","icon":"inv_belt_12","type":2,"stats":[51,0,100,0,0,0,0,0,34,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49307,"name":"Fluttering Sapphiron Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,98,67,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49308,"name":"Antique Cornerstone Grimoire","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,55,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49309,"name":"Runed Ring of Binding","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,100,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49310,"name":"Purified Shard of the Scale","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"setName":"Purified Shard of the Gods","setId":881,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159}}]}, -{"id":49315,"name":"Nemesis Skullcover","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,135,112,88,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[8],"expansion":3}, -{"id":49316,"name":"Circlet of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,130,112,78,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"expansion":3}, -{"id":49317,"name":"Coronet of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,127,112,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[5],"expansion":3}, -{"id":49318,"name":"Netherwind Hood","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,133,112,0,56,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[3],"expansion":3}, -{"id":49319,"name":"Dragonstalker's Helmet","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,109,105,0,0,0,91,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[2],"expansion":3}, -{"id":49320,"name":"Faceguard of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[109,0,159,0,0,0,0,0,0,62,66,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"expansion":3}, -{"id":49321,"name":"Greathelm of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[106,0,170,0,0,0,66,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[9],"expansion":3}, -{"id":49322,"name":"Bloodfang Mask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,112,142,0,0,0,58,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[6],"expansion":3}, -{"id":49323,"name":"Judgement Cover","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,140,112,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49324,"name":"Judgement Helmet","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[63,0,176,0,0,66,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49325,"name":"Judgement Helm","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[100,0,157,0,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49326,"name":"Stormrage Hood","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,130,112,79,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49327,"name":"Stormrage Antlers","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,125,112,0,0,75,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49328,"name":"Stormrage Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,110,164,0,0,80,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49329,"name":"Gaze of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,148,112,79,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49330,"name":"Cowl of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,112,97,0,0,0,105,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49331,"name":"Coif of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,124,105,0,76,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49332,"name":"Frostforged Ringhelm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[83,0,154,0,0,59,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"expansion":3}, -{"id":49333,"name":"Frostforged Helmet","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[110,0,151,0,0,73,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"classAllowlist":[10],"expansion":3}, -{"id":49371,"name":"Oversized Tenderizer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":5,"weaponSpeed":2.9,"ilvl":2,"quality":1}, -{"id":49378,"name":"Crushed Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49379,"name":"Raggedy Cloth Cutoffs","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49380,"name":"Slashed Leather Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49381,"name":"Soggy Rope","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49382,"name":"Drowned Leather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49383,"name":"Shattered Chain Girdle","icon":"inv_belt_06","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49384,"name":"Cloth Manacle Padding","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49385,"name":"Salt-Stained Leather Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49386,"name":"Tarnished Manacles","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49387,"name":"Rat-Gnawed Blanket","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49388,"name":"Sweat-Soaked Cloth Shirt","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49389,"name":"Sweat-Caked Leather Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49390,"name":"Holey Mail Shirt","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":49391,"name":"Shattered Oar","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1}, -{"id":49392,"name":"Goblin Plugger","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":2.7,"ilvl":5,"quality":1}, -{"id":49393,"name":"Goblin Ripsaw","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":2.5,"ilvl":5,"quality":1}, -{"id":49394,"name":"Keel Smasher","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.3,"ilvl":5,"quality":1}, -{"id":49395,"name":"Rigging Slicer","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.7,"ilvl":5,"quality":1}, -{"id":49396,"name":"Rusty Prybar","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.4,"ilvl":5,"quality":1}, -{"id":49399,"name":"Gilnean Apprentice's Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49400,"name":"Gilnean Apprentice's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49401,"name":"Gilnean Apprentice's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49403,"name":"Gilnean Neophyte's Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49404,"name":"Gilnean Neophyte's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49406,"name":"Gilnean Neophyte's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49407,"name":"Gilnean Acolyte's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49408,"name":"Gilnean Acolyte's Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49409,"name":"Gilnean Acolyte's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49411,"name":"Gilnean Acolyte's Boots","icon":"inv_boots_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49412,"name":"Gilnean Acolyte's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49413,"name":"Gilnean Acolyte's Robe","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49415,"name":"Gilnean Apprentice's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49416,"name":"Gilnean Apprentice's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49417,"name":"Gilnean Apprentice's Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49419,"name":"Gilnean Neophyte's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49420,"name":"Gilnean Neophyte's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49421,"name":"Gilnean Neophyte's Robe","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49427,"name":"Prisoner's Shirt","icon":"inv_chest_wolf","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49428,"name":"Prisoner's Shorts","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49429,"name":"Prisoner's Drawstring","icon":"inv_belt_41b","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49430,"name":"Prisoner's Drawstring","icon":"inv_belt_41b","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49431,"name":"Prisoner's Shorts","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49432,"name":"Prisoner's Shirt","icon":"inv_chest_wolf","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49433,"name":"Prisoner's Shirt","icon":"inv_chest_wolf","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49434,"name":"Prisoner's Shorts","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49435,"name":"Prisoner's Drawstring","icon":"inv_belt_41b","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49437,"name":"Rusted Gutgore Ripper","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49438,"name":"Bomb-Handler's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49439,"name":"Trollguard Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49440,"name":"Grass-Stained Slippers","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49441,"name":"Redeye Raiments","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49442,"name":"Leggings of Suspicion","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49443,"name":"Detached Seatbelt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49444,"name":"Well-Padded Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49445,"name":"Ore-Monger's Girdle","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49446,"name":"Retainer Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":895,"name":"WANTED: Cap'n Garvey"}}]}, -{"id":49447,"name":"Heat-Soaking Footpads","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49448,"name":"Uncorrupted Hands","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":14005,"name":"The Vengeance of Elune"}}],"factionRestriction":1}, -{"id":49449,"name":"Britches of Turning Fortune","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":14005,"name":"The Vengeance of Elune"}}],"factionRestriction":1}, -{"id":49450,"name":"Defusing Cinch","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49451,"name":"Reinforced Toe Covers","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49452,"name":"Assassin-Proof Leggings","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49453,"name":"Silverscale Chestguard","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49454,"name":"Pilot's Handguards","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49455,"name":"Blunderbuss of Deforestation","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":24,"weaponSpeed":2.6,"ilvl":10,"quality":2}, -{"id":49456,"name":"Will of the Earth","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2.2,"ilvl":10,"quality":2}, -{"id":49457,"name":"Fury of the Flame","icon":"inv_sword_18","type":13,"weaponType":9,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2}, -{"id":49458,"name":"Insight of the Water","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":27,"weaponSpeed":3.1,"ilvl":10,"quality":2}, -{"id":49463,"name":"Purified Shard of the Flame","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"setName":"Purified Shard of the Gods","setId":881,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159}}]}, -{"id":49464,"name":"Shiny Shard of the Flame","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"setName":"Shiny Shard of the Gods","setId":882,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159}}]}, -{"id":49465,"name":"Tarnished Gutgore Ripper","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":247,"weaponDamageMax":460,"weaponSpeed":1.8,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49466,"name":"Frostforged Helm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[124,0,173,0,0,82,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"expansion":3}, -{"id":49467,"name":"Frostforged Greathelm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[95,0,177,0,0,67,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[10],"expansion":3}, -{"id":49468,"name":"Helm of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,144,121,0,87,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49469,"name":"Crown of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,128,113,0,0,0,121,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49470,"name":"Helmet of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,170,128,91,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":49471,"name":"Stormrage Coverlet","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,120,184,0,0,90,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49472,"name":"Stormrage Crown","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,145,128,0,0,85,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49473,"name":"Stormrage Cover","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,151,128,88,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3}, -{"id":49474,"name":"Judgement Hood","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[114,0,179,0,0,0,89,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49475,"name":"Judgement Heaume","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[77,0,199,0,0,75,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49476,"name":"Judgement Crown","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,162,128,0,0,69,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3}, -{"id":49477,"name":"Bloodfang Hood","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,128,163,0,0,0,68,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[6],"expansion":3}, -{"id":49478,"name":"Helmet of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[122,0,188,0,0,0,78,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"expansion":3}, -{"id":49479,"name":"Helm of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[125,0,182,0,0,0,0,0,0,72,77,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[9],"expansion":3}, -{"id":49480,"name":"Dragonstalker's Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,125,121,0,0,0,106,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[2],"expansion":3}, -{"id":49481,"name":"Netherwind Crown","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,154,128,0,64,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[3],"expansion":3}, -{"id":49482,"name":"Aurora of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,150,128,0,0,86,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"expansion":3}, -{"id":49483,"name":"Halo of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,152,128,89,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[5],"expansion":3}, -{"id":49484,"name":"Nemesis Skullcap","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,157,128,99,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"classAllowlist":[8],"expansion":3}, -{"id":49485,"name":"Sparkling Onyxia Tooth Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,76,97,0,0,48,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":49486,"name":"Polished Dragonslayer's Signet","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,109,76,36,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4}, -{"id":49487,"name":"Purified Onyxia Blood Talisman","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true}, -{"id":49488,"name":"Shiny Shard of the Scale","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"setName":"Shiny Shard of the Gods","setId":882,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159}}]}, -{"id":49489,"name":"Signified Ring of Binding","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,115,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49490,"name":"Antediluvian Cornerstone Grimoire","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,106,64,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49491,"name":"Flowing Sapphiron Drape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,111,76,0,0,50,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49492,"name":"Eskhandar's Links","icon":"inv_belt_12","type":2,"stats":[58,0,114,0,0,0,0,0,38,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49493,"name":"Rifled Blastershot Launcher","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,43,84,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":519,"weaponDamageMax":964,"weaponSpeed":2.9,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49494,"name":"Honed Fang of the Mystics","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":1,"stats":[0,0,95,0,58,0,46,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":206,"weaponDamageMax":384,"weaponSpeed":1.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49495,"name":"Burnished Quel'Serrar","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":511,"weaponSpeed":2,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[9,4,10],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49496,"name":"Reinforced Shadowstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,120,177,0,0,0,73,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":634,"weaponDamageMax":951,"weaponSpeed":3.1,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49497,"name":"Reinforced Thunderstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,89,233,0,0,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":634,"weaponDamageMax":951,"weaponSpeed":3.1,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49498,"name":"Sharpened Obsidian Edged Blade","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[146,0,179,0,0,0,69,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":715,"weaponDamageMax":1074,"weaponSpeed":3.5,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49499,"name":"Polished Azuresong Mageblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":1,"stats":[0,0,104,0,0,44,51,0,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":330,"weaponDamageMax":614,"weaponSpeed":2.4,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49500,"name":"Raging Deathbringer","icon":"inv_axe_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":371,"weaponDamageMax":690,"weaponSpeed":2.7,"ilvl":245,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49501,"name":"Tempered Vis'kag the Bloodletter","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":357,"weaponDamageMax":665,"weaponSpeed":2.6,"ilvl":245,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}]}, -{"id":49502,"name":"Goblin Trapper's Shirt","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49503,"name":"Goblin Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49504,"name":"Goblin Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49505,"name":"Goblin Apprentice's Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49506,"name":"Goblin Apprentice's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49507,"name":"Goblin Apprentice's Shirt","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49508,"name":"Goblin Apprentice's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49509,"name":"Goblin Apprentice's Belt","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49510,"name":"Goblin Neophyte's Robe","icon":"inv_chest_cloth_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49511,"name":"Goblin Neophyte's Shirt","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49512,"name":"Goblin Neophyte's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49513,"name":"Goblin Neophyte's Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49514,"name":"Goblin Thug's Tunic","icon":"inv_shirt_14","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49515,"name":"Goblin Thug's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49516,"name":"Goblin Thug's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49517,"name":"Goblin Primitive's Mantle","icon":"inv_misc_cape_13","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49518,"name":"Goblin Primitive's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49519,"name":"Goblin Primitive's Shirt","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49520,"name":"Goblin Acolyte's Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49521,"name":"Goblin Acolyte's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49522,"name":"Goblin Acolyte's Shoes","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49523,"name":"Goblin Acolyte's Shirt","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49524,"name":"Goblin Brawler's Harness","icon":"inv_chest_leather_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49526,"name":"Goblin Brawler's Undergarment","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49527,"name":"Goblin Brawler's Boots","icon":"inv_boots_04","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49528,"name":"Goblin Brawler's Greaves","icon":"inv_misc_desecrated_mailpants","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49529,"name":"Goblin Brawler's Gauntlets","icon":"inv_misc_desecrated_clothglove","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49530,"name":"Goblin Acolyte's Belt","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49531,"name":"Goblin Neophyte's Shoes","icon":"inv_boots_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49534,"name":"Goblin Primitive's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49541,"name":"Robes of the Glorious Song","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":26858,"name":"Taragaman the Hungerer"}}],"factionRestriction":2}, -{"id":49542,"name":"Sandals of the Harbinger","icon":"inv_boots_cloth_13","type":10,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49543,"name":"Seaworthy Leggings","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":895,"name":"WANTED: Cap'n Garvey"}}]}, -{"id":49544,"name":"Waistguard of Amnesty","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49545,"name":"Gloves of the Dark Mystic","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49546,"name":"Revitalizing Wristguards","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":14005,"name":"The Vengeance of Elune"}}],"factionRestriction":1}, -{"id":49548,"name":"Gazlowe's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":895,"name":"WANTED: Cap'n Garvey"}}]}, -{"id":49549,"name":"Soothing Doublet","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49550,"name":"Bracers of Tracking","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49551,"name":"Bloodseeker Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49552,"name":"Water-Resistant Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49553,"name":"Stabilizing Girdle","icon":"inv_belt_38c","type":8,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49554,"name":"Messenger's Chainmail","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49555,"name":"Hunter's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49556,"name":"Darksign Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49557,"name":"Bloodsoaked Handwraps","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":49558,"name":"Short-Fuse Shotgun","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":24,"weaponSpeed":2.6,"ilvl":10,"quality":2}, -{"id":49559,"name":"Defender's Quarterstaff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":27,"weaponSpeed":3.1,"ilvl":10,"quality":2}, -{"id":49560,"name":"Proof of Death","icon":"inv_sword_23","type":13,"weaponType":9,"handType":4,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":43,"weaponSpeed":3.3,"ilvl":16,"quality":2,"sources":[{"quest":{"id":895,"name":"WANTED: Cap'n Garvey"}}]}, -{"id":49561,"name":"Gap Closer","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":2.4,"ilvl":10,"quality":2}, -{"id":49562,"name":"Durable Drape","icon":"inv_misc_cape_11","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":14005,"name":"The Vengeance of Elune"}}],"factionRestriction":1}, -{"id":49563,"name":"Gilnean Novice's Tunic","icon":"inv_chest_cloth_13","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49564,"name":"Gilnean Novice's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49565,"name":"Gilnean Novice's Gloves","icon":"inv_misc_desecrated_leatherglove","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49566,"name":"Gilnean Novice's Pants","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49568,"name":"Gilnean Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49569,"name":"Gilnean Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49570,"name":"Gilnean Trapper's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49571,"name":"Gilnean Trapper's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49572,"name":"Gilnean Footpad's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49573,"name":"Gilnean Footpad's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49574,"name":"Gilnean Footpad's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49575,"name":"Gilnean Footpad's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49576,"name":"Gilnean Recruit's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49577,"name":"Gilnean Recruit's Belt","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49578,"name":"Gilnean Recruit's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49579,"name":"Gilnean Recruit's Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49580,"name":"Gilnean Recruit's Pants","icon":"inv_pants_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49581,"name":"Gilnean Recruit's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49582,"name":"Gilnean Recruit's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49583,"name":"Gilnean Recruit's Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49584,"name":"Gilnean Trapper's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49585,"name":"Gilnean Trapper's Gloves","icon":"inv_misc_desecrated_plategloves","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49586,"name":"Gilnean Trapper's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49587,"name":"Gilnean Trapper's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49588,"name":"Gilnean Footpad's Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49589,"name":"Gilnean Footpad's Gloves","icon":"inv_misc_desecrated_plategloves","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49590,"name":"Gilnean Footpad's Tunic","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49591,"name":"Gilnean Footpad's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49592,"name":"Gilnean Novice's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49593,"name":"Gilnean Novice's Gloves","icon":"inv_misc_desecrated_leatherglove","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49594,"name":"Gilnean Novice's Pants","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49595,"name":"Gilnean Novice's Tunic","icon":"inv_chest_cloth_13","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":49604,"name":"Battlescarred Mace","icon":"inv_mace_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.9,"ilvl":6,"quality":1}, -{"id":49605,"name":"Battlescarred Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":5,"weaponSpeed":1.6,"ilvl":6,"quality":1}, -{"id":49606,"name":"Battlescarred Stave","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":2.9,"ilvl":6,"quality":1}, -{"id":49607,"name":"Battlescarred Claymore","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":12,"weaponSpeed":3.2,"ilvl":6,"quality":1}, -{"id":49608,"name":"Old Smoothbore","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.3,"ilvl":6,"quality":1}, -{"id":49666,"name":"OMAR'S Furious Gladiator's Claymore","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,192,0,0,0,70,0,0,0,0,0,224,224,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":704,"weaponDamageMax":1057,"weaponSpeed":3.6,"ilvl":239,"quality":4}, -{"id":49672,"name":"Goblin Military Rifle, Melee Version","icon":"inv_weapon_rifle_35","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49682,"name":"Black Knight's Rondel","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,46,66,0,0,27,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":1.8,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}]}, -{"id":49715,"name":"Forever-Lovely Rose","icon":"inv_jewelry_talisman_03","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}},{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}}]}, -{"id":49778,"name":"Worn Greatsword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":49783,"name":"Lucky Old Sun","icon":"inv_mace_89","type":13,"weaponType":4,"handType":2,"stats":[46,0,69,0,0,0,0,0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":340,"weaponSpeed":1.6,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49784,"name":"Minister's Number One Legplates","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[106,0,159,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49785,"name":"Bewildering Shoulderpads","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,79,113,0,0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49786,"name":"Robes of the Cheating Heart","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,0,155,106,66,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49787,"name":"Seven Stormy Mornings","icon":"inv_bracer_31b","type":6,"armorType":3,"stats":[0,0,86,60,0,42,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49788,"name":"Cold Sweat Grips","icon":"inv_gauntlets_51","type":7,"armorType":1,"stats":[0,0,114,79,0,47,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}]}, -{"id":49789,"name":"Heartshiver","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,46,75,0,0,0,25,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":1.8,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49790,"name":"Blood Boil Lancet","icon":"inv_staff_86","type":13,"weaponType":8,"handType":4,"stats":[0,0,197,0,83,0,94,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":526,"weaponDamageMax":790,"weaponSpeed":3.1,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49791,"name":"Lost Reliquary Chestguard","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[106,0,159,0,0,74,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49792,"name":"Accursed Crawling Cape","icon":"inv_misc_cape_22","type":4,"stats":[0,59,87,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49793,"name":"Tower of the Mouldering Corpse","icon":"inv_staff_85","type":13,"weaponType":8,"handType":4,"stats":[0,106,152,0,0,76,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":543,"weaponDamageMax":815,"weaponSpeed":3.2,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49794,"name":"Legplates of Frozen Granite","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[72,0,147,0,0,55,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49795,"name":"Sollerets of Suffering","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,47,55,0,0,0,0,0,0,0,0,0,0,0,1631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49796,"name":"Essence of Anger","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,113,79,0,45,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49797,"name":"Brace Guards of the Starless Night","icon":"inv_bracer_49","type":6,"armorType":4,"stats":[0,0,87,60,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49798,"name":"Soul Screaming Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,119,79,58,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49799,"name":"Coil of Missing Gems","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,88,60,0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49800,"name":"Spiteful Signet","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,84,60,42,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}]}, -{"id":49801,"name":"Unspeakable Secret","icon":"inv_staff_82","type":13,"weaponType":8,"handType":4,"stats":[0,0,152,0,0,0,114,93,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":475,"weaponDamageMax":713,"weaponSpeed":2.8,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49802,"name":"Garfrost's Two-Ton Hammer","icon":"inv_mace_83","type":13,"weaponType":4,"handType":4,"stats":[95,0,122,0,0,0,98,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":611,"weaponDamageMax":917,"weaponSpeed":3.6,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49803,"name":"Ring of Carnelian and Bone","icon":"inv_jewelry_ring_39","type":11,"stats":[0,59,86,0,0,0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49804,"name":"Polished Mirror Helm","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,0,130,90,68,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49805,"name":"Ice-Steeped Sandals","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,113,79,45,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49806,"name":"Flayer's Black Belt","icon":"inv_belt_65","type":8,"armorType":2,"stats":[0,71,113,0,0,0,56,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}]}, -{"id":49807,"name":"Krick's Beetle Stabber","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,46,66,0,0,0,28,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":195,"weaponDamageMax":294,"weaponSpeed":1.5,"ilvl":219,"phase":4,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49808,"name":"Bent Gold Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[79,0,118,0,0,0,47,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"phase":4,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49809,"name":"Wristguards of Subterranean Moss","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,86,60,41,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"phase":4,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49810,"name":"Scabrous Zombie Leather Belt","icon":"inv_belt_69","type":8,"armorType":3,"stats":[0,79,118,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"phase":4,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49811,"name":"Black Dragonskin Breeches","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,155,106,74,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"phase":4,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49812,"name":"Purloined Wedding Ring","icon":"inv_jewelry_ring_42","type":11,"stats":[60,0,89,0,0,0,42,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"phase":4,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}]}, -{"id":49813,"name":"Rimebane Rifle","icon":"inv_weapon_rifle_13","type":14,"rangedWeaponType":3,"stats":[0,34,49,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":430,"weaponDamageMax":800,"weaponSpeed":2.9,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49816,"name":"Scourgelord's Frigid Chestplate","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[81,0,147,0,0,0,0,0,46,74,66,0,0,0,0,0,0,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49817,"name":"Shaggy Wyrmleather Leggings","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,106,155,0,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49818,"name":"Painfully Sharp Choker","icon":"inv_jewelry_necklace_04","type":2,"stats":[60,0,89,0,0,0,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49819,"name":"Skeleton Lord's Cranium","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[90,0,135,0,0,64,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49820,"name":"Gondria's Spectral Bracer","icon":"inv_bracer_31","type":6,"armorType":3,"stats":[0,59,65,0,0,0,59,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49821,"name":"Protector of Frigid Souls","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,86,60,42,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49822,"name":"Rimewoven Silks","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,155,98,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49823,"name":"Cloak of the Fallen Cardinal","icon":"inv_misc_cape_18","type":4,"stats":[0,0,89,60,42,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49824,"name":"Horns of the Spurned Val'kyr","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,82,159,0,0,50,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49825,"name":"Palebone Robes","icon":"inv_chest_cloth_79","type":5,"armorType":1,"stats":[0,0,153,106,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49826,"name":"Shroud of Rime","icon":"inv_chest_mail_12","type":5,"armorType":3,"stats":[0,0,159,106,76,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}]}, -{"id":49827,"name":"Ghoulslicer","icon":"inv_sword_119","type":13,"weaponType":9,"handType":2,"stats":[0,46,66,0,0,0,33,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":297,"weaponDamageMax":552,"weaponSpeed":2.6,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49828,"name":"Marwyn's Macabre Fingertips","icon":"inv_gauntlets_91","type":7,"armorType":1,"stats":[0,0,115,71,53,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49829,"name":"Valonforth's Tarnished Pauldrons","icon":"inv_shoulder_100","type":3,"armorType":4,"stats":[0,0,113,79,60,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49830,"name":"Fallen Sentry's Hood","icon":"inv_helmet_153","type":1,"armorType":2,"stats":[0,0,131,90,0,0,73,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,946,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49831,"name":"Muddied Boots of Brill","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,79,91,0,0,0,77,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49832,"name":"Eerie Runeblade Polisher","icon":"inv_misc_cape_11","type":4,"stats":[59,0,89,0,0,0,0,0,0,49,27,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}]}, -{"id":49833,"name":"Splintered Icecrown Parapet","icon":"inv_sword_85","type":13,"weaponType":9,"handType":1,"stats":[0,0,104,0,0,0,31,31,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":182,"weaponDamageMax":340,"weaponSpeed":1.6,"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49834,"name":"Frayed Abomination Stitching Shoulders","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,115,79,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49835,"name":"Splintered Door of the Citadel","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[59,0,89,0,0,0,0,0,0,31,46,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49836,"name":"Frostsworn Bone Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,106,133,0,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49837,"name":"Mitts of Burning Hail","icon":"inv_gauntlets_62","type":7,"armorType":3,"stats":[0,0,113,79,0,54,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49838,"name":"Carpal Tunnelers","icon":"inv_gauntlets_62","type":7,"armorType":2,"stats":[0,79,113,0,0,0,56,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}]}, -{"id":49839,"name":"Mourning Malice","icon":"inv_sword_127","type":13,"weaponType":9,"handType":4,"stats":[114,0,141,0,0,0,67,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":594,"weaponDamageMax":892,"weaponSpeed":3.5,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49840,"name":"Hate-Forged Cleaver","icon":"inv_axe_94","type":13,"weaponType":1,"handType":2,"stats":[0,46,66,0,0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":297,"weaponDamageMax":552,"weaponSpeed":2.6,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49841,"name":"Blackened Geist Ribs","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,98,155,0,0,63,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49842,"name":"Tapestry of the Frozen Throne","icon":"inv_misc_cape_16","type":4,"stats":[60,0,89,0,0,35,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49843,"name":"Crystalline Citadel Gauntlets","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,55,47,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49844,"name":"Crypt Fiend Slayer","icon":"inv_weapon_bow_44","type":14,"rangedWeaponType":1,"stats":[0,34,48,0,0,20,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":445,"weaponDamageMax":828,"weaponSpeed":3,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49845,"name":"Bone Golem Scapula","icon":"inv_mace_88","type":13,"weaponType":4,"handType":1,"stats":[0,0,100,0,20,0,0,37,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":1.8,"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49846,"name":"Chilled Heart of the Glacier","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":1,"stats":[0,0,69,0,0,28,0,46,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":1.8,"ilvl":219,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49847,"name":"Legguards of Untimely Demise","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,152,106,0,67,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49848,"name":"Grim Lasher Shoulderguards","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,0,115,79,58,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49849,"name":"Tattered Glacial-Woven Hood","icon":"inv_helmet_155","type":1,"armorType":1,"stats":[0,0,131,90,66,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49851,"name":"Greathelm of the Silver Hand","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[0,0,133,90,0,0,48,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}]}, -{"id":49852,"name":"Coffin Nail","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,50,33,22,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":378,"weaponDamageMax":702,"weaponSpeed":1.8,"ilvl":219,"quality":4,"expansion":3}, -{"id":49853,"name":"Titanium Links of Lore","icon":"inv_belt_70","type":8,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,59,41,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3}, -{"id":49854,"name":"Mantle of Tattered Feathers","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,114,79,53,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3}, -{"id":49855,"name":"Plated Grips of Korth'azz","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[79,0,118,0,0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"expansion":3}, -{"id":49888,"name":"Shadow's Edge","icon":"inv_axe_113","type":13,"weaponType":1,"handType":4,"stats":[162,0,243,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":872,"weaponDamageMax":1309,"weaponSpeed":3.7,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[9,4,10],"sources":[{"quest":{"id":24743,"name":"Shadow's Edge"}}]}, -{"id":49890,"name":"Deathfrost Boots","icon":"inv_boots_cloth_25","type":10,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70551}},{"crafted":{"profession":11,"spellId":70551}}]}, -{"id":49891,"name":"Leggings of Woven Death","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70550}},{"crafted":{"profession":11,"spellId":70550}}]}, -{"id":49892,"name":"Lightweave Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,231,138,108,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70552}},{"crafted":{"profession":11,"spellId":70552}}]}, -{"id":49893,"name":"Sandals of Consecration","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70553}},{"crafted":{"profession":11,"spellId":70553}}]}, -{"id":49894,"name":"Blessed Cenarion Boots","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70555}},{"crafted":{"profession":8,"spellId":70555}}]}, -{"id":49895,"name":"Footpads of Impending Death","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,120,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70557}},{"crafted":{"profession":8,"spellId":70557}}]}, -{"id":49896,"name":"Earthsoul Boots","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70559}},{"crafted":{"profession":8,"spellId":70559}}]}, -{"id":49897,"name":"Rock-Steady Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,120,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70561}},{"crafted":{"profession":8,"spellId":70561}}]}, -{"id":49898,"name":"Legwraps of Unleashed Nature","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70554}},{"crafted":{"profession":8,"spellId":70554}}]}, -{"id":49899,"name":"Bladeborn Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,207,0,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70556}},{"crafted":{"profession":8,"spellId":70556}}]}, -{"id":49900,"name":"Lightning-Infused Leggings","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,138,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70558}},{"crafted":{"profession":8,"spellId":70558}}]}, -{"id":49901,"name":"Draconic Bonesplinter Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,138,192,0,0,0,146,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70560}},{"crafted":{"profession":8,"spellId":70560}}]}, -{"id":49902,"name":"Puresteel Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70562}},{"crafted":{"profession":2,"spellId":70562}}]}, -{"id":49903,"name":"Legplates of Painful Death","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70565}},{"crafted":{"profession":2,"spellId":70565}}]}, -{"id":49904,"name":"Pillars of Might","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,69,77,0,0,0,0,0,0,0,0,0,0,0,2311,340,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70567}},{"crafted":{"profession":2,"spellId":70567}}]}, -{"id":49905,"name":"Protectors of Life","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70563}},{"crafted":{"profession":2,"spellId":70563}}]}, -{"id":49906,"name":"Hellfrozen Bonegrinders","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[104,0,180,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70566}},{"crafted":{"profession":2,"spellId":70566}}]}, -{"id":49907,"name":"Boots of Kingly Upheaval","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[92,0,157,0,0,53,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70568}},{"crafted":{"profession":2,"spellId":70568}}]}, -{"id":49916,"name":"Lovely Charm Bracelet","icon":"inv_jewelry_necklace_43","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":49919,"name":"Cryptmaker","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[146,0,243,0,0,95,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":848,"weaponDamageMax":1273,"weaponSpeed":3.6,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":49933,"name":"Argent Crusader's Shield","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3}, -{"id":49949,"name":"Band of the Bone Colossus","icon":"inv_jewelry_ring_83","type":11,"stats":[0,90,124,0,0,54,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49950,"name":"Frostbitten Fur Boots","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,104,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49951,"name":"Gendarme's Cuirass","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[138,0,243,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49952,"name":"Snowserpent Mail Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49960,"name":"Bracers of Dark Reckoning","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[90,0,124,0,0,0,0,0,0,72,40,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49964,"name":"Legguards of Lost Hope","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[123,0,207,0,0,74,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49967,"name":"Marrowgar's Frigid Eye","icon":"item_icecrownringb","type":11,"stats":[0,0,129,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49968,"name":"Frozen Bonespike","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,126,0,59,0,59,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49975,"name":"Bone Sentinel's Amulet","icon":"inv_jewelry_necklace_53","type":2,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49976,"name":"Bulwark of Smouldering Steel","icon":"inv_shield_72","type":13,"weaponType":7,"handType":3,"stats":[0,0,129,91,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49977,"name":"Loop of the Endless Labyrinth","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,129,82,0,45,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49978,"name":"Crushing Coldwraith Belt","icon":"inv_belt_66","type":8,"armorType":1,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49979,"name":"Handguards of Winter's Respite","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,173,105,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49980,"name":"Rusted Bonespike Pauldrons","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":49981,"name":"Fal'inrush, Defender of Quel'thalas","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,54,81,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":746,"weaponDamageMax":1120,"weaponSpeed":3,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":49982,"name":"Heartpierce","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,47,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":490,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49983,"name":"Blood-Soaked Saronite Stompers","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[104,0,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49985,"name":"Juggernaut Band","icon":"item_icecrownringd","type":11,"stats":[90,0,124,0,0,0,0,0,0,62,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49986,"name":"Broken Ram Skull Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[123,0,207,0,0,74,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49987,"name":"Cultist's Bloodsoaked Spaulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,112,169,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49988,"name":"Leggings of Northern Lights","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,146,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49989,"name":"Ahn'kahar Onyx Neckguard","icon":"inv_jewelry_necklace_48","type":2,"stats":[82,0,135,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49990,"name":"Ring of Maddening Whispers","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49991,"name":"Shoulders of Mercy Killing","icon":"inv_shoulder_116","type":3,"armorType":1,"stats":[0,0,173,105,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49992,"name":"Nibelung","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,183,0,0,0,0,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":495,"weaponDamageMax":743,"weaponSpeed":2.1,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49993,"name":"Necrophotic Greaves","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49994,"name":"The Lady's Brittle Bracers","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,129,83,0,45,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49995,"name":"Fallen Lord's Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49996,"name":"Deathwhisper Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,108,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":49997,"name":"Mithrios, Bronzebeard's Legacy","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[56,0,111,0,0,0,0,0,38,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":267,"weaponDamageMax":498,"weaponSpeed":1.6,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":49998,"name":"Shadowvault Slayer's Cloak","icon":"item_icecrowncloak","type":4,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":49999,"name":"Skeleton Lord's Circle","icon":"inv_jewelry_ring_83","type":11,"stats":[82,0,136,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50000,"name":"Scourge Hunter's Vambraces","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,90,107,0,0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50001,"name":"Ikfirus' Sack of Wonder","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,146,231,0,0,100,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50002,"name":"Polar Bear Claw Bracers","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[82,0,135,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50003,"name":"Boneguard Commander's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50005,"name":"Amulet of the Silent Eulogy","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,129,83,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50006,"name":"Corp'rethar Ceremonial Crown","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50008,"name":"Ring of Rapid Ascent","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,129,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50009,"name":"Boots of Unnatural Growth","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50010,"name":"Waistband of Righteous Fury","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50011,"name":"Gunship Captain's Mittens","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,173,105,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50012,"name":"Havoc's Call, Blade of Lordaeron Kings","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,74,111,0,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":435,"weaponDamageMax":809,"weaponSpeed":2.6,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50014,"name":"Greatcloak of the Turned Champion","icon":"item_icecrowncape","type":4,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50015,"name":"Belt of the Blood Nova","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50016,"name":"Rib Spreader","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":490,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50019,"name":"Winding Sheet","icon":"item_icecrowncape","type":4,"stats":[82,0,135,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50020,"name":"Raging Behemoth's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[104,0,180,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50021,"name":"Aldriana's Gloves of Secrecy","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,112,169,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50022,"name":"Dual-Bladed Pauldrons","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,112,142,0,0,0,112,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50023,"name":"Bile-Encrusted Medallion","icon":"item_icecrownnecklaceb","type":2,"stats":[90,0,124,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50024,"name":"Blightborne Warplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[123,0,207,0,0,58,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50025,"name":"Seal of Many Mouths","icon":"item_icecrownringc","type":11,"stats":[0,90,124,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50026,"name":"Helm of the Elder Moon","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50027,"name":"Rot-Resistant Breastplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,137,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50028,"name":"Trauma","icon":"inv_mace_118","type":13,"weaponType":4,"handType":1,"stats":[0,0,99,0,0,0,0,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50030,"name":"Bloodsunder's Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,129,83,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50032,"name":"Death Surgeon's Sleeves","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50033,"name":"Corpse-Impaling Spike","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":524,"weaponDamageMax":975,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50034,"name":"Zod's Repeating Longbow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,34,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":577,"weaponDamageMax":1073,"weaponSpeed":2.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50035,"name":"Black Bruise","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":1,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,93,93,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.6,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50036,"name":"Belt of Broken Bones","icon":"inv_belt_62","type":8,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,79,63,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50037,"name":"Fleshrending Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[104,0,180,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50038,"name":"Carapace of Forgotten Kings","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50040,"name":"Distant Land","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,146,219,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":565,"weaponDamageMax":849,"weaponSpeed":2.4,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50041,"name":"Leather of Stitched Scourge Parts","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50042,"name":"Gangrenous Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,146,231,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50046,"name":"Quel'Delar, Cunning of the Shadows","icon":"inv_sword_155","type":13,"weaponType":9,"handType":2,"stats":[0,62,90,0,0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":388,"weaponDamageMax":722,"weaponSpeed":2.7,"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50047,"name":"Quel'Delar, Lens of the Mind","icon":"inv_sword_155","type":13,"weaponType":9,"handType":1,"stats":[0,0,111,0,0,0,54,49,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":302,"weaponDamageMax":561,"weaponSpeed":2.1,"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50048,"name":"Quel'Delar, Might of the Faithful","icon":"inv_sword_155","type":13,"weaponType":9,"handType":4,"stats":[144,0,215,0,0,0,99,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":769,"weaponDamageMax":1155,"weaponSpeed":3.6,"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50049,"name":"Quel'Delar, Ferocity of the Scorned","icon":"inv_sword_155","type":13,"weaponType":9,"handType":4,"stats":[0,144,213,0,0,0,99,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":727,"weaponDamageMax":1091,"weaponSpeed":3.4,"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50050,"name":"Cudgel of Furious Justice","icon":"inv_mace_48","type":13,"weaponType":4,"handType":2,"stats":[0,62,92,0,0,0,42,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":374,"weaponDamageMax":695,"weaponSpeed":2.6,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"quest":{}}]}, -{"id":50051,"name":"Hammer of Purified Flame","icon":"inv_mace_86","type":13,"weaponType":4,"handType":1,"stats":[0,0,111,0,0,0,54,49,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"quest":{}}]}, -{"id":50052,"name":"Lightborn Spire","icon":"inv_mace_87","type":13,"weaponType":4,"handType":4,"stats":[0,144,215,0,0,0,103,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":684,"weaponDamageMax":1026,"weaponSpeed":3.2,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"quest":{}}]}, -{"id":50055,"name":"Worn Dirk","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":1,"quality":1}, -{"id":50056,"name":"Plaguebringer's Stained Pants","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,146,0,98,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50057,"name":"Sharp Dirk","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.6,"ilvl":1,"quality":1}, -{"id":50059,"name":"Horrific Flesh Epaulets","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50060,"name":"Faceplate of the Forgotten","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,231,146,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50061,"name":"Holiday's Grace","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50062,"name":"Plague Scientist's Boots","icon":"inv_boots_cloth_25","type":10,"armorType":1,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50063,"name":"Lingering Illness","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50064,"name":"Unclean Surgical Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,105,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50065,"name":"Icecrown Glacial Wall","icon":"inv_shield_75","type":13,"weaponType":7,"handType":3,"stats":[90,0,136,0,0,0,0,0,0,60,71,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50067,"name":"Astrylian's Sutured Cinch","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,104,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50068,"name":"Rigormortis","icon":"inv_sword_152","type":13,"weaponType":9,"handType":1,"stats":[0,0,126,0,0,59,0,59,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50069,"name":"Professor's Bloodied Smock","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,172,104,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50070,"name":"Glorenzelg, High-Blade of the Silver Hand","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[157,0,259,0,0,0,115,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":895,"weaponDamageMax":1344,"weaponSpeed":3.6,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50071,"name":"Treads of the Wasteland","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50072,"name":"Landsoul's Horned Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[138,0,243,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50073,"name":"Geistlord's Punishment Sack","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50074,"name":"Royal Crimson Cloak","icon":"inv_misc_cape_18","type":4,"stats":[69,0,124,0,0,38,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50075,"name":"Taldaram's Plated Fists","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,79,63,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50078,"name":"Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":50079,"name":"Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3}, -{"id":50080,"name":"Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":50081,"name":"Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[128,0,214,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3}, -{"id":50082,"name":"Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":50087,"name":"Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,144,191,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":50088,"name":"Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3}, -{"id":50089,"name":"Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,144,179,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":50090,"name":"Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,144,191,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3}, -{"id":50094,"name":"Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":50095,"name":"Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3}, -{"id":50096,"name":"Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":50097,"name":"Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[128,0,216,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3}, -{"id":50098,"name":"Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":50105,"name":"Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,107,148,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":50106,"name":"Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,204,128,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":50107,"name":"Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,99,71,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3}, -{"id":50108,"name":"Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,204,120,88,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":50109,"name":"Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,204,128,96,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3}, -{"id":50113,"name":"Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,152,99,71,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":50114,"name":"Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,99,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3}, -{"id":50115,"name":"Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,136,170,0,0,0,112,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":50116,"name":"Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3}, -{"id":50117,"name":"Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,107,126,0,0,0,99,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":50118,"name":"Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":50169,"name":"Papa's Brand New Knife","icon":"inv_throwingknife_02","type":14,"rangedWeaponType":5,"stats":[0,38,55,0,0,0,26,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":335,"weaponDamageMax":503,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50170,"name":"Valanar's Other Signet Ring","icon":"inv_jewelry_ring_81","type":11,"stats":[0,0,129,82,0,38,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50171,"name":"Shoulders of Frost-Tipped Thorns","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,173,105,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50172,"name":"Sanguine Silk Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50173,"name":"Shadow Silk Spindle","icon":"inv_misc_thread_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,91,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50174,"name":"Incarnadine Band of Mending","icon":"inv_jewelry_ring_84","type":11,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50175,"name":"Crypt Keeper's Bracers","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,129,83,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50176,"name":"San'layn Ritualist Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,105,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50177,"name":"Mail of Crimson Coins","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50178,"name":"Bloodfall","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":801,"weaponDamageMax":1203,"weaponSpeed":3.4,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50179,"name":"Last Word","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50180,"name":"Lana'thel's Chain of Flagellation","icon":"inv_jewelry_necklace_50","type":2,"stats":[82,0,135,0,0,0,65,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50181,"name":"Dying Light","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,121,0,0,121,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":495,"weaponDamageMax":743,"weaponSpeed":2.1,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50182,"name":"Blood Queen's Crimson Choker","icon":"inv_jewelcrafting_crimsonspinel_02","type":2,"stats":[0,0,129,83,0,0,57,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50183,"name":"Lungbreaker","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":222,"weaponDamageMax":413,"weaponSpeed":1.4,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50184,"name":"Keleseth's Seducer","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":3,"stats":[0,69,104,0,0,46,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":50185,"name":"Devium's Eternally Cold Ring","icon":"inv_jewelry_ring_86","type":11,"stats":[90,0,124,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50186,"name":"Frostbrood Sapphire Ring","icon":"item_icecrownringa","type":11,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50187,"name":"Coldwraith Links","icon":"inv_belt_62","type":8,"armorType":4,"stats":[104,0,180,0,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50188,"name":"Anub'ar Stalker's Gloves","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,142,0,0,0,104,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50190,"name":"Grinning Skull Greatboots","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[92,0,157,0,0,0,0,0,53,112,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50191,"name":"Nighttime","icon":"inv_axe_91","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50192,"name":"Scourge Reaver's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[138,0,243,0,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50193,"name":"Very Fashionable Shoulders","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,128,90,0,62,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50194,"name":"Weeping Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[89,0,134,0,0,0,49,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50195,"name":"Noose of Malachite","icon":"item_icecrownnecklacec","type":2,"stats":[69,0,124,0,0,46,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50196,"name":"Love's Prisoner","icon":"inv_spiritshard_02","type":2,"stats":[0,0,96,67,50,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50197,"name":"Eyes of Bewilderment","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,104,126,0,0,0,106,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}]}, -{"id":50198,"name":"Needle-Encrusted Scorpion","icon":"inv_qirajidol_onyx","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50199,"name":"Leggings of Dying Candles","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50202,"name":"Snowstorm Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50203,"name":"Blood Weeper","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,52,73,0,0,0,30,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":257,"weaponDamageMax":387,"weaponSpeed":1.8,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50204,"name":"Wand of the Drowned Contessa","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":583,"weaponDamageMax":1083,"weaponSpeed":2,"ilvl":264,"quality":4}, -{"id":50205,"name":"Frostbinder's Shredded Cape","icon":"inv_misc_cape_16","type":4,"stats":[0,0,129,83,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50206,"name":"Frayed Scoundrel's Cap","icon":"inv_helmet_153","type":1,"armorType":2,"stats":[0,104,148,0,0,0,47,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50207,"name":"Black Spire Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,71,47,0,0,0,0,0,0,0,0,0,0,0,1648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50208,"name":"Pauldrons of the Souleater","icon":"inv_shoulder_121","type":3,"armorType":4,"stats":[89,0,134,0,0,0,54,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50209,"name":"Essence of Suffering","icon":"inv_bracer_31","type":6,"armorType":3,"stats":[0,67,100,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50210,"name":"Seethe","icon":"inv_sword_120","type":13,"weaponType":9,"handType":1,"stats":[0,0,88,0,0,39,0,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":2.2,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50211,"name":"Arcane Loops of Anger","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,98,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50212,"name":"Essence of Desire","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,128,90,62,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50213,"name":"Mord'rethar Robes","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,173,121,86,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50214,"name":"Helm of the Spirit Shock","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,0,149,105,0,0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1401,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50215,"name":"Recovered Reliquary Boots","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[0,0,128,90,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}]}, -{"id":50227,"name":"Surgeon's Needle","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":1,"stats":[0,0,88,0,52,0,39,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":419,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50228,"name":"Barbed Ymirheim Choker","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,67,96,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50229,"name":"Legguards of the Frosty Depths","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[0,0,167,113,80,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50230,"name":"Malykriss Vambraces","icon":"inv_bracer_49","type":6,"armorType":4,"stats":[67,0,100,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1049,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50233,"name":"Spurned Val'kyr Shoulderguards","icon":"inv_shoulder_120","type":3,"armorType":3,"stats":[0,89,120,0,0,0,80,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50234,"name":"Shoulderplates of Frozen Blood","icon":"inv_shoulder_121","type":3,"armorType":4,"stats":[68,0,134,0,0,0,0,0,45,87,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}]}, -{"id":50235,"name":"Ick's Rotting Thumb","icon":"inv_misc_bone_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50240,"name":"Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3}, -{"id":50241,"name":"Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,204,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":50242,"name":"Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3}, -{"id":50243,"name":"Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":50244,"name":"Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":50255,"name":"Dread Pirate Ring","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,34,0,0,29,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7,"unique":true,"sources":[{"quest":{"id":24803,"name":"Kalu'ak Fishing Derby"}}]}, -{"id":50257,"name":"Shadow's Edge Monster Offhand","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.5,"ilvl":132,"quality":4}, -{"id":50259,"name":"Nevermelting Ice Crystal","icon":"inv_datacrystal09","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50260,"name":"Ephemeral Snowflake","icon":"inv_jewelcrafting_empyreansapphire_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50262,"name":"Felglacier Bolter","icon":"inv_weapon_crossbow_30","type":14,"rangedWeaponType":2,"stats":[0,38,54,0,0,28,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":558,"weaponDamageMax":838,"weaponSpeed":3,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50263,"name":"Braid of Salt and Fire","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,131,90,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50264,"name":"Chewed Leather Wristguards","icon":"inv_bracer_23a","type":6,"armorType":2,"stats":[0,67,96,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50265,"name":"Blackened Ghoul Skin Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,173,121,74,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50266,"name":"Ancient Polar Bear Hide","icon":"inv_chest_cloth_79","type":5,"armorType":1,"stats":[0,0,173,121,0,61,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}]}, -{"id":50267,"name":"Tyrannical Beheader","icon":"inv_axe_96","type":13,"weaponType":1,"handType":4,"stats":[112,0,180,0,0,0,53,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50268,"name":"Rimefang's Claw","icon":"inv_weapon_shortblade_86","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,44,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":213,"weaponDamageMax":396,"weaponSpeed":1.7,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50269,"name":"Fleshwerk Leggings","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,120,172,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50270,"name":"Belt of Rotted Fingernails","icon":"inv_belt_69","type":8,"armorType":3,"stats":[0,89,134,0,0,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50271,"name":"Band of Stained Souls","icon":"inv_jewelry_ring_12","type":11,"stats":[0,67,100,0,0,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50272,"name":"Frost Wyrm Ribcage","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[120,0,180,0,0,0,84,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50273,"name":"Engraved Gargoyle Femur","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,0,219,0,0,113,0,86,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":558,"weaponDamageMax":838,"weaponSpeed":3,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50275,"name":"Bloodmage Gloves","icon":"inv_gauntlets_90purple","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":50276,"name":"Bloodmage Hood","icon":"inv_helmet_150purple","type":1,"armorType":1,"stats":[0,0,204,120,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":50277,"name":"Bloodmage Leggings","icon":"inv_pants_cloth_34purple","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":50278,"name":"Bloodmage Robe","icon":"inv_chest_cloth_78purple","type":5,"armorType":1,"stats":[0,0,204,128,0,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":50279,"name":"Bloodmage Shoulderpads","icon":"inv_shoulder_116purple","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":50283,"name":"Mudslide Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,131,90,0,0,61,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50284,"name":"Rusty Frozen Fingerguards","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[0,0,128,90,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50285,"name":"Icebound Bronze Cuirass","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[88,0,181,0,0,67,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50286,"name":"Prelate's Snowshoes","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,128,90,61,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}]}, -{"id":50287,"name":"Boots of the Bay","icon":"inv_boots_cloth_21","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"sources":[{"quest":{"id":24803,"name":"Kalu'ak Fishing Derby"}}]}, -{"id":50290,"name":"Falric's Wrist-Chopper","icon":"inv_axe_89","type":13,"weaponType":1,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,31,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":1.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50291,"name":"Soulsplinter","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,55,38,0,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":483,"weaponDamageMax":898,"weaponSpeed":2.1,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50292,"name":"Bracer of Worn Molars","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,96,67,0,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50293,"name":"Spaulders of Black Betrayal","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,89,131,0,0,57,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50294,"name":"Chestpiece of High Treason","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,173,113,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50295,"name":"Spiked Toestompers","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,89,97,0,0,0,89,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}]}, -{"id":50296,"name":"Orca-Hunter's Harpoon","icon":"inv_weapon_halberd_26","type":13,"weaponType":6,"handType":4,"stats":[0,112,172,0,0,84,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":632,"weaponDamageMax":949,"weaponSpeed":3.4,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50297,"name":"Frostsworn Bone Chestpiece","icon":"inv_chest_mail_12","type":5,"armorType":3,"stats":[0,121,142,0,0,0,100,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50298,"name":"Sightless Crown of Ulmaas","icon":"inv_helmet_155","type":1,"armorType":1,"stats":[0,0,149,105,0,62,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50299,"name":"Suspiciously Soft Gloves","icon":"inv_gauntlets_91","type":7,"armorType":1,"stats":[0,0,128,90,57,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50300,"name":"Choking Hauberk","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,112,176,0,0,59,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}]}, -{"id":50302,"name":"Liar's Tongue","icon":"inv_sword_118","type":13,"weaponType":9,"handType":2,"stats":[0,52,75,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.5,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50303,"name":"Black Icicle","icon":"inv_mace_78","type":13,"weaponType":4,"handType":2,"stats":[0,39,87,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50304,"name":"Hoarfrost Gauntlets","icon":"inv_gauntlets_77a","type":7,"armorType":3,"stats":[0,89,134,0,0,52,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50305,"name":"Grinning Skull Boots","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[89,0,134,0,0,0,64,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50306,"name":"The Lady's Promise","icon":"inv_jewelry_ring_26","type":11,"stats":[67,0,100,0,0,0,47,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50308,"name":"Blighted Leather Footpads","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,89,128,0,0,0,54,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,830,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50309,"name":"Shriveled Heart","icon":"inv_ore_feliron_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,79,67,0,0,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50310,"name":"Fossilized Ammonite Choker","icon":"inv_misc_shell_04","type":2,"stats":[67,0,100,0,0,0,0,0,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50311,"name":"Second Helm of the Executioner","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[84,0,157,0,0,0,0,0,53,98,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50312,"name":"Chestguard of Broken Branches","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,0,173,113,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1207,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50313,"name":"Oath of Empress Zoe","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,95,67,50,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50314,"name":"Strip of Remorse","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,128,90,0,0,55,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}]}, -{"id":50315,"name":"Seven-Fingered Claws","icon":"inv_weapon_hand_04","type":13,"weaponType":3,"handType":1,"stats":[0,52,83,0,0,34,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":372,"weaponDamageMax":558,"weaponSpeed":2.6,"ilvl":232,"quality":4,"expansion":3}, -{"id":50318,"name":"Ghostly Wristwraps","icon":"inv_bracer_22c","type":6,"armorType":2,"stats":[0,0,96,67,41,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":3}, -{"id":50319,"name":"Unsharpened Ice Razor","icon":"inv_weapon_shortblade_61","type":13,"weaponType":2,"handType":2,"stats":[0,52,75,0,0,0,37,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":301,"weaponSpeed":1.4,"ilvl":232,"quality":4,"expansion":3}, -{"id":50324,"name":"Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":50325,"name":"Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[128,0,216,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3}, -{"id":50326,"name":"Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":50327,"name":"Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3}, -{"id":50328,"name":"Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":50333,"name":"Toskk's Maximized Wristguards","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50339,"name":"Sliver of Pure Ice","icon":"inv_jewelry_trinket_05","type":12,"stats":[0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50340,"name":"Muradin's Spyglass","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50341,"name":"Unidentifiable Organ","icon":"inv_ore_feliron_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50342,"name":"Whispering Fanged Skull","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50343,"name":"Whispering Fanged Skull","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50344,"name":"Unidentifiable Organ","icon":"inv_ore_feliron_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50345,"name":"Muradin's Spyglass","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50346,"name":"Sliver of Pure Ice","icon":"inv_jewelry_trinket_05","type":12,"stats":[0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50351,"name":"Tiny Abomination in a Jar","icon":"inv_alchemy_enchantedvial","type":12,"stats":[0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":50352,"name":"Corpse Tongue Coin","icon":"inv_misc_coin_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50353,"name":"Dislodged Foreign Object","icon":"inv_jewelry_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50354,"name":"Bauble of True Blood","icon":"inv_jewelcrafting_gem_28","type":12,"stats":[0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":50355,"name":"Herkuml War Token","icon":"inv_misc_rune_12","type":12,"stats":[0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true}, -{"id":50356,"name":"Corroded Skeleton Key","icon":"inv_misc_key_15","type":12,"stats":[0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true}, -{"id":50357,"name":"Maghia's Misguided Quill","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true}, -{"id":50358,"name":"Purified Lunar Dust","icon":"inv_misc_ammo_gunpowder_05","type":12,"stats":[0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true}, -{"id":50359,"name":"Althor's Abacus","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50360,"name":"Phylactery of the Nameless Lich","icon":"inv_jewelry_trinket_03","type":12,"stats":[0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50361,"name":"Sindragosa's Flawless Fang","icon":"inv_jewelry_trinket_06","type":12,"stats":[0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50362,"name":"Deathbringer's Will","icon":"inv_jewelry_trinket_04","type":12,"stats":[0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50375,"name":"Ashen Band of Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[57,0,120,0,0,47,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50376,"name":"Ashen Band of Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,80,117,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50377,"name":"Ashen Band of Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,114,80,0,47,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50378,"name":"Ashen Band of Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,114,80,54,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50384,"name":"Ashen Band of Greater Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,124,86,0,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":259,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50386,"name":"Ashen Band of Greater Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,124,86,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":259,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50387,"name":"Ashen Band of Greater Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,86,126,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":259,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50388,"name":"Ashen Band of Greater Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[62,0,129,0,0,50,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":259,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50391,"name":"Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3}, -{"id":50392,"name":"Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,204,119,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":50393,"name":"Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3}, -{"id":50394,"name":"Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,204,128,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":50396,"name":"Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":50397,"name":"Ashen Band of Unmatched Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,120,86,0,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":268,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50399,"name":"Ashen Band of Unmatched Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,120,86,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":268,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50401,"name":"Ashen Band of Unmatched Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,88,123,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":268,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50403,"name":"Ashen Band of Unmatched Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[62,0,129,0,0,50,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":268,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":50411,"name":"Scourgeborne Waraxe","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50412,"name":"Bloodvenom Blade","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[0,69,104,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50413,"name":"Nerub'ar Stalker's Cord","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,142,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50414,"name":"Might of Blight","icon":"inv_jewelry_ring_84","type":11,"stats":[82,0,136,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50415,"name":"Bryntroll, the Bone Arbiter","icon":"inv_axe_120","type":13,"weaponType":1,"handType":4,"stats":[169,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":801,"weaponDamageMax":1203,"weaponSpeed":3.4,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50416,"name":"Boots of the Funeral March","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50417,"name":"Bracers of Eternal Dreaming","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50418,"name":"Robe of the Waking Nightmare","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,138,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50421,"name":"Sindragosa's Cruel Claw","icon":"inv_misc_monsterhorn_03","type":2,"stats":[0,90,124,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50423,"name":"Sundial of Eternal Dusk","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,91,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50424,"name":"Memory of Malygos","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":50425,"name":"Oathbinder, Charge of the Ranger-General","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,157,260,0,0,0,99,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":895,"weaponDamageMax":1344,"weaponSpeed":3.6,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50426,"name":"Heaven's Fall, Kryss of a Thousand Lies","icon":"inv_weapon_shortblade_104","type":13,"weaponType":2,"handType":2,"stats":[0,74,111,0,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":344,"weaponDamageMax":517,"weaponSpeed":1.8,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50427,"name":"Bloodsurge, Kel'Thuzad's Blade of Agony","icon":"inv_sword_150","type":13,"weaponType":9,"handType":1,"stats":[0,0,133,0,0,0,63,63,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50428,"name":"Royal Scepter of Terenas II","icon":"inv_mace_115","type":13,"weaponType":4,"handType":1,"stats":[0,0,133,0,0,0,63,63,0,0,0,0,0,0,992,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50429,"name":"Archus, Greatstaff of Antonidas","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,0,313,0,130,0,0,130,0,0,0,0,0,0,992,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":522,"weaponDamageMax":784,"weaponSpeed":2.1,"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":50442,"name":"Ashbringer (Extra Effects)","icon":"inv_sword_48","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":201,"weaponDamageMax":247,"weaponSpeed":3,"ilvl":76,"quality":5,"unique":true}, -{"id":50444,"name":"Rowan's Rifle of Silver Bullets","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[39,0,77,0,0,26,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":433,"weaponDamageMax":805,"weaponSpeed":2.1,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50447,"name":"Harbinger's Bone Band","icon":"inv_jewelry_ring_84","type":11,"stats":[69,0,124,0,0,38,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50449,"name":"Stiffened Corpse Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50450,"name":"Leggings of Dubious Charms","icon":"inv_pants_mail_35","type":9,"armorType":3,"stats":[0,0,231,137,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50451,"name":"Belt of the Lonely Noble","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50452,"name":"Wodin's Lucky Necklace","icon":"inv_misc_pelt_wolf_ruin_01","type":2,"stats":[0,90,124,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50453,"name":"Ring of Rotting Sinew","icon":"inv_jewelry_ring_81","type":11,"stats":[82,0,135,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}]}, -{"id":50454,"name":"Idol of the Black Willow","icon":"trade_herbalism","type":14,"rangedWeaponType":4,"stats":[0,0,77,51,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":50455,"name":"Libram of Three Truths","icon":"inv_scroll_15","type":14,"rangedWeaponType":4,"stats":[51,0,77,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4,10]}, -{"id":50456,"name":"Idol of the Crying Moon","icon":"spell_nature_natureguardian","type":14,"rangedWeaponType":4,"stats":[0,51,77,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,7]}, -{"id":50457,"name":"Idol of the Lunar Eclipse","icon":"inv_offhand_1h_ulduarraid_d_01","type":14,"rangedWeaponType":4,"stats":[0,0,77,51,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"classAllowlist":[4,1,7]}, -{"id":50458,"name":"Bizuri's Totem of Shattered Ice","icon":"spell_frost_frostnova","type":14,"rangedWeaponType":4,"stats":[0,0,77,51,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4,1,7]}, -{"id":50459,"name":"Sigil of the Hanged Man","icon":"inv_misc_noose_01","type":14,"rangedWeaponType":4,"stats":[51,0,77,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":50460,"name":"Libram of Blinding Light","icon":"spell_holy_blessedresillience","type":14,"rangedWeaponType":4,"stats":[0,0,77,51,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4,1,7]}, -{"id":50461,"name":"Libram of the Eternal Tower","icon":"inv_offhand_ulduarraid_d_02","type":14,"rangedWeaponType":4,"stats":[51,0,77,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4,10]}, -{"id":50462,"name":"Sigil of the Bone Gryphon","icon":"ability_mount_ebonblade","type":14,"rangedWeaponType":4,"stats":[51,0,77,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"classAllowlist":[4,10]}, -{"id":50463,"name":"Totem of the Avalanche","icon":"inv_misc_gem_diamond_03","type":14,"rangedWeaponType":4,"stats":[0,51,77,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1,7]}, -{"id":50464,"name":"Totem of the Surging Sea","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,77,51,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4,1,7]}, -{"id":50466,"name":"Sentinel's Winter Cloak","icon":"inv_misc_cape_13","type":4,"stats":[90,0,124,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,556,160,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50467,"name":"Might of the Ocean Serpent","icon":"inv_misc_cape_17","type":4,"stats":[82,0,135,0,0,0,65,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50468,"name":"Drape of the Violet Tower","icon":"inv_misc_cape_16","type":4,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50469,"name":"Volde's Cloak of the Night Sky","icon":"inv_misc_cape_16","type":4,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50470,"name":"Recovered Scarlet Onslaught Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,90,124,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50472,"name":"Nightmare Ender","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":524,"weaponDamageMax":975,"weaponSpeed":1.8,"ilvl":264,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":50474,"name":"Shrapnel Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,51,77,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":1.8,"ilvl":264,"quality":4}, -{"id":50741,"name":"Vile Fumigator's Mask","icon":"spell_shadow_plaguecloud","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":3,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}},{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}}]}, -{"id":50759,"name":"Bone Warden's Splitter","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,62,93,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":215,"weaponDamageMax":401,"weaponSpeed":1.5,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50760,"name":"Bonebreaker Scepter","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[42,0,92,0,0,39,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":1.7,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50761,"name":"Citadel Enforcer's Claymore","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[136,0,216,0,0,103,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":727,"weaponDamageMax":1091,"weaponSpeed":3.4,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50762,"name":"Linked Scourge Vertebrae","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,91,160,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50763,"name":"Marrowgar's Scratching Choker","icon":"inv_jewelry_necklace_52","type":2,"stats":[79,0,108,0,0,0,0,0,0,55,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50764,"name":"Shawl of Nerubian Silk","icon":"inv_misc_cape_16","type":4,"stats":[0,72,114,0,0,41,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50765,"name":"Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,204,120,80,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":50766,"name":"Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,99,71,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3}, -{"id":50767,"name":"Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,99,71,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":50768,"name":"Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,204,128,88,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":50769,"name":"Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,204,128,96,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3}, -{"id":50771,"name":"Frost Needle","icon":"inv_sword_152","type":13,"weaponType":9,"handType":1,"stats":[0,0,111,0,0,49,0,54,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50772,"name":"Ancient Skeletal Boots","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,152,91,54,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50773,"name":"Cord of the Patronizing Practitioner","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,152,91,54,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50774,"name":"Coldwraith Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,114,72,48,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50775,"name":"Corrupted Silverplate Leggings","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,204,120,0,0,81,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":50776,"name":"Njorndar Bone Bow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,45,64,0,0,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":542,"weaponDamageMax":1008,"weaponSpeed":2.9,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50777,"name":"Handgrips of Frost and Sleet","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,91,160,0,0,71,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50778,"name":"Soulthief's Braided Belt","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,91,152,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50779,"name":"Deathspeaker Zealot's Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[120,0,216,0,0,0,95,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50780,"name":"Chestguard of the Frigid Noose","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,132,174,0,0,0,79,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50781,"name":"Scourgelord's Baton","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,0,57,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50782,"name":"Sister's Handshrouds","icon":"inv_gauntlets_90purple","type":7,"armorType":1,"stats":[0,0,152,91,0,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50783,"name":"Boots of the Frozen Seed","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,152,91,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50784,"name":"Deathspeaker Disciple's Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,152,91,50,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50785,"name":"Bracers of Dark Blessings","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,114,72,51,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50786,"name":"Ghoul Commander's Cuirass","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,86,76,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":50787,"name":"Frost Giant's Cleaver","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,62,88,0,0,0,45,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":374,"weaponDamageMax":695,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50788,"name":"Bone Drake's Enameled Boots","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[91,0,160,0,0,0,73,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50789,"name":"Icecrown Rampart Bracers","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,45,120,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50790,"name":"Abomination's Bloody Ring","icon":"inv_jewelry_ring_85","type":11,"stats":[49,0,108,0,0,47,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50791,"name":"Saronite Gargoyle Cloak","icon":"inv_misc_cape_26","type":4,"stats":[72,0,120,0,0,0,32,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50792,"name":"Pauldrons of Lost Hope","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,107,118,0,0,0,85,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50793,"name":"Midnight Sun","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":1,"stats":[0,0,111,0,56,0,0,46,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50794,"name":"Neverending Winter","icon":"inv_shield_73","type":13,"weaponType":7,"handType":3,"stats":[80,0,120,0,0,0,0,0,0,37,65,0,0,0,0,0,0,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50795,"name":"Cord of Dark Suffering","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,152,91,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50796,"name":"Bracers of Pale Illumination","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,117,72,53,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50797,"name":"Ice-Reinforced Vrykul Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,183,128,86,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":50798,"name":"Ramaladni's Blade of Culling","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[128,0,216,0,0,0,83,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":748,"weaponDamageMax":1123,"weaponSpeed":3.5,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50799,"name":"Scourge Stranglers","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,107,126,0,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50800,"name":"Hauberk of a Thousand Cuts","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,215,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50801,"name":"Blade-Scored Carapace","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[132,0,216,0,0,0,72,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50802,"name":"Gargoyle Spit Bracers","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[72,0,108,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1109,180,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50803,"name":"Saurfang's Cold-Forged Band","icon":"inv_jewelry_ring_81","type":11,"stats":[0,72,117,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50804,"name":"Icecrown Spire Sandals","icon":"inv_boots_cloth_25purple","type":10,"armorType":1,"stats":[0,0,152,91,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50805,"name":"Mag'hari Chieftain's Staff","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,180,0,136,0,0,136,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":662,"weaponDamageMax":994,"weaponSpeed":3.1,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50806,"name":"Leggings of Unrelenting Blood","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,204,120,96,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50807,"name":"Thaumaturge's Crackling Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,204,128,88,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50808,"name":"Deathforged Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[109,0,179,0,0,0,0,0,49,144,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50809,"name":"Soulcleave Pendant","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,114,72,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":50810,"name":"Gutbuster","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,47,104,0,0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":374,"weaponDamageMax":695,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50811,"name":"Festering Fingerguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[91,0,160,0,0,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50812,"name":"Taldron's Long Neglected Boots","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,91,131,0,0,0,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50815,"name":"Shadowmourne Monster Offhand","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.5,"ilvl":132,"quality":4}, -{"id":50819,"name":"Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":50820,"name":"Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3}, -{"id":50821,"name":"Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,204,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":50822,"name":"Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3}, -{"id":50823,"name":"Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":50824,"name":"Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":50825,"name":"Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,144,191,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3}, -{"id":50826,"name":"Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,144,179,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":50827,"name":"Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3}, -{"id":50828,"name":"Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,144,191,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":50830,"name":"Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":50831,"name":"Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,99,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3}, -{"id":50832,"name":"Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,136,170,0,0,0,120,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":50833,"name":"Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,128,215,0,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3}, -{"id":50834,"name":"Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,107,126,0,0,0,99,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":50835,"name":"Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":50836,"name":"Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,99,64,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3}, -{"id":50837,"name":"Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,204,119,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":50838,"name":"Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,204,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3}, -{"id":50839,"name":"Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":50841,"name":"Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":50842,"name":"Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3}, -{"id":50843,"name":"Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,204,119,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":50844,"name":"Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3}, -{"id":50845,"name":"Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":50846,"name":"Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":50847,"name":"Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3}, -{"id":50848,"name":"Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":50849,"name":"Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1584,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3}, -{"id":50850,"name":"Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2534,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":50852,"name":"Precious' Putrid Collar","icon":"inv_jewelry_ring_78","type":2,"stats":[0,72,115,0,0,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50853,"name":"Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":50854,"name":"Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3}, -{"id":50855,"name":"Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":50856,"name":"Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1584,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3}, -{"id":50857,"name":"Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2534,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":50858,"name":"Plague-Soaked Leather Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,144,179,0,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50859,"name":"Cloak of Many Skins","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[72,0,108,0,0,0,0,0,0,62,42,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50860,"name":"Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":50861,"name":"Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3}, -{"id":50862,"name":"Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":50863,"name":"Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1584,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3}, -{"id":50864,"name":"Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2534,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":50865,"name":"Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":50866,"name":"Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,204,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3}, -{"id":50867,"name":"Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,204,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":50868,"name":"Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,152,99,64,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3}, -{"id":50869,"name":"Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":50965,"name":"Castle Breaker's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[138,0,243,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50966,"name":"Abracadaver","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,220,0,0,101,0,136,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":2.1,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50967,"name":"Festergut's Gaseous Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,152,91,72,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50968,"name":"Cataclysmic Chestguard","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[123,0,207,0,0,0,0,0,82,108,0,0,0,0,0,0,0,0,0,0,0,0,2642,336,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50969,"name":"Chestplate of Unspoken Truths","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50970,"name":"Longstrider's Vest","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,146,192,0,0,0,146,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50971,"name":"Mail of the Geyser","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50972,"name":"Shadow Seeker's Tunic","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,162,219,0,0,0,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50973,"name":"Vestments of Spruce and Fir","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,84,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50974,"name":"Meteor Chaser's Raiment","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50975,"name":"Ermine Coronation Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50976,"name":"Gauntlets of Overexposure","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50977,"name":"Gatecrasher's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[104,0,180,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50978,"name":"Gauntlets of the Kraken","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1651,288,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50979,"name":"Logsplitters","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,142,0,0,0,96,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50980,"name":"Blizzard Keeper's Mitts","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50981,"name":"Gloves of the Great Horned Owl","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50982,"name":"Cat Burglar's Grips","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,120,157,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50983,"name":"Gloves of False Gestures","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50984,"name":"Gloves of Ambivalence","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50985,"name":"Wrists of Septic Shock","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,114,72,56,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50986,"name":"Signet of Putrefaction","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,114,72,53,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50987,"name":"Malevolent Girdle","icon":"inv_belt_62","type":8,"armorType":4,"stats":[104,0,180,0,0,60,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50988,"name":"Bloodstained Surgeon's Shoulderguards","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,91,75,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50989,"name":"Lich Killer's Lanyard","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50990,"name":"Kilt of Untreated Wounds","icon":"inv_pants_cloth_34purple","type":9,"armorType":1,"stats":[0,0,204,120,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":50991,"name":"Verdigris Chain Belt","icon":"inv_belt_62","type":8,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1486,188,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50992,"name":"Waistband of Despair","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50993,"name":"Band of the Night Raven","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,181,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50994,"name":"Belt of Petrified Ivy","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50995,"name":"Vengeful Noose","icon":"inv_misc_noose_01","type":8,"armorType":2,"stats":[0,120,157,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50996,"name":"Belt of Omission","icon":"inv_belt_66","type":8,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50997,"name":"Circle of Ossus","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,173,105,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4}, -{"id":50998,"name":"Shaft of Glacial Ice","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,136,211,0,0,88,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":513,"weaponDamageMax":770,"weaponSpeed":2.4,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":50999,"name":"Gluth's Fetching Knife","icon":"inv_throwingknife_01","type":14,"rangedWeaponType":5,"stats":[0,45,67,0,0,28,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":384,"weaponDamageMax":577,"weaponSpeed":1.8,"ilvl":251,"quality":4}, -{"id":51000,"name":"Flesh-Shaper's Gurney Strap","icon":"inv_belt_62","type":8,"armorType":4,"stats":[91,0,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51001,"name":"Rotface's Rupturing Ring","icon":"item_icecrownringd","type":11,"stats":[71,0,120,0,0,0,47,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51002,"name":"Taldron's Short-Sighted Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,128,170,0,0,0,118,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51003,"name":"Abomination Knuckles","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,62,88,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":427,"weaponDamageMax":642,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51004,"name":"Lockjaw","icon":"inv_mace_118","type":13,"weaponType":4,"handType":1,"stats":[0,0,114,0,52,0,0,52,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":316,"weaponDamageMax":588,"weaponSpeed":2.2,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51005,"name":"Gloves of Broken Fingers","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,91,46,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51006,"name":"Shuffling Shoes","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,152,91,70,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51007,"name":"Ether-Soaked Bracers","icon":"inv_bracer_45purple","type":6,"armorType":1,"stats":[0,0,114,80,0,40,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51008,"name":"Choker of Filthy Diamonds","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,115,72,46,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51009,"name":"Chestguard of the Failed Experiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,204,120,72,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1321,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51010,"name":"The Facelifter","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[44,0,92,0,0,0,0,0,36,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":230,"weaponDamageMax":428,"weaponSpeed":1.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51011,"name":"Flesh-Carving Scalpel","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,44,110,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":230,"weaponDamageMax":345,"weaponSpeed":1.4,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51012,"name":"Infected Choker","icon":"item_icecrownnecklaceb","type":2,"stats":[72,0,120,0,0,0,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51013,"name":"Discarded Bag of Entrails","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,136,180,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51014,"name":"Scalpel-Sharpening Shoulderguards","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[91,0,160,0,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51015,"name":"Shoulderpads of the Morbid Ritual","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,91,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51016,"name":"Pendant of Split Veins","icon":"inv_jewelry_talisman_16","type":2,"stats":[0,0,115,72,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51017,"name":"Cauterized Cord","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,152,91,0,0,76,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51018,"name":"Chestplate of Septic Stitches","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,204,120,72,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2534,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51019,"name":"Rippling Flesh Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,204,120,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51020,"name":"Shoulders of Ruinous Senility","icon":"inv_shoulder_116purple","type":3,"armorType":1,"stats":[0,0,152,91,0,55,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51021,"name":"Soulbreaker","icon":"inv_sword_151","type":13,"weaponType":9,"handType":2,"stats":[0,62,88,0,0,0,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":374,"weaponDamageMax":695,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51022,"name":"Hersir's Greatspear","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,97,243,0,0,53,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":748,"weaponDamageMax":1123,"weaponSpeed":3.5,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51023,"name":"Taldaram's Soft Slippers","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,91,157,0,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51024,"name":"Thrice Fanged Signet","icon":"item_icecrownringb","type":11,"stats":[72,0,120,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51025,"name":"Battle-Maiden's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[120,0,216,0,0,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51125,"name":"Sanctified Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[112,0,180,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51126,"name":"Sanctified Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[146,0,243,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3}, -{"id":51127,"name":"Sanctified Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51128,"name":"Sanctified Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[112,0,180,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3}, -{"id":51129,"name":"Sanctified Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897}, -{"id":51130,"name":"Sanctified Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51131,"name":"Sanctified Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3}, -{"id":51132,"name":"Sanctified Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1651,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3}, -{"id":51133,"name":"Sanctified Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,112,77,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51134,"name":"Sanctified Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,48,85,0,0,0,0,0,0,0,0,0,0,0,2642,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898}, -{"id":51135,"name":"Sanctified Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,173,113,80,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51136,"name":"Sanctified Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,146,108,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3}, -{"id":51137,"name":"Sanctified Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51138,"name":"Sanctified Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,173,113,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3}, -{"id":51139,"name":"Sanctified Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,146,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887}, -{"id":51140,"name":"Sanctified Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51141,"name":"Sanctified Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51142,"name":"Sanctified Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,162,219,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3}, -{"id":51143,"name":"Sanctified Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,162,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889}, -{"id":51144,"name":"Sanctified Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3}, -{"id":51145,"name":"Sanctified Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51146,"name":"Sanctified Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3}, -{"id":51147,"name":"Sanctified Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51148,"name":"Sanctified Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3}, -{"id":51149,"name":"Sanctified Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888}, -{"id":51150,"name":"Sanctified Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51151,"name":"Sanctified Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,120,142,0,0,0,112,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51152,"name":"Sanctified Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3}, -{"id":51153,"name":"Sanctified Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,154,192,0,0,0,130,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891}, -{"id":51154,"name":"Sanctified Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3}, -{"id":51155,"name":"Sanctified Bloodmage Shoulderpads","icon":"inv_shoulder_116","type":3,"armorType":1,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51156,"name":"Sanctified Bloodmage Robe","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,146,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51157,"name":"Sanctified Bloodmage Leggings","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51158,"name":"Sanctified Bloodmage Hood","icon":"inv_helmet_150red","type":1,"armorType":1,"stats":[0,0,231,138,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51159,"name":"Sanctified Bloodmage Gloves","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"sources":[{"soldBy":{"zoneId":4395}}]}, -{"id":51160,"name":"Sanctified Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[112,0,180,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51161,"name":"Sanctified Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[146,0,243,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3}, -{"id":51162,"name":"Sanctified Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51163,"name":"Sanctified Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[112,0,180,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3}, -{"id":51164,"name":"Sanctified Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900}, -{"id":51165,"name":"Sanctified Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51166,"name":"Sanctified Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51167,"name":"Sanctified Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899}, -{"id":51168,"name":"Sanctified Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3}, -{"id":51169,"name":"Sanctified Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,173,113,72,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3}, -{"id":51170,"name":"Sanctified Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51171,"name":"Sanctified Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3}, -{"id":51172,"name":"Sanctified Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1651,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3}, -{"id":51173,"name":"Sanctified Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[162,0,211,0,0,0,0,0,0,112,77,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51174,"name":"Sanctified Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,48,85,0,0,0,0,0,0,0,0,0,0,0,2642,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901}, -{"id":51175,"name":"Sanctified Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,173,113,80,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51176,"name":"Sanctified Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,146,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51177,"name":"Sanctified Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,231,146,108,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3}, -{"id":51178,"name":"Sanctified Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885}, -{"id":51179,"name":"Sanctified Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,113,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3}, -{"id":51180,"name":"Sanctified Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,146,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51181,"name":"Sanctified Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3}, -{"id":51182,"name":"Sanctified Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51183,"name":"Sanctified Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3}, -{"id":51184,"name":"Sanctified Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,137,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886}, -{"id":51185,"name":"Sanctified Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,120,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51186,"name":"Sanctified Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,219,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3}, -{"id":51187,"name":"Sanctified Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,162,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51188,"name":"Sanctified Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3}, -{"id":51189,"name":"Sanctified Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890}, -{"id":51190,"name":"Sanctified Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51191,"name":"Sanctified Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,113,72,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3}, -{"id":51192,"name":"Sanctified Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,137,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51193,"name":"Sanctified Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3}, -{"id":51194,"name":"Sanctified Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892}, -{"id":51195,"name":"Sanctified Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51196,"name":"Sanctified Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,112,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3}, -{"id":51197,"name":"Sanctified Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,154,192,0,0,0,138,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51198,"name":"Sanctified Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,146,243,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3}, -{"id":51199,"name":"Sanctified Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,120,143,0,0,0,112,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894}, -{"id":51200,"name":"Sanctified Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51201,"name":"Sanctified Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3}, -{"id":51202,"name":"Sanctified Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,137,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51203,"name":"Sanctified Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3}, -{"id":51204,"name":"Sanctified Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893}, -{"id":51205,"name":"Sanctified Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51206,"name":"Sanctified Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51207,"name":"Sanctified Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3}, -{"id":51208,"name":"Sanctified Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884}, -{"id":51209,"name":"Sanctified Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3}, -{"id":51210,"name":"Sanctified Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[112,0,180,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51211,"name":"Sanctified Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[146,0,242,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3}, -{"id":51212,"name":"Sanctified Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51213,"name":"Sanctified Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[112,0,180,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3}, -{"id":51214,"name":"Sanctified Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895}, -{"id":51215,"name":"Sanctified Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51216,"name":"Sanctified Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3}, -{"id":51217,"name":"Sanctified Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1651,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3}, -{"id":51218,"name":"Sanctified Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,104,77,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51219,"name":"Sanctified Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,56,77,0,0,0,0,0,0,0,0,0,0,0,2642,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896}, -{"id":51325,"name":"Blood-Drinker's Girdle","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,91,118,0,0,0,107,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51326,"name":"Wand of Ruby Claret","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,67,45,0,33,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":502,"weaponDamageMax":933,"weaponSpeed":1.9,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51327,"name":"Wrathful Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,171,113,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51328,"name":"Wrathful Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,171,113,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51329,"name":"Wrathful Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,129,91,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51330,"name":"Wrathful Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51331,"name":"Wrathful Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51332,"name":"Wrathful Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,129,90,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51333,"name":"Wrathful Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51334,"name":"Wrathful Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_06","type":4,"stats":[0,0,129,90,0,60,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51335,"name":"Wrathful Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,60,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51336,"name":"Wrathful Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3}, -{"id":51337,"name":"Wrathful Gladiator's Cord of Alacrity","icon":"inv_belt_78","type":8,"armorType":1,"stats":[0,0,171,113,0,0,0,72,0,0,0,0,0,0,0,0,80,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51338,"name":"Wrathful Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_32","type":10,"armorType":1,"stats":[0,0,171,113,0,0,0,72,0,0,0,0,0,0,0,0,80,0,0,0,0,0,765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51339,"name":"Wrathful Gladiator's Cuffs of Alacrity","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,129,91,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51340,"name":"Wrathful Gladiator's Belt of Salvation","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51341,"name":"Wrathful Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51342,"name":"Wrathful Gladiator's Armwraps of Salvation","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,129,91,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51343,"name":"Wrathful Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,171,113,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51344,"name":"Wrathful Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,171,113,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51345,"name":"Wrathful Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,129,91,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51346,"name":"Wrathful Gladiator's Cloak of Salvation","icon":"inv_misc_cape_16","type":4,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51347,"name":"Wrathful Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51348,"name":"Wrathful Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_20","type":4,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51349,"name":"Wrathful Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51350,"name":"Wrathful Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,112,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51351,"name":"Wrathful Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,112,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51352,"name":"Wrathful Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,90,136,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51353,"name":"Wrathful Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51354,"name":"Wrathful Gladiator's Cloak of Triumph","icon":"inv_misc_cape_18","type":4,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51355,"name":"Wrathful Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51356,"name":"Wrathful Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"stats":[0,0,136,0,0,60,0,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51357,"name":"Wrathful Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,60,0,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"expansion":3}, -{"id":51358,"name":"Wrathful Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"expansion":3}, -{"id":51359,"name":"Wrathful Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":51360,"name":"Wrathful Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":51361,"name":"Wrathful Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,129,91,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4],"expansion":3}, -{"id":51362,"name":"Wrathful Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[112,0,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":51363,"name":"Wrathful Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[112,0,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":51364,"name":"Wrathful Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[90,0,136,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[9,4,10],"expansion":3}, -{"id":51365,"name":"Wrathful Gladiator's Cord of Salvation","icon":"inv_belt_78","type":8,"armorType":1,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51366,"name":"Wrathful Gladiator's Treads of Salvation","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51367,"name":"Wrathful Gladiator's Cuffs of Salvation","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,129,91,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[5,3,8],"expansion":3}, -{"id":51368,"name":"Wrathful Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,112,171,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51369,"name":"Wrathful Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,112,171,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,967,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51370,"name":"Wrathful Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,90,129,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[6,1],"expansion":3}, -{"id":51371,"name":"Wrathful Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51372,"name":"Wrathful Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,171,113,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51373,"name":"Wrathful Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,129,91,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51374,"name":"Wrathful Gladiator's Waistguard of Dominance","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,171,113,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51375,"name":"Wrathful Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[7],"expansion":3}, -{"id":51376,"name":"Wrathful Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,129,91,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3}, -{"id":51377,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32380,"npcName":"Lieutenant Tristia","zoneId":1519}}],"factionRestriction":1}, -{"id":51378,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"sources":[{"soldBy":{"zoneId":1637}}],"factionRestriction":2}, -{"id":51379,"name":"Bloodsoul Raiment","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,204,120,78,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51380,"name":"Pale Corpse Boots","icon":"inv_boots_cloth_27","type":10,"armorType":1,"stats":[0,0,152,91,55,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51381,"name":"Cerise Coiled Ring","icon":"item_icecrownringc","type":11,"stats":[0,0,113,72,0,0,59,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51382,"name":"Heartsick Mender's Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,114,72,54,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51383,"name":"Spaulders of the Blood Princes","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[74,0,136,0,0,66,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51384,"name":"Bloodsipper","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,62,88,0,0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51385,"name":"Stakethrower","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,45,85,0,0,0,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":561,"weaponDamageMax":1043,"weaponSpeed":3,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51386,"name":"Throatrender Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[91,0,160,0,0,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51387,"name":"Seal of the Twilight Queen","icon":"inv_jewelry_ring_70","type":11,"stats":[0,72,117,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51388,"name":"Wrathful Gladiator's Decapitator","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":848,"weaponDamageMax":1273,"weaponSpeed":3.6,"ilvl":264,"quality":4}, -{"id":51390,"name":"Wrathful Gladiator's Bonegrinder","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":848,"weaponDamageMax":1273,"weaponSpeed":3.6,"ilvl":264,"quality":4}, -{"id":51392,"name":"Wrathful Gladiator's Greatsword","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":848,"weaponDamageMax":1273,"weaponSpeed":3.6,"ilvl":264,"quality":4}, -{"id":51394,"name":"Wrathful Gladiator's Longbow","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":707,"weaponDamageMax":1061,"weaponSpeed":3,"ilvl":264,"quality":4}, -{"id":51396,"name":"Wrathful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,0,0,63,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51397,"name":"Wrathful Gladiator's Spellblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":1,"stats":[0,0,132,0,0,0,51,0,0,0,0,0,0,0,924,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":472,"weaponSpeed":1.6,"ilvl":264,"quality":4}, -{"id":51400,"name":"Wrathful Gladiator's War Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,0,0,121,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2,"ilvl":264,"quality":4}, -{"id":51402,"name":"Wrathful Gladiator's Focus Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,121,0,0,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2,"ilvl":264,"quality":4}, -{"id":51404,"name":"Wrathful Gladiator's Battle Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,0,121,0,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2,"ilvl":264,"quality":4}, -{"id":51406,"name":"Wrathful Gladiator's Blade of Alacrity","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":1,"stats":[0,0,132,0,0,0,0,51,0,0,0,0,0,0,924,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":472,"weaponSpeed":1.6,"ilvl":264,"quality":4}, -{"id":51407,"name":"Wrathful Gladiator's Compendium","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51408,"name":"Wrathful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51409,"name":"Wrathful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,63,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51410,"name":"Wrathful Gladiator's Touch of Defeat","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":1029,"weaponSpeed":1.9,"ilvl":264,"quality":4}, -{"id":51411,"name":"Wrathful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,0,77,0,0,0,34,0,0,0,0,0,102,102,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":707,"weaponDamageMax":1061,"weaponSpeed":3,"ilvl":264,"quality":4}, -{"id":51413,"name":"Wrathful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2693,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":51414,"name":"Wrathful Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":51415,"name":"Wrathful Gladiator's Dreadplate Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2188,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":51416,"name":"Wrathful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2357,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3}, -{"id":51417,"name":"Wrathful Gladiator's Sigil of Strife","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[54,0,80,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,10]}, -{"id":51418,"name":"Wrathful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768}, -{"id":51419,"name":"Wrathful Gladiator's Kodohide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1448,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":51420,"name":"Wrathful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":51421,"name":"Wrathful Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":51422,"name":"Wrathful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3}, -{"id":51423,"name":"Wrathful Gladiator's Idol of Tenacity","icon":"spell_nature_naturetouchgrow","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,1,7]}, -{"id":51424,"name":"Wrathful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1086,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773}, -{"id":51425,"name":"Wrathful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1448,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":51426,"name":"Wrathful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":51427,"name":"Wrathful Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":51428,"name":"Wrathful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3}, -{"id":51429,"name":"Wrathful Gladiator's Idol of Resolve","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,54,80,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1,7]}, -{"id":51430,"name":"Wrathful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1086,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775}, -{"id":51431,"name":"Wrathful Gladiator's Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,146,243,0,0,0,92,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1]}, -{"id":51433,"name":"Wrathful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1448,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":51434,"name":"Wrathful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":51435,"name":"Wrathful Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":51436,"name":"Wrathful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3}, -{"id":51437,"name":"Wrathful Gladiator's Idol of Steadfastness","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,1,7]}, -{"id":51438,"name":"Wrathful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1086,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774}, -{"id":51439,"name":"Wrathful Gladiator's Hacker","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4}, -{"id":51441,"name":"Wrathful Gladiator's Shiv","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":222,"weaponDamageMax":413,"weaponSpeed":1.4,"ilvl":264,"quality":4}, -{"id":51443,"name":"Wrathful Gladiator's Left Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4}, -{"id":51445,"name":"Wrathful Gladiator's Bonecracker","icon":"inv_mace_120","type":13,"weaponType":4,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4}, -{"id":51447,"name":"Wrathful Gladiator's Quickblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4}, -{"id":51449,"name":"Wrathful Gladiator's Rifle","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":707,"weaponDamageMax":1061,"weaponSpeed":3,"ilvl":264,"quality":4}, -{"id":51451,"name":"Wrathful Gladiator's Wand of Alacrity","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,0,0,0,34,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":1029,"weaponSpeed":1.9,"ilvl":264,"quality":4}, -{"id":51452,"name":"Wrathful Gladiator's Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,136,95,0,0,63,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51453,"name":"Wrathful Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":1,"stats":[0,0,132,0,50,0,0,0,0,0,0,0,0,0,924,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":472,"weaponSpeed":1.6,"ilvl":264,"quality":4}, -{"id":51455,"name":"Wrathful Gladiator's Redoubt","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,136,95,64,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51456,"name":"Wrathful Gladiator's Energy Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,120,0,0,0,0,0,0,0,0,0,928,0,120,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2,"ilvl":264,"quality":4}, -{"id":51458,"name":"Wrathful Gladiator's Chain Armor","icon":"inv_chest_mail_13","type":5,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1990,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":51459,"name":"Wrathful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_96","type":7,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":51460,"name":"Wrathful Gladiator's Chain Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":51461,"name":"Wrathful Gladiator's Chain Leggings","icon":"inv_pants_mail_34","type":9,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3}, -{"id":51462,"name":"Wrathful Gladiator's Chain Spaulders","icon":"inv_shoulder_123","type":3,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1492,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772}, -{"id":51463,"name":"Wrathful Gladiator's Silk Raiment","icon":"inv_chest_cloth_81","type":5,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":51464,"name":"Wrathful Gladiator's Silk Handguards","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":51465,"name":"Wrathful Gladiator's Silk Cowl","icon":"inv_helmet_159","type":1,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":51466,"name":"Wrathful Gladiator's Silk Trousers","icon":"inv_pants_cloth_36","type":9,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3}, -{"id":51467,"name":"Wrathful Gladiator's Silk Amice","icon":"inv_shoulder_122","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779}, -{"id":51468,"name":"Wrathful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate26","type":5,"armorType":4,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2693,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":51469,"name":"Wrathful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_91","type":7,"armorType":4,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":51470,"name":"Wrathful Gladiator's Ornamented Headcover","icon":"inv_helmet_164","type":1,"armorType":4,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2188,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":51471,"name":"Wrathful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_37","type":9,"armorType":4,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2357,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3}, -{"id":51472,"name":"Wrathful Gladiator's Libram of Justice","icon":"inv_misc_book_07","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,1,7]}, -{"id":51473,"name":"Wrathful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_126","type":3,"armorType":4,"stats":[0,0,184,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767}, -{"id":51474,"name":"Wrathful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate26","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2693,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":51475,"name":"Wrathful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_91","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":51476,"name":"Wrathful Gladiator's Scaled Helm","icon":"inv_helmet_164","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2188,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":51477,"name":"Wrathful Gladiator's Scaled Legguards","icon":"inv_pants_plate_37","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2357,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3}, -{"id":51478,"name":"Wrathful Gladiator's Libram of Fortitude","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[54,0,80,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,10]}, -{"id":51479,"name":"Wrathful Gladiator's Scaled Shoulders","icon":"inv_shoulder_126","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766}, -{"id":51480,"name":"Wrathful Gladiator's Pike","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":848,"weaponDamageMax":1273,"weaponSpeed":3.6,"ilvl":264,"quality":4}, -{"id":51482,"name":"Wrathful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_83","type":5,"armorType":1,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":51483,"name":"Wrathful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":51484,"name":"Wrathful Gladiator's Mooncloth Hood","icon":"inv_helmet_165","type":1,"armorType":1,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":51485,"name":"Wrathful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_37","type":9,"armorType":1,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3}, -{"id":51486,"name":"Wrathful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_127","type":3,"armorType":1,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777}, -{"id":51487,"name":"Wrathful Gladiator's Satin Robe","icon":"inv_chest_cloth_83","type":5,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":51488,"name":"Wrathful Gladiator's Satin Gloves","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":51489,"name":"Wrathful Gladiator's Satin Hood","icon":"inv_helmet_165","type":1,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":51490,"name":"Wrathful Gladiator's Satin Leggings","icon":"inv_pants_cloth_37","type":9,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3}, -{"id":51491,"name":"Wrathful Gladiator's Satin Mantle","icon":"inv_shoulder_127","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778}, -{"id":51492,"name":"Wrathful Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1448,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":51493,"name":"Wrathful Gladiator's Leather Gloves","icon":"inv_gauntlets_97","type":7,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":51494,"name":"Wrathful Gladiator's Leather Helm","icon":"inv_helmet_161","type":1,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":51495,"name":"Wrathful Gladiator's Leather Legguards","icon":"inv_pants_leather_36","type":9,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1267,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3}, -{"id":51496,"name":"Wrathful Gladiator's Leather Spaulders","icon":"inv_shoulder_120","type":3,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1086,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776}, -{"id":51497,"name":"Wrathful Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1990,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":51498,"name":"Wrathful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,181,119,76,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":51499,"name":"Wrathful Gladiator's Ringmail Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":51500,"name":"Wrathful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,244,156,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3}, -{"id":51501,"name":"Wrathful Gladiator's Totem of the Third Wind","icon":"spell_frost_summonwaterelemental","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,1,7]}, -{"id":51502,"name":"Wrathful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,0,181,119,76,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1492,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771}, -{"id":51503,"name":"Wrathful Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1990,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":51504,"name":"Wrathful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":51505,"name":"Wrathful Gladiator's Linked Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":51506,"name":"Wrathful Gladiator's Linked Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3}, -{"id":51507,"name":"Wrathful Gladiator's Totem of Indomitability","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,54,80,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[1,7]}, -{"id":51508,"name":"Wrathful Gladiator's Linked Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1492,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770}, -{"id":51509,"name":"Wrathful Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1990,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":51510,"name":"Wrathful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1243,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":51511,"name":"Wrathful Gladiator's Mail Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":51512,"name":"Wrathful Gladiator's Mail Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3}, -{"id":51513,"name":"Wrathful Gladiator's Totem of Survival","icon":"spell_nature_slowingtotem","type":14,"rangedWeaponType":4,"stats":[0,0,80,54,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[4,1,7]}, -{"id":51514,"name":"Wrathful Gladiator's Mail Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1492,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769}, -{"id":51515,"name":"Wrathful Gladiator's Cleaver","icon":"inv_axe_116","type":13,"weaponType":1,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51517,"name":"Wrathful Gladiator's Shanker","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":326,"weaponDamageMax":490,"weaponSpeed":1.8,"ilvl":264,"quality":4}, -{"id":51519,"name":"Wrathful Gladiator's Pummeler","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51521,"name":"Wrathful Gladiator's Slicer","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51523,"name":"Wrathful Gladiator's Right Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51525,"name":"Wrathful Gladiator's Chopper","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51527,"name":"Wrathful Gladiator's Mutilator","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4}, -{"id":51530,"name":"Wrathful Gladiator's Left Render","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4}, -{"id":51531,"name":"Wrathful Gladiator's Piercing Touch","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":1029,"weaponSpeed":1.9,"ilvl":264,"quality":4}, -{"id":51532,"name":"Wrathful Gladiator's Baton of Light","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,73,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":1029,"weaponSpeed":1.9,"ilvl":264,"quality":4}, -{"id":51533,"name":"Wrathful Gladiator's Shield Wall","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4}, -{"id":51535,"name":"Wrathful Gladiator's War Edge","icon":"inv_throwingaxepvp330_08","type":14,"rangedWeaponType":5,"stats":[0,0,77,0,0,0,34,0,0,0,0,0,102,102,0,0,34,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":448,"weaponDamageMax":672,"weaponSpeed":1.9,"ilvl":264,"quality":4}, -{"id":51536,"name":"Wrathful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_85","type":5,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":51537,"name":"Wrathful Gladiator's Felweave Handguards","icon":"inv_gauntlets_94","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":51538,"name":"Wrathful Gladiator's Felweave Cowl","icon":"inv_helmet_168","type":1,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":51539,"name":"Wrathful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,244,156,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3}, -{"id":51540,"name":"Wrathful Gladiator's Felweave Amice","icon":"inv_shoulder_132","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780}, -{"id":51541,"name":"Wrathful Gladiator's Plate Chestpiece","icon":"inv_chest_leather_24","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2693,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":51542,"name":"Wrathful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1683,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":51543,"name":"Wrathful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2188,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":51544,"name":"Wrathful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2357,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3}, -{"id":51545,"name":"Wrathful Gladiator's Plate Shoulders","icon":"inv_shoulder_132","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765}, -{"id":51548,"name":"Collar of Haughty Disdain","icon":"inv_jewelry_necklace_48","type":2,"stats":[72,0,120,0,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51550,"name":"Ivory-Inlaid Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,120,210,0,0,0,103,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51551,"name":"Chestguard of Siphoned Elements","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,204,120,72,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1848,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51552,"name":"Shoulderpads of the Searing Kiss","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,153,91,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51553,"name":"Lana'thel's Bloody Nail","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,67,45,33,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":581,"weaponDamageMax":1080,"weaponSpeed":2.2,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51554,"name":"Cowl of Malefic Repose","icon":"inv_helmet_150purple","type":1,"armorType":1,"stats":[0,0,204,120,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51555,"name":"Tightening Waistband","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,152,91,56,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51556,"name":"Veincrusher Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[76,0,136,0,0,0,0,0,62,91,0,0,0,0,0,0,0,0,0,0,0,0,1584,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51557,"name":"Runed Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,119,80,0,0,53,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":51558,"name":"Runed Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,119,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":51559,"name":"Runed Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[80,0,119,0,0,0,54,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":51560,"name":"Runed Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,80,120,0,0,0,55,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"soldBy":{"npcId":32172,"npcName":"Harold Winston","zoneId":4395}}]}, -{"id":51561,"name":"Dreamhunter's Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[45,0,68,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":486,"weaponDamageMax":904,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51562,"name":"Oxheart","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[128,0,216,0,0,0,95,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":748,"weaponDamageMax":1123,"weaponSpeed":3.5,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51563,"name":"Taiga Bindings","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[72,0,120,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51564,"name":"Ironrope Belt of Ymirjar","icon":"inv_belt_62","type":8,"armorType":4,"stats":[81,0,136,0,0,54,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51565,"name":"Skinned Whelp Shoulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,91,152,0,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51566,"name":"Legguards of the Twisted Dream","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,120,215,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1617,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51568,"name":"Titan-Forged Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,68,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51569,"name":"Titan-Forged Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,42,0,0,0,0,0,135,135,0,0,50,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51570,"name":"Titan-Forged Cloak of Ascendancy","icon":"inv_misc_cape_16","type":4,"stats":[0,0,108,68,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51571,"name":"Titan-Forged Cloak of Victory","icon":"inv_misc_cape_18","type":4,"stats":[0,0,114,0,0,0,42,0,0,0,0,0,135,135,0,0,50,0,0,0,0,0,498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":245,"quality":4,"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51572,"name":"Titan-Forged Shoulderpads of Salvation","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51573,"name":"Titan-Forged Shoulderpads of Domination","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,774,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[5,3,8],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51574,"name":"Titan-Forged Spaulders of Dominance","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51575,"name":"Titan-Forged Spaulders of Salvation","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51576,"name":"Titan-Forged Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,99,152,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,990,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[6,1],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51577,"name":"Titan-Forged Shoulders of Triumph","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,99,160,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[2,7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51578,"name":"Titan-Forged Shoulders of Dominance","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51579,"name":"Titan-Forged Shoulders of Salvation","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[7],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51580,"name":"Titan-Forged Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[99,0,160,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[9,4,10],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51581,"name":"Titan-Forged Shoulderplates of Salvation","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,155,99,64,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"classAllowlist":[4],"sources":[{"soldBy":{"zoneId":4197}}]}, -{"id":51582,"name":"Sister Svalna's Aether Staff","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,220,0,0,136,101,0,0,0,0,0,0,0,823,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":556,"weaponDamageMax":834,"weaponSpeed":2.6,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51583,"name":"Stormbringer Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,91,0,0,74,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51584,"name":"Lich Wrappings","icon":"inv_misc_cape_19","type":4,"stats":[0,0,114,72,0,41,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51585,"name":"Sister Svalna's Spangenhelm","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,204,120,80,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51586,"name":"Emerald Saint's Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,152,91,72,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51777,"name":"Leggings of the Refracted Mind","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,180,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51779,"name":"Rimetooth Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,80,105,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51782,"name":"Etched Dragonbone Girdle","icon":"inv_belt_62","type":8,"armorType":4,"stats":[91,0,160,0,0,0,76,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51783,"name":"Vambraces of the Frost Wyrm Queen","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,80,105,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51784,"name":"Splintershard","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,62,93,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":215,"weaponDamageMax":401,"weaponSpeed":1.5,"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51785,"name":"Wyrmwing Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,91,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51786,"name":"Legplates of Aetheric Strife","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[120,0,216,0,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2217,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51787,"name":"Scourge Fanged Stompers","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[81,0,136,0,0,38,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51788,"name":"Bleak Coldarra Carver","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,102,0,0,61,47,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":259,"weaponDamageMax":481,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51789,"name":"Icicle Shapers","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,91,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51790,"name":"Robes of Azure Downfall","icon":"inv_chest_cloth_78purple","type":5,"armorType":1,"stats":[0,0,192,120,0,0,76,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51791,"name":"Lost Pavise of the Blue Flight","icon":"inv_shield_74","type":13,"weaponType":7,"handType":3,"stats":[0,0,114,80,54,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51792,"name":"Shoulderguards of Crystalline Bone","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,91,0,0,71,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51795,"name":"Troggbane, Axe of the Frostborne King","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[66,0,99,0,0,0,0,0,0,49,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":242,"weaponDamageMax":451,"weaponSpeed":1.6,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51796,"name":"Warmace of Menethil","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":811,"weaponDamageMax":1217,"weaponSpeed":3.6,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51797,"name":"Tainted Twig of Nordrassil","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,137,225,0,0,0,98,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":540,"weaponDamageMax":811,"weaponSpeed":2.4,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51798,"name":"Valius, Gavel of the Lightbringer","icon":"inv_mace_115","type":13,"weaponType":4,"handType":1,"stats":[0,0,120,0,56,0,56,0,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":333,"weaponDamageMax":620,"weaponSpeed":2.2,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51799,"name":"Halion, Staff of Forgotten Love","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,235,0,0,0,145,108,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":2.6,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51800,"name":"Stormfury, Black Blade of the Betrayer","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,66,94,0,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51801,"name":"Pugius, Fist of Defiance","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,66,94,0,0,0,45,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":2.6,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51802,"name":"Windrunner's Heartseeker","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,48,71,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":676,"weaponDamageMax":1014,"weaponSpeed":3,"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51803,"name":"Tel'thas, Dagger of the Blood King","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,108,0,0,0,51,65,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":273,"weaponDamageMax":507,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51811,"name":"Shoulderguards of Crystalline Bone","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51812,"name":"Lost Pavise of the Blue Flight","icon":"inv_shield_74","type":13,"weaponType":7,"handType":3,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51813,"name":"Robes of Azure Downfall","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,219,138,0,0,87,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51814,"name":"Icicle Shapers","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,173,105,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51815,"name":"Bleak Coldarra Carver","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,103,0,0,69,46,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51816,"name":"Scourge Fanged Stompers","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51817,"name":"Legplates of Aetheric Strife","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[138,0,243,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51818,"name":"Wyrmwing Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51819,"name":"Splintershard","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,61,104,0,0,0,46,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51820,"name":"Vambraces of the Frost Wyrm Queen","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,90,120,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51821,"name":"Etched Dragonbone Girdle","icon":"inv_belt_63","type":8,"armorType":4,"stats":[104,0,180,0,0,0,86,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51822,"name":"Rimetooth Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,90,120,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}]}, -{"id":51823,"name":"Leggings of the Refracted Mind","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,207,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51824,"name":"Emerald Saint's Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51825,"name":"Sister Svalna's Spangenhelm","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51826,"name":"Lich Wrappings","icon":"inv_misc_cape_19","type":4,"stats":[0,0,129,83,0,48,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51827,"name":"Stormbringer Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,105,0,0,84,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51828,"name":"Sister Svalna's Aether Staff","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,0,150,111,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":613,"weaponDamageMax":920,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51829,"name":"Legguards of the Twisted Dream","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,138,243,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51830,"name":"Skinned Whelp Shoulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,104,172,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51831,"name":"Ironrope Belt of Ymirjar","icon":"inv_belt_63","type":8,"armorType":4,"stats":[92,0,157,0,0,61,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51832,"name":"Taiga Bindings","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[82,0,135,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51833,"name":"Oxheart","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[138,0,243,0,0,0,104,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":825,"weaponDamageMax":1238,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51834,"name":"Dreamhunter's Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[43,0,65,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":536,"weaponDamageMax":996,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}]}, -{"id":51835,"name":"Veincrusher Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[86,0,157,0,0,0,0,0,70,104,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51836,"name":"Tightening Waistband","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,173,105,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51837,"name":"Cowl of Malefic Repose","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51838,"name":"Lana'thel's Bloody Nail","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,75,43,37,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":641,"weaponDamageMax":1191,"weaponSpeed":2.2,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51839,"name":"Shoulderpads of the Searing Kiss","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,173,105,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51840,"name":"Chestguard of Siphoned Elements","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,84,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51841,"name":"Ivory-Inlaid Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,138,237,0,0,0,116,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51842,"name":"Collar of Haughty Disdain","icon":"inv_jewelry_necklace_48","type":2,"stats":[82,0,135,0,0,0,62,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51843,"name":"Seal of the Twilight Queen","icon":"inv_jewelry_ring_70","type":11,"stats":[0,82,132,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51844,"name":"Throatrender Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[104,0,180,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51845,"name":"Stakethrower","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,43,96,0,0,0,36,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":619,"weaponDamageMax":1150,"weaponSpeed":3,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51846,"name":"Bloodsipper","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,69,87,0,0,0,40,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}]}, -{"id":51847,"name":"Spaulders of the Blood Princes","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[84,0,157,0,0,74,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51848,"name":"Heartsick Mender's Cape","icon":"inv_misc_cape_20","type":4,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51849,"name":"Cerise Coiled Ring","icon":"item_icecrownringc","type":11,"stats":[0,0,128,82,0,0,67,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51850,"name":"Pale Corpse Boots","icon":"inv_boots_cloth_27","type":10,"armorType":1,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51851,"name":"Bloodsoul Raiment","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,90,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51852,"name":"Wand of Ruby Claret","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,75,43,0,29,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":554,"weaponDamageMax":1029,"weaponSpeed":1.9,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51853,"name":"Blood-Drinker's Girdle","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,134,0,0,0,120,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51854,"name":"Battle-Maiden's Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[138,0,243,0,0,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51855,"name":"Thrice Fanged Signet","icon":"item_icecrownringb","type":11,"stats":[82,0,136,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51856,"name":"Taldaram's Soft Slippers","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,104,176,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51857,"name":"Hersir's Greatspear","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,105,275,0,0,52,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":825,"weaponDamageMax":1238,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51858,"name":"Soulbreaker","icon":"inv_sword_151","type":13,"weaponType":9,"handType":2,"stats":[0,61,99,0,0,0,40,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}]}, -{"id":51859,"name":"Shoulders of Ruinous Senility","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,173,105,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51860,"name":"Rippling Flesh Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,138,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1701,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51861,"name":"Chestplate of Septic Stitches","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51862,"name":"Cauterized Cord","icon":"inv_belt_64","type":8,"armorType":1,"stats":[0,0,173,105,0,0,86,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51863,"name":"Pendant of Split Veins","icon":"inv_jewelry_talisman_16","type":2,"stats":[0,0,130,83,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51864,"name":"Shoulderpads of the Morbid Ritual","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51865,"name":"Scalpel-Sharpening Shoulderguards","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[104,0,180,0,0,60,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1981,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51866,"name":"Discarded Bag of Entrails","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,154,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51867,"name":"Infected Choker","icon":"item_icecrownnecklaceb","type":2,"stats":[82,0,135,0,0,0,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51868,"name":"Flesh-Carving Scalpel","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,42,124,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":381,"weaponSpeed":1.4,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51869,"name":"The Facelifter","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[42,0,92,0,0,0,0,0,41,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":253,"weaponDamageMax":472,"weaponSpeed":1.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}]}, -{"id":51870,"name":"Chestguard of the Failed Experiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51871,"name":"Choker of Filthy Diamonds","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,130,83,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51872,"name":"Ether-Soaked Bracers","icon":"inv_bracer_44","type":6,"armorType":1,"stats":[0,0,129,83,0,38,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51873,"name":"Shuffling Shoes","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,172,104,79,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51874,"name":"Gloves of Broken Fingers","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,105,54,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51875,"name":"Lockjaw","icon":"inv_mace_118","type":13,"weaponType":4,"handType":1,"stats":[0,0,117,0,58,0,0,51,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":349,"weaponDamageMax":649,"weaponSpeed":2.2,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51876,"name":"Abomination Knuckles","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,61,99,0,0,0,33,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51877,"name":"Taldron's Short-Sighted Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,146,192,0,0,0,135,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51878,"name":"Rotface's Rupturing Ring","icon":"item_icecrownringd","type":11,"stats":[82,0,136,0,0,0,54,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51879,"name":"Flesh-Shaper's Gurney Strap","icon":"inv_belt_63","type":8,"armorType":4,"stats":[104,0,180,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1486,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51880,"name":"Gluth's Fetching Knife","icon":"inv_throwingknife_01","type":14,"rangedWeaponType":5,"stats":[0,43,75,0,0,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true}, -{"id":51881,"name":"Shaft of Glacial Ice","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,146,238,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":565,"weaponDamageMax":849,"weaponSpeed":2.4,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}]}, -{"id":51882,"name":"Kilt of Untreated Wounds","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,231,138,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51883,"name":"Bloodstained Surgeon's Shoulderguards","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,173,105,85,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51884,"name":"Signet of Putrefaction","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51885,"name":"Wrists of Septic Shock","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,129,83,63,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51886,"name":"Festergut's Gaseous Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51887,"name":"Abracadaver","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,0,111,0,150,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":495,"weaponDamageMax":743,"weaponSpeed":2.1,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51888,"name":"Cloak of Many Skins","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[82,0,124,0,0,0,0,0,0,70,48,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51889,"name":"Plague-Soaked Leather Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,207,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51890,"name":"Precious' Putrid Collar","icon":"inv_jewelry_ring_78","type":2,"stats":[0,82,130,0,0,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51891,"name":"Taldron's Long Neglected Boots","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,148,0,0,0,91,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51892,"name":"Festering Fingerguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[104,0,180,0,0,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1651,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51893,"name":"Gutbuster","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,45,118,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}]}, -{"id":51894,"name":"Soulcleave Pendant","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,129,83,0,0,62,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51895,"name":"Deathforged Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[123,0,207,0,0,0,0,0,58,162,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51896,"name":"Thaumaturge's Crackling Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,146,100,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51897,"name":"Leggings of Unrelenting Blood","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51898,"name":"Mag'hari Chieftain's Staff","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,195,0,150,0,0,150,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":731,"weaponDamageMax":1097,"weaponSpeed":3.1,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51899,"name":"Icecrown Spire Sandals","icon":"inv_boots_cloth_24","type":10,"armorType":1,"stats":[0,0,173,105,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51900,"name":"Saurfang's Cold-Forged Band","icon":"inv_jewelry_ring_81","type":11,"stats":[0,82,132,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51901,"name":"Gargoyle Spit Bracers","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[82,0,124,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1156,204,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51902,"name":"Blade-Scored Carapace","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[150,0,243,0,0,0,84,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51903,"name":"Hauberk of a Thousand Cuts","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51904,"name":"Scourge Stranglers","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,120,146,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51905,"name":"Ramaladni's Blade of Culling","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[138,0,243,0,0,0,91,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":825,"weaponDamageMax":1238,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}]}, -{"id":51906,"name":"Ice-Reinforced Vrykul Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,210,146,98,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1579,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51907,"name":"Bracers of Pale Illumination","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,132,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51908,"name":"Cord of Dark Suffering","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51909,"name":"Neverending Winter","icon":"inv_shield_73","type":13,"weaponType":7,"handType":3,"stats":[82,0,124,0,0,0,0,0,0,42,74,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51910,"name":"Midnight Sun","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":1,"stats":[0,0,114,0,54,0,0,51,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51911,"name":"Pauldrons of Lost Hope","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,120,134,0,0,0,97,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51912,"name":"Saronite Gargoyle Cloak","icon":"inv_misc_cape_26","type":4,"stats":[82,0,135,0,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51913,"name":"Abomination's Bloody Ring","icon":"inv_jewelry_ring_85","type":11,"stats":[57,0,124,0,0,53,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51914,"name":"Icecrown Rampart Bracers","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,82,136,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51915,"name":"Bone Drake's Enameled Boots","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[104,0,180,0,0,0,83,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51916,"name":"Frost Giant's Cleaver","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,61,99,0,0,0,50,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}]}, -{"id":51917,"name":"Ghoul Commander's Cuirass","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,101,85,0,0,0,0,0,0,0,0,0,0,0,2642,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51918,"name":"Bracers of Dark Blessings","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,129,83,58,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51919,"name":"Deathspeaker Disciple's Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,58,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51920,"name":"Boots of the Frozen Seed","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,172,104,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51921,"name":"Sister's Handshrouds","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51922,"name":"Scourgelord's Baton","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,83,0,65,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51923,"name":"Chestguard of the Frigid Noose","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,150,201,0,0,0,91,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51924,"name":"Deathspeaker Zealot's Helm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[138,0,243,0,0,0,108,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2146,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51925,"name":"Soulthief's Braided Belt","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,104,172,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51926,"name":"Handgrips of Frost and Sleet","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51927,"name":"Njorndar Bone Bow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,43,73,0,0,23,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":598,"weaponDamageMax":1111,"weaponSpeed":2.9,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}]}, -{"id":51928,"name":"Corrupted Silverplate Leggings","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,0,0,93,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2311,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51929,"name":"Coldwraith Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,129,83,54,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51930,"name":"Cord of the Patronizing Practitioner","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,173,105,62,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51931,"name":"Ancient Skeletal Boots","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1816,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51932,"name":"Frost Needle","icon":"inv_sword_152","type":13,"weaponType":9,"handType":1,"stats":[0,0,114,0,0,52,0,56,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":285,"weaponDamageMax":531,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51933,"name":"Shawl of Nerubian Silk","icon":"inv_misc_cape_16","type":4,"stats":[0,82,129,0,0,48,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51934,"name":"Marrowgar's Scratching Choker","icon":"inv_jewelry_necklace_52","type":2,"stats":[89,0,124,0,0,0,0,0,0,63,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51935,"name":"Linked Scourge Vertebrae","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1093,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51936,"name":"Citadel Enforcer's Claymore","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[146,0,243,0,0,116,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":801,"weaponDamageMax":1203,"weaponSpeed":3.4,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51937,"name":"Bonebreaker Scepter","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[48,0,92,0,0,44,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":269,"weaponDamageMax":501,"weaponSpeed":1.7,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51938,"name":"Bone Warden's Splitter","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,61,104,0,0,0,38,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":238,"weaponDamageMax":442,"weaponSpeed":1.5,"ilvl":264,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}]}, -{"id":51939,"name":"Tel'thas, Dagger of the Blood King","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":1,"stats":[0,0,111,0,0,0,49,74,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":271,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51940,"name":"Windrunner's Heartseeker","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,54,67,0,0,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":746,"weaponDamageMax":1120,"weaponSpeed":3,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51941,"name":"Pugius, Fist of Defiance","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,66,106,0,0,0,51,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":497,"weaponDamageMax":746,"weaponSpeed":2.6,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51942,"name":"Stormfury, Black Blade of the Betrayer","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,74,82,0,0,0,49,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":301,"weaponDamageMax":560,"weaponSpeed":1.8,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51943,"name":"Halion, Staff of Forgotten Love","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,258,0,0,0,161,120,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":646,"weaponDamageMax":970,"weaponSpeed":2.6,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51944,"name":"Valius, Gavel of the Lightbringer","icon":"inv_mace_115","type":13,"weaponType":4,"handType":1,"stats":[0,0,123,0,62,0,55,0,0,0,0,0,0,0,990,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":368,"weaponDamageMax":684,"weaponSpeed":2.2,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51945,"name":"Tainted Twig of Nordrassil","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,149,254,0,0,0,109,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":597,"weaponDamageMax":896,"weaponSpeed":2.4,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51946,"name":"Warmace of Menethil","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[149,0,259,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":895,"weaponDamageMax":1344,"weaponSpeed":3.6,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51947,"name":"Troggbane, Axe of the Frostborne King","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[66,0,111,0,0,0,0,0,0,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":267,"weaponDamageMax":498,"weaponSpeed":1.6,"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}]}, -{"id":51958,"name":"Pristine Glowbear Pelt","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":167,"quality":3}, -{"id":51959,"name":"Vigorous Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":60,"quality":3}, -{"id":51960,"name":"Vigorous Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":64,"quality":3}, -{"id":51961,"name":"Vigorous Shoulderguards","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-91,-90,-89,-88,-42,-40,-39,-36],"ilvl":70,"quality":3}, -{"id":51962,"name":"Vigorous Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-82,-80,-79,-78,-71],"ilvl":55,"quality":3}, -{"id":51963,"name":"Vigorous Stompers","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-82,-80,-79,-78,-71],"ilvl":55,"quality":3}, -{"id":51964,"name":"Vigorous Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-82,-80,-79,-78,-71],"ilvl":25,"quality":3}, -{"id":51965,"name":"Vigorous Handguards","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-82,-80,-79,-78,-71],"ilvl":35,"quality":3}, -{"id":51966,"name":"Vigorous Spaulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-82,-80,-79,-78,-71],"ilvl":45,"quality":3}, -{"id":51967,"name":"Enumerated Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-83,-82,-79,-69],"ilvl":55,"quality":3}, -{"id":51968,"name":"Enumerated Wrap","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-83,-82,-79,-69],"ilvl":25,"quality":3}, -{"id":51969,"name":"Enumerated Shoulders","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":70,"quality":3}, -{"id":51970,"name":"Enumerated Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":64,"quality":3}, -{"id":51971,"name":"Enumerated Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-88,-42,-39,-36],"ilvl":60,"quality":3}, -{"id":51972,"name":"Enumerated Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-83,-82,-79,-69],"ilvl":55,"quality":3}, -{"id":51973,"name":"Enumerated Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-83,-82,-79,-69],"ilvl":35,"quality":3}, -{"id":51974,"name":"Enumerated Shoulderpads","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-84,-83,-82,-79,-69],"ilvl":45,"quality":3}, -{"id":51975,"name":"Earthbound Shoulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":70,"quality":3}, -{"id":51976,"name":"Earthbound Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-83,-80,-78,-71],"ilvl":45,"quality":3}, -{"id":51977,"name":"Earthbound Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":60,"quality":3}, -{"id":51978,"name":"Earthbound Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-75,-68,-17],"ilvl":25,"quality":3}, -{"id":51979,"name":"Earthbound Grips","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-91,-90,-89,-88,-40,-36],"ilvl":64,"quality":3}, -{"id":51980,"name":"Earthbound Handgrips","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-75,-68,-17],"ilvl":35,"quality":3}, -{"id":51981,"name":"Earthbound Wristguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-83,-80,-78,-71],"ilvl":55,"quality":3}, -{"id":51982,"name":"Earthbound Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-85,-83,-80,-78,-71],"ilvl":55,"quality":3}, -{"id":51983,"name":"Stalwart Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":70,"quality":3}, -{"id":51984,"name":"Stalwart Shoulderpads","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-75,-68,-17],"ilvl":45,"quality":3}, -{"id":51985,"name":"Stalwart Belt","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":60,"quality":3}, -{"id":51986,"name":"Stalwart Wrap","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":3}, -{"id":51987,"name":"Stalwart Grips","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-88,-45,-43,-41,-37],"ilvl":64,"quality":3}, -{"id":51988,"name":"Stalwart Handguards","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-45,-43,-37,-35,-34,-33,-32,-27,-26,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-31],"ilvl":174,"quality":3}, -{"id":51989,"name":"Stalwart Bands","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-75,-68,-17],"ilvl":55,"quality":3}, -{"id":51990,"name":"Stalwart Treads","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-75,-68,-17],"ilvl":55,"quality":3}, -{"id":51991,"name":"Turbulent Signet","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":70,"quality":3}, -{"id":51992,"name":"Tumultuous Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-79,-78,-75,-73,-72,-71,-68],"ilvl":45,"quality":3}, -{"id":51993,"name":"Turbulent Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":60,"quality":3}, -{"id":51994,"name":"Tumultuous Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-79,-78,-75,-73,-72,-71,-68],"ilvl":25,"quality":3}, -{"id":51995,"name":"Turbulent Necklace","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-93,-92,-91,-90,-88,-45,-43,-42,-40,-39,-36],"ilvl":64,"quality":3}, -{"id":51996,"name":"Tumultuous Necklace","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-86,-85,-84,-79,-78,-75,-73,-72,-71,-68],"ilvl":35,"quality":3}, -{"id":51997,"name":"Stalwart Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-67,-44,-40,-37,-35,-34,-33,-27,-26,-24,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-32,-31],"ilvl":45,"quality":3}, -{"id":51998,"name":"Vigorous Spaulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-42,-40,-38,-37,-35,-34,-32,-31,-27,-26,-24,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-33],"ilvl":45,"quality":3}, -{"id":52485,"name":"Jeweler's Ruby Monocle","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73625}}]}, -{"id":52486,"name":"Jeweler's Sapphire Monocle","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73626}}]}, -{"id":52487,"name":"Jeweler's Amber Monocle","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73627}}]}, -{"id":52488,"name":"Jeweler's Sapphire Monocle","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3}, -{"id":52489,"name":"Rhinestone Sunglasses","icon":"inv_helmet_176","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3,"sources":[{"crafted":{"profession":7,"spellId":73623}}]}, -{"id":52532,"name":"Worn Wood Chopper","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":52533,"name":"Squire's Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52534,"name":"Primal Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52535,"name":"Primal Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52538,"name":"Primal Robe","icon":"inv_chest_cloth_21","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52539,"name":"Primal Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52540,"name":"Primal Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52543,"name":"Acolyte's Robe","icon":"inv_chest_cloth_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52544,"name":"Primal Robe","icon":"inv_misc_cape_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52545,"name":"Primal Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52546,"name":"Apprentice's Robe","icon":"inv_chest_cloth_22","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52547,"name":"Neophyte's Robe","icon":"inv_chest_cloth_15","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52549,"name":"Initiate's Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52550,"name":"Primal Shirt","icon":"inv_shirt_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52551,"name":"Primal Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52552,"name":"Primal Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52553,"name":"Apprentice's Robe","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52554,"name":"Apprentice's Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52556,"name":"Initiate's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52557,"name":"Battleworn Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":52569,"name":"Ashen Band of Might","icon":"inv_jewelry_ring_81","type":11,"stats":[80,0,120,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":251,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":52570,"name":"Ashen Band of Greater Might","icon":"inv_jewelry_ring_81","type":11,"stats":[86,0,129,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":259,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":52571,"name":"Ashen Band of Unmatched Might","icon":"inv_jewelry_ring_81","type":11,"stats":[85,0,131,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":268,"quality":4,"unique":true,"sources":[{"quest":{}}]}, -{"id":52583,"name":"Rat Hair Vest","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13554,"name":"A Cure In The Dark"}}],"factionRestriction":1}, -{"id":52584,"name":"Emerald Vest","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13588,"name":"The Eye of All Storms"}}],"factionRestriction":1}, -{"id":52586,"name":"Archaeologist's Dungarees","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13605,"name":"The Last Refugee"}}],"factionRestriction":1}, -{"id":52587,"name":"Singed Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13576,"name":"Mutual Aid"}}],"factionRestriction":1}, -{"id":52588,"name":"Ritual Stopper's Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":13900,"name":"The Offering to Azshara"}}]}, -{"id":52590,"name":"Wisp-Chaser Cord","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13882,"name":"The Seeds of Life"}}],"factionRestriction":1}, -{"id":52591,"name":"Narassin's Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":13844,"name":"The Looting of Althalaxx"}}],"factionRestriction":1}, -{"id":52592,"name":"Woolgathering Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13911,"name":"The Absent-Minded Prospector"}}],"factionRestriction":1}, -{"id":52593,"name":"Becalmed Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13542,"name":"Against the Wind"}}],"factionRestriction":1}, -{"id":52594,"name":"Hovel Digger Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13910,"name":"A New Home"}}],"factionRestriction":1}, -{"id":52595,"name":"Goat Hide Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13529,"name":"The Corruption's Source"}}],"factionRestriction":1}, -{"id":52596,"name":"Aetherion Imbued Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":13558,"name":"Call Down the Thunder"}}],"factionRestriction":1}, -{"id":52597,"name":"Tysha's Chestguard","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13507,"name":"Denying Manpower"}}],"factionRestriction":1}, -{"id":52598,"name":"Soothsaying Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13580,"name":"Soothing the Elements"}}],"factionRestriction":1}, -{"id":52599,"name":"Restless Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13563,"name":"A Love Eternal"}}],"factionRestriction":1}, -{"id":52600,"name":"Oblivious Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13911,"name":"The Absent-Minded Prospector"}}],"factionRestriction":1}, -{"id":52602,"name":"Archaeologist's Britches","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13605,"name":"The Last Refugee"}}],"factionRestriction":1}, -{"id":52603,"name":"Mossy Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13565,"name":"Twice Removed"}}],"factionRestriction":1}, -{"id":52605,"name":"Fanatical Treads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13519,"name":"The Twilight's Hammer"}}],"factionRestriction":1}, -{"id":52606,"name":"Blackwood Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":13546,"name":"The Defiler"}}],"factionRestriction":1}, -{"id":52607,"name":"Forsaken Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":13844,"name":"The Looting of Althalaxx"}}],"factionRestriction":1}, -{"id":52608,"name":"Torn Fur Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":13572,"name":"Jadefire Braziers"}}],"factionRestriction":1}, -{"id":52609,"name":"Diver's Cord","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":13520,"name":"The Boon of the Seas"}}],"factionRestriction":1}, -{"id":52610,"name":"Strap of the Ancient Horn","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,0,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":13900,"name":"The Offering to Azshara"}}]}, -{"id":52612,"name":"Planter's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13882,"name":"The Seeds of Life"}}],"factionRestriction":1}, -{"id":52613,"name":"Morra's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13510,"name":"Timely Arrival"}}],"factionRestriction":1}, -{"id":52614,"name":"Thessera's Gift","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13587,"name":"The Waking Nightmare"}}],"factionRestriction":1}, -{"id":52615,"name":"Moonstalker Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13569,"name":"The Ritual Bond"}}],"factionRestriction":1}, -{"id":52616,"name":"Bracers of the Ancient Grove","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":3,"sources":[{"quest":{"id":13897,"name":"The Battle for Darkshore"}}],"factionRestriction":1}, -{"id":52617,"name":"Tranquil Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13542,"name":"Against the Wind"}}],"factionRestriction":1}, -{"id":52618,"name":"Ancient Cuffs","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13891,"name":"The Devourer of Darkshore"}}],"factionRestriction":1}, -{"id":52619,"name":"Ichor Stained Vest","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13554,"name":"A Cure In The Dark"}}],"factionRestriction":1}, -{"id":52620,"name":"Earth-Crusted Mail","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":13584,"name":"Calming the Earth"}}],"factionRestriction":1}, -{"id":52621,"name":"Woven Mail Leggings","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13529,"name":"The Corruption's Source"}}],"factionRestriction":1}, -{"id":52622,"name":"Auberdine Chainmail","icon":"inv_pants_03","type":9,"armorType":3,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":13558,"name":"Call Down the Thunder"}}],"factionRestriction":1}, -{"id":52623,"name":"Wild Bark Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":13844,"name":"The Looting of Althalaxx"}}],"factionRestriction":1}, -{"id":52624,"name":"Fire Stompers","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[2,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":13572,"name":"Jadefire Braziers"}}],"factionRestriction":1}, -{"id":52626,"name":"Seashell Belt","icon":"inv_belt_45","type":8,"armorType":3,"stats":[2,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":52627,"name":"Gloves of the Mailed Fist","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13519,"name":"The Twilight's Hammer"}}],"factionRestriction":1}, -{"id":52628,"name":"Ancient Handguards","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[2,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13891,"name":"The Devourer of Darkshore"}}],"factionRestriction":1}, -{"id":52629,"name":"Naga Scale Bracers","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13565,"name":"Twice Removed"}}],"factionRestriction":1}, -{"id":52630,"name":"Horn Sounder's Bracers","icon":"inv_bracer_30a","type":6,"armorType":3,"stats":[1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":13900,"name":"The Offering to Azshara"}}]}, -{"id":52631,"name":"Befouled Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":29,"weaponSpeed":3.1,"ilvl":11,"quality":2,"sources":[{"quest":{"id":13554,"name":"A Cure In The Dark"}}],"factionRestriction":1}, -{"id":52632,"name":"Digging Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.1,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13605,"name":"The Last Refugee"}}],"factionRestriction":1}, -{"id":52633,"name":"Satyr Horn Staff","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":29,"weaponSpeed":3.1,"ilvl":11,"quality":2,"sources":[{"quest":{"id":13529,"name":"The Corruption's Source"}}],"factionRestriction":1}, -{"id":52634,"name":"Earthborn Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.1,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13584,"name":"Calming the Earth"}}],"factionRestriction":1}, -{"id":52636,"name":"Portal Closer's Hammer","icon":"inv_hammer_01","type":13,"weaponType":4,"handType":4,"stats":[3,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":3.3,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13588,"name":"The Eye of All Storms"}}],"factionRestriction":1}, -{"id":52637,"name":"Aynasha's Spare Sword","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":23,"weaponSpeed":2.5,"ilvl":13,"quality":2,"sources":[{"quest":{"id":13510,"name":"Timely Arrival"}}],"factionRestriction":1}, -{"id":52640,"name":"Grove Keeper's Branch","icon":"inv_mace_05","type":13,"weaponType":4,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.5,"ilvl":20,"quality":2,"sources":[{"quest":{"id":13898,"name":"The Tides Turn Against Us"}}],"factionRestriction":1}, -{"id":52641,"name":"Cerellean's Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.4,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13570,"name":"Remembrance of Auberdine"}}],"factionRestriction":1}, -{"id":52643,"name":"Wildkin Claw Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.8,"ilvl":17,"quality":2,"sources":[{"quest":{"id":13578,"name":"Aroom's Farewell"}}],"factionRestriction":1}, -{"id":52644,"name":"Scaling Knife","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.5,"ilvl":20,"quality":2,"sources":[{"quest":{"id":13898,"name":"The Tides Turn Against Us"}}],"factionRestriction":1}, -{"id":52645,"name":"Whiteclaw Dagger","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.8,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13570,"name":"Remembrance of Auberdine"}}],"factionRestriction":1}, -{"id":52646,"name":"Shipwreck Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.8,"ilvl":13,"quality":2,"sources":[{"quest":{"id":13560,"name":"An Ocean Not So Deep"}}],"factionRestriction":1}, -{"id":52647,"name":"Blackwood Hunter's Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.8,"ilvl":19,"quality":2,"sources":[{"quest":{"id":13546,"name":"The Defiler"}}],"factionRestriction":1}, -{"id":52650,"name":"Dryad's Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.4,"ilvl":14,"quality":2,"sources":[{"quest":{"id":13512,"name":"Strategic Strikes"}}],"factionRestriction":1}, -{"id":52651,"name":"Blackwood Ritual Stick","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":1.4,"ilvl":19,"quality":2,"sources":[{"quest":{"id":13546,"name":"The Defiler"}}],"factionRestriction":1}, -{"id":52652,"name":"Glowing Murloc Eye","icon":"inv_misc_eye_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13560,"name":"An Ocean Not So Deep"}}],"factionRestriction":1}, -{"id":52653,"name":"Unidentified Cooking Utensil","icon":"inv_drink_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13918,"name":"The Titans' Terminal"}}],"factionRestriction":1}, -{"id":52654,"name":"Forlorn Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13563,"name":"A Love Eternal"}}],"factionRestriction":1}, -{"id":52655,"name":"Darkshore Warder's Shield","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":3,"sources":[{"quest":{"id":13897,"name":"The Battle for Darkshore"}}],"factionRestriction":1}, -{"id":52656,"name":"Scorched Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":13576,"name":"Mutual Aid"}}],"factionRestriction":1}, -{"id":52657,"name":"Professor's Sandwich Plate","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13918,"name":"The Titans' Terminal"}}],"factionRestriction":1}, -{"id":52659,"name":"Cover of Leaves","icon":"inv_misc_cape_11","type":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13507,"name":"Denying Manpower"}}],"factionRestriction":1}, -{"id":52660,"name":"Incorruptable Shawl","icon":"inv_misc_cape_11","type":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13891,"name":"The Devourer of Darkshore"}}],"factionRestriction":1}, -{"id":52662,"name":"Tidal Cloak","icon":"inv_misc_cape_11","type":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13523,"name":"Power Over the Tides"}}],"factionRestriction":1}, -{"id":52663,"name":"Groff's Tarpaulin","icon":"inv_misc_cape_11","type":4,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13910,"name":"A New Home"}}],"factionRestriction":1}, -{"id":52664,"name":"Cloak of the Stag","icon":"inv_misc_cape_11","type":4,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13569,"name":"The Ritual Bond"}}],"factionRestriction":1}, -{"id":52671,"name":"Bahrum's Bad Mood Ring","icon":"inv_jewelry_ring_82","type":11,"stats":[1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":13911,"name":"The Absent-Minded Prospector"}}],"factionRestriction":1}, -{"id":52673,"name":"Felros' Signet","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":13898,"name":"The Tides Turn Against Us"}}],"factionRestriction":1}, -{"id":52675,"name":"Silver Embroidered Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":3,"sources":[{"quest":{"id":13591,"name":"Disturbing Connections"}}],"factionRestriction":1}, -{"id":52678,"name":"Jonathan's Fishing Pole","icon":"inv_fishingpole_02","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":21,"weaponSpeed":3,"ilvl":10,"quality":1}, -{"id":52679,"name":"Acolyte's Pants","icon":"inv_pants_leather_31purple","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52680,"name":"Neophyte's Pants","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52681,"name":"Apprentice's Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52694,"name":"Cataclysm Gloves","icon":"inv_gauntlets_12","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52695,"name":"Cataclysm Chest","icon":"inv_chest_chain_11","type":5,"armorType":1,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1052,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52696,"name":"Cataclysm Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52698,"name":"Cataclysm Ring","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52699,"name":"Cataclysm Helmet","icon":"inv_helmet_119","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52701,"name":"Cataclysm Neck","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52702,"name":"Cataclysm Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52703,"name":"Cataclysm Shoulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52704,"name":"Cataclysm Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52705,"name":"Cataclysm Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"phase":1,"quality":1}, -{"id":52716,"name":"Twilight Firelance","icon":"inv_spear_05","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3,"ilvl":1,"quality":1,"unique":true}, -{"id":52729,"name":"Recruit's Robe","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":52869,"name":"Boots of Changing Fortune","icon":"inv_boots_cloth_31v4","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24625,"name":"Consort of the Sea Witch"}}],"factionRestriction":2}, -{"id":52870,"name":"Darkspear Druidic Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":4,"weaponSpeed":2.8,"ilvl":2,"quality":2,"sources":[{"quest":{"id":24768,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52872,"name":"Darkspear Hunter's Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":5,"weaponSpeed":2.9,"ilvl":2,"quality":2,"sources":[{"quest":{"id":24780,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52873,"name":"Darkspear Magic Weaver Tunic","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":2,"factionRestriction":2}, -{"id":52874,"name":"Darkspear Soothsayer Robes","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":2,"sources":[{"quest":{"id":24786,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52875,"name":"Darkspear Shamanic Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":4,"weaponSpeed":2.8,"ilvl":2,"quality":2,"sources":[{"quest":{"id":24762,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52876,"name":"Darkspear Battle Axe","icon":"inv_axe_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":3.4,"ilvl":2,"quality":2,"sources":[{"quest":{"id":24642,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52877,"name":"Moraya's Belt","icon":"inv_belt_80v2","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":24626,"name":"Young and Vicious"}}],"factionRestriction":2}, -{"id":52878,"name":"Merciless Hands","icon":"inv_gauntlets_114v3","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":24812,"name":"No More Mercy"}}],"factionRestriction":2}, -{"id":52879,"name":"Sea Witch's Bracers","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":24814,"name":"An Ancient Enemy"}}],"factionRestriction":2}, -{"id":52880,"name":"Fierce Heart Vest","icon":"inv_chest_leather_26v2","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24625,"name":"Consort of the Sea Witch"}}],"factionRestriction":2}, -{"id":52882,"name":"Swift Scale Armbands","icon":"inv_bracer_61v3","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":24626,"name":"Young and Vicious"}}],"factionRestriction":2}, -{"id":52883,"name":"Cold Focus Leggings","icon":"inv_pants_leather_38v3","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":24812,"name":"No More Mercy"}}],"factionRestriction":2}, -{"id":52884,"name":"Footsteps of the Fallen Friend","icon":"inv_boots_leather_10v3","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":24814,"name":"An Ancient Enemy"}}],"factionRestriction":2}, -{"id":52885,"name":"Bloodtalon Keeper Leggings","icon":"inv_pants_mail_36v3","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24625,"name":"Consort of the Sea Witch"}}],"factionRestriction":2}, -{"id":52886,"name":"Spitescale Mail","icon":"inv_chest_mail_16v4","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":24812,"name":"No More Mercy"}}],"factionRestriction":2}, -{"id":52887,"name":"Zuni's Family Heirloom","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":24814,"name":"An Ancient Enemy"}}],"factionRestriction":2}, -{"id":52889,"name":"Blooded Darkspear Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":2,"weaponSpeed":1.8,"ilvl":2,"quality":2,"sources":[{"quest":{"id":24774,"name":"Proving Pit"}}],"factionRestriction":2}, -{"id":52898,"name":"Banana Peel Slippers","icon":"inv_boots_cloth_31","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14019,"name":"Monkey Business"}}]}, -{"id":52899,"name":"Weed Fiber Pants","icon":"inv_pants_cloth_41v2","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14236,"name":"Weed Whacker"}}]}, -{"id":52900,"name":"Spy Choker Cord","icon":"inv_belt_79v2","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14238,"name":"Infrared = Infradead"}}]}, -{"id":52901,"name":"Whirling Axe","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":19,"weaponSpeed":3.5,"ilvl":8,"quality":1,"sources":[{"quest":{"id":14243,"name":"Warchief's Revenge"}}]}, -{"id":52902,"name":"Salvaged Bracers","icon":"inv_bracer_73v2","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14234,"name":"The Enemy of My Enemy"}}]}, -{"id":52903,"name":"Pilot's Gloves","icon":"inv_gauntlets_114v2","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14241,"name":"Get to the Gyrochoppa!"}}]}, -{"id":52904,"name":"Broken Plunger","icon":"inv_mace_121","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":2.4,"ilvl":8,"quality":1,"sources":[{"quest":{"id":24671,"name":"Cluster Cluck"}}]}, -{"id":52905,"name":"Best. Bracers. Ever.","icon":"inv_bracer_74v4","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24744,"name":"The Biggest Egg Ever"}}]}, -{"id":52906,"name":"Leftover Mechachicken Legs","icon":"inv_pants_mail_36v2","type":9,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24817,"name":"A Goblin in Shark's Clothing"}}]}, -{"id":52907,"name":"Snake Scale Belt","icon":"inv_belt_84v2","type":8,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24858,"name":"Bilgewater Cartel Represent"}}]}, -{"id":52908,"name":"Hatchling Handlers","icon":"inv_gauntlets_102v4","type":7,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24868,"name":"Surrender or Else!"}}]}, -{"id":52909,"name":"Mini B.C. Eliminator","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.7,"ilvl":8,"quality":2,"sources":[{"quest":{"id":24901,"name":"Town-In-A-Box: Under Attack"}}]}, -{"id":52910,"name":"Yngwie's Vest","icon":"inv_chest_leather_26v4","type":5,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24929,"name":"Send a Message"}}]}, -{"id":52911,"name":"Yngwie's Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":52912,"name":"S.B.R.B. Prototype 1","icon":"inv_boots_cloth_31v2","type":10,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24942,"name":"Zombies vs. Super Booster Rocket Boots"}}]}, -{"id":52913,"name":"Witchdoctor Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24945,"name":"Three Little Pygmies"}}]}, -{"id":52914,"name":"Rescue Ladder Cord","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24958,"name":"Volcanoth!"}}]}, -{"id":52915,"name":"Aggra's Sash","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25093,"name":"The Heads of the SI:7"}}]}, -{"id":52916,"name":"Gunner's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25066,"name":"The Pride of Kezan"}}]}, -{"id":52917,"name":"Gallywix Laborer's Gloves","icon":"inv_gauntlets_105v3","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25109,"name":"The Gallywix Labor Mine"}}]}, -{"id":52918,"name":"Delicia's Tights","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25123,"name":"Throw It On the Ground!"}}]}, -{"id":52919,"name":"Oxidizing Axe","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.6,"ilvl":11,"quality":2,"sources":[{"quest":{"id":25184,"name":"Wild Mine Cart Ride"}}]}, -{"id":52920,"name":"Cardio-Extractor Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{}}]}, -{"id":52921,"name":"Ex-Stealer's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25203,"name":"What Kind of Name is Chip, Anyway?"}}]}, -{"id":52922,"name":"Demolitionist's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25207,"name":"Good-bye, Sweet Oil"}}]}, -{"id":52923,"name":"Rocket-Fuel Soaked Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25214,"name":"Escape Velocity"}}]}, -{"id":52927,"name":"Victor's Robes","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":3,"sources":[{"quest":{"id":25265,"name":"Victory!"}}]}, -{"id":52928,"name":"Banana Holder","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14019,"name":"Monkey Business"}}]}, -{"id":52929,"name":"Kilag's Vest","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14236,"name":"Weed Whacker"}}]}, -{"id":52930,"name":"Spy Poker","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":7,"weaponSpeed":1.5,"ilvl":8,"quality":1,"sources":[{"quest":{"id":14238,"name":"Infrared = Infradead"}}]}, -{"id":52931,"name":"Orcish Scout Boots","icon":"inv_boots_mail_11v3","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14234,"name":"The Enemy of My Enemy"}}]}, -{"id":52932,"name":"Parachute Wrist Straps","icon":"inv_bracer_61v2","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14241,"name":"Get to the Gyrochoppa!"}}]}, -{"id":52933,"name":"Mechachicken Feather Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24744,"name":"The Biggest Egg Ever"}}]}, -{"id":52934,"name":"Pygmy Cloak","icon":"inv_misc_cape_15","type":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24929,"name":"Send a Message"}}]}, -{"id":52935,"name":"Pygmy Cloak","icon":"inv_misc_cape_15","type":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":52936,"name":"S.B.R.B. Prototype 3","icon":"inv_boots_mail_11v2","type":10,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24942,"name":"Zombies vs. Super Booster Rocket Boots"}}]}, -{"id":52937,"name":"Chip's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25202,"name":"The Fastest Way to His Heart"}}]}, -{"id":52938,"name":"Jealousy's Edge","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.4,"ilvl":12,"quality":2,"sources":[{"quest":{"id":25203,"name":"What Kind of Name is Chip, Anyway?"}}]}, -{"id":52939,"name":"Cage-Launcher's Mail","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25214,"name":"Escape Velocity"}}]}, -{"id":52940,"name":"Candy's Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25243,"name":"She Loves Me, She Loves Me NOT!"}}]}, -{"id":52941,"name":"Jealousy's Edge","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":35,"weaponSpeed":3.4,"ilvl":12,"quality":2,"sources":[{"quest":{"id":25244,"name":"What Kind of Name is Candy, Anyway?"}}]}, -{"id":52942,"name":"Staff of Earned Tranquility","icon":"inv_staff_113","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":25,"weaponSpeed":3.2,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24593,"name":"Neither Human Nor Beast"}}]}, -{"id":52943,"name":"Monkey Handler Gloves","icon":"inv_gauntlets_102","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14019,"name":"Monkey Business"}}]}, -{"id":52944,"name":"Miner's Vest","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14021,"name":"Miner Troubles"}}]}, -{"id":52945,"name":"Weed Stompers","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14236,"name":"Weed Whacker"}}]}, -{"id":52946,"name":"Spy Strangler Gloves","icon":"inv_gauntlets_105v2","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14238,"name":"Infrared = Infradead"}}]}, -{"id":52947,"name":"Cyclone Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":15,"weaponSpeed":2.9,"ilvl":8,"quality":1,"sources":[{"quest":{"id":14243,"name":"Warchief's Revenge"}}]}, -{"id":52948,"name":"Sailor's Leggings","icon":"inv_pants_leather_38v4","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14234,"name":"The Enemy of My Enemy"}}]}, -{"id":52949,"name":"Gyrochoppa Seat Belt","icon":"inv_belt_80v4","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":14241,"name":"Get to the Gyrochoppa!"}}]}, -{"id":52950,"name":"Whamo Kablamo","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":2.5,"ilvl":8,"quality":1,"sources":[{"quest":{"id":24671,"name":"Cluster Cluck"}}]}, -{"id":52951,"name":"Chicken Chopper","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2.7,"ilvl":8,"quality":2,"sources":[{"quest":{"id":24744,"name":"The Biggest Egg Ever"}}]}, -{"id":52952,"name":"The Hammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":2.4,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24817,"name":"A Goblin in Shark's Clothing"}}]}, -{"id":52953,"name":"Banner Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24858,"name":"Bilgewater Cartel Represent"}}]}, -{"id":52954,"name":"Hatchling Prodder","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":22,"weaponSpeed":3.2,"ilvl":8,"quality":2,"sources":[{"quest":{"id":24868,"name":"Surrender or Else!"}}]}, -{"id":52955,"name":"Town-In-A-Box Lid Fragment","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2,"sources":[{"quest":{"id":24901,"name":"Town-In-A-Box: Under Attack"}}]}, -{"id":52956,"name":"Oomlot Staff","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":22,"weaponSpeed":2.8,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24929,"name":"Send a Message"}}]}, -{"id":52957,"name":"Oomlot Staff","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":2.8,"ilvl":12,"quality":2}, -{"id":52958,"name":"S.B.R.B. Prototype 2","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24942,"name":"Zombies vs. Super Booster Rocket Boots"}}]}, -{"id":52959,"name":"Oystein Bracers","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24945,"name":"Three Little Pygmies"}}]}, -{"id":52960,"name":"Silver Platter","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25093,"name":"The Heads of the SI:7"}}]}, -{"id":52961,"name":"Gnomish Parachute Scrap","icon":"inv_misc_cape_11","type":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25066,"name":"The Pride of Kezan"}}]}, -{"id":52962,"name":"Greely's Spare Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":13,"weaponSpeed":1.7,"ilvl":11,"quality":2,"sources":[{"quest":{"id":25109,"name":"The Gallywix Labor Mine"}}]}, -{"id":52963,"name":"Soulstone Breaker Wristbands","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25123,"name":"Throw It On the Ground!"}}]}, -{"id":52964,"name":"Heat-Applied Metallic Cooking Container","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":25184,"name":"Wild Mine Cart Ride"}}]}, -{"id":52965,"name":"Heartache Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.8,"ilvl":12,"quality":2,"sources":[{"quest":{"id":25202,"name":"The Fastest Way to His Heart"}}]}, -{"id":52966,"name":"Fickle Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25203,"name":"What Kind of Name is Chip, Anyway?"}}]}, -{"id":52967,"name":"Oil-Stained Leggings","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25207,"name":"Good-bye, Sweet Oil"}}]}, -{"id":52968,"name":"Orbital Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25214,"name":"Escape Velocity"}}]}, -{"id":52969,"name":"Heartache Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.8,"ilvl":12,"quality":2,"sources":[{"quest":{"id":25243,"name":"She Loves Me, She Loves Me NOT!"}}]}, -{"id":52970,"name":"Fickle Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25244,"name":"What Kind of Name is Candy, Anyway?"}}]}, -{"id":52971,"name":"Igneous Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":3,"sources":[{"quest":{"id":25265,"name":"Victory!"}}]}, -{"id":52972,"name":"Ex-Stealer's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25244,"name":"What Kind of Name is Candy, Anyway?"}}]}, -{"id":53048,"name":"Doomsday Message","icon":"inv_misc_note_06","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":53097,"name":"Gnomeregan Drape","icon":"inv_misc_tournaments_banner_gnome","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":1,"sources":[{"quest":{"id":25393,"name":"Operation: Gnomeregan"}}],"factionRestriction":1}, -{"id":53103,"name":"Baltharus' Gift","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,85,125,0,0,0,57,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53110,"name":"Zarithrian's Offering","icon":"item_icecrownringb","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53111,"name":"Scion's Treads","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,74,52,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53112,"name":"Bracers of the Heir","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53113,"name":"Twilight Scale Shoulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,98,170,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53114,"name":"Gloaming Sark","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,153,182,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1367,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53115,"name":"Abduction's Cover","icon":"inv_misc_cape_20","type":4,"stats":[0,0,122,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53116,"name":"Saviana's Tribute","icon":"item_icecrownringc","type":11,"stats":[0,0,121,77,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53117,"name":"Changeling Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,161,98,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53118,"name":"Misbegotten Belt","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,161,98,0,50,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,605,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53119,"name":"Boots of Divided Being","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,161,98,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53121,"name":"Surrogate Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,161,98,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1458,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":258,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53125,"name":"Apocalypse's Advance","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[112,0,192,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1858,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53126,"name":"Umbrage Armbands","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,96,120,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,637,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53127,"name":"Returning Footfalls","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,128,151,0,0,0,113,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53129,"name":"Treads of Impending Resurrection","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[128,0,180,0,0,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,1858,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53132,"name":"Penumbra Pendant","icon":"inv_jewelry_necklace_48","type":2,"stats":[88,0,145,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53133,"name":"Signet of Twilight","icon":"item_icecrownringc","type":11,"stats":[0,96,144,0,0,48,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53134,"name":"Phaseshifter's Bracers","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,137,89,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,637,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53155,"name":"Agamaggan's Thorn","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":41,"weaponSpeed":1.7,"ilvl":35,"quality":2}, -{"id":53157,"name":"Charlga's Cowl","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,7,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":53158,"name":"Spaulder of the Matriarch","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":53159,"name":"Naralex's Slippers","icon":"inv_boots_cloth_33v4","type":10,"armorType":1,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24601,"name":"The Nightmare Scar"}}]}, -{"id":53160,"name":"Vest of the Nightmare Rift","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24601,"name":"The Nightmare Scar"}}]}, -{"id":53161,"name":"Wailing Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24601,"name":"The Nightmare Scar"}}]}, -{"id":53225,"name":"Airburst Amulet","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":24747,"name":"Sabotage!"}}],"factionRestriction":2}, -{"id":53226,"name":"Battlescar Monnion","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24637,"name":"The Butcher of Taurajo"}}],"factionRestriction":2}, -{"id":53227,"name":"Bloodhilt Gloves","icon":"inv_gauntlets_119","type":7,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24569,"name":"Siegebreaker"}}],"factionRestriction":2}, -{"id":53228,"name":"Boarpocalypse Boots","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24534,"name":"Speaking Their Language"}}],"factionRestriction":2}, -{"id":53229,"name":"Brain-Splattered Leggings","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24621,"name":"Smarts-is-Smarts"}}],"factionRestriction":2}, -{"id":53230,"name":"Bristleback Challenge Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24534,"name":"Speaking Their Language"}}],"factionRestriction":2}, -{"id":53231,"name":"Climbing Straps","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24512,"name":"Warriors' Redemption"}}],"factionRestriction":2}, -{"id":53232,"name":"Cloak of Harvested Fear","icon":"inv_misc_cape_20","type":4,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24637,"name":"The Butcher of Taurajo"}}],"factionRestriction":2}, -{"id":53233,"name":"Earthbound Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24631,"name":"Flightmare"}}],"factionRestriction":2}, -{"id":53234,"name":"Flightmare Mantle","icon":"inv_shoulder_134v3","type":3,"armorType":1,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24631,"name":"Flightmare"}}],"factionRestriction":2}, -{"id":53235,"name":"Gar'dul's Armor","icon":"inv_chest_mail_19v1","type":5,"armorType":3,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":24591,"name":"Changing of the Gar'dul"}}],"factionRestriction":2}, -{"id":53236,"name":"Gloves of Desolation Hold","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":24591,"name":"Changing of the Gar'dul"}}],"factionRestriction":2}, -{"id":53237,"name":"Grease-Covered Boots","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24569,"name":"Siegebreaker"}}],"factionRestriction":2}, -{"id":53238,"name":"Groady Goblin Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":50,"weaponSpeed":1.6,"ilvl":32,"quality":2,"sources":[{"quest":{"id":24569,"name":"Siegebreaker"}}],"factionRestriction":2}, -{"id":53239,"name":"Holgom's Bracers","icon":"inv_bracer_78","type":6,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24512,"name":"Warriors' Redemption"}}],"factionRestriction":2}, -{"id":53240,"name":"Kraul Bracers","icon":"inv_bracer_62v3","type":6,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24608,"name":"Mangletooth"}}],"factionRestriction":2}, -{"id":53241,"name":"Leather-Patched Belt","icon":"inv_belt_98","type":8,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24514,"name":"Raptor Scraps"}}],"factionRestriction":2}, -{"id":53242,"name":"Breeches of Authority","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":24591,"name":"Changing of the Gar'dul"}}],"factionRestriction":2}, -{"id":53243,"name":"Loose Cannon","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.8,"ilvl":33,"quality":2,"sources":[{"quest":{"id":24591,"name":"Changing of the Gar'dul"}}],"factionRestriction":2}, -{"id":53244,"name":"Mangled Tooth","icon":"inv_sword_36","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":1.8,"ilvl":34,"quality":2,"sources":[{"quest":{"id":24608,"name":"Mangletooth"}}],"factionRestriction":2}, -{"id":53245,"name":"Mankrik's Amulet","icon":"inv_jewelry_amulet_07","type":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24608,"name":"Mangletooth"}}],"factionRestriction":2}, -{"id":53246,"name":"Neurosurgeon's Tool","icon":"inv_weapon_shortblade_19","type":13,"weaponType":2,"handType":2,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.4,"ilvl":34,"quality":2,"sources":[{"quest":{"id":24621,"name":"Smarts-is-Smarts"}}],"factionRestriction":2}, -{"id":53247,"name":"Pewter Slab","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24569,"name":"Siegebreaker"}}],"factionRestriction":2}, -{"id":53248,"name":"Raptor Scrap Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24514,"name":"Raptor Scraps"}}],"factionRestriction":2}, -{"id":53249,"name":"Razormane Staff","icon":"inv_spear_05","type":13,"weaponType":8,"handType":4,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":34,"quality":2,"sources":[{"quest":{"id":24608,"name":"Mangletooth"}}],"factionRestriction":2}, -{"id":53250,"name":"Ring of Reclaimed Honor","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24512,"name":"Warriors' Redemption"}}],"factionRestriction":2}, -{"id":53251,"name":"Robes of the Bloody Field","icon":"inv_chest_cloth_86v4","type":5,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24546,"name":"A Line in the Dirt"}}],"factionRestriction":2}, -{"id":53252,"name":"Sabersnout's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24534,"name":"Speaking Their Language"}}],"factionRestriction":2}, -{"id":53253,"name":"Spearhead Helm","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":24747,"name":"Sabotage!"}}],"factionRestriction":2}, -{"id":53254,"name":"Sternhorn's Shield","icon":"inv_shield_14","type":13,"weaponType":7,"handType":3,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24546,"name":"A Line in the Dirt"}}],"factionRestriction":2}, -{"id":53255,"name":"Stonespire Shoulders","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":24747,"name":"Sabotage!"}}],"factionRestriction":2}, -{"id":53256,"name":"Taurajo Butcher's Blade","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.7,"ilvl":34,"quality":2,"sources":[{"quest":{"id":24637,"name":"The Butcher of Taurajo"}}],"factionRestriction":2}, -{"id":53257,"name":"Taurajo Leggings","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":24546,"name":"A Line in the Dirt"}}],"factionRestriction":2}, -{"id":53258,"name":"Terrortooth Hide Bracers","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24514,"name":"Raptor Scraps"}}],"factionRestriction":2}, -{"id":53259,"name":"Tomusa's Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[7,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":34,"quality":2,"sources":[{"quest":{"id":24631,"name":"Flightmare"}}],"factionRestriction":2}, -{"id":53260,"name":"Vest of Abomification","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":24621,"name":"Smarts-is-Smarts"}}],"factionRestriction":2}, -{"id":53263,"name":"Bael Modan Monnion","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25108,"name":"Feegly the Exiled"}}],"factionRestriction":1}, -{"id":53264,"name":"Bael'dun Chain Leggings","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25153,"name":"Bael'dun Rescue"}}],"factionRestriction":1}, -{"id":53265,"name":"Boarpocalypse Boots","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25044,"name":"Diplomacy By Another Means"}}],"factionRestriction":1}, -{"id":53266,"name":"Boots of the Fallen Brother","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":24956,"name":"Silencing Rageroar"}}],"factionRestriction":1}, -{"id":53267,"name":"Bristleback Challenge Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25044,"name":"Diplomacy By Another Means"}}],"factionRestriction":1}, -{"id":53268,"name":"Carronader's Belt","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24939,"name":"Run Out the Guns"}}],"factionRestriction":1}, -{"id":53269,"name":"Dorn's Amulet","icon":"inv_jewelry_amulet_03","type":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25085,"name":"Mangletooth"}}],"factionRestriction":1}, -{"id":53270,"name":"Far-a-Day Mesh","icon":"inv_chest_mail_19v1","type":5,"armorType":3,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":25080,"name":"Batteries Not Yet Included"}}],"factionRestriction":1}, -{"id":53271,"name":"Feegly's Shroud","icon":"inv_misc_cape_14","type":4,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25108,"name":"Feegly the Exiled"}}],"factionRestriction":1}, -{"id":53272,"name":"Frazzlecraz Necklace","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":25185,"name":"The Deed Is Done"}}],"factionRestriction":1}, -{"id":53273,"name":"Gloves of Honor's Stand","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25186,"name":"Futile Resistance"}}],"factionRestriction":1}, -{"id":53274,"name":"Goblin Miner's Helm","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":25185,"name":"The Deed Is Done"}}],"factionRestriction":1}, -{"id":53275,"name":"Hawthorne's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25045,"name":"A Line in the Dirt"}}],"factionRestriction":1}, -{"id":53276,"name":"Hecklefang Hide Belt","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25008,"name":"Filthy Animals"}}],"factionRestriction":1}, -{"id":53277,"name":"Kodo-Repellant Shoulders","icon":"inv_shoulder_134v3","type":3,"armorType":1,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25102,"name":"No Bull"}}],"factionRestriction":1}, -{"id":53278,"name":"Landquaker Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25102,"name":"No Bull"}}],"factionRestriction":1}, -{"id":53279,"name":"Mangled Tooth","icon":"inv_sword_36","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":1.8,"ilvl":34,"quality":2,"sources":[{"quest":{"id":25085,"name":"Mangletooth"}}],"factionRestriction":1}, -{"id":53280,"name":"Misery's End","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":39,"weaponSpeed":1.7,"ilvl":34,"quality":2,"sources":[{"quest":{"id":25108,"name":"Feegly the Exiled"}}],"factionRestriction":1}, -{"id":53281,"name":"Mizzy's Dungarees","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":25080,"name":"Batteries Not Yet Included"}}],"factionRestriction":1}, -{"id":53282,"name":"Northwatch Bracers","icon":"inv_bracer_78","type":6,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24939,"name":"Run Out the Guns"}}],"factionRestriction":1}, -{"id":53283,"name":"Paxton's Belt","icon":"inv_belt_98","type":8,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24943,"name":"Re-Take the Courtyard"}}],"factionRestriction":1}, -{"id":53284,"name":"Pewter Slab","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25042,"name":"Marching On Our Stomachs"}}],"factionRestriction":1}, -{"id":53285,"name":"Pistonhammer Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.8,"ilvl":33,"quality":2,"sources":[{"quest":{"id":25080,"name":"Batteries Not Yet Included"}}],"factionRestriction":1}, -{"id":53286,"name":"Pot Stirrer","icon":"inv_staff_17","type":14,"rangedWeaponType":6,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":50,"weaponSpeed":1.6,"ilvl":32,"quality":2,"sources":[{"quest":{"id":25042,"name":"Marching On Our Stomachs"}}],"factionRestriction":1}, -{"id":53287,"name":"Quilboar Crone Gloves","icon":"inv_gauntlets_106v4","type":7,"armorType":1,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25027,"name":"You Flicked a Fine Vine to Leaf Me"}}],"factionRestriction":1}, -{"id":53288,"name":"Quilboar Fur Bracers","icon":"inv_bracer_62v3","type":6,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25085,"name":"Mangletooth"}}],"factionRestriction":1}, -{"id":53289,"name":"Rageroar Trophy","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":24956,"name":"Silencing Rageroar"}}],"factionRestriction":1}, -{"id":53290,"name":"Redearth Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,7,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":34,"quality":2,"sources":[{"quest":{"id":25085,"name":"Mangletooth"}}],"factionRestriction":1}, -{"id":53291,"name":"Robes of the Bloody Field","icon":"inv_chest_cloth_86v4","type":5,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25045,"name":"A Line in the Dirt"}}],"factionRestriction":1}, -{"id":53292,"name":"Sabersnout's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25044,"name":"Diplomacy By Another Means"}}],"factionRestriction":1}, -{"id":53293,"name":"Scavenger Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25008,"name":"Filthy Animals"}}],"factionRestriction":1}, -{"id":53294,"name":"Seized Rageroar Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24943,"name":"Re-Take the Courtyard"}}],"factionRestriction":1}, -{"id":53295,"name":"Singleton Sash","icon":"inv_belt_85v4","type":8,"armorType":1,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25186,"name":"Futile Resistance"}}],"factionRestriction":1}, -{"id":53296,"name":"Smythe's Ring","icon":"inv_jewelry_ring_01","type":11,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24939,"name":"Run Out the Guns"}}],"factionRestriction":1}, -{"id":53297,"name":"Spoils of the Courtyard","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":24943,"name":"Re-Take the Courtyard"}}],"factionRestriction":1}, -{"id":53298,"name":"Stonesthrow Sword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":4,"stats":[7,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":91,"weaponSpeed":3.3,"ilvl":34,"quality":2,"sources":[{"quest":{"id":25102,"name":"No Bull"}}],"factionRestriction":1}, -{"id":53299,"name":"Stormsnout Hide Boots","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25042,"name":"Marching On Our Stomachs"}}],"factionRestriction":1}, -{"id":53300,"name":"Survivor's Blade","icon":"inv_sword_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.4,"ilvl":34,"quality":2,"sources":[{"quest":{"id":25153,"name":"Bael'dun Rescue"}}],"factionRestriction":1}, -{"id":53301,"name":"Taurajo Leggings","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25045,"name":"A Line in the Dirt"}}],"factionRestriction":1}, -{"id":53302,"name":"Three-Tooth Bracers","icon":"inv_bracer_64v3","type":6,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":25027,"name":"You Flicked a Fine Vine to Leaf Me"}}],"factionRestriction":1}, -{"id":53303,"name":"Thunderhead Kid Gloves","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":25080,"name":"Batteries Not Yet Included"}}],"factionRestriction":1}, -{"id":53304,"name":"Trawley's Gloves","icon":"inv_gauntlets_119","type":7,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":25042,"name":"Marching On Our Stomachs"}}],"factionRestriction":1}, -{"id":53305,"name":"Twinbraid Shoulders","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":25185,"name":"The Deed Is Done"}}],"factionRestriction":1}, -{"id":53306,"name":"Vest of Bael'dun Keep","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":25153,"name":"Bael'dun Rescue"}}],"factionRestriction":1}, -{"id":53307,"name":"Surveying Gloves","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":24519,"name":"Stalling the Survey"}}],"factionRestriction":2}, -{"id":53308,"name":"Zykes' Belt","icon":"inv_belt_85v4","type":8,"armorType":1,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":24519,"name":"Stalling the Survey"}}],"factionRestriction":2}, -{"id":53354,"name":"Armbands of Praise","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25130,"name":"Back to the Den"}}],"factionRestriction":2}, -{"id":53355,"name":"Aversion Leggings","icon":"inv_pants_cloth_41v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25172,"name":"Invaders in Our Home"}}],"factionRestriction":2}, -{"id":53356,"name":"Beast Tracker's Bracers","icon":"inv_bracer_74v2","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[2],"sources":[{"quest":{"id":25139,"name":"Steady Shot"}}]}, -{"id":53357,"name":"Bellower's Belt","icon":"inv_belt_84v3","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[9],"sources":[{"quest":{"id":25147,"name":"Charge"}}]}, -{"id":53358,"name":"Blade Cultist Slippers","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25262,"name":"Skull Rock"}}],"factionRestriction":2}, -{"id":53359,"name":"Boar Hide Belt","icon":"inv_belt_80v2","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":25126,"name":"Cutting Teeth"}}],"factionRestriction":2}, -{"id":53360,"name":"Bragger's Gauntlets","icon":"inv_gauntlets_105v3","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":25126,"name":"Cutting Teeth"}}],"factionRestriction":2}, -{"id":53361,"name":"Burning Blade Coven Gloves","icon":"inv_gauntlets_114v3","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25132,"name":"Burning Blade Medallion"}}],"factionRestriction":2}, -{"id":53362,"name":"Carapace Boots","icon":"inv_boots_mail_11v3","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25127,"name":"Sting of the Scorpid"}}],"factionRestriction":2}, -{"id":53363,"name":"Circle of Suffering","icon":"inv_belt_79v4","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[8],"sources":[{"quest":{"id":25145,"name":"Immolate"}}]}, -{"id":53364,"name":"Durotar Gauntlets","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":25169,"name":"The War of Northwatch Aggression"}}],"factionRestriction":2}, -{"id":53365,"name":"Empowered Hands","icon":"inv_gauntlets_114v4","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[3],"sources":[{"quest":{"id":25149,"name":"Arcane Missiles"}}]}, -{"id":53366,"name":"Enforcer's Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25260,"name":"Fizzled"}}],"factionRestriction":2}, -{"id":53367,"name":"Fargaze Armbands","icon":"inv_bracer_74v3","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25132,"name":"Burning Blade Medallion"}}],"factionRestriction":2}, -{"id":53368,"name":"Feckless Armbands","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25206,"name":"Ignoring the Warnings"}}],"factionRestriction":2}, -{"id":53369,"name":"Fizzle's Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25260,"name":"Fizzled"}}],"factionRestriction":2}, -{"id":53370,"name":"Girdle of Honor","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25130,"name":"Back to the Den"}}],"factionRestriction":2}, -{"id":53371,"name":"Gloves of the Helping Hand","icon":"inv_gauntlets_102v3","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25130,"name":"Back to the Den"}}],"factionRestriction":2}, -{"id":53372,"name":"Hand Woven Vest","icon":"inv_chest_cloth_84v2","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":25193,"name":"Lost But Not Forgotten"}}],"factionRestriction":2}, -{"id":53373,"name":"Hearth Defender Bracers","icon":"inv_bracer_61v3","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25172,"name":"Invaders in Our Home"}}],"factionRestriction":2}, -{"id":53374,"name":"Heedless Treads","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25206,"name":"Ignoring the Warnings"}}],"factionRestriction":2}, -{"id":53375,"name":"Kul Tiras Leggings","icon":"inv_pants_cloth_41","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":25173,"name":"From Bad to Worse"}}],"factionRestriction":2}, -{"id":53376,"name":"Lockpicker's Glovelettes","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[6],"sources":[{"quest":{"id":25141,"name":"Eviscerate"}}]}, -{"id":53377,"name":"Lovingly Embroidered Belt","icon":"inv_belt_80v4","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":25193,"name":"Lost But Not Forgotten"}}],"factionRestriction":2}, -{"id":53378,"name":"Mottled Bracers","icon":"inv_bracer_73v4","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":25126,"name":"Cutting Teeth"}}],"factionRestriction":2}, -{"id":53379,"name":"Ouster's Leggings","icon":"inv_pants_mail_36v4","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":25132,"name":"Burning Blade Medallion"}}],"factionRestriction":2}, -{"id":53380,"name":"Poison-Cured Britches","icon":"inv_pants_leather_38v2","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25127,"name":"Sting of the Scorpid"}}],"factionRestriction":2}, -{"id":53381,"name":"Quilboar Sticker","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":9,"weaponSpeed":1.8,"ilvl":9,"quality":1,"sources":[{"quest":{"id":25192,"name":"Raggaran's Fury"}}],"factionRestriction":2}, -{"id":53382,"name":"Quilboar Hide Leggings","icon":"inv_pants_leather_38v4","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25192,"name":"Raggaran's Fury"}}],"factionRestriction":2}, -{"id":53383,"name":"Razor Hill Blade","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.6,"ilvl":7,"quality":1,"sources":[{"quest":{"id":25173,"name":"From Bad to Worse"}}],"factionRestriction":2}, -{"id":53384,"name":"Razor Hill Grunt's Bracers","icon":"inv_bracer_61v2","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":25179,"name":"Loss Reduction"}}],"factionRestriction":2}, -{"id":53385,"name":"Rockbitten Gloves","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"classAllowlist":[7],"sources":[{"quest":{"id":25143,"name":"Primal Strike"}}]}, -{"id":53386,"name":"Scout Hunter Vest","icon":"inv_chest_leather_26v2","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25172,"name":"Invaders in Our Home"}}],"factionRestriction":2}, -{"id":53387,"name":"Searing Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25262,"name":"Skull Rock"}}],"factionRestriction":2}, -{"id":53388,"name":"Sen'Jin Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":2.8,"ilvl":6,"quality":1,"sources":[{"quest":{"id":25168,"name":"Purge the Valley"}}],"factionRestriction":2}, -{"id":53389,"name":"Sen'jin Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":13,"weaponSpeed":3.3,"ilvl":6,"quality":1,"sources":[{"quest":{"id":25168,"name":"Purge the Valley"}}],"factionRestriction":2}, -{"id":53390,"name":"Skull Rock Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25262,"name":"Skull Rock"}}],"factionRestriction":2}, -{"id":53391,"name":"Thwarter's Belt","icon":"inv_belt_79","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":25169,"name":"The War of Northwatch Aggression"}}],"factionRestriction":2}, -{"id":53392,"name":"Tiragarde Vest","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":25173,"name":"From Bad to Worse"}}],"factionRestriction":2}, -{"id":53393,"name":"Tunic of Celebration","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":25193,"name":"Lost But Not Forgotten"}}],"factionRestriction":2}, -{"id":53394,"name":"Venom-Imbued Robes","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":25127,"name":"Sting of the Scorpid"}}],"factionRestriction":2}, -{"id":53395,"name":"Vile Boots","icon":"inv_boots_leather_10v3","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":25131,"name":"Vile Familiars"}}],"factionRestriction":2}, -{"id":53396,"name":"Vile Jersey","icon":"inv_chest_mail_16v4","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":25131,"name":"Vile Familiars"}}],"factionRestriction":2}, -{"id":53397,"name":"Vile Slippers","icon":"inv_boots_cloth_31v3","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":25131,"name":"Vile Familiars"}}],"factionRestriction":2}, -{"id":53398,"name":"Zen'Taji's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25195,"name":"That's the End of That Raptor"}}],"factionRestriction":2}, -{"id":53399,"name":"Acquisition Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":24449,"name":"Shore Leave"}}],"factionRestriction":2}, -{"id":53400,"name":"Arborcide Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":31,"weaponSpeed":3.3,"ilvl":11,"quality":2,"sources":[{"quest":{"id":14155,"name":"Arborcide"}}],"factionRestriction":2}, -{"id":53401,"name":"Asylum Shoes","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14299,"name":"Xylem's Asylum"}}],"factionRestriction":2}, -{"id":53402,"name":"Azure Scale Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":3,"sources":[{"quest":{"id":24467,"name":"Fade to Black"}}],"factionRestriction":2}, -{"id":53403,"name":"Bedlam Gun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":2.8,"ilvl":17,"quality":3,"sources":[{"quest":{"id":24449,"name":"Shore Leave"}}],"factionRestriction":2}, -{"id":53404,"name":"Bottom-Wader Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":14216,"name":"Mystery of the Sarcen Stone"}}],"factionRestriction":2}, -{"id":53405,"name":"Bulldozer Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":14423,"name":"Dozercism"}}],"factionRestriction":2}, -{"id":53406,"name":"Charged Robes","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14296,"name":"Watch Your Step"}}],"factionRestriction":2}, -{"id":53407,"name":"Chopped Off Ancient Limb","icon":"inv_staff_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.6,"ilvl":11,"quality":2,"sources":[{"quest":{"id":14155,"name":"Arborcide"}}],"factionRestriction":2}, -{"id":53408,"name":"Detonation Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":14477,"name":"Push the Button!"}}],"factionRestriction":2}, -{"id":53409,"name":"Diplomatic Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14435,"name":"The Blackmaw Doublecross"}}],"factionRestriction":2}, -{"id":53410,"name":"Disposable Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":24436,"name":"Halo Drops"}}],"factionRestriction":2}, -{"id":53411,"name":"Eldarath Staff","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":3.3,"ilvl":17,"quality":2,"sources":[{"quest":{"id":14486,"name":"Handling the Goods"}}],"factionRestriction":2}, -{"id":53412,"name":"Gloves of Unmitigated Badassery","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":14464,"name":"Lightning Strike Assassination"}}],"factionRestriction":2}, -{"id":53413,"name":"Glued Feather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14249,"name":"Shear Will"}}],"factionRestriction":2}, -{"id":53414,"name":"Hacker's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14430,"name":"Hacking the Construct"}}],"factionRestriction":2}, -{"id":53415,"name":"Heart Wrapper","icon":"inv_misc_cape_14","type":4,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":24449,"name":"Shore Leave"}}],"factionRestriction":2}, -{"id":53416,"name":"Hill's Eye Wand","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.6,"ilvl":10,"quality":2,"sources":[{"quest":{"id":14117,"name":"The Eyes of Ashenvale"}}],"factionRestriction":2}, -{"id":53417,"name":"Hobart's Spare Hubcap","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":14383,"name":"The Terrible Tinkers of the Ruined Reaches"}}],"factionRestriction":2}, -{"id":53418,"name":"Honorary Gob Squad Shield","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14480,"name":"Extermination"}}],"factionRestriction":2}, -{"id":53419,"name":"Hort's Axe","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":24436,"name":"Halo Drops"}}],"factionRestriction":2}, -{"id":53420,"name":"Joanna's Sash","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14299,"name":"Xylem's Asylum"}}],"factionRestriction":2}, -{"id":53421,"name":"Juicy Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14296,"name":"Watch Your Step"}}],"factionRestriction":2}, -{"id":53422,"name":"Kaboom Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":14471,"name":"First Degree Mortar"}}],"factionRestriction":2}, -{"id":53423,"name":"Kalecgos' Gift","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":3,"sources":[{"quest":{"id":24467,"name":"Fade to Black"}}],"factionRestriction":2}, -{"id":53424,"name":"Kroum's Signet","icon":"inv_jewelry_ring_11","type":11,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":14477,"name":"Push the Button!"}}],"factionRestriction":2}, -{"id":53425,"name":"Low-Altitude Parachute","icon":"inv_misc_cape_14","type":4,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":14464,"name":"Lightning Strike Assassination"}}],"factionRestriction":2}, -{"id":53426,"name":"Mage Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14430,"name":"Hacking the Construct"}}],"factionRestriction":2}, -{"id":53427,"name":"Margene Repair Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":14423,"name":"Dozercism"}}],"factionRestriction":2}, -{"id":53428,"name":"Merger Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":24449,"name":"Shore Leave"}}],"factionRestriction":2}, -{"id":53429,"name":"Molotov Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":24452,"name":"Profitability Scouting"}}],"factionRestriction":2}, -{"id":53430,"name":"Mortar-Slinger Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":14471,"name":"First Degree Mortar"}}],"factionRestriction":2}, -{"id":53431,"name":"Negotiation Stompers","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14435,"name":"The Blackmaw Doublecross"}}],"factionRestriction":2}, -{"id":53432,"name":"Pricey Bracers","icon":"inv_bracer_27a","type":6,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":24452,"name":"Profitability Scouting"}}],"factionRestriction":2}, -{"id":53433,"name":"Quick Buck Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14486,"name":"Handling the Goods"}}],"factionRestriction":2}, -{"id":53434,"name":"Refleshified Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":14194,"name":"Refleshification"}}],"factionRestriction":2}, -{"id":53435,"name":"Restored Mennaran Mail","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":14216,"name":"Mystery of the Sarcen Stone"}}],"factionRestriction":2}, -{"id":53436,"name":"Robotronic Vest","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[3,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":14249,"name":"Shear Will"}}],"factionRestriction":2}, -{"id":53437,"name":"Salvoblast Tunic","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":14471,"name":"First Degree Mortar"}}],"factionRestriction":2}, -{"id":53438,"name":"Scalding Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14324,"name":"Full of Hot Water"}}],"factionRestriction":2}, -{"id":53439,"name":"Scissor Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":21,"weaponSpeed":1.8,"ilvl":18,"quality":2,"sources":[{"quest":{"id":14249,"name":"Shear Will"}}],"factionRestriction":2}, -{"id":53440,"name":"Sea Sister Vest","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":14295,"name":"Sisters of the Sea"}}],"factionRestriction":2}, -{"id":53441,"name":"Serpent-Crusher Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":14295,"name":"Sisters of the Sea"}}],"factionRestriction":2}, -{"id":53442,"name":"Shield of Azsharan Conquest","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":24439,"name":"The Conquest of Azshara"}}],"factionRestriction":2}, -{"id":53443,"name":"Shield of Talrendis Point","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":24439,"name":"The Conquest of Azshara"}}],"factionRestriction":2}, -{"id":53444,"name":"Sniper's Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":14477,"name":"Push the Button!"}}],"factionRestriction":2}, -{"id":53445,"name":"Spongy Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14324,"name":"Full of Hot Water"}}],"factionRestriction":2}, -{"id":53446,"name":"Spring Gadget","icon":"inv_gizmo_goblingtonkcontroller","type":13,"weaponType":5,"handType":3,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":14383,"name":"The Terrible Tinkers of the Ruined Reaches"}}],"factionRestriction":2}, -{"id":53447,"name":"Standard Issue Airborne Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":14423,"name":"Dozercism"}}],"factionRestriction":2}, -{"id":53448,"name":"Stolen Talrendis Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":14117,"name":"The Eyes of Ashenvale"}}],"factionRestriction":2}, -{"id":53449,"name":"Stonifying Gun","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.8,"ilvl":11,"quality":2,"sources":[{"quest":{"id":14194,"name":"Refleshification"}}],"factionRestriction":2}, -{"id":53450,"name":"Treaty Breaker Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14435,"name":"The Blackmaw Doublecross"}}],"factionRestriction":2}, -{"id":53451,"name":"Wind Rider Wand","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":43,"weaponSpeed":1.6,"ilvl":20,"quality":3,"sources":[{"quest":{"id":24439,"name":"The Conquest of Azshara"}}],"factionRestriction":2}, -{"id":53452,"name":"Woodchipper Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.8,"ilvl":11,"quality":2,"sources":[{"quest":{"id":14155,"name":"Arborcide"}}],"factionRestriction":2}, -{"id":53453,"name":"Wrenchmen Belt","icon":"inv_belt_45","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":14480,"name":"Extermination"}}],"factionRestriction":2}, -{"id":53486,"name":"Bracers of Fiery Night","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,137,89,0,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53487,"name":"Foreshadow Steps","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,184,112,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1858,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53488,"name":"Split Shape Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,183,112,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53489,"name":"Cloak of Burning Dusk","icon":"inv_misc_cape_16","type":4,"stats":[0,0,137,89,0,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53490,"name":"Ring of Phased Regeneration","icon":"item_icecrownringb","type":11,"stats":[0,0,144,88,64,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":53492,"phase":5}, -{"id":53557,"name":"White Bone Pummeler","icon":"inv_misc_desecrated_mailglove","type":13,"weaponType":3,"handType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":51,"quality":2,"sources":[{"quest":{"id":24719,"name":"Claws of White"}}]}, -{"id":53558,"name":"White Bone Circle","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,6,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":24719,"name":"Claws of White"}}]}, -{"id":53559,"name":"White Bone Rod","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":104,"weaponDamageMax":157,"weaponSpeed":3.3,"ilvl":51,"quality":2,"sources":[{"quest":{"id":24719,"name":"Claws of White"}}]}, -{"id":53560,"name":"Moonshadow Staff","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":3.3,"ilvl":52,"quality":2,"classAllowlist":[1]}, -{"id":53561,"name":"Thicket's Embrace","icon":"inv_chest_leather_29v3","type":5,"armorType":2,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"classAllowlist":[1]}, -{"id":53562,"name":"Grizzled Hide","icon":"inv_chest_leather_29v3","type":5,"armorType":2,"stats":[0,11,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"classAllowlist":[1]}, -{"id":53563,"name":"Stegodon Tusk Mace","icon":"inv_mace_123","type":13,"weaponType":4,"handType":1,"stats":[0,0,6,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":65,"weaponSpeed":1.6,"ilvl":52,"quality":2,"sources":[{"quest":{"id":24697,"name":"How to Make Meat Fresh Again"}}]}, -{"id":53564,"name":"Osteoderm Belt","icon":"inv_belt_95v2","type":8,"armorType":3,"stats":[0,0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24697,"name":"How to Make Meat Fresh Again"}}]}, -{"id":53565,"name":"Diemetradon Plate Gloves","icon":"inv_gauntlets_108v2","type":7,"armorType":4,"stats":[9,0,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24697,"name":"How to Make Meat Fresh Again"}}]}, -{"id":53566,"name":"Woodland Leggings","icon":"inv_pants_cloth_40v3","type":9,"armorType":1,"stats":[0,0,15,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24735,"name":"A Little Help From My Friends"}}]}, -{"id":53567,"name":"Clayridge Headpiece","icon":"inv_helmet_180v3","type":1,"armorType":2,"stats":[0,11,15,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24735,"name":"A Little Help From My Friends"}}]}, -{"id":53568,"name":"Jeweled Legguards","icon":"inv_pants_plate_39v3","type":9,"armorType":4,"stats":[0,0,15,10,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24735,"name":"A Little Help From My Friends"}}]}, -{"id":53569,"name":"Confiscated Poacher's Gun","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,3,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":2.8,"ilvl":52,"quality":2,"sources":[{"quest":{"id":24855,"name":"Aberrant Flora"}}]}, -{"id":53570,"name":"Bloodpetal Cloak","icon":"inv_misc_cape_14","type":4,"stats":[6,0,8,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24855,"name":"Aberrant Flora"}}]}, -{"id":53571,"name":"Karna's Poncho","icon":"inv_shoulder_141v3","type":3,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24926,"name":"Serving A-Me 01"}}]}, -{"id":53572,"name":"Remtravel Thinking Cap","icon":"inv_helmet_178v2","type":1,"armorType":3,"stats":[0,11,15,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24926,"name":"Serving A-Me 01"}}]}, -{"id":53573,"name":"Artificial Gorilla Chest","icon":"inv_chest_plate28v3","type":5,"armorType":4,"stats":[0,0,15,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":24926,"name":"Serving A-Me 01"}}]}, -{"id":53574,"name":"Blazerunner Leggings","icon":"inv_pants_leather_41v2","type":9,"armorType":2,"stats":[0,0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24690,"name":"Blazerunner"}}]}, -{"id":53575,"name":"Marshal Bracers","icon":"inv_bracer_66v1","type":6,"armorType":3,"stats":[0,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24690,"name":"Blazerunner"}}]}, -{"id":53576,"name":"Fire Plume Breastplate","icon":"inv_chest_plate28v2","type":5,"armorType":4,"stats":[10,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24690,"name":"Blazerunner"}}]}, -{"id":53577,"name":"Bud-Nipping Bracers","icon":"inv_bracer_69v2","type":6,"armorType":1,"stats":[0,0,9,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24692,"name":"The Fledgling Colossus"}}]}, -{"id":53578,"name":"Colossal Treads","icon":"inv_boots_leather_13v2","type":10,"armorType":2,"stats":[0,0,11,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24692,"name":"The Fledgling Colossus"}}]}, -{"id":53579,"name":"Silithid Scale Gloves","icon":"inv_gauntlets_109v3","type":7,"armorType":3,"stats":[0,8,11,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24692,"name":"The Fledgling Colossus"}}]}, -{"id":53580,"name":"Doreen's Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":1.6,"ilvl":53,"quality":2,"sources":[{"quest":{"id":24701,"name":"Marshal's Refuse"}}]}, -{"id":53581,"name":"Abandoned Leggings","icon":"inv_pants_mail_37v1","type":9,"armorType":3,"stats":[0,0,15,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24701,"name":"Marshal's Refuse"}}]}, -{"id":53582,"name":"Discarded Bracers","icon":"inv_bracer_65v3","type":6,"armorType":4,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24701,"name":"Marshal's Refuse"}}]}, -{"id":53583,"name":"Beast Clobberer","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,4,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":107,"weaponSpeed":2.6,"ilvl":53,"quality":2,"sources":[{"quest":{"id":24718,"name":"The Mighty U'cha"}}]}, -{"id":53584,"name":"Beastkiller","icon":"inv_axe_88","type":13,"weaponType":1,"handType":4,"stats":[12,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":108,"weaponDamageMax":163,"weaponSpeed":3.3,"ilvl":53,"quality":2,"sources":[{"quest":{"id":24718,"name":"The Mighty U'cha"}}]}, -{"id":53585,"name":"Archaeologist's Utility Boots","icon":"inv_boots_cloth_34v2","type":10,"armorType":1,"stats":[0,0,11,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24730,"name":"Roll the Bones"}}]}, -{"id":53586,"name":"Excavator's Quarry Belt","icon":"inv_belt_91v2","type":8,"armorType":2,"stats":[0,0,11,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24730,"name":"Roll the Bones"}}]}, -{"id":53587,"name":"Plainstalker Vest","icon":"inv_chest_leather_29v1","type":5,"armorType":2,"stats":[0,11,15,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24733,"name":"The Bait for Lar'korwi"}}]}, -{"id":53588,"name":"Outrider Chainmail","icon":"inv_pants_mail_37v3","type":9,"armorType":3,"stats":[0,12,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24733,"name":"The Bait for Lar'korwi"}}]}, -{"id":53589,"name":"Shizzle's Nozzle Cleaner","icon":"inv_bracer_69","type":6,"armorType":1,"stats":[0,0,9,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24736,"name":"Shizzle's Flyer"}}]}, -{"id":53590,"name":"Shizzle's Muzzle Cover","icon":"inv_shoulder_140v1","type":3,"armorType":2,"stats":[0,8,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24736,"name":"Shizzle's Flyer"}}]}, -{"id":53591,"name":"Shizzle's Drizzle Stopper","icon":"inv_shield_64","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":24736,"name":"Shizzle's Flyer"}}]}, -{"id":53592,"name":"Tarred Robe","icon":"inv_chest_cloth_87v2","type":5,"armorType":1,"stats":[0,0,15,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":24699,"name":"Gormashh the Glutinous"}}]}, -{"id":53593,"name":"Sticky Bracers","icon":"inv_bracer_65v1","type":6,"armorType":4,"stats":[6,0,9,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":24699,"name":"Gormashh the Glutinous"}}]}, -{"id":53594,"name":"Amulet of Newfound Knowledge","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,8,12,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":24695,"name":"Ever Watching From Above"}}]}, -{"id":53595,"name":"Cloak of Repose","icon":"inv_misc_cape_16","type":4,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":24695,"name":"Ever Watching From Above"}}]}, -{"id":53596,"name":"Un'Goro Mantle","icon":"inv_shoulder_144","type":3,"armorType":3,"stats":[0,0,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":24695,"name":"Ever Watching From Above"}}]}, -{"id":53597,"name":"Toy Windmill","icon":"spell_frost_windwalkon","type":12,"stats":[0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":24707,"name":"The Ballad of Maximillian"}}]}, -{"id":53598,"name":"Maximillian's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":24707,"name":"The Ballad of Maximillian"}}]}, -{"id":53599,"name":"Sword of Northshire","icon":"inv_sword_46","type":13,"weaponType":9,"handType":2,"stats":[7,0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":66,"weaponDamageMax":123,"weaponSpeed":2.6,"ilvl":55,"quality":3,"sources":[{"quest":{"id":24707,"name":"The Ballad of Maximillian"}}]}, -{"id":53600,"name":"Careful Coverings","icon":"inv_misc_cape_14","type":4,"stats":[0,7,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":24709,"name":"A Tale of Two Shovels"}}]}, -{"id":53601,"name":"Nilminer's Notes","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":24709,"name":"A Tale of Two Shovels"}}]}, -{"id":53602,"name":"Excavated Bracers","icon":"inv_bracer_65","type":6,"armorType":4,"stats":[6,0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":24709,"name":"A Tale of Two Shovels"}}]}, -{"id":54292,"name":"KTC Executive Slippers","icon":"inv_boots_cloth_31v4","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":14075,"name":"Trouble in the Mines"}}]}, -{"id":54293,"name":"Tunnel Worm Vest","icon":"inv_chest_leather_26v2","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":14075,"name":"Trouble in the Mines"}}]}, -{"id":54294,"name":"Athlete's Robe","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{}}]}, -{"id":54295,"name":"Crosscheck Breastplate","icon":"inv_chest_mail_16v3","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{}}]}, -{"id":54296,"name":"Debt Collector's Gloves","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14070,"name":"Do it Yourself"}}]}, -{"id":54297,"name":"Cracking Whip","icon":"inv_belt_84v3","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14070,"name":"Do it Yourself"}}]}, -{"id":54298,"name":"Skyrocket Gun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.8,"ilvl":3,"quality":1,"sources":[{"quest":{"id":14071,"name":"Rolling with my Homies"}}]}, -{"id":54299,"name":"Fancy Pants","icon":"inv_pants_cloth_41v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14071,"name":"Rolling with my Homies"}}]}, -{"id":54300,"name":"Tight-Fitting Leather Leggings","icon":"inv_pants_leather_38v2","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14071,"name":"Rolling with my Homies"}}]}, -{"id":54301,"name":"Promotion Prodder","icon":"inv_staff_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":7,"weaponSpeed":3.3,"ilvl":3,"quality":1}, -{"id":54302,"name":"Southsea Sash","icon":"inv_belt_79v3","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14115,"name":"Pirate Party Crashers"}}]}, -{"id":54303,"name":"Total Disaster Bracers","icon":"inv_bracer_61v4","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14115,"name":"Pirate Party Crashers"}}]}, -{"id":54304,"name":"First Bank Knocker","icon":"inv_mace_121","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":1.6,"ilvl":5,"quality":1,"sources":[{"quest":{"id":14122,"name":"The Great Bank Heist"}}]}, -{"id":54305,"name":"Tasseled Shoes","icon":"inv_boots_leather_10v3","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14122,"name":"The Great Bank Heist"}}]}, -{"id":54306,"name":"Vault Cracker Gloves","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14122,"name":"The Great Bank Heist"}}]}, -{"id":54307,"name":"Flame-Retardant Pajama Sleeves","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14125,"name":"447"}}]}, -{"id":54308,"name":"Gassy Bracers","icon":"inv_bracer_74v3","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14125,"name":"447"}}]}, -{"id":54309,"name":"Gas Soaked Boots","icon":"inv_boots_mail_11v4","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14125,"name":"447"}}]}, -{"id":54331,"name":"Black Velvet Chest","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":3}, -{"id":54441,"name":"Black Embersilk Gown","icon":"inv_chest_cloth_51","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"crafted":{"profession":11,"spellId":75288}}]}, -{"id":54451,"name":"High Society Top Hat","icon":"inv_helmet_119","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"crafted":{"profession":11,"spellId":75289}}]}, -{"id":54556,"name":"Abduction's Cover","icon":"inv_misc_cape_20","type":4,"stats":[0,0,137,89,56,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54557,"name":"Baltharus' Gift","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,96,141,0,0,0,64,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54558,"name":"Boots of Divided Being","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,184,112,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54559,"name":"Bracers of the Heir","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[88,0,145,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54560,"name":"Changeling Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,184,112,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,909,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54561,"name":"Gloaming Sark","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,173,211,0,0,0,107,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54562,"name":"Misbegotten Belt","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,184,112,0,59,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54563,"name":"Saviana's Tribute","icon":"item_icecrownringc","type":11,"stats":[0,0,137,88,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54564,"name":"Scion's Treads","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[128,0,180,0,0,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,1858,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54565,"name":"Surrogate Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,184,112,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1520,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54566,"name":"Twilight Scale Shoulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,112,192,0,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1498,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54567,"name":"Zarithrian's Offering","icon":"item_icecrownringb","type":11,"stats":[88,0,144,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"heroic":true,"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54569,"name":"Sharpened Twilight Scale","icon":"inv_misc_rubysanctum4","type":12,"stats":[0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54571,"name":"Petrified Twilight Scale","icon":"inv_misc_rubysanctum3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54572,"name":"Charred Twilight Scale","icon":"inv_misc_rubysanctum2","type":12,"stats":[0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54573,"name":"Glowing Twilight Scale","icon":"inv_misc_rubysanctum1","type":12,"stats":[0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":271,"quality":4,"unique":true,"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}]}, -{"id":54617,"name":"Darkspear Shroud","icon":"inv_misc_tournaments_banner_troll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":1,"sources":[{"quest":{"id":25445,"name":"Zalazane's Fall"}}],"factionRestriction":2}, -{"id":54649,"name":"Cow King's Hide","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3}, -{"id":54650,"name":"Forest's Embrace","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,12,25,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3}, -{"id":54652,"name":"Righteous Armor","icon":"inv_chest_chain_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[341,342,366,367,392,393,418,419,627,628,629,797,798,799,883,884,1052,1053,1054,1222,1223,1224,1570,1571,2012,2013,-329,-327,-324,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9,882,1330,1376,1422,1423,1468,1469,1515],"ilvl":55,"quality":2}, -{"id":54655,"name":"Stormshroud Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":54658,"name":"Lionfur Armor","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":54662,"name":"Warped Leather Vest","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11}, -{"id":54665,"name":"Jessera's Fungus Lined Vest","icon":"inv_shirt_06","type":5,"armorType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2}, -{"id":54666,"name":"Ceremonial Leather Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":54667,"name":"Vest of the Dragon Slayer","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,3,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":54668,"name":"Murloc Scale Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2}, -{"id":54670,"name":"Hillman's Leather Vest","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":54671,"name":"Starsight Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,4,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3}, -{"id":54673,"name":"Barkshell Tunic","icon":"inv_shirt_05","type":5,"armorType":2,"stats":[0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":54674,"name":"Gloomshroud Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,12,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":54675,"name":"Grunt's Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":54676,"name":"Feathered Armor","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":54677,"name":"Raptorbane Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2}, -{"id":54680,"name":"Raptor Hide Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2}, -{"id":54681,"name":"Thick Murloc Armor","icon":"inv_chest_chain_12","type":5,"armorType":2,"stats":[0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2}, -{"id":54682,"name":"Green Whelp Armor","icon":"inv_chest_chain_09","type":5,"armorType":2,"stats":[0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":54683,"name":"Dusky Leather Armor","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":54684,"name":"Guardian Armor","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":54685,"name":"Archer's Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[267,287,333,358,383,384,409,410,441,442,443,524,525,526,609,610,611,779,780,781,864,865,866,1034,1035,1036,1561,1562,2003,-84,-81,-78,-69,-20,-19,-18,-15,-13,-11,-9,2004],"ilvl":38,"quality":2}, -{"id":54686,"name":"Barbaric Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2}, -{"id":54687,"name":"Sentinel Breastplate","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[333,334,358,359,384,385,410,411,612,613,614,782,783,784,867,868,869,1037,1038,1039,1208,1209,1563,2004,2005,1562,1207,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":40,"quality":2}, -{"id":54689,"name":"Marshwarden's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2}, -{"id":54691,"name":"Nightscape Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,15,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2}, -{"id":54692,"name":"Armor of Thero-Shan","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"classAllowlist":[6]}, -{"id":54694,"name":"Wolf Rider's Padded Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[336,337,361,362,388,413,414,618,619,620,788,789,790,873,874,875,1043,1045,1214,1215,1565,1566,2007,2008,387,1213,1044,-84,-81,-78,-69,-68,-20,-19,-18,-15,-9],"ilvl":46,"quality":2}, -{"id":54695,"name":"Surveyor's Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,11,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2}, -{"id":54696,"name":"Scorpashi Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,17,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2}, -{"id":54697,"name":"Handstitched Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54698,"name":"Ceremonial Leather Loincloth","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2}, -{"id":54699,"name":"Patched Leather Pants","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18}, -{"id":54700,"name":"Weather-Worn Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54701,"name":"Tiger Hide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":1}, -{"id":54702,"name":"Ceremonial Leather Ankleguards","icon":"inv_bracer_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":1}, -{"id":54703,"name":"Bogwalker Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":54704,"name":"Patched Leather Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19}, -{"id":54705,"name":"White Wolf Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54706,"name":"Rough Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54707,"name":"Researcher's Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2}, -{"id":54708,"name":"Ceremonial Leather Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":54709,"name":"Patched Leather Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17}, -{"id":54710,"name":"Pioneer Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54711,"name":"Wendigo Collar","icon":"inv_belt_01","type":8,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2}, -{"id":54712,"name":"Ceremonial Leather Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":1}, -{"id":54713,"name":"Bracers of Shed Fur","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54714,"name":"Pioneer Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54715,"name":"Rough Leather Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54716,"name":"Juicy Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":54723,"name":"Living Leggings","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,0,8,12,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":54724,"name":"Shadowcraft Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,15,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3}, -{"id":54725,"name":"Shadowcraft Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,14,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3}, -{"id":54726,"name":"Clouddrift Mantle","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2}, -{"id":54727,"name":"Traveler's Boots","icon":"inv_boots_01","type":10,"armorType":2,"stats":[0,17,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2}, -{"id":54748,"name":"Siege Brigade Vest","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":1}, -{"id":54751,"name":"Silverscale Chestguard","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":54754,"name":"Phantom Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[3,0,11,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":54755,"name":"Polished Scale Vest","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":54757,"name":"Double Link Tunic","icon":"inv_chest_chain","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,221,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3}, -{"id":54765,"name":"Burnished Leggings","icon":"inv_pants_02","type":9,"armorType":3,"stats":[4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":54766,"name":"Burnished Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":54767,"name":"Burnished Girdle","icon":"inv_belt_34","type":8,"armorType":3,"stats":[4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2}, -{"id":54768,"name":"Burnished Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":54769,"name":"Rough Bronze Bracers","icon":"inv_bracer_05","type":6,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2}, -{"id":54770,"name":"Burnished Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":54777,"name":"Polished Scale Vest","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":1}, -{"id":54778,"name":"Burnished Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":54779,"name":"Scalemail Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":54781,"name":"Thorbia's Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3}, -{"id":54782,"name":"Scalemail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":1}, -{"id":54783,"name":"Silvered Bronze Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[3,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2}, -{"id":54784,"name":"Burnished Tunic","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2}, -{"id":54801,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"stats":[67,0,100,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,462,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54802,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,67,100,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54803,"name":"The Frost Lord's Battle Shroud","icon":"inv_misc_cape_16","type":4,"stats":[67,0,100,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54804,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"stats":[0,0,96,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54805,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"stats":[0,0,96,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54806,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,261,0,0,0,77,77,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":595,"weaponDamageMax":894,"weaponSpeed":3.2,"ilvl":232,"quality":4,"unique":true,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}]}, -{"id":54867,"name":"Swiftroot Boots","icon":"inv_boots_mail_11v2","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":932,"name":"Twisted Hatred"}}],"factionRestriction":1}, -{"id":54868,"name":"Gritroot Belt","icon":"inv_belt_80v4","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":483,"name":"The Relics of Wakening"}}],"factionRestriction":1}, -{"id":54869,"name":"Thornroot Vest","icon":"inv_chest_leather_26v4","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":486,"name":"Ursal the Mauler"}}],"factionRestriction":1}, -{"id":54870,"name":"Thornroot Cord","icon":"inv_belt_84v2","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":486,"name":"Ursal the Mauler"}}],"factionRestriction":1}, -{"id":54871,"name":"Cloudsbreak Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":938,"name":"Mist"}}],"factionRestriction":1}, -{"id":54872,"name":"Shackled Bindings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":937,"name":"The Enchanted Glade"}}],"factionRestriction":1}, -{"id":54873,"name":"Verdigris Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":935,"name":"The Waters of Teldrassil"}}],"factionRestriction":1}, -{"id":54874,"name":"Grassy Bindings","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":935,"name":"The Waters of Teldrassil"}}],"factionRestriction":1}, -{"id":54885,"name":"Power of the Hippogryph","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.4,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25469,"name":"Forces of Nature: Mountain Giants"}}],"factionRestriction":1}, -{"id":54886,"name":"Power of the Mountain Giant","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":4,"stats":[15,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":109,"weaponSpeed":2.8,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25469,"name":"Forces of Nature: Mountain Giants"}}],"factionRestriction":1}, -{"id":54887,"name":"Power of the Faerie Dragon","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":2.6,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25469,"name":"Forces of Nature: Mountain Giants"}}],"factionRestriction":1}, -{"id":54888,"name":"Power of the Treant","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,8,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":145,"weaponSpeed":3.7,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25469,"name":"Forces of Nature: Mountain Giants"}}],"factionRestriction":1}, -{"id":54909,"name":"Windflight Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,5,9,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":25394,"name":"More Than Illness"}}],"factionRestriction":1}, -{"id":54910,"name":"Emerald Veil","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25394,"name":"More Than Illness"}}],"factionRestriction":1}, -{"id":54911,"name":"Green Whelp Shoulderguard","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,7,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25394,"name":"More Than Illness"}}],"factionRestriction":1}, -{"id":54912,"name":"Telaron's Chainmail","icon":"inv_chest_mail_19v3","type":5,"armorType":3,"stats":[6,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25394,"name":"More Than Illness"}}],"factionRestriction":1}, -{"id":54913,"name":"Runetotem Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,5,9,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":25230,"name":"More Than Illness"}}],"factionRestriction":2}, -{"id":54914,"name":"Emerald Veil","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25230,"name":"More Than Illness"}}],"factionRestriction":2}, -{"id":54915,"name":"Green Whelp Shoulderguard","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,7,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25230,"name":"More Than Illness"}}],"factionRestriction":2}, -{"id":54916,"name":"Konu's Chainmail","icon":"inv_chest_mail_19v3","type":5,"armorType":3,"stats":[6,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25230,"name":"More Than Illness"}}],"factionRestriction":2}, -{"id":54917,"name":"Dream Bough Robes","icon":"inv_chest_cloth_86v4","type":5,"armorType":1,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25398,"name":"Sealing the Dream"}}],"factionRestriction":1}, -{"id":54918,"name":"Belt of Natural Essence","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,5,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25398,"name":"Sealing the Dream"}}],"factionRestriction":1}, -{"id":54919,"name":"Dream Bough Robes","icon":"inv_chest_cloth_86v4","type":5,"armorType":1,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25250,"name":"Sealing the Dream"}}],"factionRestriction":2}, -{"id":54920,"name":"Belt of Natural Essence","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,5,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":25250,"name":"Sealing the Dream"}}],"factionRestriction":2}, -{"id":54921,"name":"Dark Crystal Waistband","icon":"inv_belt_85v4","type":8,"armorType":1,"stats":[0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{}}]}, -{"id":54922,"name":"Bracers of the Captured Heart","icon":"inv_bracer_64v3","type":6,"armorType":2,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{}}]}, -{"id":54923,"name":"Sensiria's Shroud","icon":"inv_misc_cape_26","type":4,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25368,"name":"Verinias the Twisted"}}]}, -{"id":54924,"name":"Twisted Leggings","icon":"inv_pants_cloth_39v2","type":9,"armorType":1,"stats":[0,0,11,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25368,"name":"Verinias the Twisted"}}]}, -{"id":54925,"name":"Luring Footpads","icon":"inv_boots_leather_11","type":10,"armorType":2,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25368,"name":"Verinias the Twisted"}}]}, -{"id":54926,"name":"Condensed Essence Bracers","icon":"inv_bracer_78v2","type":6,"armorType":3,"stats":[4,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25368,"name":"Verinias the Twisted"}}]}, -{"id":54927,"name":"Soulstealer's Bracers","icon":"inv_bracer_62v2","type":6,"armorType":1,"stats":[0,0,5,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25403,"name":"Ogre Abduction"}}],"factionRestriction":1}, -{"id":54928,"name":"Modified Spell Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25403,"name":"Ogre Abduction"}}],"factionRestriction":1}, -{"id":54929,"name":"Shoulder of the Ogre-Nabber","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,5,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25403,"name":"Ogre Abduction"}}],"factionRestriction":1}, -{"id":54930,"name":"Abductor's Coverings","icon":"inv_helmet_187v2","type":1,"armorType":3,"stats":[7,0,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25403,"name":"Ogre Abduction"}}],"factionRestriction":1}, -{"id":54931,"name":"Soulstealer's Bracers","icon":"inv_bracer_62v2","type":6,"armorType":1,"stats":[0,0,5,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25344,"name":"Ogre Abduction"}}],"factionRestriction":2}, -{"id":54932,"name":"Modified Spell Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25344,"name":"Ogre Abduction"}}],"factionRestriction":2}, -{"id":54933,"name":"Shoulder of the Ogre-Nabber","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,5,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25344,"name":"Ogre Abduction"}}],"factionRestriction":2}, -{"id":54934,"name":"Abductor's Coverings","icon":"inv_helmet_187v2","type":1,"armorType":3,"stats":[7,0,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25344,"name":"Ogre Abduction"}}],"factionRestriction":2}, -{"id":54935,"name":"Shadowleaf Bow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.8,"ilvl":37,"quality":2,"sources":[{"quest":{"id":25333,"name":"Might of the Sentinels"}}],"factionRestriction":1}, -{"id":54936,"name":"Sermon-Halter Gloves","icon":"inv_gauntlets_106v3","type":7,"armorType":1,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25333,"name":"Might of the Sentinels"}}],"factionRestriction":1}, -{"id":54937,"name":"Sentinel's Headpiece","icon":"inv_helmet_175","type":1,"armorType":2,"stats":[0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25333,"name":"Might of the Sentinels"}}],"factionRestriction":1}, -{"id":54938,"name":"Stonemaul Slinger","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.8,"ilvl":37,"quality":2,"sources":[{"quest":{"id":25329,"name":"Might of the Stonemaul"}}],"factionRestriction":2}, -{"id":54939,"name":"Sermon-Halter Gloves","icon":"inv_gauntlets_106v3","type":7,"armorType":1,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25329,"name":"Might of the Stonemaul"}}],"factionRestriction":2}, -{"id":54940,"name":"Ogre's Coif","icon":"inv_helmet_175","type":1,"armorType":2,"stats":[0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25329,"name":"Might of the Stonemaul"}}],"factionRestriction":2}, -{"id":54941,"name":"Secretion-Coated Carapace","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25431,"name":"Stinglasher"}}],"factionRestriction":1}, -{"id":54942,"name":"Secretion-Coated Carapace","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25369,"name":"Stinglasher"}}],"factionRestriction":2}, -{"id":54943,"name":"Yeti Hide Britches","icon":"inv_pants_leather_39","type":9,"armorType":2,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25433,"name":"Sasquatch Sighting"}}],"factionRestriction":1}, -{"id":54944,"name":"Big Footwear","icon":"inv_boots_mail_14v2","type":10,"armorType":3,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25433,"name":"Sasquatch Sighting"}}],"factionRestriction":1}, -{"id":54945,"name":"Shadebough Cloak","icon":"inv_misc_cape_01","type":4,"stats":[4,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25433,"name":"Sasquatch Sighting"}}],"factionRestriction":1}, -{"id":54946,"name":"Yeti Hide Britches","icon":"inv_pants_leather_39","type":9,"armorType":2,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25374,"name":"Sasquatch Sighting"}}],"factionRestriction":2}, -{"id":54947,"name":"Big Footwear","icon":"inv_boots_mail_14v2","type":10,"armorType":3,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25374,"name":"Sasquatch Sighting"}}],"factionRestriction":2}, -{"id":54948,"name":"Mojache Cloak","icon":"inv_misc_cape_08","type":4,"stats":[4,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25374,"name":"Sasquatch Sighting"}}],"factionRestriction":2}, -{"id":54949,"name":"Hadoken Band","icon":"inv_jewelry_ring_58","type":11,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25366,"name":"The Battle Plans"}}],"factionRestriction":2}, -{"id":54950,"name":"Swiftstride Boots","icon":"inv_boots_cloth_33v2","type":10,"armorType":1,"stats":[0,0,8,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":25366,"name":"The Battle Plans"}}],"factionRestriction":2}, -{"id":54951,"name":"Chain of Emeriss","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25438,"name":"Ysondre's Farewell"}}],"factionRestriction":1}, -{"id":54952,"name":"Chain of Taerar","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25438,"name":"Ysondre's Farewell"}}],"factionRestriction":1}, -{"id":54953,"name":"Chain of Lethon","icon":"inv_jewelry_necklace_33","type":2,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25438,"name":"Ysondre's Farewell"}}],"factionRestriction":1}, -{"id":54954,"name":"Chain of Emeriss","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25383,"name":"Ysondre's Farewell"}}],"factionRestriction":2}, -{"id":54955,"name":"Chain of Taerar","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25383,"name":"Ysondre's Farewell"}}],"factionRestriction":2}, -{"id":54956,"name":"Chain of Lethon","icon":"inv_jewelry_necklace_33","type":2,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":25383,"name":"Ysondre's Farewell"}}],"factionRestriction":2}, -{"id":54965,"name":"Stormwind Spear","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":3.6,"ilvl":63,"quality":3}, -{"id":54966,"name":"Zorbin's Mega-Chopper","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":59,"weaponSpeed":2.3,"ilvl":37,"quality":2,"sources":[{"quest":{"id":25465,"name":"Still With The Zapped Giants"}}]}, -{"id":54967,"name":"Pratt's Handcrafted Vest","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25450,"name":"Improved Quality"}}],"factionRestriction":1}, -{"id":54968,"name":"Jangdor's Handcrafted Vest","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":25453,"name":"Improved Quality"}}],"factionRestriction":2}, -{"id":54969,"name":"Power of the Hippogryph","icon":"inv_axe_12","type":13,"weaponType":1,"handType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.4,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25391,"name":"Weapons of Spirit"}}],"factionRestriction":2}, -{"id":54970,"name":"Power of the Mountain Giant","icon":"inv_weapon_halberd_05","type":13,"weaponType":1,"handType":4,"stats":[15,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":72,"weaponDamageMax":109,"weaponSpeed":2.8,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25391,"name":"Weapons of Spirit"}}],"factionRestriction":2}, -{"id":54971,"name":"Power of the Faerie Dragon","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":2.6,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25391,"name":"Weapons of Spirit"}}],"factionRestriction":2}, -{"id":54972,"name":"Power of the Treant","icon":"inv_staff_25","type":13,"weaponType":8,"handType":4,"stats":[0,0,8,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":96,"weaponDamageMax":145,"weaponSpeed":3.7,"ilvl":37,"quality":3,"sources":[{"quest":{"id":25391,"name":"Weapons of Spirit"}}],"factionRestriction":2}, -{"id":54975,"name":"Armstead Bracers","icon":"inv_bracer_74v2","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":24930,"name":"While You're At It"}}]}, -{"id":54976,"name":"Bracers of the Queen's Gate","icon":"inv_bracer_61v4","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14154,"name":"By the Skin of His Teeth"}}]}, -{"id":54977,"name":"Revitalizing Sandals","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":54978,"name":"Merchant's Chestguard","icon":"inv_chest_mail_16v3","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":24930,"name":"While You're At It"}}]}, -{"id":54979,"name":"Godfrey's Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":1.8,"ilvl":6,"quality":1,"sources":[{"quest":{"id":14369,"name":"Unleash the Beast"}}]}, -{"id":54980,"name":"Gilded Leggings","icon":"inv_pants_cloth_41","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14369,"name":"Unleash the Beast"}}]}, -{"id":54981,"name":"Caregiver's Leggings","icon":"inv_pants_leather_38","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14368,"name":"Save the Children!"}}]}, -{"id":54982,"name":"Gloves of Protection","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14368,"name":"Save the Children!"}}]}, -{"id":54983,"name":"Repeller's Bracers","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14347,"name":"Hold the Line"}}]}, -{"id":54984,"name":"Gilnean Soldier's Waistband","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14347,"name":"Hold the Line"}}]}, -{"id":54985,"name":"Alarmbringer's Mace","icon":"inv_mace_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"sources":[{"quest":{"id":14204,"name":"From the Shadows"}}]}, -{"id":54986,"name":"Houndmaster's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.8,"ilvl":5,"quality":1,"sources":[{"quest":{"id":14204,"name":"From the Shadows"}}]}, -{"id":54987,"name":"Marshalling Point","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.8,"ilvl":14,"quality":3,"sources":[{"quest":{"id":24904,"name":"The Battle for Gilneas City"}}]}, -{"id":54988,"name":"Cloak of the Clarion Call","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":3,"sources":[{"quest":{"id":24904,"name":"The Battle for Gilneas City"}}]}, -{"id":54989,"name":"Rallying Charge","icon":"inv_sword_05","type":13,"weaponType":9,"handType":4,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":52,"weaponSpeed":3.3,"ilvl":14,"quality":3,"sources":[{"quest":{"id":24904,"name":"The Battle for Gilneas City"}}]}, -{"id":54990,"name":"Gilnean Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":3,"sources":[{"quest":{"id":24904,"name":"The Battle for Gilneas City"}}]}, -{"id":54991,"name":"Marcus' Pickaxe","icon":"inv_pick_03","type":13,"weaponType":1,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.6,"ilvl":13,"quality":2,"sources":[{"quest":{"id":24674,"name":"Slaves to No One"}}]}, -{"id":54992,"name":"Laborer's Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":24674,"name":"Slaves to No One"}}]}, -{"id":54993,"name":"Emberstone Mail","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":24674,"name":"Slaves to No One"}}]}, -{"id":54994,"name":"Paramedic Bracers","icon":"inv_bracer_74v4","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24468,"name":"Stranded at the Marsh"}}]}, -{"id":54995,"name":"Hailwood Chestpiece","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2,"sources":[{"quest":{"id":24468,"name":"Stranded at the Marsh"}}]}, -{"id":54996,"name":"Rygna-Silk Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24501,"name":"Queen-Sized Troubles"}}]}, -{"id":54997,"name":"Arachnophobe's Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24501,"name":"Queen-Sized Troubles"}}]}, -{"id":54998,"name":"Braided Gossamer Armbands","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24501,"name":"Queen-Sized Troubles"}}]}, -{"id":54999,"name":"Seryl's Robes","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":24616,"name":"Losing Your Tail"}}]}, -{"id":55000,"name":"Hightailing Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":24616,"name":"Losing Your Tail"}}]}, -{"id":55001,"name":"Hotfoot Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":24616,"name":"Losing Your Tail"}}]}, -{"id":55002,"name":"Blue-Bloodied Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":24592,"name":"Betrayal at Tempest's Reach"}}]}, -{"id":55003,"name":"Greymane Cloak","icon":"inv_misc_cape_20","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":24592,"name":"Betrayal at Tempest's Reach"}}]}, -{"id":55004,"name":"Wolf Fur Coat","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":14093,"name":"All Hell Breaks Loose"}}]}, -{"id":55005,"name":"Darius' Sash","icon":"inv_belt_79v3","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":14154,"name":"By the Skin of His Teeth"}}]}, -{"id":55006,"name":"Dempsey's Gloves","icon":"inv_gauntlets_102v3","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":14154,"name":"By the Skin of His Teeth"}}]}, -{"id":55007,"name":"Dark Ranger's Vest","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14386,"name":"Leader of the Pack"}}]}, -{"id":55008,"name":"Leader's Boots","icon":"inv_boots_mail_11v4","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14386,"name":"Leader of the Pack"}}]}, -{"id":55009,"name":"Steadfast Boots","icon":"inv_boots_leather_10v3","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14218,"name":"By Blood and Ash"}}]}, -{"id":55010,"name":"Cannoneer's Leggings","icon":"inv_pants_mail_36v4","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14218,"name":"By Blood and Ash"}}]}, -{"id":55011,"name":"Mace of the Blood Price","icon":"inv_mace_66","type":13,"weaponType":4,"handType":4,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":52,"weaponSpeed":3.3,"ilvl":14,"quality":3,"sources":[{"quest":{"id":24904,"name":"The Battle for Gilneas City"}}]}, -{"id":55012,"name":"Night Elven Bow","icon":"inv_weapon_bow_01","type":14,"rangedWeaponType":1,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":2.8,"ilvl":15,"quality":2,"sources":[{"quest":{"id":24681,"name":"They Have Allies, But So Do We"}}]}, -{"id":55013,"name":"Seryl's Promise","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":3.3,"ilvl":15,"quality":2,"sources":[{"quest":{"id":24681,"name":"They Have Allies, But So Do We"}}]}, -{"id":55015,"name":"Gloves of the Two Birds","icon":"inv_gauntlets_102","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14382,"name":"Two By Sea"}}]}, -{"id":55016,"name":"Granny's Mallet","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.6,"ilvl":7,"quality":1,"sources":[{"quest":{"id":14401,"name":"Grandma's Cat"}}]}, -{"id":55017,"name":"Orange Blanket","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14401,"name":"Grandma's Cat"}}]}, -{"id":55018,"name":"Boatwork Boots","icon":"inv_boots_cloth_31","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14412,"name":"Washed Up"}}]}, -{"id":55019,"name":"Repair Belt","icon":"inv_belt_80","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14412,"name":"Washed Up"}}]}, -{"id":55020,"name":"Lorna's Gloves","icon":"inv_gauntlets_114","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14416,"name":"The Hungry Ettin"}}]}, -{"id":55021,"name":"Crowley's Belt","icon":"inv_belt_84v2","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14416,"name":"The Hungry Ettin"}}]}, -{"id":55126,"name":"Thistle Bear Girdle","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13569,"name":"The Ritual Bond"}}],"factionRestriction":1}, -{"id":55127,"name":"Tharill's Blessing","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":13523,"name":"Power Over the Tides"}}],"factionRestriction":1}, -{"id":55128,"name":"Silver Embossed Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,3,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":3,"sources":[{"quest":{"id":13591,"name":"Disturbing Connections"}}],"factionRestriction":1}, -{"id":55129,"name":"Silver Scaled Belt","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":3,"sources":[{"quest":{"id":13591,"name":"Disturbing Connections"}}],"factionRestriction":1}, -{"id":55132,"name":"Darkshore Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":2.3,"ilvl":15,"quality":2,"sources":[{"quest":{"id":13570,"name":"Remembrance of Auberdine"}}],"factionRestriction":1}, -{"id":55133,"name":"Wildkin Feather Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13578,"name":"Aroom's Farewell"}}],"factionRestriction":1}, -{"id":55134,"name":"Fiery Bracers","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":13580,"name":"Soothing the Elements"}}],"factionRestriction":1}, -{"id":55135,"name":"Tia's Ring","icon":"inv_jewelry_ring_76","type":11,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":13900,"name":"The Offering to Azshara"}}]}, -{"id":55281,"name":"Razorwind Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2}, -{"id":55290,"name":"Razorwind Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-135,-134],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55299,"name":"Razorwind Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-120],"weaponDamageMin":528,"weaponDamageMax":981,"weaponSpeed":2.7,"ilvl":272,"quality":2}, -{"id":55308,"name":"Moonbrook Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":272,"quality":2}, -{"id":55317,"name":"Razorwind Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-135,-134,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-139,-136,-133,-120],"weaponDamageMin":528,"weaponDamageMax":981,"weaponSpeed":2.7,"ilvl":272,"quality":2}, -{"id":55326,"name":"Razorwind Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2}, -{"id":55335,"name":"Razorwind Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-91,-41,-40,-5],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55344,"name":"Razorwind Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2}, -{"id":55353,"name":"Razorwind Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-5,-137,-120],"weaponDamageMin":528,"weaponDamageMax":981,"weaponSpeed":2.7,"ilvl":272,"quality":2}, -{"id":55362,"name":"Moonbrook Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-42,-39,-37,-36,-8,-6],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2}, -{"id":55371,"name":"Moonbrook Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55380,"name":"Razorwind Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2}, -{"id":55389,"name":"Razorwind Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55398,"name":"Moonbrook Amulet","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":272,"quality":2}, -{"id":55407,"name":"Razorwind Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55416,"name":"Moonbrook Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-125,-124,-123,-122,-121,-120,-118,-114,-91,-45,-43,-42,-41,-40,-39,-37,-36,-14,-8,-7,-6,-5],"ilvl":272,"quality":2}, -{"id":55425,"name":"Dreadmaul Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55434,"name":"Moonbrook Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2}, -{"id":55443,"name":"Razorwind Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55452,"name":"Razorwind Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-137,-136,-135,-134,-133,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2}, -{"id":55461,"name":"Razorwind Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-136,-135,-134,-123,-122,-121,-120,-118,-91,-43,-41,-40,-14,-7,-5,-133,-137],"weaponDamageMin":782,"weaponDamageMax":1174,"weaponSpeed":3.5,"ilvl":272,"quality":2}, -{"id":55470,"name":"Razorwind Knives","icon":"inv_throwingchakrum_01","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-133,-123,-122,-121,-118,-91,-43,-41,-40,-14,-7,-137,-136,-135,-134,-120,-5],"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.7,"ilvl":272,"quality":2}, -{"id":55479,"name":"Moonbrook Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"weaponDamageMin":470,"weaponDamageMax":873,"weaponSpeed":1.7,"ilvl":272,"quality":2}, -{"id":55488,"name":"Dreadmaul Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55497,"name":"Dreadmaul Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55506,"name":"Dreadmaul Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55515,"name":"Dreadmaul Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55524,"name":"Dreadmaul Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55533,"name":"Dreadmaul Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55542,"name":"Dreadmaul Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55551,"name":"Dreadmaul Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-139,-132,-131,-128,-127,-125,-124,-123,-122,-121,-120,-118,-45,-43,-42,-41,-39,-37,-36,-14,-8,-7,-6],"ilvl":272,"quality":2}, -{"id":55560,"name":"Nazferiti Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55569,"name":"Nazferiti Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55578,"name":"Nazferiti Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55587,"name":"Nazferiti Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55596,"name":"Nazferiti Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55605,"name":"Nazferiti Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55614,"name":"Nazferiti Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55623,"name":"Nazferiti Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55632,"name":"Stagalbog Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55641,"name":"Stagalbog Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55650,"name":"Stagalbog Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55659,"name":"Stagalbog Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55668,"name":"Stagalbog Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55677,"name":"Stagalbog Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55686,"name":"Stagalbog Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55695,"name":"Stagalbog Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-137,-136,-135,-134,-133,-132,-131,-91,-40,-5],"ilvl":272,"quality":2}, -{"id":55704,"name":"Ameth'Aran Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55713,"name":"Ameth'Aran Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55722,"name":"Ameth'Aran Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55731,"name":"Ameth'Aran Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55740,"name":"Ameth'Aran Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55749,"name":"Ameth'Aran Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55758,"name":"Ameth'Aran Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55767,"name":"Ameth'Aran Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-138,-132,-131,-130,-129,-114,-42,-41,-39,-37,-36,-8,-6],"ilvl":272,"quality":2}, -{"id":55885,"name":"Dampwick's \"Best\" Robes","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14021,"name":"Miner Troubles"}}]}, -{"id":55891,"name":"Swoop-Tail Shoulders","icon":"inv_shoulder_134v4","type":3,"armorType":1,"stats":[0,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14253,"name":"Fletch Me Some Plumage!"}}]}, -{"id":55892,"name":"Feather Lined Legguards","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,7,5,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14253,"name":"Fletch Me Some Plumage!"}}]}, -{"id":55893,"name":"Talonrend Stompers","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14253,"name":"Fletch Me Some Plumage!"}}]}, -{"id":55894,"name":"Featherlight Leggings","icon":"inv_pants_cloth_39","type":9,"armorType":1,"stats":[0,0,5,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14246,"name":"Early Adoption"}}]}, -{"id":55895,"name":"Collector's Padded Gauntlets","icon":"inv_gauntlets_119","type":7,"armorType":3,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14246,"name":"Early Adoption"}}]}, -{"id":55896,"name":"Emblazoned Girdle","icon":"inv_belt_85v4","type":8,"armorType":1,"stats":[0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14282,"name":"Mystery Solved"}}]}, -{"id":55897,"name":"Stonegouge Headgear","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14282,"name":"Mystery Solved"}}]}, -{"id":55898,"name":"Rockgrab Crushers","icon":"inv_gauntlets_119v3","type":7,"armorType":3,"stats":[0,0,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14282,"name":"Mystery Solved"}}]}, -{"id":55899,"name":"Lasherspike Wristguards","icon":"inv_bracer_62v4","type":6,"armorType":1,"stats":[0,0,2,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14306,"name":"Pulling Weeds"}}]}, -{"id":55900,"name":"Puncture-Binding Spaulder","icon":"inv_shoulder_136v1","type":3,"armorType":2,"stats":[0,0,4,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14306,"name":"Pulling Weeds"}}]}, -{"id":55901,"name":"Phytoresistant Helm","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[6,0,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14306,"name":"Pulling Weeds"}}]}, -{"id":55902,"name":"Kodo-Wrangler Cover","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,5,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14309,"name":"Calming the Kodo"}}]}, -{"id":55903,"name":"Dusty Lasso","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,5,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":14309,"name":"Calming the Kodo"}}]}, -{"id":55904,"name":"The Tranquilizer","icon":"inv_sword_97","type":13,"weaponType":9,"handType":4,"stats":[9,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":57,"weaponDamageMax":86,"weaponSpeed":3.3,"ilvl":32,"quality":2,"sources":[{"quest":{"id":14309,"name":"Calming the Kodo"}}]}, -{"id":55905,"name":"Spinescale Longbow","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":2.8,"ilvl":32,"quality":3,"sources":[{"quest":{"id":14301,"name":"Return and Report"}}]}, -{"id":55906,"name":"Balmy Wraps","icon":"inv_gauntlets_106","type":7,"armorType":1,"stats":[0,0,0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":14301,"name":"Return and Report"}}]}, -{"id":55907,"name":"Vest of Flowing Water","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,0,7,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":14301,"name":"Return and Report"}}]}, -{"id":55908,"name":"Crackling Girdle","icon":"inv_belt_98v3","type":8,"armorType":3,"stats":[0,0,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":14301,"name":"Return and Report"}}]}, -{"id":55909,"name":"Drape of Centaur Dreams","icon":"inv_misc_cape_14","type":4,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":14318,"name":"Delicate Negotiations"}}]}, -{"id":55910,"name":"Defiant Spire Shoulderguard","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,7,5,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":14318,"name":"Delicate Negotiations"}}]}, -{"id":55911,"name":"Stubborn Legguards","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[13,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":14318,"name":"Delicate Negotiations"}}]}, -{"id":55912,"name":"Wrought Formal Dagger","icon":"inv_weapon_shortblade_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.4,"ilvl":35,"quality":2,"sources":[{"quest":{"id":14332,"name":"Time For Change"}}]}, -{"id":55913,"name":"Emissary's Chestpiece","icon":"inv_chest_mail_19v3","type":5,"armorType":3,"stats":[7,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14332,"name":"Time For Change"}}]}, -{"id":55914,"name":"Silent Footpads","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,7,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14332,"name":"Time For Change"}}]}, -{"id":55915,"name":"Cutlass of Agogridon","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,4,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":78,"weaponSpeed":2.6,"ilvl":35,"quality":3,"sources":[{"quest":{"id":14394,"name":"Death to Agogridon"}}]}, -{"id":55916,"name":"Soulstar Mace","icon":"inv_hammer_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,3,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":1.6,"ilvl":35,"quality":3,"sources":[{"quest":{"id":14394,"name":"Death to Agogridon"}}]}, -{"id":55917,"name":"Kolkar Cleaver","icon":"inv_axe_104","type":13,"weaponType":1,"handType":4,"stats":[13,0,8,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":119,"weaponSpeed":3.3,"ilvl":35,"quality":3,"sources":[{"quest":{"id":14394,"name":"Death to Agogridon"}}]}, -{"id":55918,"name":"Leggings of the Windy Ravine","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,8,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14381,"name":"Cleansing Our Crevasse"}}],"factionRestriction":1}, -{"id":55919,"name":"Craggy Handgrips","icon":"inv_gauntlets_116","type":7,"armorType":2,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14381,"name":"Cleansing Our Crevasse"}}],"factionRestriction":1}, -{"id":55920,"name":"Marshweaver's Wristguards","icon":"inv_bracer_78v1","type":6,"armorType":3,"stats":[7,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14381,"name":"Cleansing Our Crevasse"}}],"factionRestriction":1}, -{"id":55921,"name":"Leggings of the Windy Ravine","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,8,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14346,"name":"Cleansing Our Crevasse"}}],"factionRestriction":2}, -{"id":55922,"name":"Craggy Handgrips","icon":"inv_gauntlets_116","type":7,"armorType":2,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14346,"name":"Cleansing Our Crevasse"}}],"factionRestriction":2}, -{"id":55923,"name":"Marshweaver's Wristguards","icon":"inv_bracer_78v1","type":6,"armorType":3,"stats":[7,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":3,"sources":[{"quest":{"id":14346,"name":"Cleansing Our Crevasse"}}],"factionRestriction":2}, -{"id":55924,"name":"Ring of Vigorous Interruption","icon":"inv_jewelry_ring_04","type":11,"stats":[0,7,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14364,"name":"Putting Their Heads Together"}}],"factionRestriction":1}, -{"id":55925,"name":"Grounding Choker","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,3,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14364,"name":"Putting Their Heads Together"}}],"factionRestriction":1}, -{"id":55926,"name":"Skull-Scorched Cloak","icon":"inv_misc_cape_14","type":4,"stats":[6,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14364,"name":"Putting Their Heads Together"}}],"factionRestriction":1}, -{"id":55927,"name":"Ring of Vigorous Interruption","icon":"inv_jewelry_ring_04","type":11,"stats":[0,7,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14227,"name":"Putting Their Heads Together"}}],"factionRestriction":2}, -{"id":55928,"name":"Grounding Choker","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,3,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14227,"name":"Putting Their Heads Together"}}],"factionRestriction":2}, -{"id":55929,"name":"Skull-Scorched Cloak","icon":"inv_misc_cape_14","type":4,"stats":[6,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14227,"name":"Putting Their Heads Together"}}],"factionRestriction":2}, -{"id":55930,"name":"Darkblood Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.8,"ilvl":35,"quality":2,"sources":[{"quest":{"id":14373,"name":"Infernal Encroachment"}}],"factionRestriction":1}, -{"id":55931,"name":"Demonkiller Mask","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,7,9,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14373,"name":"Infernal Encroachment"}}],"factionRestriction":1}, -{"id":55932,"name":"Claw-Scarred Bulwark","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,944,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14373,"name":"Infernal Encroachment"}}],"factionRestriction":1}, -{"id":55933,"name":"Darkblood Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.8,"ilvl":35,"quality":2,"sources":[{"quest":{"id":14342,"name":"Infernal Encroachment"}}],"factionRestriction":2}, -{"id":55934,"name":"Demonkiller Mask","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,7,9,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14342,"name":"Infernal Encroachment"}}],"factionRestriction":2}, -{"id":55935,"name":"Claw-Scarred Bulwark","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,944,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14342,"name":"Infernal Encroachment"}}],"factionRestriction":2}, -{"id":55936,"name":"Binding Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,5,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":14374,"name":"Portals of the Legion"}}],"factionRestriction":1}, -{"id":55937,"name":"Bracer of Portals","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,5,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14374,"name":"Portals of the Legion"}}],"factionRestriction":1}, -{"id":55938,"name":"Spaulders of Sealing","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[6,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14374,"name":"Portals of the Legion"}}],"factionRestriction":1}, -{"id":55939,"name":"Binding Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,5,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":5581,"name":"Portals of the Legion"}}],"factionRestriction":2}, -{"id":55940,"name":"Bracer of Portals","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,5,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":5581,"name":"Portals of the Legion"}}],"factionRestriction":2}, -{"id":55941,"name":"Spaulders of Sealing","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[6,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":5581,"name":"Portals of the Legion"}}],"factionRestriction":2}, -{"id":55942,"name":"Sandals of Ritual","icon":"inv_boots_cloth_33v4","type":10,"armorType":1,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14357,"name":"To the Hilt!"}}],"factionRestriction":1}, -{"id":55943,"name":"Gilt Cuirass","icon":"inv_chest_leather_27v3","type":5,"armorType":2,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14357,"name":"To the Hilt!"}}],"factionRestriction":1}, -{"id":55944,"name":"Profound Girdle","icon":"inv_belt_98","type":8,"armorType":3,"stats":[6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14357,"name":"To the Hilt!"}}],"factionRestriction":1}, -{"id":55945,"name":"Sandals of Ritual","icon":"inv_boots_cloth_33v4","type":10,"armorType":1,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14219,"name":"To the Hilt!"}}],"factionRestriction":2}, -{"id":55946,"name":"Gilt Cuirass","icon":"inv_chest_leather_27v3","type":5,"armorType":2,"stats":[0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14219,"name":"To the Hilt!"}}],"factionRestriction":2}, -{"id":55947,"name":"Profound Girdle","icon":"inv_belt_98","type":8,"armorType":3,"stats":[6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14219,"name":"To the Hilt!"}}],"factionRestriction":2}, -{"id":55948,"name":"Finder's Battleaxe","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,7,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.3,"ilvl":30,"quality":2,"sources":[{"quest":{"id":1456,"name":"The Karnitol Shipwreck"}}],"factionRestriction":1}, -{"id":55949,"name":"Karnitol's Leftover Robe","icon":"inv_chest_cloth_86v4","type":5,"armorType":1,"stats":[0,0,6,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":1456,"name":"The Karnitol Shipwreck"}}],"factionRestriction":1}, -{"id":55950,"name":"Treads of the Seeker","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":1456,"name":"The Karnitol Shipwreck"}}],"factionRestriction":1}, -{"id":55951,"name":"Choker of Renewal","icon":"inv_jewelry_necklace_13","type":2,"stats":[0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14354,"name":"Elune's Gifts"}}],"factionRestriction":1}, -{"id":55952,"name":"Gloves of Nurture","icon":"inv_gauntlets_106v4","type":7,"armorType":1,"stats":[0,0,4,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14354,"name":"Elune's Gifts"}}],"factionRestriction":1}, -{"id":55953,"name":"Shoulderguards of Protection","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[0,0,4,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14354,"name":"Elune's Gifts"}}],"factionRestriction":1}, -{"id":55954,"name":"Demonslayer's Signet","icon":"inv_jewelry_ring_24","type":11,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":14354,"name":"Elune's Gifts"}}],"factionRestriction":1}, -{"id":55955,"name":"Whalefang Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14334,"name":"Blubbergut"}}],"factionRestriction":2}, -{"id":55956,"name":"Blubber-Stained Grips","icon":"inv_gauntlets_106","type":7,"armorType":1,"stats":[0,0,3,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14334,"name":"Blubbergut"}}],"factionRestriction":2}, -{"id":55957,"name":"Cured Orcascale Spaulders","icon":"inv_shoulder_147","type":3,"armorType":3,"stats":[0,0,4,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14334,"name":"Blubbergut"}}],"factionRestriction":2}, -{"id":55958,"name":"Orca-Tooth Ring","icon":"inv_jewelry_ring_84","type":11,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14334,"name":"Blubbergut"}}],"factionRestriction":2}, -{"id":55959,"name":"Coven Battleaxe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,9,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":14335,"name":"Chipping In"}}],"factionRestriction":2}, -{"id":55960,"name":"Carapace Robes","icon":"inv_chest_cloth_86","type":5,"armorType":1,"stats":[0,0,7,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14335,"name":"Chipping In"}}],"factionRestriction":2}, -{"id":55961,"name":"Ghost Walker Treads","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":14335,"name":"Chipping In"}}],"factionRestriction":2}, -{"id":55962,"name":"Nimblefinger Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,7,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14198,"name":"Rider on the Storm"}}],"factionRestriction":2}, -{"id":55963,"name":"Tranquility of Furien","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14198,"name":"Rider on the Storm"}}],"factionRestriction":2}, -{"id":55964,"name":"Flashfire Collar","icon":"inv_jewelry_amulet_05","type":2,"stats":[6,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":3,"sources":[{"quest":{"id":14198,"name":"Rider on the Storm"}}],"factionRestriction":2}, -{"id":56004,"name":"Talons of the Storm Crow","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":3.5,"ilvl":232,"quality":4}, -{"id":56622,"name":"Thistle Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13876,"name":"Too Far Gone"}}],"factionRestriction":1}, -{"id":56623,"name":"Zoram'gar Cloak","icon":"inv_misc_cape_15","type":4,"stats":[0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13876,"name":"Too Far Gone"}}],"factionRestriction":1}, -{"id":56624,"name":"Falathim-Washed Robes","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":56625,"name":"Broadleaf Mantle","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":56626,"name":"Maestra's Gloves","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":56627,"name":"Labor Camp Frock","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13640,"name":"Management Material"}}],"factionRestriction":2}, -{"id":56628,"name":"Manager's Mantle","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13640,"name":"Management Material"}}],"factionRestriction":2}, -{"id":56629,"name":"Hands of Encouragement","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13640,"name":"Management Material"}}],"factionRestriction":2}, -{"id":56630,"name":"Delgren's Leggings","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13626,"name":"Respect for the Fallen"}}],"factionRestriction":1}, -{"id":56631,"name":"Onaeya's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13626,"name":"Respect for the Fallen"}}],"factionRestriction":1}, -{"id":56632,"name":"Feero's Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13626,"name":"Respect for the Fallen"}}],"factionRestriction":1}, -{"id":56633,"name":"Leggings of the Traveling Medic","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13613,"name":"Rescue the Fallen"}}],"factionRestriction":2}, -{"id":56634,"name":"Halfmoon Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13613,"name":"Rescue the Fallen"}}],"factionRestriction":2}, -{"id":56635,"name":"First Responder's Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13613,"name":"Rescue the Fallen"}}],"factionRestriction":2}, -{"id":56636,"name":"Forest Grace Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13796,"name":"The Forest Heart"}}],"factionRestriction":1}, -{"id":56637,"name":"Severed Druid's Leggings","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13796,"name":"The Forest Heart"}}],"factionRestriction":1}, -{"id":56638,"name":"Gnarlbark Shoulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13796,"name":"The Forest Heart"}}],"factionRestriction":1}, -{"id":56639,"name":"Mourner's Stole","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13653,"name":"Crisis at Splintertree"}}],"factionRestriction":2}, -{"id":56640,"name":"Leggings of Loss","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13653,"name":"Crisis at Splintertree"}}],"factionRestriction":2}, -{"id":56641,"name":"Burden of Sacrifice","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13653,"name":"Crisis at Splintertree"}}],"factionRestriction":2}, -{"id":56642,"name":"Starwhisper Monnions","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":56643,"name":"Woodguard Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{}}]}, -{"id":56644,"name":"Gorat's Bequest","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13621,"name":"Gorat's Vengeance"}}],"factionRestriction":2}, -{"id":56645,"name":"Kadrak's Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13621,"name":"Gorat's Vengeance"}}],"factionRestriction":2}, -{"id":56646,"name":"Shredder Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":36,"weaponSpeed":2.6,"ilvl":21,"quality":2,"sources":[{"quest":{"id":13698,"name":"Explosives Shredding"}}],"factionRestriction":1}, -{"id":56647,"name":"Powder Burn Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13698,"name":"Explosives Shredding"}}],"factionRestriction":1}, -{"id":56648,"name":"Forestkeeper Legguards","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13698,"name":"Explosives Shredding"}}],"factionRestriction":1}, -{"id":56649,"name":"Folly's Edge","icon":"inv_sword_159","type":13,"weaponType":9,"handType":2,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":36,"weaponSpeed":2.6,"ilvl":21,"quality":2,"sources":[{"quest":{"id":13730,"name":"Playing With Felfire"}}],"factionRestriction":2}, -{"id":56650,"name":"Felfire-Tainted Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13730,"name":"Playing With Felfire"}}],"factionRestriction":2}, -{"id":56651,"name":"Legguards of Abandoned Virtue","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13730,"name":"Playing With Felfire"}}],"factionRestriction":2}, -{"id":56652,"name":"Ablution Slippers","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,2,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13644,"name":"That Which Has Risen"}}],"factionRestriction":1}, -{"id":56653,"name":"Somber Treads","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13644,"name":"That Which Has Risen"}}],"factionRestriction":1}, -{"id":56654,"name":"Heartwise Boon","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13644,"name":"That Which Has Risen"}}],"factionRestriction":1}, -{"id":56655,"name":"Bloodcup Slippers","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,3,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13875,"name":"Gurtar's Request"}}],"factionRestriction":2}, -{"id":56656,"name":"Faithful Treads","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13875,"name":"Gurtar's Request"}}],"factionRestriction":2}, -{"id":56657,"name":"Gloves of Unforgotten Vows","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13875,"name":"Gurtar's Request"}}],"factionRestriction":2}, -{"id":56658,"name":"Eventide Bow","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,2,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.8,"ilvl":23,"quality":3,"sources":[{"quest":{}}]}, -{"id":56659,"name":"Gloaming Band","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{}}]}, -{"id":56660,"name":"Dusk-Stained Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{}}]}, -{"id":56661,"name":"Preemptive Striker","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.6,"ilvl":23,"quality":3,"sources":[{"quest":{"id":13947,"name":"Blastranaar!"}}],"factionRestriction":2}, -{"id":56662,"name":"Staff of Fiery Fate","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":78,"weaponSpeed":3.3,"ilvl":23,"quality":3,"sources":[{"quest":{"id":13947,"name":"Blastranaar!"}}],"factionRestriction":2}, -{"id":56663,"name":"Leggings of Hellscream's Watch","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":13947,"name":"Blastranaar!"}}],"factionRestriction":2}, -{"id":56664,"name":"Shael'dryn's Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{}}]}, -{"id":56665,"name":"Possumfoot Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{}}]}, -{"id":56666,"name":"Dissembling Bracers","icon":"inv_bracer_30c","type":6,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{}}]}, -{"id":56667,"name":"Cloak of Readiness","icon":"inv_misc_cape_14","type":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13943,"name":"Breathing Room"}}],"factionRestriction":2}, -{"id":56668,"name":"Bracers of Humility","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,1,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13943,"name":"Breathing Room"}}],"factionRestriction":2}, -{"id":56669,"name":"Groundwork Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13943,"name":"Breathing Room"}}],"factionRestriction":2}, -{"id":56670,"name":"Raynewood Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13935,"name":"Defend the Tree!"}}],"factionRestriction":1}, -{"id":56671,"name":"Shadumbra's Wrath","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13935,"name":"Defend the Tree!"}}],"factionRestriction":1}, -{"id":56672,"name":"Frostshadow Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":2.8,"ilvl":23,"quality":2,"sources":[{"quest":{"id":13935,"name":"Defend the Tree!"}}],"factionRestriction":1}, -{"id":56673,"name":"Fiery Loop","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13853,"name":"Return Fire"}}],"factionRestriction":1}, -{"id":56674,"name":"Thenysil's Vest","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,3,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13853,"name":"Return Fire"}}],"factionRestriction":1}, -{"id":56675,"name":"Astranaar Legguards","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[4,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13853,"name":"Return Fire"}}],"factionRestriction":1}, -{"id":56676,"name":"Whitemoon Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13924,"name":"All's Well"}}],"factionRestriction":1}, -{"id":56677,"name":"Belt of Healing Charms","icon":"inv_belt_41","type":8,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13924,"name":"All's Well"}}],"factionRestriction":1}, -{"id":56678,"name":"Boots of the Deliverer","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":13924,"name":"All's Well"}}],"factionRestriction":1}, -{"id":56679,"name":"Dissector","icon":"inv_weapon_shortblade_113","type":13,"weaponType":2,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.8,"ilvl":24,"quality":3,"sources":[{"quest":{}}]}, -{"id":56680,"name":"Shadestar Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.3,"ilvl":24,"quality":3,"sources":[{"quest":{}}]}, -{"id":56681,"name":"Searching Wand","icon":"inv_misc_orb_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.6,"ilvl":24,"quality":3,"sources":[{"quest":{}}]}, -{"id":56682,"name":"Band of the Skull Crusher","icon":"inv_jewelry_ring_38","type":11,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"sources":[{"quest":{}}]}, -{"id":56683,"name":"Blossom of the Earthen Ring","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13886,"name":"Vortex"}}],"factionRestriction":1}, -{"id":56684,"name":"Subduer's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13886,"name":"Vortex"}}],"factionRestriction":1}, -{"id":56685,"name":"Belt of Equilibrium","icon":"inv_belt_09","type":8,"armorType":3,"stats":[3,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13886,"name":"Vortex"}}],"factionRestriction":1}, -{"id":56686,"name":"Blossom of the Earthen Ring","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13888,"name":"Vortex"}}],"factionRestriction":2}, -{"id":56687,"name":"Subduer's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13888,"name":"Vortex"}}],"factionRestriction":2}, -{"id":56688,"name":"Belt of Equilibrium","icon":"inv_belt_09","type":8,"armorType":3,"stats":[2,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":13888,"name":"Vortex"}}],"factionRestriction":2}, -{"id":56689,"name":"Adansonian Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":13987,"name":"The Last Stand"}}],"factionRestriction":1}, -{"id":56690,"name":"Unringed Bands","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,2,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":13987,"name":"The Last Stand"}}],"factionRestriction":1}, -{"id":56691,"name":"Baobab Fruit Shell","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":13987,"name":"The Last Stand"}}],"factionRestriction":1}, -{"id":56692,"name":"Weaponized Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":13980,"name":"They're Out There!"}}],"factionRestriction":2}, -{"id":56693,"name":"Backwatcher's Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":13980,"name":"They're Out There!"}}],"factionRestriction":2}, -{"id":56694,"name":"Silverwind Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,2,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}]}, -{"id":56695,"name":"Wolfrunner Boots","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{}}]}, -{"id":56696,"name":"Legacy of Teronis","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[3,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":2.6,"ilvl":25,"quality":2,"sources":[{"quest":{}}]}, -{"id":56697,"name":"Blackfathom Mace","icon":"inv_wand_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.6,"ilvl":25,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":56698,"name":"Gift of the Enigmatic Tree","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.3,"ilvl":25,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":56699,"name":"Aluwyn's Legguards","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":56700,"name":"Short Circuit Band","icon":"inv_misc_gear_03","type":11,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":56701,"name":"Jinxed Vest","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":56702,"name":"Saw Blade","icon":"inv_sword_107","type":13,"weaponType":9,"handType":4,"stats":[10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.3,"ilvl":25,"quality":3}, -{"id":56703,"name":"Jalin's Recompense","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":13979,"name":"The Goblin Braintrust"}}],"factionRestriction":1}, -{"id":56704,"name":"Braintrust Vest","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":13979,"name":"The Goblin Braintrust"}}],"factionRestriction":1}, -{"id":56705,"name":"Skunkworks Sword","icon":"inv_sword_110","type":13,"weaponType":9,"handType":4,"stats":[10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.3,"ilvl":25,"quality":3,"sources":[{"quest":{"id":13979,"name":"The Goblin Braintrust"}}],"factionRestriction":1}, -{"id":56706,"name":"Greenpaw Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":13989,"name":"King of the Foulweald"}}],"factionRestriction":1}, -{"id":56707,"name":"Band of Perseverance","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":13989,"name":"King of the Foulweald"}}],"factionRestriction":1}, -{"id":56708,"name":"Bow of Ire","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,2,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.8,"ilvl":23,"quality":3,"sources":[{"quest":{"id":13842,"name":"Dread Head Redemption"}}],"factionRestriction":2}, -{"id":56709,"name":"Garrosh's Pardon","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":13842,"name":"Dread Head Redemption"}}],"factionRestriction":2}, -{"id":56710,"name":"Unbountied Cloak","icon":"inv_misc_cape_14","type":4,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":13842,"name":"Dread Head Redemption"}}],"factionRestriction":2}, -{"id":56711,"name":"Impish Blade","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.8,"ilvl":22,"quality":3,"sources":[{"quest":{"id":13798,"name":"Rain of Destruction"}}],"factionRestriction":2}, -{"id":56712,"name":"Accursed Mace","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.3,"ilvl":22,"quality":3,"sources":[{"quest":{"id":13798,"name":"Rain of Destruction"}}],"factionRestriction":2}, -{"id":56713,"name":"Durak's Wand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":46,"weaponSpeed":1.6,"ilvl":22,"quality":3,"sources":[{"quest":{"id":13798,"name":"Rain of Destruction"}}],"factionRestriction":2}, -{"id":56714,"name":"Band of Foul Strength","icon":"inv_jewelry_ring_08","type":11,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"sources":[{"quest":{"id":13798,"name":"Rain of Destruction"}}],"factionRestriction":2}, -{"id":56715,"name":"Oily Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13890,"name":"Keep the Fires Burning"}}],"factionRestriction":2}, -{"id":56716,"name":"Alighted Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13890,"name":"Keep the Fires Burning"}}],"factionRestriction":2}, -{"id":56717,"name":"Mystlash Bracers","icon":"inv_bracer_30c","type":6,"armorType":3,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13890,"name":"Keep the Fires Burning"}}],"factionRestriction":2}, -{"id":56718,"name":"Detective Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13871,"name":"Security!"}}],"factionRestriction":2}, -{"id":56719,"name":"Pilfered Kaldorei Belt","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13871,"name":"Security!"}}],"factionRestriction":2}, -{"id":56720,"name":"Security Crossbow","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.8,"ilvl":22,"quality":2,"sources":[{"quest":{"id":13871,"name":"Security!"}}],"factionRestriction":2}, -{"id":56721,"name":"Meat Packer Ribbon","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13920,"name":"Before You Go..."}}],"factionRestriction":2}, -{"id":56722,"name":"Je'neu's Hunting Vest","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,2,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13920,"name":"Before You Go..."}}],"factionRestriction":2}, -{"id":56723,"name":"Deerstalker Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[3,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13920,"name":"Before You Go..."}}],"factionRestriction":2}, -{"id":56724,"name":"Wet Work Gloves","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13865,"name":"Wet Work"}}],"factionRestriction":2}, -{"id":56725,"name":"Belt of Secret Signs","icon":"inv_belt_41","type":8,"armorType":2,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13865,"name":"Wet Work"}}],"factionRestriction":2}, -{"id":56726,"name":"Disarray Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13865,"name":"Wet Work"}}],"factionRestriction":2}, -{"id":56727,"name":"Scrupleless Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,2,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13805,"name":"Pierce Their Heart!"}}],"factionRestriction":2}, -{"id":56728,"name":"Bloodtaint Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":13805,"name":"Pierce Their Heart!"}}],"factionRestriction":2}, -{"id":56729,"name":"Forest Heart Piercer","icon":"inv_sword_28","type":13,"weaponType":9,"handType":2,"stats":[1,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":2.6,"ilvl":22,"quality":2,"sources":[{"quest":{"id":13805,"name":"Pierce Their Heart!"}}],"factionRestriction":2}, -{"id":56836,"name":"Overflowing Purple Brewfest Stein","icon":"inv_misc_beer_08","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":56840,"name":"Oasis Mantle","icon":"inv_shoulder_146v4","type":3,"armorType":1,"stats":[0,0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25032,"name":"Secrets in the Oasis"}}]}, -{"id":56841,"name":"Half Truth Handlers","icon":"inv_gauntlets_115","type":7,"armorType":2,"stats":[0,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25032,"name":"Secrets in the Oasis"}}]}, -{"id":56842,"name":"Mazoga's Discarded Coif","icon":"inv_helmet_188v1","type":1,"armorType":3,"stats":[0,0,7,9,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25032,"name":"Secrets in the Oasis"}}]}, -{"id":56843,"name":"Lighthammer Pauldrons","icon":"inv_shoulder_135","type":3,"armorType":4,"stats":[7,0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25032,"name":"Secrets in the Oasis"}}]}, -{"id":56844,"name":"Bone Valley Mace","icon":"inv_misc_bone_humanskull_01","type":13,"weaponType":4,"handType":4,"stats":[0,9,8,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":3.3,"ilvl":45,"quality":2,"sources":[{"quest":{"id":25025,"name":"Sang'thraze the Deflector"}}]}, -{"id":56845,"name":"Blood Speaker Tunic","icon":"inv_chest_mail_20v1","type":5,"armorType":3,"stats":[0,0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25025,"name":"Sang'thraze the Deflector"}}]}, -{"id":56846,"name":"Bloodcraver Pauldrons","icon":"inv_shoulder_142v3","type":3,"armorType":4,"stats":[7,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25025,"name":"Sang'thraze the Deflector"}}]}, -{"id":56847,"name":"Chelsea's Nightmare","icon":"inv_misc_food_meat_raw_08","type":12,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25522,"name":"Gargantapid"}}]}, -{"id":56848,"name":"Rustflutter Boots","icon":"inv_boots_leather_12","type":10,"armorType":2,"stats":[0,5,7,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25522,"name":"Gargantapid"}}]}, -{"id":56849,"name":"Gus' First Aid Kit","icon":"inv_box_03","type":12,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25522,"name":"Gargantapid"}}]}, -{"id":56851,"name":"Pendant of the Gaping Chasm","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":24953,"name":"Just Trying to Kill Some Bugs"}}]}, -{"id":56852,"name":"Mostly-Amazing Gloves","icon":"inv_gauntlets_118v2","type":7,"armorType":1,"stats":[0,0,6,7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":24953,"name":"Just Trying to Kill Some Bugs"}}]}, -{"id":56853,"name":"Bootscuff Boots","icon":"inv_boots_mail_15","type":10,"armorType":3,"stats":[0,0,10,8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":24953,"name":"Just Trying to Kill Some Bugs"}}]}, -{"id":56854,"name":"Bootlegger Legplates","icon":"inv_pants_plate_38v1","type":9,"armorType":4,"stats":[8,0,13,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":24953,"name":"Just Trying to Kill Some Bugs"}}]}, -{"id":56855,"name":"Dangerous Machinery Piece","icon":"inv_misc_gear_04","type":11,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":25072,"name":"A Few Good Goblins"}}]}, -{"id":56856,"name":"Bughunter Belt","icon":"inv_belt_90v1","type":8,"armorType":2,"stats":[0,7,10,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":25072,"name":"A Few Good Goblins"}}]}, -{"id":56857,"name":"Loaner Bracers","icon":"inv_bracer_77v3","type":6,"armorType":3,"stats":[0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":25072,"name":"A Few Good Goblins"}}]}, -{"id":56858,"name":"Goblin Treat Tin","icon":"inv_chest_plate29v2","type":5,"armorType":4,"stats":[7,0,10,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":25072,"name":"A Few Good Goblins"}}]}, -{"id":56859,"name":"Nasmira's Soup Stirrer","icon":"inv_staff_26","type":13,"weaponType":8,"handType":4,"stats":[0,0,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":3.3,"ilvl":45,"quality":2,"sources":[{"quest":{"id":25050,"name":"Rocket Rescue"}}],"factionRestriction":1}, -{"id":56860,"name":"Dud Bomb","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25050,"name":"Rocket Rescue"}}],"factionRestriction":1}, -{"id":56861,"name":"Salvaged Steamwheedle Helm","icon":"inv_helmet_174","type":1,"armorType":4,"stats":[13,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":25050,"name":"Rocket Rescue"}}],"factionRestriction":1}, -{"id":56862,"name":"Failed Liferocket Prototype","icon":"inv_weapon_rifle_41","type":14,"rangedWeaponType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2.8,"ilvl":45,"quality":2,"sources":[{"quest":{"id":25050,"name":"Rocket Rescue"}}],"factionRestriction":1}, -{"id":56863,"name":"Nasmira's Soup Stirrer","icon":"inv_staff_26","type":13,"weaponType":8,"handType":4,"stats":[0,0,13,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":3.3,"ilvl":45,"quality":2,"sources":[{"quest":{"id":24910,"name":"Rocket Rescue"}}],"factionRestriction":2}, -{"id":56864,"name":"Dud Bomb","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":24910,"name":"Rocket Rescue"}}],"factionRestriction":2}, -{"id":56865,"name":"Salvaged Steamwheedle Helm","icon":"inv_helmet_174","type":1,"armorType":4,"stats":[13,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":24910,"name":"Rocket Rescue"}}],"factionRestriction":2}, -{"id":56866,"name":"Failed Liferocket Prototype","icon":"inv_weapon_rifle_41","type":14,"rangedWeaponType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":127,"weaponSpeed":2.8,"ilvl":45,"quality":2,"sources":[{"quest":{"id":24910,"name":"Rocket Rescue"}}],"factionRestriction":2}, -{"id":56867,"name":"Pretty Please Robes","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25166,"name":"Captain Dreadbeard"}}],"factionRestriction":1}, -{"id":56868,"name":"Dreadbeard Strangler Gloves","icon":"inv_gauntlets_115v3","type":7,"armorType":2,"stats":[0,0,6,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25166,"name":"Captain Dreadbeard"}}],"factionRestriction":1}, -{"id":56869,"name":"Investigator's Belt","icon":"inv_belt_99v2","type":8,"armorType":3,"stats":[0,5,7,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25166,"name":"Captain Dreadbeard"}}],"factionRestriction":1}, -{"id":56870,"name":"Impatient Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[9,0,5,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25166,"name":"Captain Dreadbeard"}}],"factionRestriction":1}, -{"id":56871,"name":"Flirtation Robes","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24950,"name":"Captain Dreadbeard"}}],"factionRestriction":2}, -{"id":56872,"name":"Dreadbeard Strangler Gloves","icon":"inv_gauntlets_115v3","type":7,"armorType":2,"stats":[0,0,6,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24950,"name":"Captain Dreadbeard"}}],"factionRestriction":2}, -{"id":56873,"name":"Investigator's Belt","icon":"inv_belt_99v2","type":8,"armorType":3,"stats":[0,5,7,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24950,"name":"Captain Dreadbeard"}}],"factionRestriction":2}, -{"id":56874,"name":"Impatient Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[9,0,5,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24950,"name":"Captain Dreadbeard"}}],"factionRestriction":2}, -{"id":56875,"name":"Southsea Hood","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25052,"name":"Dead Man's Chest"}}],"factionRestriction":1}, -{"id":56876,"name":"Golly Gosh Leggings","icon":"inv_pants_leather_40","type":9,"armorType":2,"stats":[0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25052,"name":"Dead Man's Chest"}}],"factionRestriction":1}, -{"id":56877,"name":"Nose Thumber Gloves","icon":"inv_gauntlets_120v1","type":7,"armorType":3,"stats":[0,0,9,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25052,"name":"Dead Man's Chest"}}],"factionRestriction":1}, -{"id":56878,"name":"Cleaned-Up Pauldrons","icon":"inv_shoulder_142v3","type":3,"armorType":4,"stats":[0,0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":25052,"name":"Dead Man's Chest"}}],"factionRestriction":1}, -{"id":56879,"name":"Southsea Hood","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24927,"name":"Dead Man's Chest"}}],"factionRestriction":2}, -{"id":56880,"name":"Dellot's Leggings","icon":"inv_pants_leather_40","type":9,"armorType":2,"stats":[0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24927,"name":"Dead Man's Chest"}}],"factionRestriction":2}, -{"id":56881,"name":"Branded Gloves","icon":"inv_gauntlets_120v1","type":7,"armorType":3,"stats":[0,0,9,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24927,"name":"Dead Man's Chest"}}],"factionRestriction":2}, -{"id":56882,"name":"Cleaned-Up Pauldrons","icon":"inv_shoulder_142v3","type":3,"armorType":4,"stats":[0,0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":24927,"name":"Dead Man's Chest"}}],"factionRestriction":2}, -{"id":56883,"name":"Meatface Pummler","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":2.6,"ilvl":48,"quality":2,"sources":[{"quest":{"id":25065,"name":"You Too, Brute?"}}],"factionRestriction":1}, -{"id":56884,"name":"\"Smart Bracers\"","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,0,7,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":25065,"name":"You Too, Brute?"}}],"factionRestriction":1}, -{"id":56885,"name":"Dagger of the Ides","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[5,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":1.8,"ilvl":48,"quality":2,"sources":[{"quest":{"id":25065,"name":"You Too, Brute?"}}],"factionRestriction":1}, -{"id":56886,"name":"Gnomeregan Medallion of Merit","icon":"inv_jewelry_amulet_03","type":2,"stats":[5,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":25065,"name":"You Too, Brute?"}}],"factionRestriction":1}, -{"id":56887,"name":"Knuckle Down","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":2.6,"ilvl":48,"quality":2,"sources":[{"quest":{"id":25001,"name":"Sandscraper"}}],"factionRestriction":2}, -{"id":56888,"name":"Sandscraper Bracers","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,0,7,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":25001,"name":"Sandscraper"}}],"factionRestriction":2}, -{"id":56889,"name":"Business Finisher","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[5,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":1.8,"ilvl":48,"quality":2,"sources":[{"quest":{"id":25001,"name":"Sandscraper"}}],"factionRestriction":2}, -{"id":56890,"name":"Bilgewater Brooch","icon":"inv_jewelry_amulet_05","type":2,"stats":[5,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":25001,"name":"Sandscraper"}}],"factionRestriction":2}, -{"id":56891,"name":"Thunderdrome Ring","icon":"inv_jewelry_ring_46","type":11,"stats":[0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25513,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":1}, -{"id":56892,"name":"Kelsey's Necklace","icon":"inv_misc_enggizmos_12","type":2,"stats":[0,0,5,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25513,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":1}, -{"id":56893,"name":"Dreadshredder Cloak","icon":"inv_misc_cape_20","type":4,"stats":[8,0,11,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25513,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":1}, -{"id":56894,"name":"Thunderdrome Ring","icon":"inv_jewelry_ring_46","type":11,"stats":[0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25591,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":2}, -{"id":56895,"name":"Kelsey's Necklace","icon":"inv_misc_enggizmos_12","type":2,"stats":[0,0,5,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25591,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":2}, -{"id":56896,"name":"Dreadshredder Cloak","icon":"inv_misc_cape_20","type":4,"stats":[8,0,11,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":25591,"name":"Thunderdrome: Grudge Match!"}}],"factionRestriction":2}, -{"id":56897,"name":"Hieroglyphic Helm","icon":"inv_helmet_179v1","type":1,"armorType":2,"stats":[0,14,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25421,"name":"The Grand Tablet"}}],"factionRestriction":1}, -{"id":56898,"name":"Translation Boots","icon":"inv_boots_mail_15v3","type":10,"armorType":3,"stats":[0,7,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25421,"name":"The Grand Tablet"}}],"factionRestriction":1}, -{"id":56899,"name":"Rosy Tablet Belt","icon":"inv_belt_86v1","type":8,"armorType":4,"stats":[7,0,6,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25421,"name":"The Grand Tablet"}}],"factionRestriction":1}, -{"id":56900,"name":"Hieroglyphic Helm","icon":"inv_helmet_179v1","type":1,"armorType":2,"stats":[0,14,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25107,"name":"The Grand Tablet"}}],"factionRestriction":2}, -{"id":56901,"name":"Translation Boots","icon":"inv_boots_mail_15v3","type":10,"armorType":3,"stats":[0,7,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25107,"name":"The Grand Tablet"}}],"factionRestriction":2}, -{"id":56902,"name":"Rosy Tablet Belt","icon":"inv_belt_86v1","type":8,"armorType":4,"stats":[7,0,6,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25107,"name":"The Grand Tablet"}}],"factionRestriction":2}, -{"id":56903,"name":"Gatewatcher Belt","icon":"inv_belt_97v2","type":8,"armorType":1,"stats":[0,0,6,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25420,"name":"Ancient Obstacles"}}],"factionRestriction":1}, -{"id":56904,"name":"Decomissioner's Monnions","icon":"inv_shoulder_139v2","type":3,"armorType":2,"stats":[0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25420,"name":"Ancient Obstacles"}}],"factionRestriction":1}, -{"id":56905,"name":"Sandstone Pauldrons","icon":"inv_shoulder_148v3","type":3,"armorType":3,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25420,"name":"Ancient Obstacles"}}],"factionRestriction":1}, -{"id":56906,"name":"Gatewatcher Belt","icon":"inv_belt_97v2","type":8,"armorType":1,"stats":[0,0,6,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25017,"name":"Ancient Obstacles"}}],"factionRestriction":2}, -{"id":56907,"name":"Examiner's Monnions","icon":"inv_shoulder_139v2","type":3,"armorType":2,"stats":[0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25017,"name":"Ancient Obstacles"}}],"factionRestriction":2}, -{"id":56908,"name":"Sandstone Pauldrons","icon":"inv_shoulder_148v3","type":3,"armorType":3,"stats":[0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":25017,"name":"Ancient Obstacles"}}],"factionRestriction":2}, -{"id":57101,"name":"Laminated Scale Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55}, -{"id":57110,"name":"Goblin Nurse's Gown","icon":"inv_chest_cloth_12","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":57115,"name":"Goblin Nurse Hat","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-39,-38,-37,-36,-34,-33,-32,-31,-26,-25,-23,-22,-21,-19,-16,-15,-9,-8,-6,-35],"ilvl":1,"quality":2}, -{"id":57116,"name":"Goblin Nurse Hat 2","icon":"inv_helmet_186","type":1,"armorType":1,"stats":[0,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2}, -{"id":57139,"name":"Night Web Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":8,"weaponSpeed":2.5,"ilvl":5,"quality":1,"sources":[{"quest":{"id":24973,"name":"Night Web's Hollow"}}],"factionRestriction":2}, -{"id":57143,"name":"Mountaineer's Belt","icon":"inv_belt_80","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":24996,"name":"Holland's Experiment"}}],"factionRestriction":2}, -{"id":57144,"name":"Gallow's End Gauntlets","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":24996,"name":"Holland's Experiment"}}],"factionRestriction":2}, -{"id":57145,"name":"Simmer's Bracers","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":24978,"name":"Reaping the Reapers"}}],"factionRestriction":2}, -{"id":57146,"name":"Scythe Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":2.6,"ilvl":6,"quality":1,"sources":[{"quest":{"id":24978,"name":"Reaping the Reapers"}}],"factionRestriction":2}, -{"id":57147,"name":"Xavren's Gloves","icon":"inv_gauntlets_102","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":24976,"name":"Variety is the Spice of Death"}}],"factionRestriction":2}, -{"id":57148,"name":"Marrowpetal Boots","icon":"inv_boots_mail_11v4","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":24976,"name":"Variety is the Spice of Death"}}],"factionRestriction":2}, -{"id":57149,"name":"Cauldron Gloves","icon":"inv_gauntlets_114v2","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24995,"name":"Off the Scales"}}],"factionRestriction":2}, -{"id":57150,"name":"Vile Fin Belt","icon":"inv_belt_84v2","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24995,"name":"Off the Scales"}}],"factionRestriction":2}, -{"id":57151,"name":"Gretchen's Slippers","icon":"inv_boots_cloth_31v2","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24988,"name":"The Chill of Death"}}],"factionRestriction":2}, -{"id":57152,"name":"Duskbat Pants","icon":"inv_pants_leather_38v4","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24988,"name":"The Chill of Death"}}],"factionRestriction":2}, -{"id":57153,"name":"Death's Watch Bracer","icon":"inv_bracer_61v2","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24988,"name":"The Chill of Death"}}],"factionRestriction":2}, -{"id":57154,"name":"Executor's Cape","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":57155,"name":"Worgen Slaying Sword","icon":"inv_sword_bloodelf_03","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":17,"weaponSpeed":3.3,"ilvl":8,"quality":1}, -{"id":57156,"name":"Prodigal Lich Bracer","icon":"inv_bracer_73v2","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":57157,"name":"Dark Lady's Vest","icon":"inv_chest_leather_26v4","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":57158,"name":"Foul Gnoll Belt","icon":"inv_belt_79v2","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":24998,"name":"Maggot Eye"}}],"factionRestriction":2}, -{"id":57159,"name":"Belt of Brill","icon":"inv_belt_80v4","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":24998,"name":"Maggot Eye"}}],"factionRestriction":2}, -{"id":57160,"name":"Garren's Leggings","icon":"inv_pants_mail_36v2","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":24998,"name":"Maggot Eye"}}],"factionRestriction":2}, -{"id":57161,"name":"Agamand Family Leggings","icon":"inv_pants_cloth_41v2","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25003,"name":"The Family Crypt"}}],"factionRestriction":2}, -{"id":57162,"name":"Agamand Family Bracelet","icon":"inv_bracer_74v4","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25003,"name":"The Family Crypt"}}],"factionRestriction":2}, -{"id":57163,"name":"Agamand Family Riding Boots","icon":"inv_boots_mail_11v2","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25003,"name":"The Family Crypt"}}],"factionRestriction":2}, -{"id":57164,"name":"Devlin's Shirt","icon":"inv_chest_cloth_84v2","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25006,"name":"The Grasp Weakens"}}],"factionRestriction":2}, -{"id":57165,"name":"Boots of Brill","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25006,"name":"The Grasp Weakens"}}],"factionRestriction":2}, -{"id":57166,"name":"Advanced Night Web Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.8,"ilvl":10,"quality":2,"sources":[{"quest":{"id":25013,"name":"A Little Oomph"}}],"factionRestriction":2}, -{"id":57167,"name":"Night Web Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25013,"name":"A Little Oomph"}}],"factionRestriction":2}, -{"id":57168,"name":"Reaper's Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25013,"name":"A Little Oomph"}}],"factionRestriction":2}, -{"id":57169,"name":"Darrington's Dirk","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":13,"weaponSpeed":1.8,"ilvl":10,"quality":2,"sources":[{"quest":{"id":25046,"name":"A Daughter's Embrace"}}],"factionRestriction":2}, -{"id":57170,"name":"Lilian's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":25046,"name":"A Daughter's Embrace"}}],"factionRestriction":2}, -{"id":57171,"name":"Executor's Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25046,"name":"A Daughter's Embrace"}}],"factionRestriction":2}, -{"id":57198,"name":"Red Cloud Gloves","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":24852,"name":"Our Tribe, Imprisoned"}}],"factionRestriction":2}, -{"id":57199,"name":"Sun Bleached Bracer","icon":"inv_bracer_74v2","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":14452,"name":"Rite of Strength"}}],"factionRestriction":2}, -{"id":57200,"name":"Thorncaller Trousers","icon":"inv_pants_cloth_41v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14455,"name":"Stop the Thorncallers"}}],"factionRestriction":2}, -{"id":57201,"name":"Robes of the Sun","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14456,"name":"Rite of Courage"}}],"factionRestriction":2}, -{"id":57202,"name":"Scarred Battleboar Chest","icon":"inv_chest_leather_26v3","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":14459,"name":"The Battleboars"}}],"factionRestriction":2}, -{"id":57203,"name":"Slippers of High Honor","icon":"inv_boots_cloth_31v3","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14460,"name":"Rite of Honor"}}],"factionRestriction":2}, -{"id":57204,"name":"Thunderhorn Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14438,"name":"Sharing the Land"}}],"factionRestriction":2}, -{"id":57205,"name":"Plains Hunter Guards","icon":"inv_bracer_73","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":24440,"name":"Winterhoof Cleansing"}}]}, -{"id":57206,"name":"Earthmother's Vest","icon":"inv_chest_leather_26","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":20441,"name":"Rite of Vision"}}]}, -{"id":57207,"name":"Restless Gloves","icon":"inv_gauntlets_114","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14491,"name":"The Restless Earth"}}],"factionRestriction":2}, -{"id":57208,"name":"Trackless Sandals","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":26180,"name":"Supervisor Fizsprocket"}}],"factionRestriction":2}, -{"id":57209,"name":"Belt of the Prairie Wolf","icon":"inv_belt_79v2","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":26188,"name":"Mazzranache"}}],"factionRestriction":2}, -{"id":57210,"name":"Thunderhorn Gloves","icon":"inv_gauntlets_102v4","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24456,"name":"Thunderhorn Cleansing"}}]}, -{"id":57211,"name":"Leggings of Brown Grass","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":744,"name":"Preparation for Ceremony"}}],"factionRestriction":2}, -{"id":57212,"name":"Slippers of Mourning","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":833,"name":"A Sacred Burial"}}],"factionRestriction":2}, -{"id":57213,"name":"Waterbearer's Robes","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24524,"name":"Wildmane Cleansing"}}]}, -{"id":57214,"name":"Stunted Tree Root","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":24540,"name":"War Dance"}}]}, -{"id":57215,"name":"Quill Impaled Boots","icon":"inv_boots_mail_11v3","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":24852,"name":"Our Tribe, Imprisoned"}}],"factionRestriction":2}, -{"id":57216,"name":"Mud Splattering Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":9,"weaponSpeed":3.3,"ilvl":4,"quality":1,"sources":[{"quest":{"id":14452,"name":"Rite of Strength"}}],"factionRestriction":2}, -{"id":57217,"name":"Thorned Cinch","icon":"inv_belt_80v2","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14455,"name":"Stop the Thorncallers"}}],"factionRestriction":2}, -{"id":57218,"name":"Rabbit Chaser's Leggings","icon":"inv_pants_leather_38v2","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14456,"name":"Rite of Courage"}}],"factionRestriction":2}, -{"id":57219,"name":"Braided Boarskin Belt","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":14459,"name":"The Battleboars"}}],"factionRestriction":2}, -{"id":57220,"name":"Sunwalker's Belt","icon":"inv_belt_80v3","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":14460,"name":"Rite of Honor"}}],"factionRestriction":2}, -{"id":57221,"name":"Legs of the Long Day","icon":"inv_pants_mail_36v4","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":24440,"name":"Winterhoof Cleansing"}}]}, -{"id":57222,"name":"Rainwalker's Bracer","icon":"inv_bracer_61v2","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":20441,"name":"Rite of Vision"}}]}, -{"id":57223,"name":"Chestguard of the Beating Drum","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":14491,"name":"The Restless Earth"}}],"factionRestriction":2}, -{"id":57224,"name":"Longstalker's Rifle","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":6,"weaponSpeed":2.8,"ilvl":3,"quality":1,"sources":[{"quest":{"id":14456,"name":"Rite of Courage"}}],"factionRestriction":2}, -{"id":57225,"name":"Cougar Pelt Boots","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1}, -{"id":57226,"name":"Touch of Dawn","icon":"inv_staff_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":1.6,"ilvl":8,"quality":1,"sources":[{"quest":{"id":24456,"name":"Thunderhorn Cleansing"}}]}, -{"id":57227,"name":"Hewn Kodo Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":744,"name":"Preparation for Ceremony"}}],"factionRestriction":2}, -{"id":57228,"name":"Cord of Tragic Memory","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":833,"name":"A Sacred Burial"}}],"factionRestriction":2}, -{"id":57229,"name":"Duskwatcher's Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24524,"name":"Wildmane Cleansing"}}]}, -{"id":57230,"name":"Kodo Mallet","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.6,"ilvl":10,"quality":2,"sources":[{"quest":{"id":24540,"name":"War Dance"}}]}, -{"id":57231,"name":"Red Ceremonial Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.4,"ilvl":4,"quality":1,"sources":[{"quest":{"id":14452,"name":"Rite of Strength"}}],"factionRestriction":2}, -{"id":57232,"name":"Thorn-Proof Wristguard","icon":"inv_bracer_61v3","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":14455,"name":"Stop the Thorncallers"}}],"factionRestriction":2}, -{"id":57233,"name":"Worn Ceremonial Tomahawk","icon":"inv_axe_19","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.6,"ilvl":7,"quality":1,"sources":[{"quest":{"id":14491,"name":"The Restless Earth"}}],"factionRestriction":2}, -{"id":57234,"name":"Swoopskin Gloves","icon":"inv_gauntlets_105v2","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":26188,"name":"Mazzranache"}}],"factionRestriction":2}, -{"id":57235,"name":"Bloodhoof War Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":24456,"name":"Thunderhorn Cleansing"}}]}, -{"id":57236,"name":"Plainstrider Leg Armor","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":744,"name":"Preparation for Ceremony"}}],"factionRestriction":2}, -{"id":57237,"name":"Cairne's First Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":833,"name":"A Sacred Burial"}}],"factionRestriction":2}, -{"id":57238,"name":"Cliff Running Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":24524,"name":"Wildmane Cleansing"}}]}, -{"id":57239,"name":"Sunwalker's Stunner","icon":"inv_mace_07","type":13,"weaponType":4,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":24540,"name":"War Dance"}}]}, -{"id":57240,"name":"Hawkeye Rifle","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.8,"ilvl":10,"quality":2,"sources":[{"quest":{"id":24524,"name":"Wildmane Cleansing"}}]}, -{"id":57241,"name":"Dreamwalking Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":24540,"name":"War Dance"}}]}, -{"id":57242,"name":"Goblin Masher","icon":"inv_staff_21","type":13,"weaponType":8,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":11,"weaponSpeed":2.6,"ilvl":8,"quality":1,"sources":[{"quest":{"id":26180,"name":"Supervisor Fizsprocket"}}],"factionRestriction":2}, -{"id":57243,"name":"Worn Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":57244,"name":"Warder's Spear","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":2.9,"ilvl":1,"quality":1}, -{"id":57248,"name":"Well-Used Greatsword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":27,"weaponSpeed":3.1,"ilvl":10,"quality":2,"sources":[{"quest":{"id":46,"name":"Bounty on Murlocs"}}],"factionRestriction":1}, -{"id":57253,"name":"Northshire Abbot's Cinch","icon":"inv_belt_79v4","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{}}]}, -{"id":57254,"name":"Runner's Boots","icon":"inv_boots_leather_10v2","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{}}]}, -{"id":57255,"name":"Worg Handler's Gloves","icon":"inv_gauntlets_105v3","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{}}]}, -{"id":57256,"name":"Northshire Abbot's Shoes","icon":"inv_boots_cloth_31v4","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{}}]}, -{"id":57257,"name":"Borderlands Bracers","icon":"inv_bracer_74v2","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"classAllowlist":[2],"sources":[{"quest":{}}]}, -{"id":57258,"name":"Wolf Hunter's Vest","icon":"inv_chest_mail_16v3","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{}}]}, -{"id":57281,"name":"Scalded Rockscale Shoulderpads","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,0,169,113,0,0,78,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25460,"name":"The Earth Rises"}}]}, -{"id":57282,"name":"Corecrusher Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25460,"name":"The Earth Rises"}}]}, -{"id":57283,"name":"Rockbreaker Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,84,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25460,"name":"The Earth Rises"}}]}, -{"id":57284,"name":"Grips of Arcane Imprisonment","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,85,0,0,0,59,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25325,"name":"Through the Dream"}}]}, -{"id":57285,"name":"Muffling Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,228,152,103,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25325,"name":"Through the Dream"}}]}, -{"id":57286,"name":"Dreamrending Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":503,"weaponSpeed":1.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25325,"name":"Through the Dream"}}]}, -{"id":57287,"name":"Gauntlets of Guerilla Fury","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,0,0,0,73,0,0,0,76,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25548,"name":"Might of the Firelord"}}]}, -{"id":57288,"name":"Subjugator's Shoulderguards","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,76,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25548,"name":"Might of the Firelord"}}]}, -{"id":57289,"name":"Flamesear Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,228,152,91,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25548,"name":"Might of the Firelord"}}]}, -{"id":57290,"name":"Druidic Guardian Plate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25319,"name":"War on the Twilight's Hammer"}}]}, -{"id":57291,"name":"Naturelord Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25319,"name":"War on the Twilight's Hammer"}}]}, -{"id":57292,"name":"Repurposed Twilight Stave","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,211,152,0,0,0,159,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":648,"weaponDamageMax":973,"weaponSpeed":2.9,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25319,"name":"War on the Twilight's Hammer"}}]}, -{"id":57293,"name":"Front-Line Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,48,66,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":587,"weaponDamageMax":1090,"weaponSpeed":3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25319,"name":"War on the Twilight's Hammer"}}]}, -{"id":57294,"name":"Poisonfire Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25574,"name":"Flames from Above"}}]}, -{"id":57295,"name":"Hornblower's Legguards","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,0,107,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25574,"name":"Flames from Above"}}]}, -{"id":57296,"name":"Girdle of Nullified Infiltration","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,0,79,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25574,"name":"Flames from Above"}}]}, -{"id":57298,"name":"Gatekeeper Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,73,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25555,"name":"The Gatekeeper"}}]}, -{"id":57299,"name":"Torque of the Herald","icon":"inv_jewelry_necklace_52","type":2,"stats":[0,85,127,0,0,0,48,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25555,"name":"The Gatekeeper"}}]}, -{"id":57300,"name":"Greaves of Violent Revenge","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,79,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25553,"name":"Death to the Broodmother"}}]}, -{"id":57301,"name":"Matriarch-Hide Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,0,0,62,47,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25553,"name":"Death to the Broodmother"}}]}, -{"id":57302,"name":"Maggotproof Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,68,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25553,"name":"Death to the Broodmother"}}]}, -{"id":57303,"name":"Heatbinder Wristplates","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,47,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25464,"name":"The Return of Baron Geddon"}}]}, -{"id":57304,"name":"Druidic Channeler's Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,98,65,65,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":240,"weaponDamageMax":447,"weaponSpeed":1.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25464,"name":"The Return of Baron Geddon"}}]}, -{"id":57305,"name":"Axe of Grounded Flame","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":376,"weaponDamageMax":699,"weaponSpeed":2.5,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25464,"name":"The Return of Baron Geddon"}}]}, -{"id":57306,"name":"Chestguard of Rapid Promotion","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,96,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25309,"name":"Spiritual Training: Mercy is for the Weak"}}]}, -{"id":57307,"name":"Belt of Swift Failure","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,64,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25309,"name":"Spiritual Training: Mercy is for the Weak"}}]}, -{"id":57308,"name":"Supplicant's Discarded Bracer","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,0,43,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25309,"name":"Spiritual Training: Mercy is for the Weak"}}]}, -{"id":57309,"name":"Chestplate of Exceptional Expectations","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,94,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25223,"name":"Trial By Fire"}}]}, -{"id":57310,"name":"Impressive Greaves","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25223,"name":"Trial By Fire"}}]}, -{"id":57311,"name":"Firetail Dart","icon":"inv_weapon_shortblade_10","type":14,"rangedWeaponType":5,"stats":[0,48,63,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25223,"name":"Trial By Fire"}}]}, -{"id":57312,"name":"Discarded Juggernaut Plating","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,99,103,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25761,"name":"Disassembly"}}]}, -{"id":57313,"name":"Bladerip Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,0,83,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25761,"name":"Disassembly"}}]}, -{"id":57314,"name":"Nimble-Knife Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25761,"name":"Disassembly"}}]}, -{"id":57315,"name":"Claw of Corroded Hope","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,127,85,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25761,"name":"Disassembly"}}]}, -{"id":57316,"name":"Egg-Lift Talisman","icon":"inv_misc_shovel_01","type":12,"stats":[0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25764,"name":"Egg Hunt"}}]}, -{"id":57317,"name":"Cloakbreaker Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,228,152,107,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25764,"name":"Egg Hunt"}}]}, -{"id":57318,"name":"Tunic of Soaring Safety","icon":"inv_chest_cloth_24","type":5,"armorType":2,"stats":[0,0,228,152,0,0,0,104,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25764,"name":"Egg Hunt"}}]}, -{"id":57319,"name":"Lightheart Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,71,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25764,"name":"Egg Hunt"}}]}, -{"id":57320,"name":"Embercrusher Grips","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,75,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25428,"name":"Black Heart of Flame"}}]}, -{"id":57321,"name":"Charbite Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,0,86,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25428,"name":"Black Heart of Flame"}}]}, -{"id":57322,"name":"Signet of Nascent Fire","icon":"inv_misc_moodring2","type":11,"stats":[0,0,127,85,0,0,0,54,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25428,"name":"Black Heart of Flame"}}]}, -{"id":57323,"name":"Deathseed Crushers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,60,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25408,"name":"Seeds of Their Demise"}}]}, -{"id":57324,"name":"Seedfilter Deflector","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,113,85,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25408,"name":"Seeds of Their Demise"}}]}, -{"id":57325,"name":"Bileberry Smelling Salts","icon":"classic_inv_misc_dust_05","type":12,"stats":[0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25408,"name":"Seeds of Their Demise"}}]}, -{"id":57326,"name":"Salt-Lick Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,0,107,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25392,"name":"Oh, Deer!"}}]}, -{"id":57327,"name":"Deer-Savior Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,152,228,0,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25392,"name":"Oh, Deer!"}}]}, -{"id":57328,"name":"Cloak of Cheerful Flowers","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"stats":[0,0,127,85,0,0,52,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25392,"name":"Oh, Deer!"}}]}, -{"id":57329,"name":"Firestorm Hackblade","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[65,0,98,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25382,"name":"Disrupting the Rituals"}}]}, -{"id":57330,"name":"Lordbane Scepter","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,72,48,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":525,"weaponDamageMax":976,"weaponSpeed":1.9,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25382,"name":"Disrupting the Rituals"}}]}, -{"id":57331,"name":"Ring of the Quenched Inferno","icon":"inv_misc_starring1","type":11,"stats":[0,85,127,0,0,0,57,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25382,"name":"Disrupting the Rituals"}}]}, -{"id":57332,"name":"Legplates of Persuasion","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25731,"name":"A Bird in Hand"}}]}, -{"id":57333,"name":"Punishing Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25731,"name":"A Bird in Hand"}}]}, -{"id":57334,"name":"Pinpoint Choker","icon":"inv_misc_necklacea6","type":2,"stats":[0,85,127,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25731,"name":"A Bird in Hand"}}]}, -{"id":57335,"name":"Signet of Fragrant Summoning","icon":"inv_misc_starring3","type":11,"stats":[85,0,127,0,0,0,58,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25807,"name":"An Ancient Reborn"}}]}, -{"id":57336,"name":"Skygrip Handguards","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,0,76,0,0,0,73,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25807,"name":"An Ancient Reborn"}}]}, -{"id":57337,"name":"Heraldcall Censer","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,154,0,0,148,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25807,"name":"An Ancient Reborn"}}]}, -{"id":57338,"name":"Jouster","icon":"inv_spear_05","type":12,"stats":[0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":57339,"name":"Heartcrush Greathammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25664,"name":"A Prayer and a Wing"}}]}, -{"id":57340,"name":"Griefsoul Wristguards","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,57,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25664,"name":"A Prayer and a Wing"}}]}, -{"id":57341,"name":"Shoulderpads of Dead Memories","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,64,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25664,"name":"A Prayer and a Wing"}}]}, -{"id":57342,"name":"Rescuers Shoulderguards","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,69,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25906,"name":"The Third Flamegate"}}]}, -{"id":57343,"name":"Leggings of Fiery Travail","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25906,"name":"The Third Flamegate"}}]}, -{"id":57344,"name":"Glyphtrace Ritual Knife","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,91,65,0,0,0,43,0,0,0,43,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25906,"name":"The Third Flamegate"}}]}, -{"id":57345,"name":"Razorproof Greaves","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,80,66,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25901,"name":"Hyjal Recycling Program"}}]}, -{"id":57346,"name":"Mindfletcher Talisman","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25901,"name":"Hyjal Recycling Program"}}]}, -{"id":57347,"name":"Bloodbolt Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,48,72,0,0,0,28,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":567,"weaponDamageMax":1054,"weaponSpeed":2.9,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25901,"name":"Hyjal Recycling Program"}}]}, -{"id":57348,"name":"Flameward Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[85,0,127,0,0,50,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25502,"name":"Prepping the Soil"}}]}, -{"id":57349,"name":"Helm of the Mendicant","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,0,0,109,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25502,"name":"Prepping the Soil"}}]}, -{"id":57350,"name":"Kindleprotector Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":693,"weaponDamageMax":1040,"weaponSpeed":3.1,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25502,"name":"Prepping the Soil"}}]}, -{"id":57351,"name":"Gutrip Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,113,169,0,0,73,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25493,"name":"Fresh Bait"}}]}, -{"id":57352,"name":"Gore-Stained Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,113,169,0,0,66,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25493,"name":"Fresh Bait"}}]}, -{"id":57353,"name":"Calcified Gizzard","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,127,85,0,0,0,58,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25493,"name":"Fresh Bait"}}]}, -{"id":57354,"name":"Wildlife Defender","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,0,48,0,64,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25462,"name":"The Bears Up There"}}]}, -{"id":57355,"name":"Treegrip Pants","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,106,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25462,"name":"The Bears Up There"}}]}, -{"id":57356,"name":"Stickyfoot Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25462,"name":"The Bears Up There"}}]}, -{"id":57357,"name":"Anvilcrush Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,44,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25577,"name":"Crushing the Cores"}}]}, -{"id":57358,"name":"Coreforged Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,169,113,80,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25577,"name":"Crushing the Cores"}}]}, -{"id":57359,"name":"Drape of Smoldering Dreams","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"stats":[0,85,127,0,0,0,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25577,"name":"Crushing the Cores"}}]}, -{"id":57360,"name":"Shoulderguards of Empty Memory","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,75,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25332,"name":"Get Me Outta Here!"}}]}, -{"id":57361,"name":"Neglected Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,62,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25332,"name":"Get Me Outta Here!"}}]}, -{"id":57362,"name":"Hood of Misplaced Dreams","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,103,0,0,0,99,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25332,"name":"Get Me Outta Here!"}}]}, -{"id":57363,"name":"Invidious Casque","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,99,0,103,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25298,"name":"Free Your Mind, the Rest Follows"}}]}, -{"id":57364,"name":"Purifying Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,69,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25298,"name":"Free Your Mind, the Rest Follows"}}]}, -{"id":57365,"name":"Crusher of Bonds","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,65,98,0,0,0,0,0,50,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25298,"name":"Free Your Mind, the Rest Follows"}}]}, -{"id":57366,"name":"Girdle of the Ancient Wolf","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,68,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25354,"name":"Sweeping the Shelf"}}],"factionRestriction":2}, -{"id":57367,"name":"Treads of the Dreamwolf","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,62,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25354,"name":"Sweeping the Shelf"}}],"factionRestriction":2}, -{"id":57368,"name":"Wolfcaller Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25354,"name":"Sweeping the Shelf"}}],"factionRestriction":2}, -{"id":57369,"name":"Goldrinn's Purifier","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,72,48,0,34,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":442,"weaponDamageMax":822,"weaponSpeed":1.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25354,"name":"Sweeping the Shelf"}}],"factionRestriction":2}, -{"id":57370,"name":"Belt of Binding Purification","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,68,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25352,"name":"Sweeping the Shelf"}}],"factionRestriction":1}, -{"id":57371,"name":"Wolfcall Stompers","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,62,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25352,"name":"Sweeping the Shelf"}}],"factionRestriction":1}, -{"id":57372,"name":"Bracers of the Forlorn Wolf","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25352,"name":"Sweeping the Shelf"}}],"factionRestriction":1}, -{"id":57373,"name":"Rage of Lo'Gosh","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,72,48,0,34,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":442,"weaponDamageMax":822,"weaponSpeed":1.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25352,"name":"Sweeping the Shelf"}}],"factionRestriction":1}, -{"id":57374,"name":"Choker of Lo'Gosh","icon":"inv_misc_necklacea2","type":2,"stats":[85,0,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25272,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":2}, -{"id":57375,"name":"Wrap of Furious Pride","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,80,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25272,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":2}, -{"id":57376,"name":"Handguards of Restrained Brutality","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,0,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25272,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":2}, -{"id":57377,"name":"Goldrinn's Locket","icon":"inv_misc_necklacea2","type":2,"stats":[85,0,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25273,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":1}, -{"id":57378,"name":"Primal Force Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,80,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25273,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":1}, -{"id":57379,"name":"Clutches of the Worgen Spirit","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,0,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25273,"name":"Lycanthoth the Corruptor"}}],"factionRestriction":1}, -{"id":57380,"name":"Girdle of Gar'gol","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,169,113,0,0,60,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25303,"name":"Elementary!"}}]}, -{"id":57381,"name":"Chestguard of Inscrutability","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,94,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25303,"name":"Elementary!"}}]}, -{"id":57382,"name":"Apocryhphic Bindings","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,127,85,59,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25303,"name":"Elementary!"}}]}, -{"id":57383,"name":"Sharptooth Signet","icon":"inv_misc_starring1","type":11,"stats":[85,0,127,0,0,0,0,0,61,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25234,"name":"In the Rear With the Gear"}}]}, -{"id":57384,"name":"Rust-Scrivened Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,228,152,114,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25234,"name":"In the Rear With the Gear"}}]}, -{"id":57385,"name":"Repurposed Twilight Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,64,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25234,"name":"In the Rear With the Gear"}}]}, -{"id":57386,"name":"Northshire Abbot's Robe","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{}}]}, -{"id":57387,"name":"Spymaster's Legs","icon":"inv_pants_leather_38v2","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{}}]}, -{"id":57388,"name":"Stormwind Infantry Belt","icon":"inv_belt_84v3","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{}}]}, -{"id":57389,"name":"Innkeeper's Longstockings","icon":"inv_pants_cloth_41v3","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":54,"name":"Report to Goldshire"}}],"factionRestriction":1}, -{"id":57390,"name":"Goldshire Heavy Jacket","icon":"inv_chest_leather_26v3","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":54,"name":"Report to Goldshire"}}],"factionRestriction":1}, -{"id":57391,"name":"Pikeman Trousers","icon":"inv_pants_mail_36v4","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":54,"name":"Report to Goldshire"}}],"factionRestriction":1}, -{"id":57392,"name":"Willem's Mitts","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":57393,"name":"Abbey Defender's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":10,"weaponSpeed":2.8,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":57394,"name":"Long Lost Wand","icon":"inv_staff_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":1.6,"ilvl":5,"quality":1,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":57395,"name":"Lion's Pride Bracer","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":2158,"name":"Rest and Relaxation"}}],"factionRestriction":1}, -{"id":57396,"name":"Innkeeper's Gloves","icon":"inv_gauntlets_102v3","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":2158,"name":"Rest and Relaxation"}}],"factionRestriction":1}, -{"id":57397,"name":"Goldshire Iron Bracer","icon":"inv_bracer_61v4","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":2158,"name":"Rest and Relaxation"}}],"factionRestriction":1}, -{"id":57398,"name":"Candlewax Streaked Robe","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":60,"name":"Kobold Candles"}}],"factionRestriction":1}, -{"id":57399,"name":"Kobold Hunter's Trophy Belt","icon":"inv_belt_84v2","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":60,"name":"Kobold Candles"}}],"factionRestriction":1}, -{"id":57400,"name":"Gold Dust Belt","icon":"inv_belt_79","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":47,"name":"Gold Dust Exchange"}}],"factionRestriction":1}, -{"id":57401,"name":"Jasperlode Chestguard","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":7,"quality":1,"sources":[{"quest":{"id":47,"name":"Gold Dust Exchange"}}],"factionRestriction":1}, -{"id":57402,"name":"Uncle Stonefield's Pants","icon":"inv_pants_cloth_41v2","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":87,"name":"Goldtooth"}}],"factionRestriction":1}, -{"id":57403,"name":"Theodore's Heirloom Bracer","icon":"inv_bracer_74v4","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":57404,"name":"Furlbrow Chainmail Legs","icon":"inv_pants_mail_36v2","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1}, -{"id":57405,"name":"Fine Leather Sash","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":83,"name":"Fine Linen Goods"}}],"factionRestriction":1}, -{"id":57406,"name":"Reinforced Mail Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":83,"name":"Fine Linen Goods"}}],"factionRestriction":1}, -{"id":57407,"name":"Hobo Stick","icon":"inv_staff_21","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":2.6,"ilvl":1,"quality":1}, -{"id":57408,"name":"Bloodshard Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2}, -{"id":57415,"name":"Stardust Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":25615,"name":"Return to Stardust"}}],"factionRestriction":1}, -{"id":57416,"name":"Hippogryph Down Belt","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":25615,"name":"Return to Stardust"}}],"factionRestriction":1}, -{"id":57417,"name":"Clear Path Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":25615,"name":"Return to Stardust"}}],"factionRestriction":1}, -{"id":57418,"name":"Stonetalon Defender's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":26,"quality":2,"sources":[{"quest":{"id":25652,"name":"Commandeer That Balloon!"}}],"factionRestriction":1}, -{"id":57419,"name":"Wand of Bought Time","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":43,"weaponSpeed":1.6,"ilvl":26,"quality":2,"sources":[{"quest":{"id":25652,"name":"Commandeer That Balloon!"}}],"factionRestriction":1}, -{"id":57420,"name":"Commandeered Gloves","icon":"inv_gauntlets_13","type":7,"armorType":3,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25652,"name":"Commandeer That Balloon!"}}],"factionRestriction":1}, -{"id":57421,"name":"Amulet of Shrill Screams","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25646,"name":"Windshear Mine Cleanup"}}],"factionRestriction":1}, -{"id":57422,"name":"Quiet Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,4,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25646,"name":"Windshear Mine Cleanup"}}],"factionRestriction":1}, -{"id":57423,"name":"Overseer's Gloves","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25646,"name":"Windshear Mine Cleanup"}}],"factionRestriction":1}, -{"id":57424,"name":"Heliana's Ring","icon":"inv_jewelry_ring_27","type":11,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25646,"name":"Windshear Mine Cleanup"}}],"factionRestriction":1}, -{"id":57425,"name":"Gyromatic Axe","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":1.6,"ilvl":26,"quality":2,"sources":[{"quest":{"id":25622,"name":"Burn, Baby, Burn!"}}],"factionRestriction":1}, -{"id":57426,"name":"Xakxak's Lab Frock","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25622,"name":"Burn, Baby, Burn!"}}],"factionRestriction":1}, -{"id":57427,"name":"Vonderful Bracers","icon":"inv_bracer_30","type":6,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25622,"name":"Burn, Baby, Burn!"}}],"factionRestriction":1}, -{"id":57428,"name":"Fish Stunner","icon":"inv_mace_11","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":29,"weaponSpeed":1.6,"ilvl":27,"quality":2,"sources":[{"quest":{"id":25730,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":1}, -{"id":57429,"name":"Fisherman's Belt","icon":"inv_belt_41","type":8,"armorType":2,"stats":[0,2,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":25730,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":1}, -{"id":57430,"name":"Irongoat Legguards","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":25730,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":1}, -{"id":57431,"name":"Strategy Guide","icon":"inv_misc_book_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":25669,"name":"Rumble in the Lumber... Mill"}}],"factionRestriction":1}, -{"id":57432,"name":"Thwarter's Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,5,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":25669,"name":"Rumble in the Lumber... Mill"}}],"factionRestriction":1}, -{"id":57433,"name":"Windshear Axe","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":48,"weaponSpeed":2.6,"ilvl":27,"quality":2,"sources":[{"quest":{"id":25669,"name":"Rumble in the Lumber... Mill"}}],"factionRestriction":1}, -{"id":57434,"name":"Oiler's Ring","icon":"inv_jewelry_ring_17","type":11,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25768,"name":"Bombs Away: Mirkfallon Post!"}}],"factionRestriction":1}, -{"id":57435,"name":"Oil-Stained Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,3,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25768,"name":"Bombs Away: Mirkfallon Post!"}}],"factionRestriction":1}, -{"id":57436,"name":"Well Oiled Helm","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25768,"name":"Bombs Away: Mirkfallon Post!"}}],"factionRestriction":1}, -{"id":57437,"name":"Barus' Backup Sword","icon":"inv_sword_05","type":13,"weaponType":9,"handType":4,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.3,"ilvl":28,"quality":2,"sources":[{"quest":{"id":25768,"name":"Bombs Away: Mirkfallon Post!"}}],"factionRestriction":1}, -{"id":57438,"name":"News Bearer Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25877,"name":"No Time for Goodbyes!"}}],"factionRestriction":1}, -{"id":57439,"name":"Messenger's Chestpiece","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25877,"name":"No Time for Goodbyes!"}}],"factionRestriction":1}, -{"id":57440,"name":"Shoulderguards of Warning","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[3,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25877,"name":"No Time for Goodbyes!"}}],"factionRestriction":1}, -{"id":57441,"name":"Shutter Uppers","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":1.7,"ilvl":28,"quality":2,"sources":[{"quest":{"id":25811,"name":"Shuttin Her Down"}}],"factionRestriction":1}, -{"id":57442,"name":"Mine Sealer's Ring","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25811,"name":"Shuttin Her Down"}}],"factionRestriction":1}, -{"id":57443,"name":"Deep Reach Helm","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[5,0,4,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25811,"name":"Shuttin Her Down"}}],"factionRestriction":1}, -{"id":57444,"name":"Assassin Assassinator","icon":"inv_weapon_shortblade_113","type":13,"weaponType":2,"handType":2,"stats":[0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.8,"ilvl":28,"quality":2,"sources":[{"quest":{"id":25808,"name":"Is This Thing On?"}}],"factionRestriction":1}, -{"id":57445,"name":"Mine Worker Cloak","icon":"inv_misc_cape_21","type":4,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25808,"name":"Is This Thing On?"}}],"factionRestriction":1}, -{"id":57446,"name":"Crackling Pauldrons","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,3,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25808,"name":"Is This Thing On?"}}],"factionRestriction":1}, -{"id":57447,"name":"Paulson's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":2.8,"ilvl":28,"quality":2,"sources":[{"quest":{"id":25808,"name":"Is This Thing On?"}}],"factionRestriction":1}, -{"id":57448,"name":"Basecamp Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25822,"name":"Armaments for War"}}],"factionRestriction":1}, -{"id":57449,"name":"Diplomat's Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,5,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25822,"name":"Armaments for War"}}],"factionRestriction":1}, -{"id":57450,"name":"Northwatch Amulet","icon":"inv_jewelry_amulet_03","type":2,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25822,"name":"Armaments for War"}}],"factionRestriction":1}, -{"id":57451,"name":"Sabotage Leggings","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25878,"name":"Schemin' That Sabotage"}}],"factionRestriction":1}, -{"id":57452,"name":"Shield of Control","icon":"inv_shield_76","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25878,"name":"Schemin' That Sabotage"}}],"factionRestriction":1}, -{"id":57453,"name":"Yvonia's Pauldrons","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":25878,"name":"Schemin' That Sabotage"}}],"factionRestriction":1}, -{"id":57454,"name":"Elune-Blessed Bow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":72,"weaponSpeed":2.8,"ilvl":29,"quality":2,"sources":[{"quest":{"id":25912,"name":"Seen Better Days"}}],"factionRestriction":1}, -{"id":57455,"name":"Sareth'na's Mantle","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25912,"name":"Seen Better Days"}}],"factionRestriction":1}, -{"id":57456,"name":"Headguard of Solace","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,0,5,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25912,"name":"Seen Better Days"}}],"factionRestriction":1}, -{"id":57457,"name":"Legguards of Winding Ways","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25912,"name":"Seen Better Days"}}],"factionRestriction":1}, -{"id":57458,"name":"Thal'darah's Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25889,"name":"Save the Children!"}}],"factionRestriction":1}, -{"id":57459,"name":"Headguard of the Innocent","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,5,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25889,"name":"Save the Children!"}}],"factionRestriction":1}, -{"id":57460,"name":"Breastplate of Rescue","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":25889,"name":"Save the Children!"}}],"factionRestriction":1}, -{"id":57461,"name":"Egg Smasher","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.6,"ilvl":30,"quality":2,"sources":[{"quest":{"id":25931,"name":"Brood of Seldarria"}}],"factionRestriction":1}, -{"id":57462,"name":"Goldrinn Acolyte's Cowl","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":25931,"name":"Brood of Seldarria"}}],"factionRestriction":1}, -{"id":57463,"name":"Brood-Killer Shoulderguard","icon":"inv_shoulder_136v1","type":3,"armorType":2,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":25931,"name":"Brood of Seldarria"}}],"factionRestriction":1}, -{"id":57464,"name":"Hierophant's Blessed Hands","icon":"inv_gauntlets_119","type":7,"armorType":3,"stats":[6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":25931,"name":"Brood of Seldarria"}}],"factionRestriction":1}, -{"id":57465,"name":"Ambassador's Amulet","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":25851,"name":"Dances with Grimtotem"}}],"factionRestriction":1}, -{"id":57466,"name":"Negotiator's Armbands","icon":"inv_bracer_62v4","type":6,"armorType":1,"stats":[0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":25851,"name":"Dances with Grimtotem"}}],"factionRestriction":1}, -{"id":57467,"name":"Fancy Footwork","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":25851,"name":"Dances with Grimtotem"}}],"factionRestriction":1}, -{"id":57468,"name":"Valen's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":25851,"name":"Dances with Grimtotem"}}],"factionRestriction":1}, -{"id":57469,"name":"Saurboz's Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25999,"name":"Barrier to Entry"}}],"factionRestriction":2}, -{"id":57470,"name":"Incinerator's Gauntlets","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25999,"name":"Barrier to Entry"}}],"factionRestriction":2}, -{"id":57471,"name":"Elf-Killer Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":25999,"name":"Barrier to Entry"}}],"factionRestriction":2}, -{"id":57472,"name":"Krom'gar Sergeant's Linen Footwraps","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,3,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57473,"name":"Krom'gar Sergeant's Hide Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57474,"name":"Krom'gar Sergeant's Leather Boots","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,5,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57475,"name":"Krom'gar Sergeant's Chain Greaves","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57476,"name":"Krom'gar Sergeant's Mesh Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57477,"name":"Overlord's Favor","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,3,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26010,"name":"Ashes to Ashes"}}],"factionRestriction":2}, -{"id":57478,"name":"Vest of Ashes","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26010,"name":"Ashes to Ashes"}}],"factionRestriction":2}, -{"id":57479,"name":"Flamethrower's Gloves","icon":"inv_gauntlets_13","type":7,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26010,"name":"Ashes to Ashes"}}],"factionRestriction":2}, -{"id":57480,"name":"Spy-Mistress' Necklace","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26043,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":2}, -{"id":57481,"name":"Fisherman's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26043,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":2}, -{"id":57482,"name":"Anara's Belt","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26043,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":2}, -{"id":57483,"name":"Cragpool Band","icon":"inv_jewelry_ring_02","type":11,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26043,"name":"BEWARE OF CRAGJAW!"}}],"factionRestriction":2}, -{"id":57484,"name":"Krom'gar Legionnaire's Linen Bracers","icon":"inv_bracer_21c","type":6,"armorType":1,"stats":[0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57485,"name":"Krom'gar Legionnaire's Hide Wraps","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,2,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57486,"name":"Krom'gar Legionnaire's Leather Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57487,"name":"Krom'gar Legionnaire's Chain Bracers","icon":"inv_bracer_30","type":6,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57488,"name":"Krom'gar Legionnaire's Mesh Bracers","icon":"inv_bracer_30a","type":6,"armorType":3,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57489,"name":"Bombgutz Band","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26048,"name":"Spare Parts Up In Here!"}}],"factionRestriction":2}, -{"id":57490,"name":"Blastgineer's Belt","icon":"inv_belt_41","type":8,"armorType":2,"stats":[0,3,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26048,"name":"Spare Parts Up In Here!"}}],"factionRestriction":2}, -{"id":57491,"name":"Spare Part Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[3,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26048,"name":"Spare Parts Up In Here!"}}],"factionRestriction":2}, -{"id":57492,"name":"Talongrip Dagger","icon":"inv_sword_10","type":13,"weaponType":2,"handType":2,"stats":[0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26063,"name":"The Queen and Her Court"}}],"factionRestriction":2}, -{"id":57493,"name":"Darn Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26063,"name":"The Queen and Her Court"}}],"factionRestriction":2}, -{"id":57494,"name":"Rampaging Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.3,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26082,"name":"To Battlescar!"}}],"factionRestriction":2}, -{"id":57495,"name":"Shield of Battlescar Valley","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26082,"name":"To Battlescar!"}}],"factionRestriction":2}, -{"id":57496,"name":"Wand of Destructive Talent","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.6,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26082,"name":"To Battlescar!"}}],"factionRestriction":2}, -{"id":57497,"name":"Grebo's Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":2.8,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26082,"name":"To Battlescar!"}}],"factionRestriction":2}, -{"id":57498,"name":"Bow of Invisible Aim","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":2.8,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26076,"name":"Spy Infestation"}}],"factionRestriction":2}, -{"id":57499,"name":"Infested Breastplate","icon":"inv_chest_mail_19v3","type":5,"armorType":3,"stats":[0,0,6,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26076,"name":"Spy Infestation"}}],"factionRestriction":2}, -{"id":57500,"name":"Crawling Amulet","icon":"inv_jewelry_necklace_17","type":2,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26076,"name":"Spy Infestation"}}],"factionRestriction":2}, -{"id":57501,"name":"Krom'gar Champion's Linen Shoulderpads","icon":"inv_shoulder_134v4","type":3,"armorType":1,"stats":[0,0,4,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57502,"name":"Krom'gar Champion's Hide Shoulderguard","icon":"inv_shoulder_136v1","type":3,"armorType":2,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57503,"name":"Krom'gar Champion's Leather Shoulderguard","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57504,"name":"Krom'gar Champion's Chain Pauldrons","icon":"inv_shoulder_147","type":3,"armorType":3,"stats":[3,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57505,"name":"Krom'gar Champion's Mesh Pauldrons","icon":"inv_shoulder_147v3","type":3,"armorType":3,"stats":[0,0,5,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57506,"name":"Unearthed Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26068,"name":"Kobold Fury!"}}],"factionRestriction":2}, -{"id":57507,"name":"Kobold-Wrangler Leggings","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26068,"name":"Kobold Fury!"}}],"factionRestriction":2}, -{"id":57508,"name":"Devo's Handaxe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":53,"weaponSpeed":2.6,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26068,"name":"Kobold Fury!"}}],"factionRestriction":2}, -{"id":57509,"name":"Orthus' Amulet","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26115,"name":"To Be Horde..."}}],"factionRestriction":2}, -{"id":57510,"name":"Masha's Armbands","icon":"inv_bracer_62v4","type":6,"armorType":1,"stats":[0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26115,"name":"To Be Horde..."}}],"factionRestriction":2}, -{"id":57511,"name":"Belt of the Grieving Father","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26115,"name":"To Be Horde..."}}],"factionRestriction":2}, -{"id":57512,"name":"Cliffwalker Boots","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26115,"name":"To Be Horde..."}}],"factionRestriction":2}, -{"id":57513,"name":"Krom'gar General's Linen Cowl","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57514,"name":"Krom'gar General's Hide Mask","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,0,7,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57515,"name":"Krom'gar General's Leather Mask","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57516,"name":"Krom'gar General's Chain Helm","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[6,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57517,"name":"Krom'gar General's Mesh Helm","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"soldBy":{"npcId":42028,"npcName":"Krom'gar Quartermaster","zoneId":406}}]}, -{"id":57520,"name":"Studded Arm Protector","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":59,"name":"Cloth and Leather Armor"}}],"factionRestriction":1}, -{"id":57521,"name":"Marshal's Light Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.8,"ilvl":10,"quality":2,"sources":[{"quest":{"id":46,"name":"Bounty on Murlocs"}}],"factionRestriction":1}, -{"id":57522,"name":"McCree's Sparring Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":147,"name":"Manhunt"}}],"factionRestriction":1}, -{"id":57523,"name":"Wolf Fur Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":52,"name":"Protect the Frontier"}}],"factionRestriction":1}, -{"id":57524,"name":"Frontier Bracer","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":52,"name":"Protect the Frontier"}}],"factionRestriction":1}, -{"id":57525,"name":"Studded Bearskin Jacket","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":52,"name":"Protect the Frontier"}}],"factionRestriction":1}, -{"id":57526,"name":"Gnollbreaker's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":11,"name":"Riverpaw Gnoll Bounty"}}],"factionRestriction":1}, -{"id":57527,"name":"Stone Cairne Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":11,"name":"Riverpaw Gnoll Bounty"}}],"factionRestriction":1}, -{"id":57528,"name":"Hogger's Mangy Handgrips","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":57529,"name":"Fur-Lined Slippers","icon":"inv_boots_cloth_31v4","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"factionRestriction":1}, -{"id":57530,"name":"Explorer's Robe","icon":"inv_chest_cloth_84v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24486,"name":"Make Hay While the Sun Shines"}}],"factionRestriction":1}, -{"id":57531,"name":"Winter Jacket","icon":"inv_chest_leather_26v2","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24486,"name":"Make Hay While the Sun Shines"}}],"factionRestriction":1}, -{"id":57532,"name":"Rockjaw Breastplate","icon":"inv_chest_mail_16v3","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24486,"name":"Make Hay While the Sun Shines"}}],"factionRestriction":1}, -{"id":57533,"name":"Dwarven Iron Bracer","icon":"inv_bracer_61v3","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"factionRestriction":1}, -{"id":57534,"name":"Grik'nir's Chilly Belt","icon":"inv_belt_79v3","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":218,"name":"Ice and Fire"}}],"factionRestriction":1}, -{"id":57535,"name":"Whitebeard's Bracer","icon":"inv_bracer_74v3","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":218,"name":"Ice and Fire"}}],"factionRestriction":1}, -{"id":57536,"name":"Legs of the Wayward Elemental","icon":"inv_pants_mail_36v4","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":218,"name":"Ice and Fire"}}],"factionRestriction":1}, -{"id":57537,"name":"Frosthammer Bracer","icon":"inv_bracer_73v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":57538,"name":"Kharanos Belt","icon":"inv_belt_80v3","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":57539,"name":"Snow Stomping Boots","icon":"inv_boots_mail_11v4","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"factionRestriction":1}, -{"id":57541,"name":"Ragged Wolf Hide Cloak","icon":"inv_misc_cape_11","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1}, -{"id":57545,"name":"Oil-Stained Gloves","icon":"inv_gauntlets_102","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":412,"name":"Operation Recombobulation"}}],"factionRestriction":1}, -{"id":57546,"name":"Cog Belt","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":412,"name":"Operation Recombobulation"}}],"factionRestriction":1}, -{"id":57547,"name":"Shimmerweed Boots","icon":"inv_boots_leather_10","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":315,"name":"The Perfect Stout"}}],"factionRestriction":1}, -{"id":57548,"name":"Herb-Stained Gauntlets","icon":"inv_gauntlets_105v4","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":315,"name":"The Perfect Stout"}}],"factionRestriction":1}, -{"id":57550,"name":"Grizzled Den Boots","icon":"inv_boots_cloth_31","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":25668,"name":"Pilfered Supplies"}}],"factionRestriction":1}, -{"id":57551,"name":"Wendigo Leggings","icon":"inv_pants_leather_38","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":25668,"name":"Pilfered Supplies"}}],"factionRestriction":1}, -{"id":57552,"name":"Vagash Pelt Vest","icon":"inv_chest_mail_16v2","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":314,"name":"Protecting the Herd"}}],"factionRestriction":1}, -{"id":57553,"name":"Ragged Belt","icon":"inv_belt_79v2","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":287,"name":"Frostmane Hold"}}],"factionRestriction":1}, -{"id":57554,"name":"Frostmane Belt","icon":"inv_belt_80v4","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":25840,"name":"Eliminate the Resistance"}}],"factionRestriction":1}, -{"id":57555,"name":"Battok's Bloody Boots","icon":"inv_boots_mail_11v2","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":25840,"name":"Eliminate the Resistance"}}],"factionRestriction":1}, -{"id":57556,"name":"Bracer of the Nightly Raid","icon":"inv_bracer_61v2","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25932,"name":"It's Raid Night Every Night"}}],"factionRestriction":1}, -{"id":57557,"name":"Warm Winter Wristguards","icon":"inv_bracer_74v4","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":287,"name":"Frostmane Hold"}}],"factionRestriction":1}, -{"id":57558,"name":"Robes of Endless Raiding","icon":"inv_chest_cloth_84v2","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25932,"name":"It's Raid Night Every Night"}}],"factionRestriction":1}, -{"id":57559,"name":"Boots of the Weary Raider","icon":"inv_boots_leather_10v4","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":1,"sources":[{"quest":{"id":25932,"name":"It's Raid Night Every Night"}}],"factionRestriction":1}, -{"id":57560,"name":"Mangy Claw Mitts","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":57561,"name":"Hildelve's Pantaloons","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":57562,"name":"Hammerfoot's Mail Leggings","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":57563,"name":"South Gate Blunderbuss","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.8,"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":57566,"name":"Siege Engineer's Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":57567,"name":"Explorer's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":57568,"name":"Senator's Dignified Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":433,"name":"The Public Servant"}}],"factionRestriction":1}, -{"id":57569,"name":"Stonehallow's Arm Bands","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":433,"name":"The Public Servant"}}],"factionRestriction":1}, -{"id":57570,"name":"Gol'Bolar Miner's Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":433,"name":"The Public Servant"}}],"factionRestriction":1}, -{"id":57571,"name":"Archaeologist's Pants","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25937,"name":"Priceless Treasures"}}],"factionRestriction":1}, -{"id":57572,"name":"Dun Morogh Hiking Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25937,"name":"Priceless Treasures"}}],"factionRestriction":1}, -{"id":57574,"name":"Museum Guard's Bracers","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25937,"name":"Priceless Treasures"}}],"factionRestriction":1}, -{"id":57575,"name":"Belt of Dark Schemes","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25997,"name":"Dark Iron Scheming"}}],"factionRestriction":1}, -{"id":57576,"name":"Dark Iron Infiltrator's Bracer","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25997,"name":"Dark Iron Scheming"}}],"factionRestriction":1}, -{"id":57577,"name":"Dark Iron Infiltrator's Shoes","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":57578,"name":"Dark Iron Hobnail Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":25997,"name":"Dark Iron Scheming"}}],"factionRestriction":1}, -{"id":57579,"name":"Airfield Defender's Garb","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":26102,"name":"Grimaxe's Demise"}}],"factionRestriction":1}, -{"id":57580,"name":"Tunic of Dark Leather","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":26102,"name":"Grimaxe's Demise"}}],"factionRestriction":1}, -{"id":57581,"name":"Grimaxe's Black Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":26102,"name":"Grimaxe's Demise"}}],"factionRestriction":1}, -{"id":57582,"name":"Stonebreaker's Gauntlets","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{"id":26102,"name":"Grimaxe's Demise"}}],"factionRestriction":1}, -{"id":57583,"name":"The Slaghammer","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.6,"ilvl":10,"quality":2,"sources":[{"quest":{"id":26118,"name":"Seize the Ambassador"}}],"factionRestriction":1}, -{"id":57584,"name":"Battleaxe of the Sober Dwarf","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":28,"weaponSpeed":3.3,"ilvl":10,"quality":2,"sources":[{"quest":{"id":26118,"name":"Seize the Ambassador"}}],"factionRestriction":1}, -{"id":57585,"name":"Ambassador's Duplicitous Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":11,"weaponSpeed":1.6,"ilvl":10,"quality":2,"sources":[{"quest":{"id":26118,"name":"Seize the Ambassador"}}],"factionRestriction":1}, -{"id":57827,"name":"Morlann's Other Seal","icon":"inv_jewelry_ring_05","type":11,"stats":[5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":57828,"name":"Brogg's Better Battle Harness","icon":"inv_chest_mail_18","type":5,"armorType":3,"stats":[0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":57829,"name":"Steel-Backed Hauberk","icon":"inv_chest_plate27","type":5,"armorType":4,"stats":[11,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{}}]}, -{"id":57831,"name":"Direhorn Cinch","icon":"inv_belt_85v2","type":8,"armorType":1,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":57832,"name":"Journeyman's Helm","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":57833,"name":"Brooding Mask","icon":"inv_helmet_179","type":1,"armorType":2,"stats":[0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57834,"name":"Frog Boots","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":57835,"name":"\"Swamp Eye\" Belt","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":57836,"name":"Encarmine Spaulders","icon":"inv_shoulder_139","type":3,"armorType":2,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57837,"name":"Biting Greataxe","icon":"inv_axe_117","type":13,"weaponType":1,"handType":4,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":51,"weaponSpeed":1.6,"ilvl":38,"quality":2,"sources":[{"quest":{}}]}, -{"id":57838,"name":"Searing Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,3,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":44,"weaponSpeed":1.5,"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57839,"name":"Whelp Slaying Axe","icon":"inv_axe_118","type":13,"weaponType":1,"handType":4,"stats":[11,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":64,"weaponDamageMax":97,"weaponSpeed":2.8,"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57840,"name":"Corroded Helmet","icon":"inv_helmet_188v2","type":1,"armorType":3,"stats":[0,0,8,5,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}]}, -{"id":57841,"name":"Wyrmbog Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57842,"name":"Tower of Theramore","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,11,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":3.3,"ilvl":37,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":57843,"name":"Baroque Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":1258,"name":"... and Bugs"}}],"factionRestriction":1}, -{"id":57844,"name":"Crawling Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.7,"ilvl":40,"quality":2,"sources":[{"quest":{"id":1258,"name":"... and Bugs"}}],"factionRestriction":1}, -{"id":57845,"name":"Swamp Splints","icon":"inv_bracer_62","type":6,"armorType":1,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":57846,"name":"Overlord's Trophy Shoulders","icon":"inv_shoulder_143v1","type":3,"armorType":2,"stats":[0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57847,"name":"Mok'Morokk's Beat Stick","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,8,12,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57848,"name":"Mok'Morokk's Grog Bottle","icon":"inv_drink_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57849,"name":"Seamonster Harpoon","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":3.3,"ilvl":37,"quality":3,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":57850,"name":"Dustwallow Impaler","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57851,"name":"Swamp Gas Gauntlets","icon":"inv_gauntlets_119v1","type":7,"armorType":3,"stats":[0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}]}, -{"id":57852,"name":"Grimtotem Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":57853,"name":"Proudmoore Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{}}]}, -{"id":57854,"name":"Stonemaul Gloves","icon":"inv_gauntlets_115v2","type":7,"armorType":2,"stats":[0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":58216,"name":"\"Flying\" Worgen Robes","icon":"inv_chest_cloth_84","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"quest":{"id":14382,"name":"Two By Sea"}}]}, -{"id":58217,"name":"Mastiff Trainer's Wand","icon":"inv_staff_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":1.6,"ilvl":5,"quality":1,"sources":[{"quest":{"id":14204,"name":"From the Shadows"}}]}, -{"id":58231,"name":"Recruit's Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58232,"name":"Rugged Trapper's Vest","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58233,"name":"Squire's Vest","icon":"inv_shirt_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58234,"name":"Footpad's Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58235,"name":"Warder's Vest","icon":"inv_chest_leather_07","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58237,"name":"Initiate's Vest","icon":"inv_chest_chain_13","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58238,"name":"Lookout's Vest","icon":"inv_chest_leather_09","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58240,"name":"Scout's Vest","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58242,"name":"Squire's Vest","icon":"inv_shirt_16","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58243,"name":"Recruit's Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58244,"name":"Recruit's Vest","icon":"inv_shirt_05","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58245,"name":"Brawler's Vest","icon":"inv_chest_leather_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58246,"name":"Thug Vest","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58247,"name":"Trapper's Vest","icon":"inv_shirt_14","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58248,"name":"Initiate's Vest","icon":"inv_chest_leather_09","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":58255,"name":"Lord Walden's Top Hat","icon":"inv_helmet_51","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":24592,"name":"Betrayal at Tempest's Reach"}}]}, -{"id":58499,"name":"Grasp of Victory","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[2,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":3,"sources":[{"quest":{"id":25265,"name":"Victory!"}}]}, -{"id":58902,"name":"Kobold Sticker","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":1.4,"ilvl":11,"quality":2,"sources":[{"quest":{"id":26229,"name":"\"I TAKE Candle!\""}}],"factionRestriction":1}, -{"id":58903,"name":"Kobold Candle","icon":"inv_misc_candle_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26229,"name":"\"I TAKE Candle!\""}}],"factionRestriction":1}, -{"id":58904,"name":"Wax Catcher","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26229,"name":"\"I TAKE Candle!\""}}],"factionRestriction":1}, -{"id":58905,"name":"Kobold Basher","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.6,"ilvl":11,"quality":2,"sources":[{"quest":{"id":26229,"name":"\"I TAKE Candle!\""}}],"factionRestriction":1}, -{"id":58906,"name":"Equicide Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26209,"name":"Murder Was The Case That They Gave Me"}}],"factionRestriction":1}, -{"id":58907,"name":"Crime Scene Tape","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26209,"name":"Murder Was The Case That They Gave Me"}}],"factionRestriction":1}, -{"id":58908,"name":"Scene Investigator's Wrap","icon":"inv_misc_cape_16","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26209,"name":"Murder Was The Case That They Gave Me"}}],"factionRestriction":1}, -{"id":58909,"name":"Golden Sunshine Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26241,"name":"Westfall Stew"}}],"factionRestriction":1}, -{"id":58910,"name":"Boiled Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26241,"name":"Westfall Stew"}}],"factionRestriction":1}, -{"id":58911,"name":"Tightly Cinched Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26241,"name":"Westfall Stew"}}],"factionRestriction":1}, -{"id":58912,"name":"Sentinel Hill Surcoat","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,2,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26286,"name":"In Defense of Westfall"}}],"factionRestriction":1}, -{"id":58913,"name":"Sentinel Hill Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,2,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26286,"name":"In Defense of Westfall"}}],"factionRestriction":1}, -{"id":58914,"name":"Sentinel Hill Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26286,"name":"In Defense of Westfall"}}],"factionRestriction":1}, -{"id":58915,"name":"Harvester Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26257,"name":"It's Alive!"}}],"factionRestriction":1}, -{"id":58916,"name":"Chewed Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26257,"name":"It's Alive!"}}],"factionRestriction":1}, -{"id":58917,"name":"Saldean's Working Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":26257,"name":"It's Alive!"}}],"factionRestriction":1}, -{"id":58918,"name":"Mystic Riverpaw Wand","icon":"inv_staff_17","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":11,"weaponDamageMax":22,"weaponSpeed":1.6,"ilvl":14,"quality":2,"sources":[{"quest":{"id":26288,"name":"Jango Spothide"}}],"factionRestriction":1}, -{"id":58919,"name":"Spothide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26288,"name":"Jango Spothide"}}],"factionRestriction":1}, -{"id":58920,"name":"Dust Plains Greaves","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26288,"name":"Jango Spothide"}}],"factionRestriction":1}, -{"id":58921,"name":"Evidence Collection Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26296,"name":"Evidence Collection"}}],"factionRestriction":1}, -{"id":58922,"name":"Worn Defias Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26296,"name":"Evidence Collection"}}],"factionRestriction":1}, -{"id":58923,"name":"Gregorky's Bracers","icon":"inv_bracer_27a","type":6,"armorType":3,"stats":[1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26296,"name":"Evidence Collection"}}],"factionRestriction":1}, -{"id":58924,"name":"Legwork Trousers","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26291,"name":"Big Trouble in Moonbrook"}}],"factionRestriction":1}, -{"id":58925,"name":"Troublesome Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26291,"name":"Big Trouble in Moonbrook"}}],"factionRestriction":1}, -{"id":58926,"name":"Gryan's Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":26291,"name":"Big Trouble in Moonbrook"}}],"factionRestriction":1}, -{"id":58927,"name":"House Wrynn Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.8,"ilvl":15,"quality":3,"sources":[{"quest":{"id":26322,"name":"Rise of the Brotherhood"}}],"factionRestriction":1}, -{"id":58928,"name":"House Wrynn Halberd","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":3,"ilvl":15,"quality":3,"sources":[{"quest":{"id":26322,"name":"Rise of the Brotherhood"}}],"factionRestriction":1}, -{"id":58929,"name":"House Wrynn Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":50,"weaponSpeed":2.8,"ilvl":15,"quality":3,"sources":[{"quest":{"id":26322,"name":"Rise of the Brotherhood"}}],"factionRestriction":1}, -{"id":58930,"name":"House Wrynn Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3.3,"ilvl":15,"quality":3,"sources":[{"quest":{"id":26322,"name":"Rise of the Brotherhood"}}],"factionRestriction":1}, -{"id":58931,"name":"House Wrynn Claymore","icon":"inv_sword_25","type":13,"weaponType":9,"handType":4,"stats":[4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":55,"weaponSpeed":3.3,"ilvl":15,"quality":3,"sources":[{"quest":{"id":26322,"name":"Rise of the Brotherhood"}}],"factionRestriction":1}, -{"id":58970,"name":"Mori's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":58971,"name":"Mori's Compass","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":58972,"name":"Mori's Gear Stick","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":2.6,"ilvl":10,"quality":2,"sources":[{"quest":{}}]}, -{"id":58973,"name":"Monte's Scythe","icon":"inv_staff_78","type":13,"weaponType":6,"handType":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":3,"ilvl":10,"quality":2,"factionRestriction":1}, -{"id":58974,"name":"Mechanical Wand","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":15,"weaponSpeed":1.6,"ilvl":10,"quality":2,"factionRestriction":1}, -{"id":58975,"name":"Gnomish All-Purpose Ray Gun","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":26,"weaponSpeed":2.8,"ilvl":10,"quality":2,"factionRestriction":1}, -{"id":58976,"name":"Rat Ear Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"factionRestriction":1}, -{"id":58977,"name":"Algaz Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"factionRestriction":1}, -{"id":58978,"name":"Filthy Paw","icon":"inv_hand_1h_bwdraid_d_01","type":13,"weaponType":3,"handType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":2.6,"ilvl":11,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":58979,"name":"Silver Stream Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":58980,"name":"Ironheart Chain Cloak","icon":"inv_misc_cape_16","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":58981,"name":"Dastardly Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":309,"name":"Protecting the Shipment"}}],"factionRestriction":1}, -{"id":58982,"name":"Foreman Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":309,"name":"Protecting the Shipment"}}],"factionRestriction":1}, -{"id":58983,"name":"Ironband Legguards","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":309,"name":"Protecting the Shipment"}}],"factionRestriction":1}, -{"id":58984,"name":"Stonesplinter Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.3,"ilvl":12,"quality":2,"sources":[{"quest":{"id":26146,"name":"In Defense of the King's Lands"}}],"factionRestriction":1}, -{"id":58985,"name":"Leggings of Uncanny Courage","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26146,"name":"In Defense of the King's Lands"}}],"factionRestriction":1}, -{"id":58986,"name":"Stone Stompers","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26146,"name":"In Defense of the King's Lands"}}],"factionRestriction":1}, -{"id":58988,"name":"Unbound Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26148,"name":"A Decisive Strike"}}],"factionRestriction":1}, -{"id":58989,"name":"Belt of the Valley of Kings","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26148,"name":"A Decisive Strike"}}],"factionRestriction":1}, -{"id":58990,"name":"Rugelfuss Bracers","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26148,"name":"A Decisive Strike"}}],"factionRestriction":1}, -{"id":58991,"name":"Star Shooter","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.6,"ilvl":12,"quality":2,"sources":[{"quest":{"id":13661,"name":"Heartfelt Appreciation"}}],"factionRestriction":1}, -{"id":58992,"name":"Uncovered Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13661,"name":"Heartfelt Appreciation"}}],"factionRestriction":1}, -{"id":58993,"name":"Old Dwarven Hammer","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.3,"ilvl":12,"quality":2,"sources":[{"quest":{"id":13661,"name":"Heartfelt Appreciation"}}],"factionRestriction":1}, -{"id":58994,"name":"Trogg-Slayer Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26147,"name":"Bigger and Uglier"}}],"factionRestriction":1}, -{"id":58995,"name":"Bonesnapper Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26147,"name":"Bigger and Uglier"}}],"factionRestriction":1}, -{"id":58996,"name":"Mountaineer's Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":26147,"name":"Bigger and Uglier"}}],"factionRestriction":1}, -{"id":58997,"name":"Carved Stone Mace","icon":"inv_mace_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.6,"ilvl":13,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":58998,"name":"Trogg Kickers","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":58999,"name":"Thelsamar Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":59000,"name":"Daryl's Axe","icon":"inv_weapon_halberd_06","type":13,"weaponType":1,"handType":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":38,"weaponSpeed":3.3,"ilvl":14,"quality":2}, -{"id":59001,"name":"Ill-Worn Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":59002,"name":"Unabashed Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":59003,"name":"Daryl's Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.8,"ilvl":14,"quality":2}, -{"id":59004,"name":"Daryl's Bow","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":35,"weaponSpeed":2.8,"ilvl":14,"quality":2}, -{"id":59005,"name":"Marek's Dagger","icon":"inv_weapon_shortblade_01","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.8,"ilvl":14,"quality":2}, -{"id":59006,"name":"Croc-Skin Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":59007,"name":"Croc-Scale Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2}, -{"id":59008,"name":"Unsanitary Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}]}, -{"id":59009,"name":"Vyrin's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}]}, -{"id":59010,"name":"Swiftwind Blade","icon":"inv_sword_16","type":13,"weaponType":9,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":2.6,"ilvl":15,"quality":2,"sources":[{"quest":{}}]}, -{"id":59011,"name":"Nicolette's Robes","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59012,"name":"Disarming Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59013,"name":"Stonesmirk Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59014,"name":"Kizmet's Wrap","icon":"inv_misc_cape_21","type":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59015,"name":"Bracers of Alarm","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59016,"name":"Clue-Finder's Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59017,"name":"Strange Smelling Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2}, -{"id":59018,"name":"Ring of Pride","icon":"inv_jewelry_ring_01","type":11,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"factionRestriction":1}, -{"id":59019,"name":"Light-Burning Ring","icon":"inv_jewelry_ring_32","type":11,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"factionRestriction":1}, -{"id":59020,"name":"Stonewrought Band","icon":"inv_jewelry_ring_19","type":11,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"factionRestriction":1}, -{"id":59021,"name":"Dagger of Loch Modan","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,2,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":20,"quality":3}, -{"id":59022,"name":"Hammer of Loch Modan","icon":"inv_hammer_05","type":13,"weaponType":4,"handType":4,"stats":[0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3}, -{"id":59023,"name":"Loch Modan Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":2.8,"ilvl":20,"quality":3}, -{"id":59024,"name":"Staff of Loch Modan","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3}, -{"id":59025,"name":"Axe of Loch Modan","icon":"inv_weapon_halberd_03","type":13,"weaponType":1,"handType":4,"stats":[0,6,4,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3}, -{"id":59026,"name":"Bounty Hunter's Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":1}, -{"id":59027,"name":"Thelsamar Chainmail","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,2,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":1}, -{"id":59028,"name":"Bluntnose's Signet","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"factionRestriction":1}, -{"id":59038,"name":"Fallout Cover","icon":"inv_misc_cape_20","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":26265,"name":"Dealing with the Fallout"}}]}, -{"id":59039,"name":"Very Light Sabre","icon":"inv_sword_05","type":13,"weaponType":9,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":3.3,"ilvl":3,"quality":2,"sources":[{"quest":{"id":26204,"name":"The Arts of a Warrior"}}],"factionRestriction":1}, -{"id":59040,"name":"Staff of the Force","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":3.3,"ilvl":3,"quality":2,"sources":[{"quest":{"id":26200,"name":"The Arts of a Priest"}}],"factionRestriction":1}, -{"id":59041,"name":"Vibro Knife","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":1.4,"ilvl":3,"quality":2,"sources":[{"quest":{"id":26201,"name":"The Power of a Warlock"}}],"factionRestriction":1}, -{"id":59042,"name":"Electro-Staff","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":4,"weaponDamageMax":8,"weaponSpeed":3.3,"ilvl":3,"quality":2,"sources":[{"quest":{"id":26198,"name":"The Arts of a Mage"}}],"factionRestriction":1}, -{"id":59043,"name":"Death Star","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":5,"weaponSpeed":2.6,"ilvl":3,"quality":2,"sources":[{"quest":{"id":26207,"name":"The Arts of a Rogue"}}],"factionRestriction":1}, -{"id":59044,"name":"Velocity Bracers","icon":"inv_bracer_73v4","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":26318,"name":"Finishin' the Job"}}]}, -{"id":59045,"name":"Acceleration Belt","icon":"inv_belt_80v2","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":26318,"name":"Finishin' the Job"}}]}, -{"id":59046,"name":"Friction Gloves","icon":"inv_gauntlets_105v3","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":3,"quality":1,"sources":[{"quest":{"id":26318,"name":"Finishin' the Job"}}]}, -{"id":59047,"name":"Free Body Belt","icon":"inv_belt_79v3","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":26333,"name":"No Tanks!"}}]}, -{"id":59048,"name":"Torque-Applying Gloves","icon":"inv_gauntlets_102v3","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":26333,"name":"No Tanks!"}}]}, -{"id":59049,"name":"Inertial Bracers","icon":"inv_bracer_61v4","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":4,"quality":1,"sources":[{"quest":{"id":26333,"name":"No Tanks!"}}]}, -{"id":59050,"name":"Gloves of Potential Energy","icon":"inv_gauntlets_114v3","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":26364,"name":"Down with Crushcog!"}}]}, -{"id":59051,"name":"Bracers of Angular Momentum","icon":"inv_bracer_74v3","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":26364,"name":"Down with Crushcog!"}}]}, -{"id":59052,"name":"Belt of Static Equilibrium","icon":"inv_belt_84v4","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":5,"quality":1,"sources":[{"quest":{"id":26364,"name":"Down with Crushcog!"}}]}, -{"id":59064,"name":"Marblebeard's Shrug","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25735,"name":"Incendicite Ore"}}],"factionRestriction":1}, -{"id":59065,"name":"Sparkproof Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25735,"name":"Incendicite Ore"}}],"factionRestriction":1}, -{"id":59066,"name":"Stabilized Incendicite Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25735,"name":"Incendicite Ore"}}],"factionRestriction":1}, -{"id":59067,"name":"Floodsurge Coat","icon":"inv_misc_cape_13","type":4,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25736,"name":"The Floodsurge Core"}}],"factionRestriction":1}, -{"id":59068,"name":"Waterproof Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25736,"name":"The Floodsurge Core"}}],"factionRestriction":1}, -{"id":59069,"name":"Slabchisel Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25736,"name":"The Floodsurge Core"}}],"factionRestriction":1}, -{"id":59070,"name":"Surveyor's Leggings","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25727,"name":"Drungeld Glowerglare"}}],"factionRestriction":1}, -{"id":59071,"name":"Bad Belt","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25727,"name":"Drungeld Glowerglare"}}],"factionRestriction":1}, -{"id":59072,"name":"Addled Blotter Bracers","icon":"inv_bracer_30a","type":6,"armorType":3,"stats":[2,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25727,"name":"Drungeld Glowerglare"}}],"factionRestriction":1}, -{"id":59073,"name":"Discolored Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25722,"name":"Sedimentary, My Dear"}}],"factionRestriction":1}, -{"id":59074,"name":"Topsoil Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25722,"name":"Sedimentary, My Dear"}}],"factionRestriction":1}, -{"id":59075,"name":"Drunkard's Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":25722,"name":"Sedimentary, My Dear"}}],"factionRestriction":1}, -{"id":59076,"name":"Wand of Infectious Dementia","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.6,"ilvl":21,"quality":2,"sources":[{"quest":{"id":25780,"name":"Assault on Menethil Keep"}}],"factionRestriction":1}, -{"id":59077,"name":"Stoutfist Breastplate","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":25780,"name":"Assault on Menethil Keep"}}],"factionRestriction":1}, -{"id":59078,"name":"Flarecrazed Cloak","icon":"inv_misc_cape_18","type":4,"stats":[3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":25780,"name":"Assault on Menethil Keep"}}],"factionRestriction":1}, -{"id":59079,"name":"Merchant Marine Sandals","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25801,"name":"Claws from the Deep"}}],"factionRestriction":1}, -{"id":59080,"name":"Merchant Marine Waders","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25801,"name":"Claws from the Deep"}}],"factionRestriction":1}, -{"id":59081,"name":"Merchant Marine Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25801,"name":"Claws from the Deep"}}],"factionRestriction":1}, -{"id":59082,"name":"Merchant Marine Pauldrons","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25801,"name":"Claws from the Deep"}}],"factionRestriction":1}, -{"id":59083,"name":"Sash of the Blind Princess","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25805,"name":"Return the Statuette"}}],"factionRestriction":1}, -{"id":59084,"name":"Boran's Shoulderguards","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25805,"name":"Return the Statuette"}}],"factionRestriction":1}, -{"id":59085,"name":"Breastplate of the Lost Paladin","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25805,"name":"Return the Statuette"}}],"factionRestriction":1}, -{"id":59086,"name":"Third Fleet Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,2,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25817,"name":"The Cursed Crew"}}],"factionRestriction":1}, -{"id":59087,"name":"Gloves of Anguished Cries","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25817,"name":"The Cursed Crew"}}],"factionRestriction":1}, -{"id":59088,"name":"Snellig's Vest","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25817,"name":"The Cursed Crew"}}],"factionRestriction":1}, -{"id":59089,"name":"Curse Lifter's Gloves","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25817,"name":"The Cursed Crew"}}],"factionRestriction":1}, -{"id":59090,"name":"Steelbrow's Old Robe","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25819,"name":"The Eye of Paleth"}}],"factionRestriction":1}, -{"id":59091,"name":"Fitzsimmons' Belt","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25819,"name":"The Eye of Paleth"}}],"factionRestriction":1}, -{"id":59092,"name":"Haunted Pauldrons","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":25819,"name":"The Eye of Paleth"}}],"factionRestriction":1}, -{"id":59093,"name":"Shilah's Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25864,"name":"Dinosaur Crisis"}}],"factionRestriction":1}, -{"id":59094,"name":"Highland Shoulderguards","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25864,"name":"Dinosaur Crisis"}}],"factionRestriction":1}, -{"id":59095,"name":"Swiftgear Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25864,"name":"Dinosaur Crisis"}}],"factionRestriction":1}, -{"id":59096,"name":"Accountant's Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25865,"name":"The Mosshide Job"}}],"factionRestriction":1}, -{"id":59097,"name":"Royal Treasury Courier's Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25865,"name":"The Mosshide Job"}}],"factionRestriction":1}, -{"id":59098,"name":"Ingot-Handler Gloves","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25865,"name":"The Mosshide Job"}}],"factionRestriction":1}, -{"id":59099,"name":"Darksnare Dagger","icon":"inv_weapon_shortblade_20","type":13,"weaponType":2,"handType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.8,"ilvl":23,"quality":2,"sources":[{"quest":{"id":25868,"name":"Yorla Darksnare"}}],"factionRestriction":1}, -{"id":59100,"name":"Old Guard's Greataxe","icon":"inv_weapon_halbard_01","type":13,"weaponType":1,"handType":4,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":60,"weaponSpeed":3.3,"ilvl":23,"quality":2,"sources":[{"quest":{"id":25868,"name":"Yorla Darksnare"}}],"factionRestriction":1}, -{"id":59101,"name":"Shilah's Blade","icon":"inv_sword_33","type":13,"weaponType":9,"handType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":1.7,"ilvl":23,"quality":2,"sources":[{"quest":{"id":25868,"name":"Yorla Darksnare"}}],"factionRestriction":1}, -{"id":59102,"name":"Old Guard's Hammer","icon":"inv_hammer_21","type":13,"weaponType":4,"handType":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":60,"weaponSpeed":3.3,"ilvl":23,"quality":2,"sources":[{"quest":{"id":25868,"name":"Yorla Darksnare"}}],"factionRestriction":1}, -{"id":59103,"name":"Rockweaver Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25853,"name":"Tooling Around"}}],"factionRestriction":1}, -{"id":59104,"name":"Unbared Leggings","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25853,"name":"Tooling Around"}}],"factionRestriction":1}, -{"id":59105,"name":"Antique Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":25853,"name":"Tooling Around"}}],"factionRestriction":1}, -{"id":59106,"name":"Floodlily Robes","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":25939,"name":"For Peat's Sake"}}],"factionRestriction":1}, -{"id":59107,"name":"Soothing Hands","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":25939,"name":"For Peat's Sake"}}],"factionRestriction":1}, -{"id":59108,"name":"Deep Moss Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":25939,"name":"For Peat's Sake"}}],"factionRestriction":1}, -{"id":59109,"name":"Marsh Fire Legguards","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":25939,"name":"For Peat's Sake"}}],"factionRestriction":1}, -{"id":59110,"name":"Khaz Modan Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,7,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26128,"name":"The Battle of Thandol Span"}}],"factionRestriction":1}, -{"id":59111,"name":"Khaz Modan Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,7,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26128,"name":"The Battle of Thandol Span"}}],"factionRestriction":1}, -{"id":59112,"name":"Khaz Modan Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,5,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26128,"name":"The Battle of Thandol Span"}}],"factionRestriction":1}, -{"id":59113,"name":"Khaz Modan Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[5,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26128,"name":"The Battle of Thandol Span"}}],"factionRestriction":1}, -{"id":59114,"name":"Iczelia's Band","icon":"inv_jewelry_ring_02","type":11,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26120,"name":"The Crazed Dragonmaw"}}],"factionRestriction":1}, -{"id":59115,"name":"Greenwarden's Gift","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26120,"name":"The Crazed Dragonmaw"}}],"factionRestriction":1}, -{"id":59116,"name":"Ring of Bravery","icon":"inv_jewelry_ring_26","type":11,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26120,"name":"The Crazed Dragonmaw"}}],"factionRestriction":1}, -{"id":59158,"name":"Craig's Steel","icon":"inv_weapon_shortblade_108","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":1.4,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26428,"name":"To Steal From Thieves"}}],"factionRestriction":2}, -{"id":59159,"name":"Highland Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":4,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":73,"weaponSpeed":3.3,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26038,"name":"Attack on the Tower"}}],"factionRestriction":1}, -{"id":59160,"name":"Trelane's Leggings","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26038,"name":"Attack on the Tower"}}],"factionRestriction":1}, -{"id":59161,"name":"Belt of Refuge","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26038,"name":"Attack on the Tower"}}],"factionRestriction":1}, -{"id":59162,"name":"Lightstep Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26038,"name":"Attack on the Tower"}}],"factionRestriction":1}, -{"id":59163,"name":"Craig's Steel","icon":"inv_weapon_shortblade_108","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":26,"weaponSpeed":1.4,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26038,"name":"Attack on the Tower"}}],"factionRestriction":1}, -{"id":59164,"name":"Grim Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":73,"weaponSpeed":3.3,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26428,"name":"To Steal From Thieves"}}],"factionRestriction":2}, -{"id":59165,"name":"Genavie's Leggings","icon":"inv_pants_12","type":9,"armorType":1,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26428,"name":"To Steal From Thieves"}}],"factionRestriction":2}, -{"id":59166,"name":"Adulterous Belt","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26428,"name":"To Steal From Thieves"}}],"factionRestriction":2}, -{"id":59167,"name":"Treads of Unforgotten Pain","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26428,"name":"To Steal From Thieves"}}],"factionRestriction":2}, -{"id":59168,"name":"Stromgarde Surcoat","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26117,"name":"For Southshore"}}],"factionRestriction":1}, -{"id":59169,"name":"Stromgarde Leggings","icon":"inv_pants_leather_18","type":9,"armorType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26117,"name":"For Southshore"}}],"factionRestriction":1}, -{"id":59170,"name":"Stromgarde Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26117,"name":"For Southshore"}}],"factionRestriction":1}, -{"id":59171,"name":"Bloodstone-Studded Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26025,"name":"The Traitor Orc"}}],"factionRestriction":2}, -{"id":59172,"name":"Drakeskin Leggings","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26025,"name":"The Traitor Orc"}}],"factionRestriction":2}, -{"id":59173,"name":"Radiant Silver Armguards","icon":"inv_bracer_30","type":6,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26025,"name":"The Traitor Orc"}}],"factionRestriction":2}, -{"id":59174,"name":"Dustfall Bracers","icon":"inv_bracer_21c","type":6,"armorType":1,"stats":[0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26079,"name":"Wanted! Otto and Falconcrest"}}],"factionRestriction":1}, -{"id":59175,"name":"Sandals of Sorrow","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26079,"name":"Wanted! Otto and Falconcrest"}}],"factionRestriction":1}, -{"id":59176,"name":"War Rider Belt","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26079,"name":"Wanted! Otto and Falconcrest"}}],"factionRestriction":1}, -{"id":59177,"name":"Captain Nials' Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26079,"name":"Wanted! Otto and Falconcrest"}}],"factionRestriction":1}, -{"id":59178,"name":"Ramshackle Bracers","icon":"inv_bracer_21c","type":6,"armorType":1,"stats":[0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26027,"name":"Call to Arms"}}],"factionRestriction":2}, -{"id":59179,"name":"Extra Credit Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26027,"name":"Call to Arms"}}],"factionRestriction":2}, -{"id":59180,"name":"Lurking Belt","icon":"inv_belt_41","type":8,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26027,"name":"Call to Arms"}}],"factionRestriction":2}, -{"id":59181,"name":"Belt of Gutted Ruin","icon":"inv_belt_19","type":8,"armorType":3,"stats":[5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26027,"name":"Call to Arms"}}],"factionRestriction":2}, -{"id":59182,"name":"Syndicate Dagger","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.8,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26024,"name":"Wanted! Marez Cowl"}}],"factionRestriction":1}, -{"id":59183,"name":"Silenced Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":2.8,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26024,"name":"Wanted! Marez Cowl"}}],"factionRestriction":1}, -{"id":59184,"name":"Demon-Trafficker's Belt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26024,"name":"Wanted! Marez Cowl"}}],"factionRestriction":1}, -{"id":59185,"name":"Vest of Dark Rumors","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26024,"name":"Wanted! Marez Cowl"}}],"factionRestriction":1}, -{"id":59186,"name":"Skullslasher","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26029,"name":"The Real Threat"}}],"factionRestriction":2}, -{"id":59187,"name":"Silent Huntress","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":36,"weaponDamageMax":67,"weaponSpeed":2.8,"ilvl":27,"quality":2,"sources":[{"quest":{"id":26029,"name":"The Real Threat"}}],"factionRestriction":2}, -{"id":59188,"name":"Belt of Affront","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26029,"name":"The Real Threat"}}],"factionRestriction":2}, -{"id":59189,"name":"Mistspray Vest","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26029,"name":"The Real Threat"}}],"factionRestriction":2}, -{"id":59190,"name":"Slippers of Sorrowful Tidings","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26095,"name":"Stromgarde Badges"}}],"factionRestriction":1}, -{"id":59191,"name":"Yellow Ribbon Armbands","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26095,"name":"Stromgarde Badges"}}],"factionRestriction":1}, -{"id":59192,"name":"Griefstricken Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26095,"name":"Stromgarde Badges"}}],"factionRestriction":1}, -{"id":59193,"name":"Heartsick Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26095,"name":"Stromgarde Badges"}}],"factionRestriction":1}, -{"id":59194,"name":"Sandals of Satisfaction","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26081,"name":"Alina's Reward"}}],"factionRestriction":2}, -{"id":59195,"name":"Bracers of Sensations","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26081,"name":"Alina's Reward"}}],"factionRestriction":2}, -{"id":59196,"name":"Alina's Gloves","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26081,"name":"Alina's Reward"}}],"factionRestriction":2}, -{"id":59197,"name":"Lordaeron-Made Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26081,"name":"Alina's Reward"}}],"factionRestriction":2}, -{"id":59198,"name":"Draxlegauge Ring","icon":"inv_misc_gear_04","type":11,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26051,"name":"Sunken Treasure"}}]}, -{"id":59199,"name":"Bottom Waders","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26051,"name":"Sunken Treasure"}}]}, -{"id":59200,"name":"Decalcified Elven Spear","icon":"inv_weapon_halberd_12","type":13,"weaponType":6,"handType":4,"stats":[5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":75,"weaponSpeed":3,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26051,"name":"Sunken Treasure"}}]}, -{"id":59201,"name":"Hammerfall Band","icon":"inv_jewelry_ring_23","type":11,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26108,"name":"Guile of the Raptor"}}],"factionRestriction":2}, -{"id":59202,"name":"Hammerfall Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26108,"name":"Guile of the Raptor"}}],"factionRestriction":2}, -{"id":59203,"name":"Hammerfall Gloves","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26108,"name":"Guile of the Raptor"}}],"factionRestriction":2}, -{"id":59204,"name":"Hammerfall Mace","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":50,"weaponSpeed":2.6,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26108,"name":"Guile of the Raptor"}}],"factionRestriction":2}, -{"id":59205,"name":"Folly's Spar","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":3.3,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26055,"name":"Drowned Sorrows"}}]}, -{"id":59206,"name":"Steelgut Vest","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26055,"name":"Drowned Sorrows"}}]}, -{"id":59207,"name":"Maiden's Tattered Sail","icon":"inv_misc_cape_11","type":4,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26055,"name":"Drowned Sorrows"}}]}, -{"id":59208,"name":"Wrap of Open Menace","icon":"inv_misc_cape_18","type":4,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{}}]}, -{"id":59209,"name":"Eldritch Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{}}]}, -{"id":59210,"name":"Earthbound Mantle","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{}}]}, -{"id":59211,"name":"Shackling Gloves","icon":"inv_gauntlets_32","type":7,"armorType":3,"stats":[9,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{}}]}, -{"id":59212,"name":"O'Breen's Dress Robes","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26628,"name":"Death From Below"}}]}, -{"id":59213,"name":"Faldir's Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,5,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26628,"name":"Death From Below"}}]}, -{"id":59214,"name":"Armguards of the Good Captain","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26628,"name":"Death From Below"}}]}, -{"id":59215,"name":"Legguards of the Promising Hero","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26628,"name":"Death From Below"}}]}, -{"id":59235,"name":"Razorbeak Amulet","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26546,"name":"Razorbeak Friends"}}],"factionRestriction":1}, -{"id":59236,"name":"Gryphon-Down Scarf","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26546,"name":"Razorbeak Friends"}}],"factionRestriction":1}, -{"id":59237,"name":"Gryphon Master's Belt","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26546,"name":"Razorbeak Friends"}}],"factionRestriction":1}, -{"id":59238,"name":"Talon Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":2,"stats":[0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.6,"ilvl":31,"quality":2,"sources":[{"quest":{"id":26546,"name":"Razorbeak Friends"}}],"factionRestriction":1}, -{"id":59239,"name":"Wand of Oomph","icon":"inv_misc_orb_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.6,"ilvl":32,"quality":2,"sources":[{"quest":{"id":26490,"name":"Prime Slime"}}],"factionRestriction":1}, -{"id":59240,"name":"Blastbrew Hat","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26490,"name":"Prime Slime"}}],"factionRestriction":1}, -{"id":59241,"name":"Direglob-Slimed Belt","icon":"inv_belt_98","type":8,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26490,"name":"Prime Slime"}}],"factionRestriction":1}, -{"id":59242,"name":"Ironsight Crossbow","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":2.8,"ilvl":32,"quality":2,"sources":[{"quest":{"id":26483,"name":"Gan'dranda"}}],"factionRestriction":1}, -{"id":59243,"name":"Theresa's Bracers","icon":"inv_bracer_62v4","type":6,"armorType":1,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26483,"name":"Gan'dranda"}}],"factionRestriction":1}, -{"id":59244,"name":"Stormfeather Boots","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,0,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26483,"name":"Gan'dranda"}}],"factionRestriction":1}, -{"id":59245,"name":"Head Kickers","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26483,"name":"Gan'dranda"}}],"factionRestriction":1}, -{"id":59246,"name":"Blood Drinker Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.3,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26516,"name":"It's Ours Now"}}],"factionRestriction":1}, -{"id":59247,"name":"Soul Eater Shoulderguard","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26516,"name":"It's Ours Now"}}],"factionRestriction":1}, -{"id":59248,"name":"Steelwing Pendant","icon":"inv_jewelry_necklace_35","type":2,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26516,"name":"It's Ours Now"}}],"factionRestriction":1}, -{"id":59249,"name":"Vile Branch","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,7,9,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.3,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26521,"name":"Faces of Evil"}}],"factionRestriction":1}, -{"id":59250,"name":"Necklace of Evil Faces","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26521,"name":"Faces of Evil"}}],"factionRestriction":1}, -{"id":59251,"name":"Jintha'Alor Bracers","icon":"inv_bracer_78v1","type":6,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26521,"name":"Faces of Evil"}}],"factionRestriction":1}, -{"id":59252,"name":"Sandals of Tainted Blood","icon":"inv_boots_cloth_33v3","type":10,"armorType":1,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26524,"name":"Dark Vessels"}}],"factionRestriction":1}, -{"id":59253,"name":"Sandrene's Invisible Vest","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26524,"name":"Dark Vessels"}}],"factionRestriction":1}, -{"id":59254,"name":"Spider Venom Leggings","icon":"inv_pants_leather_39","type":9,"armorType":2,"stats":[0,6,9,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26524,"name":"Dark Vessels"}}],"factionRestriction":1}, -{"id":59255,"name":"Dark Vessel Breastplate","icon":"inv_chest_mail_19v1","type":5,"armorType":3,"stats":[8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26524,"name":"Dark Vessels"}}],"factionRestriction":1}, -{"id":59256,"name":"Unkeeper Blade","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.8,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26526,"name":"Hunt the Keeper"}}],"factionRestriction":1}, -{"id":59257,"name":"Leggings of Secret Rituals","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26526,"name":"Hunt the Keeper"}}],"factionRestriction":1}, -{"id":59258,"name":"Gloves of Strange Words","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26526,"name":"Hunt the Keeper"}}],"factionRestriction":1}, -{"id":59259,"name":"Tablet-Bearer's Pauldrons","icon":"inv_shoulder_147v1","type":3,"armorType":3,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26526,"name":"Hunt the Keeper"}}],"factionRestriction":1}, -{"id":59260,"name":"Shadraspawn Mantle","icon":"inv_shoulder_134v3","type":3,"armorType":1,"stats":[0,0,7,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26641,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":1}, -{"id":59262,"name":"Cloudcaller Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26641,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":1}, -{"id":59263,"name":"Belt of the Scattering Wind","icon":"inv_belt_87","type":8,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26641,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":1}, -{"id":59264,"name":"Legguards of Caution","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26641,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":1}, -{"id":59265,"name":"Gown of the Last Priestess","icon":"inv_chest_cloth_86","type":5,"armorType":1,"stats":[0,0,7,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26530,"name":"The Shell of Shadra"}}],"factionRestriction":1}, -{"id":59266,"name":"Gwenyth's Bracers","icon":"inv_bracer_64v3","type":6,"armorType":2,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26530,"name":"The Shell of Shadra"}}],"factionRestriction":1}, -{"id":59267,"name":"Gloves of Fanatical Zealotry","icon":"inv_gauntlets_116v1","type":7,"armorType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26530,"name":"The Shell of Shadra"}}],"factionRestriction":1}, -{"id":59268,"name":"Greathammer of the Hinterlands","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26530,"name":"The Shell of Shadra"}}],"factionRestriction":1}, -{"id":59269,"name":"Veil of Aerie Peak","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26532,"name":"Shadra the Venom Queen"}}],"factionRestriction":1}, -{"id":59270,"name":"Headguard of Aerie Peak","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,0,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26532,"name":"Shadra the Venom Queen"}}],"factionRestriction":1}, -{"id":59271,"name":"Headcover of Aerie Peak","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,10,13,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26532,"name":"Shadra the Venom Queen"}}],"factionRestriction":1}, -{"id":59272,"name":"Helm of Aerie Peak","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26532,"name":"Shadra the Venom Queen"}}],"factionRestriction":1}, -{"id":59273,"name":"Luring Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26210,"name":"Gammerita, Mon!"}}],"factionRestriction":2}, -{"id":59274,"name":"Katoom's Mask","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26210,"name":"Gammerita, Mon!"}}],"factionRestriction":2}, -{"id":59275,"name":"Stomachache Belt","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26210,"name":"Gammerita, Mon!"}}],"factionRestriction":2}, -{"id":59276,"name":"Snapjaw Bracers","icon":"inv_bracer_78","type":6,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26210,"name":"Gammerita, Mon!"}}],"factionRestriction":2}, -{"id":59277,"name":"Research Assistant's Wand","icon":"inv_weapon_shortblade_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.6,"ilvl":32,"quality":2,"sources":[{"quest":{"id":26283,"name":"Prime Slime"}}],"factionRestriction":2}, -{"id":59278,"name":"Slime Hunter Headguard","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26283,"name":"Prime Slime"}}],"factionRestriction":2}, -{"id":59279,"name":"Skulk Rock Belt","icon":"inv_belt_98","type":8,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26283,"name":"Prime Slime"}}],"factionRestriction":2}, -{"id":59280,"name":"Voice Stealer","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":2.8,"ilvl":32,"quality":2,"sources":[{"quest":{"id":26263,"name":"Thornar Thunderclash"}}],"factionRestriction":2}, -{"id":59281,"name":"Elder's Wristwraps","icon":"inv_bracer_62v4","type":6,"armorType":1,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26263,"name":"Thornar Thunderclash"}}],"factionRestriction":2}, -{"id":59282,"name":"Encroaching Treads","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26263,"name":"Thornar Thunderclash"}}],"factionRestriction":2}, -{"id":59283,"name":"Revantusk Boots","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26263,"name":"Thornar Thunderclash"}}],"factionRestriction":2}, -{"id":59284,"name":"Unkeeper Blade","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":1.8,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26369,"name":"Hunt the Keeper"}}],"factionRestriction":2}, -{"id":59285,"name":"Leggings of Secret Rituals","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26369,"name":"Hunt the Keeper"}}],"factionRestriction":2}, -{"id":59286,"name":"Gloves of Strange Words","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26369,"name":"Hunt the Keeper"}}],"factionRestriction":2}, -{"id":59287,"name":"Tablet-Bearer's Pauldrons","icon":"inv_shoulder_147v1","type":3,"armorType":3,"stats":[7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26369,"name":"Hunt the Keeper"}}],"factionRestriction":2}, -{"id":59288,"name":"Vile Branch","icon":"inv_staff_16","type":13,"weaponType":8,"handType":4,"stats":[0,7,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.3,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26357,"name":"Faces of Evil"}}],"factionRestriction":2}, -{"id":59289,"name":"Necklace of Evil Faces","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26357,"name":"Faces of Evil"}}],"factionRestriction":2}, -{"id":59290,"name":"Jintha'Alor Axe","icon":"inv_axe_64","type":13,"weaponType":1,"handType":2,"stats":[0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":2.6,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26357,"name":"Faces of Evil"}}],"factionRestriction":2}, -{"id":59291,"name":"Blood Drinker Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":89,"weaponSpeed":3.3,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26308,"name":"It's Ours Now"}}],"factionRestriction":2}, -{"id":59292,"name":"Soul Eater Shoulderguard","icon":"inv_shoulder_136","type":3,"armorType":2,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26308,"name":"It's Ours Now"}}],"factionRestriction":2}, -{"id":59293,"name":"Torntusk Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26308,"name":"It's Ours Now"}}],"factionRestriction":2}, -{"id":59294,"name":"Sandals of Tainted Blood","icon":"inv_boots_cloth_33v3","type":10,"armorType":1,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26309,"name":"Dark Vessels"}}],"factionRestriction":2}, -{"id":59295,"name":"Sandrene's Invisible Vest","icon":"inv_chest_leather_27v2","type":5,"armorType":2,"stats":[0,0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26309,"name":"Dark Vessels"}}],"factionRestriction":2}, -{"id":59296,"name":"Spider Venom Leggings","icon":"inv_pants_leather_39","type":9,"armorType":2,"stats":[0,7,9,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26309,"name":"Dark Vessels"}}],"factionRestriction":2}, -{"id":59297,"name":"Dark Vessel Breastplate","icon":"inv_chest_mail_19v1","type":5,"armorType":3,"stats":[8,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26309,"name":"Dark Vessels"}}],"factionRestriction":2}, -{"id":59298,"name":"Surlis' Mantle","icon":"inv_shoulder_134v3","type":3,"armorType":1,"stats":[0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26382,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":2}, -{"id":59299,"name":"Apothecary Leggings","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26382,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":2}, -{"id":59300,"name":"Shadraspawn Belt","icon":"inv_belt_87","type":8,"armorType":2,"stats":[0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26382,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":2}, -{"id":59301,"name":"Legguards of Caution","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26382,"name":"Can't Make An Omelette Without..."}}],"factionRestriction":2}, -{"id":59302,"name":"Gown of the Last Priestess","icon":"inv_chest_cloth_86","type":5,"armorType":1,"stats":[0,0,7,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26418,"name":"The Shell of Shadra"}}],"factionRestriction":2}, -{"id":59303,"name":"Gwenyth's Bracers","icon":"inv_bracer_64v3","type":6,"armorType":2,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26418,"name":"The Shell of Shadra"}}],"factionRestriction":2}, -{"id":59304,"name":"Gloves of Fanatical Zealotry","icon":"inv_gauntlets_116v1","type":7,"armorType":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26418,"name":"The Shell of Shadra"}}],"factionRestriction":2}, -{"id":59305,"name":"Greataxe of the Hinterlands","icon":"inv_axe_20","type":13,"weaponType":1,"handType":4,"stats":[9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26418,"name":"The Shell of Shadra"}}],"factionRestriction":2}, -{"id":59306,"name":"Darkcleric's Veil","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26419,"name":"Shadra the Venom Queen"}}],"factionRestriction":2}, -{"id":59307,"name":"Virulent Headguard","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26419,"name":"Shadra the Venom Queen"}}],"factionRestriction":2}, -{"id":59308,"name":"Venomous Headcover","icon":"inv_helmet_175v1","type":1,"armorType":2,"stats":[0,11,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26419,"name":"Shadra the Venom Queen"}}],"factionRestriction":2}, -{"id":59309,"name":"Poisoner's Helm","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[11,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26419,"name":"Shadra the Venom Queen"}}],"factionRestriction":2}, -{"id":59368,"name":"Gloves of Compassion","icon":"inv_gauntlets_111v2","type":7,"armorType":1,"stats":[0,0,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25709,"name":"Curtail the Darktail"}}],"factionRestriction":1}, -{"id":59369,"name":"Darktail Belt","icon":"inv_belt_91v1","type":8,"armorType":2,"stats":[0,7,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25709,"name":"Curtail the Darktail"}}],"factionRestriction":1}, -{"id":59370,"name":"Enohar's Old Hunting Boots","icon":"inv_boots_mail_12v3","type":10,"armorType":3,"stats":[0,12,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25709,"name":"Curtail the Darktail"}}],"factionRestriction":1}, -{"id":59371,"name":"Bonepicker Bracers","icon":"inv_bracer_65","type":6,"armorType":4,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25709,"name":"Curtail the Darktail"}}],"factionRestriction":1}, -{"id":59372,"name":"Nethergarde Bracers","icon":"inv_bracer_69v2","type":6,"armorType":1,"stats":[0,0,9,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25711,"name":"Eliminate the Okril'lon"}}],"factionRestriction":1}, -{"id":59373,"name":"Nethergarde Belt","icon":"inv_belt_91v2","type":8,"armorType":2,"stats":[0,0,12,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25711,"name":"Eliminate the Okril'lon"}}],"factionRestriction":1}, -{"id":59374,"name":"Nethergarde Boots","icon":"inv_boots_mail_12v1","type":10,"armorType":3,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25711,"name":"Eliminate the Okril'lon"}}],"factionRestriction":1}, -{"id":59375,"name":"Nethergarde Gloves","icon":"inv_gauntlets_108","type":7,"armorType":4,"stats":[7,0,12,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25711,"name":"Eliminate the Okril'lon"}}],"factionRestriction":1}, -{"id":59376,"name":"Sandals of the Shadowsworn","icon":"inv_boots_cloth_34v2","type":10,"armorType":1,"stats":[0,0,12,6,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25716,"name":"Cultists at our Doorstep"}}],"factionRestriction":1}, -{"id":59377,"name":"Spell Focus Shoulderguards","icon":"inv_shoulder_140v2","type":3,"armorType":2,"stats":[0,0,12,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25716,"name":"Cultists at our Doorstep"}}],"factionRestriction":1}, -{"id":59378,"name":"Belt of Occult Horrors","icon":"inv_belt_89v1","type":8,"armorType":3,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25716,"name":"Cultists at our Doorstep"}}],"factionRestriction":1}, -{"id":59379,"name":"Mahar's Gift","icon":"inv_pants_plate_39v1","type":9,"armorType":4,"stats":[0,0,16,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25716,"name":"Cultists at our Doorstep"}}],"factionRestriction":1}, -{"id":59380,"name":"Shattershore Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,9,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26169,"name":"The Amulet of Grol"}}],"factionRestriction":1}, -{"id":59381,"name":"Ogre-Hunter Boots","icon":"inv_boots_leather_13v1","type":10,"armorType":2,"stats":[0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26169,"name":"The Amulet of Grol"}}],"factionRestriction":1}, -{"id":59382,"name":"Serpent Coils","icon":"inv_bracer_66v3","type":6,"armorType":3,"stats":[0,5,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26169,"name":"The Amulet of Grol"}}],"factionRestriction":1}, -{"id":59383,"name":"Strengthening Belt","icon":"inv_belt_88","type":8,"armorType":4,"stats":[8,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26169,"name":"The Amulet of Grol"}}],"factionRestriction":1}, -{"id":59384,"name":"Ashmane Bracers","icon":"inv_bracer_68v1","type":6,"armorType":2,"stats":[0,6,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26172,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":1}, -{"id":59385,"name":"Stained Shoulderguards","icon":"inv_shoulder_138v3","type":3,"armorType":3,"stats":[0,9,12,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26172,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":1}, -{"id":59386,"name":"Boots of the Blasted Lands","icon":"inv_boots_plate_20","type":10,"armorType":4,"stats":[7,0,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":26172,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":1}, -{"id":59387,"name":"Boots of Demonic Resurrection","icon":"inv_boots_leather_13v2","type":10,"armorType":2,"stats":[0,0,12,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26162,"name":"The Altar of Storms"}}],"factionRestriction":1}, -{"id":59388,"name":"Loramus' Gloves","icon":"inv_gauntlets_110v1","type":7,"armorType":2,"stats":[0,6,12,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26162,"name":"The Altar of Storms"}}],"factionRestriction":1}, -{"id":59389,"name":"Bracers of the Demonic Altar","icon":"inv_bracer_66v1","type":6,"armorType":3,"stats":[0,0,9,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26162,"name":"The Altar of Storms"}}],"factionRestriction":1}, -{"id":59390,"name":"Boots of Completed Rituals","icon":"inv_boots_plate_20v1","type":10,"armorType":4,"stats":[0,0,12,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26162,"name":"The Altar of Storms"}}],"factionRestriction":1}, -{"id":59391,"name":"Helm of Storms","icon":"inv_helmet_177v1","type":1,"armorType":4,"stats":[13,0,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26162,"name":"The Altar of Storms"}}],"factionRestriction":1}, -{"id":59392,"name":"Rogue Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":1.7,"ilvl":56,"quality":2,"sources":[{"quest":{"id":26174,"name":"Watching Our Back"}}],"factionRestriction":1}, -{"id":59393,"name":"Harmless Bracers","icon":"inv_bracer_68v2","type":6,"armorType":2,"stats":[0,0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26174,"name":"Watching Our Back"}}],"factionRestriction":1}, -{"id":59394,"name":"Gloves of Foolish Innocence","icon":"inv_gauntlets_109v1","type":7,"armorType":3,"stats":[0,0,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26174,"name":"Watching Our Back"}}],"factionRestriction":1}, -{"id":59395,"name":"Netherwane Cloak","icon":"inv_misc_cape_20","type":4,"stats":[7,0,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":26174,"name":"Watching Our Back"}}],"factionRestriction":1}, -{"id":59396,"name":"Band of Selfless Acts","icon":"inv_jewelry_ring_67","type":11,"stats":[0,9,12,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":26171,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":1}, -{"id":59397,"name":"Band of Sacrifice","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,12,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":26171,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":1}, -{"id":59398,"name":"Band of Noble Deeds","icon":"inv_jewelry_ring_70","type":11,"stats":[9,0,12,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":26171,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":1}, -{"id":59399,"name":"Wormthorn Gloves","icon":"inv_gauntlets_112","type":7,"armorType":2,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":26187,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":1}, -{"id":59400,"name":"Shoulderguards of Tarnished Healing","icon":"inv_shoulder_144v2","type":3,"armorType":3,"stats":[0,0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":26187,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":1}, -{"id":59401,"name":"Surwich Pauldrons","icon":"inv_shoulder_145v2","type":3,"armorType":4,"stats":[0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":26187,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":1}, -{"id":59402,"name":"Surwich Breastplate","icon":"inv_chest_plate30v3","type":5,"armorType":4,"stats":[15,0,23,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":26187,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":1}, -{"id":59403,"name":"Gambler's Wrap","icon":"inv_misc_cape_14","type":4,"stats":[0,5,9,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"sources":[{"quest":{"id":25706,"name":"Neptool's Revenge"}}]}, -{"id":59404,"name":"Rockpool Belt","icon":"inv_belt_96","type":8,"armorType":4,"stats":[0,0,12,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"sources":[{"quest":{"id":25706,"name":"Neptool's Revenge"}}]}, -{"id":59405,"name":"Bloodwash Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,11,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":2,"sources":[{"quest":{"id":25706,"name":"Neptool's Revenge"}}]}, -{"id":59406,"name":"Gloves of Purchased Time","icon":"inv_gauntlets_111v2","type":7,"armorType":1,"stats":[0,0,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25675,"name":"Ogre Combat"}}],"factionRestriction":2}, -{"id":59407,"name":"Aitokk's Belt","icon":"inv_belt_91v1","type":8,"armorType":2,"stats":[0,7,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25675,"name":"Ogre Combat"}}],"factionRestriction":2}, -{"id":59408,"name":"Boots of Intimidation","icon":"inv_boots_mail_12v3","type":10,"armorType":3,"stats":[0,12,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25675,"name":"Ogre Combat"}}],"factionRestriction":2}, -{"id":59409,"name":"Dreadmaul Bracers","icon":"inv_bracer_65","type":6,"armorType":4,"stats":[9,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25675,"name":"Ogre Combat"}}],"factionRestriction":2}, -{"id":59410,"name":"Rofilian's Armbands","icon":"inv_bracer_69v2","type":6,"armorType":1,"stats":[0,0,9,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25678,"name":"Pick Your Fate"}}],"factionRestriction":2}, -{"id":59411,"name":"Belt of Cheapened Lives","icon":"inv_belt_91v2","type":8,"armorType":2,"stats":[0,0,12,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25678,"name":"Pick Your Fate"}}],"factionRestriction":2}, -{"id":59412,"name":"Boots of Financial Victory","icon":"inv_boots_mail_12v1","type":10,"armorType":3,"stats":[0,0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25678,"name":"Pick Your Fate"}}],"factionRestriction":2}, -{"id":59413,"name":"Business Handlers","icon":"inv_gauntlets_108","type":7,"armorType":4,"stats":[7,0,12,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25678,"name":"Pick Your Fate"}}],"factionRestriction":2}, -{"id":59414,"name":"Boots of Attrition","icon":"inv_boots_cloth_34v2","type":10,"armorType":1,"stats":[0,0,12,6,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25682,"name":"Mission Complete"}}],"factionRestriction":2}, -{"id":59415,"name":"Reporter's Shoulderguards","icon":"inv_shoulder_140v2","type":3,"armorType":2,"stats":[0,0,12,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25682,"name":"Mission Complete"}}],"factionRestriction":2}, -{"id":59416,"name":"Okrilla's Belt","icon":"inv_belt_89v1","type":8,"armorType":3,"stats":[0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25682,"name":"Mission Complete"}}],"factionRestriction":2}, -{"id":59417,"name":"Rockard Greaves","icon":"inv_pants_plate_39v1","type":9,"armorType":4,"stats":[0,0,16,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25682,"name":"Mission Complete"}}],"factionRestriction":2}, -{"id":59418,"name":"Shattershore Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,0,9,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25699,"name":"The Amulet of Grol"}}],"factionRestriction":2}, -{"id":59419,"name":"Ogre-Hunter Boots","icon":"inv_boots_leather_13v1","type":10,"armorType":2,"stats":[0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25699,"name":"The Amulet of Grol"}}],"factionRestriction":2}, -{"id":59420,"name":"Serpent Coils","icon":"inv_bracer_66v3","type":6,"armorType":3,"stats":[0,5,9,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25699,"name":"The Amulet of Grol"}}],"factionRestriction":2}, -{"id":59421,"name":"Strengthening Belt","icon":"inv_belt_88","type":8,"armorType":4,"stats":[8,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25699,"name":"The Amulet of Grol"}}],"factionRestriction":2}, -{"id":59422,"name":"Ashmane Bracers","icon":"inv_bracer_68v1","type":6,"armorType":2,"stats":[0,6,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25690,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":2}, -{"id":59423,"name":"Stained Shoulderguards","icon":"inv_shoulder_138v3","type":3,"armorType":3,"stats":[0,9,12,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25690,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":2}, -{"id":59424,"name":"Boots of the Blasted Lands","icon":"inv_boots_plate_20","type":10,"armorType":4,"stats":[7,0,12,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25690,"name":"A Bloodmage's Gotta Eat Too"}}],"factionRestriction":2}, -{"id":59425,"name":"Boots of Demonic Resurrection","icon":"inv_boots_leather_13v2","type":10,"armorType":2,"stats":[0,0,12,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25688,"name":"The Altar of Storms"}}],"factionRestriction":2}, -{"id":59426,"name":"Loramus' Gloves","icon":"inv_gauntlets_110v1","type":7,"armorType":2,"stats":[0,6,12,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25688,"name":"The Altar of Storms"}}],"factionRestriction":2}, -{"id":59427,"name":"Bracers of the Demonic Altar","icon":"inv_bracer_66v1","type":6,"armorType":3,"stats":[0,0,9,5,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25688,"name":"The Altar of Storms"}}],"factionRestriction":2}, -{"id":59428,"name":"Boots of Completed Rituals","icon":"inv_boots_plate_20v1","type":10,"armorType":4,"stats":[0,0,12,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25688,"name":"The Altar of Storms"}}],"factionRestriction":2}, -{"id":59429,"name":"Helm of Storms","icon":"inv_helmet_177v1","type":1,"armorType":4,"stats":[13,0,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":25688,"name":"The Altar of Storms"}}],"factionRestriction":2}, -{"id":59430,"name":"Rogue Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":96,"weaponSpeed":1.7,"ilvl":56,"quality":2,"sources":[{"quest":{"id":25695,"name":"Watching Our Back"}}],"factionRestriction":2}, -{"id":59431,"name":"Harmless Bracers","icon":"inv_bracer_68v2","type":6,"armorType":2,"stats":[0,0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25695,"name":"Watching Our Back"}}],"factionRestriction":2}, -{"id":59432,"name":"Gloves of Foolish Innocence","icon":"inv_gauntlets_109v1","type":7,"armorType":3,"stats":[0,0,12,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25695,"name":"Watching Our Back"}}],"factionRestriction":2}, -{"id":59433,"name":"Dar'toon's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[7,0,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":56,"quality":2,"sources":[{"quest":{"id":25695,"name":"Watching Our Back"}}],"factionRestriction":2}, -{"id":59434,"name":"Band of Selfless Acts","icon":"inv_jewelry_ring_67","type":11,"stats":[0,9,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":25701,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":2}, -{"id":59435,"name":"Band of Sacrifice","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,12,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":25701,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":2}, -{"id":59436,"name":"Band of Noble Deeds","icon":"inv_jewelry_ring_70","type":11,"stats":[8,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"quest":{"id":25701,"name":"You Are Rakh'likh, Demon"}}],"factionRestriction":2}, -{"id":59437,"name":"Wormthorn Gloves","icon":"inv_gauntlets_112","type":7,"armorType":2,"stats":[0,0,11,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":25720,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":2}, -{"id":59438,"name":"Shoulderguards of Tarnished Healing","icon":"inv_shoulder_144v2","type":3,"armorType":3,"stats":[0,0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":25720,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":2}, -{"id":59439,"name":"Pauldrons of the Trove","icon":"inv_shoulder_145v2","type":3,"armorType":4,"stats":[0,0,17,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":25720,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":2}, -{"id":59440,"name":"Sunveil Breastplate","icon":"inv_chest_plate30v3","type":5,"armorType":4,"stats":[14,0,23,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":25720,"name":"The Downfall of Marl Wormthorn"}}],"factionRestriction":2}, -{"id":59529,"name":"Flame Retardant Sheet","icon":"inv_misc_cape_18","type":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13878,"name":"Through Fire and Flames"}}],"factionRestriction":2}, -{"id":59530,"name":"Wolf Tender's Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":13878,"name":"Through Fire and Flames"}}],"factionRestriction":2}, -{"id":59531,"name":"Far Watch Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.8,"ilvl":12,"quality":2,"sources":[{"quest":{"id":13971,"name":"The Kodo's Return"}}],"factionRestriction":2}, -{"id":59532,"name":"Imported Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13971,"name":"The Kodo's Return"}}],"factionRestriction":2}, -{"id":59533,"name":"Wand of Separation","icon":"inv_staff_17","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":18,"weaponSpeed":1.6,"ilvl":12,"quality":2,"sources":[{"quest":{"id":13968,"name":"The Tortusk Takedown"}}],"factionRestriction":2}, -{"id":59534,"name":"Boar Hunter's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13968,"name":"The Tortusk Takedown"}}],"factionRestriction":2}, -{"id":59535,"name":"Togrik's Legguards","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13968,"name":"The Tortusk Takedown"}}],"factionRestriction":2}, -{"id":59536,"name":"Bloodeye Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13949,"name":"Crossroads Caravan Pickup"}}],"factionRestriction":2}, -{"id":59537,"name":"Kranal's Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13949,"name":"Crossroads Caravan Pickup"}}],"factionRestriction":2}, -{"id":59538,"name":"Caravan Escort's Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":13949,"name":"Crossroads Caravan Pickup"}}],"factionRestriction":2}, -{"id":59539,"name":"Mankrik's Old Wedding Garments","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":899,"name":"Consumed by Hatred"}}],"factionRestriction":2}, -{"id":59540,"name":"Quilboar Skin Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":899,"name":"Consumed by Hatred"}}],"factionRestriction":2}, -{"id":59541,"name":"Mankrik's Boar Slicer","icon":"inv_axe_64","type":13,"weaponType":1,"handType":4,"stats":[1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.3,"ilvl":12,"quality":2,"sources":[{"quest":{"id":899,"name":"Consumed by Hatred"}}],"factionRestriction":2}, -{"id":59542,"name":"Thornweaver Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":872,"name":"The Far Watch Offensive"}}],"factionRestriction":2}, -{"id":59543,"name":"Pigman Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":872,"name":"The Far Watch Offensive"}}],"factionRestriction":2}, -{"id":59544,"name":"Kargal's Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":872,"name":"The Far Watch Offensive"}}],"factionRestriction":2}, -{"id":59545,"name":"Fuzzy Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":13998,"name":"In Fungus We Trust"}}],"factionRestriction":2}, -{"id":59546,"name":"Ointment-Coated Bracers","icon":"inv_bracer_27a","type":6,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":13998,"name":"In Fungus We Trust"}}],"factionRestriction":2}, -{"id":59547,"name":"Out-of-Date Manual","icon":"inv_misc_book_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":14006,"name":"Read the Manual"}}],"factionRestriction":2}, -{"id":59548,"name":"Scrap Metal Shield","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":14006,"name":"Read the Manual"}}],"factionRestriction":2}, -{"id":59549,"name":"Sunscale Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":905,"name":"Into the Raptor's Den"}}],"factionRestriction":2}, -{"id":59550,"name":"Darkthorn Piercer","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":2.6,"ilvl":14,"quality":2,"sources":[{"quest":{"id":905,"name":"Into the Raptor's Den"}}],"factionRestriction":2}, -{"id":59551,"name":"Tangled Thread Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":850,"name":"Kolkar Leaders"}}],"factionRestriction":2}, -{"id":59552,"name":"Belt of the Forgotten Pool","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":850,"name":"Kolkar Leaders"}}],"factionRestriction":2}, -{"id":59553,"name":"Highstrider Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":850,"name":"Kolkar Leaders"}}],"factionRestriction":2}, -{"id":59554,"name":"Silver-Edged Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.7,"ilvl":15,"quality":2,"sources":[{"quest":{"id":14067,"name":"The Stolen Silver"}}],"factionRestriction":2}, -{"id":59555,"name":"Silver-Trim Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":14067,"name":"The Stolen Silver"}}],"factionRestriction":2}, -{"id":59556,"name":"Shield of Inner Glow","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":59557,"name":"Belt of Unwanted Aid","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"factionRestriction":2}, -{"id":59558,"name":"Gouging Staff","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":28,"weaponDamageMax":43,"weaponSpeed":3.3,"ilvl":16,"quality":2,"sources":[{"quest":{"id":14042,"name":"Ammo Kerblammo"}}],"factionRestriction":2}, -{"id":59559,"name":"Bellipotent Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":14042,"name":"Ammo Kerblammo"}}],"factionRestriction":2}, -{"id":59560,"name":"Bling Cane","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":16,"quality":3,"sources":[{"quest":{"id":14050,"name":"Gazlowe's Fortune"}}],"factionRestriction":2}, -{"id":59561,"name":"Vest of Fortune","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":14050,"name":"Gazlowe's Fortune"}}],"factionRestriction":2}, -{"id":59562,"name":"Dividend Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[4,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":14050,"name":"Gazlowe's Fortune"}}],"factionRestriction":2}, -{"id":59563,"name":"Waptor Thwapper","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":14068,"name":"Waptor Twapping"}}],"factionRestriction":2}, -{"id":59564,"name":"Waptor Skin Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":14068,"name":"Waptor Twapping"}}],"factionRestriction":2}, -{"id":59565,"name":"Waptor Scale Bweastpwate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":14068,"name":"Waptor Twapping"}}],"factionRestriction":2}, -{"id":59566,"name":"Robe of Shame","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":851,"name":"Verog the Dervish"}}],"factionRestriction":2}, -{"id":59567,"name":"Murderous Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":851,"name":"Verog the Dervish"}}],"factionRestriction":2}, -{"id":59568,"name":"Painstakingly Crafted Belt","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{}}]}, -{"id":59569,"name":"Clean Room Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{}}]}, -{"id":59570,"name":"Bargain Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{}}]}, -{"id":59571,"name":"Irregular Belt","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{}}]}, -{"id":59572,"name":"Misshapen Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{}}]}, -{"id":59573,"name":"Bachelor's Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,2,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":14,"weaponDamageMax":27,"weaponSpeed":1.8,"ilvl":17,"quality":3,"sources":[{"quest":{"id":14063,"name":"Mutiny, Mon!"}}],"factionRestriction":2}, -{"id":59574,"name":"Conspirator's Slippers","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":14063,"name":"Mutiny, Mon!"}}],"factionRestriction":2}, -{"id":59575,"name":"Uninsured Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":14063,"name":"Mutiny, Mon!"}}],"factionRestriction":2}, -{"id":59576,"name":"Mutineer's Cloak","icon":"inv_misc_cape_18","type":4,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":14063,"name":"Mutiny, Mon!"}}],"factionRestriction":2}, -{"id":59577,"name":"Sputtervalve Gun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":2.8,"ilvl":18,"quality":2,"sources":[{"quest":{"id":863,"name":"The Escape"}}]}, -{"id":59578,"name":"Bracers of Angry Mutterings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":863,"name":"The Escape"}}]}, -{"id":59579,"name":"Nozzlepot Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":863,"name":"The Escape"}}]}, -{"id":59580,"name":"Sharp Poker","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":47,"weaponSpeed":3,"ilvl":18,"quality":2,"sources":[{"quest":{"id":865,"name":"It's Gotta be the Horn"}}]}, -{"id":59581,"name":"Smart Shoes","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":865,"name":"It's Gotta be the Horn"}}]}, -{"id":59582,"name":"Shrewd Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":2.8,"ilvl":18,"quality":2,"sources":[{"quest":{"id":865,"name":"It's Gotta be the Horn"}}]}, -{"id":59583,"name":"Marauding Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":855,"name":"Centaur Bracers"}}],"factionRestriction":2}, -{"id":59584,"name":"Foolhardy Bracers","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":855,"name":"Centaur Bracers"}}],"factionRestriction":2}, -{"id":59585,"name":"Lushwater Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":852,"name":"Hezrul Bloodmark"}}],"factionRestriction":2}, -{"id":59586,"name":"Gloves of Unfocused Rage","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":852,"name":"Hezrul Bloodmark"}}],"factionRestriction":2}, -{"id":59587,"name":"Fractured Belt","icon":"inv_belt_45","type":8,"armorType":3,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":852,"name":"Hezrul Bloodmark"}}],"factionRestriction":2}, -{"id":59588,"name":"Cutthroat Band","icon":"inv_jewelry_ring_21","type":11,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":876,"name":"Serena Bloodfeather"}}],"factionRestriction":2}, -{"id":59589,"name":"Bloodfeather Ring","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":876,"name":"Serena Bloodfeather"}}],"factionRestriction":2}, -{"id":59590,"name":"Darsok's Ring","icon":"inv_jewelry_ring_23","type":11,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":876,"name":"Serena Bloodfeather"}}],"factionRestriction":2}, -{"id":59591,"name":"Shield of the Barrens","icon":"inv_shield_16","type":13,"weaponType":7,"handType":3,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":4021,"name":"Counterattack!"}}],"factionRestriction":2}, -{"id":59592,"name":"Suppressor's Wand","icon":"inv_weapon_shortblade_18","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":43,"weaponSpeed":1.6,"ilvl":20,"quality":3,"sources":[{"quest":{"id":4021,"name":"Counterattack!"}}],"factionRestriction":2}, -{"id":59593,"name":"Deathgate Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":4021,"name":"Counterattack!"}}],"factionRestriction":2}, -{"id":59600,"name":"Phosphora Fedora","icon":"inv_helmet_50","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":59611,"name":"Grimhorn Pummeler","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,0,0,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26149,"name":"Prisoners"}}],"factionRestriction":2}, -{"id":59612,"name":"Darkspear Ritual Blade","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":1,"stats":[0,0,98,65,0,0,47,0,0,0,0,38,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26149,"name":"Prisoners"}}],"factionRestriction":2}, -{"id":59613,"name":"Goblin Shanker","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,36,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.4,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26149,"name":"Prisoners"}}],"factionRestriction":2}, -{"id":59614,"name":"Draenic Shacklebreaker","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,0,0,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26144,"name":"Prisoners"}}],"factionRestriction":1}, -{"id":59615,"name":"Gnomeregan Mindslicer","icon":"inv_sword_142","type":13,"weaponType":9,"handType":1,"stats":[0,0,98,65,0,0,47,0,0,0,0,38,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":255,"weaponDamageMax":475,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26144,"name":"Prisoners"}}],"factionRestriction":1}, -{"id":59616,"name":"Gilnean Slicer","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,36,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.4,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26144,"name":"Prisoners"}}],"factionRestriction":1}, -{"id":59617,"name":"Mentalist's Protective Bottle","icon":"inv_drink_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26111,"name":"... It Will Come"}}]}, -{"id":59618,"name":"Chestguard of Cognitive Dissonance","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26111,"name":"... It Will Come"}}]}, -{"id":59619,"name":"Brain-Connector Chain","icon":"spell_shadow_brainwash","type":2,"stats":[0,0,127,85,47,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26111,"name":"... It Will Come"}}]}, -{"id":59620,"name":"Trench-Stalker Shotgun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[48,0,72,0,0,35,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":1018,"weaponSpeed":2.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26071,"name":"Clearing the Defiled"}}],"factionRestriction":2}, -{"id":59621,"name":"Eel-Slayer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26071,"name":"Clearing the Defiled"}}],"factionRestriction":2}, -{"id":59622,"name":"Remora-Crusher Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,77,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26071,"name":"Clearing the Defiled"}}],"factionRestriction":2}, -{"id":59623,"name":"Trench-Stalker Shotgun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[48,0,72,0,0,35,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":1018,"weaponSpeed":2.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26070,"name":"Clearing the Defiled"}}],"factionRestriction":1}, -{"id":59624,"name":"Eel-Slayer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26070,"name":"Clearing the Defiled"}}],"factionRestriction":1}, -{"id":59625,"name":"Remora-Crusher Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,77,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26070,"name":"Clearing the Defiled"}}],"factionRestriction":1}, -{"id":59627,"name":"Tentacle-Slayer Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,85,127,0,0,0,59,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26065,"name":"Free Wil'hai"}}]}, -{"id":59628,"name":"Hood of Teeming Horror","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26065,"name":"Free Wil'hai"}}]}, -{"id":59629,"name":"Riptide Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,0,109,89,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25988,"name":"Put It On"}}],"factionRestriction":2}, -{"id":59630,"name":"Severed Visionary Tentacle","icon":"inv_misc_monstertail_04","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25988,"name":"Put It On"}}],"factionRestriction":2}, -{"id":59631,"name":"Beak of the Merciless One","icon":"inv_weapon_shortblade_16","type":14,"rangedWeaponType":5,"stats":[0,48,72,0,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25988,"name":"Put It On"}}],"factionRestriction":2}, -{"id":59632,"name":"Riptide Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,0,109,89,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25987,"name":"Put It On"}}],"factionRestriction":1}, -{"id":59633,"name":"Severed Visionary Tentacle","icon":"inv_misc_monstertail_04","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25987,"name":"Put It On"}}],"factionRestriction":1}, -{"id":59634,"name":"Beak of the Merciless One","icon":"inv_weapon_shortblade_16","type":14,"rangedWeaponType":5,"stats":[0,48,72,0,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.7,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25987,"name":"Put It On"}}],"factionRestriction":1}, -{"id":59635,"name":"Necklace of the Furious Standard","icon":"inv_misc_necklacea4","type":2,"stats":[85,0,127,0,0,46,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25980,"name":"A Standard Day for Azrajar"}}],"factionRestriction":2}, -{"id":59636,"name":"Spikemender Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,169,113,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25980,"name":"A Standard Day for Azrajar"}}],"factionRestriction":2}, -{"id":59638,"name":"Necklace of the Furious Standard","icon":"inv_misc_necklacea4","type":2,"stats":[85,0,127,0,0,46,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25977,"name":"A Standard Day for Azrajar"}}],"factionRestriction":1}, -{"id":59639,"name":"Spikemender Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,169,113,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25977,"name":"A Standard Day for Azrajar"}}],"factionRestriction":1}, -{"id":59641,"name":"Chemical-Stained Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,66,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26126,"name":"The Perfect Fuel"}}],"factionRestriction":2}, -{"id":59642,"name":"Vapor-Proof Headcover","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26126,"name":"The Perfect Fuel"}}],"factionRestriction":2}, -{"id":59643,"name":"Gloves of Delicate Mixture","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,83,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26126,"name":"The Perfect Fuel"}}],"factionRestriction":2}, -{"id":59644,"name":"Chemical-Stained Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,66,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26106,"name":"Fuel-ology 101"}}],"factionRestriction":1}, -{"id":59645,"name":"Vapor-Proof Headcover","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26106,"name":"Fuel-ology 101"}}],"factionRestriction":1}, -{"id":59646,"name":"Gloves of Delicate Mixture","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,83,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26106,"name":"Fuel-ology 101"}}],"factionRestriction":1}, -{"id":59647,"name":"Captain Verne's Splitter","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26092,"name":"Orako's Report"}}],"factionRestriction":2}, -{"id":59648,"name":"Handguards of the Severed Starfish","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26092,"name":"Orako's Report"}}],"factionRestriction":2}, -{"id":59649,"name":"Chum-Coated Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,107,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26092,"name":"Orako's Report"}}],"factionRestriction":2}, -{"id":59650,"name":"Glovaal's Choppink Svord","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26080,"name":"One Last Favor"}}],"factionRestriction":1}, -{"id":59651,"name":"Grips of the Severed Starfish","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26080,"name":"One Last Favor"}}],"factionRestriction":1}, -{"id":59652,"name":"Drag-Resistant Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,107,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26080,"name":"One Last Favor"}}],"factionRestriction":1}, -{"id":59653,"name":"Explosively Decompressed Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,169,113,85,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26091,"name":"Here Fishie Fishie 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":2}, -{"id":59654,"name":"Shoulderpads of Anguilliform Extinction","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26091,"name":"Here Fishie Fishie 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":2}, -{"id":59655,"name":"Eel Cutter","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,65,98,0,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26091,"name":"Here Fishie Fishie 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":2}, -{"id":59656,"name":"Explosively Decompressed Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,169,113,85,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26021,"name":"The Brothers Digsong 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":1}, -{"id":59657,"name":"Shoulderpads of Anguilliform Extinction","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26021,"name":"The Brothers Digsong 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":1}, -{"id":59658,"name":"Eel Cutter","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,65,98,0,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26021,"name":"The Brothers Digsong 2: Eel-Egg-Trick Boogaloo"}}],"factionRestriction":1}, -{"id":59659,"name":"Atoll Treaders","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,0,78,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25963,"name":"Swift Action"}}],"factionRestriction":2}, -{"id":59660,"name":"Tiger Shark Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25963,"name":"Swift Action"}}],"factionRestriction":2}, -{"id":59661,"name":"Pelagic Prism","icon":"inv_misc_metagemuncut_a","type":12,"stats":[0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25963,"name":"Swift Action"}}],"factionRestriction":2}, -{"id":59662,"name":"Atoll Treaders","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,0,78,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25752,"name":"Swift Action"}}],"factionRestriction":1}, -{"id":59663,"name":"Tiger Shark Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25752,"name":"Swift Action"}}],"factionRestriction":1}, -{"id":59664,"name":"Pelagic Prism","icon":"inv_misc_metagemuncut_a","type":12,"stats":[0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25752,"name":"Swift Action"}}],"factionRestriction":1}, -{"id":59673,"name":"True Beacon Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,78,69,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25973,"name":"Welcome News"}}],"factionRestriction":2}, -{"id":59674,"name":"Harp Shell Wristguards","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,127,85,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25973,"name":"Welcome News"}}],"factionRestriction":2}, -{"id":59675,"name":"Robes of the Watery Savior","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25973,"name":"Welcome News"}}],"factionRestriction":2}, -{"id":59676,"name":"True Beacon Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,78,69,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25911,"name":"Welcome News"}}],"factionRestriction":1}, -{"id":59677,"name":"Harp Shell Wristguards","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,127,85,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25911,"name":"Welcome News"}}],"factionRestriction":1}, -{"id":59678,"name":"Robes of the Watery Savior","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25911,"name":"Welcome News"}}],"factionRestriction":1}, -{"id":59679,"name":"Nephropsis Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,79,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25970,"name":"Come Prepared"}}],"factionRestriction":2}, -{"id":59680,"name":"Anomuran Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25970,"name":"Come Prepared"}}],"factionRestriction":2}, -{"id":59681,"name":"Staff of Post-Facto Preparation","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,0,0,0,94,0,0,0,106,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25970,"name":"Come Prepared"}}],"factionRestriction":2}, -{"id":59682,"name":"Nephropsis Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,79,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25895,"name":"Come Prepared"}}],"factionRestriction":1}, -{"id":59683,"name":"Anomuran Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25895,"name":"Come Prepared"}}],"factionRestriction":1}, -{"id":59684,"name":"Staff of Post-Facto Preparation","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,0,0,0,94,0,0,0,106,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25895,"name":"Come Prepared"}}],"factionRestriction":1}, -{"id":59693,"name":"Gloves of Transcription","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,77,71,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":27717,"name":"Piece of the Past"}}],"factionRestriction":2}, -{"id":59694,"name":"Keenstone Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":27717,"name":"Piece of the Past"}}],"factionRestriction":2}, -{"id":59695,"name":"Scribe's Quill","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,72,48,0,0,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":525,"weaponDamageMax":976,"weaponSpeed":1.9,"ilvl":272,"quality":2,"sources":[{"quest":{"id":27717,"name":"Piece of the Past"}}],"factionRestriction":2}, -{"id":59696,"name":"Gloves of Transcription","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,77,71,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":27716,"name":"Piece of the Past"}}],"factionRestriction":1}, -{"id":59697,"name":"Keenstone Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":27716,"name":"Piece of the Past"}}],"factionRestriction":1}, -{"id":59698,"name":"Scribe's Quill","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,72,48,0,0,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":525,"weaponDamageMax":976,"weaponSpeed":1.9,"ilvl":272,"quality":2,"sources":[{"quest":{"id":27716,"name":"Piece of the Past"}}],"factionRestriction":1}, -{"id":59699,"name":"Liminal Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,77,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25960,"name":"Not Entirely Unprepared"}}],"factionRestriction":2}, -{"id":59700,"name":"Seafletcher Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,0,66,0,0,0,80,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25960,"name":"Not Entirely Unprepared"}}],"factionRestriction":2}, -{"id":59701,"name":"Treads of Dependability","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25960,"name":"Not Entirely Unprepared"}}],"factionRestriction":2}, -{"id":59702,"name":"Liminal Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,77,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25749,"name":"Not Entirely Unprepared"}}],"factionRestriction":1}, -{"id":59703,"name":"Seafletcher Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,0,66,0,0,0,80,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25749,"name":"Not Entirely Unprepared"}}],"factionRestriction":1}, -{"id":59704,"name":"Treads of Dependability","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25749,"name":"Not Entirely Unprepared"}}],"factionRestriction":1}, -{"id":59705,"name":"Chestguard of the Naz'jar","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25957,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":2}, -{"id":59706,"name":"Wound-Binding Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,69,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25957,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":2}, -{"id":59707,"name":"Wavespeaker's Focus","icon":"inv_misc_orb_01","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25957,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":2}, -{"id":59708,"name":"Chestguard of the Naz'jar","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25760,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":1}, -{"id":59709,"name":"Wound-Binding Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,69,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25760,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":1}, -{"id":59710,"name":"Wavespeaker's Focus","icon":"inv_misc_orb_01","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25760,"name":"Visions of the Past: The Invasion of Vashj'ir"}}],"factionRestriction":1}, -{"id":59711,"name":"Improvisational Historian's Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[85,0,127,0,0,0,0,0,52,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25954,"name":"An Occupation of Time"}}],"factionRestriction":2}, -{"id":59712,"name":"Legguards of Revelation","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25954,"name":"An Occupation of Time"}}],"factionRestriction":2}, -{"id":59713,"name":"Time-Clearing Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25954,"name":"An Occupation of Time"}}],"factionRestriction":2}, -{"id":59714,"name":"Improvisational Historian's Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"stats":[85,0,127,0,0,0,0,0,52,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25581,"name":"An Occupation of Time"}}],"factionRestriction":1}, -{"id":59715,"name":"Legguards of Revelation","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25581,"name":"An Occupation of Time"}}],"factionRestriction":1}, -{"id":59716,"name":"Time-Clearing Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25581,"name":"An Occupation of Time"}}],"factionRestriction":1}, -{"id":59717,"name":"Chestguard of Alarming Dreams","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,99,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25953,"name":"Swift Approach"}}],"factionRestriction":2}, -{"id":59718,"name":"Gulper Eel Sandals","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,0,0,76,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25953,"name":"Swift Approach"}}],"factionRestriction":2}, -{"id":59719,"name":"Cowry-Shell Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,85,127,0,0,0,61,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25953,"name":"Swift Approach"}}],"factionRestriction":2}, -{"id":59720,"name":"Chestguard of Alarming Dreams","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,99,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25580,"name":"Swift Approach"}}],"factionRestriction":1}, -{"id":59721,"name":"Gulper Eel Sandals","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,0,0,76,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25580,"name":"Swift Approach"}}],"factionRestriction":1}, -{"id":59722,"name":"Cowry-Shell Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,85,127,0,0,0,61,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25580,"name":"Swift Approach"}}],"factionRestriction":1}, -{"id":59723,"name":"Meiofauna Wristguards","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,0,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25595,"name":"Something Edible"}}],"factionRestriction":2}, -{"id":59724,"name":"Grouper-Skin Chestwrap","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25595,"name":"Something Edible"}}],"factionRestriction":2}, -{"id":59725,"name":"Filet Knife","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,98,65,37,0,0,0,0,0,0,47,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.4,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25595,"name":"Something Edible"}}],"factionRestriction":2}, -{"id":59726,"name":"Sea Star Wristwraps","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,0,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25540,"name":"Bellies Await"}}],"factionRestriction":1}, -{"id":59727,"name":"Queen Conch Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25540,"name":"Bellies Await"}}],"factionRestriction":1}, -{"id":59728,"name":"Clam Shucker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":1,"stats":[0,0,98,65,37,0,0,0,0,0,0,47,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.4,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25540,"name":"Bellies Await"}}],"factionRestriction":1}, -{"id":59729,"name":"Pocket-Sized Mace","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[65,0,98,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25594,"name":"Crafty Crabs"}}],"factionRestriction":2}, -{"id":59730,"name":"Oddly Revealing Chestguard","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,91,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25594,"name":"Crafty Crabs"}}],"factionRestriction":2}, -{"id":59731,"name":"Part-Picker Wraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,78,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25594,"name":"Crafty Crabs"}}],"factionRestriction":2}, -{"id":59732,"name":"Prototype Chemical Applicator","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[65,0,98,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25538,"name":"Odor Coater"}}],"factionRestriction":1}, -{"id":59733,"name":"Chestplate of Fragrant Desire","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,91,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25538,"name":"Odor Coater"}}],"factionRestriction":1}, -{"id":59734,"name":"Gloves of Piscine Attraction","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,78,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25538,"name":"Odor Coater"}}],"factionRestriction":1}, -{"id":59735,"name":"Helm of the Crushed Overseer","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25995,"name":"Overseer Idra'kess"}}],"factionRestriction":2}, -{"id":59736,"name":"Gorgonian Belt","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25995,"name":"Overseer Idra'kess"}}],"factionRestriction":2}, -{"id":59737,"name":"Earthmender's Sawfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25995,"name":"Overseer Idra'kess"}}],"factionRestriction":2}, -{"id":59738,"name":"Helm of the Crushed Overseer","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25921,"name":"Overseer Idra'kess"}}],"factionRestriction":1}, -{"id":59739,"name":"Gorgonian Belt","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25921,"name":"Overseer Idra'kess"}}],"factionRestriction":1}, -{"id":59740,"name":"Earthmender's Sawfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25921,"name":"Overseer Idra'kess"}}],"factionRestriction":1}, -{"id":59741,"name":"Sand-Scoured Protector","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25992,"name":"Hopelessly Gearless"}}],"factionRestriction":2}, -{"id":59742,"name":"Dusky Pearl Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,127,85,0,57,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25992,"name":"Hopelessly Gearless"}}],"factionRestriction":2}, -{"id":59743,"name":"Beakless Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,152,228,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25992,"name":"Hopelessly Gearless"}}],"factionRestriction":2}, -{"id":59744,"name":"Sand-Scoured Protector","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25918,"name":"Hopelessly Gearless"}}],"factionRestriction":1}, -{"id":59745,"name":"Dusky Pearl Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,127,85,0,57,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25918,"name":"Hopelessly Gearless"}}],"factionRestriction":1}, -{"id":59746,"name":"Beakless Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,152,228,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25918,"name":"Hopelessly Gearless"}}],"factionRestriction":1}, -{"id":59747,"name":"Polychaete Footguards","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,69,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25908,"name":"Stick it to Them"}}]}, -{"id":59748,"name":"Kilt of Shamanic Dreams","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,228,152,0,0,0,101,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25908,"name":"Stick it to Them"}}]}, -{"id":59749,"name":"Stolen Idra'kess Drape","icon":"inv_misc_cape_14","type":4,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25908,"name":"Stick it to Them"}}]}, -{"id":59750,"name":"Starfish Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,113,169,0,0,83,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25442,"name":"A Pearl of Wisdom"}}]}, -{"id":59751,"name":"Triggerfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,75,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25442,"name":"A Pearl of Wisdom"}}]}, -{"id":59752,"name":"Tilefish Crown","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25442,"name":"A Pearl of Wisdom"}}]}, -{"id":59753,"name":"Displaced Crown of Azrakir","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,228,152,86,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25440,"name":"Fathom-Lord Zin'jatar"}}]}, -{"id":59754,"name":"Sea-Bending Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25440,"name":"Fathom-Lord Zin'jatar"}}]}, -{"id":59755,"name":"Priapulid Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,0,59,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25440,"name":"Fathom-Lord Zin'jatar"}}]}, -{"id":59756,"name":"Drill-Guide Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,80,0,0,0,66,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25217,"name":"Totem Modification"}}]}, -{"id":59757,"name":"Sambino's Old Hammer","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,98,65,0,41,0,45,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":240,"weaponDamageMax":447,"weaponSpeed":1.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25217,"name":"Totem Modification"}}]}, -{"id":59758,"name":"Rockbite Slicer","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,45,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":270,"weaponDamageMax":503,"weaponSpeed":1.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25217,"name":"Totem Modification"}}]}, -{"id":59759,"name":"Super-Sized Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,0,0,69,78,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25360,"name":"Crabby Patrons"}}]}, -{"id":59760,"name":"Crabcracker Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,109,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25360,"name":"Crabby Patrons"}}]}, -{"id":59761,"name":"Leggings of the Albino Brachyura","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,228,152,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25360,"name":"Crabby Patrons"}}]}, -{"id":59762,"name":"Wentletrap Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25215,"name":"A Distracting Scent"}}]}, -{"id":59763,"name":"Aquasear Waistguard","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,169,113,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25215,"name":"A Distracting Scent"}}]}, -{"id":59764,"name":"Cowl of the Leptochelae","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,228,152,110,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25215,"name":"A Distracting Scent"}}]}, -{"id":59765,"name":"Damplight Chestplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,0,0,77,0,0,0,116,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25164,"name":"Backed Into a Corner"}}]}, -{"id":59766,"name":"Shoulderguards of Caridean Might","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,113,169,0,0,71,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25164,"name":"Backed Into a Corner"}}]}, -{"id":59767,"name":"Ostracod Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,78,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25164,"name":"Backed Into a Corner"}}]}, -{"id":59768,"name":"Bracers of Burbling Freedom","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,127,85,54,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":59769,"name":"Pteropod Robes","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26008,"name":"Decompression"}}],"factionRestriction":2}, -{"id":59770,"name":"Cone-Snail Cinch","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":26008,"name":"Decompression"}}],"factionRestriction":2}, -{"id":59771,"name":"Breathstone-Infused Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,48,72,0,0,30,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":1018,"weaponSpeed":2.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":26008,"name":"Decompression"}}],"factionRestriction":2}, -{"id":59772,"name":"Bracers of Burbling Freedom","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,127,85,54,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":59773,"name":"Pteropod Robes","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25888,"name":"Decompression"}}],"factionRestriction":1}, -{"id":59774,"name":"Cone-Snail Cinch","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25888,"name":"Decompression"}}],"factionRestriction":1}, -{"id":59775,"name":"Breathstone-Infused Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,48,72,0,0,30,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":547,"weaponDamageMax":1018,"weaponSpeed":2.8,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25888,"name":"Decompression"}}],"factionRestriction":1}, -{"id":59776,"name":"Pipefish Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,85,127,0,0,0,0,64,0,0,0,44,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25884,"name":"Come Hell or High Water"}}]}, -{"id":59777,"name":"Conch-Inlaid Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,57,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25884,"name":"Come Hell or High Water"}}]}, -{"id":59778,"name":"Medusoid Staff","icon":"inv_staff_55","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,101,0,101,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25884,"name":"Come Hell or High Water"}}]}, -{"id":59779,"name":"Girdle of Calcified Blackfin","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,169,113,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25503,"name":"Blackfin's Booty"}}]}, -{"id":59780,"name":"Polychaete Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,152,228,0,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25503,"name":"Blackfin's Booty"}}]}, -{"id":59781,"name":"Calanoid Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,0,0,83,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25503,"name":"Blackfin's Booty"}}]}, -{"id":59788,"name":"Bioluminescent Buckler","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,127,85,0,0,0,54,0,0,0,58,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25377,"name":"The Horde's Hoard"}}]}, -{"id":59789,"name":"Sea-Snack Footguards","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,82,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":59790,"name":"Gnash-Crusher Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,84,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":59791,"name":"Giantslayer Cloak","icon":"inv_misc_cape_cataclysm_healer_b_01","type":4,"stats":[0,0,127,85,57,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2}, -{"id":59792,"name":"Petrified Spider Crab","icon":"inv_jewelcrafting_emeraldcrab","type":12,"stats":[0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25390,"name":"A Girl's Best Friend"}}]}, -{"id":59793,"name":"Hippolyte's Glittering Necklace","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,127,85,0,0,60,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25390,"name":"A Girl's Best Friend"}}]}, -{"id":59794,"name":"Signet of Galathea","icon":"inv_misc_starring3","type":11,"stats":[0,85,127,0,0,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25390,"name":"A Girl's Best Friend"}}]}, -{"id":59795,"name":"Harp Shell Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,57,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25384,"name":"Raw Materials"}}]}, -{"id":59796,"name":"Treads of Decapod Death","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,78,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25384,"name":"Raw Materials"}}]}, -{"id":59797,"name":"Abalone-Linked Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25384,"name":"Raw Materials"}}]}, -{"id":59798,"name":"Barnacle-Coated Greataxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[152,0,228,0,0,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":738,"weaponDamageMax":1107,"weaponSpeed":3.3,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25467,"name":"Kliklak's Craw"}}]}, -{"id":59799,"name":"Schooner-Savior's Grips","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25949,"name":"Blood and Thunder!"}}],"factionRestriction":2}, -{"id":59800,"name":"Bracers of Breached Integrity","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,63,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25949,"name":"Blood and Thunder!"}}],"factionRestriction":2}, -{"id":59801,"name":"Hood of the Shuffled Coil","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,96,0,0,0,104,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25949,"name":"Blood and Thunder!"}}],"factionRestriction":2}, -{"id":59802,"name":"Wheelman's Shattered Grasp","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25558,"name":"All or Nothing"}}],"factionRestriction":1}, -{"id":59803,"name":"Bracers of the Sunken Dream","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,63,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25558,"name":"All or Nothing"}}],"factionRestriction":1}, -{"id":59804,"name":"Cowl of the Lost Cutter","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,96,0,0,0,104,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25558,"name":"All or Nothing"}}],"factionRestriction":1}, -{"id":59805,"name":"Whelk Shell Shoulderguards","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,0,71,0,0,0,77,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25944,"name":"Girding Our Loins"}}],"factionRestriction":2}, -{"id":59806,"name":"Shipwrecked Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,107,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25944,"name":"Girding Our Loins"}}],"factionRestriction":2}, -{"id":59807,"name":"Legionnaire Nazgrim's Hacker","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25944,"name":"Girding Our Loins"}}],"factionRestriction":2}, -{"id":59808,"name":"Scavenged Stormwind Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,0,71,0,0,0,77,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25545,"name":"To Arms!"}}],"factionRestriction":1}, -{"id":59809,"name":"Leftover Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,107,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":272,"quality":2,"sources":[{"quest":{"id":25545,"name":"To Arms!"}}],"factionRestriction":1}, -{"id":59810,"name":"Captain Taylor's Chopper","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":391,"weaponDamageMax":727,"weaponSpeed":2.6,"ilvl":272,"quality":2,"sources":[{"quest":{"id":25545,"name":"To Arms!"}}],"factionRestriction":1}, -{"id":60219,"name":"Balanced Spell Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":21,"weaponSpeed":2.2,"ilvl":13,"quality":2,"sources":[{"quest":{"id":176,"name":"Wanted: \"Hogger\""}}],"factionRestriction":1}, -{"id":60220,"name":"Theodore's Heirloom Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":60221,"name":"Furlbrow Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":60222,"name":"Authentic Jr. Engineer Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":6,"quality":1,"sources":[{"crafted":{"profession":4,"spellId":84406}}]}, -{"id":60338,"name":"Reconstructed Sword","icon":"inv_sword_bloodelf_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":2.6,"ilvl":23,"quality":2,"sources":[{"quest":{"id":25853,"name":"Tooling Around"}}],"factionRestriction":1}, -{"id":60618,"name":"No Cloak","icon":"inv_shirt_purple_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":60644,"name":"Gorka's Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":13712,"name":"To the Rescue!"}}],"factionRestriction":2}, -{"id":60682,"name":"Watch Captain's Cloak","icon":"inv_misc_cape_13","type":4,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26504,"name":"Wanted: Redridge Gnolls"}}],"factionRestriction":1}, -{"id":60683,"name":"Tower Watch Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26504,"name":"Wanted: Redridge Gnolls"}}],"factionRestriction":1}, -{"id":60684,"name":"Royal Guard Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26504,"name":"Wanted: Redridge Gnolls"}}],"factionRestriction":1}, -{"id":60685,"name":"Yowling Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26503,"name":"Still Assessing the Threat"}}],"factionRestriction":1}, -{"id":60686,"name":"Boots of the Prolific Sire","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26503,"name":"Still Assessing the Threat"}}],"factionRestriction":1}, -{"id":60687,"name":"Belt of the Sons","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":26503,"name":"Still Assessing the Threat"}}],"factionRestriction":1}, -{"id":60688,"name":"Parker's Yardstick","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":40,"weaponSpeed":3.3,"ilvl":15,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":60689,"name":"Belt of Unsolvable Problems","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":60690,"name":"Doody Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":60691,"name":"Unfortunate Treads","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":60692,"name":"Breadwinner's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26513,"name":"Like a Fart in the Wind"}}],"factionRestriction":1}, -{"id":60693,"name":"Ventillated Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26513,"name":"Like a Fart in the Wind"}}],"factionRestriction":1}, -{"id":60694,"name":"Starvation Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,2,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26513,"name":"Like a Fart in the Wind"}}],"factionRestriction":1}, -{"id":60695,"name":"Cloak of Insomnia","icon":"inv_misc_cape_02","type":4,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26513,"name":"Like a Fart in the Wind"}}],"factionRestriction":1}, -{"id":60696,"name":"Shield of the Lesson","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26511,"name":"Lake Everstill Clean Up"}}],"factionRestriction":1}, -{"id":60697,"name":"Indiscriminate Wand","icon":"inv_misc_bone_humanskull_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":13,"weaponDamageMax":25,"weaponSpeed":1.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":26511,"name":"Lake Everstill Clean Up"}}],"factionRestriction":1}, -{"id":60698,"name":"Belt of Recurring Raids","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26511,"name":"Lake Everstill Clean Up"}}],"factionRestriction":1}, -{"id":60699,"name":"Bailiff's Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26511,"name":"Lake Everstill Clean Up"}}],"factionRestriction":1}, -{"id":60700,"name":"Solomon's Gavel","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":1,"stats":[0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":26520,"name":"Saving Foreman Oslow"}}],"factionRestriction":1}, -{"id":60701,"name":"Leverage Bracers","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26520,"name":"Saving Foreman Oslow"}}],"factionRestriction":1}, -{"id":60702,"name":"Sword of the Falling Sky","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":26520,"name":"Saving Foreman Oslow"}}],"factionRestriction":1}, -{"id":60703,"name":"Escalation Britches","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26545,"name":"Yowler Must Die!"}}],"factionRestriction":1}, -{"id":60704,"name":"Mongrel Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26545,"name":"Yowler Must Die!"}}],"factionRestriction":1}, -{"id":60705,"name":"Legguards of Invasion","icon":"inv_pants_03","type":9,"armorType":3,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":26545,"name":"Yowler Must Die!"}}],"factionRestriction":1}, -{"id":60706,"name":"Sandals of the Neverending Bridge","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":26569,"name":"Surveying Equipment"}}],"factionRestriction":1}, -{"id":60707,"name":"Lakeshire Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":26569,"name":"Surveying Equipment"}}],"factionRestriction":1}, -{"id":60708,"name":"Blackrock Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":26569,"name":"Surveying Equipment"}}],"factionRestriction":1}, -{"id":60709,"name":"Vest of the Changing Heart","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":26573,"name":"His Heart Must Be In It"}}],"factionRestriction":1}, -{"id":60710,"name":"Troteman's Bracers","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":2,"sources":[{"quest":{"id":26573,"name":"His Heart Must Be In It"}}],"factionRestriction":1}, -{"id":60711,"name":"Messner's Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26668,"name":"Detonation"}}],"factionRestriction":1}, -{"id":60712,"name":"Exterminator's Armbands","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26668,"name":"Detonation"}}],"factionRestriction":1}, -{"id":60713,"name":"Redridge Legguards","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26668,"name":"Detonation"}}],"factionRestriction":1}, -{"id":60714,"name":"Massive Firearm of Death","icon":"inv_weapon_rifle_40","type":14,"rangedWeaponType":3,"stats":[0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":33,"weaponSpeed":2.8,"ilvl":18,"quality":2,"sources":[{"quest":{"id":26668,"name":"Detonation"}}],"factionRestriction":1}, -{"id":60715,"name":"Vial of Chloroform","icon":"inv_alchemy_leadedvial","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26637,"name":"Bravo Company Field Kit: Chloroform"}}],"factionRestriction":1}, -{"id":60716,"name":"Muckdweller Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26637,"name":"Bravo Company Field Kit: Chloroform"}}],"factionRestriction":1}, -{"id":60717,"name":"Everstill Breastplate","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":26637,"name":"Bravo Company Field Kit: Chloroform"}}],"factionRestriction":1}, -{"id":60718,"name":"Shadowhide Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":26692,"name":"Shadowhide Extinction"}}],"factionRestriction":1}, -{"id":60719,"name":"Danforth's Breastplate","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":26692,"name":"Shadowhide Extinction"}}],"factionRestriction":1}, -{"id":60720,"name":"Treacherous Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":26694,"name":"The Grand Magus Doane"}}],"factionRestriction":1}, -{"id":60721,"name":"Shalewind Belt","icon":"inv_belt_45","type":8,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":26694,"name":"The Grand Magus Doane"}}],"factionRestriction":1}, -{"id":60722,"name":"Bravo Company Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":26708,"name":"AHHHHHHHHHHHH! AHHHHHHHHH!!!"}}],"factionRestriction":1}, -{"id":60723,"name":"Bravo Company Monnions","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":26708,"name":"AHHHHHHHHHHHH! AHHHHHHHHH!!!"}}],"factionRestriction":1}, -{"id":60724,"name":"Bravo Company Shoulderguards","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":26708,"name":"AHHHHHHHHHHHH! AHHHHHHHHH!!!"}}],"factionRestriction":1}, -{"id":60725,"name":"Bravo Company Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":26708,"name":"AHHHHHHHHHHHH! AHHHHHHHHH!!!"}}],"factionRestriction":1}, -{"id":60726,"name":"Keeshan's Dagger","icon":"inv_weapon_shortblade_11","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":20,"quality":3,"sources":[{"quest":{"id":26726,"name":"Triumphant Return"}}],"factionRestriction":1}, -{"id":60727,"name":"Keeshan's Bow","icon":"inv_weapon_bow_57","type":14,"rangedWeaponType":1,"stats":[1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":2.8,"ilvl":20,"quality":3,"sources":[{"quest":{"id":26726,"name":"Triumphant Return"}}],"factionRestriction":1}, -{"id":60728,"name":"Keeshan's Burlap Vest","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":60729,"name":"Keeshan's Cord","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,0,4,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3}, -{"id":60730,"name":"Bravo Company Signet","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":26726,"name":"Triumphant Return"}}],"factionRestriction":1}, -{"id":60734,"name":"Keeshan's Bandana","icon":"inv_misc_bandana_03","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":26726,"name":"Triumphant Return"}}],"factionRestriction":1}, -{"id":60820,"name":"Stone Hearth Maul","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":3.3,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60821,"name":"Earthen Mallet","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":3.3,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60823,"name":"Battlefront Sword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":132,"weaponDamageMax":199,"weaponSpeed":2.9,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60824,"name":"Stone Trogg Crusher","icon":"inv_mace_66","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":3.3,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60825,"name":"Earthen Sunderer","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":192,"weaponSpeed":2.8,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60826,"name":"Stone Hearth Splitter","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":192,"weaponSpeed":2.8,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60827,"name":"Hearth Defender's Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":192,"weaponSpeed":2.8,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60828,"name":"Earthen Champion's Cleaver","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":192,"weaponSpeed":2.8,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60829,"name":"Geomaster Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":3.3,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60830,"name":"Rockmagus Stave","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":227,"weaponSpeed":3.3,"ilvl":83,"quality":1,"sources":[{"soldBy":{"npcId":44972,"npcName":"Rocky Cliffedge","zoneId":5042}}]}, -{"id":60895,"name":"Ebonlocke Band","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26618,"name":"Wolves at Our Heels"}}],"factionRestriction":1}, -{"id":60896,"name":"Night Watch Vest","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26618,"name":"Wolves at Our Heels"}}],"factionRestriction":1}, -{"id":60897,"name":"Night Watch Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26618,"name":"Wolves at Our Heels"}}],"factionRestriction":1}, -{"id":60898,"name":"Ghost Hair Band","icon":"inv_jewelry_ring_69","type":11,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26655,"name":"Deliver the Thread"}}],"factionRestriction":1}, -{"id":60899,"name":"Doublet of Deception","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26655,"name":"Deliver the Thread"}}],"factionRestriction":1}, -{"id":60900,"name":"Beggar's Belt","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26655,"name":"Deliver the Thread"}}],"factionRestriction":1}, -{"id":60901,"name":"Dirty Rotten Gloves","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":26655,"name":"Deliver the Thread"}}],"factionRestriction":1}, -{"id":60902,"name":"Abercrombie's Gloves","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26676,"name":"Juice Delivery"}}],"factionRestriction":1}, -{"id":60903,"name":"Old Man's Legwarmers","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26676,"name":"Juice Delivery"}}],"factionRestriction":1}, -{"id":60904,"name":"Ring of the Fool","icon":"inv_jewelry_ring_03","type":11,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26676,"name":"Juice Delivery"}}],"factionRestriction":1}, -{"id":60905,"name":"Ello's Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"sources":[{"quest":{"id":26727,"name":"The Embalmer's Revenge"}}],"factionRestriction":1}, -{"id":60906,"name":"Stitches' Stitchings","icon":"inv_misc_cape_18","type":4,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"sources":[{"quest":{"id":26727,"name":"The Embalmer's Revenge"}}],"factionRestriction":1}, -{"id":60907,"name":"Sparkmetal Bracers","icon":"inv_bracer_30c","type":6,"armorType":3,"stats":[4,0,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":3,"sources":[{"quest":{"id":26727,"name":"The Embalmer's Revenge"}}],"factionRestriction":1}, -{"id":60908,"name":"Stargazer's Pantaloons","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26685,"name":"Classy Glass"}}],"factionRestriction":1}, -{"id":60909,"name":"Astronomer's Handwraps","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26685,"name":"Classy Glass"}}],"factionRestriction":1}, -{"id":60910,"name":"Starry Band","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":26685,"name":"Classy Glass"}}],"factionRestriction":1}, -{"id":60911,"name":"Archivist's Lighter","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.6,"ilvl":23,"quality":2,"sources":[{"quest":{"id":26667,"name":"The Stolen Letters"}}],"factionRestriction":1}, -{"id":60912,"name":"Cragwood Clutches","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26667,"name":"The Stolen Letters"}}],"factionRestriction":1}, -{"id":60913,"name":"Librarian's Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26667,"name":"The Stolen Letters"}}],"factionRestriction":1}, -{"id":60914,"name":"Exorcist's Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.6,"ilvl":23,"quality":2,"sources":[{"quest":{"id":26670,"name":"Roland's Doom"}}],"factionRestriction":1}, -{"id":60915,"name":"Daltry's Belt","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26670,"name":"Roland's Doom"}}],"factionRestriction":1}, -{"id":60916,"name":"Roland's Legguards","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[6,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26670,"name":"Roland's Doom"}}],"factionRestriction":1}, -{"id":60917,"name":"Stalvan's Cloak","icon":"inv_misc_cape_21","type":4,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26674,"name":"Mistmantle's Revenge"}}],"factionRestriction":1}, -{"id":60918,"name":"Slippers of the Crescent Moon","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26674,"name":"Mistmantle's Revenge"}}],"factionRestriction":1}, -{"id":60919,"name":"Bracers of Forlorn Spirits","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26674,"name":"Mistmantle's Revenge"}}],"factionRestriction":1}, -{"id":60920,"name":"Burden of Shame","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":26674,"name":"Mistmantle's Revenge"}}],"factionRestriction":1}, -{"id":60921,"name":"Sister Elsington's Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26778,"name":"The Cries of the Dead"}}],"factionRestriction":1}, -{"id":60922,"name":"Aegis of Faith","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26778,"name":"The Cries of the Dead"}}],"factionRestriction":1}, -{"id":60923,"name":"Ghoul-Hunter Leggings","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26778,"name":"The Cries of the Dead"}}],"factionRestriction":1}, -{"id":60924,"name":"Corpseweed Sickle","icon":"inv_weapon_shortblade_87","type":13,"weaponType":9,"handType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":24,"quality":2,"sources":[{"quest":{"id":26707,"name":"A Deadly Vine"}}],"factionRestriction":1}, -{"id":60925,"name":"Festering Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26707,"name":"A Deadly Vine"}}],"factionRestriction":1}, -{"id":60926,"name":"Potioner's Vest","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26707,"name":"A Deadly Vine"}}],"factionRestriction":1}, -{"id":60927,"name":"Cloak of Sanity","icon":"inv_misc_cape_16","type":4,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26707,"name":"A Deadly Vine"}}],"factionRestriction":1}, -{"id":60928,"name":"Consecrated Scepter","icon":"inv_staff_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26760,"name":"Cry For The Moon"}}],"factionRestriction":1}, -{"id":60929,"name":"Moon Shriek Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26760,"name":"Cry For The Moon"}}],"factionRestriction":1}, -{"id":60930,"name":"Shield of Darkshire","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26760,"name":"Cry For The Moon"}}],"factionRestriction":1}, -{"id":60931,"name":"Vigilante's Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26691,"name":"Worgen in the Woods"}}],"factionRestriction":1}, -{"id":60932,"name":"Cold Boots","icon":"inv_boots_cloth_01","type":10,"armorType":2,"stats":[0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26691,"name":"Worgen in the Woods"}}],"factionRestriction":1}, -{"id":60933,"name":"Carevin's Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26691,"name":"Worgen in the Woods"}}],"factionRestriction":1}, -{"id":60934,"name":"John's Stylish Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,5,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26787,"name":"Bear In Mind"}}],"factionRestriction":1}, -{"id":60935,"name":"Raven Hill Sandals","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26787,"name":"Bear In Mind"}}],"factionRestriction":1}, -{"id":60936,"name":"Jittering Band","icon":"inv_jewelry_ring_16","type":11,"stats":[3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":26787,"name":"Bear In Mind"}}],"factionRestriction":1}, -{"id":60937,"name":"Restored Archeus","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.6,"ilvl":25,"quality":3,"sources":[{"quest":{"id":26797,"name":"A Daughter's Love"}}],"factionRestriction":1}, -{"id":60938,"name":"Yorgen's Boon","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,3,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26754,"name":"Morbent's Bane"}}],"factionRestriction":1}, -{"id":60939,"name":"Ashen Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,7,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26754,"name":"Morbent's Bane"}}],"factionRestriction":1}, -{"id":60940,"name":"Felbane Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":26754,"name":"Morbent's Bane"}}],"factionRestriction":1}, -{"id":60941,"name":"Shoulderwraps of Honor","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26686,"name":"Bones That Walk"}}],"factionRestriction":1}, -{"id":60942,"name":"Watch Master's Breastplate","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,0,6,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26686,"name":"Bones That Walk"}}],"factionRestriction":1}, -{"id":60943,"name":"Signet of the Night Watch","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26686,"name":"Bones That Walk"}}],"factionRestriction":1}, -{"id":61049,"name":"Ring of Forgotten Causes","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26737,"name":"Stopping Kurzen's Legacy"}}],"factionRestriction":1}, -{"id":61050,"name":"Expedition Scouting Gear","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26737,"name":"Stopping Kurzen's Legacy"}}],"factionRestriction":1}, -{"id":61051,"name":"Guerilla Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26737,"name":"Stopping Kurzen's Legacy"}}],"factionRestriction":1}, -{"id":61052,"name":"Missionary's Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,6,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26732,"name":"Bad Medicine"}}],"factionRestriction":1}, -{"id":61053,"name":"Cord of the Ascetic","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26732,"name":"Bad Medicine"}}],"factionRestriction":1}, -{"id":61054,"name":"Nimetz's Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26732,"name":"Bad Medicine"}}],"factionRestriction":1}, -{"id":61055,"name":"Wildhammer Scribe's Band","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26743,"name":"Sacred to the Bloodscalp"}}],"factionRestriction":1}, -{"id":61056,"name":"Bloodscalp Sandals","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26743,"name":"Sacred to the Bloodscalp"}}],"factionRestriction":1}, -{"id":61057,"name":"Mahamba's Caress","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26743,"name":"Sacred to the Bloodscalp"}}],"factionRestriction":1}, -{"id":61058,"name":"Tsul'kalu's Strikers","icon":"inv_gauntlets_13","type":7,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26743,"name":"Sacred to the Bloodscalp"}}],"factionRestriction":1}, -{"id":61059,"name":"Emerine's Blade","icon":"inv_sword_111","type":13,"weaponType":9,"handType":1,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.7,"ilvl":26,"quality":2,"sources":[{"quest":{"id":26731,"name":"The Altar of Naias"}}],"factionRestriction":1}, -{"id":61060,"name":"Salt-Cured Monnions","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26731,"name":"The Altar of Naias"}}],"factionRestriction":1}, -{"id":61061,"name":"Junglewalker Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26731,"name":"The Altar of Naias"}}],"factionRestriction":1}, -{"id":61062,"name":"Juju Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26747,"name":"A Physical Specimen"}}],"factionRestriction":1}, -{"id":61063,"name":"Discarded Troll Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26747,"name":"A Physical Specimen"}}],"factionRestriction":1}, -{"id":61064,"name":"Electrostatic Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26747,"name":"A Physical Specimen"}}],"factionRestriction":1}, -{"id":61065,"name":"Soft Cotton Armbands","icon":"inv_bracer_20","type":6,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26744,"name":"Deep Roots"}}],"factionRestriction":1}, -{"id":61066,"name":"Well Crafted Leather Britches","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26744,"name":"Deep Roots"}}],"factionRestriction":1}, -{"id":61067,"name":"Rebel Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[5,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26744,"name":"Deep Roots"}}],"factionRestriction":1}, -{"id":61068,"name":"Wand of Imagination","icon":"inv_misc_orb_01","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":25,"weaponDamageMax":46,"weaponSpeed":1.6,"ilvl":28,"quality":2,"sources":[{"quest":{"id":26781,"name":"The Mind's Eye"}}],"factionRestriction":1}, -{"id":61069,"name":"Eye-Plucker Gloves","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26781,"name":"The Mind's Eye"}}],"factionRestriction":1}, -{"id":61070,"name":"Fort Livingston Legguards","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[5,0,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26781,"name":"The Mind's Eye"}}],"factionRestriction":1}, -{"id":61071,"name":"Krazek's Oven Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26763,"name":"Venture Company Mining"}}],"factionRestriction":1}, -{"id":61072,"name":"Bartered Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26763,"name":"Venture Company Mining"}}],"factionRestriction":1}, -{"id":61073,"name":"Spare Metal Pauldrons","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26763,"name":"Venture Company Mining"}}],"factionRestriction":1}, -{"id":61074,"name":"Irradiated Faux Croc' Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26779,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":1}, -{"id":61075,"name":"Breastplate of Zul'Mamwe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,5,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26779,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":1}, -{"id":61076,"name":"Pauldrons of the Wayward Tribe","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26779,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":1}, -{"id":61077,"name":"Jungle Spirits' Embrace","icon":"inv_misc_cape_17","type":4,"stats":[0,4,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26775,"name":"Be Raptor"}}],"factionRestriction":1}, -{"id":61078,"name":"Thaalia's Slippers","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,5,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26775,"name":"Be Raptor"}}],"factionRestriction":1}, -{"id":61079,"name":"Belt of the High Shaman","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26775,"name":"Be Raptor"}}],"factionRestriction":1}, -{"id":61080,"name":"Band of Raptor Teeth","icon":"inv_jewelry_ring_84","type":11,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26775,"name":"Be Raptor"}}],"factionRestriction":1}, -{"id":61081,"name":"Ring of Cooperation","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26279,"name":"The Defense of Grom'gol: Ogre Oppression"}}],"factionRestriction":2}, -{"id":61082,"name":"Mizjah Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26279,"name":"The Defense of Grom'gol: Ogre Oppression"}}],"factionRestriction":2}, -{"id":61083,"name":"Smashing Breastplate","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26279,"name":"The Defense of Grom'gol: Ogre Oppression"}}],"factionRestriction":2}, -{"id":61084,"name":"Unforgiving Pantaloons","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,6,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26281,"name":"The Defense of Grom'gol: Trollish Thievery"}}],"factionRestriction":2}, -{"id":61085,"name":"Bal'lal Belt","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26281,"name":"The Defense of Grom'gol: Trollish Thievery"}}],"factionRestriction":2}, -{"id":61086,"name":"Pitiless Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":26281,"name":"The Defense of Grom'gol: Trollish Thievery"}}],"factionRestriction":2}, -{"id":61087,"name":"Ring of Six Hundred Years","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26299,"name":"Headhunting"}}],"factionRestriction":2}, -{"id":61088,"name":"Junglestrider Sandals","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26299,"name":"Headhunting"}}],"factionRestriction":2}, -{"id":61089,"name":"Palm Frond Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26299,"name":"Headhunting"}}],"factionRestriction":2}, -{"id":61090,"name":"Head Inspector's Gloves","icon":"inv_gauntlets_13","type":7,"armorType":3,"stats":[5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26299,"name":"Headhunting"}}],"factionRestriction":2}, -{"id":61091,"name":"Blade of Exotic Magic","icon":"inv_sword_bloodelf_03","type":13,"weaponType":9,"handType":1,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":30,"weaponSpeed":1.7,"ilvl":26,"quality":2,"sources":[{"quest":{"id":9457,"name":"An Unusual Patron"}}],"factionRestriction":2}, -{"id":61092,"name":"Monnions of Raw Power","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":9457,"name":"An Unusual Patron"}}],"factionRestriction":2}, -{"id":61093,"name":"Junglewalker Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":9457,"name":"An Unusual Patron"}}],"factionRestriction":2}, -{"id":61094,"name":"Juju Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26330,"name":"Who's a Big Troll?"}}],"factionRestriction":2}, -{"id":61095,"name":"Discarded Troll Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26330,"name":"Who's a Big Troll?"}}],"factionRestriction":2}, -{"id":61096,"name":"Electrostatic Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":26,"quality":2,"sources":[{"quest":{"id":26330,"name":"Who's a Big Troll?"}}],"factionRestriction":2}, -{"id":61097,"name":"Ziata'jai Bracers","icon":"inv_bracer_21c","type":6,"armorType":1,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26301,"name":"Speaking with Nezzliok"}}],"factionRestriction":2}, -{"id":61098,"name":"Balia'mah Leggings","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26301,"name":"Speaking with Nezzliok"}}],"factionRestriction":2}, -{"id":61099,"name":"Slaver's Chainmail","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[5,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":27,"quality":2,"sources":[{"quest":{"id":26301,"name":"Speaking with Nezzliok"}}],"factionRestriction":2}, -{"id":61100,"name":"Stone Etcher","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":49,"weaponSpeed":1.6,"ilvl":29,"quality":2,"sources":[{"quest":{"id":26305,"name":"Saving Yenniku"}}],"factionRestriction":2}, -{"id":61101,"name":"Weavers of the Unending Tale","icon":"inv_gauntlets_16","type":7,"armorType":2,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26305,"name":"Saving Yenniku"}}],"factionRestriction":2}, -{"id":61102,"name":"Nimboya's Legguards","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[6,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26305,"name":"Saving Yenniku"}}],"factionRestriction":2}, -{"id":61103,"name":"Junglepicker Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26403,"name":"Venture Company Mining"}}],"factionRestriction":2}, -{"id":61104,"name":"Skeezy Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,3,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26403,"name":"Venture Company Mining"}}],"factionRestriction":2}, -{"id":61105,"name":"Scrap Metal Pauldrons","icon":"inv_shoulder_21","type":3,"armorType":3,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26403,"name":"Venture Company Mining"}}],"factionRestriction":2}, -{"id":61106,"name":"Excelsior Waders","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":26345,"name":"Excelsior"}}]}, -{"id":61107,"name":"Mantle of the Panther","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":193,"name":"Panther Mastery"}}]}, -{"id":61108,"name":"Shield of the Panther","icon":"inv_shield_16","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":193,"name":"Panther Mastery"}}]}, -{"id":61109,"name":"Bhag'thera's Roar","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":2.8,"ilvl":28,"quality":2,"sources":[{"quest":{"id":193,"name":"Panther Mastery"}}]}, -{"id":61110,"name":"Tethis' Skull","icon":"inv_mace_123","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.6,"ilvl":28,"quality":2,"sources":[{"quest":{"id":197,"name":"Raptor Mastery"}}]}, -{"id":61111,"name":"Belt of the Raptor","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":197,"name":"Raptor Mastery"}}]}, -{"id":61112,"name":"Raptor Slayer's Band","icon":"inv_jewelry_ring_77","type":11,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":197,"name":"Raptor Mastery"}}]}, -{"id":61113,"name":"Sin'Dall's Femur","icon":"inv_misc_bone_10","type":13,"weaponType":4,"handType":2,"stats":[0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":50,"weaponSpeed":2.6,"ilvl":28,"quality":2,"sources":[{"quest":{"id":188,"name":"Tiger Mastery"}}]}, -{"id":61114,"name":"Cat Lover's Vest","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":188,"name":"Tiger Mastery"}}]}, -{"id":61115,"name":"Paws of Sin'Dall","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":188,"name":"Tiger Mastery"}}]}, -{"id":61116,"name":"Tiger Strangler's Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":2,"sources":[{"quest":{"id":188,"name":"Tiger Mastery"}}]}, -{"id":61117,"name":"Irradiated Faux Croc' Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26405,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":2}, -{"id":61118,"name":"Breastplate of Zul'Mamwe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,5,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26405,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":2}, -{"id":61119,"name":"Pauldrons of the Wayward Tribe","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":2,"sources":[{"quest":{"id":26405,"name":"Zul'Mamwe Mambo"}}],"factionRestriction":2}, -{"id":61120,"name":"Jungle Spirits' Embrace","icon":"inv_misc_cape_17","type":4,"stats":[0,4,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26362,"name":"Be Raptor"}}],"factionRestriction":2}, -{"id":61121,"name":"Hu'rala's Slippers","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,5,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26362,"name":"Be Raptor"}}],"factionRestriction":2}, -{"id":61122,"name":"Belt of the High Shaman","icon":"inv_belt_37","type":8,"armorType":2,"stats":[0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26362,"name":"Be Raptor"}}],"factionRestriction":2}, -{"id":61123,"name":"Band of Raptor Teeth","icon":"inv_jewelry_ring_84","type":11,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26362,"name":"Be Raptor"}}],"factionRestriction":2}, -{"id":61124,"name":"Bangalash's Claw","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,5,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":1.8,"ilvl":29,"quality":3,"sources":[{"quest":{"id":208,"name":"Big Game Hunter"}}]}, -{"id":61125,"name":"Nesingwary's Sash","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":208,"name":"Big Game Hunter"}}]}, -{"id":61126,"name":"Mantle of the White Tiger","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,6,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":208,"name":"Big Game Hunter"}}]}, -{"id":61127,"name":"Gloves of the Jungle King","icon":"inv_gauntlets_32","type":7,"armorType":3,"stats":[4,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":208,"name":"Big Game Hunter"}}]}, -{"id":61509,"name":"Sapphire Spectacles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"sources":[{"quest":{"id":27549,"name":"By the Light of the Stars"}}]}, -{"id":61513,"name":"Fuzzy Legwarmers","icon":"inv_pants_cloth_39v4","type":9,"armorType":1,"stats":[0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26818,"name":"Plush Pelts"}}],"factionRestriction":1}, -{"id":61514,"name":"Velvety Vest","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26818,"name":"Plush Pelts"}}],"factionRestriction":1}, -{"id":61515,"name":"Supple Gloves","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26818,"name":"Plush Pelts"}}],"factionRestriction":1}, -{"id":61516,"name":"Hambone's Spare Collar","icon":"inv_belt_98","type":8,"armorType":3,"stats":[0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26818,"name":"Plush Pelts"}}],"factionRestriction":1}, -{"id":61517,"name":"Sassy Pantaloons","icon":"inv_pants_cloth_39v4","type":9,"armorType":1,"stats":[0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26450,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":2}, -{"id":61518,"name":"Iconic Vest","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26450,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":2}, -{"id":61519,"name":"Wandering Hands","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26450,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":2}, -{"id":61520,"name":"Corpsepump Belt","icon":"inv_belt_98","type":8,"armorType":3,"stats":[0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26450,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":2}, -{"id":61521,"name":"Amulet of Brilliant Talent","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26820,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":1}, -{"id":61522,"name":"Helm of Secrets","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26820,"name":"If They're Just Going to Leave Them Lying Around..."}}],"factionRestriction":1}, -{"id":61523,"name":"Basilisk Scale Necklace","icon":"inv_jewelry_necklace_48","type":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26493,"name":"There's Somebody Out There Who Wants It"}}],"factionRestriction":2}, -{"id":61524,"name":"Helm of Secrets","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[8,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26493,"name":"There's Somebody Out There Who Wants It"}}],"factionRestriction":2}, -{"id":61525,"name":"Goris' Medallion","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26822,"name":"Good-Fer-Nothin' Slither-Dogs"}}],"factionRestriction":1}, -{"id":61526,"name":"Staff of First Occurrences","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.3,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26822,"name":"Good-Fer-Nothin' Slither-Dogs"}}],"factionRestriction":1}, -{"id":61527,"name":"Slither-Dog Headguard","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26822,"name":"Good-Fer-Nothin' Slither-Dogs"}}],"factionRestriction":1}, -{"id":61528,"name":"Velvet Choker","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26434,"name":"Primal Reagents of Power"}}],"factionRestriction":2}, -{"id":61529,"name":"Hideaway Staff","icon":"inv_staff_28","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":81,"weaponSpeed":3.3,"ilvl":30,"quality":2,"sources":[{"quest":{"id":26434,"name":"Primal Reagents of Power"}}],"factionRestriction":2}, -{"id":61530,"name":"Not-Scratchy Helm","icon":"inv_helmet_175v3","type":1,"armorType":2,"stats":[0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":2,"sources":[{"quest":{"id":26434,"name":"Primal Reagents of Power"}}],"factionRestriction":2}, -{"id":61531,"name":"Veil of the Silent Listener","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26809,"name":"Backdoor Dealings"}}],"factionRestriction":1}, -{"id":61532,"name":"Monnion of the Bat","icon":"inv_shoulder_136v1","type":3,"armorType":2,"stats":[0,0,6,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26809,"name":"Backdoor Dealings"}}],"factionRestriction":1}, -{"id":61533,"name":"Small Pouch of Incense","icon":"inv_jewelry_necklace_18","type":2,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26809,"name":"Backdoor Dealings"}}],"factionRestriction":1}, -{"id":61534,"name":"Veil of the Silent Listener","icon":"inv_helmet_173v4","type":1,"armorType":1,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26550,"name":"Backdoor Dealings"}}],"factionRestriction":2}, -{"id":61535,"name":"Monnion of the Bat","icon":"inv_shoulder_136v1","type":3,"armorType":2,"stats":[0,0,6,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26550,"name":"Backdoor Dealings"}}],"factionRestriction":2}, -{"id":61536,"name":"Small Pouch of Incense","icon":"inv_jewelry_necklace_18","type":2,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":31,"quality":2,"sources":[{"quest":{"id":26550,"name":"Backdoor Dealings"}}],"factionRestriction":2}, -{"id":61538,"name":"Nice Shorts","icon":"inv_pants_leather_39v1","type":9,"armorType":2,"stats":[0,0,8,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26595,"name":"Kill-Collect"}}]}, -{"id":61540,"name":"Phase Three Bracers","icon":"inv_bracer_64v3","type":6,"armorType":2,"stats":[0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26595,"name":"Kill-Collect"}}]}, -{"id":61542,"name":"Forceful Shield","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26595,"name":"Kill-Collect"}}]}, -{"id":61543,"name":"Dask's Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,0,5,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26816,"name":"Recipe for Disaster"}}],"factionRestriction":1}, -{"id":61544,"name":"Leggings with Mysterious Stains","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26816,"name":"Recipe for Disaster"}}],"factionRestriction":1}, -{"id":61545,"name":"Glass Encrusted Boots","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26816,"name":"Recipe for Disaster"}}],"factionRestriction":1}, -{"id":61546,"name":"Formulaic Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,5,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26535,"name":"Recipe for Disaster"}}],"factionRestriction":2}, -{"id":61547,"name":"Mixmaster's Britches","icon":"inv_pants_leather_39v3","type":9,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26535,"name":"Recipe for Disaster"}}],"factionRestriction":2}, -{"id":61548,"name":"Boots of Explosive Dancing","icon":"inv_boots_mail_14","type":10,"armorType":3,"stats":[6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"quest":{"id":26535,"name":"Recipe for Disaster"}}],"factionRestriction":2}, -{"id":61549,"name":"Maywiki's Favorite Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26814,"name":"High Priest Venoxis"}}],"factionRestriction":1}, -{"id":61550,"name":"Boots of the Foolhardy","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,7,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26814,"name":"High Priest Venoxis"}}],"factionRestriction":1}, -{"id":61551,"name":"Cloak of Great Endeavors","icon":"inv_misc_cape_05","type":4,"stats":[5,0,7,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26814,"name":"High Priest Venoxis"}}],"factionRestriction":1}, -{"id":61552,"name":"Chabal's Favorite Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26555,"name":"High Priest Venoxis"}}],"factionRestriction":2}, -{"id":61553,"name":"Boots of the Foolhardy","icon":"inv_boots_leather_11v3","type":10,"armorType":2,"stats":[0,7,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26555,"name":"High Priest Venoxis"}}],"factionRestriction":2}, -{"id":61554,"name":"Cloak of Great Endeavors","icon":"inv_misc_cape_05","type":4,"stats":[5,0,7,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3,"sources":[{"quest":{"id":26555,"name":"High Priest Venoxis"}}],"factionRestriction":2}, -{"id":61556,"name":"Feverish Bracers","icon":"inv_bracer_62v3","type":6,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26597,"name":"Stranglethorn Fever"}}]}, -{"id":61558,"name":"Savage Handwraps","icon":"inv_gauntlets_116v2","type":7,"armorType":2,"stats":[0,0,0,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26597,"name":"Stranglethorn Fever"}}]}, -{"id":61560,"name":"Chestpiece of Returning Strength","icon":"inv_chest_mail_19v1","type":5,"armorType":3,"stats":[6,0,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26597,"name":"Stranglethorn Fever"}}]}, -{"id":61562,"name":"Smotts' Signet","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26601,"name":"Mok'rash the Cleaver"}}]}, -{"id":61564,"name":"Sea Song Epaulettes","icon":"inv_shoulder_134v3","type":3,"armorType":1,"stats":[0,0,4,6,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26601,"name":"Mok'rash the Cleaver"}}]}, -{"id":61566,"name":"Landlubber Headband","icon":"inv_helmet_175v2","type":1,"armorType":2,"stats":[0,0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26601,"name":"Mok'rash the Cleaver"}}]}, -{"id":61568,"name":"Sea Legs","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26601,"name":"Mok'rash the Cleaver"}}]}, -{"id":61570,"name":"Informant's Gloves","icon":"inv_gauntlets_106v3","type":7,"armorType":1,"stats":[0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26612,"name":"Details of the Attack"}}]}, -{"id":61572,"name":"Belt of Supremacy","icon":"inv_belt_87","type":8,"armorType":2,"stats":[0,0,4,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26612,"name":"Details of the Attack"}}]}, -{"id":61574,"name":"Sea Baron's Breastplate","icon":"inv_chest_mail_19v2","type":5,"armorType":3,"stats":[0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26612,"name":"Details of the Attack"}}]}, -{"id":61576,"name":"Pirate's Musket","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":2.8,"ilvl":33,"quality":2,"sources":[{"quest":{"id":26612,"name":"Details of the Attack"}}]}, -{"id":61578,"name":"Cleaning Britches","icon":"inv_pants_cloth_39v3","type":9,"armorType":1,"stats":[0,0,9,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26633,"name":"Swabbing Duty"}}]}, -{"id":61580,"name":"Swabbie's Booties","icon":"inv_boots_leather_11v2","type":10,"armorType":2,"stats":[0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26633,"name":"Swabbing Duty"}}]}, -{"id":61582,"name":"Riptide Vest","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,6,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26633,"name":"Swabbing Duty"}}]}, -{"id":61584,"name":"Keelhaul Shackles","icon":"inv_bracer_78v1","type":6,"armorType":3,"stats":[4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26633,"name":"Swabbing Duty"}}]}, -{"id":61586,"name":"Princess Poobah's Dress","icon":"inv_chest_cloth_86v3","type":5,"armorType":1,"stats":[0,0,5,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26606,"name":"Mukla's Demise"}}]}, -{"id":61588,"name":"Princess Poobah's Bracelets","icon":"inv_bracer_64v2","type":6,"armorType":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26606,"name":"Mukla's Demise"}}]}, -{"id":61589,"name":"Princess Poobah's Tiara","icon":"inv_jewelry_ring_03","type":1,"armorType":3,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":2,"sources":[{"quest":{"id":26606,"name":"Mukla's Demise"}}]}, -{"id":61592,"name":"Black Gold Buckler","icon":"inv_shield_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26649,"name":"Drive-By Piracy"}}]}, -{"id":61594,"name":"Venture Blaster","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":1.6,"ilvl":34,"quality":2,"sources":[{"quest":{"id":26649,"name":"Drive-By Piracy"}}]}, -{"id":61596,"name":"Slippery Glovelettes","icon":"inv_gauntlets_116","type":7,"armorType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26649,"name":"Drive-By Piracy"}}]}, -{"id":61598,"name":"Ironpatch Shoulderguards","icon":"inv_shoulder_147v1","type":3,"armorType":3,"stats":[0,0,7,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26649,"name":"Drive-By Piracy"}}]}, -{"id":61600,"name":"Mortal Naginata","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,9,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":3,"ilvl":34,"quality":2,"sources":[{"quest":{"id":26648,"name":"Our Mortal Enemies"}}]}, -{"id":61602,"name":"Ninja Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.7,"ilvl":34,"quality":2,"sources":[{"quest":{"id":26648,"name":"Our Mortal Enemies"}}]}, -{"id":61604,"name":"Other-Eye Patch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26648,"name":"Our Mortal Enemies"}}]}, -{"id":61606,"name":"Pauldrons of the Eternal Battle","icon":"inv_shoulder_147v2","type":3,"armorType":3,"stats":[0,0,4,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":34,"quality":2,"sources":[{"quest":{"id":26648,"name":"Our Mortal Enemies"}}]}, -{"id":61608,"name":"Mongrel Shooter","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":2.8,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26697,"name":"The Final Voyage of the Brashtide"}}]}, -{"id":61610,"name":"Flight Master's Gift","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26697,"name":"The Final Voyage of the Brashtide"}}]}, -{"id":61612,"name":"Baron's Baton","icon":"inv_mace_01","type":13,"weaponType":4,"handType":4,"stats":[7,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":95,"weaponSpeed":3.3,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26697,"name":"The Final Voyage of the Brashtide"}}]}, -{"id":61614,"name":"Supposed Mace","icon":"inv_mace_10","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.6,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26664,"name":"Making Mutiny"}}]}, -{"id":61616,"name":"Accusing Finger","icon":"inv_weapon_shortblade_113","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.4,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26664,"name":"Making Mutiny"}}]}, -{"id":61618,"name":"Mutineer's Noose","icon":"inv_belt_98v3","type":8,"armorType":3,"stats":[7,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26664,"name":"Making Mutiny"}}]}, -{"id":61620,"name":"Revilgaz's Cutlass","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,3,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":33,"weaponDamageMax":62,"weaponSpeed":2.6,"ilvl":35,"quality":2,"sources":[{"quest":{"id":26699,"name":"Turning the Brashtide"}}]}, -{"id":61622,"name":"Bruised Vest","icon":"inv_chest_leather_27v3","type":5,"armorType":2,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26699,"name":"Turning the Brashtide"}}]}, -{"id":61624,"name":"Brash Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26699,"name":"Turning the Brashtide"}}]}, -{"id":61626,"name":"Booty Bay Pendant","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,6,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26703,"name":"Bloodsail's End"}}]}, -{"id":61628,"name":"Star of Stranglethorn","icon":"inv_offhand_blood_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,4,6,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26703,"name":"Bloodsail's End"}}]}, -{"id":61630,"name":"Booty Bay Pantaloons","icon":"inv_pants_leather_39v1","type":9,"armorType":2,"stats":[0,11,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26703,"name":"Bloodsail's End"}}]}, -{"id":61632,"name":"Booty Bay Helm","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[11,0,11,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"quest":{"id":26703,"name":"Bloodsail's End"}}]}, -{"id":61931,"name":"Polished Helm of Valor","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[68,0,103,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":61935,"name":"Tarnished Raging Berserker's Helm","icon":"inv_helmet_25","type":1,"armorType":3,"stats":[0,68,103,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":61936,"name":"Mystical Coif of Elements","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,103,68,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":61937,"name":"Stained Shadowcraft Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,68,103,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":61942,"name":"Preened Tribal War Feathers","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,103,68,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":61958,"name":"Tattered Dreadmist Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,103,68,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62023,"name":"Polished Legplates of Valor","icon":"inv_pants_04","type":9,"armorType":4,"stats":[68,0,103,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62024,"name":"Tarnished Leggings of Destruction","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,68,103,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62025,"name":"Mystical Kilt of Elements","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,103,68,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62026,"name":"Stained Shadowcraft Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,68,103,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62027,"name":"Preened Wildfeather Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,0,103,68,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62029,"name":"Tattered Dreadmist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,103,68,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62038,"name":"Worn Stoneskin Gargoyle Cape","icon":"inv_misc_cape_19","type":4,"stats":[38,0,57,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62039,"name":"Inherited Cape of the Black Baron","icon":"inv_misc_cape_20","type":4,"stats":[0,38,57,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62040,"name":"Ancient Bloodmoon Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,0,57,38,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":62058,"name":"Irradiated Bandages","icon":"inv_misc_bandage_08","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":62059,"name":"Torn Gnome Pants","icon":"inv_pants_02","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":62060,"name":"Irradiated Gnome Boots","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":62063,"name":"Shattered War Mace","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":292,"weaponDamageMax":439,"weaponSpeed":3.6,"ilvl":175}, -{"id":62064,"name":"Warped Greatsword","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":354,"weaponSpeed":2.9,"ilvl":175}, -{"id":62065,"name":"Melted Cleaver","icon":"inv_throwingaxe_06","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":2.5,"ilvl":175}, -{"id":62066,"name":"Wolk's Blunted Shiv","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.6,"ilvl":175}, -{"id":62067,"name":"Flamewashed Mace","icon":"inv_mace_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":2.3,"ilvl":175}, -{"id":62068,"name":"Knog's Bow of Ineptitude","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.5,"ilvl":175}, -{"id":62069,"name":"Plugged Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":128,"weaponDamageMax":238,"weaponSpeed":1.8,"ilvl":175}, -{"id":62070,"name":"Rusted Timber Axe","icon":"inv_throwingaxe_03","type":13,"weaponType":1,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":103,"weaponDamageMax":193,"weaponSpeed":1.9,"ilvl":175}, -{"id":62071,"name":"Corroded Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":2.2,"ilvl":175}, -{"id":62072,"name":"Robble's Wobbly Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":252,"weaponDamageMax":378,"weaponSpeed":3.1,"ilvl":175}, -{"id":62073,"name":"Clammy Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62074,"name":"Clammy Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62075,"name":"Perforated Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62076,"name":"Perforated Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62077,"name":"Perforated Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62078,"name":"Perforated Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62079,"name":"Dirt-Caked Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62080,"name":"Perforated Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62081,"name":"Dirt-Caked Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62082,"name":"Dirt-Caked Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62083,"name":"Clammy Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62084,"name":"Pockmarked Cloth Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62085,"name":"Pockmarked Cloth Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62086,"name":"Dirt-Caked Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62087,"name":"Dirt-Caked Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62088,"name":"Dirt-Caked Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62089,"name":"Dirt-Caked Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62090,"name":"Perforated Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62091,"name":"Pockmarked Cloth Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62092,"name":"Pockmarked Cloth Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62093,"name":"Pockmarked Cloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62094,"name":"Pockmarked Cloth Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62095,"name":"Perforated Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62096,"name":"Clammy Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62097,"name":"Clammy Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62098,"name":"Clammy Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62099,"name":"Clammy Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62100,"name":"Pockmarked Cloth Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62101,"name":"Clammy Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62102,"name":"Dirt-Caked Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62103,"name":"Pockmarked Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62104,"name":"Perforated Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":150}, -{"id":62105,"name":"Bleached Plate Pants","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62106,"name":"Bleached Plate Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1058,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62107,"name":"Singed Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62108,"name":"Singed Armor","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62109,"name":"Sodden Cloth Vest","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62110,"name":"Sodden Cloth Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62111,"name":"Singed Shoulderpads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62112,"name":"Singed Pants","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62113,"name":"Singed Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62114,"name":"Singed Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62115,"name":"Singed Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62116,"name":"Sodden Cloth Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62117,"name":"Sodden Cloth Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62118,"name":"Sodden Cloth Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62119,"name":"Sodden Cloth Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62120,"name":"Sodden Cloth Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62121,"name":"Sooty Mail Shoulderpads","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62122,"name":"Sooty Mail Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1037,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62123,"name":"Sooty Mail Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62124,"name":"Sooty Mail Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62125,"name":"Sooty Mail Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62126,"name":"Bleached Plate Chestpiece","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62127,"name":"Bleached Plate Shoulderpads","icon":"inv_shoulder_13","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62128,"name":"Bleached Plate Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,740,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62129,"name":"Bleached Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62130,"name":"Bleached Plate Belt","icon":"inv_belt_16","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62131,"name":"Sooty Mail Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62132,"name":"Sooty Mail Armor","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62133,"name":"Sodden Cloth Hat","icon":"inv_helmet_51","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62134,"name":"Bleached Plate Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62135,"name":"Singed Leather Helmet","icon":"inv_helmet_12","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62136,"name":"Sooty Mail Circlet","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":199}, -{"id":62140,"name":"Dried-Up Bracers","icon":"inv_bracer_62","type":6,"armorType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27160,"name":"War Machines"}}],"factionRestriction":1}, -{"id":62141,"name":"Belt of the Laconic","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27160,"name":"War Machines"}}],"factionRestriction":1}, -{"id":62142,"name":"Behemoth Boots","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27160,"name":"War Machines"}}],"factionRestriction":1}, -{"id":62143,"name":"Gut Opener Gloves","icon":"inv_gauntlets_119v3","type":7,"armorType":3,"stats":[5,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27160,"name":"War Machines"}}],"factionRestriction":1}, -{"id":62144,"name":"Bracers of Favorable Chance","icon":"inv_bracer_62","type":6,"armorType":1,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26923,"name":"War Machines"}}],"factionRestriction":2}, -{"id":62145,"name":"Belt of the Blathering Fool","icon":"inv_belt_87v3","type":8,"armorType":2,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26923,"name":"War Machines"}}],"factionRestriction":2}, -{"id":62146,"name":"Behemoth Boots","icon":"inv_boots_leather_11v1","type":10,"armorType":2,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26923,"name":"War Machines"}}],"factionRestriction":2}, -{"id":62147,"name":"Gut Opener Gloves","icon":"inv_gauntlets_119v3","type":7,"armorType":3,"stats":[5,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26923,"name":"War Machines"}}],"factionRestriction":2}, -{"id":62148,"name":"Gandling's Gloves","icon":"inv_gauntlets_106","type":7,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27162,"name":"Scholomancer"}}],"factionRestriction":1}, -{"id":62149,"name":"Burden of Time","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27162,"name":"Scholomancer"}}],"factionRestriction":1}, -{"id":62150,"name":"Elimination Bracers","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27162,"name":"Scholomancer"}}],"factionRestriction":1}, -{"id":62151,"name":"Belt of Lingering Corruption","icon":"inv_belt_98v3","type":8,"armorType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":27162,"name":"Scholomancer"}}],"factionRestriction":1}, -{"id":62152,"name":"Gandling's Gloves","icon":"inv_gauntlets_106","type":7,"armorType":1,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26924,"name":"Scholomancer"}}],"factionRestriction":2}, -{"id":62153,"name":"Burden of Time","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26924,"name":"Scholomancer"}}],"factionRestriction":2}, -{"id":62154,"name":"Elimination Bracers","icon":"inv_bracer_64v1","type":6,"armorType":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26924,"name":"Scholomancer"}}],"factionRestriction":2}, -{"id":62155,"name":"Belt of Lingering Corruption","icon":"inv_belt_98v3","type":8,"armorType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"quest":{"id":26924,"name":"Scholomancer"}}],"factionRestriction":2}, -{"id":62156,"name":"Grant's Signet","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27167,"name":"A Mighty Hunger"}}],"factionRestriction":1}, -{"id":62157,"name":"Farmer's Vest","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,5,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27167,"name":"A Mighty Hunger"}}],"factionRestriction":1}, -{"id":62158,"name":"Homestead Helm","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[0,0,9,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27167,"name":"A Mighty Hunger"}}],"factionRestriction":1}, -{"id":62159,"name":"Bear Hunter's Rifle","icon":"inv_weapon_rifle_40","type":14,"rangedWeaponType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.8,"ilvl":36,"quality":2,"sources":[{"quest":{"id":27167,"name":"A Mighty Hunger"}}],"factionRestriction":1}, -{"id":62160,"name":"Vandis' Band","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,5,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26931,"name":"Foxes and Hounds"}}],"factionRestriction":2}, -{"id":62161,"name":"Bullmastiff Vest","icon":"inv_chest_leather_27v1","type":5,"armorType":2,"stats":[0,5,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26931,"name":"Foxes and Hounds"}}],"factionRestriction":2}, -{"id":62162,"name":"Territorial Helm","icon":"inv_helmet_187","type":1,"armorType":3,"stats":[0,0,9,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26931,"name":"Foxes and Hounds"}}],"factionRestriction":2}, -{"id":62163,"name":"Fox Hunter's Rifle","icon":"inv_weapon_rifle_40","type":14,"rangedWeaponType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.8,"ilvl":36,"quality":2,"sources":[{"quest":{"id":26931,"name":"Foxes and Hounds"}}],"factionRestriction":2}, -{"id":62164,"name":"Valorfist Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27171,"name":"Ambushed!"}}],"factionRestriction":1}, -{"id":62165,"name":"Cryptkeeper's Belt","icon":"inv_belt_85","type":8,"armorType":1,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27171,"name":"Ambushed!"}}],"factionRestriction":1}, -{"id":62166,"name":"Spiritual Barrier","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27171,"name":"Ambushed!"}}],"factionRestriction":1}, -{"id":62167,"name":"Cloak of the Unrestful","icon":"inv_misc_cape_05","type":4,"stats":[3,0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":27171,"name":"Ambushed!"}}],"factionRestriction":1}, -{"id":62168,"name":"Glimmering Ring","icon":"inv_jewelry_ring_31","type":11,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26978,"name":"Who Needs Cauldrons?"}}],"factionRestriction":2}, -{"id":62169,"name":"Dithering Belt","icon":"inv_belt_85","type":8,"armorType":1,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26978,"name":"Who Needs Cauldrons?"}}],"factionRestriction":2}, -{"id":62170,"name":"Plague Cauldron Lid","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26978,"name":"Who Needs Cauldrons?"}}],"factionRestriction":2}, -{"id":62171,"name":"Cloak of the Salted Earth","icon":"inv_misc_cape_03","type":4,"stats":[3,0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":2,"sources":[{"quest":{"id":26978,"name":"Who Needs Cauldrons?"}}],"factionRestriction":2}, -{"id":62172,"name":"Forest Green Cloak","icon":"inv_misc_cape_09","type":4,"stats":[0,3,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26999,"name":"A New Era for the Plaguelands"}}]}, -{"id":62173,"name":"Boots of the Flowering Earth","icon":"inv_boots_leather_11","type":10,"armorType":2,"stats":[0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26999,"name":"A New Era for the Plaguelands"}}]}, -{"id":62174,"name":"Bracers of the Returning Wild","icon":"inv_bracer_78v2","type":6,"armorType":3,"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26999,"name":"A New Era for the Plaguelands"}}]}, -{"id":62175,"name":"Lumberjack's Hatchet","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":67,"weaponSpeed":2.6,"ilvl":37,"quality":2,"sources":[{"quest":{"id":27012,"name":"A Gnoll's Resolve"}}]}, -{"id":62176,"name":"Redpine Cloak","icon":"inv_misc_cape_22","type":4,"stats":[0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27012,"name":"A Gnoll's Resolve"}}]}, -{"id":62177,"name":"Kelly's Booties","icon":"inv_boots_mail_14v2","type":10,"armorType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27012,"name":"A Gnoll's Resolve"}}]}, -{"id":62178,"name":"Spider Splatter Mace","icon":"inv_drink_17","type":13,"weaponType":4,"handType":2,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":67,"weaponSpeed":2.6,"ilvl":37,"quality":2,"sources":[{"quest":{"id":27001,"name":"This Means WAR (Wild Arachnid Roundup)"}}]}, -{"id":62179,"name":"Spider Frier","icon":"inv_torch_lit","type":14,"rangedWeaponType":6,"stats":[0,0,3,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.6,"ilvl":37,"quality":2,"sources":[{"quest":{"id":27001,"name":"This Means WAR (Wild Arachnid Roundup)"}}]}, -{"id":62180,"name":"Band of the Arachnid Wrangler","icon":"inv_jewelry_ring_02","type":11,"stats":[6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27001,"name":"This Means WAR (Wild Arachnid Roundup)"}}]}, -{"id":62181,"name":"Zombie Shotgun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.8,"ilvl":37,"quality":2,"sources":[{"quest":{"id":27174,"name":"Combat Training"}}],"factionRestriction":1}, -{"id":62182,"name":"Training Leggings","icon":"inv_pants_cloth_39v2","type":9,"armorType":1,"stats":[0,0,10,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27174,"name":"Combat Training"}}],"factionRestriction":1}, -{"id":62183,"name":"Gory Gloves","icon":"inv_gauntlets_116","type":7,"armorType":2,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27174,"name":"Combat Training"}}],"factionRestriction":1}, -{"id":62184,"name":"Abominable Shoulderguards","icon":"inv_shoulder_147v2","type":3,"armorType":3,"stats":[5,0,7,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27174,"name":"Combat Training"}}],"factionRestriction":1}, -{"id":62185,"name":"Zombie Shotgun","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":2.8,"ilvl":37,"quality":2,"sources":[{"quest":{"id":26938,"name":"Combat Training"}}],"factionRestriction":2}, -{"id":62186,"name":"Ravensun Britches","icon":"inv_pants_cloth_39v2","type":9,"armorType":1,"stats":[0,0,10,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26938,"name":"Combat Training"}}],"factionRestriction":2}, -{"id":62187,"name":"Charming Gloves","icon":"inv_gauntlets_116","type":7,"armorType":2,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26938,"name":"Combat Training"}}],"factionRestriction":2}, -{"id":62188,"name":"Abominable Shoulderguards","icon":"inv_shoulder_147v2","type":3,"armorType":3,"stats":[5,0,7,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":26938,"name":"Combat Training"}}],"factionRestriction":2}, -{"id":62189,"name":"Argent Medallion","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27155,"name":"Turning Yourself In"}}]}, -{"id":62190,"name":"Light-Imbued Lantern","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27155,"name":"Turning Yourself In"}}]}, -{"id":62191,"name":"Highlord's Favor","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":37,"quality":2,"sources":[{"quest":{"id":27155,"name":"Turning Yourself In"}}]}, -{"id":62192,"name":"Zen'Kiki's Thanks","icon":"inv_jewelry_necklace_25","type":2,"stats":[0,0,5,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":26955,"name":"Zen'Kiki and the Cultists"}}]}, -{"id":62193,"name":"Leggings of the Slippery Shifter","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,7,10,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":26955,"name":"Zen'Kiki and the Cultists"}}]}, -{"id":62194,"name":"Breastplate of the Patient","icon":"inv_chest_mail_19v2","type":5,"armorType":3,"stats":[7,0,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":26955,"name":"Zen'Kiki and the Cultists"}}]}, -{"id":62195,"name":"Footfalls of Memories","icon":"inv_boots_cloth_33v2","type":10,"armorType":1,"stats":[0,0,7,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":27017,"name":"Memories from a Lost Past"}}]}, -{"id":62196,"name":"Gloria's Work Vest","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,0,10,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":27017,"name":"Memories from a Lost Past"}}]}, -{"id":62197,"name":"Gahrron's Shoulderguard","icon":"inv_shoulder_136v2","type":3,"armorType":2,"stats":[0,5,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":27017,"name":"Memories from a Lost Past"}}]}, -{"id":62198,"name":"Andrea's Locket","icon":"inv_jewelry_necklace_16","type":2,"stats":[6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":2,"sources":[{"quest":{"id":27017,"name":"Memories from a Lost Past"}}]}, -{"id":62199,"name":"Malicia's Scepter","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":45,"weaponSpeed":1.6,"ilvl":39,"quality":2,"sources":[{"quest":{"id":27055,"name":"Students of Krastinov"}}]}, -{"id":62200,"name":"Field Agent's Belt","icon":"inv_belt_87v2","type":8,"armorType":2,"stats":[0,4,6,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":2,"sources":[{"quest":{"id":27055,"name":"Students of Krastinov"}}]}, -{"id":62201,"name":"Kaartish's Sword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[2,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":39,"weaponDamageMax":72,"weaponSpeed":2.6,"ilvl":39,"quality":2,"sources":[{"quest":{"id":27055,"name":"Students of Krastinov"}}]}, -{"id":62202,"name":"Bracers of Envy","icon":"inv_bracer_76","type":6,"armorType":1,"stats":[0,0,3,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27198,"name":"Supporting the Troops"}}],"factionRestriction":1}, -{"id":62203,"name":"Belt of the Unafraid","icon":"inv_belt_90","type":8,"armorType":2,"stats":[0,0,5,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27198,"name":"Supporting the Troops"}}],"factionRestriction":1}, -{"id":62204,"name":"Gloves of the Able","icon":"inv_gauntlets_115v2","type":7,"armorType":2,"stats":[0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27198,"name":"Supporting the Troops"}}],"factionRestriction":1}, -{"id":62205,"name":"Defender's Band","icon":"inv_jewelry_ring_19","type":11,"stats":[4,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27198,"name":"Supporting the Troops"}}],"factionRestriction":1}, -{"id":62206,"name":"Bracers of Envy","icon":"inv_bracer_76","type":6,"armorType":1,"stats":[0,0,3,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27085,"name":"Supporting the Troops"}}],"factionRestriction":2}, -{"id":62207,"name":"Belt of the Unafraid","icon":"inv_belt_90","type":8,"armorType":2,"stats":[0,0,5,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27085,"name":"Supporting the Troops"}}],"factionRestriction":2}, -{"id":62208,"name":"Gloves of the Able","icon":"inv_gauntlets_115v2","type":7,"armorType":2,"stats":[0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27085,"name":"Supporting the Troops"}}],"factionRestriction":2}, -{"id":62209,"name":"Deathguard Band","icon":"inv_jewelry_ring_16","type":11,"stats":[4,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27085,"name":"Supporting the Troops"}}],"factionRestriction":2}, -{"id":62210,"name":"Pack Leader's Band","icon":"inv_jewelry_ring_02","type":11,"stats":[0,6,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27202,"name":"Brother Against Brother"}}],"factionRestriction":1}, -{"id":62211,"name":"Shoulderwraps of the Enthralled","icon":"inv_shoulder_146","type":3,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27202,"name":"Brother Against Brother"}}],"factionRestriction":1}, -{"id":62212,"name":"Quelling Bracers","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27202,"name":"Brother Against Brother"}}],"factionRestriction":1}, -{"id":62213,"name":"Minuteman Pike","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[11,0,6,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":3,"ilvl":40,"quality":2,"sources":[{"quest":{"id":27202,"name":"Brother Against Brother"}}],"factionRestriction":1}, -{"id":62214,"name":"Ring of Aces","icon":"inv_jewelry_ring_33","type":11,"stats":[0,6,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27089,"name":"Ace in the Hole"}}],"factionRestriction":2}, -{"id":62215,"name":"Shoulderwraps of the Enthralled","icon":"inv_shoulder_146","type":3,"armorType":1,"stats":[0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27089,"name":"Ace in the Hole"}}],"factionRestriction":2}, -{"id":62216,"name":"Lurid Bracers","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27089,"name":"Ace in the Hole"}}],"factionRestriction":2}, -{"id":62217,"name":"Minuteman Pike","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[11,0,6,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":60,"weaponDamageMax":113,"weaponSpeed":3,"ilvl":40,"quality":2,"sources":[{"quest":{"id":27089,"name":"Ace in the Hole"}}],"factionRestriction":2}, -{"id":62218,"name":"Chillwind Dagger","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.8,"ilvl":40,"quality":3,"sources":[{"quest":{"id":27206,"name":"Alas, Andorhal"}}],"factionRestriction":1}, -{"id":62219,"name":"Chillwind Staff","icon":"inv_staff_113","type":13,"weaponType":8,"handType":4,"stats":[0,12,15,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"sources":[{"quest":{"id":27206,"name":"Alas, Andorhal"}}],"factionRestriction":1}, -{"id":62220,"name":"Chillwind Tunic","icon":"inv_chest_robe_common_c_01v1","type":5,"armorType":1,"stats":[0,0,15,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27206,"name":"Alas, Andorhal"}}],"factionRestriction":1}, -{"id":62221,"name":"Chillwind Legguards","icon":"inv_pants_leather_42v2","type":9,"armorType":2,"stats":[0,0,11,9,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27206,"name":"Alas, Andorhal"}}],"factionRestriction":1}, -{"id":62222,"name":"Chillwind Pauldrons","icon":"inv_shoulder_144v1","type":3,"armorType":3,"stats":[8,0,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27206,"name":"Alas, Andorhal"}}],"factionRestriction":1}, -{"id":62223,"name":"Dagger of Andorhal","icon":"inv_weapon_shortblade_111","type":13,"weaponType":2,"handType":2,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":1.8,"ilvl":40,"quality":3,"sources":[{"quest":{"id":27144,"name":"The Reckoning"}}],"factionRestriction":2}, -{"id":62224,"name":"Staff of Andorhal","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,12,15,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":40,"quality":3,"sources":[{"quest":{"id":27144,"name":"The Reckoning"}}],"factionRestriction":2}, -{"id":62225,"name":"Andorhal Tunic","icon":"inv_chest_robe_common_c_01v1","type":5,"armorType":1,"stats":[0,0,15,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27144,"name":"The Reckoning"}}],"factionRestriction":2}, -{"id":62226,"name":"Andorhal Legguards","icon":"inv_pants_leather_42v2","type":9,"armorType":2,"stats":[0,0,11,9,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27144,"name":"The Reckoning"}}],"factionRestriction":2}, -{"id":62227,"name":"Pauldrons of Andorhal","icon":"inv_shoulder_144v1","type":3,"armorType":3,"stats":[8,0,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":27144,"name":"The Reckoning"}}],"factionRestriction":2}, -{"id":62232,"name":"Great Sword of the Sin'dorei","icon":"inv_weapon_shortblade_98","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":36,"weaponSpeed":3.3,"ilvl":1,"quality":4}, -{"id":62253,"name":"Grunt's Plate Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62254,"name":"Grunt's Plate Belt","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62255,"name":"Grunt's Plate Boots","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62256,"name":"Grunt's Plate Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62257,"name":"Grunt's Plate Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62258,"name":"Grunt's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62259,"name":"Grunt's Plate Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62260,"name":"Grunt's Chain Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62261,"name":"Grunt's Chain Boots","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62262,"name":"Grunt's Chain Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62263,"name":"Grunt's Chain Gloves","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62264,"name":"Grunt's Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62265,"name":"Grunt's Chain Vest","icon":"inv_chest_plate13","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62266,"name":"Grunt's Chain Circlet","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":1}, -{"id":62329,"name":"Dire Slasher","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.8,"ilvl":9,"quality":2}, -{"id":62335,"name":"Thrall's Gift","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":3,"sources":[{"quest":{"id":25265,"name":"Victory!"}}]}, -{"id":62392,"name":"Relentless Gladiator's Claymore (Silver)","icon":"inv_sword_149","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":26,"weaponDamageMax":39,"weaponSpeed":3.6,"ilvl":1,"quality":4}, -{"id":62507,"name":"Lenore's Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":62831,"name":"Treads of the Survivor","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":27045,"name":"Waiting to Exsanguinate"}}],"factionRestriction":2}, -{"id":62832,"name":"Yorick's Bequest","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":27045,"name":"Waiting to Exsanguinate"}}],"factionRestriction":2}, -{"id":62833,"name":"Cloak of Courage","icon":"inv_misc_cape_18","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":27045,"name":"Waiting to Exsanguinate"}}],"factionRestriction":2}, -{"id":62834,"name":"T'veen's Cloak","icon":"inv_misc_cape_08","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26998,"name":"Iterating Upon Success"}}],"factionRestriction":2}, -{"id":62835,"name":"Maggot-Ridden Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26998,"name":"Iterating Upon Success"}}],"factionRestriction":2}, -{"id":62836,"name":"Muckdweller Spear","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":3,"ilvl":11,"quality":2,"sources":[{"quest":{"id":26998,"name":"Iterating Upon Success"}}],"factionRestriction":2}, -{"id":62837,"name":"Nubish Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26989,"name":"The Gilneas Liberation Front"}}],"factionRestriction":2}, -{"id":62838,"name":"Nub's Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":9,"weaponDamageMax":17,"weaponSpeed":1.6,"ilvl":11,"quality":2,"sources":[{"quest":{"id":26989,"name":"The Gilneas Liberation Front"}}],"factionRestriction":2}, -{"id":62839,"name":"Nubly Bracers","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2,"sources":[{"quest":{"id":26989,"name":"The Gilneas Liberation Front"}}],"factionRestriction":2}, -{"id":62840,"name":"Sober Pup Wristbands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":27069,"name":"Steel Thunder"}}],"factionRestriction":2}, -{"id":62841,"name":"Bloodfang Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":27069,"name":"Steel Thunder"}}],"factionRestriction":2}, -{"id":62842,"name":"Steel Thunder Belt","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":27069,"name":"Steel Thunder"}}],"factionRestriction":2}, -{"id":62843,"name":"Bush Chicken Remote Injector","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.8,"ilvl":12,"quality":2,"sources":[{"quest":{"id":27088,"name":"It's Only Poisonous if You Ingest It"}}],"factionRestriction":2}, -{"id":62844,"name":"Suppository Preventors","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":27088,"name":"It's Only Poisonous if You Ingest It"}}],"factionRestriction":2}, -{"id":62845,"name":"Chicken Stuffers","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":27088,"name":"It's Only Poisonous if You Ingest It"}}],"factionRestriction":2}, -{"id":62846,"name":"Ale-Soaked Robes","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27226,"name":"Hair of the Dog"}}],"factionRestriction":2}, -{"id":62847,"name":"Sea Dog Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27226,"name":"Hair of the Dog"}}],"factionRestriction":2}, -{"id":62848,"name":"Treads of the Sepulcher","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27226,"name":"Hair of the Dog"}}],"factionRestriction":2}, -{"id":62849,"name":"Skitterweb Glovelettes","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27094,"name":"Deeper into Darkness"}}],"factionRestriction":2}, -{"id":62850,"name":"Drunken Style Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27094,"name":"Deeper into Darkness"}}],"factionRestriction":2}, -{"id":62851,"name":"Rear Guard Britches","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27094,"name":"Deeper into Darkness"}}],"factionRestriction":2}, -{"id":62852,"name":"Sabots of Red Waters","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27232,"name":"The Waters Run Red..."}}],"factionRestriction":2}, -{"id":62853,"name":"Blood Offering Platter","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27232,"name":"The Waters Run Red..."}}],"factionRestriction":2}, -{"id":62854,"name":"Mace of Calculated Loss","icon":"inv_mace_03","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.6,"ilvl":13,"quality":2,"sources":[{"quest":{"id":27195,"name":"Nowhere to Run"}}],"factionRestriction":2}, -{"id":62855,"name":"Britches of Desperate Measures","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27195,"name":"Nowhere to Run"}}],"factionRestriction":2}, -{"id":62856,"name":"Underestimated Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":2.8,"ilvl":13,"quality":2,"sources":[{"quest":{"id":27195,"name":"Nowhere to Run"}}],"factionRestriction":2}, -{"id":62857,"name":"Staff of the Formidable Opponent","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":36,"weaponSpeed":3.3,"ilvl":13,"quality":2,"sources":[{"quest":{"id":27099,"name":"No Escape"}}],"factionRestriction":2}, -{"id":62858,"name":"Flesh and Bone","icon":"inv_misc_food_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":13,"quality":2,"sources":[{"quest":{"id":27099,"name":"No Escape"}}],"factionRestriction":2}, -{"id":62859,"name":"Sword of Insurgence","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":2.6,"ilvl":13,"quality":2,"sources":[{"quest":{"id":27099,"name":"No Escape"}}],"factionRestriction":2}, -{"id":62860,"name":"Watched Watcher's Slippers","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":27342,"name":"In Time, All Will Be Revealed"}}],"factionRestriction":2}, -{"id":62861,"name":"Wolfsbane Vest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":27342,"name":"In Time, All Will Be Revealed"}}],"factionRestriction":2}, -{"id":62862,"name":"Belmont's Bracers","icon":"inv_bracer_27a","type":6,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":14,"quality":2,"sources":[{"quest":{"id":27342,"name":"In Time, All Will Be Revealed"}}],"factionRestriction":2}, -{"id":62863,"name":"Wild Howl Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":14,"weaponSpeed":1.4,"ilvl":15,"quality":2,"sources":[{"quest":{"id":27405,"name":"Fall Back!"}}],"factionRestriction":2}, -{"id":62864,"name":"Bracers of the Final Transmission","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27405,"name":"Fall Back!"}}],"factionRestriction":2}, -{"id":62865,"name":"Emberstone Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27405,"name":"Fall Back!"}}],"factionRestriction":2}, -{"id":62866,"name":"Cromush's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27322,"name":"Korok the Colossus"}}],"factionRestriction":2}, -{"id":62867,"name":"Belt of the Second Head","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27322,"name":"Korok the Colossus"}}],"factionRestriction":2}, -{"id":62868,"name":"Korok's Ring","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27322,"name":"Korok the Colossus"}}],"factionRestriction":2}, -{"id":62869,"name":"Submariner Killer","icon":"inv_weapon_shortblade_09","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":12,"weaponDamageMax":24,"weaponSpeed":1.6,"ilvl":15,"quality":2,"sources":[{"quest":{"id":27360,"name":"Vengeance for Our Soldiers"}}],"factionRestriction":2}, -{"id":62870,"name":"Rutsak Carriers","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27360,"name":"Vengeance for Our Soldiers"}}],"factionRestriction":2}, -{"id":62871,"name":"War Blood Cloak","icon":"inv_misc_cape_22","type":4,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":15,"quality":2,"sources":[{"quest":{"id":27360,"name":"Vengeance for Our Soldiers"}}],"factionRestriction":2}, -{"id":62872,"name":"Cloak of Secret Purpose","icon":"inv_misc_cape_14","type":4,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":27438,"name":"The Great Escape"}}],"factionRestriction":2}, -{"id":62873,"name":"Godfrey's Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":27438,"name":"The Great Escape"}}],"factionRestriction":2}, -{"id":62874,"name":"Treads of the True Plan","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":27438,"name":"The Great Escape"}}],"factionRestriction":2}, -{"id":62875,"name":"Betrayal's Sting","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":23,"weaponDamageMax":43,"weaponSpeed":2.8,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27478,"name":"Relios the Relic Keeper"}}],"factionRestriction":2}, -{"id":62876,"name":"Relios's Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":19,"weaponSpeed":1.6,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27478,"name":"Relios the Relic Keeper"}}],"factionRestriction":2}, -{"id":62877,"name":"Forsaken Ball","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":27478,"name":"Relios the Relic Keeper"}}],"factionRestriction":2}, -{"id":62878,"name":"Codex Breaker","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27478,"name":"Relios the Relic Keeper"}}],"factionRestriction":2}, -{"id":62879,"name":"Psychopathic Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":2,"stats":[0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.6,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27483,"name":"Practical Vengeance"}}],"factionRestriction":2}, -{"id":62880,"name":"Axe of Practical Vengeance","icon":"inv_axe_32","type":13,"weaponType":1,"handType":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":47,"weaponSpeed":3.3,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27483,"name":"Practical Vengeance"}}],"factionRestriction":2}, -{"id":62881,"name":"Dawnweaver's Dagger","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":1,"stats":[0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":17,"weaponSpeed":1.4,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27483,"name":"Practical Vengeance"}}],"factionRestriction":2}, -{"id":62882,"name":"Edge of Unlifted Burdens","icon":"inv_axe_30","type":13,"weaponType":1,"handType":2,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":2.6,"ilvl":18,"quality":2,"sources":[{"quest":{"id":27483,"name":"Practical Vengeance"}}],"factionRestriction":2}, -{"id":62883,"name":"Inconspicuous Pantaloons","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":27510,"name":"A Wolf in Bear's Clothing"}}],"factionRestriction":2}, -{"id":62884,"name":"\"Bear\" Hide Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":27510,"name":"A Wolf in Bear's Clothing"}}],"factionRestriction":2}, -{"id":62885,"name":"Unmistakable Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":18,"quality":2,"sources":[{"quest":{"id":27510,"name":"A Wolf in Bear's Clothing"}}],"factionRestriction":2}, -{"id":62886,"name":"Vest of Forsaken Necromancy","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27575,"name":"From the Belly of the Beast"}}],"factionRestriction":2}, -{"id":62887,"name":"Bracers of the Million Gold Man","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27575,"name":"From the Belly of the Beast"}}],"factionRestriction":2}, -{"id":62888,"name":"Leg Bone Covers","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27575,"name":"From the Belly of the Beast"}}],"factionRestriction":2}, -{"id":62889,"name":"Transdimensional Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27518,"name":"Transdimensional Warfare: Chapter III"}}],"factionRestriction":2}, -{"id":62890,"name":"Ataeric's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27518,"name":"Transdimensional Warfare: Chapter III"}}],"factionRestriction":2}, -{"id":62891,"name":"Vessel of the Dark Lady","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":19,"quality":2,"sources":[{"quest":{"id":27518,"name":"Transdimensional Warfare: Chapter III"}}],"factionRestriction":2}, -{"id":62892,"name":"Windrunner Band","icon":"inv_jewelry_ring_34","type":11,"stats":[0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":27594,"name":"On Her Majesty's Secret Service"}}],"factionRestriction":2}, -{"id":62893,"name":"Lorna's Signet","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":27594,"name":"On Her Majesty's Secret Service"}}],"factionRestriction":2}, -{"id":62894,"name":"Favor of the Dark Lady","icon":"inv_jewelry_ring_15","type":11,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":27594,"name":"On Her Majesty's Secret Service"}}],"factionRestriction":2}, -{"id":62895,"name":"Slippers of Unturned Loyalties","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,5,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":27601,"name":"Cities in Dust"}}],"factionRestriction":2}, -{"id":62896,"name":"Belt of Beginnings","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,3,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":27601,"name":"Cities in Dust"}}],"factionRestriction":2}, -{"id":62897,"name":"Bracers of the Most Trusted","icon":"inv_bracer_30a","type":6,"armorType":3,"stats":[2,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":3,"sources":[{"quest":{"id":27601,"name":"Cities in Dust"}}],"factionRestriction":2}, -{"id":62935,"name":"Flower Picker's Gloves","icon":"inv_gauntlets_118","type":7,"armorType":1,"stats":[0,0,8,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27369,"name":"Greasing the Wheel"}}]}, -{"id":62936,"name":"Treads of Banshee Bells","icon":"inv_boots_leather_12v2","type":10,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27369,"name":"Greasing the Wheel"}}]}, -{"id":62937,"name":"Thondroril River Boots","icon":"inv_boots_mail_15v1","type":10,"armorType":3,"stats":[0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27369,"name":"Greasing the Wheel"}}]}, -{"id":62938,"name":"Giddy's Old Gloves","icon":"inv_gauntlets_121v1","type":7,"armorType":4,"stats":[4,0,8,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27369,"name":"Greasing the Wheel"}}]}, -{"id":62939,"name":"Caravan Sash","icon":"inv_belt_97","type":8,"armorType":1,"stats":[0,0,8,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27372,"name":"A Gift For Fiona"}}]}, -{"id":62940,"name":"Belt of Appeasement","icon":"inv_belt_90","type":8,"armorType":2,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27372,"name":"A Gift For Fiona"}}]}, -{"id":62941,"name":"Plaguehound Armbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27372,"name":"A Gift For Fiona"}}]}, -{"id":62942,"name":"Gentling Breastplate","icon":"inv_chest_mail_20v1","type":5,"armorType":3,"stats":[0,8,11,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27372,"name":"A Gift For Fiona"}}]}, -{"id":62943,"name":"Helm of Thoughtful Gifts","icon":"inv_helmet_188v2","type":1,"armorType":3,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":27372,"name":"A Gift For Fiona"}}]}, -{"id":62944,"name":"Slippers of the Lonely Road","icon":"inv_boots_cloth_35","type":10,"armorType":1,"stats":[0,0,8,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27382,"name":"Rough Roads"}}]}, -{"id":62945,"name":"Plaguebat Vest","icon":"inv_chest_leather_28v2","type":5,"armorType":2,"stats":[0,9,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27382,"name":"Rough Roads"}}]}, -{"id":62946,"name":"Crown Guard Armbands","icon":"inv_bracer_77v1","type":6,"armorType":3,"stats":[0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27382,"name":"Rough Roads"}}]}, -{"id":62947,"name":"Treads of Youth","icon":"inv_boots_mail_15v2","type":10,"armorType":3,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27382,"name":"Rough Roads"}}]}, -{"id":62948,"name":"Hide of the Lone Hunter","icon":"inv_shoulder_139","type":3,"armorType":2,"stats":[0,0,8,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27392,"name":"I'm Not Supposed to Tell You This"}}]}, -{"id":62949,"name":"Finder's Keepers","icon":"inv_gauntlets_120v2","type":7,"armorType":3,"stats":[0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27392,"name":"I'm Not Supposed to Tell You This"}}]}, -{"id":62950,"name":"Joseph's Spare Belt","icon":"inv_belt_86v2","type":8,"armorType":4,"stats":[7,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27392,"name":"I'm Not Supposed to Tell You This"}}]}, -{"id":62951,"name":"Cowl of Revision","icon":"inv_helmet_186","type":1,"armorType":1,"stats":[0,0,11,8,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27387,"name":"Villains of Darrowshire"}}]}, -{"id":62952,"name":"Chromie's Mirror","icon":"inv_shield_64","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27387,"name":"Villains of Darrowshire"}}]}, -{"id":62953,"name":"Vest of Discovery","icon":"inv_chest_leather_28","type":5,"armorType":2,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27387,"name":"Villains of Darrowshire"}}]}, -{"id":62954,"name":"Seeker's Britches","icon":"inv_pants_leather_40v2","type":9,"armorType":2,"stats":[0,9,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27387,"name":"Villains of Darrowshire"}}]}, -{"id":62955,"name":"Pauldrons of Darrowshire","icon":"inv_shoulder_148v1","type":3,"armorType":3,"stats":[0,6,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27390,"name":"The Battle of Darrowshire"}}]}, -{"id":62956,"name":"Sweet-Tempered Breastplate","icon":"inv_chest_mail_20v2","type":5,"armorType":3,"stats":[0,0,11,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27390,"name":"The Battle of Darrowshire"}}]}, -{"id":62957,"name":"Homecoming Wrap","icon":"inv_misc_cape_16","type":4,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27390,"name":"The Battle of Darrowshire"}}]}, -{"id":62958,"name":"Militia Hatchet","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,5,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":2.6,"ilvl":41,"quality":3,"sources":[{"quest":{"id":27391,"name":"Hidden Treasures"}}]}, -{"id":62959,"name":"Hidden Treasure","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"sources":[{"quest":{"id":27391,"name":"Hidden Treasures"}}]}, -{"id":62960,"name":"Brightening Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,5,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":80,"weaponSpeed":1.6,"ilvl":41,"quality":3,"sources":[{"quest":{"id":27391,"name":"Hidden Treasures"}}]}, -{"id":62961,"name":"Redpath Bracers","icon":"inv_bracer_75","type":6,"armorType":4,"stats":[6,0,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"sources":[{"quest":{"id":27391,"name":"Hidden Treasures"}}]}, -{"id":62962,"name":"Fungal Vale Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27421,"name":"Amidst Death, Life"}}]}, -{"id":62963,"name":"Rayne's Scarf","icon":"inv_helmet_179","type":1,"armorType":2,"stats":[0,0,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27421,"name":"Amidst Death, Life"}}]}, -{"id":62964,"name":"Pauldrons of Blooming Hope","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,0,8,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27421,"name":"Amidst Death, Life"}}]}, -{"id":62965,"name":"Ring of New Life","icon":"inv_jewelry_ring_64","type":11,"stats":[5,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":27421,"name":"Amidst Death, Life"}}]}, -{"id":62966,"name":"Emissary's Watch","icon":"inv_misc_pocketwatch_01","type":12,"stats":[0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27613,"name":"The Assassin"}}]}, -{"id":62967,"name":"Rohan's Mask","icon":"inv_helmet_179v2","type":1,"armorType":2,"stats":[0,9,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27613,"name":"The Assassin"}}]}, -{"id":62968,"name":"Dawnbringer Legguards","icon":"inv_pants_plate_40v1","type":9,"armorType":4,"stats":[8,0,11,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27613,"name":"The Assassin"}}]}, -{"id":62969,"name":"Korfax's Signet","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,7,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27619,"name":"The Commander"}}]}, -{"id":62970,"name":"Helm of Misplaced Loyalties","icon":"inv_helmet_188v1","type":1,"armorType":3,"stats":[0,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27619,"name":"The Commander"}}]}, -{"id":62971,"name":"Marjhan's Stand","icon":"inv_boots_plate_19v2","type":10,"armorType":4,"stats":[7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27619,"name":"The Commander"}}]}, -{"id":62972,"name":"Infectis Incher Leggings","icon":"inv_pants_cloth_42","type":9,"armorType":1,"stats":[0,0,12,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27450,"name":"Frederick's Fish Fancy"}}]}, -{"id":62973,"name":"Infectis Puffer Gloves","icon":"inv_gauntlets_115","type":7,"armorType":2,"stats":[0,0,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27450,"name":"Frederick's Fish Fancy"}}]}, -{"id":62974,"name":"Infectis Scuttler Helm","icon":"inv_helmet_174v2","type":1,"armorType":4,"stats":[12,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27450,"name":"Frederick's Fish Fancy"}}]}, -{"id":62975,"name":"Plaguefix Launcher","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":2.8,"ilvl":42,"quality":2,"sources":[{"quest":{"id":27454,"name":"Just a Drop in the Bucket"}}]}, -{"id":62976,"name":"Breastplate of the Droplet","icon":"inv_chest_plate29v1","type":5,"armorType":4,"stats":[0,0,11,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27454,"name":"Just a Drop in the Bucket"}}]}, -{"id":62977,"name":"Light's Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27454,"name":"Just a Drop in the Bucket"}}]}, -{"id":62978,"name":"Devourer's Stomach","icon":"inv_misc_organ_10","type":12,"stats":[0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27456,"name":"Gathering Some Grub(s)"}}]}, -{"id":62979,"name":"Rimblat's Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"stats":[0,0,7,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27456,"name":"Gathering Some Grub(s)"}}]}, -{"id":62980,"name":"Worm Harvester's Legguards","icon":"inv_pants_plate_40v1","type":9,"armorType":4,"stats":[0,0,11,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27456,"name":"Gathering Some Grub(s)"}}]}, -{"id":62981,"name":"Grubby Gun","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":61,"weaponDamageMax":114,"weaponSpeed":2.8,"ilvl":42,"quality":2,"sources":[{"quest":{"id":27456,"name":"Gathering Some Grub(s)"}}]}, -{"id":62982,"name":"Light-Touched Pendant","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27467,"name":"Buried Blades"}}]}, -{"id":62983,"name":"Cowl of the Noxious Glade","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,11,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27467,"name":"Buried Blades"}}]}, -{"id":62984,"name":"Omarion's Gift","icon":"inv_misc_token_argentdawn","type":12,"stats":[0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27467,"name":"Buried Blades"}}]}, -{"id":62985,"name":"Corpulent Shoulderpads","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,0,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27477,"name":"The Corpulent One"}}]}, -{"id":62986,"name":"Borelgore's Skin","icon":"inv_pants_leather_40v1","type":9,"armorType":2,"stats":[0,0,14,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27477,"name":"The Corpulent One"}}]}, -{"id":62987,"name":"Eastwall Gauntlets","icon":"inv_gauntlets_107v3","type":7,"armorType":4,"stats":[6,0,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27477,"name":"The Corpulent One"}}]}, -{"id":62988,"name":"Sash of the Unhonored","icon":"inv_belt_97v2","type":8,"armorType":1,"stats":[0,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2}, -{"id":62989,"name":"Monnions of Final Rest","icon":"inv_shoulder_139v3","type":3,"armorType":2,"stats":[0,6,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27539,"name":"Add 'em to the Pile"}}]}, -{"id":62990,"name":"Bat Claw Legguards","icon":"inv_pants_mail_40","type":9,"armorType":3,"stats":[0,10,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27523,"name":"Duskwing, Oh How I Hate Thee..."}}]}, -{"id":62991,"name":"Strength's Supremacy","icon":"inv_chest_plate27v3","type":5,"armorType":4,"stats":[6,0,12,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27482,"name":"Into the Flames"}}],"factionRestriction":1}, -{"id":62992,"name":"Pendant of the Ill-Advised","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,7,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27487,"name":"Ix'lar the Underlord"}}]}, -{"id":62993,"name":"Belt of Delay","icon":"inv_belt_90v3","type":8,"armorType":2,"stats":[0,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27487,"name":"Ix'lar the Underlord"}}]}, -{"id":62994,"name":"Rash Gloves","icon":"inv_gauntlets_120","type":7,"armorType":3,"stats":[0,6,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27487,"name":"Ix'lar the Underlord"}}]}, -{"id":62995,"name":"Underlord's Mandible","icon":"inv_misc_monsterclaw_07","type":12,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27487,"name":"Ix'lar the Underlord"}}]}, -{"id":62996,"name":"Band of Zeal","icon":"inv_jewelry_ring_04","type":11,"stats":[0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"quest":{"id":27620,"name":"Like Rats"}}]}, -{"id":62997,"name":"Cloak of the Reverend","icon":"inv_misc_cape_naxxramas_01","type":4,"stats":[0,0,9,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"quest":{"id":27620,"name":"Like Rats"}}]}, -{"id":62998,"name":"Barthalomew's Belt","icon":"inv_belt_96v3","type":8,"armorType":4,"stats":[9,0,12,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"quest":{"id":27620,"name":"Like Rats"}}]}, -{"id":62999,"name":"Corpseburner's Mantle","icon":"inv_shoulder_146v3","type":3,"armorType":1,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27523,"name":"Duskwing, Oh How I Hate Thee..."}}]}, -{"id":63000,"name":"Duskwing Boots","icon":"inv_boots_leather_12v1","type":10,"armorType":2,"stats":[0,0,9,6,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27523,"name":"Duskwing, Oh How I Hate Thee..."}}]}, -{"id":63001,"name":"Duskwing Handwraps","icon":"inv_gauntlets_115v3","type":7,"armorType":2,"stats":[0,6,9,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27523,"name":"Duskwing, Oh How I Hate Thee..."}}]}, -{"id":63002,"name":"Bat Claw Boots","icon":"inv_boots_mail_15","type":10,"armorType":3,"stats":[0,7,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":63003,"name":"Pigskin Gloves","icon":"inv_gauntlets_118v2","type":7,"armorType":1,"stats":[0,0,9,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27533,"name":"A Fate Worse Than Butchery"}}]}, -{"id":63004,"name":"Bracers of the Great Sty","icon":"inv_bracer_77v3","type":6,"armorType":3,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27533,"name":"A Fate Worse Than Butchery"}}]}, -{"id":63005,"name":"Pauldrons of the Touched","icon":"inv_shoulder_142","type":3,"armorType":4,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27533,"name":"A Fate Worse Than Butchery"}}]}, -{"id":63006,"name":"Augustus' Legguards","icon":"inv_pants_plate_38v3","type":9,"armorType":4,"stats":[9,0,12,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27533,"name":"A Fate Worse Than Butchery"}}]}, -{"id":63007,"name":"Plaguewood Mace","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":2.6,"ilvl":44,"quality":2,"sources":[{"quest":{"id":27531,"name":"Counter-Plague Research"}}]}, -{"id":63008,"name":"Judkins' Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":133,"weaponSpeed":3.3,"ilvl":44,"quality":2,"sources":[{"quest":{"id":27531,"name":"Counter-Plague Research"}}]}, -{"id":63009,"name":"Rotberry Waistband","icon":"inv_belt_99v3","type":8,"armorType":3,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27531,"name":"Counter-Plague Research"}}]}, -{"id":63010,"name":"Flesh Giant Toe-Ring","icon":"inv_bracer_70","type":6,"armorType":4,"stats":[5,0,7,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27531,"name":"Counter-Plague Research"}}]}, -{"id":63011,"name":"Stinking Skull Mace","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":4,"handType":1,"stats":[0,0,5,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.6,"ilvl":44,"quality":2,"sources":[{"quest":{"id":27539,"name":"Add 'em to the Pile"}}]}, -{"id":63012,"name":"Skull Kickers","icon":"inv_boots_leather_12v3","type":10,"armorType":2,"stats":[0,6,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2}, -{"id":63013,"name":"Collector's Belt","icon":"inv_belt_99","type":8,"armorType":3,"stats":[0,7,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27539,"name":"Add 'em to the Pile"}}]}, -{"id":63014,"name":"Cloak of Hoarding","icon":"inv_misc_cape_14","type":4,"stats":[0,0,7,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":27539,"name":"Add 'em to the Pile"}}]}, -{"id":63015,"name":"Overload Robes","icon":"inv_chest_cloth_88v4","type":5,"armorType":1,"stats":[0,0,13,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27530,"name":"The Corpsebeasts"}}]}, -{"id":63016,"name":"Corpsebeast Armbands","icon":"inv_bracer_67v3","type":6,"armorType":2,"stats":[0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27530,"name":"The Corpsebeasts"}}]}, -{"id":63017,"name":"Legwraps of the Slain","icon":"inv_pants_mail_40v1","type":9,"armorType":3,"stats":[0,0,13,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27530,"name":"The Corpsebeasts"}}]}, -{"id":63018,"name":"Tarenar's Token","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":27527,"name":"Journey's End"}}]}, -{"id":63019,"name":"Fiona's Armbands","icon":"inv_bracer_robe_common_c_01v1","type":6,"armorType":1,"stats":[0,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":27527,"name":"Journey's End"}}]}, -{"id":63020,"name":"Belt of the Gentle Lady","icon":"inv_belt_94v2","type":8,"armorType":2,"stats":[0,0,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":27527,"name":"Journey's End"}}]}, -{"id":63021,"name":"Gloves of Journey's End","icon":"inv_gauntlets_113v2","type":7,"armorType":3,"stats":[0,0,13,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":27527,"name":"Journey's End"}}]}, -{"id":63022,"name":"Gidwin's Medallion","icon":"inv_jewelry_amulet_03","type":2,"stats":[7,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":27527,"name":"Journey's End"}}]}, -{"id":63094,"name":"Twilight's Hammer Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8]}, -{"id":63095,"name":"Twilight's Hammer Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,656,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"classAllowlist":[8]}, -{"id":63102,"name":"Twilight's Hammer Cloak","icon":"inv_misc_cape_14","type":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3}, -{"id":63151,"name":"Wooly Goat Punchers","icon":"inv_gauntlets_118v4","type":7,"armorType":1,"stats":[0,0,9,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27775,"name":"When the Going Gets Tough, Cheat"}}]}, -{"id":63152,"name":"Goat Skin Mask","icon":"inv_helmet_179v3","type":1,"armorType":2,"stats":[0,0,13,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27775,"name":"When the Going Gets Tough, Cheat"}}]}, -{"id":63153,"name":"Goat Hide Boots","icon":"inv_boots_leather_12","type":10,"armorType":2,"stats":[0,5,9,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27775,"name":"When the Going Gets Tough, Cheat"}}]}, -{"id":63154,"name":"Fuselight Chainmail","icon":"inv_chest_mail_20v2","type":5,"armorType":3,"stats":[0,8,13,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27775,"name":"When the Going Gets Tough, Cheat"}}]}, -{"id":63155,"name":"Goat Horn Band","icon":"inv_jewelry_ring_69","type":11,"stats":[3,0,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27775,"name":"When the Going Gets Tough, Cheat"}}]}, -{"id":63156,"name":"Alluring Leggings","icon":"inv_pants_leather_40","type":9,"armorType":2,"stats":[0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27764,"name":"A Strange Request"}}]}, -{"id":63157,"name":"Lethlor Armbands","icon":"inv_bracer_77v2","type":6,"armorType":3,"stats":[0,4,7,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27764,"name":"A Strange Request"}}]}, -{"id":63158,"name":"Boots of Delivery","icon":"inv_boots_mail_15v1","type":10,"armorType":3,"stats":[0,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27764,"name":"A Strange Request"}}]}, -{"id":63159,"name":"Parcel Bearer's Breastplate","icon":"inv_chest_plate29v3","type":5,"armorType":4,"stats":[0,0,13,9,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27764,"name":"A Strange Request"}}]}, -{"id":63160,"name":"Boots of Duress","icon":"inv_boots_cloth_35v4","type":10,"armorType":1,"stats":[0,0,9,5,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27771,"name":"Third Sample: Implanted Eggs"}}]}, -{"id":63161,"name":"Vest of Restraint","icon":"inv_chest_leather_28v3","type":5,"armorType":2,"stats":[0,0,13,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27771,"name":"Third Sample: Implanted Eggs"}}]}, -{"id":63162,"name":"Coercive Pauldrons","icon":"inv_shoulder_148v1","type":3,"armorType":3,"stats":[0,0,9,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":27771,"name":"Third Sample: Implanted Eggs"}}]}, -{"id":63163,"name":"Strong Arm Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":4,"stats":[7,0,13,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":91,"weaponDamageMax":138,"weaponSpeed":3.3,"ilvl":45,"quality":2,"sources":[{"quest":{"id":27771,"name":"Third Sample: Implanted Eggs"}}]}, -{"id":63164,"name":"Dustwind Cowl","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,13,7,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27824,"name":"The Good Stuff"}}],"factionRestriction":1}, -{"id":63165,"name":"Dust Bowl Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27824,"name":"The Good Stuff"}}],"factionRestriction":1}, -{"id":63166,"name":"Walloper's Chestpiece","icon":"inv_chest_leather_28","type":5,"armorType":2,"stats":[0,9,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27824,"name":"The Good Stuff"}}],"factionRestriction":1}, -{"id":63167,"name":"Angor Pauldrons","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27824,"name":"The Good Stuff"}}],"factionRestriction":1}, -{"id":63168,"name":"Ironhew Cloak","icon":"inv_misc_cape_22","type":4,"stats":[6,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27824,"name":"The Good Stuff"}}],"factionRestriction":1}, -{"id":63169,"name":"Sunglow Cowl","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,13,7,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27878,"name":"Forcible Acquisition"}}],"factionRestriction":2}, -{"id":63170,"name":"Dust Bowl Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27878,"name":"Forcible Acquisition"}}],"factionRestriction":2}, -{"id":63171,"name":"Dustwind Vest","icon":"inv_chest_leather_28","type":5,"armorType":2,"stats":[0,9,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27878,"name":"Forcible Acquisition"}}],"factionRestriction":2}, -{"id":63172,"name":"Angor Pauldrons","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27878,"name":"Forcible Acquisition"}}],"factionRestriction":2}, -{"id":63173,"name":"Ironhew Cloak","icon":"inv_misc_cape_22","type":4,"stats":[6,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27878,"name":"Forcible Acquisition"}}],"factionRestriction":2}, -{"id":63174,"name":"Watcher's Spear","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":3,"ilvl":46,"quality":2,"sources":[{"quest":{"id":27794,"name":"Return to Blam"}}],"factionRestriction":1}, -{"id":63175,"name":"Hieronymus' Belt","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,9,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27794,"name":"Return to Blam"}}],"factionRestriction":1}, -{"id":63176,"name":"Well Cushioned Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[7,0,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27794,"name":"Return to Blam"}}],"factionRestriction":1}, -{"id":63177,"name":"Watcher's Spear","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":3,"ilvl":46,"quality":2,"sources":[{"quest":{"id":27888,"name":"Return to Blam"}}],"factionRestriction":2}, -{"id":63178,"name":"Hieronymus' Belt","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,9,7,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27888,"name":"Return to Blam"}}],"factionRestriction":2}, -{"id":63179,"name":"Well Cushioned Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[7,0,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27888,"name":"Return to Blam"}}],"factionRestriction":2}, -{"id":63180,"name":"Blam Blam Gun","icon":"inv_weapon_rifle_41","type":14,"rangedWeaponType":3,"stats":[0,2,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":2.8,"ilvl":46,"quality":2,"sources":[{"quest":{"id":27789,"name":"Troggish Troubles"}}]}, -{"id":63181,"name":"Shrug of Disappointment","icon":"inv_shoulder_139v3","type":3,"armorType":2,"stats":[0,0,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27789,"name":"Troggish Troubles"}}]}, -{"id":63182,"name":"Anti-Trogg Shield","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27789,"name":"Troggish Troubles"}}]}, -{"id":63183,"name":"Hooligan's Pantaloons","icon":"inv_pants_cloth_42v4","type":9,"armorType":1,"stats":[0,0,13,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27792,"name":"All's Fair in Love, War, and Archaeology"}}],"factionRestriction":1}, -{"id":63184,"name":"Excavation Bracers","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,4,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27792,"name":"All's Fair in Love, War, and Archaeology"}}],"factionRestriction":1}, -{"id":63185,"name":"Counterfeit Chainmail","icon":"inv_chest_mail_20v1","type":5,"armorType":3,"stats":[0,0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27792,"name":"All's Fair in Love, War, and Archaeology"}}],"factionRestriction":1}, -{"id":63186,"name":"Upstart's Breastplate","icon":"inv_chest_plate29v3","type":5,"armorType":4,"stats":[10,0,13,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27792,"name":"All's Fair in Love, War, and Archaeology"}}],"factionRestriction":1}, -{"id":63187,"name":"Hooligan's Pantaloons","icon":"inv_pants_cloth_42v4","type":9,"armorType":1,"stats":[0,0,13,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27882,"name":"It's Not About History, It's About Power"}}],"factionRestriction":2}, -{"id":63188,"name":"Excavation Bracers","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,4,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27882,"name":"It's Not About History, It's About Power"}}],"factionRestriction":2}, -{"id":63189,"name":"Counterfeit Chainmail","icon":"inv_chest_mail_20v1","type":5,"armorType":3,"stats":[0,0,11,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27882,"name":"It's Not About History, It's About Power"}}],"factionRestriction":2}, -{"id":63190,"name":"Upstart's Breastplate","icon":"inv_chest_plate29v3","type":5,"armorType":4,"stats":[10,0,13,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27882,"name":"It's Not About History, It's About Power"}}],"factionRestriction":2}, -{"id":63191,"name":"Martek's Knife","icon":"inv_weapon_shortblade_11","type":13,"weaponType":2,"handType":2,"stats":[0,4,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":51,"weaponSpeed":1.4,"ilvl":47,"quality":2,"sources":[{"quest":{"id":27715,"name":"The Day that Deathwing Came: What Really Happened"}}]}, -{"id":63192,"name":"Tosselwrench's Shrinker","icon":"inv_weapon_rifle_14","type":12,"stats":[0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27715,"name":"The Day that Deathwing Came: What Really Happened"}}]}, -{"id":63193,"name":"Theldurin's Fist","icon":"inv_weapon_hand_30","type":13,"weaponType":3,"handType":2,"stats":[6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":2.6,"ilvl":47,"quality":2,"sources":[{"quest":{"id":27715,"name":"The Day that Deathwing Came: What Really Happened"}}]}, -{"id":63194,"name":"Rhea's Last Egg","icon":"inv_egg_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27859,"name":"The Egg Lives On"}}]}, -{"id":63195,"name":"Cloak of Passion","icon":"inv_misc_cape_18","type":4,"stats":[0,7,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27833,"name":"Half-Ton Holdouts"}}],"factionRestriction":1}, -{"id":63196,"name":"Holdout Gloves","icon":"inv_gauntlets_115v2","type":7,"armorType":2,"stats":[0,0,10,6,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27833,"name":"Half-Ton Holdouts"}}],"factionRestriction":1}, -{"id":63197,"name":"Dustbelcher Boots","icon":"inv_boots_mail_15v3","type":10,"armorType":3,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27833,"name":"Half-Ton Holdouts"}}],"factionRestriction":1}, -{"id":63198,"name":"Half-Ton Pauldrons","icon":"inv_shoulder_135v1","type":3,"armorType":4,"stats":[7,0,10,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27833,"name":"Half-Ton Holdouts"}}],"factionRestriction":1}, -{"id":63199,"name":"Storm's Bow","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.8,"ilvl":47,"quality":2,"sources":[{"quest":{"id":27833,"name":"Half-Ton Holdouts"}}],"factionRestriction":1}, -{"id":63200,"name":"Gorn's Discarded Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,7,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27880,"name":"Half-Ton Holdouts"}}],"factionRestriction":2}, -{"id":63201,"name":"Holdout Gloves","icon":"inv_gauntlets_115v2","type":7,"armorType":2,"stats":[0,0,10,6,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27880,"name":"Half-Ton Holdouts"}}],"factionRestriction":2}, -{"id":63202,"name":"Dustbelcher Boots","icon":"inv_boots_mail_15v3","type":10,"armorType":3,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27880,"name":"Half-Ton Holdouts"}}],"factionRestriction":2}, -{"id":63203,"name":"Half-Ton Pauldrons","icon":"inv_shoulder_135v1","type":3,"armorType":4,"stats":[7,0,10,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27880,"name":"Half-Ton Holdouts"}}],"factionRestriction":2}, -{"id":63204,"name":"Bow of Kargath","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.8,"ilvl":47,"quality":2,"sources":[{"quest":{"id":27880,"name":"Half-Ton Holdouts"}}],"factionRestriction":2}, -{"id":63205,"name":"Safety Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{"id":27764,"name":"A Strange Request"}}]}, -{"id":63206,"name":"Wrap of Unity","icon":"inv_guild_cloak_alliance_b","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"npcId":4945,"npcName":"Guild Reputation: Honored"}}]}, -{"id":63207,"name":"Wrap of Unity","icon":"inv_guild_cloak_horde_b","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":3,"sources":[{"soldBy":{"npcId":4945,"npcName":"Guild Reputation: Honored"}}]}, -{"id":63208,"name":"Glassweb Spider Fangs","icon":"inv_weapon_shortblade_18","type":14,"rangedWeaponType":5,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.7,"ilvl":47,"quality":2,"sources":[{"quest":{"id":27958,"name":"A Proper Antivenom"}}]}, -{"id":63209,"name":"Glassweb Robes","icon":"inv_chest_cloth_88v3","type":5,"armorType":1,"stats":[0,0,13,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27958,"name":"A Proper Antivenom"}}]}, -{"id":63210,"name":"Snakeoil Helm","icon":"inv_helmet_188","type":1,"armorType":3,"stats":[0,0,13,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27958,"name":"A Proper Antivenom"}}]}, -{"id":63211,"name":"Medical Officer Legguards","icon":"inv_pants_plate_40v2","type":9,"armorType":4,"stats":[0,0,13,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27958,"name":"A Proper Antivenom"}}]}, -{"id":63212,"name":"Ash Feather Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27961,"name":"Out of Place"}}]}, -{"id":63213,"name":"Fuzzy Headcover","icon":"inv_helmet_179v1","type":1,"armorType":2,"stats":[0,13,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27961,"name":"Out of Place"}}]}, -{"id":63214,"name":"Mercy Killing Helm","icon":"inv_helmet_188v3","type":1,"armorType":3,"stats":[0,9,13,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27961,"name":"Out of Place"}}]}, -{"id":63215,"name":"Coalpart's Bracers","icon":"inv_bracer_63v1","type":6,"armorType":4,"stats":[5,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27961,"name":"Out of Place"}}]}, -{"id":63216,"name":"Jack's Lucky Charm","icon":"inv_jewelry_talisman_14","type":2,"stats":[0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27963,"name":"A New Master... But Who?"}}]}, -{"id":63217,"name":"Oilfist Globe","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27963,"name":"A New Master... But Who?"}}]}, -{"id":63218,"name":"Rockhead Helm","icon":"inv_helmet_174v1","type":1,"armorType":4,"stats":[10,0,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":27963,"name":"A New Master... But Who?"}}]}, -{"id":63219,"name":"Mantle of the White Sheep","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,7,10,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27977,"name":"Recon Essentials"}}]}, -{"id":63220,"name":"Essential Pantaloons","icon":"inv_pants_leather_40v2","type":9,"armorType":2,"stats":[0,0,13,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27977,"name":"Recon Essentials"}}]}, -{"id":63221,"name":"Taskmaster's Loop","icon":"inv_belt_99v3","type":8,"armorType":3,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27977,"name":"Recon Essentials"}}]}, -{"id":63222,"name":"Steamsmith Helm","icon":"inv_helmet_182v2","type":1,"armorType":4,"stats":[0,0,9,8,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27977,"name":"Recon Essentials"}}]}, -{"id":63223,"name":"Gretel's Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,0,7,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27976,"name":"Curse These Fat Fingers"}}]}, -{"id":63224,"name":"Heavyhands' Gloves","icon":"inv_gauntlets_115v1","type":7,"armorType":2,"stats":[0,5,10,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27976,"name":"Curse These Fat Fingers"}}]}, -{"id":63225,"name":"Pounding Leggings","icon":"inv_pants_mail_40v3","type":9,"armorType":3,"stats":[0,7,10,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27976,"name":"Curse These Fat Fingers"}}]}, -{"id":63226,"name":"Fat Finger Gloves","icon":"inv_gauntlets_107v1","type":7,"armorType":4,"stats":[6,0,7,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":27976,"name":"Curse These Fat Fingers"}}]}, -{"id":63227,"name":"Dark Iron Gun","icon":"inv_weapon_rifle_40","type":14,"rangedWeaponType":3,"stats":[0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":2.8,"ilvl":49,"quality":2,"sources":[{"quest":{"id":28030,"name":"They Build a Better Bullet"}}]}, -{"id":63228,"name":"Rendan's Signet","icon":"inv_jewelry_ring_81","type":11,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28030,"name":"They Build a Better Bullet"}}]}, -{"id":63229,"name":"K'Vlar Vest","icon":"inv_chest_plate27v1","type":5,"armorType":4,"stats":[8,0,14,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28030,"name":"They Build a Better Bullet"}}]}, -{"id":63230,"name":"Fire-Gizzard Robes","icon":"inv_chest_cloth_88v2","type":5,"armorType":1,"stats":[0,0,14,10,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28032,"name":"The Mysteries of the Fire-Gizzard"}}]}, -{"id":63231,"name":"Lizard Skin Boots","icon":"inv_boots_leather_12v2","type":10,"armorType":2,"stats":[0,0,10,6,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28032,"name":"The Mysteries of the Fire-Gizzard"}}]}, -{"id":63232,"name":"Incendosaur Gloves","icon":"inv_gauntlets_120v3","type":7,"armorType":3,"stats":[0,5,7,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28032,"name":"The Mysteries of the Fire-Gizzard"}}]}, -{"id":63233,"name":"Iron Summit Belt","icon":"inv_belt_86v1","type":8,"armorType":4,"stats":[5,0,7,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28032,"name":"The Mysteries of the Fire-Gizzard"}}]}, -{"id":63234,"name":"Dancer's Belt","icon":"inv_belt_90v1","type":8,"armorType":2,"stats":[0,7,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28052,"name":"Operation: Stir the Cauldron"}}]}, -{"id":63235,"name":"Slag Pit Bracers","icon":"inv_bracer_77","type":6,"armorType":3,"stats":[0,0,8,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28052,"name":"Operation: Stir the Cauldron"}}]}, -{"id":63236,"name":"Mountain-Lord's Legguards","icon":"inv_pants_plate_38v1","type":9,"armorType":4,"stats":[8,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28052,"name":"Operation: Stir the Cauldron"}}]}, -{"id":63237,"name":"Sootsmoke Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,3,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.6,"ilvl":49,"quality":2,"sources":[{"quest":{"id":28056,"name":"Rise, Obsidion"}}]}, -{"id":63238,"name":"Suntara Spaulders","icon":"inv_shoulder_139v1","type":3,"armorType":2,"stats":[0,7,10,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28056,"name":"Rise, Obsidion"}}]}, -{"id":63239,"name":"Belt of Turning Tides","icon":"inv_belt_99","type":8,"armorType":3,"stats":[0,0,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28056,"name":"Rise, Obsidion"}}]}, -{"id":63240,"name":"Dark Iron Axe","icon":"inv_axe_117","type":13,"weaponType":1,"handType":4,"stats":[9,0,14,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":3.3,"ilvl":49,"quality":2,"sources":[{"quest":{"id":28056,"name":"Rise, Obsidion"}}]}, -{"id":63241,"name":"Very Soft Pillow","icon":"inv_fabric_purple_01","type":12,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2}, -{"id":63242,"name":"Amulet of the Thorium Brotherhood","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,7,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28064,"name":"Welcome to the Brotherhood"}}]}, -{"id":63243,"name":"Hammer of the Thorium Brotherhood","icon":"inv_hammer_12","type":13,"weaponType":4,"handType":1,"stats":[0,0,8,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.6,"ilvl":50,"quality":3,"sources":[{"quest":{"id":28064,"name":"Welcome to the Brotherhood"}}]}, -{"id":63244,"name":"Pauldrons of the Thorium Brotherhood","icon":"inv_shoulder_145v1","type":3,"armorType":4,"stats":[9,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28064,"name":"Welcome to the Brotherhood"}}]}, -{"id":63245,"name":"Lunk's Special Gear","icon":"inv_misc_gear_02","type":12,"stats":[0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28053,"name":"Lunk Like Your Style"}}]}, -{"id":63344,"name":"Standard Issue Prisoner Shoes","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":63345,"name":"Noble's Robe","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,6,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3}, -{"id":63346,"name":"Wicked Dagger","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":38,"weaponSpeed":1.8,"ilvl":25,"quality":3}, -{"id":63352,"name":"Shroud of Cooperation","icon":"inv_guild_cloak_alliance_a","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"soldBy":{"npcId":4989,"npcName":"A Class Act"}}],"factionRestriction":1}, -{"id":63353,"name":"Shroud of Cooperation","icon":"inv_guild_cloak_horde_a","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":35,"quality":2,"sources":[{"soldBy":{"npcId":4989,"npcName":"A Class Act"}}],"factionRestriction":2}, -{"id":63542,"name":"Twizzlefixxit's Vest","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,11,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25515,"name":"Down in the Deeps"}}],"factionRestriction":1}, -{"id":63543,"name":"Driver's Armbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25515,"name":"Down in the Deeps"}}],"factionRestriction":1}, -{"id":63544,"name":"Wet Suit Leggings","icon":"inv_pants_mail_40v1","type":9,"armorType":3,"stats":[0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25515,"name":"Down in the Deeps"}}],"factionRestriction":1}, -{"id":63545,"name":"Raceway Boots","icon":"inv_boots_plate_19v2","type":10,"armorType":4,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25515,"name":"Down in the Deeps"}}],"factionRestriction":1}, -{"id":63546,"name":"Razzeric's Vest","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,11,5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25516,"name":"Down in the Deeps"}}],"factionRestriction":2}, -{"id":63547,"name":"Driver's Armbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25516,"name":"Down in the Deeps"}}],"factionRestriction":2}, -{"id":63548,"name":"Wet Suit Leggings","icon":"inv_pants_mail_40v1","type":9,"armorType":3,"stats":[0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25516,"name":"Down in the Deeps"}}],"factionRestriction":2}, -{"id":63549,"name":"Raceway Boots","icon":"inv_boots_plate_19v2","type":10,"armorType":4,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25516,"name":"Down in the Deeps"}}],"factionRestriction":2}, -{"id":63550,"name":"Speedbarge Leggings","icon":"inv_pants_cloth_42","type":9,"armorType":1,"stats":[0,0,11,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63551,"name":"Smooching Gloves","icon":"inv_gauntlets_115","type":7,"armorType":2,"stats":[0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63552,"name":"Pirate Sinker's Bracers","icon":"inv_bracer_77v2","type":6,"armorType":3,"stats":[0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63553,"name":"Dignified Pauldrons","icon":"inv_shoulder_135v2","type":3,"armorType":4,"stats":[4,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":1}, -{"id":63554,"name":"Speedbarge Leggings","icon":"inv_pants_cloth_42","type":9,"armorType":1,"stats":[0,0,11,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63555,"name":"Pirate Sinker's Gloves","icon":"inv_gauntlets_115","type":7,"armorType":2,"stats":[0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63556,"name":"Bear Hug Bracers","icon":"inv_bracer_77v2","type":6,"armorType":3,"stats":[0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63557,"name":"Manly Pauldrons","icon":"inv_shoulder_135v2","type":3,"armorType":4,"stats":[4,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{}}],"factionRestriction":2}, -{"id":63558,"name":"Mirage Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,6,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25488,"name":"Two If By Boat"}}],"factionRestriction":1}, -{"id":63559,"name":"Maloof's Spare Boots","icon":"inv_boots_leather_12v2","type":10,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25488,"name":"Two If By Boat"}}],"factionRestriction":1}, -{"id":63560,"name":"Floating Belt","icon":"inv_belt_99v1","type":8,"armorType":3,"stats":[0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25488,"name":"Two If By Boat"}}],"factionRestriction":1}, -{"id":63561,"name":"Bracers of Desperate Need","icon":"inv_bracer_63v2","type":6,"armorType":4,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25488,"name":"Two If By Boat"}}],"factionRestriction":1}, -{"id":63562,"name":"Mirage Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,6,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25489,"name":"Two If By Boat"}}],"factionRestriction":2}, -{"id":63563,"name":"Maloof's Spare Boots","icon":"inv_boots_leather_12v2","type":10,"armorType":2,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25489,"name":"Two If By Boat"}}],"factionRestriction":2}, -{"id":63564,"name":"Floating Belt","icon":"inv_belt_99v1","type":8,"armorType":3,"stats":[0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25489,"name":"Two If By Boat"}}],"factionRestriction":2}, -{"id":63565,"name":"Bracers of Desperate Need","icon":"inv_bracer_63v2","type":6,"armorType":4,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":2,"sources":[{"quest":{"id":25489,"name":"Two If By Boat"}}],"factionRestriction":2}, -{"id":63566,"name":"Suspicious Slippers","icon":"inv_boots_cloth_35","type":10,"armorType":1,"stats":[0,0,8,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25790,"name":"Back to Crazzle"}}],"factionRestriction":1}, -{"id":63567,"name":"Swindler's Vest","icon":"inv_chest_leather_28v2","type":5,"armorType":2,"stats":[0,8,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25790,"name":"Back to Crazzle"}}],"factionRestriction":1}, -{"id":63568,"name":"Belt of the Unfooled","icon":"inv_belt_99v2","type":8,"armorType":3,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25790,"name":"Back to Crazzle"}}],"factionRestriction":1}, -{"id":63569,"name":"Uncompromising Helm","icon":"inv_helmet_182v1","type":1,"armorType":4,"stats":[8,0,11,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25790,"name":"Back to Crazzle"}}],"factionRestriction":1}, -{"id":63570,"name":"Suspicious Slippers","icon":"inv_boots_cloth_35","type":10,"armorType":1,"stats":[0,0,8,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25791,"name":"Back to Riznek"}}],"factionRestriction":2}, -{"id":63571,"name":"Swindler's Vest","icon":"inv_chest_leather_28v2","type":5,"armorType":2,"stats":[0,8,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25791,"name":"Back to Riznek"}}],"factionRestriction":2}, -{"id":63572,"name":"Belt of the Unfooled","icon":"inv_belt_99v2","type":8,"armorType":3,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25791,"name":"Back to Riznek"}}],"factionRestriction":2}, -{"id":63573,"name":"Uncompromising Helm","icon":"inv_helmet_182v1","type":1,"armorType":4,"stats":[8,0,11,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25791,"name":"Back to Riznek"}}],"factionRestriction":2}, -{"id":63574,"name":"Paper Roll Bracers","icon":"inv_bracer_76","type":6,"armorType":1,"stats":[0,0,6,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25588,"name":"A Little Payback"}}],"factionRestriction":1}, -{"id":63575,"name":"Drag Master's Boots","icon":"inv_boots_leather_12","type":10,"armorType":2,"stats":[0,0,8,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25588,"name":"A Little Payback"}}],"factionRestriction":1}, -{"id":63576,"name":"Outhouse Boots","icon":"inv_boots_mail_15v1","type":10,"armorType":3,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25588,"name":"A Little Payback"}}],"factionRestriction":1}, -{"id":63577,"name":"Payback Band","icon":"inv_jewelry_ring_62","type":11,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25588,"name":"A Little Payback"}}],"factionRestriction":1}, -{"id":63578,"name":"Paper Roll Bracers","icon":"inv_bracer_76","type":6,"armorType":1,"stats":[0,0,6,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25589,"name":"A Little Payback"}}],"factionRestriction":2}, -{"id":63579,"name":"Rugfizzle's Boots","icon":"inv_boots_leather_12","type":10,"armorType":2,"stats":[0,0,8,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25589,"name":"A Little Payback"}}],"factionRestriction":2}, -{"id":63580,"name":"Outhouse Boots","icon":"inv_boots_mail_15v1","type":10,"armorType":3,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25589,"name":"A Little Payback"}}],"factionRestriction":2}, -{"id":63581,"name":"Payback Band","icon":"inv_jewelry_ring_62","type":11,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":25589,"name":"A Little Payback"}}],"factionRestriction":2}, -{"id":63582,"name":"Brivelthwerp's Signet","icon":"inv_misc_moodring2","type":11,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":28051,"name":"We All Scream for Ice Cream... and then Die!"}}]}, -{"id":63583,"name":"Belt of Feigned Joy","icon":"inv_belt_90v2","type":8,"armorType":2,"stats":[0,9,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":28051,"name":"We All Scream for Ice Cream... and then Die!"}}]}, -{"id":63584,"name":"Ice Cream Mitts","icon":"inv_gauntlets_120v1","type":7,"armorType":3,"stats":[0,6,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":28051,"name":"We All Scream for Ice Cream... and then Die!"}}]}, -{"id":63585,"name":"Breastplate of Contained Sorrow","icon":"inv_chest_plate29v1","type":5,"armorType":4,"stats":[0,0,11,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":2,"sources":[{"quest":{"id":28051,"name":"We All Scream for Ice Cream... and then Die!"}}]}, -{"id":63586,"name":"Cryocannon","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":2.8,"ilvl":41,"quality":2,"sources":[{"quest":{"id":28051,"name":"We All Scream for Ice Cream... and then Die!"}}]}, -{"id":63587,"name":"Discarded Wedding Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,5,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25704,"name":"The Mad Magus"}}]}, -{"id":63588,"name":"Magus Tirth's Robe","icon":"inv_chest_cloth_88v4","type":5,"armorType":1,"stats":[0,0,11,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25704,"name":"The Mad Magus"}}]}, -{"id":63589,"name":"Holdfast Belt","icon":"inv_belt_90","type":8,"armorType":2,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25704,"name":"The Mad Magus"}}]}, -{"id":63590,"name":"Ghostcaller's Leggings","icon":"inv_pants_mail_40v2","type":9,"armorType":3,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25704,"name":"The Mad Magus"}}]}, -{"id":63591,"name":"Alimony","icon":"inv_sword_16","type":13,"weaponType":9,"handType":2,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":82,"weaponSpeed":2.6,"ilvl":42,"quality":2,"sources":[{"quest":{"id":25704,"name":"The Mad Magus"}}]}, -{"id":63592,"name":"Blood Waders","icon":"inv_boots_cloth_35v4","type":10,"armorType":1,"stats":[0,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27312,"name":"Darkcloud Grimtotem"}}],"factionRestriction":1}, -{"id":63593,"name":"Goddess-Blessed Wristlets","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27312,"name":"Darkcloud Grimtotem"}}],"factionRestriction":1}, -{"id":63594,"name":"Grimtotem Spaulders","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27312,"name":"Darkcloud Grimtotem"}}],"factionRestriction":1}, -{"id":63595,"name":"Amulet of Spilling Blood","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[0,0,7,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27312,"name":"Darkcloud Grimtotem"}}],"factionRestriction":1}, -{"id":63596,"name":"Blood Waders","icon":"inv_boots_cloth_35v4","type":10,"armorType":1,"stats":[0,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27313,"name":"Darkcloud Grimtotem"}}],"factionRestriction":2}, -{"id":63597,"name":"Bracers of Reluctant Violence","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27313,"name":"Darkcloud Grimtotem"}}],"factionRestriction":2}, -{"id":63598,"name":"Pauldrons of the Teachings","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27313,"name":"Darkcloud Grimtotem"}}],"factionRestriction":2}, -{"id":63599,"name":"Reaper's Amulet","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,7,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27313,"name":"Darkcloud Grimtotem"}}],"factionRestriction":2}, -{"id":63600,"name":"Hands of the Chosen","icon":"inv_gauntlets_118v4","type":7,"armorType":1,"stats":[0,0,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27318,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":1}, -{"id":63601,"name":"Darkcloud Mask","icon":"inv_helmet_179","type":1,"armorType":2,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27318,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":1}, -{"id":63602,"name":"Spaulders of the Disciple","icon":"inv_shoulder_148v1","type":3,"armorType":3,"stats":[0,5,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27318,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":1}, -{"id":63603,"name":"Legguards of the Pinnacle","icon":"inv_pants_plate_40v1","type":9,"armorType":4,"stats":[6,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27318,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":1}, -{"id":63604,"name":"Hands of the Chosen","icon":"inv_gauntlets_118v4","type":7,"armorType":1,"stats":[0,0,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27319,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":2}, -{"id":63605,"name":"Darkcloud Mask","icon":"inv_helmet_179","type":1,"armorType":2,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27319,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":2}, -{"id":63606,"name":"Freewind Spaulders","icon":"inv_shoulder_148v1","type":3,"armorType":3,"stats":[0,5,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27319,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":2}, -{"id":63607,"name":"Legguards of the Pinnacle","icon":"inv_pants_plate_40v1","type":9,"armorType":4,"stats":[6,0,11,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":27319,"name":"Grimtotem Chiefs: Elder Stormhoof"}}],"factionRestriction":2}, -{"id":63608,"name":"Shroud of Contempt","icon":"inv_misc_cape_06","type":4,"stats":[0,3,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25762,"name":"The Ancient Brazier"}}]}, -{"id":63609,"name":"Belt of False Promises","icon":"inv_belt_97","type":8,"armorType":1,"stats":[0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25762,"name":"The Ancient Brazier"}}]}, -{"id":63610,"name":"Greaves of the Sacred Flame","icon":"inv_pants_plate_40v1","type":9,"armorType":4,"stats":[0,0,11,6,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25762,"name":"The Ancient Brazier"}}]}, -{"id":63611,"name":"Send-Off Belt","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25825,"name":"Deliver the Goods"}}],"factionRestriction":1}, -{"id":63612,"name":"Speedbarge Bailer","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25825,"name":"Deliver the Goods"}}],"factionRestriction":1}, -{"id":63613,"name":"Fizzle's Vest","icon":"inv_chest_leather_28","type":5,"armorType":2,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25825,"name":"Deliver the Goods"}}],"factionRestriction":1}, -{"id":63614,"name":"Send-Off Belt","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,9,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25826,"name":"Deliver the Goods"}}],"factionRestriction":2}, -{"id":63615,"name":"Speedbarge Bailer","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25826,"name":"Deliver the Goods"}}],"factionRestriction":2}, -{"id":63616,"name":"Pozzik's Vest","icon":"inv_chest_leather_28","type":5,"armorType":2,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25826,"name":"Deliver the Goods"}}],"factionRestriction":2}, -{"id":63617,"name":"Evil Dolly's Cuffs","icon":"inv_bracer_76v4","type":6,"armorType":1,"stats":[0,0,0,7,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25661,"name":"With a Little Help..."}}]}, -{"id":63618,"name":"Lilly's Bandana","icon":"inv_helmet_179v2","type":1,"armorType":2,"stats":[0,6,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25661,"name":"With a Little Help..."}}]}, -{"id":63619,"name":"Fajardo's Bracers","icon":"inv_bracer_77v1","type":6,"armorType":3,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25661,"name":"With a Little Help..."}}]}, -{"id":63620,"name":"Hard Headed Helm","icon":"inv_helmet_174v2","type":1,"armorType":4,"stats":[7,0,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25661,"name":"With a Little Help..."}}]}, -{"id":63621,"name":"Ice Cream Churner","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,8,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":124,"weaponSpeed":3.3,"ilvl":42,"quality":2,"sources":[{"quest":{"id":28048,"name":"That Smart One's Gotta Go"}}]}, -{"id":63622,"name":"Hive Controller Mantle","icon":"inv_shoulder_139","type":3,"armorType":2,"stats":[0,0,9,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":28048,"name":"That Smart One's Gotta Go"}}]}, -{"id":63623,"name":"Really Cold Bracers","icon":"inv_bracer_70v1","type":6,"armorType":4,"stats":[5,0,7,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":28048,"name":"That Smart One's Gotta Go"}}]}, -{"id":63624,"name":"Buoyant Shoulderpads","icon":"inv_shoulder_146","type":3,"armorType":1,"stats":[0,0,9,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25627,"name":"Two-Tusk Takedown"}}],"factionRestriction":1}, -{"id":63625,"name":"Wizzle's Wristbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25627,"name":"Two-Tusk Takedown"}}],"factionRestriction":1}, -{"id":63626,"name":"Den Whomper Boots","icon":"inv_boots_mail_15v2","type":10,"armorType":3,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25627,"name":"Two-Tusk Takedown"}}],"factionRestriction":1}, -{"id":63627,"name":"Drinker's Bracers","icon":"inv_bracer_63v2","type":6,"armorType":4,"stats":[5,0,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25627,"name":"Two-Tusk Takedown"}}],"factionRestriction":1}, -{"id":63628,"name":"Buoyant Shoulderpads","icon":"inv_shoulder_146","type":3,"armorType":1,"stats":[0,0,9,6,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25628,"name":"Two-Tusk Takedown"}}],"factionRestriction":2}, -{"id":63629,"name":"Synge's Wristbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25628,"name":"Two-Tusk Takedown"}}],"factionRestriction":2}, -{"id":63630,"name":"Den Whomper Boots","icon":"inv_boots_mail_15v2","type":10,"armorType":3,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25628,"name":"Two-Tusk Takedown"}}],"factionRestriction":2}, -{"id":63631,"name":"Drinker's Bracers","icon":"inv_bracer_63v2","type":6,"armorType":4,"stats":[5,0,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":42,"quality":2,"sources":[{"quest":{"id":25628,"name":"Two-Tusk Takedown"}}],"factionRestriction":2}, -{"id":63632,"name":"Horn of the Traitor","icon":"inv_misc_monsterhorn_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":25873,"name":"Horn of the Traitor"}}],"factionRestriction":1}, -{"id":63633,"name":"Horn of the Traitor","icon":"inv_misc_monsterhorn_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":25874,"name":"Horn of the Traitor"}}],"factionRestriction":2}, -{"id":63634,"name":"Lasting Peace","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":2.6,"ilvl":43,"quality":2,"sources":[{"quest":{"id":27327,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":1}, -{"id":63635,"name":"Hood of Disgrace","icon":"inv_helmet_186v3","type":1,"armorType":1,"stats":[0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27327,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":1}, -{"id":63636,"name":"Legguards of Disfavor","icon":"inv_pants_plate_38v3","type":9,"armorType":4,"stats":[7,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27327,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":1}, -{"id":63637,"name":"Lasting Peace","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":2.6,"ilvl":43,"quality":2,"sources":[{"quest":{"id":27328,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":2}, -{"id":63638,"name":"Hood of Disgrace","icon":"inv_helmet_186v3","type":1,"armorType":1,"stats":[0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27328,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":2}, -{"id":63639,"name":"Legguards of Disfavor","icon":"inv_pants_plate_38v3","type":9,"armorType":4,"stats":[7,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27328,"name":"Grimtotem Chiefs: The Chief of Chiefs"}}],"factionRestriction":2}, -{"id":63640,"name":"Windsong Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,2,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":119,"weaponSpeed":2.8,"ilvl":43,"quality":2,"sources":[{"quest":{"id":27329,"name":"Invoking the Serpent"}}],"factionRestriction":1}, -{"id":63641,"name":"Mantle of Invocation","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,9,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27329,"name":"Invoking the Serpent"}}],"factionRestriction":1}, -{"id":63642,"name":"Wind Serpent Bracers","icon":"inv_bracer_77v3","type":6,"armorType":3,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27329,"name":"Invoking the Serpent"}}],"factionRestriction":1}, -{"id":63643,"name":"Ring of the Subduer","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[5,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27329,"name":"Invoking the Serpent"}}],"factionRestriction":1}, -{"id":63644,"name":"Windsong Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,2,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":63,"weaponDamageMax":119,"weaponSpeed":2.8,"ilvl":43,"quality":2,"sources":[{"quest":{"id":27330,"name":"Invoking the Serpent"}}],"factionRestriction":2}, -{"id":63645,"name":"Mantle of Invocation","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,9,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27330,"name":"Invoking the Serpent"}}],"factionRestriction":2}, -{"id":63646,"name":"Wind Serpent Bracers","icon":"inv_bracer_77v3","type":6,"armorType":3,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27330,"name":"Invoking the Serpent"}}],"factionRestriction":2}, -{"id":63647,"name":"Ring of the Subduer","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[5,0,7,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":2,"sources":[{"quest":{"id":27330,"name":"Invoking the Serpent"}}],"factionRestriction":2}, -{"id":63648,"name":"Swift Mountain Boots","icon":"inv_boots_leather_12v1","type":10,"armorType":2,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28087,"name":"Death to all Trappers!"}}]}, -{"id":63649,"name":"Trapper's Helm","icon":"inv_helmet_188","type":1,"armorType":3,"stats":[0,9,12,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28087,"name":"Death to all Trappers!"}}]}, -{"id":63650,"name":"Pao'ka's Belt","icon":"inv_belt_99v3","type":8,"armorType":3,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28087,"name":"Death to all Trappers!"}}]}, -{"id":63651,"name":"Trapper Punchers","icon":"inv_gauntlets_107v3","type":7,"armorType":4,"stats":[11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28087,"name":"Death to all Trappers!"}}]}, -{"id":63652,"name":"Prideling Down Leggings","icon":"inv_pants_cloth_42v3","type":9,"armorType":1,"stats":[0,0,12,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28098,"name":"The Twilight Skymaster"}}]}, -{"id":63653,"name":"Heartrazor's Gift","icon":"inv_shoulder_139v3","type":3,"armorType":2,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28098,"name":"The Twilight Skymaster"}}]}, -{"id":63654,"name":"Skymaster's Pants","icon":"inv_pants_mail_40","type":9,"armorType":3,"stats":[0,7,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28098,"name":"The Twilight Skymaster"}}]}, -{"id":63655,"name":"Pridekeeper's Breastplate","icon":"inv_chest_plate27v3","type":5,"armorType":4,"stats":[7,0,12,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":2,"sources":[{"quest":{"id":28098,"name":"The Twilight Skymaster"}}]}, -{"id":63656,"name":"Lakota's Mace","icon":"inv_hammer_03","type":13,"weaponType":4,"handType":2,"stats":[0,4,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":2.6,"ilvl":45,"quality":2,"sources":[{"quest":{"id":28125,"name":"Something to Wear"}}]}, -{"id":63657,"name":"Well Hammered Shield","icon":"inv_shield_15","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28125,"name":"Something to Wear"}}]}, -{"id":63658,"name":"Bloodstained Twilight Belt","icon":"inv_belt_90v3","type":8,"armorType":2,"stats":[0,0,9,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28125,"name":"Something to Wear"}}]}, -{"id":63659,"name":"Starion's Slippers","icon":"inv_boots_cloth_35v4","type":10,"armorType":1,"stats":[0,0,9,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28136,"name":"Behind You!"}}]}, -{"id":63660,"name":"Codemaster's Cuffs","icon":"inv_bracer_67","type":6,"armorType":2,"stats":[0,4,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28136,"name":"Behind You!"}}]}, -{"id":63661,"name":"Fastfuse Gloves","icon":"inv_gauntlets_120v2","type":7,"armorType":3,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28136,"name":"Behind You!"}}]}, -{"id":63662,"name":"Bulwark of Leaders","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[5,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28136,"name":"Behind You!"}}]}, -{"id":63663,"name":"Bracers of Safe Keeping","icon":"inv_bracer_76v4","type":6,"armorType":1,"stats":[0,0,7,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28159,"name":"The Doomstone"}}]}, -{"id":63664,"name":"Withering Mask","icon":"inv_helmet_179v3","type":1,"armorType":2,"stats":[0,0,13,9,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28159,"name":"The Doomstone"}}]}, -{"id":63665,"name":"Dirty Work Greaves","icon":"inv_pants_mail_40v1","type":9,"armorType":3,"stats":[0,0,13,9,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28159,"name":"The Doomstone"}}]}, -{"id":63666,"name":"Dupe's Bracers","icon":"inv_bracer_63","type":6,"armorType":4,"stats":[5,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28159,"name":"The Doomstone"}}]}, -{"id":63667,"name":"Robe of the Thousand Needles","icon":"inv_chest_robe_common_c_01v1","type":5,"armorType":1,"stats":[0,0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63668,"name":"Leggings of the Thousand Needles","icon":"inv_pants_leather_42","type":9,"armorType":2,"stats":[0,0,17,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63669,"name":"Vest of the Thousand Needles","icon":"inv_chest_leather_30v1","type":5,"armorType":2,"stats":[0,12,17,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63670,"name":"Chestguard of the Thousand Needles","icon":"inv_chest_mail_18v1","type":5,"armorType":3,"stats":[0,12,17,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63671,"name":"Pauldrons of the Thousand Needles","icon":"inv_shoulder_144v3","type":3,"armorType":3,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63672,"name":"Helm of the Thousand Needles","icon":"inv_helmet_185","type":1,"armorType":4,"stats":[12,0,17,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28160,"name":"Spread the Word"}}],"factionRestriction":1}, -{"id":63673,"name":"Robe of the Thousand Needles","icon":"inv_chest_robe_common_c_01v1","type":5,"armorType":1,"stats":[0,0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":63674,"name":"Leggings of the Thousand Needles","icon":"inv_pants_leather_42","type":9,"armorType":2,"stats":[0,0,17,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":63675,"name":"Vest of the Thousand Needles","icon":"inv_chest_leather_30v1","type":5,"armorType":2,"stats":[0,12,17,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":63676,"name":"Chestguard of the Thousand Needles","icon":"inv_chest_mail_18v1","type":5,"armorType":3,"stats":[0,12,17,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":63677,"name":"Pauldrons of the Thousand Needles","icon":"inv_shoulder_144v3","type":3,"armorType":3,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":63678,"name":"Helm of the Thousand Needles","icon":"inv_helmet_185","type":1,"armorType":4,"stats":[12,0,17,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":3,"sources":[{"quest":{"id":28161,"name":"Spread the Word"}}],"factionRestriction":2}, -{"id":64460,"name":"Nifflevar Bearded Axe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,36,87,0,0,24,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":312,"weaponDamageMax":580,"weaponSpeed":2.6,"ilvl":226,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":90997}}]}, -{"id":64495,"name":"Whelp Keeper's Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,11,14,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.3,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28172,"name":"Done Nothing Wrong"}}],"factionRestriction":1}, -{"id":64496,"name":"Hatchlings' Protector","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28172,"name":"Done Nothing Wrong"}}],"factionRestriction":1}, -{"id":64497,"name":"Flamestar Amulet","icon":"inv_jewelry_amulet_05","type":2,"stats":[6,0,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28172,"name":"Done Nothing Wrong"}}],"factionRestriction":1}, -{"id":64498,"name":"Whelp Keeper's Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,11,14,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.3,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28417,"name":"Done Nothing Wrong"}}],"factionRestriction":2}, -{"id":64499,"name":"Hatchlings' Protector","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28417,"name":"Done Nothing Wrong"}}],"factionRestriction":2}, -{"id":64500,"name":"Flamestar Amulet","icon":"inv_jewelry_amulet_05","type":2,"stats":[6,0,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28417,"name":"Done Nothing Wrong"}}],"factionRestriction":2}, -{"id":64501,"name":"Sharp Scorpid Barb","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":2,"stats":[0,3,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.4,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28177,"name":"Stocking Up"}}],"factionRestriction":1}, -{"id":64502,"name":"Sharp Scorpid Barb","icon":"inv_weapon_shortblade_27","type":13,"weaponType":2,"handType":2,"stats":[0,3,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":54,"weaponSpeed":1.4,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28419,"name":"Stocking Up"}}],"factionRestriction":2}, -{"id":64503,"name":"Ember Worg Eye","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[5,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28178,"name":"A Future Project"}}],"factionRestriction":1}, -{"id":64504,"name":"Ember Worg Eye","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[5,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28420,"name":"A Future Project"}}],"factionRestriction":2}, -{"id":64505,"name":"Obsidian-Flecked Cowl","icon":"inv_helmet_181v3","type":1,"armorType":1,"stats":[0,0,14,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28179,"name":"Mud Hunter"}}],"factionRestriction":1}, -{"id":64506,"name":"Obsidian-Flecked Cowl","icon":"inv_helmet_181v3","type":1,"armorType":1,"stats":[0,0,14,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28421,"name":"Mud Hunter"}}],"factionRestriction":2}, -{"id":64507,"name":"Vest of Welcome","icon":"inv_chest_leather_29v3","type":5,"armorType":2,"stats":[0,8,14,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28184,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":1}, -{"id":64508,"name":"Black Tooth Helm","icon":"inv_helmet_178v2","type":1,"armorType":3,"stats":[0,10,14,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28184,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":1}, -{"id":64509,"name":"Unburdened Pauldrons","icon":"inv_shoulder_137v3","type":3,"armorType":4,"stats":[0,0,11,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28184,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":1}, -{"id":64510,"name":"Oreknuckle Gun","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":2.8,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28184,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":1}, -{"id":64511,"name":"Vest of Welcome","icon":"inv_chest_leather_29v3","type":5,"armorType":2,"stats":[0,8,14,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28426,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":2}, -{"id":64512,"name":"Black Tooth Helm","icon":"inv_helmet_178v2","type":1,"armorType":3,"stats":[0,10,14,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28426,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":2}, -{"id":64513,"name":"Unburdened Pauldrons","icon":"inv_shoulder_137v3","type":3,"armorType":4,"stats":[0,0,11,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28426,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":2}, -{"id":64514,"name":"Oreknuckle Gun","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":2.8,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28426,"name":"Chiselgrip, the Heart of the Steppes"}}],"factionRestriction":2}, -{"id":64515,"name":"Leggings of the Steppes","icon":"inv_pants_cloth_40v3","type":9,"armorType":1,"stats":[0,0,14,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28253,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":1}, -{"id":64516,"name":"Improvised Breastplate","icon":"inv_chest_mail_17v2","type":5,"armorType":3,"stats":[0,10,14,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28253,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":1}, -{"id":64517,"name":"Helm of Serendipity","icon":"inv_helmet_177v2","type":1,"armorType":4,"stats":[8,0,14,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28253,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":1}, -{"id":64518,"name":"Leggings of the Steppes","icon":"inv_pants_cloth_40v3","type":9,"armorType":1,"stats":[0,0,14,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28436,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":2}, -{"id":64519,"name":"Improvised Breastplate","icon":"inv_chest_mail_17v2","type":5,"armorType":3,"stats":[0,10,14,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28436,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":2}, -{"id":64520,"name":"Helm of Serendipity","icon":"inv_helmet_177v2","type":1,"armorType":4,"stats":[8,0,14,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28436,"name":"Taking the Horn For Ourselves"}}],"factionRestriction":2}, -{"id":64521,"name":"Tutor's Cloak","icon":"inv_misc_cape_05","type":4,"stats":[0,6,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28227,"name":"Golem Training"}}]}, -{"id":64522,"name":"Bracers of Friendly Favors","icon":"inv_bracer_68v3","type":6,"armorType":2,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28227,"name":"Golem Training"}}]}, -{"id":64523,"name":"Combat Training Vest","icon":"inv_chest_mail_17","type":5,"armorType":3,"stats":[0,0,14,8,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28227,"name":"Golem Training"}}]}, -{"id":64524,"name":"Chiselgrip Shield","icon":"inv_shield_64","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28227,"name":"Golem Training"}}]}, -{"id":64525,"name":"Magma Lord Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,8,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28266,"name":"Trial by Magma"}}],"factionRestriction":1}, -{"id":64526,"name":"Poorly Styled Gloves","icon":"inv_gauntlets_110v3","type":7,"armorType":2,"stats":[0,8,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28266,"name":"Trial by Magma"}}],"factionRestriction":1}, -{"id":64527,"name":"Bracers of Gladiatorial Combat","icon":"inv_bracer_66v2","type":6,"armorType":3,"stats":[0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28266,"name":"Trial by Magma"}}],"factionRestriction":1}, -{"id":64528,"name":"Thorg'izog's Band","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[5,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28266,"name":"Trial by Magma"}}],"factionRestriction":1}, -{"id":64529,"name":"Magma Lord Cloak","icon":"inv_misc_cape_18","type":4,"stats":[0,0,8,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28438,"name":"Trial by Magma"}}],"factionRestriction":2}, -{"id":64530,"name":"Poorly Styled Gloves","icon":"inv_gauntlets_110v3","type":7,"armorType":2,"stats":[0,8,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28438,"name":"Trial by Magma"}}],"factionRestriction":2}, -{"id":64531,"name":"Bracers of Gladiatorial Combat","icon":"inv_bracer_66v2","type":6,"armorType":3,"stats":[0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28438,"name":"Trial by Magma"}}],"factionRestriction":2}, -{"id":64532,"name":"Thorg'izog's Band","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[5,0,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28438,"name":"Trial by Magma"}}],"factionRestriction":2}, -{"id":64533,"name":"Stratagem Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,6,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28286,"name":"Enough Damage For One Day"}}],"factionRestriction":1}, -{"id":64534,"name":"Kubit's Dagger","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,6,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28286,"name":"Enough Damage For One Day"}}],"factionRestriction":1}, -{"id":64535,"name":"Belt of Preparation","icon":"inv_belt_91v3","type":8,"armorType":2,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28286,"name":"Enough Damage For One Day"}}],"factionRestriction":1}, -{"id":64536,"name":"Gauntlets of Completion","icon":"inv_gauntlets_109","type":7,"armorType":3,"stats":[0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28286,"name":"Enough Damage For One Day"}}],"factionRestriction":1}, -{"id":64537,"name":"Breastplate of the Mobile Batallion","icon":"inv_chest_plate28v3","type":5,"armorType":4,"stats":[0,0,15,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28286,"name":"Enough Damage For One Day"}}],"factionRestriction":1}, -{"id":64538,"name":"Stratagem Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,6,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28441,"name":"Enough Damage For One Day"}}],"factionRestriction":2}, -{"id":64539,"name":"Kubit's Dagger","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,6,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28441,"name":"Enough Damage For One Day"}}],"factionRestriction":2}, -{"id":64540,"name":"Belt of Preparation","icon":"inv_belt_91v3","type":8,"armorType":2,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28441,"name":"Enough Damage For One Day"}}],"factionRestriction":2}, -{"id":64541,"name":"Blackrock Shaman's Gloves","icon":"inv_gauntlets_109","type":7,"armorType":3,"stats":[0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28441,"name":"Enough Damage For One Day"}}],"factionRestriction":2}, -{"id":64542,"name":"Worn Argent Crusader's Breastplate","icon":"inv_chest_plate28v3","type":5,"armorType":4,"stats":[0,0,15,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28441,"name":"Enough Damage For One Day"}}],"factionRestriction":2}, -{"id":64543,"name":"Pawn's Bracers","icon":"inv_bracer_69v3","type":6,"armorType":1,"stats":[0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28326,"name":"Placing the Pawns"}}],"factionRestriction":1}, -{"id":64544,"name":"Bracers of Vigil","icon":"inv_bracer_68v3","type":6,"armorType":2,"stats":[0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28326,"name":"Placing the Pawns"}}],"factionRestriction":1}, -{"id":64545,"name":"Subversive Steps","icon":"inv_boots_mail_12v2","type":10,"armorType":3,"stats":[0,7,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28326,"name":"Placing the Pawns"}}],"factionRestriction":1}, -{"id":64546,"name":"Breastplate of the Undercover Thorium Brother","icon":"inv_chest_plate28v3","type":5,"armorType":4,"stats":[10,0,15,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28326,"name":"Placing the Pawns"}}],"factionRestriction":1}, -{"id":64547,"name":"Pawn's Bracers","icon":"inv_bracer_69v3","type":6,"armorType":1,"stats":[0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28449,"name":"Placing the Pawns"}}],"factionRestriction":2}, -{"id":64548,"name":"Flame Crest Bracers","icon":"inv_bracer_68v3","type":6,"armorType":2,"stats":[0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28449,"name":"Placing the Pawns"}}],"factionRestriction":2}, -{"id":64549,"name":"Subversive Steps","icon":"inv_boots_mail_12v2","type":10,"armorType":3,"stats":[0,7,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28449,"name":"Placing the Pawns"}}],"factionRestriction":2}, -{"id":64550,"name":"Breastplate of the Undercover Thorium Brother","icon":"inv_chest_plate28v3","type":5,"armorType":4,"stats":[10,0,15,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28449,"name":"Placing the Pawns"}}],"factionRestriction":2}, -{"id":64551,"name":"Winky's Star","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.7,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28415,"name":"SEVEN! YUP!"}}],"factionRestriction":1}, -{"id":64552,"name":"Belly Rubbers","icon":"inv_gauntlets_111v3","type":7,"armorType":1,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28415,"name":"SEVEN! YUP!"}}],"factionRestriction":1}, -{"id":64553,"name":"Flamefly Spaulders","icon":"inv_shoulder_140v3","type":3,"armorType":2,"stats":[0,0,11,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28415,"name":"SEVEN! YUP!"}}],"factionRestriction":1}, -{"id":64554,"name":"Gor'Tesh's Boots","icon":"inv_boots_mail_12","type":10,"armorType":3,"stats":[0,0,11,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28415,"name":"SEVEN! YUP!"}}],"factionRestriction":1}, -{"id":64555,"name":"Kibler's Fetch Toy","icon":"inv_weapon_shortblade_10","type":14,"rangedWeaponType":5,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.7,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28491,"name":"Not Fireflies, Flameflies"}}],"factionRestriction":2}, -{"id":64556,"name":"Petting Gloves","icon":"inv_gauntlets_111v3","type":7,"armorType":1,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28491,"name":"Not Fireflies, Flameflies"}}],"factionRestriction":2}, -{"id":64557,"name":"Flamefly Spaulders","icon":"inv_shoulder_140v3","type":3,"armorType":2,"stats":[0,0,11,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28491,"name":"Not Fireflies, Flameflies"}}],"factionRestriction":2}, -{"id":64558,"name":"Lava Boots","icon":"inv_boots_mail_12","type":10,"armorType":3,"stats":[0,0,11,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28491,"name":"Not Fireflies, Flameflies"}}],"factionRestriction":2}, -{"id":64559,"name":"Glassy Band","icon":"inv_jewelry_ring_05","type":11,"stats":[0,5,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28327,"name":"Locked and Loaded"}}],"factionRestriction":1}, -{"id":64560,"name":"Faux Warlock Slippers","icon":"inv_boots_cloth_34v3","type":10,"armorType":1,"stats":[0,0,11,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28327,"name":"Locked and Loaded"}}],"factionRestriction":1}, -{"id":64561,"name":"Sly Slider Gloves","icon":"inv_gauntlets_110v3","type":7,"armorType":2,"stats":[0,0,11,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28327,"name":"Locked and Loaded"}}],"factionRestriction":1}, -{"id":64562,"name":"Mischievous Spaulders","icon":"inv_shoulder_138","type":3,"armorType":3,"stats":[0,0,11,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28327,"name":"Locked and Loaded"}}],"factionRestriction":1}, -{"id":64563,"name":"Bracers of Misbehavior","icon":"inv_bracer_65v2","type":6,"armorType":4,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28327,"name":"Locked and Loaded"}}],"factionRestriction":1}, -{"id":64564,"name":"Glassy Band","icon":"inv_jewelry_ring_05","type":11,"stats":[0,5,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28453,"name":"Locked and Loaded"}}],"factionRestriction":2}, -{"id":64565,"name":"Faux Warlock Slippers","icon":"inv_boots_cloth_34v3","type":10,"armorType":1,"stats":[0,0,11,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28453,"name":"Locked and Loaded"}}],"factionRestriction":2}, -{"id":64566,"name":"Sly Slider Gloves","icon":"inv_gauntlets_110v3","type":7,"armorType":2,"stats":[0,0,11,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28453,"name":"Locked and Loaded"}}],"factionRestriction":2}, -{"id":64567,"name":"Mischievous Spaulders","icon":"inv_shoulder_138","type":3,"armorType":3,"stats":[0,0,11,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28453,"name":"Locked and Loaded"}}],"factionRestriction":2}, -{"id":64568,"name":"Bracers of Misbehavior","icon":"inv_bracer_65v2","type":6,"armorType":4,"stats":[6,0,8,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28453,"name":"Locked and Loaded"}}],"factionRestriction":2}, -{"id":64569,"name":"Obsidian-Flecked Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64570,"name":"Cracked Orb of Dominion","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64571,"name":"Xi'lun's Signet","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64572,"name":"Ember Worg Boots","icon":"inv_boots_leather_14v1","type":10,"armorType":2,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64573,"name":"Razor-Sharp Scorpid Belt","icon":"inv_belt_95v1","type":8,"armorType":3,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64574,"name":"Golem-Smasher's Grips","icon":"inv_gauntlets_117v3","type":7,"armorType":4,"stats":[10,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28322,"name":"The Spoils of War"}}],"factionRestriction":1}, -{"id":64575,"name":"Obsidian-Flecked Cape","icon":"inv_misc_cape_02","type":4,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64576,"name":"Cracked Orb of Dominion","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64577,"name":"Xi'lun's Signet","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64578,"name":"Ember Worg Boots","icon":"inv_boots_leather_14v1","type":10,"armorType":2,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64579,"name":"Razor-Sharp Scorpid Belt","icon":"inv_belt_95v1","type":8,"armorType":3,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64580,"name":"Golem-Smasher's Grips","icon":"inv_gauntlets_117v3","type":7,"armorType":4,"stats":[10,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":3,"sources":[{"quest":{"id":28456,"name":"The Spoils of War"}}],"factionRestriction":2}, -{"id":64588,"name":"Beach Party Thong","icon":"inv_belt_92v3","type":8,"armorType":1,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27592,"name":"Drinks on the Rocks"}}]}, -{"id":64589,"name":"Bogpaddle Leggings","icon":"inv_pants_leather_41v3","type":9,"armorType":2,"stats":[0,8,15,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27536,"name":"Mostly Harmless"}}]}, -{"id":64590,"name":"Crazy Cap","icon":"inv_helmet_181v3","type":1,"armorType":1,"stats":[0,0,15,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27599,"name":"Can't Take It With Them"}}]}, -{"id":64591,"name":"Almost New Shoulderpads","icon":"inv_shoulder_141v3","type":3,"armorType":1,"stats":[0,0,11,7,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27600,"name":"In With a Bang"}}]}, -{"id":64592,"name":"Baba's Leg Warmers","icon":"inv_pants_cloth_40v2","type":9,"armorType":1,"stats":[0,0,15,8,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":27757,"name":"The Darkest Depths"}}]}, -{"id":64593,"name":"Helm of the Gatherer","icon":"inv_helmet_180v1","type":1,"armorType":2,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27822,"name":"Lumbering Oafs"}}],"factionRestriction":1}, -{"id":64594,"name":"Ogre Tapper","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[0,5,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":2.6,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27795,"name":"Tides of Darkness"}}],"factionRestriction":1}, -{"id":64595,"name":"Robes of the Honorable","icon":"inv_chest_cloth_87v2","type":5,"armorType":1,"stats":[0,0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27849,"name":"Assault on Stonard"}}],"factionRestriction":1}, -{"id":64596,"name":"Dream Pendant","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,11,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"sources":[{"quest":{"id":27914,"name":"Blessing of the Green Dragonflight"}}]}, -{"id":64597,"name":"Light's Embrace","icon":"inv_offhand_outlandraid_03blue","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":24913,"name":"Remember the Light"}}],"factionRestriction":1}, -{"id":64598,"name":"Promotional Cap","icon":"inv_helmet_180v3","type":1,"armorType":2,"stats":[0,0,15,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27592,"name":"Drinks on the Rocks"}}]}, -{"id":64599,"name":"Sloppy Spaulders","icon":"inv_shoulder_138v2","type":3,"armorType":3,"stats":[0,9,11,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27536,"name":"Mostly Harmless"}}]}, -{"id":64600,"name":"Looter's Shoulderguards","icon":"inv_shoulder_140v3","type":3,"armorType":2,"stats":[0,6,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27599,"name":"Can't Take It With Them"}}]}, -{"id":64601,"name":"Expensive Tunic","icon":"inv_chest_leather_29v3","type":5,"armorType":2,"stats":[0,0,15,7,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27600,"name":"In With a Bang"}}]}, -{"id":64602,"name":"Frenzy Call Vest","icon":"inv_chest_leather_29v1","type":5,"armorType":2,"stats":[0,11,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":27757,"name":"The Darkest Depths"}}]}, -{"id":64603,"name":"Merciless Breastplate","icon":"inv_chest_mail_17v3","type":5,"armorType":3,"stats":[0,9,15,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27822,"name":"Lumbering Oafs"}}],"factionRestriction":1}, -{"id":64604,"name":"Sword of Marshtide Watch","icon":"inv_sword_159","type":13,"weaponType":9,"handType":4,"stats":[12,0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":166,"weaponSpeed":3.3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27795,"name":"Tides of Darkness"}}],"factionRestriction":1}, -{"id":64605,"name":"Leggings of the Final Assault","icon":"inv_pants_leather_41v2","type":9,"armorType":2,"stats":[0,0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27849,"name":"Assault on Stonard"}}],"factionRestriction":1}, -{"id":64606,"name":"Dream Amulet","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,8,11,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"sources":[{"quest":{"id":27914,"name":"Blessing of the Green Dragonflight"}}]}, -{"id":64607,"name":"Groovey Legguards","icon":"inv_pants_mail_37","type":9,"armorType":3,"stats":[0,0,15,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27592,"name":"Drinks on the Rocks"}}]}, -{"id":64608,"name":"Armed Gauntlets","icon":"inv_gauntlets_108v3","type":7,"armorType":4,"stats":[6,0,11,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27536,"name":"Mostly Harmless"}}]}, -{"id":64609,"name":"Tragic Legguards","icon":"inv_pants_mail_37v2","type":9,"armorType":3,"stats":[0,11,15,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27599,"name":"Can't Take It With Them"}}]}, -{"id":64610,"name":"Imported Helmet","icon":"inv_helmet_178","type":1,"armorType":3,"stats":[0,0,15,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27600,"name":"In With a Bang"}}]}, -{"id":64611,"name":"Swamp Skull Cap","icon":"inv_helmet_178v3","type":1,"armorType":3,"stats":[0,11,15,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":27757,"name":"The Darkest Depths"}}]}, -{"id":64612,"name":"Balanced Pauldrons","icon":"inv_shoulder_137","type":3,"armorType":4,"stats":[8,0,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27822,"name":"Lumbering Oafs"}}],"factionRestriction":1}, -{"id":64613,"name":"Ogre Mage Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":166,"weaponSpeed":3.3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27795,"name":"Tides of Darkness"}}],"factionRestriction":1}, -{"id":64614,"name":"Chestguard of Bravery","icon":"inv_chest_mail_17v1","type":5,"armorType":3,"stats":[0,0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27849,"name":"Assault on Stonard"}}],"factionRestriction":1}, -{"id":64615,"name":"Dream Medallion","icon":"inv_jewelry_amulet_03","type":2,"stats":[8,0,11,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"sources":[{"quest":{"id":27914,"name":"Blessing of the Green Dragonflight"}}]}, -{"id":64616,"name":"Brand-Name Breastplate","icon":"inv_chest_plate28v2","type":5,"armorType":4,"stats":[10,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27592,"name":"Drinks on the Rocks"}}]}, -{"id":64617,"name":"Larry's Boots","icon":"inv_boots_plate_20v2","type":10,"armorType":4,"stats":[8,0,11,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27599,"name":"Can't Take It With Them"}}]}, -{"id":64618,"name":"High-Grade Greaves","icon":"inv_pants_plate_39v2","type":9,"armorType":4,"stats":[8,0,15,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":27600,"name":"In With a Bang"}}]}, -{"id":64619,"name":"Sinister Belt","icon":"inv_belt_88v2","type":8,"armorType":4,"stats":[9,0,11,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":27757,"name":"The Darkest Depths"}}]}, -{"id":64620,"name":"Bloodmire Crossbow","icon":"inv_weapon_crossbow_06","type":14,"rangedWeaponType":2,"stats":[0,3,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":2.8,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27795,"name":"Tides of Darkness"}}],"factionRestriction":1}, -{"id":64621,"name":"Blueheart's Helm","icon":"inv_helmet_177","type":1,"armorType":4,"stats":[9,0,15,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27849,"name":"Assault on Stonard"}}],"factionRestriction":1}, -{"id":64622,"name":"Silversnap Bottle Opener","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[0,5,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":2.6,"ilvl":52,"quality":2,"sources":[{"quest":{"id":27592,"name":"Drinks on the Rocks"}}]}, -{"id":64623,"name":"Surgical Striker","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,10,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27849,"name":"Assault on Stonard"}}],"factionRestriction":1}, -{"id":64624,"name":"Helm of the Gatherer","icon":"inv_helmet_180v1","type":1,"armorType":2,"stats":[0,10,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27853,"name":"Lumbering Oafs"}}],"factionRestriction":2}, -{"id":64625,"name":"Knight Tapper","icon":"inv_hammer_07","type":13,"weaponType":4,"handType":2,"stats":[0,5,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":2.6,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27854,"name":"Tides of Darkness"}}],"factionRestriction":2}, -{"id":64626,"name":"Robes of the Honorable","icon":"inv_chest_cloth_87v2","type":5,"armorType":1,"stats":[0,0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27857,"name":"We're Under Attack!"}}],"factionRestriction":2}, -{"id":64627,"name":"Dying Breath","icon":"inv_misc_volatileair","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":27911,"name":"With Dying Breath"}}],"factionRestriction":2}, -{"id":64628,"name":"Merciless Breastplate","icon":"inv_chest_mail_17v3","type":5,"armorType":3,"stats":[0,9,15,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27853,"name":"Lumbering Oafs"}}],"factionRestriction":2}, -{"id":64629,"name":"Greataxe of Stonard","icon":"inv_axe_20","type":13,"weaponType":1,"handType":4,"stats":[12,0,12,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":166,"weaponSpeed":3.3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27854,"name":"Tides of Darkness"}}],"factionRestriction":2}, -{"id":64630,"name":"Leggings of the Final Stand","icon":"inv_pants_leather_41v2","type":9,"armorType":2,"stats":[0,0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27857,"name":"We're Under Attack!"}}],"factionRestriction":2}, -{"id":64631,"name":"Balanced Pauldrons","icon":"inv_shoulder_137","type":3,"armorType":4,"stats":[8,0,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27853,"name":"Lumbering Oafs"}}],"factionRestriction":2}, -{"id":64632,"name":"Ogre Mage Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,15,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":110,"weaponDamageMax":166,"weaponSpeed":3.3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27854,"name":"Tides of Darkness"}}],"factionRestriction":2}, -{"id":64633,"name":"Chestguard of Bravery","icon":"inv_chest_mail_17v1","type":5,"armorType":3,"stats":[0,0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27857,"name":"We're Under Attack!"}}],"factionRestriction":2}, -{"id":64634,"name":"Bloodmire Crossbow","icon":"inv_weapon_crossbow_06","type":14,"rangedWeaponType":2,"stats":[0,3,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":2.8,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27854,"name":"Tides of Darkness"}}],"factionRestriction":2}, -{"id":64635,"name":"Ruag's Helm","icon":"inv_helmet_177","type":1,"armorType":4,"stats":[9,0,15,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":27857,"name":"We're Under Attack!"}}],"factionRestriction":2}, -{"id":64636,"name":"Defender's Thrust","icon":"inv_spear_07","type":13,"weaponType":6,"handType":4,"stats":[0,10,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":88,"weaponDamageMax":164,"weaponSpeed":3,"ilvl":54,"quality":2,"sources":[{"quest":{"id":27857,"name":"We're Under Attack!"}}],"factionRestriction":2}, -{"id":64643,"name":"Queen Azshara's Dressing Gown","icon":"trade_archaeology_queenazshara-dressinggown","type":5,"armorType":1,"stats":[0,0,27,41,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":90616}}]}, -{"id":64644,"name":"Headdress of the First Shaman","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":3,"stats":[0,39,21,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":105,"quality":4,"sources":[{"crafted":{"profession":12,"spellId":90843}}]}, -{"id":64886,"name":"Shroud of Darnassus","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50305,"npcName":"Moon Priestess Lasara","zoneId":1657}}],"factionRestriction":1}, -{"id":64887,"name":"Cape of Darnassus","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50305,"npcName":"Moon Priestess Lasara","zoneId":1657}}],"factionRestriction":1}, -{"id":64888,"name":"Mantle of Darnassus","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50305,"npcName":"Moon Priestess Lasara","zoneId":1657}}],"factionRestriction":1}, -{"id":64889,"name":"Mantle of Exodar","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50306,"npcName":"Kadu","zoneId":3557}}],"factionRestriction":1}, -{"id":64890,"name":"Cape of Exodar","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50306,"npcName":"Kadu","zoneId":3557}}],"factionRestriction":1}, -{"id":64891,"name":"Shroud of Exodar","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50306,"npcName":"Kadu","zoneId":3557}}],"factionRestriction":1}, -{"id":64892,"name":"Mantle of Gilneas","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50307,"npcName":"Lord Candren","zoneId":1657}}],"factionRestriction":1}, -{"id":64893,"name":"Cape of Gilneas","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50307,"npcName":"Lord Candren","zoneId":1657}}],"factionRestriction":1}, -{"id":64894,"name":"Shroud of Gilneas","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50307,"npcName":"Lord Candren","zoneId":1657}}],"factionRestriction":1}, -{"id":64895,"name":"Mantle of Gnomeregan","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50308,"npcName":"Master Tinker Trini","zoneId":1537}}],"factionRestriction":1}, -{"id":64896,"name":"Cape of Gnomeregan","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50308,"npcName":"Master Tinker Trini","zoneId":1537}}],"factionRestriction":1}, -{"id":64897,"name":"Shroud of Gnomeregan","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50308,"npcName":"Master Tinker Trini","zoneId":1537}}],"factionRestriction":1}, -{"id":64898,"name":"Shroud of Ironforge","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50309,"npcName":"Captain Stonehelm","zoneId":1537}}],"factionRestriction":1}, -{"id":64899,"name":"Cape of Ironforge","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50309,"npcName":"Captain Stonehelm","zoneId":1537}}],"factionRestriction":1}, -{"id":64900,"name":"Mantle of Ironforge","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50309,"npcName":"Captain Stonehelm","zoneId":1537}}],"factionRestriction":1}, -{"id":64901,"name":"Mantle of Stormwind","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":49877,"npcName":"Captain Lancy Revshon","zoneId":1519}}],"factionRestriction":1}, -{"id":64902,"name":"Cape of Stormwind","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":49877,"npcName":"Captain Lancy Revshon","zoneId":1519}}],"factionRestriction":1}, -{"id":64903,"name":"Shroud of Stormwind","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":49877,"npcName":"Captain Lancy Revshon","zoneId":1519}}],"factionRestriction":1}, -{"id":64905,"name":"Bilgewater Shroud","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50323,"npcName":"Frizzo Villamar","zoneId":1637}}],"factionRestriction":2}, -{"id":64906,"name":"Bilgewater Cape","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50323,"npcName":"Frizzo Villamar","zoneId":1637}}],"factionRestriction":2}, -{"id":64907,"name":"Bilgewater Mantle","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50323,"npcName":"Frizzo Villamar","zoneId":1637}}],"factionRestriction":2}, -{"id":64908,"name":"Shroud of Orgrimmar","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50488,"npcName":"Stone Guard Nargol","zoneId":1637}}],"factionRestriction":2}, -{"id":64909,"name":"Cape of Orgrimmar","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50488,"npcName":"Stone Guard Nargol","zoneId":1637}}],"factionRestriction":2}, -{"id":64910,"name":"Mantle of Orgrimmar","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50488,"npcName":"Stone Guard Nargol","zoneId":1637}}],"factionRestriction":2}, -{"id":64911,"name":"Darkspear Mantle","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50477,"npcName":"Champion Uru'zin","zoneId":1637}}],"factionRestriction":2}, -{"id":64912,"name":"Darkspear Cape","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50477,"npcName":"Champion Uru'zin","zoneId":1637}}],"factionRestriction":2}, -{"id":64913,"name":"Darkspear Shroud","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50477,"npcName":"Champion Uru'zin","zoneId":1637}}],"factionRestriction":2}, -{"id":64914,"name":"Shroud of Silvermoon","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50484,"npcName":"Magistrix Nizara","zoneId":3430}}],"factionRestriction":2}, -{"id":64915,"name":"Cape of Silvermoon","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50484,"npcName":"Magistrix Nizara","zoneId":3430}}],"factionRestriction":2}, -{"id":64916,"name":"Mantle of Silvermoon","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50484,"npcName":"Magistrix Nizara","zoneId":3430}}],"factionRestriction":2}, -{"id":64917,"name":"Mantle of Thunder Bluff","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50483,"npcName":"Brave Tuho","zoneId":1638}}],"factionRestriction":2}, -{"id":64918,"name":"Cape of Thunder Bluff","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50483,"npcName":"Brave Tuho","zoneId":1638}}],"factionRestriction":2}, -{"id":64919,"name":"Shroud of Thunder Bluff","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50483,"npcName":"Brave Tuho","zoneId":1638}}],"factionRestriction":2}, -{"id":64920,"name":"Shroud of Undercity","icon":"inv_misc_cape_17","type":4,"stats":[0,9,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50304,"npcName":"Captain Donald Adams","zoneId":1497}}],"factionRestriction":2}, -{"id":64921,"name":"Cape of Undercity","icon":"inv_misc_cape_18","type":4,"stats":[9,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50304,"npcName":"Captain Donald Adams","zoneId":1497}}],"factionRestriction":2}, -{"id":64922,"name":"Mantle of Undercity","icon":"inv_misc_cape_16","type":4,"stats":[0,0,6,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"soldBy":{"npcId":50304,"npcName":"Captain Donald Adams","zoneId":1497}}],"factionRestriction":2}, -{"id":65275,"name":"Angerclaw Leggings","icon":"inv_pants_leather_40","type":9,"armorType":2,"stats":[0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28148,"name":"Culling the Corrupted"}}]}, -{"id":65276,"name":"Gloves of Constellas","icon":"inv_gauntlets_115v3","type":7,"armorType":2,"stats":[0,0,9,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28049,"name":"See the Invisible"}}]}, -{"id":65277,"name":"Delaris' Gloves","icon":"inv_gauntlets_118v4","type":7,"armorType":1,"stats":[0,0,9,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28113,"name":"Break the Unbreakable"}}]}, -{"id":65278,"name":"Gold Pot Gloves","icon":"inv_gauntlets_120v1","type":7,"armorType":3,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28288,"name":"Open Their Eyes"}}]}, -{"id":65279,"name":"Grazle's Sandals","icon":"inv_boots_leather_12","type":10,"armorType":2,"stats":[0,5,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27995,"name":"Dance for Ruumbo!"}}]}, -{"id":65280,"name":"Shadow Hold Mace","icon":"inv_mace_04","type":13,"weaponType":4,"handType":1,"stats":[0,0,5,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":30,"weaponDamageMax":57,"weaponSpeed":1.6,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28128,"name":"The Inner Circle"}}]}, -{"id":65281,"name":"Belt of the Lost Barrow","icon":"inv_belt_90","type":8,"armorType":2,"stats":[0,5,9,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28126,"name":"Dousing the Flames of Protection"}}]}, -{"id":65282,"name":"Cleansed Shadow Council Belt","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,9,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28155,"name":"Lord Banehollow"}}]}, -{"id":65283,"name":"Flowery Mantle","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,10,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":28213,"name":"Hazzard Disposal"}}]}, -{"id":65284,"name":"Imposter's Mask","icon":"inv_helmet_179v1","type":1,"armorType":2,"stats":[0,10,13,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28257,"name":"The Fall of Tichondrius"}}]}, -{"id":65285,"name":"Selura's Cloak","icon":"inv_misc_cape_21","type":4,"stats":[0,8,10,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":28264,"name":"Navarax's Gambit"}}]}, -{"id":65286,"name":"Ancient Seed Casing","icon":"inv_misc_food_45","type":12,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28220,"name":"Seeking Soil"}}]}, -{"id":65287,"name":"Gifted Bough","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":2,"stats":[0,3,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":2.6,"ilvl":48,"quality":2,"sources":[{"quest":{"id":28228,"name":"Rejoining the Forest"}}]}, -{"id":65288,"name":"Shadow Curse Hood","icon":"inv_helmet_186v2","type":1,"armorType":1,"stats":[0,0,13,9,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28359,"name":"The Core of Kroshius"}}]}, -{"id":65289,"name":"Floral Pantaloons","icon":"inv_pants_cloth_42v3","type":9,"armorType":1,"stats":[0,0,13,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28374,"name":"Weeding the Lawn"}}]}, -{"id":65290,"name":"Packrunner's Spaulders","icon":"inv_shoulder_139v1","type":3,"armorType":2,"stats":[0,6,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28382,"name":"Enemy at our Roots"}}],"factionRestriction":1}, -{"id":65291,"name":"Oilfoot Slippers","icon":"inv_boots_cloth_35v2","type":10,"armorType":1,"stats":[0,0,10,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28386,"name":"Borrowed Bombs"}}],"factionRestriction":1}, -{"id":65292,"name":"Fists of the Pack","icon":"inv_gauntlets_117v2","type":7,"armorType":4,"stats":[9,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28389,"name":"Report to the Denmother"}}],"factionRestriction":1}, -{"id":65293,"name":"Leggings of Mischief","icon":"inv_pants_cloth_42v2","type":9,"armorType":1,"stats":[0,0,14,9,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28364,"name":"The Chieftain's Key"}}]}, -{"id":65294,"name":"Timbermaw Bracers","icon":"inv_bracer_76v2","type":6,"armorType":1,"stats":[0,0,8,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28366,"name":"Disarming Bears"}}]}, -{"id":65295,"name":"Felpaw Boots","icon":"inv_boots_mail_15v2","type":10,"armorType":3,"stats":[0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28148,"name":"Culling the Corrupted"}}]}, -{"id":65296,"name":"Oozing Vest","icon":"inv_chest_mail_20v1","type":5,"armorType":3,"stats":[0,0,13,9,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28049,"name":"See the Invisible"}}]}, -{"id":65297,"name":"Glovelettes of Opening","icon":"inv_gauntlets_115","type":7,"armorType":2,"stats":[0,7,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28113,"name":"Break the Unbreakable"}}]}, -{"id":65298,"name":"Cheerful Shoulders","icon":"inv_shoulder_135","type":3,"armorType":4,"stats":[5,0,9,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28288,"name":"Open Their Eyes"}}]}, -{"id":65299,"name":"Allen's Abandoned Belt","icon":"inv_belt_99v2","type":8,"armorType":3,"stats":[0,5,9,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27995,"name":"Dance for Ruumbo!"}}]}, -{"id":65300,"name":"Moonbow","icon":"inv_weapon_bow_07","type":14,"rangedWeaponType":1,"stats":[3,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":2.8,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28128,"name":"The Inner Circle"}}]}, -{"id":65301,"name":"Jade Green Spaulders","icon":"inv_shoulder_148v2","type":3,"armorType":3,"stats":[0,7,9,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28126,"name":"Dousing the Flames of Protection"}}]}, -{"id":65302,"name":"Farlus' Staff","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,7,13,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28155,"name":"Lord Banehollow"}}]}, -{"id":65303,"name":"Leafsong Vest","icon":"inv_chest_leather_28v2","type":5,"armorType":2,"stats":[0,0,13,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":28213,"name":"Hazzard Disposal"}}]}, -{"id":65304,"name":"Sindweller's Armguards","icon":"inv_bracer_77v3","type":6,"armorType":3,"stats":[0,6,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28257,"name":"The Fall of Tichondrius"}}]}, -{"id":65305,"name":"Demon Heart Pendant","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,10,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":28264,"name":"Navarax's Gambit"}}]}, -{"id":65306,"name":"Amulet of Living Wood","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,7,4,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28228,"name":"Rejoining the Forest"}}]}, -{"id":65307,"name":"Whisperwind Armbands","icon":"inv_bracer_67v2","type":6,"armorType":2,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28359,"name":"The Core of Kroshius"}}]}, -{"id":65308,"name":"Puregrove Spaulders","icon":"inv_shoulder_139v2","type":3,"armorType":2,"stats":[0,0,10,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28374,"name":"Weeding the Lawn"}}]}, -{"id":65309,"name":"Deaf Ear Helm","icon":"inv_helmet_188v3","type":1,"armorType":3,"stats":[0,9,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28382,"name":"Enemy at our Roots"}}],"factionRestriction":1}, -{"id":65310,"name":"Alton's Leggings","icon":"inv_pants_leather_40v1","type":9,"armorType":2,"stats":[0,9,14,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28386,"name":"Borrowed Bombs"}}],"factionRestriction":1}, -{"id":65311,"name":"Denmother's Cloak","icon":"inv_misc_cape_20","type":4,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28389,"name":"Report to the Denmother"}}],"factionRestriction":1}, -{"id":65312,"name":"Vest of Sobbing","icon":"inv_chest_leather_28v1","type":5,"armorType":2,"stats":[0,9,14,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28364,"name":"The Chieftain's Key"}}]}, -{"id":65313,"name":"Timbermaw Leggings","icon":"inv_pants_leather_40v2","type":9,"armorType":2,"stats":[0,0,14,10,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28366,"name":"Disarming Bears"}}]}, -{"id":65314,"name":"Belt of the Sanctuary","icon":"inv_belt_86","type":8,"armorType":4,"stats":[7,0,9,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28148,"name":"Culling the Corrupted"}}]}, -{"id":65315,"name":"Impish Boots","icon":"inv_boots_plate_19","type":10,"armorType":4,"stats":[5,0,9,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,303,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28049,"name":"See the Invisible"}}]}, -{"id":65316,"name":"Spellbreaker's Helm","icon":"inv_helmet_188v1","type":1,"armorType":3,"stats":[0,0,13,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28113,"name":"Break the Unbreakable"}}]}, -{"id":65317,"name":"Rainbow Band","icon":"inv_jewelry_ring_72","type":11,"stats":[0,4,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28288,"name":"Open Their Eyes"}}]}, -{"id":65318,"name":"Ruumbo's Arm","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[3,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":46,"quality":2,"sources":[{"quest":{"id":27995,"name":"Dance for Ruumbo!"}}]}, -{"id":65319,"name":"Purified Jaedenar Amulet","icon":"inv_jewelry_necklace_41","type":2,"stats":[0,5,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28128,"name":"The Inner Circle"}}]}, -{"id":65320,"name":"Sanctuary Pauldrons","icon":"inv_shoulder_142v3","type":3,"armorType":4,"stats":[7,0,9,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28126,"name":"Dousing the Flames of Protection"}}]}, -{"id":65321,"name":"Stars of Felwood","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,3,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":42,"weaponDamageMax":79,"weaponSpeed":1.7,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28155,"name":"Lord Banehollow"}}]}, -{"id":65322,"name":"Mr. Tauren's Boots","icon":"inv_boots_mail_15","type":10,"armorType":3,"stats":[0,0,10,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":28213,"name":"Hazzard Disposal"}}]}, -{"id":65323,"name":"Pauldrons of Thankless Deeds","icon":"inv_shoulder_142v2","type":3,"armorType":4,"stats":[0,0,10,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28257,"name":"The Fall of Tichondrius"}}]}, -{"id":65324,"name":"Navarax's Signet","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,10,6,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":28264,"name":"Navarax's Gambit"}}]}, -{"id":65325,"name":"Tree Ring Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[5,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28228,"name":"Rejoining the Forest"}}]}, -{"id":65326,"name":"Infernal Breastplate","icon":"inv_chest_plate29v2","type":5,"armorType":4,"stats":[9,0,13,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28359,"name":"The Core of Kroshius"}}]}, -{"id":65327,"name":"Weed Puller's Bracers","icon":"inv_bracer_77","type":6,"armorType":3,"stats":[0,0,7,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28374,"name":"Weeding the Lawn"}}]}, -{"id":65328,"name":"Talon Branch","icon":"inv_staff_16","type":13,"weaponType":4,"handType":1,"stats":[0,0,6,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":1.6,"ilvl":49,"quality":2,"sources":[{"quest":{"id":28382,"name":"Enemy at our Roots"}}],"factionRestriction":1}, -{"id":65329,"name":"Breastplate of Protest","icon":"inv_chest_mail_20v3","type":5,"armorType":3,"stats":[0,9,14,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28386,"name":"Borrowed Bombs"}}],"factionRestriction":1}, -{"id":65330,"name":"Token of the Bond","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28389,"name":"Report to the Denmother"}}],"factionRestriction":1}, -{"id":65331,"name":"Bloodmaw's Belt","icon":"inv_belt_99","type":8,"armorType":3,"stats":[0,0,10,7,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28364,"name":"The Chieftain's Key"}}]}, -{"id":65332,"name":"Timbermaw Boots","icon":"inv_boots_mail_15v3","type":10,"armorType":3,"stats":[0,6,10,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28366,"name":"Disarming Bears"}}]}, -{"id":65333,"name":"Redfeather Band","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,7,5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":45,"quality":2,"sources":[{"quest":{"id":28148,"name":"Culling the Corrupted"}}]}, -{"id":65334,"name":"Impsy's Wand","icon":"inv_misc_bone_taurenskull_01","type":14,"rangedWeaponType":6,"stats":[0,0,4,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.6,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28049,"name":"See the Invisible"}}]}, -{"id":65335,"name":"Demon Smasher","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[9,0,13,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":94,"weaponDamageMax":141,"weaponSpeed":3.3,"ilvl":46,"quality":2,"sources":[{"quest":{"id":28113,"name":"Break the Unbreakable"}}]}, -{"id":65336,"name":"Pulled Wool","icon":"inv_misc_cape_03","type":4,"stats":[0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":27995,"name":"Dance for Ruumbo!"}}]}, -{"id":65337,"name":"Emerald Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,7,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":2,"sources":[{"quest":{"id":28126,"name":"Dousing the Flames of Protection"}}]}, -{"id":65338,"name":"Belt of Regret","icon":"inv_belt_93v2","type":8,"armorType":4,"stats":[7,0,10,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":2,"sources":[{"quest":{"id":28213,"name":"Hazzard Disposal"}}]}, -{"id":65339,"name":"Warlockbane Shield","icon":"inv_shield_14","type":13,"weaponType":7,"handType":3,"stats":[0,0,7,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28359,"name":"The Core of Kroshius"}}]}, -{"id":65340,"name":"Thornward Greaves","icon":"inv_pants_plate_38v1","type":9,"armorType":4,"stats":[8,0,13,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":2,"sources":[{"quest":{"id":28374,"name":"Weeding the Lawn"}}]}, -{"id":65341,"name":"Bloodwater Shield","icon":"inv_shield_76","type":13,"weaponType":7,"handType":3,"stats":[5,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28382,"name":"Enemy at our Roots"}}],"factionRestriction":1}, -{"id":65342,"name":"Irontree Cloak","icon":"inv_misc_cape_09","type":4,"stats":[5,0,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28386,"name":"Borrowed Bombs"}}],"factionRestriction":1}, -{"id":65343,"name":"Timbermaw Breastplate","icon":"inv_chest_plate27v1","type":5,"armorType":4,"stats":[10,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28366,"name":"Disarming Bears"}}]}, -{"id":65344,"name":"Overworked Shoulders","icon":"inv_shoulder_139v1","type":3,"armorType":2,"stats":[0,6,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28333,"name":"It's Time to Oil Up"}}],"factionRestriction":2}, -{"id":65345,"name":"Oilfoot Slippers","icon":"inv_boots_cloth_35v2","type":10,"armorType":1,"stats":[0,0,10,7,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28336,"name":"Slap and Cap"}}],"factionRestriction":2}, -{"id":65346,"name":"Gauntlets of Raw Strength","icon":"inv_gauntlets_117v2","type":7,"armorType":4,"stats":[9,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28368,"name":"Fire in the Hole!"}}],"factionRestriction":2}, -{"id":65347,"name":"Shredder Operator's Helmet","icon":"inv_helmet_188v3","type":1,"armorType":3,"stats":[0,9,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28333,"name":"It's Time to Oil Up"}}],"factionRestriction":2}, -{"id":65348,"name":"Oil Gush Leggings","icon":"inv_pants_leather_40v1","type":9,"armorType":2,"stats":[0,9,14,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28336,"name":"Slap and Cap"}}],"factionRestriction":2}, -{"id":65349,"name":"Everburning Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,8,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28368,"name":"Fire in the Hole!"}}],"factionRestriction":2}, -{"id":65350,"name":"Efficiency Spell Mace","icon":"inv_mace_121","type":13,"weaponType":4,"handType":1,"stats":[0,0,6,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":32,"weaponDamageMax":61,"weaponSpeed":1.6,"ilvl":49,"quality":2,"sources":[{"quest":{"id":28333,"name":"It's Time to Oil Up"}}],"factionRestriction":2}, -{"id":65351,"name":"Workforce Chestguard","icon":"inv_chest_mail_20v3","type":5,"armorType":3,"stats":[0,9,14,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28336,"name":"Slap and Cap"}}],"factionRestriction":2}, -{"id":65352,"name":"Drilldozer Band","icon":"inv_misc_gear_01","type":11,"stats":[0,8,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":28368,"name":"Fire in the Hole!"}}],"factionRestriction":2}, -{"id":65353,"name":"Oil Bailer's Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[5,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28333,"name":"It's Time to Oil Up"}}],"factionRestriction":2}, -{"id":65354,"name":"Cloak of Sleep Deprivation","icon":"inv_misc_cape_26","type":4,"stats":[5,0,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":2,"sources":[{"quest":{"id":28336,"name":"Slap and Cap"}}],"factionRestriction":2}, -{"id":65357,"name":"Rainbow Generator","icon":"inv_misc_gem_variety_02","type":12,"stats":[0,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":2,"sources":[{"quest":{"id":28288,"name":"Open Their Eyes"}}]}, -{"id":65461,"name":"Staff of the Green Circle","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,5,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":27356,"name":"The Circle's Future"}}]}, -{"id":65462,"name":"Staff of the Verdant Circle","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":27356,"name":"The Circle's Future"}}]}, -{"id":65463,"name":"Staff of the Green Circle","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,5,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":27404,"name":"The Circle's Future"}}]}, -{"id":65464,"name":"Staff of the Verdant Circle","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":27404,"name":"The Circle's Future"}}]}, -{"id":65465,"name":"Crossbow of the Crown","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":2.8,"ilvl":20,"quality":3,"classAllowlist":[2],"sources":[{"quest":{"id":27344,"name":"A Well-Earned Reward"}}],"factionRestriction":1}, -{"id":65466,"name":"Bow of the Great Hunter","icon":"inv_weapon_bow_11","type":14,"rangedWeaponType":1,"stats":[0,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":64,"weaponSpeed":2.8,"ilvl":20,"quality":3,"classAllowlist":[2],"sources":[{"quest":{"id":27395,"name":"A Marksman's Weapon"}}],"factionRestriction":2}, -{"id":65467,"name":"Staff of the Royal Wizard","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":27354,"name":"Mastering the Arcane"}}],"factionRestriction":1}, -{"id":65468,"name":"Staff of the Arcane Path","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":27400,"name":"Mastering the Arcane"}}],"factionRestriction":2}, -{"id":65469,"name":"Morningstar of the Order","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27434,"name":"The Adept's Path"}}]}, -{"id":65470,"name":"Battlemace of the Order","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27434,"name":"The Adept's Path"}}]}, -{"id":65471,"name":"Greatmace of the Order","icon":"inv_mace_30","type":13,"weaponType":4,"handType":4,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27434,"name":"The Adept's Path"}}]}, -{"id":65472,"name":"Mace of the Sunwalker","icon":"inv_mace_124","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27403,"name":"A True Sunwalker"}}]}, -{"id":65473,"name":"Battlehammer of the Sunwalker","icon":"inv_mace_124","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27403,"name":"A True Sunwalker"}}]}, -{"id":65474,"name":"Greatsword of the Sunwalker","icon":"inv_sword_159","type":13,"weaponType":9,"handType":4,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27403,"name":"A True Sunwalker"}}]}, -{"id":65475,"name":"Mace of the Order","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27343,"name":"The Hand of the Light"}}]}, -{"id":65476,"name":"Gavel of the Order","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27343,"name":"The Hand of the Light"}}]}, -{"id":65477,"name":"Warhammer of the Order","icon":"inv_mace_100","type":13,"weaponType":4,"handType":4,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":27343,"name":"The Hand of the Light"}}]}, -{"id":65478,"name":"Staff of the Sunchaser","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27439,"name":"Staff of the Light"}}]}, -{"id":65479,"name":"Staff of Forsaken Faith","icon":"inv_staff_29","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27437,"name":"The Dark Cleric's Bidding"}}]}, -{"id":65480,"name":"Staff of the Technocrat","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27363,"name":"A Budding Young Surgeon"}}]}, -{"id":65481,"name":"Staff of Golden Worship","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27441,"name":"A Seer's Staff"}}]}, -{"id":65482,"name":"Staff of the Hallowed","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27361,"name":"Favored of the Light"}}],"factionRestriction":1}, -{"id":65483,"name":"Moon Staff of Elune","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27362,"name":"Favored of Elune"}}]}, -{"id":65484,"name":"Staff of the Earthmother","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27435,"name":"A Seer's Staff"}}]}, -{"id":65485,"name":"Shadow-Walker Staff","icon":"inv_jewelry_talisman_12","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":27436,"name":"The Shadow-Walker's Task"}}]}, -{"id":65486,"name":"SI:7 Special Issue Dagger","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":20,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":27351,"name":"A Royal Reward"}}],"factionRestriction":1}, -{"id":65487,"name":"Blade of the Shattered Hand","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.8,"ilvl":20,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":27396,"name":"Blade of the Shattered Hand"}}],"factionRestriction":2}, -{"id":65488,"name":"Battleaxe of the Farseer","icon":"inv_axe_118","type":13,"weaponType":1,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":27353,"name":"Blessings of the Elements"}}]}, -{"id":65489,"name":"Spell Axe of the Farseer","icon":"inv_axe_118","type":13,"weaponType":1,"handType":2,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":27353,"name":"Blessings of the Elements"}}]}, -{"id":65490,"name":"Battleaxe of the Speaker","icon":"inv_axe_118","type":13,"weaponType":1,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":27397,"name":"Dreamseeker's Task"}}],"factionRestriction":2}, -{"id":65491,"name":"Spell Axe of the Speaker","icon":"inv_axe_118","type":13,"weaponType":1,"handType":2,"stats":[0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":27397,"name":"Dreamseeker's Task"}}],"factionRestriction":2}, -{"id":65492,"name":"Broadsword of the Crown","icon":"inv_sword_159","type":13,"weaponType":9,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":27337,"name":"A Fitting Weapon"}}],"factionRestriction":1}, -{"id":65493,"name":"Greatsword of the Crown","icon":"inv_sword_2h_blood_c_02","type":13,"weaponType":9,"handType":4,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":27337,"name":"A Fitting Weapon"}}],"factionRestriction":1}, -{"id":65494,"name":"Broadaxe of the Horde","icon":"inv_axe_76","type":13,"weaponType":1,"handType":2,"stats":[3,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":24,"weaponDamageMax":46,"weaponSpeed":2.6,"ilvl":20,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":27365,"name":"A Fitting Weapon"}}],"factionRestriction":2}, -{"id":65495,"name":"Greataxe of the Horde","icon":"inv_axe_15","type":13,"weaponType":1,"handType":4,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[9],"sources":[{"quest":{"id":27365,"name":"A Fitting Weapon"}}],"factionRestriction":2}, -{"id":65496,"name":"Staff of Justified Sins","icon":"inv_weapon_halberd_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[8],"sources":[{"quest":{"id":27355,"name":"A Boon for the Powerful"}}],"factionRestriction":1}, -{"id":65497,"name":"Staff of the Left Hand Path","icon":"inv_weapon_halberd_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,7,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":70,"weaponSpeed":3.3,"ilvl":20,"quality":3,"classAllowlist":[8],"sources":[{"quest":{"id":27402,"name":"Token of Power"}}],"factionRestriction":2}, -{"id":65616,"name":"Crown of the Hallowed","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[5],"sources":[{"quest":{"id":28328,"name":"Twilight Scheming"}}],"factionRestriction":1}, -{"id":65617,"name":"Headdress of the Verdant Circle","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":28343,"name":"The Breath of Cenarius"}}]}, -{"id":65618,"name":"Faceguard of the Crown","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[12,0,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28393,"name":"A Dangerous Alliance"}}],"factionRestriction":1}, -{"id":65619,"name":"Helm of the Crown","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28394,"name":"The Golem Lord's Creations"}}],"factionRestriction":1}, -{"id":65620,"name":"Hood of the Royal Wizard","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,19,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":28398,"name":"The Pyromancer's Grimoire"}}],"factionRestriction":1}, -{"id":65621,"name":"Horns of Justified Sins","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,19,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28399,"name":"Stones of Binding"}}],"factionRestriction":1}, -{"id":65622,"name":"Headcover of the Farseer","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":28401,"name":"Slaves of the Firelord"}}]}, -{"id":65623,"name":"Helm of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":28405,"name":"Weapons of Darkness"}}]}, -{"id":65624,"name":"SI:7 Special Issue Facemask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":28406,"name":"The Dark Iron Army"}}],"factionRestriction":1}, -{"id":65625,"name":"Faceguard of the Horde","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[12,0,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28457,"name":"A Dangerous Alliance"}}],"factionRestriction":2}, -{"id":65626,"name":"Hood of the Arcane Path","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,19,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[3],"sources":[{"quest":{"id":28458,"name":"The Pyromancer's Grimoire"}}],"factionRestriction":2}, -{"id":65627,"name":"Horns of the Left Hand Path","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,19,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28459,"name":"Stones of Binding"}}],"factionRestriction":2}, -{"id":65628,"name":"Helm of the Great Hunter","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[2],"sources":[{"quest":{"id":28461,"name":"The Golem Lord's Creations"}}],"factionRestriction":2}, -{"id":65629,"name":"Facemask of the Shattered Hand","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"sources":[{"quest":{"id":28463,"name":"The Dark Iron Army"}}],"factionRestriction":2}, -{"id":65630,"name":"Headcover of the Speaker","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28465,"name":"Slaves of the Firelord"}}],"factionRestriction":2}, -{"id":65631,"name":"Helm of the Sunwalker","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28466,"name":"Weapons of Darkness"}}]}, -{"id":65632,"name":"Helm of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"sources":[{"quest":{"id":28473,"name":"Weapons of Darkness"}}]}, -{"id":65633,"name":"Crown of Forsaken Faith","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28474,"name":"Twilight Scheming"}}]}, -{"id":65634,"name":"Crown of the Sunchaser","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28475,"name":"Twilight Scheming"}}]}, -{"id":65635,"name":"Crown of the Earthmother","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28476,"name":"Twilight Scheming"}}]}, -{"id":65636,"name":"Crown of the Shadow-Walker","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28477,"name":"Twilight Scheming"}}]}, -{"id":65637,"name":"Crown of Golden Worship","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,19,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28478,"name":"Twilight Scheming"}}]}, -{"id":65638,"name":"Headdress of the Green Circle","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"sources":[{"quest":{"id":28343,"name":"The Breath of Cenarius"}}]}, -{"id":65639,"name":"Headguard of the Crown","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[12,0,19,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28393,"name":"A Dangerous Alliance"}}],"factionRestriction":1}, -{"id":65640,"name":"Mask of the Farseer","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[7],"sources":[{"quest":{"id":28401,"name":"Slaves of the Firelord"}}]}, -{"id":65641,"name":"Faceguard of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":28405,"name":"Weapons of Darkness"}}]}, -{"id":65642,"name":"Headguard of the Horde","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[12,0,19,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28457,"name":"A Dangerous Alliance"}}],"factionRestriction":2}, -{"id":65643,"name":"Mask of the Speaker","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,12,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28465,"name":"Slaves of the Firelord"}}],"factionRestriction":2}, -{"id":65644,"name":"Faceguard of the Sunwalker","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28466,"name":"Weapons of Darkness"}}]}, -{"id":65645,"name":"Faceguard of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"sources":[{"quest":{"id":28473,"name":"Weapons of Darkness"}}]}, -{"id":65646,"name":"Headguard of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[4],"sources":[{"quest":{"id":28405,"name":"Weapons of Darkness"}}]}, -{"id":65647,"name":"Headguard of the Sunwalker","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"sources":[{"quest":{"id":28466,"name":"Weapons of Darkness"}}]}, -{"id":65648,"name":"Headguard of the Order","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[12,0,19,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"sources":[{"quest":{"id":28473,"name":"Weapons of Darkness"}}]}, -{"id":65665,"name":"Burgy Blackheart's Handsome Hat","icon":"inv_helmet_66","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":3}, -{"id":65666,"name":"Botanist's Britches","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28748,"name":"Lawn of the Dead"}}]}, -{"id":65667,"name":"Shovel of Mercy","icon":"inv_misc_shovel_01","type":13,"weaponType":4,"handType":2,"stats":[2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":2.6,"ilvl":20,"quality":2,"sources":[{"quest":{"id":28189,"name":"Do the Right Thing"}}],"factionRestriction":2}, -{"id":65668,"name":"Officer's Armbands","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28138,"name":"Human Infestation"}}],"factionRestriction":2}, -{"id":65669,"name":"Keyton's Sash","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28154,"name":"Muckgill's Flipper or Something..."}}],"factionRestriction":2}, -{"id":65670,"name":"Spider-Handler's Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28114,"name":"Glorious Harvest"}}],"factionRestriction":2}, -{"id":65671,"name":"Cue Cue Gloves","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28096,"name":"Welcome to the Machine"}}],"factionRestriction":2}, -{"id":65672,"name":"Crossbow of the Twice-Slain","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":27,"weaponDamageMax":50,"weaponSpeed":2.8,"ilvl":21,"quality":2,"sources":[{"quest":{"id":28197,"name":"Discretion is Key"}}],"factionRestriction":2}, -{"id":65673,"name":"Aberrant Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,5,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28209,"name":"Freedom for Lydon"}}],"factionRestriction":2}, -{"id":65674,"name":"Star Pony Leggings","icon":"inv_pants_05","type":9,"armorType":1,"stats":[0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28231,"name":"Do it for Twinkles"}}],"factionRestriction":2}, -{"id":65675,"name":"Stillwater's Dagger","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":33,"weaponSpeed":1.8,"ilvl":21,"quality":3,"sources":[{"quest":{"id":28237,"name":"A Blight Upon the Land"}}],"factionRestriction":2}, -{"id":65676,"name":"Helcular's Other Rod","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":22,"quality":2,"sources":[{"quest":{"id":28331,"name":"Helcular's Rod Giveth..."}}],"factionRestriction":2}, -{"id":65677,"name":"Preemptive Staff","icon":"inv_staff_22","type":13,"weaponType":8,"handType":4,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":38,"weaponDamageMax":58,"weaponSpeed":3.3,"ilvl":22,"quality":2,"sources":[{"quest":{"id":28356,"name":"Preemptive Strike"}}],"factionRestriction":2}, -{"id":65678,"name":"Red Riding Gloves","icon":"inv_gauntlets_25","type":7,"armorType":1,"stats":[0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28354,"name":"Kasha Will Fly Again"}}],"factionRestriction":2}, -{"id":65679,"name":"Hinott's Outer Robe","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28330,"name":"Trail of Filth"}}],"factionRestriction":2}, -{"id":65680,"name":"Belt of the Hero","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,6,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":28400,"name":"Heroes of the Horde!"}}],"factionRestriction":2}, -{"id":65681,"name":"Stagwich Slicer","icon":"inv_sword_04","type":13,"weaponType":9,"handType":4,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":60,"weaponSpeed":3.3,"ilvl":23,"quality":2,"sources":[{"quest":{"id":28489,"name":"Stagwiches"}}],"factionRestriction":2}, -{"id":65682,"name":"Bel'varil's Armbands","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":28484,"name":"The Heart of the Matter"}}],"factionRestriction":2}, -{"id":65683,"name":"Sofera's Belt","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28556,"name":"Breaking the Hand"}}],"factionRestriction":2}, -{"id":65684,"name":"Poisoned Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28604,"name":"Deception and Trickery"}}],"factionRestriction":2}, -{"id":65685,"name":"Broken Fingers of Hillsbrad","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,3,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"sources":[{"quest":{"id":28616,"name":"Stormpike Apocalypse"}}],"factionRestriction":2}, -{"id":65686,"name":"Mantle of Haunting","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,4,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":28636,"name":"Silence of the Dwarves"}}],"factionRestriction":2}, -{"id":65687,"name":"Axe of the Judgment Day","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":55,"weaponSpeed":2.6,"ilvl":25,"quality":3,"sources":[{"quest":{"id":28647,"name":"The Durnholde Challenge: D-1000"}}],"factionRestriction":2}, -{"id":65688,"name":"Yetimus Maximus","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":4,"stats":[6,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":84,"weaponSpeed":3.3,"ilvl":25,"quality":3,"sources":[{"quest":{"id":28485,"name":"Yetimus the Yeti Lord"}}],"factionRestriction":2}, -{"id":65689,"name":"Brazie's Plant Light","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":32,"weaponSpeed":1.6,"ilvl":20,"quality":2,"sources":[{"quest":{"id":28748,"name":"Lawn of the Dead"}}]}, -{"id":65690,"name":"Slaver's Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28138,"name":"Human Infestation"}}],"factionRestriction":2}, -{"id":65691,"name":"Floppy Shoulderguards","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28154,"name":"Muckgill's Flipper or Something..."}}],"factionRestriction":2}, -{"id":65692,"name":"Bear Hide Vest","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28114,"name":"Glorious Harvest"}}],"factionRestriction":2}, -{"id":65693,"name":"Quest Giver's Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28096,"name":"Welcome to the Machine"}}],"factionRestriction":2}, -{"id":65694,"name":"Clerk Whitesteed's Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28197,"name":"Discretion is Key"}}],"factionRestriction":2}, -{"id":65695,"name":"Sludge-Caked Throwing Knives","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":16,"weaponDamageMax":31,"weaponSpeed":1.7,"ilvl":21,"quality":2,"sources":[{"quest":{"id":28209,"name":"Freedom for Lydon"}}],"factionRestriction":2}, -{"id":65696,"name":"Awesome Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28231,"name":"Do it for Twinkles"}}],"factionRestriction":2}, -{"id":65697,"name":"Stillwater's Cloak","icon":"inv_misc_cape_16","type":4,"stats":[0,3,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":28237,"name":"A Blight Upon the Land"}}],"factionRestriction":2}, -{"id":65698,"name":"Daggerspine Dagger","icon":"inv_weapon_shortblade_10","type":13,"weaponType":2,"handType":2,"stats":[0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":10,"weaponDamageMax":20,"weaponSpeed":1.4,"ilvl":22,"quality":2,"sources":[{"quest":{"id":28356,"name":"Preemptive Strike"}}],"factionRestriction":2}, -{"id":65699,"name":"Mudsnout Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,3,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28354,"name":"Kasha Will Fly Again"}}],"factionRestriction":2}, -{"id":65700,"name":"Chet's Slimy Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28330,"name":"Trail of Filth"}}],"factionRestriction":2}, -{"id":65701,"name":"Gloves of the Hero","icon":"inv_gauntlets_27","type":7,"armorType":2,"stats":[0,0,6,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":28400,"name":"Heroes of the Horde!"}}],"factionRestriction":2}, -{"id":65702,"name":"Supple Yeti Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,4,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":28484,"name":"The Heart of the Matter"}}],"factionRestriction":2}, -{"id":65703,"name":"Gavin's Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[3,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28556,"name":"Breaking the Hand"}}],"factionRestriction":2}, -{"id":65704,"name":"Vest of the Phantom","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,3,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28604,"name":"Deception and Trickery"}}],"factionRestriction":2}, -{"id":65705,"name":"Pocket-Nuke Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[4,0,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"sources":[{"quest":{"id":28616,"name":"Stormpike Apocalypse"}}],"factionRestriction":2}, -{"id":65706,"name":"Mr. Hider's Bracers","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,2,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":28636,"name":"Silence of the Dwarves"}}],"factionRestriction":2}, -{"id":65707,"name":"Discontinuer's Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":34,"weaponSpeed":1.6,"ilvl":25,"quality":3,"sources":[{"quest":{"id":28647,"name":"The Durnholde Challenge: D-1000"}}],"factionRestriction":2}, -{"id":65708,"name":"Tarren Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":28485,"name":"Yetimus the Yeti Lord"}}],"factionRestriction":2}, -{"id":65709,"name":"Binding Chains","icon":"inv_belt_23","type":8,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28138,"name":"Human Infestation"}}],"factionRestriction":2}, -{"id":65710,"name":"Creeping Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28114,"name":"Glorious Harvest"}}],"factionRestriction":2}, -{"id":65711,"name":"Portable Lap Desk","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":20,"quality":2,"sources":[{"quest":{"id":28096,"name":"Welcome to the Machine"}}],"factionRestriction":2}, -{"id":65712,"name":"Citizen Wilkes' Ring","icon":"inv_jewelry_ring_12","type":11,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28197,"name":"Discretion is Key"}}],"factionRestriction":2}, -{"id":65713,"name":"Monstrous Shield","icon":"inv_shield_12","type":13,"weaponType":7,"handType":3,"stats":[2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28209,"name":"Freedom for Lydon"}}],"factionRestriction":2}, -{"id":65714,"name":"\"Jenny's\" Gloves","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":2,"sources":[{"quest":{"id":28231,"name":"Do it for Twinkles"}}],"factionRestriction":2}, -{"id":65715,"name":"Stillwater's Signet","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,4,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":28237,"name":"A Blight Upon the Land"}}],"factionRestriction":2}, -{"id":65716,"name":"Daggerspine Ball","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28356,"name":"Preemptive Strike"}}],"factionRestriction":2}, -{"id":65717,"name":"Kingslayer's Breastplate","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28354,"name":"Kasha Will Fly Again"}}],"factionRestriction":2}, -{"id":65718,"name":"Lethality Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28330,"name":"Trail of Filth"}}],"factionRestriction":2}, -{"id":65719,"name":"Spaulders of the Hero","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,4,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":28400,"name":"Heroes of the Horde!"}}],"factionRestriction":2}, -{"id":65720,"name":"Tell-Tale Bracers","icon":"inv_bracer_30c","type":6,"armorType":3,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":2,"sources":[{"quest":{"id":28484,"name":"The Heart of the Matter"}}],"factionRestriction":2}, -{"id":65721,"name":"Corrahn's Cloak","icon":"inv_misc_cape_26","type":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28556,"name":"Breaking the Hand"}}],"factionRestriction":2}, -{"id":65722,"name":"Lilith's Wand","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":20,"weaponDamageMax":39,"weaponSpeed":1.6,"ilvl":24,"quality":2,"sources":[{"quest":{"id":28604,"name":"Deception and Trickery"}}],"factionRestriction":2}, -{"id":65723,"name":"Cloak of Treason","icon":"inv_misc_cape_14","type":4,"stats":[0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":3,"sources":[{"quest":{"id":28616,"name":"Stormpike Apocalypse"}}],"factionRestriction":2}, -{"id":65724,"name":"Grasps of the Unyielding","icon":"inv_gauntlets_29","type":7,"armorType":3,"stats":[3,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":2,"sources":[{"quest":{"id":28636,"name":"Silence of the Dwarves"}}],"factionRestriction":2}, -{"id":65725,"name":"D-1000 Ring","icon":"inv_jewelry_ring_69","type":11,"stats":[0,4,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":28647,"name":"The Durnholde Challenge: D-1000"}}],"factionRestriction":2}, -{"id":65726,"name":"Shield of Uncurbed Appetite","icon":"inv_shield_21","type":13,"weaponType":7,"handType":3,"stats":[0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":25,"quality":3,"sources":[{"quest":{"id":28485,"name":"Yetimus the Yeti Lord"}}],"factionRestriction":2}, -{"id":65727,"name":"Band of the Eastern Strand","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":22,"quality":2,"sources":[{"quest":{"id":28356,"name":"Preemptive Strike"}}],"factionRestriction":2}, -{"id":65728,"name":"Boots of the Hero","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":23,"quality":3,"sources":[{"quest":{"id":28400,"name":"Heroes of the Horde!"}}],"factionRestriction":2}, -{"id":65729,"name":"Band of Premeditated Murder","icon":"inv_jewelry_ring_39","type":11,"stats":[2,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":24,"quality":2,"sources":[{"quest":{"id":28604,"name":"Deception and Trickery"}}],"factionRestriction":2}, -{"id":65910,"name":"Godfrey's Britches","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27968,"name":"Fury of the Pack"}}],"factionRestriction":1}, -{"id":65911,"name":"Anacondra's Robe","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":26870,"name":"Cleansing the Caverns"}}]}, -{"id":65912,"name":"Robe of Kelris","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,10,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26882,"name":"Blackfathom Villainy"}}],"factionRestriction":1}, -{"id":65913,"name":"Hann Ibal's Epaulettes","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,8,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26942,"name":"The G-Team"}}],"factionRestriction":1}, -{"id":65914,"name":"Vishas' Hood","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26972,"name":"The Dark Side of the Light"}}],"factionRestriction":1}, -{"id":65915,"name":"Rifle Commander's Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,8,11,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":27739,"name":"The Gnoll King"}}],"factionRestriction":1}, -{"id":65916,"name":"Houndmaster's Belt","icon":"inv_belt_87","type":8,"armorType":2,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26973,"name":"The Only True Path"}}],"factionRestriction":1}, -{"id":65917,"name":"Monk's Leggings","icon":"inv_pants_cloth_39v4","type":9,"armorType":1,"stats":[0,0,13,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26974,"name":"The False Champion"}}],"factionRestriction":1}, -{"id":65918,"name":"Agamaggan's Gift","icon":"inv_bracer_62v3","type":6,"armorType":1,"stats":[0,0,8,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"sources":[{"quest":{"id":26905,"name":"Agamaggan's Charge"}}]}, -{"id":65919,"name":"Zaetar's Gloves","icon":"inv_gauntlets_106v3","type":7,"armorType":1,"stats":[0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":27692,"name":"Princess Theradras"}}]}, -{"id":65920,"name":"Grasps of the Insane","icon":"inv_gauntlets_119v2","type":7,"armorType":3,"stats":[7,0,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26976,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":1}, -{"id":65921,"name":"Durdin's Hammer","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,4,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"sources":[{"quest":{"id":2280,"name":"The Platinum Discs"}}]}, -{"id":65922,"name":"Warpwood Leaf Mantle","icon":"inv_shoulder_robe_common_c_01","type":3,"armorType":1,"stats":[0,0,11,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"sources":[{"quest":{"id":27104,"name":"Alzzin the Wildshaper"}}]}, -{"id":65923,"name":"Barov Servant Caller","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":43,"quality":3,"sources":[{"quest":{"id":27143,"name":"Barov Family Fortune"}}]}, -{"id":65924,"name":"Shen'dralar Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,11,17,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":81,"weaponDamageMax":152,"weaponSpeed":3,"ilvl":44,"quality":3,"sources":[{"quest":{"id":27111,"name":"The Treasure of the Shen'dralar"}}]}, -{"id":65925,"name":"Lucien's Boots","icon":"inv_boots_leather_14v1","type":10,"armorType":2,"stats":[0,8,13,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3,"sources":[{"quest":{"id":27148,"name":"School's Out Forever"}}]}, -{"id":65926,"name":"Coldbringer's Leggings","icon":"inv_pants_robe_common_c_01","type":9,"armorType":1,"stats":[0,0,17,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"sources":[{"quest":{"id":27009,"name":"The Coldbringer"}}]}, -{"id":65927,"name":"Slippers of Tribute","icon":"inv_boots_robe_common_c_01","type":10,"armorType":1,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27125,"name":"King of the Gordok"}}],"factionRestriction":1}, -{"id":65928,"name":"Legguards of Stratholme","icon":"inv_pants_plate_41v3","type":9,"armorType":4,"stats":[0,0,18,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27208,"name":"The Dreadlord Balnazzar"}}]}, -{"id":65929,"name":"Bilgewhizzle's Armbands","icon":"inv_bracer_robe_common_c_01","type":6,"armorType":1,"stats":[0,0,10,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":27070,"name":"A Fool's Errand"}}]}, -{"id":65930,"name":"Hands of Consequences","icon":"inv_gauntlets_robe_common_c_01","type":7,"armorType":1,"stats":[0,0,14,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":27068,"name":"Chief Ukorz Sandscalp"}}]}, -{"id":65931,"name":"Essence of Eranikus' Shade","icon":"inv_stone_03","type":12,"stats":[0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":3,"sources":[{"quest":{"id":27605,"name":"Eranikus"}}]}, -{"id":65932,"name":"Thaurissan's Breastplate","icon":"inv_chest_plate30","type":5,"armorType":4,"stats":[15,0,22,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27578,"name":"Morgan's Fruition"}}],"factionRestriction":1}, -{"id":65933,"name":"Highlord's Chestpiece","icon":"inv_chest_leather_30v1","type":5,"armorType":2,"stats":[0,15,23,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":27440,"name":"Trolls, Ogres, and Orcs, Oh My!"}}]}, -{"id":65934,"name":"Staff of the Second Orb","icon":"inv_staff_10","type":13,"weaponType":8,"handType":4,"stats":[0,15,23,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":3.3,"ilvl":60,"quality":3,"sources":[{"quest":{"id":27445,"name":"General Drakkisath, Hand of Nefarian"}}]}, -{"id":65935,"name":"Cookie's Meat Mallet","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":2.6,"ilvl":17,"quality":3,"sources":[{"quest":{"id":27790,"name":"The Defias Kingpin"}}],"factionRestriction":1}, -{"id":65936,"name":"Sandals of Sacrifice","icon":"inv_boots_cloth_01","type":10,"armorType":2,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27968,"name":"Fury of the Pack"}}],"factionRestriction":1}, -{"id":65937,"name":"Serpentis' Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":26870,"name":"Cleansing the Caverns"}}]}, -{"id":65938,"name":"Blackfathom Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26882,"name":"Blackfathom Villainy"}}],"factionRestriction":1}, -{"id":65939,"name":"Murd Doc's Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,11,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26942,"name":"The G-Team"}}],"factionRestriction":1}, -{"id":65940,"name":"Strapping Belt","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,8,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26972,"name":"The Dark Side of the Light"}}],"factionRestriction":1}, -{"id":65941,"name":"Riot Stick","icon":"inv_staff_18","type":13,"weaponType":8,"handType":4,"stats":[0,0,11,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":98,"weaponSpeed":3.3,"ilvl":30,"quality":3,"sources":[{"quest":{"id":27739,"name":"The Gnoll King"}}],"factionRestriction":1}, -{"id":65942,"name":"Shield of the Righteous Cause","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[4,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26973,"name":"The Only True Path"}}],"factionRestriction":1}, -{"id":65943,"name":"Shrug of the Crazed","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26974,"name":"The False Champion"}}],"factionRestriction":1}, -{"id":65944,"name":"Charlga's Breastplate","icon":"inv_chest_leather_27","type":5,"armorType":2,"stats":[0,0,14,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"sources":[{"quest":{"id":26905,"name":"Agamaggan's Charge"}}]}, -{"id":65945,"name":"Sandals of Glorious Life","icon":"inv_boots_leather_11","type":10,"armorType":2,"stats":[0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":27692,"name":"Princess Theradras"}}]}, -{"id":65946,"name":"Scarlet Necklace of Paradise","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,8,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26976,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":1}, -{"id":65947,"name":"Platinum Sword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":2,"stats":[4,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":2.6,"ilvl":40,"quality":3,"sources":[{"quest":{"id":2280,"name":"The Platinum Discs"}}]}, -{"id":65948,"name":"Warpwood Bark Vest","icon":"inv_chest_leather_30","type":5,"armorType":2,"stats":[0,0,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"sources":[{"quest":{"id":27104,"name":"Alzzin the Wildshaper"}}]}, -{"id":65949,"name":"Dire Maul","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,5,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.6,"ilvl":44,"quality":3,"sources":[{"quest":{"id":27111,"name":"The Treasure of the Shen'dralar"}}]}, -{"id":65950,"name":"Shackles of Punishment","icon":"inv_bracer_72v1","type":6,"armorType":3,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3,"sources":[{"quest":{"id":27148,"name":"School's Out Forever"}}]}, -{"id":65951,"name":"Razorfen Spaulders","icon":"inv_shoulder_143","type":3,"armorType":2,"stats":[0,0,13,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"sources":[{"quest":{"id":27009,"name":"The Coldbringer"}}]}, -{"id":65952,"name":"Wristbands of Tribute","icon":"inv_bracer_71v1","type":6,"armorType":2,"stats":[0,7,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27125,"name":"King of the Gordok"}}],"factionRestriction":1}, -{"id":65953,"name":"Dathrohan's Mace","icon":"inv_hammer_06","type":13,"weaponType":4,"handType":1,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.6,"ilvl":47,"quality":3,"sources":[{"quest":{"id":27208,"name":"The Dreadlord Balnazzar"}}]}, -{"id":65954,"name":"Belt of the Deep","icon":"inv_belt_94","type":8,"armorType":2,"stats":[0,0,13,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":27070,"name":"A Fool's Errand"}}]}, -{"id":65955,"name":"Mazoga's Boots","icon":"inv_boots_plate_22","type":10,"armorType":4,"stats":[9,0,14,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":49,"quality":3,"sources":[{"quest":{"id":27068,"name":"Chief Ukorz Sandscalp"}}]}, -{"id":65956,"name":"Maxwell's Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,13,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27578,"name":"Morgan's Fruition"}}],"factionRestriction":1}, -{"id":65957,"name":"Overlord's Legguards","icon":"inv_pants_mail_38v1","type":9,"armorType":3,"stats":[0,15,23,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":27440,"name":"Trolls, Ogres, and Orcs, Oh My!"}}]}, -{"id":65958,"name":"Vaelan's Claw","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":2,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":1.8,"ilvl":60,"quality":3,"sources":[{"quest":{"id":27445,"name":"General Drakkisath, Hand of Nefarian"}}]}, -{"id":65959,"name":"Cookie's Stirring Stick","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.6,"ilvl":17,"quality":3,"sources":[{"quest":{"id":27790,"name":"The Defias Kingpin"}}],"factionRestriction":1}, -{"id":65960,"name":"Shadowfang Spaulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,4,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27968,"name":"Fury of the Pack"}}],"factionRestriction":1}, -{"id":65961,"name":"Cobrahn's Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,4,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":26870,"name":"Cleansing the Caverns"}}]}, -{"id":65962,"name":"Thaelrid's Greaves","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26882,"name":"Blackfathom Villainy"}}],"factionRestriction":1}, -{"id":65963,"name":"Temple's Vest","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,7,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26942,"name":"The G-Team"}}],"factionRestriction":1}, -{"id":65964,"name":"Gloves of the \"Pure\"","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26972,"name":"The Dark Side of the Light"}}],"factionRestriction":1}, -{"id":65965,"name":"Shield of the Stockades","icon":"inv_shield_77","type":13,"weaponType":7,"handType":3,"stats":[0,0,6,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":27739,"name":"The Gnoll King"}}],"factionRestriction":1}, -{"id":65966,"name":"Band of the Arcanist","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,7,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26973,"name":"The Only True Path"}}],"factionRestriction":1}, -{"id":65967,"name":"Breastplate of the Scarlet Monastery","icon":"inv_chest_mail_19","type":5,"armorType":3,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26974,"name":"The False Champion"}}],"factionRestriction":1}, -{"id":65968,"name":"Agamaggan-Blessed Greaves","icon":"inv_pants_mail_39v1","type":9,"armorType":3,"stats":[0,0,14,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"sources":[{"quest":{"id":26905,"name":"Agamaggan's Charge"}}]}, -{"id":65969,"name":"Leggings of the Verdant Oasis","icon":"inv_pants_leather_39v2","type":9,"armorType":2,"stats":[0,10,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":27692,"name":"Princess Theradras"}}]}, -{"id":65970,"name":"Band of Grandiose Delusions","icon":"inv_jewelry_ring_72","type":11,"stats":[0,5,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26976,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":1}, -{"id":65971,"name":"Band of Uldaman","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,9,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":40,"quality":3,"sources":[{"quest":{"id":2280,"name":"The Platinum Discs"}}]}, -{"id":65972,"name":"Warpwood Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[3,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":2.8,"ilvl":41,"quality":3,"sources":[{"quest":{"id":27104,"name":"Alzzin the Wildshaper"}}]}, -{"id":65973,"name":"Fras Siabi's Cigar Cutter","icon":"inv_axe_33","type":13,"weaponType":1,"handType":4,"stats":[11,0,17,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.3,"ilvl":44,"quality":3,"sources":[{"quest":{"id":27111,"name":"The Treasure of the Shen'dralar"}}]}, -{"id":65974,"name":"Discipline Rod","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":4,"handType":2,"stats":[5,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":54,"weaponDamageMax":101,"weaponSpeed":2.6,"ilvl":44,"quality":3,"sources":[{"quest":{"id":27148,"name":"School's Out Forever"}}]}, -{"id":65975,"name":"Chestguard of Redemption","icon":"inv_chest_mail_18v2","type":5,"armorType":3,"stats":[0,0,17,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"sources":[{"quest":{"id":27009,"name":"The Coldbringer"}}]}, -{"id":65976,"name":"Pauldrons of Tribute","icon":"inv_shoulder_145v2","type":3,"armorType":4,"stats":[9,0,13,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27125,"name":"King of the Gordok"}}],"factionRestriction":1}, -{"id":65977,"name":"Balnazzar's Horn","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":1,"stats":[0,0,7,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":31,"weaponDamageMax":58,"weaponSpeed":1.4,"ilvl":47,"quality":3,"sources":[{"quest":{"id":27208,"name":"The Dreadlord Balnazzar"}}]}, -{"id":65978,"name":"Electrified Leggings","icon":"inv_pants_mail_38v2","type":9,"armorType":3,"stats":[0,0,18,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":27070,"name":"A Fool's Errand"}}]}, -{"id":65979,"name":"Staff of the Unknown Road","icon":"inv_staff_15","type":13,"weaponType":8,"handType":4,"stats":[0,12,19,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":112,"weaponDamageMax":169,"weaponSpeed":3.3,"ilvl":49,"quality":3,"sources":[{"quest":{"id":27068,"name":"Chief Ukorz Sandscalp"}}]}, -{"id":65980,"name":"Dark Iron Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,8,13,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27578,"name":"Morgan's Fruition"}}],"factionRestriction":1}, -{"id":65981,"name":"War Master's Pauldrons","icon":"inv_shoulder_145","type":3,"armorType":4,"stats":[11,0,17,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":27440,"name":"Trolls, Ogres, and Orcs, Oh My!"}}]}, -{"id":65982,"name":"Sword of Nefarian's Hand","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[15,0,23,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":3.3,"ilvl":60,"quality":3,"sources":[{"quest":{"id":27445,"name":"General Drakkisath, Hand of Nefarian"}}]}, -{"id":65983,"name":"Cookie's Table Cloth","icon":"inv_misc_cape_15","type":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":27790,"name":"The Defias Kingpin"}}],"factionRestriction":1}, -{"id":65984,"name":"Breastplate of the Terrible Price","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27968,"name":"Fury of the Pack"}}],"factionRestriction":1}, -{"id":65985,"name":"Cleansed Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":26870,"name":"Cleansing the Caverns"}}]}, -{"id":65986,"name":"Shield Against the Evil Presence","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26882,"name":"Blackfathom Villainy"}}],"factionRestriction":1}, -{"id":65987,"name":"G-Team Belt","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,8,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26942,"name":"The G-Team"}}],"factionRestriction":1}, -{"id":65988,"name":"Helm of the Awakened","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26972,"name":"The Dark Side of the Light"}}],"factionRestriction":1}, -{"id":65989,"name":"Hogger's Shiny","icon":"inv_jewelry_ring_84","type":11,"stats":[0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":27739,"name":"The Gnoll King"}}],"factionRestriction":1}, -{"id":65990,"name":"Cloak of the False Champion","icon":"inv_misc_cape_18","type":4,"stats":[0,5,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26974,"name":"The False Champion"}}],"factionRestriction":1}, -{"id":65991,"name":"Boots of the Noble Path","icon":"inv_boots_mail_14v2","type":10,"armorType":3,"stats":[7,0,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"sources":[{"quest":{"id":26905,"name":"Agamaggan's Charge"}}]}, -{"id":65992,"name":"Pauldrons of the Promise","icon":"inv_shoulder_147v1","type":3,"armorType":3,"stats":[0,0,11,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":27692,"name":"Princess Theradras"}}]}, -{"id":65993,"name":"Warpwood Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,9,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":41,"quality":3,"sources":[{"quest":{"id":27104,"name":"Alzzin the Wildshaper"}}]}, -{"id":65994,"name":"Staff of Athen'a","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,17,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":102,"weaponDamageMax":154,"weaponSpeed":3.3,"ilvl":44,"quality":3,"sources":[{"quest":{"id":27111,"name":"The Treasure of the Shen'dralar"}}]}, -{"id":65995,"name":"Signet of the Darkmaster","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,9,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":44,"quality":3,"sources":[{"quest":{"id":27148,"name":"School's Out Forever"}}]}, -{"id":65996,"name":"Belt of Tyrannic Rule","icon":"inv_belt_96","type":8,"armorType":4,"stats":[9,0,13,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"sources":[{"quest":{"id":27009,"name":"The Coldbringer"}}]}, -{"id":65997,"name":"Tribute Gun","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,4,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.8,"ilvl":47,"quality":3,"sources":[{"quest":{"id":27125,"name":"King of the Gordok"}}],"factionRestriction":1}, -{"id":65998,"name":"Balnazzar's Hide","icon":"inv_misc_cape_08","type":4,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27208,"name":"The Dreadlord Balnazzar"}}]}, -{"id":65999,"name":"Pauldrons of Zul'Farrak","icon":"inv_shoulder_145v3","type":3,"armorType":4,"stats":[9,0,13,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":48,"quality":3,"sources":[{"quest":{"id":27070,"name":"A Fool's Errand"}}]}, -{"id":66000,"name":"Band of the Spire","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,13,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"quest":{"id":27440,"name":"Trolls, Ogres, and Orcs, Oh My!"}}]}, -{"id":66001,"name":"Aeyla's Staff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,23,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":3.3,"ilvl":60,"quality":3,"sources":[{"quest":{"id":27445,"name":"General Drakkisath, Hand of Nefarian"}}]}, -{"id":66002,"name":"Packleader's Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[4,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27968,"name":"Fury of the Pack"}}],"factionRestriction":1}, -{"id":66003,"name":"Pythas' Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[5,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":26870,"name":"Cleansing the Caverns"}}]}, -{"id":66004,"name":"Barechus' Greaves","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[7,0,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":29,"quality":3,"sources":[{"quest":{"id":26942,"name":"The G-Team"}}],"factionRestriction":1}, -{"id":66005,"name":"Interrogator's Shackles","icon":"inv_bracer_78","type":6,"armorType":3,"stats":[4,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26972,"name":"The Dark Side of the Light"}}],"factionRestriction":1}, -{"id":66006,"name":"Herod's Medallion","icon":"inv_jewelry_necklace_31","type":2,"stats":[5,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26974,"name":"The False Champion"}}],"factionRestriction":1}, -{"id":66007,"name":"Agamaggan's Silent Tear","icon":"inv_jewelry_ring_54","type":11,"stats":[0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":38,"quality":3,"sources":[{"quest":{"id":26905,"name":"Agamaggan's Charge"}}]}, -{"id":66008,"name":"Shield of Maraudon","icon":"inv_shield_08","type":13,"weaponType":7,"handType":3,"stats":[5,0,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":27692,"name":"Princess Theradras"}}]}, -{"id":66009,"name":"Koristrasza's Amulet","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,7,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":46,"quality":3,"sources":[{"quest":{"id":27009,"name":"The Coldbringer"}}]}, -{"id":66010,"name":"Star of the Fool","icon":"inv_throwingknife_07","type":14,"rangedWeaponType":5,"stats":[0,4,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":1.7,"ilvl":48,"quality":3,"sources":[{"quest":{"id":27070,"name":"A Fool's Errand"}}]}, -{"id":66011,"name":"Godfrey's Britches","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,7,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27998,"name":"Sweet, Merciless Revenge"}}],"factionRestriction":2}, -{"id":66012,"name":"Je'neu's Robes","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,10,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26888,"name":"Nightmare of the Deeps"}}],"factionRestriction":2}, -{"id":66013,"name":"Mantle of the Glorious Song","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,4,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3}, -{"id":66014,"name":"Vishas' Hood","icon":"inv_helmet_173","type":1,"armorType":1,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26950,"name":"The Dark Side of the Light"}}],"factionRestriction":2}, -{"id":66015,"name":"Houndmaster's Belt","icon":"inv_belt_87","type":8,"armorType":2,"stats":[0,6,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26959,"name":"Stripping Their Defenses"}}],"factionRestriction":2}, -{"id":66016,"name":"Monk's Leggings","icon":"inv_pants_cloth_39v4","type":9,"armorType":1,"stats":[0,0,13,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26962,"name":"Stripping Their Offense"}}],"factionRestriction":2}, -{"id":66017,"name":"Grasps of the Forsaken","icon":"inv_gauntlets_119v2","type":7,"armorType":3,"stats":[7,0,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26967,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":2}, -{"id":66018,"name":"Slippers of Tribute","icon":"inv_boots_robe_common_c_01","type":10,"armorType":1,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27128,"name":"King of the Gordok"}}],"factionRestriction":2}, -{"id":66019,"name":"Cookie's Meat Mallet","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":21,"weaponDamageMax":40,"weaponSpeed":2.6,"ilvl":17,"quality":3,"sources":[{"quest":{"id":27850,"name":"The Defias Kingpin"}}],"factionRestriction":2}, -{"id":66020,"name":"Sandals of Sacrifice","icon":"inv_boots_cloth_01","type":10,"armorType":2,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27998,"name":"Sweet, Merciless Revenge"}}],"factionRestriction":2}, -{"id":66021,"name":"Blackfathom Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26888,"name":"Nightmare of the Deeps"}}],"factionRestriction":2}, -{"id":66022,"name":"Ragefire Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,5,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":26858,"name":"Taragaman the Hungerer"}}],"factionRestriction":2}, -{"id":66023,"name":"Strapping Belt","icon":"inv_belt_87v1","type":8,"armorType":2,"stats":[0,0,8,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26950,"name":"The Dark Side of the Light"}}],"factionRestriction":2}, -{"id":66024,"name":"Shield of Comrades","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[4,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26959,"name":"Stripping Their Defenses"}}],"factionRestriction":2}, -{"id":66025,"name":"Spaulder of the Untrained","icon":"inv_shoulder_136v3","type":3,"armorType":2,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26962,"name":"Stripping Their Offense"}}],"factionRestriction":2}, -{"id":66026,"name":"Gift of the Banshee Queen","icon":"inv_jewelry_necklace_43","type":2,"stats":[0,0,8,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26967,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":2}, -{"id":66027,"name":"Wristbands of Tribute","icon":"inv_bracer_71v1","type":6,"armorType":2,"stats":[0,7,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27128,"name":"King of the Gordok"}}],"factionRestriction":2}, -{"id":66028,"name":"Cookie's Stirring Stick","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":19,"weaponDamageMax":37,"weaponSpeed":1.6,"ilvl":17,"quality":3,"sources":[{"quest":{"id":27850,"name":"The Defias Kingpin"}}],"factionRestriction":2}, -{"id":66029,"name":"Shadowfang Spaulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,4,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27998,"name":"Sweet, Merciless Revenge"}}],"factionRestriction":2}, -{"id":66030,"name":"Scales of Aku'mai","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,10,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26888,"name":"Nightmare of the Deeps"}}],"factionRestriction":2}, -{"id":66031,"name":"Hide Vest of the Hungerer","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,4,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":26858,"name":"Taragaman the Hungerer"}}],"factionRestriction":2}, -{"id":66032,"name":"Gloves of the \"Pure\"","icon":"inv_gauntlets_116v3","type":7,"armorType":2,"stats":[0,5,8,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26950,"name":"The Dark Side of the Light"}}],"factionRestriction":2}, -{"id":66033,"name":"Band of the Arcanist","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,7,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":33,"quality":3,"sources":[{"quest":{"id":26959,"name":"Stripping Their Defenses"}}],"factionRestriction":2}, -{"id":66034,"name":"Breastplate of the Scarlet Monastery","icon":"inv_chest_mail_19","type":5,"armorType":3,"stats":[0,0,13,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26962,"name":"Stripping Their Offense"}}],"factionRestriction":2}, -{"id":66035,"name":"Band of Wrath","icon":"inv_jewelry_ring_61","type":11,"stats":[0,5,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":39,"quality":3,"sources":[{"quest":{"id":26967,"name":"Battle for the Scarlet Monastery"}}],"factionRestriction":2}, -{"id":66036,"name":"Pauldrons of Tribute","icon":"inv_shoulder_145v2","type":3,"armorType":4,"stats":[9,0,13,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":47,"quality":3,"sources":[{"quest":{"id":27128,"name":"King of the Gordok"}}],"factionRestriction":2}, -{"id":66037,"name":"Cookie's Table Cloth","icon":"inv_misc_cape_15","type":4,"stats":[0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":27850,"name":"The Defias Kingpin"}}],"factionRestriction":2}, -{"id":66038,"name":"Breastplate of the Terrible Price","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,7,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27998,"name":"Sweet, Merciless Revenge"}}],"factionRestriction":2}, -{"id":66039,"name":"Shield Against the Evil Presence","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":28,"quality":3,"sources":[{"quest":{"id":26888,"name":"Nightmare of the Deeps"}}],"factionRestriction":2}, -{"id":66040,"name":"Searing Belt","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":26858,"name":"Taragaman the Hungerer"}}],"factionRestriction":2}, -{"id":66041,"name":"Scarlet Zealot's Helm","icon":"inv_helmet_187v3","type":1,"armorType":3,"stats":[0,0,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26950,"name":"The Dark Side of the Light"}}],"factionRestriction":2}, -{"id":66042,"name":"Velonara's Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,5,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26962,"name":"Stripping Their Offense"}}],"factionRestriction":2}, -{"id":66043,"name":"Tribute Gun","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,4,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.8,"ilvl":47,"quality":3,"sources":[{"quest":{"id":27128,"name":"King of the Gordok"}}],"factionRestriction":2}, -{"id":66044,"name":"Deathstalker Pauldrons","icon":"inv_shoulder_15","type":3,"armorType":3,"stats":[4,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":21,"quality":3,"sources":[{"quest":{"id":27998,"name":"Sweet, Merciless Revenge"}}],"factionRestriction":2}, -{"id":66045,"name":"Stone Guard Greaves","icon":"inv_pants_03","type":9,"armorType":3,"stats":[4,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3,"sources":[{"quest":{"id":26858,"name":"Taragaman the Hungerer"}}],"factionRestriction":2}, -{"id":66046,"name":"Interrogator's Shackles","icon":"inv_bracer_78","type":6,"armorType":3,"stats":[4,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":30,"quality":3,"sources":[{"quest":{"id":26950,"name":"The Dark Side of the Light"}}],"factionRestriction":2}, -{"id":66047,"name":"Herod's Medallion","icon":"inv_jewelry_necklace_31","type":2,"stats":[5,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":36,"quality":3,"sources":[{"quest":{"id":26962,"name":"Stripping Their Offense"}}],"factionRestriction":2}, -{"id":66048,"name":"Statue of the Paragon","icon":"inv_misc_statue_02","type":14,"rangedWeaponType":4,"stats":[5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"sources":[{"quest":{"id":27227,"name":"Lord Aurius Rivendare"}}]}, -{"id":66049,"name":"Book of the Paragon","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[0,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"sources":[{"quest":{"id":27227,"name":"Lord Aurius Rivendare"}}]}, -{"id":66050,"name":"Idol of the Paragon","icon":"inv_misc_statue_07","type":14,"rangedWeaponType":4,"stats":[0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"sources":[{"quest":{"id":27227,"name":"Lord Aurius Rivendare"}}]}, -{"id":66051,"name":"Relic of the Paragon","icon":"inv_ammo_bullet_08","type":14,"rangedWeaponType":4,"stats":[0,0,5,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":3,"sources":[{"quest":{"id":27227,"name":"Lord Aurius Rivendare"}}]}, -{"id":66247,"name":"Timeworn Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":7,"weaponDamageMax":11,"weaponSpeed":3.3,"ilvl":5,"quality":1,"sources":[{"quest":{"id":14204,"name":"From the Shadows"}}]}, -{"id":66439,"name":"Cry of the Wolf","icon":"inv_weapon_rifle_40","type":14,"rangedWeaponType":3,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":18,"weaponDamageMax":18,"weaponSpeed":2.8,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24593,"name":"Neither Human Nor Beast"}}]}, -{"id":66616,"name":"Cougar Pelt Wristwraps","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":1,"sources":[{"quest":{"id":26188,"name":"Mazzranache"}}],"factionRestriction":2}, -{"id":66660,"name":"Hammer of Controlled Fury","icon":"inv_mace_19","type":13,"weaponType":4,"handType":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":17,"weaponDamageMax":26,"weaponSpeed":3.3,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24593,"name":"Neither Human Nor Beast"}}]}, -{"id":66876,"name":"Sharp Edge of Balance","icon":"inv_axe_118","type":13,"weaponType":1,"handType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":6,"weaponDamageMax":12,"weaponSpeed":1.8,"ilvl":9,"quality":2,"sources":[{"quest":{"id":24593,"name":"Neither Human Nor Beast"}}]}, -{"id":66922,"name":"Perimeter Britches","icon":"inv_pants_cloth_41v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24469,"name":"Hold the Line!"}}],"factionRestriction":1}, -{"id":66923,"name":"Lent Hands","icon":"inv_gauntlets_102v2","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24469,"name":"Hold the Line!"}}],"factionRestriction":1}, -{"id":66925,"name":"Trogg Repeller Chainmail","icon":"inv_chest_mail_16v3","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1}, -{"id":66926,"name":"Trogg Repeller Chainmail","icon":"inv_pants_mail_36v3","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24469,"name":"Hold the Line!"}}],"factionRestriction":1}, -{"id":66928,"name":"Belt of So-Called Leaders","icon":"inv_belt_79v4","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24470,"name":"Give 'em What-For"}}],"factionRestriction":1}, -{"id":66929,"name":"Big Trogg Armbands","icon":"inv_bracer_74v2","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24470,"name":"Give 'em What-For"}}],"factionRestriction":1}, -{"id":66930,"name":"Boots of the Blameless","icon":"inv_boots_mail_11v3","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":2,"quality":1,"sources":[{"quest":{"id":24470,"name":"Give 'em What-For"}}],"factionRestriction":1}, -{"id":67108,"name":"Old Spectacles","icon":"inv_helmet_44","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":67154,"name":"Staff of the Unwelcome","icon":"inv_staff_21","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":34,"weaponSpeed":3.3,"ilvl":12,"quality":2,"sources":[{"quest":{"id":25267,"name":"Message for Garrosh"}}]}, -{"id":67155,"name":"Girdle of Service","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2}, -{"id":67156,"name":"Girdle of Servitude","icon":"inv_belt_45c","type":8,"armorType":3,"stats":[1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25267,"name":"Message for Garrosh"}}]}, -{"id":67157,"name":"Harness of Binding","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":12,"quality":2,"sources":[{"quest":{"id":25267,"name":"Message for Garrosh"}}]}, -{"id":67158,"name":"Donova's Fuzzy Robe","icon":"inv_chest_cloth_87v3","type":5,"armorType":1,"stats":[0,0,14,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28460,"name":"Threat of the Winterfall"}}]}, -{"id":67159,"name":"Furbolg Fur Bracers","icon":"inv_bracer_68v3","type":6,"armorType":2,"stats":[0,4,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28470,"name":"High Chief Winterfall"}}]}, -{"id":67160,"name":"Dagger of Suffering","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":1,"stats":[0,0,6,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28513,"name":"Pride of the Highborne"}}]}, -{"id":67161,"name":"Dagger of Wretched Spectres","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,4,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":56,"weaponSpeed":1.4,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28519,"name":"Pain of the Blood Elves"}}]}, -{"id":67162,"name":"E'ko Gatherer's Belt","icon":"inv_belt_91v3","type":8,"armorType":2,"stats":[0,0,11,6,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28540,"name":"Doin' De E'ko Magic"}}]}, -{"id":67163,"name":"Chop Chop Boots","icon":"inv_boots_leather_13v3","type":10,"armorType":2,"stats":[0,6,11,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28625,"name":"Chop Chop"}}]}, -{"id":67164,"name":"Lilith the Lithe's Little Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[0,11,15,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":3.3,"ilvl":52,"quality":2,"sources":[{"quest":{"id":28628,"name":"Ice Delivery"}}]}, -{"id":67165,"name":"Everlook Snow Shoes","icon":"inv_boots_cloth_34v3","type":10,"armorType":1,"stats":[0,0,11,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28722,"name":"Yetiphobia"}}]}, -{"id":67166,"name":"Belt of Bloating","icon":"inv_belt_91v3","type":8,"armorType":2,"stats":[0,9,11,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28614,"name":"Bearzerker"}}]}, -{"id":67167,"name":"Shardtooth Gloves","icon":"inv_gauntlets_110v2","type":7,"armorType":2,"stats":[0,0,11,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28639,"name":"Ursius"}}]}, -{"id":67168,"name":"Gloves of the Infernal Nocturnal","icon":"inv_gauntlets_111v2","type":7,"armorType":1,"stats":[0,0,11,8,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28782,"name":"A Bird of Legend"}}]}, -{"id":67169,"name":"Shy Breastplate","icon":"inv_chest_leather_29v2","type":5,"armorType":2,"stats":[0,0,15,10,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28742,"name":"Shy-Rotam"}}]}, -{"id":67170,"name":"Gourmand's Sash","icon":"inv_belt_92v2","type":8,"armorType":1,"stats":[0,0,11,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28828,"name":"You Gotta Have Eggs"}}]}, -{"id":67171,"name":"Curtainfire Mantle","icon":"inv_shoulder_141v2","type":3,"armorType":1,"stats":[0,0,11,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28710,"name":"Spray it One More Time"}}]}, -{"id":67172,"name":"Cowl of Whistling Winds","icon":"inv_helmet_181v2","type":1,"armorType":1,"stats":[0,0,15,12,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28831,"name":"Damn You, Frostilicus"}}]}, -{"id":67173,"name":"Haleh's Warm Legwraps","icon":"inv_pants_cloth_40v2","type":9,"armorType":1,"stats":[0,0,15,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28840,"name":"Winterwater"}}]}, -{"id":67174,"name":"Bracers of Mazthoril","icon":"inv_bracer_71v1","type":6,"armorType":2,"stats":[0,9,9,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":28842,"name":"Umbranse's Deliverance"}}]}, -{"id":67175,"name":"Hot Spring Sandals","icon":"inv_boots_leather_13v3","type":10,"armorType":2,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28460,"name":"Threat of the Winterfall"}}]}, -{"id":67176,"name":"Princess Zoe's Old Hunting Gloves","icon":"inv_gauntlets_109v2","type":7,"armorType":3,"stats":[0,8,11,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28470,"name":"High Chief Winterfall"}}]}, -{"id":67177,"name":"Amulet of the Kaldorei Spirit","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,4,8,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28513,"name":"Pride of the Highborne"}}]}, -{"id":67178,"name":"Blade of Wretched Spirits","icon":"inv_sword_draenei_08","type":13,"weaponType":9,"handType":2,"stats":[5,0,6,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":2.6,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28519,"name":"Pain of the Blood Elves"}}]}, -{"id":67179,"name":"Heart Grippers","icon":"inv_gauntlets_110v3","type":7,"armorType":2,"stats":[0,6,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28540,"name":"Doin' De E'ko Magic"}}]}, -{"id":67180,"name":"Treant-Bark Shoes","icon":"inv_boots_mail_12v2","type":10,"armorType":3,"stats":[0,7,11,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28625,"name":"Chop Chop"}}]}, -{"id":67181,"name":"Kilram's Killer","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,4,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":2.6,"ilvl":52,"quality":2,"sources":[{"quest":{"id":28628,"name":"Ice Delivery"}}]}, -{"id":67182,"name":"Helm of Yetiphobia","icon":"inv_helmet_180v3","type":1,"armorType":2,"stats":[0,0,15,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28722,"name":"Yetiphobia"}}]}, -{"id":67183,"name":"Bearzerker's Spaulders","icon":"inv_shoulder_138v2","type":3,"armorType":3,"stats":[0,9,11,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28614,"name":"Bearzerker"}}]}, -{"id":67184,"name":"Ursius's Cap","icon":"inv_helmet_180v1","type":1,"armorType":2,"stats":[0,12,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28639,"name":"Ursius"}}]}, -{"id":67185,"name":"Hell-Hoot Mantle","icon":"inv_shoulder_140v2","type":3,"armorType":2,"stats":[0,0,11,7,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28782,"name":"A Bird of Legend"}}]}, -{"id":67186,"name":"Shy Shrug","icon":"inv_shoulder_140v1","type":3,"armorType":2,"stats":[0,8,11,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28742,"name":"Shy-Rotam"}}]}, -{"id":67187,"name":"Snow Nest Bracers","icon":"inv_bracer_68v2","type":6,"armorType":2,"stats":[0,0,9,6,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28828,"name":"You Gotta Have Eggs"}}]}, -{"id":67188,"name":"Fumigator's Legguards","icon":"inv_pants_plate_39v2","type":9,"armorType":4,"stats":[12,0,15,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28710,"name":"Spray it One More Time"}}]}, -{"id":67189,"name":"Frostilicus's Hide","icon":"inv_pants_leather_41v2","type":9,"armorType":2,"stats":[0,0,15,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28831,"name":"Damn You, Frostilicus"}}]}, -{"id":67190,"name":"Ice Avatar Legguards","icon":"inv_pants_leather_41v1","type":9,"armorType":2,"stats":[0,12,15,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28840,"name":"Winterwater"}}]}, -{"id":67191,"name":"Dreamcatcher Helm","icon":"inv_helmet_184v1","type":1,"armorType":3,"stats":[0,14,21,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":28842,"name":"Umbranse's Deliverance"}}]}, -{"id":67192,"name":"Snowden Legwraps","icon":"inv_pants_mail_37","type":9,"armorType":3,"stats":[0,0,14,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28460,"name":"Threat of the Winterfall"}}]}, -{"id":67193,"name":"Ambush Armguards","icon":"inv_bracer_65v2","type":6,"armorType":4,"stats":[5,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28470,"name":"High Chief Winterfall"}}]}, -{"id":67194,"name":"Zin-Malor Ring","icon":"inv_jewelry_ring_56","type":11,"stats":[4,0,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28513,"name":"Pride of the Highborne"}}]}, -{"id":67195,"name":"Mace of the Sin'dorei Spirit","icon":"inv_mace_08","type":13,"weaponType":4,"handType":1,"stats":[0,0,6,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":34,"weaponDamageMax":63,"weaponSpeed":1.6,"ilvl":51,"quality":2,"sources":[{"quest":{"id":28519,"name":"Pain of the Blood Elves"}}]}, -{"id":67196,"name":"Witch Doctor's Spaulders","icon":"inv_shoulder_138","type":3,"armorType":3,"stats":[0,0,11,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28540,"name":"Doin' De E'ko Magic"}}]}, -{"id":67197,"name":"Rocksnitch Helmet","icon":"inv_helmet_177v2","type":1,"armorType":4,"stats":[11,0,15,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28625,"name":"Chop Chop"}}]}, -{"id":67198,"name":"Scourgebane's Sword","icon":"inv_sword_111","type":13,"weaponType":9,"handType":4,"stats":[9,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":106,"weaponDamageMax":160,"weaponSpeed":3.3,"ilvl":52,"quality":2,"sources":[{"quest":{"id":28628,"name":"Ice Delivery"}}]}, -{"id":67199,"name":"Prankster's Fingers","icon":"inv_gauntlets_109","type":7,"armorType":3,"stats":[0,0,11,8,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28722,"name":"Yetiphobia"}}]}, -{"id":67200,"name":"Burndl's Bundled Boots","icon":"inv_boots_plate_20v2","type":10,"armorType":4,"stats":[9,0,11,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28614,"name":"Bearzerker"}}]}, -{"id":67201,"name":"Bear Oiled Chainmail","icon":"inv_chest_mail_17v1","type":5,"armorType":3,"stats":[0,0,15,9,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28639,"name":"Ursius"}}]}, -{"id":67202,"name":"Vest of the Smoking Pit","icon":"inv_chest_leather_29v1","type":5,"armorType":2,"stats":[0,11,15,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28782,"name":"A Bird of Legend"}}]}, -{"id":67203,"name":"Frostsaber Helm","icon":"inv_helmet_178v1","type":1,"armorType":3,"stats":[0,0,15,9,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28742,"name":"Shy-Rotam"}}]}, -{"id":67204,"name":"Chillwind Scale Armguards","icon":"inv_bracer_66v1","type":6,"armorType":3,"stats":[0,0,9,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28828,"name":"You Gotta Have Eggs"}}]}, -{"id":67205,"name":"Ring of Pesticide","icon":"inv_jewelry_ring_44","type":11,"stats":[0,6,9,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28710,"name":"Spray it One More Time"}}]}, -{"id":67206,"name":"Owl Wing Belt","icon":"inv_belt_89v1","type":8,"armorType":3,"stats":[0,0,11,8,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28831,"name":"Damn You, Frostilicus"}}]}, -{"id":67207,"name":"Winterwater Cloak","icon":"inv_misc_cape_05","type":4,"stats":[6,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28840,"name":"Winterwater"}}]}, -{"id":67208,"name":"Nam's Gauntlets","icon":"inv_gauntlets_117","type":7,"armorType":4,"stats":[13,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":55,"quality":3,"sources":[{"quest":{"id":28842,"name":"Umbranse's Deliverance"}}]}, -{"id":67209,"name":"Winterfall Belt","icon":"inv_belt_88v2","type":8,"armorType":4,"stats":[8,0,11,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":2,"sources":[{"quest":{"id":28460,"name":"Threat of the Winterfall"}}]}, -{"id":67210,"name":"Wand of Sudden Changes","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,5,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":1.6,"ilvl":50,"quality":2,"sources":[{"quest":{"id":28470,"name":"High Chief Winterfall"}}]}, -{"id":67211,"name":"Orb of Kel'theril","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,8,5,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28519,"name":"Pain of the Blood Elves"}}]}, -{"id":67212,"name":"Bear Hunter's Belt","icon":"inv_belt_89v2","type":8,"armorType":3,"stats":[0,6,11,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":51,"quality":2,"sources":[{"quest":{"id":28540,"name":"Doin' De E'ko Magic"}}]}, -{"id":67213,"name":"Frostleaf Band","icon":"inv_jewelry_ring_77","type":11,"stats":[0,0,8,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28625,"name":"Chop Chop"}}]}, -{"id":67214,"name":"Scourgebane's Slicer","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[4,0,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":105,"weaponSpeed":2.6,"ilvl":52,"quality":2,"sources":[{"quest":{"id":28628,"name":"Ice Delivery"}}]}, -{"id":67215,"name":"Amusing Pauldrons","icon":"inv_shoulder_137v2","type":3,"armorType":4,"stats":[8,0,11,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28722,"name":"Yetiphobia"}}]}, -{"id":67216,"name":"Firewater Amulet","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,8,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2,"sources":[{"quest":{"id":28614,"name":"Bearzerker"}}]}, -{"id":67217,"name":"Bracers of Considerable Influence","icon":"inv_bracer_66v3","type":6,"armorType":3,"stats":[0,6,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28639,"name":"Ursius"}}]}, -{"id":67218,"name":"Legend Eater Boots","icon":"inv_boots_mail_12v1","type":10,"armorType":3,"stats":[0,0,11,7,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28782,"name":"A Bird of Legend"}}]}, -{"id":67219,"name":"Breastplate of the Fifth Hunter","icon":"inv_chest_mail_17v3","type":5,"armorType":3,"stats":[0,9,15,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28742,"name":"Shy-Rotam"}}]}, -{"id":67220,"name":"Goodgrub Cloak","icon":"inv_misc_cape_02","type":4,"stats":[0,5,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28828,"name":"You Gotta Have Eggs"}}]}, -{"id":67221,"name":"Breastplate of the Poetic Orc","icon":"inv_chest_plate28","type":5,"armorType":4,"stats":[11,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":54,"quality":2,"sources":[{"quest":{"id":28831,"name":"Damn You, Frostilicus"}}]}, -{"id":67222,"name":"Umbranse's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,21,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":125,"weaponDamageMax":188,"weaponSpeed":3.3,"ilvl":55,"quality":3,"sources":[{"quest":{"id":28842,"name":"Umbranse's Deliverance"}}]}, -{"id":67223,"name":"Umi's Masterful Shooter","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,2,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":2.8,"ilvl":52,"quality":2,"sources":[{"quest":{"id":28722,"name":"Yetiphobia"}}]}, -{"id":67224,"name":"Morcott's Bow","icon":"inv_weapon_bow_57","type":14,"rangedWeaponType":1,"stats":[3,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":80,"weaponDamageMax":150,"weaponSpeed":2.8,"ilvl":53,"quality":2,"sources":[{"quest":{"id":28639,"name":"Ursius"}}]}, -{"id":67225,"name":"Hoot-Hunter's Leggings","icon":"inv_pants_mail_37v3","type":9,"armorType":3,"stats":[0,11,15,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28782,"name":"A Bird of Legend"}}]}, -{"id":67226,"name":"Corpse Dragger's Shield","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[6,0,9,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28742,"name":"Shy-Rotam"}}]}, -{"id":67227,"name":"Chimaera Heart Pendant","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[5,0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":53,"quality":2,"sources":[{"quest":{"id":28828,"name":"You Gotta Have Eggs"}}]}, -{"id":67228,"name":"Jadrag's Slicers","icon":"inv_weapon_shortblade_14","type":14,"rangedWeaponType":5,"stats":[0,3,5,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":49,"weaponDamageMax":93,"weaponSpeed":1.7,"ilvl":54,"quality":2,"sources":[{"quest":{"id":28831,"name":"Damn You, Frostilicus"}}]}, -{"id":67388,"name":"String of Alligator Teeth","icon":"inv_misc_bonenecklace","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1}, -{"id":68012,"name":"Gug's Mug","icon":"inv_drink_04","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":5,"weaponDamageMax":11,"weaponSpeed":1.7,"ilvl":9,"quality":2}, -{"id":68052,"name":"Kargath Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,13,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27593,"name":"Rebirth of the K.E.F."}}],"factionRestriction":2}, -{"id":68053,"name":"Thaurissan's Breastplate","icon":"inv_chest_plate30","type":5,"armorType":4,"stats":[15,0,22,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27593,"name":"Rebirth of the K.E.F."}}],"factionRestriction":2}, -{"id":68054,"name":"Dark Iron Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,8,13,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"quest":{"id":27593,"name":"Rebirth of the K.E.F."}}],"factionRestriction":2}, -{"id":68194,"name":"Oggleflint's Inspirer","icon":"inv_misc_bone_01","type":13,"weaponType":4,"handType":2,"stats":[3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":18,"quality":3}, -{"id":68195,"name":"Bazzalan's Blade","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":22,"weaponDamageMax":42,"weaponSpeed":2.6,"ilvl":18,"quality":3}, -{"id":68724,"name":"Broken Barn Door","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":68730,"name":"Broken Barn Door","icon":"inv_shield_11","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10}, -{"id":68743,"name":"Imbued Infantry Cloak","icon":"inv_misc_cape_11","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2}, -{"id":68744,"name":"Imbued Pioneer Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":9,"quality":2}, -{"id":68745,"name":"Imbued Primal Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2}, -{"id":68746,"name":"Imbued Primal Cape","icon":"inv_misc_cape_03","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":8,"quality":2}, -{"id":68747,"name":"Imbued Disciple's Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68748,"name":"Imbued Disciple's Cloak","icon":"inv_misc_cape_10","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68749,"name":"Imbued Disciple's Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68750,"name":"Imbued Pioneer Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68751,"name":"Imbued Pioneer Bracers","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68752,"name":"Imbued Infantry Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68753,"name":"Imbued Infantry Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":10,"quality":2}, -{"id":68754,"name":"Imbued Disciple's Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68755,"name":"Imbued Disciple's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":1,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68756,"name":"Imbued Simple Cape","icon":"inv_misc_cape_22","type":4,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68757,"name":"Imbued Pioneer Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68758,"name":"Imbued Pioneer Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68759,"name":"Imbued Gypsy Cloak","icon":"inv_misc_cape_17","type":4,"stats":[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68760,"name":"Imbued Infantry Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68761,"name":"Imbued Infantry Boots","icon":"inv_boots_plate_01","type":10,"armorType":3,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68762,"name":"Imbued Cadet Cloak","icon":"inv_misc_cape_01","type":4,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":11,"quality":2}, -{"id":68797,"name":"Stendel's Wedding Band","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":3}, -{"id":69216,"name":"Wild Rider's Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":29111,"name":"Mor'shan Caravan Delivery"}}],"factionRestriction":2}, -{"id":69218,"name":"Sludge Fen Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":29089,"name":"Sludge Beast!"}}],"factionRestriction":2}, -{"id":69219,"name":"Sacrificial Blade","icon":"inv_weapon_shortblade_08","type":13,"weaponType":2,"handType":2,"stats":[0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":8,"weaponDamageMax":16,"weaponSpeed":1.4,"ilvl":17,"quality":2,"sources":[{"quest":{"id":29112,"name":"Demon Seed"}}],"factionRestriction":2}, -{"id":69220,"name":"Nozzlepot's Vest","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":16,"quality":2,"sources":[{"quest":{"id":29089,"name":"Sludge Beast!"}}],"factionRestriction":2}, -{"id":69221,"name":"Mor'shan Caravaneer's Leggings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":17,"quality":3,"sources":[{"quest":{"id":29111,"name":"Mor'shan Caravan Delivery"}}],"factionRestriction":2}, -{"id":69222,"name":"Kadrak's Axe","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":60,"weaponSpeed":3.3,"ilvl":17,"quality":3,"sources":[{"quest":{"id":29111,"name":"Mor'shan Caravan Delivery"}}],"factionRestriction":2}, -{"id":69223,"name":"Emergency Hatchet","icon":"inv_axe_117","type":13,"weaponType":1,"handType":2,"stats":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":15,"weaponDamageMax":28,"weaponSpeed":2.6,"ilvl":16,"quality":2,"sources":[{"quest":{"id":29094,"name":"The Short Way Home"}}],"factionRestriction":2}, -{"id":69262,"name":"Black Ice","icon":"inv_misc_cutgemnormal2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"sources":[{"quest":{}}]}, -{"id":69819,"name":"Vrykul Drinking Horn Helm","icon":"inv_helmet_130","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":69861,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"factionRestriction":1}, -{"id":69862,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":3,"sources":[{"soldBy":{"npcId":12795,"npcName":"First Sergeant Hola'mahi","zoneId":1637}}],"factionRestriction":2}, -{"id":69863,"name":"Golden Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{}}]}, -{"id":69864,"name":"Tarnished Crown","icon":"inv_crown_02","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{}}]}, -{"id":69865,"name":"Gem Studded Bracelets","icon":"inv_jewelry_ring_02","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"quest":{}}]}, -{"id":69887,"name":"Burnished Helm of Might","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[68,0,103,0,0,0,0,0,43,0,47,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":69888,"name":"Burnished Legplates of Might","icon":"inv_pants_04","type":9,"armorType":4,"stats":[68,0,103,0,0,40,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":69889,"name":"Burnished Breastplate of Might","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[68,0,103,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":69890,"name":"Burnished Pauldrons of Might","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":69892,"name":"Ripped Sandstorm Cloak","icon":"inv_misc_cape_06","type":4,"stats":[38,0,57,0,0,19,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":7}, -{"id":69893,"name":"Bloodsoaked Skullforge Reaver","icon":"inv_sword_12","type":13,"weaponType":9,"handType":1,"stats":[29,0,44,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.8,"ilvl":1,"quality":7}, -{"id":69916,"name":"Trollbane (Daakara)","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":358,"weaponDamageMax":537,"weaponSpeed":3.6,"ilvl":132,"quality":4}, -{"id":70104,"name":"Empty Purple Brewfest Stein","icon":"inv_misc_beer_07","type":13,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3,"weaponDamageMax":10,"weaponSpeed":2.5,"ilvl":5,"quality":3,"unique":true}, -{"id":70911,"name":"Winter Veil Knife","icon":"inv_knife_1h_common_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":70923,"name":"Gaudy Winter Veil Sweater","icon":"inv_shirt_09","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":71037,"name":"Black Diamond Ring","icon":"inv_misc_cutgemnormal2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true,"sources":[{"soldBy":{"npcId":18756,"npcName":"Haris Pilton","zoneId":3703}}]}, -{"id":71713,"name":"Stave Icecrown Raid D02 Green","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4,"heroic":true}, -{"id":71969,"name":"Darkmoon Mallet","icon":"inv_hammer_32","type":13,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":3,"ilvl":1,"quality":1,"unique":true}, -{"id":72098,"name":"Darkmoon Rifle","icon":"inv_weapon_rifle_22","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":3,"weaponSpeed":2.8,"ilvl":1}, -{"id":72101,"name":"Black Silk Vest","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":2,"sources":[{"crafted":{"profession":11,"spellId":102171}}]}, -{"id":72621,"name":"Magesoul Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72622,"name":"Magesoul Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72623,"name":"Magesoul Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72624,"name":"Magesoul Hood","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,0,53,0,0,0,65,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72625,"name":"Magesoul Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72626,"name":"Magesoul Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72627,"name":"Magesoul Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72628,"name":"Magesoul Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72638,"name":"Dreadsoul Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72639,"name":"Dreadsoul Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72640,"name":"Dreadsoul Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72641,"name":"Dreadsoul Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72642,"name":"Dreadsoul Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72643,"name":"Dreadsoul Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,0,34,0,0,0,51,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72644,"name":"Dreadsoul Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72645,"name":"Dreadsoul Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72646,"name":"Seraphic Boots","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72647,"name":"Seraphic Gloves","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,48,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72648,"name":"Seraphic Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,46,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72649,"name":"Seraphic Pants","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72650,"name":"Seraphic Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72651,"name":"Seraphic Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72652,"name":"Seraphic Sash","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,0,39,0,0,0,48,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72653,"name":"Seraphic Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72655,"name":"Seraphic Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72656,"name":"Seraphic Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72657,"name":"Seraphic Hood","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,46,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72658,"name":"Seraphic Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72659,"name":"Seraphic Vestments","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,69,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72660,"name":"Seraphic Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,51,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72661,"name":"Seraphic Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72662,"name":"Seraphic Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72664,"name":"Shadowstalking Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72665,"name":"Shadowstalking Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,67,101,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72666,"name":"Shadowstalking Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,67,101,0,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72667,"name":"Shadowstalking Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,91,136,0,0,0,0,0,46,0,0,69,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72668,"name":"Shadowstalking Britches","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,91,136,0,0,46,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72669,"name":"Shadowstalking Shoulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,67,101,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72670,"name":"Shadowstalking Waistband","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,67,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72671,"name":"Shadowstalking Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,50,76,0,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72672,"name":"Wildsoul Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,91,136,0,0,0,53,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72673,"name":"Wildsoul Footpads","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,67,101,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72674,"name":"Wildsoul Handguards","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,67,101,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72675,"name":"Wildsoul Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,91,136,0,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72676,"name":"Wildsoul Legguards","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,91,136,0,0,0,69,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72677,"name":"Wildsoul Pauldrons","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,67,101,0,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72678,"name":"Wildsoul Cord","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,67,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72679,"name":"Wildsoul Cuffs","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,50,76,0,0,38,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72681,"name":"Wildsoul Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,136,91,53,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72682,"name":"Wildsoul Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72683,"name":"Wildsoul Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,101,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72684,"name":"Wildsoul Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,136,91,53,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72685,"name":"Wildsoul Britches","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,0,136,91,0,0,69,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72686,"name":"Wildsoul Shoulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,101,67,39,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72687,"name":"Wildsoul Waistband","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,101,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72688,"name":"Wildsoul Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72689,"name":"Wildsoul Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,136,91,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72690,"name":"Wildsoul Treads","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72691,"name":"Wildsoul Grips","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72692,"name":"Wildsoul Headpiece","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72693,"name":"Wildsoul Leggings","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72694,"name":"Wildsoul Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,101,67,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72695,"name":"Wildsoul Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72696,"name":"Wildsoul Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,76,50,0,38,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72698,"name":"Stormbinder Chestguard","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,91,136,0,0,0,0,0,61,0,0,61,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72699,"name":"Stormbinder Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,67,101,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72700,"name":"Stormbinder Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,67,101,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72701,"name":"Stormbinder Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72702,"name":"Stormbinder Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,91,136,0,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72703,"name":"Stormbinder Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,67,101,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72704,"name":"Stormbinder Waistguard","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,67,101,0,0,0,34,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72705,"name":"Stormbinder Armguard","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,50,76,0,0,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72889,"name":"Stormbinder Tunic","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72890,"name":"Stormbinder Boots","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72891,"name":"Stormbinder Gloves","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,101,67,0,0,48,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72892,"name":"Stormbinder Coif","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72893,"name":"Stormbinder Legwraps","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,136,91,46,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72894,"name":"Stormbinder Pauldrons","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,101,67,0,0,51,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72895,"name":"Stormbinder Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,0,101,67,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72896,"name":"Stormbinder Armbands","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72902,"name":"Stormbinder Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,136,91,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72903,"name":"Stormbinder Sabatons","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,0,101,67,0,0,0,45,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72904,"name":"Stormbinder Grips","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72905,"name":"Stormbinder Cowl","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,0,136,91,53,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72906,"name":"Stormbinder Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,136,91,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72907,"name":"Stormbinder Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72908,"name":"Stormbinder Girdle","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72909,"name":"Stormbinder Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72910,"name":"Beastsoul Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72911,"name":"Beastsoul Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,67,101,0,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72912,"name":"Beastsoul Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,67,101,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72913,"name":"Beastsoul Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,91,136,0,0,53,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72914,"name":"Beastsoul Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,91,136,0,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72915,"name":"Beastsoul Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,67,101,0,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72916,"name":"Beastsoul Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,67,101,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72917,"name":"Beastsoul Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,50,76,0,0,0,30,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72918,"name":"Ebonsoul Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72919,"name":"Ebonsoul Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72920,"name":"Ebonsoul Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72921,"name":"Ebonsoul Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,61,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72922,"name":"Ebonsoul Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72923,"name":"Ebonsoul Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,39,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72924,"name":"Ebonsoul Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72925,"name":"Ebonsoul Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72929,"name":"Ebonsoul Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,53,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72930,"name":"Ebonsoul Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72931,"name":"Ebonsoul Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,39,0,48,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72932,"name":"Ebonsoul Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72933,"name":"Ebonsoul Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,46,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72934,"name":"Ebonsoul Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,39,0,0,48,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72935,"name":"Ebonsoul Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72936,"name":"Ebonsoul Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72937,"name":"Valiant Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,61,0,61,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72938,"name":"Valiant Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72939,"name":"Valiant Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72940,"name":"Valiant Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,0,65,53,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72941,"name":"Valiant Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,69,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72942,"name":"Valiant Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72943,"name":"Valiant Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72944,"name":"Valiant Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72945,"name":"Valiant Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72946,"name":"Valiant Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72947,"name":"Valiant Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72948,"name":"Valiant Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72949,"name":"Valiant Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72950,"name":"Valiant Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72951,"name":"Valiant Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72952,"name":"Valiant Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72955,"name":"Zealous Battleplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72956,"name":"Zealous Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72957,"name":"Zealous Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72958,"name":"Zealous Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,0,0,53,0,0,65,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72959,"name":"Zealous Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72960,"name":"Zealous Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72961,"name":"Zealous Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,34,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72962,"name":"Zealous Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72963,"name":"Zealous Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72964,"name":"Zealous Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72965,"name":"Zealous Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72966,"name":"Zealous Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72967,"name":"Zealous Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72968,"name":"Zealous Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72969,"name":"Zealous Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72970,"name":"Zealous Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,0,0,36,30,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72971,"name":"Zealous Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,136,91,61,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72972,"name":"Zealous Boots","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[0,0,101,67,0,0,48,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72973,"name":"Zealous Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,101,67,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72974,"name":"Zealous Headpiece","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72975,"name":"Zealous Leggings","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,136,91,0,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72976,"name":"Zealous Spaulders","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72977,"name":"Zealous Belt","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,101,67,0,0,0,39,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72978,"name":"Zealous Armplates","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72980,"name":"Valiant Sword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.4,"ilvl":232,"quality":2}, -{"id":72981,"name":"Zealous Sword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.4,"ilvl":232,"quality":2}, -{"id":72982,"name":"Valiant Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[50,0,76,0,0,0,0,0,0,30,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72983,"name":"Zealous Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[50,0,76,0,0,0,0,0,0,36,0,30,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72984,"name":"Zealous Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,0,0,0,30,0,0,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":72989,"name":"Zealous Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,58,39,28,0,0,23,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.4,"ilvl":232,"quality":2}, -{"id":72990,"name":"Ebonsoul Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":817,"weaponSpeed":3.6,"ilvl":232,"quality":2}, -{"id":72991,"name":"Ebonsoul Maul","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,0,0,0,53,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":817,"weaponSpeed":3.6,"ilvl":232,"quality":2}, -{"id":72992,"name":"Valiant Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[91,0,136,0,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":817,"weaponSpeed":3.6,"ilvl":232,"quality":2}, -{"id":72993,"name":"Zealous Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[91,0,136,0,0,0,53,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":817,"weaponSpeed":3.6,"ilvl":232,"quality":2}, -{"id":72994,"name":"Ebonsoul Blade","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":2.6,"ilvl":232,"quality":2}, -{"id":72995,"name":"Shadowstalking Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":1,"stats":[0,39,58,0,0,0,0,28,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":183,"weaponDamageMax":340,"weaponSpeed":1.8,"ilvl":232,"quality":2}, -{"id":72996,"name":"Shadowstalking Shiv","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":3,"stats":[0,39,58,0,0,0,23,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":142,"weaponDamageMax":265,"weaponSpeed":1.4,"ilvl":232,"quality":2}, -{"id":72997,"name":"Shadowstalking Sword","icon":"inv_sword_110","type":13,"weaponType":9,"handType":1,"stats":[0,39,58,0,0,0,0,26,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":2.6,"ilvl":232,"quality":2}, -{"id":72998,"name":"Stormbinder Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,39,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":2.6,"ilvl":232,"quality":2}, -{"id":72999,"name":"Valiant Maul","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":544,"weaponDamageMax":817,"weaponSpeed":3.6,"ilvl":232,"quality":2}, -{"id":73000,"name":"Beastsoul Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,28,43,0,0,0,20,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":397,"weaponDamageMax":738,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73001,"name":"Beastsoul Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,91,136,0,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73002,"name":"Stormbinder Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,58,39,26,0,0,26,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.4,"ilvl":232,"quality":2}, -{"id":73003,"name":"Stormbinder Gavel","icon":"inv_mace_67","type":13,"weaponType":4,"handType":1,"stats":[0,0,58,39,0,0,0,23,0,0,0,28,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.4,"ilvl":232,"quality":2}, -{"id":73004,"name":"Stormbinder Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,30,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73005,"name":"Stormbinder Aegis","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,0,0,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73006,"name":"Magesoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73007,"name":"Dreadsoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73008,"name":"Seraphic Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,65,0,0,53,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73009,"name":"Seraphic Stave","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,65,0,0,0,53,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73010,"name":"Wildsoul Stave","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73011,"name":"Wildsoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,53,0,0,65,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73012,"name":"Wildsoul Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,91,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3,"ilvl":232,"quality":2}, -{"id":73013,"name":"Zealous Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73014,"name":"Zealous Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73015,"name":"Zealous Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73016,"name":"Wildsoul Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73017,"name":"Wildsoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73018,"name":"Zealous Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73019,"name":"Zealous Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73020,"name":"Zealous Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73021,"name":"Zealous Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73022,"name":"Zealous Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73023,"name":"Zealous Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73024,"name":"Wildsoul Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73025,"name":"Wildsoul Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73026,"name":"Wildsoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73027,"name":"Wildsoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73042,"name":"Zealous Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73060,"name":"Zealous Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73061,"name":"Zealous Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73062,"name":"Zealous Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73063,"name":"Zealous Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73064,"name":"Zealous Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73065,"name":"Wildsoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73066,"name":"Wildsoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73067,"name":"Wildsoul Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73068,"name":"Wildsoul Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73101,"name":"Magesoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73102,"name":"Magesoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73103,"name":"Magesoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73104,"name":"Magesoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73105,"name":"Magesoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73106,"name":"Dreadsoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73107,"name":"Dreadsoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73108,"name":"Dreadsoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73109,"name":"Dreadsoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73110,"name":"Dreadsoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73111,"name":"Seraphic Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73112,"name":"Seraphic Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73113,"name":"Seraphic Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73114,"name":"Seraphic Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73115,"name":"Seraphic Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73116,"name":"Seraphic Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73117,"name":"Seraphic Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73118,"name":"Seraphic Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73119,"name":"Seraphic Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73120,"name":"Seraphic Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73121,"name":"Shadowstalking Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73122,"name":"Shadowstalking Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73123,"name":"Shadowstalking Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73124,"name":"Shadowstalking Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73125,"name":"Shadowstalking Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73126,"name":"Wildsoul Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73127,"name":"Wildsoul Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73128,"name":"Wildsoul Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73129,"name":"Wildsoul Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73130,"name":"Wildsoul Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73131,"name":"Stormbinder Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73132,"name":"Stormbinder Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73133,"name":"Stormbinder Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73134,"name":"Stormbinder Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73135,"name":"Stormbinder Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73136,"name":"Stormbinder Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73137,"name":"Stormbinder Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73138,"name":"Stormbinder Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73139,"name":"Stormbinder Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73140,"name":"Stormbinder Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73141,"name":"Stormbinder Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73142,"name":"Stormbinder Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73143,"name":"Stormbinder Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73144,"name":"Stormbinder Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73145,"name":"Stormbinder Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73146,"name":"Beastsoul Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73147,"name":"Beastsoul Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73148,"name":"Beastsoul Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73149,"name":"Beastsoul Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73150,"name":"Beastsoul Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73151,"name":"Ebonsoul Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73152,"name":"Ebonsoul Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73153,"name":"Ebonsoul Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73154,"name":"Ebonsoul Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73155,"name":"Ebonsoul Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73156,"name":"Ebonsoul Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73157,"name":"Ebonsoul Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73158,"name":"Ebonsoul Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73159,"name":"Ebonsoul Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73160,"name":"Ebonsoul Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73161,"name":"Valiant Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73162,"name":"Valiant Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73163,"name":"Valiant Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73164,"name":"Valiant Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73165,"name":"Valiant Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73166,"name":"Valiant Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73167,"name":"Valiant Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73168,"name":"Valiant Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73169,"name":"Valiant Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73170,"name":"Valiant Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73306,"name":"Wildsoul Cloak of Rage","icon":"inv_misc_cape_10","type":4,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73307,"name":"Wildsoul Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73308,"name":"Wildsoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73309,"name":"Valiant Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73310,"name":"Valiant Cloak of Battle","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73311,"name":"Stormbinder Cloak of Rage","icon":"inv_misc_cape_10","type":4,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73312,"name":"Stormbinder Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73313,"name":"Stormbinder Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73314,"name":"Beastsoul Cloak of Rage","icon":"inv_misc_cape_10","type":4,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73315,"name":"Ebonsoul Cloak of Battle","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73316,"name":"Ebonsoul Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73317,"name":"Zealous Cloak of Battle","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73318,"name":"Zealous Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73319,"name":"Zealous Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73320,"name":"Shadowstalking Cloak of Rage","icon":"inv_misc_cape_10","type":4,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73321,"name":"Seraphic Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73322,"name":"Seraphic Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73323,"name":"Magesoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73324,"name":"Dreadsoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73325,"name":"Magesoul Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":591,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":73326,"name":"Dreadsoul Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":591,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":73336,"name":"Seraphic Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":317,"weaponDamageMax":591,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":73337,"name":"Wildsoul Idol of Wisdom","icon":"inv_relics_idolofrejuvenation","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73338,"name":"Wildsoul Idol of Rage","icon":"inv_relics_idolofferocity","type":14,"rangedWeaponType":4,"stats":[0,28,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73339,"name":"Wildsoul Idol of Destruction","icon":"inv_relics_idolofhealth","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73340,"name":"Stormbinder Totem of Destruction","icon":"inv_relics_totemofrebirth","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73341,"name":"Stormbinder Totem of Wisdom","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73342,"name":"Stormbinder Totem of Rage","icon":"inv_relics_totemofrage","type":14,"rangedWeaponType":4,"stats":[0,28,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73343,"name":"Ebonsoul Sigil of Battle","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73346,"name":"Ebonsoul Sigil of Stoicism","icon":"ability_mount_ebonblade","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73354,"name":"Zealous Libram of Battle","icon":"inv_relics_libramofgrace","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73355,"name":"Zealous Libram of Stoicism","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73356,"name":"Zealous Libram of Wisdom","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":73357,"name":"Shadowstalking Knives","icon":"inv_throwingknife_02","type":14,"rangedWeaponType":5,"stats":[0,28,43,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":73358,"name":"Valiant Knives of Battle","icon":"inv_throwingknife_02","type":14,"rangedWeaponType":5,"stats":[28,0,43,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":73359,"name":"Valiant Knives of Stoicism","icon":"inv_throwingknife_02","type":14,"rangedWeaponType":5,"stats":[28,0,43,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.7,"ilvl":232,"quality":2}, -{"id":74278,"name":"Helm of the Fire Festival","icon":"inv_helmet_08","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":74282,"name":"Black Spring Circlet","icon":"inv_misc_rabbit_ears","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":74283,"name":"Pink Spring Circlet","icon":"inv_misc_rabbit_ears","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":74776,"name":"Hicks' Hammer","icon":"inv_hammer_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":3,"weaponSpeed":2.7,"ilvl":1,"quality":1}, -{"id":74918,"name":"Problem Solving Pendant","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":80,"quality":1}, -{"id":76277,"name":"Warmaster Blackhorn's Shield","icon":"inv_shield_deathwingraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"unique":true}, -{"id":76286,"name":"Warmaster Blackhorn's Weapon","icon":"inv_mace_2h_deathwingraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":4,"weaponSpeed":3.7,"ilvl":1}, -{"id":77256,"name":"Darkmoon \"Sword\"","icon":"inv_sword_22","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1,"weaponDamageMax":2,"weaponSpeed":1.5,"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":14828,"npcName":"Gelvas Grimegate"}}]}, -{"id":77549,"name":"Replica Grand Marshal's Demolisher","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77550,"name":"Replica Grand Marshal's Swiftblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77551,"name":"Replica Grand Marshal's Dirk","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":2,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77552,"name":"Replica Grand Marshal's Mageblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4}, -{"id":77553,"name":"Replica Grand Marshal's Warhammer","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4}, -{"id":77554,"name":"Replica Grand Marshal's Sunderer","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77555,"name":"Replica Grand Marshal's Hand Cannon","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77556,"name":"Replica Grand Marshal's Stave","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,17,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":279,"weaponSpeed":3,"ilvl":78,"quality":4}, -{"id":77557,"name":"Replica Grand Marshal's Right Hand Blade","icon":"inv_weapon_shortblade_07","type":13,"weaponType":3,"handType":1,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77558,"name":"Replica Grand Marshal's Punisher","icon":"inv_mace_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77559,"name":"Replica Grand Marshal's Left Hand Blade","icon":"ability_rogue_rupture","type":13,"weaponType":3,"handType":3,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77560,"name":"Replica Grand Marshal's Claymore","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77561,"name":"Replica Grand Marshal's Longsword","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77562,"name":"Replica Grand Marshal's Handaxe","icon":"inv_axe_24","type":13,"weaponType":1,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77563,"name":"Replica Grand Marshal's Battle Hammer","icon":"inv_hammer_03","type":13,"weaponType":4,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77564,"name":"Replica Grand Marshal's Glaive","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77565,"name":"Replica Grand Marshal's Bullseye","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":1.8,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77566,"name":"Replica Grand Marshal's Repeater","icon":"inv_weapon_crossbow_04","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77567,"name":"Replica High Warlord's Battle Mace","icon":"inv_hammer_02","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4}, -{"id":77568,"name":"Replica High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4}, -{"id":77569,"name":"Replica High Warlord's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77570,"name":"Replica High Warlord's Battle Mace","icon":"inv_mace_14","type":13,"weaponType":4,"handType":1,"stats":[0,0,19,0,16,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":121,"weaponDamageMax":225,"weaponSpeed":2.9,"ilvl":78,"quality":4}, -{"id":77571,"name":"Replica High Warlord's Destroyer","icon":"inv_mace_05","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77572,"name":"Replica High Warlord's Pig Sticker","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77573,"name":"Replica High Warlord's Pulverizer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77574,"name":"Replica High Warlord's Battle Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77575,"name":"Replica High Warlord's Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77576,"name":"Replica High Warlord's Razor","icon":"inv_weapon_shortblade_13","type":13,"weaponType":2,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":143,"weaponSpeed":2,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77577,"name":"Replica High Warlord's Greatsword","icon":"inv_sword_48","type":13,"weaponType":9,"handType":4,"stats":[26,0,41,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77578,"name":"Replica High Warlord's Recurve","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":111,"weaponDamageMax":167,"weaponSpeed":1.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77579,"name":"Replica High Warlord's Street Sweeper","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77580,"name":"Replica High Warlord's Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77581,"name":"Replica High Warlord's War Staff","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,17,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":279,"weaponSpeed":3,"ilvl":78,"quality":4}, -{"id":77582,"name":"Replica High Warlord's Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77583,"name":"Replica High Warlord's Left Claw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":3,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77584,"name":"Replica High Warlord's Bludgeon","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":138,"weaponDamageMax":207,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77585,"name":"Replica High Warlord's Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":2.9,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77586,"name":"Replica High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":1,"stats":[0,0,19,0,0,0,14,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":2,"ilvl":78,"quality":4}, -{"id":77587,"name":"Replica High Warlord's Destroyer","icon":"inv_mace_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":3.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77588,"name":"Replica High Warlord's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,7,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":85,"weaponDamageMax":129,"weaponSpeed":1.8,"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77592,"name":"Replica High Warlord's Tome of Mending","icon":"inv_misc_book_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77593,"name":"Replica High Warlord's Tome of Destruction","icon":"inv_misc_book_15","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77594,"name":"Replica Grand Marshal's Tome of Restoration","icon":"inv_misc_book_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77595,"name":"Replica Grand Marshal's Tome of Power","icon":"inv_misc_book_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77596,"name":"Replica Grand Marshal's Aegis","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[10,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":1}, -{"id":77597,"name":"Replica High Warlord's Shield Wall","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[10,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":78,"quality":4,"factionRestriction":2}, -{"id":77598,"name":"Replica Lieutenant Commander's Dragonhide Epaulets","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,10,22,7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77599,"name":"Replica Knight-Lieutenant's Dragonhide Footwraps","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,12,17,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77600,"name":"Replica Lieutenant Commander's Dragonhide Shroud","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,19,31,11,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77601,"name":"Replica Knight-Captain's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,23,9,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77602,"name":"Replica Knight-Captain's Dragonhide Tunic","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,13,25,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77603,"name":"Replica Knight-Lieutenant's Dragonhide Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77604,"name":"Replica Sergeant Major's Dragonhide Armsplints","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77605,"name":"Replica Sergeant Major's Dragonhide Armsplints","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77606,"name":"Replica Knight-Lieutenant's Chain Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,7,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77607,"name":"Replica Lieutenant Commander's Chain Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77608,"name":"Replica Knight-Captain's Chain Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,23,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77609,"name":"Replica Lieutenant Commander's Chain Helmet","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,16,29,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77610,"name":"Replica Knight-Lieutenant's Chain Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,8,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77611,"name":"Replica Knight-Captain's Chain Leggings","icon":"inv_pants_10","type":9,"armorType":3,"stats":[0,12,26,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77612,"name":"Replica Sergeant Major's Chain Armguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"factionRestriction":1}, -{"id":77613,"name":"Replica Sergeant Major's Chain Armguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[2,7],"factionRestriction":1}, -{"id":77614,"name":"Replica Knight-Captain's Silk Raiment","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77615,"name":"Replica Lieutenant Commander's Silk Spaulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77616,"name":"Replica Knight-Lieutenant's Silk Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77617,"name":"Replica Knight-Lieutenant's Silk Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77618,"name":"Replica Knight-Captain's Silk Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77619,"name":"Replica Lieutenant Commander's Crown","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,16,16,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77620,"name":"Replica Sergeant Major's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"factionRestriction":1}, -{"id":77621,"name":"Replica Lieutenant Commander's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[12,12,12,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77622,"name":"Replica Knight-Lieutenant's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[15,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77623,"name":"Replica Knight-Captain's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77624,"name":"Replica Lieutenant Commander's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77625,"name":"Replica Knight-Lieutenant's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[15,0,16,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77626,"name":"Replica Knight-Captain's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[9,8,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77627,"name":"Replica Knight-Lieutenant's Satin Gloves","icon":"inv_gauntlets_30","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77628,"name":"Replica Knight-Captain's Satin Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77629,"name":"Replica Lieutenant Commander's Diadem","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77630,"name":"Replica Knight-Captain's Satin Robes","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77631,"name":"Replica Lieutenant Commander's Satin Amice","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77632,"name":"Replica Knight-Lieutenant's Satin Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77633,"name":"Replica Knight-Captain's Leather Armor","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77634,"name":"Replica Knight-Lieutenant's Leather Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77635,"name":"Replica Lieutenant Commander's Leather Veil","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,6,26,0,0,10,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77636,"name":"Replica Lieutenant Commander's Leather Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,7,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77637,"name":"Replica Knight-Lieutenant's Leather Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77638,"name":"Replica Knight-Captain's Leather Legguards","icon":"inv_pants_11","type":9,"armorType":2,"stats":[0,7,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77639,"name":"Replica Sergeant Major's Leather Armsplints","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77640,"name":"Replica Sergeant Major's Leather Armsplints","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77641,"name":"Replica Knight-Captain's Mail Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,17,18,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77642,"name":"Replica Lieutenant Commander's Mail Headguard","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,24,16,0,6,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77643,"name":"Replica Knight-Captain's Mail Legguards","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,33,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77644,"name":"Replica Knight-Lieutenant's Mail Greaves","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,13,14,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77645,"name":"Replica Lieutenant Commander's Mail Pauldrons","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,23,13,0,5,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77646,"name":"Replica Knight-Lieutenant's Mail Vices","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,21,11,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"factionRestriction":1}, -{"id":77647,"name":"Replica Lieutenant Commander's Dreadweave Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77648,"name":"Replica Knight-Captain's Dreadweave Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77649,"name":"Replica Knight-Captain's Dreadweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77650,"name":"Replica Knight-Lieutenant's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77651,"name":"Replica Knight-Lieutenant's Dreadweave Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77652,"name":"Replica Lieutenant Commander's Headguard","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77653,"name":"Replica Knight-Lieutenant's Plate Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77654,"name":"Replica Knight-Captain's Plate Chestguard","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[9,6,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77655,"name":"Replica Knight-Captain's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77656,"name":"Replica Lieutenant Commander's Plate Helm","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77657,"name":"Replica Lieutenant Commander's Plate Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[7,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77658,"name":"Replica Knight-Lieutenant's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[8,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77659,"name":"Replica Sergeant Major's Plate Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[7,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"factionRestriction":1}, -{"id":77660,"name":"Replica Sergeant Major's Plate Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"factionRestriction":1}, -{"id":77661,"name":"Replica Knight-Captain's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[21,0,26,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77662,"name":"Replica Knight-Captain's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[21,0,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77663,"name":"Replica Legionnaire's Lamellar Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[21,0,26,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":77664,"name":"Replica Lieutenant Commander's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[22,0,28,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77665,"name":"Replica Lieutenant Commander's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[17,0,19,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77666,"name":"Replica Marshal's Dragonhide Gauntlets","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,20,33,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77667,"name":"Replica Field Marshal's Dragonhide Spaulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,14,32,15,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77668,"name":"Replica Marshal's Dragonhide Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,24,34,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,18,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77669,"name":"Replica Marshal's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,18,29,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77670,"name":"Replica Field Marshal's Dragonhide Breastplate","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,25,37,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77671,"name":"Replica Field Marshal's Dragonhide Helmet","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,20,45,15,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":1}, -{"id":77672,"name":"Replica Marshal's Chain Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,18,25,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77673,"name":"Replica Field Marshal's Chain Spaulders","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,18,27,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77674,"name":"Replica Field Marshal's Chain Breastplate","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77675,"name":"Replica Marshal's Chain Legguards","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,23,34,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77676,"name":"Replica Field Marshal's Chain Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77677,"name":"Replica Marshal's Chain Grips","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,14,19,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":1}, -{"id":77678,"name":"Replica Field Marshal's Silk Vestments","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77679,"name":"Replica Field Marshal's Silk Spaulders","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,33,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77680,"name":"Replica Marshal's Silk Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,42,26,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77681,"name":"Replica Marshal's Silk Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,23,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77682,"name":"Replica Field Marshal's Coronet","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77683,"name":"Replica Marshal's Silk Footwraps","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,33,18,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":1}, -{"id":77684,"name":"Replica Marshal's Lamellar Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[23,0,29,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77685,"name":"Replica Marshal's Lamellar Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[26,0,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77686,"name":"Replica Marshal's Lamellar Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[33,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77687,"name":"Replica Field Marshal's Lamellar Chestplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77688,"name":"Replica Field Marshal's Lamellar Faceguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77689,"name":"Replica Field Marshal's Lamellar Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[16,0,29,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":1}, -{"id":77690,"name":"Replica Marshal's Satin Sandals","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77691,"name":"Replica Marshal's Satin Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,46,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77692,"name":"Replica Field Marshal's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77693,"name":"Replica Marshal's Satin Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77694,"name":"Replica Field Marshal's Satin Vestments","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77695,"name":"Replica Field Marshal's Headdress","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":1}, -{"id":77696,"name":"Replica Marshal's Leather Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,27,27,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77697,"name":"Replica Field Marshal's Leather Epaulets","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,21,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77698,"name":"Replica Marshal's Leather Handgrips","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,20,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77699,"name":"Replica Marshal's Leather Footguards","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77700,"name":"Replica Field Marshal's Leather Mask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,27,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77701,"name":"Replica Field Marshal's Leather Chestpiece","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,26,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":1}, -{"id":77702,"name":"Replica Marshal's Mail Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,33,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77703,"name":"Replica Marshal's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,18,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77704,"name":"Replica Field Marshal's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,15,48,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77705,"name":"Replica Field Marshal's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,21,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77706,"name":"Replica Marshal's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,43,23,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77707,"name":"Replica Field Marshal's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,15,49,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":1}, -{"id":77708,"name":"Replica Marshal's Dreadweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77709,"name":"Replica Field Marshal's Dreadweave Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77710,"name":"Replica Field Marshal's Coronal","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77711,"name":"Replica Marshal's Dreadweave Leggings","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77712,"name":"Replica Field Marshal's Dreadweave Robe","icon":"inv_chest_cloth_09","type":5,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77713,"name":"Replica Marshal's Dreadweave Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":1}, -{"id":77714,"name":"Replica Field Marshal's Plate Armor","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[16,14,33,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77715,"name":"Replica Field Marshal's Plate Helm","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[28,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77716,"name":"Replica Marshal's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[20,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77717,"name":"Replica Marshal's Plate Legguards","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,0,28,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77718,"name":"Replica Field Marshal's Plate Shoulderguards","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[18,16,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77719,"name":"Replica Marshal's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[18,12,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":1}, -{"id":77720,"name":"Replica Knight-Lieutenant's Dragonhide Grips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,13,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77721,"name":"Replica Knight-Lieutenant's Dragonhide Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,19,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77722,"name":"Replica Knight-Lieutenant's Chain Vices","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,12,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77723,"name":"Replica Knight-Lieutenant's Chain Greaves","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,14,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77724,"name":"Replica Knight-Lieutenant's Silk Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,23,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77725,"name":"Replica Knight-Lieutenant's Silk Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77726,"name":"Replica Knight-Lieutenant's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[12,0,23,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77727,"name":"Replica Knight-Lieutenant's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[12,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"factionRestriction":1}, -{"id":77728,"name":"Replica Knight-Lieutenant's Satin Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77729,"name":"Replica Knight-Lieutenant's Satin Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77730,"name":"Replica Knight-Lieutenant's Leather Walkers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77731,"name":"Replica Knight-Lieutenant's Leather Grips","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77732,"name":"Replica Knight-Lieutenant's Dreadweave Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77733,"name":"Replica Knight-Lieutenant's Dreadweave Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77734,"name":"Replica Knight-Lieutenant's Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77735,"name":"Replica Knight-Lieutenant's Plate Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77736,"name":"Replica Blood Guard's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,12,17,12,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77737,"name":"Replica Champion's Dragonhide Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,10,22,7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77738,"name":"Replica Legionnaire's Dragonhide Breastplate","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,25,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77739,"name":"Replica Champion's Dragonhide Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,19,31,11,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77740,"name":"Replica Legionnaire's Dragonhide Trousers","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,23,9,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77741,"name":"Replica Blood Guard's Dragonhide Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77742,"name":"Replica Lieutenant Commander's Dragonhide Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,16,36,15,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77743,"name":"Replica First Sergeant's Dragonhide Armguards","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77744,"name":"Replica Legionnaire's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,30,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77745,"name":"Replica Knight-Captain's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,21,30,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77746,"name":"Replica Champion's Dragonhide Shoulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,12,24,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77747,"name":"Replica Blood Guard's Dragonhide Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,13,19,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77748,"name":"Replica Lieutenant Commander's Dragonhide Shoulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,12,24,12,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77749,"name":"Replica Legionnaire's Dragonhide Chestpiece","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,31,13,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77750,"name":"Replica Blood Guard's Dragonhide Grips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,13,20,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77751,"name":"Replica Knight-Captain's Dragonhide Chestpiece","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,13,31,13,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[1],"factionRestriction":1}, -{"id":77752,"name":"Replica Champion's Dragonhide Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,16,36,15,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77753,"name":"Replica First Sergeant's Dragonhide Armguards","icon":"inv_bracer_03","type":6,"armorType":2,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[1],"factionRestriction":2}, -{"id":77754,"name":"Replica Champion's Chain Pauldrons","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,12,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77755,"name":"Replica Blood Guard's Chain Boots","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,7,19,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77756,"name":"Replica Blood Guard's Chain Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,8,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77757,"name":"Replica Legionnaire's Chain Breastplate","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,23,26,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77758,"name":"Replica Legionnaire's Chain Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,12,26,0,0,0,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77759,"name":"Replica Champion's Chain Headguard","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,16,29,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77760,"name":"Replica Legionnaire's Chain Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77761,"name":"Replica Knight-Captain's Chain Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77762,"name":"Replica Lieutenant Commander's Chain Shoulders","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,12,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77763,"name":"Replica Lieutenant Commander's Chain Helm","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,12,21,0,0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77764,"name":"Replica Blood Guard's Chain Vices","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,12,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77765,"name":"Replica Champion's Chain Helm","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,12,21,0,0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77766,"name":"Replica Champion's Chain Shoulders","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,12,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77767,"name":"Replica Blood Guard's Chain Greaves","icon":"inv_boots_05","type":10,"armorType":3,"stats":[0,14,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77768,"name":"Replica Legionnaire's Chain Hauberk","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"factionRestriction":2}, -{"id":77769,"name":"Replica Knight-Captain's Chain Legguards","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,11,17,0,0,0,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[2],"factionRestriction":1}, -{"id":77770,"name":"Replica Legionnaire's Silk Robes","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77771,"name":"Replica Blood Guard's Silk Footwraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77772,"name":"Replica Champion's Silk Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77773,"name":"Replica Blood Guard's Silk Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,23,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77774,"name":"Replica Legionnaire's Silk Pants","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77775,"name":"Replica Blood Guard's Silk Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77776,"name":"Replica Champion's Silk Hood","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,16,16,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77777,"name":"Replica Knight-Captain's Silk Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77778,"name":"Replica Champion's Silk Cowl","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,35,18,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77779,"name":"Replica Champion's Silk Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,23,13,4,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77780,"name":"Replica Lieutenant Commander's Silk Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,23,13,4,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77781,"name":"Replica Legionnaire's Silk Tunic","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77782,"name":"Replica Legionnaire's Silk Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77783,"name":"Replica Blood Guard's Silk Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[3],"factionRestriction":2}, -{"id":77784,"name":"Replica Lieutenant Commander's Silk Cowl","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,35,18,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77785,"name":"Replica Knight-Captain's Silk Tunic","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,33,18,5,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[3],"factionRestriction":1}, -{"id":77786,"name":"Replica First Sergeant's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5,3,8],"factionRestriction":2}, -{"id":77787,"name":"Replica Sergeant Major's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[5,3,8],"factionRestriction":1}, -{"id":77788,"name":"Replica First Sergeant's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[5,3,8],"factionRestriction":2}, -{"id":77789,"name":"Replica Champion's Satin Shoulderpads","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77790,"name":"Replica Blood Guard's Satin Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77791,"name":"Replica Blood Guard's Satin Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77792,"name":"Replica Champion's Satin Cowl","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77793,"name":"Replica Legionnaire's Satin Vestments","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77794,"name":"Replica Legionnaire's Satin Trousers","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,27,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77795,"name":"Replica Champion's Satin Hood","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,35,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77796,"name":"Replica Champion's Satin Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,24,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77797,"name":"Replica Knight-Captain's Satin Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77798,"name":"Replica Legionnaire's Satin Legguards","icon":"inv_pants_11","type":9,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77799,"name":"Replica Knight-Captain's Satin Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77800,"name":"Replica Lieutenant Commander's Satin Hood","icon":"inv_helmet_17","type":1,"armorType":1,"stats":[0,0,35,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77801,"name":"Replica Lieutenant Commander's Satin Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,24,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[5],"factionRestriction":1}, -{"id":77802,"name":"Replica Legionnaire's Satin Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,31,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77803,"name":"Replica Blood Guard's Satin Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77804,"name":"Replica Blood Guard's Satin Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[5],"factionRestriction":2}, -{"id":77805,"name":"Replica Champion's Leather Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,6,26,0,0,10,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77806,"name":"Replica Champion's Leather Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,7,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77807,"name":"Replica Legionnaire's Leather Leggings","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,7,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77808,"name":"Replica Legionnaire's Leather Hauberk","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,13,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77809,"name":"Replica Blood Guard's Leather Treads","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77810,"name":"Replica Blood Guard's Leather Vices","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,16,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77811,"name":"Replica Knight-Captain's Leather Chestpiece","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77812,"name":"Replica Knight-Captain's Leather Legguards","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77813,"name":"Replica Lieutenant Commander's Leather Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,11,17,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77814,"name":"Replica First Sergeant's Leather Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,7,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77815,"name":"Replica Champion's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,18,23,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77816,"name":"Replica Blood Guard's Leather Walkers","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77817,"name":"Replica Blood Guard's Leather Grips","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,10,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77818,"name":"Replica Legionnaire's Leather Legguards","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77819,"name":"Replica Champion's Leather Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,11,17,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77820,"name":"Replica Lieutenant Commander's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,18,23,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[6],"factionRestriction":1}, -{"id":77821,"name":"Replica Legionnaire's Leather Chestpiece","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,17,22,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77822,"name":"Replica First Sergeant's Leather Armguards","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[6],"factionRestriction":2}, -{"id":77823,"name":"Replica Blood Guard's Mail Grips","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[6,0,19,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77824,"name":"Replica Legionnaire's Mail Chestpiece","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,20,20,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77825,"name":"Replica Legionnaire's Mail Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,5,27,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77826,"name":"Replica Champion's Mail Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,29,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77827,"name":"Replica Champion's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,25,9,0,0,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77828,"name":"Replica Blood Guard's Mail Walkers","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,22,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77829,"name":"Replica Legionnaire's Mail Legguards","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,33,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77830,"name":"Replica Blood Guard's Mail Greaves","icon":"inv_boots_07","type":10,"armorType":3,"stats":[13,0,14,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77831,"name":"Replica Champion's Mail Pauldrons","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,23,13,0,0,14,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77832,"name":"Replica Champion's Mail Headguard","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,24,16,0,0,21,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77833,"name":"Replica Blood Guard's Mail Vices","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,21,11,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77834,"name":"Replica Legionnaire's Mail Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,17,18,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[7],"factionRestriction":2}, -{"id":77835,"name":"Replica First Sergeant's Mail Wristguards","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,17,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[2,7],"factionRestriction":2}, -{"id":77836,"name":"Replica First Sergeant's Mail Wristguards","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[2,7],"factionRestriction":2}, -{"id":77837,"name":"Replica Champion's Dreadweave Hood","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77838,"name":"Replica Legionnaire's Dreadweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,26,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77839,"name":"Replica Blood Guard's Dreadweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77840,"name":"Replica Blood Guard's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,11,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77841,"name":"Replica Legionnaire's Dreadweave Robe","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77842,"name":"Replica Champion's Dreadweave Shoulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77843,"name":"Replica Blood Guard's Dreadweave Walkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77844,"name":"Replica Lieutenant Commander's Dreadweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,36,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77845,"name":"Replica Champion's Dreadweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,36,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77846,"name":"Replica Champion's Dreadweave Spaulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,27,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77847,"name":"Replica Knight-Captain's Dreadweave Legguards","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77848,"name":"Replica Knight-Captain's Dreadweave Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77849,"name":"Replica Blood Guard's Dreadweave Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77850,"name":"Replica Lieutenant Commander's Dreadweave Spaulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,27,10,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[8],"factionRestriction":1}, -{"id":77851,"name":"Replica Legionnaire's Dreadweave Tunic","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,38,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77852,"name":"Replica Legionnaire's Dreadweave Legguards","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[8],"factionRestriction":2}, -{"id":77853,"name":"Replica Blood Guard's Plate Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[8,5,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77854,"name":"Replica Legionnaire's Plate Armor","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[9,6,25,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77855,"name":"Replica Champion's Plate Headguard","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[9,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77856,"name":"Replica Champion's Plate Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[7,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77857,"name":"Replica Legionnaire's Plate Legguards","icon":"inv_pants_06","type":9,"armorType":4,"stats":[7,0,13,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77858,"name":"Replica Knight-Captain's Plate Hauberk","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[21,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77859,"name":"Replica Lieutenant Commander's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[17,0,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77860,"name":"Replica Blood Guard's Plate Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77861,"name":"Replica First Sergeant's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[7,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"classAllowlist":[9,4],"factionRestriction":2}, -{"id":77862,"name":"Replica Blood Guard's Plate Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[10,9,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77863,"name":"Replica Blood Guard's Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[17,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77864,"name":"Replica Knight-Captain's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[12,0,17,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77865,"name":"Replica Legionnaire's Plate Hauberk","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[21,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77866,"name":"Replica Legionnaire's Plate Leggings","icon":"inv_pants_06","type":9,"armorType":4,"stats":[12,0,17,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77867,"name":"Replica Lieutenant Commander's Plate Helmet","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[21,0,24,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"factionRestriction":1}, -{"id":77868,"name":"Replica Champion's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[17,0,18,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77869,"name":"Replica Champion's Plate Helm","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[21,0,24,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[9],"factionRestriction":2}, -{"id":77870,"name":"Replica First Sergeant's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":50,"quality":3,"classAllowlist":[9,4],"factionRestriction":2}, -{"id":77871,"name":"Replica Champion's Lamellar Headguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[22,0,28,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":77872,"name":"Replica Champion's Lamellar Shoulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[17,0,19,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":77873,"name":"Replica Legionnaire's Lamellar Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[21,0,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":68,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":77874,"name":"Replica Warlord's Dragonhide Helmet","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,20,45,15,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77875,"name":"Replica General's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,18,29,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77876,"name":"Replica Warlord's Dragonhide Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,25,37,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77877,"name":"Replica General's Dragonhide Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,24,34,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,18,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77878,"name":"Replica Warlord's Dragonhide Epaulets","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,14,32,15,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77879,"name":"Replica General's Dragonhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,20,33,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[1],"factionRestriction":2}, -{"id":77880,"name":"Replica Warlord's Chain Shoulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,18,27,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77881,"name":"Replica General's Chain Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,23,34,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77882,"name":"Replica Warlord's Chain Chestpiece","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77883,"name":"Replica Warlord's Chain Helmet","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,23,35,0,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77884,"name":"Replica General's Chain Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,18,25,0,0,10,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77885,"name":"Replica General's Chain Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,14,19,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[2],"factionRestriction":2}, -{"id":77886,"name":"Replica Warlord's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77887,"name":"Replica General's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,23,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77888,"name":"Replica General's Silk Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,33,18,0,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77889,"name":"Replica Warlord's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,40,28,6,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77890,"name":"Replica Warlord's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,33,21,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77891,"name":"Replica General's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,42,26,10,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[3],"factionRestriction":2}, -{"id":77892,"name":"Replica Warlord's Lamellar Chestplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77893,"name":"Replica General's Lamellar Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[23,0,29,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77894,"name":"Replica Warlord's Lamellar Faceguard","icon":"inv_helmet_05","type":1,"armorType":4,"stats":[32,0,38,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77895,"name":"Replica General's Lamellar Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[26,0,17,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77896,"name":"Replica General's Lamellar Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[33,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77897,"name":"Replica Warlord's Lamellar Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[16,0,29,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[4],"factionRestriction":2}, -{"id":77898,"name":"Replica General's Satin Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77899,"name":"Replica Warlord's Satin Mantle","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77900,"name":"Replica Warlord's Satin Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77901,"name":"Replica Warlord's Satin Robes","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,54,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77902,"name":"Replica General's Satin Leggings","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,46,27,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77903,"name":"Replica General's Satin Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[5],"factionRestriction":2}, -{"id":77904,"name":"Replica General's Leather Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77905,"name":"Replica General's Leather Mitts","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,20,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77906,"name":"Replica General's Leather Legguards","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,27,27,0,0,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77907,"name":"Replica Warlord's Leather Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,21,27,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77908,"name":"Replica Warlord's Leather Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":2,"stats":[0,26,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77909,"name":"Replica Warlord's Leather Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,27,31,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[6],"factionRestriction":2}, -{"id":77910,"name":"Replica Warlord's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,17,34,0,0,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77911,"name":"Replica General's Mail Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,33,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77912,"name":"Replica General's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,17,18,17,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,28,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77913,"name":"Replica Warlord's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,16,48,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77914,"name":"Replica Warlord's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,15,49,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77915,"name":"Replica General's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,43,23,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[7],"factionRestriction":2}, -{"id":77916,"name":"Replica General's Dreadweave Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77917,"name":"Replica Warlord's Dreadweave Hood","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77918,"name":"Replica General's Dreadweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,24,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77919,"name":"Replica Warlord's Dreadweave Robe","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,50,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77920,"name":"Replica Warlord's Dreadweave Mantle","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,37,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77921,"name":"Replica General's Dreadweave Pants","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[8],"factionRestriction":2}, -{"id":77922,"name":"Replica General's Plate Boots","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[18,12,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77923,"name":"Replica Warlord's Plate Shoulders","icon":"inv_shoulder_11","type":3,"armorType":4,"stats":[18,16,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77924,"name":"Replica Warlord's Plate Armor","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[16,14,33,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77925,"name":"Replica General's Plate Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[20,0,23,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,495,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77926,"name":"Replica General's Plate Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[20,0,28,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":71,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77927,"name":"Replica Warlord's Plate Headpiece","icon":"inv_helmet_09","type":1,"armorType":4,"stats":[28,0,34,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,653,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":74,"quality":4,"classAllowlist":[9],"factionRestriction":2}, -{"id":77928,"name":"Replica Blood Guard's Lamellar Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[12,0,23,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":77929,"name":"Replica Blood Guard's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[12,0,13,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"classAllowlist":[4],"factionRestriction":2}, -{"id":78186,"name":"Replica Magister's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78187,"name":"Replica Magister's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78188,"name":"Replica Magister's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78189,"name":"Replica Magister's Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78190,"name":"Replica Magister's Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78191,"name":"Replica Magister's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78192,"name":"Replica Magister's Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78193,"name":"Replica Magister's Bindings","icon":"inv_jewelry_ring_23","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78196,"name":"Replica Sorcerer's Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78197,"name":"Replica Sorcerer's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78198,"name":"Replica Sorcerer's Crown","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78199,"name":"Replica Sorcerer's Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78200,"name":"Replica Sorcerer's Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78201,"name":"Replica Sorcerer's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78202,"name":"Replica Sorcerer's Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78203,"name":"Replica Sorcerer's Bindings","icon":"inv_jewelry_ring_23","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78204,"name":"Replica Devout Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78205,"name":"Replica Devout Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78206,"name":"Replica Devout Skirt","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78207,"name":"Replica Devout Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78208,"name":"Replica Devout Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78209,"name":"Replica Devout Robe","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78210,"name":"Replica Devout Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78211,"name":"Replica Devout Bracers","icon":"inv_belt_31","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78212,"name":"Replica Virtuous Robe","icon":"inv_chest_cloth_11","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78213,"name":"Replica Virtuous Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78214,"name":"Replica Virtuous Skirt","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78215,"name":"Replica Virtuous Bracers","icon":"inv_belt_31","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78216,"name":"Replica Virtuous Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78217,"name":"Replica Virtuous Gloves","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78218,"name":"Replica Virtuous Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78219,"name":"Replica Virtuous Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78222,"name":"Replica Dreadmist Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78223,"name":"Replica Dreadmist Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78224,"name":"Replica Dreadmist Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78225,"name":"Replica Dreadmist Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78226,"name":"Replica Dreadmist Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78227,"name":"Replica Dreadmist Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78228,"name":"Replica Dreadmist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78229,"name":"Replica Dreadmist Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78230,"name":"Replica Deathmist Mask","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78231,"name":"Replica Deathmist Leggings","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78232,"name":"Replica Deathmist Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78233,"name":"Replica Deathmist Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78234,"name":"Replica Deathmist Mantle","icon":"inv_misc_bone_taurenskull_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78235,"name":"Replica Deathmist Sandals","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78236,"name":"Replica Deathmist Wraps","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78237,"name":"Replica Deathmist Robe","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78238,"name":"Replica Wildheart Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78239,"name":"Replica Wildheart Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78240,"name":"Replica Wildheart Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78241,"name":"Replica Wildheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78242,"name":"Replica Wildheart Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78243,"name":"Replica Wildheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78244,"name":"Replica Wildheart Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78245,"name":"Replica Wildheart Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78246,"name":"Replica Feralheart Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78247,"name":"Replica Feralheart Spaulders","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78248,"name":"Replica Feralheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78249,"name":"Replica Feralheart Cowl","icon":"inv_helmet_27","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78250,"name":"Replica Feralheart Kilt","icon":"inv_pants_08","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78251,"name":"Replica Feralheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78252,"name":"Replica Feralheart Vest","icon":"inv_chest_plate06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78253,"name":"Replica Feralheart Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78254,"name":"Replica Shadowcraft Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78255,"name":"Replica Shadowcraft Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78256,"name":"Replica Shadowcraft Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78257,"name":"Replica Shadowcraft Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78258,"name":"Replica Shadowcraft Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78259,"name":"Replica Shadowcraft Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78260,"name":"Replica Shadowcraft Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78261,"name":"Replica Shadowcraft Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78262,"name":"Replica Darkmantle Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78263,"name":"Replica Darkmantle Cap","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78264,"name":"Replica Darkmantle Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78265,"name":"Replica Darkmantle Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78266,"name":"Replica Darkmantle Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78267,"name":"Replica Darkmantle Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78268,"name":"Replica Darkmantle Pants","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78269,"name":"Replica Darkmantle Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78270,"name":"Replica Beaststalker's Tunic","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78271,"name":"Replica Beaststalker's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78272,"name":"Replica Beaststalker's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78273,"name":"Replica Beaststalker's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78274,"name":"Replica Beaststalker's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78275,"name":"Replica Beaststalker's Cap","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78276,"name":"Replica Beaststalker's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78277,"name":"Replica Beaststalker's Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78278,"name":"Replica Beastmaster's Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78279,"name":"Replica Beastmaster's Boots","icon":"inv_boots_plate_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78280,"name":"Replica Beastmaster's Pants","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78281,"name":"Replica Beastmaster's Mantle","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78282,"name":"Replica Beastmaster's Tunic","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78283,"name":"Replica Beastmaster's Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78284,"name":"Replica Beastmaster's Cap","icon":"inv_helmet_24","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78285,"name":"Replica Beastmaster's Belt","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78286,"name":"Replica Coif of Elements","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78287,"name":"Replica Kilt of Elements","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78288,"name":"Replica Pauldrons of Elements","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78289,"name":"Replica Bindings of Elements","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78290,"name":"Replica Vest of Elements","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78291,"name":"Replica Gauntlets of Elements","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78292,"name":"Replica Boots of Elements","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78293,"name":"Replica Cord of Elements","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78294,"name":"Replica Coif of The Five Thunders","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78295,"name":"Replica Gauntlets of The Five Thunders","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78296,"name":"Replica Bindings of The Five Thunders","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78297,"name":"Replica Cord of The Five Thunders","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78298,"name":"Replica Boots of The Five Thunders","icon":"inv_boots_wolf","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78299,"name":"Replica Pauldrons of The Five Thunders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78300,"name":"Replica Vest of The Five Thunders","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78301,"name":"Replica Kilt of The Five Thunders","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78302,"name":"Replica Lightforge Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78303,"name":"Replica Lightforge Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78304,"name":"Replica Lightforge Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78305,"name":"Replica Lightforge Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78306,"name":"Replica Lightforge Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78307,"name":"Replica Lightforge Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78308,"name":"Replica Lightforge Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78309,"name":"Replica Lightforge Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78310,"name":"Replica Soulforge Boots","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78311,"name":"Replica Soulforge Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78312,"name":"Replica Soulforge Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78313,"name":"Replica Soulforge Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78314,"name":"Replica Soulforge Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78315,"name":"Replica Soulforge Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78316,"name":"Replica Soulforge Spaulders","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78317,"name":"Replica Soulforge Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78318,"name":"Replica Boots of Valor","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78319,"name":"Replica Belt of Valor","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":58,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78320,"name":"Replica Gauntlets of Valor","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":59,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78321,"name":"Replica Bracers of Valor","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":57,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78322,"name":"Replica Helm of Valor","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78323,"name":"Replica Breastplate of Valor","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":63,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78324,"name":"Replica Legplates of Valor","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":61,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78325,"name":"Replica Spaulders of Valor","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":3,"sources":[{"soldBy":{"npcId":55072,"npcName":"Barum","zoneId":5861}}]}, -{"id":78326,"name":"Replica Boots of Heroism","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78327,"name":"Replica Bracers of Heroism","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78328,"name":"Replica Breastplate of Heroism","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78329,"name":"Replica Gauntlets of Heroism","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78330,"name":"Replica Helm of Heroism","icon":"inv_helmet_02","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":60,"quality":4,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78331,"name":"Replica Legplates of Heroism","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":66,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78332,"name":"Replica Spaulders of Heroism","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78333,"name":"Replica Belt of Heroism","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":65,"quality":3,"sources":[{"soldBy":{"npcId":57983,"npcName":"Baruma","zoneId":5861}}]}, -{"id":78340,"name":"Cloak of the Darkmoon Faire","icon":"inv_misc_cape_darkmoonfaire_c_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":14828,"npcName":"Gelvas Grimegate"}}]}, -{"id":78341,"name":"Darkmoon Hammer","icon":"inv_hammer_32","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2,"weaponDamageMax":4,"weaponSpeed":3.3,"ilvl":1,"quality":1,"sources":[{"soldBy":{"npcId":14828,"npcName":"Gelvas Grimegate"}}]}, -{"id":92553,"name":"Gnomish X-Ray Specs Visual","icon":"inv_gizmo_newgoggles","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":134017,"name":"Don Carlos' Famous Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":32,"quality":3}, -{"id":134110,"name":"Hidden Helm","icon":"inv_helmet_40","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":134111,"name":"Hidden Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":134112,"name":"Hidden Shoulder","icon":"inv_misc_cape_20","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":135510,"name":"Transmog UI Trim Head Item","icon":"inv_helmet_99","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":135522,"name":"Transmog UI Chest Item","icon":"inv_misc_desecrated_clothchest","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":135548,"name":"Transmog UI Legs Item","icon":"inv_misc_desecrated_clothpants","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":135549,"name":"Transmog UI Hand Item","icon":"inv_misc_desecrated_clothglove","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":135550,"name":"Transmog UI Feet Item","icon":"inv_misc_desecrated_clothboots","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":1}, -{"id":143539,"name":"Hidden Belt","icon":"inv_belt_04","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":158329,"name":"Hidden Gloves","icon":"inv_misc_desecrated_clothglove","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":168659,"name":"Hidden Chestpiece","icon":"inv_shirt_05","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":168664,"name":"Hidden Boots","icon":"spell_lifegivingspeed","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":168665,"name":"Hidden Bracers","icon":"spell_lifegivingspeed","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":185976,"name":"Communal Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185977,"name":"Communal Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[11,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185981,"name":"Communal Band of Onslaught","icon":"inv_jewelry_ring_10","type":11,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185982,"name":"Communal Band of Dexterity","icon":"inv_jewelry_ring_08","type":11,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185983,"name":"Communal Band of Wisdom","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,5,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185984,"name":"Communal Band of Durability","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185985,"name":"Communal Stone of Onslaught","icon":"inv_misc_stonetablet_06","type":12,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185986,"name":"Communal Stone of Durability","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185987,"name":"Communal Stone of Wisdom","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185988,"name":"Communal Stone of Stoicism","icon":"inv_misc_stonetablet_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185998,"name":"Communal Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":185999,"name":"Communal Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[3,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186001,"name":"Communal Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186002,"name":"Communal Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[16,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186015,"name":"Communal Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[19,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186016,"name":"Communal Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186018,"name":"Communal Cowl","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186019,"name":"Communal Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186020,"name":"Communal Armor","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186021,"name":"Communal Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186022,"name":"Communal Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,7,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186023,"name":"Communal Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,11,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,91,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186024,"name":"Communal Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186025,"name":"Communal Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186026,"name":"Communal Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186027,"name":"Communal Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,6,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186028,"name":"Communal Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186029,"name":"Communal Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,16,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186030,"name":"Communal Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,7,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186031,"name":"Communal Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[7,10,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186032,"name":"Communal Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186033,"name":"Communal Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186034,"name":"Communal Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186035,"name":"Communal Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186036,"name":"Communal Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186037,"name":"Communal Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,16,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186038,"name":"Communal Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[3,19,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186039,"name":"Communal Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186040,"name":"Communal Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186041,"name":"Communal Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186044,"name":"Communal Cloak","icon":"inv_misc_cape_06","type":4,"stats":[3,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186045,"name":"Communal Cloak","icon":"inv_misc_cape_14","type":4,"stats":[3,9,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186046,"name":"Communal Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,4,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186047,"name":"Communal Cape","icon":"inv_misc_cape_11","type":4,"stats":[7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186048,"name":"Communal Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.3,"ilvl":52,"quality":2}, -{"id":186049,"name":"Communal Rose","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186050,"name":"Communal Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":65,"weaponDamageMax":122,"weaponSpeed":1.4,"ilvl":52,"quality":2}, -{"id":186051,"name":"Communal Staff","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":140,"weaponDamageMax":210,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186052,"name":"Communal Idol of Wrath","icon":"inv_misc_rune_10","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186053,"name":"Communal Idol of the Wild","icon":"spell_nature_spiritwolf","type":14,"rangedWeaponType":4,"stats":[0,6,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186054,"name":"Communal Idol of Life","icon":"spell_nature_natureresistancetotem","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186055,"name":"Communal Stave","icon":"inv_spear_07","type":13,"weaponType":8,"handType":4,"stats":[0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":118,"weaponDamageMax":178,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186056,"name":"Communal Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,14,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":68,"weaponDamageMax":128,"weaponSpeed":2.7,"ilvl":52,"quality":2}, -{"id":186057,"name":"Communal Warmaul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":2.7,"ilvl":52,"quality":2}, -{"id":186058,"name":"Communal Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186060,"name":"Communal Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":52,"weaponDamageMax":97,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186061,"name":"Communal Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":2,"stats":[0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":75,"weaponDamageMax":140,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186062,"name":"Communal Smasher","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":2.5,"ilvl":52,"quality":2}, -{"id":186063,"name":"Communal Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186064,"name":"Communal Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186065,"name":"Communal Book of Healing","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186066,"name":"Communal Book of Protection","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[6,0,6,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186067,"name":"Communal Book of Righteousness","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[6,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186068,"name":"Communal Shiv","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.7,"ilvl":52,"quality":2}, -{"id":186069,"name":"Communal Knives","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":51,"weaponDamageMax":95,"weaponSpeed":1.8,"ilvl":52,"quality":2}, -{"id":186070,"name":"Communal Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":52,"quality":2}, -{"id":186071,"name":"Communal Totem of Lightning","icon":"spell_arcane_blast","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186072,"name":"Communal Totem of Restoration","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186073,"name":"Communal Totem of the Storm","icon":"spell_nature_manaregentotem","type":14,"rangedWeaponType":4,"stats":[0,6,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":62,"quality":2}, -{"id":186074,"name":"Communal Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186075,"name":"Communal Cloak","icon":"inv_misc_cape_14","type":4,"stats":[0,0,5,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186076,"name":"Communal Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186078,"name":"Communal Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186079,"name":"Communal Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[3,19,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186080,"name":"Communal Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,14,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186081,"name":"Communal Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186082,"name":"Communal Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,19,7,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186083,"name":"Communal Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186084,"name":"Communal Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186085,"name":"Communal Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186086,"name":"Communal Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186087,"name":"Communal Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[0,0,7,19,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186088,"name":"Communal Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":52,"quality":2}, -{"id":186163,"name":"Communal Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":2.6,"ilvl":52,"quality":2}, -{"id":186682,"name":"Communal Left Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":3,"stats":[4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":52,"quality":2}, -{"id":199327,"name":"Collective Cowl","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199328,"name":"Collective Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199329,"name":"Collective Armor","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199330,"name":"Collective Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,23,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199331,"name":"Collective Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199332,"name":"Collective Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199333,"name":"Collective Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199334,"name":"Collective Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199463,"name":"Collective Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199464,"name":"Collective Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199465,"name":"Collective Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199466,"name":"Collective Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,23,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199467,"name":"Collective Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199468,"name":"Collective Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199469,"name":"Collective Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199470,"name":"Collective Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199471,"name":"Collective Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199478,"name":"Collective Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,49,0,0,0,0,27,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199479,"name":"Collective Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,37,0,0,0,0,8,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199480,"name":"Collective Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,49,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199481,"name":"Collective Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,37,0,0,0,0,0,8,0,0,0,0,40,40,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199482,"name":"Collective Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,49,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199483,"name":"Collective Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,37,12,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199484,"name":"Collective Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,37,0,0,0,8,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199485,"name":"Collective Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,28,0,0,0,16,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199486,"name":"Collective Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199487,"name":"Collective Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199488,"name":"Collective Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199489,"name":"Collective Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,23,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199490,"name":"Collective Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199491,"name":"Collective Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199492,"name":"Collective Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199493,"name":"Collective Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199494,"name":"Collective Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,49,0,27,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199495,"name":"Collective Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,37,0,0,0,0,8,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199496,"name":"Collective Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,49,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199497,"name":"Collective Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,37,0,0,0,0,0,8,0,0,0,0,40,40,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199498,"name":"Collective Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,49,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199499,"name":"Collective Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,37,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199500,"name":"Collective Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,28,0,0,0,16,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199501,"name":"Collective Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,37,0,0,0,8,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199503,"name":"Collective Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[49,0,0,0,0,0,11,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199504,"name":"Collective Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[37,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199505,"name":"Collective Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[49,0,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199506,"name":"Collective Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[28,0,9,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199507,"name":"Collective Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[37,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199508,"name":"Collective Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[37,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199509,"name":"Collective Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[49,0,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199510,"name":"Collective Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[37,0,12,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199511,"name":"Collective Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[49,0,0,0,11,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199512,"name":"Collective Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199513,"name":"Collective Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199514,"name":"Collective Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199516,"name":"Collective Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,23,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199517,"name":"Collective Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199518,"name":"Collective Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199519,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,6,0,16,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199520,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,6,28,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199521,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199522,"name":"Collective Band of Wisdom","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199523,"name":"Collective Band of Devastation","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199524,"name":"Collective Band of Defense","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199525,"name":"Collective Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,6,0,0,16,0,0,0,56,56,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199526,"name":"Collective Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199527,"name":"Collective Stone of Onslaught","icon":"inv_misc_stonetablet_06","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199528,"name":"Collective Stone of Durability","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199529,"name":"Collective Stone of Wisdom","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199530,"name":"Collective Stone of Stoicism","icon":"inv_misc_stonetablet_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199635,"name":"Collective Book of Healing","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[23,0,0,15,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199636,"name":"Collective Book of Protection","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199637,"name":"Collective Book of Righteousness","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[15,0,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199638,"name":"Collective Idol of Wrath","icon":"inv_misc_rune_10","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199639,"name":"Collective Idol of the Wild","icon":"spell_nature_spiritwolf","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199640,"name":"Collective Idol of Life","icon":"spell_nature_natureresistancetotem","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199642,"name":"Collective Totem of Lightning","icon":"spell_arcane_blast","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199643,"name":"Collective Totem of Restoration","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199644,"name":"Collective Totem of the Storm","icon":"spell_nature_manaregentotem","type":14,"rangedWeaponType":4,"stats":[0,15,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2}, -{"id":199699,"name":"Collective Band of Durability","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,24,0,0,6,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199709,"name":"Collective Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,21,12,0,0,4,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":29,"weaponDamageMax":91,"weaponSpeed":1.3,"ilvl":125,"quality":2}, -{"id":199710,"name":"Collective Rose","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,18,0,0,0,6,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199711,"name":"Collective Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":174,"weaponSpeed":1.4,"ilvl":125,"quality":2}, -{"id":199712,"name":"Collective Staff","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,49,0,0,11,27,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":148,"weaponDamageMax":273,"weaponSpeed":3,"ilvl":125,"quality":2}, -{"id":199713,"name":"Collective Stave","icon":"inv_spear_07","type":13,"weaponType":8,"handType":4,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":249,"weaponDamageMax":374,"weaponSpeed":3,"ilvl":125,"quality":2}, -{"id":199714,"name":"Collective Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,3,0,0,0,0,9,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":136,"weaponDamageMax":253,"weaponSpeed":2.7,"ilvl":125,"quality":2}, -{"id":199715,"name":"Collective Warmaul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,11,27,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":291,"weaponDamageMax":436,"weaponSpeed":3.5,"ilvl":125,"quality":2}, -{"id":199716,"name":"Collective Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,4,0,12,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":2.6,"ilvl":125,"quality":2}, -{"id":199717,"name":"Collective Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":2,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":2.6,"ilvl":125,"quality":2}, -{"id":199718,"name":"Collective Smasher","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,21,12,0,0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,0,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":56,"weaponDamageMax":176,"weaponSpeed":2.5,"ilvl":125,"quality":2}, -{"id":199719,"name":"Collective Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[37,0,12,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199720,"name":"Collective Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,37,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,2654,0,0,0,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":199721,"name":"Collective Shiv","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":95,"weaponDamageMax":176,"weaponSpeed":1.7,"ilvl":125,"quality":2}, -{"id":199722,"name":"Collective Knives","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[15,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":133,"weaponDamageMax":199,"weaponSpeed":1.6,"ilvl":125,"quality":2}, -{"id":199723,"name":"Collective Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,12,0,0,0,0,0,4,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":2.6,"ilvl":125,"quality":2}, -{"id":199724,"name":"Collective Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":2.6,"ilvl":125,"quality":2}, -{"id":199725,"name":"Collective Left Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":3,"stats":[0,12,0,0,0,0,0,4,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":134,"weaponDamageMax":249,"weaponSpeed":2.4,"ilvl":125,"quality":2}, -{"id":199747,"name":"Collective Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":200235,"name":"Collective Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,16,0,6,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":125,"quality":2}, -{"id":206684,"name":"Runed Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"weaponDamageMin":46,"weaponDamageMax":146,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":206685,"name":"Tenacious Vine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":206686,"name":"Lumbering Bludgeon","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":206687,"name":"Acute Shortbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":166,"weaponDamageMax":310,"weaponSpeed":2.7,"ilvl":166,"quality":2}, -{"id":206688,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":206689,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":206690,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":162,"quality":2}, -{"id":206691,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":162,"quality":2}, -{"id":206692,"name":"Parrying Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":116,"weaponDamageMax":216,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":206693,"name":"Flying Knives","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":206694,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":206697,"name":"Chilled Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"weaponDamageMin":213,"weaponDamageMax":397,"weaponSpeed":1.7,"ilvl":166,"quality":2}, -{"id":206698,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206699,"name":"Oracle Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206700,"name":"Oracle Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206701,"name":"Oracle Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206702,"name":"Oracle Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206703,"name":"Oracle Circlet","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206704,"name":"Oracle Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206705,"name":"Oracle Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206706,"name":"Oracle Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206707,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206708,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206709,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206710,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206711,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206712,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206713,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206714,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206715,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206716,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206717,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.6,"ilvl":166,"quality":2}, -{"id":206718,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206719,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206720,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206721,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206722,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206723,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206724,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206725,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-90,-36,-39,-88,-42],"ilvl":166,"quality":2}, -{"id":206726,"name":"Spiked Greatstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":355,"weaponDamageMax":533,"weaponSpeed":3.5,"ilvl":166,"quality":2}, -{"id":206727,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206728,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206729,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206730,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206731,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206732,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206733,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206734,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206735,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206736,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206737,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206738,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206739,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206740,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206741,"name":"Magnataur Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206742,"name":"Magnataur Sabatons","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206743,"name":"Magnataur Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206744,"name":"Magnataur Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206745,"name":"Magnataur Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206746,"name":"Magnataur Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206747,"name":"Magnataur Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206748,"name":"Magnataur Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-45],"ilvl":166,"quality":2}, -{"id":206750,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206751,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206752,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206753,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206754,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206755,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206756,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":206757,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":166,"quality":2}, -{"id":209515,"name":"Secondhand Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[87,0,0,0,0,0,20,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209516,"name":"Secondhand Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[49,0,17,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209517,"name":"Secondhand Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[64,0,0,0,0,15,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209518,"name":"Secondhand Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[87,0,30,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209519,"name":"Secondhand Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[64,0,23,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209521,"name":"Secondhand Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[64,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1013,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209522,"name":"Secondhand Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[87,0,30,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209528,"name":"Secondhand Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[87,0,0,0,20,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209529,"name":"Secondhand Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,87,20,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209530,"name":"Secondhand Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,87,0,0,0,0,48,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209531,"name":"Secondhand Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,87,0,48,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,1014,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209532,"name":"Secondhand Cowl","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,87,20,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209533,"name":"Secondhand Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,87,20,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1014,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209556,"name":"Secondhand Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,39,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209557,"name":"Secondhand Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,11,0,26,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209558,"name":"Secondhand Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,11,49,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209583,"name":"Secondhand Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,64,0,0,15,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209584,"name":"Secondhand Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,64,0,0,15,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209585,"name":"Secondhand Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,64,0,0,0,0,15,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209586,"name":"Secondhand Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[64,0,53,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209587,"name":"Secondhand Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,64,0,0,0,0,15,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209588,"name":"Secondhand Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,0,64,0,0,15,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,1351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209589,"name":"Secondhand Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,64,0,0,15,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209599,"name":"Secondhand Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,0,0,11,0,0,26,0,0,0,98,98,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209600,"name":"Secondhand Cloak","icon":"inv_misc_cape_01","type":4,"stats":[0,0,0,26,0,11,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209602,"name":"Secondhand Cloak","icon":"inv_misc_cape_06","type":4,"stats":[0,0,0,0,0,11,26,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209603,"name":"Secondhand Cloak","icon":"inv_misc_cape_03","type":4,"stats":[0,0,39,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209606,"name":"Secondhand Armor","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209607,"name":"Secondhand Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,87,30,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209627,"name":"Secondhand Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,823,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209628,"name":"Secondhand Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,87,30,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209629,"name":"Secondhand Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209630,"name":"Secondhand Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1801,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209631,"name":"Secondhand Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,49,0,26,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209632,"name":"Secondhand Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,49,0,0,0,26,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209633,"name":"Secondhand Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,49,0,26,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209634,"name":"Secondhand Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,49,0,0,0,26,0,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209635,"name":"Secondhand Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,49,0,26,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209636,"name":"Secondhand Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,0,49,0,26,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209637,"name":"Secondhand Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,64,0,15,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209638,"name":"Secondhand Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,64,0,0,0,15,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209639,"name":"Secondhand Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,64,0,15,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209640,"name":"Secondhand Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,64,0,0,0,15,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209641,"name":"Secondhand Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,0,64,0,15,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209642,"name":"Secondhand Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,64,0,15,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209644,"name":"Secondhand Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,64,0,0,0,15,0,0,0,0,0,0,41,0,0,0,0,0,0,0,332,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209645,"name":"Secondhand Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,64,0,0,0,0,0,15,0,0,0,0,70,70,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209646,"name":"Secondhand Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,64,0,0,0,15,0,0,0,0,0,0,41,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209647,"name":"Secondhand Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,64,0,0,0,0,0,15,0,0,0,0,70,70,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209648,"name":"Secondhand Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,64,0,0,0,15,0,0,0,0,0,0,41,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209649,"name":"Secondhand Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[0,0,0,64,0,0,0,15,0,0,0,0,0,0,41,0,0,0,0,0,0,0,1013,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209650,"name":"Secondhand Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209651,"name":"Secondhand Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,87,30,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209652,"name":"Secondhand Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209653,"name":"Secondhand Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,87,30,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209654,"name":"Secondhand Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209655,"name":"Secondhand Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[0,0,30,87,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209656,"name":"Secondhand Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,23,64,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209657,"name":"Secondhand Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,64,23,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209658,"name":"Secondhand Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,23,64,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209659,"name":"Secondhand Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,64,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209660,"name":"Secondhand Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,23,64,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209661,"name":"Secondhand Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,23,64,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209662,"name":"Secondhand Band of Devastation","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,11,26,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209663,"name":"Secondhand Band of Durability","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,39,0,0,11,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209664,"name":"Secondhand Band of Wisdom","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,11,26,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209665,"name":"Secondhand Band of Defense","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,39,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209695,"name":"Secondhand Stone of Durability","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209696,"name":"Secondhand Stone of Wisdom","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209697,"name":"Secondhand Stone of Stoicism","icon":"inv_misc_stonetablet_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209780,"name":"Secondhand Stone of Onslaught","icon":"inv_misc_stonetablet_06","type":12,"stats":[0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209782,"name":"Secondhand Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,32,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":371,"weaponSpeed":2.6,"ilvl":187,"quality":2}, -{"id":209783,"name":"Secondhand Shiv","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,21,0,0,0,0,0,0,8,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":371,"weaponSpeed":1.7,"ilvl":187,"quality":2}, -{"id":209784,"name":"Secondhand Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,8,0,21,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":371,"weaponSpeed":2.6,"ilvl":187,"quality":2}, -{"id":209785,"name":"Secondhand Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":2,"stats":[0,21,0,0,0,0,0,0,8,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":371,"weaponSpeed":2.6,"ilvl":187,"quality":2}, -{"id":209786,"name":"Secondhand Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[64,0,23,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209787,"name":"Secondhand Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,64,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,5156,0,0,0,8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":209789,"name":"Secondhand Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,6,0,0,0,0,16,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":188,"weaponDamageMax":348,"weaponSpeed":2.7,"ilvl":187,"quality":2}, -{"id":209790,"name":"Secondhand Warmaul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,20,48,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":400,"weaponDamageMax":600,"weaponSpeed":3.5,"ilvl":187,"quality":2}, -{"id":209791,"name":"Secondhand Stave","icon":"inv_spear_07","type":13,"weaponType":8,"handType":4,"stats":[0,48,0,0,0,0,0,0,20,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":343,"weaponDamageMax":514,"weaponSpeed":3,"ilvl":187,"quality":2}, -{"id":209792,"name":"Secondhand Staff","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,87,0,0,20,48,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":204,"weaponDamageMax":375,"weaponSpeed":3,"ilvl":187,"quality":2}, -{"id":209793,"name":"Secondhand Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,21,0,0,0,0,0,8,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":200,"weaponDamageMax":371,"weaponSpeed":2.6,"ilvl":187,"quality":2}, -{"id":209794,"name":"Secondhand Smasher","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,38,21,0,0,0,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":76,"weaponDamageMax":241,"weaponSpeed":2.5,"ilvl":187,"quality":2}, -{"id":209796,"name":"Secondhand Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,38,21,0,0,8,0,0,0,0,0,0,279,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":40,"weaponDamageMax":126,"weaponSpeed":1.3,"ilvl":187,"quality":2}, -{"id":209801,"name":"Secondhand Left Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":3,"stats":[0,21,0,0,0,0,0,8,0,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":185,"weaponDamageMax":343,"weaponSpeed":2.4,"ilvl":187,"quality":2}, -{"id":209803,"name":"Secondhand Knives","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[28,0,0,0,0,0,18,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":1.6,"ilvl":187,"quality":2}, -{"id":209804,"name":"Secondhand Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":198,"weaponDamageMax":367,"weaponSpeed":1.4,"ilvl":187,"quality":2}, -{"id":209807,"name":"Secondhand Book of Healing","icon":"inv_relics_libramofhope","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209808,"name":"Secondhand Book of Righteousness","icon":"inv_misc_book_13","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209809,"name":"Secondhand Idol of Wrath","icon":"inv_misc_rune_10","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209810,"name":"Secondhand Book of Protection","icon":"inv_relics_libramoftruth","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209811,"name":"Secondhand Totem of Restoration","icon":"inv_relics_totemoflife","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209812,"name":"Secondhand Totem of the Storm","icon":"spell_nature_manaregentotem","type":14,"rangedWeaponType":4,"stats":[0,28,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209813,"name":"Secondhand Idol of the Wild","icon":"spell_nature_spiritwolf","type":14,"rangedWeaponType":4,"stats":[0,28,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209814,"name":"Secondhand Idol of Life","icon":"spell_nature_natureresistancetotem","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,19,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209815,"name":"Secondhand Totem of Lightning","icon":"spell_arcane_blast","type":14,"rangedWeaponType":4,"stats":[0,0,43,28,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2}, -{"id":209826,"name":"Secondhand Sigil of Arthritic Binding","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2,"unique":true}, -{"id":209827,"name":"Secondhand Sigil of the Frozen Conscience","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2,"unique":true}, -{"id":209829,"name":"Secondhand Sigil of the Wild Buck","icon":"inv_shield_56","type":14,"rangedWeaponType":4,"stats":[28,0,43,0,0,0,0,19,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":2,"unique":true}, -{"id":210135,"name":"Secondhand Rose","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,26,0,0,0,11,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":187,"quality":2}, -{"id":211817,"name":"Ring of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,45,68,0,0,39,48,0,0,0,0,0,134,134,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"factionRestriction":2}, -{"id":211844,"name":"The Horseman's Seal","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,50,51,0,39,0,48,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}]}, -{"id":211847,"name":"Wicked Witch's Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,50,51,0,0,45,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"unique":true,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}]}, -{"id":211850,"name":"The Horseman's Horrific Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[120,0,137,0,0,50,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1948,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":232,"quality":4,"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}]}, -{"id":211851,"name":"The Horseman's Baleful Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":1,"stats":[0,35,52,0,0,34,0,0,34,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":338,"weaponDamageMax":628,"weaponSpeed":2.7,"ilvl":232,"quality":4,"unique":true,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}]}, -{"id":216696,"name":"Hidden Pants","icon":"inv_pants_wolf","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":2}, -{"id":224375,"name":"Twilight's Hammer Regalia Belt","icon":"inv_belt_armor_twilightcultist_b_01","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224376,"name":"Twilight's Hammer Regalia Boots","icon":"inv_boot_armor_twilightcultist_b_01","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224377,"name":"Twilight's Hammer Regalia Bracer","icon":"inv_bracer_armor_twilightcultist_b_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224378,"name":"Twilight's Hammer Regalia Tunic","icon":"inv_chest_armor_twilightcultist_b_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224379,"name":"Twilight's Hammer Regalia Gloves","icon":"inv_glove_armor_twilightcultist_b_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224380,"name":"Twilight's Hammer Regalia Helmet","icon":"inv_helm_armor_twilightcultist_b_01","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224381,"name":"Twilight's Hammer Regalia Kilt","icon":"inv_chest_armor_twilightcultist_b_01","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224382,"name":"Twilight's Hammer Regalia Robe","icon":"inv_chest_armor_twilightcultist_b_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4}, -{"id":224383,"name":"Twilight's Hammer Regalia Shoulders","icon":"inv_shoulder_armor_twilightcultist_b_01","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":1,"quality":4} +{"id":21846,"name":"Spellfire Belt","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,27,35,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26752}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":27,"3":35,"6":18,"22":233},"isBase":true}}}, +{"id":21847,"name":"Spellfire Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,35,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26753}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":15,"3":35,"6":23,"22":258},"isBase":true}}}, +{"id":21848,"name":"Spellfire Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,26,50,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wrath of Spellfire","setId":552,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26754}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":26,"3":50,"6":28,"22":413},"isBase":true}}}, +{"id":21852,"name":"Netherweave Pants","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,45,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26771}}],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":45,"3":32,"22":250},"isBase":true}}}, +{"id":21853,"name":"Netherweave Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26772}}],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":30,"3":29,"22":219},"isBase":true}}}, +{"id":21854,"name":"Netherweave Robe","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,45,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26773}}],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":45,"3":38,"22":329},"isBase":true}}}, +{"id":21855,"name":"Netherweave Tunic","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,45,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherweave Vestments","setId":555,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26774}}],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":45,"3":39,"22":334},"isBase":true}}}, +{"id":21859,"name":"Imbued Netherweave Pants","icon":"inv_pants_leather_09","type":9,"armorType":1,"stats":[0,0,59,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26775}}],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":59,"3":26,"4":26,"22":296},"isBase":true}}}, +{"id":21860,"name":"Imbued Netherweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,46,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26776}}],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":46,"3":20,"4":20,"22":246},"isBase":true}}}, +{"id":21861,"name":"Imbued Netherweave Robe","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,63,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26777}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":63,"3":28,"4":28,"22":367},"isBase":true}}}, +{"id":21862,"name":"Imbued Netherweave Tunic","icon":"inv_chest_cloth_45","type":5,"armorType":1,"stats":[0,0,28,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Imbued Netherweave","setId":556,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26778}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":28,"3":43,"4":28,"22":367},"isBase":true}}}, +{"id":21863,"name":"Soulcloth Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,24,13,9,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,235,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Soulcloth Embrace","setId":557,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26779}}],"scalingOptions":{"100":{"randPropPoints":51,"stats":{"2":24,"3":13,"4":9,"17":35,"22":235},"isBase":true}}}, +{"id":21864,"name":"Soulcloth Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,30,15,11,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,282,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Soulcloth Embrace","setId":557,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26780}}],"scalingOptions":{"100":{"randPropPoints":51,"stats":{"2":30,"3":15,"4":11,"17":30,"22":282},"isBase":true}}}, +{"id":21865,"name":"Soulcloth Vest","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,24,20,16,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,377,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Soulcloth Embrace","setId":557,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":26781}}],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":24,"3":20,"4":16,"17":45,"22":377},"isBase":true}}}, +{"id":21866,"name":"Arcanoweave Bracers","icon":"inv_bracer_19","type":6,"armorType":1,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26782}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":31,"17":25,"22":159},"isBase":true}}}, +{"id":21867,"name":"Arcanoweave Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26783}}],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":39,"17":35,"22":252},"isBase":true}}}, +{"id":21868,"name":"Arcanoweave Robe","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,45,0,22,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Arcanoweave Vestments","setId":558,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26784}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"4":22,"17":50,"22":369},"isBase":true}}}, +{"id":21869,"name":"Frozen Shadoweave Shoulders","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,33,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26756}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":33,"3":35,"22":310},"isBase":true}}}, +{"id":21870,"name":"Frozen Shadoweave Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,21,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26757}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":21,"3":40,"22":284},"isBase":true}}}, +{"id":21871,"name":"Frozen Shadoweave Robe","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,45,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Shadow's Embrace","setId":553,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26758}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":45,"3":50,"22":413},"isBase":true}}}, +{"id":21873,"name":"Primal Mooncloth Belt","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,18,37,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26760}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":18,"3":37,"4":23,"22":259},"isBase":true}}}, +{"id":21874,"name":"Primal Mooncloth Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,24,42,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26761}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":24,"3":42,"4":25,"22":310},"isBase":true}}}, +{"id":21875,"name":"Primal Mooncloth Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,30,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Mooncloth","setId":554,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":26762}}],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":30,"3":55,"4":35,"22":472},"isBase":true}}}, +{"id":22736,"name":"Andonisus, Reaper of Souls","icon":"inv_sword_61","type":13,"weaponType":9,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":184,"weaponDamageMax":343,"weaponSpeed":2.8,"ilvl":100,"quality":5,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"zoneId":2017,"otherName":"Atiesh"}}],"scalingOptions":{"100":{"weaponDamageMin":184,"weaponDamageMax":343,"isBase":true}}}, +{"id":23489,"name":"Fel Iron Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[32,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fel Iron Plate","setId":560,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29550}}],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"0":32,"2":46,"22":900},"isBase":true}}}, +{"id":23502,"name":"Adamantite Maul","icon":"inv_mace_14","type":13,"weaponType":4,"handType":4,"stats":[47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":209,"weaponDamageMax":314,"weaponSpeed":3.2,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29566}}],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":209,"weaponDamageMax":314,"stats":{"0":47},"isBase":true}}}, +{"id":23503,"name":"Adamantite Cleaver","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,25,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29568}}],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"1":25,"2":59},"isBase":true}}}, +{"id":23504,"name":"Adamantite Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.9,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29569}}],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"5":15,"6":10},"isBase":true}}}, +{"id":23505,"name":"Adamantite Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29571}}],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":82,"weaponDamageMax":153,"stats":{"2":15,"9":16},"isBase":true}}}, +{"id":23506,"name":"Adamantite Plate Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29603}}],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"0":22,"2":24,"22":442},"isBase":true}}}, +{"id":23507,"name":"Adamantite Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[34,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29606}}],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"0":34,"2":40,"22":1070},"isBase":true}}}, +{"id":23508,"name":"Adamantite Plate Gloves","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[24,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Adamantite Battlegear","setId":562,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29605}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"0":24,"2":34,"22":631},"isBase":true}}}, +{"id":23509,"name":"Enchanted Adamantite Breastplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,1126,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29610}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":27,"17":40,"22":1126},"isBase":true}}}, +{"id":23510,"name":"Enchanted Adamantite Belt","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,632,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29608}}],"scalingOptions":{"113":{"randPropPoints":47,"stats":{"2":21,"17":30,"22":632},"isBase":true}}}, +{"id":23511,"name":"Enchanted Adamantite Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,772,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29611}}],"scalingOptions":{"113":{"randPropPoints":47,"stats":{"2":21,"17":30,"22":772},"isBase":true}}}, +{"id":23512,"name":"Enchanted Adamantite Leggings","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,987,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Enchanted Adamantite Armor","setId":563,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29613}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":27,"17":40,"22":987},"isBase":true}}}, +{"id":23513,"name":"Flamebane Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,1128,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29617}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":19,"18":40,"22":1128},"isBase":true}}}, +{"id":23514,"name":"Flamebane Gloves","icon":"inv_gauntlets_11","type":7,"armorType":4,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,704,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29616}}],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":21,"18":30,"22":704},"isBase":true}}}, +{"id":23515,"name":"Flamebane Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,490,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29614}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":15,"18":28,"22":490},"isBase":true}}}, +{"id":23516,"name":"Flamebane Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,912,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Flame Guard","setId":564,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29615}}],"scalingOptions":{"113":{"randPropPoints":62,"stats":{"2":19,"18":40,"22":912},"isBase":true}}}, +{"id":23517,"name":"Felsteel Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,704,63,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29619}}],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":27,"9":25,"22":704,"23":63},"isBase":true}}}, +{"id":23518,"name":"Felsteel Leggings","icon":"inv_pants_plate_06","type":9,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,985,71,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29620}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":39,"9":33,"22":985,"23":71},"isBase":true}}}, +{"id":23519,"name":"Felsteel Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,27,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,917,97,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Faith in Felsteel","setId":569,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29621}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":27,"9":33,"22":917,"23":97},"isBase":true}}}, +{"id":23520,"name":"Ragesteel Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[35,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29642}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":35,"6":27,"22":705},"isBase":true}}}, +{"id":23521,"name":"Ragesteel Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[45,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29643}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":45,"6":37,"22":917},"isBase":true}}}, +{"id":23522,"name":"Ragesteel Breastplate","icon":"inv_chest_chain_16","type":5,"armorType":4,"stats":[50,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29645}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":50,"6":29,"22":1128},"isBase":true}}}, +{"id":23523,"name":"Khorium Pants","icon":"inv_pants_plate_04","type":9,"armorType":4,"stats":[0,0,63,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29629}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":63,"3":28,"4":28,"22":985},"isBase":true}}}, +{"id":23524,"name":"Khorium Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,46,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29628}}],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":46,"3":21,"4":20,"22":633},"isBase":true}}}, +{"id":23525,"name":"Khorium Boots","icon":"inv_boots_chain_01","type":10,"armorType":4,"stats":[0,0,47,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Khorium Ward","setId":565,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29630}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":22,"4":20,"22":776},"isBase":true}}}, +{"id":23526,"name":"Swiftsteel Gloves","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,25,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29648}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"5":26,"22":489},"isBase":true}}}, +{"id":23527,"name":"Earthpeace Breastplate","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,0,0,42,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29649}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"3":42,"4":40,"22":782},"isBase":true}}}, +{"id":23531,"name":"Felfury Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,20,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29658}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":20,"2":30,"6":27,"22":554},"isBase":true}}}, +{"id":23532,"name":"Gauntlets of the Iron Tower","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,26,0,0,0,0,0,817,0,0,0,0],"gemSockets":[3,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29622}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":30,"9":20,"16":26,"22":817},"isBase":true}}}, +{"id":23533,"name":"Steelgrip Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29662}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":28,"2":36,"22":817},"isBase":true}}}, +{"id":23534,"name":"Storm Helm","icon":"inv_helmet_29","type":1,"armorType":3,"stats":[0,39,21,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29663}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":39,"2":21,"5":22,"6":22,"22":720},"isBase":true}}}, +{"id":23535,"name":"Helm of the Stalwart Defender","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,47,0,0,0,0,0,0,23,0,0,0,0,0,0,23,0,0,0,0,0,1063,82,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29664}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":47,"9":23,"16":23,"22":1063,"23":82},"isBase":true}}}, +{"id":23536,"name":"Oathkeeper's Helm","icon":"inv_helmet_38","type":1,"armorType":4,"stats":[0,0,55,22,22,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29668}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":55,"3":22,"4":22,"9":15,"22":1063},"isBase":true}}}, +{"id":23537,"name":"Black Felsteel Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[26,0,15,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29669}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"0":26,"2":15,"6":22,"22":572},"isBase":true}}}, +{"id":23538,"name":"Bracers of the Green Fortress","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29671}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":39,"9":20,"22":572},"isBase":true}}}, +{"id":23539,"name":"Blessed Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,25,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29672}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":25,"3":26,"6":18,"22":572},"isBase":true}}}, +{"id":23540,"name":"Felsteel Longblade","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":2.2,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29692}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":152,"weaponDamageMax":283,"stats":{"1":26,"2":15},"isBase":true}}}, +{"id":23541,"name":"Khorium Champion","icon":"inv_sword_08","type":13,"weaponType":9,"handType":4,"stats":[50,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":339,"weaponDamageMax":509,"weaponSpeed":3.3,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29693}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":339,"weaponDamageMax":509,"stats":{"0":50,"5":37},"isBase":true}}}, +{"id":23542,"name":"Fel Edged Battleaxe","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":2.2,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29694}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":152,"weaponDamageMax":283,"stats":{"5":14,"6":21},"isBase":true}}}, +{"id":23543,"name":"Felsteel Reaper","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":349,"weaponDamageMax":524,"weaponSpeed":3.4,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29695}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":349,"weaponDamageMax":524,"stats":{"6":30,"12":112,"13":112},"isBase":true}}}, +{"id":23544,"name":"Runic Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":2,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":165,"weaponDamageMax":308,"weaponSpeed":2.4,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29696}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":165,"weaponDamageMax":308,"stats":{"2":16,"12":50,"13":50},"isBase":true}}}, +{"id":23546,"name":"Fel Hardened Maul","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":4,"stats":[50,0,46,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":339,"weaponDamageMax":509,"weaponSpeed":3.3,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29697}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":339,"weaponDamageMax":509,"stats":{"0":50,"2":46,"6":21},"isBase":true}}}, +{"id":23554,"name":"Eternium Runed Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,29,0,0,0,21,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":58,"weaponDamageMax":109,"weaponSpeed":1.7,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29698}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":58,"weaponDamageMax":109,"stats":{"2":29,"6":21,"14":211},"isBase":true}}}, +{"id":23555,"name":"Dirge","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29699}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":124,"weaponDamageMax":231,"stats":{"6":20,"12":40,"13":40},"isBase":true}}}, +{"id":23556,"name":"Hand of Eternity","icon":"inv_mace_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,30,0,18,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":122,"weaponSpeed":1.9,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":29700}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":122,"stats":{"2":30,"4":18,"14":211},"isBase":true}}}, +{"id":23563,"name":"Nether Chain Shirt","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,24,40,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":107,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34529}}],"scalingOptions":{"107":{"randPropPoints":71,"stats":{"1":24,"2":40,"5":18,"6":28,"22":921},"isBase":true}}}, +{"id":23564,"name":"Twisting Nether Chain Shirt","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,44,48,0,0,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34530}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"1":44,"2":48,"5":22,"6":33,"22":1009},"isBase":true}}}, +{"id":23565,"name":"Embrace of the Twisting Nether","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,55,56,0,0,26,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36256}}],"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":55,"2":56,"5":26,"6":35,"22":1189},"isBase":true}}}, +{"id":23746,"name":"Adamantite Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,39,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":3,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30313}}],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"1":39,"2":55},"isBase":true}}}, +{"id":23747,"name":"Felsteel Boomstick","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,38,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":173,"weaponDamageMax":323,"weaponSpeed":2.4,"ilvl":108,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30314}}],"scalingOptions":{"108":{"randPropPoints":60,"weaponDamageMin":173,"weaponDamageMax":323,"stats":{"2":38,"6":41},"isBase":true}}}, +{"id":23748,"name":"Ornate Khorium Rifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,44,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":248,"weaponDamageMax":462,"weaponSpeed":3.1,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30315}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":248,"weaponDamageMax":462,"stats":{"1":44,"5":41},"isBase":true}}}, +{"id":23758,"name":"Cogspinner Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30316}}],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"22":386},"isBase":true}}}, +{"id":23762,"name":"Ultra-Spectropic Detection Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,36,0,0,24,24,24,0,0,0,0,0,0,0,0,24,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30318}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":36,"5":24,"6":24,"7":24,"16":24,"22":295},"isBase":true}}}, +{"id":23763,"name":"Hyper-Vision Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,42,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30325}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":42,"5":23,"22":414},"isBase":true}}}, +{"id":23824,"name":"Rocket Boots Xtreme","icon":"inv_gizmo_rocketboot_01","type":10,"armorType":2,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30556}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":40,"22":350},"isBase":true}}}, +{"id":23825,"name":"Nigh-Invulnerability Belt","icon":"inv_belt_27","type":8,"armorType":1,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":30570}}],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":21,"22":201,"23":40},"isBase":true}}}, +{"id":24079,"name":"Khorium Band of Shadows","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31053}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24080,"name":"Khorium Band of Frost","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":113,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31054}}],"scalingOptions":{"113":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24082,"name":"Khorium Inferno Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":113,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31055}}],"scalingOptions":{"113":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24085,"name":"Khorium Band of Leaves","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31056}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24086,"name":"Arcane Khorium Band","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31057}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24087,"name":"Heavy Felsteel Ring","icon":"inv_jewelry_ring_64","type":11,"stats":[25,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31058}}],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":25,"2":21,"16":13},"isBase":true}}}, +{"id":24088,"name":"Delicate Eternium Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[0,25,15,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":101,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31060}}],"scalingOptions":{"101":{"randPropPoints":32,"stats":{"1":25,"2":15,"9":16},"isBase":true}}}, +{"id":24089,"name":"Blazing Eternium Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,18,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31061}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":18,"4":20},"isBase":true}}}, +{"id":24092,"name":"Pendant of Frozen Flame","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31062}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":18,"18":30},"isBase":true}}}, +{"id":24093,"name":"Pendant of Thawing","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31063}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":18,"19":30},"isBase":true}}}, +{"id":24095,"name":"Pendant of Withering","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31064}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":18,"20":30},"isBase":true}}}, +{"id":24097,"name":"Pendant of Shadow's End","icon":"inv_jewelry_necklace_33","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31065}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":18,"21":30},"isBase":true}}}, +{"id":24098,"name":"Pendant of the Null Rune","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31066}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":18,"17":30},"isBase":true}}}, +{"id":24106,"name":"Thick Felsteel Necklace","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31067}}],"scalingOptions":{"113":{"randPropPoints":35,"stats":{"2":36,"16":23},"isBase":true}}}, +{"id":24110,"name":"Living Ruby Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,35,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":31068}}],"scalingOptions":{"113":{"randPropPoints":35,"stats":{"2":35,"3":16,"4":16},"isBase":true}}}, +{"id":24114,"name":"Braided Eternium Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":102,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31070}}],"scalingOptions":{"102":{"randPropPoints":32,"stats":{"5":21},"isBase":true}}}, +{"id":24116,"name":"Eye of the Night","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,0,0,0,16,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31071}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"5":16,"6":26,"7":15},"isBase":true}}}, +{"id":24117,"name":"Embrace of the Dawn","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31072}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18},"isBase":true}}}, +{"id":24121,"name":"Chain of the Twilight Owl","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,29,18,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31076}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":29,"3":18,"9":18},"isBase":true}}}, +{"id":24122,"name":"Coronet of Verdant Flame","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,36,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31077}}],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":36,"3":40,"22":306},"isBase":true}}}, +{"id":24123,"name":"Circlet of Arcane Might","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,39,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31078}}],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":39,"3":27,"4":27,"22":306},"isBase":true}}}, +{"id":24124,"name":"Figurine - Felsteel Boar","icon":"inv_jewelcrafting_truesilverboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31079}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"12":68,"13":68},"isBase":true}}}, +{"id":24125,"name":"Figurine - Dawnstone Crab","icon":"inv_jewelcrafting_truesilvercrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31080}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"9":32},"isBase":true}}}, +{"id":24126,"name":"Figurine - Living Ruby Serpent","icon":"inv_jewelcrafting_rubyserpent","type":12,"stats":[0,0,33,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31081}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":23},"isBase":true}}}, +{"id":24127,"name":"Figurine - Talasite Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31082}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"4":36},"isBase":true}}}, +{"id":24128,"name":"Figurine - Nightseye Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":31083}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"12":54,"13":54},"isBase":true}}}, +{"id":24249,"name":"Unyielding Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,159,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Unyielding","setId":570,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31434}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":39,"16":12,"22":159},"isBase":true}}}, +{"id":24250,"name":"Bracers of Havok","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31435}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":18,"3":26,"22":159},"isBase":true}}}, +{"id":24251,"name":"Blackstrike Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,12,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31437}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"4":12,"6":26,"22":159},"isBase":true}}}, +{"id":24252,"name":"Cloak of the Black Void","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31438}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":17,"3":30,"22":182},"isBase":true}}}, +{"id":24253,"name":"Cloak of Eternity","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,36,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31440}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":36,"9":23,"22":182},"isBase":true}}}, +{"id":24254,"name":"White Remedy Cape","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[0,0,0,27,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31441}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"3":27,"4":18,"22":182},"isBase":true}}}, +{"id":24255,"name":"Unyielding Girdle","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,233,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Unyielding","setId":570,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31442}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":28,"3":27,"16":20,"22":233},"isBase":true}}}, +{"id":24256,"name":"Girdle of Ruination","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,28,33,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31443}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":28,"3":33,"6":20,"22":233},"isBase":true}}}, +{"id":24257,"name":"Black Belt of Knowledge","icon":"inv_belt_26","type":8,"armorType":1,"stats":[0,0,0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31444}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"3":18,"4":37,"22":233},"isBase":true}}}, +{"id":24258,"name":"Resolute Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,207,74,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31448}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":30,"16":21,"22":207,"23":74},"isBase":true}}}, +{"id":24259,"name":"Vengeance Wrap","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,0,0,0,0,23,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,207,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31449}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"6":23,"12":52,"13":52,"22":207},"isBase":true}}}, +{"id":24260,"name":"Manaweave Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31450}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"3":20,"4":31,"22":207},"isBase":true}}}, +{"id":24261,"name":"Whitemend Pants","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,39,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Whitemend Wisdom","setId":571,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31451}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":39,"3":28,"4":28,"22":362},"isBase":true}}}, +{"id":24262,"name":"Spellstrike Pants","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,18,39,0,22,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spellstrike Infusion","setId":559,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31452}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":18,"3":39,"5":22,"6":26,"22":362},"isBase":true}}}, +{"id":24263,"name":"Battlecast Pants","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,62,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Battlecast Garb","setId":572,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31453}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":62,"3":39,"22":362},"isBase":true}}}, +{"id":24264,"name":"Whitemend Hood","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,28,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Whitemend Wisdom","setId":571,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31454}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":28,"3":36,"4":28,"22":336},"isBase":true}}}, +{"id":24266,"name":"Spellstrike Hood","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,26,39,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spellstrike Infusion","setId":559,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31455}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":26,"3":39,"5":16,"6":24,"22":336},"isBase":true}}}, +{"id":24267,"name":"Battlecast Hood","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,64,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Battlecast Garb","setId":572,"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":31456}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":64,"3":37,"22":336},"isBase":true}}}, +{"id":24525,"name":"zzold","icon":"inv_axe_01","type":13,"weaponType":1,"handType":4,"stats":[42,41,61,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"weaponDamageMin":446,"weaponDamageMax":669,"weaponSpeed":3.5,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":88,"weaponDamageMin":446,"weaponDamageMax":669,"stats":{"0":42,"1":41,"2":61,"10":20},"isBase":true}}}, +{"id":24544,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":23,"2":49,"5":12,"6":30,"16":23,"22":1432},"isBase":true}}}, +{"id":24545,"name":"Gladiator's Plate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":30,"2":52,"6":28,"16":25,"22":1164},"isBase":true}}}, +{"id":24546,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":22,"2":45,"6":23,"16":19,"22":1074},"isBase":true}}}, +{"id":24547,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":40,"2":55,"5":12,"6":36,"16":21,"22":1253},"isBase":true}}}, +{"id":24549,"name":"Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":28,"2":42,"6":26,"16":21,"22":895},"isBase":true}}}, +{"id":24550,"name":"Gladiator's Greatsword","icon":"inv_sword_70","type":13,"weaponType":9,"handType":4,"stats":[32,0,48,0,0,20,35,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"weaponSpeed":3.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"stats":{"0":32,"2":48,"5":20,"6":35,"16":28},"isBase":true}}}, +{"id":24552,"name":"Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,64,31,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":64,"3":31,"16":24,"22":479},"isBase":true}}}, +{"id":24553,"name":"Gladiator's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":68,"3":27,"16":30,"22":389},"isBase":true}}}, +{"id":24554,"name":"Gladiator's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,47,27,0,12,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"5":12,"16":21,"22":359},"isBase":true}}}, +{"id":24555,"name":"Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":79,"3":42,"16":30,"22":419},"isBase":true}}}, +{"id":24556,"name":"Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,57,27,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":57,"3":27,"16":21,"22":299},"isBase":true}}}, +{"id":24557,"name":"Gladiator's War Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,0,21,36,0,0,0,0,0,0,0,250,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":119,"weaponDamageMax":180,"weaponSpeed":2,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":119,"weaponDamageMax":180,"stats":{"2":75,"5":21,"6":36,"14":250,"16":25},"isBase":true}}}, +{"id":24637,"name":"Mistyreed Belt","icon":"inv_belt_25","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":160},"isBase":true}}}, +{"id":24638,"name":"Mistyreed Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":196},"isBase":true}}}, +{"id":24639,"name":"Mistyreed Tunic","icon":"inv_shirt_06","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":285},"isBase":true}}}, +{"id":24640,"name":"Mistyreed Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":178},"isBase":true}}}, +{"id":24641,"name":"Mistyreed Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":232},"isBase":true}}}, +{"id":24642,"name":"Mistyreed Pants","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":250},"isBase":true}}}, +{"id":24643,"name":"Mistyreed Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":214},"isBase":true}}}, +{"id":24644,"name":"Mistyreed Bracers","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":125},"isBase":true}}}, +{"id":24645,"name":"Astralaan Belt","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":170},"isBase":true}}}, +{"id":24646,"name":"Astralaan Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":207},"isBase":true}}}, +{"id":24647,"name":"Astralaan Robe","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":302},"isBase":true}}}, +{"id":24648,"name":"Astralaan Gloves","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":189},"isBase":true}}}, +{"id":24649,"name":"Astralaan Headdress","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":245},"isBase":true}}}, +{"id":24650,"name":"Astralaan Pants","icon":"inv_pants_plate_09","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":264},"isBase":true}}}, +{"id":24651,"name":"Astralaan Shoulderpads","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":226},"isBase":true}}}, +{"id":24652,"name":"Astralaan Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":132},"isBase":true}}}, +{"id":24653,"name":"Consortium Sash","icon":"inv_belt_06","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":180},"isBase":true}}}, +{"id":24654,"name":"Consortium Boot","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":219},"isBase":true}}}, +{"id":24655,"name":"Consortium Robe","icon":"inv_chest_cloth_50","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":319},"isBase":true}}}, +{"id":24656,"name":"Consortium Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":199},"isBase":true}}}, +{"id":24657,"name":"Consortium Hood","icon":"inv_helmet_33","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":259},"isBase":true}}}, +{"id":24658,"name":"Consortium Pants","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":279},"isBase":true}}}, +{"id":24659,"name":"Consortium Mantle","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":239},"isBase":true}}}, +{"id":24660,"name":"Consortium Bracer","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":140},"isBase":true}}}, +{"id":24661,"name":"Shadow Council Chain","icon":"inv_belt_21","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":185},"isBase":true}}}, +{"id":24662,"name":"Shadow Council Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":226},"isBase":true}}}, +{"id":24663,"name":"Shadow Council Tunic","icon":"inv_shirt_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":329},"isBase":true}}}, +{"id":24664,"name":"Shadow Council Gloves","icon":"inv_gauntlets_18","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":205},"isBase":true}}}, +{"id":24665,"name":"Shadow Council Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":267},"isBase":true}}}, +{"id":24666,"name":"Shadow Council Pants","icon":"inv_pants_cloth_04","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":288},"isBase":true}}}, +{"id":24667,"name":"Shadow Council Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":246},"isBase":true}}}, +{"id":24668,"name":"Shadow Council Bracer","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":144},"isBase":true}}}, +{"id":24669,"name":"Eldr'naan Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":188},"isBase":true}}}, +{"id":24670,"name":"Eldr'naan Boots","icon":"inv_boots_chain_11","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":230},"isBase":true}}}, +{"id":24671,"name":"Eldr'naan Jerkin","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":334},"isBase":true}}}, +{"id":24672,"name":"Eldr'naan Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":209},"isBase":true}}}, +{"id":24673,"name":"Eldr'naan Hood","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":271},"isBase":true}}}, +{"id":24674,"name":"Eldr'naan Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":292},"isBase":true}}}, +{"id":24675,"name":"Eldr'naan Shoulderpads","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":250},"isBase":true}}}, +{"id":24676,"name":"Eldr'naan Bracelets","icon":"inv_bracer_06","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":146},"isBase":true}}}, +{"id":24677,"name":"Archmage Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":191},"isBase":true}}}, +{"id":24678,"name":"Archmage Slippers","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":233},"isBase":true}}}, +{"id":24679,"name":"Archmage Robe","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":339},"isBase":true}}}, +{"id":24680,"name":"Archmage Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":212},"isBase":true}}}, +{"id":24681,"name":"Archmage Headpiece","icon":"inv_crown_02","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":276},"isBase":true}}}, +{"id":24682,"name":"Archmage Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":297},"isBase":true}}}, +{"id":24683,"name":"Archmage Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":254},"isBase":true}}}, +{"id":24684,"name":"Archmage Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":148},"isBase":true}}}, +{"id":24685,"name":"Elementalist Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":194},"isBase":true}}}, +{"id":24686,"name":"Elementalist Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":237},"isBase":true}}}, +{"id":24687,"name":"Elementalist Tunic","icon":"inv_shirt_04","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":344},"isBase":true}}}, +{"id":24688,"name":"Elementalist Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":215},"isBase":true}}}, +{"id":24689,"name":"Elementalist Skullcap","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":280},"isBase":true}}}, +{"id":24690,"name":"Elementalist Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":301},"isBase":true}}}, +{"id":24691,"name":"Elementalist Mantle","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":258},"isBase":true}}}, +{"id":24692,"name":"Elementalist Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":151},"isBase":true}}}, +{"id":24749,"name":"Daggerfen Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":225},"isBase":true}}}, +{"id":24750,"name":"Daggerfen Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":275},"isBase":true}}}, +{"id":24751,"name":"Daggerfen Battlevest","icon":"inv_chest_leather_09","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":401},"isBase":true}}}, +{"id":24752,"name":"Daggerfen Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":250},"isBase":true}}}, +{"id":24753,"name":"Daggerfen Cowl","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":325},"isBase":true}}}, +{"id":24754,"name":"Daggerfen Stitchpants","icon":"inv_pants_cloth_04","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":351},"isBase":true}}}, +{"id":24755,"name":"Daggerfen Pauldrons","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":300},"isBase":true}}}, +{"id":24756,"name":"Daggerfen Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":175},"isBase":true}}}, +{"id":24757,"name":"Umbrafen Waistband","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":238},"isBase":true}}}, +{"id":24758,"name":"Umbrafen Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":291},"isBase":true}}}, +{"id":24759,"name":"Umbrafen Tunic","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":424},"isBase":true}}}, +{"id":24760,"name":"Umbrafen Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":265},"isBase":true}}}, +{"id":24761,"name":"Umbrafen Cap","icon":"inv_helmet_40","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":344},"isBase":true}}}, +{"id":24762,"name":"Umbrafen Britches","icon":"inv_pants_leather_15","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":371},"isBase":true}}}, +{"id":24763,"name":"Umbrafen Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":318},"isBase":true}}}, +{"id":24764,"name":"Umbrafen Bindings","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":185},"isBase":true}}}, +{"id":24765,"name":"Clefthoof Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":252},"isBase":true}}}, +{"id":24766,"name":"Clefthoof Wanderboots","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":308},"isBase":true}}}, +{"id":24767,"name":"Clefthoof Hidemantle","icon":"inv_shirt_10","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":449},"isBase":true}}}, +{"id":24768,"name":"Clefthoof Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":280},"isBase":true}}}, +{"id":24769,"name":"Clefthoof Cover","icon":"inv_helmet_43","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":364},"isBase":true}}}, +{"id":24770,"name":"Clefthoof Britches","icon":"inv_pants_cloth_11","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":393},"isBase":true}}}, +{"id":24771,"name":"Clefthoof Shoulderguards","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":336},"isBase":true}}}, +{"id":24772,"name":"Clefthoof Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":196},"isBase":true}}}, +{"id":24773,"name":"Boneshredder Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":259},"isBase":true}}}, +{"id":24774,"name":"Boneshredder Boots","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":317},"isBase":true}}}, +{"id":24775,"name":"Boneshredder Jerkin","icon":"inv_chest_cloth_33","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":461},"isBase":true}}}, +{"id":24776,"name":"Boneshredder Gloves","icon":"inv_gauntlets_20","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":288},"isBase":true}}}, +{"id":24777,"name":"Boneshredder Skullcap","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":374},"isBase":true}}}, +{"id":24778,"name":"Boneshredder Britches","icon":"inv_pants_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":403},"isBase":true}}}, +{"id":24779,"name":"Boneshredder Shoulderguards","icon":"inv_shoulder_03","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":346},"isBase":true}}}, +{"id":24780,"name":"Boneshredder Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":202},"isBase":true}}}, +{"id":24781,"name":"Murkblood Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":262},"isBase":true}}}, +{"id":24783,"name":"Murkblood Boots","icon":"inv_boots_cloth_06","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":321},"isBase":true}}}, +{"id":24784,"name":"Murkblood Chestpiece","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":466},"isBase":true}}}, +{"id":24785,"name":"Murkblood Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":292},"isBase":true}}}, +{"id":24786,"name":"Murkblood Cover","icon":"inv_feather_06","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":379},"isBase":true}}}, +{"id":24787,"name":"Murkblood Pants","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":408},"isBase":true}}}, +{"id":24788,"name":"Murkblood Shoulderguards","icon":"inv_shoulder_06","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":350},"isBase":true}}}, +{"id":24789,"name":"Murkblood Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":204},"isBase":true}}}, +{"id":24790,"name":"Expedition Girdle","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":266},"isBase":true}}}, +{"id":24791,"name":"Expedition Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":325},"isBase":true}}}, +{"id":24792,"name":"Expedition Tunic","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":472},"isBase":true}}}, +{"id":24793,"name":"Expedition Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":295},"isBase":true}}}, +{"id":24794,"name":"Expedition Hood","icon":"inv_helmet_33","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":384},"isBase":true}}}, +{"id":24795,"name":"Expedition Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":413},"isBase":true}}}, +{"id":24796,"name":"Expedition Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":354},"isBase":true}}}, +{"id":24797,"name":"Expedition Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":207},"isBase":true}}}, +{"id":24798,"name":"Dragonhawk Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":269},"isBase":true}}}, +{"id":24799,"name":"Dragonhawk Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":328},"isBase":true}}}, +{"id":24800,"name":"Dragonhawk Tunic","icon":"inv_shirt_04","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":478},"isBase":true}}}, +{"id":24801,"name":"Dragonhawk Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":299},"isBase":true}}}, +{"id":24802,"name":"Dragonhawk Hat","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":388},"isBase":true}}}, +{"id":24803,"name":"Dragonhawk Pants","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":418},"isBase":true}}}, +{"id":24804,"name":"Dragonhawk Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":358},"isBase":true}}}, +{"id":24805,"name":"Dragonhawk Bands","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":209},"isBase":true}}}, +{"id":24862,"name":"Blood Knight Girdle","icon":"inv_belt_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":344},"isBase":true}}}, +{"id":24863,"name":"Blood Knight Boots","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":420},"isBase":true}}}, +{"id":24864,"name":"Blood Knight Breastplate","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":611},"isBase":true}}}, +{"id":24865,"name":"Blood Knight Gauntlets","icon":"inv_gauntlets_19","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":382},"isBase":true}}}, +{"id":24866,"name":"Blood Knight Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":497},"isBase":true}}}, +{"id":24867,"name":"Blood Knight Greaves","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":535},"isBase":true}}}, +{"id":24868,"name":"Blood Knight Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":458},"isBase":true}}}, +{"id":24869,"name":"Blood Knight Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":267},"isBase":true}}}, +{"id":24870,"name":"Ironspine Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":364},"isBase":true}}}, +{"id":24871,"name":"Ironspine Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":445},"isBase":true}}}, +{"id":24872,"name":"Ironspine Chain Vest","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":647},"isBase":true}}}, +{"id":24873,"name":"Ironspine Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":404},"isBase":true}}}, +{"id":24874,"name":"Ironspine Helm","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":526},"isBase":true}}}, +{"id":24875,"name":"Ironspine Legguards","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":566},"isBase":true}}}, +{"id":24876,"name":"Ironspine Shoulderguards","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":485},"isBase":true}}}, +{"id":24877,"name":"Ironspine Bracelets","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":283},"isBase":true}}}, +{"id":24878,"name":"Der'izu Belt","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":385},"isBase":true}}}, +{"id":24879,"name":"Der'izu Greaves","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":471},"isBase":true}}}, +{"id":24880,"name":"Der'izu Chestpiece","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":685},"isBase":true}}}, +{"id":24881,"name":"Der'izu Fists","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":428},"isBase":true}}}, +{"id":24882,"name":"Der'izu Helm","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":556},"isBase":true}}}, +{"id":24883,"name":"Der'izu Legguards","icon":"inv_pants_leather_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":599},"isBase":true}}}, +{"id":24884,"name":"Der'izu Spaulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":514},"isBase":true}}}, +{"id":24885,"name":"Der'izu Bracer","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":300},"isBase":true}}}, +{"id":24886,"name":"Skettis Belt","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":395},"isBase":true}}}, +{"id":24887,"name":"Skettis Footwraps","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":483},"isBase":true}}}, +{"id":24888,"name":"Skettis Chestpiece","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":702},"isBase":true}}}, +{"id":24889,"name":"Skettis Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":439},"isBase":true}}}, +{"id":24890,"name":"Skettis Helmet","icon":"inv_helmet_42","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":571},"isBase":true}}}, +{"id":24891,"name":"Skettis Legguards","icon":"inv_pants_cloth_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":614},"isBase":true}}}, +{"id":24892,"name":"Skettis Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":527},"isBase":true}}}, +{"id":24893,"name":"Skettis Bracer","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":307},"isBase":true}}}, +{"id":24894,"name":"Sundered Waistband","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":399},"isBase":true}}}, +{"id":24895,"name":"Sundered Footwraps","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":487},"isBase":true}}}, +{"id":24896,"name":"Sundered Chestpiece","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":709},"isBase":true}}}, +{"id":24897,"name":"Sundered Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":443},"isBase":true}}}, +{"id":24898,"name":"Sundered Helmet","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":576},"isBase":true}}}, +{"id":24899,"name":"Sundered Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":620},"isBase":true}}}, +{"id":24900,"name":"Sundered Spaulders","icon":"inv_shoulder_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":531},"isBase":true}}}, +{"id":24901,"name":"Tortured Bracer","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":310},"isBase":true}}}, +{"id":24902,"name":"Talhide Stitched-Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":402},"isBase":true}}}, +{"id":24903,"name":"Talhide Lined-Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":492},"isBase":true}}}, +{"id":24904,"name":"Talhide Chestpiece","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":715},"isBase":true}}}, +{"id":24905,"name":"Talhide Lined-Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":447},"isBase":true}}}, +{"id":24906,"name":"Talhide Helmet","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":581},"isBase":true}}}, +{"id":24907,"name":"Talhide Lined-Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":626},"isBase":true}}}, +{"id":24908,"name":"Talhide Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":536},"isBase":true}}}, +{"id":24909,"name":"Talhide Lined-Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":313},"isBase":true}}}, +{"id":24910,"name":"Netherstorm Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":406},"isBase":true}}}, +{"id":24911,"name":"Netherstorm Greaves","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":496},"isBase":true}}}, +{"id":24912,"name":"Netherstorm Chestpiece","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":721},"isBase":true}}}, +{"id":24913,"name":"Netherstorm Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":451},"isBase":true}}}, +{"id":24914,"name":"Netherstorm Helm","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":586},"isBase":true}}}, +{"id":24915,"name":"Netherstorm Legguards","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":631},"isBase":true}}}, +{"id":24916,"name":"Netherstorm Shoulderguards","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":541},"isBase":true}}}, +{"id":24917,"name":"Netherstorm Bracer","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":316},"isBase":true}}}, +{"id":24974,"name":"Reaver Girdle","icon":"inv_belt_26","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":506},"isBase":true}}}, +{"id":24975,"name":"Reaver Greaves","icon":"inv_boots_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":619},"isBase":true}}}, +{"id":24976,"name":"Reaver Armor","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":900},"isBase":true}}}, +{"id":24977,"name":"Reaver Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":563},"isBase":true}}}, +{"id":24978,"name":"Reaver Helmet","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":731},"isBase":true}}}, +{"id":24979,"name":"Reaver Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"22":788},"isBase":true}}}, +{"id":24980,"name":"Reaver Epaulets","icon":"inv_shoulder_09","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"22":675},"isBase":true}}}, +{"id":24981,"name":"Reaver Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":394},"isBase":true}}}, +{"id":24982,"name":"Boulderfist Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":537},"isBase":true}}}, +{"id":24983,"name":"Boulderfist Greaves","icon":"inv_boots_cloth_05","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":656},"isBase":true}}}, +{"id":24984,"name":"Boulderfist Armor","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":955},"isBase":true}}}, +{"id":24985,"name":"Boulderfist Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":597},"isBase":true}}}, +{"id":24986,"name":"Boulderfist Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":776},"isBase":true}}}, +{"id":24987,"name":"Boulderfist Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"22":835},"isBase":true}}}, +{"id":24988,"name":"Boulderfist Epaulets","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"22":716},"isBase":true}}}, +{"id":24989,"name":"Boulderfist Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":418},"isBase":true}}}, +{"id":24990,"name":"Warmaul Belt","icon":"inv_belt_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":567},"isBase":true}}}, +{"id":24991,"name":"Warmaul Greaves","icon":"inv_boots_chain_07","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":694},"isBase":true}}}, +{"id":24992,"name":"Warmaul Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":1009},"isBase":true}}}, +{"id":24993,"name":"Warmaul Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":631},"isBase":true}}}, +{"id":24994,"name":"Warmaul Helmet","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":820},"isBase":true}}}, +{"id":24995,"name":"Warmaul Legplates","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,883,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":883},"isBase":true}}}, +{"id":24996,"name":"Warmaul Epaulets","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"22":757},"isBase":true}}}, +{"id":24997,"name":"Warmaul Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":441},"isBase":true}}}, +{"id":24998,"name":"Bloodfist Girdle","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":572},"isBase":true}}}, +{"id":24999,"name":"Bloodfist Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":699},"isBase":true}}}, +{"id":25000,"name":"Bloodfist Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":1016},"isBase":true}}}, +{"id":25001,"name":"Bloodfist Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":635},"isBase":true}}}, +{"id":25002,"name":"Bloodfist Helmet","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":826},"isBase":true}}}, +{"id":25003,"name":"Bloodfist Legplates","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"22":889},"isBase":true}}}, +{"id":25004,"name":"Bloodfist Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"22":762},"isBase":true}}}, +{"id":25005,"name":"Bloodfist Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":445},"isBase":true}}}, +{"id":25006,"name":"Conqueror's Girdle","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":576},"isBase":true}}}, +{"id":25007,"name":"Conqueror's Greaves","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":704},"isBase":true}}}, +{"id":25008,"name":"Conqueror's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":1023},"isBase":true}}}, +{"id":25009,"name":"Conqueror's Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":640},"isBase":true}}}, +{"id":25010,"name":"Conqueror's Helmet","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":831},"isBase":true}}}, +{"id":25011,"name":"Conqueror's Legplates","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"22":895},"isBase":true}}}, +{"id":25012,"name":"Conqueror's Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"22":768},"isBase":true}}}, +{"id":25013,"name":"Conqueror's Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":448},"isBase":true}}}, +{"id":25014,"name":"Shattered Hand Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":580},"isBase":true}}}, +{"id":25015,"name":"Shattered Hand Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":709},"isBase":true}}}, +{"id":25016,"name":"Shattered Hand Breastplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1031,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":1031},"isBase":true}}}, +{"id":25017,"name":"Shattered Hand Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":644},"isBase":true}}}, +{"id":25018,"name":"Shattered Hand Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":837},"isBase":true}}}, +{"id":25019,"name":"Shattered Hand Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"stats":{"22":902},"isBase":true}}}, +{"id":25020,"name":"Shattered Hand Epaulets","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":41,"stats":{"22":773},"isBase":true}}}, +{"id":25021,"name":"Shattered Hand Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":451},"isBase":true}}}, +{"id":25022,"name":"Warlord's Iron-Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":584},"isBase":true}}}, +{"id":25023,"name":"Warlord's Sabatons","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":714},"isBase":true}}}, +{"id":25024,"name":"Warlord's Iron-Breastplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":1038},"isBase":true}}}, +{"id":25025,"name":"Warlord's Iron-Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":649},"isBase":true}}}, +{"id":25026,"name":"Warlord's Iron-Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":843},"isBase":true}}}, +{"id":25027,"name":"Warlord's Iron-Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"stats":{"22":908},"isBase":true}}}, +{"id":25028,"name":"Warlord's Iron-Epaulets","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":42,"stats":{"22":779},"isBase":true}}}, +{"id":25029,"name":"Warlord's Iron-Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":454},"isBase":true}}}, +{"id":25037,"name":"Patched Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":143},"isBase":true}}}, +{"id":25038,"name":"Forest Shroud","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":151},"isBase":true}}}, +{"id":25039,"name":"Farseer Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":160},"isBase":true}}}, +{"id":25040,"name":"Murkblood Cape","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":164},"isBase":true}}}, +{"id":25041,"name":"Ambusher's Cloak","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":167},"isBase":true}}}, +{"id":25042,"name":"Nether Cloak","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":170},"isBase":true}}}, +{"id":25043,"name":"Amber Cape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":172},"isBase":true}}}, +{"id":25051,"name":"Blue Topaz Band","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"isBase":true}}}, +{"id":25052,"name":"Hauyne Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"isBase":true}}}, +{"id":25053,"name":"Lazuli Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"isBase":true}}}, +{"id":25054,"name":"Sodalite Band","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"isBase":true}}}, +{"id":25055,"name":"Alexandrite Ring","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"isBase":true}}}, +{"id":25056,"name":"Almandine Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"isBase":true}}}, +{"id":25057,"name":"Amber Band","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"isBase":true}}}, +{"id":25065,"name":"Turquoise Brooch","icon":"inv_misc_gem_crystal_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"isBase":true}}}, +{"id":25066,"name":"Pink Sapphire Necklace","icon":"inv_misc_gem_amethyst_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"isBase":true}}}, +{"id":25067,"name":"Diopside Beads","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"isBase":true}}}, +{"id":25068,"name":"Kunzite Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"isBase":true}}}, +{"id":25069,"name":"Epidote Stone Necklace","icon":"inv_misc_gem_topaz_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"isBase":true}}}, +{"id":25070,"name":"Coral Beads","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"isBase":true}}}, +{"id":25071,"name":"Tanzanite Pendant","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"isBase":true}}}, +{"id":25079,"name":"Outland Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"22":2286},"isBase":true}}}, +{"id":25080,"name":"Spell-Breaker Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2427,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"22":2427},"isBase":true}}}, +{"id":25081,"name":"Bayeaux Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"22":2560},"isBase":true}}}, +{"id":25082,"name":"Fel-Iron Shield","icon":"inv_shield_17","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"22":2617},"isBase":true}}}, +{"id":25083,"name":"Smouldering Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"22":2625},"isBase":true}}}, +{"id":25084,"name":"Zeth'Gor Shield","icon":"inv_shield_13","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"stats":{"22":2634},"isBase":true}}}, +{"id":25085,"name":"Dragonscale Shield","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"stats":{"22":2641},"isBase":true}}}, +{"id":25093,"name":"Shadow Council Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"isBase":true}}}, +{"id":25094,"name":"Eldr'naan Scepter","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"isBase":true}}}, +{"id":25095,"name":"Archmage Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"isBase":true}}}, +{"id":25096,"name":"Elementalist Star","icon":"inv_wand_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"isBase":true}}}, +{"id":25097,"name":"Astralaan Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"isBase":true}}}, +{"id":25098,"name":"Tuurik Torch","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":31,"isBase":true}}}, +{"id":25099,"name":"Draenei Crystal Rod","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":32,"isBase":true}}}, +{"id":25107,"name":"Draconic Dagger","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":74,"weaponDamageMax":139,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":74,"weaponDamageMax":139,"isBase":true}}}, +{"id":25108,"name":"Grave Keeper Knife","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":1.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":78,"weaponDamageMax":146,"isBase":true}}}, +{"id":25109,"name":"Moon Blade","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":82,"weaponDamageMax":153,"isBase":true}}}, +{"id":25110,"name":"Sharp Bowie Knife","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":86,"weaponDamageMax":160,"weaponSpeed":1.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":86,"weaponDamageMax":160,"isBase":true}}}, +{"id":25111,"name":"Lionhead Dagger","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":89,"weaponDamageMax":167,"weaponSpeed":1.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":89,"weaponDamageMax":167,"isBase":true}}}, +{"id":25112,"name":"Fel Ripper","icon":"inv_weapon_shortblade_22","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":93,"weaponDamageMax":174,"isBase":true}}}, +{"id":25113,"name":"Phantom Dagger","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":96,"weaponDamageMax":180,"weaponSpeed":1.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":96,"weaponDamageMax":180,"isBase":true}}}, +{"id":25121,"name":"Dreaded Mace","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"isBase":true}}}, +{"id":25122,"name":"Khorium Plated Bludgeon","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.6,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"isBase":true}}}, +{"id":25123,"name":"Boneshredder Mace","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":2.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"isBase":true}}}, +{"id":25124,"name":"Footman Mace","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"isBase":true}}}, +{"id":25125,"name":"Retro-Spike Club","icon":"inv_misc_bone_humanskull_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.6,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"isBase":true}}}, +{"id":25126,"name":"Anvilmar Hammer","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"weaponSpeed":2.6,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"isBase":true}}}, +{"id":25127,"name":"Knight's War Hammer","icon":"inv_hammer_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"isBase":true}}}, +{"id":25135,"name":"Clefthoof Mace","icon":"inv_mace_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25136,"name":"Blood Stained Hammer","icon":"inv_hammer_15","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25137,"name":"Draenethyst Mallet","icon":"inv_mace_33","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25138,"name":"Blood Knight Maul","icon":"inv_mace_30","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25139,"name":"Algaz Battle Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25140,"name":"Commanding Mallet","icon":"inv_hammer_18","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25141,"name":"Halaani Hammer","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25149,"name":"Baron's Broadsword","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"isBase":true}}}, +{"id":25150,"name":"Honor Hold Saber","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.6,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"isBase":true}}}, +{"id":25151,"name":"Assassins' Short Blade","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":2.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"isBase":true}}}, +{"id":25152,"name":"Howling Sword","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"isBase":true}}}, +{"id":25153,"name":"Gladiator Greatblade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.6,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"isBase":true}}}, +{"id":25154,"name":"Blood Groove Blade","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"weaponSpeed":2.6,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"isBase":true}}}, +{"id":25155,"name":"Iron Skull Sword","icon":"inv_sword_10","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"isBase":true}}}, +{"id":25163,"name":"Elexorien Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25164,"name":"Crude Umbrafen Blade","icon":"inv_sword_draenei_07","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25165,"name":"Boulderfist Claymore","icon":"inv_sword_20","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25166,"name":"Mok'Nathal Warblade","icon":"inv_sword_55","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25167,"name":"Nethersteel Claymore","icon":"inv_sword_2h_blood_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25168,"name":"Sha'tari Longsword","icon":"inv_sword_draenei_08","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25169,"name":"Fel Orc Brute Sword","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25177,"name":"Tanjo Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25178,"name":"Bata Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25179,"name":"Nguni Stick","icon":"inv_staff_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25180,"name":"Calenda Fighting Stick","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25181,"name":"Tapered Staff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25182,"name":"Crystal-Etched Warstaff","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25183,"name":"Voodoo Hex-Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25191,"name":"Dread Fangs","icon":"inv_misc_monsterclaw_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"isBase":true}}}, +{"id":25192,"name":"Gutrippers","icon":"inv_misc_monsterfang_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.6,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"isBase":true}}}, +{"id":25193,"name":"Deathclaw Talons","icon":"inv_gauntlets_30","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":2.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"isBase":true}}}, +{"id":25194,"name":"Serpent's Fangs","icon":"inv_misc_bone_06","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"isBase":true}}}, +{"id":25195,"name":"Diamond Tipped Claws","icon":"inv_gauntlets_08","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.6,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"isBase":true}}}, +{"id":25196,"name":"Boneshredder Claws","icon":"inv_gauntlets_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"weaponSpeed":2.6,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"isBase":true}}}, +{"id":25197,"name":"Razor Scythes","icon":"inv_gauntlets_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"isBase":true}}}, +{"id":25205,"name":"Silvermoon Crescent Axe","icon":"inv_axe_30","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"weaponSpeed":2.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":114,"weaponDamageMax":213,"isBase":true}}}, +{"id":25206,"name":"Berserker Axe","icon":"inv_axe_32","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"weaponSpeed":2.6,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":120,"weaponDamageMax":223,"isBase":true}}}, +{"id":25207,"name":"Shadowmoon Cleaver","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":2.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":125,"weaponDamageMax":234,"isBase":true}}}, +{"id":25208,"name":"Bladespire Broadaxe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"isBase":true}}}, +{"id":25209,"name":"Amani Tomahawk","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"weaponSpeed":2.6,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":137,"weaponDamageMax":255,"isBase":true}}}, +{"id":25210,"name":"Double-Bladed Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"weaponSpeed":2.6,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":143,"weaponDamageMax":266,"isBase":true}}}, +{"id":25211,"name":"Rockbiter Cutter","icon":"inv_axe_06","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":148,"weaponDamageMax":275,"isBase":true}}}, +{"id":25219,"name":"Rending Claw","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25220,"name":"Glorious War-Axe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25221,"name":"Ghostly Battle Axe","icon":"inv_axe_45","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25222,"name":"Ceremonial Slayer's Axe","icon":"inv_axe_21","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25223,"name":"Windcaller Hatchet","icon":"inv_axe_11","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25224,"name":"Slavemaster Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25225,"name":"Deepforge Broadaxe","icon":"inv_axe_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25233,"name":"Battle Scythe","icon":"inv_weapon_shortblade_10","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25234,"name":"Telaari Polearm","icon":"inv_weapon_shortblade_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25235,"name":"Ethereal-Etched Glaive","icon":"inv_sword_16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25236,"name":"Grim Scythe","icon":"inv_sword_59","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25237,"name":"Nether Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25238,"name":"Hellfire War Spear","icon":"inv_spear_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25239,"name":"Legend's Glaive","icon":"inv_sword_59","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25247,"name":"Expert's Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"isBase":true}}}, +{"id":25248,"name":"Talbuk Hunting Bow","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"weaponSpeed":2.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"isBase":true}}}, +{"id":25249,"name":"Ranger's Recurved Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"weaponSpeed":2.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"isBase":true}}}, +{"id":25250,"name":"Rocslayer Longbow","icon":"inv_weapon_bow_15","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"isBase":true}}}, +{"id":25251,"name":"Orc Flatbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"isBase":true}}}, +{"id":25252,"name":"Dream Catcher Bow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"weaponSpeed":2.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"isBase":true}}}, +{"id":25253,"name":"Windspear Longbow","icon":"inv_weapon_bow_05","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":2.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"isBase":true}}}, +{"id":25261,"name":"Mighty Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"isBase":true}}}, +{"id":25262,"name":"Battle Damaged Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"weaponSpeed":2.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"isBase":true}}}, +{"id":25263,"name":"Assassins' Silent Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"weaponSpeed":2.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"isBase":true}}}, +{"id":25264,"name":"Pocket Ballista","icon":"inv_weapon_crossbow_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"isBase":true}}}, +{"id":25265,"name":"Barreled Crossbow","icon":"inv_weapon_crossbow_13","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"isBase":true}}}, +{"id":25266,"name":"Well-Balanced Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"weaponSpeed":2.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"isBase":true}}}, +{"id":25267,"name":"Rampant Crossbow","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":2.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"isBase":true}}}, +{"id":25275,"name":"Dragonbreath Musket","icon":"inv_musket_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"weaponSpeed":2.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":154,"weaponDamageMax":287,"isBase":true}}}, +{"id":25276,"name":"Tauren Runed Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"weaponSpeed":2.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"isBase":true}}}, +{"id":25277,"name":"Sporting Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"weaponSpeed":2.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"isBase":true}}}, +{"id":25278,"name":"Nesingwary Longrifle","icon":"inv_weapon_rifle_03","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":2.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":177,"weaponDamageMax":330,"isBase":true}}}, +{"id":25279,"name":"Sen'jin Longrifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"weaponSpeed":2.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":185,"weaponDamageMax":345,"isBase":true}}}, +{"id":25280,"name":"Game Hunter Musket","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"weaponSpeed":2.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":193,"weaponDamageMax":359,"isBase":true}}}, +{"id":25281,"name":"Big-Boar Battle Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":2.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":200,"weaponDamageMax":372,"isBase":true}}}, +{"id":25289,"name":"Majestic Wand","icon":"inv_wand_08","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"stats":{"14":141},"isBase":true}}}, +{"id":25290,"name":"Solitaire Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"stats":{"14":141},"isBase":true}}}, +{"id":25291,"name":"Nobility Torch","icon":"inv_misc_gem_pearl_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"stats":{"14":148},"isBase":true}}}, +{"id":25292,"name":"Mechano-Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"weaponSpeed":1.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"stats":{"14":155},"isBase":true}}}, +{"id":25293,"name":"Draenethyst Wand","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":1.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"stats":{"14":155},"isBase":true}}}, +{"id":25294,"name":"Dragonscale Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"stats":{"14":162},"isBase":true}}}, +{"id":25295,"name":"Flawless Wand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":1.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"stats":{"14":169},"isBase":true}}}, +{"id":25303,"name":"Amplifying Blade","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"stats":{"14":141},"isBase":true}}}, +{"id":25304,"name":"Destructo-Blade","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"stats":{"14":141},"isBase":true}}}, +{"id":25305,"name":"Elemental Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"stats":{"14":148},"isBase":true}}}, +{"id":25306,"name":"Permafrost Dagger","icon":"inv_sword_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"weaponSpeed":1.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"stats":{"14":155},"isBase":true}}}, +{"id":25307,"name":"Shadow Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":1.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"stats":{"14":155},"isBase":true}}}, +{"id":25308,"name":"Thunder Spike","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"stats":{"14":162},"isBase":true}}}, +{"id":25309,"name":"Warpdagger","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":1.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"stats":{"14":169},"isBase":true}}}, +{"id":25317,"name":"Lesser Sledgemace","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"stats":{"14":141},"isBase":true}}}, +{"id":25318,"name":"Ancestral Hammer","icon":"inv_mace_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"weaponSpeed":1.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":39,"weaponDamageMax":73,"stats":{"14":141},"isBase":true}}}, +{"id":25319,"name":"Tranquility Mace","icon":"inv_mace_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"stats":{"14":148},"isBase":true}}}, +{"id":25320,"name":"Queen's Insignia","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"weaponSpeed":1.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"stats":{"14":155},"isBase":true}}}, +{"id":25321,"name":"Divine Hammer","icon":"inv_mace_16","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"weaponSpeed":1.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":44,"weaponDamageMax":83,"stats":{"14":155},"isBase":true}}}, +{"id":25322,"name":"Lordly Scepter","icon":"inv_mace_07","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"weaponSpeed":1.7,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":23,"weaponDamageMin":46,"weaponDamageMax":87,"stats":{"14":162},"isBase":true}}}, +{"id":25323,"name":"Ascendant's Scepter","icon":"inv_mace_47","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"weaponSpeed":1.7,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":24,"weaponDamageMin":48,"weaponDamageMax":90,"stats":{"14":169},"isBase":true}}}, +{"id":25331,"name":"Vengeance Staff","icon":"inv_staff_39","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":3.5,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":229,"weaponDamageMax":344,"isBase":true}}}, +{"id":25332,"name":"Reflective Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.5,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":240,"weaponDamageMax":361,"isBase":true}}}, +{"id":25333,"name":"Purification Staff","icon":"inv_staff_11","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"weaponSpeed":3.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":251,"weaponDamageMax":378,"isBase":true}}}, +{"id":25334,"name":"Intimidating Greatstaff","icon":"inv_staff_20","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"weaponSpeed":3.5,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":263,"weaponDamageMax":395,"isBase":true}}}, +{"id":25335,"name":"Feral Warp-Staff","icon":"inv_staff_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"isBase":true}}}, +{"id":25336,"name":"Splintering Greatstaff","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":3.5,"ilvl":117,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"117":{"randPropPoints":55,"weaponDamageMin":286,"weaponDamageMax":429,"isBase":true}}}, +{"id":25337,"name":"Swarming Sting-Staff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":3.5,"ilvl":120,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":56,"weaponDamageMin":296,"weaponDamageMax":445,"isBase":true}}}, +{"id":25543,"name":"Talbuk Sticker","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,24,0,0,0,10,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"stats":{"2":24,"6":10,"14":141},"isBase":true}}}, +{"id":25544,"name":"Zerid's Vintage Musket","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,26,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"weaponSpeed":2.7,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"weaponDamageMin":162,"weaponDamageMax":301,"stats":{"1":26,"2":56},"isBase":true}}}, +{"id":25545,"name":"Talbuk Dirk","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,11,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"stats":{"2":15,"5":11,"12":20,"13":20},"isBase":true}}}, +{"id":25556,"name":"Oversized Ogre Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,46,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":46,"3":21,"4":20,"22":611},"isBase":true}}}, +{"id":25557,"name":"Salvaged Ango'rosh Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[19,0,27,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":19,"2":27,"6":18,"22":675},"isBase":true}}}, +{"id":25558,"name":"Ango'rosh Souleater's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,47,24,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":47,"3":24,"4":16,"22":232},"isBase":true}}}, +{"id":25562,"name":"Earthen Mark of Razing","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,23,15,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"1":23,"2":15,"5":13},"isBase":true}}}, +{"id":25563,"name":"Earthen Mark of Power","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,20,10,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":20,"3":10,"6":23},"isBase":true}}}, +{"id":25564,"name":"Earthen Mark of Health","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,20,10,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":20,"3":10,"4":22},"isBase":true}}}, +{"id":25565,"name":"Spaulders of the Ring","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,18,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":18,"2":28,"6":19,"22":318},"isBase":true}}}, +{"id":25566,"name":"Judicator's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,0,36,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":16,"2":36,"6":16,"22":597},"isBase":true}}}, +{"id":25567,"name":"Cord of the Ring","icon":"inv_belt_16","type":8,"armorType":3,"stats":[0,0,42,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":42,"3":18,"22":364},"isBase":true}}}, +{"id":25568,"name":"Warcaster's Scaled Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,50,22,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":50,"3":22,"6":21,"22":566},"isBase":true}}}, +{"id":25569,"name":"Murkblood Avenger's Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[26,25,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"0":26,"1":25,"2":39,"22":955},"isBase":true}}}, +{"id":25570,"name":"Melia's Lustrous Crown","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,50,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":50,"3":22,"4":21,"22":344},"isBase":true}}}, +{"id":25571,"name":"QR 9863 Druid Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,0,50,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":50,"3":22,"4":21,"22":344},"isBase":true}}}, +{"id":25572,"name":"QR 9863 Shaman Legs","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,50,22,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":50,"3":22,"6":21,"22":566},"isBase":true}}}, +{"id":25573,"name":"QR 9863 Warrior Chest","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[26,25,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"0":26,"1":25,"2":39,"22":955},"isBase":true}}}, +{"id":25574,"name":"Greenkeeper's Pantaloons","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,41,22,15,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":41,"3":22,"4":15,"6":21,"22":264},"isBase":true}}}, +{"id":25575,"name":"Thunderbringer's Guard","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":59,"3":25,"22":526},"isBase":true}}}, +{"id":25576,"name":"Smuggler's Mitts","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":19,"2":41,"22":265},"isBase":true}}}, +{"id":25577,"name":"Greenblood Pantaloons","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,41,22,15,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":41,"3":22,"4":15,"6":21,"22":264},"isBase":true}}}, +{"id":25578,"name":"Caustic Feelers","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":19,"2":41,"22":265},"isBase":true}}}, +{"id":25579,"name":"Dark Shaman's Cover","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":59,"3":25,"22":526},"isBase":true}}}, +{"id":25580,"name":"QR 9867 Warrior Legs","icon":"inv_pants_04","type":9,"armorType":4,"stats":[26,0,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"0":26,"2":39,"6":26,"22":835},"isBase":true}}}, +{"id":25581,"name":"QR 9867 Hunter Gloves","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,16,36,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":16,"2":36,"6":16,"22":404},"isBase":true}}}, +{"id":25582,"name":"QR 9867 Druid Moonkin Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":36,"3":16,"4":16,"22":238},"isBase":true}}}, +{"id":25583,"name":"Eighty Silver Links","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":36,"3":16,"4":16,"22":238},"isBase":true}}}, +{"id":25584,"name":"Murkblood Oven Mitts","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,16,36,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":16,"2":36,"6":16,"22":404},"isBase":true}}}, +{"id":25585,"name":"Murkblood Avenger's Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[26,0,39,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"0":26,"2":39,"6":25,"22":835},"isBase":true}}}, +{"id":25589,"name":"Clefthoof Helm","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[22,22,33,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"0":22,"1":22,"2":33,"5":21,"22":776},"isBase":true}}}, +{"id":25591,"name":"Clefthoof Gloves","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":36,"3":16,"4":16,"22":265},"isBase":true}}}, +{"id":25592,"name":"Clefthoof Wristguards","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,21,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"2":21,"3":14,"4":16,"22":283},"isBase":true}}}, +{"id":25593,"name":"Windroc Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[19,0,28,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":19,"2":28,"9":18,"22":656},"isBase":true}}}, +{"id":25594,"name":"Windroc Boots","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,19,27,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":19,"2":27,"7":19,"22":445},"isBase":true}}}, +{"id":25595,"name":"Windroc Shroud","icon":"inv_chest_cloth_01","type":5,"armorType":1,"stats":[0,0,41,22,14,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":41,"3":22,"4":14,"6":21,"22":302},"isBase":true}}}, +{"id":25614,"name":"Feralfen Beastmaster's Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,21,46,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"1":21,"2":46,"6":21,"22":611},"isBase":true}}}, +{"id":25622,"name":"Staff of the Four Golden Coins","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,24,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":235,"weaponDamageMax":354,"weaponSpeed":3.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":235,"weaponDamageMax":354,"stats":{"1":24,"2":56},"isBase":true}}}, +{"id":25623,"name":"Bracers of the Battle Cleric","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[12,0,16,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"0":12,"2":16,"5":12,"6":11,"22":394},"isBase":true}}}, +{"id":25624,"name":"King's Bulwark","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"2":25,"9":18,"22":2286},"isBase":true}}}, +{"id":25625,"name":"QR 9922 Feral Druid Staff","icon":"inv_staff_03","type":13,"weaponType":8,"handType":4,"stats":[0,24,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":235,"weaponDamageMax":354,"weaponSpeed":3.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":235,"weaponDamageMax":354,"stats":{"1":24,"2":56},"isBase":true}}}, +{"id":25626,"name":"QR 9922 Paladin Bracer","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[12,0,16,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"0":12,"2":16,"5":12,"6":11,"22":394},"isBase":true}}}, +{"id":25627,"name":"QR 9922 Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,25,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,2286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"2":25,"9":18,"22":2286},"isBase":true}}}, +{"id":25628,"name":"Ogre Mauler's Badge","icon":"inv_jewelry_talisman_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"12":48,"13":48},"isBase":true}}}, +{"id":25629,"name":"Ogre Handler's Shooter","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,23,11,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"stats":{"2":23,"3":11,"14":141},"isBase":true}}}, +{"id":25630,"name":"Ogre Basher's Slippers","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,35,18,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":35,"3":18,"4":13,"22":196},"isBase":true}}}, +{"id":25631,"name":"Boots of the Specialist","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,36,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":36,"3":18,"4":12,"22":196},"isBase":true}}}, +{"id":25632,"name":"Wand of Happiness","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,23,11,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"weaponSpeed":1.7,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":37,"weaponDamageMax":70,"stats":{"2":23,"3":11,"14":141},"isBase":true}}}, +{"id":25633,"name":"Uniting Charm","icon":"inv_jewelry_talisman_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"12":48,"13":48},"isBase":true}}}, +{"id":25634,"name":"Oshu'gun Relic","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"3":24},"isBase":true}}}, +{"id":25636,"name":"Talbuk Cape","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,14,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"1":14,"2":32,"22":151},"isBase":true}}}, +{"id":25637,"name":"Ethereal Sash","icon":"inv_belt_32","type":8,"armorType":1,"stats":[0,0,36,13,0,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":36,"3":13,"5":18,"6":12,"22":170},"isBase":true}}}, +{"id":25639,"name":"Hemet's Elekk Gun","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,39,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":167,"weaponDamageMax":311,"weaponSpeed":2.5,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"weaponDamageMin":167,"weaponDamageMax":311,"stats":{"1":39,"6":39},"isBase":true}}}, +{"id":25640,"name":"Nesingwary Safari Stick","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,17,0,0,17,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":46,"weaponDamageMax":86,"weaponSpeed":1.8,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":46,"weaponDamageMax":86,"stats":{"3":17,"6":17,"14":176},"isBase":true}}}, +{"id":25657,"name":"Felscale Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,36,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Felscale Armor","setId":611,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32465}}],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":36,"2":45,"22":685},"isBase":true}}}, +{"id":25659,"name":"Scaled Draenic Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,0,30,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Scaled Draenic Armor","setId":612,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32469}}],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":30,"3":19,"4":20,"22":471},"isBase":true}}}, +{"id":25660,"name":"Scaled Draenic Vest","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Scaled Draenic Armor","setId":612,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32468}}],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":36,"3":25,"4":26,"22":611},"isBase":true}}}, +{"id":25671,"name":"Thick Draenic Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,26,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Thick Draenic Armor","setId":613,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32473}}],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"1":26,"2":57,"22":424},"isBase":true}}}, +{"id":25676,"name":"Wild Draenish Vest","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,31,32,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wild Draenish Armor","setId":614,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":32481}}],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":31,"3":32,"5":22,"22":424},"isBase":true}}}, +{"id":25680,"name":"Stylin' Purple Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,48,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32485}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":48,"2":45,"22":414},"isBase":true}}}, +{"id":25681,"name":"Stylin' Adventure Hat","icon":"inv_helmet_51","type":1,"armorType":3,"stats":[0,0,0,43,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32487}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"3":43,"4":40,"22":630},"isBase":true}}}, +{"id":25682,"name":"Stylin' Jungle Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,24,61,0,0,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32489}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":24,"2":61,"5":26,"6":16,"22":414},"isBase":true}}}, +{"id":25683,"name":"Stylin' Crimson Hat","icon":"inv_helmet_50","type":1,"armorType":3,"stats":[0,48,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32488}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":48,"2":45,"22":630},"isBase":true}}}, +{"id":25685,"name":"Fel Leather Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,18,0,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32490}}],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"1":18,"5":17,"6":24,"22":297},"isBase":true}}}, +{"id":25686,"name":"Fel Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,18,0,0,0,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32493}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":18,"5":25,"6":17,"22":350},"isBase":true}}}, +{"id":25687,"name":"Fel Leather Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,26,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fel Skin","setId":573,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32494}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":26,"5":25,"6":25,"22":445},"isBase":true}}}, +{"id":25689,"name":"Heavy Clefthoof Vest","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32495}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"2":45,"9":29,"22":513},"isBase":true}}}, +{"id":25690,"name":"Heavy Clefthoof Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,0,33,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32496}}],"scalingOptions":{"113":{"randPropPoints":62,"stats":{"2":33,"9":35,"22":447},"isBase":true}}}, +{"id":25691,"name":"Heavy Clefthoof Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":113,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Strength of the Clefthoof","setId":574,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32497}}],"scalingOptions":{"113":{"randPropPoints":47,"stats":{"2":30,"9":26,"22":351},"isBase":true}}}, +{"id":25692,"name":"Netherfury Leggings","icon":"inv_pants_plate_12","type":9,"armorType":3,"stats":[0,0,37,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32502}}],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":37,"3":25,"4":26,"22":635},"isBase":true}}}, +{"id":25693,"name":"Netherfury Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,36,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32503}}],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":36,"3":18,"4":18,"22":445},"isBase":true}}}, +{"id":25694,"name":"Netherfury Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,27,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Fury of the Nether","setId":576,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32501}}],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"2":27,"3":18,"4":22,"22":408},"isBase":true}}}, +{"id":25695,"name":"Felstalker Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,25,27,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32498}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":25,"2":27,"6":17,"22":436},"isBase":true}}}, +{"id":25696,"name":"Felstalker Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,26,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32500}}],"scalingOptions":{"114":{"randPropPoints":63,"stats":{"1":26,"2":39,"6":26,"22":779},"isBase":true}}}, +{"id":25697,"name":"Felstalker Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,19,27,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Felstalker Armor","setId":575,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":32499}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"1":19,"2":27,"6":11,"22":341},"isBase":true}}}, +{"id":25759,"name":"Mogor's Anointing Club","icon":"inv_hammer_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,29,0,12,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":54,"weaponDamageMax":100,"weaponSpeed":2.1,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":54,"weaponDamageMax":100,"stats":{"2":29,"4":12,"14":176},"isBase":true}}}, +{"id":25760,"name":"Battle Mage's Baton","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,0,30,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":80,"weaponDamageMax":121,"weaponSpeed":2.1,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"weaponDamageMin":80,"weaponDamageMax":121,"stats":{"2":69,"6":30,"14":106},"isBase":true}}}, +{"id":25761,"name":"Staff of Beasts","icon":"inv_staff_34","type":13,"weaponType":8,"handType":4,"stats":[0,30,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":252,"weaponDamageMax":379,"weaponSpeed":3.3,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"weaponDamageMin":252,"weaponDamageMax":379,"stats":{"1":30,"2":69},"isBase":true}}}, +{"id":25762,"name":"Honed Voidaxe","icon":"inv_axe_49","type":13,"weaponType":1,"handType":4,"stats":[31,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":260,"weaponDamageMax":390,"weaponSpeed":3.4,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"weaponDamageMin":260,"weaponDamageMax":390,"stats":{"0":31,"1":30,"2":45},"isBase":true}}}, +{"id":25763,"name":"Ceremonial Warmaul Blood-Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.7,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"1":13,"2":29},"isBase":true}}}, +{"id":25764,"name":"Mag'hari Fury Brand","icon":"inv_gauntlets_04","type":13,"weaponType":3,"handType":2,"stats":[0,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":128,"weaponDamageMax":239,"weaponSpeed":2.5,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":128,"weaponDamageMax":239,"stats":{"1":13,"2":29},"isBase":true}}}, +{"id":25772,"name":"Crystalline Kopesh","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,13,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":103,"weaponDamageMax":191,"weaponSpeed":2.1,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":103,"weaponDamageMax":191,"stats":{"2":18,"5":13,"9":12},"isBase":true}}}, +{"id":25773,"name":"Hungering Bone Cudgel","icon":"inv_mace_09","type":13,"weaponType":4,"handType":2,"stats":[0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":1.6,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":78,"weaponDamageMax":146,"stats":{"1":12,"2":28},"isBase":true}}}, +{"id":25774,"name":"Azure Lightblade","icon":"inv_weapon_shortblade_21","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,12,0,0,0,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":50,"weaponDamageMax":76,"weaponSpeed":1.8,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":50,"weaponDamageMax":76,"stats":{"2":28,"4":12,"14":169},"isBase":true}}}, +{"id":25775,"name":"Ogre Slayer's Band","icon":"inv_jewelry_ring_02","type":11,"stats":[17,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"0":17,"1":16,"2":25},"isBase":true}}}, +{"id":25776,"name":"Ogre Slayer's Pendant","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,37,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":37,"3":17},"isBase":true}}}, +{"id":25777,"name":"Ogre Slayer's Cover","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,27,17,11,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":27,"3":17,"4":11,"6":16,"22":151},"isBase":true}}}, +{"id":25778,"name":"Manacles of Remembrance","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,15,14,9,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"2":15,"3":14,"4":9,"6":14,"22":132},"isBase":true}}}, +{"id":25779,"name":"Warmaul Slayer's Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"1":18,"2":27},"isBase":true}}}, +{"id":25780,"name":"Warmaul Defender's Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[14,0,21,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"0":14,"2":21,"6":14,"22":151},"isBase":true}}}, +{"id":25788,"name":"Dauntless Handguards","icon":"inv_gauntlets_12","type":7,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":36,"10":25,"22":704},"isBase":true}}}, +{"id":25789,"name":"Rune-Engraved Belt","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,25,38,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"1":25,"2":38,"5":24,"22":438},"isBase":true}}}, +{"id":25790,"name":"Expedition Scout's Epaulets","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,25,38,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"1":25,"2":38,"5":24,"22":385},"isBase":true}}}, +{"id":25791,"name":"Gloves of Preservation","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,38,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":38,"3":24,"4":25,"22":321},"isBase":true}}}, +{"id":25792,"name":"Curate's Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,38,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":38,"3":24,"4":25,"22":252},"isBase":true}}}, +{"id":25793,"name":"Curate's Footwraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":32,"3":21,"4":21,"22":230},"isBase":true}}}, +{"id":25794,"name":"Bone Studded Girdle","icon":"inv_belt_35","type":8,"armorType":3,"stats":[0,21,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":21,"2":32,"5":21,"22":399},"isBase":true}}}, +{"id":25795,"name":"Gloves of Preservation","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,32,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":32,"3":21,"4":21,"22":292},"isBase":true}}}, +{"id":25796,"name":"Lurking Shadow Spaulders","icon":"inv_shoulder_13","type":3,"armorType":2,"stats":[0,21,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":21,"2":32,"5":21,"22":350},"isBase":true}}}, +{"id":25797,"name":"Crushing Grasp","icon":"inv_gauntlets_12","type":7,"armorType":4,"stats":[0,0,31,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":31,"9":21,"10":21,"22":640},"isBase":true}}}, +{"id":25803,"name":"Medallion of the Valiant Guardian","icon":"inv_jewelry_necklace_21","type":2,"stats":[17,0,27,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":17,"2":27,"9":18},"isBase":true}}}, +{"id":25804,"name":"Naliko's Revenge","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"6":18,"12":34,"13":34},"isBase":true}}}, +{"id":25805,"name":"Mantle of Vivification","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"3":18,"4":18,"22":179},"isBase":true}}}, +{"id":25806,"name":"Nethekurse's Rod of Torment","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,21,12,0,0,14,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"stats":{"2":21,"3":12,"6":14,"14":183},"isBase":true}}}, +{"id":25808,"name":"Rod of Dire Shadows","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,21,12,0,0,14,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"stats":{"2":21,"3":12,"6":14,"14":183},"isBase":true}}}, +{"id":25809,"name":"Maimfist's Choker","icon":"inv_jewelry_necklace_17","type":2,"stats":[17,0,27,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":17,"2":27,"9":18},"isBase":true}}}, +{"id":25810,"name":"Vicar's Cloak","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"3":18,"4":18,"22":179},"isBase":true}}}, +{"id":25811,"name":"Conqueror's Band","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"6":18,"12":34,"13":34},"isBase":true}}}, +{"id":25819,"name":"Breastplate of the Warbringer","icon":"inv_chest_chain_07","type":5,"armorType":4,"stats":[0,0,45,0,0,30,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":45,"5":30,"9":31,"22":1010},"isBase":true}}}, +{"id":25820,"name":"Metallic Headband of Simm'onz","icon":"inv_crown_01","type":1,"armorType":3,"stats":[0,0,45,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":45,"3":31,"4":30,"22":557},"isBase":true}}}, +{"id":25821,"name":"Leggings of Unending Assault","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,31,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":31,"2":68,"22":393},"isBase":true}}}, +{"id":25822,"name":"Watcher's Tunic","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,45,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":45,"3":31,"4":30,"22":320},"isBase":true}}}, +{"id":25830,"name":"Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,34,60,0,0,0,13,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,538,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":34,"2":60,"6":13,"16":23,"22":538},"isBase":true}}}, +{"id":25831,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,54,0,0,0,12,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,662,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":33,"2":54,"6":12,"16":23,"22":662},"isBase":true}}}, +{"id":25832,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,29,39,0,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":29,"2":39,"6":21,"16":23,"22":497},"isBase":true}}}, +{"id":25833,"name":"Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,36,64,0,0,0,19,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":36,"2":64,"6":19,"16":36,"22":580},"isBase":true}}}, +{"id":25834,"name":"Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,27,46,0,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":14,"16":23,"22":414},"isBase":true}}}, +{"id":25854,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,27,0,0,13,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":46,"3":27,"6":13,"16":21,"22":359},"isBase":true}}}, +{"id":25855,"name":"Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":389},"isBase":true}}}, +{"id":25856,"name":"Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,59,27,0,0,25,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":59,"3":27,"6":25,"16":24,"22":479},"isBase":true}}}, +{"id":25857,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":45,"3":27,"6":21,"16":21,"22":299},"isBase":true}}}, +{"id":25858,"name":"Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"6":28,"16":30,"22":419},"isBase":true}}}, +{"id":25964,"name":"Shaarde the Lesser","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":98,"weaponDamageMax":182,"weaponSpeed":2,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":98,"weaponDamageMax":182,"stats":{"2":25,"8":14},"isBase":true}}}, +{"id":25997,"name":"Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,29,51,0,0,20,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":29,"2":51,"5":20,"6":28,"16":26,"22":997},"isBase":true}}}, +{"id":25998,"name":"Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,51,0,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":34,"2":51,"6":26,"16":30,"22":810},"isBase":true}}}, +{"id":25999,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,19,42,0,0,12,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":19,"2":42,"5":12,"6":22,"16":21,"22":748},"isBase":true}}}, +{"id":26000,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,25,40,0,0,0,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":25,"2":40,"6":27,"16":21,"22":623},"isBase":true}}}, +{"id":26001,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,30,54,25,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":30,"2":54,"3":25,"6":36,"16":28,"22":873},"isBase":true}}}, +{"id":26055,"name":"Oculus of the Hidden Eye","icon":"inv_jewelry_ring_45","type":12,"stats":[0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"3":28},"isBase":true}}}, +{"id":27408,"name":"Hope Bearer Helm","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[30,23,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":30,"1":23,"2":19,"5":13,"22":772},"isBase":true}}}, +{"id":27409,"name":"Raven-Heart Headdress","icon":"inv_helmet_21","type":1,"armorType":2,"stats":[0,0,44,22,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":44,"3":22,"4":16,"6":16,"22":345},"isBase":true}}}, +{"id":27410,"name":"Collar of Command","icon":"inv_helmet_06","type":1,"armorType":1,"stats":[0,0,42,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":42,"3":30,"4":29,"22":246},"isBase":true}}}, +{"id":27411,"name":"Slippers of Serenity","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,32,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":32,"3":16,"4":15,"22":208},"isBase":true}}}, +{"id":27412,"name":"Ironstaff of Regeneration","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,57,0,35,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"weaponDamageMin":76,"weaponDamageMax":115,"weaponSpeed":2.1,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"weaponDamageMin":76,"weaponDamageMax":115,"stats":{"2":57,"4":35,"14":95},"isBase":true}}}, +{"id":27413,"name":"Ring of the Exarchs","icon":"inv_jewelry_ring_34","type":11,"stats":[0,17,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"1":17,"2":37},"isBase":true}}}, +{"id":27414,"name":"Mok'Nathal Beast-Mask","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,23,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":23,"2":33,"6":22,"22":526},"isBase":true}}}, +{"id":27415,"name":"Darkguard Face Mask","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,30,55,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":30,"2":55,"5":20,"22":345},"isBase":true}}}, +{"id":27416,"name":"Fetish of the Fallen","icon":"inv_helmet_45","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"12":56,"13":56},"isBase":true}}}, +{"id":27417,"name":"Ravenwing Pauldrons","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,0,29,19,14,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"2":29,"3":19,"4":14,"7":12,"22":337},"isBase":true}}}, +{"id":27418,"name":"Stormreaver Shadow-Kilt","icon":"inv_pants_leather_12","type":9,"armorType":1,"stats":[0,0,44,26,14,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":44,"3":26,"4":14,"6":25,"22":280},"isBase":true}}}, +{"id":27420,"name":"Uther's Ceremonial Warboots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[25,0,21,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"0":25,"2":21,"5":20,"6":20,"22":694},"isBase":true}}}, +{"id":27423,"name":"Cloak of Impulsiveness","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"1":18,"2":37,"22":160},"isBase":true}}}, +{"id":27424,"name":"Amani Venom-Axe","icon":"inv_axe_15","type":13,"weaponType":1,"handType":2,"stats":[0,0,15,0,0,0,15,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":2.3,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":118,"weaponDamageMax":220,"stats":{"2":15,"6":15,"12":26,"13":26},"isBase":true}}}, +{"id":27426,"name":"Northshire Battlemace","icon":"inv_mace_55","type":13,"weaponType":4,"handType":2,"stats":[0,0,29,0,12,0,0,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":2.7,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":69,"weaponDamageMax":129,"stats":{"2":29,"4":12,"14":176},"isBase":true}}}, +{"id":27427,"name":"Durotan's Battle Harness","icon":"inv_chest_chain_12","type":5,"armorType":4,"stats":[31,0,34,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"0":31,"2":34,"6":16,"22":1010},"isBase":true}}}, +{"id":27428,"name":"Stormfront Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,35,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"2":35,"3":16,"4":16,"22":428},"isBase":true}}}, +{"id":27430,"name":"Scaled Greaves of Patience","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,28,33,0,0,10,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":28,"2":33,"5":10,"6":23,"22":599},"isBase":true}}}, +{"id":27431,"name":"Time-Shifted Dagger","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,0,0,13,0,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.7,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":43,"weaponDamageMax":81,"stats":{"2":28,"6":13,"14":176},"isBase":true}}}, +{"id":27432,"name":"Broxigar's Ring of Valor","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[21,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"0":21,"2":19,"16":17},"isBase":true}}}, +{"id":27433,"name":"Pauldrons of Sufferance","icon":"inv_shoulder_26","type":3,"armorType":1,"stats":[0,0,28,16,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"2":28,"3":16,"4":19,"22":240},"isBase":true}}}, +{"id":27434,"name":"Mantle of Perenolde","icon":"inv_shoulder_35","type":3,"armorType":2,"stats":[0,10,24,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"1":10,"2":24,"5":23,"6":23,"22":337},"isBase":true}}}, +{"id":27436,"name":"Iron Band of the Unbreakable","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,27,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":27,"9":17,"23":49},"isBase":true}}}, +{"id":27440,"name":"Diamond Prism of Recurrence","icon":"inv_misc_gem_diamond_01","type":2,"stats":[0,0,29,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":29,"3":12,"4":20},"isBase":true}}}, +{"id":27447,"name":"Bracers of Just Rewards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[23,0,16,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":23,"2":16,"5":10,"6":15,"22":494},"isBase":true}}}, +{"id":27448,"name":"Cloak of the Everliving","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[0,0,0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":24,"4":22,"22":185},"isBase":true}}}, +{"id":27449,"name":"Blood Knight Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,26,0,0,0,0,0,0,18,0,0,0,0,0,0,0,20,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"9":18,"17":20,"22":2949},"isBase":true}}}, +{"id":27450,"name":"Wild Stalker Boots","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,32,24,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":32,"2":24,"5":17,"6":17,"22":537},"isBase":true}}}, +{"id":27451,"name":"Boots of the Darkwalker","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,55,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17306,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":55,"3":26,"22":254},"isBase":true}}}, +{"id":27452,"name":"Light Scribe Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,26,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"3":13,"4":22,"22":161},"isBase":true}}}, +{"id":27453,"name":"Averinn's Ring of Slaying","icon":"inv_jewelry_ring_38","type":11,"stats":[0,22,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":22,"2":35},"isBase":true}}}, +{"id":27454,"name":"Volcanic Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,45,25,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":25,"6":18,"22":586},"isBase":true}}}, +{"id":27455,"name":"Irondrake Faceguard","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[39,32,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":39,"1":32,"2":37,"22":917},"isBase":true}}}, +{"id":27456,"name":"Raiments of Nature's Breath","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,55,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":34,"4":27,"22":515},"isBase":true}}}, +{"id":27457,"name":"Life Bearer's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[0,0,45,25,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":25,"6":18,"22":705},"isBase":true}}}, +{"id":27458,"name":"Oceansong Kilt","icon":"inv_pants_cloth_11","type":9,"armorType":3,"stats":[0,0,65,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":65,"3":38,"22":684},"isBase":true}}}, +{"id":27459,"name":"Vambraces of Daring","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[18,0,26,0,0,0,0,0,0,11,15,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":18,"2":26,"9":11,"10":15,"22":494},"isBase":true}}}, +{"id":27460,"name":"Reavers' Ring","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[23,0,18,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":23,"2":18,"6":18},"isBase":true}}}, +{"id":27461,"name":"Chestguard of the Prowler","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,35,54,0,0,17,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":35,"2":54,"5":17,"10":16,"22":515},"isBase":true}}}, +{"id":27462,"name":"Crimson Bracers of Gloom","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,34,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"3":19,"5":12,"22":161},"isBase":true}}}, +{"id":27463,"name":"Terror Flame Dagger","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,14,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":15,"5":14,"12":34,"13":34},"isBase":true}}}, +{"id":27464,"name":"Omor's Unyielding Will","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"3":21},"isBase":true}}}, +{"id":27465,"name":"Mana-Etched Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,38,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":17,"6":16,"22":231},"isBase":true}}}, +{"id":27466,"name":"Headdress of Alacrity","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,56,28,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":28,"4":18,"6":17,"22":300},"isBase":true}}}, +{"id":27467,"name":"Silent-Strider Kneeboots","icon":"inv_boots_cloth_06","type":10,"armorType":2,"stats":[0,27,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":27,"2":51,"22":354},"isBase":true}}}, +{"id":27468,"name":"Moonglade Handwraps","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,42,19,17,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":19,"4":17,"7":18,"22":322},"isBase":true}}}, +{"id":27469,"name":"Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":27,"4":18,"6":23,"16":25,"22":997},"isBase":true}}}, +{"id":27470,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":21,"16":21,"22":623},"isBase":true}}}, +{"id":27471,"name":"Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":810},"isBase":true}}}, +{"id":27472,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,69,36,16,0,22,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"4":16,"6":22,"16":29,"22":873},"isBase":true}}}, +{"id":27473,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,44,19,16,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":44,"3":19,"4":16,"6":20,"16":20,"22":748},"isBase":true}}}, +{"id":27474,"name":"Beast Lord Handguards","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,25,28,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":28,"6":17,"22":489},"isBase":true}}}, +{"id":27475,"name":"Gauntlets of the Bold","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[17,16,31,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":17,"1":16,"2":31,"9":14,"22":705},"isBase":true}}}, +{"id":27476,"name":"Truncheon of Five Hells","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,19,0,0,14,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"2":19,"5":14,"9":15},"isBase":true}}}, +{"id":27477,"name":"Faol's Signet of Cleansing","icon":"inv_staff_24","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,27,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":27,"4":18},"isBase":true}}}, +{"id":27478,"name":"Girdle of the Blasted Reaches","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,16,39,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":16,"2":39,"6":15,"22":440},"isBase":true}}}, +{"id":27483,"name":"Moon-Touched Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,35,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"3":18,"4":12,"22":225},"isBase":true}}}, +{"id":27485,"name":"Embroidered Cape of Mysteries","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"3":21,"22":185},"isBase":true}}}, +{"id":27487,"name":"Bloodlord Legplates","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[38,0,27,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":38,"2":27,"6":11,"22":987},"isBase":true}}}, +{"id":27488,"name":"Mage-Collar of the Firestorm","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,61,33,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17381,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":61,"3":33,"6":23,"22":300},"isBase":true}}}, +{"id":27489,"name":"Virtue Bearer's Vambraces","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,24,16,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":24,"3":16,"4":16,"6":15,"22":494},"isBase":true}}}, +{"id":27490,"name":"Firebrand Battleaxe","icon":"inv_axe_65","type":13,"weaponType":1,"handType":2,"stats":[17,0,15,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":148,"weaponDamageMax":275,"stats":{"0":17,"2":15,"8":14},"isBase":true}}}, +{"id":27491,"name":"Signet of Repose","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,33,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":33,"3":12,"4":20},"isBase":true}}}, +{"id":27492,"name":"Moonchild Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":2,"stats":[0,0,42,20,19,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":42,"3":20,"4":19,"6":21,"22":451},"isBase":true}}}, +{"id":27493,"name":"Gloves of the Deadwatcher","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,25,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":25,"5":18,"22":231},"isBase":true}}}, +{"id":27494,"name":"Emerald Eye Bracer","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,18,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":23,"2":18,"5":12,"6":13,"22":342},"isBase":true}}}, +{"id":27495,"name":"Soldier's Dog Tags","icon":"inv_jewelry_necklace_39","type":2,"stats":[21,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":21,"1":19,"2":19},"isBase":true}}}, +{"id":27497,"name":"Doomplate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":39,"2":25,"22":705},"isBase":true}}}, +{"id":27505,"name":"Ruby Helm of the Just","icon":"inv_helmet_12","type":1,"armorType":4,"stats":[36,0,37,0,0,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":36,"2":37,"5":26,"6":16,"22":917},"isBase":true}}}, +{"id":27506,"name":"Robe of Effervescent Light","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,56,33,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":33,"4":27,"22":369},"isBase":true}}}, +{"id":27507,"name":"Adamantine Repeater","icon":"inv_weapon_crossbow_15","type":14,"rangedWeaponType":2,"stats":[0,47,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":274,"weaponDamageMax":412,"stats":{"1":47,"5":32},"isBase":true}}}, +{"id":27508,"name":"Incanter's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,43,25,12,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":25,"4":12,"6":14,"22":231},"isBase":true}}}, +{"id":27509,"name":"Handgrips of Assassination","icon":"inv_gauntlets_01","type":7,"armorType":2,"stats":[0,25,46,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":46,"5":17,"22":322},"isBase":true}}}, +{"id":27512,"name":"The Willbreaker","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,0,17,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":27,"6":17,"14":190},"isBase":true}}}, +{"id":27514,"name":"Leggings of the Unrepentant","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,30,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":30,"2":47,"22":451},"isBase":true}}}, +{"id":27517,"name":"Bands of Nethekurse","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,27,18,13,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":27,"3":18,"4":13,"5":15,"22":159},"isBase":true}}}, +{"id":27519,"name":"Cloak of Malice","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,21,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"1":21,"2":35,"22":182},"isBase":true}}}, +{"id":27520,"name":"Greathelm of the Unbreakable","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[36,0,48,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"0":36,"2":48,"9":30,"22":910},"isBase":true}}}, +{"id":27521,"name":"Telaari Hunting Girdle","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,25,36,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16807,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16807,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":36,"5":16,"6":17,"22":440},"isBase":true}}}, +{"id":27522,"name":"World's End Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"3":19,"6":17,"22":342},"isBase":true}}}, +{"id":27523,"name":"Exarch's Diamond Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,36,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"3":21},"isBase":true}}}, +{"id":27524,"name":"Firemaul of Destruction","icon":"inv_mace_36","type":13,"weaponType":4,"handType":4,"stats":[31,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":304,"weaponDamageMax":507,"weaponSpeed":3.7,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":304,"weaponDamageMax":507,"stats":{"0":31,"2":50,"16":40},"isBase":true}}}, +{"id":27525,"name":"Jeweled Boots of Sanctification","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,45,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":45,"3":25,"4":16,"22":250},"isBase":true}}}, +{"id":27526,"name":"Skyfire Hawk-Bow","icon":"inv_weapon_bow_17","type":14,"rangedWeaponType":1,"stats":[0,40,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":184,"weaponDamageMax":342,"weaponSpeed":2.4,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":184,"weaponDamageMax":342,"stats":{"1":40,"5":43},"isBase":true}}}, +{"id":27527,"name":"Greaves of the Shatterer","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[25,0,37,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":25,"2":37,"9":25,"22":987},"isBase":true}}}, +{"id":27528,"name":"Gauntlets of Desolation","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,17,25,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":25,"6":16,"7":16,"22":489},"isBase":true}}}, +{"id":27529,"name":"Figurine of the Colossus","icon":"inv_qirajidol_rebirth","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"9":32},"isBase":true}}}, +{"id":27531,"name":"Wastewalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,32,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":32,"2":34,"22":322},"isBase":true}}}, +{"id":27533,"name":"Demonblood Eviscerator","icon":"inv_weapon_hand_05","type":13,"weaponType":3,"handType":2,"stats":[0,0,16,0,0,0,0,0,17,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":16,"8":17,"12":28,"13":28},"isBase":true}}}, +{"id":27534,"name":"Hortus' Seal of Brilliance","icon":"inv_misc_gem_lionseye_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"3":20},"isBase":true}}}, +{"id":27535,"name":"Gauntlets of the Righteous","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,39,18,18,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":18,"4":18,"9":19,"22":705},"isBase":true}}}, +{"id":27536,"name":"Hallowed Handwraps","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,37,23,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":37,"3":23,"4":26,"22":231},"isBase":true}}}, +{"id":27537,"name":"Gloves of Oblivion","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,48,22,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":48,"3":22,"5":20,"22":231},"isBase":true}}}, +{"id":27538,"name":"Lightsworn Hammer","icon":"inv_hammer_23","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,20,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":21,"4":20,"14":190},"isBase":true}}}, +{"id":27539,"name":"Justice Bearer's Pauldrons","icon":"inv_shoulder_37","type":3,"armorType":4,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"4":18,"22":846},"isBase":true}}}, +{"id":27540,"name":"Nexus Torch","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,24,9,0,0,15,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16808,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":24,"3":9,"6":15,"14":190},"isBase":true}}}, +{"id":27541,"name":"Archery Belt of the Broken","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,29,24,0,0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":29,"2":24,"6":18,"7":19,"22":440},"isBase":true}}}, +{"id":27542,"name":"Cord of Belief","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,35,21,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":35,"3":21,"4":30,"22":208},"isBase":true}}}, +{"id":27543,"name":"Starlight Dagger","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,0,16,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":28,"5":16,"14":190},"isBase":true}}}, +{"id":27545,"name":"Mennu's Scaled Leggings","icon":"inv_pants_mail_05","type":9,"armorType":2,"stats":[0,23,25,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":23,"2":25,"6":32,"22":451},"isBase":true}}}, +{"id":27546,"name":"Traitor's Noose","icon":"inv_misc_noose_01","type":2,"stats":[0,0,18,0,0,12,18,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17941,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"5":12,"6":18,"12":38,"13":38},"isBase":true}}}, +{"id":27547,"name":"Coldwhisper Cord","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,40,25,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":40,"3":25,"4":12,"6":16,"22":208},"isBase":true}}}, +{"id":27548,"name":"Girdle of Many Blessings","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,43,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":21,"6":21,"22":635},"isBase":true}}}, +{"id":27549,"name":"Wavefury Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,41,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":25,"4":20,"22":537},"isBase":true}}}, +{"id":27550,"name":"Ironscale War Cloak","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,26,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"10":19,"22":185},"isBase":true}}}, +{"id":27551,"name":"Skeletal Necklace of Battlerage","icon":"inv_jewelry_talisman_12","type":2,"stats":[26,0,21,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":26,"2":21,"5":12},"isBase":true}}}, +{"id":27637,"name":"Shadowstalker's Sash","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,17,33,0,0,0,13,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"1":17,"2":33,"6":13,"16":16,"22":239},"isBase":true}}}, +{"id":27638,"name":"Hierophant's Sash","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,42,19,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":42,"3":19,"16":19,"22":170},"isBase":true}}}, +{"id":27639,"name":"Slayer's Waistguard","icon":"inv_belt_14","type":8,"armorType":4,"stats":[22,0,24,0,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"0":22,"2":24,"6":19,"16":19,"22":534},"isBase":true}}}, +{"id":27643,"name":"Stormbreaker's Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,28,19,0,0,19,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":28,"3":19,"6":19,"16":19,"22":364},"isBase":true}}}, +{"id":27644,"name":"Avenger's Waistguard","icon":"inv_belt_14","type":8,"armorType":4,"stats":[25,0,24,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"0":25,"2":24,"6":17,"16":17,"22":534},"isBase":true}}}, +{"id":27645,"name":"Dreamstalker Sash","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,15,42,0,0,14,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,239,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"1":15,"2":42,"5":14,"16":15,"22":239,"23":11},"isBase":true}}}, +{"id":27646,"name":"Marksman's Belt","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,19,35,0,0,0,9,10,0,0,0,0,0,0,0,0,13,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"1":19,"2":35,"6":9,"7":10,"16":13,"22":364},"isBase":true}}}, +{"id":27647,"name":"Marksman's Legguards","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,25,44,0,0,0,11,11,0,0,0,0,0,0,0,0,13,0,0,0,0,0,566,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":25,"2":44,"6":11,"7":11,"16":13,"22":566},"isBase":true}}}, +{"id":27648,"name":"Dreamstalker Leggings","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,20,33,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,371,17,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":20,"2":33,"6":20,"16":20,"22":371,"23":17},"isBase":true}}}, +{"id":27649,"name":"Hierophant's Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,265,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":48,"3":25,"16":25,"22":265},"isBase":true}}}, +{"id":27650,"name":"Shadowstalker's Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,23,42,0,0,0,15,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":23,"2":42,"6":15,"16":17,"22":371},"isBase":true}}}, +{"id":27652,"name":"Stormbreaker's Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,47,23,0,0,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,566,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":47,"3":23,"6":14,"16":22,"22":566},"isBase":true}}}, +{"id":27653,"name":"Slayer's Leggings","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[25,0,39,0,0,0,17,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":25,"2":39,"6":17,"16":25,"22":831},"isBase":true}}}, +{"id":27654,"name":"Avenger's Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[34,0,33,0,0,0,12,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":34,"2":33,"6":12,"16":22,"22":831},"isBase":true}}}, +{"id":27672,"name":"Girdle of the Immovable","icon":"inv_belt_26","type":8,"armorType":4,"stats":[17,0,33,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":17,"2":33,"10":23,"22":635},"isBase":true}}}, +{"id":27673,"name":"Phosphorescent Blade","icon":"inv_sword_27","type":13,"weaponType":9,"handType":2,"stats":[0,0,12,0,0,0,11,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":148,"weaponDamageMax":275,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":148,"weaponDamageMax":275,"stats":{"2":12,"6":11,"12":40,"13":40},"isBase":true}}}, +{"id":27683,"name":"Quagmirran's Eye","icon":"inv_misc_gem_pearl_01","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"3":32},"isBase":true}}}, +{"id":27702,"name":"Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,66,17,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":66,"3":17,"6":30,"16":27,"22":1432},"isBase":true}}}, +{"id":27703,"name":"Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"6":24,"16":14,"22":895},"isBase":true}}}, +{"id":27704,"name":"Gladiator's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,66,28,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":66,"3":28,"6":22,"16":32,"22":1164},"isBase":true}}}, +{"id":27705,"name":"Gladiator's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,66,32,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":66,"3":32,"6":32,"16":32,"22":1253},"isBase":true}}}, +{"id":27706,"name":"Gladiator's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,46,16,0,0,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":46,"3":16,"6":24,"16":21,"22":1074},"isBase":true}}}, +{"id":27707,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"16":28,"22":299},"isBase":true}}}, +{"id":27708,"name":"Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":68,"3":27,"16":30,"22":389},"isBase":true}}}, +{"id":27709,"name":"Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":79,"3":42,"16":30,"22":419},"isBase":true}}}, +{"id":27710,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":19,"16":24,"22":359},"isBase":true}}}, +{"id":27711,"name":"Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":68,"3":27,"16":28,"22":479},"isBase":true}}}, +{"id":27712,"name":"Shackles of Quagmirran","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":20,"2":36,"22":225},"isBase":true}}}, +{"id":27713,"name":"Pauldrons of Desolation","icon":"inv_shoulder_20","type":3,"armorType":3,"stats":[0,23,16,0,0,17,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":23,"2":16,"5":17,"6":19,"22":586},"isBase":true}}}, +{"id":27714,"name":"Swamplight Lantern","icon":"inv_offhand_outlandraid_03orange","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":33,"3":18,"4":16},"isBase":true}}}, +{"id":27737,"name":"Moonglade Shoulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,40,13,18,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":40,"3":13,"4":18,"6":13,"22":386},"isBase":true}}}, +{"id":27738,"name":"Incanter's Pauldrons","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":37,"3":17,"4":16,"22":277},"isBase":true}}}, +{"id":27739,"name":"Spaulders of the Righteous","icon":"inv_shoulder_10","type":3,"armorType":4,"stats":[0,0,41,13,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":13,"9":20,"22":846},"isBase":true}}}, +{"id":27740,"name":"Band of Ursol","icon":"inv_jewelry_ring_24","type":11,"stats":[23,12,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":23,"1":12,"2":22},"isBase":true}}}, +{"id":27741,"name":"Bleeding Hollow Warhammer","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,28,0,0,0,16,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":74,"weaponDamageMax":137,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":74,"weaponDamageMax":137,"stats":{"2":28,"6":16,"14":190},"isBase":true}}}, +{"id":27742,"name":"Mage-Fury Girdle","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,42,24,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":24,"6":20,"22":208},"isBase":true}}}, +{"id":27743,"name":"Girdle of Living Flame","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,30,25,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":30,"3":25,"5":16,"22":440},"isBase":true}}}, +{"id":27745,"name":"Hungarhide Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,27,38,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":27,"2":38,"6":22,"22":489},"isBase":true}}}, +{"id":27746,"name":"Arcanium Signet Bands","icon":"inv_bracer_19","type":6,"armorType":1,"stats":[0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":26,"22":161},"isBase":true}}}, +{"id":27747,"name":"Boggspine Knuckles","icon":"inv_weapon_hand_11","type":13,"weaponType":3,"handType":2,"stats":[0,15,13,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"1":15,"2":13,"5":11},"isBase":true}}}, +{"id":27748,"name":"Cassock of the Loyal","icon":"inv_chest_cloth_59","type":9,"armorType":4,"stats":[0,0,61,31,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17770,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":61,"3":31,"6":25,"22":987},"isBase":true}}}, +{"id":27755,"name":"Girdle of Gallantry","icon":"inv_belt_29","type":8,"armorType":4,"stats":[27,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":27,"2":22,"6":20,"22":635},"isBase":true}}}, +{"id":27757,"name":"Greatstaff of the Leviathan","icon":"inv_staff_56","type":13,"weaponType":8,"handType":4,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,103,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"stats":{"2":36,"12":78,"13":78,"23":103},"isBase":true}}}, +{"id":27758,"name":"Hydra-Fang Necklace","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,31,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":31,"3":16,"5":16},"isBase":true}}}, +{"id":27759,"name":"Headdress of the Tides","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,0,62,33,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":62,"3":33,"4":22,"22":635},"isBase":true}}}, +{"id":27760,"name":"Dunewind Sash","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":36,"22":290},"isBase":true}}}, +{"id":27761,"name":"Ring of the Shadow Deeps","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,15,0,0,13,21,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18105,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"5":13,"6":21,"12":24,"13":24},"isBase":true}}}, +{"id":27762,"name":"Weathered Band of the Swamplord","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,30,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":30,"3":14,"6":21},"isBase":true}}}, +{"id":27763,"name":"Crown of the Forest Lord","icon":"inv_helmet_17","type":1,"armorType":2,"stats":[0,0,53,31,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":31,"4":27,"22":419},"isBase":true}}}, +{"id":27764,"name":"Hands of the Sun","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,42,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":24,"6":21,"22":231},"isBase":true}}}, +{"id":27765,"name":"Armwraps of Disdain","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":19,"2":18,"6":20,"22":225},"isBase":true}}}, +{"id":27766,"name":"Swampstone Necklace","icon":"inv_jewelry_necklace_29","type":2,"stats":[0,0,27,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":18,"4":18},"isBase":true}}}, +{"id":27767,"name":"Bogreaver","icon":"inv_axe_55","type":13,"weaponType":1,"handType":2,"stats":[0,0,15,0,0,0,18,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17826,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":104,"weaponDamageMax":195,"stats":{"2":15,"6":18,"12":28,"13":28},"isBase":true}}}, +{"id":27768,"name":"Oracle Belt of Timeless Mystery","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,44,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,33,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3,5,8],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":25,"4":17,"22":208,"23":33},"isBase":true}}}, +{"id":27769,"name":"Endbringer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":4,"stats":[29,0,28,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"weaponSpeed":3.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"stats":{"0":29,"2":28,"6":45},"isBase":true}}}, +{"id":27770,"name":"Argussian Compass","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":36},"isBase":true}}}, +{"id":27771,"name":"Doomplate Shoulderguards","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[19,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":19,"2":22,"6":20,"22":846},"isBase":true}}}, +{"id":27772,"name":"Stormshield of Renewal","icon":"inv_shield_34","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":26,"22":2949},"isBase":true}}}, +{"id":27773,"name":"Barbaric Legstraps","icon":"inv_pants_leather_06","type":9,"armorType":3,"stats":[0,28,29,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":29,"5":18,"6":25,"22":684},"isBase":true}}}, +{"id":27775,"name":"Hallowed Pauldrons","icon":"inv_shoulder_22","type":3,"armorType":1,"stats":[0,0,27,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":27,"3":19,"4":20,"22":277},"isBase":true}}}, +{"id":27776,"name":"Shoulderpads of Assassination","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,25,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":42,"22":386},"isBase":true}}}, +{"id":27778,"name":"Spaulders of Oblivion","icon":"inv_shoulder_18","type":3,"armorType":1,"stats":[0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":25,"22":277},"isBase":true}}}, +{"id":27779,"name":"Bone Chain Necklace","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,19,34,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":19,"2":34,"5":13},"isBase":true}}}, +{"id":27780,"name":"Ring of Fabled Hope","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,18,27,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"3":27,"4":11},"isBase":true}}}, +{"id":27781,"name":"Demonfang Ritual Helm","icon":"inv_helmet_72","type":1,"armorType":1,"stats":[0,0,63,31,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":63,"3":31,"5":19,"22":300},"isBase":true}}}, +{"id":27783,"name":"Moonrage Girdle","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,33,21,21,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":33,"3":21,"4":21,"6":20,"22":286},"isBase":true}}}, +{"id":27784,"name":"Scintillating Coral Band","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":27,"3":18,"6":17},"isBase":true}}}, +{"id":27787,"name":"Chestguard of No Remorse","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,46,35,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":46,"2":35,"6":21,"22":509},"isBase":true}}}, +{"id":27788,"name":"Bloodsworn Warboots","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[31,0,29,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,770,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"0":31,"2":29,"5":17,"22":770},"isBase":true}}}, +{"id":27789,"name":"Cloak of Whispering Shells","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17797,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17797,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":29,"3":18,"4":10,"22":182},"isBase":true}}}, +{"id":27790,"name":"Mask of Penance","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,54,30,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":54,"3":30,"4":26,"22":910},"isBase":true}}}, +{"id":27791,"name":"Serpentcrest Life-Staff","icon":"inv_staff_48","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,46,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":2.4,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":105,"weaponDamageMax":158,"stats":{"2":51,"4":46,"14":151},"isBase":true}}}, +{"id":27792,"name":"Steam-Hinge Chain of Valor","icon":"ability_rogue_nervesofsteel","type":2,"stats":[0,0,26,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":26,"9":19},"isBase":true}}}, +{"id":27793,"name":"Earth Mantle Handwraps","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,36,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":36,"3":16,"6":16,"22":484},"isBase":true}}}, +{"id":27794,"name":"Recoilless Rocket Ripper X-54","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,0,40,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":222,"weaponDamageMax":414,"weaponSpeed":2.9,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17796,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17796,"zoneId":3715}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":222,"weaponDamageMax":414,"stats":{"2":40,"6":50},"isBase":true}}}, +{"id":27795,"name":"Sash of Serpentra","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,47,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":21,"5":17,"22":208},"isBase":true}}}, +{"id":27796,"name":"Mana-Etched Spaulders","icon":"inv_shoulder_22","type":3,"armorType":1,"stats":[0,0,38,17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":17,"6":16,"22":277},"isBase":true}}}, +{"id":27797,"name":"Wastewalker Shoulderpads","icon":"inv_shoulder_15","type":3,"armorType":2,"stats":[0,25,29,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":29,"5":16,"22":386},"isBase":true}}}, +{"id":27798,"name":"Gauntlets of Vindication","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[0,0,46,9,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":46,"3":9,"4":18,"22":705},"isBase":true}}}, +{"id":27799,"name":"Vermillion Robes of the Dominant","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,65,36,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":65,"3":36,"5":12,"22":369},"isBase":true}}}, +{"id":27800,"name":"Earthsoul Britches","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,55,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":33,"4":26,"22":451},"isBase":true}}}, +{"id":27801,"name":"Beast Lord Mantle","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,25,26,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":26,"5":12,"6":12,"22":586},"isBase":true}}}, +{"id":27803,"name":"Shoulderguards of the Bold","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[25,0,25,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":25,"2":25,"9":17,"22":846},"isBase":true}}}, +{"id":27804,"name":"Devilshark Cape","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,22,0,0,0,0,0,0,29,10,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":22,"9":29,"10":10,"22":185},"isBase":true}}}, +{"id":27805,"name":"Ring of the Silver Hand","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,18,18,12,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"3":18,"4":12,"9":19},"isBase":true}}}, +{"id":27806,"name":"Fathomheart Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,46,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":46,"3":25,"4":18,"22":489},"isBase":true}}}, +{"id":27813,"name":"Boots of the Colossus","icon":"inv_boots_chain_11","type":10,"armorType":4,"stats":[22,0,27,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":22,"2":27,"9":19,"22":776},"isBase":true}}}, +{"id":27814,"name":"Twinblade of Mastery","icon":"inv_weapon_shortblade_30","type":13,"weaponType":2,"handType":2,"stats":[0,0,12,0,0,0,21,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":12,"6":21,"8":11},"isBase":true}}}, +{"id":27816,"name":"Mindrage Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,33,29,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":29,"5":10,"22":277},"isBase":true}}}, +{"id":27817,"name":"Starbolt Longbow","icon":"inv_weapon_bow_06","type":14,"rangedWeaponType":1,"stats":[0,0,60,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":2.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":224,"weaponDamageMax":417,"stats":{"2":60,"6":47},"isBase":true}}}, +{"id":27818,"name":"Starry Robes of the Crescent","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,51,33,24,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18341,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":51,"3":33,"4":24,"6":19,"22":515},"isBase":true}}}, +{"id":27821,"name":"Extravagant Boots of Malice","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,47,26,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":26,"5":14,"22":254},"isBase":true}}}, +{"id":27822,"name":"Crystal Band of Valor","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,27,0,0,16,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"5":16,"9":22},"isBase":true}}}, +{"id":27823,"name":"Shard Encrusted Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,35,44,0,0,8,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":35,"2":44,"5":8,"6":32,"22":782},"isBase":true}}}, +{"id":27824,"name":"Robe of the Great Dark Beyond","icon":"inv_chest_cloth_38","type":5,"armorType":1,"stats":[0,0,53,33,18,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":33,"4":18,"6":23,"22":369},"isBase":true}}}, +{"id":27825,"name":"Predatory Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,24,16,0,0,19,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":24,"2":16,"5":19,"6":21,"22":322},"isBase":true}}}, +{"id":27826,"name":"Mantle of the Sea Wolf","icon":"inv_shoulder_33","type":3,"armorType":3,"stats":[0,0,45,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18343,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":23,"4":20,"22":586},"isBase":true}}}, +{"id":27827,"name":"Lucid Dream Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,27,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":17,"4":17,"22":225},"isBase":true}}}, +{"id":27828,"name":"Warp-Scarab Brooch","icon":"inv_scarab_crystal","type":12,"stats":[0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"4":32},"isBase":true}}}, +{"id":27829,"name":"Axe of the Nexus-Kings","icon":"inv_axe_70","type":13,"weaponType":1,"handType":4,"stats":[0,0,33,0,0,0,35,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"weaponSpeed":3.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"stats":{"2":33,"6":35,"12":72,"13":72},"isBase":true}}}, +{"id":27831,"name":"Mantle of the Unforgiven","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,26,25,0,0,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":26,"2":25,"5":12,"6":21,"22":386},"isBase":true}}}, +{"id":27835,"name":"Stillwater Girdle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,43,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":24,"4":20,"22":440},"isBase":true}}}, +{"id":27837,"name":"Wastewalker Leggings","icon":"inv_pants_mail_04","type":9,"armorType":2,"stats":[0,31,36,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":31,"2":36,"5":19,"22":451},"isBase":true}}}, +{"id":27838,"name":"Incanter's Trousers","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,53,36,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":36,"4":17,"6":18,"22":323},"isBase":true}}}, +{"id":27839,"name":"Legplates of the Righteous","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,47,24,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":24,"4":26,"9":26,"22":987},"isBase":true}}}, +{"id":27840,"name":"Scepter of Sha'tar","icon":"inv_mace_51","type":13,"weaponType":4,"handType":4,"stats":[31,0,28,0,0,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":300,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":300,"weaponDamageMax":501,"stats":{"0":31,"2":28,"5":26,"6":30},"isBase":true}}}, +{"id":27842,"name":"Grand Scepter of the Nexus-Kings","icon":"inv_staff_45","type":13,"weaponType":8,"handType":4,"stats":[0,0,82,0,0,19,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"stats":{"2":82,"5":19,"14":151},"isBase":true}}}, +{"id":27843,"name":"Glyph-Lined Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,42,26,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":26,"6":9,"22":208},"isBase":true}}}, +{"id":27844,"name":"Pauldrons of Swift Retribution","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[29,0,24,0,0,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":29,"2":24,"6":19,"7":20,"22":846},"isBase":true}}}, +{"id":27845,"name":"Magma Plume Boots","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,47,25,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"5":14,"22":537},"isBase":true}}}, +{"id":27846,"name":"Claw of the Watcher","icon":"inv_weapon_hand_07","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":2.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":154,"weaponDamageMax":286,"stats":{"6":12,"12":24,"13":24},"isBase":true}}}, +{"id":27847,"name":"Fanblade Pauldrons","icon":"inv_shoulder_34","type":3,"armorType":4,"stats":[16,0,22,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":16,"2":22,"10":26,"22":846},"isBase":true}}}, +{"id":27848,"name":"Embroidered Spellpyre Boots","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,39,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17380,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":35,"22":254},"isBase":true}}}, +{"id":27865,"name":"Bracers of Shirrak","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,24,17,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":24,"2":17,"5":12,"6":14,"22":342},"isBase":true}}}, +{"id":27866,"name":"Scintillating Headdress of Second Sight","icon":"inv_helmet_52","type":1,"armorType":1,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18371,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":33,"4":32,"22":300},"isBase":true}}}, +{"id":27867,"name":"Boots of the Unjust","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,32,25,0,0,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":32,"2":25,"5":13,"6":19,"22":354},"isBase":true}}}, +{"id":27868,"name":"Runesong Dagger","icon":"inv_weapon_shortblade_52","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,20,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.8,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16809,"zoneId":3714}},{"drop":{"difficulty":2,"npcId":16809,"zoneId":3714}}],"scalingOptions":{"112":{"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"stats":{"2":21,"6":20,"14":183},"isBase":true}}}, +{"id":27869,"name":"Soulpriest's Ring of Resolve","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"16":24},"isBase":true}}}, +{"id":27870,"name":"Doomplate Legguards","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[36,0,33,0,0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":36,"2":33,"5":17,"6":27,"22":987},"isBase":true}}}, +{"id":27871,"name":"Maladaar's Blessed Chaplet","icon":"spell_holy_summonlightwell","type":2,"stats":[0,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":30,"9":24},"isBase":true}}}, +{"id":27872,"name":"The Harvester of Souls","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[16,0,13,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"0":16,"2":13,"6":15},"isBase":true}}}, +{"id":27873,"name":"Moonglade Pants","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,0,53,25,23,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"4":23,"6":25,"22":451},"isBase":true}}}, +{"id":27874,"name":"Beast Lord Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,30,40,0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":30,"2":40,"5":18,"6":26,"22":684},"isBase":true}}}, +{"id":27875,"name":"Hallowed Trousers","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,56,33,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":33,"4":27,"22":323},"isBase":true}}}, +{"id":27876,"name":"Will of the Fallen Exarch","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,190,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":19,"14":190,"16":21},"isBase":true}}}, +{"id":27877,"name":"Draenic Wildstaff","icon":"inv_staff_42","type":13,"weaponType":8,"handType":4,"stats":[0,32,63,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"stats":{"1":32,"2":63,"5":22},"isBase":true}}}, +{"id":27878,"name":"Auchenai Death Shroud","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[0,15,32,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":15,"2":32,"5":17,"22":185},"isBase":true}}}, +{"id":27879,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":32,"2":65,"6":23,"16":23,"22":1432},"isBase":true}}}, +{"id":27880,"name":"Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":895},"isBase":true}}}, +{"id":27881,"name":"Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":32,"2":65,"6":23,"16":23,"22":1164},"isBase":true}}}, +{"id":27882,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[44,0,65,0,0,0,29,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":44,"2":65,"6":29,"16":29,"22":1253},"isBase":true}}}, +{"id":27883,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[24,0,48,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":24,"2":48,"6":17,"16":17,"22":1074},"isBase":true}}}, +{"id":27884,"name":"Ornate Boots of the Sanctified","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[37,0,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,770,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"0":37,"2":18,"6":20,"22":770},"isBase":true}}}, +{"id":27885,"name":"Soul-Wand of the Aldor","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,21,13,13,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.8,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"stats":{"2":21,"3":13,"4":13,"14":183},"isBase":true}}}, +{"id":27887,"name":"Platinum Shield of the Valorous","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,2940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":33,"9":24,"22":2940},"isBase":true}}}, +{"id":27888,"name":"Dream-Wing Helm","icon":"inv_helmet_21","type":1,"armorType":3,"stats":[0,33,16,0,0,13,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":33,"2":16,"5":13,"6":27,"7":25,"22":630},"isBase":true}}}, +{"id":27889,"name":"Jaedenfire Gloves of Annihilation","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,47,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18731,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18731,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":47,"3":27,"22":227},"isBase":true}}}, +{"id":27890,"name":"Wand of the Netherwing","icon":"inv_wand_19","type":14,"rangedWeaponType":6,"stats":[0,0,25,18,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"weaponSpeed":1.8,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":26,"weaponDamageMin":53,"weaponDamageMax":99,"stats":{"2":25,"3":18,"14":183},"isBase":true}}}, +{"id":27891,"name":"Adamantine Figurine","icon":"inv_qirajidol_sage","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"9":32},"isBase":true}}}, +{"id":27892,"name":"Cloak of the Inciter","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,15,0,0,16,18,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":15,"5":16,"6":18,"12":30,"13":30,"22":182},"isBase":true}}}, +{"id":27893,"name":"Ornate Leggings of the Venerated","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,21,35,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":21,"3":35,"6":25,"22":980},"isBase":true}}}, +{"id":27895,"name":"Band of Many Prisms","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,0,190,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"17":10,"18":10,"19":10,"20":10,"21":10,"23":190},"isBase":true}}}, +{"id":27896,"name":"Alembic of Infernal Power","icon":"inv_potion_130","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":33},"isBase":true}}}, +{"id":27897,"name":"Breastplate of Many Graces","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,62,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":62,"3":28,"4":28,"22":1120},"isBase":true}}}, +{"id":27898,"name":"Wrathfire Hand-Cannon","icon":"inv_weapon_rifle_20","type":14,"rangedWeaponType":3,"stats":[0,47,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":2,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":153,"weaponDamageMax":285,"stats":{"1":47,"6":31},"isBase":true}}}, +{"id":27899,"name":"Mana Wrath","icon":"inv_sword_draenei_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,38,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":38,"14":190},"isBase":true}}}, +{"id":27900,"name":"Jewel of Charismatic Mystique","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":47,"isBase":true}}}, +{"id":27901,"name":"Blackout Truncheon","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":106,"weaponDamageMax":197,"weaponSpeed":1.8,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18732,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18732,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":26,"weaponDamageMin":106,"weaponDamageMax":197,"isBase":true}}}, +{"id":27902,"name":"Silent Slippers of Meditation","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,46,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":46,"3":22,"4":21,"22":254},"isBase":true}}}, +{"id":27903,"name":"Sonic Spear","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,35,57,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"1":35,"2":57,"5":24},"isBase":true}}}, +{"id":27904,"name":"Resounding Ring of Glory","icon":"inv_jewelry_ring_64","type":11,"stats":[24,0,24,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":24,"2":24,"5":15},"isBase":true}}}, +{"id":27905,"name":"Greatsword of Horrid Dreams","icon":"inv_sword_2h_blood_c_03","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,14,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":27,"5":14,"14":190},"isBase":true}}}, +{"id":27906,"name":"Crimsonforge Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[36,0,45,0,0,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17308,"zoneId":3562}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":36,"2":45,"5":16,"6":26,"22":1128},"isBase":true}}}, +{"id":27907,"name":"Mana-Etched Pantaloons","icon":"inv_pants_cloth_17","type":9,"armorType":1,"stats":[0,0,62,28,0,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":62,"3":28,"5":18,"6":21,"22":323},"isBase":true}}}, +{"id":27908,"name":"Leggings of Assassination","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,40,50,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":40,"2":50,"5":22,"22":451},"isBase":true}}}, +{"id":27910,"name":"Silvermoon Crest Shield","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,30,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":30,"3":20,"4":12,"22":2949},"isBase":true}}}, +{"id":27911,"name":"Epoch's Whispering Cinch","icon":"inv_belt_19","type":8,"armorType":2,"stats":[0,25,41,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":41,"5":17,"22":290},"isBase":true}}}, +{"id":27912,"name":"Harness of the Deep Currents","icon":"inv_chest_leather_05","type":5,"armorType":3,"stats":[0,0,55,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":31,"4":26,"22":782},"isBase":true}}}, +{"id":27913,"name":"Whispering Blade of Slaying","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,0,0,15,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":133,"weaponDamageMax":201,"weaponSpeed":1.9,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":133,"weaponDamageMax":201,"stats":{"2":21,"8":15,"12":26,"13":26},"isBase":true}}}, +{"id":27914,"name":"Moonstrider Boots","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,41,21,16,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":41,"3":21,"4":16,"6":20,"22":350},"isBase":true}}}, +{"id":27915,"name":"Sky-Hunter Swift Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,25,41,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":25,"2":41,"5":12,"6":13,"22":533},"isBase":true}}}, +{"id":27918,"name":"Bands of Syth","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[21,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"0":21,"1":19,"2":18,"22":490},"isBase":true}}}, +{"id":27919,"name":"Light-Woven Slippers","icon":"inv_boots_cloth_02","type":10,"armorType":1,"stats":[0,0,41,13,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18472,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18472,"zoneId":3791}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":41,"3":13,"4":29,"22":250},"isBase":true}}}, +{"id":27925,"name":"Ravenclaw Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,20,28,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":20,"2":28,"5":13},"isBase":true}}}, +{"id":27936,"name":"Greaves of Desolation","icon":"inv_pants_cloth_20","type":9,"armorType":3,"stats":[0,33,24,0,0,12,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":24,"5":12,"6":22,"7":33,"22":684},"isBase":true}}}, +{"id":27937,"name":"Sky Breaker","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":32,"14":190},"isBase":true}}}, +{"id":27938,"name":"Savage Mask of the Lynx Lord","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,35,58,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":35,"2":58,"5":15,"22":419},"isBase":true}}}, +{"id":27946,"name":"Avian Cloak of Feathers","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18,"22":185},"isBase":true}}}, +{"id":27948,"name":"Trousers of Oblivion","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,69,33,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":69,"3":33,"5":12,"22":323},"isBase":true}}}, +{"id":27977,"name":"Legplates of the Bold","icon":"inv_pants_plate_06","type":9,"armorType":4,"stats":[31,19,45,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":31,"1":19,"2":45,"9":26,"22":987},"isBase":true}}}, +{"id":27980,"name":"Terokk's Nightmace","icon":"inv_hammer_19","type":13,"weaponType":4,"handType":2,"stats":[0,0,25,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":123,"weaponDamageMax":229,"weaponSpeed":2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":123,"weaponDamageMax":229,"stats":{"2":25,"8":19},"isBase":true}}}, +{"id":27981,"name":"Sethekk Oracle Cloak","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[0,0,34,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"3":19,"5":12,"22":185},"isBase":true}}}, +{"id":27985,"name":"Deathforge Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[22,0,25,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":22,"2":25,"6":20,"22":635},"isBase":true}}}, +{"id":27986,"name":"Crow Wing Reaper","icon":"inv_axe_69","type":13,"weaponType":1,"handType":4,"stats":[28,17,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"weaponSpeed":3.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18473,"zoneId":3791}},{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":311,"weaponDamageMax":467,"stats":{"0":28,"1":17,"2":33},"isBase":true}}}, +{"id":27987,"name":"Melmorta's Twilight Longbow","icon":"inv_weapon_bow_19","type":14,"rangedWeaponType":1,"stats":[0,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":230,"weaponDamageMax":428,"weaponSpeed":3,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":230,"weaponDamageMax":428,"stats":{"1":47,"2":47},"isBase":true}}}, +{"id":27988,"name":"Burnoose of Shifting Ages","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,15,0,0,0,0,0,0,26,10,0,0,0,0,0,0,0,0,0,0,0,182,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":15,"9":26,"10":10,"22":182,"23":40},"isBase":true}}}, +{"id":27993,"name":"Mask of Inner Fire","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,0,60,32,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":60,"3":32,"6":22,"22":630},"isBase":true}}}, +{"id":27994,"name":"Mantle of Three Terrors","icon":"inv_shoulder_36","type":3,"armorType":1,"stats":[0,0,50,25,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":50,"3":25,"5":12,"22":273},"isBase":true}}}, +{"id":27995,"name":"Sun-Gilded Shouldercaps","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,25,47,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":25,"2":47,"5":15,"22":382},"isBase":true}}}, +{"id":27996,"name":"Ring of Spiritual Precision","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,13,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17879,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17879,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":13,"3":18,"4":25},"isBase":true}}}, +{"id":28033,"name":"Epoch-Mender","icon":"inv_staff_46","type":13,"weaponType":8,"handType":4,"stats":[0,0,67,0,30,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":105,"weaponDamageMax":158,"weaponSpeed":2.4,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":105,"weaponDamageMax":158,"stats":{"2":67,"4":30,"14":151},"isBase":true}}}, +{"id":28034,"name":"Hourglass of the Unraveller","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"6":32},"isBase":true}}}, +{"id":28111,"name":"Everlasting Underspore Frond","icon":"inv_misc_herb_11a","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"isBase":true}}}, +{"id":28121,"name":"Icon of Unyielding Courage","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"5":30},"isBase":true}}}, +{"id":28124,"name":"Liar's Cord","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,17,24,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17991,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":24,"6":18,"22":290},"isBase":true}}}, +{"id":28126,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,55,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":30,"2":55,"3":6,"16":20,"22":414,"23":11},"isBase":true}}}, +{"id":28127,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,33,64,21,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":33,"2":64,"3":21,"16":24,"22":538,"23":11},"isBase":true}}}, +{"id":28128,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,40,79,10,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":40,"2":79,"3":10,"16":28,"22":580,"23":17},"isBase":true}}}, +{"id":28129,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,28,48,13,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":28,"2":48,"3":13,"16":18,"22":497,"23":11},"isBase":true}}}, +{"id":28130,"name":"Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,32,61,13,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":32,"2":61,"3":13,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":28134,"name":"Brooch of Heightened Potential","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,27,19,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18667,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18667,"zoneId":3789}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":27,"3":19,"5":9,"6":14},"isBase":true}}}, +{"id":28136,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,48,32,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":48,"3":32,"4":16,"16":22,"22":414,"23":11},"isBase":true}}}, +{"id":28137,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,62,37,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":62,"3":37,"4":18,"16":27,"22":538,"23":11},"isBase":true}}}, +{"id":28138,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,66,43,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":66,"3":43,"4":26,"16":29,"22":580,"23":17},"isBase":true}}}, +{"id":28139,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,41,24,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":41,"3":24,"4":10,"16":20,"22":497,"23":11},"isBase":true}}}, +{"id":28140,"name":"Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,56,39,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":56,"3":39,"4":16,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":28167,"name":"Sha'tari Wrought Armguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[20,0,18,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":20,"2":18,"9":12,"22":494},"isBase":true}}}, +{"id":28168,"name":"Insignia of the Mag'hari Hero","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,21,0,0,14,15,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":21,"5":14,"6":15,"12":30,"13":30},"isBase":true}}}, +{"id":28169,"name":"Mag'hari Ritualist's Horns","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,32,43,0,12,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":32,"3":43,"5":12,"6":15,"22":260},"isBase":true}}}, +{"id":28170,"name":"Auchenai Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":18,"2":23,"5":10,"22":342},"isBase":true}}}, +{"id":28171,"name":"Spymistress' Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,18,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":18,"2":15,"5":15,"22":225},"isBase":true}}}, +{"id":28172,"name":"Mag'hari Scout's Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,43,39,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":43,"2":39,"5":12,"22":449},"isBase":true}}}, +{"id":28173,"name":"Mag'hari Huntsman's Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,43,27,0,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":43,"2":27,"5":15,"6":16,"22":599},"isBase":true}}}, +{"id":28174,"name":"Shattrath Wraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,28,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":28,"3":18,"22":161},"isBase":true}}}, +{"id":28175,"name":"Mag'hari Warlord's Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[12,0,64,0,0,15,12,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"0":12,"2":64,"5":15,"6":12,"9":16,"22":884},"isBase":true}}}, +{"id":28176,"name":"Sha'tari Wrought Greaves","icon":"inv_boots_chain_01","type":10,"armorType":4,"stats":[24,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":24,"1":21,"2":22,"22":776},"isBase":true}}}, +{"id":28177,"name":"Auchenai Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,25,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":25,"3":25,"4":26,"22":537},"isBase":true}}}, +{"id":28178,"name":"Spymistress' Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,18,15,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":18,"2":15,"9":27,"22":354},"isBase":true}}}, +{"id":28179,"name":"Shattrath Jumpers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":25,"22":254},"isBase":true}}}, +{"id":28180,"name":"Myrmidon's Headdress","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[17,0,37,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[2,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":17,"2":37,"9":33,"22":917},"isBase":true}}}, +{"id":28181,"name":"Earthwarden's Coif","icon":"inv_helmet_38","type":1,"armorType":3,"stats":[0,25,39,0,0,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":25,"2":39,"5":18,"6":17,"22":635},"isBase":true}}}, +{"id":28182,"name":"Helm of the Claw","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,33,44,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":44,"5":14,"22":419},"isBase":true}}}, +{"id":28183,"name":"Hydromancer's Headwrap","icon":"inv_helmet_62","type":1,"armorType":1,"stats":[0,0,46,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":46,"3":28,"22":300},"isBase":true}}}, +{"id":28184,"name":"Millennium Blade","icon":"inv_sword_64","type":13,"weaponType":9,"handType":2,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":118,"weaponDamageMax":219,"weaponSpeed":2,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":26,"weaponDamageMin":118,"weaponDamageMax":219,"stats":{"2":19,"16":21},"isBase":true}}}, +{"id":28185,"name":"Khadgar's Kilt of Abjuration","icon":"inv_pants_leather_05","type":9,"armorType":1,"stats":[0,0,40,31,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":40,"3":31,"4":15,"22":318},"isBase":true}}}, +{"id":28186,"name":"Laughing Skull Battle-Harness","icon":"inv_chest_leather_04","type":5,"armorType":3,"stats":[0,28,44,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":28,"2":44,"6":20,"22":775},"isBase":true}}}, +{"id":28187,"name":"Star-Heart Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17880,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17880,"zoneId":2366}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":33,"3":19,"5":12},"isBase":true}}}, +{"id":28188,"name":"Bloodfire Greatstaff","icon":"inv_staff_40","type":13,"weaponType":8,"handType":4,"stats":[0,0,79,0,0,0,28,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"stats":{"2":79,"6":28,"14":151},"isBase":true}}}, +{"id":28189,"name":"Latro's Shifting Sword","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,15,20,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Latro's Flurry","setId":737,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"1":15,"2":20,"8":14},"isBase":true}}}, +{"id":28190,"name":"Scarab of the Infinite Cycle","icon":"inv_misc_ahnqirajtrinket_06","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"3":32},"isBase":true}}}, +{"id":28191,"name":"Mana-Etched Vestments","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,47,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":25,"6":17,"22":369},"isBase":true}}}, +{"id":28192,"name":"Helm of Desolation","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,33,21,0,0,25,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":21,"5":25,"6":14,"22":635},"isBase":true}}}, +{"id":28193,"name":"Mana-Etched Crown","icon":"inv_jewelry_ring_56","type":1,"armorType":1,"stats":[0,0,43,29,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Mana-Etched Regalia","setId":658,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":43,"3":29,"5":15,"22":300},"isBase":true}}}, +{"id":28194,"name":"Primal Surge Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,32,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":32,"3":17,"4":16,"22":342},"isBase":true}}}, +{"id":28202,"name":"Moonglade Robe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,42,25,14,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":42,"3":25,"4":14,"6":25,"22":515},"isBase":true}}}, +{"id":28203,"name":"Breastplate of the Righteous","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,54,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17798,"zoneId":3715}},{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":20,"9":20,"22":1128},"isBase":true}}}, +{"id":28204,"name":"Tunic of Assassination","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,28,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":46,"22":515},"isBase":true}}}, +{"id":28205,"name":"Breastplate of the Bold","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[23,21,33,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":23,"1":21,"2":33,"9":19,"22":1128},"isBase":true}}}, +{"id":28206,"name":"Cowl of the Guiltless","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,26,28,0,0,0,0,0,0,30,0,0,0,0,0,0,31,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":26,"2":28,"9":30,"16":31,"22":419},"isBase":true}}}, +{"id":28207,"name":"Pauldrons of the Crimson Flight","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[40,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17881,"zoneId":2366}},{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":40,"2":28,"22":846},"isBase":true}}}, +{"id":28210,"name":"Bloodskull Destroyer","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,12,0,0,0,21,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":12,"6":21,"12":22,"13":22},"isBase":true}}}, +{"id":28211,"name":"Lieutenant's Signet of Lordaeron","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,30,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":30,"9":21,"23":41},"isBase":true}}}, +{"id":28212,"name":"Aran's Sorcerous Slacks","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,53,20,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":20,"6":21,"22":323},"isBase":true}}}, +{"id":28213,"name":"Lordaeron Medical Guide","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,20,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":20,"3":21,"4":16},"isBase":true}}}, +{"id":28214,"name":"Grips of the Lunar Eclipse","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,45,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":24,"4":18,"22":322},"isBase":true}}}, +{"id":28215,"name":"Mok'Nathal Mask of Battle","icon":"inv_helmet_72","type":1,"armorType":3,"stats":[0,23,39,0,0,19,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17848,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":23,"2":39,"5":19,"6":15,"22":635},"isBase":true}}}, +{"id":28216,"name":"Dathrohan's Ceremonial Hammer","icon":"inv_hammer_11","type":13,"weaponType":4,"handType":2,"stats":[0,0,26,0,18,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":26,"4":18,"14":190},"isBase":true}}}, +{"id":28217,"name":"Tarren Mill Vitality Locket","icon":"inv_trinket_honorhold","type":2,"stats":[0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"16":24},"isBase":true}}}, +{"id":28218,"name":"Pontiff's Pantaloons of Prophecy","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,39,25,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":39,"3":25,"4":24,"22":323},"isBase":true}}}, +{"id":28219,"name":"Emerald-Scale Greaves","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,28,42,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":42,"5":12,"6":20,"22":684},"isBase":true}}}, +{"id":28220,"name":"Moon-Crown Antlers","icon":"inv_helmet_24","type":1,"armorType":2,"stats":[0,0,54,34,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":34,"5":16,"6":20,"22":419},"isBase":true}}}, +{"id":28221,"name":"Boots of the Watchful Heart","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17862,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"4":18,"22":776},"isBase":true}}}, +{"id":28222,"name":"Reaver of the Infinites","icon":"inv_axe_71","type":13,"weaponType":1,"handType":4,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,50,50,0,0,27,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"2":22,"12":50,"13":50,"16":27},"isBase":true}}}, +{"id":28223,"name":"Arcanist's Stone","icon":"inv_jewelcrafting_nightseye_01","type":12,"stats":[0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"5":25},"isBase":true}}}, +{"id":28224,"name":"Wastewalker Helm","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,28,30,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":30,"5":18,"6":22,"22":419},"isBase":true}}}, +{"id":28225,"name":"Doomplate Warhelm","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[34,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":34,"2":39,"22":917},"isBase":true}}}, +{"id":28226,"name":"Timeslicer","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,0,0,15,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":13,"8":15,"12":30,"13":30},"isBase":true}}}, +{"id":28227,"name":"Sparking Arcanite Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,26,19,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"3":19,"5":10,"6":14},"isBase":true}}}, +{"id":28228,"name":"Beast Lord Cuirass","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,20,50,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":50,"5":10,"6":20,"22":782},"isBase":true}}}, +{"id":28229,"name":"Incanter's Robe","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,43,25,22,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":43,"3":25,"4":22,"6":8,"22":369},"isBase":true}}}, +{"id":28230,"name":"Hallowed Garments","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,38,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":38,"3":26,"4":26,"22":369},"isBase":true}}}, +{"id":28232,"name":"Robe of Oblivion","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18708,"zoneId":3789}},{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":34,"22":369},"isBase":true}}}, +{"id":28233,"name":"Necklace of Resplendent Hope","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":24,"4":22},"isBase":true}}}, +{"id":28234,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[6],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28235,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28236,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28237,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[2],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28238,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[3],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28239,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[3],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28240,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[6],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28241,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28242,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[4],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28243,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[2],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":28244,"name":"Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,28,0,0,0,10,0,0,0,0,0,36,36,0,0,17,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":28,"6":10,"12":36,"13":36,"16":17},"isBase":true}}}, +{"id":28245,"name":"Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":37,"3":22,"16":16},"isBase":true}}}, +{"id":28246,"name":"Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,21,0,0,0,16,0,0,0,0,0,32,32,0,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":21,"6":16,"12":32,"13":32,"16":16},"isBase":true}}}, +{"id":28247,"name":"Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,27,21,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":27,"3":21,"16":15},"isBase":true}}}, +{"id":28249,"name":"Capacitus' Cloak of Calibration","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[22,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":22,"1":18,"2":19,"22":185},"isBase":true}}}, +{"id":28250,"name":"Vestia's Pauldrons of Inner Grace","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,46,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":46,"3":22,"4":20,"22":277},"isBase":true}}}, +{"id":28251,"name":"Boots of the Glade-Keeper","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,43,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":24,"4":20,"22":354},"isBase":true}}}, +{"id":28252,"name":"Bloodfyre Robes of Annihilation","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,51,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"zoneId":3849,"otherName":"Cache of the Legion"}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":51,"3":46,"22":369},"isBase":true}}}, +{"id":28253,"name":"Plasma Rat's Hyper-Scythe","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[42,0,45,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"0":42,"2":45,"6":26},"isBase":true}}}, +{"id":28254,"name":"Warp Engineer's Prismatic Chain","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,33,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":33,"3":16,"6":16},"isBase":true}}}, +{"id":28255,"name":"Lunar-Claw Pauldrons","icon":"inv_shoulder_19","type":3,"armorType":2,"stats":[0,0,47,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"4":17,"22":386},"isBase":true}}}, +{"id":28256,"name":"Thoriumweave Cloak","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,89,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"22":185,"23":89},"isBase":true}}}, +{"id":28257,"name":"Hammer of the Penitent","icon":"inv_mace_13","type":13,"weaponType":4,"handType":2,"stats":[0,0,24,0,22,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19219,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19219,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":24,"4":22,"14":190},"isBase":true}}}, +{"id":28259,"name":"Cosmic Lifeband","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":26,"4":18},"isBase":true}}}, +{"id":28260,"name":"Manual of the Nethermancer","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,18,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"3":18,"6":19},"isBase":true}}}, +{"id":28262,"name":"Jade-Skull Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[30,0,50,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":30,"2":50,"10":36,"22":1128},"isBase":true}}}, +{"id":28263,"name":"Stellaris","icon":"inv_axe_63","type":13,"weaponType":1,"handType":2,"stats":[0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":1.9,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19221,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19221,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":117,"weaponDamageMax":218,"stats":{"1":21,"2":21},"isBase":true}}}, +{"id":28264,"name":"Wastewalker Tunic","icon":"inv_chest_chain_17","type":5,"armorType":2,"stats":[0,28,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Wastewalker Armor","setId":659,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":59,"22":515},"isBase":true}}}, +{"id":28265,"name":"Dath'Remar's Ring of Defense","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"9":15},"isBase":true}}}, +{"id":28266,"name":"Molten Earth Kilt","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,0,54,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":34,"4":26,"22":684},"isBase":true}}}, +{"id":28267,"name":"Edge of the Cosmos","icon":"inv_sword_77","type":13,"weaponType":9,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":13,"6":16,"12":30,"13":30},"isBase":true}}}, +{"id":28268,"name":"Natural Mender's Wraps","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,0,45,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18478,"zoneId":3790}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":25,"4":18,"22":322},"isBase":true}}}, +{"id":28269,"name":"Baba's Cloak of Arcanistry","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,28,19,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":28,"3":19,"6":14,"22":185},"isBase":true}}}, +{"id":28275,"name":"Beast Lord Helm","icon":"inv_helmet_19","type":1,"armorType":3,"stats":[0,25,41,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Beast Lord Armor","setId":650,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":25,"2":41,"6":25,"22":635},"isBase":true}}}, +{"id":28278,"name":"Incanter's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,42,25,17,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Incanter's Regalia","setId":647,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":42,"3":25,"4":17,"6":19,"22":300},"isBase":true}}}, +{"id":28285,"name":"Helm of the Righteous","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,45,20,16,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Righteous Armor","setId":623,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":20,"4":16,"9":21,"22":917},"isBase":true}}}, +{"id":28286,"name":"Telescopic Sharprifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,44,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":240,"weaponDamageMax":447,"weaponSpeed":3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":240,"weaponDamageMax":447,"stats":{"1":44,"2":63},"isBase":true}}}, +{"id":28288,"name":"Abacus of Violent Odds","icon":"inv_misc_enggizmos_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19220,"zoneId":3849}},{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"12":64,"13":64},"isBase":true}}}, +{"id":28293,"name":"High Warlord's Claymore","icon":"inv_sword_48","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"0":28,"2":42,"5":18,"6":28,"16":19},"isBase":true}}}, +{"id":28294,"name":"Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,48,0,0,0,38,0,0,0,0,0,0,83,0,0,38,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":3.1,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":371,"weaponDamageMax":558,"stats":{"2":48,"6":38,"13":83,"16":38},"isBase":true}}}, +{"id":28295,"name":"Gladiator's Slicer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"weaponSpeed":2.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28297,"name":"Gladiator's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,18,0,0,0,0,0,0,0,0,0,0,199,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"stats":{"2":28,"3":18,"14":199,"16":18},"isBase":true}}}, +{"id":28298,"name":"Gladiator's Decapitator","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,20,35,0,0,0,0,0,64,64,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"weaponSpeed":3.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"stats":{"2":48,"5":20,"6":35,"12":64,"13":64,"16":28},"isBase":true}}}, +{"id":28299,"name":"Gladiator's Bonegrinder","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[32,0,48,0,0,20,35,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"weaponSpeed":3.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"stats":{"0":32,"2":48,"5":20,"6":35,"16":28},"isBase":true}}}, +{"id":28300,"name":"Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,48,0,0,0,35,0,0,0,0,0,70,70,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":263,"weaponDamageMax":396,"weaponSpeed":2.2,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":263,"weaponDamageMax":396,"stats":{"2":48,"6":35,"12":70,"13":70,"16":36},"isBase":true}}}, +{"id":28301,"name":"Syrannis' Mystic Sheen","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,185,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"17":12,"18":12,"19":12,"20":12,"21":12,"22":185,"23":156},"isBase":true}}}, +{"id":28302,"name":"Gladiator's Bonecracker","icon":"inv_mace_36","type":13,"weaponType":4,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28304,"name":"Prismatic Mittens of Mending","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,47,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"4":18,"22":231},"isBase":true}}}, +{"id":28305,"name":"Gladiator's Pummeler","icon":"inv_mace_36","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"weaponSpeed":2.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28306,"name":"Towering Mantle of the Hunt","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,24,21,0,0,23,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":24,"2":21,"5":23,"6":21,"22":586},"isBase":true}}}, +{"id":28307,"name":"Gladiator's Quickblade","icon":"inv_sword_71","type":13,"weaponType":9,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28308,"name":"Gladiator's Cleaver","icon":"inv_axe_54","type":13,"weaponType":1,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"weaponSpeed":2.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":239,"weaponDamageMax":360,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28309,"name":"Gladiator's Hacker","icon":"inv_axe_54","type":13,"weaponType":1,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28310,"name":"Gladiator's Shiv","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":3,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28311,"name":"Revenger","icon":"inv_sword_79","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17976,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17976,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"isBase":true}}}, +{"id":28312,"name":"Gladiator's Shanker","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":166,"weaponDamageMax":249,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":166,"weaponDamageMax":249,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28313,"name":"Gladiator's Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":209,"weaponDamageMax":390,"weaponSpeed":2.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":209,"weaponDamageMax":390,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28314,"name":"Gladiator's Fleshslicer","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,21,0,0,9,15,0,0,0,0,0,28,28,0,0,10,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":145,"weaponDamageMax":270,"stats":{"2":21,"5":9,"6":15,"12":28,"13":28,"16":10},"isBase":true}}}, +{"id":28315,"name":"Stormreaver Warblades","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":2,"stats":[0,0,13,0,0,0,21,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":98,"weaponDamageMax":183,"weaponSpeed":1.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":98,"weaponDamageMax":183,"stats":{"2":13,"6":21,"12":22,"13":22},"isBase":true}}}, +{"id":28316,"name":"Aegis of the Sunbird","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,0,0,0,0,0,0,19,10,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"9":19,"10":10,"22":2949},"isBase":true}}}, +{"id":28317,"name":"Energis Armwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,50,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":50,"3":29,"22":231},"isBase":true}}}, +{"id":28318,"name":"Obsidian Clodstompers","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[34,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":34,"2":30,"22":776},"isBase":true}}}, +{"id":28320,"name":"Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,32,16,0,0,0,0,0,0,0,0,0,0,246,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":1.9,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":76,"weaponDamageMax":142,"stats":{"2":32,"3":16,"14":246,"16":16},"isBase":true}}}, +{"id":28321,"name":"Enchanted Thorium Torque","icon":"inv_jewelry_ring_ahnqiraj_01","type":2,"stats":[0,0,27,0,0,16,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17975,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17975,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"5":16,"9":21},"isBase":true}}}, +{"id":28322,"name":"Runed Dagger of Solace","icon":"inv_weapon_shortblade_52","type":13,"weaponType":2,"handType":2,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,190,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":24,"14":190,"16":21},"isBase":true}}}, +{"id":28323,"name":"Ring of Umbral Doom","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,18,0,0,0,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"6":20,"12":40,"13":40},"isBase":true}}}, +{"id":28324,"name":"Gauntlets of Cruel Intention","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[30,0,25,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":30,"2":25,"6":21,"22":705},"isBase":true}}}, +{"id":28325,"name":"Dreamer's Dragonstaff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,27,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":219,"weaponDamageMax":330,"stats":{"1":27,"2":73},"isBase":true}}}, +{"id":28327,"name":"Arcane Netherband","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,18,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17978,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17978,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"3":18,"5":15},"isBase":true}}}, +{"id":28328,"name":"Mithril-Bark Cloak","icon":"inv_misc_cape_09","type":4,"armorType":1,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":32,"16":26,"22":185},"isBase":true}}}, +{"id":28331,"name":"Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,57,0,0,0,20,18,0,0,0,0,0,0,0,0,20,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":34,"2":57,"6":20,"7":18,"16":20,"22":810},"isBase":true}}}, +{"id":28332,"name":"Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,56,0,0,0,19,19,0,0,0,0,0,0,0,0,31,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":35,"2":56,"6":19,"7":19,"16":31,"22":873},"isBase":true}}}, +{"id":28333,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,27,38,0,0,0,11,9,0,0,0,0,0,0,0,0,18,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":38,"6":11,"7":9,"16":18,"22":748},"isBase":true}}}, +{"id":28334,"name":"Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,27,57,0,0,0,18,13,0,0,0,0,0,0,0,0,20,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":27,"2":57,"6":18,"7":13,"16":20,"22":997},"isBase":true}}}, +{"id":28335,"name":"Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,26,42,0,0,0,14,13,0,0,0,0,0,0,0,0,18,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":26,"2":42,"6":14,"7":13,"16":18,"22":623},"isBase":true}}}, +{"id":28337,"name":"Breastplate of Righteous Fury","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[31,0,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":31,"2":29,"6":28,"22":1128},"isBase":true}}}, +{"id":28338,"name":"Devil-Stitched Leggings","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,56,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":25,"22":323},"isBase":true}}}, +{"id":28339,"name":"Boots of the Shifting Sands","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,20,30,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":20,"2":30,"6":19,"22":354},"isBase":true}}}, +{"id":28340,"name":"Mantle of Autumn","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,48,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17980,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17980,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":48,"3":21,"4":21,"22":386},"isBase":true}}}, +{"id":28341,"name":"Warpstaff of Arcanum","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,0,16,26,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"stats":{"2":71,"5":16,"6":26,"14":151},"isBase":true}}}, +{"id":28342,"name":"Warp Infused Drape","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,52,26,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":52,"3":26,"5":12,"22":369},"isBase":true}}}, +{"id":28343,"name":"Jagged Bark Pendant","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":26,"2":28},"isBase":true}}}, +{"id":28344,"name":"Wyrmfury Pauldrons","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,25,36,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":36,"6":25,"22":586},"isBase":true}}}, +{"id":28345,"name":"Warp Splinter's Thorn","icon":"inv_weapon_shortblade_57","type":13,"weaponType":2,"handType":2,"stats":[0,16,13,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"1":16,"2":13,"5":15},"isBase":true}}}, +{"id":28346,"name":"Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":32,"3":16,"16":15},"isBase":true}}}, +{"id":28347,"name":"Warpscale Leggings","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,32,55,0,0,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":32,"2":55,"5":14,"9":21,"22":451},"isBase":true}}}, +{"id":28348,"name":"Moonglade Cowl","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,40,24,13,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Moonglade Raiment","setId":637,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":40,"3":24,"4":13,"7":24,"22":419},"isBase":true}}}, +{"id":28350,"name":"Warhelm of the Bold","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[24,22,23,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[3,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bold Armor","setId":653,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":24,"1":22,"2":23,"9":20,"22":917},"isBase":true}}}, +{"id":28358,"name":"Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,3806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":45,"16":29,"22":3806},"isBase":true}}}, +{"id":28367,"name":"Greatsword of Forlorn Visions","icon":"inv_sword_58","type":13,"weaponType":9,"handType":4,"stats":[26,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"0":26,"2":28},"isBase":true}}}, +{"id":28370,"name":"Bangle of Endless Blessings","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":28371,"name":"Netherfury Cape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[19,0,19,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17977,"zoneId":3847}},{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":19,"2":19,"6":21,"22":185},"isBase":true}}}, +{"id":28373,"name":"Cloak of Scintillating Auras","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,27,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":19,"4":18,"22":185},"isBase":true}}}, +{"id":28374,"name":"Mana-Sphere Shoulderguards","icon":"inv_shoulder_32","type":3,"armorType":1,"stats":[0,0,47,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":25,"4":17,"22":277},"isBase":true}}}, +{"id":28375,"name":"Rubium War-Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[31,0,29,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":31,"2":29,"6":18,"22":635},"isBase":true}}}, +{"id":28377,"name":"Sergeant's Heavy Cloak","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,27,0,0,0,19,0,0,0,0,0,38,38,0,0,19,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":27,"6":19,"12":38,"13":38,"16":19,"22":240},"isBase":true}}}, +{"id":28378,"name":"Sergeant's Heavy Cape","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":38,"3":22,"16":16,"22":240},"isBase":true}}}, +{"id":28379,"name":"Sergeant's Heavy Cape","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":38,"3":22,"16":16,"22":240},"isBase":true}}}, +{"id":28380,"name":"Sergeant's Heavy Cloak","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,27,0,0,0,19,0,0,0,0,0,38,38,0,0,19,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":27,"6":19,"12":38,"13":38,"16":19,"22":240},"isBase":true}}}, +{"id":28381,"name":"General's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,25,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"0":19,"2":25,"6":14,"16":14,"22":612},"isBase":true}}}, +{"id":28383,"name":"General's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":27,"2":40,"6":27,"16":27,"22":985},"isBase":true}}}, +{"id":28384,"name":"Outland Striders","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,25,18,0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20870,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20870,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":18,"5":24,"6":21,"22":537},"isBase":true}}}, +{"id":28385,"name":"General's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":27,"2":40,"6":27,"16":27,"22":806},"isBase":true}}}, +{"id":28386,"name":"Nether Core's Control Rod","icon":"inv_wand_17","type":14,"rangedWeaponType":6,"stats":[0,0,24,15,0,11,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":24,"3":15,"5":11,"14":190},"isBase":true}}}, +{"id":28387,"name":"Lamp of Peaceful Repose","icon":"inv_mace_13","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":32,"3":16,"4":16},"isBase":true}}}, +{"id":28390,"name":"Thatia's Self-Correcting Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[16,0,35,0,0,0,0,0,0,18,26,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":16,"2":35,"9":18,"10":26,"22":705},"isBase":true}}}, +{"id":28391,"name":"Worldfire Chestguard","icon":"inv_chest_wolf","type":5,"armorType":3,"stats":[0,0,61,34,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":61,"3":34,"6":22,"22":782},"isBase":true}}}, +{"id":28392,"name":"Reflex Blades","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":2,"stats":[0,0,13,0,0,16,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20885,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20885,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"stats":{"2":13,"5":16,"12":32,"13":32},"isBase":true}}}, +{"id":28393,"name":"Warmaul of Infused Light","icon":"inv_mace_42","type":13,"weaponType":4,"handType":4,"stats":[20,0,30,0,0,0,21,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":300,"weaponDamageMax":501,"weaponSpeed":3.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":300,"weaponDamageMax":501,"stats":{"0":20,"2":30,"6":21,"7":28},"isBase":true}}}, +{"id":28394,"name":"Ryngo's Band of Ingenuity","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,25,21,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":25,"3":21,"6":14},"isBase":true}}}, +{"id":28396,"name":"Gloves of the Unbound","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":27,"2":36,"22":322},"isBase":true}}}, +{"id":28397,"name":"Emberhawk Crossbow","icon":"inv_weapon_crossbow_17","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,57,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":274,"weaponDamageMax":412,"stats":{"6":57,"12":44,"13":44},"isBase":true}}}, +{"id":28398,"name":"The Sleeper's Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,41,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20886,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20886,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":24,"4":21,"22":290},"isBase":true}}}, +{"id":28400,"name":"Warp-Storm Warblade","icon":"inv_sword_51","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,15,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":104,"weaponDamageMax":195,"weaponSpeed":1.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":104,"weaponDamageMax":195,"stats":{"2":21,"5":15,"9":13},"isBase":true}}}, +{"id":28401,"name":"Hauberk of Desolation","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,25,28,0,0,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Desolation Battlegear","setId":660,"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":25,"2":28,"5":25,"6":16,"22":782},"isBase":true}}}, +{"id":28402,"name":"General's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":329},"isBase":true}}}, +{"id":28403,"name":"Doomplate Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[30,0,27,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Doomplate Battlegear","setId":661,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":30,"2":27,"6":19,"22":1128},"isBase":true}}}, +{"id":28404,"name":"General's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":269},"isBase":true}}}, +{"id":28405,"name":"General's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":35,"3":19,"16":14,"22":199},"isBase":true}}}, +{"id":28406,"name":"Sigil-Laced Boots","icon":"inv_boots_cloth_04","type":10,"armorType":1,"stats":[0,0,38,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":17,"6":17,"22":254},"isBase":true}}}, +{"id":28407,"name":"Elementium Band of the Sentry","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,24,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":24,"9":29},"isBase":true}}}, +{"id":28409,"name":"General's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":24,"22":269},"isBase":true}}}, +{"id":28410,"name":"General's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":24,"22":329},"isBase":true}}}, +{"id":28411,"name":"General's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,36,17,0,0,12,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":36,"3":17,"6":12,"16":11,"22":199},"isBase":true}}}, +{"id":28412,"name":"Lamp of Peaceful Radiance","icon":"inv_offhand_outlandraid_03white","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,18,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":26,"3":18,"5":12,"6":13},"isBase":true}}}, +{"id":28413,"name":"Hallowed Crown","icon":"inv_jewelry_ring_62","type":1,"armorType":1,"stats":[0,0,36,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Hallowed Raiment","setId":662,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":36,"3":26,"4":26,"22":300},"isBase":true}}}, +{"id":28414,"name":"Helm of Assassination","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,33,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Assassination Armor","setId":620,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":25,"6":25,"22":419},"isBase":true}}}, +{"id":28415,"name":"Hood of Oblivion","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Oblivion Raiment","setId":644,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":34,"22":300},"isBase":true}}}, +{"id":28416,"name":"Hungering Spineripper","icon":"inv_weapon_shortblade_35","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":13,"6":16,"12":30,"13":30},"isBase":true}}}, +{"id":28418,"name":"Shiffar's Nexus-Horn","icon":"inv_gizmo_elementalblastingpowder","type":12,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"6":30},"isBase":true}}}, +{"id":28419,"name":"Choker of Fluid Thought","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,30,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":20912,"zoneId":3848}},{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":30,"3":16,"4":17},"isBase":true}}}, +{"id":28422,"name":"General's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":15,"16":26,"22":455},"isBase":true}}}, +{"id":28423,"name":"General's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":15,"16":26,"22":373},"isBase":true}}}, +{"id":28424,"name":"General's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,28,0,0,0,7,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":19,"2":28,"6":7,"16":13,"22":278},"isBase":true}}}, +{"id":28425,"name":"Fireguard","icon":"inv_sword_1h_blacksmithing_01","type":13,"weaponType":9,"handType":2,"stats":[0,16,23,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":112,"weaponDamageMax":209,"weaponSpeed":1.6,"ilvl":107,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34535}}],"scalingOptions":{"107":{"randPropPoints":31,"weaponDamageMin":112,"weaponDamageMax":209,"stats":{"1":16,"2":23,"5":16},"isBase":true}}}, +{"id":28426,"name":"Blazeguard","icon":"inv_sword_1h_blacksmithing_02","type":13,"weaponType":9,"handType":2,"stats":[0,17,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":129,"weaponDamageMax":240,"weaponSpeed":1.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34537}}],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":129,"weaponDamageMax":240,"stats":{"1":17,"2":25,"5":17},"isBase":true}}}, +{"id":28427,"name":"Blazefury","icon":"inv_sword_1h_blacksmithing_03","type":13,"weaponType":9,"handType":2,"stats":[0,19,28,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":144,"weaponDamageMax":269,"weaponSpeed":1.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36258}}],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":144,"weaponDamageMax":269,"stats":{"1":19,"2":28,"5":18},"isBase":true}}}, +{"id":28428,"name":"Lionheart Blade","icon":"inv_sword_2h_blacksmithing_01","type":13,"weaponType":9,"handType":4,"stats":[47,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"weaponDamageMin":376,"weaponDamageMax":564,"weaponSpeed":3.6,"ilvl":107,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34538}}],"scalingOptions":{"107":{"randPropPoints":71,"weaponDamageMin":376,"weaponDamageMax":564,"stats":{"0":47,"1":42},"isBase":true}}}, +{"id":28429,"name":"Lionheart Champion","icon":"inv_sword_2h_blacksmithing_02","type":13,"weaponType":9,"handType":4,"stats":[49,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"weaponSpeed":3.6,"ilvl":123,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34540}}],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":431,"weaponDamageMax":648,"stats":{"0":49,"1":44},"isBase":true}}}, +{"id":28430,"name":"Lionheart Executioner","icon":"inv_sword_2h_blacksmithing_03","type":13,"weaponType":9,"handType":4,"stats":[52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"weaponSpeed":3.6,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36259}}],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"stats":{"0":52,"1":44},"isBase":true}}}, +{"id":28431,"name":"The Planar Edge","icon":"inv_axe_1h_blacksmithing_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.7,"ilvl":107,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34541}}],"scalingOptions":{"107":{"randPropPoints":31,"weaponDamageMin":189,"weaponDamageMax":353,"stats":{"6":20,"12":42,"13":42},"isBase":true}}}, +{"id":28432,"name":"Black Planar Edge","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":218,"weaponDamageMax":405,"weaponSpeed":2.7,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34542}}],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":218,"weaponDamageMax":405,"stats":{"6":21,"12":44,"13":44},"isBase":true}}}, +{"id":28433,"name":"Wicked Edge of the Planes","icon":"inv_axe_1h_blacksmithing_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,23,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.7,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36260}}],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":244,"weaponDamageMax":454,"stats":{"6":23,"12":48,"13":48},"isBase":true}}}, +{"id":28434,"name":"Lunar Crescent","icon":"inv_axe_50","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,47,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"weaponDamageMin":386,"weaponDamageMax":580,"weaponSpeed":3.7,"ilvl":107,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34543}}],"scalingOptions":{"107":{"randPropPoints":71,"weaponDamageMin":386,"weaponDamageMax":580,"stats":{"6":47,"12":96,"13":96},"isBase":true}}}, +{"id":28435,"name":"Mooncleaver","icon":"inv_axe_51","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,52,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":443,"weaponDamageMax":666,"weaponSpeed":3.7,"ilvl":123,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34544}}],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":443,"weaponDamageMax":666,"stats":{"6":52,"12":106,"13":106},"isBase":true}}}, +{"id":28436,"name":"Bloodmoon","icon":"inv_axe_52","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,56,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":497,"weaponDamageMax":746,"weaponSpeed":3.7,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36261}}],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":497,"weaponDamageMax":746,"stats":{"6":56,"12":112,"13":112},"isBase":true}}}, +{"id":28437,"name":"Drakefist Hammer","icon":"inv_mace_37","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":189,"weaponDamageMax":353,"weaponSpeed":2.7,"ilvl":107,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34545}}],"scalingOptions":{"107":{"randPropPoints":31,"weaponDamageMin":189,"weaponDamageMax":353,"isBase":true}}}, +{"id":28438,"name":"Dragonmaw","icon":"inv_mace_38","type":13,"weaponType":4,"handType":2,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":218,"weaponDamageMax":405,"weaponSpeed":2.7,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34546}}],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":218,"weaponDamageMax":405,"stats":{"2":9},"isBase":true}}}, +{"id":28439,"name":"Dragonstrike","icon":"inv_mace_39","type":13,"weaponType":4,"handType":2,"stats":[0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":244,"weaponDamageMax":454,"weaponSpeed":2.7,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36262}}],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":244,"weaponDamageMax":454,"stats":{"2":19},"isBase":true}}}, +{"id":28440,"name":"Thunder","icon":"inv_mace_2h_blacksmithing_01","type":13,"weaponType":4,"handType":4,"stats":[37,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"weaponDamageMin":397,"weaponDamageMax":596,"weaponSpeed":3.8,"ilvl":107,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34547}}],"scalingOptions":{"107":{"randPropPoints":71,"weaponDamageMin":397,"weaponDamageMax":596,"stats":{"0":37,"1":37,"2":55},"isBase":true}}}, +{"id":28441,"name":"Deep Thunder","icon":"inv_mace_2h_blacksmithing_02","type":13,"weaponType":4,"handType":4,"stats":[37,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":684,"weaponSpeed":3.8,"ilvl":123,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34548}}],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":684,"stats":{"0":37,"1":37,"2":55},"isBase":true}}}, +{"id":28442,"name":"Stormherald","icon":"inv_mace_2h_blacksmithing_03","type":13,"weaponType":4,"handType":4,"stats":[42,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":510,"weaponDamageMax":766,"weaponSpeed":3.8,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36263}}],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":510,"weaponDamageMax":766,"stats":{"0":42,"1":42,"2":61},"isBase":true}}}, +{"id":28443,"name":"General's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,58,0,0,17,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":24,"2":58,"5":17,"16":23,"22":373,"23":11},"isBase":true}}}, +{"id":28444,"name":"General's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,24,58,0,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":24,"2":58,"6":17,"16":23,"22":455,"23":11},"isBase":true}}}, +{"id":28445,"name":"General's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,16,31,0,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,278,16,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":16,"2":31,"6":6,"16":11,"22":278,"23":16},"isBase":true}}}, +{"id":28446,"name":"General's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":373,"23":11},"isBase":true}}}, +{"id":28447,"name":"General's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":455,"23":11},"isBase":true}}}, +{"id":28448,"name":"General's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,32,10,10,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":32,"3":10,"4":10,"16":13,"22":278,"23":9},"isBase":true}}}, +{"id":28449,"name":"General's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":50,"6":14,"7":15,"16":18,"22":686},"isBase":true}}}, +{"id":28450,"name":"General's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":50,"6":14,"7":15,"16":18,"22":561},"isBase":true}}}, +{"id":28451,"name":"General's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,29,0,0,0,7,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":18,"2":29,"6":7,"7":8,"16":11,"22":423},"isBase":true}}}, +{"id":28453,"name":"Bracers of the White Stag","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":32,"3":22,"4":22,"22":281},"isBase":true}}}, +{"id":28454,"name":"Stalker's War Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,22,33,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":22,"2":33,"6":21,"22":426},"isBase":true}}}, +{"id":28476,"name":"Gladiator's Maul","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[0,0,48,0,0,20,35,0,0,0,0,0,64,64,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":239,"weaponDamageMax":360,"weaponSpeed":2,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":83,"weaponDamageMin":239,"weaponDamageMax":360,"stats":{"2":48,"5":20,"6":35,"12":64,"13":64,"16":28},"isBase":true}}}, +{"id":28477,"name":"Harbinger Bands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,39,22,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":39,"3":22,"4":14,"22":201},"isBase":true}}}, +{"id":28483,"name":"Breastplate of Kings","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[31,0,46,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":107,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34533}}],"scalingOptions":{"107":{"randPropPoints":71,"stats":{"0":31,"2":46,"5":20,"6":31,"22":1357},"isBase":true}}}, +{"id":28484,"name":"Bulwark of Kings","icon":"inv_chest_plate15","type":5,"armorType":4,"stats":[35,0,55,0,0,23,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1446,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":34534}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"0":35,"2":55,"5":23,"6":37,"22":1446},"isBase":true}}}, +{"id":28485,"name":"Bulwark of the Ancient Kings","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[40,0,56,0,0,25,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36257}}],"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":40,"2":56,"5":25,"6":41,"22":1754},"isBase":true}}}, +{"id":28502,"name":"Vambraces of Courage","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[15,0,33,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":15,"2":33,"9":15,"10":14,"22":615},"isBase":true}}}, +{"id":28503,"name":"Whirlwind Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":37,"3":21,"4":18,"22":426},"isBase":true}}}, +{"id":28504,"name":"Steelhawk Crossbow","icon":"inv_weapon_crossbow_18","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,51,0,0,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":2.8,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":274,"weaponDamageMax":509,"stats":{"5":51,"12":96,"13":96},"isBase":true}}}, +{"id":28505,"name":"Gauntlets of Renewed Hope","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,47,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":47,"3":28,"4":12,"22":878},"isBase":true}}}, +{"id":28506,"name":"Gloves of Dexterous Manipulation","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,35,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":35,"2":40,"22":401},"isBase":true}}}, +{"id":28507,"name":"Handwraps of Flowing Thought","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,43,30,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":43,"3":30,"5":14,"22":287},"isBase":true}}}, +{"id":28508,"name":"Gloves of Saintly Blessings","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,48,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":48,"3":18,"4":25,"22":287},"isBase":true}}}, +{"id":28509,"name":"Worgen Claw Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,20,39,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":20,"2":39,"5":17},"isBase":true}}}, +{"id":28510,"name":"Spectral Band of Innervation","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16152,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":44,"3":25},"isBase":true}}}, +{"id":28511,"name":"Bands of Indwelling","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,37,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":37,"3":21,"4":20,"22":201},"isBase":true}}}, +{"id":28512,"name":"Bracers of Justice","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,41,21,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":41,"3":21,"6":16,"22":615},"isBase":true}}}, +{"id":28514,"name":"Bracers of Maliciousness","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,25,25,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":25,"2":25,"6":22,"22":281},"isBase":true}}}, +{"id":28515,"name":"Bands of Nefarious Deeds","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,45,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":45,"3":27,"22":201},"isBase":true}}}, +{"id":28516,"name":"Barbed Choker of Discipline","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,0,39,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":39,"9":28},"isBase":true}}}, +{"id":28517,"name":"Boots of Foretelling","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,46,22,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":46,"3":22,"6":19,"22":316},"isBase":true}}}, +{"id":28518,"name":"Iron Gauntlets of the Maiden","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":39,"9":25,"22":878},"isBase":true}}}, +{"id":28519,"name":"Gloves of Quickening","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,26,22,0,0,10,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":26,"2":22,"5":10,"6":17,"7":24,"22":609},"isBase":true}}}, +{"id":28520,"name":"Gloves of Centering","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,41,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":41,"3":28,"4":16,"22":609},"isBase":true}}}, +{"id":28521,"name":"Mitts of the Treemender","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,43,29,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":43,"3":29,"4":14,"22":401},"isBase":true}}}, +{"id":28522,"name":"Shard of the Virtuous","icon":"inv_hammer_26","type":13,"weaponType":4,"handType":2,"stats":[0,0,39,0,16,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.9,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16457,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"stats":{"2":39,"4":16,"14":232},"isBase":true}}}, +{"id":28524,"name":"Emerald Ripper","icon":"inv_weapon_shortblade_38","type":13,"weaponType":2,"handType":2,"stats":[0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":1.8,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":155,"weaponDamageMax":233,"stats":{"1":19,"2":34},"isBase":true}}}, +{"id":28525,"name":"Signet of Unshakable Faith","icon":"inv_jewelry_ring_60","type":13,"weaponType":5,"handType":3,"stats":[0,0,38,17,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":38,"3":17,"4":22},"isBase":true}}}, +{"id":28528,"name":"Moroes' Lucky Pocket Watch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"9":38},"isBase":true}}}, +{"id":28529,"name":"Royal Cloak of Arathi Kings","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[26,0,31,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":26,"2":31,"5":16,"22":230},"isBase":true}}}, +{"id":28530,"name":"Brooch of Unquenchable Fury","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,42,22,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":42,"3":22,"5":15},"isBase":true}}}, +{"id":28545,"name":"Edgewalker Longboots","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,29,46,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":29,"2":46,"5":13,"22":441},"isBase":true}}}, +{"id":28559,"name":"Exorcist's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[25,0,30,0,0,0,25,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":25,"2":30,"6":25,"16":11,"22":772},"isBase":true}}}, +{"id":28560,"name":"Exorcist's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,41,25,0,0,16,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":41,"3":25,"6":16,"16":11,"22":772},"isBase":true}}}, +{"id":28561,"name":"Exorcist's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,27,36,0,0,0,10,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,345,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":27,"2":36,"6":10,"16":14,"22":345},"isBase":true}}}, +{"id":28565,"name":"Nethershard Girdle","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,50,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":50,"3":30,"4":22,"22":259},"isBase":true}}}, +{"id":28566,"name":"Crimson Girdle of the Indomitable","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,36,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":20,"2":36,"10":30,"22":791},"isBase":true}}}, +{"id":28567,"name":"Belt of Gale Force","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,52,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"3":27,"4":26,"22":548},"isBase":true}}}, +{"id":28569,"name":"Boots of Valiance","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,53,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":53,"3":25,"6":25,"22":966},"isBase":true}}}, +{"id":28570,"name":"Shadow-Cloak of Dalaran","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,35,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15687,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":35,"3":31,"22":230},"isBase":true}}}, +{"id":28572,"name":"Blade of the Unrequited","icon":"inv_weapon_shortblade_39","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,9,0,0,0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":137,"weaponDamageMax":207,"weaponSpeed":1.6,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":137,"weaponDamageMax":207,"stats":{"2":13,"6":9,"12":18,"13":18},"isBase":true}}}, +{"id":28573,"name":"Despair","icon":"inv_sword_69","type":13,"weaponType":9,"handType":4,"stats":[52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":391,"weaponDamageMax":588,"weaponSpeed":3.5,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":391,"weaponDamageMax":588,"stats":{"0":52},"isBase":true}}}, +{"id":28574,"name":"Exorcist's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,23,42,0,0,17,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,345,11,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":23,"2":42,"5":17,"16":12,"22":345,"23":11},"isBase":true}}}, +{"id":28575,"name":"Exorcist's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,44,29,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,345,11,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":44,"3":29,"16":11,"22":345,"23":11},"isBase":true}}}, +{"id":28576,"name":"Exorcist's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,43,0,0,0,10,10,0,0,0,0,0,0,0,0,12,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":20,"2":43,"6":10,"7":10,"16":12,"22":526},"isBase":true}}}, +{"id":28577,"name":"Exorcist's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,30,30,0,0,0,22,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":30,"2":30,"6":22,"16":13,"22":526},"isBase":true}}}, +{"id":28578,"name":"Masquerade Gown","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":62,"3":40,"22":460},"isBase":true}}}, +{"id":28579,"name":"Romulo's Poison Vial","icon":"inv_poison_mindnumbing","type":12,"stats":[0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"5":35},"isBase":true}}}, +{"id":28581,"name":"Wolfslayer Sniper Rifle","icon":"inv_weapon_rifle_23","type":14,"rangedWeaponType":3,"stats":[0,51,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":264,"weaponDamageMax":491,"weaponSpeed":2.7,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":264,"weaponDamageMax":491,"stats":{"1":51,"2":74},"isBase":true}}}, +{"id":28582,"name":"Red Riding Hood's Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,37,22,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":37,"3":22,"4":18,"22":230},"isBase":true}}}, +{"id":28583,"name":"Big Bad Wolf's Head","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,77,40,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":77,"3":40,"6":28,"22":791},"isBase":true}}}, +{"id":28584,"name":"Big Bad Wolf's Paw","icon":"inv_misc_monsterclaw_04","type":13,"weaponType":3,"handType":2,"stats":[0,17,18,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":188,"weaponDamageMax":350,"weaponSpeed":2.5,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":188,"weaponDamageMax":350,"stats":{"1":17,"2":18,"6":20},"isBase":true}}}, +{"id":28585,"name":"Ruby Slippers","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,57,30,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":57,"3":30,"5":16,"22":316},"isBase":true}}}, +{"id":28586,"name":"Wicked Witch's Hat","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,71,37,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":71,"3":37,"6":32,"22":374},"isBase":true}}}, +{"id":28587,"name":"Legacy","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,40,80,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":391,"weaponDamageMax":588,"weaponSpeed":3.5,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":391,"weaponDamageMax":588,"stats":{"1":40,"2":80,"5":20},"isBase":true}}}, +{"id":28588,"name":"Blue Diamond Witchwand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,27,18,15,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.8,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"stats":{"2":27,"3":18,"4":15,"14":232},"isBase":true}}}, +{"id":28589,"name":"Beastmaw Pauldrons","icon":"inv_shoulder_36","type":3,"armorType":3,"stats":[0,24,42,0,0,20,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":24,"2":42,"5":20,"6":23,"22":730},"isBase":true}}}, +{"id":28590,"name":"Ribbon of Sacrifice","icon":"inv_misc_bandage_16","type":12,"stats":[0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"3":33},"isBase":true}}}, +{"id":28591,"name":"Earthsoul Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,53,37,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":53,"3":37,"4":24,"22":561},"isBase":true}}}, +{"id":28593,"name":"Eternium Greathelm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[31,0,48,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":31,"2":48,"9":34,"22":1142},"isBase":true}}}, +{"id":28594,"name":"Trial-Fire Trousers","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,77,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18168,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17521,"zoneId":3457}},{"drop":{"difficulty":1,"npcId":17533,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":77,"3":42,"22":402},"isBase":true}}}, +{"id":28597,"name":"Panzar'Thar Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[24,0,51,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":24,"2":51,"9":26,"10":26,"22":1405},"isBase":true}}}, +{"id":28599,"name":"Scaled Breastplate of Carnage","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,49,33,0,0,20,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":49,"2":33,"5":20,"6":40,"22":974},"isBase":true}}}, +{"id":28600,"name":"Stonebough Jerkin","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,65,35,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":65,"3":35,"4":40,"22":642},"isBase":true}}}, +{"id":28601,"name":"Chestguard of the Conniver","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,45,69,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":45,"2":69,"5":22,"22":642},"isBase":true}}}, +{"id":28602,"name":"Robe of the Elder Scribes","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,53,27,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":53,"3":27,"4":24,"6":24,"22":460},"isBase":true}}}, +{"id":28603,"name":"Talisman of Nightbane","icon":"inv_offhand_outlandraid_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":36,"3":24,"6":17},"isBase":true}}}, +{"id":28604,"name":"Nightstaff of the Everliving","icon":"inv_staff_57","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,55,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":3.2,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"stats":{"2":63,"4":55,"14":232},"isBase":true}}}, +{"id":28605,"name":"General's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,19,25,0,0,0,15,9,0,0,0,0,0,0,0,0,10,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":19,"2":25,"6":15,"7":9,"16":10,"22":423},"isBase":true}}}, +{"id":28606,"name":"Shield of Impenetrable Darkness","icon":"inv_shield_29","type":13,"weaponType":7,"handType":3,"stats":[22,0,33,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":22,"2":33,"9":15,"10":14,"22":3775},"isBase":true}}}, +{"id":28608,"name":"Ironstriders of Urgency","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[33,20,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":33,"1":20,"2":28,"22":966},"isBase":true}}}, +{"id":28609,"name":"Emberspur Talisman","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"3":30,"4":28},"isBase":true}}}, +{"id":28610,"name":"Ferocious Swift-Kickers","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,29,22,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":29,"2":22,"5":21,"6":16,"22":669},"isBase":true}}}, +{"id":28611,"name":"Dragonheart Flameshield","icon":"inv_shield_37","type":13,"weaponType":7,"handType":3,"stats":[0,0,38,20,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17225,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":38,"3":20,"4":18,"22":3775},"isBase":true}}}, +{"id":28612,"name":"Pauldrons of the Solace-Giver","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,42,26,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":42,"3":26,"4":36,"22":345},"isBase":true}}}, +{"id":28613,"name":"Grand Marshal's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":48,"6":12,"7":6,"16":16,"22":782},"isBase":true}}}, +{"id":28614,"name":"Grand Marshal's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":30,"6":11,"7":10,"16":14,"22":489},"isBase":true}}}, +{"id":28615,"name":"Grand Marshal's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":14,"7":14,"16":15,"22":635},"isBase":true}}}, +{"id":28616,"name":"Grand Marshal's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":41,"6":14,"7":14,"16":25,"22":684},"isBase":true}}}, +{"id":28617,"name":"Grand Marshal's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Grand Marshal's Pursuit","setId":595,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":14,"2":28,"6":17,"7":11,"16":16,"22":586},"isBase":true}}}, +{"id":28618,"name":"Grand Marshal's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,42,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":42,"6":16,"16":16,"22":322,"23":9},"isBase":true}}}, +{"id":28619,"name":"Grand Marshal's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,0,0,0,0,14,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":49,"7":14,"16":21,"22":419,"23":9},"isBase":true}}}, +{"id":28620,"name":"Grand Marshal's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,23,60,0,0,0,0,0,22,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":23,"2":60,"8":22,"16":22,"22":451,"23":14},"isBase":true}}}, +{"id":28621,"name":"Wrynn Dynasty Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[24,0,48,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":24,"2":48,"9":42,"22":1230},"isBase":true}}}, +{"id":28622,"name":"Grand Marshal's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,0,0,8,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":44,"5":8,"16":13,"22":386,"23":9},"isBase":true}}}, +{"id":28623,"name":"Grand Marshal's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,0,0,0,14,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Sanctuary","setId":601,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":18,"2":53,"6":14,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":28624,"name":"Grand Marshal's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":22,"16":12,"22":231},"isBase":true}}}, +{"id":28625,"name":"Grand Marshal's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":300},"isBase":true}}}, +{"id":28626,"name":"Grand Marshal's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":62,"3":33,"16":22,"22":323},"isBase":true}}}, +{"id":28627,"name":"Grand Marshal's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":31,"3":22,"5":6,"16":17,"22":277},"isBase":true}}}, +{"id":28628,"name":"Grand Marshal's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Grand Marshal's Dreadgear","setId":591,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":369},"isBase":true}}}, +{"id":28629,"name":"General's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":39,"5":18,"6":27,"16":19,"22":561},"isBase":true}}}, +{"id":28630,"name":"General's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":39,"5":18,"6":27,"16":19,"22":686},"isBase":true}}}, +{"id":28631,"name":"Dragon-Quake Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,53,29,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":53,"3":29,"4":20,"22":730},"isBase":true}}}, +{"id":28633,"name":"Staff of Infinite Mysteries","icon":"inv_weapon_halberd17","type":13,"weaponType":8,"handType":4,"stats":[0,0,103,0,0,23,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":3.2,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"stats":{"2":103,"5":23,"14":232},"isBase":true}}}, +{"id":28638,"name":"General's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":423},"isBase":true}}}, +{"id":28639,"name":"General's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":561},"isBase":true}}}, +{"id":28640,"name":"General's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":686},"isBase":true}}}, +{"id":28641,"name":"General's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":806},"isBase":true}}}, +{"id":28642,"name":"General's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":985},"isBase":true}}}, +{"id":28643,"name":"General's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":612},"isBase":true}}}, +{"id":28644,"name":"General's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":806},"isBase":true}}}, +{"id":28645,"name":"General's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":985},"isBase":true}}}, +{"id":28646,"name":"General's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[26,0,22,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"0":26,"2":22,"6":14,"16":8,"22":612},"isBase":true}}}, +{"id":28647,"name":"Forest Wind Shoulderpads","icon":"inv_shoulder_01","type":3,"armorType":2,"stats":[0,0,48,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":48,"3":30,"4":24,"22":481},"isBase":true}}}, +{"id":28649,"name":"Garona's Signet Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,20,41,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15691,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":20,"2":41,"5":18},"isBase":true}}}, +{"id":28652,"name":"Cincture of Will","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,50,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":50,"3":27,"4":25,"22":259},"isBase":true}}}, +{"id":28653,"name":"Shadowvine Cloak of Infusion","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"3":21,"4":33,"22":230},"isBase":true}}}, +{"id":28654,"name":"Malefic Girdle","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,50,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":50,"3":32,"6":21,"22":259},"isBase":true}}}, +{"id":28655,"name":"Cord of Nature's Sustenance","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,52,29,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"3":29,"4":24,"22":361},"isBase":true}}}, +{"id":28656,"name":"Girdle of the Prowler","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,33,41,0,0,17,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":33,"2":41,"5":17,"7":24,"22":548},"isBase":true}}}, +{"id":28657,"name":"Fool's Bane","icon":"inv_weapon_shortblade_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":195,"weaponDamageMax":364,"weaponSpeed":2.6,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":195,"weaponDamageMax":364,"stats":{"6":24,"12":30,"13":30},"isBase":true}}}, +{"id":28658,"name":"Terestian's Stranglestaff","icon":"inv_staff_55","type":13,"weaponType":8,"handType":4,"stats":[0,37,79,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":335,"weaponDamageMax":504,"weaponSpeed":3,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":335,"weaponDamageMax":504,"stats":{"1":37,"2":79,"5":25},"isBase":true}}}, +{"id":28660,"name":"Gilded Thorium Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,230,82,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":30,"9":24,"22":230,"23":82},"isBase":true}}}, +{"id":28661,"name":"Mender's Heart-Ring","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,37,20,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":37,"3":20,"4":19},"isBase":true}}}, +{"id":28662,"name":"Breastplate of the Lightbinder","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,66,40,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":66,"3":40,"4":32,"22":1405},"isBase":true}}}, +{"id":28663,"name":"Boots of the Incorrupt","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,45,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":45,"3":26,"4":32,"22":316},"isBase":true}}}, +{"id":28666,"name":"Pauldrons of the Justice-Seeker","icon":"inv_shoulder_35","type":3,"armorType":4,"stats":[0,0,47,26,18,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":47,"3":26,"4":18,"6":22,"22":1054},"isBase":true}}}, +{"id":28669,"name":"Rapscallion Boots","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,41,26,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":41,"2":26,"6":24,"22":441},"isBase":true}}}, +{"id":28670,"name":"Boots of the Infernal Coven","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,29,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":51,"3":29,"4":23,"22":316},"isBase":true}}}, +{"id":28671,"name":"Steelspine Faceguard","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,36,64,0,0,22,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":36,"2":64,"5":22,"6":31,"22":791},"isBase":true}}}, +{"id":28672,"name":"Drape of the Dark Reavers","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,24,35,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":24,"2":35,"5":17,"22":230},"isBase":true}}}, +{"id":28673,"name":"Tirisfal Wand of Ascendancy","icon":"inv_wand_21","type":14,"rangedWeaponType":6,"stats":[0,0,25,18,0,15,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.8,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"stats":{"2":25,"3":18,"5":15,"14":232},"isBase":true}}}, +{"id":28674,"name":"Saberclaw Talisman","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,21,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":21,"2":51},"isBase":true}}}, +{"id":28675,"name":"Shermanar Great-Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,36,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":36,"9":23,"23":64},"isBase":true}}}, +{"id":28679,"name":"Grand Marshal's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,50,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":8,"6":21,"16":22,"22":1128},"isBase":true}}}, +{"id":28680,"name":"Grand Marshal's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":18,"6":19,"16":12,"22":705},"isBase":true}}}, +{"id":28681,"name":"Grand Marshal's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,45,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":16,"6":20,"16":20,"22":917},"isBase":true}}}, +{"id":28683,"name":"Grand Marshal's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,41,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":28684,"name":"Grand Marshal's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":36,"6":11,"16":16,"22":322},"isBase":true}}}, +{"id":28685,"name":"Grand Marshal's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":419},"isBase":true}}}, +{"id":28686,"name":"Grand Marshal's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":47,"6":14,"16":28,"22":451},"isBase":true}}}, +{"id":28687,"name":"Grand Marshal's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":36,"6":11,"16":13,"22":386},"isBase":true}}}, +{"id":28688,"name":"Grand Marshal's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Grand Marshal's Vestments","setId":605,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":515},"isBase":true}}}, +{"id":28689,"name":"Grand Marshal's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,12,42,0,0,22,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":12,"2":42,"5":22,"6":14,"16":22,"22":782},"isBase":true}}}, +{"id":28690,"name":"Grand Marshal's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":33,"6":18,"16":17,"22":489},"isBase":true}}}, +{"id":28691,"name":"Grand Marshal's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":30,"6":24,"16":24,"22":635},"isBase":true}}}, +{"id":28692,"name":"Grand Marshal's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":42,"3":22,"6":28,"16":22,"22":684},"isBase":true}}}, +{"id":28693,"name":"Grand Marshal's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,0,0,8,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Earthshaker","setId":593,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":33,"5":8,"6":17,"16":13,"22":586},"isBase":true}}}, +{"id":28694,"name":"Grand Marshal's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":28695,"name":"Grand Marshal's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":28696,"name":"Grand Marshal's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":28697,"name":"Grand Marshal's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":52,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":28698,"name":"Grand Marshal's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Thunderfist","setId":603,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":28699,"name":"Grand Marshal's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":12,"2":46,"6":24,"16":19,"22":1128},"isBase":true}}}, +{"id":28700,"name":"Grand Marshal's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":22,"2":30,"6":21,"16":17,"22":705},"isBase":true}}}, +{"id":28701,"name":"Grand Marshal's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":20,"2":34,"6":24,"16":19,"22":917},"isBase":true}}}, +{"id":28702,"name":"Grand Marshal's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":28,"2":46,"6":28,"16":23,"22":987},"isBase":true}}}, +{"id":28703,"name":"Grand Marshal's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Grand Marshal's Battlegear","setId":590,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":14,"2":36,"6":17,"16":13,"22":846},"isBase":true}}}, +{"id":28704,"name":"Grand Marshal's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":28705,"name":"Grand Marshal's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":28706,"name":"Grand Marshal's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":60,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":28707,"name":"Grand Marshal's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":28708,"name":"Grand Marshal's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Raiment","setId":597,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":51,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":28709,"name":"Grand Marshal's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[27,0,47,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":27,"2":47,"6":14,"16":14,"22":1128},"isBase":true}}}, +{"id":28710,"name":"Grand Marshal's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,30,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":28,"2":30,"6":12,"16":12,"22":705},"isBase":true}}}, +{"id":28711,"name":"Grand Marshal's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[28,0,33,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":28,"2":33,"6":14,"16":14,"22":917},"isBase":true}}}, +{"id":28712,"name":"Grand Marshal's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[36,0,50,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":36,"2":50,"6":16,"16":16,"22":987},"isBase":true}}}, +{"id":28713,"name":"Grand Marshal's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[25,0,38,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Vindication","setId":607,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":25,"2":38,"6":10,"16":10,"22":846},"isBase":true}}}, +{"id":28714,"name":"Grand Marshal's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":34,"3":21,"6":8,"16":15,"22":277},"isBase":true}}}, +{"id":28715,"name":"Grand Marshal's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":20,"6":17,"16":19,"22":300},"isBase":true}}}, +{"id":28716,"name":"Grand Marshal's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":16,"6":17,"16":17,"22":231},"isBase":true}}}, +{"id":28717,"name":"Grand Marshal's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":17,"16":18,"22":369},"isBase":true}}}, +{"id":28718,"name":"Grand Marshal's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Grand Marshal's Regalia","setId":599,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":28,"6":22,"16":22,"22":323},"isBase":true}}}, +{"id":28719,"name":"Grand Marshal's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":27,"4":10,"16":14,"22":322,"23":9},"isBase":true}}}, +{"id":28720,"name":"Grand Marshal's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,16,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":36,"3":29,"4":16,"16":17,"22":419,"23":9},"isBase":true}}}, +{"id":28721,"name":"Grand Marshal's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":33,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":28722,"name":"Grand Marshal's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":28723,"name":"Grand Marshal's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Wildhide","setId":609,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":28724,"name":"Grand Marshal's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Aegis","setId":589,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":24,"6":24,"16":24,"22":987},"isBase":true}}}, +{"id":28726,"name":"Mantle of the Mind Flayer","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,57,30,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":57,"3":30,"5":23,"22":345},"isBase":true}}}, +{"id":28727,"name":"Pendant of the Violet Eye","icon":"inv_trinket_naxxramas02","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"3":40},"isBase":true}}}, +{"id":28728,"name":"Aran's Soothing Sapphire","icon":"inv_misc_gem_sapphire_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16524,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":33,"3":23,"4":20},"isBase":true}}}, +{"id":28729,"name":"Spiteblade","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":203,"weaponDamageMax":378,"weaponSpeed":2.7,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":203,"weaponDamageMax":378,"stats":{"1":14,"2":38},"isBase":true}}}, +{"id":28730,"name":"Mithril Band of the Unscarred","icon":"inv_jewelry_ring_24","type":11,"stats":[26,0,24,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":26,"2":24,"6":22},"isBase":true}}}, +{"id":28731,"name":"Shining Chain of the Afterworld","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,37,21,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":37,"3":21,"4":19},"isBase":true}}}, +{"id":28732,"name":"Cowl of Defiance","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,50,63,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":50,"2":63,"5":24,"22":521},"isBase":true}}}, +{"id":28733,"name":"Girdle of Truth","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,54,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":54,"3":30,"4":20,"22":791},"isBase":true}}}, +{"id":28734,"name":"Jewel of Infinite Possibilities","icon":"inv_misc_gem_ebondraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,35,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":35,"3":20,"5":21},"isBase":true}}}, +{"id":28735,"name":"Earthblood Chestguard","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,76,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":76,"3":39,"4":28,"22":974},"isBase":true}}}, +{"id":28740,"name":"Rip-Flayer Leggings","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,28,18,0,0,20,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":28,"2":18,"5":20,"6":44,"22":852},"isBase":true}}}, +{"id":28741,"name":"Skulker's Greaves","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,32,57,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":32,"2":57,"5":28,"22":561},"isBase":true}}}, +{"id":28742,"name":"Pantaloons of Repentance","icon":"inv_pants_cloth_13","type":9,"armorType":1,"stats":[0,0,59,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":59,"3":31,"4":26,"22":402},"isBase":true}}}, +{"id":28743,"name":"Mantle of Abrahmis","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[21,0,43,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":21,"2":43,"9":23,"22":1054},"isBase":true}}}, +{"id":28744,"name":"Uni-Mind Headdress","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,68,39,0,19,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15689,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":68,"3":39,"5":19,"6":25,"22":374},"isBase":true}}}, +{"id":28745,"name":"Mithril Chain of Heroism","icon":"inv_jewelry_necklace_06","type":2,"stats":[28,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":28,"1":22,"2":22},"isBase":true}}}, +{"id":28746,"name":"Fiend Slayer Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,26,36,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":26,"2":36,"5":17,"6":17,"22":669},"isBase":true}}}, +{"id":28747,"name":"Battlescar Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[23,0,28,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":23,"2":28,"10":29,"22":966},"isBase":true}}}, +{"id":28748,"name":"Legplates of the Innocent","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,54,30,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":54,"3":30,"4":20,"6":21,"22":1230},"isBase":true}}}, +{"id":28749,"name":"King's Defender","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,0,28,0,0,17,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":120,"weaponDamageMax":224,"weaponSpeed":1.6,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":120,"weaponDamageMax":224,"stats":{"2":28,"5":17,"9":13,"23":52},"isBase":true}}}, +{"id":28750,"name":"Girdle of Treachery","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,29,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":29,"2":48,"22":361},"isBase":true}}}, +{"id":28751,"name":"Heart-Flame Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,64,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":64,"3":41,"22":852},"isBase":true}}}, +{"id":28752,"name":"Forestlord Striders","icon":"inv_boots_chain_05","type":10,"armorType":2,"stats":[0,0,48,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":48,"3":25,"4":16,"22":441},"isBase":true}}}, +{"id":28753,"name":"Ring of Recurrence","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,28,27,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":28,"3":27,"6":19},"isBase":true}}}, +{"id":28754,"name":"Triptych Shield of the Ancients","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":42,"3":19,"4":20,"22":3775},"isBase":true}}}, +{"id":28755,"name":"Bladed Shoulderpads of the Merciless","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,29,30,0,0,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":29,"2":30,"5":13,"6":21,"22":481},"isBase":true}}}, +{"id":28756,"name":"Headdress of the High Potentate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,71,37,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Chess Event"}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":71,"3":37,"4":32,"22":374},"isBase":true}}}, +{"id":28757,"name":"Ring of a Thousand Marks","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,21,0,0,19,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":21,"5":19,"6":23,"12":44,"13":44},"isBase":true}}}, +{"id":28758,"name":"Exorcist's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,41,25,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,526,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":41,"3":25,"6":24,"16":17,"22":526},"isBase":true}}}, +{"id":28759,"name":"Exorcist's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,54,25,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,246,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":54,"3":25,"16":20,"22":246},"isBase":true}}}, +{"id":28760,"name":"Exorcist's Silk Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,41,25,0,0,25,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,246,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":41,"3":25,"6":25,"16":14,"22":246},"isBase":true}}}, +{"id":28761,"name":"Exorcist's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[29,0,30,0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0],"gemSockets":[1],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":29,"2":30,"5":15,"6":18,"22":772},"isBase":true}}}, +{"id":28762,"name":"Adornment of Stolen Souls","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,36,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":36,"3":24,"6":23},"isBase":true}}}, +{"id":28763,"name":"Jade Ring of the Everliving","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,31,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":31,"4":30},"isBase":true}}}, +{"id":28764,"name":"Farstrider Wildercloak","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":36,"12":70,"13":70,"22":242},"isBase":true}}}, +{"id":28765,"name":"Stainless Cloak of the Pure Hearted","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,42,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":42,"3":24,"4":18,"22":242},"isBase":true}}}, +{"id":28766,"name":"Ruby Drape of the Mysticant","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,40,26,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":40,"3":26,"5":18,"22":242},"isBase":true}}}, +{"id":28767,"name":"The Decapitator","icon":"inv_axe_66","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":213,"weaponDamageMax":397,"weaponSpeed":2.6,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":213,"weaponDamageMax":397,"stats":{"6":27},"isBase":true}}}, +{"id":28768,"name":"Malchazeen","icon":"inv_weapon_shortblade_40","type":13,"weaponType":2,"handType":2,"stats":[0,0,16,0,0,15,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":169,"weaponDamageMax":254,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":169,"weaponDamageMax":254,"stats":{"2":16,"5":15,"12":50,"13":50},"isBase":true}}}, +{"id":28770,"name":"Nathrezim Mindblade","icon":"inv_weapon_shortblade_41","type":13,"weaponType":2,"handType":2,"stats":[0,0,34,0,0,0,23,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"stats":{"2":34,"6":23,"14":253},"isBase":true}}}, +{"id":28771,"name":"Light's Justice","icon":"inv_mace_46","type":13,"weaponType":4,"handType":2,"stats":[0,0,36,0,20,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.8,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"stats":{"2":36,"4":20,"14":253},"isBase":true}}}, +{"id":28772,"name":"Sunfury Bow of the Phoenix","icon":"inv_weapon_bow_18","type":14,"rangedWeaponType":1,"stats":[0,59,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":309,"weaponDamageMax":575,"weaponSpeed":2.9,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":309,"weaponDamageMax":575,"stats":{"1":59,"2":81},"isBase":true}}}, +{"id":28773,"name":"Gorehowl","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[49,43,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.6,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15690,"zoneId":3457}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"stats":{"0":49,"1":43,"2":51},"isBase":true}}}, +{"id":28774,"name":"Glaive of the Pit","icon":"inv_weapon_halberd16","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":451,"weaponDamageMax":678,"weaponSpeed":3.7,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":451,"weaponDamageMax":678,"isBase":true}}}, +{"id":28775,"name":"Thundering Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[50,43,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"0":50,"1":43,"2":49,"22":1169},"isBase":true}}}, +{"id":28776,"name":"Liar's Tongue Gloves","icon":"inv_gauntlets_19","type":7,"armorType":2,"stats":[0,36,31,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"1":36,"2":31,"6":26,"22":417},"isBase":true}}}, +{"id":28777,"name":"Cloak of the Pit Stalker","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,28,0,0,0,24,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":28,"6":24,"12":56,"13":56,"22":242},"isBase":true}}}, +{"id":28778,"name":"Terror Pit Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,32,18,0,0,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"1":32,"2":18,"5":20,"6":22,"22":564},"isBase":true}}}, +{"id":28779,"name":"Girdle of the Endless Pit","icon":"inv_belt_22","type":8,"armorType":4,"stats":[34,0,30,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"0":34,"2":30,"6":28,"22":810},"isBase":true}}}, +{"id":28780,"name":"Soul-Eater's Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,50,31,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"2":50,"3":31,"6":21,"22":302},"isBase":true}}}, +{"id":28781,"name":"Karaborian Talisman","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,43,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":43,"3":30},"isBase":true}}}, +{"id":28782,"name":"Crystalheart Pulse-Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,95,0,40,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":195,"weaponDamageMax":293,"weaponSpeed":3.2,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":195,"weaponDamageMax":293,"stats":{"2":95,"4":40,"14":255},"isBase":true}}}, +{"id":28783,"name":"Eredar Wand of Obliteration","icon":"inv_wand_20","type":14,"rangedWeaponType":6,"stats":[0,0,27,19,0,0,19,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.8,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"stats":{"2":27,"3":19,"6":19,"14":253},"isBase":true}}}, +{"id":28785,"name":"The Lightning Capacitor","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":15688,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"isBase":true}}}, +{"id":28789,"name":"Eye of Magtheridon","icon":"inv_elemental_mote_life01","type":12,"stats":[0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"3":46},"isBase":true}}}, +{"id":28790,"name":"Naaru Lightwarden's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,44,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":44,"3":25,"4":20},"isBase":true}}}, +{"id":28791,"name":"Ring of the Recalcitrant","icon":"inv_jewelry_ring_71","type":11,"stats":[0,24,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":24,"2":51},"isBase":true}}}, +{"id":28792,"name":"A'dal's Signet of Defense","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,34,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":34,"9":20,"23":105},"isBase":true}}}, +{"id":28793,"name":"Band of Crimson Fury","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,41,24,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":41,"3":24,"5":16},"isBase":true}}}, +{"id":28794,"name":"Axe of the Gronn Lords","icon":"inv_axe_64","type":13,"weaponType":1,"handType":4,"stats":[0,0,66,0,0,0,0,0,0,0,0,0,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.6,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"stats":{"2":66,"12":124,"13":124},"isBase":true}}}, +{"id":28795,"name":"Bladespire Warbands","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[20,0,16,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"gemSockets":[3,2],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":20,"2":16,"6":24,"22":630},"isBase":true}}}, +{"id":28796,"name":"Malefic Mask of the Shadows","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,42,45,0,0,31,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"1":42,"2":45,"5":31,"6":42,"22":542},"isBase":true}}}, +{"id":28797,"name":"Brute Cloak of the Ogre-Magi","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,36,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":36,"3":24,"6":23,"22":242},"isBase":true}}}, +{"id":28799,"name":"Belt of Divine Inspiration","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,272,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"2":50,"3":37,"22":272},"isBase":true}}}, +{"id":28800,"name":"Hammer of the Naaru","icon":"inv_hammer_28","type":13,"weaponType":4,"handType":4,"stats":[44,0,41,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.6,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"weaponDamageMin":439,"weaponDamageMax":659,"stats":{"0":44,"2":41,"6":37},"isBase":true}}}, +{"id":28801,"name":"Maulgar's Warhelm","icon":"inv_helmet_23","type":1,"armorType":3,"stats":[0,43,43,0,0,31,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18831,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"1":43,"2":43,"5":31,"6":42,"22":815},"isBase":true}}}, +{"id":28802,"name":"Bloodmaw Magus-Blade","icon":"inv_sword_65","type":13,"weaponType":9,"handType":2,"stats":[0,0,29,0,0,0,25,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"weaponSpeed":1.8,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":73,"weaponDamageMax":137,"stats":{"2":29,"6":25,"14":253},"isBase":true}}}, +{"id":28803,"name":"Cowl of Nature's Breath","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,73,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"2":73,"3":42,"4":34,"22":542},"isBase":true}}}, +{"id":28804,"name":"Collar of Cho'gall","icon":"inv_helmet_27","type":1,"armorType":1,"stats":[0,0,72,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"2":72,"3":58,"22":393},"isBase":true}}}, +{"id":28805,"name":"High Warlord's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":48,"6":12,"7":6,"16":16,"22":782},"isBase":true}}}, +{"id":28806,"name":"High Warlord's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":30,"6":11,"7":10,"16":14,"22":489},"isBase":true}}}, +{"id":28807,"name":"High Warlord's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":14,"7":14,"16":15,"22":635},"isBase":true}}}, +{"id":28808,"name":"High Warlord's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":41,"6":14,"7":14,"16":25,"22":684},"isBase":true}}}, +{"id":28809,"name":"High Warlord's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"High Warlord's Pursuit","setId":596,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":14,"2":28,"6":17,"7":11,"16":16,"22":586},"isBase":true}}}, +{"id":28810,"name":"Windshear Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,64,33,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"2":64,"3":33,"5":18,"22":690},"isBase":true}}}, +{"id":28811,"name":"High Warlord's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,43,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":43,"6":16,"16":16,"22":322,"23":9},"isBase":true}}}, +{"id":28812,"name":"High Warlord's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,0,0,0,0,14,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":49,"7":14,"16":21,"22":419,"23":9},"isBase":true}}}, +{"id":28813,"name":"High Warlord's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,22,60,0,0,0,0,0,22,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":60,"8":22,"16":22,"22":451,"23":14},"isBase":true}}}, +{"id":28814,"name":"High Warlord's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,0,0,8,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":44,"5":8,"16":13,"22":386,"23":9},"isBase":true}}}, +{"id":28815,"name":"High Warlord's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,0,0,0,15,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Sanctuary","setId":602,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":18,"2":53,"6":15,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":28817,"name":"High Warlord's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":22,"16":12,"22":231},"isBase":true}}}, +{"id":28818,"name":"High Warlord's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":300},"isBase":true}}}, +{"id":28819,"name":"High Warlord's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":62,"3":33,"16":22,"22":323},"isBase":true}}}, +{"id":28820,"name":"High Warlord's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":31,"3":22,"5":6,"16":17,"22":277},"isBase":true}}}, +{"id":28821,"name":"High Warlord's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"High Warlord's Dreadgear","setId":592,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":369},"isBase":true}}}, +{"id":28822,"name":"Teeth of Gruul","icon":"inv_misc_bone_09","type":2,"stats":[0,0,32,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":32,"3":21,"4":29},"isBase":true}}}, +{"id":28823,"name":"Eye of Gruul","icon":"spell_shadow_unholyfrenzy","type":12,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"3":20},"isBase":true}}}, +{"id":28824,"name":"Gauntlets of Martial Perfection","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[36,0,34,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"gemSockets":[3,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"0":36,"2":34,"6":23,"22":900},"isBase":true}}}, +{"id":28825,"name":"Aldori Legacy Defender","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[15,0,39,0,0,12,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":15,"2":39,"5":12,"9":13,"22":3813},"isBase":true}}}, +{"id":28827,"name":"Gauntlets of the Dragonslayer","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,24,51,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"1":24,"2":51,"6":24,"22":627},"isBase":true}}}, +{"id":28828,"name":"Gronn-Stitched Girdle","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,36,27,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"1":36,"2":27,"6":25,"22":376},"isBase":true}}}, +{"id":28830,"name":"Dragonspine Trophy","icon":"inv_misc_bone_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19044,"zoneId":3923}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"12":40,"13":40},"isBase":true}}}, +{"id":28831,"name":"High Warlord's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,50,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":8,"6":21,"16":22,"22":1128},"isBase":true}}}, +{"id":28832,"name":"High Warlord's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":18,"6":19,"16":12,"22":705},"isBase":true}}}, +{"id":28833,"name":"High Warlord's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,45,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":16,"6":20,"16":20,"22":917},"isBase":true}}}, +{"id":28834,"name":"High Warlord's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":24,"6":24,"16":24,"22":987},"isBase":true}}}, +{"id":28835,"name":"High Warlord's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,41,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Aegis","setId":587,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":28836,"name":"High Warlord's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":36,"6":11,"16":16,"22":322},"isBase":true}}}, +{"id":28837,"name":"High Warlord's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":419},"isBase":true}}}, +{"id":28838,"name":"High Warlord's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":47,"6":14,"16":28,"22":451},"isBase":true}}}, +{"id":28839,"name":"High Warlord's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":36,"6":11,"16":13,"22":386},"isBase":true}}}, +{"id":28840,"name":"High Warlord's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"High Warlord's Vestments","setId":606,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":515},"isBase":true}}}, +{"id":28841,"name":"High Warlord's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,12,42,0,0,22,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":12,"2":42,"5":22,"6":14,"16":22,"22":782},"isBase":true}}}, +{"id":28842,"name":"High Warlord's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":33,"6":18,"16":17,"22":489},"isBase":true}}}, +{"id":28843,"name":"High Warlord's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":30,"6":24,"16":24,"22":635},"isBase":true}}}, +{"id":28844,"name":"High Warlord's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":42,"3":22,"6":28,"16":22,"22":684},"isBase":true}}}, +{"id":28845,"name":"High Warlord's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,0,0,8,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Earthshaker","setId":594,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":33,"5":8,"6":17,"16":13,"22":586},"isBase":true}}}, +{"id":28846,"name":"High Warlord's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":28847,"name":"High Warlord's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":28848,"name":"High Warlord's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":28849,"name":"High Warlord's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":52,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":28850,"name":"High Warlord's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Thunderfist","setId":604,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":28851,"name":"High Warlord's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":12,"2":46,"6":24,"16":19,"22":1128},"isBase":true}}}, +{"id":28852,"name":"High Warlord's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":22,"2":30,"6":21,"16":17,"22":705},"isBase":true}}}, +{"id":28853,"name":"High Warlord's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":20,"2":34,"6":24,"16":19,"22":917},"isBase":true}}}, +{"id":28854,"name":"High Warlord's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":28,"2":46,"6":28,"16":23,"22":987},"isBase":true}}}, +{"id":28855,"name":"High Warlord's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"High Warlord's Battlegear","setId":588,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":14,"2":36,"6":17,"16":13,"22":846},"isBase":true}}}, +{"id":28856,"name":"High Warlord's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":28857,"name":"High Warlord's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":28858,"name":"High Warlord's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":60,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":28859,"name":"High Warlord's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":28860,"name":"High Warlord's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Raiment","setId":598,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":51,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":28861,"name":"High Warlord's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[27,0,47,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":27,"2":47,"6":14,"16":14,"22":1128},"isBase":true}}}, +{"id":28862,"name":"High Warlord's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,30,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":28,"2":30,"6":12,"16":12,"22":705},"isBase":true}}}, +{"id":28863,"name":"High Warlord's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[28,0,33,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":28,"2":33,"6":14,"16":14,"22":917},"isBase":true}}}, +{"id":28864,"name":"High Warlord's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[36,0,49,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":36,"2":49,"6":16,"16":16,"22":987},"isBase":true}}}, +{"id":28865,"name":"High Warlord's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[25,0,38,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Vindication","setId":608,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":25,"2":38,"6":9,"16":10,"22":846},"isBase":true}}}, +{"id":28866,"name":"High Warlord's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":34,"3":21,"6":8,"16":15,"22":277},"isBase":true}}}, +{"id":28867,"name":"High Warlord's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":20,"6":17,"16":19,"22":300},"isBase":true}}}, +{"id":28868,"name":"High Warlord's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":16,"6":17,"16":17,"22":231},"isBase":true}}}, +{"id":28869,"name":"High Warlord's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":17,"16":18,"22":369},"isBase":true}}}, +{"id":28870,"name":"High Warlord's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"High Warlord's Regalia","setId":600,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":28,"6":22,"16":22,"22":323},"isBase":true}}}, +{"id":28871,"name":"High Warlord's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":27,"4":12,"16":13,"22":322,"23":9},"isBase":true}}}, +{"id":28872,"name":"High Warlord's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,12,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":36,"3":29,"4":12,"16":17,"22":419,"23":9},"isBase":true}}}, +{"id":28873,"name":"High Warlord's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":33,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":28874,"name":"High Warlord's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":28875,"name":"High Warlord's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Wildhide","setId":610,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":28917,"name":"High Warlord's Bonegrinder","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"0":28,"2":42,"5":18,"6":28,"16":19},"isBase":true}}}, +{"id":28918,"name":"High Warlord's Decapitator","icon":"inv_axe_10","type":13,"weaponType":1,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28919,"name":"High Warlord's Maul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28920,"name":"High Warlord's Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28921,"name":"High Warlord's Hacker","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28922,"name":"High Warlord's Fleshslicer","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28923,"name":"High Warlord's Painsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":201,"weaponDamageMax":302,"weaponSpeed":2.2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":201,"weaponDamageMax":302,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28924,"name":"High Warlord's Bonecracker","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28925,"name":"High Warlord's Pummeler","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28926,"name":"High Warlord's Quickblade","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28928,"name":"High Warlord's Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28929,"name":"High Warlord's Shanker","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28930,"name":"High Warlord's Shiv","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28931,"name":"High Warlord's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,0,13,0,0,0,0,0,0,0,0,190,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"stats":{"2":28,"5":13,"14":190,"16":13},"isBase":true}}}, +{"id":28933,"name":"High Warlord's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,38,0,0,0,28,0,0,0,0,0,0,69,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":293,"weaponDamageMax":440,"weaponSpeed":3.2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":293,"weaponDamageMax":440,"stats":{"2":38,"6":28,"13":69,"16":28},"isBase":true}}}, +{"id":28935,"name":"High Warlord's War Staff","icon":"inv_stave_2h_pvphorde_a_01_upres","type":13,"weaponType":8,"handType":4,"stats":[0,0,64,0,0,20,30,0,0,0,0,0,0,0,190,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":137,"weaponDamageMax":206,"weaponSpeed":3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":137,"weaponDamageMax":206,"stats":{"2":64,"5":20,"6":30,"14":190,"16":20},"isBase":true}}}, +{"id":28937,"name":"High Warlord's Slicer","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28938,"name":"High Warlord's Battletome","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":12,"16":12},"isBase":true}}}, +{"id":28939,"name":"High Warlord's Barricade","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"16":23,"22":2949},"isBase":true}}}, +{"id":28940,"name":"Grand Marshal's Barricade","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":36,"16":23,"22":2949},"isBase":true}}}, +{"id":28941,"name":"Grand Marshal's Battletome","icon":"inv_misc_book_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,27,12,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":12,"16":12},"isBase":true}}}, +{"id":28942,"name":"Grand Marshal's Bonegrinder","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"0":28,"2":42,"5":18,"6":28,"16":19},"isBase":true}}}, +{"id":28943,"name":"Grand Marshal's Warblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,18,28,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"0":28,"2":42,"5":18,"6":28,"16":19},"isBase":true}}}, +{"id":28944,"name":"Grand Marshal's Cleaver","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28945,"name":"Grand Marshal's Decapitator","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28946,"name":"Grand Marshal's Hacker","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28947,"name":"Grand Marshal's Fleshslicer","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28948,"name":"Grand Marshal's Maul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28949,"name":"Grand Marshal's Painsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,42,0,0,18,28,0,0,0,0,0,56,56,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":201,"weaponDamageMax":302,"weaponSpeed":2.2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":201,"weaponDamageMax":302,"stats":{"2":42,"5":18,"6":28,"12":56,"13":56,"16":19},"isBase":true}}}, +{"id":28950,"name":"Grand Marshal's Bonecracker","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28951,"name":"Grand Marshal's Pummeler","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28952,"name":"Grand Marshal's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28953,"name":"Grand Marshal's Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28954,"name":"Grand Marshal's Shanker","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28955,"name":"Grand Marshal's Shiv","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28956,"name":"Grand Marshal's Slicer","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":183,"weaponDamageMax":275,"stats":{"2":18,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":28957,"name":"Grand Marshal's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,0,13,0,0,0,0,0,0,0,0,190,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"stats":{"2":28,"5":13,"14":190,"16":13},"isBase":true}}}, +{"id":28959,"name":"Grand Marshal's War Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,64,0,0,20,30,0,0,0,0,0,0,0,190,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":137,"weaponDamageMax":206,"weaponSpeed":3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":137,"weaponDamageMax":206,"stats":{"2":64,"5":20,"6":30,"14":190,"16":20},"isBase":true}}}, +{"id":28960,"name":"Grand Marshal's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,38,0,0,0,28,0,0,0,0,0,0,69,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":293,"weaponDamageMax":440,"weaponSpeed":3.2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":293,"weaponDamageMax":440,"stats":{"2":38,"6":28,"13":69,"16":28},"isBase":true}}}, +{"id":28963,"name":"Voidheart Crown","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,70,34,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":70,"3":34,"6":19,"22":383},"isBase":true}}}, +{"id":28964,"name":"Voidheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,69,36,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":69,"3":36,"5":13,"22":472},"isBase":true}}}, +{"id":28966,"name":"Voidheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,74,42,0,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":74,"3":42,"5":17,"6":25,"22":413},"isBase":true}}}, +{"id":28967,"name":"Voidheart Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,32,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":44,"3":32,"5":14,"22":354},"isBase":true}}}, +{"id":28968,"name":"Voidheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,57,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[8],"setName":"Voidheart Raiment","setId":645,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":57,"3":30,"6":22,"22":295},"isBase":true}}}, +{"id":28973,"name":"Marshal's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,18,29,0,0,0,7,8,0,0,0,0,0,0,0,0,11,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":18,"2":29,"6":7,"7":8,"16":11,"22":423},"isBase":true}}}, +{"id":28974,"name":"Marshal's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":50,"6":14,"7":15,"16":18,"22":561},"isBase":true}}}, +{"id":28975,"name":"Marshal's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,50,0,0,0,14,15,0,0,0,0,0,0,0,0,18,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":50,"6":14,"7":15,"16":18,"22":686},"isBase":true}}}, +{"id":28976,"name":"Marshal's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,58,0,0,17,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":24,"2":58,"5":17,"16":23,"22":373,"23":11},"isBase":true}}}, +{"id":28977,"name":"Marshal's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,24,58,0,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":24,"2":58,"6":17,"16":23,"22":455,"23":11},"isBase":true}}}, +{"id":28978,"name":"Marshal's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,16,31,0,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,278,16,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":16,"2":31,"6":6,"16":11,"22":278,"23":16},"isBase":true}}}, +{"id":28980,"name":"Marshal's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":269},"isBase":true}}}, +{"id":28981,"name":"Marshal's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":35,"3":19,"16":14,"22":199},"isBase":true}}}, +{"id":28982,"name":"Marshal's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":329},"isBase":true}}}, +{"id":28983,"name":"Marshal's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":806},"isBase":true}}}, +{"id":28984,"name":"Marshal's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":612},"isBase":true}}}, +{"id":28985,"name":"Marshal's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":985},"isBase":true}}}, +{"id":28986,"name":"Marshal's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":15,"16":26,"22":373},"isBase":true}}}, +{"id":28987,"name":"Marshal's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,46,0,0,0,15,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":15,"16":26,"22":455},"isBase":true}}}, +{"id":28988,"name":"Marshal's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,28,0,0,0,7,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":19,"2":28,"6":7,"16":13,"22":278},"isBase":true}}}, +{"id":28989,"name":"Marshal's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,19,25,0,0,9,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"1":19,"2":25,"5":9,"6":15,"16":10,"22":423},"isBase":true}}}, +{"id":28990,"name":"Marshal's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":39,"5":18,"6":27,"16":19,"22":561},"isBase":true}}}, +{"id":28991,"name":"Marshal's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,27,39,0,0,18,27,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":39,"5":18,"6":27,"16":19,"22":686},"isBase":true}}}, +{"id":28992,"name":"Marshal's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":423},"isBase":true}}}, +{"id":28993,"name":"Marshal's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":561},"isBase":true}}}, +{"id":28994,"name":"Marshal's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":686},"isBase":true}}}, +{"id":28995,"name":"Marshal's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":27,"2":40,"6":27,"16":27,"22":806},"isBase":true}}}, +{"id":28996,"name":"Marshal's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,25,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"0":19,"2":25,"6":14,"16":14,"22":612},"isBase":true}}}, +{"id":28997,"name":"Marshal's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":27,"2":40,"6":27,"16":27,"22":985},"isBase":true}}}, +{"id":28998,"name":"Marshal's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":806},"isBase":true}}}, +{"id":28999,"name":"Marshal's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[26,0,22,0,0,0,14,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"0":26,"2":22,"6":14,"16":8,"22":612},"isBase":true}}}, +{"id":29000,"name":"Marshal's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":985},"isBase":true}}}, +{"id":29001,"name":"Marshal's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":24,"22":269},"isBase":true}}}, +{"id":29002,"name":"Marshal's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,36,17,0,0,12,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":36,"3":17,"6":12,"16":11,"22":199},"isBase":true}}}, +{"id":29003,"name":"Marshal's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":24,"22":329},"isBase":true}}}, +{"id":29004,"name":"Marshal's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":373,"23":11},"isBase":true}}}, +{"id":29005,"name":"Marshal's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":455,"23":11},"isBase":true}}}, +{"id":29006,"name":"Marshal's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,32,10,10,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":32,"3":10,"4":10,"16":13,"22":278,"23":9},"isBase":true}}}, +{"id":29011,"name":"Warbringer Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[24,0,53,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":24,"2":53,"9":32,"22":1156},"isBase":true}}}, +{"id":29012,"name":"Warbringer Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[25,0,48,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":25,"2":48,"10":34,"22":1422},"isBase":true}}}, +{"id":29015,"name":"Warbringer Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[36,0,55,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":36,"2":55,"9":51,"22":1244},"isBase":true}}}, +{"id":29016,"name":"Warbringer Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[22,0,38,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":22,"2":38,"9":32,"22":1067},"isBase":true}}}, +{"id":29017,"name":"Warbringer Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[28,0,38,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Armor","setId":654,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":28,"2":38,"10":39,"22":889},"isBase":true}}}, +{"id":29019,"name":"Warbringer Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":44,"2":39,"6":26,"22":1422},"isBase":true}}}, +{"id":29020,"name":"Warbringer Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[34,23,33,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":34,"1":23,"2":33,"5":18,"22":889},"isBase":true}}}, +{"id":29021,"name":"Warbringer Battle-Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[45,0,45,0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":45,"2":45,"5":14,"6":24,"22":1156},"isBase":true}}}, +{"id":29022,"name":"Warbringer Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[51,0,54,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":51,"2":54,"6":37,"22":1244},"isBase":true}}}, +{"id":29023,"name":"Warbringer Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[32,22,33,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[9],"setName":"Warbringer Battlegear","setId":655,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":32,"1":22,"2":33,"5":13,"22":1067},"isBase":true}}}, +{"id":29028,"name":"Cyclone Headdress","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,69,34,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":69,"3":34,"4":20,"22":803},"isBase":true}}}, +{"id":29029,"name":"Cyclone Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,61,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":61,"3":31,"4":26,"22":988},"isBase":true}}}, +{"id":29030,"name":"Cyclone Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,77,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":77,"3":43,"4":28,"22":865},"isBase":true}}}, +{"id":29031,"name":"Cyclone Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,61,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":61,"3":31,"22":741},"isBase":true}}}, +{"id":29032,"name":"Cyclone Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,53,31,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Raiment","setId":631,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":53,"3":31,"4":26,"22":618},"isBase":true}}}, +{"id":29033,"name":"Cyclone Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,61,33,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":61,"3":33,"4":20,"6":20,"22":988},"isBase":true}}}, +{"id":29034,"name":"Cyclone Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,52,29,0,19,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":52,"3":29,"5":19,"6":16,"22":618},"isBase":true}}}, +{"id":29035,"name":"Cyclone Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,57,33,20,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":57,"3":33,"4":20,"6":25,"22":803},"isBase":true}}}, +{"id":29036,"name":"Cyclone Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,75,42,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":75,"3":42,"5":20,"6":20,"22":865},"isBase":true}}}, +{"id":29037,"name":"Cyclone Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,50,31,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Regalia","setId":632,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":50,"3":31,"6":12,"22":741},"isBase":true}}}, +{"id":29038,"name":"Cyclone Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,44,31,0,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":44,"2":31,"5":20,"6":25,"22":988},"isBase":true}}}, +{"id":29039,"name":"Cyclone Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,32,47,0,0,19,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":32,"2":47,"5":19,"7":21,"22":618},"isBase":true}}}, +{"id":29040,"name":"Cyclone Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,36,60,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":36,"2":60,"6":27,"22":803},"isBase":true}}}, +{"id":29042,"name":"Cyclone War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,66,0,0,26,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":35,"2":66,"5":26,"6":35,"22":865},"isBase":true}}}, +{"id":29043,"name":"Cyclone Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,26,43,0,0,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[7],"setName":"Cyclone Harness","setId":633,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":26,"2":43,"5":14,"6":18,"22":741},"isBase":true}}}, +{"id":29044,"name":"Netherblade Facemask","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,39,61,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":39,"2":61,"5":14,"22":532},"isBase":true}}}, +{"id":29045,"name":"Netherblade Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,37,69,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":37,"2":69,"5":11,"22":655},"isBase":true}}}, +{"id":29046,"name":"Netherblade Breeches","icon":"inv_pants_plate_05","type":9,"armorType":2,"stats":[0,43,77,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":43,"2":77,"5":26,"22":573},"isBase":true}}}, +{"id":29047,"name":"Netherblade Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,26,51,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":26,"2":51,"5":13,"22":491},"isBase":true}}}, +{"id":29048,"name":"Netherblade Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,36,34,0,0,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[6],"setName":"Netherblade","setId":621,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":36,"2":34,"5":17,"6":25,"22":409},"isBase":true}}}, +{"id":29049,"name":"Light-Collar of the Incarnate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,59,33,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":59,"3":33,"4":31,"22":383},"isBase":true}}}, +{"id":29050,"name":"Robes of the Incarnate","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,59,40,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":59,"3":40,"4":20,"22":472},"isBase":true}}}, +{"id":29053,"name":"Trousers of the Incarnate","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,71,40,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":71,"3":40,"4":36,"22":413},"isBase":true}}}, +{"id":29054,"name":"Light-Mantle of the Incarnate","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":48,"3":24,"4":22,"22":354},"isBase":true}}}, +{"id":29055,"name":"Handwraps of the Incarnate","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Raiment","setId":663,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":50,"3":26,"4":33,"22":295},"isBase":true}}}, +{"id":29056,"name":"Shroud of the Incarnate","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,49,39,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":49,"3":39,"5":17,"6":21,"22":472},"isBase":true}}}, +{"id":29057,"name":"Gloves of the Incarnate","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,26,21,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":50,"3":26,"4":21,"6":24,"22":295},"isBase":true}}}, +{"id":29058,"name":"Soul-Collar of the Incarnate","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,60,33,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":60,"3":33,"5":16,"6":24,"22":383},"isBase":true}}}, +{"id":29059,"name":"Leggings of the Incarnate","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,71,37,27,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":71,"3":37,"4":27,"6":25,"22":413},"isBase":true}}}, +{"id":29060,"name":"Soul-Mantle of the Incarnate","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[5],"setName":"Incarnate Regalia","setId":664,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":48,"3":25,"4":18,"22":354},"isBase":true}}}, +{"id":29061,"name":"Justicar Diadem","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[0,0,61,34,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":61,"3":34,"6":28,"22":1156},"isBase":true}}}, +{"id":29062,"name":"Justicar Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,60,41,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":60,"3":41,"4":16,"6":17,"22":1422},"isBase":true}}}, +{"id":29063,"name":"Justicar Leggings","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[0,0,80,40,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":80,"3":40,"4":28,"22":1244},"isBase":true}}}, +{"id":29064,"name":"Justicar Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,50,31,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":50,"3":31,"4":12,"22":1067},"isBase":true}}}, +{"id":29065,"name":"Justicar Gloves","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,56,34,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Raiment","setId":624,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":56,"3":34,"6":22,"22":889},"isBase":true}}}, +{"id":29066,"name":"Justicar Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[41,0,48,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":41,"2":48,"10":35,"22":1422},"isBase":true}}}, +{"id":29067,"name":"Justicar Handguards","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[35,0,34,0,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":35,"2":34,"9":23,"10":23,"22":889},"isBase":true}}}, +{"id":29068,"name":"Justicar Faceguard","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[35,0,43,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":35,"2":43,"9":40,"22":1156},"isBase":true}}}, +{"id":29069,"name":"Justicar Legguards","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[47,0,46,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":47,"2":46,"10":47,"22":1244},"isBase":true}}}, +{"id":29070,"name":"Justicar Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[29,0,37,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Armor","setId":625,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":29,"2":37,"10":24,"22":1067},"isBase":true}}}, +{"id":29071,"name":"Justicar Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[42,0,24,0,0,0,25,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":42,"2":24,"6":25,"7":33,"22":1422},"isBase":true}}}, +{"id":29072,"name":"Justicar Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[38,0,29,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":38,"2":29,"6":24,"7":24,"22":889},"isBase":true}}}, +{"id":29073,"name":"Justicar Crown","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[43,0,33,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":43,"2":33,"6":42,"22":1156},"isBase":true}}}, +{"id":29074,"name":"Justicar Greaves","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[53,0,34,0,0,23,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":53,"2":34,"5":23,"6":37,"22":1244},"isBase":true}}}, +{"id":29075,"name":"Justicar Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[36,0,24,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[4],"setName":"Justicar Battlegear","setId":626,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":36,"2":24,"5":16,"6":21,"22":1067},"isBase":true}}}, +{"id":29076,"name":"Collar of the Aldor","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,57,35,17,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":57,"3":35,"4":17,"6":27,"22":383},"isBase":true}}}, +{"id":29077,"name":"Vestments of the Aldor","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,42,14,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":62,"3":42,"4":14,"5":20,"22":472},"isBase":true}}}, +{"id":29078,"name":"Legwraps of the Aldor","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,42,0,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":68,"3":42,"5":24,"6":23,"22":413},"isBase":true}}}, +{"id":29079,"name":"Pauldrons of the Aldor","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,48,23,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":48,"3":23,"4":16,"6":15,"22":354},"isBase":true}}}, +{"id":29080,"name":"Gloves of the Aldor","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,39,30,0,17,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[3],"setName":"Aldor Regalia","setId":648,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":39,"3":30,"5":17,"6":29,"22":295},"isBase":true}}}, +{"id":29081,"name":"Demon Stalker Greathelm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,35,51,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":35,"2":51,"6":33,"22":803},"isBase":true}}}, +{"id":29082,"name":"Demon Stalker Harness","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,35,57,0,0,16,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":35,"2":57,"5":16,"6":26,"22":988},"isBase":true}}}, +{"id":29083,"name":"Demon Stalker Greaves","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,41,56,0,0,15,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":41,"2":56,"5":15,"6":40,"22":865},"isBase":true}}}, +{"id":29084,"name":"Demon Stalker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,28,23,0,0,12,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":28,"2":23,"5":12,"6":19,"22":741},"isBase":true}}}, +{"id":29085,"name":"Demon Stalker Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,29,45,0,0,16,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[2],"setName":"Demon Stalker Armor","setId":651,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":29,"2":45,"5":16,"6":28,"22":618},"isBase":true}}}, +{"id":29086,"name":"Crown of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,51,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":51,"3":31,"4":38,"22":532},"isBase":true}}}, +{"id":29087,"name":"Chestguard of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,54,40,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":54,"3":40,"4":25,"22":655},"isBase":true}}}, +{"id":29088,"name":"Legguards of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,65,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":65,"3":38,"4":39,"22":573},"isBase":true}}}, +{"id":29089,"name":"Shoulderguards of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,40,31,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":40,"3":31,"4":23,"22":491},"isBase":true}}}, +{"id":29090,"name":"Handguards of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,45,28,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Raiment","setId":638,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":45,"3":28,"4":32,"22":409},"isBase":true}}}, +{"id":29091,"name":"Chestpiece of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,51,39,0,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":51,"3":39,"5":19,"6":19,"22":655},"isBase":true}}}, +{"id":29092,"name":"Gloves of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,48,28,21,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":48,"3":28,"4":21,"6":18,"22":409},"isBase":true}}}, +{"id":29093,"name":"Antlers of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,54,31,22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":54,"3":31,"4":22,"6":24,"22":532},"isBase":true}}}, +{"id":29094,"name":"Britches of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,63,38,26,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":63,"3":38,"4":26,"6":25,"22":573},"isBase":true}}}, +{"id":29095,"name":"Pauldrons of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,43,31,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Regalia","setId":639,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":43,"3":31,"4":22,"22":491},"isBase":true}}}, +{"id":29096,"name":"Breastplate of Malorne","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,42,65,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":42,"2":65,"5":13,"22":655},"isBase":true}}}, +{"id":29097,"name":"Gauntlets of Malorne","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,12,57,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":12,"2":57,"8":32,"22":409},"isBase":true}}}, +{"id":29098,"name":"Stag-Helm of Malorne","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,41,66,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":41,"2":66,"7":19,"22":532},"isBase":true}}}, +{"id":29099,"name":"Greaves of Malorne","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,42,77,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":42,"2":77,"6":26,"22":573},"isBase":true}}}, +{"id":29100,"name":"Mantle of Malorne","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,33,54,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1],"setName":"Malorne Harness","setId":640,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"1":33,"2":54,"7":9,"22":491},"isBase":true}}}, +{"id":29115,"name":"Consortium Blaster","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,44,47,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"1":44,"2":47,"6":22},"isBase":true}}}, +{"id":29116,"name":"Nomad's Leggings","icon":"inv_pants_02","type":9,"armorType":2,"stats":[0,33,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":74,"22":451},"isBase":true}}}, +{"id":29117,"name":"Stormspire Vest","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,49,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":49,"3":33,"4":32,"22":369},"isBase":true}}}, +{"id":29119,"name":"Haramad's Bargain","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[26,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"0":26,"1":25},"isBase":true}}}, +{"id":29121,"name":"Guile of Khoraazi","icon":"inv_weapon_shortblade_31","type":13,"weaponType":2,"handType":2,"stats":[0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":120,"weaponDamageMax":181,"weaponSpeed":1.6,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":120,"weaponDamageMax":181,"stats":{"1":19,"2":29},"isBase":true}}}, +{"id":29122,"name":"Nether Runner's Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,45,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":45,"3":39,"22":336},"isBase":true}}}, +{"id":29123,"name":"Medallion of the Lightbearer","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,18,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":18,"3":28,"4":16},"isBase":true}}}, +{"id":29124,"name":"Vindicator's Brand","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,19,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":2.6,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":318,"stats":{"5":19,"12":38,"13":38},"isBase":true}}}, +{"id":29125,"name":"Retainer's Blade","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"stats":{"1":22,"2":21},"isBase":true}}}, +{"id":29126,"name":"Seer's Signet","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,24,29,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":24,"3":29,"6":12},"isBase":true}}}, +{"id":29127,"name":"Vindicator's Hauberk","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,39,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":39,"9":49,"22":1128},"isBase":true}}}, +{"id":29128,"name":"Lightwarden's Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,18,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":18,"2":42},"isBase":true}}}, +{"id":29129,"name":"Anchorite's Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,55,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"gemSockets":[4,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":25,"4":18,"22":369},"isBase":true}}}, +{"id":29130,"name":"Auchenai Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,19,26,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"weaponSpeed":2.1,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"stats":{"2":69,"5":19,"6":26,"14":190},"isBase":true}}}, +{"id":29131,"name":"Retainer's Leggings","icon":"inv_pants_leather_18","type":9,"armorType":2,"stats":[0,46,28,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":46,"2":28,"5":26,"22":451},"isBase":true}}}, +{"id":29132,"name":"Scryer's Bloodgem","icon":"inv_misc_gem_bloodstone_02","type":12,"stats":[0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"5":32},"isBase":true}}}, +{"id":29133,"name":"Seer's Cane","icon":"inv_staff_38","type":13,"weaponType":8,"handType":4,"stats":[0,0,73,0,26,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"weaponSpeed":2.1,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"stats":{"2":73,"4":26,"14":190},"isBase":true}}}, +{"id":29134,"name":"Gauntlets of the Chosen","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,15,30,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":15,"2":30,"9":35,"22":705},"isBase":true}}}, +{"id":29135,"name":"Earthcaller's Headdress","icon":"inv_helmet_17","type":1,"armorType":3,"stats":[0,25,37,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":25,"2":37,"6":25,"22":635},"isBase":true}}}, +{"id":29136,"name":"Far Seer's Helm","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,25,37,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":25,"2":37,"6":25,"22":635},"isBase":true}}}, +{"id":29137,"name":"Hellscream's Will","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"5":42,"12":84,"13":84},"isBase":true}}}, +{"id":29138,"name":"Arechron's Gift","icon":"inv_mace_45","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"5":42,"12":84,"13":84},"isBase":true}}}, +{"id":29139,"name":"Ceremonial Cover","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,15,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"3":26,"4":16,"22":185},"isBase":true}}}, +{"id":29140,"name":"Cloak of the Ancient Spirits","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,15,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"3":26,"4":16,"22":185},"isBase":true}}}, +{"id":29141,"name":"Tempest Leggings","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,17,38,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":17,"3":38,"6":18,"22":451},"isBase":true}}}, +{"id":29142,"name":"Kurenai Kilt","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,17,38,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":17,"3":38,"6":18,"22":451},"isBase":true}}}, +{"id":29145,"name":"Band of Ancestral Spirits","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"3":26,"4":15},"isBase":true}}}, +{"id":29146,"name":"Band of Elemental Spirits","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"3":26,"4":15},"isBase":true}}}, +{"id":29147,"name":"Talbuk Hide Spaulders","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,35,30,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":35,"2":30,"5":15,"22":386},"isBase":true}}}, +{"id":29148,"name":"Blackened Leather Spaulders","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,35,30,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":35,"2":30,"5":15,"22":386},"isBase":true}}}, +{"id":29151,"name":"Veteran's Musket","icon":"inv_weapon_rifle_02","type":14,"rangedWeaponType":3,"stats":[0,37,53,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":2.7,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":231,"weaponDamageMax":430,"stats":{"1":37,"2":53,"5":34},"isBase":true}}}, +{"id":29152,"name":"Marksman's Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,37,53,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.8,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":240,"weaponDamageMax":446,"stats":{"1":37,"2":53,"5":34},"isBase":true}}}, +{"id":29153,"name":"Blade of the Archmage","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,21,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"stats":{"2":22,"6":21,"14":204},"isBase":true}}}, +{"id":29155,"name":"Stormcaller","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,23,0,0,0,21,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"stats":{"2":23,"6":21,"14":204},"isBase":true}}}, +{"id":29156,"name":"Honor's Call","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,13,0,0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":118,"weaponDamageMax":220,"stats":{"2":13,"5":8,"9":16},"isBase":true}}}, +{"id":29165,"name":"Warbringer","icon":"inv_axe_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,12,0,0,7,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":118,"weaponDamageMax":220,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":118,"weaponDamageMax":220,"stats":{"2":12,"5":7,"9":16},"isBase":true}}}, +{"id":29166,"name":"Hellforged Halberd","icon":"inv_weapon_halberd_12","type":13,"weaponType":6,"handType":4,"stats":[0,26,69,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"1":26,"2":69,"5":19},"isBase":true}}}, +{"id":29167,"name":"Blackened Spear","icon":"inv_spear_03","type":13,"weaponType":6,"handType":4,"stats":[0,26,69,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"weaponSpeed":3.5,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":320,"weaponDamageMax":481,"stats":{"1":26,"2":69,"5":19},"isBase":true}}}, +{"id":29168,"name":"Ancestral Band","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":23,"3":26,"4":10},"isBase":true}}}, +{"id":29169,"name":"Ring of Convalescence","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":23,"3":26,"4":10},"isBase":true}}}, +{"id":29170,"name":"Windcaller's Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,24,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":24,"3":29,"4":12},"isBase":true}}}, +{"id":29171,"name":"Earthwarden","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,39,0,0,0,0,0,24,27,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":3.2,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":313,"weaponDamageMax":470,"stats":{"2":39,"8":24,"9":27,"23":143},"isBase":true}}}, +{"id":29172,"name":"Ashyen's Gift","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,30,20,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":30,"3":20,"5":21},"isBase":true}}}, +{"id":29173,"name":"Strength of the Untamed","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,27,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"9":28},"isBase":true}}}, +{"id":29174,"name":"Watcher's Cowl","icon":"inv_helmet_34","type":1,"armorType":1,"stats":[0,0,56,36,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":36,"4":14,"22":300},"isBase":true}}}, +{"id":29175,"name":"Gavel of Pure Light","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":2,"stats":[0,0,23,0,20,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":116,"weaponSpeed":1.9,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":116,"stats":{"2":23,"4":20,"14":204},"isBase":true}}}, +{"id":29176,"name":"Crest of the Sha'tar","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[13,0,19,0,0,0,0,0,0,11,10,0,0,0,0,0,0,0,0,0,0,0,3486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"0":13,"2":19,"9":11,"10":10,"22":3486},"isBase":true}}}, +{"id":29177,"name":"A'dal's Command","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[29,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"0":29,"1":16,"2":18},"isBase":true}}}, +{"id":29179,"name":"Xi'ri's Gift","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"6":32},"isBase":true}}}, +{"id":29180,"name":"Blessed Scale Girdle","icon":"inv_belt_08","type":8,"armorType":3,"stats":[0,35,30,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":35,"2":30,"6":15,"22":440},"isBase":true}}}, +{"id":29181,"name":"Timelapse Shard","icon":"inv_datacrystal02","type":12,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":27,"16":24},"isBase":true}}}, +{"id":29182,"name":"Riftmaker","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,21,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":1.8,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"stats":{"1":21,"2":17},"isBase":true}}}, +{"id":29183,"name":"Bindings of the Timewalker","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,32,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":32,"3":29,"22":181},"isBase":true}}}, +{"id":29184,"name":"Timewarden's Leggings","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,57,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":57,"9":22,"22":987},"isBase":true}}}, +{"id":29185,"name":"Continuum Blade","icon":"inv_sword_11","type":13,"weaponType":9,"handType":2,"stats":[0,0,35,0,0,8,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":35,"5":8,"14":190},"isBase":true}}}, +{"id":29237,"name":"Warpath Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[22,20,22,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"0":22,"1":20,"2":22,"9":13,"22":608},"isBase":true}}}, +{"id":29238,"name":"Lion's Heart Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,22,31,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":26,"1":22,"2":31,"9":23,"22":781},"isBase":true}}}, +{"id":29239,"name":"Eaglecrest Warboots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[29,21,33,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":29,"1":21,"2":33,"9":24,"22":955},"isBase":true}}}, +{"id":29240,"name":"Bands of Negation","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,43,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":43,"3":25,"22":196},"isBase":true}}}, +{"id":29241,"name":"Belt of Depravity","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,54,29,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":54,"3":29,"5":17,"22":252},"isBase":true}}}, +{"id":29242,"name":"Boots of Blasphemy","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":60,"3":31,"22":308},"isBase":true}}}, +{"id":29243,"name":"Wave-Fury Vambraces","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,35,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":35,"3":19,"4":12,"22":420},"isBase":true}}}, +{"id":29244,"name":"Wave-Song Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,47,27,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":47,"3":27,"6":23,"22":540},"isBase":true}}}, +{"id":29245,"name":"Wave-Crest Striders","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,50,28,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":50,"3":28,"4":20,"22":659},"isBase":true}}}, +{"id":29246,"name":"Nightfall Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,24,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":24,"2":42,"22":275},"isBase":true}}}, +{"id":29247,"name":"Girdle of the Deathdealer","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,28,53,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":28,"2":53,"5":20,"22":354},"isBase":true}}}, +{"id":29248,"name":"Shadowstep Striders","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,31,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":31,"2":53,"22":432},"isBase":true}}}, +{"id":29249,"name":"Bands of the Benevolent","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,36,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":36,"3":21,"4":18,"22":196},"isBase":true}}}, +{"id":29250,"name":"Cord of Sanctification","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,46,28,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":46,"3":28,"4":18,"22":252},"isBase":true}}}, +{"id":29251,"name":"Boots of the Pious","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,47,28,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":47,"3":28,"4":23,"22":308},"isBase":true}}}, +{"id":29252,"name":"Bracers of Dignity","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,36,16,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":36,"3":16,"9":21,"22":608},"isBase":true}}}, +{"id":29253,"name":"Girdle of Valorous Deeds","icon":"inv_belt_11","type":8,"armorType":4,"stats":[30,0,37,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":30,"2":37,"10":30,"22":781},"isBase":true}}}, +{"id":29254,"name":"Boots of the Righteous Path","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,55,24,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":55,"3":24,"9":23,"22":955},"isBase":true}}}, +{"id":29255,"name":"Bands of Rarefied Magic","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":21,"4":16,"22":196},"isBase":true}}}, +{"id":29257,"name":"Sash of Arcane Visions","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,39,24,19,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":39,"3":24,"4":19,"6":22,"22":252},"isBase":true}}}, +{"id":29258,"name":"Boots of Ethereal Manipulation","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,51,28,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":51,"3":28,"4":21,"22":308},"isBase":true}}}, +{"id":29259,"name":"Bracers of the Hunt","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,19,31,0,0,10,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":19,"2":31,"5":10,"6":18,"22":420},"isBase":true}}}, +{"id":29261,"name":"Girdle of Ferocity","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,28,41,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,540,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":28,"2":41,"5":14,"6":22,"22":540},"isBase":true}}}, +{"id":29262,"name":"Boots of the Endless Hunt","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,26,40,0,0,16,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":26,"2":40,"5":16,"6":24,"22":659},"isBase":true}}}, +{"id":29263,"name":"Forestheart Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,41,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":41,"3":21,"4":16,"22":275},"isBase":true}}}, +{"id":29264,"name":"Tree-Mender's Belt","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,55,27,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":55,"3":27,"4":21,"22":354},"isBase":true}}}, +{"id":29265,"name":"Barkchip Boots","icon":"inv_boots_chain_05","type":10,"armorType":2,"stats":[0,27,54,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":27,"2":54,"7":21,"22":432},"isBase":true}}}, +{"id":29266,"name":"Azure-Shield of Coldarra","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[22,0,31,0,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"0":22,"2":31,"9":15,"10":14,"22":3756},"isBase":true}}}, +{"id":29267,"name":"Light-Bearer's Faith Shield","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[0,0,41,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":41,"3":25,"22":3756},"isBase":true}}}, +{"id":29268,"name":"Mazthoril Honor Shield","icon":"inv_shield_37","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,20,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"3":20,"6":21,"22":3756},"isBase":true}}}, +{"id":29269,"name":"Sapphiron's Wing Bone","icon":"inv_misc_bone_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,36,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"3":36,"5":12},"isBase":true}}}, +{"id":29270,"name":"Flametongue Seal","icon":"spell_fire_sealoffire","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,34,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"3":34,"6":17},"isBase":true}}}, +{"id":29271,"name":"Talisman of Kalecgos","icon":"inv_offhand_outlandraid_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,21,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":21,"3":35},"isBase":true}}}, +{"id":29272,"name":"Orb of the Soul-Eater","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,18,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":18,"3":36},"isBase":true}}}, +{"id":29273,"name":"Khadgar's Knapsack","icon":"inv_misc_bag_10_green","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"3":42},"isBase":true}}}, +{"id":29274,"name":"Tears of Heaven","icon":"inv_potion_75","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,34,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"3":34,"4":16},"isBase":true}}}, +{"id":29275,"name":"Searing Sunblade","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,24,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":129,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":31,"weaponDamageMin":129,"weaponDamageMax":241,"stats":{"1":24,"2":22},"isBase":true}}}, +{"id":29276,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"9":13,"23":84},"isBase":true}}}, +{"id":29277,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,33,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"9":16,"23":100},"isBase":true}}}, +{"id":29278,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,36,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":36,"9":18,"23":106},"isBase":true}}}, +{"id":29279,"name":"Violet Signet of the Great Protector","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,37,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":37,"9":19,"23":112},"isBase":true}}}, +{"id":29280,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,19,0,0,18,0,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":19,"5":18,"12":42,"13":42},"isBase":true}}}, +{"id":29281,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,24,0,0,22,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":24,"5":22,"12":50,"13":50},"isBase":true}}}, +{"id":29282,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,27,0,0,24,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":27,"5":24,"12":52,"13":52},"isBase":true}}}, +{"id":29283,"name":"Violet Signet of the Master Assassin","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,28,0,0,25,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":28,"5":25,"12":56,"13":56},"isBase":true}}}, +{"id":29284,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,19,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"3":19,"6":12},"isBase":true}}}, +{"id":29285,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,38,22,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":38,"3":22,"6":15},"isBase":true}}}, +{"id":29286,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,41,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":41,"3":24,"6":17},"isBase":true}}}, +{"id":29287,"name":"Violet Signet of the Archmage","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,44,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":44,"3":25,"6":17},"isBase":true}}}, +{"id":29288,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,34,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":34,"3":19,"4":12},"isBase":true}}}, +{"id":29289,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,39,21,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":39,"3":21,"4":15},"isBase":true}}}, +{"id":29290,"name":"Violet Signet of the Grand Restorer","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,44,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":44,"3":25,"4":17},"isBase":true}}}, +{"id":29291,"name":"Violet Signet","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,43,23,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":43,"3":23,"4":17},"isBase":true}}}, +{"id":29294,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,37,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"9":25,"10":25},"isBase":true}}}, +{"id":29295,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,40,0,0,0,0,0,0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":40,"9":28,"10":27},"isBase":true}}}, +{"id":29296,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,0,0,0,0,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":144,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"144":{"randPropPoints":56,"stats":{"2":43,"9":30,"10":29},"isBase":true}}}, +{"id":29297,"name":"Band of the Eternal Defender","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,43,0,0,0,0,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":152,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"152":{"randPropPoints":60,"stats":{"2":43,"9":30,"10":29},"isBase":true}}}, +{"id":29298,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,25,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":25,"2":56},"isBase":true}}}, +{"id":29299,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,27,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"1":27,"2":62},"isBase":true}}}, +{"id":29300,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,29,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":135,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"135":{"randPropPoints":52,"stats":{"1":29,"2":66},"isBase":true}}}, +{"id":29301,"name":"Band of the Eternal Champion","icon":"inv_jewelry_ring_55","type":11,"stats":[0,29,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":152,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"152":{"randPropPoints":60,"stats":{"1":29,"2":66},"isBase":true}}}, +{"id":29302,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,25,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":43,"3":25,"6":21},"isBase":true}}}, +{"id":29303,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,45,27,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":45,"3":27,"6":22},"isBase":true}}}, +{"id":29304,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,49,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":135,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"135":{"randPropPoints":52,"stats":{"2":49,"3":29,"6":24},"isBase":true}}}, +{"id":29305,"name":"Band of the Eternal Sage","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,49,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":152,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"152":{"randPropPoints":60,"stats":{"2":49,"3":29,"6":24},"isBase":true}}}, +{"id":29306,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,45,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":45,"3":27,"4":22},"isBase":true}}}, +{"id":29307,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,43,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":43,"3":25,"4":20},"isBase":true}}}, +{"id":29308,"name":"Band of Eternity","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,49,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":144,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"144":{"randPropPoints":56,"stats":{"2":49,"3":29,"4":26},"isBase":true}}}, +{"id":29316,"name":"Warchief's Mantle","icon":"inv_shoulder_01","type":3,"armorType":4,"stats":[23,0,27,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"0":23,"2":27,"10":18,"22":757},"isBase":true}}}, +{"id":29317,"name":"Tempest's Touch","icon":"inv_gauntlets_32","type":7,"armorType":1,"stats":[0,0,30,23,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"2":30,"3":23,"4":6,"5":10,"22":200},"isBase":true}}}, +{"id":29318,"name":"Southshore Sneakers","icon":"inv_boots_chain_06","type":10,"armorType":2,"stats":[0,21,16,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"1":21,"2":16,"9":23,"22":309},"isBase":true}}}, +{"id":29319,"name":"Tarren Mill Defender's Cinch","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,19,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"2":19,"3":18,"4":30,"22":385},"isBase":true}}}, +{"id":29320,"name":"Band of the Guardian","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,17,20,0,15,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":17,"3":20,"5":15,"6":17},"isBase":true}}}, +{"id":29321,"name":"Time-Bending Gem","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,19,0,0,0,0,0,0,21,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":19,"9":21,"12":36,"13":36},"isBase":true}}}, +{"id":29322,"name":"Keeper's Ring of Piety","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":19,"4":27},"isBase":true}}}, +{"id":29323,"name":"Andormu's Tear","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,0,0,0,0,0,0,0,27,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"9":27,"10":15},"isBase":true}}}, +{"id":29329,"name":"Terokk's Quill","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,54,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":3.3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"1":54,"2":33},"isBase":true}}}, +{"id":29330,"name":"The Saga of Terokk","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"3":24},"isBase":true}}}, +{"id":29332,"name":"Terokk's Mask","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,33,0,0,0,0,30,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"6":30,"9":36,"22":419},"isBase":true}}}, +{"id":29333,"name":"Torc of the Sethekk Prophet","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,27,16,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":16,"6":21},"isBase":true}}}, +{"id":29334,"name":"Sethekk Oracle's Focus","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,29,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":29,"3":16,"4":20},"isBase":true}}}, +{"id":29335,"name":"Talon Lord's Collar","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,19,0,0,21,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":19,"5":21,"12":38,"13":38},"isBase":true}}}, +{"id":29336,"name":"Mark of the Ravenguard","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,40,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":40,"9":17},"isBase":true}}}, +{"id":29337,"name":"The Exarch's Protector","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,0,0,0,0,18,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":30,"6":18,"9":23,"22":950},"isBase":true}}}, +{"id":29339,"name":"Auchenai Tracker's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,30,44,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":30,"2":44,"5":12,"22":647},"isBase":true}}}, +{"id":29340,"name":"Auchenai Monk's Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,24,14,0,0,19,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":24,"2":14,"5":19,"9":24,"22":424},"isBase":true}}}, +{"id":29341,"name":"Auchenai Anchorite's Robe","icon":"inv_chest_cloth_46","type":5,"armorType":1,"stats":[0,0,36,24,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":36,"3":24,"5":23,"22":302},"isBase":true}}}, +{"id":29346,"name":"Feltooth Eviscerator","icon":"inv_sword_38","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":129,"weaponDamageMax":241,"weaponSpeed":1.8,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"110":{"randPropPoints":31,"weaponDamageMin":129,"weaponDamageMax":241,"stats":{"6":22,"12":34,"13":34},"isBase":true}}}, +{"id":29347,"name":"Talisman of the Breaker","icon":"ability_hunter_mastermarksman","type":2,"stats":[0,0,33,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"3":20},"isBase":true}}}, +{"id":29348,"name":"The Bladefist","icon":"inv_weapon_hand_10","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":179,"weaponDamageMax":334,"weaponSpeed":2.6,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":16808,"zoneId":3714}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":179,"weaponDamageMax":334,"isBase":true}}}, +{"id":29349,"name":"Adamantine Chain of the Unbroken","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,19,0,0,0,30,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":19,"6":30,"12":34,"13":34},"isBase":true}}}, +{"id":29350,"name":"The Black Stalk","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,13,23,0,0,15,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":64,"weaponDamageMax":121,"weaponSpeed":1.8,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"110":{"randPropPoints":31,"weaponDamageMin":64,"weaponDamageMax":121,"stats":{"2":13,"3":23,"6":15,"14":218},"isBase":true}}}, +{"id":29351,"name":"Wrathtide Longbow","icon":"inv_weapon_crossbow_16","type":14,"rangedWeaponType":1,"stats":[0,45,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":269,"weaponDamageMax":501,"weaponSpeed":3,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":269,"weaponDamageMax":501,"stats":{"1":45,"2":67},"isBase":true}}}, +{"id":29352,"name":"Cobalt Band of Tyrigosa","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"3":30},"isBase":true}}}, +{"id":29353,"name":"Shockwave Truncheon","icon":"inv_mace_54","type":13,"weaponType":4,"handType":2,"stats":[0,0,24,0,16,0,16,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":122,"weaponSpeed":1.9,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":122,"stats":{"2":24,"4":16,"6":16,"14":211},"isBase":true}}}, +{"id":29354,"name":"Light-Touched Stole of Altruism","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,40,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18373,"zoneId":3790}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":25,"22":224},"isBase":true}}}, +{"id":29355,"name":"Terokk's Shadowstaff","icon":"inv_weapon_halberd19","type":13,"weaponType":8,"handType":4,"stats":[0,0,77,0,0,0,37,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":164,"weaponDamageMax":247,"weaponSpeed":3.2,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":164,"weaponDamageMax":247,"stats":{"2":77,"6":37,"14":210},"isBase":true}}}, +{"id":29356,"name":"Quantum Blade","icon":"inv_sword_81","type":13,"weaponType":9,"handType":4,"stats":[0,0,31,0,0,0,30,0,0,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":359,"weaponDamageMax":539,"weaponSpeed":3.5,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":359,"weaponDamageMax":539,"stats":{"2":31,"6":30,"12":102,"13":102},"isBase":true}}}, +{"id":29357,"name":"Master Thief's Gloves","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,29,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":29,"2":45,"22":393},"isBase":true}}}, +{"id":29359,"name":"Feral Staff of Lashing","icon":"inv_staff_56","type":13,"weaponType":8,"handType":4,"stats":[0,35,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":308,"weaponDamageMax":462,"weaponSpeed":3,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":308,"weaponDamageMax":462,"stats":{"1":35,"2":66,"23":86},"isBase":true}}}, +{"id":29360,"name":"Vileblade of the Betrayer","icon":"inv_weapon_shortblade_33","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20912,"zoneId":3848}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"12":60,"13":60},"isBase":true}}}, +{"id":29362,"name":"The Sun Eater","icon":"inv_sword_63","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":110,"weaponDamageMax":206,"weaponSpeed":1.6,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":110,"weaponDamageMax":206,"stats":{"2":22,"9":24},"isBase":true}}}, +{"id":29367,"name":"Ring of Cryptic Dreams","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,31,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"3":20,"6":20},"isBase":true}}}, +{"id":29368,"name":"Manasurge Pendant","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":43,"3":24},"isBase":true}}}, +{"id":29369,"name":"Shawl of Shifting Probabilities","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,32,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":32,"3":18,"6":22,"22":224},"isBase":true}}}, +{"id":29370,"name":"Icon of the Silver Crescent","icon":"inv_weapon_shortblade_23","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"3":38},"isBase":true}}}, +{"id":29371,"name":"Nexus-Claw","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.8,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":135,"weaponDamageMax":252,"stats":{"6":14,"12":28,"13":28},"isBase":true}}}, +{"id":29372,"name":"Void-Talon","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":2,"stats":[0,14,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":77,"weaponDamageMax":144,"stats":{"1":14,"2":21},"isBase":true}}}, +{"id":29373,"name":"Band of Halos","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":21,"4":16},"isBase":true}}}, +{"id":29374,"name":"Necklace of Eternal Hope","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,40,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":22,"4":10},"isBase":true}}}, +{"id":29375,"name":"Bishop's Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,31,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"3":21,"4":20,"22":224},"isBase":true}}}, +{"id":29376,"name":"Essence of the Martyr","icon":"inv_valentineperfumebottle","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"3":38},"isBase":true}}}, +{"id":29377,"name":"Ethereum Phase-Spear","icon":"inv_spear_06","type":13,"weaponType":6,"handType":4,"stats":[0,0,39,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":122,"weaponDamageMax":183,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":122,"weaponDamageMax":183,"stats":{"2":39,"3":26,"4":26},"isBase":true}}}, +{"id":29378,"name":"Starheart Baton","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":45,"weaponDamageMax":85,"weaponSpeed":1.9,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":45,"weaponDamageMax":85,"stats":{"3":21,"14":148},"isBase":true}}}, +{"id":29379,"name":"Ring of Arathi Warlords","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,24,0,0,0,23,0,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":24,"6":23,"12":46,"13":46},"isBase":true}}}, +{"id":29380,"name":"Ethereum Phase Blade","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":2,"stats":[0,0,24,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":91,"weaponDamageMax":171,"weaponSpeed":1.9,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":91,"weaponDamageMax":171,"stats":{"2":24,"3":11},"isBase":true}}}, +{"id":29381,"name":"Choker of Vile Intent","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,20,37,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":20,"2":37,"5":18},"isBase":true}}}, +{"id":29382,"name":"Blood Knight War Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":23,"2":44,"22":224},"isBase":true}}}, +{"id":29383,"name":"Bloodlust Brooch","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"12":72,"13":72},"isBase":true}}}, +{"id":29384,"name":"Ring of Unyielding Force","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,31,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"9":22,"23":84},"isBase":true}}}, +{"id":29385,"name":"Farstrider Defender's Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,224,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":30,"10":25,"22":224,"23":50},"isBase":true}}}, +{"id":29386,"name":"Necklace of the Juggernaut","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,19,33,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":19,"2":33,"9":22},"isBase":true}}}, +{"id":29387,"name":"Gnomeregan Auto-Dodger 600","icon":"inv_battery_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"9":39},"isBase":true}}}, +{"id":29391,"name":"Pulse Dagger","icon":"inv_weapon_shortblade_07","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":1.8,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":87,"weaponDamageMax":162,"stats":{"5":21},"isBase":true}}}, +{"id":29458,"name":"Aegis of the Vindicator","icon":"inv_shield_33","type":13,"weaponType":7,"handType":3,"stats":[0,0,32,24,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17257,"zoneId":3836}}],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":32,"3":24,"4":28,"22":3813},"isBase":true}}}, +{"id":29463,"name":"Amber Bands of the Aggressor","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[22,18,25,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"0":22,"1":18,"2":25,"9":15,"22":608},"isBase":true}}}, +{"id":29489,"name":"Enchanted Felscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,678,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35525}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":30,"17":40,"22":678},"isBase":true}}}, +{"id":29490,"name":"Enchanted Felscale Gloves","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,484,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35526}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"17":30,"22":484},"isBase":true}}}, +{"id":29491,"name":"Enchanted Felscale Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35527}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"17":30,"22":533},"isBase":true}}}, +{"id":29492,"name":"Flamescale Leggings","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,678,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35529}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":30,"18":40,"22":678},"isBase":true}}}, +{"id":29493,"name":"Flamescale Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,533,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35528}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"18":30,"22":533},"isBase":true}}}, +{"id":29494,"name":"Flamescale Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,436,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35531}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"18":30,"22":436},"isBase":true}}}, +{"id":29495,"name":"Enchanted Clefthoof Leggings","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,445,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35532}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":30,"17":40,"22":445},"isBase":true}}}, +{"id":29496,"name":"Enchanted Clefthoof Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,318,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35533}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"17":30,"22":318},"isBase":true}}}, +{"id":29497,"name":"Enchanted Clefthoof Boots","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,350,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35534}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"17":30,"22":350},"isBase":true}}}, +{"id":29498,"name":"Blastguard Pants","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,445,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35535}}],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":30,"18":40,"22":445},"isBase":true}}}, +{"id":29499,"name":"Blastguard Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,350,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35536}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"18":30,"22":350},"isBase":true}}}, +{"id":29500,"name":"Blastguard Belt","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,286,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35537}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":27,"18":30,"22":286},"isBase":true}}}, +{"id":29502,"name":"Cobrascale Hood","icon":"inv_helmet_38","type":1,"armorType":2,"stats":[0,37,73,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35558}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":37,"2":73,"5":18,"22":472},"isBase":true}}}, +{"id":29503,"name":"Cobrascale Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,25,33,0,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35559}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":25,"2":33,"5":20,"6":25,"22":363},"isBase":true}}}, +{"id":29504,"name":"Windscale Hood","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,0,32,38,26,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35560}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":32,"3":38,"4":26,"6":37,"22":472},"isBase":true}}}, +{"id":29505,"name":"Hood of Primal Life","icon":"inv_helmet_32","type":1,"armorType":2,"stats":[0,0,67,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35561}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":67,"3":31,"4":31,"22":472},"isBase":true}}}, +{"id":29506,"name":"Gloves of the Living Touch","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,32,35,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35562}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":32,"3":35,"4":22,"22":363},"isBase":true}}}, +{"id":29507,"name":"Windslayer Wraps","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,39,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35563}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":36,"2":39,"5":17,"22":363},"isBase":true}}}, +{"id":29508,"name":"Living Dragonscale Helm","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,49,37,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35564}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":49,"3":37,"4":36,"22":720},"isBase":true}}}, +{"id":29509,"name":"Windstrike Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[36,18,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35568}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":36,"1":18,"2":25,"5":17,"22":554},"isBase":true}}}, +{"id":29510,"name":"Netherdrake Helm","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,45,16,0,0,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35572}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":45,"2":16,"5":30,"6":31,"22":720},"isBase":true}}}, +{"id":29511,"name":"Netherdrake Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,26,44,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35573}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":26,"2":44,"6":25,"22":554},"isBase":true}}}, +{"id":29512,"name":"Earthen Netherscale Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,28,27,0,0,26,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35567}}],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":28,"2":27,"5":26,"6":18,"22":609},"isBase":true}}}, +{"id":29514,"name":"Thick Netherscale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,38,55,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35574}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":38,"2":55,"6":36,"22":886},"isBase":true}}}, +{"id":29515,"name":"Ebon Netherscale Breastplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,51,25,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35575}}],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":51,"2":25,"5":20,"6":31,"22":988},"isBase":true}}}, +{"id":29516,"name":"Ebon Netherscale Belt","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,31,21,0,0,20,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35576}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":31,"2":21,"5":20,"6":22,"22":548},"isBase":true}}}, +{"id":29517,"name":"Ebon Netherscale Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,23,25,0,0,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherscale Armor","setId":616,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35577}}],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"1":23,"2":25,"5":12,"6":17,"22":388},"isBase":true}}}, +{"id":29519,"name":"Netherstrike Breastplate","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,51,32,20,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35580}}],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":51,"3":32,"4":20,"6":32,"22":988},"isBase":true}}}, +{"id":29520,"name":"Netherstrike Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,27,26,22,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35582}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":27,"3":26,"4":22,"6":16,"22":548},"isBase":true}}}, +{"id":29521,"name":"Netherstrike Bracers","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,24,17,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Netherstrike Armor","setId":617,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35584}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":24,"3":17,"4":16,"6":17,"22":426},"isBase":true}}}, +{"id":29522,"name":"Windhawk Hauberk","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,54,36,29,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35585}}],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":54,"3":36,"4":29,"6":19,"22":655},"isBase":true}}}, +{"id":29523,"name":"Windhawk Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,36,21,7,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35588}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":36,"3":21,"4":7,"6":16,"22":281},"isBase":true}}}, +{"id":29524,"name":"Windhawk Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,34,29,20,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Windhawk Armor","setId":618,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35587}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":34,"3":29,"4":20,"6":12,"22":361},"isBase":true}}}, +{"id":29525,"name":"Primalstrike Vest","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,54,72,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35589}}],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":54,"2":72,"5":12,"22":655},"isBase":true}}}, +{"id":29526,"name":"Primalstrike Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,42,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35590}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":42,"2":47,"22":361},"isBase":true}}}, +{"id":29527,"name":"Primalstrike Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Primal Intent","setId":619,"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":35591}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":32,"2":33,"22":281},"isBase":true}}}, +{"id":29771,"name":"Kirin'Var Journeyman's Belt","icon":"inv_belt_15","type":8,"armorType":1,"stats":[0,0,24,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":24,"3":28,"4":12,"22":185},"isBase":true}}}, +{"id":29772,"name":"Kirin'Var Scout's Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,20,37,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":20,"2":37,"5":12,"22":259},"isBase":true}}}, +{"id":29773,"name":"Battle-Mage's Helmet","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,39,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":39,"3":26,"6":26,"22":571},"isBase":true}}}, +{"id":29774,"name":"Kirin'Var Defender's Chausses","icon":"inv_pants_02","type":9,"armorType":4,"stats":[0,0,41,26,18,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":41,"3":26,"4":18,"9":19,"22":889},"isBase":true}}}, +{"id":29775,"name":"Pendant of the Battle-Mage","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,12,21,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":12,"3":21,"6":11},"isBase":true}}}, +{"id":29776,"name":"Core of Ar'kelos","icon":"spell_nature_abolishmagic","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"12":52,"13":52},"isBase":true}}}, +{"id":29777,"name":"Cloak of the Valiant Defender","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,21,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,160,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":21,"9":15,"22":160,"23":56},"isBase":true}}}, +{"id":29779,"name":"Rejuvenating Scepter","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,0,18,8,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":43,"weaponDamageMax":81,"weaponSpeed":1.8,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":43,"weaponDamageMax":81,"stats":{"3":18,"4":8,"14":148},"isBase":true}}}, +{"id":29780,"name":"Kirin Tor Apprentice's Robes","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,44,34,0,14,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":44,"3":34,"5":14,"6":17,"22":358},"isBase":true}}}, +{"id":29781,"name":"Lifewarden's Breastplate","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,48,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":48,"3":29,"4":28,"22":475},"isBase":true}}}, +{"id":29782,"name":"Coif of the Wicked","icon":"inv_helmet_03","type":1,"armorType":3,"stats":[0,26,59,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"1":26,"2":59,"5":26,"22":589},"isBase":true}}}, +{"id":29783,"name":"Legguards of the Resolute Defender","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,23,42,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"1":23,"2":42,"10":38,"22":936},"isBase":true}}}, +{"id":29784,"name":"Harmony's Touch","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,0,18,28,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":18,"3":28,"6":16,"22":288},"isBase":true}}}, +{"id":29785,"name":"Crimson Mail Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,13,18,0,0,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"1":13,"2":18,"5":12,"6":13,"22":307},"isBase":true}}}, +{"id":29786,"name":"Kirin'Var Defender's Greaves","icon":"inv_boots_wolf","type":10,"armorType":4,"stats":[21,16,18,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"0":21,"1":16,"2":18,"5":14,"22":699},"isBase":true}}}, +{"id":29787,"name":"Master Smith's Hammer","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":2,"stats":[0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"weaponSpeed":2.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":131,"weaponDamageMax":244,"stats":{"1":9,"2":17},"isBase":true}}}, +{"id":29788,"name":"Finely Wrought Scale Leggings","icon":"inv_pants_02","type":9,"armorType":3,"stats":[0,38,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"1":38,"2":24,"6":21,"22":614},"isBase":true}}}, +{"id":29789,"name":"Andrethan's Masterwork","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[34,0,27,0,0,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"0":34,"2":27,"5":18,"6":19,"22":1016},"isBase":true}}}, +{"id":29791,"name":"Reinforced Heaume","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[17,17,39,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"0":17,"1":17,"2":39,"9":27,"22":826},"isBase":true}}}, +{"id":29792,"name":"Dawnstrike's Cloak","icon":"inv_misc_cape_22","type":4,"armorType":1,"stats":[0,12,32,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"1":12,"2":32,"5":9,"22":164},"isBase":true}}}, +{"id":29793,"name":"Signet of the Violet Tower","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,11,25,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"2":11,"3":25,"4":6},"isBase":true}}}, +{"id":29794,"name":"Strength of the Violet Tower","icon":"inv_jewelry_necklace_15","type":2,"stats":[9,0,18,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"0":9,"2":18,"9":21},"isBase":true}}}, +{"id":29804,"name":"Wrangler's Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,28,24,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":28,"2":24,"9":11,"22":317},"isBase":true}}}, +{"id":29806,"name":"Cowpoke's Riding Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,21,18,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":21,"2":18,"5":16,"6":16,"22":439},"isBase":true}}}, +{"id":29807,"name":"Engraved Cattleman's Buckle","icon":"inv_belt_01","type":8,"armorType":4,"stats":[21,0,30,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"0":21,"2":30,"5":10,"6":15,"22":572},"isBase":true}}}, +{"id":29808,"name":"Shimmering Azure Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,29,20,0,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":29,"3":20,"5":16,"6":12,"22":226},"isBase":true}}}, +{"id":29810,"name":"Dragon Crested Epaulets","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,34,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":34,"2":20,"22":346},"isBase":true}}}, +{"id":29811,"name":"Goldenlink Bracers","icon":"inv_bracer_19","type":6,"armorType":3,"stats":[0,19,18,0,0,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"1":19,"2":18,"5":18,"6":16,"22":307},"isBase":true}}}, +{"id":29812,"name":"Blued Steel Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[16,28,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"0":16,"1":28,"5":12,"22":635},"isBase":true}}}, +{"id":29813,"name":"Cloak of Woven Energy","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,19,25,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"2":19,"3":25,"4":3,"6":6,"22":169},"isBase":true}}}, +{"id":29814,"name":"Celestial Jewel Ring","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,20,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"2":20,"3":25,"4":10},"isBase":true}}}, +{"id":29815,"name":"Chain of Glowing Tendrils","icon":"inv_jewelry_necklace_04","type":2,"stats":[18,17,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"0":18,"1":17,"2":25},"isBase":true}}}, +{"id":29918,"name":"Mindstorm Wristbands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,24,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":24,"3":31,"6":23,"22":215},"isBase":true}}}, +{"id":29920,"name":"Phoenix-Ring of Rebirth","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":36,"3":25,"4":26},"isBase":true}}}, +{"id":29921,"name":"Fire Crest Breastplate","icon":"inv_chest_plate03","type":5,"armorType":3,"stats":[0,0,65,37,26,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":65,"3":37,"4":26,"6":34,"22":1012},"isBase":true}}}, +{"id":29922,"name":"Band of Al'ar","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,44,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":44,"3":32},"isBase":true}}}, +{"id":29923,"name":"Talisman of the Sun King","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,27,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":47,"3":27,"4":16},"isBase":true}}}, +{"id":29924,"name":"Netherbane","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":231,"weaponDamageMax":429,"weaponSpeed":2.6,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":231,"weaponDamageMax":429,"stats":{"1":25,"2":38},"isBase":true}}}, +{"id":29925,"name":"Phoenix-Wing Cloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,37,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"9":37,"22":246},"isBase":true}}}, +{"id":29947,"name":"Gloves of the Searing Grip","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,33,65,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":65,"8":18,"22":422},"isBase":true}}}, +{"id":29948,"name":"Claw of the Phoenix","icon":"inv_weapon_hand_12","type":13,"weaponType":3,"handType":2,"stats":[0,21,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":160,"weaponDamageMax":297,"weaponSpeed":1.8,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":160,"weaponDamageMax":297,"stats":{"1":21,"2":45},"isBase":true}}}, +{"id":29949,"name":"Arcanite Steam-Pistol","icon":"inv_weapon_rifle_18","type":14,"rangedWeaponType":3,"stats":[0,63,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":335,"weaponDamageMax":622,"weaponSpeed":2.9,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":92,"weaponDamageMin":335,"weaponDamageMax":622,"stats":{"1":63,"5":60},"isBase":true}}}, +{"id":29950,"name":"Greaves of the Bloodwarder","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[49,0,46,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":49,"2":46,"6":31,"22":1268},"isBase":true}}}, +{"id":29951,"name":"Star-Strider Boots","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,33,30,0,0,10,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":30,"5":10,"6":33,"22":696},"isBase":true}}}, +{"id":29954,"name":"Spiritbinder's Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,24,28,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":24,"3":28,"4":11,"22":239},"isBase":true}}}, +{"id":29955,"name":"Mana Infused Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,0,18,21,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":18,"3":21,"4":7,"22":196},"isBase":true}}}, +{"id":29959,"name":"Spiritualist's Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,27,17,12,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":27,"3":17,"4":12,"9":17,"22":631},"isBase":true}}}, +{"id":29962,"name":"Heartrazor","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":2,"stats":[0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":160,"weaponDamageMax":297,"weaponSpeed":1.8,"ilvl":134,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":160,"weaponDamageMax":297,"stats":{"1":20,"2":30},"isBase":true}}}, +{"id":29965,"name":"Girdle of the Righteous Path","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,57,35,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":57,"3":35,"6":27,"22":815},"isBase":true}}}, +{"id":29966,"name":"Vambraces of Ending","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,26,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":26,"2":45,"22":296},"isBase":true}}}, +{"id":29967,"name":"Nether Vest","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,42,29,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":42,"3":29,"6":17,"22":449},"isBase":true}}}, +{"id":29968,"name":"Nether Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,29,42,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":29,"2":42,"5":17,"22":599},"isBase":true}}}, +{"id":29969,"name":"Sparky's Discarded Helmet","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[29,0,25,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":29,"2":25,"6":28,"22":820},"isBase":true}}}, +{"id":29972,"name":"Trousers of the Astromancer","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,65,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":65,"3":46,"4":22,"22":430},"isBase":true}}}, +{"id":29973,"name":"Primalstorm Breastplate","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,30,54,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36077}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":30,"2":54,"5":17,"22":424},"isBase":true}}}, +{"id":29974,"name":"Living Crystal Breastplate","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,45,38,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36078}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"2":45,"3":38,"4":17,"22":424},"isBase":true}}}, +{"id":29975,"name":"Golden Dragonstrike Breastplate","icon":"inv_chest_plate06","type":5,"armorType":3,"stats":[0,33,25,0,0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":36079}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":33,"2":25,"5":22,"6":25,"22":647},"isBase":true}}}, +{"id":29976,"name":"Worldstorm Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,41,33,22,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":33,"4":22,"6":15,"22":633},"isBase":true}}}, +{"id":29977,"name":"Star-Soul Breeches","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,51,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":51,"3":46,"4":52,"22":430},"isBase":true}}}, +{"id":29978,"name":"Consortium Combatant's Robes","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,36,39,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":36,"3":39,"4":10,"22":334},"isBase":true}}}, +{"id":29979,"name":"Netherstorm Eyepatch","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,39,36,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":39,"2":36,"9":10,"22":379},"isBase":true}}}, +{"id":29980,"name":"Midrealm Leggings","icon":"inv_pants_13","type":9,"armorType":4,"stats":[39,0,16,0,0,10,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"0":39,"2":16,"5":10,"6":21,"22":895},"isBase":true}}}, +{"id":29981,"name":"Ethereum Life-Staff","icon":"inv_staff_52","type":13,"weaponType":8,"handType":4,"stats":[0,0,89,0,62,0,0,0,0,0,0,0,0,0,277,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":211,"weaponDamageMax":317,"weaponSpeed":3.2,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":92,"weaponDamageMin":211,"weaponDamageMax":317,"stats":{"2":89,"4":62,"14":277},"isBase":true}}}, +{"id":29982,"name":"Wand of the Forgotten Star","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,0,27,0,15,19,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.8,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"stats":{"3":27,"5":15,"6":19,"14":274},"isBase":true}}}, +{"id":29983,"name":"Fel-Steel Warhelm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[46,0,46,0,0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":46,"2":46,"5":30,"6":44,"22":1178},"isBase":true}}}, +{"id":29984,"name":"Girdle of Zaetar","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,42,33,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":42,"3":33,"4":24,"22":380},"isBase":true}}}, +{"id":29985,"name":"Void Reaver Greaves","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,44,52,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":44,"2":52,"6":37,"22":886},"isBase":true}}}, +{"id":29986,"name":"Cowl of the Grand Engineer","icon":"inv_helmet_14","type":1,"armorType":1,"stats":[0,0,47,45,0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":47,"3":45,"5":16,"6":35,"22":399},"isBase":true}}}, +{"id":29987,"name":"Gauntlets of the Sun King","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,54,36,20,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":71,"stats":{"2":54,"3":36,"4":20,"6":28,"22":333},"isBase":true}}}, +{"id":29988,"name":"The Nexus Key","icon":"inv_staff_43","type":13,"weaponType":8,"handType":4,"stats":[0,0,116,0,0,0,51,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.2,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":224,"weaponDamageMax":337,"stats":{"2":116,"6":51,"14":295},"isBase":true}}}, +{"id":29989,"name":"Sunshower Light Cloak","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,41,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":41,"3":35,"4":20,"22":267},"isBase":true}}}, +{"id":29990,"name":"Crown of the Sun","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,72,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"2":72,"3":49,"4":49,"22":433},"isBase":true}}}, +{"id":29991,"name":"Sunhawk Leggings","icon":"inv_pants_plate_07","type":9,"armorType":3,"stats":[0,0,64,49,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"2":64,"3":49,"4":32,"22":966},"isBase":true}}}, +{"id":29992,"name":"Royal Cloak of the Sunstriders","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,45,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":45,"3":38,"22":267},"isBase":true}}}, +{"id":29993,"name":"Twinblade of the Phoenix","icon":"inv_sword_2h_blood_c_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,53,0,0,0,37,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":505,"weaponDamageMax":759,"weaponSpeed":3.6,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":505,"weaponDamageMax":759,"stats":{"2":53,"6":37,"12":110,"13":110},"isBase":true}}}, +{"id":29994,"name":"Thalassian Wildercloak","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,28,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":28,"2":59,"22":267},"isBase":true}}}, +{"id":29995,"name":"Leggings of Murderous Intent","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,46,74,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"1":46,"2":74,"6":37,"22":643},"isBase":true}}}, +{"id":29996,"name":"Rod of the Sun King","icon":"inv_mace_48","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":255,"weaponDamageMax":474,"weaponSpeed":2.7,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":255,"weaponDamageMax":474,"stats":{"12":52,"13":52},"isBase":true}}}, +{"id":29997,"name":"Band of the Ranger-General","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,0,0,18,28,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":27,"5":18,"6":28,"12":56,"13":56},"isBase":true}}}, +{"id":29998,"name":"Royal Gauntlets of Silvermoon","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,57,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19622,"zoneId":3845}}],"scalingOptions":{"138":{"randPropPoints":71,"stats":{"0":22,"2":57,"9":34,"22":1003},"isBase":true}}}, +{"id":29999,"name":"After Hours Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,28,27,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":28,"2":27,"5":7,"22":336},"isBase":true}}}, +{"id":30000,"name":"Mixologist's Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,27,28,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":27,"3":28,"4":7,"22":199},"isBase":true}}}, +{"id":30001,"name":"Doc's Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,28,12,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":28,"2":12,"5":8,"6":16,"22":385},"isBase":true}}}, +{"id":30002,"name":"Boot's Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[28,0,12,0,0,0,7,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":28,"2":12,"6":7,"10":16,"22":694},"isBase":true}}}, +{"id":30003,"name":"Gloves of the Nether-Stalker","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,30,27,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":30,"2":27,"5":8,"22":292},"isBase":true}}}, +{"id":30004,"name":"Landing Boots","icon":"inv_boots_plate_08","type":10,"armorType":3,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":18,"3":30,"6":16,"22":487},"isBase":true}}}, +{"id":30005,"name":"Overmaster's Shoulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[30,0,12,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":30,"2":12,"5":8,"6":16,"22":768},"isBase":true}}}, +{"id":30006,"name":"Wind Trader's Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,6,34,0,0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":6,"2":34,"5":6,"9":12},"isBase":true}}}, +{"id":30007,"name":"The Darkener's Grasp","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,40,0,0,0,0,0,0,38,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":40,"9":38,"10":14},"isBase":true}}}, +{"id":30008,"name":"Pendant of the Lost Ages","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":39,"3":31},"isBase":true}}}, +{"id":30009,"name":"The Burning Crusader","icon":"inv_axe_54","type":13,"weaponType":1,"handType":4,"stats":[27,27,27,0,0,26,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":302,"weaponDamageMax":453,"weaponSpeed":3.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":302,"weaponDamageMax":453,"stats":{"0":27,"1":27,"2":27,"5":26,"8":17},"isBase":true}}}, +{"id":30010,"name":"Fleshling Simulation Staff","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,27,51,0,0,26,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":201,"weaponDamageMax":302,"weaponSpeed":2.4,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":201,"weaponDamageMax":302,"stats":{"1":27,"2":51,"5":26,"8":17},"isBase":true}}}, +{"id":30011,"name":"Ameer's Impulse Taser","icon":"inv_staff_draenei_a_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,0,17,40,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.4,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"stats":{"2":51,"5":17,"6":40,"14":129},"isBase":true}}}, +{"id":30012,"name":"Ameer's Judgement","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,65,0,27,0,17,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.4,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"stats":{"2":65,"4":27,"6":17,"14":129},"isBase":true}}}, +{"id":30013,"name":"Twin-Bladed Ripper","icon":"inv_sword_15","type":13,"weaponType":2,"handType":2,"stats":[0,12,23,0,0,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"stats":{"1":12,"2":23,"5":11,"8":7},"isBase":true}}}, +{"id":30014,"name":"X-52 Pilot's Leggings","icon":"inv_pants_cloth_07","type":9,"armorType":2,"stats":[0,31,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"1":31,"2":69,"22":416},"isBase":true}}}, +{"id":30015,"name":"The Sun King's Talisman","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,0,35,35,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":35,"3":35,"6":24},"isBase":true}}}, +{"id":30016,"name":"X-52 Technician's Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[38,0,36,0,0,16,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,869,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"0":38,"2":36,"5":16,"6":16,"9":16,"22":869},"isBase":true}}}, +{"id":30017,"name":"Telonicus' Pendant of Mayhem","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,27,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":27,"2":59},"isBase":true}}}, +{"id":30018,"name":"Lord Sanguinar's Claim","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,40,36,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":40,"3":36,"4":18},"isBase":true}}}, +{"id":30019,"name":"Area 52 Defender's Pants","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,50,31,16,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":50,"3":31,"4":16,"6":21,"22":635},"isBase":true}}}, +{"id":30020,"name":"Fire-Cord of the Magus","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,43,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":42,"3":43,"6":30,"22":276},"isBase":true}}}, +{"id":30021,"name":"Wildfury Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":396,"weaponDamageMax":594,"weaponSpeed":3,"ilvl":134,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}],"scalingOptions":{"134":{"randPropPoints":92,"weaponDamageMin":396,"weaponDamageMax":594,"stats":{"2":75,"9":54,"23":143},"isBase":true}}}, +{"id":30022,"name":"Pendant of the Perilous","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[32,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":32,"2":24,"6":23},"isBase":true}}}, +{"id":30024,"name":"Mantle of the Elven Kings","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,41,33,0,18,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":33,"5":18,"6":32,"22":368},"isBase":true}}}, +{"id":30026,"name":"Bands of the Celestial Archer","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,24,26,0,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":24,"2":26,"6":17,"7":24,"22":443},"isBase":true}}}, +{"id":30027,"name":"Boots of Courage Unending","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,37,41,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":37,"3":41,"6":31,"22":997},"isBase":true}}}, +{"id":30028,"name":"Seventh Ring of the Tirisfalen","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,37,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"9":31},"isBase":true}}}, +{"id":30029,"name":"Bark-Gloves of Ancient Wisdom","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,49,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":49,"3":33,"4":33,"22":422},"isBase":true}}}, +{"id":30030,"name":"Girdle of Fallen Stars","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,40,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":40,"3":33,"4":26,"22":569},"isBase":true}}}, +{"id":30031,"name":"Red Havoc Boots","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[0,0,49,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36392}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":49,"10":43,"22":997},"isBase":true}}}, +{"id":30032,"name":"Red Belt of Battle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[41,0,21,0,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36390}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":41,"2":21,"5":14,"6":24,"22":815},"isBase":true}}}, +{"id":30033,"name":"Boots of the Protector","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[34,0,48,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36391}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":34,"2":48,"9":32,"22":997},"isBase":true}}}, +{"id":30034,"name":"Belt of the Guardian","icon":"inv_belt_28","type":8,"armorType":4,"stats":[24,0,48,0,0,0,0,0,0,19,22,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36389}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":24,"2":48,"9":19,"10":22,"22":815},"isBase":true}}}, +{"id":30035,"name":"Boots of the Long Road","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,48,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36318}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":48,"3":33,"4":33,"22":338},"isBase":true}}}, +{"id":30036,"name":"Belt of the Long Road","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,30,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36316}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":30,"3":33,"4":33,"22":276},"isBase":true}}}, +{"id":30037,"name":"Boots of Blasting","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,47,33,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36317}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":47,"3":33,"5":18,"6":25,"22":338},"isBase":true}}}, +{"id":30038,"name":"Belt of Blasting","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,0,43,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36315}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"3":43,"5":23,"6":30,"22":276},"isBase":true}}}, +{"id":30039,"name":"Boots of Utter Darkness","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,33,34,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36357}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":34,"5":23,"6":32,"22":464},"isBase":true}}}, +{"id":30040,"name":"Belt of Deep Shadow","icon":"inv_belt_29","type":8,"armorType":2,"stats":[0,33,47,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36351}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":47,"5":18,"22":380},"isBase":true}}}, +{"id":30041,"name":"Boots of Natural Grace","icon":"inv_boots_cloth_04","type":10,"armorType":2,"stats":[0,0,64,33,13,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36355}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":64,"3":33,"4":13,"6":14,"22":464},"isBase":true}}}, +{"id":30042,"name":"Belt of Natural Power","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,59,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36349}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":59,"3":29,"4":12,"22":380},"isBase":true}}}, +{"id":30043,"name":"Hurricane Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,48,33,16,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36359}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":48,"3":33,"4":16,"6":26,"22":696},"isBase":true}}}, +{"id":30044,"name":"Monsoon Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,44,33,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36353}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":44,"3":33,"5":21,"22":569},"isBase":true}}}, +{"id":30045,"name":"Boots of the Crimson Hawk","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,29,51,0,0,0,19,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36358}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":51,"6":19,"7":28,"22":696},"isBase":true}}}, +{"id":30046,"name":"Belt of the Black Eagle","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,33,41,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":36352}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":41,"6":17,"7":17,"22":569},"isBase":true}}}, +{"id":30047,"name":"Blackfathom Warbands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":42,"3":28,"22":443},"isBase":true}}}, +{"id":30048,"name":"Brighthelm of Justice","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,77,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":77,"3":46,"4":36,"22":1178},"isBase":true}}}, +{"id":30049,"name":"Fathomstone","icon":"inv_misc_gem_azuredraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":26,"3":31,"6":23},"isBase":true}}}, +{"id":30050,"name":"Boots of the Shifting Nightmare","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,56,42,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":56,"3":42,"5":18,"22":338},"isBase":true}}}, +{"id":30052,"name":"Ring of Lethality","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,24,42,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":24,"2":42,"5":19},"isBase":true}}}, +{"id":30053,"name":"Pauldrons of the Wardancer","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[38,0,21,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":38,"2":21,"6":29,"22":1087},"isBase":true}}}, +{"id":30054,"name":"Ranger-General's Chestguard","icon":"inv_chest_plate09","type":5,"armorType":3,"stats":[0,44,48,0,0,0,14,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":44,"2":48,"6":14,"7":36,"22":1012},"isBase":true}}}, +{"id":30055,"name":"Shoulderpads of the Stranger","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,33,55,0,0,0,16,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":55,"6":16,"8":10,"22":507},"isBase":true}}}, +{"id":30056,"name":"Robe of Hateful Echoes","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,66,43,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":66,"3":43,"6":25,"22":491},"isBase":true}}}, +{"id":30057,"name":"Bracers of Eradication","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,12,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":25,"2":12,"5":17,"6":24,"22":634},"isBase":true}}}, +{"id":30058,"name":"Mallet of the Tides","icon":"inv_weapon_shortblade_42","type":13,"weaponType":4,"handType":2,"stats":[0,0,34,0,0,0,0,0,14,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":1.7,"ilvl":134,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":151,"weaponDamageMax":281,"stats":{"2":34,"8":14,"9":16},"isBase":true}}}, +{"id":30059,"name":"Choker of Animalistic Fury","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,24,0,0,0,23,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":24,"6":23,"12":64,"13":64},"isBase":true}}}, +{"id":30060,"name":"Boots of Effortless Striking","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":42,"2":63,"22":464},"isBase":true}}}, +{"id":30061,"name":"Ancestral Ring of Conquest","icon":"inv_jewelry_ring_41","type":11,"stats":[32,21,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":32,"1":21,"2":30},"isBase":true}}}, +{"id":30062,"name":"Grove-Bands of Remulos","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,31,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":32,"3":31,"4":21,"22":296},"isBase":true}}}, +{"id":30064,"name":"Cord of Screaming Terrors","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,43,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":42,"3":43,"5":24,"22":276},"isBase":true}}}, +{"id":30065,"name":"Glowing Breastplate of Truth","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,74,24,26,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":74,"3":24,"4":26,"6":42,"22":1450},"isBase":true}}}, +{"id":30066,"name":"Tempest-Strider Boots","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,48,23,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":48,"3":23,"4":40,"22":696},"isBase":true}}}, +{"id":30067,"name":"Velvet Boots of the Guardian","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,39,42,15,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":39,"3":42,"4":15,"6":24,"22":338},"isBase":true}}}, +{"id":30068,"name":"Girdle of the Tidal Call","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,35,30,0,0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":35,"2":30,"5":20,"6":33,"22":569},"isBase":true}}}, +{"id":30074,"name":"Heavy Earthforged Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[30,11,36,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36129}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"0":30,"1":11,"2":36,"9":11,"22":950},"isBase":true}}}, +{"id":30075,"name":"Gnarled Chestpiece of the Ancients","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,72,50,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":72,"3":50,"4":34,"22":676},"isBase":true}}}, +{"id":30076,"name":"Stormforged Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,25,21,0,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36130}}],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":25,"2":21,"5":18,"6":25,"22":647},"isBase":true}}}, +{"id":30077,"name":"Windforged Rapier","icon":"inv_sword_30","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":1.7,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36131}}],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":83,"weaponDamageMax":155,"stats":{"5":24},"isBase":true}}}, +{"id":30079,"name":"Illidari Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,51,33,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":51,"3":33,"6":16,"22":368},"isBase":true}}}, +{"id":30080,"name":"Luminescent Rod of the Naaru","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,28,22,22,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.8,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"stats":{"2":28,"3":22,"4":22,"14":274},"isBase":true}}}, +{"id":30081,"name":"Warboots of Obliteration","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[44,0,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":44,"2":29,"6":31,"22":997},"isBase":true}}}, +{"id":30082,"name":"Talon of Azshara","icon":"inv_sword_50","type":13,"weaponType":9,"handType":2,"stats":[0,15,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.7,"ilvl":134,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":240,"weaponDamageMax":446,"stats":{"1":15,"2":30,"5":20,"23":48},"isBase":true}}}, +{"id":30083,"name":"Ring of Sundered Souls","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":45,"9":32},"isBase":true}}}, +{"id":30084,"name":"Pauldrons of the Argent Sentinel","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,51,34,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":51,"3":34,"6":32,"22":1087},"isBase":true}}}, +{"id":30085,"name":"Mantle of the Tireless Tracker","icon":"inv_shoulder_27","type":3,"armorType":3,"stats":[0,32,33,0,0,23,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":32,"2":33,"5":23,"6":33,"22":759},"isBase":true}}}, +{"id":30086,"name":"Stoneforged Claymore","icon":"inv_sword_37","type":13,"weaponType":9,"handType":4,"stats":[40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":3.3,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36133}}],"scalingOptions":{"100":{"randPropPoints":57,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"0":40,"1":35},"isBase":true}}}, +{"id":30087,"name":"Stormforged Axe","icon":"inv_axe_39","type":13,"weaponType":1,"handType":2,"stats":[0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":127,"weaponDamageMax":237,"weaponSpeed":2.6,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36134}}],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":127,"weaponDamageMax":237,"stats":{"1":24},"isBase":true}}}, +{"id":30088,"name":"Skyforged Great Axe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,35,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"weaponDamageMin":247,"weaponDamageMax":372,"weaponSpeed":3.4,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36135}}],"scalingOptions":{"100":{"randPropPoints":57,"weaponDamageMin":247,"weaponDamageMax":372,"stats":{"6":35,"12":80,"13":80},"isBase":true}}}, +{"id":30089,"name":"Lavaforged Warhammer","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":122,"weaponDamageMax":228,"weaponSpeed":2.5,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36136}}],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":122,"weaponDamageMax":228,"stats":{"12":48,"13":48},"isBase":true}}}, +{"id":30090,"name":"World Breaker","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[50,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":488,"weaponDamageMax":733,"weaponSpeed":3.7,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"134":{"randPropPoints":92,"weaponDamageMin":488,"weaponDamageMax":733,"stats":{"0":50,"2":51},"isBase":true}}}, +{"id":30091,"name":"True-Aim Stalker Bands","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,25,18,0,0,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":25,"2":18,"6":24,"7":12,"22":443},"isBase":true}}}, +{"id":30092,"name":"Orca-Hide Boots","icon":"inv_boots_cloth_16","type":10,"armorType":2,"stats":[0,0,45,33,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":45,"3":33,"4":19,"22":464},"isBase":true}}}, +{"id":30093,"name":"Great Earthforged Hammer","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"weaponDamageMin":255,"weaponDamageMax":383,"weaponSpeed":3.5,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":36137}}],"scalingOptions":{"100":{"randPropPoints":57,"weaponDamageMin":255,"weaponDamageMax":383,"stats":{"2":60,"12":70,"13":70},"isBase":true}}}, +{"id":30095,"name":"Fang of the Leviathan","icon":"inv_sword_73","type":13,"weaponType":9,"handType":2,"stats":[0,0,43,0,0,0,21,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"weaponSpeed":1.8,"ilvl":134,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":80,"weaponDamageMax":149,"stats":{"2":43,"6":21,"14":274},"isBase":true}}}, +{"id":30096,"name":"Girdle of the Invulnerable","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,37,0,0,0,0,0,0,31,19,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":20,"2":37,"9":31,"10":19,"22":815},"isBase":true}}}, +{"id":30097,"name":"Coral-Barbed Shoulderpads","icon":"inv_shoulder_19","type":3,"armorType":3,"stats":[0,0,54,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":54,"3":33,"4":16,"22":759},"isBase":true}}}, +{"id":30098,"name":"Razor-Scale Battlecloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[33,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":33,"1":23,"2":22,"22":246},"isBase":true}}}, +{"id":30099,"name":"Frayed Tether of the Drowned","icon":"inv_misc_noose_01","type":2,"stats":[0,0,45,0,0,18,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":45,"5":18,"9":24},"isBase":true}}}, +{"id":30100,"name":"Soul-Strider Boots","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,36,29,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":36,"3":29,"4":33,"22":338},"isBase":true}}}, +{"id":30101,"name":"Bloodsea Brigand's Vest","icon":"inv_chest_plate08","type":5,"armorType":2,"stats":[0,46,24,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":46,"2":24,"5":27,"6":36,"22":676},"isBase":true}}}, +{"id":30102,"name":"Krakken-Heart Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[61,43,42,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"0":61,"1":43,"2":42,"5":30,"22":1605},"isBase":true}}}, +{"id":30103,"name":"Fang of Vashj","icon":"inv_weapon_shortblade_39","type":13,"weaponType":2,"handType":2,"stats":[0,0,19,0,0,0,0,0,21,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"stats":{"2":19,"8":21,"12":56,"13":56},"isBase":true}}}, +{"id":30104,"name":"Cobra-Lash Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,33,47,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":71,"stats":{"1":33,"2":47,"6":33,"22":759},"isBase":true}}}, +{"id":30105,"name":"Serpent Spine Longbow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,60,54,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":421,"weaponDamageMax":632,"weaponSpeed":3,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":421,"weaponDamageMax":632,"stats":{"1":60,"2":54,"6":51},"isBase":true}}}, +{"id":30106,"name":"Belt of One-Hundred Deaths","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,37,51,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":71,"stats":{"1":37,"2":51,"8":25,"22":414},"isBase":true}}}, +{"id":30107,"name":"Vestments of the Sea-Witch","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,53,49,0,27,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"2":53,"3":49,"5":27,"6":31,"22":533},"isBase":true}}}, +{"id":30108,"name":"Lightfathom Scepter","icon":"inv_weapon_shortblade_43","type":13,"weaponType":4,"handType":2,"stats":[0,0,43,0,28,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":89,"weaponDamageMax":167,"weaponSpeed":1.9,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":89,"weaponDamageMax":167,"stats":{"2":43,"4":28,"14":295},"isBase":true}}}, +{"id":30109,"name":"Ring of Endless Coils","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,31,32,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":31,"3":32,"6":22},"isBase":true}}}, +{"id":30110,"name":"Coral Band of the Revived","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,32,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":32,"3":34,"4":27},"isBase":true}}}, +{"id":30112,"name":"Glorious Gauntlets of Crestfall","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,48,37,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":71,"stats":{"2":48,"3":37,"6":28,"22":1003},"isBase":true}}}, +{"id":30113,"name":"Destroyer Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[38,0,57,0,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":38,"2":57,"5":24,"9":38,"22":1512},"isBase":true}}}, +{"id":30114,"name":"Destroyer Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[24,0,44,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":24,"2":44,"10":36,"22":945},"isBase":true}}}, +{"id":30115,"name":"Destroyer Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[42,0,48,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":42,"2":48,"9":47,"22":1228},"isBase":true}}}, +{"id":30116,"name":"Destroyer Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[36,0,60,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":36,"2":60,"10":53,"22":1323},"isBase":true}}}, +{"id":30117,"name":"Destroyer Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[27,0,44,0,0,0,0,0,0,29,21,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Armor","setId":656,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":27,"2":44,"9":29,"10":21,"22":1134},"isBase":true}}}, +{"id":30118,"name":"Destroyer Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[50,0,48,0,0,15,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":50,"2":48,"5":15,"6":33,"22":1512},"isBase":true}}}, +{"id":30119,"name":"Destroyer Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[44,0,46,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":44,"2":46,"6":30,"22":945},"isBase":true}}}, +{"id":30120,"name":"Destroyer Battle-Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[47,0,45,0,0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[1,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":47,"2":45,"5":21,"6":36,"22":1228},"isBase":true}}}, +{"id":30121,"name":"Destroyer Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[52,0,57,0,0,22,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":52,"2":57,"5":22,"6":32,"22":1323},"isBase":true}}}, +{"id":30122,"name":"Destroyer Shoulderblades","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[36,0,38,0,0,18,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[9],"setName":"Destroyer Battlegear","setId":657,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":36,"2":38,"5":18,"6":20,"22":1134},"isBase":true}}}, +{"id":30123,"name":"Crystalforge Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[41,0,55,0,0,0,0,0,0,28,34,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":41,"2":55,"9":28,"10":34,"22":1512},"isBase":true}}}, +{"id":30124,"name":"Crystalforge Handguards","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[35,0,40,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":35,"2":40,"10":37,"22":945},"isBase":true}}}, +{"id":30125,"name":"Crystalforge Faceguard","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[37,0,48,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":37,"2":48,"10":44,"22":1228},"isBase":true}}}, +{"id":30126,"name":"Crystalforge Legguards","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[39,0,54,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":39,"2":54,"10":53,"22":1323},"isBase":true}}}, +{"id":30127,"name":"Crystalforge Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[35,0,38,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Armor","setId":628,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":35,"2":38,"10":34,"22":1134},"isBase":true}}}, +{"id":30129,"name":"Crystalforge Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[56,0,40,0,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":56,"2":40,"5":23,"6":30,"22":1512},"isBase":true}}}, +{"id":30130,"name":"Crystalforge Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[44,0,35,0,0,0,23,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":44,"2":35,"6":23,"7":25,"22":945},"isBase":true}}}, +{"id":30131,"name":"Crystalforge War-Helm","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[56,0,46,0,0,0,23,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":56,"2":46,"6":23,"7":25,"22":1228},"isBase":true}}}, +{"id":30132,"name":"Crystalforge Greaves","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[59,0,42,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":59,"2":42,"5":21,"6":38,"22":1323},"isBase":true}}}, +{"id":30133,"name":"Crystalforge Shoulderbraces","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[45,0,34,0,0,0,16,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Battlegear","setId":629,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"0":45,"2":34,"6":16,"7":15,"22":1134},"isBase":true}}}, +{"id":30134,"name":"Crystalforge Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,63,47,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":63,"3":47,"6":31,"22":1512},"isBase":true}}}, +{"id":30135,"name":"Crystalforge Gloves","icon":"inv_gauntlets_25","type":7,"armorType":4,"stats":[0,0,51,35,22,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,945,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":51,"3":35,"4":22,"6":24,"22":945},"isBase":true}}}, +{"id":30136,"name":"Crystalforge Greathelm","icon":"inv_helmet_15","type":1,"armorType":4,"stats":[0,0,59,47,26,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":59,"3":47,"4":26,"6":24,"22":1228},"isBase":true}}}, +{"id":30137,"name":"Crystalforge Leggings","icon":"inv_pants_mail_15","type":9,"armorType":4,"stats":[0,0,68,46,26,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"4":26,"6":32,"22":1323},"isBase":true}}}, +{"id":30138,"name":"Crystalforge Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":4,"stats":[0,0,55,35,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1134,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[4],"setName":"Crystalforge Raiment","setId":627,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":55,"3":35,"6":16,"22":1134},"isBase":true}}}, +{"id":30139,"name":"Rift Stalker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,48,51,0,0,19,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":48,"2":51,"5":19,"7":40,"22":1054},"isBase":true}}}, +{"id":30140,"name":"Rift Stalker Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,34,44,0,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":34,"2":44,"5":19,"6":34,"22":659},"isBase":true}}}, +{"id":30141,"name":"Rift Stalker Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,41,55,0,0,26,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":41,"2":55,"5":26,"6":40,"22":856},"isBase":true}}}, +{"id":30142,"name":"Rift Stalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,53,59,0,0,18,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":53,"2":59,"5":18,"7":40,"22":922},"isBase":true}}}, +{"id":30143,"name":"Rift Stalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,26,47,0,0,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[2],"setName":"Rift Stalker Armor","setId":652,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":26,"2":47,"5":13,"6":26,"22":790},"isBase":true}}}, +{"id":30144,"name":"Deathmantle Chestguard","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,47,80,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":47,"2":80,"6":17,"22":703},"isBase":true}}}, +{"id":30145,"name":"Deathmantle Handguards","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,36,65,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":36,"2":65,"5":24,"22":439},"isBase":true}}}, +{"id":30146,"name":"Deathmantle Helm","icon":"inv_helmet_58","type":1,"armorType":2,"stats":[0,39,80,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":39,"2":80,"6":25,"22":571},"isBase":true}}}, +{"id":30148,"name":"Deathmantle Legguards","icon":"inv_pants_plate_05","type":9,"armorType":2,"stats":[0,47,85,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":47,"2":85,"6":26,"22":615},"isBase":true}}}, +{"id":30149,"name":"Deathmantle Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":2,"stats":[0,34,58,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[6],"setName":"Deathmantle","setId":622,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":34,"2":58,"6":13,"22":527},"isBase":true}}}, +{"id":30150,"name":"Vestments of the Avatar","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,55,47,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":55,"3":47,"4":39,"22":511},"isBase":true}}}, +{"id":30151,"name":"Gloves of the Avatar","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,50,35,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"4":34,"22":319},"isBase":true}}}, +{"id":30152,"name":"Cowl of the Avatar","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,62,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":62,"3":47,"4":38,"22":415},"isBase":true}}}, +{"id":30153,"name":"Breeches of the Avatar","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"4":43,"22":447},"isBase":true}}}, +{"id":30154,"name":"Mantle of the Avatar","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,49,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Raiment","setId":665,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":49,"3":35,"4":20,"22":383},"isBase":true}}}, +{"id":30159,"name":"Shroud of the Avatar","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,47,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":62,"3":47,"5":19,"6":20,"22":511},"isBase":true}}}, +{"id":30160,"name":"Handguards of the Avatar","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,54,35,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":54,"3":35,"5":18,"6":25,"22":319},"isBase":true}}}, +{"id":30161,"name":"Hood of the Avatar","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,63,47,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":63,"3":47,"5":24,"6":24,"22":415},"isBase":true}}}, +{"id":30162,"name":"Leggings of the Avatar","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,0,25,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"5":25,"6":33,"22":447},"isBase":true}}}, +{"id":30163,"name":"Wings of the Avatar","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,35,24,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[5],"setName":"Avatar Regalia","setId":666,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":44,"3":35,"4":24,"6":17,"22":383},"isBase":true}}}, +{"id":30164,"name":"Cataclysm Chestguard","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,64,41,30,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":64,"3":41,"4":30,"6":24,"22":1054},"isBase":true}}}, +{"id":30165,"name":"Cataclysm Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,65,35,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":65,"3":35,"4":16,"6":17,"22":659},"isBase":true}}}, +{"id":30166,"name":"Cataclysm Headguard","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,0,72,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":72,"3":47,"6":21,"22":856},"isBase":true}}}, +{"id":30167,"name":"Cataclysm Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,89,47,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":89,"3":47,"4":26,"22":922},"isBase":true}}}, +{"id":30168,"name":"Cataclysm Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,53,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Raiment","setId":634,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":53,"3":36,"4":20,"22":790},"isBase":true}}}, +{"id":30169,"name":"Cataclysm Chestpiece","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,59,47,26,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":59,"3":47,"4":26,"6":24,"22":1054},"isBase":true}}}, +{"id":30170,"name":"Cataclysm Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,49,35,0,19,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":49,"3":35,"5":19,"6":28,"22":659},"isBase":true}}}, +{"id":30171,"name":"Cataclysm Headpiece","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,0,58,46,0,18,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":58,"3":46,"5":18,"6":33,"22":856},"isBase":true}}}, +{"id":30172,"name":"Cataclysm Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,88,46,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":88,"3":46,"5":14,"6":24,"22":922},"isBase":true}}}, +{"id":30173,"name":"Cataclysm Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,41,35,16,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Regalia","setId":635,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":41,"3":35,"4":16,"6":24,"22":790},"isBase":true}}}, +{"id":30185,"name":"Cataclysm Chestplate","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,41,66,0,0,19,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":41,"2":66,"5":19,"6":32,"22":1054},"isBase":true}}}, +{"id":30186,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,47,27,0,0,12,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":12,"16":21,"22":359},"isBase":true}}}, +{"id":30187,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":389},"isBase":true}}}, +{"id":30188,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":45,"3":27,"6":21,"16":21,"22":299},"isBase":true}}}, +{"id":30189,"name":"Cataclysm Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,35,51,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":35,"2":51,"5":24,"6":24,"22":659},"isBase":true}}}, +{"id":30190,"name":"Cataclysm Helm","icon":"inv_helmet_54","type":1,"armorType":3,"stats":[0,41,60,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":41,"2":60,"5":21,"6":32,"22":856},"isBase":true}}}, +{"id":30192,"name":"Cataclysm Legplates","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,41,78,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":41,"2":78,"5":21,"6":32,"22":922},"isBase":true}}}, +{"id":30194,"name":"Cataclysm Shoulderplates","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,40,37,0,0,16,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[7],"setName":"Cataclysm Harness","setId":636,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":40,"2":37,"5":16,"6":22,"22":790},"isBase":true}}}, +{"id":30196,"name":"Robes of Tirisfal","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,62,47,20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":62,"3":47,"4":20,"6":19,"22":511},"isBase":true}}}, +{"id":30200,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,27,0,0,27,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":56,"3":27,"6":27,"16":24,"22":479},"isBase":true}}}, +{"id":30201,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"6":28,"16":30,"22":419},"isBase":true}}}, +{"id":30205,"name":"Gloves of Tirisfal","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,50,35,18,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"4":18,"6":27,"22":319},"isBase":true}}}, +{"id":30206,"name":"Cowl of Tirisfal","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,63,47,24,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":63,"3":47,"4":24,"6":24,"22":415},"isBase":true}}}, +{"id":30207,"name":"Leggings of Tirisfal","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,46,0,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"5":26,"6":32,"22":447},"isBase":true}}}, +{"id":30210,"name":"Mantle of Tirisfal","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,44,34,24,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[3],"setName":"Tirisfal Regalia","setId":649,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":44,"3":34,"4":24,"6":17,"22":383},"isBase":true}}}, +{"id":30211,"name":"Gloves of the Corruptor","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,65,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":65,"3":36,"6":25,"22":319},"isBase":true}}}, +{"id":30212,"name":"Hood of the Corruptor","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,80,47,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":80,"3":47,"6":31,"22":415},"isBase":true}}}, +{"id":30213,"name":"Leggings of the Corruptor","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,72,47,0,24,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":72,"3":47,"5":24,"6":32,"22":447},"isBase":true}}}, +{"id":30214,"name":"Robe of the Corruptor","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,73,47,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":73,"3":47,"5":23,"22":511},"isBase":true}}}, +{"id":30215,"name":"Mantle of the Corruptor","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,55,35,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[8],"setName":"Corruptor Raiment","setId":646,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":55,"3":35,"5":18,"22":383},"isBase":true}}}, +{"id":30216,"name":"Nordrassil Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,64,47,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":64,"3":47,"4":31,"22":703},"isBase":true}}}, +{"id":30217,"name":"Nordrassil Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,50,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"4":35,"22":439},"isBase":true}}}, +{"id":30218,"name":"Junior Technician 3rd Grade Shoulders","icon":"inv_shoulder_17","type":3,"armorType":2,"stats":[0,28,24,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":28,"2":24,"5":10,"22":336},"isBase":true}}}, +{"id":30219,"name":"Nordrassil Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,62,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":62,"3":47,"4":38,"22":571},"isBase":true}}}, +{"id":30220,"name":"Nordrassil Life-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,68,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"4":41,"22":615},"isBase":true}}}, +{"id":30221,"name":"Nordrassil Life-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,50,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Raiment","setId":642,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"4":24,"22":527},"isBase":true}}}, +{"id":30222,"name":"Nordrassil Chestplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,46,78,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":46,"2":78,"6":17,"22":703},"isBase":true}}}, +{"id":30223,"name":"Nordrassil Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,69,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":36,"2":69,"7":18,"22":439},"isBase":true}}}, +{"id":30224,"name":"Junior Technician 3rd Grade Gloves","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,24,28,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":24,"3":28,"6":10,"22":428},"isBase":true}}}, +{"id":30225,"name":"Junior Technician 3rd Grade Bracers","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,10,24,0,0,11,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":10,"2":24,"5":11,"9":11,"22":441},"isBase":true}}}, +{"id":30226,"name":"Alley's Recurve","icon":"inv_weapon_bow_03","type":14,"rangedWeaponType":1,"stats":[0,22,47,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":2.5,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":157,"weaponDamageMax":292,"stats":{"1":22,"2":47,"5":22},"isBase":true}}}, +{"id":30228,"name":"Nordrassil Headdress","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,46,77,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":46,"2":77,"8":17,"22":571},"isBase":true}}}, +{"id":30229,"name":"Nordrassil Feral-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,48,83,0,0,18,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":48,"2":83,"5":18,"8":17,"22":615},"isBase":true}}}, +{"id":30230,"name":"Nordrassil Feral-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,35,65,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Harness","setId":641,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"1":35,"2":65,"6":11,"22":527},"isBase":true}}}, +{"id":30231,"name":"Nordrassil Chestpiece","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,63,46,0,19,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":63,"3":46,"5":19,"6":32,"22":703},"isBase":true}}}, +{"id":30232,"name":"Nordrassil Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,50,35,23,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"4":23,"6":24,"22":439},"isBase":true}}}, +{"id":30233,"name":"Nordrassil Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,58,46,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":58,"3":46,"5":10,"6":37,"22":571},"isBase":true}}}, +{"id":30234,"name":"Nordrassil Wrath-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,68,46,33,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":46,"4":33,"6":26,"22":615},"isBase":true}}}, +{"id":30235,"name":"Nordrassil Wrath-Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,50,35,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1],"setName":"Nordrassil Regalia","setId":643,"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":50,"3":35,"5":15,"6":16,"22":527},"isBase":true}}}, +{"id":30252,"name":"Unearthed Enkaat Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,20,9,9,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"weaponSpeed":1.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":41,"weaponDamageMax":76,"stats":{"2":20,"3":9,"4":9,"14":148},"isBase":true}}}, +{"id":30253,"name":"Ethereal Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,18,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":18,"3":16,"4":30,"22":209},"isBase":true}}}, +{"id":30254,"name":"Zephyrion's Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,18,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":18,"3":16,"4":30,"22":576},"isBase":true}}}, +{"id":30255,"name":"Chestguard of the Stormspire","icon":"inv_chest_leather_08","type":5,"armorType":3,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":39,"2":32,"5":16,"22":709},"isBase":true}}}, +{"id":30256,"name":"Pants of the Naaru","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,45,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":45,"3":35,"4":25,"22":313},"isBase":true}}}, +{"id":30257,"name":"Shattrath Leggings","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,35,48,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":35,"2":48,"8":22,"22":440},"isBase":true}}}, +{"id":30258,"name":"Chestplate of A'dal","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[35,0,27,0,0,22,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"0":35,"2":27,"5":22,"6":25,"22":1112},"isBase":true}}}, +{"id":30262,"name":"Trep's Shoulderguards","icon":"inv_shoulder_27","type":3,"armorType":2,"stats":[0,0,26,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":26,"3":13,"4":26,"22":336},"isBase":true}}}, +{"id":30263,"name":"Heavy-Duty Engineering Boots","icon":"inv_boots_plate_03","type":10,"armorType":3,"stats":[0,13,15,0,0,26,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":13,"2":15,"5":26,"6":13,"22":471},"isBase":true}}}, +{"id":30264,"name":"Area 52 Engineering Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[10,13,19,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":10,"1":13,"2":19,"9":25,"22":631},"isBase":true}}}, +{"id":30265,"name":"Zaxxis Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,23,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"2":23,"3":10,"4":9,"22":144},"isBase":true}}}, +{"id":30266,"name":"Zaxxis Boots","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,13,29,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":13,"2":29,"9":12,"22":317},"isBase":true}}}, +{"id":30267,"name":"Zaxxis Gloves","icon":"inv_gauntlets_19","type":7,"armorType":4,"stats":[13,12,19,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"0":13,"1":12,"2":19,"5":13,"22":635},"isBase":true}}}, +{"id":30268,"name":"Heap Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,32,24,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":32,"3":24,"5":15,"6":25,"22":279},"isBase":true}}}, +{"id":30269,"name":"Warp-Raider's Eyepatch","icon":"inv_helmet_45","type":1,"armorType":2,"stats":[0,25,43,0,0,15,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":25,"2":43,"5":15,"9":14,"22":364},"isBase":true}}}, +{"id":30270,"name":"Scavenged Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[14,15,36,0,0,14,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":14,"1":15,"2":36,"5":14,"9":25,"22":1009},"isBase":true}}}, +{"id":30271,"name":"Midrealm Hat","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,51,23,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":51,"3":23,"4":18,"22":267},"isBase":true}}}, +{"id":30272,"name":"Eco-Dome Leggings","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,23,51,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"1":23,"2":51,"5":18,"22":403},"isBase":true}}}, +{"id":30273,"name":"Duro Footgear","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,23,35,0,0,22,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,483,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":23,"2":35,"5":22,"6":15,"22":483},"isBase":true}}}, +{"id":30274,"name":"Papa's Armbands","icon":"inv_bracer_01","type":6,"armorType":3,"stats":[0,0,18,8,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":18,"3":8,"5":8,"6":8,"22":300},"isBase":true}}}, +{"id":30275,"name":"Mech Tech Shoulders","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[23,0,25,0,0,9,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":23,"2":25,"5":9,"6":12,"22":757},"isBase":true}}}, +{"id":30276,"name":"Wheeler Family Heirloom","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,20,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":20,"3":9,"4":10},"isBase":true}}}, +{"id":30277,"name":"Ripfang Paw","icon":"inv_gauntlets_07","type":13,"weaponType":3,"handType":2,"stats":[0,10,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":136,"weaponDamageMax":254,"weaponSpeed":2.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":136,"weaponDamageMax":254,"stats":{"1":10,"2":25},"isBase":true}}}, +{"id":30278,"name":"Pilfered Ethereal Blade","icon":"inv_weapon_shortblade_37","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":81,"weaponDamageMax":150,"weaponSpeed":1.6,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":81,"weaponDamageMax":150,"stats":{"2":15,"8":6,"9":16},"isBase":true}}}, +{"id":30279,"name":"Mama's Insurance","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,52,49,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":144,"weaponDamageMax":269,"weaponSpeed":2.2,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"weaponDamageMin":144,"weaponDamageMax":269,"stats":{"1":52,"2":49,"6":20},"isBase":true}}}, +{"id":30284,"name":"Audi's Embroidered Boots","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,19,22,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":19,"3":22,"4":23,"22":226},"isBase":true}}}, +{"id":30285,"name":"B.O.O.M. Operative's Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,23,34,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":23,"2":34,"9":9,"22":259},"isBase":true}}}, +{"id":30286,"name":"Otherworldly Pauldrons","icon":"inv_shoulder_30","type":3,"armorType":3,"stats":[0,0,19,22,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":19,"3":22,"6":23,"22":527},"isBase":true}}}, +{"id":30287,"name":"Mantle of Arcane Mastery","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,32,18,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":32,"3":18,"4":19,"22":246},"isBase":true}}}, +{"id":30288,"name":"Cenarion Warden's Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,18,18,0,0,16,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":18,"2":18,"5":16,"6":19,"22":288},"isBase":true}}}, +{"id":30289,"name":"Cenarion Warden's Belt","icon":"inv_belt_34","type":8,"armorType":3,"stats":[0,19,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":19,"2":32,"6":18,"22":395},"isBase":true}}}, +{"id":30290,"name":"Leggings of Concentrated Power","icon":"inv_pants_03","type":9,"armorType":2,"stats":[0,0,51,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":51,"3":23,"4":23,"22":403},"isBase":true}}}, +{"id":30291,"name":"Nexus-Guard's Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[0,17,27,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,762,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":17,"2":27,"10":17,"22":762},"isBase":true}}}, +{"id":30293,"name":"Heavenly Inspiration","icon":"spell_nature_lightning","type":12,"stats":[0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"4":26},"isBase":true}}}, +{"id":30294,"name":"Red Pointy Hat","icon":"inv_helmet_28","type":1,"armorType":1,"stats":[0,0,32,37,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":32,"3":37,"4":15,"22":259},"isBase":true}}}, +{"id":30295,"name":"Exotic Spiked Shoulders","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":28,"2":30,"22":514},"isBase":true}}}, +{"id":30296,"name":"Lost Chestplate of the Reverent","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,44,25,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":44,"3":25,"9":21,"22":1009},"isBase":true}}}, +{"id":30297,"name":"Circlet of the Starcaller","icon":"inv_crown_01","type":1,"armorType":2,"stats":[0,0,41,40,17,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":41,"3":40,"4":17,"6":18,"22":409},"isBase":true}}}, +{"id":30298,"name":"Void Slayer's Tunic","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,0,47,40,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":47,"3":40,"4":20,"22":768},"isBase":true}}}, +{"id":30299,"name":"Starcaller's Plated Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,41,40,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":41,"3":40,"4":18,"6":17,"22":973},"isBase":true}}}, +{"id":30300,"name":"Dabiri's Enigma","icon":"ability_warrior_shieldmastery","type":12,"stats":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"9":30},"isBase":true}}}, +{"id":30311,"name":"Warp Slicer","icon":"inv_sword_69","type":13,"weaponType":9,"handType":2,"stats":[0,0,35,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":372,"weaponDamageMax":692,"weaponSpeed":2.9,"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":372,"weaponDamageMax":692,"stats":{"2":35,"6":25,"12":70,"13":70},"isBase":true}}}, +{"id":30312,"name":"Infinity Blade","icon":"inv_weapon_shortblade_47","type":13,"weaponType":2,"handType":2,"stats":[0,0,35,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2,"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":35,"6":25,"12":70,"13":70},"isBase":true}}}, +{"id":30313,"name":"Staff of Disintegration","icon":"inv_staff_52","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,278,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":309,"weaponDamageMax":577,"weaponSpeed":2.8,"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":309,"weaponDamageMax":577,"stats":{"2":113,"3":278,"6":75},"isBase":true}}}, +{"id":30314,"name":"Phaseshift Bulwark","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,40,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,6190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"stats":{"2":40,"9":40,"22":6190},"isBase":true}}}, +{"id":30316,"name":"Devastation","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,75,0,0,0,50,0,0,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":744,"weaponDamageMax":1116,"weaponSpeed":3.9,"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":744,"weaponDamageMax":1116,"stats":{"2":75,"6":50,"12":150,"13":150},"isBase":true}}}, +{"id":30317,"name":"Cosmic Infuser","icon":"inv_mace_48","type":13,"weaponType":4,"handType":2,"stats":[0,0,75,0,87,0,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":179,"weaponDamageMax":334,"weaponSpeed":2.8,"ilvl":175,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":179,"weaponDamageMax":334,"stats":{"2":75,"4":87,"14":408},"isBase":true}}}, +{"id":30318,"name":"Netherstrand Longbow","icon":"inv_weapon_bow_19","type":14,"rangedWeaponType":1,"stats":[0,0,64,0,0,0,160,0,0,0,0,0,0,223,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":553,"weaponDamageMax":830,"weaponSpeed":2.9,"ilvl":175,"quality":5,"classAllowlist":[2],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3845,"otherName":"Legendaries"}}],"scalingOptions":{"175":{"weaponDamageMin":553,"weaponDamageMax":830,"stats":{"2":64,"6":160,"13":223},"isBase":true}}}, +{"id":30328,"name":"Protectorate Assassin's Tunic","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,26,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":26,"2":47,"5":21,"22":466},"isBase":true}}}, +{"id":30329,"name":"Flesh Handler's Headpiece","icon":"inv_helmet_35","type":1,"armorType":3,"stats":[0,26,24,0,0,20,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":26,"2":24,"5":20,"6":26,"22":576},"isBase":true}}}, +{"id":30330,"name":"Starcaller's Plated Belt","icon":"inv_belt_04","type":8,"armorType":4,"stats":[0,0,41,20,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":41,"3":20,"9":12,"22":576},"isBase":true}}}, +{"id":30331,"name":"Diviner's Cinch","icon":"inv_belt_04","type":8,"armorType":1,"stats":[0,0,36,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":36,"3":18,"4":17,"22":188},"isBase":true}}}, +{"id":30332,"name":"Ferocious Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,16,28,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":16,"2":28,"5":10,"22":204},"isBase":true}}}, +{"id":30333,"name":"Spaulders of the Protectorate","icon":"inv_shoulder_18","type":3,"armorType":3,"stats":[0,14,15,0,0,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":14,"2":15,"5":12,"6":14,"22":531},"isBase":true}}}, +{"id":30334,"name":"Starcaller's Plated Stompers","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,32,14,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":32,"3":14,"9":13,"22":704},"isBase":true}}}, +{"id":30335,"name":"Druidic Force Boots","icon":"inv_boots_chain_08","type":10,"armorType":2,"stats":[0,0,34,20,12,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":34,"3":20,"4":12,"6":11,"22":321},"isBase":true}}}, +{"id":30336,"name":"Surger's Hand Wraps","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,20,24,0,0,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":20,"2":24,"5":12,"6":20,"22":443},"isBase":true}}}, +{"id":30337,"name":"Protectorate Headplate","icon":"inv_crown_01","type":1,"armorType":4,"stats":[20,0,38,0,0,12,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"0":20,"2":38,"5":12,"10":11,"22":831},"isBase":true}}}, +{"id":30338,"name":"Diviner's Cloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,27,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"2":27,"3":16,"4":12,"22":167},"isBase":true}}}, +{"id":30339,"name":"Protectorate Assassin's Ring","icon":"inv_jewelry_ring_03","type":11,"stats":[16,15,13,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"0":16,"1":15,"2":13,"5":12},"isBase":true}}}, +{"id":30340,"name":"Starkiller's Bauble","icon":"spell_arcane_arcaneresilience","type":12,"stats":[0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"5":26},"isBase":true}}}, +{"id":30341,"name":"Flesh Handler's Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,18,39,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":18,"2":39,"8":18,"22":292},"isBase":true}}}, +{"id":30342,"name":"Protectorate Waistband","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,41,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":41,"3":18,"4":18,"22":399},"isBase":true}}}, +{"id":30343,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[8],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30344,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[9],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30345,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[7],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30346,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[5],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30348,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[8],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30349,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[5],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30350,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[9],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30351,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[7],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":30352,"name":"Demolisher's Bracers","icon":"inv_bracer_12","type":6,"armorType":4,"stats":[14,0,21,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"0":14,"2":21,"5":13,"6":14,"22":448},"isBase":true}}}, +{"id":30362,"name":"Energized Helm","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,26,48,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":26,"2":48,"5":18,"22":364},"isBase":true}}}, +{"id":30363,"name":"Warp-Shielded Hauberk","icon":"inv_chest_plate07","type":5,"armorType":3,"stats":[0,0,48,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":48,"3":26,"6":18,"22":685},"isBase":true}}}, +{"id":30364,"name":"Resonating Axe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":2,"stats":[0,0,12,0,0,0,11,0,7,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":2.8,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":135,"weaponDamageMax":252,"stats":{"2":12,"6":11,"8":7,"12":22,"13":22},"isBase":true}}}, +{"id":30365,"name":"Overseer's Signet","icon":"inv_jewelry_ring_24","type":11,"stats":[25,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":25,"1":15,"5":10},"isBase":true}}}, +{"id":30366,"name":"Manastorm Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":23,"3":25,"6":10},"isBase":true}}}, +{"id":30368,"name":"Slippers of the High Priestess","icon":"inv_boots_chain_06","type":10,"armorType":1,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":42,"3":24,"4":20,"22":246},"isBase":true}}}, +{"id":30369,"name":"Cleansed Fel Pauldrons","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,34,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":34,"2":36,"22":377},"isBase":true}}}, +{"id":30370,"name":"Gauntlets of the Redeemed Vindicator","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,24,38,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":24,"2":38,"6":23,"22":480},"isBase":true}}}, +{"id":30371,"name":"Lightwarden's Girdle","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,38,24,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":38,"3":24,"9":23,"22":626},"isBase":true}}}, +{"id":30372,"name":"Socrethar's Girdle","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,24,42,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":24,"2":42,"5":20,"22":283},"isBase":true}}}, +{"id":30373,"name":"Netherfused Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":42,"3":24,"4":20,"22":377},"isBase":true}}}, +{"id":30374,"name":"Greaves of Spellpower","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,42,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":42,"3":24,"4":20,"22":528},"isBase":true}}}, +{"id":30375,"name":"Gauntlets of the Vanquisher","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[24,23,30,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"0":24,"1":23,"2":30,"5":14,"22":695},"isBase":true}}}, +{"id":30377,"name":"Karja's Medallion","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,23,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":23,"3":25,"4":10},"isBase":true}}}, +{"id":30378,"name":"Thalodien's Charm","icon":"inv_jewelry_necklace_21","type":2,"stats":[0,0,37,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":37,"9":15,"10":10},"isBase":true}}}, +{"id":30379,"name":"Vindicator's Light Vest","icon":"inv_chest_cloth_01","type":5,"armorType":2,"stats":[0,35,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":35,"2":54,"22":466},"isBase":true}}}, +{"id":30380,"name":"Girdle of the Lost Vindicator","icon":"inv_belt_04","type":8,"armorType":4,"stats":[18,0,39,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":18,"2":39,"9":18,"22":576},"isBase":true}}}, +{"id":30381,"name":"Kaylaan's Spaulders","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,27,26,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":27,"3":26,"9":18,"22":768},"isBase":true}}}, +{"id":30382,"name":"Aldor Ceremonial Wraps","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,21,20,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"2":21,"3":20,"4":13,"22":146},"isBase":true}}}, +{"id":30383,"name":"Belt of the Sage","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,16,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":16,"3":28,"4":16,"22":180},"isBase":true}}}, +{"id":30384,"name":"Brightdawn Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":18,"2":28,"22":196},"isBase":true}}}, +{"id":30386,"name":"Bloodguard's Greaves","icon":"inv_boots_chain_06","type":10,"armorType":4,"stats":[11,0,42,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,694,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":11,"2":42,"9":16,"22":694},"isBase":true}}}, +{"id":30394,"name":"Sunfury Blade","icon":"inv_sword_17","type":13,"weaponType":9,"handType":4,"stats":[39,0,0,0,0,0,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":3.5,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":274,"weaponDamageMax":412,"stats":{"0":39,"6":21,"8":16},"isBase":true}}}, +{"id":30395,"name":"Warp-Master's Maul","icon":"inv_hammer_10","type":13,"weaponType":4,"handType":4,"stats":[0,0,32,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":219,"weaponDamageMax":330,"weaponSpeed":2.8,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":219,"weaponDamageMax":330,"stats":{"2":32,"3":39,"6":16},"isBase":true}}}, +{"id":30396,"name":"Jeweled Halberd","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,21,59,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":212,"weaponDamageMax":318,"weaponSpeed":2.7,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":212,"weaponDamageMax":318,"stats":{"1":21,"2":59,"3":16},"isBase":true}}}, +{"id":30397,"name":"Spymaster's Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,22,56,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"weaponSpeed":2.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":169,"weaponDamageMax":316,"stats":{"1":22,"2":56,"6":16},"isBase":true}}}, +{"id":30398,"name":"Boots of the Beneficent","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":32,"3":28,"22":226},"isBase":true}}}, +{"id":30399,"name":"Nightstalker's Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,21,18,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"1":21,"2":18,"5":9,"22":202},"isBase":true}}}, +{"id":30400,"name":"Thadell's Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[0,0,29,14,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"2":29,"3":14,"9":9,"22":445},"isBase":true}}}, +{"id":30401,"name":"Farahlite Studded Boots","icon":"inv_boots_chain_07","type":10,"armorType":2,"stats":[0,28,24,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":28,"2":24,"6":16,"22":308},"isBase":true}}}, +{"id":30402,"name":"Field Agent's Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"0":21,"1":8,"2":16,"22":441},"isBase":true}}}, +{"id":30446,"name":"Solarian's Sapphire","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[9],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":30},"isBase":true}}}, +{"id":30447,"name":"Tome of Fiery Redemption","icon":"inv_misc_book_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[4],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"isBase":true}}}, +{"id":30448,"name":"Talon of Al'ar","icon":"spell_fire_soulburn","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[2],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"isBase":true}}}, +{"id":30449,"name":"Void Star Talisman","icon":"inv_misc_gem_ebondraenite_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[8],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"14":48},"isBase":true}}}, +{"id":30450,"name":"Warp-Spring Coil","icon":"inv_gizmo_hardenedadamantitetube","type":12,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[6],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"5":21},"isBase":true}}}, +{"id":30459,"name":"Netherflame Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,21,35,0,14,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":110,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36665}}],"scalingOptions":{"110":{"randPropPoints":61,"stats":{"2":21,"3":35,"5":14,"6":35,"22":360},"isBase":true}}}, +{"id":30460,"name":"Netherflame Belt","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,16,25,0,25,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":110,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36667}}],"scalingOptions":{"110":{"randPropPoints":46,"stats":{"2":16,"3":25,"5":25,"6":11,"22":202},"isBase":true}}}, +{"id":30461,"name":"Netherflame Boots","icon":"inv_boots_07","type":10,"armorType":1,"stats":[0,0,16,25,0,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":110,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36668}}],"scalingOptions":{"110":{"randPropPoints":46,"stats":{"2":16,"3":25,"5":11,"6":25,"22":247},"isBase":true}}}, +{"id":30463,"name":"Lifeblood Belt","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":110,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36670}}],"scalingOptions":{"110":{"randPropPoints":46,"stats":{"2":24,"3":25,"4":26,"22":202},"isBase":true}}}, +{"id":30464,"name":"Lifeblood Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,23,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36672}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":23,"3":19,"4":20,"22":159},"isBase":true}}}, +{"id":30465,"name":"Lifeblood Leggings","icon":"inv_pants_cloth_03","type":9,"armorType":1,"stats":[0,0,32,35,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":36669}}],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":32,"3":35,"4":36,"22":296},"isBase":true}}}, +{"id":30486,"name":"Merciless Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[35,0,60,0,0,14,35,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":35,"2":60,"5":14,"6":35,"16":24,"22":1568},"isBase":true}}}, +{"id":30487,"name":"Merciless Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,46,0,0,0,29,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":33,"2":46,"6":29,"16":24,"22":980},"isBase":true}}}, +{"id":30488,"name":"Merciless Gladiator's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[35,0,54,0,0,14,31,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":35,"2":54,"5":14,"6":31,"16":25,"22":1274},"isBase":true}}}, +{"id":30489,"name":"Merciless Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[47,0,63,0,0,14,43,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":47,"2":63,"5":14,"6":43,"16":22,"22":1372},"isBase":true}}}, +{"id":30490,"name":"Merciless Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[29,0,51,0,0,0,27,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":29,"2":51,"6":27,"16":20,"22":1176},"isBase":true}}}, +{"id":30491,"name":"General's Plate Greaves Tier 2","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[27,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":27,"2":40,"6":27,"16":27,"22":985},"isBase":true}}}, +{"id":30514,"name":"Nether Guards","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":30,"3":28,"22":239},"isBase":true}}}, +{"id":30515,"name":"Junior Technician 3rd Grade Goggles","icon":"inv_helmet_47","type":1,"armorType":1,"stats":[0,0,33,37,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":33,"3":37,"4":14,"22":259},"isBase":true}}}, +{"id":30516,"name":"Chief Engineer's Belt","icon":"inv_misc_bandana_01","type":8,"armorType":1,"stats":[0,0,24,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":24,"3":28,"4":10,"22":180},"isBase":true}}}, +{"id":30517,"name":"Netherfarer's Leggings","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,47,26,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":47,"3":26,"6":21,"22":292},"isBase":true}}}, +{"id":30518,"name":"Warpthread Vest","icon":"inv_shirt_black_01","type":5,"armorType":1,"stats":[0,0,53,24,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":53,"3":24,"6":23,"22":334},"isBase":true}}}, +{"id":30519,"name":"Boots of the Nexus Warden","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,39,18,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":39,"3":18,"5":18,"22":230},"isBase":true}}}, +{"id":30520,"name":"Gold-Trimmed Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"2":24,"3":21,"22":144},"isBase":true}}}, +{"id":30521,"name":"Warpweaver's Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,37,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":37,"3":20,"4":12,"22":199},"isBase":true}}}, +{"id":30522,"name":"Conjurer's Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,0,0,27,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":133,"weaponDamageMax":200,"weaponSpeed":3.4,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":133,"weaponDamageMax":200,"stats":{"2":63,"6":27,"14":101},"isBase":true}}}, +{"id":30523,"name":"Hotshot Cattle Prod","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,18,17,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"weaponSpeed":1.7,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":22,"weaponDamageMin":43,"weaponDamageMax":80,"stats":{"2":18,"3":17,"14":155},"isBase":true}}}, +{"id":30531,"name":"Breeches of the Occultist","icon":"inv_pants_mail_20","type":9,"armorType":1,"stats":[0,0,53,31,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17881,"zoneId":2366}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":53,"3":31,"6":23,"22":392},"isBase":true}}}, +{"id":30532,"name":"Kirin Tor Master's Trousers","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,53,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18708,"zoneId":3789}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":53,"3":31,"4":25,"22":392},"isBase":true}}}, +{"id":30533,"name":"Vanquisher's Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[36,0,36,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"0":36,"2":36,"6":23,"22":1215},"isBase":true}}}, +{"id":30534,"name":"Wyrmscale Greaves","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,48,0,0,0,16,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":48,"5":16,"6":26,"7":32,"22":839},"isBase":true}}}, +{"id":30535,"name":"Forestwalker Kilt","icon":"inv_pants_mail_08","type":9,"armorType":2,"stats":[0,0,53,33,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":53,"3":33,"4":27,"22":550},"isBase":true}}}, +{"id":30536,"name":"Greaves of the Martyr","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[38,0,30,0,0,20,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18096,"zoneId":2367}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"0":38,"2":30,"5":20,"6":27,"22":1215},"isBase":true}}}, +{"id":30538,"name":"Midnight Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,32,30,0,0,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":32,"2":30,"5":17,"6":27,"22":550},"isBase":true}}}, +{"id":30541,"name":"Stormsong Kilt","icon":"inv_pants_leather_03","type":9,"armorType":3,"stats":[0,0,53,30,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":53,"3":30,"6":26,"22":839},"isBase":true}}}, +{"id":30543,"name":"Pontifex Kilt","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,51,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17798,"zoneId":3715}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":51,"3":30,"4":27,"22":392},"isBase":true}}}, +{"id":30570,"name":"Arkadian Claymore","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":282,"weaponDamageMax":424,"weaponSpeed":3.6,"ilvl":114,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":282,"weaponDamageMax":424,"stats":{"0":28,"2":42,"6":27},"isBase":true}}}, +{"id":30597,"name":"Halaani Claymore","icon":"inv_sword_draenei_06","type":13,"weaponType":9,"handType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"weaponDamageMin":282,"weaponDamageMax":424,"weaponSpeed":3.6,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"114":{"randPropPoints":53,"weaponDamageMin":282,"weaponDamageMax":424,"stats":{"0":28,"2":42,"6":27},"isBase":true}}}, +{"id":30619,"name":"Fel Reaver's Piston","icon":"inv_misc_enggizmos_14","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"4":40},"isBase":true}}}, +{"id":30620,"name":"Spyglass of the Hidden Fleet","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3607,"otherName":"Trash"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":40},"isBase":true}}}, +{"id":30621,"name":"Prism of Inner Calm","icon":"inv_misc_gem_diamond_07","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21212,"zoneId":3607}}],"scalingOptions":{"138":{"randPropPoints":71,"isBase":true}}}, +{"id":30626,"name":"Sextant of Unstable Currents","icon":"inv_gizmo_09","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"6":40},"isBase":true}}}, +{"id":30627,"name":"Tsunami Talisman","icon":"spell_nature_unrelentingstorm","type":12,"stats":[0,0,0,0,0,10,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21215,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"5":10,"6":38},"isBase":true}}}, +{"id":30629,"name":"Scarab of Displacement","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"9":42},"isBase":true}}}, +{"id":30641,"name":"Boots of Elusion","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,34,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":34,"9":46,"22":966},"isBase":true}}}, +{"id":30642,"name":"Drape of the Righteous","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,20,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":20,"3":30,"4":18,"22":230},"isBase":true}}}, +{"id":30643,"name":"Belt of the Tracker","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,21,23,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":21,"2":23,"5":38,"22":548},"isBase":true}}}, +{"id":30644,"name":"Grips of Deftness","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,58,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":30,"2":58,"8":15,"22":401},"isBase":true}}}, +{"id":30663,"name":"Fathom-Brooch of the Tidewalker","icon":"inv_misc_qirajicrystal_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[7],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21214,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"isBase":true}}}, +{"id":30664,"name":"Living Root of the Wildheart","icon":"inv_misc_herb_nightmarevine","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"isBase":true}}}, +{"id":30665,"name":"Earring of Soulful Meditation","icon":"inv_jewelry_ring_07","type":12,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[5],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"3":30},"isBase":true}}}, +{"id":30666,"name":"Ritssyn's Lost Pendant","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,24,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":24,"3":36},"isBase":true}}}, +{"id":30667,"name":"Ring of Unrelenting Storms","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,23,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":23,"3":30,"6":19},"isBase":true}}}, +{"id":30668,"name":"Grasp of the Dead","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,36,32,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"3":32,"5":17,"6":21,"22":287},"isBase":true}}}, +{"id":30673,"name":"Inferno Waist Cord","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,27,42,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":27,"3":42,"6":24,"22":259},"isBase":true}}}, +{"id":30674,"name":"Zierhut's Lost Treads","icon":"inv_boots_plate_06","type":10,"armorType":2,"stats":[0,34,56,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3457,"otherName":"Trash"}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":34,"2":56,"9":10,"22":441},"isBase":true}}}, +{"id":30675,"name":"Lurker's Cord","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":259},"isBase":true}}}, +{"id":30676,"name":"Lurker's Grasp","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":361},"isBase":true}}}, +{"id":30677,"name":"Lurker's Belt","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":548},"isBase":true}}}, +{"id":30678,"name":"Lurker's Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16179,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":791},"isBase":true}}}, +{"id":30680,"name":"Glider's Foot-Wraps","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":316},"isBase":true}}}, +{"id":30681,"name":"Glider's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":441},"isBase":true}}}, +{"id":30682,"name":"Glider's Sabatons","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":669},"isBase":true}}}, +{"id":30683,"name":"Glider's Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16180,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"22":966},"isBase":true}}}, +{"id":30684,"name":"Ravager's Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"22":201},"isBase":true}}}, +{"id":30685,"name":"Ravager's Wrist-Wraps","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"22":281},"isBase":true}}}, +{"id":30686,"name":"Ravager's Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"22":426},"isBase":true}}}, +{"id":30687,"name":"Ravager's Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":16181,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"22":615},"isBase":true}}}, +{"id":30705,"name":"Spaulders of Slaughter","icon":"inv_shoulder_26","type":3,"armorType":4,"stats":[30,0,22,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":30,"2":22,"6":27,"22":846},"isBase":true}}}, +{"id":30707,"name":"Nimble-Foot Treads","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,32,24,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":32,"2":24,"9":25,"22":354},"isBase":true}}}, +{"id":30708,"name":"Belt of Flowing Thought","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"3":32,"4":32,"22":440},"isBase":true}}}, +{"id":30709,"name":"Pantaloons of Flaming Wrath","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,42,28,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":42,"3":28,"6":42,"22":323},"isBase":true}}}, +{"id":30710,"name":"Blood Guard's Necklace of Ferocity","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,17,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":20923,"zoneId":3714}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"6":17,"12":54,"13":54},"isBase":true}}}, +{"id":30720,"name":"Serpent-Coil Braid","icon":"spell_nature_poisoncleansingtotem","type":12,"stats":[0,0,0,0,0,12,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[3],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"5":12,"6":30},"isBase":true}}}, +{"id":30722,"name":"Ethereum Nexus-Reaver","icon":"inv_axe_67","type":13,"weaponType":1,"handType":4,"stats":[50,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":432,"weaponDamageMax":649,"weaponSpeed":3.7,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"weaponDamageMin":432,"weaponDamageMax":649,"stats":{"0":50,"6":30},"isBase":true}}}, +{"id":30723,"name":"Talon of the Tempest","icon":"inv_weapon_shortblade_53","type":13,"weaponType":2,"handType":2,"stats":[0,0,15,0,0,9,19,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":1.8,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":35,"weaponDamageMin":70,"weaponDamageMax":132,"stats":{"2":15,"5":9,"6":19,"14":246},"isBase":true}}}, +{"id":30724,"name":"Barrel-Blade Longrifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":265,"weaponDamageMax":494,"weaponSpeed":2.6,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"weaponDamageMin":265,"weaponDamageMax":494,"stats":{"1":51},"isBase":true}}}, +{"id":30725,"name":"Anger-Spark Gloves","icon":"inv_gauntlets_30","type":7,"armorType":1,"stats":[0,0,0,26,0,20,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"3":26,"5":20,"6":25,"22":295},"isBase":true}}}, +{"id":30726,"name":"Archaic Charm of Presence","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,35,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":35,"3":34},"isBase":true}}}, +{"id":30727,"name":"Gilded Trousers of Benediction","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,29,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":29,"3":53,"4":30,"22":413},"isBase":true}}}, +{"id":30728,"name":"Fathom-Helm of the Deeps","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,44,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":44,"3":48,"4":22,"22":803},"isBase":true}}}, +{"id":30729,"name":"Black-Iron Battlecloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":45,"stats":{"6":30,"12":60,"13":60,"22":236},"isBase":true}}}, +{"id":30730,"name":"Terrorweave Tunic","icon":"inv_chest_cloth_45","type":5,"armorType":2,"stats":[0,48,0,0,0,21,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":48,"5":21,"6":25,"22":655},"isBase":true}}}, +{"id":30731,"name":"Faceguard of the Endless Watch","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[25,0,49,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":25,"2":49,"9":41,"22":1156},"isBase":true}}}, +{"id":30732,"name":"Exodar Life-Staff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,51,0,46,0,0,0,0,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":3.2,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"weaponDamageMin":187,"weaponDamageMax":281,"stats":{"2":51,"4":46,"14":241},"isBase":true}}}, +{"id":30733,"name":"Hope Ender","icon":"inv_sword_74","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":204,"weaponDamageMax":380,"weaponSpeed":2.6,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":35,"weaponDamageMin":204,"weaponDamageMax":380,"stats":{"12":70,"13":70},"isBase":true}}}, +{"id":30734,"name":"Leggings of the Seventh Circle","icon":"inv_pants_leather_11","type":9,"armorType":1,"stats":[0,0,33,43,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"2":33,"3":43,"5":18,"6":25,"22":413},"isBase":true}}}, +{"id":30735,"name":"Ancient Spellcloak of the Highborne","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,23,31,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":45,"stats":{"2":23,"3":31,"6":19,"22":236},"isBase":true}}}, +{"id":30736,"name":"Ring of Flowing Light","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,0,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":45,"stats":{"3":34,"6":23},"isBase":true}}}, +{"id":30737,"name":"Gold-Leaf Wildboots","icon":"inv_boots_cloth_08","type":10,"armorType":2,"stats":[0,0,29,39,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,450,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"2":29,"3":39,"4":18,"22":450},"isBase":true}}}, +{"id":30738,"name":"Ring of Reciprocity","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,15,19,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":45,"stats":{"5":15,"6":19,"12":62,"13":62},"isBase":true}}}, +{"id":30739,"name":"Scaled Greaves of the Marksman","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,38,56,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,865,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":80,"stats":{"1":38,"2":56,"5":16,"22":865},"isBase":true}}}, +{"id":30740,"name":"Ripfiend Shoulderplates","icon":"inv_shoulder_36","type":3,"armorType":4,"stats":[39,0,0,0,0,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":39,"5":13,"6":22,"22":1067},"isBase":true}}}, +{"id":30741,"name":"Topaz-Studded Battlegrips","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[21,0,49,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"scalingOptions":{"120":{"randPropPoints":60,"stats":{"0":21,"2":49,"9":20,"22":889},"isBase":true}}}, +{"id":30761,"name":"Infernoweave Leggings","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":69,"18":55,"22":402},"isBase":true}}}, +{"id":30762,"name":"Infernoweave Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":54,"18":60,"22":460},"isBase":true}}}, +{"id":30763,"name":"Infernoweave Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"18":45,"22":316},"isBase":true}}}, +{"id":30764,"name":"Infernoweave Gloves","icon":"inv_gauntlets_26","type":7,"armorType":1,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"18":40,"22":287},"isBase":true}}}, +{"id":30766,"name":"Inferno Tempered Leggings","icon":"inv_pants_04","type":9,"armorType":4,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":69,"18":55,"22":1230},"isBase":true}}}, +{"id":30767,"name":"Inferno Tempered Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"18":40,"22":878},"isBase":true}}}, +{"id":30768,"name":"Inferno Tempered Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"18":45,"22":966},"isBase":true}}}, +{"id":30769,"name":"Inferno Tempered Chestguard","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":54,"18":60,"22":1405},"isBase":true}}}, +{"id":30770,"name":"Inferno Forged Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"18":45,"22":669},"isBase":true}}}, +{"id":30772,"name":"Inferno Forged Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":69,"18":55,"22":852},"isBase":true}}}, +{"id":30773,"name":"Inferno Forged Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":54,"18":60,"22":974},"isBase":true}}}, +{"id":30774,"name":"Inferno Forged Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"18":40,"22":609},"isBase":true}}}, +{"id":30776,"name":"Inferno Hardened Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":54,"18":60,"22":642},"isBase":true}}}, +{"id":30778,"name":"Inferno Hardened Leggings","icon":"inv_pants_leather_18","type":9,"armorType":2,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":69,"18":55,"22":561},"isBase":true}}}, +{"id":30779,"name":"Inferno Hardened Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"18":45,"22":441},"isBase":true}}}, +{"id":30780,"name":"Inferno Hardened Gloves","icon":"inv_gauntlets_26","type":7,"armorType":2,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":52,"18":40,"22":401},"isBase":true}}}, +{"id":30787,"name":"Illidari-Bane Mageblade","icon":"inv_sword_77","type":13,"weaponType":2,"handType":2,"stats":[0,0,12,11,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"stats":{"2":12,"3":11,"6":20},"isBase":true}}}, +{"id":30788,"name":"Illidari-Bane Broadsword","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"isBase":true}}}, +{"id":30789,"name":"Illidari-Bane Claymore","icon":"inv_sword_82","type":13,"weaponType":9,"handType":4,"stats":[0,0,34,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":339,"weaponDamageMax":509,"weaponSpeed":3.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":339,"weaponDamageMax":509,"stats":{"2":34,"6":37},"isBase":true}}}, +{"id":30825,"name":"Ring of Arcane Shielding","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,30,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":114,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":37855}}],"scalingOptions":{"114":{"randPropPoints":35,"stats":{"2":12,"16":8,"17":30},"isBase":true}}}, +{"id":30830,"name":"Trident of the Outcast Tribe","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[37,0,54,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":313,"weaponDamageMax":470,"weaponSpeed":3.2,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":313,"weaponDamageMax":470,"stats":{"0":37,"2":54,"5":36},"isBase":true}}}, +{"id":30831,"name":"Cloak of Arcane Evasion","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37873}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":12,"17":32,"22":182},"isBase":true}}}, +{"id":30832,"name":"Gavel of Unearthed Secrets","icon":"inv_hammer_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,36,0,0,0,15,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":89,"weaponDamageMax":165,"weaponSpeed":2.7,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":89,"weaponDamageMax":165,"stats":{"2":36,"6":15,"14":204},"isBase":true}}}, +{"id":30834,"name":"Shapeshifter's Signet","icon":"inv_jewelry_ring_41","type":11,"stats":[0,25,18,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"1":25,"2":18,"8":20},"isBase":true}}}, +{"id":30835,"name":"Salvager's Hauberk","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,33,49,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":49,"6":33,"22":782},"isBase":true}}}, +{"id":30836,"name":"Leggings of the Skettis Exile","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,50,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":33,"4":33,"22":323},"isBase":true}}}, +{"id":30837,"name":"Flameheart Bracers","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37882}}],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":12,"3":8,"18":30,"22":159},"isBase":true}}}, +{"id":30838,"name":"Flameheart Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,15,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":114,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37883}}],"scalingOptions":{"114":{"randPropPoints":47,"stats":{"2":15,"3":11,"18":40,"22":230},"isBase":true}}}, +{"id":30839,"name":"Flameheart Vest","icon":"inv_chest_cloth_07","type":5,"armorType":1,"stats":[0,0,30,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":37884}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":30,"3":19,"18":50,"22":369},"isBase":true}}}, +{"id":30841,"name":"Lower City Prayerbook","icon":"inv_misc_book_11","type":12,"stats":[0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"3":32},"isBase":true}}}, +{"id":30847,"name":"X-52 Rocket Helmet","icon":"inv_helmet_49","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"22":259},"isBase":true}}}, +{"id":30859,"name":"Wand of the Seer","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,16,21,7,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"stats":{"2":16,"3":21,"4":7,"14":183},"isBase":true}}}, +{"id":30860,"name":"Kaylaan's Signet","icon":"inv_jewelry_ring_34","type":11,"stats":[0,15,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"1":15,"2":38,"5":10},"isBase":true}}}, +{"id":30861,"name":"Furious Shackles","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[35,0,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":35,"2":28,"6":19,"22":727},"isBase":true}}}, +{"id":30862,"name":"Blessed Adamantite Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,28,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":28,"6":21,"22":727},"isBase":true}}}, +{"id":30863,"name":"Deadly Cuffs","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,29,28,0,0,12,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":29,"2":28,"5":12,"6":28,"22":330},"isBase":true}}}, +{"id":30864,"name":"Bracers of the Pathfinder","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,25,45,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":25,"2":45,"6":24,"22":497},"isBase":true}}}, +{"id":30865,"name":"Tracker's Blade","icon":"inv_weapon_shortblade_59","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,20,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"weaponSpeed":1.8,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"stats":{"5":20,"6":23,"12":44,"13":44},"isBase":true}}}, +{"id":30866,"name":"Blood-Stained Pauldrons","icon":"inv_shoulder_65","type":3,"armorType":4,"stats":[47,0,34,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":47,"2":34,"5":23,"6":32,"22":1246},"isBase":true}}}, +{"id":30868,"name":"Rejuvenating Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,35,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":35,"3":29,"4":28,"22":330},"isBase":true}}}, +{"id":30869,"name":"Howling Wind Bracers","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,45,28,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"3":28,"4":20,"22":497},"isBase":true}}}, +{"id":30870,"name":"Cuffs of Devastation","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,39,29,19,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":39,"3":29,"4":19,"6":14,"22":239},"isBase":true}}}, +{"id":30871,"name":"Bracers of Martyrdom","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,34,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":34,"3":29,"4":28,"22":239},"isBase":true}}}, +{"id":30872,"name":"Chronicle of Dark Secrets","icon":"inv_offhand_hyjal_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,26,36,0,17,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":26,"3":36,"5":17,"6":23},"isBase":true}}}, +{"id":30873,"name":"Stillwater Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,70,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17767,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":70,"3":38,"4":26,"22":781},"isBase":true}}}, +{"id":30874,"name":"The Unbreakable Will","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":151,"weaponDamageMax":281,"weaponSpeed":1.6,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":151,"weaponDamageMax":281,"stats":{"2":33,"9":21,"23":88},"isBase":true}}}, +{"id":30878,"name":"Glimmering Steel Mantle","icon":"inv_shoulder_65","type":3,"armorType":4,"stats":[0,0,50,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":50,"3":38,"6":29,"22":1246},"isBase":true}}}, +{"id":30879,"name":"Don Alejandro's Money Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,38,60,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":60,"6":19,"22":425},"isBase":true}}}, +{"id":30880,"name":"Quickstrider Moccasins","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,29,57,0,0,15,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":29,"2":57,"5":15,"6":28,"22":781},"isBase":true}}}, +{"id":30881,"name":"Blade of Infamy","icon":"inv_sword_85","type":13,"weaponType":9,"handType":2,"stats":[0,28,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":245,"weaponDamageMax":457,"weaponSpeed":2.6,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":245,"weaponDamageMax":457,"stats":{"1":28,"2":42},"isBase":true}}}, +{"id":30882,"name":"Bastion of Light","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,53,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":53,"3":28,"22":4417},"isBase":true}}}, +{"id":30883,"name":"Pillar of Ferocity","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,96,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,0,0,0,0,157,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":421,"weaponDamageMax":632,"weaponSpeed":3,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":421,"weaponDamageMax":632,"stats":{"2":96,"12":94,"13":94,"23":157},"isBase":true}}}, +{"id":30884,"name":"Hatefury Mantle","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,32,47,0,23,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":32,"3":47,"5":23,"6":24,"22":410},"isBase":true}}}, +{"id":30885,"name":"Archbishop's Slippers","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,56,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":56,"3":38,"4":37,"22":376},"isBase":true}}}, +{"id":30886,"name":"Enchanted Leather Sandals","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,58,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":58,"3":38,"4":37,"22":519},"isBase":true}}}, +{"id":30887,"name":"Golden Links of Restoration","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,78,53,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":78,"3":53,"4":48,"22":1135},"isBase":true}}}, +{"id":30888,"name":"Anetheron's Noose","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,42,47,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17808,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":42,"3":47,"6":24,"22":308},"isBase":true}}}, +{"id":30889,"name":"Kaz'rogal's Hardened Heart","icon":"inv_shield_39","type":13,"weaponType":7,"handType":3,"stats":[21,0,43,0,0,18,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":21,"2":43,"5":18,"9":19,"22":4417},"isBase":true}}}, +{"id":30891,"name":"Black Featherlight Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,49,41,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":49,"2":41,"5":34,"22":519},"isBase":true}}}, +{"id":30892,"name":"Beast-Tamer's Shoulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,39,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":39,"2":72,"22":851},"isBase":true}}}, +{"id":30893,"name":"Sun-Touched Chain Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,61,50,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":61,"3":50,"4":40,"22":993},"isBase":true}}}, +{"id":30894,"name":"Blue Suede Shoes","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,64,48,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":64,"3":48,"5":18,"22":376},"isBase":true}}}, +{"id":30895,"name":"Angelista's Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":56,"3":38,"7":37,"22":308},"isBase":true}}}, +{"id":30896,"name":"Glory of the Defender","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[37,0,75,0,0,29,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":37,"2":75,"5":29,"9":44,"22":1661},"isBase":true}}}, +{"id":30897,"name":"Girdle of Hope","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,59,38,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":59,"3":38,"6":21,"22":934},"isBase":true}}}, +{"id":30898,"name":"Shady Dealer's Pantaloons","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,51,102,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":51,"2":102,"6":25,"22":661},"isBase":true}}}, +{"id":30899,"name":"Don Rodrigo's Poncho","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,64,53,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":64,"3":53,"4":52,"22":755},"isBase":true}}}, +{"id":30900,"name":"Bow-Stitched Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,50,53,0,0,0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":50,"2":53,"6":20,"7":42,"22":993},"isBase":true}}}, +{"id":30901,"name":"Boundless Agony","icon":"inv_weapon_shortblade_59","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,24,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17842,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"stats":{"6":24,"7":30},"isBase":true}}}, +{"id":30902,"name":"Cataclysm's Edge","icon":"inv_sword_68","type":13,"weaponType":9,"handType":4,"stats":[75,0,49,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":3.5,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"weaponDamageMin":537,"weaponDamageMax":806,"stats":{"0":75,"2":49,"6":48},"isBase":true}}}, +{"id":30903,"name":"Legguards of Endless Rage","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[70,0,61,0,0,19,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"0":70,"2":61,"5":19,"6":46,"22":1616},"isBase":true}}}, +{"id":30904,"name":"Savior's Grasp","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,106,48,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1847,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"2":106,"3":48,"6":46,"22":1847},"isBase":true}}}, +{"id":30905,"name":"Midnight Chestguard","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,53,64,0,0,29,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"1":53,"2":64,"5":29,"6":46,"22":826},"isBase":true}}}, +{"id":30906,"name":"Bristleblitz Striker","icon":"inv_weapon_bow_30","type":14,"rangedWeaponType":1,"stats":[0,0,88,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":403,"weaponDamageMax":748,"weaponSpeed":3,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"weaponDamageMin":403,"weaponDamageMax":748,"stats":{"2":88,"6":79},"isBase":true}}}, +{"id":30907,"name":"Mail of Fevered Pursuit","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,54,105,0,0,20,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"1":54,"2":105,"5":20,"6":29,"22":1246},"isBase":true}}}, +{"id":30908,"name":"Apostle of Argus","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,0,58,0,0,0,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":245,"weaponDamageMax":368,"weaponSpeed":3.2,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"weaponDamageMin":245,"weaponDamageMax":368,"stats":{"2":113,"4":58,"14":324},"isBase":true}}}, +{"id":30909,"name":"Antonidas' Aegis of Rapt Concentration","icon":"inv_shield_40","type":13,"weaponType":7,"handType":3,"stats":[0,0,43,36,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":43,"3":36,"6":20,"22":4979},"isBase":true}}}, +{"id":30910,"name":"Tempest of Chaos","icon":"inv_sword_90","type":13,"weaponType":9,"handType":2,"stats":[0,0,47,0,0,17,24,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":93,"weaponDamageMax":173,"weaponSpeed":1.8,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":46,"weaponDamageMin":93,"weaponDamageMax":173,"stats":{"2":47,"5":17,"6":24,"14":323},"isBase":true}}}, +{"id":30911,"name":"Scepter of Purification","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":37,"3":35,"4":25},"isBase":true}}}, +{"id":30912,"name":"Leggings of Eternity","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,77,55,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"2":77,"3":55,"4":40,"22":521},"isBase":true}}}, +{"id":30913,"name":"Robes of Rhonin","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,84,69,0,27,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17968,"zoneId":3606}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"2":84,"3":69,"5":27,"6":24,"22":596},"isBase":true}}}, +{"id":30914,"name":"Belt of the Crescent Moon","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,49,38,19,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":49,"3":38,"4":19,"7":36,"22":425},"isBase":true}}}, +{"id":30915,"name":"Belt of Seething Fury","icon":"inv_belt_27","type":8,"armorType":4,"stats":[48,0,37,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":48,"2":37,"7":38,"22":934},"isBase":true}}}, +{"id":30916,"name":"Leggings of Channeled Elements","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,50,50,0,18,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":50,"3":50,"5":18,"6":47,"22":479},"isBase":true}}}, +{"id":30917,"name":"Razorfury Mantle","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,38,73,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":73,"6":23,"22":566},"isBase":true}}}, +{"id":30918,"name":"Hammer of Atonement","icon":"inv_mace_57","type":13,"weaponType":4,"handType":2,"stats":[0,0,47,0,0,0,23,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"stats":{"2":47,"6":23,"14":295},"isBase":true}}}, +{"id":30919,"name":"Valestalker Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,38,39,0,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":17888,"zoneId":3606}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":39,"6":27,"7":36,"22":639},"isBase":true}}}, +{"id":30920,"name":"QR 10574 Cloth Mage Chest","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,24,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":24,"3":39,"4":21,"22":334},"isBase":true}}}, +{"id":30921,"name":"QR 10637 Cloth Mage Legs","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,23,29,14,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":23,"3":29,"4":14,"6":28,"22":292},"isBase":true}}}, +{"id":30922,"name":"Ata'mal Crown","icon":"inv_helmet_59","type":1,"armorType":1,"stats":[0,0,34,39,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":34,"3":39,"4":14,"22":271},"isBase":true}}}, +{"id":30923,"name":"Grom'tor's Bloodied Bandage","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,25,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":25,"3":30,"4":11,"22":188},"isBase":true}}}, +{"id":30924,"name":"Gloves of the High Magus","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,30,22,10,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"2":30,"3":22,"4":10,"6":22,"22":211},"isBase":true}}}, +{"id":30925,"name":"Spaulders of the Torn-Heart","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,15,34,8,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":15,"3":34,"4":8,"6":18,"22":268},"isBase":true}}}, +{"id":30926,"name":"Ashwalker's Footwraps","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,27,18,8,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"2":27,"3":18,"4":8,"6":19,"22":226},"isBase":true}}}, +{"id":30927,"name":"Earthmender's Bracer of Shattering","icon":"inv_bracer_01","type":6,"armorType":1,"stats":[0,0,18,23,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"2":18,"3":23,"4":9,"22":146},"isBase":true}}}, +{"id":30928,"name":"Sketh'lon Survivor's Tunic","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,41,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":41,"3":38,"22":329},"isBase":true}}}, +{"id":30929,"name":"Soothsayer's Kilt","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,41,26,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":41,"3":26,"6":25,"22":288},"isBase":true}}}, +{"id":30930,"name":"Grips of the Void","icon":"inv_gauntlets_09","type":7,"armorType":1,"stats":[0,0,26,30,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":26,"3":30,"6":10,"22":209},"isBase":true}}}, +{"id":30931,"name":"Ghostly Headwrap","icon":"inv_helmet_60","type":1,"armorType":1,"stats":[0,0,24,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,41,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":24,"3":39,"4":16,"22":271,"23":41},"isBase":true}}}, +{"id":30932,"name":"Akama's Sash","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,15,34,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,32,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":15,"3":34,"4":18,"22":201,"23":32},"isBase":true}}}, +{"id":30933,"name":"Hauberk of Karabor","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,45,42,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":45,"2":42,"5":12,"22":503},"isBase":true}}}, +{"id":30934,"name":"QR 10574 Leather Rogue Legs","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":21,"2":24,"6":39,"22":408},"isBase":true}}}, +{"id":30935,"name":"QR 10637 Leather Rogue Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,39,0,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":39,"5":16,"6":21,"22":379},"isBase":true}}}, +{"id":30936,"name":"Eva's Strap","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,30,0,0,0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":30,"5":12,"6":16,"22":262},"isBase":true}}}, +{"id":30937,"name":"Earthmender's Fists of Undoing","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,30,18,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":30,"2":18,"6":16,"22":292},"isBase":true}}}, +{"id":30938,"name":"Azurestrike Shoulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,22,11,0,0,10,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":22,"2":11,"5":10,"6":21,"22":346},"isBase":true}}}, +{"id":30939,"name":"Felboar Hide Shoes","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,34,32,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":34,"2":32,"5":9,"22":346},"isBase":true}}}, +{"id":30940,"name":"Aged Leather Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":20,"6":20,"22":204},"isBase":true}}}, +{"id":30941,"name":"Ash Tempered Legguards","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,29,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"1":29,"2":51,"22":403},"isBase":true}}}, +{"id":30942,"name":"Manimal's Cinch","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":23,"2":42,"22":262},"isBase":true}}}, +{"id":30943,"name":"Verdant Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,26,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":26,"2":46,"22":314},"isBase":true}}}, +{"id":30944,"name":"Umberhowl's Collar","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"1":20,"2":33,"22":220},"isBase":true}}}, +{"id":30945,"name":"Grom'tor's Friend's Cousin's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,35,39,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":35,"3":39,"6":11,"22":466},"isBase":true}}}, +{"id":30946,"name":"Mooncrest Headdress","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,24,38,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"2":24,"3":38,"6":21,"22":374},"isBase":true}}}, +{"id":30947,"name":"Crimson Mail Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,38,28,0,0,10,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"1":38,"2":28,"5":10,"6":14,"22":702},"isBase":true}}}, +{"id":30948,"name":"Sunfury Legguards","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,45,38,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":45,"2":38,"5":12,"6":12,"22":672},"isBase":true}}}, +{"id":30949,"name":"QR 10574 Mail Hunter Helm","icon":"inv_helmet_01","type":1,"armorType":3,"stats":[0,30,45,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":30,"2":45,"3":18,"22":576},"isBase":true}}}, +{"id":30950,"name":"Darkhunter's Cinch","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,28,23,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":39,"stats":{"1":28,"2":23,"5":10,"6":10,"22":395},"isBase":true}}}, +{"id":30951,"name":"Ar'tor's Mainstay","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,34,27,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":34,"2":27,"5":8,"6":11,"22":480},"isBase":true}}}, +{"id":30952,"name":"Earthmender's Crimson Spaulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,30,18,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":30,"2":18,"6":16,"22":531},"isBase":true}}}, +{"id":30953,"name":"Boots of the Skybreaker","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,24,33,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":24,"2":33,"6":16,"22":487},"isBase":true}}}, +{"id":30954,"name":"QR 10637 Mail Hunter Bracers","icon":"inv_bracer_14","type":6,"armorType":3,"stats":[0,23,10,0,0,8,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":23,"2":10,"5":8,"6":7,"22":310},"isBase":true}}}, +{"id":30955,"name":"Crown of Cinders","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,21,45,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"1":21,"2":45,"5":20,"6":20,"22":571},"isBase":true}}}, +{"id":30956,"name":"Oronok's Old Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,12,26,0,0,12,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":12,"2":26,"5":12,"6":11,"22":310},"isBase":true}}}, +{"id":30957,"name":"Oronok's Old Leggings","icon":"inv_pants_plate_21","type":9,"armorType":3,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":24,"3":39,"6":21,"22":620},"isBase":true}}}, +{"id":30958,"name":"Blackened Chain Greaves","icon":"inv_boots_02","type":10,"armorType":3,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":18,"3":30,"6":16,"22":487},"isBase":true}}}, +{"id":30959,"name":"Torn-Heart Family Tunic","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[39,0,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"0":39,"2":24,"6":21,"22":1023},"isBase":true}}}, +{"id":30960,"name":"Runed Sketh'lon Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[21,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":52,"stats":{"0":21,"2":24,"6":38,"22":889},"isBase":true}}}, +{"id":30961,"name":"Ash-Covered Helm","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"0":28,"2":42,"6":27,"22":831},"isBase":true}}}, +{"id":30962,"name":"Borak's Belt of Bravery","icon":"inv_belt_13","type":8,"armorType":4,"stats":[26,26,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"0":26,"1":26,"2":24,"22":626},"isBase":true}}}, +{"id":30963,"name":"QR 10574 Plate Warrior Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[16,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":16,"1":30,"2":18,"22":640},"isBase":true}}}, +{"id":30964,"name":"Skybreaker's Pauldrons","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[21,21,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":21,"1":21,"2":31,"22":768},"isBase":true}}}, +{"id":30965,"name":"QR 10637 Plate Warrior Boots","icon":"inv_boots_02","type":10,"armorType":4,"stats":[16,0,18,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":16,"2":18,"6":30,"22":704},"isBase":true}}}, +{"id":30966,"name":"Singed Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[21,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"0":21,"1":12,"2":13,"22":445},"isBase":true}}}, +{"id":30967,"name":"The Hands of Fate","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[34,0,21,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"0":34,"2":21,"6":18,"22":695},"isBase":true}}}, +{"id":30968,"name":"Earthmender's Plated Boots","icon":"inv_boots_02","type":10,"armorType":4,"stats":[0,0,32,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":32,"3":20,"6":20,"22":704},"isBase":true}}}, +{"id":30969,"name":"Onslaught Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[41,30,49,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":41,"1":30,"2":49,"6":13,"22":1096},"isBase":true}}}, +{"id":30970,"name":"Onslaught Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[36,0,50,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":36,"2":50,"9":44,"22":1096},"isBase":true}}}, +{"id":30971,"name":"Torn-Heart Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"2":23,"3":23,"22":167},"isBase":true}}}, +{"id":30972,"name":"Onslaught Battle-Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[54,41,54,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":54,"1":41,"2":54,"6":15,"22":1425},"isBase":true}}}, +{"id":30973,"name":"Band of Anguish","icon":"inv_jewelry_ring_44","type":11,"stats":[0,13,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"1":13,"2":38,"5":10},"isBase":true}}}, +{"id":30974,"name":"Onslaught Greathelm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[39,0,48,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":39,"2":48,"10":50,"22":1425},"isBase":true}}}, +{"id":30975,"name":"Onslaught Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[53,34,54,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":53,"1":34,"2":54,"5":16,"6":18,"22":1754},"isBase":true}}}, +{"id":30976,"name":"Onslaught Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[37,0,69,0,0,0,0,0,0,49,23,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":37,"2":69,"9":49,"10":23,"22":1754},"isBase":true}}}, +{"id":30977,"name":"Onslaught Greaves","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,41,55,0,0,14,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":62,"1":41,"2":55,"5":14,"6":15,"22":1535},"isBase":true}}}, +{"id":30978,"name":"Onslaught Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[40,0,78,0,0,0,0,0,0,28,49,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":40,"2":78,"9":28,"10":49,"22":1535},"isBase":true}}}, +{"id":30979,"name":"Onslaught Shoulderblades","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[39,39,34,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":39,"1":39,"2":34,"6":13,"22":1316},"isBase":true}}}, +{"id":30980,"name":"Onslaught Shoulderguards","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[31,0,53,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":31,"2":53,"9":32,"22":1316},"isBase":true}}}, +{"id":30981,"name":"Grom'tor's Pendant of Conquest","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,16,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"ilvl":114,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":30,"stats":{"1":16,"2":35},"isBase":true}}}, +{"id":30982,"name":"Lightbringer Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[51,0,37,0,0,0,19,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":51,"2":37,"6":19,"7":25,"22":1096},"isBase":true}}}, +{"id":30983,"name":"Lightbringer Gloves","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,59,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":59,"3":39,"4":30,"22":1096},"isBase":true}}}, +{"id":30984,"name":"Spellbreaker's Buckler","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":28,"3":25,"22":2931},"isBase":true}}}, +{"id":30985,"name":"Lightbringer Handguards","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[43,0,44,0,0,0,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,1096,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":43,"2":44,"9":39,"10":30,"22":1096},"isBase":true}}}, +{"id":30986,"name":"Bloodforged Guard","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[9,12,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"0":9,"1":12,"2":31,"22":2617},"isBase":true}}}, +{"id":30987,"name":"Lightbringer Faceguard","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[50,0,67,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":50,"2":67,"9":49,"22":1425},"isBase":true}}}, +{"id":30988,"name":"Lightbringer Greathelm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,73,54,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":73,"3":54,"6":36,"22":1425},"isBase":true}}}, +{"id":30989,"name":"Lightbringer War-Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[61,0,60,0,0,0,23,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":61,"2":60,"6":23,"7":32,"22":1425},"isBase":true}}}, +{"id":30990,"name":"Lightbringer Breastplate","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[56,0,48,0,0,21,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":56,"2":48,"5":21,"6":41,"22":1754},"isBase":true}}}, +{"id":30991,"name":"Lightbringer Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[43,0,69,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":43,"2":69,"10":41,"22":1754},"isBase":true}}}, +{"id":30992,"name":"Lightbringer Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,69,53,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":69,"3":53,"4":28,"6":28,"22":1754},"isBase":true}}}, +{"id":30993,"name":"Lightbringer Greaves","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[68,0,48,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":68,"2":48,"5":33,"6":38,"22":1535},"isBase":true}}}, +{"id":30994,"name":"Lightbringer Leggings","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,81,52,28,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":81,"3":52,"4":28,"6":34,"22":1535},"isBase":true}}}, +{"id":30995,"name":"Lightbringer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[54,0,69,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":54,"2":69,"9":56,"22":1535},"isBase":true}}}, +{"id":30996,"name":"Lightbringer Pauldrons","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,58,39,20,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":58,"3":39,"4":20,"6":18,"22":1316},"isBase":true}}}, +{"id":30997,"name":"Lightbringer Shoulderbraces","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[50,0,37,0,0,0,19,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":50,"2":37,"6":19,"7":17,"22":1316},"isBase":true}}}, +{"id":30998,"name":"Lightbringer Shoulderguards","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[35,0,50,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":35,"2":50,"9":36,"22":1316},"isBase":true}}}, +{"id":30999,"name":"Ashtongue Blade","icon":"inv_weapon_shortblade_29","type":13,"weaponType":2,"handType":2,"stats":[0,11,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"stats":{"1":11,"2":30},"isBase":true}}}, +{"id":31000,"name":"Bloodwarder's Rifle","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,47,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":2.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"1":47,"2":44},"isBase":true}}}, +{"id":31001,"name":"Gronnstalker's Gloves","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,35,47,0,0,0,33,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":35,"2":47,"6":33,"7":20,"22":743},"isBase":true}}}, +{"id":31002,"name":"Summoner's Blade","icon":"inv_sword_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,30,0,0,0,11,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":73,"weaponDamageMax":136,"weaponSpeed":2.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":73,"weaponDamageMax":136,"stats":{"2":30,"6":11,"14":183},"isBase":true}}}, +{"id":31003,"name":"Gronnstalker's Helmet","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,45,66,0,0,20,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":45,"2":66,"5":20,"6":45,"22":966},"isBase":true}}}, +{"id":31004,"name":"Gronnstalker's Chestguard","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,45,81,0,0,0,19,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":45,"2":81,"6":19,"7":40,"22":1189},"isBase":true}}}, +{"id":31005,"name":"Gronnstalker's Leggings","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,66,64,0,0,0,19,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":66,"2":64,"6":19,"7":37,"22":1041},"isBase":true}}}, +{"id":31006,"name":"Gronnstalker's Spaulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,34,48,0,0,0,18,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":34,"2":48,"6":18,"7":34,"22":892},"isBase":true}}}, +{"id":31007,"name":"Skyshatter Gloves","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,74,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":74,"3":39,"4":20,"22":743},"isBase":true}}}, +{"id":31008,"name":"Skyshatter Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,57,39,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"5":19,"6":26,"22":743},"isBase":true}}}, +{"id":31009,"name":"Wildcaller","icon":"inv_staff_51","type":13,"weaponType":8,"handType":4,"stats":[0,24,68,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":235,"weaponDamageMax":353,"weaponSpeed":2.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":235,"weaponDamageMax":353,"stats":{"1":24,"2":68,"8":20},"isBase":true}}}, +{"id":31010,"name":"Slayer's Axe","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[51,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":3.2,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"0":51,"6":21},"isBase":true}}}, +{"id":31011,"name":"Skyshatter Grips","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,53,45,0,0,13,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,743,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":53,"2":45,"5":13,"6":21,"22":743},"isBase":true}}}, +{"id":31012,"name":"Skyshatter Helmet","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,70,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":70,"3":54,"4":36,"22":966},"isBase":true}}}, +{"id":31013,"name":"Ceremonial Kris","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,10,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":45,"weaponDamageMax":84,"weaponSpeed":1.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":45,"weaponDamageMax":84,"stats":{"2":30,"4":10,"14":183},"isBase":true}}}, +{"id":31014,"name":"Skyshatter Headguard","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,73,53,20,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":73,"3":53,"4":20,"6":36,"22":966},"isBase":true}}}, +{"id":31015,"name":"Skyshatter Cover","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,65,55,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":65,"2":55,"5":20,"6":36,"22":966},"isBase":true}}}, +{"id":31016,"name":"Skyshatter Chestguard","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,72,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":72,"3":54,"4":36,"22":1189},"isBase":true}}}, +{"id":31017,"name":"Skyshatter Breastplate","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,78,53,0,17,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":78,"3":53,"5":17,"6":34,"22":1189},"isBase":true}}}, +{"id":31018,"name":"Skyshatter Tunic","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,56,67,0,0,15,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":56,"2":67,"5":15,"6":41,"22":1189},"isBase":true}}}, +{"id":31019,"name":"Skyshatter Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,91,54,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":91,"3":54,"4":36,"22":1041},"isBase":true}}}, +{"id":31020,"name":"Skyshatter Legguards","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,77,53,0,20,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":77,"3":53,"5":20,"6":43,"22":1041},"isBase":true}}}, +{"id":31021,"name":"Skyshatter Pants","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,46,81,0,0,21,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1041,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":46,"2":81,"5":21,"6":46,"22":1041},"isBase":true}}}, +{"id":31022,"name":"Skyshatter Shoulderpads","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,56,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":56,"3":39,"4":28,"22":892},"isBase":true}}}, +{"id":31023,"name":"Skyshatter Mantle","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,39,0,11,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"5":11,"6":28,"22":892},"isBase":true}}}, +{"id":31024,"name":"Skyshatter Pauldrons","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,43,48,0,0,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,892,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":43,"2":48,"5":11,"6":33,"22":892},"isBase":true}}}, +{"id":31032,"name":"Thunderheart Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,57,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"4":34,"22":494},"isBase":true}}}, +{"id":31034,"name":"Thunderheart Gauntlets","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,39,72,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":39,"2":72,"6":20,"22":494},"isBase":true}}}, +{"id":31035,"name":"Thunderheart Handguards","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,56,39,0,12,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":56,"3":39,"5":12,"6":32,"22":494},"isBase":true}}}, +{"id":31036,"name":"Oronok's Ancient Scepter","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,0,0,25,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":144,"weaponDamageMax":217,"weaponSpeed":3.5,"ilvl":108,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":60,"weaponDamageMin":144,"weaponDamageMax":217,"stats":{"2":71,"6":25,"14":181},"isBase":true}}}, +{"id":31037,"name":"Thunderheart Helmet","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,79,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":79,"3":53,"4":36,"22":642},"isBase":true}}}, +{"id":31038,"name":"Staff of the Redeemer","icon":"inv_staff_draenei_a_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,26,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":144,"weaponDamageMax":217,"weaponSpeed":3.5,"ilvl":108,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":60,"weaponDamageMin":144,"weaponDamageMax":217,"stats":{"2":71,"4":26,"14":181},"isBase":true}}}, +{"id":31039,"name":"Thunderheart Cover","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,53,90,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":53,"2":90,"8":20,"22":642},"isBase":true}}}, +{"id":31040,"name":"Thunderheart Headguard","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,59,53,0,13,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":59,"3":53,"5":13,"6":43,"22":642},"isBase":true}}}, +{"id":31041,"name":"Thunderheart Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,70,53,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":70,"3":53,"4":40,"22":790},"isBase":true}}}, +{"id":31042,"name":"Thunderheart Chestguard","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,53,91,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":53,"2":91,"6":18,"22":790},"isBase":true}}}, +{"id":31043,"name":"Thunderheart Vest","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,77,53,0,17,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":77,"3":53,"5":17,"6":39,"22":790},"isBase":true}}}, +{"id":31044,"name":"Thunderheart Leggings","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,53,95,0,0,27,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":53,"2":95,"5":27,"7":12,"22":691},"isBase":true}}}, +{"id":31045,"name":"Thunderheart Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,71,53,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":71,"3":53,"4":48,"22":691},"isBase":true}}}, +{"id":31046,"name":"Thunderheart Pants","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,83,53,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,691,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":83,"3":53,"5":20,"6":36,"22":691},"isBase":true}}}, +{"id":31047,"name":"Thunderheart Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,57,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"4":28,"22":592},"isBase":true}}}, +{"id":31048,"name":"Thunderheart Pauldrons","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,40,69,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":40,"2":69,"6":12,"22":592},"isBase":true}}}, +{"id":31049,"name":"Thunderheart Shoulderpads","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,57,39,0,14,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"5":14,"6":24,"22":592},"isBase":true}}}, +{"id":31050,"name":"Gloves of the Malefic","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,73,39,0,11,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":73,"3":39,"5":11,"6":19,"22":357},"isBase":true}}}, +{"id":31051,"name":"Hood of the Malefic","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,82,54,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":82,"3":54,"5":16,"6":32,"22":464},"isBase":true}}}, +{"id":31052,"name":"Robe of the Malefic","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,82,54,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":82,"3":54,"5":28,"22":571},"isBase":true}}}, +{"id":31053,"name":"Leggings of the Malefic","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,91,53,0,19,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":91,"3":53,"5":19,"6":37,"22":500},"isBase":true}}}, +{"id":31054,"name":"Mantle of the Malefic","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,59,39,0,21,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":59,"3":39,"5":21,"6":13,"22":428},"isBase":true}}}, +{"id":31055,"name":"Gloves of the Tempest","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,52,39,0,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":52,"3":39,"5":20,"6":30,"22":357},"isBase":true}}}, +{"id":31056,"name":"Cowl of the Tempest","icon":"inv_helmet_101","type":1,"armorType":1,"stats":[0,0,68,53,0,13,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":68,"3":53,"5":13,"6":43,"22":464},"isBase":true}}}, +{"id":31057,"name":"Robes of the Tempest","icon":"inv_chest_cloth_67","type":5,"armorType":1,"stats":[0,0,71,53,0,13,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":71,"3":53,"5":13,"6":41,"22":571},"isBase":true}}}, +{"id":31058,"name":"Leggings of the Tempest","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,80,53,0,20,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":80,"3":53,"5":20,"6":44,"22":500},"isBase":true}}}, +{"id":31059,"name":"Mantle of the Tempest","icon":"inv_shoulder_64","type":3,"armorType":1,"stats":[0,0,51,39,21,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":51,"3":39,"4":21,"5":18,"6":21,"22":428},"isBase":true}}}, +{"id":31060,"name":"Gloves of Absolution","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,64,39,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":64,"3":39,"4":29,"22":357},"isBase":true}}}, +{"id":31061,"name":"Handguards of Absolution","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,57,39,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":39,"5":19,"6":26,"22":357},"isBase":true}}}, +{"id":31062,"name":"Torn-Heart Axe of Battle","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[30,0,27,0,0,17,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":277,"weaponDamageMax":416,"weaponSpeed":3.3,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":277,"weaponDamageMax":416,"stats":{"0":30,"2":27,"5":17,"6":17,"7":30},"isBase":true}}}, +{"id":31063,"name":"Cowl of Absolution","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,63,53,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":63,"3":53,"4":40,"22":464},"isBase":true}}}, +{"id":31064,"name":"Hood of Absolution","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,71,53,40,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":71,"3":53,"4":40,"6":17,"22":464},"isBase":true}}}, +{"id":31065,"name":"Shroud of Absolution","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,71,52,0,20,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":71,"3":52,"5":20,"6":38,"22":571},"isBase":true}}}, +{"id":31066,"name":"Vestments of Absolution","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,72,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":72,"3":53,"4":42,"22":571},"isBase":true}}}, +{"id":31067,"name":"Leggings of Absolution","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,78,53,36,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":78,"3":53,"4":36,"6":28,"22":500},"isBase":true}}}, +{"id":31068,"name":"Breeches of Absolution","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,69,53,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":69,"3":53,"4":41,"22":500},"isBase":true}}}, +{"id":31069,"name":"Mantle of Absolution","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,56,39,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":56,"3":39,"4":29,"22":428},"isBase":true}}}, +{"id":31070,"name":"Shoulderpads of Absolution","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,51,39,0,12,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":51,"3":39,"5":12,"6":32,"22":428},"isBase":true}}}, +{"id":31071,"name":"Grom'tor's Charge","icon":"inv_axe_14","type":13,"weaponType":1,"handType":2,"stats":[0,7,30,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":90,"weaponDamageMax":168,"weaponSpeed":1.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":90,"weaponDamageMax":168,"stats":{"1":7,"2":30,"9":11},"isBase":true}}}, +{"id":31072,"name":"Lohn'goron, Bow of the Torn-Heart","icon":"inv_weapon_bow_16","type":14,"rangedWeaponType":1,"stats":[0,41,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":2.6,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"1":41,"2":57},"isBase":true}}}, +{"id":31073,"name":"Borak's Reminder","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,11,30,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":101,"weaponDamageMax":189,"stats":{"1":11,"2":30,"5":7},"isBase":true}}}, +{"id":31074,"name":"Amulet of the Torn-Heart","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":30,"18":24},"isBase":true}}}, +{"id":31075,"name":"Evoker's Mark of the Redemption","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":23,"3":25,"6":10},"isBase":true}}}, +{"id":31076,"name":"Spellsword's Mark of the Redemption","icon":"inv_jewelry_ring_37","type":11,"stats":[23,0,14,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":23,"2":14,"6":18},"isBase":true}}}, +{"id":31077,"name":"Slayer's Mark of the Redemption","icon":"inv_jewelry_ring_39","type":11,"stats":[0,15,38,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"1":15,"2":38,"5":10},"isBase":true}}}, +{"id":31078,"name":"Protector's Mark of the Redemption","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,22,0,0,0,0,0,0,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":22,"9":25,"10":10},"isBase":true}}}, +{"id":31080,"name":"Mercurial Stone","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,27,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":1,"spellId":38070}}],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":27,"5":27},"isBase":true}}}, +{"id":31104,"name":"Evoker's Helmet of Second Sight","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,26,30,8,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":26,"3":30,"4":8,"6":24,"22":291},"isBase":true}}}, +{"id":31105,"name":"Overlord's Helmet of Second Sight","icon":"inv_helmet_10","type":1,"armorType":4,"stats":[29,0,22,0,0,13,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"0":29,"2":22,"5":13,"6":24,"22":904},"isBase":true}}}, +{"id":31106,"name":"Stalker's Helmet of Second Sight","icon":"inv_helmet_01","type":1,"armorType":3,"stats":[0,31,18,0,0,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":31,"2":18,"5":10,"6":30,"22":624},"isBase":true}}}, +{"id":31107,"name":"Shamanistic Helmet of Second Sight","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,26,30,10,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":26,"3":30,"4":10,"6":24,"22":624},"isBase":true}}}, +{"id":31109,"name":"Stealther's Helmet of Second Sight","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,30,41,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":30,"2":41,"5":13,"22":409},"isBase":true}}}, +{"id":31110,"name":"Druidic Helmet of Second Sight","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,0,26,30,10,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":26,"3":30,"4":10,"6":24,"22":409},"isBase":true}}}, +{"id":31111,"name":"Uvuros Hide Gloves","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,26,30,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":26,"3":30,"4":11,"22":209},"isBase":true}}}, +{"id":31112,"name":"Uvuros Hide Boots","icon":"inv_boots_chain_11","type":10,"armorType":2,"stats":[0,0,26,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":26,"3":30,"4":10,"22":321},"isBase":true}}}, +{"id":31113,"name":"Violet Badge","icon":"spell_holy_mindsooth","type":12,"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"17":45},"isBase":true}}}, +{"id":31114,"name":"Uvuros Hide Cinch","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,0,26,30,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":26,"3":30,"4":10,"22":399},"isBase":true}}}, +{"id":31115,"name":"Uvuros Plated Spaulders","icon":"inv_shoulder_23","type":3,"armorType":4,"stats":[24,0,24,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"0":24,"2":24,"6":23,"22":768},"isBase":true}}}, +{"id":31155,"name":"Drakescale Breastplate","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":1112},"isBase":true}}}, +{"id":31156,"name":"Drakescale Hauberk","icon":"inv_chest_plate04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":768},"isBase":true}}}, +{"id":31157,"name":"Drakehide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":503},"isBase":true}}}, +{"id":31158,"name":"Drakeweave Raiment","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":358},"isBase":true}}}, +{"id":31159,"name":"Felstone Pauldrons","icon":"inv_shoulder_28","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":834},"isBase":true}}}, +{"id":31160,"name":"Felstone Epaulets","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":576},"isBase":true}}}, +{"id":31161,"name":"Felstone Spaulders","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":377},"isBase":true}}}, +{"id":31162,"name":"Felstone Mantle","icon":"inv_shoulder_30","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":268},"isBase":true}}}, +{"id":31163,"name":"Nethersteel Handguards","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":631},"isBase":true}}}, +{"id":31164,"name":"Nethersteel Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":428},"isBase":true}}}, +{"id":31165,"name":"Nethersteel-Reinforced Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":281},"isBase":true}}}, +{"id":31166,"name":"Nethersteel-Lined Handwraps","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":200},"isBase":true}}}, +{"id":31195,"name":"Voidplate Girdle","icon":"inv_belt_13","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":568},"isBase":true}}}, +{"id":31197,"name":"Voidscale Belt","icon":"inv_belt_32","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":385},"isBase":true}}}, +{"id":31198,"name":"Voidhide Cord","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":253},"isBase":true}}}, +{"id":31199,"name":"Voidweave Cilice","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":44,"stats":{"22":180},"isBase":true}}}, +{"id":31200,"name":"Shield of the Wayward Footman","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,2477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":24,"10":26,"22":2477},"isBase":true}}}, +{"id":31201,"name":"Illidari Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"22":160},"isBase":true}}}, +{"id":31202,"name":"Girdle of Divine Blessing","icon":"inv_belt_08","type":8,"armorType":4,"stats":[0,0,37,22,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":37,"3":22,"6":18,"22":534},"isBase":true}}}, +{"id":31203,"name":"Arcane Loop","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"isBase":true}}}, +{"id":31204,"name":"The Gunblade","icon":"inv_weapon_rifle_07","type":14,"rangedWeaponType":3,"stats":[0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"weaponDamageMin":178,"weaponDamageMax":332,"weaponSpeed":2.8,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"weaponDamageMin":178,"weaponDamageMax":332,"stats":{"1":57},"isBase":true}}}, +{"id":31209,"name":"Chimaerascale Legplates","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":973},"isBase":true}}}, +{"id":31210,"name":"Chimaerascale Legguards","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":672},"isBase":true}}}, +{"id":31211,"name":"Chimaerahide Pants","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":440},"isBase":true}}}, +{"id":31212,"name":"Chimaerahide Leggings","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":313},"isBase":true}}}, +{"id":31213,"name":"Abyssal Plate Sabatons","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":765},"isBase":true}}}, +{"id":31214,"name":"Abyssal Mail Greaves","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":528},"isBase":true}}}, +{"id":31215,"name":"Abyssal Leather Treads","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":346},"isBase":true}}}, +{"id":31216,"name":"Abyssal Cloth Footwraps","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":246},"isBase":true}}}, +{"id":31217,"name":"Crimson Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":904},"isBase":true}}}, +{"id":31218,"name":"Fiery Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":624},"isBase":true}}}, +{"id":31219,"name":"Emerald Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":409},"isBase":true}}}, +{"id":31220,"name":"Amethyst Beholder Eye","icon":"inv_misc_eye_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"22":291},"isBase":true}}}, +{"id":31221,"name":"Illidari Vambraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"22":442},"isBase":true}}}, +{"id":31222,"name":"Headdress of Inner Rage","icon":"inv_helmet_57","type":1,"armorType":3,"stats":[0,46,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":46,"2":30,"5":20,"22":526},"isBase":true}}}, +{"id":31223,"name":"Illidari Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"22":300},"isBase":true}}}, +{"id":31224,"name":"Illidari Bracers","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"22":196},"isBase":true}}}, +{"id":31225,"name":"Illidari Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"22":140},"isBase":true}}}, +{"id":31226,"name":"Leggings of the Sly","icon":"inv_pants_cloth_12","type":9,"armorType":2,"stats":[0,30,28,0,0,0,20,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":57,"stats":{"1":30,"2":28,"6":20,"9":29,"22":371},"isBase":true}}}, +{"id":31230,"name":"Abyss Walker's Boots","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,24,26,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":43,"stats":{"2":24,"3":26,"6":22,"22":208},"isBase":true}}}, +{"id":31234,"name":"Crystalblade of the Draenei","icon":"inv_sword_79","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":25,"weaponDamageMin":82,"weaponDamageMax":153,"weaponSpeed":1.6,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":25,"weaponDamageMin":82,"weaponDamageMax":153,"stats":{"2":18,"9":13,"23":56},"isBase":true}}}, +{"id":31237,"name":"Elekk Hide Leggings","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,38,28,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":38,"2":28,"6":20,"7":20,"22":393},"isBase":true}}}, +{"id":31240,"name":"Scales of the Beast","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,30,42,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"1":30,"2":42,"6":30,"22":599},"isBase":true}}}, +{"id":31255,"name":"Cloak of the Craft","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,25,15,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"1":25,"2":15,"5":13,"22":160},"isBase":true}}}, +{"id":31258,"name":"Band of Sorrow","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,27,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":27,"3":13,"4":20},"isBase":true}}}, +{"id":31272,"name":"Crown of Endless Knowledge","icon":"inv_misc_gem_bloodstone_02","type":1,"armorType":1,"stats":[0,0,50,31,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":58,"stats":{"2":50,"3":31,"4":23,"22":260},"isBase":true}}}, +{"id":31275,"name":"Necklace of Trophies","icon":"inv_jewelry_necklace_19","type":2,"stats":[22,15,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"0":22,"1":15,"5":14},"isBase":true}}}, +{"id":31276,"name":"Boots of Zealotry","icon":"inv_boots_chain_04","type":10,"armorType":4,"stats":[22,0,26,0,0,20,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,735,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"0":22,"2":26,"5":20,"6":21,"22":735},"isBase":true}}}, +{"id":31277,"name":"Pathfinder's Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":106,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":33,"stats":{"1":25,"2":26},"isBase":true}}}, +{"id":31280,"name":"Thundercaller's Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,30,30,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"2":30,"3":30,"6":18,"22":453},"isBase":true}}}, +{"id":31281,"name":"Mask of Veiled Death","icon":"inv_helmet_42","type":1,"armorType":2,"stats":[0,40,0,0,0,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"1":40,"5":19,"6":30,"22":386},"isBase":true}}}, +{"id":31282,"name":"Shroud of Spiritual Purity","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,45,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":59,"stats":{"2":45,"3":31,"4":32,"22":338},"isBase":true}}}, +{"id":31283,"name":"Sash of Sealed Fate","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,23,30,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":106,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"106":{"randPropPoints":45,"stats":{"2":23,"3":30,"6":23,"22":190},"isBase":true}}}, +{"id":31284,"name":"Bracers of Recklessness","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[29,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":29,"2":18,"22":487},"isBase":true}}}, +{"id":31285,"name":"Chestguard of the Talon","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,36,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":36,"2":59,"22":503},"isBase":true}}}, +{"id":31286,"name":"Breastplate of Rapid Striking","icon":"inv_chest_plate10","type":5,"armorType":3,"stats":[0,40,35,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":40,"2":35,"5":20,"6":20,"22":768},"isBase":true}}}, +{"id":31287,"name":"Draenei Honor Guard Shield","icon":"inv_shield_06","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,16,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":24,"3":16,"6":21,"22":2931},"isBase":true}}}, +{"id":31288,"name":"The Master's Treads","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,24,41,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"1":24,"2":41,"5":16,"22":346},"isBase":true}}}, +{"id":31289,"name":"Staff of Divine Infusion","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,35,0,50,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":146,"weaponDamageMax":220,"weaponSpeed":3.5,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":146,"weaponDamageMax":220,"stats":{"2":35,"4":50,"14":129},"isBase":true}}}, +{"id":31290,"name":"Band of Dominion","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,0,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"3":24,"6":21},"isBase":true}}}, +{"id":31291,"name":"Crystalforged War Axe","icon":"inv_axe_40","type":13,"weaponType":1,"handType":4,"stats":[0,0,50,0,0,0,27,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"weaponDamageMin":307,"weaponDamageMax":461,"weaponSpeed":3.5,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":62,"weaponDamageMin":307,"weaponDamageMax":461,"stats":{"2":50,"6":27,"12":80,"13":80},"isBase":true}}}, +{"id":31292,"name":"Crystal Pulse Shield","icon":"inv_shield_35","type":13,"weaponType":7,"handType":3,"stats":[0,0,36,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":35,"stats":{"2":36,"3":16,"4":16,"22":2940},"isBase":true}}}, +{"id":31293,"name":"Girdle of Gale Force","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,32,21,0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"1":32,"2":21,"5":16,"6":20,"22":436},"isBase":true}}}, +{"id":31294,"name":"Pauldrons of Surging Mana","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,22,24,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"2":22,"3":24,"4":32,"22":581},"isBase":true}}}, +{"id":31295,"name":"Chestguard of the Dark Stalker","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,42,31,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"1":42,"2":31,"6":32,"22":509},"isBase":true}}}, +{"id":31297,"name":"Robe of the Crimson Order","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,35,43,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"112":{"randPropPoints":62,"stats":{"2":35,"3":43,"5":30,"22":363},"isBase":true}}}, +{"id":31298,"name":"Legguards of the Shattered Hand","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[39,32,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":39,"1":32,"5":24,"22":987},"isBase":true}}}, +{"id":31299,"name":"The Oathkeeper","icon":"inv_mace_47","type":13,"weaponType":4,"handType":4,"stats":[35,0,24,0,0,26,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":309,"weaponDamageMax":516,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":309,"weaponDamageMax":516,"stats":{"0":35,"2":24,"5":26,"6":32},"isBase":true}}}, +{"id":31303,"name":"Valanos' Longbow","icon":"inv_weapon_bow_04","type":14,"rangedWeaponType":1,"stats":[0,35,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":224,"weaponDamageMax":417,"weaponSpeed":2.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":224,"weaponDamageMax":417,"stats":{"1":35,"5":32,"6":32},"isBase":true}}}, +{"id":31304,"name":"The Essence Focuser","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,28,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"4":28,"14":190},"isBase":true}}}, +{"id":31305,"name":"Ced's Carver","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,13,0,0,0,16,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":13,"6":16,"12":30,"13":30},"isBase":true}}}, +{"id":31306,"name":"Leggings of the Sacred Crest","icon":"inv_pants_plate_01","type":9,"armorType":1,"stats":[0,0,31,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":31,"3":32,"4":40,"22":323},"isBase":true}}}, +{"id":31308,"name":"The Bringer of Death","icon":"inv_staff_06","type":13,"weaponType":8,"handType":4,"stats":[0,0,59,0,0,0,42,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"stats":{"2":59,"6":42,"14":151},"isBase":true}}}, +{"id":31312,"name":"Sinister Area 52 Boots","icon":"inv_boots_chain_04","type":10,"armorType":1,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":30,"3":28,"22":219},"isBase":true}}}, +{"id":31313,"name":"Nether-Rocket Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,0,24,28,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":24,"3":28,"4":10,"22":280},"isBase":true}}}, +{"id":31314,"name":"Rocket-Chief Pauldrons","icon":"inv_shoulder_10","type":3,"armorType":3,"stats":[0,0,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":30,"3":28,"22":514},"isBase":true}}}, +{"id":31315,"name":"Goblin Girdle","icon":"inv_belt_11","type":8,"armorType":4,"stats":[19,0,30,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":19,"2":30,"6":18,"22":567},"isBase":true}}}, +{"id":31318,"name":"Singing Crystal Axe","icon":"inv_axe_72","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":342,"weaponDamageMax":514,"weaponSpeed":3.5,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":342,"weaponDamageMax":514,"isBase":true}}}, +{"id":31319,"name":"Band of Impenetrable Defenses","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,36,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":36,"9":26},"isBase":true}}}, +{"id":31320,"name":"Chestguard of Exile","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,33,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"0":44,"2":33,"6":36,"22":1183},"isBase":true}}}, +{"id":31321,"name":"Choker of Repentance","icon":"inv_jewelry_necklace_33","type":2,"stats":[23,0,23,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"0":23,"2":23,"6":19},"isBase":true}}}, +{"id":31322,"name":"The Hammer of Destiny","icon":"inv_hammer_28","type":13,"weaponType":4,"handType":4,"stats":[32,0,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":352,"weaponDamageMax":529,"weaponSpeed":3.6,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":352,"weaponDamageMax":529,"stats":{"0":32,"2":30,"6":29},"isBase":true}}}, +{"id":31323,"name":"Don Santos' Famous Hunting Rifle","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":2.7,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":231,"weaponDamageMax":430,"isBase":true}}}, +{"id":31326,"name":"Truestrike Ring","icon":"inv_jewelry_ring_58","type":11,"stats":[0,21,30,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"1":21,"2":30,"5":18},"isBase":true}}}, +{"id":31328,"name":"Leggings of Beast Mastery","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,30,45,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"1":30,"2":45,"6":24,"7":24,"22":705},"isBase":true}}}, +{"id":31329,"name":"Lifegiving Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,20,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":20,"3":29,"4":12,"22":188},"isBase":true}}}, +{"id":31330,"name":"Lightning Crown","icon":"inv_helmet_06","type":1,"armorType":3,"stats":[0,0,0,46,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"3":46,"6":43,"22":655},"isBase":true}}}, +{"id":31331,"name":"The Night Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"weaponSpeed":1.8,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":135,"weaponDamageMax":204,"isBase":true}}}, +{"id":31332,"name":"Blinkstrike","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":318,"weaponSpeed":2.6,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":318,"isBase":true}}}, +{"id":31333,"name":"The Night Watchman","icon":"inv_helmet_43","type":1,"armorType":2,"stats":[0,45,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"1":45,"2":59,"22":429},"isBase":true}}}, +{"id":31334,"name":"Staff of Natural Fury","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,91,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":293,"weaponDamageMax":441,"weaponSpeed":3,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":293,"weaponDamageMax":441,"stats":{"2":31,"12":70,"13":70,"23":91},"isBase":true}}}, +{"id":31335,"name":"Kilt of Living Growth","icon":"inv_pants_mail_08","type":9,"armorType":2,"stats":[0,0,44,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":44,"3":35,"4":38,"22":462},"isBase":true}}}, +{"id":31336,"name":"Blade of Wizardry","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"weaponSpeed":1.8,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":59,"weaponDamageMax":110,"stats":{"14":204},"isBase":true}}}, +{"id":31338,"name":"Charlotte's Ivy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,20,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Twin Stars","setId":667,"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":35,"3":20,"4":14},"isBase":true}}}, +{"id":31339,"name":"Lola's Eve","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,27,25,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Twin Stars","setId":667,"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":27,"3":25,"4":13},"isBase":true}}}, +{"id":31340,"name":"Will of Edward the Odd","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,45,45,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":45,"3":45,"6":30,"22":377},"isBase":true}}}, +{"id":31341,"name":"Wyrmcultist's Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":14,"18":24,"22":160},"isBase":true}}}, +{"id":31342,"name":"The Ancient Scepter of Sue-Min","icon":"inv_mace_53","type":13,"weaponType":4,"handType":2,"stats":[0,0,23,0,20,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":2.1,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":29,"weaponDamageMin":69,"weaponDamageMax":129,"stats":{"2":23,"4":20,"14":204},"isBase":true}}}, +{"id":31343,"name":"Kamaei's Cerulean Skirt","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,38,53,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":38,"3":53,"4":21,"22":329},"isBase":true}}}, +{"id":31364,"name":"Wildguard Breastplate","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[0,0,45,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,60,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38473}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":45,"9":14,"20":60,"22":1405},"isBase":true}}}, +{"id":31367,"name":"Wildguard Leggings","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38475}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":55,"20":60,"22":1230},"isBase":true}}}, +{"id":31368,"name":"Wildguard Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,58,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,50,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38476}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":58,"9":28,"20":50,"22":1142},"isBase":true}}}, +{"id":31369,"name":"Iceguard Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,49,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,60,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38477}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":49,"9":10,"19":60,"22":1405},"isBase":true}}}, +{"id":31370,"name":"Iceguard Leggings","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,1035,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38478}}],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":55,"19":60,"22":1035},"isBase":true}}}, +{"id":31371,"name":"Iceguard Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[0,0,64,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":38479}}],"scalingOptions":{"100":{"randPropPoints":68,"stats":{"2":64,"9":20,"19":50,"22":961},"isBase":true}}}, +{"id":31375,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,55,28,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":28,"4":16,"16":22,"22":414,"23":11},"isBase":true}}}, +{"id":31376,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,72,34,16,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":72,"3":34,"4":16,"16":28,"22":538,"23":11},"isBase":true}}}, +{"id":31377,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,75,38,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":75,"3":38,"4":26,"16":29,"22":580,"23":17},"isBase":true}}}, +{"id":31378,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,21,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":48,"3":21,"4":10,"16":20,"22":497,"23":11},"isBase":true}}}, +{"id":31379,"name":"Gladiator's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,65,34,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":65,"3":34,"4":16,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":31380,"name":"Acrobat's Mark of the Sha'tar","icon":"inv_jewelry_ring_64","type":11,"stats":[29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":29,"1":12},"isBase":true}}}, +{"id":31381,"name":"Aggressor's Mark of the Sha'tar","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,0,0,0,0,29,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"6":29,"12":24,"13":24},"isBase":true}}}, +{"id":31382,"name":"Mage's Mark of the Sha'tar","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,0,12,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"3":12,"6":29},"isBase":true}}}, +{"id":31383,"name":"Spiritualist's Mark of the Sha'tar","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,0,29,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"3":29,"4":12},"isBase":true}}}, +{"id":31396,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":27,"4":18,"6":23,"16":25,"22":997},"isBase":true}}}, +{"id":31397,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":21,"16":21,"22":623},"isBase":true}}}, +{"id":31398,"name":"The Frozen Eye","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":38503}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":12,"19":35},"isBase":true}}}, +{"id":31399,"name":"The Natural Ward","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":38504}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":28,"20":35},"isBase":true}}}, +{"id":31400,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,63,28,0,0,17,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":63,"3":28,"6":17,"16":30,"22":810},"isBase":true}}}, +{"id":31406,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,70,36,16,0,21,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":36,"4":16,"6":21,"16":29,"22":873},"isBase":true}}}, +{"id":31407,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,46,19,16,0,18,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":46,"3":19,"4":16,"6":18,"16":20,"22":748},"isBase":true}}}, +{"id":31409,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"16":28,"22":299},"isBase":true}}}, +{"id":31410,"name":"Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,25,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":25,"16":30,"22":389},"isBase":true}}}, +{"id":31411,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,28,28,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":79,"3":28,"4":28,"16":30,"22":419},"isBase":true}}}, +{"id":31412,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":19,"16":24,"22":359},"isBase":true}}}, +{"id":31413,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,21,16,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":21,"4":16,"16":25,"22":479},"isBase":true}}}, +{"id":31414,"name":"Wild Wood Staff","icon":"inv_staff_49","type":13,"weaponType":8,"handType":4,"stats":[0,21,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"weaponSpeed":3.2,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"stats":{"1":21,"2":58},"isBase":true}}}, +{"id":31415,"name":"Iron Oak Shield","icon":"inv_shield_03","type":13,"weaponType":7,"handType":3,"stats":[21,0,16,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,2617,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"ilvl":111,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"111":{"randPropPoints":29,"stats":{"0":21,"2":16,"9":8,"22":2617},"isBase":true}}}, +{"id":31416,"name":"Scorch Wood Bow","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,38,34,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":138,"weaponDamageMax":257,"weaponSpeed":2.2,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":138,"weaponDamageMax":257,"stats":{"1":38,"2":34,"6":16},"isBase":true}}}, +{"id":31417,"name":"Staff of the Ashtongue Deathsworn","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,71,0,25,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":155,"weaponDamageMax":233,"weaponSpeed":3.7,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":155,"weaponDamageMax":233,"stats":{"2":71,"4":25,"14":129},"isBase":true}}}, +{"id":31418,"name":"Sylvanaar Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,24,26,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":24,"3":26,"4":6,"22":178},"isBase":true}}}, +{"id":31419,"name":"Living Grove Shoulderpads","icon":"inv_shoulder_26","type":3,"armorType":2,"stats":[0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"2":28,"22":300},"isBase":true}}}, +{"id":31420,"name":"Protector's Boots","icon":"inv_boots_chain_02","type":10,"armorType":3,"stats":[0,26,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"2":23,"6":10,"22":420},"isBase":true}}}, +{"id":31421,"name":"Sentinel Armbands","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[20,0,10,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"0":20,"2":10,"6":11,"22":394},"isBase":true}}}, +{"id":31422,"name":"Heavy Elven Dirk","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.8,"ilvl":102,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"1":17,"2":11},"isBase":true}}}, +{"id":31423,"name":"Wolf Hewer's Axe","icon":"inv_axe_05","type":13,"weaponType":1,"handType":2,"stats":[17,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":105,"weaponDamageMax":197,"weaponSpeed":2.4,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":105,"weaponDamageMax":197,"stats":{"0":17,"2":10},"isBase":true}}}, +{"id":31424,"name":"Arcane Wand of Sylvanaar","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,11,17,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":35,"weaponDamageMax":66,"weaponSpeed":1.6,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":35,"weaponDamageMax":66,"stats":{"2":11,"3":17,"14":141},"isBase":true}}}, +{"id":31425,"name":"Ogre Vanquisher's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,10,15,6,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":10,"3":15,"4":6,"6":26,"22":160},"isBase":true}}}, +{"id":31426,"name":"Agile Mountain Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,20,12,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"1":20,"2":12,"5":11,"22":175},"isBase":true}}}, +{"id":31427,"name":"Sylvanaar Defender's Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":3,"stats":[0,26,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"5":10,"6":15,"22":458},"isBase":true}}}, +{"id":31428,"name":"Commander Skyshadow's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":15,"5":10,"6":26,"22":563},"isBase":true}}}, +{"id":31429,"name":"Spelunker's Mantle","icon":"inv_shoulder_23","type":3,"armorType":1,"stats":[0,0,22,26,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":22,"3":26,"6":10,"22":214},"isBase":true}}}, +{"id":31430,"name":"Miner's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,15,26,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":15,"3":26,"4":15,"22":250},"isBase":true}}}, +{"id":31431,"name":"All-Weather Armguards","icon":"inv_bracer_03","type":6,"armorType":3,"stats":[0,0,0,20,8,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"3":20,"4":8,"6":11,"22":267},"isBase":true}}}, +{"id":31432,"name":"Explorer's Boots","icon":"inv_boots_chain_03","type":10,"armorType":4,"stats":[26,0,23,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":26,"2":23,"6":10,"22":619},"isBase":true}}}, +{"id":31433,"name":"Sylvanaar Elite Caster's Armor","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,34,36,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":34,"3":36,"4":10,"22":302},"isBase":true}}}, +{"id":31434,"name":"Ogre Assassin's Britches","icon":"inv_pants_07","type":9,"armorType":2,"stats":[0,36,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"1":36,"2":39,"22":371},"isBase":true}}}, +{"id":31435,"name":"Gurn's Horned Helmet","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,36,30,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":36,"2":30,"6":15,"22":556},"isBase":true}}}, +{"id":31436,"name":"Sylvanaar Champion's Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[23,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":23,"2":22,"6":20,"22":757},"isBase":true}}}, +{"id":31438,"name":"Fizit's Mantle of Drake Hunting","icon":"inv_shoulder_09","type":3,"armorType":1,"stats":[0,0,27,15,18,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":27,"3":15,"4":18,"6":11,"22":226},"isBase":true}}}, +{"id":31439,"name":"Precise Gloves of Alacrity","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,27,23,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":27,"2":23,"5":11,"22":265},"isBase":true}}}, +{"id":31440,"name":"Devolved Drake Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,27,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":27,"2":23,"5":10,"22":364},"isBase":true}}}, +{"id":31441,"name":"Clocktock's Jumpers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[15,0,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":15,"5":11,"6":27,"22":656},"isBase":true}}}, +{"id":31442,"name":"Metro's Slimming Legs","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,23,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":23,"3":36,"4":20,"22":264},"isBase":true}}}, +{"id":31443,"name":"Nickwinkle's Harness Experiment","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,20,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"1":20,"2":57,"22":424},"isBase":true}}}, +{"id":31444,"name":"Party Hat Mistake","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,30,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":30,"3":36,"4":16,"22":526},"isBase":true}}}, +{"id":31445,"name":"Last Year's \"In\" Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[24,0,24,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":24,"2":24,"6":16,"22":537},"isBase":true}}}, +{"id":31446,"name":"Vibro Shanker","icon":"inv_weapon_shortblade_24","type":13,"weaponType":2,"handType":2,"stats":[0,10,15,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"stats":{"1":10,"2":15,"8":11},"isBase":true}}}, +{"id":31447,"name":"Vibro Dagger","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,24,0,10,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"stats":{"2":24,"4":10,"14":141},"isBase":true}}}, +{"id":31448,"name":"Vibro Sword","icon":"inv_weapon_shortblade_29","type":13,"weaponType":9,"handType":2,"stats":[0,0,17,0,10,0,10,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"stats":{"2":17,"4":10,"6":10,"14":141},"isBase":true}}}, +{"id":31452,"name":"Energized Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"2":18,"3":20,"4":5,"22":132},"isBase":true}}}, +{"id":31453,"name":"Charged Footwear","icon":"inv_boots_plate_05","type":10,"armorType":2,"stats":[0,15,16,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":15,"2":16,"6":27,"22":291},"isBase":true}}}, +{"id":31454,"name":"Scalewing Gloves","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,24,24,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":24,"2":24,"5":16,"22":404},"isBase":true}}}, +{"id":31455,"name":"Muscle Toning Belt","icon":"inv_belt_13","type":8,"armorType":4,"stats":[15,0,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":15,"5":11,"6":27,"22":537},"isBase":true}}}, +{"id":31456,"name":"Gnomish Casting Boots","icon":"inv_boots_chain_01","type":10,"armorType":1,"stats":[0,0,12,16,7,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":12,"3":16,"4":7,"6":28,"22":219},"isBase":true}}}, +{"id":31457,"name":"Toshley's Station Hero's Hat","icon":"inv_helmet_50","type":1,"armorType":2,"stats":[0,21,22,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"2":22,"6":37,"22":364},"isBase":true}}}, +{"id":31458,"name":"Razaani-Buster Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,21,15,0,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"2":15,"5":10,"6":37,"22":599},"isBase":true}}}, +{"id":31459,"name":"Soul Saver's Chest Plate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[37,0,17,0,0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":37,"2":17,"5":15,"6":21,"22":1009},"isBase":true}}}, +{"id":31460,"name":"Sha'tari Vindicator's Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,33,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"10":33,"22":635},"isBase":true}}}, +{"id":31461,"name":"A'dal's Gift","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,38,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":29,"6":21,"22":208},"isBase":true}}}, +{"id":31462,"name":"Shattrath's Champion Belt","icon":"inv_belt_11","type":8,"armorType":3,"stats":[0,25,33,0,0,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":33,"5":15,"6":21,"22":440},"isBase":true}}}, +{"id":31464,"name":"Naaru Belt of Precision","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,25,33,0,0,15,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":33,"5":15,"9":21,"22":290},"isBase":true}}}, +{"id":31465,"name":"Sha'tari Anchorite's Cloak","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[0,0,41,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":41,"3":17,"22":185},"isBase":true}}}, +{"id":31470,"name":"Witch Doctor's Beads","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,34,35,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":34,"3":35,"4":9,"22":285},"isBase":true}}}, +{"id":31471,"name":"T'chali's Kilt","icon":"inv_pants_12","type":9,"armorType":2,"stats":[0,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"1":35,"2":38,"22":351},"isBase":true}}}, +{"id":31472,"name":"Hexxer's Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"2":23,"5":10,"22":344},"isBase":true}}}, +{"id":31473,"name":"Ogre Defiler's Handguards","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":15,"5":10,"6":26,"22":563},"isBase":true}}}, +{"id":31474,"name":"Wand of the Ancestors","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,11,17,0,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":36,"weaponDamageMax":69,"weaponSpeed":1.6,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":36,"weaponDamageMax":69,"stats":{"2":11,"3":17,"14":141},"isBase":true}}}, +{"id":31475,"name":"Thunderlord Scalpel","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,0,24,0,10,0,0,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"weaponSpeed":1.8,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":77,"stats":{"2":24,"4":10,"14":141},"isBase":true}}}, +{"id":31476,"name":"Slow Death Dirk","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"weaponSpeed":1.8,"ilvl":105,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":20,"weaponDamageMin":83,"weaponDamageMax":155,"stats":{"1":17,"2":11},"isBase":true}}}, +{"id":31477,"name":"Red Hands of the Thunderlord","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,24,26,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"2":24,"3":26,"4":6,"22":178},"isBase":true}}}, +{"id":31478,"name":"Tor'chunk's Foot Covers","icon":"inv_boots_chain_04","type":10,"armorType":2,"stats":[0,15,15,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":15,"2":15,"6":26,"22":275},"isBase":true}}}, +{"id":31479,"name":"Rugged Mountain Bracers","icon":"inv_bracer_13","type":6,"armorType":3,"stats":[0,0,0,20,8,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"3":20,"4":8,"6":11,"22":267},"isBase":true}}}, +{"id":31480,"name":"Ogre Beater's Belt","icon":"inv_belt_11","type":8,"armorType":4,"stats":[15,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":15,"5":10,"6":26,"22":506},"isBase":true}}}, +{"id":31481,"name":"Thunderlord Armbands","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"2":18,"3":20,"4":4,"22":125},"isBase":true}}}, +{"id":31482,"name":"Dire Wolf Handler Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"2":23,"5":10,"22":250},"isBase":true}}}, +{"id":31483,"name":"Gor'drek's Pauldrons","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[26,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":26,"2":10,"6":15,"22":675},"isBase":true}}}, +{"id":31484,"name":"Wolf Chaps","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,26,23,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":26,"2":23,"5":10,"22":344},"isBase":true}}}, +{"id":31485,"name":"Dark Deed Leggings","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,21,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"2":21,"3":35,"4":20,"22":250},"isBase":true}}}, +{"id":31486,"name":"Bear-Strength Harness","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,20,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"1":20,"2":55,"22":401},"isBase":true}}}, +{"id":31487,"name":"Wild Horned Helm","icon":"inv_helmet_08","type":1,"armorType":3,"stats":[0,35,30,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"stats":{"1":35,"2":30,"7":14,"22":497},"isBase":true}}}, +{"id":31488,"name":"Boots of the Ancient-Killer","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[18,0,23,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":18,"2":23,"6":23,"22":619},"isBase":true}}}, +{"id":31490,"name":"Netherwing Protector's Shield","icon":"inv_shield_04","type":13,"weaponType":7,"handType":3,"stats":[0,15,22,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"1":15,"2":22,"9":15,"10":15,"22":2931},"isBase":true}}}, +{"id":31491,"name":"Netherwing Defender's Shield","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[13,0,30,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,2931,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"0":13,"2":30,"9":13,"10":13,"22":2931},"isBase":true}}}, +{"id":31492,"name":"Claw of the Netherwing Flight","icon":"inv_weapon_shortblade_38","type":13,"weaponType":2,"handType":2,"stats":[0,15,23,0,0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":100,"weaponDamageMax":186,"weaponSpeed":1.8,"ilvl":108,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":26,"weaponDamageMin":100,"weaponDamageMax":186,"stats":{"1":15,"2":23,"5":15,"8":15},"isBase":true}}}, +{"id":31493,"name":"Netherwing Spiritualist's Charm","icon":"inv_offhand_draenei_a_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,23,15,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":108,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":34,"stats":{"2":23,"3":15,"4":23},"isBase":true}}}, +{"id":31494,"name":"Netherwing Sorceror's Charm","icon":"inv_offhand_blood_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,23,15,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":108,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":34,"stats":{"2":23,"3":15,"4":16,"6":15},"isBase":true}}}, +{"id":31508,"name":"Coven Britches","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,56,21,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":56,"3":21,"4":10,"6":10,"22":279},"isBase":true}}}, +{"id":31509,"name":"Wyrmcultist's Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,15,21,10,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"2":15,"3":21,"4":10,"6":37,"22":259},"isBase":true}}}, +{"id":31510,"name":"Hewing Gloves","icon":"inv_gauntlets_24","type":7,"armorType":1,"stats":[0,0,33,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":33,"3":15,"22":189},"isBase":true}}}, +{"id":31511,"name":"Chest of the Wyrmcult","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,21,15,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"2":15,"6":37,"22":449},"isBase":true}}}, +{"id":31512,"name":"Tree Warden's Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,15,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":15,"5":11,"6":27,"22":238},"isBase":true}}}, +{"id":31513,"name":"Blackwhelp Belt","icon":"inv_belt_13","type":8,"armorType":2,"stats":[0,0,17,27,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":17,"3":27,"4":10,"6":10,"22":238},"isBase":true}}}, +{"id":31514,"name":"Dragonkin Shirt","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,37,33,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":37,"2":33,"6":15,"22":685},"isBase":true}}}, +{"id":31515,"name":"Whelpscale Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,0,33,15,16,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":33,"3":15,"4":16,"6":15,"22":428},"isBase":true}}}, +{"id":31516,"name":"Bracers of the Weald","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,11,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"1":11,"5":8,"6":20,"22":283},"isBase":true}}}, +{"id":31519,"name":"Inkling's Leggings","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[37,0,22,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,883,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":37,"2":22,"6":21,"22":883},"isBase":true}}}, +{"id":31520,"name":"Blackwing Helm","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[21,0,0,0,0,15,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":21,"5":15,"6":37,"22":820},"isBase":true}}}, +{"id":31521,"name":"Expedition Defender's Shoulders","icon":"inv_shoulder_24","type":3,"armorType":4,"stats":[18,0,16,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"0":18,"2":16,"7":18,"22":716},"isBase":true}}}, +{"id":31523,"name":"Treebole's Hoop","icon":"inv_jewelry_ring_12","type":11,"stats":[0,0,18,13,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":18,"3":13,"4":12,"6":12},"isBase":true}}}, +{"id":31526,"name":"Raven's Wood Exorciser's Band","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,18,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":18,"3":13,"4":18},"isBase":true}}}, +{"id":31527,"name":"Leafbeard Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,12,29,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":12,"2":29,"5":12},"isBase":true}}}, +{"id":31528,"name":"Ring of the Stonebark","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,12,18,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":12,"2":18,"9":19},"isBase":true}}}, +{"id":31531,"name":"Wraithcloth Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,12,21,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":12,"3":21,"4":11,"22":140},"isBase":true}}}, +{"id":31532,"name":"Supple Leather Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,22,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"1":22,"2":38,"22":308},"isBase":true}}}, +{"id":31533,"name":"Diluvian Spaulders","icon":"inv_shoulder_23","type":3,"armorType":3,"stats":[0,0,24,11,10,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":24,"3":11,"4":10,"6":11,"22":514},"isBase":true}}}, +{"id":31534,"name":"Whiteknuckle Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":28,"1":16,"2":16,"22":631},"isBase":true}}}, +{"id":31537,"name":"Darktread Boots","icon":"inv_boots_02","type":10,"armorType":1,"stats":[0,0,17,15,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":17,"3":15,"4":27,"22":207},"isBase":true}}}, +{"id":31538,"name":"Twin Moon Shoulderguards","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,26,14,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":26,"3":14,"4":14,"6":14,"22":318},"isBase":true}}}, +{"id":31539,"name":"Chaintwine Cinch","icon":"inv_belt_03","type":8,"armorType":3,"stats":[0,0,26,14,16,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":26,"3":14,"4":16,"6":14,"22":364},"isBase":true}}}, +{"id":31540,"name":"Fairweather's Wristguards","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,14,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"0":21,"2":14,"6":21,"22":418},"isBase":true}}}, +{"id":31541,"name":"Whistling Sword","icon":"inv_sword_33","type":13,"weaponType":9,"handType":2,"stats":[0,0,11,0,0,0,11,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":77,"weaponDamageMax":144,"weaponSpeed":1.6,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":77,"weaponDamageMax":144,"stats":{"2":11,"6":11,"12":22,"13":22},"isBase":true}}}, +{"id":31542,"name":"Fanged Axe","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[0,0,39,0,0,0,26,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"weaponSpeed":3.2,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"stats":{"2":39,"6":26,"12":52,"13":52},"isBase":true}}}, +{"id":31543,"name":"Adjudicator's Staff","icon":"inv_staff_14","type":13,"weaponType":8,"handType":4,"stats":[0,0,39,0,26,0,26,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":97,"weaponDamageMax":146,"weaponSpeed":2.7,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":97,"weaponDamageMax":146,"stats":{"2":39,"4":26,"6":26,"14":151},"isBase":true}}}, +{"id":31544,"name":"Clefthoof Hide Leggings","icon":"inv_pants_14","type":9,"armorType":2,"stats":[0,30,52,0,0,17,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":30,"2":52,"5":17,"8":18,"22":440},"isBase":true}}}, +{"id":31545,"name":"Oilcloth Breeches","icon":"inv_pants_cloth_14","type":9,"armorType":2,"stats":[0,30,24,0,0,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":30,"2":24,"5":25,"6":30,"22":440},"isBase":true}}}, +{"id":31546,"name":"Tourmaline Crown","icon":"inv_misc_gem_ruby_03","type":1,"armorType":1,"stats":[0,0,38,30,17,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"2":38,"3":30,"4":17,"6":30,"22":291},"isBase":true}}}, +{"id":31547,"name":"Malefactor's Eyepatch","icon":"inv_helmet_45","type":1,"armorType":3,"stats":[0,30,38,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"1":30,"2":38,"5":18,"6":30,"22":624},"isBase":true}}}, +{"id":31548,"name":"Blackened Chestplate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,30,27,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"0":30,"1":30,"2":27,"5":25,"22":1112},"isBase":true}}}, +{"id":31549,"name":"Leonine Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[45,0,27,0,0,18,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1112,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"stats":{"0":45,"2":27,"5":18,"6":16,"22":1112},"isBase":true}}}, +{"id":31552,"name":"Windchanneller's Miter","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":300},"isBase":true}}}, +{"id":31553,"name":"Windchanneller's Mantle","icon":"inv_shoulder_04","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":277},"isBase":true}}}, +{"id":31554,"name":"Windchanneller's Tunic","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":369},"isBase":true}}}, +{"id":31555,"name":"Windchanneller's Ceinture","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":208},"isBase":true}}}, +{"id":31556,"name":"Windchanneller's Leggings","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":323},"isBase":true}}}, +{"id":31557,"name":"Windchanneller's Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":246},"isBase":true}}}, +{"id":31558,"name":"Windchanneller's Bindings","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"22":161},"isBase":true}}}, +{"id":31559,"name":"Windchanneller's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":231},"isBase":true}}}, +{"id":31560,"name":"Skystalker's Shroud","icon":"inv_helmet_29","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":419},"isBase":true}}}, +{"id":31561,"name":"Skystalker's Shoulders","icon":"inv_shoulder_30","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":386},"isBase":true}}}, +{"id":31562,"name":"Skystalker's Tunic","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":515},"isBase":true}}}, +{"id":31563,"name":"Skystalker's Cord","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":290},"isBase":true}}}, +{"id":31564,"name":"Skystalker's Leggings","icon":"inv_pants_plate_20","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":451},"isBase":true}}}, +{"id":31565,"name":"Skystalker's Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":346},"isBase":true}}}, +{"id":31566,"name":"Skystalker's Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"22":225},"isBase":true}}}, +{"id":31567,"name":"Skystalker's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":322},"isBase":true}}}, +{"id":31568,"name":"Mistshroud Helm","icon":"inv_helmet_10","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":635},"isBase":true}}}, +{"id":31569,"name":"Mistshroud Shoulders","icon":"inv_shoulder_24","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":586},"isBase":true}}}, +{"id":31570,"name":"Mistshroud Tunic","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":782},"isBase":true}}}, +{"id":31571,"name":"Mistshroud Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":440},"isBase":true}}}, +{"id":31572,"name":"Mistshroud Pants","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":684},"isBase":true}}}, +{"id":31573,"name":"Mistshroud Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"22":528},"isBase":true}}}, +{"id":31574,"name":"Mistshroud Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"22":342},"isBase":true}}}, +{"id":31575,"name":"Mistshroud Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"22":489},"isBase":true}}}, +{"id":31584,"name":"High Warlord's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":23,"4":10,"16":14,"22":322,"23":9},"isBase":true}}}, +{"id":31585,"name":"High Warlord's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":43,"3":20,"4":16,"16":19,"22":419,"23":9},"isBase":true}}}, +{"id":31586,"name":"High Warlord's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":29,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":31587,"name":"High Warlord's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":31588,"name":"High Warlord's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"High Warlord's Refuge","setId":689,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":31589,"name":"Grand Marshal's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":23,"4":10,"16":14,"22":322,"23":9},"isBase":true}}}, +{"id":31590,"name":"Grand Marshal's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":43,"3":20,"4":16,"16":19,"22":419,"23":9},"isBase":true}}}, +{"id":31591,"name":"Grand Marshal's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":29,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":31592,"name":"Grand Marshal's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":31593,"name":"Grand Marshal's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Grand Marshal's Refuge","setId":688,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":31594,"name":"General's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":373,"23":11},"isBase":true}}}, +{"id":31595,"name":"General's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":455,"23":11},"isBase":true}}}, +{"id":31596,"name":"Marshal's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,373,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":373,"23":11},"isBase":true}}}, +{"id":31597,"name":"Marshal's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,51,28,18,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,455,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":28,"4":18,"16":24,"22":455,"23":11},"isBase":true}}}, +{"id":31598,"name":"General's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,31,10,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":31,"3":10,"4":10,"16":14,"22":278,"23":9},"isBase":true}}}, +{"id":31599,"name":"Marshal's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,31,10,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,278,9,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":31,"3":10,"4":10,"16":14,"22":278,"23":9},"isBase":true}}}, +{"id":31613,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,69,19,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":19,"6":30,"16":27,"22":1432},"isBase":true}}}, +{"id":31614,"name":"Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"6":24,"16":14,"22":895},"isBase":true}}}, +{"id":31615,"name":"Ancient Draenei Arcane Relic","icon":"inv_jewelry_talisman_13","type":12,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"6":21},"isBase":true}}}, +{"id":31616,"name":"Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,73,26,0,0,21,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":73,"3":26,"6":21,"16":32,"22":1164},"isBase":true}}}, +{"id":31617,"name":"Ancient Draenei War Talisman","icon":"inv_jewelry_talisman_14","type":12,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"6":21},"isBase":true}}}, +{"id":31618,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,72,32,0,0,32,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":72,"3":32,"6":32,"16":31,"22":1253},"isBase":true}}}, +{"id":31619,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,50,16,0,0,23,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":50,"3":16,"6":23,"16":20,"22":1074},"isBase":true}}}, +{"id":31620,"name":"Grand Marshal's Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":31621,"name":"High Warlord's Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":31622,"name":"Grand Marshal's Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,59,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":59,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":31623,"name":"Grand Marshal's Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":63,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":31624,"name":"Grand Marshal's Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":31625,"name":"Grand Marshal's Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Grand Marshal's Investiture","setId":691,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":57,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":31626,"name":"High Warlord's Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":60,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":31627,"name":"High Warlord's Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":63,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":31628,"name":"High Warlord's Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":31629,"name":"High Warlord's Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"High Warlord's Investiture","setId":692,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":57,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":31630,"name":"Grand Marshal's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":8,"6":21,"16":22,"22":1128},"isBase":true}}}, +{"id":31631,"name":"Grand Marshal's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":18,"6":19,"16":12,"22":705},"isBase":true}}}, +{"id":31632,"name":"Grand Marshal's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":16,"6":20,"16":20,"22":917},"isBase":true}}}, +{"id":31633,"name":"Grand Marshal's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":59,"3":24,"6":24,"16":24,"22":987},"isBase":true}}}, +{"id":31634,"name":"Grand Marshal's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Grand Marshal's Redemption","setId":693,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":31635,"name":"High Warlord's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":8,"6":21,"16":22,"22":1128},"isBase":true}}}, +{"id":31636,"name":"High Warlord's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":18,"6":19,"16":12,"22":705},"isBase":true}}}, +{"id":31637,"name":"High Warlord's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":16,"6":20,"16":20,"22":917},"isBase":true}}}, +{"id":31638,"name":"High Warlord's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":59,"3":24,"6":24,"16":24,"22":987},"isBase":true}}}, +{"id":31639,"name":"High Warlord's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"High Warlord's Redemption","setId":694,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":31640,"name":"Grand Marshal's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":31641,"name":"Grand Marshal's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":31642,"name":"Grand Marshal's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":31643,"name":"Grand Marshal's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":31644,"name":"Grand Marshal's Ringmail Shoulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Grand Marshal's Wartide","setId":695,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":31646,"name":"High Warlord's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":31647,"name":"High Warlord's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":31648,"name":"High Warlord's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":31649,"name":"High Warlord's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":31650,"name":"High Warlord's Ringmail Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"High Warlord's Wartide","setId":696,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":31660,"name":"Feralfen Skulker's Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,19,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":19,"2":41,"22":225},"isBase":true}}}, +{"id":31683,"name":"Dreadwing Skin Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,11,16,7,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":11,"3":16,"4":7,"6":28,"22":180},"isBase":true}}}, +{"id":31684,"name":"Netherhide Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,0,17,28,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":17,"3":28,"4":16,"22":280},"isBase":true}}}, +{"id":31685,"name":"Brood Mother Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,21,0,0,0,10,37,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"5":10,"6":37,"7":10,"22":599},"isBase":true}}}, +{"id":31686,"name":"Nether Protector's Chest","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[37,0,0,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"0":37,"5":15,"6":26,"22":1009},"isBase":true}}}, +{"id":31687,"name":"Mok'Nathal Mantle","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,27,16,18,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"2":27,"3":16,"4":18,"6":12,"22":239},"isBase":true}}}, +{"id":31688,"name":"Spiritcaller's Mask","icon":"ability_druid_predatoryinstincts","type":1,"armorType":2,"stats":[0,21,22,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"2":22,"6":37,"22":364},"isBase":true}}}, +{"id":31689,"name":"Mok'Nathal Hero's Pantaloons","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,21,15,0,0,10,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"stats":{"1":21,"2":15,"5":10,"6":37,"22":599},"isBase":true}}}, +{"id":31690,"name":"Belt of the Soul Saver","icon":"inv_belt_23","type":8,"armorType":4,"stats":[17,0,25,0,0,16,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":38,"stats":{"0":17,"2":25,"5":16,"6":17,"22":567},"isBase":true}}}, +{"id":31691,"name":"Natasha's Guardian Cord","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,15,25,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":15,"3":25,"4":16},"isBase":true}}}, +{"id":31692,"name":"Natasha's Ember Necklace","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,23,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":23,"3":25,"6":10},"isBase":true}}}, +{"id":31693,"name":"Natasha's Arcane Filament","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":28,"3":25},"isBase":true}}}, +{"id":31694,"name":"Natasha's Pack Collar","icon":"inv_jewelry_necklace_33","type":2,"stats":[25,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"0":25,"1":15,"2":15},"isBase":true}}}, +{"id":31695,"name":"Natasha's Choker","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,0,0,0,10,15,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"5":10,"6":15,"12":50,"13":50},"isBase":true}}}, +{"id":31696,"name":"Natasha's Battle Chain","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,0,0,0,0,0,0,13,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"ilvl":103,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":33,"stats":{"2":37,"9":13,"10":10},"isBase":true}}}, +{"id":31699,"name":"Imbued Draenethyst Crystal","icon":"inv_offhand_draenei_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,17,21,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":17,"3":21,"6":8},"isBase":true}}}, +{"id":31700,"name":"Runed Silver Staff","icon":"inv_staff_30","type":13,"weaponType":8,"handType":4,"stats":[0,0,65,55,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"weaponSpeed":3.2,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":230,"weaponDamageMax":345,"stats":{"2":65,"3":55,"4":16},"isBase":true}}}, +{"id":31701,"name":"Saboteur's Axe","icon":"inv_axe_18","type":13,"weaponType":1,"handType":4,"stats":[37,0,22,0,0,18,21,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":237,"weaponDamageMax":356,"weaponSpeed":3.3,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":50,"weaponDamageMin":237,"weaponDamageMax":356,"stats":{"0":37,"2":22,"5":18,"6":21,"12":72,"13":72},"isBase":true}}}, +{"id":31703,"name":"Nether-Stalker's Blade","icon":"inv_weapon_shortblade_12","type":13,"weaponType":2,"handType":2,"stats":[0,8,24,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":21,"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":1.8,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":21,"weaponDamageMin":87,"weaponDamageMax":162,"stats":{"1":8,"2":24,"8":6},"isBase":true}}}, +{"id":31711,"name":"Nether-Empowered Footgear","icon":"inv_boots_chain_08","type":10,"armorType":1,"stats":[0,0,12,15,7,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"2":12,"3":15,"4":7,"6":27,"22":207},"isBase":true}}}, +{"id":31712,"name":"Mok'Nathal Champion's Shoulderguards","icon":"inv_shoulder_28","type":3,"armorType":2,"stats":[0,27,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":36,"stats":{"1":27,"2":29,"22":318},"isBase":true}}}, +{"id":31713,"name":"Ritualist's Helm","icon":"inv_helmet_04","type":1,"armorType":3,"stats":[0,0,30,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":49,"stats":{"2":30,"3":36,"4":16,"22":526},"isBase":true}}}, +{"id":31714,"name":"Nether Drake Wristguards","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[20,0,12,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":105,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":27,"stats":{"0":20,"2":12,"6":11,"22":418},"isBase":true}}}, +{"id":31745,"name":"Illidari-Bane Dagger","icon":"inv_sword_78","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"isBase":true}}}, +{"id":31746,"name":"Phoenix-Fire Band","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":34,"18":30},"isBase":true}}}, +{"id":31747,"name":"Potent Sha'tari Pendant","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":23,"16":24},"isBase":true}}}, +{"id":31748,"name":"Shattrath Choker of Power","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,46,46,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"12":46,"13":46,"16":24},"isBase":true}}}, +{"id":31749,"name":"A'dal's Recovery Necklace","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":23,"16":24},"isBase":true}}}, +{"id":31790,"name":"Expedition Pendant","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,11,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":11,"2":33},"isBase":true}}}, +{"id":31791,"name":"Wildlord's Band","icon":"inv_jewelry_ring_58","type":11,"stats":[0,0,12,21,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"2":12,"3":21,"6":11},"isBase":true}}}, +{"id":31792,"name":"Evergrove Ranger's Cloak","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,12,20,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":12,"2":20,"3":12,"5":12,"22":160},"isBase":true}}}, +{"id":31793,"name":"Ruuan Weald Wristguards","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":28,"ilvl":108,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"108":{"randPropPoints":28,"stats":{"1":21,"2":21,"22":196},"isBase":true}}}, +{"id":31816,"name":"Dragonbone Greatsword","icon":"inv_sword_26","type":13,"weaponType":9,"handType":4,"stats":[40,11,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":209,"weaponDamageMax":314,"weaponSpeed":3.2,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":47,"weaponDamageMin":209,"weaponDamageMax":314,"stats":{"0":40,"1":11,"2":15},"isBase":true}}}, +{"id":31817,"name":"Dragonbone Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,19,15,0,0,10,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"1":19,"2":15,"5":10,"6":19,"22":458},"isBase":true}}}, +{"id":31818,"name":"Dragonbone Talisman","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,12,14,7,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"2":12,"3":14,"4":7,"6":15},"isBase":true}}}, +{"id":31819,"name":"Noble Plate Pauldrons","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[21,0,30,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":35,"stats":{"0":21,"2":30,"6":14,"22":675},"isBase":true}}}, +{"id":31820,"name":"Blessed Signet Ring","icon":"inv_jewelry_ring_43","type":11,"stats":[13,12,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"0":13,"1":12,"2":12,"5":12},"isBase":true}}}, +{"id":31821,"name":"Blade of Retribution","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,0,15,0,0,0,16,0,0,0,0,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":78,"weaponSpeed":1.9,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":20,"weaponDamageMin":41,"weaponDamageMax":78,"stats":{"2":15,"6":16,"14":141},"isBase":true}}}, +{"id":31823,"name":"Book of Many Blessings","icon":"inv_misc_book_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"ilvl":102,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"102":{"randPropPoints":26,"stats":{"3":18,"4":18},"isBase":true}}}, +{"id":31856,"name":"Darkmoon Card: Crusade","icon":"inv_misc_ticket_tarot_crusade","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":51,"isBase":true}}}, +{"id":31857,"name":"Darkmoon Card: Wrath","icon":"inv_misc_ticket_tarot_wrath","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":51,"isBase":true}}}, +{"id":31858,"name":"Darkmoon Card: Vengeance","icon":"inv_misc_ticket_tarot_vengeance","type":12,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":51,"stats":{"2":51},"isBase":true}}}, +{"id":31859,"name":"Darkmoon Card: Madness","icon":"inv_misc_ticket_tarot_madness","type":12,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":51,"stats":{"2":51},"isBase":true}}}, +{"id":31919,"name":"Nexus-Prince's Ring of Balance","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[20,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"0":20,"1":19,"2":30},"isBase":true}}}, +{"id":31920,"name":"Shaffar's Band of Brutality","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,0,0,0,19,20,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"5":19,"6":20,"12":40,"13":40},"isBase":true}}}, +{"id":31921,"name":"Yor's Collapsing Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,30,20,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":30,"3":20,"4":19},"isBase":true}}}, +{"id":31922,"name":"Ring of Conflict Survival","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,28,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":28,"3":20,"6":20},"isBase":true}}}, +{"id":31923,"name":"Band of the Crystalline Void","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,30,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":30,"3":20,"4":20},"isBase":true}}}, +{"id":31924,"name":"Yor's Revenge","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,30,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"ilvl":100,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":22930,"zoneId":3792}}],"scalingOptions":{"100":{"randPropPoints":38,"stats":{"2":30,"9":20,"23":54},"isBase":true}}}, +{"id":31925,"name":"Fiery Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"18":18},"isBase":true}}}, +{"id":31926,"name":"Frigid Band","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"19":18},"isBase":true}}}, +{"id":31927,"name":"Living Band","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"20":18},"isBase":true}}}, +{"id":31928,"name":"Dark Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"21":18},"isBase":true}}}, +{"id":31929,"name":"Enigmatic Band","icon":"inv_jewelry_ring_46","type":11,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"17":18},"isBase":true}}}, +{"id":31930,"name":"Enigmatic Charm","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"17":18},"isBase":true}}}, +{"id":31931,"name":"Fiery Charm","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"18":18},"isBase":true}}}, +{"id":31932,"name":"Living Charm","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"20":18},"isBase":true}}}, +{"id":31933,"name":"Dark Charm","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"21":18},"isBase":true}}}, +{"id":31934,"name":"Frigid Charm","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"19":18},"isBase":true}}}, +{"id":31935,"name":"Frigid Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"19":18,"22":179},"isBase":true}}}, +{"id":31936,"name":"Fiery Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"18":18,"22":179},"isBase":true}}}, +{"id":31937,"name":"Living Cloak","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"20":18,"22":179},"isBase":true}}}, +{"id":31938,"name":"Enigmatic Cloak","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"17":18,"22":179},"isBase":true}}}, +{"id":31939,"name":"Dark Cloak","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"stats":{"2":27,"21":18,"22":179},"isBase":true}}}, +{"id":31940,"name":"Ethereum Torque","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"isBase":true}}}, +{"id":31942,"name":"Deathwing Brood Cloak","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"22":185},"isBase":true}}}, +{"id":31943,"name":"Ethereum Band","icon":"inv_jewelry_ring_59","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"isBase":true}}}, +{"id":31958,"name":"Merciless Gladiator's Bonecracker","icon":"inv_mace_36","type":13,"weaponType":4,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":31959,"name":"Merciless Gladiator's Bonegrinder","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[42,0,55,0,0,18,42,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"weaponSpeed":3.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"stats":{"0":42,"2":55,"5":18,"6":42,"16":33},"isBase":true}}}, +{"id":31960,"name":"Merciless Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,31,62,0,0,0,21,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":31,"2":62,"6":21,"7":16,"16":21,"22":1084},"isBase":true}}}, +{"id":31961,"name":"Merciless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,30,51,0,0,0,17,17,0,0,0,0,0,0,0,0,21,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":51,"6":17,"7":17,"16":21,"22":677},"isBase":true}}}, +{"id":31962,"name":"Merciless Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,37,63,0,0,0,22,25,0,0,0,0,0,0,0,0,22,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":37,"2":63,"6":22,"7":25,"16":22,"22":880},"isBase":true}}}, +{"id":31963,"name":"Merciless Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,38,60,0,0,0,21,26,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":38,"2":60,"6":21,"7":26,"16":33,"22":948},"isBase":true}}}, +{"id":31964,"name":"Merciless Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,32,45,0,0,0,14,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":32,"2":45,"6":14,"7":12,"16":21,"22":813},"isBase":true}}}, +{"id":31965,"name":"Merciless Gladiator's Cleaver","icon":"inv_axe_54","type":13,"weaponType":1,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":31966,"name":"Merciless Gladiator's Decapitator","icon":"inv_axe_68","type":13,"weaponType":1,"handType":4,"stats":[0,0,55,0,0,18,42,0,0,0,0,0,84,84,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"weaponSpeed":3.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"stats":{"2":55,"5":18,"6":42,"12":84,"13":84,"16":33},"isBase":true}}}, +{"id":31967,"name":"Merciless Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,34,60,7,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":34,"2":60,"3":7,"16":22,"22":451,"23":16},"isBase":true}}}, +{"id":31968,"name":"Merciless Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,36,77,23,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,587,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":36,"2":77,"3":23,"16":25,"22":587,"23":16},"isBase":true}}}, +{"id":31969,"name":"Merciless Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,43,82,10,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,632,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":43,"2":82,"3":10,"16":29,"22":632,"23":12},"isBase":true}}}, +{"id":31971,"name":"Merciless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,30,57,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,542,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":57,"3":14,"16":21,"22":542,"23":16},"isBase":true}}}, +{"id":31972,"name":"Merciless Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,37,68,15,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,722,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":37,"2":68,"3":15,"16":26,"22":722,"23":20},"isBase":true}}}, +{"id":31973,"name":"Merciless Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,62,31,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":62,"3":31,"16":21,"22":328,"23":40},"isBase":true}}}, +{"id":31974,"name":"Merciless Gladiator's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,72,31,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":72,"3":31,"16":33,"22":426,"23":60},"isBase":true}}}, +{"id":31975,"name":"Merciless Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,82,45,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":82,"3":45,"16":33,"22":459,"23":60},"isBase":true}}}, +{"id":31976,"name":"Merciless Gladiator's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,31,0,13,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,393,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":45,"3":31,"5":13,"16":21,"22":393,"23":40},"isBase":true}}}, +{"id":31977,"name":"Merciless Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,72,38,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":72,"3":38,"16":24,"22":524,"23":60},"isBase":true}}}, +{"id":31978,"name":"Merciless Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":28,"16":27},"isBase":true}}}, +{"id":31979,"name":"Merciless Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,31,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":46,"3":31,"6":14,"16":23,"22":393,"23":40},"isBase":true}}}, +{"id":31980,"name":"Merciless Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,36,0,0,18,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":57,"3":36,"6":18,"16":33,"22":426,"23":60},"isBase":true}}}, +{"id":31981,"name":"Merciless Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,51,31,0,0,19,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":51,"3":31,"6":19,"16":23,"22":328,"23":40},"isBase":true}}}, +{"id":31982,"name":"Merciless Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":56,"3":30,"6":30,"16":26,"22":524,"23":60},"isBase":true}}}, +{"id":31983,"name":"Merciless Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,68,42,0,0,29,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":68,"3":42,"6":29,"16":30,"22":459,"23":60},"isBase":true}}}, +{"id":31984,"name":"Merciless Gladiator's Greatsword","icon":"inv_sword_70","type":13,"weaponType":9,"handType":4,"stats":[42,0,55,0,0,18,42,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"weaponSpeed":3.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":483,"weaponDamageMax":726,"stats":{"0":42,"2":55,"5":18,"6":42,"16":33},"isBase":true}}}, +{"id":31985,"name":"Merciless Gladiator's Hacker","icon":"inv_axe_54","type":13,"weaponType":1,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":31986,"name":"Merciless Gladiator's Crossbow of the Phoenix","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,67,0,0,0,48,0,0,0,0,0,0,83,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":403,"weaponDamageMax":605,"weaponSpeed":3,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":403,"weaponDamageMax":605,"stats":{"2":67,"6":48,"13":83,"16":42},"isBase":true}}}, +{"id":31987,"name":"Merciless Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,64,33,18,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,451,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":64,"3":33,"4":18,"16":21,"22":451,"23":12},"isBase":true}}}, +{"id":31988,"name":"Merciless Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,78,37,18,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,587,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":78,"3":37,"4":18,"16":29,"22":587,"23":12},"isBase":true}}}, +{"id":31989,"name":"Merciless Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,83,42,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,632,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":83,"3":42,"4":30,"16":31,"22":632,"23":12},"isBase":true}}}, +{"id":31990,"name":"Merciless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,53,23,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,542,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":53,"3":23,"4":10,"16":20,"22":542,"23":16},"isBase":true}}}, +{"id":31991,"name":"Merciless Gladiator's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,71,36,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,722,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":71,"3":36,"4":18,"16":27,"22":722,"23":12},"isBase":true}}}, +{"id":31992,"name":"Merciless Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,73,22,0,0,34,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":73,"3":22,"6":34,"16":31,"22":1568},"isBase":true}}}, +{"id":31993,"name":"Merciless Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":26,"16":19,"22":980},"isBase":true}}}, +{"id":31995,"name":"Merciless Gladiator's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,75,36,0,0,35,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":75,"3":36,"6":35,"16":35,"22":1372},"isBase":true}}}, +{"id":31996,"name":"Merciless Gladiator's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,53,21,0,0,25,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":53,"3":21,"6":25,"16":22,"22":1176},"isBase":true}}}, +{"id":31997,"name":"Merciless Gladiator's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,74,33,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":74,"3":33,"6":24,"16":33,"22":1274},"isBase":true}}}, +{"id":31998,"name":"Merciless Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,31,53,0,0,0,16,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":31,"2":53,"6":16,"16":24,"22":451},"isBase":true}}}, +{"id":31999,"name":"Merciless Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,37,68,0,0,0,17,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,587,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":37,"2":68,"6":17,"16":25,"22":587},"isBase":true}}}, +{"id":32000,"name":"Merciless Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,41,69,0,0,0,21,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,632,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":41,"2":69,"6":21,"16":40,"22":632},"isBase":true}}}, +{"id":32001,"name":"Merciless Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,32,47,0,0,0,24,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,542,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":32,"2":47,"6":24,"16":25,"22":542},"isBase":true}}}, +{"id":32002,"name":"Merciless Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,37,65,0,0,0,13,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,722,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":37,"2":65,"6":13,"16":25,"22":722},"isBase":true}}}, +{"id":32003,"name":"Merciless Gladiator's Fleshslicer","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32004,"name":"Merciless Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,31,57,0,0,20,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":31,"2":57,"5":20,"6":30,"16":27,"22":1084},"isBase":true}}}, +{"id":32005,"name":"Merciless Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,29,45,0,0,0,29,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":29,"2":45,"6":29,"16":22,"22":677},"isBase":true}}}, +{"id":32006,"name":"Merciless Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,37,60,0,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":37,"2":60,"6":28,"16":33,"22":880},"isBase":true}}}, +{"id":32007,"name":"Merciless Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,34,60,29,0,0,40,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"1":34,"2":60,"3":29,"6":40,"16":31,"22":948},"isBase":true}}}, +{"id":32008,"name":"Merciless Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,22,48,0,0,16,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":22,"2":48,"5":16,"6":24,"16":21,"22":813},"isBase":true}}}, +{"id":32009,"name":"Merciless Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,63,32,20,0,25,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":63,"3":32,"4":20,"6":25,"16":28,"22":1084},"isBase":true}}}, +{"id":32010,"name":"Merciless Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,54,30,0,0,25,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":54,"3":30,"6":25,"16":23,"22":677},"isBase":true}}}, +{"id":32011,"name":"Merciless Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,66,37,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":66,"3":37,"6":22,"16":32,"22":880},"isBase":true}}}, +{"id":32012,"name":"Merciless Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,76,42,20,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":76,"3":42,"4":20,"6":25,"16":33,"22":948},"isBase":true}}}, +{"id":32013,"name":"Merciless Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,51,22,16,0,20,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":51,"3":22,"4":16,"6":20,"16":21,"22":813},"isBase":true}}}, +{"id":32014,"name":"Merciless Gladiator's Maul","icon":"inv_mace_52","type":13,"weaponType":4,"handType":4,"stats":[0,0,55,0,0,18,42,0,0,0,0,0,84,84,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":2,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"2":55,"5":18,"6":42,"12":84,"13":84,"16":33},"isBase":true}}}, +{"id":32015,"name":"Merciless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,55,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":55,"3":26,"16":25,"22":328,"23":40},"isBase":true}}}, +{"id":32016,"name":"Merciless Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,27,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":70,"3":27,"16":33,"22":426,"23":60},"isBase":true}}}, +{"id":32017,"name":"Merciless Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,70,33,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":70,"3":33,"4":30,"16":31,"22":459,"23":60},"isBase":true}}}, +{"id":32018,"name":"Merciless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,53,22,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,393,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":53,"3":22,"16":25,"22":393,"23":40},"isBase":true}}}, +{"id":32019,"name":"Merciless Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,24,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":70,"3":24,"4":20,"16":28,"22":524,"23":60},"isBase":true}}}, +{"id":32020,"name":"Merciless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,75,21,0,0,32,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":75,"3":21,"6":32,"16":28,"22":1568},"isBase":true}}}, +{"id":32021,"name":"Merciless Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,59,29,0,0,25,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":59,"3":29,"6":25,"16":18,"22":980},"isBase":true}}}, +{"id":32022,"name":"Merciless Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,77,30,0,0,22,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":77,"3":30,"6":22,"16":32,"22":1274},"isBase":true}}}, +{"id":32023,"name":"Merciless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,81,37,0,0,36,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":81,"3":37,"6":36,"16":35,"22":1372},"isBase":true}}}, +{"id":32024,"name":"Merciless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,54,20,0,0,25,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":54,"3":20,"6":25,"16":23,"22":1176},"isBase":true}}}, +{"id":32025,"name":"Merciless Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,55,0,0,0,42,0,0,0,0,0,82,82,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":295,"weaponDamageMax":444,"weaponSpeed":2.2,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":295,"weaponDamageMax":444,"stats":{"2":55,"6":42,"12":82,"13":82,"16":42},"isBase":true}}}, +{"id":32026,"name":"Merciless Gladiator's Pummeler","icon":"inv_mace_36","type":13,"weaponType":4,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32027,"name":"Merciless Gladiator's Quickblade","icon":"inv_sword_71","type":13,"weaponType":9,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32028,"name":"Merciless Gladiator's Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":2.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":235,"weaponDamageMax":437,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32029,"name":"Merciless Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,65,32,18,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1084,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":65,"3":32,"4":18,"6":26,"16":26,"22":1084},"isBase":true}}}, +{"id":32030,"name":"Merciless Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,55,32,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":55,"3":32,"6":22,"16":22,"22":677},"isBase":true}}}, +{"id":32031,"name":"Merciless Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,72,34,0,0,21,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,880,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":72,"3":34,"6":21,"16":33,"22":880},"isBase":true}}}, +{"id":32032,"name":"Merciless Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,76,41,20,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":76,"3":41,"4":20,"6":25,"16":33,"22":948},"isBase":true}}}, +{"id":32033,"name":"Merciless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,52,22,16,0,18,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,813,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":52,"3":22,"4":16,"6":18,"16":21,"22":813},"isBase":true}}}, +{"id":32034,"name":"Merciless Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,328,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":53,"3":26,"16":25,"22":328,"23":40},"isBase":true}}}, +{"id":32035,"name":"Merciless Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,426,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":68,"3":31,"16":32,"22":426,"23":60},"isBase":true}}}, +{"id":32036,"name":"Merciless Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,80,44,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,459,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":80,"3":44,"16":34,"22":459,"23":60},"isBase":true}}}, +{"id":32037,"name":"Merciless Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,54,23,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":54,"3":23,"16":23,"22":393,"23":40},"isBase":true}}}, +{"id":32038,"name":"Merciless Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,30,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,524,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":70,"3":30,"16":31,"22":524,"23":60},"isBase":true}}}, +{"id":32039,"name":"Merciless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[37,0,73,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1568,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":37,"2":73,"6":27,"16":27,"22":1568},"isBase":true}}}, +{"id":32040,"name":"Merciless Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,980,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":36,"2":54,"6":24,"16":24,"22":980},"isBase":true}}}, +{"id":32041,"name":"Merciless Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[37,0,73,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":37,"2":73,"6":27,"16":27,"22":1274},"isBase":true}}}, +{"id":32042,"name":"Merciless Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[49,0,73,0,0,0,33,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"0":49,"2":73,"6":33,"16":33,"22":1372},"isBase":true}}}, +{"id":32043,"name":"Merciless Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[28,0,54,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1176,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":28,"2":54,"6":20,"16":20,"22":1176},"isBase":true}}}, +{"id":32044,"name":"Merciless Gladiator's Shanker","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":186,"weaponDamageMax":279,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":186,"weaponDamageMax":279,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32045,"name":"Merciless Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":48,"16":31,"22":4194},"isBase":true}}}, +{"id":32046,"name":"Merciless Gladiator's Shiv","icon":"inv_weapon_shortblade_45","type":13,"weaponType":2,"handType":3,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32047,"name":"Merciless Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,51,31,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,393,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":51,"3":31,"6":14,"16":23,"22":393},"isBase":true}}}, +{"id":32048,"name":"Merciless Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,68,36,0,0,20,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,426,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":68,"3":36,"6":20,"16":33,"22":426},"isBase":true}}}, +{"id":32049,"name":"Merciless Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,57,31,0,0,19,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,328,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":57,"3":31,"6":19,"16":23,"22":328},"isBase":true}}}, +{"id":32050,"name":"Merciless Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,524,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":66,"3":30,"6":30,"16":26,"22":524},"isBase":true}}}, +{"id":32051,"name":"Merciless Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,80,42,0,0,29,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":80,"3":42,"6":29,"16":30,"22":459},"isBase":true}}}, +{"id":32052,"name":"Merciless Gladiator's Slicer","icon":"inv_sword_71","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,10,19,0,0,0,0,0,30,30,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":2.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"2":27,"5":10,"6":19,"12":30,"13":30,"16":12},"isBase":true}}}, +{"id":32053,"name":"Merciless Gladiator's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,42,0,0,15,0,0,0,0,0,0,0,0,282,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"stats":{"2":42,"5":15,"14":282,"16":18},"isBase":true}}}, +{"id":32055,"name":"Merciless Gladiator's War Staff","icon":"inv_staff_53","type":13,"weaponType":8,"handType":4,"stats":[0,0,89,0,0,24,42,0,0,0,0,0,0,0,280,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":134,"weaponDamageMax":202,"weaponSpeed":2,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":93,"weaponDamageMin":134,"weaponDamageMax":202,"stats":{"2":89,"5":24,"6":42,"14":280,"16":29},"isBase":true}}}, +{"id":32056,"name":"Merciless Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,53,34,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":53,"3":34,"4":16,"16":22,"22":451,"23":12},"isBase":true}}}, +{"id":32057,"name":"Merciless Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,68,42,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,587,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":68,"3":42,"4":20,"16":28,"22":587,"23":12},"isBase":true}}}, +{"id":32058,"name":"Merciless Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,73,48,30,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,632,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":73,"3":48,"4":30,"16":31,"22":632,"23":16},"isBase":true}}}, +{"id":32059,"name":"Merciless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,28,10,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,542,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":48,"3":28,"4":10,"16":22,"22":542,"23":12},"isBase":true}}}, +{"id":32060,"name":"Merciless Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,63,42,16,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,722,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":136,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"136":{"randPropPoints":93,"stats":{"2":63,"3":42,"4":16,"16":27,"22":722,"23":12},"isBase":true}}}, +{"id":32072,"name":"Gauntlets of Dissension","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[24,23,36,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17977,"zoneId":3847}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":24,"1":23,"2":36,"9":24,"22":868},"isBase":true}}}, +{"id":32073,"name":"Spaulders of Dementia","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[25,24,34,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18473,"zoneId":3791}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":25,"1":24,"2":34,"9":23,"22":1042},"isBase":true}}}, +{"id":32076,"name":"Handguards of the Steady","icon":"inv_gauntlets_31","type":7,"armorType":3,"stats":[0,29,40,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":19220,"zoneId":3849}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":29,"2":40,"6":27,"22":600},"isBase":true}}}, +{"id":32077,"name":"Wrath Infused Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,57,28,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17537,"zoneId":3562}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":57,"3":28,"4":12,"22":600},"isBase":true}}}, +{"id":32078,"name":"Pauldrons of Wild Magic","icon":"inv_shoulder_33","type":3,"armorType":3,"stats":[0,0,47,28,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17942,"zoneId":3717}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":47,"3":28,"6":23,"22":719},"isBase":true}}}, +{"id":32080,"name":"Mantle of Shadowy Embrace","icon":"inv_shoulder_25","type":3,"armorType":2,"stats":[0,39,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17377,"zoneId":3713}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":39,"2":44,"22":472},"isBase":true}}}, +{"id":32081,"name":"Eye of the Stalker","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":17882,"zoneId":3716}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"12":60,"13":60},"isBase":true}}}, +{"id":32082,"name":"The Fel Barrier","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[22,0,30,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,3756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":18344,"zoneId":3792}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"0":22,"2":30,"9":22,"22":3756},"isBase":true}}}, +{"id":32083,"name":"Faceguard of Determination","icon":"inv_helmet_01","type":1,"armorType":4,"stats":[0,0,36,0,0,0,0,0,0,42,24,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":36,"9":42,"10":24,"22":1128},"isBase":true}}}, +{"id":32084,"name":"Helmet of the Steadfast Champion","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[0,0,54,32,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":54,"3":32,"4":26,"22":1128},"isBase":true}}}, +{"id":32085,"name":"Warpstalker Helm","icon":"inv_helmet_72","type":1,"armorType":3,"stats":[0,24,63,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":24,"2":63,"6":24,"22":779},"isBase":true}}}, +{"id":32086,"name":"Storm Master's Helmet","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,54,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,779,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":54,"3":32,"6":24,"22":779},"isBase":true}}}, +{"id":32087,"name":"Mask of the Deceiver","icon":"inv_helmet_73","type":1,"armorType":2,"stats":[0,32,63,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":32,"2":63,"5":16,"22":511},"isBase":true}}}, +{"id":32088,"name":"Cowl of Beastly Rage","icon":"inv_helmet_38","type":1,"armorType":2,"stats":[0,30,53,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,511,0,0,0,0],"gemSockets":[4,1],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":30,"2":53,"6":20,"22":511},"isBase":true}}}, +{"id":32089,"name":"Mana-Binders Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,61,29,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":61,"3":29,"6":15,"22":364},"isBase":true}}}, +{"id":32090,"name":"Cowl of Naaru Blessings","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,54,30,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"2":54,"3":30,"4":23,"22":364},"isBase":true}}}, +{"id":32093,"name":"Chancellor's Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[8],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":47,"3":22,"16":12,"22":258},"isBase":true}}}, +{"id":32094,"name":"Chancellor's Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,57,26,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[8],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":57,"3":26,"16":16,"22":336},"isBase":true}}}, +{"id":32095,"name":"Chancellor's Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,67,35,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[8],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":67,"3":35,"16":24,"22":362},"isBase":true}}}, +{"id":32096,"name":"Chancellor's Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,37,23,0,10,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,310,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[8],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":37,"3":23,"5":10,"16":19,"22":310},"isBase":true}}}, +{"id":32097,"name":"Chancellor's Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,28,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[8],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":57,"3":28,"16":16,"22":413},"isBase":true}}}, +{"id":32098,"name":"Chancellor's Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,18,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":68,"3":18,"16":21,"22":336},"isBase":true}}}, +{"id":32099,"name":"Chancellor's Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,68,30,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":68,"3":30,"16":25,"22":362},"isBase":true}}}, +{"id":32100,"name":"Chancellor's Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,22,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":42,"3":22,"16":14,"22":258},"isBase":true}}}, +{"id":32101,"name":"Chancellor's Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,51,15,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,310,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":51,"3":15,"16":15,"22":310},"isBase":true}}}, +{"id":32102,"name":"Chancellor's Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,60,25,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":60,"3":25,"16":15,"22":413},"isBase":true}}}, +{"id":32103,"name":"Chancellor's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":42,"3":21,"16":14,"22":258},"isBase":true}}}, +{"id":32104,"name":"Chancellor's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":56,"3":15,"16":19,"22":336},"isBase":true}}}, +{"id":32105,"name":"Chancellor's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":60,"3":31,"16":23,"22":362},"isBase":true}}}, +{"id":32106,"name":"Chancellor's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,310,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":44,"3":13,"16":17,"22":310},"isBase":true}}}, +{"id":32107,"name":"Chancellor's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[5],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":51,"3":23,"16":15,"22":413},"isBase":true}}}, +{"id":32108,"name":"Chancellor's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,310,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[3],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":34,"3":21,"6":8,"16":15,"22":310},"isBase":true}}}, +{"id":32109,"name":"Chancellor's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,336,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[3],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":47,"3":20,"6":17,"16":19,"22":336},"isBase":true}}}, +{"id":32110,"name":"Chancellor's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[3],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":38,"3":16,"6":17,"16":17,"22":258},"isBase":true}}}, +{"id":32111,"name":"Chancellor's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,413,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[3],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":48,"3":20,"6":17,"16":18,"22":413},"isBase":true}}}, +{"id":32112,"name":"Chancellor's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,362,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[3],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":56,"3":28,"6":22,"16":22,"22":362},"isBase":true}}}, +{"id":32113,"name":"Chancellor's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,42,16,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,363,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":17,"2":42,"3":16,"16":16,"22":363,"23":9},"isBase":true}}}, +{"id":32114,"name":"Chancellor's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,48,14,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,472,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":22,"2":48,"3":14,"16":21,"22":472,"23":9},"isBase":true}}}, +{"id":32115,"name":"Chancellor's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,23,60,22,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,508,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":23,"2":60,"3":22,"16":22,"22":508,"23":14},"isBase":true}}}, +{"id":32116,"name":"Chancellor's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,8,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,436,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":17,"2":44,"3":8,"16":13,"22":436,"23":9},"isBase":true}}}, +{"id":32117,"name":"Chancellor's Dragonhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,14,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,581,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":18,"2":53,"3":14,"16":18,"22":581,"23":9},"isBase":true}}}, +{"id":32118,"name":"Chancellor's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,363,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":41,"3":23,"4":10,"16":14,"22":363,"23":9},"isBase":true}}}, +{"id":32119,"name":"Chancellor's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,472,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":43,"3":20,"4":16,"16":19,"22":472,"23":9},"isBase":true}}}, +{"id":32120,"name":"Chancellor's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[6],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":28,"2":47,"6":14,"16":28,"22":508},"isBase":true}}}, +{"id":32121,"name":"Chancellor's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,436,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":43,"3":12,"4":6,"16":17,"22":436,"23":9},"isBase":true}}}, +{"id":32122,"name":"Chancellor's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,508,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":56,"3":29,"4":20,"16":20,"22":508,"23":14},"isBase":true}}}, +{"id":32123,"name":"Chancellor's Kodohide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,581,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":44,"3":19,"4":12,"16":18,"22":581,"23":9},"isBase":true}}}, +{"id":32124,"name":"Chancellor's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[6],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":21,"2":36,"6":11,"16":16,"22":363},"isBase":true}}}, +{"id":32125,"name":"Chancellor's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,472,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[6],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":20,"2":38,"6":10,"16":24,"22":472},"isBase":true}}}, +{"id":32126,"name":"Chancellor's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[6],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":13,"2":36,"6":11,"16":13,"22":436},"isBase":true}}}, +{"id":32127,"name":"Chancellor's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,581,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[6],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":20,"2":38,"6":10,"16":24,"22":581},"isBase":true}}}, +{"id":32128,"name":"Chancellor's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,363,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":33,"3":27,"4":10,"16":14,"22":363,"23":9},"isBase":true}}}, +{"id":32129,"name":"Chancellor's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,16,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,472,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":36,"3":29,"4":16,"16":17,"22":472,"23":9},"isBase":true}}}, +{"id":32130,"name":"Chancellor's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,508,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":50,"3":33,"4":20,"16":20,"22":508,"23":14},"isBase":true}}}, +{"id":32131,"name":"Chancellor's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,436,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":43,"3":12,"4":6,"16":17,"22":436,"23":9},"isBase":true}}}, +{"id":32132,"name":"Chancellor's Wyrmhide Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,581,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":44,"3":19,"4":12,"16":18,"22":581,"23":9},"isBase":true}}}, +{"id":32133,"name":"Chancellor's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[2],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":20,"2":48,"6":12,"7":6,"16":16,"22":886},"isBase":true}}}, +{"id":32134,"name":"Chancellor's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[2],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":21,"2":30,"6":11,"7":10,"16":14,"22":554},"isBase":true}}}, +{"id":32135,"name":"Chancellor's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,720,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[2],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":20,"2":38,"6":14,"7":14,"16":15,"22":720},"isBase":true}}}, +{"id":32136,"name":"Chancellor's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[2],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":28,"2":41,"6":14,"7":14,"16":25,"22":776},"isBase":true}}}, +{"id":32137,"name":"Chancellor's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[2],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":14,"2":28,"6":17,"7":11,"16":16,"22":665},"isBase":true}}}, +{"id":32138,"name":"Chancellor's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,12,42,0,0,22,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":12,"2":42,"5":22,"6":14,"16":22,"22":886},"isBase":true}}}, +{"id":32139,"name":"Chancellor's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":21,"2":33,"6":18,"16":17,"22":554},"isBase":true}}}, +{"id":32140,"name":"Chancellor's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,720,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":20,"2":30,"6":24,"16":24,"22":720},"isBase":true}}}, +{"id":32141,"name":"Chancellor's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":22,"2":42,"3":22,"6":28,"16":22,"22":776},"isBase":true}}}, +{"id":32142,"name":"Chancellor's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,0,0,8,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":13,"2":33,"5":8,"6":17,"16":13,"22":665},"isBase":true}}}, +{"id":32143,"name":"Chancellor's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":47,"3":14,"4":12,"6":18,"16":18,"22":886},"isBase":true}}}, +{"id":32144,"name":"Chancellor's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":39,"3":21,"6":14,"16":13,"22":554},"isBase":true}}}, +{"id":32145,"name":"Chancellor's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,720,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":45,"3":20,"6":16,"16":16,"22":720},"isBase":true}}}, +{"id":32146,"name":"Chancellor's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":52,"3":28,"4":10,"6":22,"16":22,"22":776},"isBase":true}}}, +{"id":32147,"name":"Chancellor's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":39,"3":13,"4":10,"6":12,"16":12,"22":665},"isBase":true}}}, +{"id":32148,"name":"Chancellor's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":50,"3":14,"4":12,"6":18,"16":18,"22":886},"isBase":true}}}, +{"id":32149,"name":"Chancellor's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":41,"3":21,"6":14,"16":13,"22":554},"isBase":true}}}, +{"id":32150,"name":"Chancellor's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,720,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":48,"3":20,"6":16,"16":16,"22":720},"isBase":true}}}, +{"id":32151,"name":"Chancellor's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":54,"3":28,"4":10,"6":22,"16":22,"22":776},"isBase":true}}}, +{"id":32152,"name":"Chancellor's Ringmail Shoulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,665,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[7],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":41,"3":13,"4":10,"6":12,"16":12,"22":665},"isBase":true}}}, +{"id":32153,"name":"Chancellor's Lamellar Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,50,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":50,"3":8,"6":21,"16":22,"22":1308},"isBase":true}}}, +{"id":32154,"name":"Chancellor's Lamellar Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":42,"3":18,"6":19,"16":12,"22":817},"isBase":true}}}, +{"id":32155,"name":"Chancellor's Lamellar Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,45,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":45,"3":16,"6":20,"16":20,"22":1063},"isBase":true}}}, +{"id":32156,"name":"Chancellor's Lamellar Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":53,"3":24,"6":24,"16":24,"22":1144},"isBase":true}}}, +{"id":32157,"name":"Chancellor's Lamellar Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,41,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,981,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":41,"3":10,"6":15,"16":14,"22":981},"isBase":true}}}, +{"id":32158,"name":"Chancellor's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":55,"3":8,"6":21,"16":22,"22":1308},"isBase":true}}}, +{"id":32159,"name":"Chancellor's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":45,"3":18,"6":19,"16":12,"22":817},"isBase":true}}}, +{"id":32160,"name":"Chancellor's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":50,"3":16,"6":20,"16":20,"22":1063},"isBase":true}}}, +{"id":32161,"name":"Chancellor's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"2":59,"3":24,"6":24,"16":24,"22":1144},"isBase":true}}}, +{"id":32162,"name":"Chancellor's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,981,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"2":44,"3":10,"6":15,"16":14,"22":981},"isBase":true}}}, +{"id":32163,"name":"Chancellor's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":12,"2":46,"6":24,"16":19,"22":1308},"isBase":true}}}, +{"id":32164,"name":"Chancellor's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":22,"2":30,"6":21,"16":17,"22":817},"isBase":true}}}, +{"id":32165,"name":"Chancellor's Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":20,"2":34,"6":24,"16":19,"22":1063},"isBase":true}}}, +{"id":32166,"name":"Chancellor's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":28,"2":46,"6":28,"16":23,"22":1144},"isBase":true}}}, +{"id":32167,"name":"Chancellor's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,981,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":14,"2":36,"6":17,"16":13,"22":981},"isBase":true}}}, +{"id":32168,"name":"Chancellor's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[33,0,42,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":33,"2":42,"6":13,"16":14,"22":1308},"isBase":true}}}, +{"id":32169,"name":"Chancellor's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,25,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":33,"2":25,"6":12,"16":12,"22":817},"isBase":true}}}, +{"id":32170,"name":"Chancellor's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[35,0,30,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":35,"2":30,"6":13,"16":14,"22":1063},"isBase":true}}}, +{"id":32171,"name":"Chancellor's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[43,0,42,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":43,"2":42,"6":16,"16":16,"22":1144},"isBase":true}}}, +{"id":32172,"name":"Chancellor's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[25,0,18,0,0,33,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,981,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[4],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":25,"2":18,"5":33,"16":10,"22":981},"isBase":true}}}, +{"id":32173,"name":"Chancellor's Bonecracker","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32174,"name":"Chancellor's Cleaver","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"weaponSpeed":2.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32175,"name":"Chancellor's Hacker","icon":"inv_axe_03","type":13,"weaponType":1,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32176,"name":"Chancellor's Pummeler","icon":"inv_mace_08","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"weaponSpeed":2.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32177,"name":"Chancellor's Quickblade","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32178,"name":"Chancellor's Shanker","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32179,"name":"Chancellor's Shiv","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":142,"weaponDamageMax":213,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32180,"name":"Chancellor's Slicer","icon":"inv_sword_05","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"weaponSpeed":2.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":205,"weaponDamageMax":308,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32181,"name":"Chancellor's Bonegrinder","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[31,0,46,0,0,20,31,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"weaponSpeed":3.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"stats":{"0":31,"2":46,"5":20,"6":31,"16":21},"isBase":true}}}, +{"id":32182,"name":"Chancellor's Decapitator","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,46,0,0,20,31,0,0,0,0,0,62,62,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"weaponSpeed":3.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"stats":{"2":46,"5":20,"6":31,"12":62,"13":62,"16":21},"isBase":true}}}, +{"id":32183,"name":"Chancellor's Maul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[31,0,46,0,0,20,31,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"weaponSpeed":3.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"stats":{"0":31,"2":46,"5":20,"6":31,"16":21},"isBase":true}}}, +{"id":32184,"name":"Chancellor's Painsaw","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,46,0,0,20,31,0,0,0,0,0,62,62,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":226,"weaponDamageMax":339,"weaponSpeed":2.2,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":226,"weaponDamageMax":339,"stats":{"2":46,"5":20,"6":31,"12":62,"13":62,"16":21},"isBase":true}}}, +{"id":32185,"name":"Chancellor's War Staff","icon":"inv_staff_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,21,31,0,0,0,0,0,0,0,210,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":154,"weaponDamageMax":231,"weaponSpeed":3,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":154,"weaponDamageMax":231,"stats":{"2":69,"5":21,"6":31,"14":210,"16":20},"isBase":true}}}, +{"id":32186,"name":"Chancellor's Warblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":4,"stats":[31,0,46,0,0,20,31,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"weaponSpeed":3.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":369,"weaponDamageMax":555,"stats":{"0":31,"2":46,"5":20,"6":31,"16":21},"isBase":true}}}, +{"id":32187,"name":"Chancellor's Heavy Crossbow","icon":"inv_weapon_crossbow_10","type":14,"rangedWeaponType":2,"stats":[0,0,48,0,0,0,32,0,0,0,0,0,0,76,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":328,"weaponDamageMax":493,"weaponSpeed":3.2,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":328,"weaponDamageMax":493,"stats":{"2":48,"6":32,"13":76,"16":29},"isBase":true}}}, +{"id":32188,"name":"Chancellor's Fleshslicer","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":124,"weaponDamageMax":231,"weaponSpeed":1.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":124,"weaponDamageMax":231,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32189,"name":"Chancellor's Ripper","icon":"inv_weapon_hand_02","type":13,"weaponType":3,"handType":2,"stats":[0,0,21,0,0,8,13,0,0,0,0,0,26,26,0,0,9,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":179,"weaponDamageMax":334,"weaponSpeed":2.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":179,"weaponDamageMax":334,"stats":{"2":21,"5":8,"6":13,"12":26,"13":26,"16":9},"isBase":true}}}, +{"id":32190,"name":"Chancellor's Spellblade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,13,0,0,0,0,0,0,0,0,211,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.6,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":30,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":30,"5":13,"14":211,"16":13},"isBase":true}}}, +{"id":32191,"name":"Chancellor's Battletome","icon":"inv_misc_book_12","type":13,"weaponType":5,"handType":3,"stats":[0,0,30,13,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":30,"3":13,"16":13},"isBase":true}}}, +{"id":32192,"name":"Chancellor's Barricade","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,3486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":39,"16":26,"22":3486},"isBase":true}}}, +{"id":32232,"name":"Eternium Shell Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[24,0,52,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":24,"2":52,"9":26,"22":727},"isBase":true}}}, +{"id":32234,"name":"Fists of Mukoa","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,38,37,0,0,0,25,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":37,"6":25,"7":37,"22":710},"isBase":true}}}, +{"id":32235,"name":"Cursed Vision of Sargeras","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,54,78,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"1":54,"2":78,"5":21,"6":38,"22":671},"isBase":true}}}, +{"id":32236,"name":"Rising Tide","icon":"inv_axe_56","type":13,"weaponType":1,"handType":2,"stats":[0,0,33,0,0,21,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":280,"weaponDamageMax":421,"weaponSpeed":2.6,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":280,"weaponDamageMax":421,"stats":{"2":33,"5":21,"12":44,"13":44},"isBase":true}}}, +{"id":32237,"name":"The Maelstrom's Fury","icon":"inv_weapon_shortblade_58","type":13,"weaponType":2,"handType":2,"stats":[0,0,48,0,0,0,22,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"stats":{"2":48,"6":22,"14":295},"isBase":true}}}, +{"id":32238,"name":"Ring of Calming Waves","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,45,29,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"3":29,"6":24},"isBase":true}}}, +{"id":32239,"name":"Slippers of the Seacaller","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,39,38,18,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":39,"3":38,"4":18,"6":29,"22":376},"isBase":true}}}, +{"id":32240,"name":"Guise of the Tidal Lurker","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,69,47,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,614,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":69,"3":47,"4":38,"22":614},"isBase":true}}}, +{"id":32241,"name":"Helm of Soothing Currents","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,77,53,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[3,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":77,"3":53,"4":26,"22":922},"isBase":true}}}, +{"id":32242,"name":"Boots of Oceanic Fury","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,62,47,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":62,"3":47,"6":26,"22":781},"isBase":true}}}, +{"id":32243,"name":"Pearl Inlaid Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,58,38,20,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":58,"3":38,"4":20,"6":28,"22":1142},"isBase":true}}}, +{"id":32245,"name":"Tide-Stomper's Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[26,0,56,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":26,"2":56,"9":36,"22":1142},"isBase":true}}}, +{"id":32247,"name":"Ring of Captured Storms","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,0,36,0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"3":36,"5":19,"6":29},"isBase":true}}}, +{"id":32248,"name":"Halberd of Desolation","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,51,99,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":491,"weaponDamageMax":737,"weaponSpeed":3.5,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":491,"weaponDamageMax":737,"stats":{"1":51,"2":99,"5":30},"isBase":true}}}, +{"id":32250,"name":"Pauldrons of Abyssal Fury","icon":"inv_shoulder_haremmatron_d_01","type":3,"armorType":4,"stats":[24,0,72,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":24,"2":72,"9":39,"22":1246},"isBase":true}}}, +{"id":32251,"name":"Wraps of Precise Flight","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,29,43,0,0,0,19,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":29,"2":43,"6":19,"7":18,"22":497},"isBase":true}}}, +{"id":32252,"name":"Nether Shadow Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,43,80,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":43,"2":80,"5":35,"22":755},"isBase":true}}}, +{"id":32253,"name":"Legionkiller","icon":"inv_weapon_crossbow_20","type":14,"rangedWeaponType":2,"stats":[0,66,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":356,"weaponDamageMax":662,"weaponSpeed":2.9,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":356,"weaponDamageMax":662,"stats":{"1":66,"2":95},"isBase":true}}}, +{"id":32254,"name":"The Brutalizer","icon":"inv_axe_59","type":13,"weaponType":1,"handType":2,"stats":[0,0,33,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":172,"weaponDamageMax":259,"weaponSpeed":1.6,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":172,"weaponDamageMax":259,"stats":{"2":33,"8":21,"9":22},"isBase":true}}}, +{"id":32255,"name":"Felstone Bulwark","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,29,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"3":29,"6":27,"22":4417},"isBase":true}}}, +{"id":32256,"name":"Waistwrap of Infinity","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,48,48,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":48,"3":48,"7":32,"22":308},"isBase":true}}}, +{"id":32258,"name":"Naturalist's Preserving Cinch","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":56,"3":38,"7":37,"22":639},"isBase":true}}}, +{"id":32259,"name":"Bands of the Coming Storm","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,53,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":53,"3":29,"6":21,"22":497},"isBase":true}}}, +{"id":32260,"name":"Choker of Endless Nightmares","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,0,0,0,21,27,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"5":21,"6":27,"12":72,"13":72},"isBase":true}}}, +{"id":32261,"name":"Band of the Abyssal Lord","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,53,0,0,21,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":53,"5":21,"9":27},"isBase":true}}}, +{"id":32262,"name":"Syphon of the Nathrezim","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":2.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22898,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"12":50,"13":50},"isBase":true}}}, +{"id":32263,"name":"Praetorian's Legguards","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[35,0,75,0,0,18,0,0,0,28,29,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":35,"2":75,"5":18,"9":28,"10":29,"22":1453},"isBase":true}}}, +{"id":32264,"name":"Shoulders of the Hidden Predator","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,38,71,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":71,"6":26,"22":851},"isBase":true}}}, +{"id":32265,"name":"Shadow-Walker's Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,38,59,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":59,"7":37,"22":425},"isBase":true}}}, +{"id":32266,"name":"Ring of Deceitful Intent","icon":"inv_jewelry_ring_68","type":11,"stats":[0,21,64,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":21,"2":64,"5":19},"isBase":true}}}, +{"id":32267,"name":"Boots of the Resilient","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[25,0,51,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":18805,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":25,"2":51,"10":25,"22":997},"isBase":true}}}, +{"id":32268,"name":"Myrmidon's Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[18,0,56,0,0,17,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":18,"2":56,"5":17,"9":35,"22":1142},"isBase":true}}}, +{"id":32269,"name":"Messenger of Fate","icon":"inv_weapon_shortblade_63","type":13,"weaponType":2,"handType":2,"stats":[0,22,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":194,"weaponDamageMax":292,"stats":{"1":22,"2":48},"isBase":true}}}, +{"id":32270,"name":"Focused Mana Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,43,36,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":36,"5":19,"22":239},"isBase":true}}}, +{"id":32271,"name":"Kilt of Immortal Nature","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,77,53,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":77,"3":53,"4":26,"22":661},"isBase":true}}}, +{"id":32273,"name":"Amice of Brilliant Light","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,59,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":59,"3":38,"4":37,"22":410},"isBase":true}}}, +{"id":32275,"name":"Spiritwalker Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,59,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":59,"3":38,"7":37,"22":710},"isBase":true}}}, +{"id":32276,"name":"Flashfire Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,50,38,0,0,18,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":50,"3":38,"6":18,"7":37,"22":639},"isBase":true}}}, +{"id":32278,"name":"Grips of Silent Justice","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[40,0,37,0,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":40,"2":37,"5":15,"6":25,"22":1038},"isBase":true}}}, +{"id":32279,"name":"The Seeker's Wristguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[28,0,43,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":28,"2":43,"10":30,"22":727},"isBase":true}}}, +{"id":32280,"name":"Gauntlets of Enforcement","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[22,0,70,0,0,0,0,0,21,21,24,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":22,"2":70,"8":21,"9":21,"10":24,"22":1038},"isBase":true}}}, +{"id":32323,"name":"Shadowmoon Destroyer's Drape","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,24,0,0,17,24,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":24,"5":17,"6":24,"12":72,"13":72,"22":274},"isBase":true}}}, +{"id":32324,"name":"Insidious Bands","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,29,53,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":29,"2":53,"5":12,"22":330},"isBase":true}}}, +{"id":32325,"name":"Rifle of the Stoic Guardian","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,98,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":1.9,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":98,"9":63},"isBase":true}}}, +{"id":32327,"name":"Robe of the Shadow Council","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,68,62,26,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":68,"3":62,"4":26,"6":28,"22":547},"isBase":true}}}, +{"id":32328,"name":"Botanist's Gloves of Growth","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,40,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":40,"3":38,"7":37,"22":472},"isBase":true}}}, +{"id":32329,"name":"Cowl of Benevolence","icon":"inv_helmet_32","type":1,"armorType":1,"stats":[0,0,60,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":60,"3":53,"4":42,"22":445},"isBase":true}}}, +{"id":32331,"name":"Cloak of the Illidari Council","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,36,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":36,"3":36,"6":25,"22":274},"isBase":true}}}, +{"id":32332,"name":"Torch of the Damned","icon":"inv_mace_49","type":13,"weaponType":4,"handType":4,"stats":[51,0,45,0,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":533,"weaponDamageMax":801,"weaponSpeed":3.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":533,"weaponDamageMax":801,"stats":{"0":51,"2":45,"6":38,"7":50},"isBase":true}}}, +{"id":32333,"name":"Girdle of Stability","icon":"inv_belt_33","type":8,"armorType":4,"stats":[24,0,56,0,0,0,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":24,"2":56,"9":28,"10":25,"22":934},"isBase":true}}}, +{"id":32334,"name":"Vest of Mounting Assault","icon":"inv_chest_samurai","type":5,"armorType":3,"stats":[0,58,41,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":58,"2":41,"6":58,"22":1135},"isBase":true}}}, +{"id":32335,"name":"Unstoppable Aggressor's Ring","icon":"inv_jewelry_ring_71","type":11,"stats":[36,0,28,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":36,"2":28,"6":30},"isBase":true}}}, +{"id":32336,"name":"Black Bow of the Betrayer","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,71,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":403,"weaponDamageMax":748,"weaponSpeed":3,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":107,"weaponDamageMin":403,"weaponDamageMax":748,"stats":{"1":71,"6":56},"isBase":true}}}, +{"id":32337,"name":"Shroud of Forgiveness","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,42,36,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":36,"4":20,"22":274},"isBase":true}}}, +{"id":32338,"name":"Blood-Cursed Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,40,47,0,18,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":40,"3":47,"5":18,"6":25,"22":410},"isBase":true}}}, +{"id":32339,"name":"Belt of Primal Majesty","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,58,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":58,"3":38,"7":37,"22":425},"isBase":true}}}, +{"id":32340,"name":"Garments of Temperance","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,77,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":77,"3":53,"4":50,"22":547},"isBase":true}}}, +{"id":32341,"name":"Leggings of Divine Retribution","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[51,0,51,0,0,0,35,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":51,"2":51,"6":35,"7":50,"22":1453},"isBase":true}}}, +{"id":32342,"name":"Girdle of Mighty Resolve","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,0,56,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":26,"2":56,"10":38,"22":934},"isBase":true}}}, +{"id":32343,"name":"Wand of Prismatic Focus","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,28,28,0,18,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"stats":{"2":28,"3":28,"5":18,"14":295},"isBase":true}}}, +{"id":32344,"name":"Staff of Immaculate Recovery","icon":"inv_staff_61","type":13,"weaponType":8,"handType":4,"stats":[0,0,112,0,53,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":3.2,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":224,"weaponDamageMax":337,"stats":{"2":112,"4":53,"14":295},"isBase":true}}}, +{"id":32345,"name":"Dreadboots of the Legion","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[38,0,40,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":38,"2":40,"5":18,"6":30,"22":1142},"isBase":true}}}, +{"id":32346,"name":"Boneweave Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,50,57,0,0,17,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":50,"2":57,"5":17,"6":24,"22":639},"isBase":true}}}, +{"id":32347,"name":"Grips of Damnation","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,38,59,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":59,"7":37,"22":472},"isBase":true}}}, +{"id":32348,"name":"Soul Cleaver","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[65,0,63,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":519,"weaponDamageMax":780,"weaponSpeed":3.7,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"weaponDamageMin":519,"weaponDamageMax":780,"stats":{"0":65,"2":63,"6":45},"isBase":true}}}, +{"id":32349,"name":"Translucent Spellthread Necklace","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,0,39,0,15,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"3":39,"5":15,"6":24},"isBase":true}}}, +{"id":32350,"name":"Touch of Inspiration","icon":"inv_misc_gem_ebondraenite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":29,"4":30},"isBase":true}}}, +{"id":32351,"name":"Elunite Empowered Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,45,29,0,19,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"3":29,"5":19,"6":16,"22":330},"isBase":true}}}, +{"id":32352,"name":"Naturewarden's Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,50,38,18,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":50,"3":38,"4":18,"6":26,"22":519},"isBase":true}}}, +{"id":32353,"name":"Gloves of Unfailing Faith","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,56,34,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":56,"3":34,"4":28,"22":342},"isBase":true}}}, +{"id":32354,"name":"Crown of Empowered Fate","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,60,53,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":60,"3":53,"6":42,"22":1349},"isBase":true}}}, +{"id":32361,"name":"Blind-Seers Icon","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,36,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":37,"3":36,"5":24},"isBase":true}}}, +{"id":32362,"name":"Pendant of Titans","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,43,0,0,20,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"5":20,"9":35},"isBase":true}}}, +{"id":32363,"name":"Naaru-Blessed Life Rod","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,31,23,22,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"stats":{"2":31,"3":23,"4":22,"14":295},"isBase":true}}}, +{"id":32365,"name":"Heartshatter Breastplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[63,0,45,0,0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":63,"2":45,"5":30,"6":44,"22":1661},"isBase":true}}}, +{"id":32366,"name":"Shadowmaster's Boots","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,38,62,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":62,"6":17,"22":519},"isBase":true}}}, +{"id":32367,"name":"Leggings of Devastation","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,77,51,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":77,"3":51,"5":26,"22":479},"isBase":true}}}, +{"id":32369,"name":"Blade of Savagery","icon":"inv_sword_87","type":13,"weaponType":9,"handType":2,"stats":[0,0,19,0,0,15,22,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"stats":{"2":19,"5":15,"6":22,"12":44,"13":44},"isBase":true}}}, +{"id":32370,"name":"Nadina's Pendant of Purity","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,28,36,20,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22947,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":28,"3":36,"4":20,"6":19},"isBase":true}}}, +{"id":32373,"name":"Helm of the Illidari Shatterer","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[51,0,29,0,0,34,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":51,"2":29,"5":34,"6":42,"22":1349},"isBase":true}}}, +{"id":32374,"name":"Zhar'doom, Greatstaff of the Devourer","icon":"inv_staff_59","type":13,"weaponType":8,"handType":4,"stats":[0,0,105,0,0,0,36,55,0,0,0,0,0,0,324,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":245,"weaponDamageMax":368,"weaponSpeed":3.2,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":107,"weaponDamageMin":245,"weaponDamageMax":368,"stats":{"2":105,"6":36,"7":55,"14":324},"isBase":true}}}, +{"id":32375,"name":"Bulwark of Azzinoth","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[29,0,40,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"0":29,"2":40,"9":26,"22":4979},"isBase":true}}}, +{"id":32376,"name":"Forest Prowler's Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,50,53,0,0,0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,922,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":50,"2":53,"6":20,"7":42,"22":922},"isBase":true}}}, +{"id":32377,"name":"Mantle of Darkness","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,47,34,0,0,22,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22887,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":47,"2":34,"5":22,"6":33,"22":566},"isBase":true}}}, +{"id":32389,"name":"Soulguard Leggings","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40023}}],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"2":54,"21":72,"22":436},"isBase":true}}}, +{"id":32390,"name":"Soulguard Girdle","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40024}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":280},"isBase":true}}}, +{"id":32391,"name":"Soulguard Slippers","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40020}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":342},"isBase":true}}}, +{"id":32392,"name":"Soulguard Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40021}}],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":30,"21":40,"22":218},"isBase":true}}}, +{"id":32393,"name":"Redeemed Soul Cinch","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40006}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":385},"isBase":true}}}, +{"id":32394,"name":"Redeemed Soul Moccasins","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40003}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":471},"isBase":true}}}, +{"id":32395,"name":"Redeemed Soul Wristguards","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40004}}],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":30,"21":40,"22":299},"isBase":true}}}, +{"id":32396,"name":"Redeemed Soul Legguards","icon":"inv_pants_leather_05","type":9,"armorType":2,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40005}}],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"2":54,"21":72,"22":599},"isBase":true}}}, +{"id":32397,"name":"Waistguard of Shackled Souls","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40002}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":576},"isBase":true}}}, +{"id":32398,"name":"Boots of Shackled Souls","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":39997}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":704},"isBase":true}}}, +{"id":32399,"name":"Bracers of Shackled Souls","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":52733}}],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":30,"21":40,"22":448},"isBase":true}}}, +{"id":32400,"name":"Greaves of Shackled Souls","icon":"inv_pants_plate_12","type":9,"armorType":3,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,897,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":40001}}],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"2":54,"21":72,"22":897},"isBase":true}}}, +{"id":32401,"name":"Shadesteel Girdle","icon":"inv_belt_30","type":8,"armorType":4,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40036}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":819},"isBase":true}}}, +{"id":32402,"name":"Shadesteel Sabots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40033}}],"scalingOptions":{"130":{"randPropPoints":66,"stats":{"2":40,"21":54,"22":1001},"isBase":true}}}, +{"id":32403,"name":"Shadesteel Bracers","icon":"inv_bracer_13","type":6,"armorType":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,637,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40034}}],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":30,"21":40,"22":637},"isBase":true}}}, +{"id":32404,"name":"Shadesteel Greaves","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":40035}}],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"2":54,"21":72,"22":1274},"isBase":true}}}, +{"id":32407,"name":"Creature - Maiev's Glaive","icon":"inv_weapon_shortblade_37","type":13,"weaponType":3,"handType":2,"stats":[0,0,28,0,0,16,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":28,"5":16,"14":190},"isBase":true}}}, +{"id":32414,"name":"Tom's Legs A","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[37,0,54,0,0,18,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[9],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"0":37,"2":54,"5":18,"6":29,"22":1144},"isBase":true}}}, +{"id":32415,"name":"Tom's Legs B","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[40,0,58,0,0,19,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":120,"quality":4,"classAllowlist":[9],"scalingOptions":{"120":{"randPropPoints":80,"stats":{"0":40,"2":58,"5":19,"6":30,"22":1244},"isBase":true}}}, +{"id":32416,"name":"Tom's Legs C","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[45,0,66,0,0,22,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":138,"quality":4,"classAllowlist":[9],"scalingOptions":{"138":{"randPropPoints":95,"stats":{"0":45,"2":66,"5":22,"6":35,"22":1405},"isBase":true}}}, +{"id":32417,"name":"Tom's Legs 1","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[41,0,60,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[9],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":41,"2":60,"5":20,"6":31,"22":1230},"isBase":true}}}, +{"id":32418,"name":"Tom's Legs 2","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[46,0,69,0,0,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[9],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"0":46,"2":69,"5":23,"6":35,"22":1274},"isBase":true}}}, +{"id":32419,"name":"Tom's Legs 3","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[54,0,79,0,0,26,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":102,"ilvl":145,"quality":4,"classAllowlist":[9],"scalingOptions":{"145":{"randPropPoints":102,"stats":{"0":54,"2":79,"5":26,"6":41,"22":1518},"isBase":true}}}, +{"id":32420,"name":"Night's End","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,249,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":40060}}],"scalingOptions":{"130":{"randPropPoints":49,"stats":{"2":30,"21":40,"22":249},"isBase":true}}}, +{"id":32450,"name":"Gladiator's Gavel","icon":"inv_mace_47","type":13,"weaponType":4,"handType":2,"stats":[0,0,41,0,0,0,0,0,0,0,0,0,0,0,246,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"stats":{"2":41,"14":246,"16":18},"isBase":true}}}, +{"id":32451,"name":"Gladiator's Salvation","icon":"inv_mace_47","type":13,"weaponType":4,"handType":2,"stats":[0,0,41,0,0,0,0,0,0,0,0,0,0,0,246,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"weaponSpeed":1.6,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":35,"weaponDamageMin":64,"weaponDamageMax":120,"stats":{"2":41,"14":246,"16":18},"isBase":true}}}, +{"id":32452,"name":"Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,16,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":46,"stats":{"2":32,"3":16,"16":15},"isBase":true}}}, +{"id":32461,"name":"Furious Gizmatic Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[48,0,28,0,0,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":40274}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"0":48,"2":28,"5":13,"6":38,"22":1175},"isBase":true}}}, +{"id":32466,"name":"Bland Blade","icon":"inv_sword_78","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":279,"weaponDamageMax":280,"weaponSpeed":2.6,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":279,"weaponDamageMax":280,"isBase":true}}}, +{"id":32471,"name":"Shard of Azzinoth","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":224,"weaponDamageMax":337,"weaponSpeed":1.9,"ilvl":151,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":46,"weaponDamageMin":224,"weaponDamageMax":337,"stats":{"12":64,"13":64},"isBase":true}}}, +{"id":32472,"name":"Justicebringer 2000 Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,36,46,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41311}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":36,"3":46,"6":39,"22":1175},"isBase":true}}}, +{"id":32473,"name":"Tankatronic Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[26,0,67,0,0,13,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41312}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"0":26,"2":67,"5":13,"9":35,"22":1175},"isBase":true}}}, +{"id":32474,"name":"Surestrike Goggles v2.0","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,48,28,0,0,13,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41314}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"1":48,"2":28,"5":13,"6":38,"22":820},"isBase":true}}}, +{"id":32475,"name":"Living Replicator Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,53,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41316}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":53,"3":48,"4":22,"22":820},"isBase":true}}}, +{"id":32476,"name":"Gadgetstorm Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,28,47,0,12,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,820,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41315}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":28,"3":47,"5":12,"6":40,"22":820},"isBase":true}}}, +{"id":32478,"name":"Deathblow X11 Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,48,64,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41317}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"1":48,"2":64,"5":11,"22":547},"isBase":true}}}, +{"id":32479,"name":"Wonderheal XT40 Shades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,54,48,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41318}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":54,"3":48,"4":22,"22":547},"isBase":true}}}, +{"id":32480,"name":"Magnified Moon Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,44,43,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41319}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":44,"3":43,"6":41,"22":547},"isBase":true}}}, +{"id":32482,"name":"Touch of Victory","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,38,16,0,0,0,0,0,0,0,0,0,0,267,0,16,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"weaponDamageMin":81,"weaponDamageMax":151,"weaponSpeed":1.9,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":38,"weaponDamageMin":81,"weaponDamageMax":151,"stats":{"2":38,"3":16,"14":267,"16":16},"isBase":true}}}, +{"id":32483,"name":"The Skull of Gul'dan","icon":"inv_misc_bone_elfskull_01","type":12,"stats":[0,0,0,47,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":151,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":80,"stats":{"3":47,"5":25},"isBase":true}}}, +{"id":32485,"name":"Ashtongue Talisman of Valor","icon":"inv_jewelry_necklace_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[9],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32486,"name":"Ashtongue Talisman of Equilibrium","icon":"inv_qiraj_jewelengraved","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32487,"name":"Ashtongue Talisman of Swiftness","icon":"inv_jewelry_talisman_09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[2],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32488,"name":"Ashtongue Talisman of Insight","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[3],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32489,"name":"Ashtongue Talisman of Zeal","icon":"inv_qiraj_jewelblessed","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[4],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32490,"name":"Ashtongue Talisman of Acumen","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[5],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32491,"name":"Ashtongue Talisman of Vision","icon":"inv_jewelry_necklace_31","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[7],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32492,"name":"Ashtongue Talisman of Lethality","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[6],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32493,"name":"Ashtongue Talisman of Shadows","icon":"inv_qirajidol_night","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[8],"scalingOptions":{"141":{"randPropPoints":73,"isBase":true}}}, +{"id":32494,"name":"Destruction Holo-Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,44,55,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41320}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":44,"3":55,"6":29,"22":397},"isBase":true}}}, +{"id":32495,"name":"Powerheal 4000 Lens","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,53,46,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":127,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41321}}],"scalingOptions":{"127":{"randPropPoints":86,"stats":{"2":53,"3":46,"4":28,"22":397},"isBase":true}}}, +{"id":32496,"name":"Memento of Tyrande","icon":"inv_summerfest_fireflower","type":12,"stats":[0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":151,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":80,"stats":{"3":53},"isBase":true}}}, +{"id":32497,"name":"Stormrage Signet Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,33,0,0,30,18,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":33,"5":30,"6":18,"12":66,"13":66},"isBase":true}}}, +{"id":32500,"name":"Crystal Spire of Karabor","icon":"inv_mace_56","type":13,"weaponType":4,"handType":2,"stats":[0,0,33,0,16,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":93,"weaponDamageMax":173,"weaponSpeed":1.8,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":46,"weaponDamageMin":93,"weaponDamageMax":173,"stats":{"2":33,"4":16,"14":323},"isBase":true}}}, +{"id":32501,"name":"Shadowmoon Insignia","icon":"inv_jewelcrafting_shadowsongamethyst_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22948,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"9":51},"isBase":true}}}, +{"id":32505,"name":"Madness of the Betrayer","icon":"spell_shadow_charm","type":12,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"5":20,"12":84,"13":84},"isBase":true}}}, +{"id":32508,"name":"Necklace of the Deep","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":40514}}],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"1":21,"2":20},"isBase":true}}}, +{"id":32510,"name":"Softstep Boots of Tracking","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,38,41,0,0,37,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":38,"2":41,"5":37,"6":26,"22":781},"isBase":true}}}, +{"id":32512,"name":"Girdle of Lordaeron's Fallen","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,60,32,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22871,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":60,"3":32,"7":38,"22":934},"isBase":true}}}, +{"id":32513,"name":"Wristbands of Divine Influence","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,42,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22841,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":28,"4":28,"22":239},"isBase":true}}}, +{"id":32514,"name":"Skettis Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"isBase":true}}}, +{"id":32515,"name":"Wristguards of Determination","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[19,0,37,0,0,0,0,0,0,24,13,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19516,"zoneId":3845}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":19,"2":37,"9":24,"10":13,"22":634},"isBase":true}}}, +{"id":32516,"name":"Wraps of Purification","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,46,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":46,"3":24,"4":18,"22":215},"isBase":true}}}, +{"id":32517,"name":"The Wavemender's Mantle","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22856,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":57,"3":38,"4":38,"22":851},"isBase":true}}}, +{"id":32518,"name":"Veil of Turning Leaves","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,54,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":54,"3":38,"4":38,"22":566},"isBase":true}}}, +{"id":32519,"name":"Belt of Divine Guidance","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,53,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23426,"zoneId":3959}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":53,"3":33,"4":32,"22":308},"isBase":true}}}, +{"id":32520,"name":"Manaforged Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":34,"isBase":true}}}, +{"id":32521,"name":"Faceplate of the Impenetrable","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[26,0,82,0,0,0,0,0,0,41,29,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"0":26,"2":82,"9":41,"10":29,"22":1500},"isBase":true}}}, +{"id":32522,"name":"Demonic Bulwark","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"22":2949},"isBase":true}}}, +{"id":32524,"name":"Shroud of the Highborne","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,44,31,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":44,"3":31,"7":32,"22":298},"isBase":true}}}, +{"id":32525,"name":"Cowl of the Illidari High Lord","icon":"inv_helmet_53","type":1,"armorType":1,"stats":[0,0,60,55,0,21,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"151":{"randPropPoints":107,"stats":{"2":60,"3":55,"5":21,"6":47,"22":484},"isBase":true}}}, +{"id":32526,"name":"Band of Devastation","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,44,0,0,0,0,31,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":44,"7":31,"12":66,"13":66},"isBase":true}}}, +{"id":32527,"name":"Ring of Ancient Knowledge","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,45,33,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":45,"3":33,"7":31},"isBase":true}}}, +{"id":32528,"name":"Blessed Band of Karabor","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,38,33,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":38,"3":33,"4":16,"7":30},"isBase":true}}}, +{"id":32529,"name":"Heretic's Gauntlets","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[35,0,22,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":35,"2":22,"6":20,"22":705},"isBase":true}}}, +{"id":32531,"name":"Gezzarak's Fang","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,23,26,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":23,"3":26,"4":10},"isBase":true}}}, +{"id":32532,"name":"Windrager's Coils","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,30,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":30,"6":12,"22":225},"isBase":true}}}, +{"id":32533,"name":"Karrog's Shard","icon":"inv_misc_gem_flamespessarite_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,30,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"3":30,"6":12},"isBase":true}}}, +{"id":32534,"name":"Brooch of the Immortal King","icon":"inv_jewelry_necklace_28","type":12,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"9":32},"isBase":true}}}, +{"id":32535,"name":"Gift of the Talonpriests","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"3":30},"isBase":true}}}, +{"id":32536,"name":"Terokk's Gavel","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":2.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":154,"weaponDamageMax":286,"isBase":true}}}, +{"id":32537,"name":"Terokk's Gavel","icon":"inv_hammer_20","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":61,"weaponDamageMax":115,"weaponSpeed":2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":61,"weaponDamageMax":115,"stats":{"14":190},"isBase":true}}}, +{"id":32538,"name":"Skywitch's Drape","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,23,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":23,"3":26,"22":185},"isBase":true}}}, +{"id":32539,"name":"Skyguard's Drape","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,15,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":15,"2":39,"22":185},"isBase":true}}}, +{"id":32540,"name":"Terokk's Might","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,16,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"1":16,"2":45,"22":207},"isBase":true}}}, +{"id":32541,"name":"Terokk's Wisdom","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":32,"3":28,"22":207},"isBase":true}}}, +{"id":32568,"name":"Swiftsteel Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[35,0,32,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41132}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":35,"2":32,"7":27,"22":727},"isBase":true}}}, +{"id":32570,"name":"Swiftsteel Shoulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[47,0,29,0,0,19,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41133}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":47,"2":29,"5":19,"7":35,"22":1246},"isBase":true}}}, +{"id":32571,"name":"Dawnsteel Bracers","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,42,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41134}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":29,"7":28,"22":727},"isBase":true}}}, +{"id":32573,"name":"Dawnsteel Shoulders","icon":"inv_shoulder_66","type":3,"armorType":4,"stats":[0,0,55,37,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":41135}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":55,"3":37,"7":38,"22":1246},"isBase":true}}}, +{"id":32574,"name":"Bindings of Lightning Reflexes","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,28,29,0,0,0,21,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41161}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":28,"2":29,"6":21,"7":27,"22":497},"isBase":true}}}, +{"id":32575,"name":"Shoulders of Lightning Reflexes","icon":"inv_shoulder_66","type":3,"armorType":3,"stats":[0,37,38,0,0,0,27,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41162}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":37,"2":38,"6":27,"7":37,"22":851},"isBase":true}}}, +{"id":32577,"name":"Living Earth Bindings","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41163}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":29,"7":28,"22":497},"isBase":true}}}, +{"id":32579,"name":"Living Earth Shoulders","icon":"inv_shoulder_66","type":3,"armorType":3,"stats":[0,0,56,39,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41164}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":56,"3":39,"7":37,"22":851},"isBase":true}}}, +{"id":32580,"name":"Swiftstrike Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,25,48,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41158}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":25,"2":48,"7":27,"22":330},"isBase":true}}}, +{"id":32581,"name":"Swiftstrike Shoulders","icon":"inv_shoulder_23","type":3,"armorType":2,"stats":[0,37,58,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41160}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":37,"2":58,"7":38,"22":566},"isBase":true}}}, +{"id":32582,"name":"Bracers of Renewed Life","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,42,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41156}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":29,"7":28,"22":330},"isBase":true}}}, +{"id":32583,"name":"Shoulderpads of Renewed Life","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,0,58,37,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":41157}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":58,"3":37,"7":38,"22":566},"isBase":true}}}, +{"id":32584,"name":"Swiftheal Wraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41207}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":29,"7":28,"22":239},"isBase":true}}}, +{"id":32585,"name":"Swiftheal Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,34,38,28,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41208}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":34,"3":38,"4":28,"7":27,"22":410},"isBase":true}}}, +{"id":32586,"name":"Bracers of Nimble Thought","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,43,29,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41205}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":29,"7":28,"22":239},"isBase":true}}}, +{"id":32587,"name":"Mantle of Nimble Thought","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,57,38,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":41206}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":57,"3":38,"7":38,"22":410},"isBase":true}}}, +{"id":32589,"name":"Hellfire-Encased Pendant","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,31,36,12,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":31,"3":36,"4":12,"6":24},"isBase":true}}}, +{"id":32590,"name":"Nethervoid Cloak","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,41,37,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":37,"5":18,"22":274},"isBase":true}}}, +{"id":32591,"name":"Choker of Serrated Blades","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,37,0,0,0,25,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":37,"6":25,"12":70,"13":70},"isBase":true}}}, +{"id":32592,"name":"Chestguard of Relentless Storms","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,61,63,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":61,"3":63,"6":46,"22":1135},"isBase":true}}}, +{"id":32593,"name":"Treads of the Den Mother","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,39,78,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":39,"2":78,"6":14,"22":519},"isBase":true}}}, +{"id":32606,"name":"Girdle of the Lightbearer","icon":"inv_belt_28","type":8,"armorType":4,"stats":[49,0,33,0,0,0,21,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":49,"2":33,"6":21,"7":32,"22":934},"isBase":true}}}, +{"id":32608,"name":"Pillager's Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[38,0,45,0,0,18,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":38,"2":45,"5":18,"7":38,"22":1038},"isBase":true}}}, +{"id":32609,"name":"Boots of the Divine Light","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,62,33,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":62,"3":33,"4":24,"22":376},"isBase":true}}}, +{"id":32645,"name":"Crystalline Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,37,49,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":274,"weaponDamageMax":412,"weaponSpeed":2.8,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":274,"weaponDamageMax":412,"stats":{"1":37,"2":49,"5":34},"isBase":true}}}, +{"id":32647,"name":"Shard-Bound Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"1":21,"2":36,"22":254},"isBase":true}}}, +{"id":32648,"name":"Vortex Walking Boots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[28,0,28,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"0":28,"2":28,"6":19,"22":899},"isBase":true}}}, +{"id":32650,"name":"Cerulean Crystal Rod","icon":"inv_wand_14","type":14,"rangedWeaponType":6,"stats":[0,0,32,14,0,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":32,"3":14,"14":190},"isBase":true}}}, +{"id":32651,"name":"Crystal Orb of Enlightenment","icon":"inv_misc_orb_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":32,"3":28},"isBase":true}}}, +{"id":32652,"name":"Ogri'la Aegis","icon":"inv_shield_30","type":13,"weaponType":7,"handType":3,"stats":[0,0,18,0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,2949,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"9":23,"10":15,"22":2949},"isBase":true}}}, +{"id":32653,"name":"Apexis Cloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,28,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":28,"3":26,"22":185},"isBase":true}}}, +{"id":32654,"name":"Crystalforged Trinket","icon":"inv_datacrystal01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":32655,"name":"Crystalweave Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,24,20,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":24,"3":20,"6":12,"22":181},"isBase":true}}}, +{"id":32656,"name":"Crystalhide Handwraps","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,28,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"1":28,"2":17,"6":27,"22":554},"isBase":true}}}, +{"id":32658,"name":"Badge of Tenacity","icon":"inv_misc_armorkit_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"23":308},"isBase":true}}}, +{"id":32659,"name":"Crystal-Infused Shiv","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,11,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"1":11,"2":32},"isBase":true}}}, +{"id":32660,"name":"Crystalforged Sword","icon":"inv_sword_20","type":13,"weaponType":9,"handType":2,"stats":[0,0,32,0,0,0,11,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":55,"weaponDamageMax":103,"stats":{"2":32,"6":11,"14":190},"isBase":true}}}, +{"id":32661,"name":"Apexis Crystal Mace","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,8,20,0,0,0,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"5":8,"6":20,"12":22,"13":22},"isBase":true}}}, +{"id":32662,"name":"Flaming Quartz Staff","icon":"inv_staff_draenei_a_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,73,0,0,0,26,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"weaponSpeed":2.1,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":96,"weaponDamageMax":144,"stats":{"2":73,"6":26,"14":151},"isBase":true}}}, +{"id":32663,"name":"Apexis Cleaver","icon":"inv_axe_44","type":13,"weaponType":1,"handType":4,"stats":[46,0,39,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"weaponSpeed":3.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":329,"weaponDamageMax":495,"stats":{"0":46,"2":39,"6":19},"isBase":true}}}, +{"id":32664,"name":"Dreamcrystal Band","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,15,26,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":15,"3":26,"6":15},"isBase":true}}}, +{"id":32665,"name":"Crystalweave Cape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,15,15,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":15,"2":15,"7":26,"22":185},"isBase":true}}}, +{"id":32756,"name":"Gyro-Balanced Khorium Destroyer","icon":"inv_weapon_rifle_13","type":14,"rangedWeaponType":3,"stats":[0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":251,"weaponDamageMax":468,"weaponSpeed":2.8,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":41307}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":251,"weaponDamageMax":468,"stats":{"2":86},"isBase":true}}}, +{"id":32769,"name":"Belt of the Raven Lord","icon":"inv_belt_19","type":8,"armorType":2,"stats":[0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":25,"2":38,"22":290},"isBase":true}}}, +{"id":32770,"name":"Skyguard Silver Cross","icon":"inv_jewelry_talisman_06","type":12,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"6":34},"isBase":true}}}, +{"id":32771,"name":"Airman's Ribbon of Gallantry","icon":"inv_misc_ribbon_01","type":12,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":52,"stats":{"6":34},"isBase":true}}}, +{"id":32774,"name":"The Black Pearl","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,33,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"ilvl":100,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":7,"spellId":41415}}],"scalingOptions":{"100":{"randPropPoints":32,"stats":{"2":33,"3":21},"isBase":true}}}, +{"id":32776,"name":"Crown of the Sea Witch","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,54,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":41418}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":20,"4":20,"22":300},"isBase":true}}}, +{"id":32778,"name":"Boots of Righteous Fortitude","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,43,25,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":25,"9":19,"22":776},"isBase":true}}}, +{"id":32779,"name":"Band of Frigid Elements","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,20,24,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":20,"3":24,"6":17},"isBase":true}}}, +{"id":32780,"name":"The Boomstick","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,0,66,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":66,"9":41},"isBase":true}}}, +{"id":32781,"name":"Talon of Anzu","icon":"inv_weapon_shortblade_16","type":13,"weaponType":2,"handType":2,"stats":[0,10,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":23035,"zoneId":3791}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"1":10,"2":27},"isBase":true}}}, +{"id":32785,"name":"Veteran's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,30,56,0,0,0,16,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":56,"6":16,"7":16,"16":21,"22":745},"isBase":true}}}, +{"id":32786,"name":"Veteran's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,27,66,0,0,0,19,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":27,"2":66,"6":19,"16":26,"22":496,"23":12},"isBase":true}}}, +{"id":32787,"name":"Veteran's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":68,"3":31,"16":31,"22":360},"isBase":true}}}, +{"id":32788,"name":"Veteran's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,59,32,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":59,"3":32,"4":20,"16":26,"22":496,"23":12},"isBase":true}}}, +{"id":32789,"name":"Veteran's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":1078},"isBase":true}}}, +{"id":32790,"name":"Veteran's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,30,53,0,0,0,16,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":53,"6":16,"16":30,"22":496},"isBase":true}}}, +{"id":32791,"name":"Veteran's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,30,45,0,0,0,40,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":45,"6":40,"16":21,"22":745},"isBase":true}}}, +{"id":32792,"name":"Veteran's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":26,"16":27,"22":745},"isBase":true}}}, +{"id":32793,"name":"Veteran's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[31,0,45,0,0,0,31,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":31,"2":45,"6":31,"16":30,"22":1078},"isBase":true}}}, +{"id":32794,"name":"Veteran's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":36,"2":54,"6":24,"16":24,"22":1078},"isBase":true}}}, +{"id":32795,"name":"Veteran's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":360},"isBase":true}}}, +{"id":32796,"name":"Veteran's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,496,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":31,"4":20,"16":26,"22":496,"23":12},"isBase":true}}}, +{"id":32797,"name":"Veteran's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,30,56,0,0,0,16,16,0,0,0,0,0,0,0,0,21,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":56,"6":16,"7":16,"16":21,"22":610},"isBase":true}}}, +{"id":32798,"name":"Veteran's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,27,66,0,0,0,0,0,19,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":27,"2":66,"8":19,"16":26,"22":406,"23":12},"isBase":true}}}, +{"id":32799,"name":"Veteran's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":68,"3":31,"16":31,"22":295},"isBase":true}}}, +{"id":32800,"name":"Veteran's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":31,"4":20,"16":26,"22":406,"23":12},"isBase":true}}}, +{"id":32801,"name":"Veteran's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":882},"isBase":true}}}, +{"id":32802,"name":"Veteran's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,30,53,0,0,0,16,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":30,"2":53,"6":16,"16":30,"22":406},"isBase":true}}}, +{"id":32803,"name":"Veteran's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,31,45,0,0,0,39,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"1":31,"2":45,"6":39,"16":21,"22":610},"isBase":true}}}, +{"id":32804,"name":"Veteran's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":26,"16":27,"22":610},"isBase":true}}}, +{"id":32805,"name":"Veteran's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[31,0,45,0,0,0,31,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":31,"2":45,"6":31,"16":30,"22":882},"isBase":true}}}, +{"id":32806,"name":"Veteran's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[36,0,54,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"0":36,"2":54,"6":24,"16":24,"22":882},"isBase":true}}}, +{"id":32807,"name":"Veteran's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":295},"isBase":true}}}, +{"id":32808,"name":"Veteran's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,60,31,20,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,406,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":31,"4":20,"16":26,"22":406,"23":12},"isBase":true}}}, +{"id":32809,"name":"Veteran's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,20,33,0,0,0,8,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"1":20,"2":33,"6":8,"7":9,"16":13,"22":440},"isBase":true}}}, +{"id":32810,"name":"Veteran's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,19,39,0,0,9,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"1":19,"2":39,"5":9,"16":17,"22":293,"23":12},"isBase":true}}}, +{"id":32811,"name":"Veteran's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,21,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":41,"3":21,"16":17,"22":213},"isBase":true}}}, +{"id":32812,"name":"Veteran's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,39,14,16,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":39,"3":14,"4":16,"16":18,"22":293,"23":12},"isBase":true}}}, +{"id":32813,"name":"Veteran's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,35,19,0,0,16,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":35,"3":19,"6":16,"16":15,"22":631},"isBase":true}}}, +{"id":32814,"name":"Veteran's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,21,33,0,0,0,9,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,293,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"1":21,"2":33,"6":9,"16":15,"22":293},"isBase":true}}}, +{"id":32816,"name":"Veteran's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,21,29,0,0,0,22,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"1":21,"2":29,"6":22,"16":12,"22":440},"isBase":true}}}, +{"id":32817,"name":"Veteran's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":35,"3":19,"6":17,"16":15,"22":440},"isBase":true}}}, +{"id":32818,"name":"Veteran's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,30,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"0":21,"2":30,"6":17,"16":17,"22":631},"isBase":true}}}, +{"id":32819,"name":"Veteran's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[21,0,37,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"0":21,"2":37,"6":14,"16":14,"22":631},"isBase":true}}}, +{"id":32820,"name":"Veteran's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,39,19,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":39,"3":19,"6":14,"16":13,"22":213},"isBase":true}}}, +{"id":32821,"name":"Veteran's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,38,16,16,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,293,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":38,"3":16,"4":16,"16":15,"22":293,"23":12},"isBase":true}}}, +{"id":32829,"name":"Windcharger's Lance","icon":"inv_spear_05","type":13,"weaponType":6,"handType":4,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":285,"weaponDamageMax":428,"weaponSpeed":3.4,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":285,"weaponDamageMax":428,"stats":{"2":60,"12":80,"13":80},"isBase":true}}}, +{"id":32830,"name":"Severin's Cane","icon":"inv_staff_32","type":13,"weaponType":8,"handType":4,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"weaponSpeed":2.4,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":60,"weaponDamageMin":100,"weaponDamageMax":151,"stats":{"2":90,"14":129},"isBase":true}}}, +{"id":32831,"name":"Jeweled Rod","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,25,18,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"weaponSpeed":1.8,"ilvl":109,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":26,"weaponDamageMin":50,"weaponDamageMax":94,"stats":{"2":25,"3":18,"14":183},"isBase":true}}}, +{"id":32837,"name":"Warglaive of Azzinoth","icon":"inv_weapon_glave_01","type":13,"weaponType":9,"handType":1,"stats":[0,22,47,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":302,"weaponDamageMax":562,"weaponSpeed":2.8,"ilvl":156,"quality":5,"classAllowlist":[6,9,10,11],"setName":"The Twin Blades of Azzinoth","setId":699,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"156":{"weaponDamageMin":302,"weaponDamageMax":562,"stats":{"1":22,"2":47,"5":21},"isBase":true}}}, +{"id":32838,"name":"Warglaive of Azzinoth","icon":"inv_weapon_glave_01","type":13,"weaponType":9,"handType":3,"stats":[0,21,46,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":1.8,"ilvl":156,"quality":5,"classAllowlist":[6,9,10,11],"setName":"The Twin Blades of Azzinoth","setId":699,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":22917,"zoneId":3959}}],"scalingOptions":{"156":{"weaponDamageMin":194,"weaponDamageMax":361,"stats":{"1":21,"2":46,"6":23},"isBase":true}}}, +{"id":32854,"name":"Hammer of Righteous Might","icon":"inv_mace_41","type":13,"weaponType":4,"handType":4,"stats":[0,0,83,0,38,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"weaponDamageMin":107,"weaponDamageMax":162,"weaponSpeed":2.1,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":43846}}],"scalingOptions":{"105":{"randPropPoints":70,"weaponDamageMin":107,"weaponDamageMax":162,"stats":{"2":83,"4":38,"14":210},"isBase":true}}}, +{"id":32864,"name":"Commander's Badge","icon":"inv_misc_gem_sapphire_01","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":109,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"109":{"randPropPoints":46,"stats":{"2":45},"isBase":true}}}, +{"id":32865,"name":"Drake Tamer's Gloves","icon":"inv_gauntlets_03","type":7,"armorType":2,"stats":[0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":21,"2":33,"22":292},"isBase":true}}}, +{"id":32866,"name":"Ascendant's Boots","icon":"inv_boots_02","type":10,"armorType":4,"stats":[0,0,22,0,0,0,0,0,0,21,15,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":22,"9":21,"10":15,"22":704},"isBase":true}}}, +{"id":32867,"name":"Dragonmaw Augur's Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,40,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"2":40,"3":15,"22":188},"isBase":true}}}, +{"id":32868,"name":"Skybreaker's Mantle","icon":"inv_shoulder_11","type":3,"armorType":3,"stats":[0,21,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":40,"stats":{"1":21,"2":33,"22":531},"isBase":true}}}, +{"id":32869,"name":"Illidari Lord's Tunic","icon":"inv_chest_chain_07","type":5,"armorType":2,"stats":[0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,466,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":29,"2":43,"22":466},"isBase":true}}}, +{"id":32870,"name":"Legguards of Contemplation","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,22,24,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"1":22,"2":24,"6":29,"22":620},"isBase":true}}}, +{"id":32871,"name":"Horns of the Illidari","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[0,0,24,0,0,0,0,0,0,29,22,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":53,"stats":{"2":24,"9":29,"10":22,"22":831},"isBase":true}}}, +{"id":32872,"name":"Illidari Rod of Discipline","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,12,14,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":22,"weaponDamageMin":47,"weaponDamageMax":88,"weaponSpeed":1.8,"ilvl":114,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"114":{"randPropPoints":22,"weaponDamageMin":47,"weaponDamageMax":88,"stats":{"2":12,"3":14,"14":155},"isBase":true}}}, +{"id":32914,"name":"Bland Shiv","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":171,"weaponSpeed":1.8,"ilvl":101,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"101":{"randPropPoints":29,"weaponDamageMin":171,"weaponDamageMax":171,"isBase":true}}}, +{"id":32941,"name":"Corruptor's Signet","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,18,28,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"2":18,"3":28,"6":16},"isBase":true}}}, +{"id":32942,"name":"Ring of the Overseer","icon":"inv_jewelry_ring_22","type":11,"stats":[0,16,42,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":105,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":39,"stats":{"1":16,"2":42,"5":12},"isBase":true}}}, +{"id":32943,"name":"Swiftsteel Bludgeon","icon":"inv_mace_44","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,19,0,27,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"stats":{"5":19,"7":27,"12":40,"13":40},"isBase":true}}}, +{"id":32944,"name":"Talon of the Phoenix","icon":"inv_weapon_hand_12","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,15,19,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":240,"weaponDamageMax":446,"weaponSpeed":2.7,"ilvl":134,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":19514,"zoneId":3845}}],"scalingOptions":{"134":{"randPropPoints":39,"weaponDamageMin":240,"weaponDamageMax":446,"stats":{"5":15,"6":19,"12":52,"13":52},"isBase":true}}}, +{"id":32945,"name":"Fist of Molten Fury","icon":"inv_weapon_hand_14","type":13,"weaponType":3,"handType":2,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Fists of Fury","setId":719,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":170,"weaponDamageMax":316,"stats":{"1":20,"2":42},"isBase":true}}}, +{"id":32946,"name":"Claw of Molten Fury","icon":"inv_weapon_hand_14","type":13,"weaponType":3,"handType":2,"stats":[0,20,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":291,"weaponDamageMax":438,"weaponSpeed":2.7,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Fists of Fury","setId":719,"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":291,"weaponDamageMax":438,"stats":{"1":20,"2":42},"isBase":true}}}, +{"id":32949,"name":"Unusually Slow Sword","icon":"inv_sword_36","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":528,"weaponDamageMax":529,"weaponSpeed":6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":528,"weaponDamageMax":529,"isBase":true}}}, +{"id":32950,"name":"Unusually Slow Mace","icon":"inv_mace_06","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":24,"weaponDamageMin":420,"weaponDamageMax":421,"weaponSpeed":6,"ilvl":100,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":24,"weaponDamageMin":420,"weaponDamageMax":421,"isBase":true}}}, +{"id":32951,"name":"Unusually Slow Two-Hander","icon":"inv_sword_36","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":916,"weaponDamageMax":916,"weaponSpeed":8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":916,"weaponDamageMax":916,"isBase":true}}}, +{"id":32961,"name":"Merciless Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":28,"16":27},"isBase":true}}}, +{"id":32962,"name":"Merciless Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,36,19,0,0,0,0,0,0,0,0,0,0,281,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":85,"weaponDamageMax":160,"weaponSpeed":1.9,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":85,"weaponDamageMax":160,"stats":{"2":36,"3":19,"14":281,"16":19},"isBase":true}}}, +{"id":32963,"name":"Merciless Gladiator's Gavel","icon":"inv_mace_47","type":13,"weaponType":4,"handType":2,"stats":[0,0,41,0,0,15,0,0,0,0,0,0,0,0,281,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"stats":{"2":41,"5":15,"14":281,"16":18},"isBase":true}}}, +{"id":32964,"name":"Merciless Gladiator's Salvation","icon":"inv_mace_47","type":13,"weaponType":4,"handType":2,"stats":[0,0,47,0,0,0,0,0,0,0,0,0,0,0,281,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.6,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":40,"weaponDamageMin":72,"weaponDamageMax":134,"stats":{"2":47,"14":281,"16":21},"isBase":true}}}, +{"id":32973,"name":"General's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":35,"3":19,"16":14,"22":199},"isBase":true}}}, +{"id":32974,"name":"General's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":269},"isBase":true}}}, +{"id":32975,"name":"General's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":329},"isBase":true}}}, +{"id":32976,"name":"Marshal's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":269},"isBase":true}}}, +{"id":32977,"name":"Marshal's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,35,19,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,199,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":35,"3":19,"16":14,"22":199},"isBase":true}}}, +{"id":32978,"name":"Marshal's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,60,27,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":60,"3":27,"16":27,"22":329},"isBase":true}}}, +{"id":32979,"name":"Veteran's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":68,"3":31,"16":31,"22":295},"isBase":true}}}, +{"id":32980,"name":"Veteran's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,21,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,213,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":41,"3":21,"16":17,"22":213},"isBase":true}}}, +{"id":32981,"name":"Veteran's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,68,31,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":68,"3":31,"16":31,"22":360},"isBase":true}}}, +{"id":32982,"name":"General's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":806},"isBase":true}}}, +{"id":32983,"name":"General's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":612},"isBase":true}}}, +{"id":32984,"name":"General's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":985},"isBase":true}}}, +{"id":32985,"name":"Marshal's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":806},"isBase":true}}}, +{"id":32986,"name":"Marshal's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,612,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":612},"isBase":true}}}, +{"id":32987,"name":"Marshal's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,51,24,0,0,23,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":23,"16":24,"22":985},"isBase":true}}}, +{"id":32988,"name":"Veteran's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":882},"isBase":true}}}, +{"id":32989,"name":"Veteran's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,35,19,0,0,16,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":35,"3":19,"6":16,"16":15,"22":631},"isBase":true}}}, +{"id":32990,"name":"Veteran's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,60,27,0,0,27,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":27,"16":26,"22":1078},"isBase":true}}}, +{"id":32991,"name":"General's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":423},"isBase":true}}}, +{"id":32992,"name":"General's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":561},"isBase":true}}}, +{"id":32993,"name":"General's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":686},"isBase":true}}}, +{"id":32994,"name":"Marshal's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,30,17,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,423,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":113,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"113":{"randPropPoints":42,"stats":{"2":30,"3":17,"6":14,"16":13,"22":423},"isBase":true}}}, +{"id":32995,"name":"Marshal's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":561},"isBase":true}}}, +{"id":32996,"name":"Marshal's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,51,24,0,0,24,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":51,"3":24,"6":24,"16":23,"22":686},"isBase":true}}}, +{"id":32997,"name":"Veteran's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,35,19,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,440,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":126,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"126":{"randPropPoints":47,"stats":{"2":35,"3":19,"6":17,"16":15,"22":440},"isBase":true}}}, +{"id":32998,"name":"Veteran's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":26,"16":27,"22":610},"isBase":true}}}, +{"id":32999,"name":"Veteran's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,60,27,0,0,26,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":69,"stats":{"2":60,"3":27,"6":26,"16":27,"22":745},"isBase":true}}}, +{"id":33006,"name":"Vengeful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_19","type":14,"rangedWeaponType":2,"stats":[0,0,77,0,0,0,52,0,0,0,0,0,0,109,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"stats":{"2":77,"6":52,"13":109,"16":42},"isBase":true}}}, +{"id":33054,"name":"The Seal of Danzalar","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,33,21,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21217,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":33,"3":21,"16":21,"23":84},"isBase":true}}}, +{"id":33055,"name":"Band of Vile Aggression","icon":"inv_jewelry_ring_71","type":11,"stats":[0,0,37,0,0,0,0,0,0,0,0,0,50,50,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21216,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"12":50,"13":50,"16":25},"isBase":true}}}, +{"id":33056,"name":"Veteran's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,34,25,0,0,0,10,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":34,"3":25,"7":10,"16":22},"isBase":true}}}, +{"id":33057,"name":"Veteran's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,30,0,0,0,22,0,0,0,0,0,42,42,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":30,"6":22,"12":42,"13":42,"16":22},"isBase":true}}}, +{"id":33058,"name":"Band of the Vigilant","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,33,21,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":21213,"zoneId":3607}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":33,"3":21,"6":21,"16":21},"isBase":true}}}, +{"id":33064,"name":"Veteran's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,42,20,12,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":42,"3":20,"4":12,"16":22},"isBase":true}}}, +{"id":33065,"name":"Veteran's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,41,22,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":41,"3":22,"16":18},"isBase":true}}}, +{"id":33066,"name":"Veteran's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,31,0,0,0,18,0,0,0,0,0,42,42,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":31,"6":18,"12":42,"13":42,"16":18},"isBase":true}}}, +{"id":33067,"name":"Veteran's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,34,18,0,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":34,"3":18,"6":18,"16":18},"isBase":true}}}, +{"id":33068,"name":"Veteran's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,37,20,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"3":20,"4":12,"16":18},"isBase":true}}}, +{"id":33097,"name":"Mushroom Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33122,"name":"Cloak of Darkness","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[23,0,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":120,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":42546}}],"scalingOptions":{"120":{"randPropPoints":45,"stats":{"0":23,"2":25,"6":24,"22":236},"isBase":true}}}, +{"id":33173,"name":"Ragesteel Shoulders","icon":"inv_shoulder_16","type":3,"armorType":4,"stats":[32,0,12,0,0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Burning Rage","setId":566,"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":42662}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":32,"2":12,"5":9,"6":17,"22":846},"isBase":true}}}, +{"id":33191,"name":"Jungle Stompers","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[19,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":19,"2":43,"9":29,"22":997},"isBase":true}}}, +{"id":33192,"name":"Carved Witch Doctor's Stick","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,33,21,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":78,"weaponDamageMax":146,"stats":{"2":33,"3":21,"14":274},"isBase":true}}}, +{"id":33193,"name":"Mossy Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33194,"name":"Ancient Ceremonial Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33195,"name":"Cracked Stone Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33196,"name":"Softly-Glowing Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33197,"name":"Mossy Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33198,"name":"Necklace of Decay","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33199,"name":"Pendant of Old","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33200,"name":"Ancient Ceremonial Necklace","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33201,"name":"Silver Moonstone Pendant","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"ilvl":103,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"103":{"randPropPoints":27,"stats":{"2":15},"isBase":true}}}, +{"id":33203,"name":"Robes of Heavenly Purpose","icon":"inv_chest_cloth_35","type":5,"armorType":1,"stats":[0,0,42,46,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":42,"3":46,"4":45,"22":491},"isBase":true}}}, +{"id":33204,"name":"Shadowprowler's Chestguard","icon":"inv_chest_plate11","type":5,"armorType":2,"stats":[0,40,45,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":42731}}],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":40,"2":45,"5":8,"22":581},"isBase":true}}}, +{"id":33206,"name":"Pauldrons of Primal Fury","icon":"inv_shoulder_85","type":3,"armorType":3,"stats":[0,29,54,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":54,"5":20,"22":759},"isBase":true}}}, +{"id":33207,"name":"Implacable Guardian Sabatons","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[0,0,41,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":34,"4":26,"22":997},"isBase":true}}}, +{"id":33211,"name":"Bladeangel's Money Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,29,48,0,0,0,21,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":48,"6":21,"7":11,"22":380},"isBase":true}}}, +{"id":33214,"name":"Akil'zon's Talonblade","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"stats":{"2":25,"7":18,"12":52,"13":52},"isBase":true}}}, +{"id":33215,"name":"Bloodstained Elven Battlevest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[46,0,69,0,0,0,35,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":46,"2":69,"6":35,"7":23,"22":1450},"isBase":true}}}, +{"id":33216,"name":"Chestguard of Hidden Purpose","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[0,0,60,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":60,"3":39,"4":38,"22":1450},"isBase":true}}}, +{"id":33222,"name":"Nyn'jah's Tabi Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,30,48,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":30,"2":48,"5":22,"22":464},"isBase":true}}}, +{"id":33279,"name":"Iron-Tusk Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[22,0,45,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":22,"2":45,"9":32,"22":815},"isBase":true}}}, +{"id":33280,"name":"War-Feathered Loop","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,29,59,0,0,0,10,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":59,"6":10,"7":28,"22":569},"isBase":true}}}, +{"id":33281,"name":"Brooch of Nature's Mercy","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,36,34,19,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":36,"3":34,"4":19,"7":33},"isBase":true}}}, +{"id":33283,"name":"Amani Punisher","icon":"inv_mace_32","type":13,"weaponType":4,"handType":2,"stats":[0,0,46,0,0,20,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":69,"weaponDamageMax":130,"weaponSpeed":1.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":69,"weaponDamageMax":130,"stats":{"2":46,"5":20,"14":274},"isBase":true}}}, +{"id":33285,"name":"Fury of the Ursine","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,28,25,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":28,"3":25,"4":16,"6":17,"22":215},"isBase":true}}}, +{"id":33286,"name":"Mojo-Mender's Mask","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,68,45,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":45,"4":22,"22":822},"isBase":true}}}, +{"id":33287,"name":"Gnarled Ironwood Pauldrons","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,42,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":42,"3":33,"4":26,"22":507},"isBase":true}}}, +{"id":33291,"name":"Voodoo-Woven Belt","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,39,34,0,17,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":39,"3":34,"5":17,"6":33,"22":276},"isBase":true}}}, +{"id":33293,"name":"Signet of Ancient Magics","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,28,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23574,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":28,"3":25,"4":26},"isBase":true}}}, +{"id":33296,"name":"Brooch of Deftness","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,48,0,0,22,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":48,"5":22,"8":21},"isBase":true}}}, +{"id":33297,"name":"The Savage's Choker","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,37,0,0,0,0,25,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"7":25,"12":50,"13":50},"isBase":true}}}, +{"id":33298,"name":"Prowler's Strikeblade","icon":"inv_weapon_shortblade_65","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,0,20,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":132,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"stats":{"2":30,"6":20,"12":42,"13":42},"isBase":true}}}, +{"id":33299,"name":"Spaulders of the Advocate","icon":"inv_shoulder_84","type":3,"armorType":4,"stats":[0,0,47,29,28,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":47,"3":29,"4":28,"6":21,"22":1087},"isBase":true}}}, +{"id":33300,"name":"Shoulderpads of Dancing Blades","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,34,66,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":34,"2":66,"5":16,"22":507},"isBase":true}}}, +{"id":33303,"name":"Skullshatter Warboots","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[30,0,37,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":30,"2":37,"6":29,"22":997},"isBase":true}}}, +{"id":33304,"name":"Cloak of Subjugated Power","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,42,23,0,0,16,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":23,"6":16,"16":23,"22":262},"isBase":true}}}, +{"id":33309,"name":"Merciless Gladiator's Redoubt","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":28,"16":27,"22":4194},"isBase":true}}}, +{"id":33313,"name":"Merciless Gladiator's Barrier","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,42,28,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4194,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":28,"16":27,"22":4194},"isBase":true}}}, +{"id":33317,"name":"Robe of Departed Spirits","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,60,46,30,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":60,"3":46,"4":30,"7":35,"22":491},"isBase":true}}}, +{"id":33322,"name":"Shimmer-Pelt Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,65,46,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":65,"3":46,"4":45,"22":676},"isBase":true}}}, +{"id":33324,"name":"Treads of the Life Path","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,53,34,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":53,"3":34,"4":16,"22":696},"isBase":true}}}, +{"id":33325,"name":"Voodoo Shaker","icon":"inv_offhand_zulaman_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,36,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":36,"3":25,"4":25},"isBase":true}}}, +{"id":33326,"name":"Bulwark of the Amani Empire","icon":"inv_shield_42","type":13,"weaponType":7,"handType":3,"stats":[19,0,42,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,3825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":19,"2":42,"9":19,"22":3825},"isBase":true}}}, +{"id":33327,"name":"Mask of Introspection","icon":"inv_mask_02","type":1,"armorType":4,"stats":[0,0,69,39,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":69,"3":39,"6":31,"22":1178},"isBase":true}}}, +{"id":33328,"name":"Arrow-Fall Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,39,62,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":39,"2":62,"6":39,"7":30,"22":1012},"isBase":true}}}, +{"id":33329,"name":"Shadowtooth Trollskin Cuirass","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,46,85,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":46,"2":85,"6":30,"22":676},"isBase":true}}}, +{"id":33331,"name":"Chain of Unleashed Rage","icon":"inv_belt_18","type":8,"armorType":4,"stats":[34,0,37,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":34,"2":37,"5":14,"6":22,"22":815},"isBase":true}}}, +{"id":33332,"name":"Enamelled Disc of Mojo","icon":"inv_shield_43","type":13,"weaponType":7,"handType":3,"stats":[0,0,37,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"3":25,"4":18,"22":3825},"isBase":true}}}, +{"id":33333,"name":"Kharmaa's Shroud of Hope","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,42,23,16,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":23,"4":16,"16":23,"22":262},"isBase":true}}}, +{"id":33334,"name":"Fetish of the Primal Gods","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,32,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"3":32,"7":17},"isBase":true}}}, +{"id":33354,"name":"Wub's Cursed Hexblade","icon":"inv_weapon_shortblade_64","type":13,"weaponType":2,"handType":2,"stats":[0,0,32,0,0,13,27,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":78,"weaponDamageMax":146,"weaponSpeed":1.8,"ilvl":132,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":78,"weaponDamageMax":146,"stats":{"2":32,"5":13,"6":27,"14":274},"isBase":true}}}, +{"id":33356,"name":"Helm of Natural Regeneration","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,69,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":69,"3":39,"4":30,"22":549},"isBase":true}}}, +{"id":33357,"name":"Footpads of Madness","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,43,43,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23578,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":43,"3":43,"7":25,"22":338},"isBase":true}}}, +{"id":33386,"name":"Man'kin'do's Belt","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,45,29,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":45,"3":29,"4":20,"7":30,"22":569},"isBase":true}}}, +{"id":33388,"name":"Heartless","icon":"inv_sword_107","type":13,"weaponType":9,"handType":2,"stats":[0,0,30,0,0,0,0,20,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"weaponSpeed":2.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"stats":{"2":30,"7":20,"12":42,"13":42},"isBase":true}}}, +{"id":33389,"name":"Dagger of Bad Mojo","icon":"inv_weapon_shortblade_60","type":13,"weaponType":2,"handType":2,"stats":[0,21,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":179,"weaponDamageMax":270,"stats":{"1":21,"2":30,"6":20},"isBase":true}}}, +{"id":33421,"name":"Battleworn Tuskguard","icon":"inv_helmet_111","type":1,"armorType":4,"stats":[34,0,60,0,0,0,0,0,0,40,23,0,0,0,0,0,0,0,0,0,0,0,1228,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":34,"2":60,"9":40,"10":23,"22":1228},"isBase":true}}}, +{"id":33432,"name":"Coif of the Jungle Stalker","icon":"inv_helmet_113","type":1,"armorType":3,"stats":[0,36,69,0,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":36,"2":69,"6":20,"7":36,"22":856},"isBase":true}}}, +{"id":33446,"name":"Girdle of Stromgarde's Hope","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,47,36,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":47,"3":36,"4":16,"6":16,"22":815},"isBase":true}}}, +{"id":33453,"name":"Hood of Hexing","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,55,48,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":55,"3":48,"5":31,"6":24,"22":415},"isBase":true}}}, +{"id":33463,"name":"Hood of the Third Eye","icon":"inv_helmet_116","type":1,"armorType":1,"stats":[0,0,72,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":72,"3":41,"4":32,"22":415},"isBase":true}}}, +{"id":33464,"name":"Hex Lord's Voodoo Pauldrons","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,47,30,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":47,"3":30,"4":22,"7":30,"22":790},"isBase":true}}}, +{"id":33465,"name":"Staff of Primal Fury","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,49,70,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":389,"weaponDamageMax":584,"weaponSpeed":3,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":389,"weaponDamageMax":584,"stats":{"1":49,"2":70,"6":45},"isBase":true}}}, +{"id":33466,"name":"Loop of Cursed Bones","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,37,27,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":51,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":51,"stats":{"2":37,"3":27,"7":27},"isBase":true}}}, +{"id":33467,"name":"Blade of Twisted Visions","icon":"inv_sword_109","type":13,"weaponType":9,"handType":2,"stats":[0,0,48,0,0,0,0,21,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"weaponDamageMin":82,"weaponDamageMax":154,"weaponSpeed":1.8,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"138":{"randPropPoints":41,"weaponDamageMin":82,"weaponDamageMax":154,"stats":{"2":48,"7":21,"14":288},"isBase":true}}}, +{"id":33468,"name":"Dark Blessing","icon":"inv_staff_64","type":13,"weaponType":4,"handType":2,"stats":[0,0,29,0,0,0,0,30,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"weaponDamageMin":87,"weaponDamageMax":162,"weaponSpeed":1.9,"ilvl":138,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"138":{"randPropPoints":41,"weaponDamageMin":87,"weaponDamageMax":162,"stats":{"2":29,"7":30,"14":288},"isBase":true}}}, +{"id":33469,"name":"Hauberk of the Empire's Champion","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,68,48,30,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"2":68,"3":48,"4":30,"7":40,"22":1054},"isBase":true}}}, +{"id":33471,"name":"Two-Toed Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,59,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"2":59,"3":30,"4":22,"22":351},"isBase":true}}}, +{"id":33473,"name":"Chestguard of the Warlord","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[27,0,60,0,0,26,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"0":27,"2":60,"5":26,"9":40,"22":1512},"isBase":true}}}, +{"id":33474,"name":"Ancient Amani Longbow","icon":"inv_weapon_bow_32","type":14,"rangedWeaponType":1,"stats":[0,61,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":340,"weaponDamageMax":633,"weaponSpeed":3,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":340,"weaponDamageMax":633,"stats":{"1":61,"6":58},"isBase":true}}}, +{"id":33475,"name":"Frostmourne","icon":"inv_sword_92","type":13,"weaponType":9,"handType":4,"stats":[197,0,263,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2218,"weaponDamageMax":3327,"weaponSpeed":4,"ilvl":296,"quality":6,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"296":{"weaponDamageMin":2218,"weaponDamageMax":3327,"stats":{"0":197,"2":263,"3":150},"isBase":true}}}, +{"id":33476,"name":"Cleaver of the Unforgiving","icon":"inv_axe_84","type":13,"weaponType":1,"handType":2,"stats":[0,0,31,0,0,12,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"weaponDamageMin":147,"weaponDamageMax":274,"weaponSpeed":1.6,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"138":{"randPropPoints":41,"weaponDamageMin":147,"weaponDamageMax":274,"stats":{"2":31,"5":12,"10":20},"isBase":true}}}, +{"id":33478,"name":"Jin'rohk, The Great Apocalypse","icon":"inv_sword_108","type":13,"weaponType":9,"handType":4,"stats":[0,0,49,0,0,0,0,45,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"weaponDamageMin":506,"weaponDamageMax":759,"weaponSpeed":3.7,"ilvl":138,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"138":{"randPropPoints":95,"weaponDamageMin":506,"weaponDamageMax":759,"stats":{"2":49,"7":45,"12":120,"13":120},"isBase":true}}}, +{"id":33479,"name":"Grimgrin Faceguard","icon":"inv_helmet_116","type":1,"armorType":2,"stats":[0,41,81,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,571,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":91,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":91,"stats":{"1":41,"2":81,"5":24,"22":571},"isBase":true}}}, +{"id":33480,"name":"Cord of Braided Troll Hair","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,51,33,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":51,"3":33,"4":16,"22":276},"isBase":true}}}, +{"id":33481,"name":"Pauldrons of Stone Resolve","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[19,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":19,"2":43,"9":29,"22":1087},"isBase":true}}}, +{"id":33483,"name":"Life-Step Belt","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,41,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":34,"4":29,"22":380},"isBase":true}}}, +{"id":33484,"name":"Dory's Embrace","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,34,0,0,0,20,17,0,0,0,0,46,46,0,0,20,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":34,"6":20,"7":17,"12":46,"13":46,"16":20,"22":262},"isBase":true}}}, +{"id":33489,"name":"Mantle of Ill Intent","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,48,34,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,368,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":48,"3":34,"7":33,"22":368},"isBase":true}}}, +{"id":33490,"name":"Staff of Dark Mending","icon":"inv_staff_63","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,40,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":207,"weaponDamageMax":311,"weaponSpeed":3.2,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":207,"weaponDamageMax":311,"stats":{"2":87,"4":40,"14":271},"isBase":true}}}, +{"id":33491,"name":"Tuskbreaker","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,61,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":329,"weaponDamageMax":612,"weaponSpeed":2.9,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":329,"weaponDamageMax":612,"stats":{"1":61,"7":58},"isBase":true}}}, +{"id":33492,"name":"Trollbane","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[0,39,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":467,"weaponDamageMax":701,"weaponSpeed":3.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":467,"weaponDamageMax":701,"stats":{"1":39,"2":96},"isBase":true}}}, +{"id":33493,"name":"Umbral Shiv","icon":"inv_weapon_shortblade_66","type":13,"weaponType":2,"handType":2,"stats":[0,12,30,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":179,"weaponDamageMax":270,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":179,"weaponDamageMax":270,"stats":{"1":12,"2":30,"5":13},"isBase":true}}}, +{"id":33494,"name":"Amani Divining Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,96,0,0,0,31,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":207,"weaponDamageMax":311,"weaponSpeed":3.2,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":207,"weaponDamageMax":311,"stats":{"2":96,"6":31,"14":271},"isBase":true}}}, +{"id":33495,"name":"Rage","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,20,18,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"weaponSpeed":2.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"stats":{"1":20,"2":18,"6":13},"isBase":true}}}, +{"id":33496,"name":"Signet of Primal Wrath","icon":"inv_jewelry_ring_44","type":11,"stats":[0,28,55,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":28,"2":55,"6":18},"isBase":true}}}, +{"id":33497,"name":"Mana Attuned Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,29,29,0,18,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":29,"3":29,"5":18,"7":29},"isBase":true}}}, +{"id":33498,"name":"Signet of the Quiet Forest","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,26,28,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":26,"3":28,"4":20,"7":30},"isBase":true}}}, +{"id":33499,"name":"Signet of the Last Defender","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,45,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"9":28},"isBase":true}}}, +{"id":33500,"name":"Signet of Eternal Life","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":54,"16":37},"isBase":true}}}, +{"id":33501,"name":"Bloodthirster's Wargreaves","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[46,0,43,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":46,"2":43,"5":38,"22":1268},"isBase":true}}}, +{"id":33512,"name":"Furious Deathgrips","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[34,0,37,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":34,"2":37,"5":25,"22":906},"isBase":true}}}, +{"id":33513,"name":"Eternium Rage-Shackles","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[32,0,32,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":32,"2":32,"6":22,"22":634},"isBase":true}}}, +{"id":33514,"name":"Pauldrons of Gruesome Fate","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[42,0,33,0,0,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":42,"2":33,"5":23,"6":22,"22":1087},"isBase":true}}}, +{"id":33515,"name":"Unwavering Legguards","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[26,0,73,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":26,"2":73,"9":39,"22":1268},"isBase":true}}}, +{"id":33516,"name":"Bracers of the Ancient Phalanx","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[22,0,45,0,0,0,0,0,15,14,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"0":22,"2":45,"8":15,"9":14,"22":634},"isBase":true}}}, +{"id":33517,"name":"Bonefist Gauntlets","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[30,0,51,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":30,"2":51,"10":21,"22":906},"isBase":true}}}, +{"id":33518,"name":"High Justicar's Legplates","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[0,0,66,46,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":66,"3":46,"6":23,"22":1268},"isBase":true}}}, +{"id":33519,"name":"Handguards of the Templar","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[0,0,50,34,10,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":50,"3":34,"4":10,"7":25,"22":906},"isBase":true}}}, +{"id":33520,"name":"Vambraces of the Naaru","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,37,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"3":25,"4":18,"22":634},"isBase":true}}}, +{"id":33522,"name":"Chestguard of the Stoic Guardian","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[38,0,60,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":38,"2":60,"9":39,"22":1450},"isBase":true}}}, +{"id":33523,"name":"Sabatons of the Righteous Defender","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[20,0,45,0,0,18,0,0,0,18,10,0,0,0,0,0,0,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":20,"2":45,"5":18,"9":18,"10":10,"22":997},"isBase":true}}}, +{"id":33524,"name":"Girdle of the Protector","icon":"inv_belt_27","type":8,"armorType":4,"stats":[20,0,40,0,0,18,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,815,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"0":20,"2":40,"5":18,"9":29,"22":815},"isBase":true}}}, +{"id":33527,"name":"Shifting Camouflage Pants","icon":"inv_pants_leather_23","type":9,"armorType":3,"stats":[0,45,68,0,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":45,"2":68,"6":25,"7":34,"22":886},"isBase":true}}}, +{"id":33528,"name":"Gauntlets of Sniping","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,29,43,0,0,19,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":43,"5":19,"6":20,"22":633},"isBase":true}}}, +{"id":33529,"name":"Steadying Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,25,37,0,0,0,15,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":25,"2":37,"6":15,"7":18,"22":443},"isBase":true}}}, +{"id":33530,"name":"Natural Life Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,0,77,40,18,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":77,"3":40,"4":18,"6":17,"22":886},"isBase":true}}}, +{"id":33531,"name":"Polished Waterscale Gloves","icon":"inv_gauntlets_68","type":7,"armorType":3,"stats":[0,0,50,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":50,"3":34,"4":32,"22":633},"isBase":true}}}, +{"id":33532,"name":"Gleaming Earthen Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,36,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":36,"3":25,"4":26,"22":443},"isBase":true}}}, +{"id":33533,"name":"Avalanche Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,0,68,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23577,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":39,"6":30,"22":886},"isBase":true}}}, +{"id":33534,"name":"Grips of Nature's Wrath","icon":"inv_gauntlets_68","type":7,"armorType":3,"stats":[0,0,53,29,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":53,"3":29,"6":21,"22":633},"isBase":true}}}, +{"id":33535,"name":"Earthquake Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,38,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":38,"3":22,"4":20,"22":443},"isBase":true}}}, +{"id":33536,"name":"Stormwrap","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,45,29,0,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":45,"3":29,"5":13,"6":22,"22":569},"isBase":true}}}, +{"id":33537,"name":"Treads of Booming Thunder","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,53,34,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":53,"3":34,"6":14,"22":696},"isBase":true}}}, +{"id":33538,"name":"Shallow-Grave Trousers","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,46,85,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":46,"2":85,"7":30,"22":591},"isBase":true}}}, +{"id":33539,"name":"Trickster's Stickyfingers","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,34,55,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":34,"2":55,"7":25,"22":422},"isBase":true}}}, +{"id":33540,"name":"Master Assassin Wristwraps","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,25,36,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":25,"2":36,"6":18,"22":296},"isBase":true}}}, +{"id":33552,"name":"Pants of Splendid Recovery","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,68,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":39,"4":31,"22":591},"isBase":true}}}, +{"id":33557,"name":"Gargon's Bracers of Peaceful Slumber","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,25,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"3":25,"4":17,"22":296},"isBase":true}}}, +{"id":33559,"name":"Starfire Waistband","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,41,34,16,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":34,"4":16,"6":22,"22":380},"isBase":true}}}, +{"id":33566,"name":"Blessed Elunite Coverings","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,63,46,18,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":63,"3":46,"4":18,"6":22,"22":676},"isBase":true}}}, +{"id":33577,"name":"Moon-Walkers","icon":"inv_boots_cloth_16","type":10,"armorType":2,"stats":[0,0,54,29,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":54,"3":29,"5":20,"22":464},"isBase":true}}}, +{"id":33578,"name":"Armwraps of the Kaldorei Protector","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,39,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":39,"3":22,"6":20,"22":296},"isBase":true}}}, +{"id":33579,"name":"Vestments of Hibernation","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,46,89,0,0,0,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"1":46,"2":89,"6":22,"7":13,"22":676},"isBase":true}}}, +{"id":33580,"name":"Band of the Swift Paw","icon":"inv_bracer_12","type":6,"armorType":2,"stats":[0,26,48,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":26,"2":48,"8":10,"22":296},"isBase":true}}}, +{"id":33582,"name":"Footwraps of Wild Encroachment","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,33,54,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":54,"6":19,"22":464},"isBase":true}}}, +{"id":33583,"name":"Waistguard of the Great Beast","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,29,59,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"gemSockets":[3,2],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":29,"2":59,"5":18,"22":380},"isBase":true}}}, +{"id":33584,"name":"Pantaloons of Arcane Annihilation","icon":"inv_pants_cloth_21","type":9,"armorType":1,"stats":[0,0,65,46,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":65,"3":46,"7":45,"22":430},"isBase":true}}}, +{"id":33585,"name":"Achromic Trousers of the Naaru","icon":"inv_pants_plate_09","type":9,"armorType":1,"stats":[0,0,65,46,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":65,"3":46,"7":45,"22":430},"isBase":true}}}, +{"id":33586,"name":"Studious Wraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,41,34,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":34,"6":25,"22":307},"isBase":true}}}, +{"id":33587,"name":"Light-Blessed Bonds","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,41,34,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":41,"3":34,"4":25,"22":307},"isBase":true}}}, +{"id":33588,"name":"Runed Spell-Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,35,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":35,"3":25,"7":25,"22":215},"isBase":true}}}, +{"id":33589,"name":"Wristguards of Tranquil Thought","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,28,25,16,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":28,"3":25,"4":16,"6":17,"22":215},"isBase":true}}}, +{"id":33590,"name":"Cloak of Fiends","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,20,42,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"1":20,"2":42,"7":25,"22":246},"isBase":true}}}, +{"id":33591,"name":"Shadowcaster's Drape","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,39,23,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":39,"3":23,"7":25,"22":246},"isBase":true}}}, +{"id":33592,"name":"Cloak of Ancient Rituals","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,39,23,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":39,"3":23,"7":25,"22":246},"isBase":true}}}, +{"id":33593,"name":"Slikk's Cloak of Placation","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,37,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,246,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":48,"stats":{"2":37,"9":31,"22":246,"23":68},"isBase":true}}}, +{"id":33640,"name":"Fury","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,20,0,0,20,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"weaponSpeed":2.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23576,"zoneId":3805}}],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":227,"weaponDamageMax":422,"stats":{"2":20,"5":20,"12":26,"13":26},"isBase":true}}}, +{"id":33661,"name":"Vengeful Gladiator's Barrier","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":47,"3":30,"16":27,"22":4697},"isBase":true}}}, +{"id":33662,"name":"Vengeful Gladiator's Bonecracker","icon":"inv_mace_41","type":13,"weaponType":4,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33663,"name":"Vengeful Gladiator's Bonegrinder","icon":"inv_mace_43","type":13,"weaponType":4,"handType":4,"stats":[46,0,62,0,0,15,46,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"weaponSpeed":3.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"stats":{"0":46,"2":62,"5":15,"6":46,"7":14,"16":33},"isBase":true}}}, +{"id":33664,"name":"Vengeful Gladiator's Chain Armor","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,27,71,0,0,12,33,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":27,"2":71,"5":12,"6":33,"7":12,"16":21,"22":1189},"isBase":true}}}, +{"id":33665,"name":"Vengeful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,33,56,0,0,0,19,20,0,0,0,0,0,0,0,0,21,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":56,"6":19,"7":20,"16":21,"22":743},"isBase":true}}}, +{"id":33666,"name":"Vengeful Gladiator's Chain Helm","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,33,71,0,0,12,41,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":33,"2":71,"5":12,"6":41,"7":12,"16":22,"22":966},"isBase":true}}}, +{"id":33667,"name":"Vengeful Gladiator's Chain Leggings","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,34,68,0,0,12,41,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":34,"2":68,"5":12,"6":41,"7":12,"16":33,"22":1041},"isBase":true}}}, +{"id":33668,"name":"Vengeful Gladiator's Chain Spaulders","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,35,50,0,0,0,16,15,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":35,"2":50,"6":16,"7":15,"16":21,"22":892},"isBase":true}}}, +{"id":33669,"name":"Vengeful Gladiator's Cleaver","icon":"inv_axe_84","type":13,"weaponType":1,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33670,"name":"Vengeful Gladiator's Decapitator","icon":"inv_axe_60","type":13,"weaponType":1,"handType":4,"stats":[0,0,62,0,0,15,46,14,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"weaponSpeed":3.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"stats":{"2":62,"5":15,"6":46,"7":14,"12":92,"13":92,"16":33},"isBase":true}}}, +{"id":33671,"name":"Vengeful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,32,68,21,0,9,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,494,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":32,"2":68,"3":21,"5":9,"16":22,"22":494,"23":16},"isBase":true}}}, +{"id":33672,"name":"Vengeful Gladiator's Dragonhide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,32,78,23,0,12,27,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,642,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":32,"2":78,"3":23,"5":12,"6":27,"7":12,"16":25,"22":642,"23":16},"isBase":true}}}, +{"id":33673,"name":"Vengeful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,37,82,30,0,12,13,12,0,0,0,0,0,0,0,0,29,0,0,0,0,0,691,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":37,"2":82,"3":30,"5":12,"6":13,"7":12,"16":29,"22":691,"23":12},"isBase":true}}}, +{"id":33674,"name":"Vengeful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,30,66,16,0,0,17,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":30,"2":66,"3":16,"6":17,"16":21,"22":592,"23":16},"isBase":true}}}, +{"id":33675,"name":"Vengeful Gladiator's Dragonhide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,31,74,22,0,12,19,12,0,0,0,0,0,0,0,0,26,0,0,0,0,0,790,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":31,"2":74,"3":22,"5":12,"6":19,"7":12,"16":26,"22":790,"23":20},"isBase":true}}}, +{"id":33676,"name":"Vengeful Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,70,35,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":70,"3":35,"16":21,"22":357,"23":40},"isBase":true}}}, +{"id":33677,"name":"Vengeful Gladiator's Dreadweave Hood","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,83,36,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":83,"3":36,"16":33,"22":464,"23":60},"isBase":true}}}, +{"id":33678,"name":"Vengeful Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,93,50,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":93,"3":50,"16":33,"22":500,"23":60},"isBase":true}}}, +{"id":33679,"name":"Vengeful Gladiator's Dreadweave Mantle","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,51,34,0,16,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":51,"3":34,"5":16,"16":21,"22":428,"23":40},"isBase":true}}}, +{"id":33680,"name":"Vengeful Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,80,43,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":80,"3":43,"16":24,"22":571,"23":60},"isBase":true}}}, +{"id":33681,"name":"Vengeful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":47,"3":30,"16":27},"isBase":true}}}, +{"id":33682,"name":"Vengeful Gladiator's Felweave Amice","icon":"inv_shoulder_68","type":3,"armorType":1,"stats":[0,0,52,34,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":52,"3":34,"6":17,"16":23,"22":428,"23":40},"isBase":true}}}, +{"id":33683,"name":"Vengeful Gladiator's Felweave Cowl","icon":"inv_helmet_103","type":1,"armorType":1,"stats":[0,0,67,40,0,0,22,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":67,"3":40,"6":22,"16":33,"22":464,"23":60},"isBase":true}}}, +{"id":33684,"name":"Vengeful Gladiator's Felweave Handguards","icon":"inv_gauntlets_66","type":7,"armorType":1,"stats":[0,0,58,34,0,0,22,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":58,"3":34,"6":22,"16":23,"22":357,"23":40},"isBase":true}}}, +{"id":33685,"name":"Vengeful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,63,33,0,0,33,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":63,"3":33,"6":33,"16":26,"22":571,"23":60},"isBase":true}}}, +{"id":33686,"name":"Vengeful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_29","type":9,"armorType":1,"stats":[0,0,77,45,0,0,33,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":77,"3":45,"6":33,"16":30,"22":500,"23":60},"isBase":true}}}, +{"id":33687,"name":"Vengeful Gladiator's Gavel","icon":"inv_mace_56","type":13,"weaponType":4,"handType":2,"stats":[0,0,45,0,0,17,0,0,0,0,0,0,0,0,309,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"2":45,"5":17,"14":309,"16":18},"isBase":true}}}, +{"id":33688,"name":"Vengeful Gladiator's Greatsword","icon":"inv_sword_108","type":13,"weaponType":9,"handType":4,"stats":[46,0,62,0,0,15,46,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"weaponSpeed":3.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":528,"weaponDamageMax":793,"stats":{"0":46,"2":62,"5":15,"6":46,"7":14,"16":33},"isBase":true}}}, +{"id":33689,"name":"Vengeful Gladiator's Hacker","icon":"inv_axe_84","type":13,"weaponType":1,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33690,"name":"Vengeful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,71,36,20,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,494,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":71,"3":36,"4":20,"16":21,"22":494,"23":12},"isBase":true}}}, +{"id":33691,"name":"Vengeful Gladiator's Kodohide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,87,41,20,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,642,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":87,"3":41,"4":20,"16":29,"22":642,"23":12},"isBase":true}}}, +{"id":33692,"name":"Vengeful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,93,46,36,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,691,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":93,"3":46,"4":36,"16":31,"22":691,"23":12},"isBase":true}}}, +{"id":33693,"name":"Vengeful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,59,26,12,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":59,"3":26,"4":12,"16":20,"22":592,"23":16},"isBase":true}}}, +{"id":33694,"name":"Vengeful Gladiator's Kodohide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,81,40,22,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,790,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":81,"3":40,"4":22,"16":27,"22":790,"23":12},"isBase":true}}}, +{"id":33695,"name":"Vengeful Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,83,26,0,0,38,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":83,"3":26,"6":38,"16":31,"22":1754},"isBase":true}}}, +{"id":33696,"name":"Vengeful Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,67,30,0,0,29,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":67,"3":30,"6":29,"16":19,"22":1096},"isBase":true}}}, +{"id":33697,"name":"Vengeful Gladiator's Lamellar Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,84,37,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":84,"3":37,"6":28,"16":33,"22":1425},"isBase":true}}}, +{"id":33698,"name":"Vengeful Gladiator's Lamellar Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,85,40,0,0,39,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":85,"3":40,"6":39,"16":35,"22":1535},"isBase":true}}}, +{"id":33699,"name":"Vengeful Gladiator's Lamellar Shoulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,59,24,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":59,"3":24,"6":28,"16":22,"22":1316},"isBase":true}}}, +{"id":33700,"name":"Vengeful Gladiator's Leather Gloves","icon":"inv_gauntlets_65","type":7,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,494,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":59,"6":19,"16":24,"22":494,"23":16},"isBase":true}}}, +{"id":33701,"name":"Vengeful Gladiator's Leather Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,31,78,0,0,12,21,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,642,20,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":31,"2":78,"5":12,"6":21,"7":12,"16":25,"22":642,"23":20},"isBase":true}}}, +{"id":33702,"name":"Vengeful Gladiator's Leather Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,35,78,0,0,12,25,12,0,0,0,0,0,0,0,0,40,0,0,0,0,0,691,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":35,"2":78,"5":12,"6":25,"7":12,"16":40,"22":691,"23":20},"isBase":true}}}, +{"id":33703,"name":"Vengeful Gladiator's Leather Spaulders","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,34,54,0,0,0,27,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,592,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":34,"2":54,"6":27,"16":25,"22":592,"23":16},"isBase":true}}}, +{"id":33704,"name":"Vengeful Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,31,75,0,0,12,17,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,790,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":31,"2":75,"5":12,"6":17,"7":12,"16":25,"22":790,"23":20},"isBase":true}}}, +{"id":33705,"name":"Vengeful Gladiator's Fleshslicer","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33706,"name":"Vengeful Gladiator's Linked Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,27,64,0,0,12,42,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":27,"2":64,"5":12,"6":42,"7":12,"16":31,"22":1189},"isBase":true}}}, +{"id":33707,"name":"Vengeful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,33,51,0,0,0,32,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":51,"6":32,"16":22,"22":743},"isBase":true}}}, +{"id":33708,"name":"Vengeful Gladiator's Linked Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,34,67,0,0,12,33,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":34,"2":67,"5":12,"6":33,"7":12,"16":33,"22":966},"isBase":true}}}, +{"id":33709,"name":"Vengeful Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,38,67,33,0,12,36,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"1":38,"2":67,"3":33,"5":12,"6":36,"7":12,"16":31,"22":1041},"isBase":true}}}, +{"id":33710,"name":"Vengeful Gladiator's Linked Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,25,52,0,0,18,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":25,"2":52,"5":18,"6":27,"16":21,"22":892},"isBase":true}}}, +{"id":33711,"name":"Vengeful Gladiator's Mail Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,72,36,22,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":72,"3":36,"4":22,"6":29,"16":28,"22":1189},"isBase":true}}}, +{"id":33712,"name":"Vengeful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,60,33,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":60,"3":33,"6":28,"16":23,"22":743},"isBase":true}}}, +{"id":33713,"name":"Vengeful Gladiator's Mail Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,76,42,0,0,26,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":76,"3":42,"6":26,"16":32,"22":966},"isBase":true}}}, +{"id":33714,"name":"Vengeful Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,85,45,22,0,29,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":85,"3":45,"4":22,"6":29,"16":33,"22":1041},"isBase":true}}}, +{"id":33715,"name":"Vengeful Gladiator's Mail Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,57,25,16,0,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":57,"3":25,"4":16,"6":22,"16":21,"22":892},"isBase":true}}}, +{"id":33716,"name":"Vengeful Gladiator's Staff","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,62,0,0,22,46,0,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":293,"weaponDamageMax":441,"weaponSpeed":2,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":293,"weaponDamageMax":441,"stats":{"2":62,"5":22,"6":46,"12":92,"13":92,"16":33},"isBase":true}}}, +{"id":33717,"name":"Vengeful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,63,30,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":63,"3":30,"16":25,"22":357,"23":40},"isBase":true}}}, +{"id":33718,"name":"Vengeful Gladiator's Mooncloth Hood","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,81,32,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":81,"3":32,"16":33,"22":464,"23":60},"isBase":true}}}, +{"id":33719,"name":"Vengeful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,84,37,36,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":84,"3":37,"4":36,"16":31,"22":500,"23":60},"isBase":true}}}, +{"id":33720,"name":"Vengeful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,60,26,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,428,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":60,"3":26,"16":25,"22":428,"23":40},"isBase":true}}}, +{"id":33721,"name":"Vengeful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,76,27,22,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":76,"3":27,"4":22,"16":28,"22":571,"23":60},"isBase":true}}}, +{"id":33722,"name":"Vengeful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,85,25,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":85,"3":25,"6":36,"16":28,"22":1754},"isBase":true}}}, +{"id":33723,"name":"Vengeful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[0,0,66,32,0,0,28,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":32,"6":28,"16":18,"22":1096},"isBase":true}}}, +{"id":33724,"name":"Vengeful Gladiator's Ornamented Headcover","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[0,0,86,34,0,0,26,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":86,"3":34,"6":26,"16":32,"22":1425},"isBase":true}}}, +{"id":33725,"name":"Vengeful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,90,41,0,0,40,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":90,"3":41,"6":40,"16":35,"22":1535},"isBase":true}}}, +{"id":33726,"name":"Vengeful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[0,0,60,23,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":60,"3":23,"6":28,"16":23,"22":1316},"isBase":true}}}, +{"id":33727,"name":"Vengeful Gladiator's Painsaw","icon":"inv_weapon_halberd15","type":13,"weaponType":6,"handType":4,"stats":[0,0,62,0,0,0,47,0,0,0,0,0,92,92,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":323,"weaponDamageMax":485,"weaponSpeed":2.2,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":323,"weaponDamageMax":485,"stats":{"2":62,"6":47,"12":92,"13":92,"16":42},"isBase":true}}}, +{"id":33728,"name":"Vengeful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[39,0,67,0,0,12,39,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":39,"2":67,"5":12,"6":39,"7":12,"16":24,"22":1754},"isBase":true}}}, +{"id":33729,"name":"Vengeful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[37,0,52,0,0,0,32,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":37,"2":52,"6":32,"16":24,"22":1096},"isBase":true}}}, +{"id":33730,"name":"Vengeful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[39,0,61,0,0,12,35,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":39,"2":61,"5":12,"6":35,"7":12,"16":25,"22":1425},"isBase":true}}}, +{"id":33731,"name":"Vengeful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[51,0,70,0,0,12,47,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":51,"2":70,"5":12,"6":47,"7":12,"16":22,"22":1535},"isBase":true}}}, +{"id":33732,"name":"Vengeful Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[33,0,57,0,0,0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":33,"2":57,"6":30,"16":20,"22":1316},"isBase":true}}}, +{"id":33733,"name":"Vengeful Gladiator's Pummeler","icon":"inv_mace_41","type":13,"weaponType":4,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33734,"name":"Vengeful Gladiator's Quickblade","icon":"inv_sword_89","type":13,"weaponType":9,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33735,"name":"Vengeful Gladiator's Redoubt","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":47,"3":30,"16":27,"22":4697},"isBase":true}}}, +{"id":33736,"name":"Vengeful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":47,"3":30,"16":27},"isBase":true}}}, +{"id":33737,"name":"Vengeful Gladiator's Ripper","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33738,"name":"Vengeful Gladiator's Ringmail Armor","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,74,36,20,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1189,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":74,"3":36,"4":20,"6":30,"16":26,"22":1189},"isBase":true}}}, +{"id":33739,"name":"Vengeful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,61,35,0,0,25,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,743,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":61,"3":35,"6":25,"16":22,"22":743},"isBase":true}}}, +{"id":33740,"name":"Vengeful Gladiator's Ringmail Helm","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,82,38,0,0,25,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,966,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":82,"3":38,"6":25,"16":33,"22":966},"isBase":true}}}, +{"id":33741,"name":"Vengeful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,85,45,22,0,29,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1041,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":85,"3":45,"4":22,"6":29,"16":33,"22":1041},"isBase":true}}}, +{"id":33742,"name":"Vengeful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_61","type":3,"armorType":3,"stats":[0,0,58,25,18,0,20,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":58,"3":25,"4":18,"6":20,"16":21,"22":892},"isBase":true}}}, +{"id":33743,"name":"Vengeful Gladiator's Salvation","icon":"inv_mace_56","type":13,"weaponType":4,"handType":2,"stats":[0,0,52,0,0,0,0,0,0,0,0,0,0,0,309,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"2":52,"14":309,"16":21},"isBase":true}}}, +{"id":33744,"name":"Vengeful Gladiator's Satin Gloves","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,61,30,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":61,"3":30,"16":25,"22":357,"23":40},"isBase":true}}}, +{"id":33745,"name":"Vengeful Gladiator's Satin Hood","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,78,36,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":78,"3":36,"16":32,"22":464,"23":60},"isBase":true}}}, +{"id":33746,"name":"Vengeful Gladiator's Satin Leggings","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,91,49,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":91,"3":49,"16":34,"22":500,"23":60},"isBase":true}}}, +{"id":33747,"name":"Vengeful Gladiator's Satin Mantle","icon":"inv_shoulder_63","type":3,"armorType":1,"stats":[0,0,62,27,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":62,"3":27,"16":23,"22":428,"23":40},"isBase":true}}}, +{"id":33748,"name":"Vengeful Gladiator's Satin Robe","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,78,34,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":78,"3":34,"16":31,"22":571,"23":60},"isBase":true}}}, +{"id":33749,"name":"Vengeful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[42,0,81,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1754,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":42,"2":81,"6":30,"16":30,"22":1754},"isBase":true}}}, +{"id":33750,"name":"Vengeful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_60","type":7,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1096,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":40,"2":60,"6":27,"16":27,"22":1096},"isBase":true}}}, +{"id":33751,"name":"Vengeful Gladiator's Scaled Helm","icon":"inv_helmet_96","type":1,"armorType":4,"stats":[42,0,81,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1425,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":42,"2":81,"6":30,"16":30,"22":1425},"isBase":true}}}, +{"id":33752,"name":"Vengeful Gladiator's Scaled Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[54,0,81,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"0":54,"2":81,"6":36,"16":36,"22":1535},"isBase":true}}}, +{"id":33753,"name":"Vengeful Gladiator's Scaled Shoulders","icon":"inv_shoulder_60","type":3,"armorType":4,"stats":[32,0,60,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":32,"2":60,"6":23,"16":23,"22":1316},"isBase":true}}}, +{"id":33754,"name":"Vengeful Gladiator's Shanker","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":203,"weaponDamageMax":305,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":203,"weaponDamageMax":305,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33755,"name":"Vengeful Gladiator's Shield Wall","icon":"inv_shield_31","type":13,"weaponType":7,"handType":3,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,4697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":55,"16":31,"22":4697},"isBase":true}}}, +{"id":33756,"name":"Vengeful Gladiator's Shiv","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33757,"name":"Vengeful Gladiator's Silk Amice","icon":"inv_shoulder_64","type":3,"armorType":1,"stats":[0,0,52,34,0,0,17,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,428,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":52,"3":34,"6":17,"16":23,"22":428,"23":40},"isBase":true}}}, +{"id":33758,"name":"Vengeful Gladiator's Silk Cowl","icon":"inv_helmet_101","type":1,"armorType":1,"stats":[0,0,70,40,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,464,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":70,"3":40,"6":24,"16":33,"22":464,"23":60},"isBase":true}}}, +{"id":33759,"name":"Vengeful Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,58,34,0,0,22,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,357,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":58,"3":34,"6":22,"16":23,"22":357,"23":40},"isBase":true}}}, +{"id":33760,"name":"Vengeful Gladiator's Silk Raiment","icon":"inv_chest_cloth_67","type":5,"armorType":1,"stats":[0,0,63,33,0,0,33,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,571,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":63,"3":33,"6":33,"16":26,"22":571,"23":60},"isBase":true}}}, +{"id":33761,"name":"Vengeful Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,82,45,0,0,33,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,500,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":82,"3":45,"6":33,"16":30,"22":500,"23":60},"isBase":true}}}, +{"id":33762,"name":"Vengeful Gladiator's Slicer","icon":"inv_sword_89","type":13,"weaponType":9,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":293,"weaponDamageMax":441,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":293,"weaponDamageMax":441,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33763,"name":"Vengeful Gladiator's Spellblade","icon":"inv_weapon_shortblade_51","type":13,"weaponType":2,"handType":2,"stats":[0,0,45,0,0,17,0,0,0,0,0,0,0,0,309,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"2":45,"5":17,"14":309,"16":18},"isBase":true}}}, +{"id":33764,"name":"Vengeful Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,40,21,0,0,0,0,0,0,0,0,0,0,309,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.9,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"stats":{"2":40,"3":21,"14":309,"16":19},"isBase":true}}}, +{"id":33766,"name":"Vengeful Gladiator's War Staff","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,98,0,0,0,46,0,0,0,0,0,0,0,310,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":146,"weaponDamageMax":220,"weaponSpeed":2,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":146,"weaponDamageMax":220,"stats":{"2":98,"6":46,"14":310,"16":29},"isBase":true}}}, +{"id":33767,"name":"Vengeful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,59,37,10,0,12,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,494,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":59,"3":37,"4":10,"6":12,"16":22,"22":494,"23":12},"isBase":true}}}, +{"id":33768,"name":"Vengeful Gladiator's Wyrmhide Helm","icon":"inv_helmet_94","type":1,"armorType":2,"stats":[0,0,77,45,16,0,17,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,642,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":77,"3":45,"4":16,"6":17,"16":28,"22":642,"23":12},"isBase":true}}}, +{"id":33769,"name":"Vengeful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,83,52,22,0,22,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,691,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":83,"3":52,"4":22,"6":22,"16":31,"22":691,"23":16},"isBase":true}}}, +{"id":33770,"name":"Vengeful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,0,55,31,8,0,8,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,592,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":55,"3":31,"4":8,"6":8,"16":22,"22":592,"23":12},"isBase":true}}}, +{"id":33771,"name":"Vengeful Gladiator's Wyrmhide Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,73,45,12,0,13,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,790,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"ilvl":146,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"146":{"randPropPoints":103,"stats":{"2":73,"3":45,"4":12,"6":13,"16":27,"22":790,"23":12},"isBase":true}}}, +{"id":33801,"name":"Vengeful Gladiator's Mutilator","icon":"inv_weapon_shortblade_62","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":33805,"name":"Shadowhunter's Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,33,48,0,0,0,15,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"1":33,"2":48,"6":15,"7":26,"22":696},"isBase":true}}}, +{"id":33808,"name":"The Horseman's Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[40,0,46,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"0":40,"2":46,"6":30,"22":1128},"isBase":true}}}, +{"id":33810,"name":"Amani Mask of Death","icon":"inv_helmet_114","type":1,"armorType":4,"stats":[46,0,51,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"0":46,"2":51,"5":33,"22":1178},"isBase":true}}}, +{"id":33811,"name":"Vindicator's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[35,0,49,0,0,0,35,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":35,"2":49,"6":35,"16":30,"22":987},"isBase":true}}}, +{"id":33812,"name":"Vindicator's Plate Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[35,0,49,0,0,0,35,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":35,"2":49,"6":35,"16":30,"22":1206},"isBase":true}}}, +{"id":33813,"name":"Vindicator's Plate Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,36,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":25,"2":36,"6":21,"16":17,"22":727},"isBase":true}}}, +{"id":33828,"name":"Tome of Diabolic Remedy","icon":"inv_offhand_stratholme_a_01","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"4":46},"isBase":true}}}, +{"id":33829,"name":"Hex Shrunken Head","icon":"inv_misc_head_troll_01","type":12,"stats":[0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"3":45},"isBase":true}}}, +{"id":33830,"name":"Ancient Aqir Artifact","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"10":45},"isBase":true}}}, +{"id":33831,"name":"Berserker's Call","icon":"racial_troll_berserk","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":23863,"zoneId":3805}}],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"12":90,"13":90},"isBase":true}}}, +{"id":33832,"name":"Battlemaster's Determination","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"12":80,"13":80},"isBase":true}}}, +{"id":33853,"name":"Vindicator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,40,28,0,0,0,14,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":40,"3":28,"7":14,"16":22},"isBase":true}}}, +{"id":33876,"name":"Vindicator's Chain Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,39,0,0,0,11,12,0,0,0,0,0,0,0,0,13,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[2,7,10],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":23,"2":39,"6":11,"7":12,"16":13,"22":497},"isBase":true}}}, +{"id":33877,"name":"Vindicator's Chain Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,33,62,0,0,0,18,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":62,"6":18,"7":19,"16":21,"22":669},"isBase":true}}}, +{"id":33878,"name":"Vindicator's Chain Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,33,62,0,0,0,18,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":62,"6":18,"7":19,"16":21,"22":818},"isBase":true}}}, +{"id":33879,"name":"Vindicator's Dragonhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,30,64,0,0,0,21,0,20,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":30,"2":64,"6":21,"8":20,"16":26,"22":444,"23":12},"isBase":true}}}, +{"id":33880,"name":"Vindicator's Dragonhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,30,64,0,0,20,21,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":30,"2":64,"5":20,"6":21,"16":26,"22":543,"23":12},"isBase":true}}}, +{"id":33881,"name":"Vindicator's Dragonhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,22,47,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":22,"2":47,"6":21,"16":17,"22":330,"23":12},"isBase":true}}}, +{"id":33882,"name":"Vindicator's Dreadweave Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":73,"3":35,"16":31,"22":321,"23":20},"isBase":true}}}, +{"id":33883,"name":"Vindicator's Dreadweave Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":48,"3":25,"16":17,"22":239,"23":20},"isBase":true}}}, +{"id":33884,"name":"Vindicator's Dreadweave Stalkers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":73,"3":35,"16":31,"22":393,"23":20},"isBase":true}}}, +{"id":33885,"name":"Vindicator's Kodohide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":34,"4":22,"16":26,"22":444,"23":12},"isBase":true}}}, +{"id":33886,"name":"Vindicator's Kodohide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":34,"4":22,"16":26,"22":543,"23":12},"isBase":true}}}, +{"id":33887,"name":"Vindicator's Kodohide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,47,18,18,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":47,"3":18,"4":18,"16":18,"22":330,"23":12},"isBase":true}}}, +{"id":33888,"name":"Vindicator's Lamellar Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":30,"16":26,"22":987},"isBase":true}}}, +{"id":33889,"name":"Vindicator's Lamellar Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,23,0,0,20,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":23,"6":20,"16":15,"22":727},"isBase":true}}}, +{"id":33890,"name":"Vindicator's Lamellar Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":30,"16":26,"22":1206},"isBase":true}}}, +{"id":33891,"name":"Vindicator's Leather Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,444,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":59,"6":19,"16":30,"22":444},"isBase":true}}}, +{"id":33892,"name":"Vindicator's Leather Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,33,59,0,0,0,19,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":59,"6":19,"16":30,"22":543},"isBase":true}}}, +{"id":33893,"name":"Vindicator's Leather Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,25,39,0,0,0,12,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":25,"2":39,"6":12,"16":15,"22":330},"isBase":true}}}, +{"id":33894,"name":"Vindicator's Linked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,25,33,0,0,0,28,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":25,"2":33,"6":28,"16":12,"22":497},"isBase":true}}}, +{"id":33895,"name":"Vindicator's Linked Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,34,49,0,0,0,44,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":34,"2":49,"6":44,"16":21,"22":669},"isBase":true}}}, +{"id":33896,"name":"Vindicator's Linked Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,33,49,0,0,0,45,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"1":33,"2":49,"6":45,"16":21,"22":818},"isBase":true}}}, +{"id":33897,"name":"Vindicator's Mail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,41,23,0,0,21,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":23,"6":21,"16":15,"22":497},"isBase":true}}}, +{"id":33898,"name":"Vindicator's Mail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":29,"16":27,"22":669},"isBase":true}}}, +{"id":33899,"name":"Vindicator's Mail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":29,"16":27,"22":818},"isBase":true}}}, +{"id":33900,"name":"Vindicator's Mooncloth Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":72,"3":35,"16":31,"22":321,"23":20},"isBase":true}}}, +{"id":33901,"name":"Vindicator's Mooncloth Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,48,25,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":48,"3":25,"16":17,"22":239,"23":20},"isBase":true}}}, +{"id":33902,"name":"Vindicator's Mooncloth Slippers","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":72,"3":35,"16":31,"22":393,"23":20},"isBase":true}}}, +{"id":33903,"name":"Vindicator's Ornamented Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":30,"16":26,"22":987},"isBase":true}}}, +{"id":33904,"name":"Vindicator's Ornamented Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,41,23,0,0,20,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":23,"6":20,"16":15,"22":727},"isBase":true}}}, +{"id":33905,"name":"Vindicator's Ornamented Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,66,30,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":30,"16":26,"22":1206},"isBase":true}}}, +{"id":33906,"name":"Vindicator's Ringmail Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,41,23,0,0,21,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,497,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":41,"3":23,"6":21,"16":15,"22":497},"isBase":true}}}, +{"id":33907,"name":"Vindicator's Ringmail Girdle","icon":"inv_belt_20","type":8,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":29,"16":27,"22":669},"isBase":true}}}, +{"id":33908,"name":"Vindicator's Ringmail Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":3,"stats":[0,0,66,30,0,0,29,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":29,"16":27,"22":818},"isBase":true}}}, +{"id":33909,"name":"Vindicator's Scaled Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":40,"2":60,"6":27,"16":27,"22":987},"isBase":true}}}, +{"id":33910,"name":"Vindicator's Scaled Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[25,0,43,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,727,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"0":25,"2":43,"6":17,"16":17,"22":727},"isBase":true}}}, +{"id":33911,"name":"Vindicator's Scaled Greaves","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[40,0,60,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"0":40,"2":60,"6":27,"16":27,"22":1206},"isBase":true}}}, +{"id":33912,"name":"Vindicator's Silk Belt","icon":"inv_belt_17","type":8,"armorType":1,"stats":[0,0,66,30,0,0,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,321,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":28,"16":26,"22":321,"23":20},"isBase":true}}}, +{"id":33913,"name":"Vindicator's Silk Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,47,23,0,0,15,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,239,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":47,"3":23,"6":15,"16":13,"22":239,"23":20},"isBase":true}}}, +{"id":33914,"name":"Vindicator's Silk Footguards","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,66,30,0,0,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,393,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":30,"6":28,"16":26,"22":393,"23":20},"isBase":true}}}, +{"id":33915,"name":"Vindicator's Wyrmhide Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,444,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":34,"4":22,"16":26,"22":444,"23":12},"isBase":true}}}, +{"id":33916,"name":"Vindicator's Wyrmhide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,66,34,22,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,543,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":76,"ilvl":146,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"146":{"randPropPoints":76,"stats":{"2":66,"3":34,"4":22,"16":26,"22":543,"23":12},"isBase":true}}}, +{"id":33917,"name":"Vindicator's Wyrmhide Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,46,20,18,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,330,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":46,"3":20,"4":18,"16":15,"22":330,"23":12},"isBase":true}}}, +{"id":33918,"name":"Vindicator's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,48,23,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":48,"3":23,"4":16,"16":22},"isBase":true}}}, +{"id":33919,"name":"Vindicator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,34,0,0,0,26,8,0,0,0,0,44,44,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":34,"6":26,"7":8,"12":44,"13":44,"16":22},"isBase":true}}}, +{"id":33920,"name":"Vindicator's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,21,0,0,21,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":40,"3":21,"6":21,"16":18},"isBase":true}}}, +{"id":33921,"name":"Vindicator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,49,26,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":49,"3":26,"16":18},"isBase":true}}}, +{"id":33922,"name":"Vindicator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,43,23,16,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":23,"4":16,"16":18},"isBase":true}}}, +{"id":33923,"name":"Vindicator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,0,0,0,22,0,0,0,0,0,50,50,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":35,"6":22,"12":50,"13":50,"16":18},"isBase":true}}}, +{"id":33957,"name":"Witches Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":21,"4":16},"isBase":true}}}, +{"id":33958,"name":"The Horseman's Signet Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"3":30},"isBase":true}}}, +{"id":33959,"name":"Ring of Ghoulish Delight","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"12":60,"13":60},"isBase":true}}}, +{"id":33964,"name":"Helm of the Stormcaller","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,68,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":45,"6":22,"22":822},"isBase":true}}}, +{"id":33965,"name":"Hauberk of the Furious Elements","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,68,46,0,0,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":46,"6":23,"7":35,"22":1012},"isBase":true}}}, +{"id":33970,"name":"Pauldrons of the Furious Elements","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,48,34,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":48,"3":34,"7":33,"22":759},"isBase":true}}}, +{"id":33971,"name":"Elunite Imbued Leggings","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,68,39,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3805,"otherName":"Timed Chest","category":"Timed Reward Chest %d"}}],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":68,"3":39,"6":31,"22":591},"isBase":true}}}, +{"id":33972,"name":"Mask of Primal Power","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,69,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":87,"stats":{"2":69,"3":39,"6":30,"22":549},"isBase":true}}}, +{"id":33973,"name":"Pauldrons of Tribal Fury","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,42,33,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":42,"3":33,"5":26,"22":507},"isBase":true}}}, +{"id":33974,"name":"Grasp of the Moonkin","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,0,55,34,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":55,"3":34,"7":25,"22":422},"isBase":true}}}, +{"id":34009,"name":"Hammer of Judgement","icon":"inv_mace_57","type":13,"weaponType":4,"handType":2,"stats":[0,0,50,0,0,22,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"weaponSpeed":1.8,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}},{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":42,"weaponDamageMin":85,"weaponDamageMax":158,"stats":{"2":50,"5":22,"14":295},"isBase":true}}}, +{"id":34010,"name":"Pepe's Shroud of Pacification","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,45,0,0,25,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3606,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"5":25,"9":30,"22":274},"isBase":true}}}, +{"id":34011,"name":"Illidari Runeshield","icon":"inv_shield_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,64,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":64,"3":29,"22":4417},"isBase":true}}}, +{"id":34012,"name":"Shroud of the Final Stand","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,43,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":3959,"otherName":"Trash"}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":43,"3":29,"4":28,"22":274},"isBase":true}}}, +{"id":34014,"name":"Vengeful Gladiator's Waraxe","icon":"inv_axe_61","type":13,"weaponType":1,"handType":4,"stats":[0,0,62,0,0,15,46,14,0,0,0,0,92,92,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[2,10],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"stats":{"2":62,"5":15,"6":46,"7":14,"12":92,"13":92,"16":33},"isBase":true}}}, +{"id":34015,"name":"Vengeful Gladiator's Chopper","icon":"inv_axe_84","type":13,"weaponType":1,"handType":3,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":34016,"name":"Vengeful Gladiator's Slasher","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,30,0,0,8,21,7,0,0,0,0,34,34,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"weaponSpeed":2.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":256,"weaponDamageMax":477,"stats":{"2":30,"5":8,"6":21,"7":7,"12":34,"13":34,"16":12},"isBase":true}}}, +{"id":34029,"name":"Tiny Voodoo Mask","icon":"inv_helm_mask_zulgurub_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24239,"zoneId":3805}}],"scalingOptions":{"128":{"randPropPoints":64,"isBase":true}}}, +{"id":34033,"name":"Vengeful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,34,24,0,0,0,35,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":57,"stats":{"2":34,"3":24,"7":35,"16":23},"isBase":true}}}, +{"id":34039,"name":"Bow of Unusual Slowness","icon":"inv_weapon_bow_08","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":481,"weaponDamageMax":894,"weaponSpeed":6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":481,"weaponDamageMax":894,"isBase":true}}}, +{"id":34049,"name":"Battlemaster's Audacity","icon":"spell_nature_focusedmind","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"3":40},"isBase":true}}}, +{"id":34050,"name":"Battlemaster's Perseverance","icon":"spell_holy_heroism","type":12,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"3":40},"isBase":true}}}, +{"id":34059,"name":"Vengeful Gladiator's Baton of Light","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,40,21,0,0,0,0,0,0,0,0,0,0,309,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.9,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"stats":{"2":40,"3":21,"14":309,"16":19},"isBase":true}}}, +{"id":34066,"name":"Vengeful Gladiator's Piercing Touch","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,25,17,0,0,0,28,0,0,0,0,0,0,309,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.9,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":93,"weaponDamageMax":174,"stats":{"2":25,"3":17,"7":28,"14":309,"16":19},"isBase":true}}}, +{"id":34073,"name":"The Horseman's Signet Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,33,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"3":30},"isBase":true}}}, +{"id":34074,"name":"Witches Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,40,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":21,"4":16},"isBase":true}}}, +{"id":34075,"name":"Ring of Ghoulish Delight","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"12":60,"13":60},"isBase":true}}}, +{"id":34138,"name":"Enchanted White Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,32,35,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"stats":{"2":32,"3":35,"14":351},"isBase":true}}}, +{"id":34139,"name":"Enchanted Crimson Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,35,0,0,26,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"stats":{"3":35,"6":26,"14":351},"isBase":true}}}, +{"id":34144,"name":"Branch of Destruction","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,36,0,0,26,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.8,"ilvl":175,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":58,"weaponDamageMin":115,"weaponDamageMax":215,"stats":{"3":36,"6":26,"14":408},"isBase":true}}}, +{"id":34145,"name":"Rod of Devastation","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,35,0,0,26,0,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"weaponDamageMin":132,"weaponDamageMax":247,"weaponSpeed":1.8,"ilvl":190,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"190":{"randPropPoints":66,"weaponDamageMin":132,"weaponDamageMax":247,"stats":{"3":35,"6":26,"14":464},"isBase":true}}}, +{"id":34146,"name":"Red Death","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,0,35,0,0,26,0,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":1.8,"ilvl":210,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"210":{"randPropPoints":80,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"3":35,"6":26,"14":562},"isBase":true}}}, +{"id":34147,"name":"Silverstave","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,33,36,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"weaponDamageMin":115,"weaponDamageMax":215,"weaponSpeed":1.8,"ilvl":175,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":58,"weaponDamageMin":115,"weaponDamageMax":215,"stats":{"2":33,"3":36,"14":408},"isBase":true}}}, +{"id":34148,"name":"Purified Silverstave","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,32,35,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"weaponDamageMin":132,"weaponDamageMax":247,"weaponSpeed":1.8,"ilvl":190,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"190":{"randPropPoints":66,"weaponDamageMin":132,"weaponDamageMax":247,"stats":{"2":32,"3":35,"14":464},"isBase":true}}}, +{"id":34149,"name":"Lightstave","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,33,35,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":1.8,"ilvl":210,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"210":{"randPropPoints":80,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":33,"3":35,"14":562},"isBase":true}}}, +{"id":34162,"name":"Battlemaster's Depravity","icon":"ability_rogue_sinistercalling","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"6":40},"isBase":true}}}, +{"id":34163,"name":"Battlemaster's Cruelty","icon":"ability_warrior_focusedrage","type":12,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"6":40},"isBase":true}}}, +{"id":34164,"name":"Dragonscale-Encrusted Longblade","icon":"inv_sword_115","type":13,"weaponType":9,"handType":2,"stats":[0,0,36,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":36,"7":25,"8":25},"isBase":true}}}, +{"id":34165,"name":"Fang of Kalecgos","icon":"inv_weapon_shortblade_74","type":13,"weaponType":2,"handType":2,"stats":[0,25,36,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"1":25,"2":36,"7":25},"isBase":true}}}, +{"id":34166,"name":"Band of Lucent Beams","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,46,33,20,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":46,"3":33,"4":20,"7":22},"isBase":true}}}, +{"id":34167,"name":"Legplates of the Holy Juggernaut","icon":"inv_pants_plate_22","type":9,"armorType":4,"stats":[0,0,83,45,46,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":83,"3":45,"4":46,"6":37,"22":1746},"isBase":true}}}, +{"id":34168,"name":"Starstalker Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,60,64,0,0,20,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":60,"2":64,"5":20,"6":57,"22":1175},"isBase":true}}}, +{"id":34169,"name":"Breeches of Natural Aggression","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,78,61,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":78,"3":61,"6":49,"22":777},"isBase":true}}}, +{"id":34170,"name":"Pantaloons of Calming Strife","icon":"inv_pants_cloth_07","type":9,"armorType":1,"stats":[0,0,62,61,42,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24850,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":62,"3":61,"4":42,"6":25,"22":558},"isBase":true}}}, +{"id":34176,"name":"Reign of Misery","icon":"inv_mace_73","type":13,"weaponType":4,"handType":2,"stats":[0,0,46,0,0,0,0,30,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":46,"7":30,"14":330},"isBase":true}}}, +{"id":34177,"name":"Clutch of Demise","icon":"inv_jewelry_necklace_43","type":2,"stats":[0,25,61,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":25,"2":61,"7":30},"isBase":true}}}, +{"id":34178,"name":"Collar of the Pit Lord","icon":"inv_jewelry_necklace_47","type":2,"stats":[0,0,63,0,0,0,0,0,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":63,"8":29,"9":25},"isBase":true}}}, +{"id":34179,"name":"Heart of the Pit","icon":"inv_offhand_sunwell_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,48,33,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":48,"3":33,"7":32},"isBase":true}}}, +{"id":34180,"name":"Felfury Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[61,0,48,0,0,0,34,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":48,"6":34,"7":50,"22":1746},"isBase":true}}}, +{"id":34181,"name":"Leggings of Calamity","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,82,61,0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24882,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"6":33,"7":32,"22":558},"isBase":true}}}, +{"id":34182,"name":"Grand Magister's Staff of Torrents","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,101,0,0,50,49,0,0,0,0,0,0,0,334,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":252,"weaponDamageMax":379,"weaponSpeed":3.2,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":252,"weaponDamageMax":379,"stats":{"2":101,"5":50,"6":49,"14":334},"isBase":true}}}, +{"id":34183,"name":"Shivering Felspine","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,52,90,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":552,"weaponDamageMax":828,"weaponSpeed":3.5,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":552,"weaponDamageMax":828,"stats":{"1":52,"2":90,"7":53},"isBase":true}}}, +{"id":34184,"name":"Brooch of the Highborne","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,50,32,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":50,"3":32,"4":22,"7":20},"isBase":true}}}, +{"id":34185,"name":"Sword Breaker's Bulwark","icon":"inv_shield_53","type":13,"weaponType":7,"handType":3,"stats":[21,0,49,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,5101,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":21,"2":49,"10":27,"22":5101},"isBase":true}}}, +{"id":34186,"name":"Chain Links of the Tumultuous Storm","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,82,61,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"6":35,"7":30,"22":1175},"isBase":true}}}, +{"id":34188,"name":"Leggings of the Immortal Night","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,62,82,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":62,"2":82,"5":32,"6":32,"22":777},"isBase":true}}}, +{"id":34189,"name":"Band of Ruinous Delight","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,30,0,0,0,32,23,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":30,"6":32,"7":23,"12":66,"13":66},"isBase":true}}}, +{"id":34190,"name":"Crimson Paragon's Cover","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,61,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":61,"8":28,"9":28,"22":306},"isBase":true}}}, +{"id":34192,"name":"Pauldrons of Perseverance","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[30,0,60,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":30,"2":60,"10":44,"22":1497},"isBase":true}}}, +{"id":34193,"name":"Spaulders of the Thalassian Savior","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,49,45,36,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":49,"3":45,"4":36,"6":22,"22":1497},"isBase":true}}}, +{"id":34194,"name":"Mantle of the Golden Forest","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,45,75,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":45,"2":75,"6":22,"22":1007},"isBase":true}}}, +{"id":34195,"name":"Shoulderpads of Vehemence","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,45,71,0,0,26,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":45,"2":71,"5":26,"7":30,"22":666},"isBase":true}}}, +{"id":34196,"name":"Golden Bow of Quel'Thalas","icon":"inv_weapon_bow_38","type":14,"rangedWeaponType":1,"stats":[0,57,82,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":414,"weaponDamageMax":769,"weaponSpeed":3,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":414,"weaponDamageMax":769,"stats":{"1":57,"2":82,"6":79},"isBase":true}}}, +{"id":34197,"name":"Shiv of Exsanguination","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,25,32,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"1":25,"2":32,"6":28},"isBase":true}}}, +{"id":34198,"name":"Stanchion of Primal Instinct","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,75,90,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":3,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"stats":{"1":75,"2":90,"6":50},"isBase":true}}}, +{"id":34199,"name":"Archon's Gavel","icon":"inv_mace_71","type":13,"weaponType":4,"handType":2,"stats":[0,0,46,0,26,0,0,0,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"stats":{"2":46,"4":26,"14":330},"isBase":true}}}, +{"id":34202,"name":"Shawl of Wonderment","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,54,45,22,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":54,"3":45,"4":22,"7":33,"22":479},"isBase":true}}}, +{"id":34203,"name":"Grip of Mannoroth","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,20,0,31,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"5":20,"7":31,"12":46,"13":46},"isBase":true}}}, +{"id":34204,"name":"Amulet of Unfettered Magics","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,0,37,33,0,15,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"5":15,"7":32},"isBase":true}}}, +{"id":34205,"name":"Shroud of Redeemed Souls","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,47,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":33,"4":32,"22":306},"isBase":true}}}, +{"id":34206,"name":"Book of Highborne Hymns","icon":"inv_offhand_sunwell_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,47,32,22,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":32,"4":22,"7":22},"isBase":true}}}, +{"id":34208,"name":"Equilibrium Epaulets","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,56,45,30,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":56,"3":45,"4":30,"7":24,"22":1007},"isBase":true}}}, +{"id":34209,"name":"Spaulders of Reclamation","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,50,45,30,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":50,"3":45,"4":30,"7":30,"22":666},"isBase":true}}}, +{"id":34210,"name":"Amice of the Convoker","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,59,45,0,0,22,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":59,"3":45,"6":22,"7":30,"22":479},"isBase":true}}}, +{"id":34211,"name":"Harness of Carnal Instinct","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,75,107,0,0,22,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":75,"2":107,"5":22,"6":28,"22":887},"isBase":true}}}, +{"id":34212,"name":"Sunglow Vest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":32,"7":33,"22":887},"isBase":true}}}, +{"id":34213,"name":"Ring of Hardened Resolve","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,48,0,0,0,0,0,22,32,28,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":48,"8":22,"9":32,"10":28,"23":88},"isBase":true}}}, +{"id":34214,"name":"Muramasa","icon":"inv_sword_114","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,17,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":27,"5":17,"7":35},"isBase":true}}}, +{"id":34215,"name":"Warharness of Reckless Fury","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[61,0,67,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":67,"6":41,"7":32,"22":1995},"isBase":true}}}, +{"id":34216,"name":"Heroic Judicator's Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[61,0,78,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":78,"9":55,"22":1995},"isBase":true}}}, +{"id":34228,"name":"Vicious Hawkstrider Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,52,82,0,0,0,26,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":52,"2":82,"6":26,"7":47,"22":1343},"isBase":true}}}, +{"id":34229,"name":"Garments of Serene Shores","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,82,61,40,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":40,"6":25,"22":1343},"isBase":true}}}, +{"id":34230,"name":"Ring of Omnipotence","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,32,34,0,0,22,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":32,"3":34,"6":22,"7":31},"isBase":true}}}, +{"id":34231,"name":"Aegis of Angelic Fortune","icon":"inv_shield_52","type":13,"weaponType":7,"handType":3,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5101,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":48,"3":33,"4":32,"22":5101},"isBase":true}}}, +{"id":34232,"name":"Fel Conquerer Raiments","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,91,61,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":91,"3":61,"6":24,"7":33,"22":638},"isBase":true}}}, +{"id":34233,"name":"Robes of Faltered Light","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,74,61,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"gemSockets":[3,3,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":111,"stats":{"2":74,"3":61,"4":40,"7":32,"22":611},"isBase":true}}}, +{"id":34234,"name":"Shadowed Gauntlets of Paroxysm","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,41,71,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":41,"2":71,"7":30,"22":555},"isBase":true}}}, +{"id":34240,"name":"Gauntlets of the Soothed Soul","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,57,45,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":57,"3":45,"4":22,"7":30,"22":1247},"isBase":true}}}, +{"id":34241,"name":"Cloak of Unforgivable Sin","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,26,59,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":68,"stats":{"1":26,"2":59,"7":32,"22":333},"isBase":true}}}, +{"id":34242,"name":"Tattered Cape of Antonidas","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,48,36,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":68,"stats":{"2":48,"3":36,"7":32,"22":333},"isBase":true}}}, +{"id":34243,"name":"Helm of Burning Righteousness","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,87,63,36,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":87,"3":63,"4":36,"6":34,"22":1697},"isBase":true}}}, +{"id":34244,"name":"Duplicitous Guise","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,63,91,0,0,30,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"1":63,"2":91,"5":30,"7":34,"22":754},"isBase":true}}}, +{"id":34245,"name":"Cover of Ursol the Wise","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,83,64,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,754,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":83,"3":64,"4":51,"22":754},"isBase":true}}}, +{"id":34247,"name":"Apolyon, the Soul-Render","icon":"inv_sword_116","type":13,"weaponType":9,"handType":4,"stats":[0,0,75,0,0,0,42,32,0,0,0,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"weaponDamageMin":586,"weaponDamageMax":880,"weaponSpeed":3.4,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"weaponDamageMin":586,"weaponDamageMax":880,"stats":{"2":75,"6":42,"7":32,"12":126,"13":126},"isBase":true}}}, +{"id":34329,"name":"Crux of the Apocalypse","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,18,43,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":239,"weaponDamageMax":359,"weaponSpeed":1.8,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":52,"weaponDamageMin":239,"weaponDamageMax":359,"stats":{"1":18,"2":43,"7":27},"isBase":true}}}, +{"id":34331,"name":"Hand of the Deceiver","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,28,0,0,0,28,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":345,"weaponDamageMax":518,"weaponSpeed":2.6,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":52,"weaponDamageMin":345,"weaponDamageMax":518,"stats":{"2":28,"6":28,"12":54,"13":54},"isBase":true}}}, +{"id":34332,"name":"Cowl of Gul'dan","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,87,63,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":87,"3":63,"6":36,"7":32,"22":1143},"isBase":true}}}, +{"id":34333,"name":"Coif of Alleria","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,63,62,0,0,0,58,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"1":63,"2":62,"6":58,"7":26,"22":1143},"isBase":true}}}, +{"id":34334,"name":"Thori'dal, the Stars' Fury","icon":"inv_weapon_bow_39","type":14,"rangedWeaponType":1,"stats":[0,54,83,0,0,0,51,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":407,"weaponDamageMax":757,"weaponSpeed":2.7,"ilvl":164,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"weaponDamageMin":407,"weaponDamageMax":757,"stats":{"1":54,"2":83,"6":51,"7":54},"isBase":true}}}, +{"id":34335,"name":"Hammer of Sanctification","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,42,0,22,0,0,23,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":52,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":42,"4":22,"7":23,"14":365},"isBase":true}}}, +{"id":34336,"name":"Sunflare","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":2,"stats":[0,0,35,0,0,0,30,23,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":52,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":35,"6":30,"7":23,"14":365},"isBase":true}}}, +{"id":34337,"name":"Golden Staff of the Sin'dorei","icon":"inv_staff_73","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,57,0,0,32,0,0,0,0,0,0,364,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"weaponDamageMin":276,"weaponDamageMax":414,"weaponSpeed":3.2,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"weaponDamageMin":276,"weaponDamageMax":414,"stats":{"2":106,"4":57,"7":32,"14":364},"isBase":true}}}, +{"id":34339,"name":"Cowl of Light's Purity","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":86,"3":64,"4":38,"7":30,"22":541},"isBase":true}}}, +{"id":34340,"name":"Dark Conjuror's Collar","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,0,0,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":86,"3":64,"6":38,"7":30,"22":541},"isBase":true}}}, +{"id":34341,"name":"Borderland Paingrips","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[47,0,48,0,0,0,39,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,0,0,0,0],"gemSockets":[2,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":90,"stats":{"0":47,"2":48,"6":39,"7":23,"22":1305},"isBase":true}}}, +{"id":34342,"name":"Handguards of the Dawn","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,61,40,36,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":90,"stats":{"2":61,"3":40,"4":36,"7":27,"22":416},"isBase":true}}}, +{"id":34343,"name":"Thalassian Ranger Gauntlets","icon":"inv_gauntlets_51","type":7,"armorType":3,"stats":[0,40,63,0,0,0,47,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":90,"stats":{"1":40,"2":63,"6":47,"7":26,"22":879},"isBase":true}}}, +{"id":34344,"name":"Handguards of Defiled Worlds","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,61,40,0,27,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":90,"stats":{"2":61,"3":40,"5":27,"7":36,"22":416},"isBase":true}}}, +{"id":34345,"name":"Crown of Anasterian","icon":"inv_helmet_92","type":1,"armorType":4,"stats":[61,0,67,0,0,0,40,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25315,"zoneId":4075}}],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"0":61,"2":67,"6":40,"7":33,"22":1697},"isBase":true}}}, +{"id":34346,"name":"Mounting Vengeance","icon":"inv_weapon_hand_13","type":13,"weaponType":3,"handType":2,"stats":[0,0,22,0,0,0,20,0,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":22,"6":20,"12":46,"13":46},"isBase":true}}}, +{"id":34347,"name":"Wand of the Demonsoul","icon":"inv_wand_25","type":14,"rangedWeaponType":6,"stats":[0,0,24,26,0,0,0,24,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"stats":{"2":24,"3":26,"7":24,"14":330},"isBase":true}}}, +{"id":34348,"name":"Wand of Cleansing Light","icon":"inv_wand_24","type":14,"rangedWeaponType":6,"stats":[0,0,16,26,24,0,0,11,0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":95,"weaponDamageMax":177,"stats":{"2":16,"3":26,"4":24,"7":11,"14":330},"isBase":true}}}, +{"id":34350,"name":"Gauntlets of the Ancient Shadowmoon","icon":"inv_gauntlets_41","type":7,"armorType":3,"stats":[0,0,59,37,0,0,28,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":59,"3":37,"6":28,"7":24,"22":801},"isBase":true}}}, +{"id":34351,"name":"Tranquil Majesty Wraps","icon":"inv_gauntlets_48","type":7,"armorType":2,"stats":[0,0,54,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":54,"3":43,"4":38,"22":530},"isBase":true}}}, +{"id":34352,"name":"Borderland Fortress Grips","icon":"inv_gauntlets_68","type":7,"armorType":4,"stats":[29,0,66,0,0,0,0,0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25038,"zoneId":4075}}],"scalingOptions":{"156":{"randPropPoints":84,"stats":{"0":29,"2":66,"9":35,"10":24,"22":1212},"isBase":true}}}, +{"id":34353,"name":"Quad Deathblow X44 Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,61,94,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46116}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":61,"2":94,"5":24,"22":721},"isBase":true}}}, +{"id":34354,"name":"Mayhem Projection Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[62,0,47,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46114}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":62,"2":47,"5":26,"6":51,"22":1621},"isBase":true}}}, +{"id":34355,"name":"Lightning Etched Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,47,61,0,25,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46112}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":47,"3":61,"5":25,"6":53,"22":1091},"isBase":true}}}, +{"id":34356,"name":"Surestrike Goggles v3.0","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,62,47,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46113}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":62,"2":47,"5":26,"6":51,"22":1091},"isBase":true}}}, +{"id":34357,"name":"Hard Khorium Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[34,0,86,0,0,27,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46115}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":34,"2":86,"5":27,"9":52,"22":1621},"isBase":true}}}, +{"id":34358,"name":"Hard Khorium Choker","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,42,0,0,0,22,29,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46127}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":42,"6":22,"7":29,"12":58,"13":58},"isBase":true}}}, +{"id":34359,"name":"Pendant of Sunfire","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,42,29,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46125}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":42,"3":29,"6":25,"7":25},"isBase":true}}}, +{"id":34360,"name":"Amulet of Flowing Life","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,42,29,26,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46126}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":42,"3":29,"4":26,"7":25},"isBase":true}}}, +{"id":34361,"name":"Hard Khorium Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,30,64,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46124}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"1":30,"2":64,"7":28},"isBase":true}}}, +{"id":34362,"name":"Loop of Forged Power","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,52,29,0,19,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46122}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":52,"3":29,"5":19,"7":30},"isBase":true}}}, +{"id":34363,"name":"Ring of Flowing Life","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,52,29,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46123}}],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":52,"3":29,"4":20,"7":30},"isBase":true}}}, +{"id":34364,"name":"Sunfire Robe","icon":"inv_chest_cloth_02","type":5,"armorType":1,"stats":[0,0,65,61,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46130}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":65,"3":61,"6":40,"7":40,"22":638},"isBase":true}}}, +{"id":34365,"name":"Robe of Eternal Light","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,65,61,40,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46131}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":65,"3":61,"4":40,"7":40,"22":638},"isBase":true}}}, +{"id":34366,"name":"Sunfire Handwraps","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,59,45,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46128}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":59,"3":45,"6":37,"22":399},"isBase":true}}}, +{"id":34367,"name":"Hands of Eternal Light","icon":"inv_gauntlets_63","type":7,"armorType":1,"stats":[0,0,59,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":11,"spellId":46129}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":59,"3":45,"4":37,"22":399},"isBase":true}}}, +{"id":34369,"name":"Carapace of Sun and Shadow","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,60,81,0,0,30,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46138}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":60,"2":81,"5":30,"7":38,"22":887},"isBase":true}}}, +{"id":34370,"name":"Gloves of Immortal Dusk","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,45,59,0,0,0,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46134}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":45,"2":59,"6":30,"7":22,"22":555},"isBase":true}}}, +{"id":34371,"name":"Leather Chestguard of the Sun","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,82,61,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46136}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":49,"22":887},"isBase":true}}}, +{"id":34372,"name":"Leather Gauntlets of the Sun","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,48,38,30,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46132}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":48,"3":38,"4":30,"7":38,"22":555},"isBase":true}}}, +{"id":34373,"name":"Embrace of the Phoenix","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,52,66,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46137}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":52,"2":66,"6":44,"7":44,"22":1343},"isBase":true}}}, +{"id":34374,"name":"Fletcher's Gloves of the Phoenix","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,38,53,0,0,0,30,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46133}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":38,"2":53,"6":30,"7":34,"22":839},"isBase":true}}}, +{"id":34375,"name":"Sun-Drenched Scale Chestguard","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,82,61,26,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46139}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":26,"7":40,"22":1343},"isBase":true}}}, +{"id":34376,"name":"Sun-Drenched Scale Gloves","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,74,38,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":8,"spellId":46135}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":74,"3":38,"7":32,"22":839},"isBase":true}}}, +{"id":34377,"name":"Hard Khorium Battleplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[61,0,55,0,0,0,41,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46144}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":55,"6":41,"7":40,"22":1995},"isBase":true}}}, +{"id":34378,"name":"Hard Khorium Battlefists","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[45,0,45,0,0,23,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46141}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":45,"5":23,"7":36,"22":1247},"isBase":true}}}, +{"id":34379,"name":"Sunblessed Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,87,52,36,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46142}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":87,"3":52,"4":36,"6":34,"22":1995},"isBase":true}}}, +{"id":34380,"name":"Sunblessed Gauntlets","icon":"inv_gauntlets_20","type":7,"armorType":4,"stats":[0,0,60,38,20,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":2,"spellId":46140}}],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":60,"3":38,"4":20,"6":36,"22":1247},"isBase":true}}}, +{"id":34381,"name":"Felstrength Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[40,0,78,0,0,0,0,0,34,55,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":40,"2":78,"8":34,"9":55,"22":1746},"isBase":true}}}, +{"id":34382,"name":"Judicator's Legguards","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[50,0,78,0,0,0,0,0,0,56,22,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":50,"2":78,"9":56,"10":22,"22":1746},"isBase":true}}}, +{"id":34383,"name":"Kilt of Spiritual Reconstruction","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,82,61,36,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1175,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":36,"7":30,"22":1175},"isBase":true}}}, +{"id":34384,"name":"Breeches of Natural Splendor","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,78,61,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":78,"3":61,"4":49,"22":777},"isBase":true}}}, +{"id":34385,"name":"Leggings of the Immortal Beast","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,56,101,0,0,0,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,777,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":56,"2":101,"6":27,"7":25,"22":777},"isBase":true}}}, +{"id":34386,"name":"Pantaloons of Growing Strife","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,62,61,25,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":62,"3":61,"4":25,"7":42,"22":558},"isBase":true}}}, +{"id":34388,"name":"Pauldrons of Berserking","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[45,0,48,0,0,0,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":48,"6":30,"7":27,"22":1497},"isBase":true}}}, +{"id":34389,"name":"Spaulders of the Thalassian Defender","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[44,0,60,0,0,0,0,0,0,27,34,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":44,"2":60,"9":27,"10":34,"22":1497},"isBase":true}}}, +{"id":34390,"name":"Erupting Epaulets","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,56,45,0,0,30,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":56,"3":45,"6":30,"7":24,"22":1007},"isBase":true}}}, +{"id":34391,"name":"Spaulders of Devastation","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,54,45,26,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":54,"3":45,"4":26,"7":30,"22":666},"isBase":true}}}, +{"id":34392,"name":"Demontooth Shoulderpads","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,42,82,0,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,666,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":42,"2":82,"6":20,"7":15,"22":666},"isBase":true}}}, +{"id":34393,"name":"Shoulderpads of Knowledge's Pursuit","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,45,22,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":62,"3":45,"4":22,"6":26,"22":479},"isBase":true}}}, +{"id":34394,"name":"Breastplate of Agony's Aversion","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[40,0,78,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":40,"2":78,"9":66,"22":1995},"isBase":true}}}, +{"id":34395,"name":"Noble Judicator's Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,98,52,26,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":98,"3":52,"4":26,"7":34,"22":1995},"isBase":true}}}, +{"id":34396,"name":"Garments of Crashing Shores","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,82,61,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"6":25,"7":40,"22":1343},"isBase":true}}}, +{"id":34397,"name":"Bladed Chaos Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,60,81,0,0,0,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":60,"2":81,"6":38,"7":30,"22":887},"isBase":true}}}, +{"id":34398,"name":"Utopian Tunic of Elune","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":32,"7":33,"22":887},"isBase":true}}}, +{"id":34399,"name":"Robes of Ghostly Hatred","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,74,61,32,0,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,638,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":74,"3":61,"4":32,"6":26,"7":27,"22":638},"isBase":true}}}, +{"id":34400,"name":"Crown of Dath'Remar","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[36,0,91,0,0,0,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":36,"2":91,"9":50,"10":33,"22":1621},"isBase":true}}}, +{"id":34401,"name":"Helm of Uther's Resolve","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[42,0,91,0,0,0,0,0,0,55,25,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":42,"2":91,"9":55,"10":25,"22":1621},"isBase":true}}}, +{"id":34402,"name":"Shroud of Chieftain Ner'zhul","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,82,61,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[4,1],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":32,"7":33,"22":1091},"isBase":true}}}, +{"id":34403,"name":"Cover of Ursoc the Mighty","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,80,61,30,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":80,"3":61,"4":30,"6":37,"22":721},"isBase":true}}}, +{"id":34404,"name":"Mask of the Fury Hunter","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,50,100,0,0,0,38,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,1],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":50,"2":100,"6":38,"7":20,"22":721},"isBase":true}}}, +{"id":34405,"name":"Helm of Arcane Purity","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,86,64,38,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"164":{"randPropPoints":121,"stats":{"2":86,"3":64,"4":38,"6":30,"22":541},"isBase":true}}}, +{"id":34406,"name":"Gloves of Tyri's Power","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,61,40,27,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":164,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"164":{"randPropPoints":90,"stats":{"2":61,"3":40,"4":27,"7":36,"22":416},"isBase":true}}}, +{"id":34407,"name":"Tranquil Moonlight Wraps","icon":"inv_gauntlets_51","type":7,"armorType":2,"stats":[0,0,54,43,20,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":54,"3":43,"4":20,"6":30,"22":530},"isBase":true}}}, +{"id":34408,"name":"Gloves of the Forest Drifter","icon":"inv_gauntlets_51","type":7,"armorType":2,"stats":[0,42,72,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,555,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":42,"2":72,"6":20,"8":20,"22":555},"isBase":true}}}, +{"id":34409,"name":"Gauntlets of the Ancient Frostwolf","icon":"inv_gauntlets_52","type":7,"armorType":3,"stats":[0,0,59,37,26,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,839,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":59,"3":37,"4":26,"7":28,"22":839},"isBase":true}}}, +{"id":34427,"name":"Blackened Naaru Sliver","icon":"inv_jewelry_talisman_16","type":12,"stats":[0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"7":54},"isBase":true}}}, +{"id":34428,"name":"Steely Naaru Sliver","icon":"inv_jewelry_talisman_18","type":12,"stats":[0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"8":54},"isBase":true}}}, +{"id":34429,"name":"Shifting Naaru Sliver","icon":"inv_jewelry_talisman_15","type":12,"stats":[0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"7":54},"isBase":true}}}, +{"id":34430,"name":"Glimmering Naaru Sliver","icon":"inv_jewelry_talisman_17","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"154":{"randPropPoints":82,"stats":{"3":54},"isBase":true}}}, +{"id":34431,"name":"Lightbringer Bands","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[33,0,15,0,0,0,30,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":33,"2":15,"6":30,"7":17,"8":16,"22":832},"isBase":true}}}, +{"id":34432,"name":"Lightbringer Bracers","icon":"inv_bracer_02","type":6,"armorType":4,"stats":[0,0,37,33,26,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"4":26,"6":15,"22":832},"isBase":true}}}, +{"id":34433,"name":"Lightbringer Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[21,0,49,0,0,0,0,0,0,32,15,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":21,"2":49,"9":32,"10":15,"22":832},"isBase":true}}}, +{"id":34434,"name":"Bracers of Absolution","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,39,33,21,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":39,"3":33,"4":21,"7":20,"22":267},"isBase":true}}}, +{"id":34435,"name":"Cuffs of Absolution","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,39,33,20,0,15,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":39,"3":33,"4":20,"6":15,"7":16,"22":267},"isBase":true}}}, +{"id":34436,"name":"Bracers of the Malefic","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,38,33,0,0,18,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":38,"3":33,"6":18,"7":21,"22":267},"isBase":true}}}, +{"id":34437,"name":"Skyshatter Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,33,0,0,28,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"6":28,"7":11,"22":561},"isBase":true}}}, +{"id":34438,"name":"Skyshatter Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,0,37,33,28,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"4":28,"7":11,"22":561},"isBase":true}}}, +{"id":34439,"name":"Skyshatter Wristguards","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,40,33,0,0,17,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":40,"2":33,"5":17,"8":17,"22":561},"isBase":true}}}, +{"id":34441,"name":"Onslaught Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[33,0,0,0,0,16,30,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":33,"5":16,"6":30,"7":20,"22":832},"isBase":true}}}, +{"id":34442,"name":"Onslaught Wristguards","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[19,0,49,0,0,0,0,0,0,29,18,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":19,"2":49,"9":29,"10":18,"22":832},"isBase":true}}}, +{"id":34443,"name":"Gronnstalker's Bracers","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,32,30,0,0,0,30,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[2],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":32,"2":30,"6":30,"7":17,"22":561},"isBase":true}}}, +{"id":34444,"name":"Thunderheart Wristguards","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,29,61,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":29,"2":61,"6":13,"7":13,"22":371},"isBase":true}}}, +{"id":34445,"name":"Thunderheart Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,33,28,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"4":28,"7":12,"22":371},"isBase":true}}}, +{"id":34446,"name":"Thunderheart Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,37,33,0,0,24,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":37,"3":33,"6":24,"7":21,"22":371},"isBase":true}}}, +{"id":34447,"name":"Bracers of the Tempest","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,33,33,0,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":33,"3":33,"6":19,"7":26,"22":267},"isBase":true}}}, +{"id":34470,"name":"Timbal's Focusing Crystal","icon":"inv_misc_gem_lionseye_01","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"3":38},"isBase":true}}}, +{"id":34471,"name":"Vial of the Sunwell","icon":"inv_potion_106","type":12,"stats":[0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"4":38},"isBase":true}}}, +{"id":34472,"name":"Shard of Contempt","icon":"inv_misc_rune_04","type":12,"stats":[0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"8":44},"isBase":true}}}, +{"id":34473,"name":"Commendation of Kael'thas","icon":"inv_misc_idol_05","type":12,"stats":[0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":57},"isBase":true}}}, +{"id":34485,"name":"Lightbringer Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[44,0,24,0,0,0,42,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":44,"2":24,"6":42,"7":29,"8":25,"22":1070},"isBase":true}}}, +{"id":34487,"name":"Lightbringer Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,48,55,43,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":48,"3":55,"4":43,"7":24,"22":1070},"isBase":true}}}, +{"id":34488,"name":"Lightbringer Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[30,0,64,0,0,0,0,0,0,42,20,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":30,"2":64,"9":42,"10":20,"22":1070},"isBase":true}}}, +{"id":34527,"name":"Belt of Absolution","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,48,43,40,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":48,"3":43,"4":40,"7":14,"22":344},"isBase":true}}}, +{"id":34528,"name":"Cord of Absolution","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,51,43,0,14,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":51,"3":43,"5":14,"6":21,"7":29,"22":344},"isBase":true}}}, +{"id":34529,"name":"Vengeful Gladiator's Longbow","icon":"inv_weapon_bow_20","type":14,"rangedWeaponType":1,"stats":[0,0,77,0,0,0,52,0,0,0,0,0,0,109,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"stats":{"2":77,"6":52,"13":109,"16":42},"isBase":true}}}, +{"id":34530,"name":"Vengeful Gladiator's Rifle","icon":"inv_weapon_rifle_15","type":14,"rangedWeaponType":3,"stats":[0,0,77,0,0,0,52,0,0,0,0,0,0,109,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"stats":{"2":77,"6":52,"13":109,"16":42},"isBase":true}}}, +{"id":34540,"name":"Vengeful Gladiator's Battle Staff","icon":"inv_staff_54","type":13,"weaponType":8,"handType":4,"stats":[0,0,98,0,0,28,46,0,0,0,0,0,0,0,310,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":146,"weaponDamageMax":220,"weaponSpeed":2,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":146,"weaponDamageMax":220,"stats":{"2":98,"5":28,"6":46,"14":310,"16":29},"isBase":true}}}, +{"id":34541,"name":"Belt of the Malefic","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,51,43,0,0,30,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":51,"3":43,"6":30,"7":29,"22":344},"isBase":true}}}, +{"id":34542,"name":"Skyshatter Cord","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,48,43,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":48,"3":43,"6":29,"7":34,"22":721},"isBase":true}}}, +{"id":34543,"name":"Skyshatter Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,50,43,0,0,36,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"6":36,"7":23,"22":721},"isBase":true}}}, +{"id":34545,"name":"Skyshatter Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,49,43,0,0,0,0,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":49,"2":43,"7":29,"8":22,"22":721},"isBase":true}}}, +{"id":34546,"name":"Onslaught Belt","icon":"inv_belt_27","type":8,"armorType":4,"stats":[43,0,0,0,0,0,40,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":43,"6":40,"7":26,"8":26,"22":1070},"isBase":true}}}, +{"id":34547,"name":"Onslaught Waistguard","icon":"inv_belt_33","type":8,"armorType":4,"stats":[28,0,64,0,0,0,0,0,27,38,37,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":28,"2":64,"8":27,"9":38,"10":37,"22":1070},"isBase":true}}}, +{"id":34549,"name":"Gronnstalker's Belt","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,52,35,0,0,24,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":52,"2":35,"5":24,"6":36,"22":721},"isBase":true}}}, +{"id":34554,"name":"Thunderheart Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,50,43,43,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"4":43,"7":13,"22":477},"isBase":true}}}, +{"id":34555,"name":"Thunderheart Cord","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,50,43,0,0,29,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"6":29,"7":27,"22":477},"isBase":true}}}, +{"id":34556,"name":"Thunderheart Waistguard","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,40,69,0,0,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":40,"2":69,"5":23,"6":20,"22":477},"isBase":true}}}, +{"id":34557,"name":"Belt of the Tempest","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,48,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":48,"3":43,"6":29,"7":29,"22":344},"isBase":true}}}, +{"id":34559,"name":"Lightbringer Treads","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,50,43,22,0,30,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Raiment","setId":681,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"4":22,"6":30,"7":17,"22":1308},"isBase":true}}}, +{"id":34560,"name":"Lightbringer Stompers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[30,0,58,0,0,0,0,0,0,32,21,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Armor","setId":679,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":30,"2":58,"9":32,"10":21,"22":1308},"isBase":true}}}, +{"id":34561,"name":"Lightbringer Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[42,0,22,0,0,0,40,27,19,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[4],"setName":"Lightbringer Battlegear","setId":680,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":42,"2":22,"6":40,"7":27,"8":19,"22":1308},"isBase":true}}}, +{"id":34562,"name":"Boots of Absolution","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,54,43,37,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Vestments of Absolution","setId":675,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":54,"3":43,"4":37,"7":19,"22":420},"isBase":true}}}, +{"id":34563,"name":"Treads of Absolution","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,52,43,22,0,16,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[5],"setName":"Absolution Regalia","setId":674,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":52,"3":43,"4":22,"6":16,"7":30,"22":420},"isBase":true}}}, +{"id":34564,"name":"Boots of the Malefic","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,47,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[8],"setName":"Malefic Raiment","setId":670,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":47,"3":43,"6":29,"7":29,"22":420},"isBase":true}}}, +{"id":34565,"name":"Skyshatter Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,50,43,36,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Raiment","setId":683,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"4":36,"7":24,"22":881},"isBase":true}}}, +{"id":34566,"name":"Skyshatter Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,50,43,0,0,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Regalia","setId":684,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"6":32,"7":30,"22":881},"isBase":true}}}, +{"id":34567,"name":"Skyshatter Greaves","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,52,36,0,0,0,20,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[7],"setName":"Skyshatter Harness","setId":682,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":52,"2":36,"6":20,"8":29,"22":881},"isBase":true}}}, +{"id":34568,"name":"Onslaught Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[25,0,64,0,0,0,0,0,26,34,20,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Armor","setId":673,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":25,"2":64,"8":26,"9":34,"10":20,"22":1308},"isBase":true}}}, +{"id":34569,"name":"Onslaught Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[44,0,0,0,0,25,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[9],"setName":"Onslaught Battlegear","setId":672,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"0":44,"5":25,"6":36,"7":30,"22":1308},"isBase":true}}}, +{"id":34570,"name":"Gronnstalker's Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,52,39,0,0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[2],"setName":"Gronnstalker's Armor","setId":669,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":52,"2":39,"5":14,"6":38,"22":881},"isBase":true}}}, +{"id":34571,"name":"Thunderheart Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,53,43,38,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Raiment","setId":678,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":53,"3":43,"4":38,"7":19,"22":583},"isBase":true}}}, +{"id":34572,"name":"Thunderheart Footwraps","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,50,43,0,0,28,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Regalia","setId":677,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":50,"3":43,"6":28,"7":34,"22":583},"isBase":true}}}, +{"id":34573,"name":"Thunderheart Treads","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,35,80,0,0,0,18,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[1],"setName":"Thunderheart Harness","setId":676,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"1":35,"2":80,"6":18,"8":27,"22":583},"isBase":true}}}, +{"id":34574,"name":"Boots of the Tempest","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,48,43,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":154,"quality":4,"classAllowlist":[3],"setName":"Tempest Regalia","setId":671,"scalingOptions":{"154":{"randPropPoints":82,"stats":{"2":48,"3":43,"6":29,"7":29,"22":420},"isBase":true}}}, +{"id":34601,"name":"Shoulderplates of Everlasting Pain","icon":"inv_shoulder_27","type":3,"armorType":4,"stats":[30,0,33,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":30,"2":33,"7":21,"22":1054},"isBase":true}}}, +{"id":34602,"name":"Eversong Cuffs","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,32,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":32,"3":23,"4":15,"22":281},"isBase":true}}}, +{"id":34604,"name":"Jaded Crystal Dagger","icon":"inv_weapon_shortblade_54","type":13,"weaponType":2,"handType":2,"stats":[0,0,38,0,0,0,0,18,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"weaponSpeed":1.8,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":126,"stats":{"2":38,"7":18,"14":232},"isBase":true}}}, +{"id":34605,"name":"Breastplate of Fierce Survival","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,53,40,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":53,"3":40,"6":22,"22":1405},"isBase":true}}}, +{"id":34606,"name":"Edge of Oppression","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,25,0,0,0,0,17,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":135,"weaponDamageMax":252,"weaponSpeed":1.8,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":135,"weaponDamageMax":252,"stats":{"2":25,"7":17,"12":36,"13":36},"isBase":true}}}, +{"id":34607,"name":"Fel-Tinged Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,36,30,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":36,"3":30,"6":21,"22":345},"isBase":true}}}, +{"id":34608,"name":"Rod of the Blazing Light","icon":"inv_staff_47","type":13,"weaponType":8,"handType":4,"stats":[0,0,63,0,41,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"weaponSpeed":3.2,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":179,"weaponDamageMax":269,"stats":{"2":63,"4":41,"14":232},"isBase":true}}}, +{"id":34609,"name":"Quickening Blade of the Prince","icon":"inv_sword_64","type":13,"weaponType":9,"handType":2,"stats":[0,0,27,0,0,0,18,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":147,"weaponDamageMax":275,"weaponSpeed":1.8,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":147,"weaponDamageMax":275,"stats":{"2":27,"6":18,"12":38,"13":38},"isBase":true}}}, +{"id":34610,"name":"Scarlet Sin'dorei Robes","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,48,44,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"2":48,"3":44,"6":36,"22":484},"isBase":true}}}, +{"id":34611,"name":"Cudgel of Consecration","icon":"inv_mace_31","type":13,"weaponType":4,"handType":2,"stats":[0,0,34,0,0,18,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":78,"weaponDamageMax":145,"weaponSpeed":1.9,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":78,"weaponDamageMax":145,"stats":{"2":34,"5":18,"14":253},"isBase":true}}}, +{"id":34612,"name":"Greaves of the Penitent Knight","icon":"inv_boots_chain_05","type":10,"armorType":4,"stats":[0,0,44,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"2":44,"3":25,"4":22,"22":989},"isBase":true}}}, +{"id":34613,"name":"Shoulderpads of the Silvermoon Retainer","icon":"inv_shoulder_07","type":3,"armorType":2,"stats":[0,35,59,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"1":35,"2":59,"5":23,"22":501},"isBase":true}}}, +{"id":34614,"name":"Tunic of the Ranger Lord","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,45,51,0,0,0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"1":45,"2":51,"6":23,"7":44,"22":1003},"isBase":true}}}, +{"id":34615,"name":"Netherforce Chestplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[44,0,42,0,0,18,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1439,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":84,"stats":{"0":44,"2":42,"5":18,"6":30,"22":1439},"isBase":true}}}, +{"id":34616,"name":"Breeching Comet","icon":"inv_axe_62","type":13,"weaponType":1,"handType":2,"stats":[0,18,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":213,"weaponDamageMax":397,"weaponSpeed":2.6,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"125":{"randPropPoints":36,"weaponDamageMin":213,"weaponDamageMax":397,"stats":{"1":18,"2":34},"isBase":true}}}, +{"id":34625,"name":"Kharmaa's Ring of Fate","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,30,22,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":30,"3":22,"7":14},"isBase":true}}}, +{"id":34665,"name":"Bombardier's Blade","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,14,24,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"1":14,"2":24,"5":11},"isBase":true}}}, +{"id":34666,"name":"The Sunbreaker","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,14,24,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":190,"weaponDamageMax":286,"weaponSpeed":2.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":190,"weaponDamageMax":286,"stats":{"1":14,"2":24,"5":11},"isBase":true}}}, +{"id":34667,"name":"Archmage's Guile","icon":"inv_sword_59","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,0,20,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":2.3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"stats":{"2":21,"6":20,"14":190},"isBase":true}}}, +{"id":34670,"name":"Seeker's Gavel","icon":"inv_mace_35","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,0,11,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":2.3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"stats":{"2":32,"5":11,"14":190},"isBase":true}}}, +{"id":34671,"name":"K'iru's Presage","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,27,0,18,0,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":2.3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"stats":{"2":27,"4":18,"14":190},"isBase":true}}}, +{"id":34672,"name":"Inuuro's Blade","icon":"inv_sword_draenei_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,8,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"weaponSpeed":1.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":126,"weaponDamageMax":190,"stats":{"2":21,"5":8,"8":11,"9":13},"isBase":true}}}, +{"id":34673,"name":"Legionfoe","icon":"inv_axe_46","type":13,"weaponType":1,"handType":4,"stats":[31,0,45,0,0,0,26,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":339,"weaponDamageMax":509,"weaponSpeed":3.7,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":339,"weaponDamageMax":509,"stats":{"0":31,"2":45,"6":26,"8":19},"isBase":true}}}, +{"id":34674,"name":"Truestrike Crossbow","icon":"inv_weapon_crossbow_14","type":14,"rangedWeaponType":2,"stats":[0,32,63,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":238,"weaponDamageMax":357,"stats":{"1":32,"2":63,"6":19},"isBase":true}}}, +{"id":34675,"name":"Sunward Crest","icon":"inv_shield_48","type":13,"weaponType":7,"handType":3,"stats":[22,0,31,0,0,13,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"0":22,"2":31,"5":13,"10":18,"22":3775},"isBase":true}}}, +{"id":34676,"name":"Dawnforged Defender","icon":"inv_shield_05","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,0,0,13,0,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,3775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":31,"5":13,"9":18,"10":22,"22":3775},"isBase":true}}}, +{"id":34678,"name":"Shattered Sun Pendant of Acumen","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":35,"3":32},"isBase":true}}}, +{"id":34679,"name":"Shattered Sun Pendant of Might","icon":"inv_jewelry_necklace_38","type":2,"stats":[0,18,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"1":18,"2":50},"isBase":true}}}, +{"id":34680,"name":"Shattered Sun Pendant of Resolve","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,48,0,0,13,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":43,"stats":{"2":48,"5":13,"8":18},"isBase":true}}}, +{"id":34697,"name":"Bindings of Raging Fire","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,18,19,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"3":19,"7":18,"22":161},"isBase":true}}}, +{"id":34698,"name":"Bracers of the Forest Stalker","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,16,19,0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"1":16,"2":19,"6":10,"7":16,"22":342},"isBase":true}}}, +{"id":34699,"name":"Sun-Forged Cleaver","icon":"inv_axe_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,13,15,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"6":13,"7":15,"12":28,"13":28},"isBase":true}}}, +{"id":34700,"name":"Gauntlets of Divine Blessings","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,30,25,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":30,"3":25,"7":16,"22":705},"isBase":true}}}, +{"id":34701,"name":"Leggings of the Betrayed","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,33,48,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":33,"2":48,"7":18,"22":451},"isBase":true}}}, +{"id":34702,"name":"Cloak of Swift Mending","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,18,19,12,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24723,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"3":19,"4":12,"7":18,"22":185},"isBase":true}}}, +{"id":34703,"name":"Latro's Dancing Blade","icon":"inv_sword_76","type":13,"weaponType":9,"handType":2,"stats":[0,0,21,0,0,0,14,0,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":2.6,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Latro's Flurry","setId":737,"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"2":21,"6":14,"12":28,"13":28},"isBase":true}}}, +{"id":34704,"name":"Band of Arcane Alacrity","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,27,19,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":27,"3":19,"7":18},"isBase":true}}}, +{"id":34705,"name":"Bracers of Divine Infusion","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,25,19,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":25,"3":19,"4":12,"22":161},"isBase":true}}}, +{"id":34706,"name":"Band of Determination","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,35,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":35,"8":17,"23":72},"isBase":true}}}, +{"id":34707,"name":"Boots of Resuscitation","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,28,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":28,"3":25,"4":18,"22":354},"isBase":true}}}, +{"id":34708,"name":"Cloak of the Coming Night","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,18,0,0,12,0,18,0,0,0,0,38,38,0,0,0,0,0,0,0,0,185,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24744,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":18,"5":12,"7":18,"12":38,"13":38,"22":185},"isBase":true}}}, +{"id":34712,"name":"Prismatic Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"12":40,"13":40},"isBase":true}}}, +{"id":34788,"name":"Duskhallow Mantle","icon":"inv_shoulder_24","type":3,"armorType":1,"stats":[0,0,20,25,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":20,"3":25,"6":24,"22":277},"isBase":true}}}, +{"id":34789,"name":"Bracers of Slaughter","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[19,0,15,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"0":19,"2":15,"6":18,"22":494},"isBase":true}}}, +{"id":34790,"name":"Battle-Mace of the High Priestess","icon":"inv_mace_34","type":13,"weaponType":4,"handType":2,"stats":[0,0,21,0,0,0,0,15,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"weaponSpeed":2.3,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":70,"weaponDamageMax":132,"stats":{"2":21,"7":15,"14":190},"isBase":true}}}, +{"id":34791,"name":"Gauntlets of the Tranquil Waves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,20,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":20,"3":25,"7":24,"22":489},"isBase":true}}}, +{"id":34792,"name":"Cloak of the Betrayed","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,23,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24560,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":23,"3":20,"5":13,"22":185},"isBase":true}}}, +{"id":34793,"name":"Cord of Reconstruction","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,27,25,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":27,"3":25,"4":18,"22":208},"isBase":true}}}, +{"id":34794,"name":"Axe of Shattered Dreams","icon":"inv_axe_69","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,0,32,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":348,"weaponDamageMax":522,"weaponSpeed":3.8,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":348,"weaponDamageMax":522,"stats":{"2":48,"6":32,"12":70,"13":70},"isBase":true}}}, +{"id":34795,"name":"Helm of Sanctification","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,32,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":32,"3":33,"4":26,"22":917},"isBase":true}}}, +{"id":34796,"name":"Robes of Summer Flame","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,32,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":32,"3":33,"4":26,"22":515},"isBase":true}}}, +{"id":34797,"name":"Sun-Infused Focus Staff","icon":"inv_staff_39","type":13,"weaponType":8,"handType":4,"stats":[0,0,58,0,0,23,0,0,0,0,0,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"weaponSpeed":2.4,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":63,"weaponDamageMin":109,"weaponDamageMax":165,"stats":{"2":58,"5":23,"14":190},"isBase":true}}}, +{"id":34798,"name":"Band of Celerity","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"115":{"randPropPoints":35,"stats":{"2":25,"7":18,"12":40,"13":40},"isBase":true}}}, +{"id":34799,"name":"Hauberk of the War Bringer","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,38,38,0,0,0,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":73,"stats":{"1":38,"2":38,"6":24,"7":20,"22":959},"isBase":true}}}, +{"id":34807,"name":"Sunstrider Warboots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[29,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"gemSockets":[2,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"0":29,"2":30,"6":20,"22":955},"isBase":true}}}, +{"id":34808,"name":"Gloves of Arcane Acuity","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,35,29,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"2":35,"3":29,"5":18,"22":280},"isBase":true}}}, +{"id":34809,"name":"Sunrage Treads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,29,53,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"1":29,"2":53,"6":18,"22":432},"isBase":true}}}, +{"id":34810,"name":"Cloak of Blade Turning","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,224,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":24664,"zoneId":4131}}],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"16":22,"22":224,"23":84},"isBase":true}}}, +{"id":34837,"name":"The 2 Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":143,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"143":{"randPropPoints":56,"stats":{"0":22,"1":22,"2":22,"3":22,"4":22},"isBase":true}}}, +{"id":34847,"name":"Annihilator Holo-Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,72,69,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46111}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":72,"3":69,"6":42,"22":518},"isBase":true}}}, +{"id":34859,"name":"Razor Sharp Fillet Knife","icon":"inv_weapon_shortblade_14","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":93,"weaponDamageMax":174,"weaponSpeed":1.8,"ilvl":115,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"weaponDamageMin":93,"weaponDamageMax":174,"isBase":true}}}, +{"id":34887,"name":"Angelista's Revenge","icon":"inv_jewelry_ring_79","type":11,"stats":[0,29,54,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"1":29,"2":54,"6":18},"isBase":true}}}, +{"id":34888,"name":"Ring of the Stalwart Protector","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,45,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":45,"9":28,"23":112},"isBase":true}}}, +{"id":34889,"name":"Fused Nethergon Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,42,30,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":30,"5":28},"isBase":true}}}, +{"id":34890,"name":"Anveena's Touch","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,42,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":42,"3":30,"4":28},"isBase":true}}}, +{"id":34891,"name":"The Blade of Harbingers","icon":"inv_axe_04","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,55,53,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":513,"weaponDamageMax":771,"weaponSpeed":3.5,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":513,"weaponDamageMax":771,"stats":{"6":55,"7":53,"12":108,"13":108},"isBase":true}}}, +{"id":34892,"name":"Crossbow of Relentless Strikes","icon":"inv_weapon_crossbow_26","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,45,58,0,0,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":359,"weaponDamageMax":668,"weaponSpeed":2.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":359,"weaponDamageMax":668,"stats":{"5":45,"6":58,"12":103,"13":103},"isBase":true}}}, +{"id":34893,"name":"Vanir's Fist of Brutality","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":2,"stats":[0,23,33,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":247,"weaponDamageMax":459,"weaponSpeed":2.5,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":247,"weaponDamageMax":459,"stats":{"1":23,"2":33,"7":21},"isBase":true}}}, +{"id":34894,"name":"Blade of Serration","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":2,"stats":[0,0,30,0,0,0,24,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"6":24,"12":44,"13":44},"isBase":true}}}, +{"id":34895,"name":"Scryer's Blade of Focus","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":2,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":88,"weaponDamageMax":165,"weaponSpeed":1.8,"ilvl":146,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":88,"weaponDamageMax":165,"stats":{"2":63,"14":309},"isBase":true}}}, +{"id":34896,"name":"Gavel of Naaru Blessings","icon":"inv_mace_82","type":13,"weaponType":4,"handType":2,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.6,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"2":63,"14":309},"isBase":true}}}, +{"id":34898,"name":"Staff of the Forest Lord","icon":"inv_staff_12","type":13,"weaponType":8,"handType":4,"stats":[0,52,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"weaponSpeed":3,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":103,"weaponDamageMin":440,"weaponDamageMax":661,"stats":{"1":52,"2":115},"isBase":true}}}, +{"id":34900,"name":"Shroud of Nature's Harmony","icon":"inv_chest_cloth_06","type":5,"armorType":2,"stats":[0,0,71,53,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":71,"3":53,"4":46,"22":755},"isBase":true}}}, +{"id":34901,"name":"Grovewalker's Leggings","icon":"inv_pants_leather_17","type":9,"armorType":2,"stats":[0,0,74,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":74,"3":52,"4":44,"22":661},"isBase":true}}}, +{"id":34902,"name":"Oakleaf-Spun Handguards","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,55,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":55,"3":38,"4":30,"22":472},"isBase":true}}}, +{"id":34903,"name":"Embrace of Starlight","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,68,51,26,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":68,"3":51,"4":26,"6":36,"22":755},"isBase":true}}}, +{"id":34904,"name":"Barbed Gloves of the Sage","icon":"inv_gauntlets_50","type":7,"armorType":2,"stats":[0,0,55,38,0,15,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":55,"3":38,"5":15,"6":25,"22":472},"isBase":true}}}, +{"id":34905,"name":"Crystalwind Leggings","icon":"inv_pants_leather_16","type":9,"armorType":2,"stats":[0,0,72,52,32,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":72,"3":52,"4":32,"6":28,"22":661},"isBase":true}}}, +{"id":34906,"name":"Embrace of Everlasting Prowess","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,49,93,0,0,0,23,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":49,"2":93,"6":23,"7":20,"22":755},"isBase":true}}}, +{"id":34910,"name":"Tameless Breeches","icon":"inv_pants_05","type":9,"armorType":2,"stats":[0,48,90,0,0,0,0,17,20,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":48,"2":90,"7":17,"8":20,"22":661},"isBase":true}}}, +{"id":34911,"name":"Handwraps of the Aggressor","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,36,66,0,0,0,19,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,472,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":36,"2":66,"6":19,"7":13,"22":472},"isBase":true}}}, +{"id":34912,"name":"Scaled Drakeskin Chestguard","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,51,59,0,0,0,47,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":51,"2":59,"6":47,"7":25,"22":1135},"isBase":true}}}, +{"id":34914,"name":"Leggings of the Pursuit","icon":"inv_pants_mail_05","type":9,"armorType":3,"stats":[0,52,61,0,0,15,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":52,"2":61,"5":15,"6":44,"22":993},"isBase":true}}}, +{"id":34916,"name":"Gauntlets of Rapidity","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,39,44,0,0,0,16,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":39,"2":44,"6":16,"7":34,"22":710},"isBase":true}}}, +{"id":34917,"name":"Shroud of the Lore`nial","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,65,52,0,29,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":65,"3":52,"5":29,"6":33,"22":547},"isBase":true}}}, +{"id":34918,"name":"Legwraps of Sweltering Flame","icon":"inv_pants_cloth_17","type":9,"armorType":1,"stats":[0,0,68,53,0,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":68,"3":53,"5":25,"6":30,"22":479},"isBase":true}}}, +{"id":34919,"name":"Boots of Incantations","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,57,40,0,17,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":57,"3":40,"5":17,"6":23,"22":376},"isBase":true}}}, +{"id":34921,"name":"Ecclesiastical Cuirass","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[0,0,89,44,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":89,"3":44,"6":43,"22":1661},"isBase":true}}}, +{"id":34922,"name":"Greaves of Pacification","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[0,0,87,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":87,"3":44,"4":36,"22":1453},"isBase":true}}}, +{"id":34923,"name":"Waistguard of Reparation","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,65,33,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":65,"3":33,"6":28,"22":934},"isBase":true}}}, +{"id":34924,"name":"Gown of Spiritual Wonder","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,66,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":66,"3":53,"4":50,"22":547},"isBase":true}}}, +{"id":34925,"name":"Adorned Supernal Legwraps","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,65,52,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":65,"3":52,"4":42,"22":479},"isBase":true}}}, +{"id":34926,"name":"Slippers of Dutiful Mending","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,49,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":49,"3":39,"4":34,"22":376},"isBase":true}}}, +{"id":34927,"name":"Tunic of the Dark Hour","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,51,88,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":51,"2":88,"5":34,"22":755},"isBase":true}}}, +{"id":34928,"name":"Trousers of the Scryers' Retainer","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,52,82,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,661,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"1":52,"2":82,"5":30,"22":661},"isBase":true}}}, +{"id":34929,"name":"Belt of the Silent Path","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,39,63,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"gemSockets":[4],"socketBonus":[0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"1":39,"2":63,"5":23,"22":425},"isBase":true}}}, +{"id":34930,"name":"Wave of Life Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,87,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":87,"3":53,"4":36,"22":1135},"isBase":true}}}, +{"id":34931,"name":"Runed Scales of Antiquity","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,77,52,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":77,"3":52,"4":36,"22":993},"isBase":true}}}, +{"id":34932,"name":"Clutch of the Soothing Breeze","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,62,39,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":62,"3":39,"4":26,"22":639},"isBase":true}}}, +{"id":34933,"name":"Hauberk of Whirling Fury","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,68,52,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1135,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":68,"3":52,"7":51,"22":1135},"isBase":true}}}, +{"id":34934,"name":"Rushing Storm Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,72,52,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":72,"3":52,"7":38,"22":993},"isBase":true}}}, +{"id":34935,"name":"Aftershock Waistguard","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,51,39,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":51,"3":39,"7":34,"22":639},"isBase":true}}}, +{"id":34936,"name":"Tormented Demonsoul Robes","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,72,53,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":72,"3":53,"6":50,"22":547},"isBase":true}}}, +{"id":34937,"name":"Corrupted Soulcloth Pantaloons","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,65,52,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"2":65,"3":52,"6":43,"22":479},"isBase":true}}}, +{"id":34938,"name":"Enslaved Doomguard Soulgrips","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,55,39,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"2":55,"3":39,"6":30,"22":342},"isBase":true}}}, +{"id":34939,"name":"Chestplate of Stoicism","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[34,0,78,0,0,0,0,0,0,51,26,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":34,"2":78,"9":51,"10":26,"22":1661},"isBase":true}}}, +{"id":34940,"name":"Sunguard Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[29,0,78,0,0,0,0,0,23,47,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":29,"2":78,"8":23,"9":47,"22":1453},"isBase":true}}}, +{"id":34941,"name":"Girdle of the Fearless","icon":"inv_belt_27","type":8,"armorType":4,"stats":[23,0,58,0,0,0,0,0,22,34,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":23,"2":58,"8":22,"9":34,"22":934},"isBase":true}}}, +{"id":34942,"name":"Breastplate of Ire","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[52,0,64,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":52,"2":64,"7":51,"22":1661},"isBase":true}}}, +{"id":34943,"name":"Legplates of Unending Fury","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[52,0,48,0,0,25,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4,3],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":52,"2":48,"5":25,"7":43,"22":1453},"isBase":true}}}, +{"id":34944,"name":"Girdle of Seething Rage","icon":"inv_belt_13","type":8,"armorType":4,"stats":[40,0,55,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":40,"2":55,"7":30,"22":934},"isBase":true}}}, +{"id":34945,"name":"Shattrath Protectorate's Breastplate","icon":"inv_chest_plate16","type":5,"armorType":4,"stats":[51,0,78,0,0,34,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":51,"2":78,"5":34,"9":26,"22":1661},"isBase":true}}}, +{"id":34946,"name":"Inscribed Legplates of the Aldor","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[32,0,78,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":98,"stats":{"0":32,"2":78,"9":51,"22":1453},"isBase":true}}}, +{"id":34947,"name":"Blue's Greaves of the Righteous Guardian","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[34,0,58,0,0,22,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":141,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":73,"stats":{"0":34,"2":58,"5":22,"10":23,"22":1142},"isBase":true}}}, +{"id":34949,"name":"Swift Blade of Uncertainty","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,24,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":24,"12":44,"13":44},"isBase":true}}}, +{"id":34950,"name":"Vanir's Fist of Savagery","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,21,0,23,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"5":21,"7":23,"12":44,"13":44},"isBase":true}}}, +{"id":34951,"name":"Vanir's Fist of Carnage","icon":"inv_weapon_hand_16","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,21,0,23,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":247,"weaponDamageMax":459,"weaponSpeed":2.5,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":247,"weaponDamageMax":459,"stats":{"5":21,"7":23,"12":44,"13":44},"isBase":true}}}, +{"id":34952,"name":"The Mutilator","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":3,"stats":[0,0,30,0,0,24,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":177,"weaponDamageMax":330,"stats":{"2":30,"5":24,"12":44,"13":44},"isBase":true}}}, +{"id":34985,"name":"Brutal Gladiator's Baton of Light","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,43,23,0,0,0,0,0,0,0,0,0,0,330,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.9,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"stats":{"2":43,"3":23,"14":330,"16":19},"isBase":true}}}, +{"id":34986,"name":"Brutal Gladiator's Barrier","icon":"inv_shield_54","type":13,"weaponType":7,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":56,"3":34,"16":27,"22":5383},"isBase":true}}}, +{"id":34987,"name":"Brutal Gladiator's Battle Staff","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,0,32,50,0,0,0,0,0,0,0,334,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":157,"weaponDamageMax":237,"weaponSpeed":2,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":157,"weaponDamageMax":237,"stats":{"2":106,"5":32,"6":50,"14":334,"16":29},"isBase":true}}}, +{"id":34988,"name":"Brutal Gladiator's Bonecracker","icon":"inv_mace_74","type":13,"weaponType":4,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":34989,"name":"Brutal Gladiator's Bonegrinder","icon":"inv_mace_49","type":13,"weaponType":4,"handType":4,"stats":[50,0,66,0,0,19,50,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"weaponSpeed":3.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"stats":{"0":50,"2":66,"5":19,"6":50,"7":14,"16":33},"isBase":true}}}, +{"id":34990,"name":"Brutal Gladiator's Chain Armor","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,32,81,0,0,16,39,12,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":32,"2":81,"5":16,"6":39,"7":12,"16":21,"22":1343},"isBase":true}}}, +{"id":34991,"name":"Brutal Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,37,63,0,0,0,23,24,0,0,0,0,0,0,0,0,21,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":63,"6":23,"7":24,"16":21,"22":839},"isBase":true}}}, +{"id":34992,"name":"Brutal Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,37,81,0,0,17,47,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":37,"2":81,"5":17,"6":47,"7":12,"16":22,"22":1091},"isBase":true}}}, +{"id":34993,"name":"Brutal Gladiator's Chain Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,38,78,0,0,17,47,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":38,"2":78,"5":17,"6":47,"7":12,"16":33,"22":1175},"isBase":true}}}, +{"id":34994,"name":"Brutal Gladiator's Chain Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,39,58,0,0,0,20,19,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":586,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":39,"2":58,"6":20,"7":19,"16":21,"22":1007},"isBase":true}}}, +{"id":34995,"name":"Brutal Gladiator's Chopper","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":34996,"name":"Brutal Gladiator's Cleaver","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":34997,"name":"Brutal Gladiator's Decapitator","icon":"inv_axe_73","type":13,"weaponType":1,"handType":4,"stats":[0,0,66,0,0,19,50,14,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"weaponSpeed":3.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"stats":{"2":66,"5":19,"6":50,"7":14,"12":100,"13":100,"16":33},"isBase":true}}}, +{"id":34998,"name":"Brutal Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,36,75,25,0,13,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,555,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":36,"2":75,"3":25,"5":13,"16":22,"22":555,"23":16},"isBase":true}}}, +{"id":34999,"name":"Brutal Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,36,87,28,0,17,31,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,721,16,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":36,"2":87,"3":28,"5":17,"6":31,"7":12,"16":25,"22":721,"23":16},"isBase":true}}}, +{"id":35000,"name":"Brutal Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,41,91,34,0,17,18,12,0,0,0,0,0,0,0,0,29,0,0,0,0,0,777,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":41,"2":91,"3":34,"5":17,"6":18,"7":12,"16":29,"22":777,"23":12},"isBase":true}}}, +{"id":35001,"name":"Brutal Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,34,74,20,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":34,"2":74,"3":20,"6":21,"16":21,"22":666,"23":16},"isBase":true}}}, +{"id":35002,"name":"Brutal Gladiator's Dragonhide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,36,84,26,0,16,23,12,0,0,0,0,0,0,0,0,26,0,0,0,0,0,887,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":584,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":36,"2":84,"3":26,"5":16,"6":23,"7":12,"16":26,"22":887,"23":20},"isBase":true}}}, +{"id":35003,"name":"Brutal Gladiator's Dreadweave Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,81,40,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":81,"3":40,"16":21,"22":399,"23":40},"isBase":true}}}, +{"id":35004,"name":"Brutal Gladiator's Dreadweave Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,98,43,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":98,"3":43,"16":33,"22":518,"23":60},"isBase":true}}}, +{"id":35005,"name":"Brutal Gladiator's Dreadweave Leggings","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,108,57,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":108,"3":57,"16":33,"22":558,"23":60},"isBase":true}}}, +{"id":35006,"name":"Brutal Gladiator's Dreadweave Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,20,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":62,"3":38,"5":20,"16":21,"22":479,"23":40},"isBase":true}}}, +{"id":35007,"name":"Brutal Gladiator's Dreadweave Robe","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,95,49,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Dreadgear","setId":568,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":95,"3":49,"16":24,"22":638,"23":60},"isBase":true}}}, +{"id":35008,"name":"Brutal Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":56,"3":34,"16":27},"isBase":true}}}, +{"id":35009,"name":"Brutal Gladiator's Felweave Amice","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":62,"3":38,"6":21,"16":23,"22":479,"23":40},"isBase":true}}}, +{"id":35010,"name":"Brutal Gladiator's Felweave Cowl","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,79,46,0,0,28,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":79,"3":46,"6":28,"16":33,"22":518,"23":60},"isBase":true}}}, +{"id":35011,"name":"Brutal Gladiator's Felweave Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,68,38,0,0,26,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":68,"3":38,"6":26,"16":23,"22":399,"23":40},"isBase":true}}}, +{"id":35012,"name":"Brutal Gladiator's Felweave Raiment","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,75,39,0,0,39,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":75,"3":39,"6":39,"16":26,"22":638,"23":60},"isBase":true}}}, +{"id":35013,"name":"Brutal Gladiator's Felweave Trousers","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,89,51,0,0,39,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":615,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":89,"3":51,"6":39,"16":30,"22":558,"23":60},"isBase":true}}}, +{"id":35014,"name":"Brutal Gladiator's Gavel","icon":"inv_mace_73","type":13,"weaponType":4,"handType":2,"stats":[0,0,48,0,0,19,0,0,0,0,0,0,0,0,330,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":48,"5":19,"14":330,"16":18},"isBase":true}}}, +{"id":35015,"name":"Brutal Gladiator's Greatsword","icon":"inv_sword_116","type":13,"weaponType":9,"handType":4,"stats":[50,0,66,0,0,19,50,14,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"weaponSpeed":3.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":567,"weaponDamageMax":852,"stats":{"0":50,"2":66,"5":19,"6":50,"7":14,"16":33},"isBase":true}}}, +{"id":35016,"name":"Brutal Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,40,28,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":40,"3":28,"16":23},"isBase":true}}}, +{"id":35017,"name":"Brutal Gladiator's Hacker","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35018,"name":"Brutal Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_26","type":14,"rangedWeaponType":2,"stats":[0,0,86,0,0,0,54,0,0,0,0,0,0,121,0,0,41,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":3,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"stats":{"2":86,"6":54,"13":121,"16":41},"isBase":true}}}, +{"id":35022,"name":"Brutal Gladiator's Kodohide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,81,40,26,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,555,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":81,"3":40,"4":26,"16":21,"22":555,"23":12},"isBase":true}}}, +{"id":35023,"name":"Brutal Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,99,47,28,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,721,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":99,"3":47,"4":28,"16":29,"22":721,"23":12},"isBase":true}}}, +{"id":35024,"name":"Brutal Gladiator's Kodohide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,0,105,52,40,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,777,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":105,"3":52,"4":40,"16":31,"22":777,"23":12},"isBase":true}}}, +{"id":35025,"name":"Brutal Gladiator's Kodohide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,69,30,18,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":69,"3":30,"4":18,"16":20,"22":666,"23":16},"isBase":true}}}, +{"id":35026,"name":"Brutal Gladiator's Kodohide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,97,46,28,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,887,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":685,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":97,"3":46,"4":28,"16":27,"22":887,"23":12},"isBase":true}}}, +{"id":35027,"name":"Brutal Gladiator's Lamellar Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,95,32,0,0,44,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":95,"3":32,"6":44,"16":31,"22":1995},"isBase":true}}}, +{"id":35028,"name":"Brutal Gladiator's Lamellar Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":34,"16":19,"22":1247},"isBase":true}}}, +{"id":35029,"name":"Brutal Gladiator's Lamellar Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[0,0,96,43,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":96,"3":43,"6":34,"16":33,"22":1621},"isBase":true}}}, +{"id":35030,"name":"Brutal Gladiator's Lamellar Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,97,46,0,0,45,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":97,"3":46,"6":45,"16":35,"22":1746},"isBase":true}}}, +{"id":35031,"name":"Brutal Gladiator's Lamellar Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,69,28,0,0,32,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Aegis","setId":582,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":69,"3":28,"6":32,"16":22,"22":1497},"isBase":true}}}, +{"id":35032,"name":"Brutal Gladiator's Leather Gloves","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,555,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":68,"6":24,"16":24,"22":555,"23":16},"isBase":true}}}, +{"id":35033,"name":"Brutal Gladiator's Leather Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,36,89,0,0,17,26,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,721,20,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":36,"2":89,"5":17,"6":26,"7":12,"16":25,"22":721,"23":20},"isBase":true}}}, +{"id":35034,"name":"Brutal Gladiator's Leather Legguards","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,40,89,0,0,17,30,12,0,0,0,0,0,0,0,0,40,0,0,0,0,0,777,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":40,"2":89,"5":17,"6":30,"7":12,"16":40,"22":777,"23":20},"isBase":true}}}, +{"id":35035,"name":"Brutal Gladiator's Leather Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,39,63,0,0,0,31,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,666,16,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":39,"2":63,"6":31,"16":25,"22":666,"23":16},"isBase":true}}}, +{"id":35036,"name":"Brutal Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,36,86,0,0,17,22,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,887,20,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":577,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":36,"2":86,"5":17,"6":22,"7":12,"16":25,"22":887,"23":20},"isBase":true}}}, +{"id":35037,"name":"Brutal Gladiator's Slasher","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35038,"name":"Brutal Gladiator's Fleshslicer","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35042,"name":"Brutal Gladiator's Linked Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,32,71,0,0,17,49,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":32,"2":71,"5":17,"6":49,"7":12,"16":31,"22":1343},"isBase":true}}}, +{"id":35043,"name":"Brutal Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,38,58,0,0,0,37,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":38,"2":58,"6":37,"16":22,"22":839},"isBase":true}}}, +{"id":35044,"name":"Brutal Gladiator's Linked Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,40,74,0,0,18,39,12,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":40,"2":74,"5":18,"6":39,"7":12,"16":33,"22":1091},"isBase":true}}}, +{"id":35045,"name":"Brutal Gladiator's Linked Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,43,74,0,0,17,41,12,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"1":43,"2":74,"5":17,"6":41,"7":12,"16":31,"22":1175},"isBase":true}}}, +{"id":35046,"name":"Brutal Gladiator's Linked Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,30,58,0,0,20,31,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":578,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":30,"2":58,"5":20,"6":31,"16":21,"22":1007},"isBase":true}}}, +{"id":35047,"name":"Brutal Gladiator's Longbow","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,0,86,0,0,0,54,0,0,0,0,0,0,121,0,0,41,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":3,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"stats":{"2":86,"6":54,"13":121,"16":41},"isBase":true}}}, +{"id":35048,"name":"Brutal Gladiator's Mail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,83,42,28,0,34,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":83,"3":42,"4":28,"6":34,"16":28,"22":1343},"isBase":true}}}, +{"id":35049,"name":"Brutal Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,71,37,0,0,32,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":71,"3":37,"6":32,"16":23,"22":839},"isBase":true}}}, +{"id":35050,"name":"Brutal Gladiator's Mail Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,88,47,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":88,"3":47,"6":32,"16":32,"22":1091},"isBase":true}}}, +{"id":35051,"name":"Brutal Gladiator's Mail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,96,50,28,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":96,"3":50,"4":28,"6":34,"16":33,"22":1175},"isBase":true}}}, +{"id":35052,"name":"Brutal Gladiator's Mail Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,65,29,20,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":580,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":65,"3":29,"4":20,"6":26,"16":21,"22":1007},"isBase":true}}}, +{"id":35053,"name":"Brutal Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,73,35,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":73,"3":35,"16":25,"22":399,"23":40},"isBase":true}}}, +{"id":35054,"name":"Brutal Gladiator's Mooncloth Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,95,39,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":95,"3":39,"16":33,"22":518,"23":60},"isBase":true}}}, +{"id":35055,"name":"Brutal Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,96,43,40,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":96,"3":43,"4":40,"16":31,"22":558,"23":60},"isBase":true}}}, +{"id":35056,"name":"Brutal Gladiator's Mooncloth Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,71,31,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":71,"3":31,"16":25,"22":479,"23":40},"isBase":true}}}, +{"id":35057,"name":"Brutal Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_60","type":5,"armorType":1,"stats":[0,0,88,33,28,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":687,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":88,"3":33,"4":28,"16":28,"22":638,"23":60},"isBase":true}}}, +{"id":35058,"name":"Brutal Gladiator's Mutilator","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35059,"name":"Brutal Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,98,31,0,0,42,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":98,"3":31,"6":42,"16":28,"22":1995},"isBase":true}}}, +{"id":35060,"name":"Brutal Gladiator's Ornamented Gloves","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,82,36,0,0,33,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":82,"3":36,"6":33,"16":18,"22":1247},"isBase":true}}}, +{"id":35061,"name":"Brutal Gladiator's Ornamented Headcover","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[0,0,98,40,0,0,32,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":98,"3":40,"6":32,"16":32,"22":1621},"isBase":true}}}, +{"id":35062,"name":"Brutal Gladiator's Ornamented Legplates","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,102,47,0,0,46,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":102,"3":47,"6":46,"16":35,"22":1746},"isBase":true}}}, +{"id":35063,"name":"Brutal Gladiator's Ornamented Spaulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[0,0,71,27,0,0,32,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":690,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":71,"3":27,"6":32,"16":23,"22":1497},"isBase":true}}}, +{"id":35064,"name":"Brutal Gladiator's Painsaw","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,0,68,0,0,0,51,0,0,0,0,0,102,102,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":346,"weaponDamageMax":520,"weaponSpeed":2.2,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":346,"weaponDamageMax":520,"stats":{"2":68,"6":51,"12":102,"13":102,"16":42},"isBase":true}}}, +{"id":35065,"name":"Brutal Gladiator's Piercing Touch","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,26,19,0,0,0,31,0,0,0,0,0,0,330,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.9,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"stats":{"2":26,"3":19,"7":31,"14":330,"16":19},"isBase":true}}}, +{"id":35066,"name":"Brutal Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[45,0,76,0,0,18,45,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":45,"2":76,"5":18,"6":45,"7":12,"16":24,"22":1995},"isBase":true}}}, +{"id":35067,"name":"Brutal Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[42,0,59,0,0,0,37,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":42,"2":59,"6":37,"16":24,"22":1247},"isBase":true}}}, +{"id":35068,"name":"Brutal Gladiator's Plate Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[45,0,68,0,0,18,41,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":45,"2":68,"5":18,"6":41,"7":12,"16":25,"22":1621},"isBase":true}}}, +{"id":35069,"name":"Brutal Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[57,0,77,0,0,18,53,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":57,"2":77,"5":18,"6":53,"7":12,"16":22,"22":1746},"isBase":true}}}, +{"id":35070,"name":"Brutal Gladiator's Plate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[38,0,64,0,0,0,35,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":567,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":38,"2":64,"6":35,"16":20,"22":1497},"isBase":true}}}, +{"id":35071,"name":"Brutal Gladiator's Pummeler","icon":"inv_mace_74","type":13,"weaponType":4,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35072,"name":"Brutal Gladiator's Quickblade","icon":"inv_sword_114","type":13,"weaponType":9,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35073,"name":"Brutal Gladiator's Redoubt","icon":"inv_shield_52","type":13,"weaponType":7,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":56,"3":34,"16":27,"22":5383},"isBase":true}}}, +{"id":35074,"name":"Brutal Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":56,"3":34,"16":27},"isBase":true}}}, +{"id":35075,"name":"Brutal Gladiator's Rifle","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,0,86,0,0,0,54,0,0,0,0,0,0,121,0,0,41,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"weaponSpeed":3,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":473,"weaponDamageMax":710,"stats":{"2":86,"6":54,"13":121,"16":41},"isBase":true}}}, +{"id":35076,"name":"Brutal Gladiator's Ripper","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35077,"name":"Brutal Gladiator's Ringmail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,86,42,28,0,36,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":86,"3":42,"4":28,"6":36,"16":26,"22":1343},"isBase":true}}}, +{"id":35078,"name":"Brutal Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,71,39,0,0,29,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":71,"3":39,"6":29,"16":22,"22":839},"isBase":true}}}, +{"id":35079,"name":"Brutal Gladiator's Ringmail Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,0,94,44,0,0,31,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":94,"3":44,"6":31,"16":33,"22":1091},"isBase":true}}}, +{"id":35080,"name":"Brutal Gladiator's Ringmail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,96,50,28,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1175,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":96,"3":50,"4":28,"6":34,"16":33,"22":1175},"isBase":true}}}, +{"id":35081,"name":"Brutal Gladiator's Ringmail Spaulders","icon":"inv_shoulder_90","type":3,"armorType":3,"stats":[0,0,66,29,20,0,24,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1007,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":686,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":66,"3":29,"4":20,"6":24,"16":21,"22":1007},"isBase":true}}}, +{"id":35082,"name":"Brutal Gladiator's Salvation","icon":"inv_mace_71","type":13,"weaponType":4,"handType":2,"stats":[0,0,57,0,0,0,0,0,0,0,0,0,0,0,330,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":57,"14":330,"16":21},"isBase":true}}}, +{"id":35083,"name":"Brutal Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,72,35,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":72,"3":35,"16":25,"22":399,"23":40},"isBase":true}}}, +{"id":35084,"name":"Brutal Gladiator's Satin Hood","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,91,43,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":91,"3":43,"16":32,"22":518,"23":60},"isBase":true}}}, +{"id":35085,"name":"Brutal Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,105,56,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":105,"3":56,"16":34,"22":558,"23":60},"isBase":true}}}, +{"id":35086,"name":"Brutal Gladiator's Satin Mantle","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,72,32,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":72,"3":32,"16":23,"22":479,"23":40},"isBase":true}}}, +{"id":35087,"name":"Brutal Gladiator's Satin Robe","icon":"inv_chest_cloth_60","type":5,"armorType":1,"stats":[0,0,92,42,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":581,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":92,"3":42,"16":31,"22":638,"23":60},"isBase":true}}}, +{"id":35088,"name":"Brutal Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[61,0,61,0,0,17,41,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":61,"5":17,"6":41,"16":36,"22":1995},"isBase":true}}}, +{"id":35089,"name":"Brutal Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":68,"6":30,"16":26,"22":1247},"isBase":true}}}, +{"id":35090,"name":"Brutal Gladiator's Scaled Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[61,0,92,0,0,17,33,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":92,"5":17,"6":33,"16":36,"22":1621},"isBase":true}}}, +{"id":35091,"name":"Brutal Gladiator's Scaled Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[61,0,92,0,0,17,41,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":61,"2":92,"5":17,"6":41,"16":36,"22":1746},"isBase":true}}}, +{"id":35092,"name":"Brutal Gladiator's Scaled Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":583,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":68,"6":30,"16":26,"22":1497},"isBase":true}}}, +{"id":35093,"name":"Brutal Gladiator's Shanker","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":218,"weaponDamageMax":328,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35094,"name":"Brutal Gladiator's Shield Wall","icon":"inv_shield_53","type":13,"weaponType":7,"handType":3,"stats":[0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,5383,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":65,"stats":{"2":67,"16":31,"22":5383},"isBase":true}}}, +{"id":35095,"name":"Brutal Gladiator's Shiv","icon":"inv_weapon_shortblade_75","type":13,"weaponType":2,"handType":3,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"weaponSpeed":1.8,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":191,"weaponDamageMax":355,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35096,"name":"Brutal Gladiator's Silk Amice","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,62,38,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,479,40,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":62,"3":38,"6":21,"16":23,"22":479,"23":40},"isBase":true}}}, +{"id":35097,"name":"Brutal Gladiator's Silk Cowl","icon":"inv_helmet_132","type":1,"armorType":1,"stats":[0,0,82,46,0,0,30,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,518,60,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":46,"6":30,"16":33,"22":518,"23":60},"isBase":true}}}, +{"id":35098,"name":"Brutal Gladiator's Silk Handguards","icon":"inv_gauntlets_47","type":7,"armorType":1,"stats":[0,0,68,38,0,0,26,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,399,40,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":68,"3":38,"6":26,"16":23,"22":399,"23":40},"isBase":true}}}, +{"id":35099,"name":"Brutal Gladiator's Silk Raiment","icon":"inv_chest_cloth_62","type":5,"armorType":1,"stats":[0,0,75,39,0,0,39,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,638,60,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":75,"3":39,"6":39,"16":26,"22":638,"23":60},"isBase":true}}}, +{"id":35100,"name":"Brutal Gladiator's Silk Trousers","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,95,51,0,0,39,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,558,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":579,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":95,"3":51,"6":39,"16":30,"22":558,"23":60},"isBase":true}}}, +{"id":35101,"name":"Brutal Gladiator's Slicer","icon":"inv_sword_114","type":13,"weaponType":9,"handType":2,"stats":[0,0,31,0,0,9,22,7,0,0,0,0,38,38,0,0,12,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":315,"weaponDamageMax":473,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":315,"weaponDamageMax":473,"stats":{"2":31,"5":9,"6":22,"7":7,"12":38,"13":38,"16":12},"isBase":true}}}, +{"id":35102,"name":"Brutal Gladiator's Spellblade","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":2,"stats":[0,0,48,0,0,19,0,0,0,0,0,0,0,0,330,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":48,"5":19,"14":330,"16":18},"isBase":true}}}, +{"id":35103,"name":"Brutal Gladiator's Staff","icon":"inv_staff_60","type":13,"weaponType":8,"handType":4,"stats":[0,0,66,0,0,26,50,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":315,"weaponDamageMax":473,"weaponSpeed":2,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":315,"weaponDamageMax":473,"stats":{"2":66,"5":26,"6":50,"12":100,"13":100,"16":33},"isBase":true}}}, +{"id":35107,"name":"Brutal Gladiator's Touch of Defeat","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,44,23,0,0,0,0,0,0,0,0,0,0,330,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"weaponSpeed":1.9,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":100,"weaponDamageMax":187,"stats":{"2":44,"3":23,"14":330,"16":19},"isBase":true}}}, +{"id":35109,"name":"Brutal Gladiator's War Staff","icon":"inv_staff_74","type":13,"weaponType":8,"handType":4,"stats":[0,0,106,0,0,0,50,40,0,0,0,0,0,0,334,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":157,"weaponDamageMax":237,"weaponSpeed":2,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":111,"weaponDamageMin":157,"weaponDamageMax":237,"stats":{"2":106,"6":50,"7":40,"14":334,"16":29},"isBase":true}}}, +{"id":35110,"name":"Brutal Gladiator's Waraxe","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,31,0,0,9,20,6,0,0,0,0,42,42,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[2],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":20,"7":6,"12":42,"13":42,"16":14},"isBase":true}}}, +{"id":35111,"name":"Brutal Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,67,42,16,0,16,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,555,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":67,"3":42,"4":16,"6":16,"16":22,"22":555,"23":12},"isBase":true}}}, +{"id":35112,"name":"Brutal Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,88,50,20,0,22,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,721,12,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":88,"3":50,"4":20,"6":22,"16":28,"22":721,"23":12},"isBase":true}}}, +{"id":35113,"name":"Brutal Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,0,94,57,28,0,27,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,777,16,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":94,"3":57,"4":28,"6":27,"16":31,"22":777,"23":16},"isBase":true}}}, +{"id":35114,"name":"Brutal Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,0,64,35,12,0,13,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,666,12,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":64,"3":35,"4":12,"6":13,"16":22,"22":666,"23":12},"isBase":true}}}, +{"id":35115,"name":"Brutal Gladiator's Wyrmhide Tunic","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,0,84,50,18,0,18,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,887,12,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":585,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":84,"3":50,"4":18,"6":18,"16":27,"22":887,"23":12},"isBase":true}}}, +{"id":35129,"name":"Guardian's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,47,26,0,0,0,14,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":26,"7":14,"16":22},"isBase":true}}}, +{"id":35130,"name":"Guardian's Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,54,26,18,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":54,"3":26,"4":18,"16":22},"isBase":true}}}, +{"id":35131,"name":"Guardian's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,38,0,0,0,30,8,0,0,0,0,52,52,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":38,"6":30,"7":8,"12":52,"13":52,"16":22},"isBase":true}}}, +{"id":35132,"name":"Guardian's Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,47,24,0,0,24,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":24,"6":24,"16":18},"isBase":true}}}, +{"id":35133,"name":"Guardian's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,56,30,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":56,"3":30,"16":18},"isBase":true}}}, +{"id":35134,"name":"Guardian's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,50,26,18,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":50,"3":26,"4":18,"16":18},"isBase":true}}}, +{"id":35135,"name":"Guardian's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,39,0,0,0,26,0,0,0,0,0,58,58,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":39,"6":26,"12":58,"13":58,"16":18},"isBase":true}}}, +{"id":35136,"name":"Guardian's Chain Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,37,69,0,0,0,22,23,0,0,0,0,0,0,0,0,21,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":69,"6":22,"7":23,"16":21,"22":923},"isBase":true}}}, +{"id":35137,"name":"Guardian's Dragonhide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,34,72,0,0,24,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":34,"2":72,"5":24,"6":25,"16":26,"22":610,"23":12},"isBase":true}}}, +{"id":35138,"name":"Guardian's Dreadweave Stalkers","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,84,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":84,"3":40,"16":31,"22":439,"23":20},"isBase":true}}}, +{"id":35139,"name":"Guardian's Kodohide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":38,"4":28,"16":26,"22":610,"23":12},"isBase":true}}}, +{"id":35140,"name":"Guardian's Lamellar Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":34,"16":26,"22":1372},"isBase":true}}}, +{"id":35141,"name":"Guardian's Leather Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,610,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":68,"6":24,"16":30,"22":610},"isBase":true}}}, +{"id":35142,"name":"Guardian's Linked Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,38,55,0,0,27,38,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":38,"2":55,"5":27,"6":38,"16":21,"22":923},"isBase":true}}}, +{"id":35143,"name":"Guardian's Mail Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":75,"3":34,"6":34,"16":27,"22":923},"isBase":true}}}, +{"id":35144,"name":"Guardian's Mooncloth Slippers","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":82,"3":40,"16":31,"22":439,"23":20},"isBase":true}}}, +{"id":35145,"name":"Guardian's Ornamented Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":34,"16":26,"22":1372},"isBase":true}}}, +{"id":35146,"name":"Guardian's Plate Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[40,0,56,0,0,0,40,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":40,"2":56,"6":40,"16":30,"22":1372},"isBase":true}}}, +{"id":35147,"name":"Guardian's Ringmail Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":75,"3":34,"6":34,"16":27,"22":923},"isBase":true}}}, +{"id":35148,"name":"Guardian's Scaled Greaves","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":68,"6":30,"16":30,"22":1372},"isBase":true}}}, +{"id":35149,"name":"Guardian's Silk Footguards","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,76,34,0,0,32,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,439,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":32,"16":26,"22":439,"23":20},"isBase":true}}}, +{"id":35150,"name":"Guardian's Wyrmhide Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,610,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":38,"4":28,"16":26,"22":610,"23":12},"isBase":true}}}, +{"id":35151,"name":"Guardian's Chain Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,37,69,0,0,0,22,23,0,0,0,0,0,0,0,0,21,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":69,"6":22,"7":23,"16":21,"22":755},"isBase":true}}}, +{"id":35152,"name":"Guardian's Dragonhide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,34,72,0,0,0,25,0,24,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":34,"2":72,"6":25,"8":24,"16":26,"22":499,"23":12},"isBase":true}}}, +{"id":35153,"name":"Guardian's Dreadweave Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,84,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":84,"3":40,"16":31,"22":359,"23":20},"isBase":true}}}, +{"id":35154,"name":"Guardian's Kodohide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":38,"4":28,"16":26,"22":499,"23":12},"isBase":true}}}, +{"id":35155,"name":"Guardian's Lamellar Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":34,"16":26,"22":1122},"isBase":true}}}, +{"id":35156,"name":"Guardian's Leather Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,37,68,0,0,0,24,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":37,"2":68,"6":24,"16":30,"22":499},"isBase":true}}}, +{"id":35157,"name":"Guardian's Linked Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,38,55,0,0,28,37,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"1":38,"2":55,"5":28,"6":37,"16":21,"22":755},"isBase":true}}}, +{"id":35158,"name":"Guardian's Mail Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":75,"3":34,"6":34,"16":27,"22":755},"isBase":true}}}, +{"id":35159,"name":"Guardian's Mooncloth Belt","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":82,"3":40,"16":31,"22":359,"23":20},"isBase":true}}}, +{"id":35160,"name":"Guardian's Ornamented Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,76,34,0,0,34,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":34,"16":26,"22":1122},"isBase":true}}}, +{"id":35161,"name":"Guardian's Plate Belt","icon":"inv_belt_14","type":8,"armorType":4,"stats":[40,0,56,0,0,0,40,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":40,"2":56,"6":40,"16":30,"22":1122},"isBase":true}}}, +{"id":35162,"name":"Guardian's Ringmail Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,75,34,0,0,34,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":75,"3":34,"6":34,"16":27,"22":755},"isBase":true}}}, +{"id":35163,"name":"Guardian's Scaled Belt","icon":"inv_belt_12","type":8,"armorType":4,"stats":[45,0,68,0,0,0,30,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":45,"2":68,"6":30,"16":30,"22":1122},"isBase":true}}}, +{"id":35164,"name":"Guardian's Silk Belt","icon":"inv_belt_12","type":8,"armorType":1,"stats":[0,0,76,34,0,0,32,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,359,20,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":34,"6":32,"16":26,"22":359,"23":20},"isBase":true}}}, +{"id":35165,"name":"Guardian's Wyrmhide Belt","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,76,38,28,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,499,12,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"159":{"randPropPoints":86,"stats":{"2":76,"3":38,"4":28,"16":26,"22":499,"23":12},"isBase":true}}}, +{"id":35166,"name":"Guardian's Chain Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,26,44,0,0,0,14,15,0,0,0,0,0,0,0,0,13,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":26,"2":44,"6":14,"7":15,"16":13,"22":561},"isBase":true}}}, +{"id":35167,"name":"Guardian's Dragonhide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,25,53,0,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":25,"2":53,"6":24,"16":17,"22":371,"23":12},"isBase":true}}}, +{"id":35168,"name":"Guardian's Dreadweave Cuffs","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,56,29,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":56,"3":29,"16":17,"22":267,"23":20},"isBase":true}}}, +{"id":35169,"name":"Guardian's Kodohide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,51,21,20,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":51,"3":21,"4":20,"16":18,"22":371,"23":12},"isBase":true}}}, +{"id":35170,"name":"Guardian's Lamellar Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,47,26,0,0,23,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":26,"6":23,"16":15,"22":832},"isBase":true}}}, +{"id":35171,"name":"Guardian's Leather Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,28,46,0,0,0,15,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,371,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":28,"2":46,"6":15,"16":15,"22":371},"isBase":true}}}, +{"id":35172,"name":"Guardian's Linked Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,28,37,0,0,0,24,17,0,0,0,0,0,0,0,0,12,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":28,"2":37,"6":24,"7":17,"16":12,"22":561},"isBase":true}}}, +{"id":35173,"name":"Guardian's Mail Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,47,26,0,0,24,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":26,"6":24,"16":15,"22":561},"isBase":true}}}, +{"id":35174,"name":"Guardian's Mooncloth Cuffs","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,56,29,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":56,"3":29,"16":17,"22":267,"23":20},"isBase":true}}}, +{"id":35175,"name":"Guardian's Ornamented Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,47,26,0,0,23,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":26,"6":23,"16":15,"22":832},"isBase":true}}}, +{"id":35176,"name":"Guardian's Plate Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[28,0,40,0,0,0,24,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":28,"2":40,"6":24,"16":17,"22":832},"isBase":true}}}, +{"id":35177,"name":"Guardian's Ringmail Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,47,26,0,0,24,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":26,"6":24,"16":15,"22":561},"isBase":true}}}, +{"id":35178,"name":"Guardian's Scaled Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[29,0,49,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":29,"2":49,"6":20,"16":20,"22":832},"isBase":true}}}, +{"id":35179,"name":"Guardian's Silk Cuffs","icon":"inv_bracer_14","type":6,"armorType":1,"stats":[0,0,53,26,0,0,18,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,267,20,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":53,"3":26,"6":18,"16":13,"22":267,"23":20},"isBase":true}}}, +{"id":35180,"name":"Guardian's Wyrmhide Bracers","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,52,23,20,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,371,12,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":52,"3":23,"4":20,"16":15,"22":371,"23":12},"isBase":true}}}, +{"id":35181,"name":"Powerheal 9000 Lens","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,82,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46108}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":58,"4":41,"22":518},"isBase":true}}}, +{"id":35182,"name":"Hyper-Magnified Moon Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,72,55,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46109}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":72,"3":55,"6":54,"22":721},"isBase":true}}}, +{"id":35183,"name":"Wonderheal XT68 Shades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,82,61,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46106}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":82,"3":61,"4":35,"22":721},"isBase":true}}}, +{"id":35184,"name":"Primal-Attuned Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,81,61,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1091,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46110}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":81,"3":61,"4":36,"22":1091},"isBase":true}}}, +{"id":35185,"name":"Justicebringer 3000 Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,65,58,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46107}}],"scalingOptions":{"159":{"randPropPoints":116,"stats":{"2":65,"3":58,"6":52,"22":1621},"isBase":true}}}, +{"id":35282,"name":"Sin'dorei Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,33,29,0,0,28,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":33,"3":29,"6":28,"16":15},"isBase":true}}}, +{"id":35283,"name":"Sin'dorei Band of Salvation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,44,29,18,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":44,"3":29,"4":18,"16":19},"isBase":true}}}, +{"id":35284,"name":"Sin'dorei Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,30,0,0,0,28,0,0,0,0,0,58,58,0,0,19,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25741,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":30,"6":28,"12":58,"13":58,"16":19},"isBase":true}}}, +{"id":35290,"name":"Sin'dorei Pendant of Conquest","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,29,0,0,19,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":35,"3":29,"6":19,"16":18},"isBase":true}}}, +{"id":35291,"name":"Sin'dorei Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,33,29,20,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":33,"3":29,"4":20,"16":18},"isBase":true}}}, +{"id":35292,"name":"Sin'dorei Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,18,0,0,0,28,0,0,0,0,0,58,58,0,0,19,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25166,"zoneId":4075}}],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":18,"6":28,"12":58,"13":58,"16":19},"isBase":true}}}, +{"id":35317,"name":"Vindicator's Pendant of Reprieve","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,35,23,0,0,0,23,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":35,"3":23,"7":23,"16":18},"isBase":true}}}, +{"id":35319,"name":"Vindicator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,21,0,0,0,21,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":40,"3":21,"7":21,"16":18},"isBase":true}}}, +{"id":35320,"name":"Vindicator's Band of Subjugation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,33,22,0,0,0,30,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":55,"ilvl":141,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"141":{"randPropPoints":55,"stats":{"2":33,"3":22,"7":30,"16":22},"isBase":true}}}, +{"id":35321,"name":"Cloak of Arcane Alacrity","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,42,23,0,0,0,16,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":23,"7":16,"16":23,"22":262},"isBase":true}}}, +{"id":35324,"name":"Cloak of Swift Reprieve","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,42,23,0,0,0,16,0,0,0,0,0,0,0,0,23,0,0,0,0,0,262,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":136,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"randPropPoints":52,"stats":{"2":42,"3":23,"7":16,"16":23,"22":262},"isBase":true}}}, +{"id":35326,"name":"Battlemaster's Alacrity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"7":40},"isBase":true}}}, +{"id":35327,"name":"Battlemaster's Alacrity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":133,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"133":{"randPropPoints":68,"stats":{"7":40},"isBase":true}}}, +{"id":35328,"name":"Dreadweave Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,47,22,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":47,"3":22,"16":12,"22":231},"isBase":true}}}, +{"id":35329,"name":"Dreadweave Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":300},"isBase":true}}}, +{"id":35330,"name":"Dreadweave Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":62,"3":33,"16":22,"22":323},"isBase":true}}}, +{"id":35331,"name":"Dreadweave Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,31,22,0,6,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":31,"3":22,"5":6,"16":17,"22":277},"isBase":true}}}, +{"id":35332,"name":"Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":369},"isBase":true}}}, +{"id":35333,"name":"Mooncloth Cowl","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":60,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":35334,"name":"Mooncloth Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,63,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":63,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":35335,"name":"Mooncloth Mitts","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":35336,"name":"Mooncloth Shoulderpads","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,45,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":35337,"name":"Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":57,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":35338,"name":"Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":42,"3":21,"16":14,"22":231},"isBase":true}}}, +{"id":35339,"name":"Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":35340,"name":"Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,60,31,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":60,"3":31,"16":23,"22":323},"isBase":true}}}, +{"id":35341,"name":"Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,44,13,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,277,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":13,"16":17,"22":277},"isBase":true}}}, +{"id":35342,"name":"Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,51,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":51,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":35343,"name":"Evoker's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":34,"3":21,"6":8,"16":15,"22":277},"isBase":true}}}, +{"id":35344,"name":"Evoker's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,47,20,0,0,17,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":20,"6":17,"16":19,"22":300},"isBase":true}}}, +{"id":35345,"name":"Evoker's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,38,16,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":38,"3":16,"6":17,"16":17,"22":231},"isBase":true}}}, +{"id":35346,"name":"Evoker's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,48,20,0,0,17,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":17,"16":18,"22":369},"isBase":true}}}, +{"id":35347,"name":"Evoker's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,56,28,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":28,"6":22,"16":22,"22":323},"isBase":true}}}, +{"id":35356,"name":"Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,17,43,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":43,"6":16,"16":16,"22":322,"23":9},"isBase":true}}}, +{"id":35357,"name":"Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,22,49,0,0,14,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":49,"5":14,"16":21,"22":419,"23":9},"isBase":true}}}, +{"id":35358,"name":"Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,22,60,0,0,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":60,"6":22,"16":22,"22":451,"23":14},"isBase":true}}}, +{"id":35359,"name":"Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,17,44,0,0,0,0,0,8,0,0,0,0,0,0,0,13,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":17,"2":44,"8":8,"16":13,"22":386,"23":9},"isBase":true}}}, +{"id":35360,"name":"Dragonhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,0,0,0,15,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":18,"2":53,"6":15,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":35361,"name":"Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,41,23,10,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":23,"4":10,"16":14,"22":322,"23":9},"isBase":true}}}, +{"id":35362,"name":"Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,43,20,16,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":43,"3":20,"4":16,"16":19,"22":419,"23":9},"isBase":true}}}, +{"id":35363,"name":"Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,56,29,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":29,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":35364,"name":"Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":35365,"name":"Kodohide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":35366,"name":"Opportunist's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":36,"6":11,"16":16,"22":322},"isBase":true}}}, +{"id":35367,"name":"Opportunist's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,419,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":419},"isBase":true}}}, +{"id":35368,"name":"Opportunist's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,28,47,0,0,0,14,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":47,"6":14,"16":28,"22":451},"isBase":true}}}, +{"id":35369,"name":"Opportunist's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,13,36,0,0,0,11,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,386,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":36,"6":11,"16":13,"22":386},"isBase":true}}}, +{"id":35370,"name":"Opportunist's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,20,38,0,0,0,10,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,515,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":10,"16":24,"22":515},"isBase":true}}}, +{"id":35371,"name":"Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":27,"4":12,"16":13,"22":322,"23":9},"isBase":true}}}, +{"id":35372,"name":"Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,36,29,12,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,419,9,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":36,"3":29,"4":12,"16":17,"22":419,"23":9},"isBase":true}}}, +{"id":35373,"name":"Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,50,33,20,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,451,14,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":33,"4":20,"16":20,"22":451,"23":14},"isBase":true}}}, +{"id":35374,"name":"Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":35375,"name":"Wyrmhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,44,19,12,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":44,"3":19,"4":12,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":35376,"name":"Stalker's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,20,48,0,0,0,12,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":48,"6":12,"7":6,"16":16,"22":782},"isBase":true}}}, +{"id":35377,"name":"Stalker's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":30,"6":11,"7":10,"16":14,"22":489},"isBase":true}}}, +{"id":35378,"name":"Stalker's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,38,0,0,0,14,14,0,0,0,0,0,0,0,0,15,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":38,"6":14,"7":14,"16":15,"22":635},"isBase":true}}}, +{"id":35379,"name":"Stalker's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,28,41,0,0,0,14,14,0,0,0,0,0,0,0,0,25,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":28,"2":41,"6":14,"7":14,"16":25,"22":684},"isBase":true}}}, +{"id":35380,"name":"Stalker's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,14,28,0,0,0,17,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":14,"2":28,"6":17,"7":11,"16":16,"22":586},"isBase":true}}}, +{"id":35381,"name":"Seer's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,22,42,12,0,0,14,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":42,"3":12,"6":14,"16":22,"22":782},"isBase":true}}}, +{"id":35382,"name":"Seer's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,33,0,0,0,18,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":33,"6":18,"16":17,"22":489},"isBase":true}}}, +{"id":35383,"name":"Seer's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":30,"6":24,"16":24,"22":635},"isBase":true}}}, +{"id":35384,"name":"Seer's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,22,42,22,0,0,28,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":22,"2":42,"3":22,"6":28,"16":22,"22":684},"isBase":true}}}, +{"id":35385,"name":"Seer's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,13,33,8,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":13,"2":33,"3":8,"6":17,"16":13,"22":586},"isBase":true}}}, +{"id":35386,"name":"Seer's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":35387,"name":"Seer's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,39,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":35388,"name":"Seer's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,45,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":45,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":35389,"name":"Seer's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,52,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":52,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":35390,"name":"Seer's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,39,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":39,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":35391,"name":"Seer's Ringmail Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,50,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":35392,"name":"Seer's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":35393,"name":"Seer's Ringmail Headpiece","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,48,20,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":48,"3":20,"6":16,"16":16,"22":635},"isBase":true}}}, +{"id":35394,"name":"Seer's Ringmail Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,54,28,10,0,22,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":54,"3":28,"4":10,"6":22,"16":22,"22":684},"isBase":true}}}, +{"id":35395,"name":"Seer's Ringmail Shoulderpads","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,41,13,10,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":13,"4":10,"6":12,"16":12,"22":586},"isBase":true}}}, +{"id":35402,"name":"Crusader's Ornamented Chestplate","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,55,8,0,0,21,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":55,"3":8,"6":21,"16":22,"22":1128},"isBase":true}}}, +{"id":35403,"name":"Crusader's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,45,18,0,0,19,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":45,"3":18,"6":19,"16":12,"22":705},"isBase":true}}}, +{"id":35404,"name":"Crusader's Ornamented Headguard","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,50,16,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":50,"3":16,"6":20,"16":20,"22":917},"isBase":true}}}, +{"id":35405,"name":"Crusader's Ornamented Leggings","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,59,24,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":59,"3":24,"6":24,"16":24,"22":987},"isBase":true}}}, +{"id":35406,"name":"Crusader's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":35407,"name":"Savage Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[12,0,46,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":12,"2":46,"6":24,"16":19,"22":1128},"isBase":true}}}, +{"id":35408,"name":"Savage Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[22,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":22,"2":30,"6":21,"16":17,"22":705},"isBase":true}}}, +{"id":35409,"name":"Savage Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":20,"2":34,"6":24,"16":19,"22":917},"isBase":true}}}, +{"id":35410,"name":"Savage Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[28,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":28,"2":46,"6":28,"16":23,"22":987},"isBase":true}}}, +{"id":35411,"name":"Savage Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[14,0,36,0,0,0,17,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":14,"2":36,"6":17,"16":13,"22":846},"isBase":true}}}, +{"id":35412,"name":"Crusader's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,42,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":32,"2":42,"6":13,"16":14,"22":1128},"isBase":true}}}, +{"id":35413,"name":"Crusader's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,25,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":33,"2":25,"6":12,"16":12,"22":705},"isBase":true}}}, +{"id":35414,"name":"Crusader's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[35,0,30,0,0,0,13,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":35,"2":30,"6":13,"16":14,"22":917},"isBase":true}}}, +{"id":35415,"name":"Crusader's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[43,0,42,0,0,0,16,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":43,"2":42,"6":16,"16":16,"22":987},"isBase":true}}}, +{"id":35416,"name":"Crusader's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[28,0,33,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":28,"2":33,"6":9,"16":10,"22":846},"isBase":true}}}, +{"id":35464,"name":"Dreadweave Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,53,25,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[8],"setName":"Dreadweave Battlegear","setId":738,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":53,"3":25,"16":14,"22":369},"isBase":true}}}, +{"id":35465,"name":"Evoker's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,34,21,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,277,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[3],"setName":"Evoker's Silk Battlegear","setId":741,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":34,"3":21,"6":8,"16":15,"22":277},"isBase":true}}}, +{"id":35466,"name":"Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,56,15,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,300,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Satin Battlegear","setId":740,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":56,"3":15,"16":19,"22":300},"isBase":true}}}, +{"id":35467,"name":"Mooncloth Vestments","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,57,23,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,369,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[5],"setName":"Mooncloth Battlegear","setId":739,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":57,"3":23,"16":15,"22":369},"isBase":true}}}, +{"id":35468,"name":"Opportunist's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,21,36,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[6],"setName":"Opportunist's Battlegear","setId":745,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":36,"6":11,"16":16,"22":322},"isBase":true}}}, +{"id":35469,"name":"Dragonhide Robe","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,18,53,0,0,0,15,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,515,9,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Dragonhide Battlegear","setId":742,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":18,"2":53,"6":15,"16":18,"22":515,"23":9},"isBase":true}}}, +{"id":35470,"name":"Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,43,12,6,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,386,9,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Kodohide Battlegear","setId":744,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":43,"3":12,"4":6,"16":17,"22":386,"23":9},"isBase":true}}}, +{"id":35471,"name":"Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,33,27,12,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,322,9,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1],"setName":"Wyrmhide Battlegear","setId":743,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":33,"3":27,"4":12,"16":13,"22":322,"23":9},"isBase":true}}}, +{"id":35472,"name":"Seer's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,47,14,12,0,18,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Mail Battlegear","setId":746,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"2":47,"3":14,"4":12,"6":18,"16":18,"22":782},"isBase":true}}}, +{"id":35473,"name":"Seer's Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,21,0,0,14,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Ringmail Battlegear","setId":747,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":41,"3":21,"6":14,"16":13,"22":489},"isBase":true}}}, +{"id":35474,"name":"Seer's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,20,30,0,0,0,24,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[7],"setName":"Seer's Linked Battlegear","setId":748,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"1":20,"2":30,"6":24,"16":24,"22":635},"isBase":true}}}, +{"id":35475,"name":"Stalker's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,21,30,0,0,0,11,10,0,0,0,0,0,0,0,0,14,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[2],"setName":"Stalker's Chain Battlegear","setId":749,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"1":21,"2":30,"6":11,"7":10,"16":14,"22":489},"isBase":true}}}, +{"id":35476,"name":"Crusader's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,44,10,0,0,15,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,846,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Ornamented Battlegear","setId":751,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"2":44,"3":10,"6":15,"16":14,"22":846},"isBase":true}}}, +{"id":35477,"name":"Crusader's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[33,0,25,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[4],"setName":"Crusader's Scaled Battlegear","setId":752,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"0":33,"2":25,"6":12,"16":12,"22":705},"isBase":true}}}, +{"id":35478,"name":"Savage Plate Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[20,0,34,0,0,0,24,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,917,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[9],"setName":"Savage Plate Battlegear","setId":750,"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":63,"stats":{"0":20,"2":34,"6":24,"16":19,"22":917},"isBase":true}}}, +{"id":35494,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,31,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":31,"3":21,"4":20,"22":224},"isBase":true}}}, +{"id":35495,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,23,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":23,"2":44,"22":224},"isBase":true}}}, +{"id":35496,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,224,50,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":30,"9":25,"22":224,"23":50},"isBase":true}}}, +{"id":35497,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,32,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":32,"3":18,"6":22,"22":224},"isBase":true}}}, +{"id":35507,"name":"Amulet of Bitter Hatred","icon":"inv_jewelry_necklace_18","type":2,"stats":[0,20,37,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"1":20,"2":37,"5":18},"isBase":true}}}, +{"id":35508,"name":"Choker of the Arctic Flow","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":43,"3":24},"isBase":true}}}, +{"id":35509,"name":"Amulet of Glacial Tranquility","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,40,22,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":40,"3":22,"4":10},"isBase":true}}}, +{"id":35511,"name":"Hailstone Pendant","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,33,0,0,19,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":41,"stats":{"2":33,"5":19,"9":22},"isBase":true}}}, +{"id":35514,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,32,0,33,0,0,0,0,0,0,0,220,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":171,"weaponDamageMax":257,"weaponSpeed":3.2,"ilvl":110,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":73,"weaponDamageMin":171,"weaponDamageMax":257,"stats":{"2":69,"4":32,"6":33,"14":220},"isBase":true}}}, +{"id":35570,"name":"Keleseth's Blade of Evocation","icon":"inv_weapon_shortblade_46","type":13,"weaponType":2,"handType":2,"stats":[0,0,36,0,31,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":88,"weaponDamageMax":165,"weaponSpeed":1.8,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":42,"weaponDamageMin":88,"weaponDamageMax":165,"stats":{"2":36,"4":31,"14":295},"isBase":true}}}, +{"id":35571,"name":"Dragon Stabler's Gauntlets","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,32,72,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":32,"2":72,"6":32,"22":732},"isBase":true}}}, +{"id":35572,"name":"Reinforced Velvet Helm","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,91,44,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23953,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":97,"stats":{"2":91,"3":44,"4":43,"22":453},"isBase":true}}}, +{"id":35573,"name":"Arm Blade of Augelmir","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":2,"stats":[0,0,18,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":236,"weaponDamageMax":439,"weaponSpeed":2.4,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":42,"weaponDamageMin":236,"weaponDamageMax":439,"stats":{"2":18,"6":39},"isBase":true}}}, +{"id":35574,"name":"Chestplate of the Northern Lights","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,101,40,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1739,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":97,"stats":{"2":101,"3":40,"4":30,"22":1739},"isBase":true}}}, +{"id":35575,"name":"Skarvald's Dragonskin Habergeon","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,60,79,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":24200,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":97,"stats":{"1":60,"2":79,"7":25,"22":775},"isBase":true}}}, +{"id":35576,"name":"Ingvar's Monolithic Cleaver","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[56,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":468,"weaponDamageMax":702,"weaponSpeed":3.2,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":97,"weaponDamageMin":468,"weaponDamageMax":702,"stats":{"0":56,"5":70},"isBase":true}}}, +{"id":35577,"name":"Holistic Patchwork Breeches","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,73,40,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":97,"stats":{"2":73,"3":40,"4":55,"22":678},"isBase":true}}}, +{"id":35578,"name":"Overlaid Chain Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,75,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":23954,"zoneId":206}}],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":75,"3":30,"4":22,"22":878},"isBase":true}}}, +{"id":35579,"name":"Vrykul Shackles","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,27,59,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":206,"otherName":"Trash"}}],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"1":27,"2":59,"5":16,"22":339},"isBase":true}}}, +{"id":35580,"name":"Skein Woven Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,71,26,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":206,"otherName":"Trash"}}],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":71,"3":26,"4":30,"22":419},"isBase":true}}}, +{"id":35581,"name":"Rocket Boots Xtreme Lite","icon":"inv_gizmo_rocketboot_01","type":10,"armorType":1,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":112,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"crafted":{"profession":4,"spellId":46697}}],"scalingOptions":{"112":{"randPropPoints":47,"stats":{"3":40,"22":250},"isBase":true}}}, +{"id":35583,"name":"Witch Doctor's Wildstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,87,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"weaponDamageMin":433,"weaponDamageMax":651,"weaponSpeed":2.4,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"weaponDamageMin":433,"weaponDamageMax":651,"stats":{"1":87,"2":105},"isBase":true}}}, +{"id":35584,"name":"Embroidered Gown of Zul'Drak","icon":"inv_chest_cloth_27","type":5,"armorType":1,"stats":[0,0,105,51,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"2":105,"3":51,"6":55,"22":696},"isBase":true}}}, +{"id":35585,"name":"Cannibal's Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,61,88,0,0,30,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"1":61,"2":88,"5":30,"6":50,"22":1302},"isBase":true}}}, +{"id":35587,"name":"Frozen Scepter of Necromancy","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,51,0,35,0,0,0,0,0,0,0,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":139,"weaponDamageMax":260,"weaponSpeed":2.3,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":52,"weaponDamageMin":139,"weaponDamageMax":260,"stats":{"2":51,"4":35,"14":365},"isBase":true}}}, +{"id":35588,"name":"Forlorn Breastplate of War","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[54,0,61,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"0":54,"2":61,"6":82,"22":2177},"isBase":true}}}, +{"id":35589,"name":"Arcane Focal Signet","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,63,28,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":179,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":68,"stats":{"2":63,"3":28,"7":30},"isBase":true}}}, +{"id":35590,"name":"Drakkari Hunting Bow","icon":"inv_weapon_bow_34","type":14,"rangedWeaponType":1,"stats":[0,86,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"weaponDamageMin":411,"weaponDamageMax":764,"weaponSpeed":2.6,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"weaponDamageMin":411,"weaponDamageMax":764,"stats":{"1":86,"2":127},"isBase":true}}}, +{"id":35591,"name":"Shoulderguards of the Ice Troll","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,50,78,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":90,"stats":{"1":50,"2":78,"5":29,"22":732},"isBase":true}}}, +{"id":35592,"name":"Hauberk of Totemic Mastery","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,118,52,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"2":118,"3":52,"4":46,"22":1488},"isBase":true}}}, +{"id":35593,"name":"Steel Bear Trap Bracers","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[29,0,34,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,953,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}}],"scalingOptions":{"179":{"randPropPoints":68,"stats":{"0":29,"2":34,"7":47,"22":953},"isBase":true}}}, +{"id":35594,"name":"Snowmelt Silken Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,71,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}}],"scalingOptions":{"179":{"randPropPoints":90,"stats":{"2":71,"3":39,"4":48,"22":392},"isBase":true}}}, +{"id":35595,"name":"Glacier Sharpened Vileblade","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,29,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":198,"weaponDamageMax":297,"weaponSpeed":1.7,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":43,"weaponDamageMin":198,"weaponDamageMax":297,"stats":{"7":29,"12":56,"13":56},"isBase":true}}}, +{"id":35596,"name":"Attuned Crystalline Boots","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,69,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":69,"3":32,"4":31,"22":397},"isBase":true}}}, +{"id":35597,"name":"Band of Glittering Permafrost","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,56,22,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":56,"3":22,"4":20},"isBase":true}}}, +{"id":35598,"name":"Tome of the Lore Keepers","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,55,22,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":55,"3":22,"4":23},"isBase":true}}}, +{"id":35599,"name":"Gauntlets of Serpent Scales","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,74,32,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":74,"3":32,"6":26,"22":760},"isBase":true}}}, +{"id":35600,"name":"Cleated Ice Boots","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,41,45,0,0,0,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"1":41,"2":45,"6":32,"7":22,"22":836},"isBase":true}}}, +{"id":35601,"name":"Drakonid Arm Blade","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":2,"stats":[0,32,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":163,"weaponDamageMax":303,"weaponSpeed":1.6,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":43,"weaponDamageMin":163,"weaponDamageMax":303,"stats":{"1":32,"5":23},"isBase":true}}}, +{"id":35602,"name":"Chiseled Stalagmite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[55,0,48,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"0":55,"2":48,"6":23,"22":1355},"isBase":true}}}, +{"id":35603,"name":"Greaves of the Blue Flight","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,74,32,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":74,"3":32,"6":26,"22":1242},"isBase":true}}}, +{"id":35604,"name":"Insulating Bindings","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,56,22,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":56,"3":22,"6":20,"22":790},"isBase":true}}}, +{"id":35605,"name":"Belt of Draconic Runes","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,65,32,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":65,"3":32,"4":34,"22":452},"isBase":true}}}, +{"id":35606,"name":"Blade of Nadox","icon":"inv_weapon_shortblade_35","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":199,"weaponDamageMax":300,"weaponSpeed":1.6,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":46,"weaponDamageMin":199,"weaponDamageMax":300,"stats":{"2":21,"6":42},"isBase":true}}}, +{"id":35607,"name":"Ahn'kahar Handwraps","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,71,33,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":71,"3":33,"6":38,"22":544},"isBase":true}}}, +{"id":35608,"name":"Crawler-Emblem Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[0,0,80,33,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1100,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":80,"3":33,"6":30,"22":1100},"isBase":true}}}, +{"id":35609,"name":"Talisman of Scourge Command","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,53,25,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"2":53,"3":25,"4":30},"isBase":true}}}, +{"id":35610,"name":"Slasher's Amulet","icon":"inv_jewelry_necklace_ahnqiraj_04","type":2,"stats":[0,0,0,0,0,0,25,45,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"6":25,"7":45,"12":36,"13":36},"isBase":true}}}, +{"id":35611,"name":"Gloves of the Blood Prince","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,71,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":71,"3":33,"4":38,"22":390},"isBase":true}}}, +{"id":35612,"name":"Mantle of Echoing Bats","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,71,33,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":71,"3":33,"7":38,"22":468},"isBase":true}}}, +{"id":35613,"name":"Pyramid Embossed Belt","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,46,62,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"1":46,"2":62,"7":33,"22":489},"isBase":true}}}, +{"id":35614,"name":"Volazj's Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[33,0,0,0,0,25,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"0":33,"5":25,"7":60,"22":1345},"isBase":true}}}, +{"id":35615,"name":"Glowworm Cavern Bindings","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,60,25,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4494,"otherName":"Trash"}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"2":60,"3":25,"4":22,"22":577},"isBase":true}}}, +{"id":35616,"name":"Spored Tendrils Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,45,47,0,0,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,990,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4494,"otherName":"Trash"}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"1":45,"2":47,"5":26,"6":33,"22":990},"isBase":true}}}, +{"id":35617,"name":"Wand of Shimmering Scales","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,0,30,0,0,0,28,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":91,"weaponDamageMax":170,"weaponSpeed":1.8,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"159":{"randPropPoints":43,"weaponDamageMin":91,"weaponDamageMax":170,"stats":{"3":30,"7":28,"14":302},"isBase":true}}}, +{"id":35618,"name":"Troll Butcherer","icon":"inv_sword_95","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"weaponDamageMin":521,"weaponDamageMax":783,"weaponSpeed":3.1,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"weaponDamageMin":521,"weaponDamageMax":783,"stats":{"6":85,"12":120,"13":120},"isBase":true}}}, +{"id":35619,"name":"Infection Resistant Legguards","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,46,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":110,"3":46,"6":42,"22":1199},"isBase":true}}}, +{"id":35620,"name":"Berserker's Horns","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,100,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":100,"3":46,"4":52,"22":733},"isBase":true}}}, +{"id":35630,"name":"Summoner's Stone Gavel","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,35,0,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponDamageMin":260,"weaponDamageMax":484,"weaponSpeed":2.3,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":48,"weaponDamageMin":260,"weaponDamageMax":484,"stats":{"5":35,"12":54,"13":54},"isBase":true}}}, +{"id":35631,"name":"Crystal Pendant of Warding","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,60,26,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":60,"3":26,"4":22},"isBase":true}}}, +{"id":35632,"name":"Robes of Novos","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,96,46,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":96,"3":46,"7":53,"22":645},"isBase":true}}}, +{"id":35633,"name":"Staff of the Great Reptile","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,81,0,0,66,0,0,0,0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"weaponDamageMin":176,"weaponDamageMax":265,"weaponSpeed":2.1,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"weaponDamageMin":176,"weaponDamageMax":265,"stats":{"4":81,"7":66,"14":340},"isBase":true}}}, +{"id":35634,"name":"Scabrous-Hide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,63,99,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"1":63,"2":99,"6":35,"22":733},"isBase":true}}}, +{"id":35635,"name":"Stable Master's Breeches","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,108,46,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":108,"3":46,"4":52,"22":564},"isBase":true}}}, +{"id":35636,"name":"Tharon'ja's Aegis","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,26,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":60,"3":26,"6":23,"22":5586},"isBase":true}}}, +{"id":35637,"name":"Muradin's Lost Greaves","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[46,0,52,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"0":46,"2":52,"8":83,"22":1771},"isBase":true}}}, +{"id":35638,"name":"Helmet of Living Flesh","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,61,67,0,0,0,46,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"1":61,"2":67,"6":46,"7":34,"22":1113},"isBase":true}}}, +{"id":35639,"name":"Brighthelm of Guarding","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,118,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":118,"3":46,"4":36,"22":1645},"isBase":true}}}, +{"id":35640,"name":"Darkweb Bindings","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,34,42,0,0,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,599,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"1":34,"2":42,"5":14,"6":26,"22":599},"isBase":true}}}, +{"id":35641,"name":"Scytheclaw Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,0,72,35,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"2":72,"3":35,"4":39,"22":620},"isBase":true}}}, +{"id":35642,"name":"Riot Shield","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[34,0,51,0,0,0,0,0,0,23,22,0,0,0,0,0,0,0,0,0,0,0,5851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":34,"2":51,"9":23,"10":22,"22":5851},"isBase":true}}}, +{"id":35643,"name":"Spaulders of Ichoron","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,85,36,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":85,"3":36,"6":31,"22":1582},"isBase":true}}}, +{"id":35644,"name":"Xevozz's Belt","icon":"inv_belt_25","type":8,"armorType":3,"stats":[0,49,65,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":49,"2":65,"6":36,"22":806},"isBase":true}}}, +{"id":35645,"name":"Prison Warden's Shotgun","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,89,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":412,"weaponDamageMax":765,"weaponSpeed":2.7,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":412,"weaponDamageMax":765,"stats":{"1":89,"2":95},"isBase":true}}}, +{"id":35646,"name":"Lava Burn Gloves","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,81,35,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":81,"3":35,"5":36,"22":420},"isBase":true}}}, +{"id":35647,"name":"Handguards of Rapid Pursuit","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,49,71,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":49,"2":71,"8":31,"22":589},"isBase":true}}}, +{"id":35649,"name":"Jailer's Baton","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,68,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":418,"weaponDamageMax":628,"weaponSpeed":2.4,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":418,"weaponDamageMax":628,"stats":{"1":68,"2":126},"isBase":true}}}, +{"id":35650,"name":"Boots of the Portal Guardian","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,0,85,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":85,"3":36,"4":30,"22":986},"isBase":true}}}, +{"id":35651,"name":"Plate Claws of the Dragon","icon":"inv_gauntlets_01","type":7,"armorType":4,"stats":[55,0,51,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":55,"2":51,"5":43,"22":1318},"isBase":true}}}, +{"id":35652,"name":"Incessant Torch","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,32,34,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"stats":{"3":32,"4":34,"14":351},"isBase":true}}}, +{"id":35653,"name":"Girdle of the Mystical Prison","icon":"inv_belt_28","type":8,"armorType":4,"stats":[36,0,40,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":36,"2":40,"6":63,"22":1186},"isBase":true}}}, +{"id":35654,"name":"Bindings of the Bastille","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,57,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4415,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":57,"3":27,"4":30,"22":294},"isBase":true}}}, +{"id":35655,"name":"Cobweb Machete","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":205,"weaponDamageMax":308,"weaponSpeed":1.7,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":45,"weaponDamageMin":205,"weaponDamageMax":308,"stats":{"1":39,"2":20},"isBase":true}}}, +{"id":35656,"name":"Aura Focused Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,75,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":75,"3":32,"4":28,"22":1180},"isBase":true}}}, +{"id":35657,"name":"Exquisite Spider-Silk Footwraps","icon":"inv_boots_cloth_20","type":10,"armorType":1,"stats":[0,0,66,31,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":66,"3":31,"4":36,"22":414},"isBase":true}}}, +{"id":35658,"name":"Life-Staff of the Web Lair","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,113,0,60,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":2.4,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":104,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"2":113,"4":60,"14":316},"isBase":true}}}, +{"id":35659,"name":"Treads of Aspiring Heights","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,45,68,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"1":45,"2":68,"6":23,"22":577},"isBase":true}}}, +{"id":35660,"name":"Spinneret Epaulets","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,65,33,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":65,"3":33,"4":35,"22":629},"isBase":true}}}, +{"id":35661,"name":"Signet of Arachnathid Command","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[30,0,46,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":163,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":58,"stats":{"0":30,"2":46,"9":17,"23":88},"isBase":true}}}, +{"id":35662,"name":"Wing Cover Girdle","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,62,34,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":62,"3":34,"6":45,"22":715},"isBase":true}}}, +{"id":35663,"name":"Charmed Silken Cord","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,64,32,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":64,"3":32,"6":38,"22":339},"isBase":true}}}, +{"id":35664,"name":"Unknown Archaeologist's Hammer","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,18,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":168,"weaponDamageMax":314,"weaponSpeed":1.6,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":45,"weaponDamageMin":168,"weaponDamageMax":314,"stats":{"1":18,"7":39},"isBase":true}}}, +{"id":35665,"name":"Soothing Lichen Wraps","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,56,23,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":58,"stats":{"2":56,"3":23,"4":22,"22":367},"isBase":true}}}, +{"id":35666,"name":"Mark of the Spider","icon":"ability_hunter_pet_spider","type":2,"stats":[0,0,48,24,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":58,"stats":{"2":48,"3":24,"6":27},"isBase":true}}}, +{"id":35670,"name":"Brann's Lost Mining Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[52,0,60,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"0":52,"2":60,"6":92,"22":1803},"isBase":true}}}, +{"id":35672,"name":"Hollow Geode Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,132,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":132,"3":52,"4":40,"22":1245},"isBase":true}}}, +{"id":35673,"name":"Leggings of Burning Gleam","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,108,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":108,"3":52,"4":59,"22":625},"isBase":true}}}, +{"id":35675,"name":"Linked Armor of the Sphere","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,68,88,0,0,28,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1532,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"1":68,"2":88,"5":28,"6":52,"22":1532},"isBase":true}}}, +{"id":35676,"name":"Constellation Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,71,95,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"1":71,"2":95,"5":40,"22":878},"isBase":true}}}, +{"id":35677,"name":"Cosmos Vestments","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,0,119,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":119,"3":52,"6":53,"22":1004},"isBase":true}}}, +{"id":35678,"name":"Ironshaper's Legplates","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,132,52,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":132,"3":52,"6":40,"22":1942},"isBase":true}}}, +{"id":35679,"name":"Static Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,119,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":119,"3":52,"6":53,"22":581},"isBase":true}}}, +{"id":35680,"name":"Amulet of Wills","icon":"inv_jewelry_necklace_41","type":2,"stats":[36,0,55,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"0":36,"2":55,"9":25,"23":96},"isBase":true}}}, +{"id":35681,"name":"Unrelenting Blade","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,47,0,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"weaponDamageMin":259,"weaponDamageMax":389,"weaponSpeed":1.8,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"183":{"randPropPoints":54,"weaponDamageMin":259,"weaponDamageMax":389,"stats":{"7":47,"12":46,"13":46},"isBase":true}}}, +{"id":35682,"name":"Rune Giant Bindings","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,70,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"2":70,"3":28,"4":25,"22":313},"isBase":true}}}, +{"id":35683,"name":"Palladium Ring","icon":"inv_gizmo_hardenedadamantitetube","type":11,"stats":[0,0,54,0,0,0,36,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"2":54,"6":36,"12":72,"13":72},"isBase":true}}}, +{"id":35693,"name":"Figurine - Empyrean Tortoise","icon":"ability_hunter_pet_turtle","type":12,"stats":[0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46775}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"9":42},"isBase":true}}}, +{"id":35694,"name":"Figurine - Khorium Boar","icon":"inv_jewelcrafting_truesilverboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46776}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"12":84,"13":84},"isBase":true}}}, +{"id":35700,"name":"Figurine - Crimson Serpent","icon":"inv_jewelcrafting_rubyserpent","type":12,"stats":[0,0,49,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46777}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"2":49,"3":33},"isBase":true}}}, +{"id":35702,"name":"Figurine - Shadowsong Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46778}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"12":80,"13":80},"isBase":true}}}, +{"id":35703,"name":"Figurine - Seaspray Albatross","icon":"inv_qirajidol_obsidian","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":46779}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"4":46},"isBase":true}}}, +{"id":35733,"name":"Ring of Harmonic Beauty","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,48,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"zoneId":4075,"otherName":"Trash"}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":48,"3":33,"4":32},"isBase":true}}}, +{"id":35748,"name":"Guardian's Alchemist Stone","icon":"spell_nature_healingway","type":12,"stats":[0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47046}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"9":54},"isBase":true}}}, +{"id":35749,"name":"Sorcerer's Alchemist Stone","icon":"spell_nature_healingway","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47048}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"3":54},"isBase":true}}}, +{"id":35750,"name":"Redeemer's Alchemist Stone","icon":"spell_nature_healingway","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47049}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"3":54},"isBase":true}}}, +{"id":35751,"name":"Assassin's Alchemist Stone","icon":"spell_nature_healingway","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":125,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":47050}}],"scalingOptions":{"125":{"randPropPoints":63,"stats":{"12":108,"13":108},"isBase":true}}}, +{"id":35807,"name":"Bramblethorn Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":352,"weaponDamageMax":529,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":352,"weaponDamageMax":529,"stats":{"2":83,"12":72,"13":72},"isBase":true}}}, +{"id":35808,"name":"Coldstone Cutlass","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"2":22,"12":48,"13":48},"isBase":true}}}, +{"id":35809,"name":"Earthspike","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,37,0,0,11,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"stats":{"2":37,"5":11,"14":218},"isBase":true}}}, +{"id":35810,"name":"Pacifying Pummeler","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,27,0,22,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"weaponSpeed":2.2,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"stats":{"2":27,"4":22,"14":218},"isBase":true}}}, +{"id":35811,"name":"Elekk-Horn Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,66,0,0,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"stats":{"2":66,"12":100,"13":100},"isBase":true}}}, +{"id":35812,"name":"Cragthumper","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[25,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"weaponSpeed":3.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"stats":{"0":25,"2":91},"isBase":true}}}, +{"id":35814,"name":"Benevolent Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,45,22,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":45,"3":22,"4":53,"22":316},"isBase":true}}}, +{"id":35815,"name":"Bone-Threaded Harness","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,35,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":35,"2":81,"22":537},"isBase":true}}}, +{"id":35816,"name":"Blood-Stained Chain Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,33,50,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":50,"6":35,"22":705},"isBase":true}}}, +{"id":35817,"name":"Nerubian Inner Husk","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[18,0,45,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"0":18,"2":45,"10":12,"22":3134},"isBase":true}}}, +{"id":35818,"name":"Stretch-Hide Spaulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":21,"22":292},"isBase":true}}}, +{"id":35820,"name":"Deacon's Wraps","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":21,"22":335},"isBase":true}}}, +{"id":35821,"name":"Streamlined Stompers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,36,0,0,0,38,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":36,"6":38,"7":15,"22":554},"isBase":true}}}, +{"id":35822,"name":"Scavenged Tirasian Plate","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":30,"2":33,"6":53,"22":1172},"isBase":true}}}, +{"id":35823,"name":"Ice-Rimed Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,11,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"5":11,"6":26},"isBase":true}}}, +{"id":35824,"name":"Stoneblade Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,24,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"stats":{"2":22,"8":24,"12":48,"13":48},"isBase":true}}}, +{"id":35826,"name":"Whelpling-Skull Zapper","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,34,0,0,18,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"stats":{"2":34,"5":18,"14":218},"isBase":true}}}, +{"id":35827,"name":"Regal Sceptre","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,24,13,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"stats":{"3":24,"4":13,"14":218},"isBase":true}}}, +{"id":35829,"name":"Coldspike Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,25,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"weaponSpeed":2.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"stats":{"1":25,"6":63},"isBase":true}}}, +{"id":35830,"name":"Worn Vrykul Smasher","icon":"inv_gauntlets_05","type":13,"weaponType":3,"handType":2,"stats":[18,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"0":18,"2":33},"isBase":true}}}, +{"id":35832,"name":"Blauvelt's Special Occasion Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,27,22,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":27,"3":22,"4":38,"22":243},"isBase":true}}}, +{"id":35833,"name":"Imperious Worghide Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,36,31,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":36,"3":31,"6":52,"22":436},"isBase":true}}}, +{"id":35834,"name":"Nimblefinger Scaled Gloves","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,59,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":59,"3":21,"4":16,"22":504},"isBase":true}}}, +{"id":35835,"name":"Antique Reinforced Legguards","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[58,0,33,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":58,"2":33,"7":18,"22":1025},"isBase":true}}}, +{"id":35839,"name":"Runed Clamshell Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":47,"3":16},"isBase":true}}}, +{"id":35841,"name":"Frost-Trimmed Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,21,16,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":16,"7":39,"22":335},"isBase":true}}}, +{"id":35842,"name":"Azure Chain Hauberk","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,52,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":52,"2":61,"22":806},"isBase":true}}}, +{"id":35843,"name":"Ramshorn-Inlaid Shoulders","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[21,0,16,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"2":16,"7":39,"22":879},"isBase":true}}}, +{"id":35844,"name":"Shock-Resistant Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,30,26,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":30,"3":26,"6":55,"22":316},"isBase":true}}}, +{"id":35846,"name":"Banded Chain Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":24,"6":39,"22":504},"isBase":true}}}, +{"id":35848,"name":"Munificent Legguards","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,33,30,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":30,"6":53,"22":1025},"isBase":true}}}, +{"id":35849,"name":"Featherweight Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,48,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"weaponSpeed":3.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"stats":{"2":48,"7":55},"isBase":true}}}, +{"id":35851,"name":"Acid-Etched Knuckles","icon":"inv_gauntlets_05","type":13,"weaponType":3,"handType":2,"stats":[0,0,27,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"2":27,"7":22},"isBase":true}}}, +{"id":35852,"name":"Fullered Coldsteel Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,11,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"1":11,"5":26},"isBase":true}}}, +{"id":35856,"name":"Hair-Trigger Blunderbuss","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,0,69,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"stats":{"2":69,"7":50},"isBase":true}}}, +{"id":35857,"name":"Munificent Bulwark","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,14,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":14,"7":34,"22":3134},"isBase":true}}}, +{"id":35858,"name":"Tome of Alacrity","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,20,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":20,"7":31},"isBase":true}}}, +{"id":35859,"name":"Fire-Purifying Tunic","icon":"inv_chest_cloth_33","type":5,"armorType":1,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"6":22,"22":389},"isBase":true}}}, +{"id":35860,"name":"Flexible Leather Footwraps","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,21,18,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":18,"8":39,"22":369},"isBase":true}}}, +{"id":35861,"name":"Inescapable Girdle","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,24,21,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"4":40,"22":453},"isBase":true}}}, +{"id":35862,"name":"Light-Bound Chestguard","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,89,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":89,"3":24,"22":1172},"isBase":true}}}, +{"id":35863,"name":"Earth-Infused Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,53,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":53,"3":30,"6":22,"22":341},"isBase":true}}}, +{"id":35864,"name":"Fizznik's Patented Earwarmer","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,52,45,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":52,"2":45,"6":21,"22":436},"isBase":true}}}, +{"id":35865,"name":"Arcanum Shield","icon":"inv_shield_07","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,23,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":23,"6":29,"22":3134},"isBase":true}}}, +{"id":35866,"name":"Master Artilleryman Boots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[24,0,22,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":24,"2":22,"6":34,"22":806},"isBase":true}}}, +{"id":35867,"name":"Nimblefinger Band","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,18,16,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":16,"7":30},"isBase":true}}}, +{"id":35868,"name":"Grounded Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,48,52,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":48,"3":52,"6":21,"22":470},"isBase":true}}}, +{"id":35869,"name":"Hex-Linked Stronghelm","icon":"inv_helmet_124","type":1,"armorType":3,"stats":[0,30,33,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":30,"2":33,"7":53,"22":655},"isBase":true}}}, +{"id":35870,"name":"Stoneground Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,61,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"stats":{"1":61,"2":38},"isBase":true}}}, +{"id":35871,"name":"Indigo Robe of Replenishment","icon":"inv_chest_cloth_03","type":5,"armorType":1,"stats":[0,0,31,32,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":31,"3":32,"4":52,"22":389},"isBase":true}}}, +{"id":35872,"name":"Iron-Studded Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,32,31,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":32,"2":31,"6":52,"22":470},"isBase":true}}}, +{"id":35873,"name":"Interlinked Chain Girdle","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":24,"6":39,"22":453},"isBase":true}}}, +{"id":35875,"name":"Beneficent Skullcap","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,30,31,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":30,"3":31,"4":52,"22":952},"isBase":true}}}, +{"id":35876,"name":"Talbuk Cape","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,14,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":14,"2":32,"22":195},"isBase":true}}}, +{"id":35877,"name":"Worgskin Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,21,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":62,"22":402},"isBase":true}}}, +{"id":35878,"name":"Dusk-Linked Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,53,45,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":45,"6":22,"22":705},"isBase":true}}}, +{"id":35879,"name":"Gold-Plated Coldsteel Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[21,0,0,0,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"5":16,"6":39,"22":659},"isBase":true}}}, +{"id":35880,"name":"Earthwell Footwraps","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,62,20,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":20,"6":13,"22":268},"isBase":true}}}, +{"id":35881,"name":"Lost Vrykul Signet","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,18,0,0,30,0,0,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"5":30,"12":36,"13":36},"isBase":true}}}, +{"id":35882,"name":"Magispike Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,80,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"7":22,"22":655},"isBase":true}}}, +{"id":35883,"name":"Silversteel Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,21,16,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":21,"4":16,"6":39,"22":732},"isBase":true}}}, +{"id":35884,"name":"Regal Pantaloons","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,53,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":53,"3":30,"7":22,"22":341},"isBase":true}}}, +{"id":35885,"name":"Tribal Chestguard","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,33,30,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":30,"6":55,"22":537},"isBase":true}}}, +{"id":35886,"name":"Worgtooth Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,52,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":52,"6":11},"isBase":true}}}, +{"id":35887,"name":"Loam-Stained Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,62,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":20,"4":12,"22":806},"isBase":true}}}, +{"id":35888,"name":"Embossed Ermine Girdle","icon":"inv_belt_01","type":8,"armorType":1,"stats":[0,0,24,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"4":39,"22":219},"isBase":true}}}, +{"id":35889,"name":"Bone-Inlaid Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,30,24,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":30,"2":24,"6":12,"22":235},"isBase":true}}}, +{"id":35890,"name":"Magdun Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,21,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":24,"6":39,"22":604},"isBase":true}}}, +{"id":35891,"name":"Runeplate Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[37,0,36,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":37,"2":36,"7":48,"22":952},"isBase":true}}}, +{"id":35892,"name":"Flamebinder Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,26,27,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":26,"3":27,"6":36,"22":243},"isBase":true}}}, +{"id":35893,"name":"Coldstone-Inlaid Waistguard","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,36,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":36,"2":49,"22":302},"isBase":true}}}, +{"id":35894,"name":"Purestrike Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,16,18,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":16,"2":18,"6":30,"22":353},"isBase":true}}}, +{"id":35895,"name":"Emeraldscale Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,22,24,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":22,"3":24,"6":38,"22":879},"isBase":true}}}, +{"id":35896,"name":"Icestriker Bands","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,40,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":40,"3":20,"5":13,"22":170},"isBase":true}}}, +{"id":35897,"name":"Ice-Crusted Cape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,18,0,0,0,20,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"6":20,"12":54,"13":54,"22":195},"isBase":true}}}, +{"id":35898,"name":"Reinforced Tuskhide Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,0,32,0,0,52,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"3":32,"6":52,"7":21,"22":806},"isBase":true}}}, +{"id":35899,"name":"Bloodbinder's Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,22,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":22,"3":24,"7":38,"22":659},"isBase":true}}}, +{"id":35900,"name":"Supple Doeskin Moccasins","icon":"inv_boots_06","type":10,"armorType":1,"stats":[0,0,18,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":18,"3":25,"4":26,"22":268},"isBase":true}}}, +{"id":35901,"name":"Rejuvenating Cord","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,24,21,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"4":39,"22":302},"isBase":true}}}, +{"id":35902,"name":"Shock-Bound Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,37,38,12,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":37,"3":38,"4":12,"6":13,"22":604},"isBase":true}}}, +{"id":35903,"name":"Onyx Grips","icon":"inv_gauntlets_14","type":7,"armorType":4,"stats":[21,0,0,0,0,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"6":16,"7":39,"22":732},"isBase":true}}}, +{"id":35904,"name":"Puissance-Infused Pendant","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,18,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":16,"6":30},"isBase":true}}}, +{"id":35905,"name":"Vinewoven Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,48,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":48,"2":66,"22":537},"isBase":true}}}, +{"id":35909,"name":"Sun-Fired Striders","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":24,"6":21,"22":554},"isBase":true}}}, +{"id":35910,"name":"Shaleground Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[20,0,19,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"0":20,"2":19,"6":27,"22":513},"isBase":true}}}, +{"id":35911,"name":"Unsparing Band","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,29,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":29,"3":20,"4":30},"isBase":true}}}, +{"id":35912,"name":"Crackling Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,24,18,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":18,"7":29,"22":195},"isBase":true}}}, +{"id":35913,"name":"Gholamweave Leggings","icon":"inv_pants_10","type":9,"armorType":1,"stats":[0,0,82,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":82,"3":32,"22":341},"isBase":true}}}, +{"id":35914,"name":"Proto-Drake Tooth Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,38,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":38,"2":44,"22":402},"isBase":true}}}, +{"id":35915,"name":"Darksteel Ringmail Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,24,21,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"6":39,"22":554},"isBase":true}}}, +{"id":35916,"name":"Worgblood Berserker's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[34,0,42,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":34,"2":42,"8":48,"22":1172},"isBase":true}}}, +{"id":35917,"name":"Wrathwrought Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,20,0,16,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":20,"5":16,"6":39,"22":292},"isBase":true}}}, +{"id":35918,"name":"Spiked Skullguard","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,30,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":30,"2":33,"6":53,"22":436},"isBase":true}}}, +{"id":35919,"name":"Whispersteel Handguards","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,39,18,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":18,"6":21,"22":504},"isBase":true}}}, +{"id":35920,"name":"Feather-Lined Shoulderpads","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[39,0,24,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"2":24,"5":21,"22":879},"isBase":true}}}, +{"id":35921,"name":"Flint-Reinforced Spaulders","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,25,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":25,"3":21,"4":38,"22":292},"isBase":true}}}, +{"id":35922,"name":"Dark Iron Signet","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,18,0,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"6":30,"7":18},"isBase":true}}}, +{"id":35923,"name":"Cold-Iron Armbands","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,47,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":47,"3":19,"22":353},"isBase":true}}}, +{"id":35924,"name":"Arcanum-Bound Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,24,12,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":24,"4":12,"6":30,"22":513},"isBase":true}}}, +{"id":35925,"name":"Shimmering Cold-Iron Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,32,19,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":32,"3":19,"5":30},"isBase":true}}}, +{"id":35926,"name":"Artfully Tooled Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,48,51,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":48,"2":51,"6":28,"22":470},"isBase":true}}}, +{"id":35927,"name":"Songscale Breastplate","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,53,33,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":33,"7":30,"22":806},"isBase":true}}}, +{"id":35928,"name":"Cold-Forged Bronze Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[22,0,45,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":22,"2":45,"6":53,"22":1025},"isBase":true}}}, +{"id":35929,"name":"Gholamcloth Wrap","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,59,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":59,"3":21,"4":18,"22":219},"isBase":true}}}, +{"id":35930,"name":"Inscribed Worghide Treads","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,60,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":60,"3":20,"22":369},"isBase":true}}}, +{"id":35931,"name":"Appointed Scalemail Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,0,31,26,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":31,"3":26,"7":55,"22":705},"isBase":true}}}, +{"id":35932,"name":"Earthbinder's Regenerating Band","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,12,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":12,"4":35},"isBase":true}}}, +{"id":35933,"name":"Ramshorn Greathelm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,34,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":55,"2":34,"6":22,"22":655},"isBase":true}}}, +{"id":35934,"name":"Ghoul-Crushing Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[21,0,24,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"2":24,"7":39,"22":806},"isBase":true}}}, +{"id":35935,"name":"Infused Coldstone Rune","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"6":31},"isBase":true}}}, +{"id":35936,"name":"Worg-Fang Talisman","icon":"inv_weapon_hand_03","type":2,"stats":[0,0,22,0,0,0,19,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":22,"6":19,"12":54,"13":54},"isBase":true}}}, +{"id":35937,"name":"Braxley's Backyard Moonshine","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"7":26},"isBase":true}}}, +{"id":35938,"name":"Drape of Munificence","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":47,"3":16,"22":195},"isBase":true}}}, +{"id":35955,"name":"Farshire Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":204},"isBase":true}}}, +{"id":35956,"name":"Farshire Footpads","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":250},"isBase":true}}}, +{"id":35957,"name":"Farshire Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":364},"isBase":true}}}, +{"id":35958,"name":"Farshire Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":227},"isBase":true}}}, +{"id":35959,"name":"Farshire Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":295},"isBase":true}}}, +{"id":35960,"name":"Farshire Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":318},"isBase":true}}}, +{"id":35961,"name":"Farshire Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":273},"isBase":true}}}, +{"id":35962,"name":"Farshire Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":159},"isBase":true}}}, +{"id":35963,"name":"Bloodspore Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":212},"isBase":true}}}, +{"id":35964,"name":"Bloodspore Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":259},"isBase":true}}}, +{"id":35965,"name":"Bloodspore Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":376},"isBase":true}}}, +{"id":35966,"name":"Bloodspore Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":235},"isBase":true}}}, +{"id":35967,"name":"Bloodspore Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":306},"isBase":true}}}, +{"id":35968,"name":"Bloodspore Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":329},"isBase":true}}}, +{"id":35969,"name":"Bloodspore Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":282},"isBase":true}}}, +{"id":35970,"name":"Bloodspore Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":165},"isBase":true}}}, +{"id":35971,"name":"Mur'ghoul Girdle","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":219},"isBase":true}}}, +{"id":35972,"name":"Mur'ghoul Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":268},"isBase":true}}}, +{"id":35973,"name":"Mur'ghoul Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":389},"isBase":true}}}, +{"id":35974,"name":"Mur'ghoul Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":243},"isBase":true}}}, +{"id":35975,"name":"Mur'ghoul Cap","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":316},"isBase":true}}}, +{"id":35976,"name":"Mur'ghoul Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":341},"isBase":true}}}, +{"id":35977,"name":"Mur'ghoul Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":292},"isBase":true}}}, +{"id":35978,"name":"Mur'ghoul Wristwraps","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":170},"isBase":true}}}, +{"id":35979,"name":"Foothold Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":227},"isBase":true}}}, +{"id":35980,"name":"Foothold Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":277},"isBase":true}}}, +{"id":35981,"name":"Foothold Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":403},"isBase":true}}}, +{"id":35982,"name":"Foothold Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":252},"isBase":true}}}, +{"id":35983,"name":"Foothold Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":327},"isBase":true}}}, +{"id":35984,"name":"Foothold Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":352},"isBase":true}}}, +{"id":35985,"name":"Foothold Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":302},"isBase":true}}}, +{"id":35986,"name":"Foothold Cuffs","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":176},"isBase":true}}}, +{"id":35987,"name":"Bristlepine Cord","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":234},"isBase":true}}}, +{"id":35988,"name":"Bristlepine Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":287},"isBase":true}}}, +{"id":35989,"name":"Bristlepine Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":417},"isBase":true}}}, +{"id":35990,"name":"Bristlepine Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":260},"isBase":true}}}, +{"id":35991,"name":"Bristlepine Headpiece","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":339},"isBase":true}}}, +{"id":35992,"name":"Bristlepine Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":365},"isBase":true}}}, +{"id":35993,"name":"Bristlepine Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":313},"isBase":true}}}, +{"id":35994,"name":"Bristlepine Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":182},"isBase":true}}}, +{"id":35995,"name":"Voldrune Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":243},"isBase":true}}}, +{"id":35996,"name":"Voldrune Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":296},"isBase":true}}}, +{"id":35997,"name":"Voldrune Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":431},"isBase":true}}}, +{"id":35998,"name":"Voldrune Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":270},"isBase":true}}}, +{"id":35999,"name":"Voldrune Crown","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":350},"isBase":true}}}, +{"id":36000,"name":"Voldrune Legs","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":377},"isBase":true}}}, +{"id":36001,"name":"Voldrune Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":323},"isBase":true}}}, +{"id":36002,"name":"Voldrune Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":189},"isBase":true}}}, +{"id":36003,"name":"Icemist Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":251},"isBase":true}}}, +{"id":36004,"name":"Icemist Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":307},"isBase":true}}}, +{"id":36005,"name":"Icemist Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":446},"isBase":true}}}, +{"id":36006,"name":"Icemist Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":279},"isBase":true}}}, +{"id":36007,"name":"Icemist Circlet","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":363},"isBase":true}}}, +{"id":36008,"name":"Icemist Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":390},"isBase":true}}}, +{"id":36009,"name":"Icemist Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":335},"isBase":true}}}, +{"id":36010,"name":"Icemist Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":195},"isBase":true}}}, +{"id":36011,"name":"Tethys Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":260},"isBase":true}}}, +{"id":36012,"name":"Tethys Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":317},"isBase":true}}}, +{"id":36013,"name":"Tethys Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":462},"isBase":true}}}, +{"id":36014,"name":"Tethys Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":289},"isBase":true}}}, +{"id":36015,"name":"Tethys Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":375},"isBase":true}}}, +{"id":36016,"name":"Tethys Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":404},"isBase":true}}}, +{"id":36017,"name":"Tethys Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":346},"isBase":true}}}, +{"id":36018,"name":"Tethys Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":202},"isBase":true}}}, +{"id":36019,"name":"Aerie Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":269},"isBase":true}}}, +{"id":36020,"name":"Aerie Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":329},"isBase":true}}}, +{"id":36021,"name":"Aerie Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":478},"isBase":true}}}, +{"id":36022,"name":"Aerie Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":299},"isBase":true}}}, +{"id":36023,"name":"Aerie Headpiece","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":388},"isBase":true}}}, +{"id":36024,"name":"Aerie Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":418},"isBase":true}}}, +{"id":36025,"name":"Aerie Shoulderpads","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":358},"isBase":true}}}, +{"id":36026,"name":"Aerie Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":209},"isBase":true}}}, +{"id":36027,"name":"Oracle Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":278},"isBase":true}}}, +{"id":36028,"name":"Oracle Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":340},"isBase":true}}}, +{"id":36029,"name":"Oracle Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":494},"isBase":true}}}, +{"id":36030,"name":"Oracle Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":309},"isBase":true}}}, +{"id":36031,"name":"Oracle Circlet","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":402},"isBase":true}}}, +{"id":36032,"name":"Oracle Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":433},"isBase":true}}}, +{"id":36033,"name":"Oracle Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":371},"isBase":true}}}, +{"id":36034,"name":"Oracle Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":216},"isBase":true}}}, +{"id":36035,"name":"Condor Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":288},"isBase":true}}}, +{"id":36036,"name":"Condor Sandals","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":352},"isBase":true}}}, +{"id":36037,"name":"Condor Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":512},"isBase":true}}}, +{"id":36038,"name":"Condor Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":320},"isBase":true}}}, +{"id":36039,"name":"Condor Headpiece","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":416},"isBase":true}}}, +{"id":36040,"name":"Condor Pants","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":448},"isBase":true}}}, +{"id":36041,"name":"Condor Shoulderpads","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":384},"isBase":true}}}, +{"id":36042,"name":"Condor Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":224},"isBase":true}}}, +{"id":36043,"name":"Crystalsong Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":298},"isBase":true}}}, +{"id":36044,"name":"Crystalsong Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":364},"isBase":true}}}, +{"id":36045,"name":"Crystalsong Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":529},"isBase":true}}}, +{"id":36046,"name":"Crystalsong Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":331},"isBase":true}}}, +{"id":36047,"name":"Crystalsong Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":430},"isBase":true}}}, +{"id":36048,"name":"Crystalsong Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":463},"isBase":true}}}, +{"id":36049,"name":"Crystalsong Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":397},"isBase":true}}}, +{"id":36050,"name":"Crystalsong Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":232},"isBase":true}}}, +{"id":36051,"name":"Vizier Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":308},"isBase":true}}}, +{"id":36052,"name":"Vizier Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":377},"isBase":true}}}, +{"id":36053,"name":"Vizier Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":36054,"name":"Vizier Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":342},"isBase":true}}}, +{"id":36055,"name":"Vizier Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":445},"isBase":true}}}, +{"id":36056,"name":"Vizier Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":479},"isBase":true}}}, +{"id":36057,"name":"Vizier Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":411},"isBase":true}}}, +{"id":36058,"name":"Vizier Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":240},"isBase":true}}}, +{"id":36059,"name":"Coldwraith Sash","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":319},"isBase":true}}}, +{"id":36060,"name":"Coldwraith Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":390},"isBase":true}}}, +{"id":36061,"name":"Coldwraith Robe","icon":"inv_chest_cloth_20","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":567},"isBase":true}}}, +{"id":36062,"name":"Coldwraith Handwraps","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":354},"isBase":true}}}, +{"id":36063,"name":"Coldwraith Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":461},"isBase":true}}}, +{"id":36064,"name":"Coldwraith Pants","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":496},"isBase":true}}}, +{"id":36065,"name":"Coldwraith Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":425},"isBase":true}}}, +{"id":36066,"name":"Coldwraith Bindings","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":248},"isBase":true}}}, +{"id":36067,"name":"Daggercap Waistband","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":281},"isBase":true}}}, +{"id":36068,"name":"Daggercap Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":343},"isBase":true}}}, +{"id":36069,"name":"Daggercap Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":500},"isBase":true}}}, +{"id":36070,"name":"Daggercap Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":312},"isBase":true}}}, +{"id":36071,"name":"Daggercap Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,406,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":406},"isBase":true}}}, +{"id":36072,"name":"Daggercap Trousers","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":437},"isBase":true}}}, +{"id":36073,"name":"Daggercap Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":375},"isBase":true}}}, +{"id":36074,"name":"Daggercap Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":219},"isBase":true}}}, +{"id":36075,"name":"Winterfin Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":291},"isBase":true}}}, +{"id":36076,"name":"Winterfin Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":356},"isBase":true}}}, +{"id":36077,"name":"Winterfin Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":518},"isBase":true}}}, +{"id":36078,"name":"Winterfin Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":324},"isBase":true}}}, +{"id":36079,"name":"Winterfin Cowl","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":421},"isBase":true}}}, +{"id":36080,"name":"Winterfin Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":453},"isBase":true}}}, +{"id":36081,"name":"Winterfin Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":388},"isBase":true}}}, +{"id":36082,"name":"Winterfin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":227},"isBase":true}}}, +{"id":36083,"name":"Riplash Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":302},"isBase":true}}}, +{"id":36084,"name":"Riplash Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":369},"isBase":true}}}, +{"id":36085,"name":"Riplash Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":537},"isBase":true}}}, +{"id":36086,"name":"Riplash Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":335},"isBase":true}}}, +{"id":36087,"name":"Riplash Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":436},"isBase":true}}}, +{"id":36088,"name":"Riplash Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":470},"isBase":true}}}, +{"id":36089,"name":"Riplash Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":402},"isBase":true}}}, +{"id":36090,"name":"Riplash Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":235},"isBase":true}}}, +{"id":36091,"name":"Wildevar Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":313},"isBase":true}}}, +{"id":36092,"name":"Wildevar Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":382},"isBase":true}}}, +{"id":36093,"name":"Wildevar Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":556},"isBase":true}}}, +{"id":36094,"name":"Wildevar Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":348},"isBase":true}}}, +{"id":36095,"name":"Wildevar Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":452},"isBase":true}}}, +{"id":36096,"name":"Wildevar Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":487},"isBase":true}}}, +{"id":36097,"name":"Wildevar Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":417},"isBase":true}}}, +{"id":36098,"name":"Wildevar Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":243},"isBase":true}}}, +{"id":36099,"name":"Caribou Waistband","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":324},"isBase":true}}}, +{"id":36100,"name":"Caribou Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":396},"isBase":true}}}, +{"id":36101,"name":"Caribou Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":577},"isBase":true}}}, +{"id":36102,"name":"Caribou Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":360},"isBase":true}}}, +{"id":36103,"name":"Caribou Cowl","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":468},"isBase":true}}}, +{"id":36104,"name":"Caribou Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":504},"isBase":true}}}, +{"id":36105,"name":"Caribou Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":432},"isBase":true}}}, +{"id":36106,"name":"Caribou Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":252},"isBase":true}}}, +{"id":36107,"name":"Vileprey Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":336},"isBase":true}}}, +{"id":36108,"name":"Vileprey Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":411},"isBase":true}}}, +{"id":36109,"name":"Vileprey Armor","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":598},"isBase":true}}}, +{"id":36110,"name":"Vileprey Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":373},"isBase":true}}}, +{"id":36111,"name":"Vileprey Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":486},"isBase":true}}}, +{"id":36112,"name":"Vileprey Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":523},"isBase":true}}}, +{"id":36113,"name":"Vileprey Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":448},"isBase":true}}}, +{"id":36114,"name":"Vileprey Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":261},"isBase":true}}}, +{"id":36115,"name":"Taunka Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":348},"isBase":true}}}, +{"id":36116,"name":"Taunka Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":426},"isBase":true}}}, +{"id":36117,"name":"Taunka Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":619},"isBase":true}}}, +{"id":36118,"name":"Taunka Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":387},"isBase":true}}}, +{"id":36119,"name":"Taunka Hat","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":503},"isBase":true}}}, +{"id":36120,"name":"Taunka Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":542},"isBase":true}}}, +{"id":36121,"name":"Taunka Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":465},"isBase":true}}}, +{"id":36122,"name":"Taunka Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":271},"isBase":true}}}, +{"id":36123,"name":"Muradin Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":361},"isBase":true}}}, +{"id":36124,"name":"Muradin Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":441},"isBase":true}}}, +{"id":36125,"name":"Muradin Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":642},"isBase":true}}}, +{"id":36126,"name":"Muradin Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":401},"isBase":true}}}, +{"id":36127,"name":"Muradin Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":522},"isBase":true}}}, +{"id":36128,"name":"Muradin Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":562},"isBase":true}}}, +{"id":36129,"name":"Muradin Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":481},"isBase":true}}}, +{"id":36130,"name":"Muradin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":281},"isBase":true}}}, +{"id":36131,"name":"Wolverine Girdle","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":374},"isBase":true}}}, +{"id":36132,"name":"Wolverine Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":457},"isBase":true}}}, +{"id":36133,"name":"Wolverine Jerkin","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":665},"isBase":true}}}, +{"id":36134,"name":"Wolverine Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":416},"isBase":true}}}, +{"id":36135,"name":"Wolverine Cap","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":541},"isBase":true}}}, +{"id":36136,"name":"Wolverine Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":582},"isBase":true}}}, +{"id":36137,"name":"Wolverine Shoulderguards","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":499},"isBase":true}}}, +{"id":36138,"name":"Wolverine Armguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":291},"isBase":true}}}, +{"id":36139,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":388},"isBase":true}}}, +{"id":36140,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":474},"isBase":true}}}, +{"id":36141,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":690},"isBase":true}}}, +{"id":36142,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":431},"isBase":true}}}, +{"id":36143,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":560},"isBase":true}}}, +{"id":36144,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":603},"isBase":true}}}, +{"id":36145,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":517},"isBase":true}}}, +{"id":36146,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":302},"isBase":true}}}, +{"id":36147,"name":"Pygmy Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":402},"isBase":true}}}, +{"id":36148,"name":"Pygmy Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":491},"isBase":true}}}, +{"id":36149,"name":"Pygmy Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":715},"isBase":true}}}, +{"id":36150,"name":"Pygmy Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":447},"isBase":true}}}, +{"id":36151,"name":"Pygmy Helmet","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":581},"isBase":true}}}, +{"id":36152,"name":"Pygmy Pants","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":626},"isBase":true}}}, +{"id":36153,"name":"Pygmy Shoulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":536},"isBase":true}}}, +{"id":36154,"name":"Pygmy Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":313},"isBase":true}}}, +{"id":36155,"name":"Wendigo Girdle","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":417},"isBase":true}}}, +{"id":36156,"name":"Wendigo Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":509},"isBase":true}}}, +{"id":36157,"name":"Wendigo Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":741},"isBase":true}}}, +{"id":36158,"name":"Wendigo Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":463},"isBase":true}}}, +{"id":36159,"name":"Wendigo Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":602},"isBase":true}}}, +{"id":36160,"name":"Wendigo Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":648},"isBase":true}}}, +{"id":36161,"name":"Wendigo Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":556},"isBase":true}}}, +{"id":36162,"name":"Wendigo Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":324},"isBase":true}}}, +{"id":36163,"name":"Webspinner Cord","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":432},"isBase":true}}}, +{"id":36164,"name":"Webspinner Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,528,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":528},"isBase":true}}}, +{"id":36165,"name":"Webspinner Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":768},"isBase":true}}}, +{"id":36166,"name":"Webspinner Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":480},"isBase":true}}}, +{"id":36167,"name":"Webspinner Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":624},"isBase":true}}}, +{"id":36168,"name":"Webspinner Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":672},"isBase":true}}}, +{"id":36169,"name":"Webspinner Shoulderguards","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":576},"isBase":true}}}, +{"id":36170,"name":"Webspinner Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":336},"isBase":true}}}, +{"id":36171,"name":"Geist Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":448},"isBase":true}}}, +{"id":36172,"name":"Geist Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":547},"isBase":true}}}, +{"id":36173,"name":"Geist Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":796},"isBase":true}}}, +{"id":36174,"name":"Geist Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":498},"isBase":true}}}, +{"id":36175,"name":"Geist Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":647},"isBase":true}}}, +{"id":36176,"name":"Geist Legguards","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":697},"isBase":true}}}, +{"id":36177,"name":"Geist Shoulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":597},"isBase":true}}}, +{"id":36178,"name":"Geist Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":348},"isBase":true}}}, +{"id":36179,"name":"Garmaul Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":421},"isBase":true}}}, +{"id":36180,"name":"Garmaul Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":514},"isBase":true}}}, +{"id":36181,"name":"Garmaul Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,748,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":748},"isBase":true}}}, +{"id":36182,"name":"Garmaul Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":467},"isBase":true}}}, +{"id":36183,"name":"Garmaul Helmet","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":608},"isBase":true}}}, +{"id":36184,"name":"Garmaul Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":654},"isBase":true}}}, +{"id":36185,"name":"Garmaul Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":561},"isBase":true}}}, +{"id":36186,"name":"Garmaul Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":327},"isBase":true}}}, +{"id":36187,"name":"Njord Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":437},"isBase":true}}}, +{"id":36188,"name":"Njord Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,534,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":534},"isBase":true}}}, +{"id":36189,"name":"Njord Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":776},"isBase":true}}}, +{"id":36190,"name":"Njord Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":485},"isBase":true}}}, +{"id":36191,"name":"Njord Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":631},"isBase":true}}}, +{"id":36192,"name":"Njord Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":679},"isBase":true}}}, +{"id":36193,"name":"Njord Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":582},"isBase":true}}}, +{"id":36194,"name":"Njord Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":340},"isBase":true}}}, +{"id":36195,"name":"Skom Stitched-Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":453},"isBase":true}}}, +{"id":36196,"name":"Skom Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":554},"isBase":true}}}, +{"id":36197,"name":"Skom Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":806},"isBase":true}}}, +{"id":36198,"name":"Skom Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":504},"isBase":true}}}, +{"id":36199,"name":"Skom Helm","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":655},"isBase":true}}}, +{"id":36200,"name":"Skom Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":705},"isBase":true}}}, +{"id":36201,"name":"Skom Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":604},"isBase":true}}}, +{"id":36202,"name":"Skom Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":353},"isBase":true}}}, +{"id":36203,"name":"Nifflevar Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":470},"isBase":true}}}, +{"id":36204,"name":"Nifflevar Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":575},"isBase":true}}}, +{"id":36205,"name":"Nifflevar Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":836},"isBase":true}}}, +{"id":36206,"name":"Nifflevar Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":523},"isBase":true}}}, +{"id":36207,"name":"Nifflevar Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":680},"isBase":true}}}, +{"id":36208,"name":"Nifflevar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":732},"isBase":true}}}, +{"id":36209,"name":"Nifflevar Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":627},"isBase":true}}}, +{"id":36210,"name":"Nifflevar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":366},"isBase":true}}}, +{"id":36211,"name":"Orca Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":488},"isBase":true}}}, +{"id":36212,"name":"Orca Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":597},"isBase":true}}}, +{"id":36213,"name":"Orca Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":868},"isBase":true}}}, +{"id":36214,"name":"Orca Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":543},"isBase":true}}}, +{"id":36215,"name":"Orca Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":705},"isBase":true}}}, +{"id":36216,"name":"Orca Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":760},"isBase":true}}}, +{"id":36217,"name":"Orca Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":651},"isBase":true}}}, +{"id":36218,"name":"Orca Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":380},"isBase":true}}}, +{"id":36219,"name":"Amberpine Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":507},"isBase":true}}}, +{"id":36220,"name":"Amberpine Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":620},"isBase":true}}}, +{"id":36221,"name":"Amberpine Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":901},"isBase":true}}}, +{"id":36222,"name":"Amberpine Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":563},"isBase":true}}}, +{"id":36223,"name":"Amberpine Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":732},"isBase":true}}}, +{"id":36224,"name":"Amberpine Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":789},"isBase":true}}}, +{"id":36225,"name":"Amberpine Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":676},"isBase":true}}}, +{"id":36226,"name":"Amberpine Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":394},"isBase":true}}}, +{"id":36227,"name":"Trapper Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":526},"isBase":true}}}, +{"id":36228,"name":"Trapper Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":643},"isBase":true}}}, +{"id":36229,"name":"Trapper Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":935},"isBase":true}}}, +{"id":36230,"name":"Trapper Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":585},"isBase":true}}}, +{"id":36231,"name":"Trapper Helm","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":760},"isBase":true}}}, +{"id":36232,"name":"Trapper Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":819},"isBase":true}}}, +{"id":36233,"name":"Trapper Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":702},"isBase":true}}}, +{"id":36234,"name":"Trapper Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":409},"isBase":true}}}, +{"id":36235,"name":"Shoveltusk Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":546},"isBase":true}}}, +{"id":36236,"name":"Shoveltusk Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":668},"isBase":true}}}, +{"id":36237,"name":"Shoveltusk Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":971},"isBase":true}}}, +{"id":36238,"name":"Shoveltusk Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":607},"isBase":true}}}, +{"id":36239,"name":"Shoveltusk Helmet","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":789},"isBase":true}}}, +{"id":36240,"name":"Shoveltusk Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":850},"isBase":true}}}, +{"id":36241,"name":"Shoveltusk Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":728},"isBase":true}}}, +{"id":36242,"name":"Shoveltusk Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":425},"isBase":true}}}, +{"id":36243,"name":"Mammoth Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":567},"isBase":true}}}, +{"id":36244,"name":"Mammoth Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":693},"isBase":true}}}, +{"id":36245,"name":"Mammoth Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":1008},"isBase":true}}}, +{"id":36246,"name":"Mammoth Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":630},"isBase":true}}}, +{"id":36247,"name":"Mammoth Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":819},"isBase":true}}}, +{"id":36248,"name":"Mammoth Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":882},"isBase":true}}}, +{"id":36249,"name":"Mammoth Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":756},"isBase":true}}}, +{"id":36250,"name":"Mammoth Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":441},"isBase":true}}}, +{"id":36251,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":588},"isBase":true}}}, +{"id":36252,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":719},"isBase":true}}}, +{"id":36253,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1046},"isBase":true}}}, +{"id":36254,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":654},"isBase":true}}}, +{"id":36255,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":850},"isBase":true}}}, +{"id":36256,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":915},"isBase":true}}}, +{"id":36257,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":785},"isBase":true}}}, +{"id":36258,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":458},"isBase":true}}}, +{"id":36259,"name":"Cormorant Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":611},"isBase":true}}}, +{"id":36260,"name":"Cormorant Footwraps","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":747},"isBase":true}}}, +{"id":36261,"name":"Cormorant Chain Vest","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":1086},"isBase":true}}}, +{"id":36262,"name":"Cormorant Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":679},"isBase":true}}}, +{"id":36263,"name":"Cormorant Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":882},"isBase":true}}}, +{"id":36264,"name":"Cormorant Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,950,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":950},"isBase":true}}}, +{"id":36265,"name":"Cormorant Mantle","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":814},"isBase":true}}}, +{"id":36266,"name":"Cormorant Bracelets","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,475,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":475},"isBase":true}}}, +{"id":36267,"name":"Ulduar Girdle","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":634},"isBase":true}}}, +{"id":36268,"name":"Ulduar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":775},"isBase":true}}}, +{"id":36269,"name":"Ulduar Breastplate","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":1127},"isBase":true}}}, +{"id":36270,"name":"Ulduar Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":704},"isBase":true}}}, +{"id":36271,"name":"Ulduar Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":916},"isBase":true}}}, +{"id":36272,"name":"Ulduar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":986},"isBase":true}}}, +{"id":36273,"name":"Ulduar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":845},"isBase":true}}}, +{"id":36274,"name":"Ulduar Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":493},"isBase":true}}}, +{"id":36275,"name":"Spiderlord Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":658},"isBase":true}}}, +{"id":36276,"name":"Spiderlord Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":804},"isBase":true}}}, +{"id":36277,"name":"Spiderlord Chestpiece","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":1170},"isBase":true}}}, +{"id":36278,"name":"Spiderlord Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":731},"isBase":true}}}, +{"id":36279,"name":"Spiderlord Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,951,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":951},"isBase":true}}}, +{"id":36280,"name":"Spiderlord Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":1024},"isBase":true}}}, +{"id":36281,"name":"Spiderlord Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,877,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":877},"isBase":true}}}, +{"id":36282,"name":"Spiderlord Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":512},"isBase":true}}}, +{"id":36283,"name":"Spectral Waistband","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,683,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":683},"isBase":true}}}, +{"id":36284,"name":"Spectral Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":835},"isBase":true}}}, +{"id":36285,"name":"Spectral Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1214,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":1214},"isBase":true}}}, +{"id":36286,"name":"Spectral Gauntlets","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":759},"isBase":true}}}, +{"id":36287,"name":"Spectral Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":987},"isBase":true}}}, +{"id":36288,"name":"Spectral Legwraps","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":1063},"isBase":true}}}, +{"id":36289,"name":"Spectral Mantle","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":911},"isBase":true}}}, +{"id":36290,"name":"Spectral Bracelets","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":531},"isBase":true}}}, +{"id":36291,"name":"Westguard Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":598},"isBase":true}}}, +{"id":36292,"name":"Westguard Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":731},"isBase":true}}}, +{"id":36293,"name":"Westguard Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1063,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":1063},"isBase":true}}}, +{"id":36294,"name":"Westguard Gloves","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,664,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":664},"isBase":true}}}, +{"id":36295,"name":"Westguard Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":864},"isBase":true}}}, +{"id":36296,"name":"Westguard Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"stats":{"22":930},"isBase":true}}}, +{"id":36297,"name":"Westguard Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":50,"stats":{"22":797},"isBase":true}}}, +{"id":36298,"name":"Westguard Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":465},"isBase":true}}}, +{"id":36299,"name":"Coldrock Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":629},"isBase":true}}}, +{"id":36300,"name":"Coldrock Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":768},"isBase":true}}}, +{"id":36301,"name":"Coldrock Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":1117},"isBase":true}}}, +{"id":36302,"name":"Coldrock Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":698},"isBase":true}}}, +{"id":36303,"name":"Coldrock Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":908},"isBase":true}}}, +{"id":36304,"name":"Coldrock Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"22":978},"isBase":true}}}, +{"id":36305,"name":"Coldrock Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"22":838},"isBase":true}}}, +{"id":36306,"name":"Coldrock Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":489},"isBase":true}}}, +{"id":36307,"name":"Baleheim Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":659},"isBase":true}}}, +{"id":36308,"name":"Baleheim Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":806},"isBase":true}}}, +{"id":36309,"name":"Baleheim Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":1172},"isBase":true}}}, +{"id":36310,"name":"Baleheim Gloves","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":732},"isBase":true}}}, +{"id":36311,"name":"Baleheim Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":952},"isBase":true}}}, +{"id":36312,"name":"Baleheim Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"22":1025},"isBase":true}}}, +{"id":36313,"name":"Baleheim Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"22":879},"isBase":true}}}, +{"id":36314,"name":"Baleheim Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":513},"isBase":true}}}, +{"id":36315,"name":"Wyrmskull Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":690},"isBase":true}}}, +{"id":36316,"name":"Wyrmskull Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":843},"isBase":true}}}, +{"id":36317,"name":"Wyrmskull Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":1226},"isBase":true}}}, +{"id":36318,"name":"Wyrmskull Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":766},"isBase":true}}}, +{"id":36319,"name":"Wyrmskull Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":996},"isBase":true}}}, +{"id":36320,"name":"Wyrmskull Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"22":1073},"isBase":true}}}, +{"id":36321,"name":"Wyrmskull Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"22":920},"isBase":true}}}, +{"id":36322,"name":"Wyrmskull Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":536},"isBase":true}}}, +{"id":36323,"name":"Halgrind Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":720},"isBase":true}}}, +{"id":36324,"name":"Halgrind Greaves","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":880},"isBase":true}}}, +{"id":36325,"name":"Halgrind Carapace","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":1280},"isBase":true}}}, +{"id":36326,"name":"Halgrind Gloves","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":800},"isBase":true}}}, +{"id":36327,"name":"Halgrind Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":1040},"isBase":true}}}, +{"id":36328,"name":"Halgrind Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"22":1120},"isBase":true}}}, +{"id":36329,"name":"Halgrind Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"22":960},"isBase":true}}}, +{"id":36330,"name":"Halgrind Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":560},"isBase":true}}}, +{"id":36331,"name":"Grizzlemaw Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":751},"isBase":true}}}, +{"id":36332,"name":"Grizzlemaw Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,918,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":918},"isBase":true}}}, +{"id":36333,"name":"Grizzlemaw Armor","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":1335},"isBase":true}}}, +{"id":36334,"name":"Grizzlemaw Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":834},"isBase":true}}}, +{"id":36335,"name":"Grizzlemaw Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":1084},"isBase":true}}}, +{"id":36336,"name":"Grizzlemaw Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"22":1168},"isBase":true}}}, +{"id":36337,"name":"Grizzlemaw Epaulets","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"22":1001},"isBase":true}}}, +{"id":36338,"name":"Grizzlemaw Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":584},"isBase":true}}}, +{"id":36339,"name":"Bloodmar Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":781},"isBase":true}}}, +{"id":36340,"name":"Bloodmar Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":955},"isBase":true}}}, +{"id":36341,"name":"Bloodmar Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":1389},"isBase":true}}}, +{"id":36342,"name":"Bloodmar Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":868},"isBase":true}}}, +{"id":36343,"name":"Bloodmar Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":1128},"isBase":true}}}, +{"id":36344,"name":"Bloodmar Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"22":1215},"isBase":true}}}, +{"id":36345,"name":"Bloodmar Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"22":1042},"isBase":true}}}, +{"id":36346,"name":"Bloodmar Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":608},"isBase":true}}}, +{"id":36347,"name":"Jormungar Girdle","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":812},"isBase":true}}}, +{"id":36348,"name":"Jormungar Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":992},"isBase":true}}}, +{"id":36349,"name":"Jormungar Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":1443},"isBase":true}}}, +{"id":36350,"name":"Jormungar Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":902},"isBase":true}}}, +{"id":36351,"name":"Jormungar Helmet","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":1173},"isBase":true}}}, +{"id":36352,"name":"Jormungar Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"22":1263},"isBase":true}}}, +{"id":36353,"name":"Jormungar Pauldrons","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"22":1082},"isBase":true}}}, +{"id":36354,"name":"Jormungar Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":631},"isBase":true}}}, +{"id":36355,"name":"Frostpaw Belt","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":842},"isBase":true}}}, +{"id":36356,"name":"Frostpaw Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":1030},"isBase":true}}}, +{"id":36357,"name":"Frostpaw Armor","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":1497},"isBase":true}}}, +{"id":36358,"name":"Frostpaw Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":936},"isBase":true}}}, +{"id":36359,"name":"Frostpaw Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":1217},"isBase":true}}}, +{"id":36360,"name":"Frostpaw Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"22":1310},"isBase":true}}}, +{"id":36361,"name":"Frostpaw Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"22":1123},"isBase":true}}}, +{"id":36362,"name":"Frostpaw Vambraces","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":655},"isBase":true}}}, +{"id":36363,"name":"Magnataur Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":873},"isBase":true}}}, +{"id":36364,"name":"Magnataur Sabatons","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":1067},"isBase":true}}}, +{"id":36365,"name":"Magnataur Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1552},"isBase":true}}}, +{"id":36366,"name":"Magnataur Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":970},"isBase":true}}}, +{"id":36367,"name":"Magnataur Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1261},"isBase":true}}}, +{"id":36368,"name":"Magnataur Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1358},"isBase":true}}}, +{"id":36369,"name":"Magnataur Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":1164},"isBase":true}}}, +{"id":36370,"name":"Magnataur Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":679},"isBase":true}}}, +{"id":36371,"name":"Kraken Girdle","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":903},"isBase":true}}}, +{"id":36372,"name":"Kraken Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":1104},"isBase":true}}}, +{"id":36373,"name":"Kraken Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":1606},"isBase":true}}}, +{"id":36374,"name":"Kraken Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":1004},"isBase":true}}}, +{"id":36375,"name":"Kraken Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":1305},"isBase":true}}}, +{"id":36376,"name":"Kraken Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"22":1405},"isBase":true}}}, +{"id":36377,"name":"Kraken Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":72,"stats":{"22":1205},"isBase":true}}}, +{"id":36378,"name":"Kraken Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":703},"isBase":true}}}, +{"id":36379,"name":"Golem Girdle","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":934},"isBase":true}}}, +{"id":36380,"name":"Golem Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":1141},"isBase":true}}}, +{"id":36381,"name":"Golem Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":1660},"isBase":true}}}, +{"id":36382,"name":"Golem Gauntlets","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":1038},"isBase":true}}}, +{"id":36383,"name":"Golem Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":1349},"isBase":true}}}, +{"id":36384,"name":"Golem Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"22":1453},"isBase":true}}}, +{"id":36385,"name":"Golem Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"22":1245},"isBase":true}}}, +{"id":36386,"name":"Golem Vambraces","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":726},"isBase":true}}}, +{"id":36387,"name":"Revenant Belt","icon":"inv_belt_21","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":964},"isBase":true}}}, +{"id":36388,"name":"Revenant Greaves","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1179,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":1179},"isBase":true}}}, +{"id":36389,"name":"Revenant Armor","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":1715},"isBase":true}}}, +{"id":36390,"name":"Revenant Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":1072},"isBase":true}}}, +{"id":36391,"name":"Revenant Helmet","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":1393},"isBase":true}}}, +{"id":36392,"name":"Revenant Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":1500},"isBase":true}}}, +{"id":36393,"name":"Revenant Epaulets","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1286,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":1286},"isBase":true}}}, +{"id":36394,"name":"Revenant Bracers","icon":"inv_bracer_10","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":750},"isBase":true}}}, +{"id":36395,"name":"Necropolis Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":995},"isBase":true}}}, +{"id":36396,"name":"Necropolis Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":1216},"isBase":true}}}, +{"id":36397,"name":"Necropolis Breastplate","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":1769},"isBase":true}}}, +{"id":36398,"name":"Necropolis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":1106},"isBase":true}}}, +{"id":36399,"name":"Necropolis Helm","icon":"inv_helmet_03","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":1437},"isBase":true}}}, +{"id":36400,"name":"Necropolis Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"stats":{"22":1548},"isBase":true}}}, +{"id":36401,"name":"Necropolis Epaulets","icon":"inv_shoulder_15","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":81,"stats":{"22":1327},"isBase":true}}}, +{"id":36402,"name":"Necropolis Vambraces","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":774},"isBase":true}}}, +{"id":36403,"name":"Riding Cloak","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":182},"isBase":true}}}, +{"id":36404,"name":"Suede Cloak","icon":"inv_misc_cape_03","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":188},"isBase":true}}}, +{"id":36405,"name":"Double Cape","icon":"inv_misc_cape_22","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":195},"isBase":true}}}, +{"id":36406,"name":"Wayfarer's Cloak","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":201},"isBase":true}}}, +{"id":36407,"name":"Lace-Trimmed Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":208},"isBase":true}}}, +{"id":36408,"name":"Reversible Wool Cape","icon":"inv_misc_cape_12","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":216},"isBase":true}}}, +{"id":36409,"name":"Crushed Velvet Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":223},"isBase":true}}}, +{"id":36410,"name":"Caribou Skin Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":231},"isBase":true}}}, +{"id":36411,"name":"Brawler's Cape","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":239},"isBase":true}}}, +{"id":36412,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":247},"isBase":true}}}, +{"id":36413,"name":"Dyed Taffeta Cape","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":256},"isBase":true}}}, +{"id":36414,"name":"Mammoth Fur Cloak","icon":"inv_misc_cape_03","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":265},"isBase":true}}}, +{"id":36415,"name":"Vintage Satin Cloak","icon":"inv_misc_cape_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":274},"isBase":true}}}, +{"id":36416,"name":"Regal Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":283},"isBase":true}}}, +{"id":36417,"name":"Oval Ring","icon":"inv_jewelry_ring_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"isBase":true}}}, +{"id":36418,"name":"Floral Loop","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"isBase":true}}}, +{"id":36419,"name":"Glass Ring","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"isBase":true}}}, +{"id":36420,"name":"Gemstone Ring","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"isBase":true}}}, +{"id":36421,"name":"Devotional Band","icon":"inv_jewelry_ring_03","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"isBase":true}}}, +{"id":36422,"name":"Filigree Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"isBase":true}}}, +{"id":36423,"name":"Posy Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"isBase":true}}}, +{"id":36424,"name":"Cameo Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"isBase":true}}}, +{"id":36425,"name":"Gold Twisted Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"isBase":true}}}, +{"id":36426,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":36427,"name":"Engraved Ring","icon":"inv_jewelry_ring_04","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"isBase":true}}}, +{"id":36428,"name":"Bouquet Ring","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"isBase":true}}}, +{"id":36429,"name":"Spur Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"isBase":true}}}, +{"id":36430,"name":"Puzzle Ring","icon":"inv_jewelry_ring_32","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"isBase":true}}}, +{"id":36431,"name":"Painted Wooden Beads","icon":"inv_misc_gem_variety_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"isBase":true}}}, +{"id":36432,"name":"Silver Rope Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"isBase":true}}}, +{"id":36433,"name":"Snake Entwined Necklace","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"isBase":true}}}, +{"id":36434,"name":"Gold Mesh Collar","icon":"inv_jewelry_necklace_12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"isBase":true}}}, +{"id":36435,"name":"Embroidered Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"isBase":true}}}, +{"id":36436,"name":"Jasper Bead Necklace","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"isBase":true}}}, +{"id":36437,"name":"Figaro Chain","icon":"inv_jewelry_necklace_01","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"isBase":true}}}, +{"id":36438,"name":"Shark-Toothed Necklace","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"isBase":true}}}, +{"id":36439,"name":"Serpentine Chain","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"isBase":true}}}, +{"id":36440,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":36441,"name":"Pearl Woven Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"isBase":true}}}, +{"id":36442,"name":"Silken Cord Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"isBase":true}}}, +{"id":36443,"name":"Platinum Medallion","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"isBase":true}}}, +{"id":36444,"name":"Ice Encrusted Amulet","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"isBase":true}}}, +{"id":36445,"name":"Riveted Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"stats":{"22":2714},"isBase":true}}}, +{"id":36446,"name":"Forged-Iron Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"22":2848},"isBase":true}}}, +{"id":36447,"name":"Kaskala Buckler","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"22":3134},"isBase":true}}}, +{"id":36448,"name":"Spiked Targe","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"22":3282},"isBase":true}}}, +{"id":36449,"name":"Vrykul Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"22":3429},"isBase":true}}}, +{"id":36450,"name":"Strapped Heater Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"22":3576},"isBase":true}}}, +{"id":36451,"name":"Kamagua Shield","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"22":3723},"isBase":true}}}, +{"id":36452,"name":"Spoke Shield","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"22":3871},"isBase":true}}}, +{"id":36453,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":4018},"isBase":true}}}, +{"id":36454,"name":"Domed Buckler","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":4189},"isBase":true}}}, +{"id":36455,"name":"Plated Bulwark","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4386,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"stats":{"22":4386},"isBase":true}}}, +{"id":36456,"name":"Icy Kite Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"22":4586},"isBase":true}}}, +{"id":36457,"name":"Ivory Shield","icon":"inv_shield_47","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":4791},"isBase":true}}}, +{"id":36458,"name":"Frozen Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"stats":{"22":4996},"isBase":true}}}, +{"id":36459,"name":"Icy Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":37,"isBase":true}}}, +{"id":36460,"name":"Northern Star","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":39,"isBase":true}}}, +{"id":36461,"name":"Demon-Skull Orb","icon":"inv_misc_bone_orcskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"isBase":true}}}, +{"id":36462,"name":"Coldarra Crystal","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":42,"isBase":true}}}, +{"id":36463,"name":"Polished Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"isBase":true}}}, +{"id":36464,"name":"Darkened Scepter","icon":"inv_wand_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":45,"isBase":true}}}, +{"id":36465,"name":"Evergreen Branch","icon":"inv_misc_herb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"isBase":true}}}, +{"id":36466,"name":"Facetted Orb","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"isBase":true}}}, +{"id":36467,"name":"Reflecting Sphere","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"isBase":true}}}, +{"id":36468,"name":"Glistening Star","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":36469,"name":"Lidless Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":54,"isBase":true}}}, +{"id":36470,"name":"Gilded Scepter","icon":"inv_wand_14","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"isBase":true}}}, +{"id":36471,"name":"Ice Crystal","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"isBase":true}}}, +{"id":36472,"name":"Carved Rod","icon":"inv_misc_branch_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":60,"isBase":true}}}, +{"id":36473,"name":"Pioneer's Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":125,"weaponDamageMax":234,"weaponSpeed":1.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":125,"weaponDamageMax":234,"isBase":true}}}, +{"id":36474,"name":"Engraved Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":130,"weaponDamageMax":242,"weaponSpeed":1.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":130,"weaponDamageMax":242,"isBase":true}}}, +{"id":36475,"name":"Seal Shortblade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"isBase":true}}}, +{"id":36476,"name":"Whale Ripper","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":138,"weaponDamageMax":258,"weaponSpeed":1.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":138,"weaponDamageMax":258,"isBase":true}}}, +{"id":36477,"name":"Twin-Edged Stiletto","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"isBase":true}}}, +{"id":36478,"name":"Frosty Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":148,"weaponDamageMax":276,"weaponSpeed":1.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":148,"weaponDamageMax":276,"isBase":true}}}, +{"id":36479,"name":"Snobold Ripper","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":1.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":153,"weaponDamageMax":285,"isBase":true}}}, +{"id":36480,"name":"Ebony Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"isBase":true}}}, +{"id":36481,"name":"Trapper Knife","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":164,"weaponDamageMax":305,"weaponSpeed":1.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":164,"weaponDamageMax":305,"isBase":true}}}, +{"id":36482,"name":"Parrying Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":169,"weaponDamageMax":315,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":169,"weaponDamageMax":315,"isBase":true}}}, +{"id":36483,"name":"Mandible Edge","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":175,"weaponDamageMax":326,"weaponSpeed":1.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":175,"weaponDamageMax":326,"isBase":true}}}, +{"id":36484,"name":"Etched Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":1.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":181,"weaponDamageMax":337,"isBase":true}}}, +{"id":36485,"name":"Sinuous Keris","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":187,"weaponDamageMax":349,"isBase":true}}}, +{"id":36486,"name":"Ornate Pugio","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":194,"weaponDamageMax":361,"weaponSpeed":1.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":194,"weaponDamageMax":361,"isBase":true}}}, +{"id":36487,"name":"Stone-Headed Gavel","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":2.6,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"isBase":true}}}, +{"id":36488,"name":"Conifer Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"weaponSpeed":2.6,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"isBase":true}}}, +{"id":36489,"name":"Iron Flanged Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"isBase":true}}}, +{"id":36490,"name":"Tuskarr Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.6,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"isBase":true}}}, +{"id":36491,"name":"Serrated Maul","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"isBase":true}}}, +{"id":36492,"name":"Peaked Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.6,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"isBase":true}}}, +{"id":36493,"name":"Furbolg Truncheon","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"isBase":true}}}, +{"id":36494,"name":"Barbed Star","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"isBase":true}}}, +{"id":36495,"name":"Ferrous Hammer","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.6,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"isBase":true}}}, +{"id":36496,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":36497,"name":"Adamant Mallet","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.6,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36498,"name":"Nerubian Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"isBase":true}}}, +{"id":36499,"name":"Frigid War-Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"weaponSpeed":2.6,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"isBase":true}}}, +{"id":36500,"name":"Gargoyle's Mace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"weaponSpeed":2.6,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"isBase":true}}}, +{"id":36501,"name":"Granite Maul","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36502,"name":"Ungainly Mace","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36503,"name":"Toothless Bludgeon","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36504,"name":"Cleft-Edged Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36505,"name":"Frosted Steel Mallet","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36506,"name":"Vaulted Mace","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36507,"name":"Iron-Molded Fist","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36508,"name":"Cumbersome Sledgehammer","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36509,"name":"Femur-Shafted Mace","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36510,"name":"Lumbering Bludgeon","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36511,"name":"Arctic War Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36512,"name":"Onerous Mallet","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36513,"name":"Lode-Headed Hammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36514,"name":"Kingly Battlehammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36515,"name":"Raider's Cutlass","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":2.6,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"isBase":true}}}, +{"id":36516,"name":"Tribal Blade","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"weaponSpeed":2.6,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"isBase":true}}}, +{"id":36517,"name":"Iron-Grip Shortsword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"isBase":true}}}, +{"id":36518,"name":"Tundra's Edge","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.6,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"isBase":true}}}, +{"id":36519,"name":"Moonlit Katana","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"isBase":true}}}, +{"id":36520,"name":"Chopping Wideblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.6,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"isBase":true}}}, +{"id":36521,"name":"Shimmering Sabre","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"isBase":true}}}, +{"id":36522,"name":"Scored Blade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"isBase":true}}}, +{"id":36523,"name":"Trollish Slicer","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.6,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"isBase":true}}}, +{"id":36524,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":36525,"name":"Craggy Machete","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.6,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36526,"name":"Sleeted Longsword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"isBase":true}}}, +{"id":36527,"name":"Blackened Blade","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"weaponSpeed":2.6,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"isBase":true}}}, +{"id":36528,"name":"Skeleton's Sword","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"weaponSpeed":2.6,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"isBase":true}}}, +{"id":36529,"name":"Unearthed Broadsword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36530,"name":"Whetted Ironblade","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36531,"name":"Sawtooth Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36532,"name":"Shark Fin Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36533,"name":"Adorned Broadsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36534,"name":"Tempered-Steel Blade","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36535,"name":"Dragon's Rib Sword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36536,"name":"Inlaid Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36537,"name":"Fur-Grip Broadsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36538,"name":"Trollish Destroyer","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36539,"name":"Chilled Warblade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36540,"name":"Petrified Sword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36541,"name":"Wintry Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36542,"name":"Invasion Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36543,"name":"Survival Stick","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36544,"name":"Journeyed Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36545,"name":"Branched Stick","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36546,"name":"Unusual Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36547,"name":"Jester's Stick","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36548,"name":"Promised Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36549,"name":"Pulsing Quarterstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36550,"name":"Refulgent Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36551,"name":"Ritual Greatstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36552,"name":"Spiked Greatstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36553,"name":"Desecrated Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36554,"name":"Cursed Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36555,"name":"Minion Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36556,"name":"Apocalyptic Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36557,"name":"Meat Ripper","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":2.6,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"isBase":true}}}, +{"id":36558,"name":"Curved Scratcher","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"weaponSpeed":2.6,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"isBase":true}}}, +{"id":36559,"name":"Prized Handscythes","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"isBase":true}}}, +{"id":36560,"name":"Fighter's Grip","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.6,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"isBase":true}}}, +{"id":36561,"name":"Mummified Paw","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"isBase":true}}}, +{"id":36562,"name":"Blue-Nailed Claws","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.6,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"isBase":true}}}, +{"id":36563,"name":"Gloved Talons","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"isBase":true}}}, +{"id":36564,"name":"Spider Claw","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"isBase":true}}}, +{"id":36565,"name":"Hero's Knuckles","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.6,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"isBase":true}}}, +{"id":36566,"name":"Gilded Fangs","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":36567,"name":"Six-Fingered Claws","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.6,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36568,"name":"Hollowed Bone Knuckles","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"isBase":true}}}, +{"id":36569,"name":"Savage Talons","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"weaponSpeed":2.6,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"isBase":true}}}, +{"id":36570,"name":"Corrupted Scythes","icon":"inv_gauntlets_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"weaponSpeed":2.6,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"isBase":true}}}, +{"id":36571,"name":"Splicing Axe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"weaponSpeed":2.6,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":192,"weaponDamageMax":358,"isBase":true}}}, +{"id":36572,"name":"Dinged Cleaver","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"weaponSpeed":2.6,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":198,"weaponDamageMax":369,"isBase":true}}}, +{"id":36573,"name":"Primeval Adze","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"isBase":true}}}, +{"id":36574,"name":"Bone Cleaver","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.6,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"isBase":true}}}, +{"id":36575,"name":"Dragonflayer Hatchet","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"isBase":true}}}, +{"id":36576,"name":"Beaked Axe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"weaponSpeed":2.6,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":226,"weaponDamageMax":421,"isBase":true}}}, +{"id":36577,"name":"Disk Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"isBase":true}}}, +{"id":36578,"name":"Troll Chopper","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"isBase":true}}}, +{"id":36579,"name":"Boreal Woodchopper","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"weaponSpeed":2.6,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":250,"weaponDamageMax":466,"isBase":true}}}, +{"id":36580,"name":"Dire Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":36581,"name":"Wolvar Handaxe","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.6,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36582,"name":"Ice Pick","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"isBase":true}}}, +{"id":36583,"name":"Skeletal Hacker","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"weaponSpeed":2.6,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":287,"weaponDamageMax":534,"isBase":true}}}, +{"id":36584,"name":"Snowy Edge","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"weaponSpeed":2.6,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":297,"weaponDamageMax":553,"isBase":true}}}, +{"id":36585,"name":"Finned Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36586,"name":"Wreaking Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36587,"name":"Taunka Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36588,"name":"Burning Battleaxe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36589,"name":"Segmenting Broadaxe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36590,"name":"Bone Plate Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36591,"name":"Winged Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36592,"name":"Deforester Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36593,"name":"Troll Decollator","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36594,"name":"Fracturing Battleaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36595,"name":"Planate Broadaxe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36596,"name":"Rupturing Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36597,"name":"Ice-Splintering Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36598,"name":"Scarlet Battle Axe","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36599,"name":"Ocean Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36600,"name":"Village Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36601,"name":"Patient Harpoon","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36602,"name":"Rust-Covered Polearm","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36603,"name":"Archaic Longspear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36604,"name":"Grizzly Glaive","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36605,"name":"Wind Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36606,"name":"Rugged Polearm","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36607,"name":"Dwarven Halberd","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36608,"name":"Piercing Glaive","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36609,"name":"Abandoned Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36610,"name":"Plagued Pike","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36611,"name":"Bleak Scythe","icon":"inv_weapon_halberd_25","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36612,"name":"Scourge War Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36613,"name":"Honorable Longbow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"isBase":true}}}, +{"id":36614,"name":"Yew Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36615,"name":"Expert's Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"weaponSpeed":2.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"isBase":true}}}, +{"id":36616,"name":"Dutiful Longbow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"weaponSpeed":2.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"isBase":true}}}, +{"id":36617,"name":"Yielding Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"weaponSpeed":2.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"isBase":true}}}, +{"id":36618,"name":"Twisted Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"weaponSpeed":2.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"isBase":true}}}, +{"id":36619,"name":"Astral Light Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"weaponSpeed":2.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"isBase":true}}}, +{"id":36620,"name":"Tracking Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"weaponSpeed":2.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"isBase":true}}}, +{"id":36621,"name":"Advanced Flatbow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"weaponSpeed":2.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"isBase":true}}}, +{"id":36622,"name":"Acute Shortbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":2.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"isBase":true}}}, +{"id":36623,"name":"Harnessed Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"weaponSpeed":2.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"isBase":true}}}, +{"id":36624,"name":"Shrieking Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"weaponSpeed":2.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"isBase":true}}}, +{"id":36625,"name":"Massive Recurved Bow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"isBase":true}}}, +{"id":36626,"name":"Military Compound Bow","icon":"inv_weapon_bow_41","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"weaponSpeed":2.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"isBase":true}}}, +{"id":36627,"name":"Composite Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"isBase":true}}}, +{"id":36628,"name":"Under-Arm Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36629,"name":"Ferocious Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"weaponSpeed":2.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"isBase":true}}}, +{"id":36630,"name":"Sinewed Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"weaponSpeed":2.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"isBase":true}}}, +{"id":36631,"name":"Horned Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"weaponSpeed":2.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"isBase":true}}}, +{"id":36632,"name":"Slingshot Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"weaponSpeed":2.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"isBase":true}}}, +{"id":36633,"name":"Palisade Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"weaponSpeed":2.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"isBase":true}}}, +{"id":36634,"name":"Pain Repeater","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"weaponSpeed":2.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"isBase":true}}}, +{"id":36635,"name":"Marvelous Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"weaponSpeed":2.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"isBase":true}}}, +{"id":36636,"name":"Arbalest Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":2.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"isBase":true}}}, +{"id":36637,"name":"Horrific Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"weaponSpeed":2.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"isBase":true}}}, +{"id":36638,"name":"Bloody Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"weaponSpeed":2.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"isBase":true}}}, +{"id":36639,"name":"Brutal Ballista","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"isBase":true}}}, +{"id":36640,"name":"Scourge Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"weaponSpeed":2.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"isBase":true}}}, +{"id":36641,"name":"Bound Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"weaponSpeed":2.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":260,"weaponDamageMax":483,"isBase":true}}}, +{"id":36642,"name":"Flintlock Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"weaponSpeed":2.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":268,"weaponDamageMax":499,"isBase":true}}}, +{"id":36643,"name":"Tracker's Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"weaponSpeed":2.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"isBase":true}}}, +{"id":36644,"name":"Inelegant Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"weaponSpeed":2.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":286,"weaponDamageMax":533,"isBase":true}}}, +{"id":36645,"name":"Tuskarr Boomstick","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"weaponSpeed":2.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":296,"weaponDamageMax":550,"isBase":true}}}, +{"id":36646,"name":"Haggard Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"weaponSpeed":2.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":306,"weaponDamageMax":569,"isBase":true}}}, +{"id":36647,"name":"Noisy Blaster","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"weaponSpeed":2.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":316,"weaponDamageMax":588,"isBase":true}}}, +{"id":36648,"name":"Trapper's Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"weaponSpeed":2.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":327,"weaponDamageMax":608,"isBase":true}}}, +{"id":36649,"name":"Tundra Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"weaponSpeed":2.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":338,"weaponDamageMax":629,"isBase":true}}}, +{"id":36650,"name":"Mammoth Gun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":2.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"isBase":true}}}, +{"id":36651,"name":"Muzzled Musket","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"weaponSpeed":2.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":362,"weaponDamageMax":673,"isBase":true}}}, +{"id":36652,"name":"Stocky Shotgun","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"weaponSpeed":2.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":374,"weaponDamageMax":696,"isBase":true}}}, +{"id":36653,"name":"Precipice Longrifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"weaponSpeed":2.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":388,"weaponDamageMax":721,"isBase":true}}}, +{"id":36654,"name":"Harsh-Winter Rifle","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"weaponSpeed":2.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":401,"weaponDamageMax":746,"isBase":true}}}, +{"id":36655,"name":"Pearled Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"weaponSpeed":1.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"stats":{"14":204},"isBase":true}}}, +{"id":36656,"name":"Darkened Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"weaponSpeed":1.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"stats":{"14":211},"isBase":true}}}, +{"id":36657,"name":"Vicious Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"stats":{"14":218},"isBase":true}}}, +{"id":36658,"name":"Extinguished Spark","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":1.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"stats":{"14":225},"isBase":true}}}, +{"id":36659,"name":"Shivery Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4746,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"stats":{"14":4746},"isBase":true}}}, +{"id":36660,"name":"Melted Wand","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":1.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"stats":{"14":246},"isBase":true}}}, +{"id":36661,"name":"Enigmatic Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":1.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"stats":{"14":253},"isBase":true}}}, +{"id":36662,"name":"Voodoo Wand","icon":"inv_wand_03","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"14":260},"isBase":true}}}, +{"id":36663,"name":"Ancient Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"weaponSpeed":1.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"stats":{"14":274},"isBase":true}}}, +{"id":36664,"name":"Chilled Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"14":281},"isBase":true}}}, +{"id":36665,"name":"Wasteland Wand","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"14":295},"isBase":true}}}, +{"id":36666,"name":"Polar Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":1.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"stats":{"14":302},"isBase":true}}}, +{"id":36667,"name":"Solid Ice Wand","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"weaponSpeed":1.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"stats":{"14":316},"isBase":true}}}, +{"id":36668,"name":"Mindless Wand","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"stats":{"14":323},"isBase":true}}}, +{"id":36669,"name":"Eccentric Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"weaponSpeed":1.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"stats":{"14":204},"isBase":true}}}, +{"id":36670,"name":"Gypsy Blade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"weaponSpeed":1.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"stats":{"14":211},"isBase":true}}}, +{"id":36671,"name":"Ominous Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"stats":{"14":218},"isBase":true}}}, +{"id":36672,"name":"Strange Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":1.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"stats":{"14":225},"isBase":true}}}, +{"id":36673,"name":"Wise Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"stats":{"14":232},"isBase":true}}}, +{"id":36674,"name":"Old Tooth","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":1.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"stats":{"14":246},"isBase":true}}}, +{"id":36675,"name":"Sockeye Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":1.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"stats":{"14":253},"isBase":true}}}, +{"id":36676,"name":"Water Blade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"14":260},"isBase":true}}}, +{"id":36677,"name":"Levitating Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"weaponSpeed":1.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"stats":{"14":274},"isBase":true}}}, +{"id":36678,"name":"Runed Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"14":281},"isBase":true}}}, +{"id":36679,"name":"Singing Dagger","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"14":295},"isBase":true}}}, +{"id":36680,"name":"Mystic Fang","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":1.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"stats":{"14":302},"isBase":true}}}, +{"id":36681,"name":"Wisdom Carver","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"weaponSpeed":1.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"stats":{"14":316},"isBase":true}}}, +{"id":36682,"name":"Seduced Blade","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"stats":{"14":323},"isBase":true}}}, +{"id":36683,"name":"Enshrined Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"weaponSpeed":1.7,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":29,"weaponDamageMin":62,"weaponDamageMax":117,"stats":{"14":204},"isBase":true}}}, +{"id":36684,"name":"Ambrosial Hammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"weaponSpeed":1.7,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":30,"weaponDamageMin":65,"weaponDamageMax":121,"stats":{"14":211},"isBase":true}}}, +{"id":36685,"name":"Placid Lightmace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":67,"weaponDamageMax":125,"stats":{"14":218},"isBase":true}}}, +{"id":36686,"name":"Harmonious Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"weaponSpeed":1.7,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":69,"weaponDamageMax":129,"stats":{"14":225},"isBase":true}}}, +{"id":36687,"name":"Illuminated Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":71,"weaponDamageMax":133,"stats":{"14":232},"isBase":true}}}, +{"id":36688,"name":"Sacrosanct Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"weaponSpeed":1.7,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":35,"weaponDamageMin":74,"weaponDamageMax":138,"stats":{"14":246},"isBase":true}}}, +{"id":36689,"name":"Refreshing Hammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"weaponSpeed":1.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":76,"weaponDamageMax":142,"stats":{"14":253},"isBase":true}}}, +{"id":36690,"name":"Unearthly Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":79,"weaponDamageMax":147,"stats":{"14":260},"isBase":true}}}, +{"id":36691,"name":"Dignified Hammer","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"weaponSpeed":1.7,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":39,"weaponDamageMin":82,"weaponDamageMax":152,"stats":{"14":274},"isBase":true}}}, +{"id":36692,"name":"Remedial Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"14":281},"isBase":true}}}, +{"id":36693,"name":"Serene Hammer","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.7,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":42,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"14":295},"isBase":true}}}, +{"id":36694,"name":"Beatific Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"weaponSpeed":1.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":90,"weaponDamageMax":169,"stats":{"14":302},"isBase":true}}}, +{"id":36695,"name":"Dogmatic Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"weaponSpeed":1.7,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":45,"weaponDamageMin":93,"weaponDamageMax":175,"stats":{"14":316},"isBase":true}}}, +{"id":36696,"name":"Graced Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"weaponSpeed":1.7,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":46,"weaponDamageMin":97,"weaponDamageMax":181,"stats":{"14":323},"isBase":true}}}, +{"id":36697,"name":"Aquatic Greatstaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.5,"ilvl":130,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":67,"weaponDamageMin":385,"weaponDamageMax":578,"isBase":true}}}, +{"id":36698,"name":"Conifer Cone Staff","icon":"inv_staff_36","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"weaponSpeed":3.5,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":69,"weaponDamageMin":397,"weaponDamageMax":597,"isBase":true}}}, +{"id":36699,"name":"Iceberg Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"isBase":true}}}, +{"id":36700,"name":"Peat Greatstaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"weaponSpeed":3.5,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":424,"weaponDamageMax":637,"isBase":true}}}, +{"id":36701,"name":"Pine Needle Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"isBase":true}}}, +{"id":36702,"name":"Melting Icestaff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"isBase":true}}}, +{"id":36703,"name":"Tusked Greatstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"isBase":true}}}, +{"id":36704,"name":"Hive Comb Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"weaponSpeed":3.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":485,"weaponDamageMax":728,"isBase":true}}}, +{"id":36705,"name":"Geyser Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"weaponSpeed":3.5,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"weaponDamageMin":501,"weaponDamageMax":753,"isBase":true}}}, +{"id":36706,"name":"Tenacious Vine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":36707,"name":"Cascading Water Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"weaponSpeed":3.5,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":97,"weaponDamageMin":536,"weaponDamageMax":805,"isBase":true}}}, +{"id":36708,"name":"Snow Blossom Staff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"isBase":true}}}, +{"id":36709,"name":"Crystal Woodstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"weaponSpeed":3.5,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"weaponDamageMin":574,"weaponDamageMax":862,"isBase":true}}}, +{"id":36710,"name":"Avalanche Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"weaponSpeed":3.5,"ilvl":182,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"182":{"randPropPoints":108,"weaponDamageMin":595,"weaponDamageMax":893,"isBase":true}}}, +{"id":36737,"name":"Brutal Gladiator's Hatchet","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":3,"stats":[0,0,31,0,0,9,20,6,0,0,0,0,42,42,0,0,14,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"weaponSpeed":2.6,"ilvl":154,"quality":4,"classAllowlist":[2],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":276,"weaponDamageMax":513,"stats":{"2":31,"5":9,"6":20,"7":6,"12":42,"13":42,"16":14},"isBase":true}}}, +{"id":36866,"name":"HF BLUE Leather DPS Chest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,58,63,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"stats":{"1":58,"2":63,"5":24,"22":660},"isBase":true}}}, +{"id":36867,"name":"HF BLUE Plate DPS Chest","icon":"inv_chest_wolf","type":5,"armorType":4,"stats":[32,0,24,0,0,0,60,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"stats":{"0":32,"2":24,"6":60,"7":24,"22":1441},"isBase":true}}}, +{"id":36871,"name":"Fury of the Encroaching Storm","icon":"inv_datacrystal06","type":12,"stats":[0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"7":44},"isBase":true}}}, +{"id":36872,"name":"Mender of the Oncoming Dawn","icon":"inv_misc_surgeonglove_01","type":12,"stats":[0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"4":42},"isBase":true}}}, +{"id":36874,"name":"Horn of the Herald","icon":"inv_misc_horn_03","type":12,"stats":[0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"7":43},"isBase":true}}}, +{"id":36878,"name":"Writhing Longstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,45,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":352,"weaponDamageMax":529,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":352,"weaponDamageMax":529,"stats":{"1":45,"2":75},"isBase":true}}}, +{"id":36879,"name":"Soldier's Spiked Mace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,22,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"1":22,"6":19},"isBase":true}}}, +{"id":36880,"name":"Vicious Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,46,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"stats":{"2":46,"14":218},"isBase":true}}}, +{"id":36881,"name":"Medic's Morning Star","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,33,0,18,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"weaponSpeed":2.2,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"stats":{"2":33,"4":18,"14":218},"isBase":true}}}, +{"id":36882,"name":"Warsong Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,41,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"weaponSpeed":2.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"stats":{"1":41,"5":53},"isBase":true}}}, +{"id":36883,"name":"Combatant Greatsword","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[36,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"weaponSpeed":3.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"stats":{"0":36,"6":55},"isBase":true}}}, +{"id":36884,"name":"Transborean Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,80,30,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"4":22,"22":316},"isBase":true}}}, +{"id":36885,"name":"Marshwalker Chestpiece","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,55,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":55,"2":53,"22":537},"isBase":true}}}, +{"id":36886,"name":"Westrift Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,53,33,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":33,"6":30,"22":705},"isBase":true}}}, +{"id":36887,"name":"Mightstone Pauldrons","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[16,0,32,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":16,"2":32,"6":39,"22":879},"isBase":true}}}, +{"id":36888,"name":"Marshwalker Legguards","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,52,36,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":52,"2":36,"8":31,"22":470},"isBase":true}}}, +{"id":36937,"name":"Tundrastrider Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,78,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":78,"3":31,"6":24,"22":655},"isBase":true}}}, +{"id":36938,"name":"Mightstone Breastplate","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[50,0,46,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":50,"2":46,"6":28,"22":1172},"isBase":true}}}, +{"id":36939,"name":"Nymph Stockings","icon":"inv_pants_09","type":9,"armorType":1,"stats":[0,0,75,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":75,"3":31,"4":28,"22":341},"isBase":true}}}, +{"id":36942,"name":"Frostmourne","icon":"inv_sword_92","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[1],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":963,"weaponDamageMax":1445,"weaponSpeed":4,"ilvl":200,"quality":6,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"weaponDamageMin":963,"weaponDamageMax":1445,"isBase":true}}}, +{"id":36943,"name":"Timeless Beads of Eternos","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,53,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":53,"3":38,"4":37},"isBase":true}}}, +{"id":36944,"name":"Lifeblade of Belgaristrasz","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,29,50,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"1":29,"2":50,"5":20},"isBase":true}}}, +{"id":36945,"name":"Verdisa's Cuffs of Dreaming","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,48,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":48,"3":38,"4":29,"22":318},"isBase":true}}}, +{"id":36946,"name":"Runic Cage Chestpiece","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,85,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":85,"3":67,"6":59,"22":1535},"isBase":true}}}, +{"id":36947,"name":"Centrifuge Core Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,39,54,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":39,"2":54,"7":38,"22":363},"isBase":true}}}, +{"id":36948,"name":"Horned Helm of Varos","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,103,69,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":103,"3":69,"7":57,"22":822},"isBase":true}}}, +{"id":36949,"name":"Gloves of the Azure-Lord","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,85,51,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":85,"3":51,"4":40,"22":454},"isBase":true}}}, +{"id":36950,"name":"Wing Commander's Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[70,0,78,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":70,"2":78,"5":68,"22":2215},"isBase":true}}}, +{"id":36951,"name":"Sidestepping Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,51,96,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":96,"7":34,"22":633},"isBase":true}}}, +{"id":36952,"name":"Girdle of Obscuring","icon":"inv_belt_33","type":8,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"2":76,"10":50,"22":1246},"isBase":true}}}, +{"id":36953,"name":"Spaulders of Skillful Maneuvers","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,51,74,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":74,"6":34,"7":34,"22":1151},"isBase":true}}}, +{"id":36954,"name":"The Conjurer's Slippers","icon":"inv_boots_cloth_18","type":10,"armorType":1,"stats":[0,0,73,51,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"7":54,"22":499},"isBase":true}}}, +{"id":36961,"name":"Dragonflight Great-Ring","icon":"inv_jewelry_ring_40","type":11,"stats":[26,0,58,0,0,24,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":26,"2":58,"5":24,"9":38},"isBase":true}}}, +{"id":36962,"name":"Wyrmclaw Battleaxe","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[0,69,123,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":679,"weaponDamageMax":1019,"weaponSpeed":3.5,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":679,"weaponDamageMax":1019,"stats":{"1":69,"2":123,"7":50},"isBase":true}}}, +{"id":36969,"name":"Helm of the Ley-Guardian","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[40,0,105,0,0,36,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1800,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":40,"2":105,"5":36,"9":68,"22":1800},"isBase":true}}}, +{"id":36971,"name":"Headguard of Westrift","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,69,81,0,0,35,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":81,"5":35,"6":53,"22":1247},"isBase":true}}}, +{"id":36972,"name":"Tome of Arcane Phenomena","icon":"inv_misc_book_07","type":12,"stats":[0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"3":58},"isBase":true}}}, +{"id":36973,"name":"Vestments of the Scholar","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,97,69,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":97,"3":69,"6":69,"22":726},"isBase":true}}}, +{"id":36974,"name":"Eregos' Ornamented Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,98,69,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":98,"3":69,"6":52,"22":2215},"isBase":true}}}, +{"id":36975,"name":"Malygos' Favor","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,108,0,95,0,0,0,0,0,0,0,0,0,395,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":233,"weaponDamageMax":350,"weaponSpeed":2.4,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":233,"weaponDamageMax":350,"stats":{"2":108,"4":95,"14":395},"isBase":true}}}, +{"id":36976,"name":"Ring-Lord's Leggings","icon":"inv_pants_cloth_22","type":9,"armorType":1,"stats":[0,0,115,68,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":115,"3":68,"4":53,"22":635},"isBase":true}}}, +{"id":36977,"name":"Bindings of the Construct","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,71,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":71,"3":38,"4":26,"22":969},"isBase":true}}}, +{"id":36978,"name":"Ley-Whelphide Belt","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,52,95,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":52,"2":95,"6":18,"22":569},"isBase":true}}}, +{"id":36979,"name":"Bjarngrim Family Signet","icon":"inv_jewelry_ring_43","type":11,"stats":[0,38,69,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":38,"2":69,"7":27},"isBase":true}}}, +{"id":36980,"name":"Hewn Sparring Quarterstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,52,155,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":466,"weaponDamageMax":699,"weaponSpeed":2.4,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":466,"weaponDamageMax":699,"stats":{"1":52,"2":155,"6":34},"isBase":true}}}, +{"id":36982,"name":"Mantle of Electrical Charges","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":544},"isBase":true}}}, +{"id":36983,"name":"Cape of Seething Steam","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,64,39,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":64,"3":39,"5":29,"22":363},"isBase":true}}}, +{"id":36984,"name":"Eternally Folded Blade","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[29,0,45,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":209,"weaponDamageMax":388,"stats":{"0":29,"2":45,"10":29},"isBase":true}}}, +{"id":36985,"name":"Volkhan's Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,115,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":115,"3":69,"7":53,"22":590},"isBase":true}}}, +{"id":36986,"name":"Kilt of Molten Golems","icon":"inv_pants_plate_02","type":9,"armorType":3,"stats":[0,0,104,69,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"4":50,"22":1343},"isBase":true}}}, +{"id":36988,"name":"Chaotic Spiral Amulet","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,54,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"4":38},"isBase":true}}}, +{"id":36989,"name":"Ancient Measuring Rod","icon":"inv_torch_unlit","type":14,"rangedWeaponType":6,"stats":[0,0,48,30,0,15,16,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"stats":{"2":48,"3":30,"5":15,"6":16,"14":394},"isBase":true}}}, +{"id":36991,"name":"Raiments of the Titans","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,97,69,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":97,"3":69,"4":59,"22":726},"isBase":true}}}, +{"id":36992,"name":"Leather-Braced Chain Leggings","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,61,78,0,0,0,37,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":61,"2":78,"6":37,"7":61,"22":1343},"isBase":true}}}, +{"id":36993,"name":"Seal of the Pantheon","icon":"inv_misc_armorkit_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"9":65},"isBase":true}}}, +{"id":36994,"name":"Projectile Activator","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,96,58,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":475,"weaponDamageMax":884,"weaponSpeed":2.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":475,"weaponDamageMax":884,"stats":{"1":96,"2":58,"6":58},"isBase":true}}}, +{"id":36995,"name":"Fists of Loken","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[52,0,76,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":52,"2":76,"6":32,"22":1385},"isBase":true}}}, +{"id":36996,"name":"Hood of the Furtive Assassin","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,69,105,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":105,"7":50,"22":822},"isBase":true}}}, +{"id":36997,"name":"Sash of the Hardened Watcher","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,55,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":55,"3":38,"4":38,"22":408},"isBase":true}}}, +{"id":36998,"name":"Assailant Shroud","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,18,0,0,16,0,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"5":16,"12":60,"13":60,"22":195},"isBase":true}}}, +{"id":36999,"name":"Boots of the Terrestrial Guardian","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,46,53,0,0,0,23,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":46,"2":53,"6":23,"7":45,"22":1056},"isBase":true}}}, +{"id":37000,"name":"Storming Vortex Bracers","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,0,55,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":55,"3":39,"6":38,"22":443},"isBase":true}}}, +{"id":37002,"name":"Binder's Links","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,51,48,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":51,"3":48,"4":28,"22":806},"isBase":true}}}, +{"id":37004,"name":"Plainwatcher Legplates","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,78,24,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":78,"3":24,"6":31,"22":1025},"isBase":true}}}, +{"id":37005,"name":"D.E.H.T.A. Overshirt","icon":"inv_chest_cloth_45","type":5,"armorType":1,"stats":[0,0,36,37,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":36,"3":37,"6":48,"22":389},"isBase":true}}}, +{"id":37007,"name":"Faux Leather Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,38,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":38,"2":55,"6":38,"22":436},"isBase":true}}}, +{"id":37008,"name":"Ethical Epaulettes","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,35,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":35,"2":26,"7":26,"22":604},"isBase":true}}}, +{"id":37009,"name":"Moral Sabatons","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[38,0,31,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":38,"2":31,"6":16,"22":806},"isBase":true}}}, +{"id":37014,"name":"Rod of Poacher Punishment","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"stats":{"6":23,"7":15},"isBase":true}}}, +{"id":37015,"name":"Dowsing Rod","icon":"inv_wand_09","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,15,0,23,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":75,"weaponDamageMax":139,"weaponSpeed":1.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":75,"weaponDamageMax":139,"stats":{"5":15,"7":23,"14":218},"isBase":true}}}, +{"id":37016,"name":"Wand of the Keeper","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,19,20,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"stats":{"3":19,"4":20,"14":218},"isBase":true}}}, +{"id":37017,"name":"Nimble Blade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"6":13,"12":32,"13":32},"isBase":true}}}, +{"id":37018,"name":"G.E.H.T.A.","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,53,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":308,"weaponDamageMax":573,"stats":{"1":53,"5":38},"isBase":true}}}, +{"id":37019,"name":"Borean Ward","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,30,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"4":30,"6":29,"22":3134},"isBase":true}}}, +{"id":37021,"name":"Claw of the Tuskarr","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":2.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":197,"weaponDamageMax":367,"stats":{"6":22,"12":34,"13":34},"isBase":true}}}, +{"id":37022,"name":"Shark Stabber","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,22,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"2":22,"6":24},"isBase":true}}}, +{"id":37023,"name":"Compact Arrow Launcher","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,25,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"weaponSpeed":2.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"stats":{"6":25,"7":63},"isBase":true}}}, +{"id":37024,"name":"Medicine Stick","icon":"inv_misc_flute_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,20,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":20,"4":31},"isBase":true}}}, +{"id":37025,"name":"Blubber Carver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3.4,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"6":55,"12":72,"13":72},"isBase":true}}}, +{"id":37026,"name":"Spirit Channeller's Rod","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,78,0,42,0,0,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"stats":{"2":78,"4":42,"14":217},"isBase":true}}}, +{"id":37029,"name":"Fin Carver","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,22,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"weaponSpeed":1.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":134,"weaponDamageMax":250,"stats":{"1":22,"5":18},"isBase":true}}}, +{"id":37030,"name":"Blubber Grinder","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[25,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"weaponSpeed":3.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"stats":{"0":25,"6":61},"isBase":true}}}, +{"id":37031,"name":"Zook's Walking Stick","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,77,0,0,0,44,0,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"stats":{"2":77,"6":44,"14":217},"isBase":true}}}, +{"id":37032,"name":"Edge of the Tuskarr","icon":"inv_axe_77","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,11,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":229,"weaponDamageMax":426,"weaponSpeed":2.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":229,"weaponDamageMax":426,"stats":{"6":11,"12":52,"13":52},"isBase":true}}}, +{"id":37033,"name":"Manual of the Tides","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,27,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"5":27,"6":26},"isBase":true}}}, +{"id":37034,"name":"Lobstrock Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,18,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"stats":{"6":18,"7":22},"isBase":true}}}, +{"id":37036,"name":"Fish-Eye Poker","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,11,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"8":11,"12":52,"13":52},"isBase":true}}}, +{"id":37037,"name":"Ritualistic Athame","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,29,44,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"1":29,"2":44,"7":30},"isBase":true}}}, +{"id":37038,"name":"Brazier Igniter","icon":"inv_wand_17","type":14,"rangedWeaponType":6,"stats":[0,0,41,30,29,0,0,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"stats":{"2":41,"3":30,"4":29,"14":394},"isBase":true}}}, +{"id":37039,"name":"Mrgl Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":2,"stats":[0,0,16,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"2":16,"6":26},"isBase":true}}}, +{"id":37040,"name":"Svala's Bloodied Shackles","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[38,0,58,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":38,"2":58,"9":38,"22":969},"isBase":true}}}, +{"id":37041,"name":"Scepter of the Winterfin","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,22,0,0,18,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"weaponSpeed":2.2,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":86,"weaponDamageMax":162,"stats":{"4":22,"7":18,"14":218},"isBase":true}}}, +{"id":37042,"name":"Glimmering Orca Tooth","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,15,24,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"stats":{"5":15,"6":24,"14":218},"isBase":true}}}, +{"id":37043,"name":"Tear-Linked Gauntlets","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,51,61,0,0,26,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":61,"5":26,"6":51,"22":960},"isBase":true}}}, +{"id":37044,"name":"Amphibious Speargun","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,94,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":287,"weaponDamageMax":534,"weaponSpeed":2.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":287,"weaponDamageMax":534,"stats":{"2":94,"9":25},"isBase":true}}}, +{"id":37046,"name":"Shell Smasher","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,51,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"weaponSpeed":3.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":411,"weaponDamageMax":617,"stats":{"7":51,"8":44},"isBase":true}}}, +{"id":37047,"name":"Branch of Everlasting Flame","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,0,23,0,0,15,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":71,"weaponDamageMax":132,"stats":{"3":23,"6":15,"14":218},"isBase":true}}}, +{"id":37048,"name":"Shroud of Resurrection","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,54,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":38,"4":38,"22":363},"isBase":true}}}, +{"id":37049,"name":"Lost Marksman's Rifle","icon":"inv_weapon_rifle_22","type":14,"rangedWeaponType":3,"stats":[0,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"weaponSpeed":2.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"stats":{"1":53,"2":50},"isBase":true}}}, +{"id":37050,"name":"Trophy Gatherer","icon":"inv_weapon_bow_36","type":14,"rangedWeaponType":1,"stats":[0,0,99,0,0,0,67,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":509,"weaponDamageMax":947,"weaponSpeed":3,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":509,"weaponDamageMax":947,"stats":{"2":99,"6":67,"7":70},"isBase":true}}}, +{"id":37051,"name":"Seal of Valgarde","icon":"inv_staff_24","type":13,"weaponType":5,"handType":3,"stats":[0,0,51,38,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":51,"3":38,"7":38},"isBase":true}}}, +{"id":37052,"name":"Reanimated Armor","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[68,0,105,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":68,"2":105,"10":68,"22":2215},"isBase":true}}}, +{"id":37053,"name":"Amulet of Deflected Blows","icon":"inv_jewelry_necklace_14","type":2,"stats":[38,0,58,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":38,"2":58,"10":38},"isBase":true}}}, +{"id":37054,"name":"Frostbiter","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[31,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"weaponSpeed":3.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":422,"weaponDamageMax":634,"stats":{"0":31,"8":58},"isBase":true}}}, +{"id":37055,"name":"Silken Amice of the Ymirjar","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":544},"isBase":true}}}, +{"id":37056,"name":"Harpooner's Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,73,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":50,"22":1523},"isBase":true}}}, +{"id":37057,"name":"Drake Rider's Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,69,110,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":110,"6":46,"22":1012},"isBase":true}}}, +{"id":37058,"name":"Signet of Ranulf","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,54,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"7":38},"isBase":true}}}, +{"id":37060,"name":"Jeweled Coronation Sword","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,0,48,0,23,0,30,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":48,"4":23,"6":30,"14":394},"isBase":true}}}, +{"id":37061,"name":"Tor's Crest","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,54,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"6":38,"22":6367},"isBase":true}}}, +{"id":37062,"name":"Crown of Forgotten Kings","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,97,69,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1800,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":97,"3":69,"4":52,"22":1800},"isBase":true}}}, +{"id":37064,"name":"Vestige of Haldor","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"7":65},"isBase":true}}}, +{"id":37065,"name":"Ymiron's Blade","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,29,56,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":339,"weaponDamageMax":631,"weaponSpeed":2.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":339,"weaponDamageMax":631,"stats":{"1":29,"2":56,"6":19},"isBase":true}}}, +{"id":37066,"name":"Ancient Royal Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[70,0,102,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":70,"2":102,"6":52,"22":1938},"isBase":true}}}, +{"id":37067,"name":"Ceremonial Pyre Mantle","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,50,77,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":50,"2":77,"7":52,"22":759},"isBase":true}}}, +{"id":37068,"name":"Berserker's Sabatons","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[51,40,76,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"1":40,"2":76,"5":25,"22":1523},"isBase":true}}}, +{"id":37069,"name":"Dragonflayer Seer's Bindings","icon":"inv_bracer_11","type":6,"armorType":3,"stats":[0,0,54,39,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"6":38,"22":672},"isBase":true}}}, +{"id":37070,"name":"Tundra Wolf Boots","icon":"inv_boots_chain_12","type":10,"armorType":2,"stats":[0,0,72,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":1196,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":72,"3":51,"6":51,"22":696},"isBase":true}}}, +{"id":37072,"name":"Jagged Icefist","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,0,33,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"2":33,"12":38,"13":38},"isBase":true}}}, +{"id":37073,"name":"Hungering Greatstaff","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"weaponSpeed":3.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":434,"weaponDamageMax":652,"stats":{"8":51,"23":176},"isBase":true}}}, +{"id":37074,"name":"Greatmother's Talisman of Cleansing","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":44,"3":24},"isBase":true}}}, +{"id":37075,"name":"Serrated Scale Shank","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,37,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"weaponSpeed":1.8,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":142,"weaponDamageMax":264,"stats":{"2":37,"7":13},"isBase":true}}}, +{"id":37076,"name":"Fiery Prod","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,22,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"stats":{"6":22,"8":19},"isBase":true}}}, +{"id":37077,"name":"Smoldering Talon","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,13,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"weaponSpeed":2.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":205,"weaponDamageMax":382,"stats":{"6":13,"7":25},"isBase":true}}}, +{"id":37078,"name":"Rod of the Crimson Keeper","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,27,0,12,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"stats":{"4":27,"6":12,"14":218},"isBase":true}}}, +{"id":37079,"name":"Enchanted Wire Stitching","icon":"inv_jewelry_ring_07","type":11,"stats":[0,0,55,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":55,"3":39,"4":38},"isBase":true}}}, +{"id":37080,"name":"Crimson Will","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[0,0,82,0,0,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3.4,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":82,"12":88,"13":88},"isBase":true}}}, +{"id":37081,"name":"Meathook's Slicer","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,29,52,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":209,"weaponDamageMax":388,"weaponSpeed":1.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":209,"weaponDamageMax":388,"stats":{"1":29,"2":52,"6":22},"isBase":true}}}, +{"id":37082,"name":"Slaughterhouse Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"2":76,"9":34,"10":34,"22":1523},"isBase":true}}}, +{"id":37083,"name":"Kilt of Sewn Flesh","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,116,69,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":69,"6":52,"22":886},"isBase":true}}}, +{"id":37084,"name":"Flowing Cloak of Command","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[37,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,363,104,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":37,"2":39,"9":26,"22":363,"23":104},"isBase":true}}}, +{"id":37086,"name":"Tome of Salramm","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,45,39,19,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":45,"3":39,"4":19,"6":38},"isBase":true}}}, +{"id":37088,"name":"Spiked Metal Cilice","icon":"inv_belt_23","type":8,"armorType":4,"stats":[51,37,43,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"1":37,"2":43,"5":51,"22":1246},"isBase":true}}}, +{"id":37095,"name":"Waistband of the Thuzadin","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,51,77,0,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":25,"7":40,"22":864},"isBase":true}}}, +{"id":37096,"name":"Necklace of the Chrono-Lord","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,38,75,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":38,"2":75,"7":37},"isBase":true}}}, +{"id":37099,"name":"Sempiternal Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,115,0,53,0,68,0,0,0,0,0,0,0,393,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":203,"weaponDamageMax":306,"weaponSpeed":2.1,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":203,"weaponDamageMax":306,"stats":{"2":115,"4":53,"6":68,"14":393},"isBase":true}}}, +{"id":37105,"name":"Treads of Altered History","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,74,51,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":74,"3":51,"6":50,"22":1056},"isBase":true}}}, +{"id":37106,"name":"Ouroboros Belt","icon":"inv_jewelry_ring_41","type":8,"armorType":2,"stats":[0,0,73,51,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"6":51,"22":569},"isBase":true}}}, +{"id":37107,"name":"Leeka's Shield","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[37,0,60,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,6367,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":37,"2":60,"9":38,"22":6367},"isBase":true}}}, +{"id":37108,"name":"Dreadlord's Blade","icon":"inv_sword_100","type":13,"weaponType":9,"handType":4,"stats":[70,0,102,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":660,"weaponDamageMax":990,"weaponSpeed":3.4,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":660,"weaponDamageMax":990,"stats":{"0":70,"2":102,"5":68},"isBase":true}}}, +{"id":37109,"name":"Discarded Silver Hand Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,72,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":72,"3":51,"4":50,"22":1661},"isBase":true}}}, +{"id":37110,"name":"Gauntlets of Dark Conversion","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,75,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":75,"3":50,"4":50,"22":960},"isBase":true}}}, +{"id":37111,"name":"Soul Preserver","icon":"inv_misc_orb_03","type":12,"stats":[0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"3":64},"isBase":true}}}, +{"id":37112,"name":"Beguiling Scepter","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,65,0,0,0,30,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":150,"weaponDamageMax":279,"weaponSpeed":2.3,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":150,"weaponDamageMax":279,"stats":{"2":65,"6":30,"14":394},"isBase":true}}}, +{"id":37113,"name":"Demonic Fabric Bands","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,59,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":59,"3":38,"4":38,"22":318},"isBase":true}}}, +{"id":37114,"name":"Gloves of Northern Lordaeron","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":633},"isBase":true}}}, +{"id":37115,"name":"Crusader's Square Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[50,0,78,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":50,"2":78,"9":50,"22":1661},"isBase":true}}}, +{"id":37116,"name":"Epaulets of Market Row","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,78,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":78,"3":51,"4":50,"22":1151},"isBase":true}}}, +{"id":37117,"name":"King's Square Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,39,68,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4100,"otherName":"Trash"}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":39,"2":68,"6":27,"22":443},"isBase":true}}}, +{"id":37122,"name":"Taut Driftwood Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,25,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"weaponSpeed":2.7,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":277,"weaponDamageMax":515,"stats":{"6":25,"7":63},"isBase":true}}}, +{"id":37127,"name":"Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":45},"isBase":true}}}, +{"id":37128,"name":"Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"128":{"randPropPoints":64,"stats":{"2":45},"isBase":true}}}, +{"id":37134,"name":"Telestra's Journal","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,66,43,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":66,"3":43,"5":39},"isBase":true}}}, +{"id":37135,"name":"Arcane-Shielded Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[61,0,93,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":61,"2":93,"9":66,"22":1840},"isBase":true}}}, +{"id":37138,"name":"Bands of Channeled Energy","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,60,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":42,"22":695},"isBase":true}}}, +{"id":37139,"name":"Spaulders of the Careless Thief","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,58,93,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":93,"5":33,"22":800},"isBase":true}}}, +{"id":37141,"name":"Amulet of Dazzling Light","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,77,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":77,"3":43,"4":36},"isBase":true}}}, +{"id":37144,"name":"Hauberk of the Arcane Wraith","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,77,94,0,0,0,45,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":77,"2":94,"6":45,"7":56,"22":1588},"isBase":true}}}, +{"id":37149,"name":"Helm of Anomalus","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,84,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":84,"3":78,"4":62,"22":867},"isBase":true}}}, +{"id":37150,"name":"Rift Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[50,0,85,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":50,"22":1557},"isBase":true}}}, +{"id":37151,"name":"Band of Frosted Thorns","icon":"inv_jewelry_ring_47","type":11,"stats":[45,0,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":45,"2":63,"6":42},"isBase":true}}}, +{"id":37152,"name":"Girdle of Ice","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,82,58,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"6":41,"22":1274},"isBase":true}}}, +{"id":37153,"name":"Gloves of the Crystal Gardener","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,82,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"4":58,"22":489},"isBase":true}}}, +{"id":37155,"name":"Frozen Forest Kilt","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,111,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":62,"4":62,"22":1389},"isBase":true}}}, +{"id":37162,"name":"Bulwark of the Noble Protector","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[43,0,64,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":64,"9":42,"22":6531},"isBase":true}}}, +{"id":37165,"name":"Crystal-Infused Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,69,108,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":69,"2":108,"5":51,"22":1067},"isBase":true}}}, +{"id":37166,"name":"Sphere of Red Dragon's Blood","icon":"spell_shadow_bloodboil","type":12,"stats":[0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"5":55},"isBase":true}}}, +{"id":37167,"name":"Dragon Slayer's Sabatons","icon":"inv_boots_chain_09","type":10,"armorType":3,"stats":[0,50,57,0,0,0,42,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":57,"6":42,"7":30,"22":1092},"isBase":true}}}, +{"id":37169,"name":"War Mace of Unrequited Love","icon":"inv_mace_77","type":13,"weaponType":4,"handType":2,"stats":[0,0,74,0,48,0,0,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":186,"weaponDamageMax":346,"weaponSpeed":2.3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":186,"weaponDamageMax":346,"stats":{"2":74,"4":48,"14":513},"isBase":true}}}, +{"id":37170,"name":"Interwoven Scale Bracers","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,50,73,0,0,0,32,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":73,"6":32,"7":35,"22":718},"isBase":true}}}, +{"id":37171,"name":"Flame-Bathed Steel Girdle","icon":"inv_belt_34","type":8,"armorType":4,"stats":[66,0,85,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":66,"2":85,"6":59,"22":1316},"isBase":true}}}, +{"id":37172,"name":"Gloves of Glistening Runes","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,94,58,44,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":44,"6":36,"22":505},"isBase":true}}}, +{"id":37174,"name":"Rippling Azure Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,64,43,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"6":42,"22":391},"isBase":true}}}, +{"id":37175,"name":"Glassy Silver Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[35,0,52,0,0,0,0,0,0,25,31,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":35,"2":52,"9":25,"10":31,"22":991},"isBase":true}}}, +{"id":37176,"name":"Cavern Leather Treads","icon":"inv_boots_chain_02","type":10,"armorType":2,"stats":[0,0,68,50,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":68,"3":50,"7":61,"22":734},"isBase":true}}}, +{"id":37177,"name":"Wand of the San'layn","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,0,25,0,19,0,47,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"stats":{"3":25,"5":19,"7":47,"14":443},"isBase":true}}}, +{"id":37178,"name":"Strategist's Belt","icon":"inv_belt_34","type":8,"armorType":4,"stats":[52,0,73,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":52,"2":73,"7":56,"22":1274},"isBase":true}}}, +{"id":37179,"name":"Infantry Assault Blade","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[24,0,49,0,0,0,0,0,19,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"0":24,"2":49,"8":19,"9":33},"isBase":true}}}, +{"id":37180,"name":"Battlemap Hide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,95,78,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":95,"3":78,"6":45,"22":867},"isBase":true}}}, +{"id":37181,"name":"Dagger of Betrayal","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,24,58,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"1":24,"2":58,"5":32},"isBase":true}}}, +{"id":37182,"name":"Helmet of the Constructor","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,93,60,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":93,"3":60,"6":62,"22":1840},"isBase":true}}}, +{"id":37183,"name":"Bindings of the Tunneler","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,42,85,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":42,"2":85,"8":25,"22":467},"isBase":true}}}, +{"id":37184,"name":"Dalronn's Jerkin","icon":"inv_chest_chain_04","type":5,"armorType":3,"stats":[0,0,113,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":113,"3":78,"4":62,"22":1588},"isBase":true}}}, +{"id":37186,"name":"Unsmashable Heavy Band","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[43,0,64,0,0,0,0,0,0,30,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":64,"9":30,"10":27},"isBase":true}}}, +{"id":37188,"name":"Plunderer's Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,62,62,0,0,0,36,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":62,"6":36,"7":60,"22":1290},"isBase":true}}}, +{"id":37189,"name":"Breeches of the Caller","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,127,62,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":127,"3":62,"4":52,"22":684},"isBase":true}}}, +{"id":37190,"name":"Enraged Feral Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,78,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":524,"weaponDamageMax":787,"weaponSpeed":2.4,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":524,"weaponDamageMax":787,"stats":{"1":78,"2":146,"23":200},"isBase":true}}}, +{"id":37191,"name":"Drake-Mounted Crossbow","icon":"inv_weapon_crossbow_28","type":14,"rangedWeaponType":2,"stats":[0,93,135,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"weaponSpeed":2.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"stats":{"1":93,"2":135,"6":83},"isBase":true}}}, +{"id":37192,"name":"Annhylde's Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,75,50,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"7":49},"isBase":true}}}, +{"id":37193,"name":"Staggering Legplates","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[83,0,109,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":83,"2":109,"5":80,"22":2048},"isBase":true}}}, +{"id":37194,"name":"Sharp-Barbed Leather Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,66,107,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":107,"8":43,"22":620},"isBase":true}}}, +{"id":37195,"name":"Band of Enchanted Growth","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,63,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":43,"4":42},"isBase":true}}}, +{"id":37196,"name":"Runecaster's Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,85,58,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":206,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":85,"3":58,"4":44,"22":587},"isBase":true}}}, +{"id":37197,"name":"Tattered Castle Drape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[42,0,66,0,0,0,0,0,0,29,28,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":206,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":42,"2":66,"9":29,"10":28,"22":391},"isBase":true}}}, +{"id":37203,"name":"Regenerative Cloth","icon":"inv_chest_cloth_10","type":5,"armorType":1,"stats":[0,0,33,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":53,"4":30,"22":389},"isBase":true}}}, +{"id":37204,"name":"Transborean Leggings","icon":"inv_pants_cloth_18","type":9,"armorType":1,"stats":[0,0,77,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":77,"3":36,"22":341},"isBase":true}}}, +{"id":37205,"name":"Transborean Mantle","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,31,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":31,"3":39,"6":16,"22":292},"isBase":true}}}, +{"id":37206,"name":"Weathered Worker Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":36,"3":16,"22":195},"isBase":true}}}, +{"id":37207,"name":"Seafarer Boots","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,53,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":53,"3":32,"22":268},"isBase":true}}}, +{"id":37208,"name":"Transborean Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,24,24,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":24,"6":24,"22":170},"isBase":true}}}, +{"id":37209,"name":"Wharfmaster's Hat","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,84,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":84,"3":30,"22":316},"isBase":true}}}, +{"id":37210,"name":"Seafarer Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,19,26,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":19,"3":26,"6":38,"22":219},"isBase":true}}}, +{"id":37211,"name":"Iceflow Footwraps","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,19,38,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":19,"3":38,"6":26,"22":268},"isBase":true}}}, +{"id":37212,"name":"Transborean Wraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,41,37,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":41,"3":37,"5":14,"22":243},"isBase":true}}}, +{"id":37213,"name":"Iceflow Wristwraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":16,"4":32,"22":170},"isBase":true}}}, +{"id":37214,"name":"Sweltering Leggings","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,55,50,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":55,"3":50,"6":19,"22":341},"isBase":true}}}, +{"id":37215,"name":"Lost Sea Oculus","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,0,39,0,0,44,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"3":39,"6":44,"7":23,"22":316},"isBase":true}}}, +{"id":37216,"name":"Facade Shield of Glyphs","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,64,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"4":42,"22":6531},"isBase":true}}}, +{"id":37217,"name":"Golden Limb Bands","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[44,0,64,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":44,"2":64,"6":42,"22":991},"isBase":true}}}, +{"id":37218,"name":"Stone-Worn Footwraps","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,83,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":83,"3":58,"6":57,"22":538},"isBase":true}}}, +{"id":37219,"name":"Custodian's Chestpiece","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,77,84,0,0,0,78,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":77,"2":84,"6":78,"8":45,"22":1067},"isBase":true}}}, +{"id":37220,"name":"Essence of Gossamer","icon":"inv_fabric_moonrag_02","type":12,"stats":[0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":111},"isBase":true}}}, +{"id":37221,"name":"Hollowed Mandible Legplates","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,62,90,0,0,0,62,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":90,"6":62,"7":41,"22":1389},"isBase":true}}}, +{"id":37222,"name":"Egg Sac Robes","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,114,62,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":114,"3":62,"7":62,"22":782},"isBase":true}}}, +{"id":37223,"name":"Sweltering Handwraps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,57,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":57,"3":21,"22":243},"isBase":true}}}, +{"id":37224,"name":"Sweltering Belt","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,24,21,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"7":39,"22":219},"isBase":true}}}, +{"id":37225,"name":"Sweltering Sandals","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,0,29,0,0,16,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":29,"6":16,"7":32,"22":268},"isBase":true}}}, +{"id":37226,"name":"Sweltering Robes","icon":"inv_chest_cloth_39","type":5,"armorType":1,"stats":[0,0,79,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":79,"3":32,"22":389},"isBase":true}}}, +{"id":37227,"name":"Seafarer Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":21,"22":292},"isBase":true}}}, +{"id":37228,"name":"Sweltering Cuffs","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,32,21,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":32,"3":21,"7":21,"22":170},"isBase":true}}}, +{"id":37230,"name":"Grotto Mist Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,73,50,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":73,"3":50,"4":59,"22":667},"isBase":true}}}, +{"id":37231,"name":"Frostspeaker Collar","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,24,0,17,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":24,"5":17,"6":21},"isBase":true}}}, +{"id":37232,"name":"Ring of the Traitor King","icon":"inv_jewelry_ring_39","type":11,"stats":[0,0,59,44,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":59,"3":44,"6":43},"isBase":true}}}, +{"id":37234,"name":"Layered Frost Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,97,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":97,"3":16,"22":316},"isBase":true}}}, +{"id":37235,"name":"Crypt Lord's Deft Blade","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,19,50,0,0,24,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":367,"weaponDamageMax":683,"weaponSpeed":2.5,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":367,"weaponDamageMax":683,"stats":{"1":19,"2":50,"5":24,"7":33},"isBase":true}}}, +{"id":37236,"name":"Insect Vestments","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,111,62,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":62,"7":64,"22":1067},"isBase":true}}}, +{"id":37237,"name":"Chitin Shell Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[63,0,93,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":63,"2":93,"6":60,"22":1840},"isBase":true}}}, +{"id":37238,"name":"Rod of the Fallen Monarch","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,54,39,0,0,37,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":54,"3":39,"6":37,"14":513},"isBase":true}}}, +{"id":37239,"name":"Layered Frost Sandals","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,57,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":57,"3":28,"22":268},"isBase":true}}}, +{"id":37240,"name":"Flamebeard's Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,71,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"6":49,"22":1024},"isBase":true}}}, +{"id":37241,"name":"Ancient Aligned Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[38,0,99,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":38,"2":99,"9":86,"22":1316},"isBase":true}}}, +{"id":37242,"name":"Sash of the Servant","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,102,65,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":102,"3":65,"6":64,"22":455},"isBase":true}}}, +{"id":37243,"name":"Treasure Seeker's Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,58,82,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":82,"5":41,"22":600},"isBase":true}}}, +{"id":37244,"name":"Fungi-Coated Boots","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,82,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":50,"4":50,"22":1092},"isBase":true}}}, +{"id":37245,"name":"Tangled Web Bindings","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,60,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":43,"22":342},"isBase":true}}}, +{"id":37254,"name":"Super Simian Sphere","icon":"inv_misc_orb_03","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"isBase":true}}}, +{"id":37255,"name":"The Interrogator","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,0,48,0,0,32,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":1.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":235,"weaponDamageMax":437,"stats":{"2":48,"5":32,"12":70,"13":70},"isBase":true}}}, +{"id":37256,"name":"Scaled Armor of Drakos","icon":"inv_chest_chain_03","type":5,"armorType":3,"stats":[0,0,111,78,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":78,"6":77,"22":1588},"isBase":true}}}, +{"id":37257,"name":"Band of Torture","icon":"inv_jewelry_ring_39","type":11,"stats":[42,0,66,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":42,"2":66,"9":28,"23":116},"isBase":true}}}, +{"id":37258,"name":"Drakewing Raiments","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,114,62,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":114,"3":62,"7":59,"22":782},"isBase":true}}}, +{"id":37260,"name":"Cloudstrider's Waraxe","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[24,0,49,0,0,0,0,0,19,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":279,"weaponDamageMax":519,"weaponSpeed":1.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":279,"weaponDamageMax":519,"stats":{"0":24,"2":49,"8":19,"9":33},"isBase":true}}}, +{"id":37261,"name":"Gloves of Radiant Light","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,83,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":83,"3":58,"7":57,"22":667},"isBase":true}}}, +{"id":37262,"name":"Azure Ringmail Leggings","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,77,77,0,0,0,78,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":77,"2":77,"6":78,"7":52,"22":1389},"isBase":true}}}, +{"id":37263,"name":"Legplates of the Oculus Guardian","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[78,60,58,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":78,"1":60,"2":58,"5":77,"22":1982},"isBase":true}}}, +{"id":37264,"name":"Pendulum of Telluric Currents","icon":"inv_misc_enggizmos_12","type":12,"stats":[0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"7":74},"isBase":true}}}, +{"id":37270,"name":"Layered Frost Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,45,38,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":45,"3":38,"6":42,"22":389},"isBase":true}}}, +{"id":37271,"name":"Dusk Watcher's Belt","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,37,21,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":37,"3":21,"4":34,"22":219},"isBase":true}}}, +{"id":37272,"name":"Wizzlenob Shoulder Covers","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,51,28,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":51,"3":28,"4":17,"22":292},"isBase":true}}}, +{"id":37273,"name":"Crimson Keeper Mitts","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,42,36,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":42,"3":36,"4":15,"22":243},"isBase":true}}}, +{"id":37274,"name":"Mender's Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,72,39,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":72,"3":39,"4":20,"22":316},"isBase":true}}}, +{"id":37275,"name":"Mantle of Congealed Anger","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,23,28,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":23,"3":28,"7":36,"22":292},"isBase":true}}}, +{"id":37276,"name":"Grek'lor's Loungewear","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,36,38,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":36,"3":38,"6":45,"22":341},"isBase":true}}}, +{"id":37277,"name":"Ermine Ruff Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,25,0,12,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":25,"5":12,"6":24,"22":195},"isBase":true}}}, +{"id":37278,"name":"BT47 Cloth Healer Belt2","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,57,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":57,"3":28,"22":219},"isBase":true}}}, +{"id":37279,"name":"BT48 Cloth Spell Bracer3","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,30,26,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":30,"3":26,"6":13,"22":170},"isBase":true}}}, +{"id":37280,"name":"Flame Hardened Waistband","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,30,32,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":30,"3":32,"6":28,"22":219},"isBase":true}}}, +{"id":37281,"name":"BT52 Cloth Healer Chest2","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,84,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":84,"3":38,"22":389},"isBase":true}}}, +{"id":37282,"name":"Cavernous Gauntlets","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,42,28,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":42,"3":28,"7":27,"22":243},"isBase":true}}}, +{"id":37283,"name":"Wandering Healer's Kilt","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,42,38,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":42,"3":38,"6":43,"22":341},"isBase":true}}}, +{"id":37284,"name":"BT55 Cloth Spell Boots4","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,24,39,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":39,"4":21,"22":268},"isBase":true}}}, +{"id":37285,"name":"BT56 Cloth Spell Legs4","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,93,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":93,"3":23,"22":341},"isBase":true}}}, +{"id":37286,"name":"BT57 Cloth Healer Glove2","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,42,28,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":42,"3":28,"6":27,"22":243},"isBase":true}}}, +{"id":37288,"name":"Catalytic Bands","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,60,43,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"6":43,"22":991},"isBase":true}}}, +{"id":37289,"name":"Sash of Phantasmal Images","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,82,58,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"4":57,"22":440},"isBase":true}}}, +{"id":37290,"name":"Dragon Prow Amulet","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[0,0,60,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":43},"isBase":true}}}, +{"id":37291,"name":"Ancient Dragon Spirit Cape","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,64,44,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":44,"7":42,"22":391},"isBase":true}}}, +{"id":37292,"name":"Ley-Guardian's Legguards","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[45,0,117,0,0,40,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":45,"2":117,"5":40,"9":77,"22":1982},"isBase":true}}}, +{"id":37293,"name":"Mask of the Watcher","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,70,90,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":70,"2":90,"8":62,"22":867},"isBase":true}}}, +{"id":37294,"name":"Crown of Unbridled Magic","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,104,69,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":104,"3":69,"4":52,"22":635},"isBase":true}}}, +{"id":37295,"name":"HF28 Cloth Spell Head4","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,35,30,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":35,"3":30,"5":53,"22":316},"isBase":true}}}, +{"id":37296,"name":"BT59 Cloth Spell Gloves4 ","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,32,27,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":32,"3":27,"5":32,"22":243},"isBase":true}}}, +{"id":37315,"name":"BT59 Leather Physical Boots4","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,37,20,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":37,"2":20,"5":27,"22":369},"isBase":true}}}, +{"id":37316,"name":"HF28 Leather Physical Legs4 ","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,37,36,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":37,"2":36,"6":48,"22":470},"isBase":true}}}, +{"id":37317,"name":"BT56 Leather Healer Boots2","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,54,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":54,"3":32,"22":369},"isBase":true}}}, +{"id":37318,"name":"BT55 Leather Physical Gloves4","icon":"inv_gauntlets_17","type":7,"armorType":2,"stats":[0,39,31,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":31,"6":16,"22":335},"isBase":true}}}, +{"id":37319,"name":"Grips of the Windswept Plains","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,31,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":31,"3":39,"4":16,"22":335},"isBase":true}}}, +{"id":37320,"name":"Spaulders of Echoing Truth","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,31,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":31,"6":16,"22":402},"isBase":true}}}, +{"id":37321,"name":"BT52 Leather Healer Legs2","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,80,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"7":22,"22":470},"isBase":true}}}, +{"id":37322,"name":"Flame Hardened Wristbindings","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,16,16,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":16,"2":16,"7":30,"22":235},"isBase":true}}}, +{"id":37323,"name":"BT48 Leather Physical Belt3","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,36,25,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":36,"2":25,"6":27,"22":302},"isBase":true}}}, +{"id":37324,"name":"BT47 Leather Physical Gloves3","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,21,59,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":59,"7":16,"22":335},"isBase":true}}}, +{"id":37325,"name":"Warsong Scout Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,16,57,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":16,"2":57,"7":21,"22":402},"isBase":true}}}, +{"id":37351,"name":"Reinforced Caribou-Hide Leggings","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,30,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":30,"2":85,"22":470},"isBase":true}}}, +{"id":37352,"name":"Regenerative Hide Harness","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":59,"3":53,"22":537},"isBase":true}}}, +{"id":37353,"name":"Reinforced Caribou-Hide Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,31,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":31,"2":33,"6":53,"22":436},"isBase":true}}}, +{"id":37354,"name":"Reinforced Caribou-Hide Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,37,67,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":37,"2":67,"8":16,"22":369},"isBase":true}}}, +{"id":37355,"name":"Reinforced Caribou-Hide Chestguard","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,38,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":38,"2":84,"22":537},"isBase":true}}}, +{"id":37356,"name":"Rhinohide Wristwraps","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,16,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":16,"2":47,"22":235},"isBase":true}}}, +{"id":37357,"name":"Shivering Healer's Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,24,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":30,"4":12,"22":195},"isBase":true}}}, +{"id":37360,"name":"Staff of Draconic Combat","icon":"inv_staff_83","type":13,"weaponType":8,"handType":4,"stats":[0,0,152,0,69,0,0,88,0,0,0,0,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":252,"weaponDamageMax":379,"weaponSpeed":2.1,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":252,"weaponDamageMax":379,"stats":{"2":152,"4":69,"7":88,"14":512},"isBase":true}}}, +{"id":37361,"name":"Cuffs of Winged Levitation","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,71,50,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":32,"7":33,"22":354},"isBase":true}}}, +{"id":37362,"name":"Leggings of Protective Auras","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,127,73,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":73,"7":73,"22":2048},"isBase":true}}}, +{"id":37363,"name":"Gauntlets of Dragon Wrath","icon":"inv_gauntlets_50","type":7,"armorType":4,"stats":[67,48,97,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":67,"1":48,"2":97,"5":38,"22":1463},"isBase":true}}}, +{"id":37364,"name":"Frostbridge Orb","icon":"inv_misc_orb_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":42},"isBase":true}}}, +{"id":37365,"name":"Bands of the Sky Ring","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,64,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":44,"6":42,"22":695},"isBase":true}}}, +{"id":37366,"name":"Drake-Champion's Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,43,80,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4228,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":43,"2":80,"5":29,"22":467},"isBase":true}}}, +{"id":37367,"name":"Echoing Stompers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[60,38,57,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":60,"1":38,"2":57,"7":56,"22":1557},"isBase":true}}}, +{"id":37368,"name":"Silent Spectator Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,74,50,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":74,"3":50,"4":58,"22":800},"isBase":true}}}, +{"id":37369,"name":"Sorrowgrave's Breeches","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,129,70,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":129,"3":70,"6":59,"22":684},"isBase":true}}}, +{"id":37370,"name":"Cuffs of the Trussed Hall","icon":"inv_bracer_04","type":6,"armorType":1,"stats":[0,0,63,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":43,"4":43,"22":342},"isBase":true}}}, +{"id":37371,"name":"Ring of the Frenzied Wolvar","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,63,44,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":44,"7":43},"isBase":true}}}, +{"id":37373,"name":"Massive Spaulders of the Jormungar","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,58,87,0,0,33,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":87,"5":33,"6":41,"22":1191},"isBase":true}}}, +{"id":37374,"name":"Ravenous Leggings of the Furbolg","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,62,128,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":128,"6":52,"22":934},"isBase":true}}}, +{"id":37375,"name":"Rhinohide Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,39,31,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":31,"5":16,"22":335},"isBase":true}}}, +{"id":37376,"name":"Ferocious Pauldrons of the Rhino","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,82,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":50,"6":49,"22":1699},"isBase":true}}}, +{"id":37377,"name":"Netherbreath Spellblade","icon":"inv_sword_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,54,0,26,0,34,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"stats":{"2":54,"4":26,"6":34,"14":443},"isBase":true}}}, +{"id":37378,"name":"Sealskin Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,47,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":47,"3":16,"22":235},"isBase":true}}}, +{"id":37379,"name":"Skadi's Iron Belt","icon":"inv_belt_29","type":8,"armorType":4,"stats":[49,0,87,0,0,0,0,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":49,"2":87,"9":39,"10":30,"22":1274},"isBase":true}}}, +{"id":37380,"name":"Whalehunter Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,53,45,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":45,"6":22,"22":470},"isBase":true}}}, +{"id":37382,"name":"Charred Drakehide Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,39,30,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":30,"7":16,"22":302},"isBase":true}}}, +{"id":37383,"name":"Seared Scale Cape","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,16,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":16,"2":46,"22":195},"isBase":true}}}, +{"id":37384,"name":"Staff of Wayward Principles","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,137,0,56,0,0,78,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":262,"weaponDamageMax":393,"weaponSpeed":2.4,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":262,"weaponDamageMax":393,"stats":{"2":137,"4":56,"7":78,"14":446},"isBase":true}}}, +{"id":37385,"name":"Seared Harness","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,55,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":55,"2":45,"5":22,"22":537},"isBase":true}}}, +{"id":37386,"name":"Ruby Heart Spaulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,33,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":33,"3":38,"4":16,"22":402},"isBase":true}}}, +{"id":37387,"name":"Charred Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":32,"5":16,"22":369},"isBase":true}}}, +{"id":37388,"name":"Reinforced Elastic Band","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,0,22,0,0,38,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":22,"6":38,"7":16,"22":302},"isBase":true}}}, +{"id":37389,"name":"Crenelation Leggings","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,111,70,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":70,"6":74,"22":934},"isBase":true}}}, +{"id":37390,"name":"Meteorite Whetstone","icon":"inv_misc_stonetablet_02","type":12,"stats":[0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"6":74},"isBase":true}}}, +{"id":37391,"name":"Rhinohide Mask","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,52,45,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":52,"2":45,"7":23,"22":436},"isBase":true}}}, +{"id":37392,"name":"Soggy Hide Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,32,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":32,"5":16,"22":402},"isBase":true}}}, +{"id":37393,"name":"Shadewrap Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":21,"22":335},"isBase":true}}}, +{"id":37394,"name":"Marshwalker Waistguard","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,21,24,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":24,"7":39,"22":302},"isBase":true}}}, +{"id":37395,"name":"Ornamented Plate Regalia","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[0,0,111,61,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":61,"4":62,"22":2265},"isBase":true}}}, +{"id":37396,"name":"Whalehunter Gloves","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,23,26,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":23,"2":26,"6":37,"22":335},"isBase":true}}}, +{"id":37397,"name":"Gold Amulet of Kings","icon":"inv_jewelry_amulet_03","type":2,"stats":[47,0,57,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":47,"2":57,"6":43},"isBase":true}}}, +{"id":37398,"name":"Mantle of Discarded Ways","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,82,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"6":57,"22":1191},"isBase":true}}}, +{"id":37399,"name":"Floodplain Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,31,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":31,"3":39,"4":16,"22":402},"isBase":true}}}, +{"id":37400,"name":"Whalehunter Cuffs","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,30,0,0,0,0,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":30,"6":12,"7":16,"22":235},"isBase":true}}}, +{"id":37401,"name":"Red Sword of Courage","icon":"inv_sword_117","type":13,"weaponType":9,"handType":2,"stats":[25,0,58,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":1.6,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"stats":{"0":25,"2":58,"5":26,"9":38},"isBase":true}}}, +{"id":37402,"name":"Floodplain Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,78,30,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":78,"3":30,"4":21,"22":537},"isBase":true}}}, +{"id":37403,"name":"Marshwalker Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":42,"22":369},"isBase":true}}}, +{"id":37404,"name":"Floodplain Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":59,"3":53,"22":436},"isBase":true}}}, +{"id":37405,"name":"Marshwalker Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":38,"2":41,"22":402},"isBase":true}}}, +{"id":37406,"name":"Denwatcher's Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,33,51,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":51,"4":30,"22":470},"isBase":true}}}, +{"id":37407,"name":"Sovereign's Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,66,87,0,0,43,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":87,"5":43,"6":51,"22":923},"isBase":true}}}, +{"id":37408,"name":"Girdle of Bane","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,94,66,0,48,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"5":48,"6":38,"22":455},"isBase":true}}}, +{"id":37409,"name":"Gilt-Edged Leather Gauntlets","icon":"inv_gauntlets_18","type":7,"armorType":2,"stats":[0,66,97,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":97,"5":66,"22":689},"isBase":true}}}, +{"id":37414,"name":"Farseer's Headpiece","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,48,27,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":48,"2":27,"5":24,"22":655},"isBase":true}}}, +{"id":37415,"name":"Tundrastrider Ringmail","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,59,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":59,"3":53,"22":806},"isBase":true}}}, +{"id":37417,"name":"Westrift Handcovers","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,27,26,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":27,"2":26,"7":36,"22":504},"isBase":true}}}, +{"id":37418,"name":"Seaspeaker Legguards","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,36,48,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":36,"3":48,"7":37,"22":705},"isBase":true}}}, +{"id":37419,"name":"Seaspeaker Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,24,21,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":21,"6":39,"22":604},"isBase":true}}}, +{"id":37420,"name":"Sharkproof Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,20,0,18,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":20,"3":18,"7":39,"22":554},"isBase":true}}}, +{"id":37421,"name":"Waverunner Waistband","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,26,37,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":26,"2":37,"6":31,"22":453},"isBase":true}}}, +{"id":37422,"name":"Westrift Wristguards","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,24,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":30,"2":24,"6":12,"22":353},"isBase":true}}}, +{"id":37423,"name":"Sharkproof Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,53,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":59,"22":655},"isBase":true}}}, +{"id":37424,"name":"Plainhunter's Epaulettes","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,28,0,0,0,27,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":28,"5":27,"6":28,"22":604},"isBase":true}}}, +{"id":37425,"name":"Tundrastrider Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,31,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":31,"3":39,"6":16,"22":554},"isBase":true}}}, +{"id":37426,"name":"Rusty Mesh Leggings","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,52,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":52,"2":42,"5":28,"22":705},"isBase":true}}}, +{"id":37427,"name":"Plainhunter's Waistband","icon":"inv_belt_21","type":8,"armorType":3,"stats":[0,28,41,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":28,"2":41,"6":28,"22":453},"isBase":true}}}, +{"id":37428,"name":"Ring-Ridden Wrist Protectors","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,16,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":16,"3":30,"6":16,"22":353},"isBase":true}}}, +{"id":37429,"name":"Glimmering Ringmail Gloves","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":24,"6":21,"22":504},"isBase":true}}}, +{"id":37433,"name":"Layered Scale Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,39,24,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":39,"2":24,"6":21,"22":554},"isBase":true}}}, +{"id":37434,"name":"Cauterizing Chain Strand","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":42,"3":39,"22":453},"isBase":true}}}, +{"id":37435,"name":"Flame Infused Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":30,"2":32,"22":353},"isBase":true}}}, +{"id":37436,"name":"Seaspeaker Gloves","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":39,"6":21,"22":504},"isBase":true}}}, +{"id":37437,"name":"Plainhunter's Chestpiece","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,23,45,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":23,"2":45,"6":53,"22":806},"isBase":true}}}, +{"id":37439,"name":"Spiked Magmoth Gloves","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,21,30,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":30,"7":38,"22":504},"isBase":true}}}, +{"id":37440,"name":"Spiked Magmoth Chestpiece","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,53,33,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":33,"7":30,"22":806},"isBase":true}}}, +{"id":37441,"name":"Spiked Magmoth Mantle","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,21,58,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":58,"5":16,"22":604},"isBase":true}}}, +{"id":37442,"name":"Chilled Mail Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,0,21,40,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":21,"4":40,"7":16,"22":554},"isBase":true}}}, +{"id":37443,"name":"Spiked Magmoth Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,37,57,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":37,"2":57,"6":38,"22":655},"isBase":true}}}, +{"id":37444,"name":"Wavekeeper's Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,33,53,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":53,"7":30,"22":655},"isBase":true}}}, +{"id":37446,"name":"Tank Commander's Treads","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,28,40,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":28,"2":40,"7":28,"22":554},"isBase":true}}}, +{"id":37447,"name":"Reinforced Mendicant's Cowl","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,53,45,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":53,"2":45,"5":22,"22":655},"isBase":true}}}, +{"id":37448,"name":"BT47 Mail Physical Legs3 ","icon":"inv_pants_mail_01","type":9,"armorType":3,"stats":[0,30,79,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":30,"2":79,"8":22,"22":705},"isBase":true}}}, +{"id":37450,"name":"BT48 Mail Healer Chest3 ","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,0,30,52,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"3":30,"4":52,"6":22,"22":806},"isBase":true}}}, +{"id":37451,"name":"BT49 Mail Physical Belt3","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,27,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":27,"2":42,"6":28,"22":453},"isBase":true}}}, +{"id":37453,"name":"BT59 Mail Physical Belt4","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,21,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":21,"2":62,"22":453},"isBase":true}}}, +{"id":37454,"name":"HF28 Mail Physical Chest4","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,30,80,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":30,"2":80,"6":22,"22":806},"isBase":true}}}, +{"id":37455,"name":"BT56 Mail Healer Gloves2","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,41,28,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":41,"3":28,"7":28,"22":504},"isBase":true}}}, +{"id":37456,"name":"Cauterizing Chain Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"6":22,"22":705},"isBase":true}}}, +{"id":37457,"name":"BT55 Mail Physical Legs4","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,38,51,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":38,"2":51,"6":39,"22":705},"isBase":true}}}, +{"id":37458,"name":"Wristguards of Rocky Horror","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,30,0,0,0,16,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"1":30,"5":16,"6":12,"22":353},"isBase":true}}}, +{"id":37461,"name":"Tidebreaker Trident","icon":"inv_spear_04","type":13,"weaponType":6,"handType":4,"stats":[0,27,98,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"weaponDamageMin":456,"weaponDamageMax":685,"weaponSpeed":3.4,"ilvl":145,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"145":{"randPropPoints":88,"weaponDamageMin":456,"weaponDamageMax":685,"stats":{"1":27,"2":98,"6":40},"isBase":true}}}, +{"id":37462,"name":"Sea King's Crown","icon":"inv_helmet_13","type":1,"armorType":1,"stats":[0,0,32,34,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":145,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"145":{"randPropPoints":77,"stats":{"2":32,"3":34,"5":29,"6":34,"22":336},"isBase":true}}}, +{"id":37463,"name":"Winterfin Patch of Honor","icon":"inv_helmet_46","type":1,"armorType":2,"stats":[0,40,51,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,464,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":145,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"145":{"randPropPoints":77,"stats":{"1":40,"2":51,"5":25,"6":34,"22":464},"isBase":true}}}, +{"id":37466,"name":"BT59 Plate Physical Chest4","icon":"inv_chest_plate15","type":5,"armorType":4,"stats":[38,0,57,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":38,"2":57,"7":37,"22":1172},"isBase":true}}}, +{"id":37468,"name":"HF28 Plate Physical Boots4","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[39,0,24,0,0,0,40,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"2":24,"6":40,"7":21,"22":806},"isBase":true}}}, +{"id":37469,"name":"BT57 Plate Healer Bracer2","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":30,"3":30,"22":513},"isBase":true}}}, +{"id":37470,"name":"BT56 Plate Physical Shoulders4","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[39,0,24,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"2":24,"6":20,"22":879},"isBase":true}}}, +{"id":37471,"name":"Girdle of Ripped Space","icon":"inv_belt_35","type":8,"armorType":4,"stats":[16,0,58,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":16,"2":58,"6":21,"22":659},"isBase":true}}}, +{"id":37472,"name":"BT49 Plate Physical Bracer","icon":"inv_bracer_06","type":6,"armorType":4,"stats":[21,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"0":21,"6":21,"7":22,"22":513},"isBase":true}}}, +{"id":37473,"name":"BT48 Plate Healer Head2","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,33,30,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":30,"6":53,"22":952},"isBase":true}}}, +{"id":37474,"name":"BT47 Plate Physical Boots3","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[16,0,58,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":16,"2":58,"5":21,"22":806},"isBase":true}}}, +{"id":37475,"name":"Benign Crusader's Plate","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,31,53,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":31,"3":53,"6":30,"22":1025},"isBase":true}}}, +{"id":37476,"name":"Grek'lor's Breastplate of Bloodrage","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[30,0,80,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":30,"2":80,"6":21,"22":1172},"isBase":true}}}, +{"id":37477,"name":"Lost Crusader Chestplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,33,30,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":30,"4":52,"22":1172},"isBase":true}}}, +{"id":37478,"name":"Amberplate Grips","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,0,0,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"6":16,"7":21,"22":732},"isBase":true}}}, +{"id":37479,"name":"Amberplate Legguards","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[30,0,80,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":30,"2":80,"6":21,"22":1025},"isBase":true}}}, +{"id":37480,"name":"Mightstone Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[30,0,33,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":30,"2":33,"6":53,"22":952},"isBase":true}}}, +{"id":37481,"name":"Chestguard of Salved Wounds","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,33,53,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":33,"3":53,"6":30,"22":1172},"isBase":true}}}, +{"id":37482,"name":"Mightstone Legplates","icon":"inv_pants_plate_09","type":9,"armorType":4,"stats":[24,0,36,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":24,"2":36,"6":55,"22":1025},"isBase":true}}}, +{"id":37483,"name":"Seabone Heaume","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,80,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":80,"3":30,"6":22,"22":952},"isBase":true}}}, +{"id":37484,"name":"Mendicant's Treads","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,62,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":62,"3":21,"22":806},"isBase":true}}}, +{"id":37485,"name":"Clam Collector Gauntlets","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[21,0,58,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"2":58,"5":16,"22":732},"isBase":true}}}, +{"id":37486,"name":"Landlocked Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[16,0,45,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"0":16,"2":45,"6":12,"22":513},"isBase":true}}}, +{"id":37487,"name":"Seabone Legplates","icon":"inv_pants_04","type":9,"armorType":4,"stats":[38,0,57,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1025,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":38,"2":57,"7":38,"22":1025},"isBase":true}}}, +{"id":37505,"name":"Battle Leader's Breastplate","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[53,22,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":53,"1":22,"6":30,"22":1172},"isBase":true}}}, +{"id":37506,"name":"Bogstrok Plate Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[39,0,24,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"2":24,"8":21,"22":732},"isBase":true}}}, +{"id":37507,"name":"Chilled Shoulderplates","icon":"inv_shoulder_76","type":3,"armorType":4,"stats":[16,0,58,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":16,"2":58,"6":21,"22":879},"isBase":true}}}, +{"id":37508,"name":"Sinking Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":39,"6":21,"22":879},"isBase":true}}}, +{"id":37509,"name":"Seething Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[39,0,0,0,0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"7":21,"8":16,"22":659},"isBase":true}}}, +{"id":37510,"name":"Wristguards of Edification","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,18,16,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":16,"6":30,"22":513},"isBase":true}}}, +{"id":37511,"name":"Crucible Waistguard","icon":"inv_belt_32","type":8,"armorType":4,"stats":[21,0,24,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"2":24,"6":39,"22":659},"isBase":true}}}, +{"id":37512,"name":"Gauntlets of the Crimson Guardian","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":42,"3":39,"22":732},"isBase":true}}}, +{"id":37513,"name":"Helm of the Crimson Drakonid","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[22,0,0,0,0,0,53,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":22,"6":53,"8":30,"22":952},"isBase":true}}}, +{"id":37514,"name":"Freed Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,24,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"0":30,"2":24,"5":12,"22":513},"isBase":true}}}, +{"id":37515,"name":"Lost Crusader Waistguard","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,40,28,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":40,"3":28,"6":28,"22":659},"isBase":true}}}, +{"id":37516,"name":"Chilled Greaves","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[21,0,0,0,0,0,39,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":21,"6":39,"7":16,"22":806},"isBase":true}}}, +{"id":37517,"name":"Chilled Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[39,0,0,0,0,0,16,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"0":39,"6":16,"7":21,"22":879},"isBase":true}}}, +{"id":37518,"name":"Amberplate Waistguard","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,58,0,0,0,21,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":58,"6":21,"8":16,"22":659},"isBase":true}}}, +{"id":37519,"name":"Amberplate Headguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[30,0,80,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":30,"2":80,"6":22,"22":952},"isBase":true}}}, +{"id":37520,"name":"Plainkeeper Blockade","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":45,"9":21,"22":3134},"isBase":true}}}, +{"id":37521,"name":"Icechill Buckler","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,24,0,0,0,0,0,12,0,30,0,0,0,0,0,0,0,0,0,0,0,3134,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"8":12,"10":30,"22":3134},"isBase":true}}}, +{"id":37522,"name":"Earthborn Greaves","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,24,39,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":24,"3":39,"6":21,"22":806},"isBase":true}}}, +{"id":37523,"name":"Rigid Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,45,0,0,0,0,0,16,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":45,"8":16,"12":24,"13":24},"isBase":true}}}, +{"id":37524,"name":"Scout's Signet Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,0,0,0,0,16,12,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"6":16,"7":12,"12":60,"13":60},"isBase":true}}}, +{"id":37525,"name":"Deep Sea Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,18,30,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":30,"5":16},"isBase":true}}}, +{"id":37526,"name":"Thin Dexterity Enhancing Tube","icon":"inv_gizmo_felironcasing","type":11,"stats":[0,0,18,0,0,0,30,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"6":30,"12":32,"13":32},"isBase":true}}}, +{"id":37527,"name":"Shimmering Band","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,31,21,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":31,"3":21,"6":21},"isBase":true}}}, +{"id":37528,"name":"Dry Earth Circle","icon":"inv_jewelry_ring_17","type":11,"stats":[0,0,24,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":30,"4":12},"isBase":true}}}, +{"id":37529,"name":"Shivering Healer's Ring","icon":"inv_jewelry_ring_22","type":11,"stats":[0,0,45,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":45,"3":12,"4":16},"isBase":true}}}, +{"id":37530,"name":"Icy Ripper Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,31,0,0,0,21,0,0,0,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":31,"6":21,"12":42,"13":42},"isBase":true}}}, +{"id":37531,"name":"Circle of Frigid Wind","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":45,"3":12,"4":16},"isBase":true}}}, +{"id":37532,"name":"BT49 Spell Ring4","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,46,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":46,"3":21},"isBase":true}}}, +{"id":37533,"name":"BT52 Physical Ring5 ","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,24,0,0,12,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"5":12,"8":30},"isBase":true}}}, +{"id":37535,"name":"Stave of the Windborn","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,55,36,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"stats":{"6":55,"7":36,"14":217},"isBase":true}}}, +{"id":37536,"name":"BT57 Fast Mace2","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,22,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":126,"weaponDamageMax":235,"stats":{"6":22,"8":20},"isBase":true}}}, +{"id":37537,"name":"Stave of the Spiritcaller","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,52,0,0,38,0,0,0,0,0,0,217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"weaponSpeed":3,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":176,"weaponDamageMax":264,"stats":{"4":52,"7":38,"14":217},"isBase":true}}}, +{"id":37541,"name":"Giant Turtle Collar","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,18,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":30,"6":16},"isBase":true}}}, +{"id":37543,"name":"Pugnacious Collar","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,52,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":52,"5":12},"isBase":true}}}, +{"id":37544,"name":"Drakebone Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,0,0,0,0,0,12,0,30,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"6":12,"8":30,"12":32,"13":32},"isBase":true}}}, +{"id":37545,"name":"Graven Shoveltusk Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,47,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":47,"6":16},"isBase":true}}}, +{"id":37546,"name":"Choker of the Northern Wind","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,45,12,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":45,"3":12,"5":16},"isBase":true}}}, +{"id":37547,"name":"Fireborn Warhammer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,11,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":197,"weaponDamageMax":367,"weaponSpeed":2.5,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":197,"weaponDamageMax":367,"stats":{"7":11,"12":52,"13":52},"isBase":true}}}, +{"id":37548,"name":"Iceflow Collar","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,24,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":30,"4":30},"isBase":true}}}, +{"id":37549,"name":"BT49 Healer Neck2","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,18,30,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":30,"4":16},"isBase":true}}}, +{"id":37555,"name":"Warsong's Wrath","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"7":38},"isBase":true}}}, +{"id":37556,"name":"Talisman of the Tundra","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"7":38},"isBase":true}}}, +{"id":37557,"name":"Warsong's Fervor","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"6":31},"isBase":true}}}, +{"id":37558,"name":"Tidal Boon","icon":"inv_jewelry_necklace_32","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"4":40},"isBase":true}}}, +{"id":37559,"name":"Serrah's Star","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"6":38},"isBase":true}}}, +{"id":37560,"name":"Vial of Renewal","icon":"inv_valentinecolognebottle","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":38},"isBase":true}}}, +{"id":37561,"name":"Touch of the Elements","icon":"inv_crown_13","type":12,"stats":[0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"5":41},"isBase":true}}}, +{"id":37562,"name":"Fury of the Crimson Drake","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"7":36},"isBase":true}}}, +{"id":37563,"name":"BT57 Spell Trinket4","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":31},"isBase":true}}}, +{"id":37564,"name":"Scaled Flame Cloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,36,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":36,"3":16,"22":195},"isBase":true}}}, +{"id":37566,"name":"Durable Worghide Cape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,0,0,12,16,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"5":12,"6":16,"12":60,"13":60,"22":195},"isBase":true}}}, +{"id":37578,"name":"BT52 Spell Trinket3 ","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"3":38},"isBase":true}}}, +{"id":37587,"name":"Ymirjar Physician's Robe","icon":"inv_chest_cloth_07","type":5,"armorType":2,"stats":[0,0,113,78,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":1196,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":113,"3":78,"4":77,"22":1067},"isBase":true}}}, +{"id":37590,"name":"Bands of Fading Light","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,63,35,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":1196,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":35,"7":35,"22":991},"isBase":true}}}, +{"id":37591,"name":"Nerubian Shield Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[43,0,64,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,132,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":64,"9":21,"23":132},"isBase":true}}}, +{"id":37592,"name":"Brood Plague Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,92,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":92,"3":60,"6":60,"22":1290},"isBase":true}}}, +{"id":37593,"name":"Sprinting Shoulderpads","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,58,102,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":102,"8":42,"22":800},"isBase":true}}}, +{"id":37594,"name":"Elder Headpiece","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,130,78,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":130,"3":78,"4":55,"22":635},"isBase":true}}}, +{"id":37595,"name":"Necklace of Taldaram","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,64,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"5":43},"isBase":true}}}, +{"id":37597,"name":"Direbrew's Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":150,"weaponDamageMax":280,"weaponSpeed":2,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":150,"weaponDamageMax":280,"stats":{"1":19,"2":34},"isBase":true}}}, +{"id":37611,"name":"Epic Bland Dagger","icon":"inv_sword_12","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":254,"weaponDamageMax":254,"weaponSpeed":1.8,"ilvl":146,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":44,"weaponDamageMin":254,"weaponDamageMax":254,"isBase":true}}}, +{"id":37612,"name":"Bonegrinder Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[70,0,91,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":70,"2":91,"6":70,"22":2265},"isBase":true}}}, +{"id":37613,"name":"Flame Sphere Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,78,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":78,"3":44,"4":30,"22":342},"isBase":true}}}, +{"id":37614,"name":"Gauntlets of the Plundering Geist","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,58,75,0,0,0,44,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":75,"6":44,"7":38,"22":992},"isBase":true}}}, +{"id":37615,"name":"Titanium Compound Bow","icon":"inv_weapon_bow_35","type":14,"rangedWeaponType":1,"stats":[0,77,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"weaponSpeed":2.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"stats":{"1":77,"2":174},"isBase":true}}}, +{"id":37616,"name":"Kilt of the Forgotten One","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,112,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":112,"3":78,"4":79,"22":934},"isBase":true}}}, +{"id":37617,"name":"Staff of Sinister Claws","icon":"inv_staff_37","type":13,"weaponType":8,"handType":4,"stats":[0,0,144,0,51,0,0,78,0,0,0,0,0,0,446,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":229,"weaponDamageMax":344,"weaponSpeed":2.1,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":229,"weaponDamageMax":344,"stats":{"2":144,"4":51,"7":78,"14":446},"isBase":true}}}, +{"id":37618,"name":"Greaves of Ancient Evil","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[57,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":57,"2":87,"9":56,"22":1557},"isBase":true}}}, +{"id":37619,"name":"Wand of Ahn'kahet","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,56,39,37,0,0,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":56,"3":39,"4":37,"14":513},"isBase":true}}}, +{"id":37620,"name":"Bracers of the Herald","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[34,0,75,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":34,"2":75,"10":61,"22":1024},"isBase":true}}}, +{"id":37622,"name":"Skirt of the Old Kingdom","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,127,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":90,"22":707},"isBase":true}}}, +{"id":37623,"name":"Fiery Obelisk Handguards","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,96,66,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":96,"3":66,"6":66,"22":1026},"isBase":true}}}, +{"id":37624,"name":"Stained-Glass Shard Ring","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,30,78,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4494,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":30,"2":78,"7":43},"isBase":true}}}, +{"id":37625,"name":"Web Winder Gloves","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,84,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4494,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4277,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":58,"7":57,"22":1416},"isBase":true}}}, +{"id":37626,"name":"Wand of Sseratus","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,47,33,33,0,0,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"stats":{"2":47,"3":33,"4":33,"14":443},"isBase":true}}}, +{"id":37627,"name":"Snake Den Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[50,0,85,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"7":50,"22":1699},"isBase":true}}}, +{"id":37628,"name":"Slad'ran's Coiled Cord","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,82,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"4":58,"22":893},"isBase":true}}}, +{"id":37629,"name":"Slithering Slippers","icon":"inv_boots_cloth_15","type":10,"armorType":1,"stats":[0,0,82,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":58,"6":57,"22":538},"isBase":true}}}, +{"id":37630,"name":"Shroud of Moorabi","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,72,44,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":72,"3":44,"4":32,"22":391},"isBase":true}}}, +{"id":37631,"name":"Fist of the Deity","icon":"inv_sword_draenei_05","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,25,0,38,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"5":25,"7":38,"12":66,"13":66},"isBase":true}}}, +{"id":37632,"name":"Mojo Frenzy Greaves","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,86,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":86,"3":50,"6":50,"22":1557},"isBase":true}}}, +{"id":37633,"name":"Ground Tremor Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[48,0,93,0,0,37,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":48,"2":93,"5":37,"9":61,"22":1840},"isBase":true}}}, +{"id":37634,"name":"Bracers of the Divine Elemental","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,60,43,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"6":43,"22":467},"isBase":true}}}, +{"id":37635,"name":"Pauldrons of the Colossus","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"2":87,"10":46,"22":1699},"isBase":true}}}, +{"id":37636,"name":"Helm of Cheated Fate","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,78,138,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":78,"2":138,"7":55,"22":867},"isBase":true}}}, +{"id":37637,"name":"Living Mojo Belt","icon":"inv_belt_14","type":8,"armorType":1,"stats":[0,0,95,50,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":95,"3":50,"6":42,"22":440},"isBase":true}}}, +{"id":37638,"name":"Offering of Sacrifice","icon":"spell_holy_sealofsacrifice","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,550,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"23":550},"isBase":true}}}, +{"id":37639,"name":"Grips of the Beast God","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,50,77,0,0,40,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":77,"5":40,"6":37,"22":992},"isBase":true}}}, +{"id":37640,"name":"Boots of Transformation","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,82,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":50,"4":50,"22":734},"isBase":true}}}, +{"id":37641,"name":"Arcane Flame Altar-Garb","icon":"inv_chest_cloth_71","type":5,"armorType":1,"stats":[0,0,130,78,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":130,"3":78,"6":60,"22":782},"isBase":true}}}, +{"id":37642,"name":"Hemorrhaging Circle","icon":"inv_jewelry_ring_39","type":11,"stats":[0,49,95,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":49,"2":95,"8":33},"isBase":true}}}, +{"id":37643,"name":"Sash of Blood Removal","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,94,66,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"7":66,"22":620},"isBase":true}}}, +{"id":37644,"name":"Gored Hide Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,90,172,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":90,"2":172,"5":52,"22":965},"isBase":true}}}, +{"id":37645,"name":"Horn-Tipped Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[38,0,97,0,0,0,0,0,67,48,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":38,"2":97,"8":67,"9":48,"22":1463},"isBase":true}}}, +{"id":37646,"name":"Burning Skull Pendant","icon":"spell_fire_totemofwrath","type":2,"stats":[44,0,63,0,0,0,0,0,0,28,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":4416,"otherName":"Trash"}},{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":44,"2":63,"9":28,"10":29},"isBase":true}}}, +{"id":37647,"name":"Cloak of Bloodied Waters","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[60,0,37,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":60,"2":37,"6":34,"22":391},"isBase":true}}}, +{"id":37648,"name":"Belt of Tasseled Lanterns","icon":"inv_belt_08","type":8,"armorType":3,"stats":[0,50,69,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4416,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":69,"6":38,"7":38,"22":893},"isBase":true}}}, +{"id":37649,"name":"Quarry Chisel","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,48,0,0,33,0,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"2":48,"5":33,"12":68,"13":68},"isBase":true}}}, +{"id":37650,"name":"Shardling Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,112,70,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":112,"3":70,"7":70,"22":1982},"isBase":true}}}, +{"id":37651,"name":"The Prospector's Prize","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,27,29,0,51,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":27,"3":29,"5":51,"7":43},"isBase":true}}}, +{"id":37652,"name":"Spaulders of Krystallus","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,81,50,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":58,"22":800},"isBase":true}}}, +{"id":37653,"name":"Sword of Justice","icon":"inv_sword_102","type":13,"weaponType":9,"handType":4,"stats":[70,0,105,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":830,"weaponDamageMax":1246,"weaponSpeed":3.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":830,"weaponDamageMax":1246,"stats":{"0":70,"2":105,"6":77},"isBase":true}}}, +{"id":37654,"name":"Sabatons of the Ages","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,0,84,58,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":58,"7":57,"22":1092},"isBase":true}}}, +{"id":37655,"name":"Mantle of the Tribunal","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,100,58,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":100,"3":58,"7":42,"22":587},"isBase":true}}}, +{"id":37656,"name":"Raging Construct Bands","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,43,53,0,0,18,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":43,"2":53,"5":18,"6":43,"22":695},"isBase":true}}}, +{"id":37657,"name":"Spark of Life","icon":"inv_misc_enggizmos_06","type":12,"stats":[0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"7":73},"isBase":true}}}, +{"id":37658,"name":"Sun-Emblazoned Chestplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[53,0,117,0,0,51,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":53,"2":117,"5":51,"9":60,"22":2265},"isBase":true}}}, +{"id":37660,"name":"Forge Ember","icon":"spell_fire_fire","type":12,"stats":[0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"6":73},"isBase":true}}}, +{"id":37666,"name":"Boots of the Whirling Mist","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,58,108,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":108,"5":38,"22":734},"isBase":true}}}, +{"id":37667,"name":"The Fleshshaper","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":2,"stats":[0,22,86,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"stats":{"1":22,"2":86,"5":27},"isBase":true}}}, +{"id":37668,"name":"Bands of the Stoneforge","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[50,0,73,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":73,"7":50,"22":1024},"isBase":true}}}, +{"id":37669,"name":"Leggings of the Stone Halls","icon":"inv_pants_leather_09","type":9,"armorType":3,"stats":[0,90,125,0,0,0,64,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":90,"2":125,"6":64,"7":60,"22":1436},"isBase":true}}}, +{"id":37670,"name":"Sjonnir's Girdle","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":66,"22":1316},"isBase":true}}}, +{"id":37671,"name":"Refined Ore Gloves","icon":"inv_gauntlets_22","type":7,"armorType":4,"stats":[57,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":57,"2":87,"9":56,"22":1416},"isBase":true}}}, +{"id":37672,"name":"Patina-Coated Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,112,78,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":112,"3":78,"7":78,"22":2265},"isBase":true}}}, +{"id":37673,"name":"Dark Runic Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,81,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4264,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"7":50,"22":587},"isBase":true}}}, +{"id":37675,"name":"Legplates of Steel Implants","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[70,0,103,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":70,"2":103,"7":62,"22":1982},"isBase":true}}}, +{"id":37678,"name":"Bile-Cured Gloves","icon":"inv_gauntlets_21","type":7,"armorType":2,"stats":[0,58,111,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":111,"6":33,"22":667},"isBase":true}}}, +{"id":37679,"name":"Spaulders of the Abomination","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,50,66,0,0,0,30,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":66,"6":30,"7":50,"22":1191},"isBase":true}}}, +{"id":37680,"name":"Belt of Unified Souls","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,94,58,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":94,"3":58,"5":42,"22":440},"isBase":true}}}, +{"id":37681,"name":"Gavel of the Fleshcrafter","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,74,0,32,0,0,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":169,"weaponDamageMax":314,"weaponSpeed":2.3,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":169,"weaponDamageMax":314,"stats":{"2":74,"4":32,"14":443},"isBase":true}}}, +{"id":37682,"name":"Bindings of Dark Will","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[42,0,66,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":42,"2":66,"10":43,"22":991},"isBase":true}}}, +{"id":37683,"name":"Necromancer's Amulet","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,64,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"4":42},"isBase":true}}}, +{"id":37684,"name":"Forgotten Shadow Hood","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,90,70,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":90,"3":70,"4":66,"22":635},"isBase":true}}}, +{"id":37685,"name":"Mobius Band","icon":"inv_jewelry_ring_71","type":11,"stats":[0,43,83,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":43,"2":83,"5":25},"isBase":true}}}, +{"id":37686,"name":"Cracked Epoch Grasps","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,84,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":50,"6":49,"22":992},"isBase":true}}}, +{"id":37687,"name":"Gloves of Distorted Time","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,81,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":53,"22":489},"isBase":true}}}, +{"id":37688,"name":"Legplates of the Infinite Drakonid","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[78,0,117,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":78,"2":117,"9":75,"22":1982},"isBase":true}}}, +{"id":37689,"name":"Pendant of the Nathrezim","icon":"inv_jewelry_necklace_43","type":2,"stats":[43,0,64,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":64,"10":42},"isBase":true}}}, +{"id":37690,"name":"Pauldrons of Destiny","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,84,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":58,"4":58,"22":1699},"isBase":true}}}, +{"id":37691,"name":"Mantle of Deceit","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,104,58,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":104,"3":58,"4":42,"22":587},"isBase":true}}}, +{"id":37692,"name":"Pierce's Pistol","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,109,0,0,0,45,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"weaponSpeed":2.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"stats":{"1":109,"5":45,"6":58},"isBase":true}}}, +{"id":37693,"name":"Greed","icon":"inv_weapon_hand_06","type":13,"weaponType":3,"handType":2,"stats":[0,29,88,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":29,"2":88,"6":22},"isBase":true}}}, +{"id":37694,"name":"Band of Guile","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[0,0,75,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"7":50},"isBase":true}}}, +{"id":37695,"name":"Legguards of Nature's Power","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,0,128,89,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":89,"6":89,"22":1436},"isBase":true}}}, +{"id":37696,"name":"Plague-Infected Bracers","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,71,50,28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":28,"6":36,"22":482},"isBase":true}}}, +{"id":37697,"name":"Trade District Knife","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,24,58,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"1":24,"2":58,"5":33},"isBase":true}}}, +{"id":37698,"name":"Spaulders of Elder's Square","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[60,0,79,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":60,"2":79,"6":58,"22":1699},"isBase":true}}}, +{"id":37699,"name":"Festival Lane Girdle","icon":"inv_belt_17","type":8,"armorType":4,"stats":[0,0,86,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":86,"3":58,"4":58,"22":1274},"isBase":true}}}, +{"id":37712,"name":"Terrace Defence Boots","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[58,0,63,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"2":63,"10":56,"22":1557},"isBase":true}}}, +{"id":37714,"name":"Batrider's Cord","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,58,101,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":101,"7":42,"22":600},"isBase":true}}}, +{"id":37715,"name":"Cowl of the Dire Troll","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,112,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":112,"3":78,"4":78,"22":635},"isBase":true}}}, +{"id":37717,"name":"Legs of Physical Regeneration","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,133,78,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1982,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":133,"3":78,"4":58,"22":1982},"isBase":true}}}, +{"id":37718,"name":"Temple Crystal Fragment","icon":"inv_datacrystal01","type":13,"weaponType":5,"handType":3,"stats":[0,0,63,44,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":44,"7":42},"isBase":true}}}, +{"id":37721,"name":"Cursed Lich Blade","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,0,57,0,0,34,24,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"weaponSpeed":1.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"stats":{"2":57,"5":34,"6":24,"14":443},"isBase":true}}}, +{"id":37722,"name":"Breastplate of Undeath","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[80,112,75,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":80,"1":112,"2":75,"5":45,"22":2265},"isBase":true}}}, +{"id":37723,"name":"Incisor Fragment","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"12":148,"13":148},"isBase":true}}}, +{"id":37724,"name":"Handler's Arm Strap","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,0,62,44,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":62,"3":44,"4":42,"22":467},"isBase":true}}}, +{"id":37725,"name":"Savage Wound Wrap","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,59,44,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":59,"3":44,"7":43,"22":342},"isBase":true}}}, +{"id":37726,"name":"King Dred's Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,78,109,0,0,52,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":78,"2":109,"5":52,"6":55,"22":1290},"isBase":true}}}, +{"id":37728,"name":"Cloak of the Enemy","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[31,0,66,0,0,25,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":31,"2":66,"5":25,"9":42,"22":391},"isBase":true}}}, +{"id":37729,"name":"Grips of Sculptured Icicles","icon":"inv_gauntlets_61","type":7,"armorType":4,"stats":[0,0,101,58,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":101,"3":58,"6":42,"22":1416},"isBase":true}}}, +{"id":37730,"name":"Cleric's Linen Shoes","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,73,50,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":73,"3":50,"7":57,"22":538},"isBase":true}}}, +{"id":37731,"name":"Opposed Stasis Leggings","icon":"inv_pants_cloth_23","type":9,"armorType":1,"stats":[0,0,110,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":78,"4":78,"22":684},"isBase":true}}}, +{"id":37732,"name":"Spectral Seal of the Prophet","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,52,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":52,"3":44,"4":52},"isBase":true}}}, +{"id":37733,"name":"Mojo Masked Crusher","icon":"inv_mace_63","type":13,"weaponType":4,"handType":4,"stats":[78,45,84,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":737,"weaponDamageMax":1229,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":737,"weaponDamageMax":1229,"stats":{"0":78,"1":45,"2":84,"7":77},"isBase":true}}}, +{"id":37734,"name":"Talisman of Troll Divinity","icon":"racial_troll_berserk","type":12,"stats":[0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"4":73},"isBase":true}}}, +{"id":37735,"name":"Ziggurat Imprinted Chestguard","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[76,0,117,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":76,"2":117,"10":79,"22":2265},"isBase":true}}}, +{"id":37739,"name":"Brutal Gladiator's Blade of Alacrity","icon":"inv_weapon_shortblade_73","type":13,"weaponType":2,"handType":2,"stats":[0,0,32,21,0,18,0,227,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,3,5,7,8],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":32,"3":21,"5":18,"7":227,"16":18},"isBase":true}}}, +{"id":37740,"name":"Brutal Gladiator's Swift Judgment","icon":"inv_mace_71","type":13,"weaponType":4,"handType":2,"stats":[0,0,38,25,0,0,0,227,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.6,"ilvl":154,"quality":4,"classAllowlist":[1,4,5,7],"scalingOptions":{"154":{"randPropPoints":47,"weaponDamageMin":84,"weaponDamageMax":158,"stats":{"2":38,"3":25,"7":227,"16":21},"isBase":true}}}, +{"id":37743,"name":"Legguards of Brutalization","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[37,0,43,0,0,0,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":77,"stats":{"0":37,"2":43,"6":34,"7":33,"22":1023},"isBase":true}}}, +{"id":37744,"name":"Horrorblood Treads","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,29,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":57,"stats":{"1":29,"2":50,"6":25,"22":566},"isBase":true}}}, +{"id":37745,"name":"Greenhealer's Garb","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,51,40,25,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":77,"stats":{"2":51,"3":40,"4":25,"7":34,"22":549},"isBase":true}}}, +{"id":37746,"name":"Helm of the Burning Soul","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,71,34,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":77,"stats":{"2":71,"3":34,"6":37,"22":325},"isBase":true}}}, +{"id":37747,"name":"Beneficent Bulwark","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,29,19,22,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":43,"stats":{"2":29,"3":19,"4":22,"6":19,"22":3046},"isBase":true}}}, +{"id":37748,"name":"Winterfall's Frozen Necklace","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,21,22,16,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":130,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":43,"stats":{"2":21,"3":22,"4":16,"6":23},"isBase":true}}}, +{"id":37749,"name":"Shocking Claws","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":2,"stats":[0,0,22,0,0,23,22,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":34,"weaponDamageMin":139,"weaponDamageMax":260,"weaponSpeed":1.7,"ilvl":134,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":34,"weaponDamageMin":139,"weaponDamageMax":260,"stats":{"2":22,"5":23,"6":22,"12":32,"13":32},"isBase":true}}}, +{"id":37751,"name":"Tooga's Lost Toenail","icon":"inv_jewelry_ring_80","type":11,"stats":[19,0,28,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"ilvl":134,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":44,"stats":{"0":19,"2":28,"9":19,"23":80},"isBase":true}}}, +{"id":37752,"name":"Sandals of Broken Dreams","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,50,29,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":134,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":59,"stats":{"2":50,"3":29,"6":29,"22":284},"isBase":true}}}, +{"id":37753,"name":"Mendicant's Robe of Mendacity","icon":"inv_chest_cloth_31","type":5,"armorType":1,"stats":[0,0,48,37,40,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"stats":{"2":48,"3":37,"4":40,"6":37,"22":479},"isBase":true}}}, +{"id":37754,"name":"Shimmersteel Hood","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,81,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":86,"stats":{"2":81,"3":38,"4":38,"22":403},"isBase":true}}}, +{"id":37755,"name":"Leggings of the Icy Heart","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,60,40,43,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":60,"3":40,"4":43,"6":34,"22":449},"isBase":true}}}, +{"id":37756,"name":"Zoe's Comforting Cape","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,26,27,23,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":26,"3":27,"4":23,"6":23,"22":267},"isBase":true}}}, +{"id":37757,"name":"Charlotte's Chastizing Pauldrons","icon":"inv_shoulder_96","type":3,"armorType":1,"stats":[0,0,57,34,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"2":57,"3":34,"6":37,"22":415},"isBase":true}}}, +{"id":37758,"name":"Raine's Choker of Combustion","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,41,27,0,0,21,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Raine's Revenge","setId":759,"scalingOptions":{"158":{"randPropPoints":56,"stats":{"2":41,"3":27,"6":21,"7":19},"isBase":true}}}, +{"id":37759,"name":"Rhie-Ay's Clutching Gauntlets","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,44,25,40,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":77,"stats":{"2":44,"3":25,"4":40,"6":37,"22":373},"isBase":true}}}, +{"id":37760,"name":"Cracklefire Wristguards","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,59,30,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":170,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":62,"stats":{"2":59,"3":30,"7":23,"22":280},"isBase":true}}}, +{"id":37761,"name":"Shimmerthread Girdle","icon":"inv_belt_23","type":8,"armorType":1,"stats":[0,0,42,44,41,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":42,"3":44,"4":41,"7":33,"22":375},"isBase":true}}}, +{"id":37762,"name":"Many-Pocketed Belt","icon":"inv_belt_16","type":8,"armorType":2,"stats":[0,30,55,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":134,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":59,"stats":{"1":30,"2":55,"6":19,"22":320},"isBase":true}}}, +{"id":37763,"name":"Treads of the Purifier","icon":"inv_boots_cloth_14","type":10,"armorType":2,"stats":[0,0,48,30,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"2":48,"3":30,"6":32,"22":454},"isBase":true}}}, +{"id":37764,"name":"Corehound Fang Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,28,63,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":64,"stats":{"1":28,"2":63,"7":28,"22":513},"isBase":true}}}, +{"id":37765,"name":"Leggings of the Water Moccasin","icon":"inv_pants_mail_11","type":9,"armorType":2,"stats":[0,0,92,42,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":93,"stats":{"2":92,"3":42,"7":41,"22":648},"isBase":true}}}, +{"id":37766,"name":"Bracers of Unmitigated Larceny","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,28,50,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":54,"stats":{"1":28,"2":50,"7":21,"22":336},"isBase":true}}}, +{"id":37767,"name":"Ryft's Deathgaze","icon":"inv_helmet_08","type":1,"armorType":2,"stats":[0,48,80,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"1":48,"2":80,"5":52,"22":647},"isBase":true}}}, +{"id":37768,"name":"Leggings of Violent Exsanguination","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,53,95,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"1":53,"2":95,"8":40,"22":728},"isBase":true}}}, +{"id":37769,"name":"Gnarled Shovelhorn Spaulders","icon":"inv_shoulder_24","type":3,"armorType":2,"stats":[0,0,65,38,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":80,"stats":{"2":65,"3":38,"6":41,"22":647},"isBase":true}}}, +{"id":37770,"name":"Bulge-Concealing Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,56,105,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,894,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":112,"ilvl":170,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":112,"stats":{"1":56,"2":105,"8":43,"22":894},"isBase":true}}}, +{"id":37771,"name":"Wristguards of Verdant Recovery","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,65,32,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":65,"3":32,"6":21,"22":408},"isBase":true}}}, +{"id":37772,"name":"Wub's Electrospike Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,46,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,640,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":134,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":59,"stats":{"2":46,"3":30,"7":29,"22":640},"isBase":true}}}, +{"id":37773,"name":"Shock-Inducing Girdle","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,0,30,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"2":30,"3":32,"4":32,"7":20,"22":558},"isBase":true}}}, +{"id":37774,"name":"Leggings of Aqueous Dissolution","icon":"inv_pants_mail_08","type":9,"armorType":3,"stats":[0,0,74,44,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":86,"stats":{"2":74,"3":44,"6":38,"22":900},"isBase":true}}}, +{"id":37775,"name":"Helm of the Broken Ram","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,46,52,0,0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":89,"stats":{"1":46,"2":52,"5":29,"6":43,"22":868},"isBase":true}}}, +{"id":37776,"name":"Bracers of Accurate Fire","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,26,50,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"1":26,"2":50,"6":24,"22":489},"isBase":true}}}, +{"id":37777,"name":"Bracers of Sizzling Heat","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,50,21,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":54,"stats":{"2":50,"3":21,"4":28,"22":507},"isBase":true}}}, +{"id":37778,"name":"Girdle of Unerring Flight","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,36,59,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":74,"stats":{"1":36,"2":59,"6":38,"22":677},"isBase":true}}}, +{"id":37779,"name":"Nixod's Chain-Threshed Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,41,77,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":80,"stats":{"1":41,"2":77,"5":27,"22":981},"isBase":true}}}, +{"id":37780,"name":"Condor-Bone Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,55,55,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":112,"ilvl":170,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":112,"stats":{"1":55,"2":55,"5":57,"6":43,"22":1357},"isBase":true}}}, +{"id":37781,"name":"Grips of the Warming Heart","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,50,41,28,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,888,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":50,"3":41,"4":28,"6":44,"22":888},"isBase":true}}}, +{"id":37782,"name":"Gauntlets of the Cheerful Hearth","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,44,22,20,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":59,"ilvl":134,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"134":{"randPropPoints":59,"stats":{"2":44,"3":22,"4":20,"6":30,"22":768},"isBase":true}}}, +{"id":37783,"name":"Blood-Tempered Spaulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[30,23,40,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"0":30,"1":23,"2":40,"6":27,"22":1081},"isBase":true}}}, +{"id":37784,"name":"Keystone Great-Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[32,0,75,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":32,"2":75,"9":49,"23":140},"isBase":true}}}, +{"id":37785,"name":"Girdle of the Howling Berserker","icon":"inv_belt_27","type":8,"armorType":4,"stats":[29,0,37,0,0,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"0":29,"2":37,"5":32,"6":30,"22":886},"isBase":true}}}, +{"id":37786,"name":"Legguards of the Forlorn Seas","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,47,48,40,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":93,"stats":{"2":47,"3":48,"4":40,"6":42,"22":1448},"isBase":true}}}, +{"id":37787,"name":"Greathelm of the Unyielding Bull","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[32,0,75,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"0":32,"2":75,"10":62,"22":1399},"isBase":true}}}, +{"id":37788,"name":"Limb Regeneration Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,72,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":72,"3":50,"7":50,"22":718},"isBase":true}}}, +{"id":37789,"name":"Gauntlets of Disembowelment","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[38,0,36,0,0,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":74,"stats":{"0":38,"2":36,"6":28,"7":36,"22":1118},"isBase":true}}}, +{"id":37790,"name":"Belt of Crystalline Tears","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,60,40,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":77,"stats":{"2":60,"3":40,"7":37,"22":1053},"isBase":true}}}, +{"id":37791,"name":"Leggings of the Winged Serpent","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,127,89,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":89,"7":90,"22":965},"isBase":true}}}, +{"id":37792,"name":"Agin's Crushing Carapace","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[42,0,82,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"0":42,"2":82,"10":65,"22":1940},"isBase":true}}}, +{"id":37793,"name":"Skullcage of Eternal Terror","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[57,0,82,0,0,43,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":112,"ilvl":170,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":112,"stats":{"0":57,"2":82,"5":43,"6":37,"22":1631},"isBase":true}}}, +{"id":37794,"name":"Torta's Oversized Choker","icon":"inv_jewelry_necklace_10","type":2,"stats":[32,0,49,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":32,"2":49,"9":25,"23":84},"isBase":true}}}, +{"id":37795,"name":"Grips of the Valiant Champion","icon":"inv_gauntlets_44","type":7,"armorType":4,"stats":[31,0,48,0,0,0,0,0,0,21,24,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":64,"stats":{"0":31,"2":48,"9":21,"10":24,"22":942},"isBase":true}}}, +{"id":37796,"name":"Earthbound Cape","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[21,0,31,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,248,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":48,"stats":{"0":21,"2":31,"9":30,"22":248},"isBase":true}}}, +{"id":37797,"name":"Cloak of the Agile Mind","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,30,28,23,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":60,"stats":{"1":30,"2":28,"3":23,"7":30,"22":309},"isBase":true}}}, +{"id":37798,"name":"Overlook Handguards","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":66,"22":505},"isBase":true}}}, +{"id":37799,"name":"Reanimator's Cloak","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,63,35,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":35,"4":38,"22":391},"isBase":true}}}, +{"id":37800,"name":"Aviary Guardsman's Hauberk","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,70,84,0,0,0,60,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":70,"2":84,"6":60,"7":38,"22":1588},"isBase":true}}}, +{"id":37801,"name":"Waistguard of the Risen Knight","icon":"inv_belt_34","type":8,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4196,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"2":87,"9":56,"22":1274},"isBase":true}}}, +{"id":37802,"name":"Elanor's Edge","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,17,24,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"weaponDamageMin":187,"weaponDamageMax":281,"weaponSpeed":1.8,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":38,"weaponDamageMin":187,"weaponDamageMax":281,"stats":{"1":17,"2":24,"6":17,"7":17},"isBase":true}}}, +{"id":37803,"name":"Lola's Lifegiving Branch","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,78,0,56,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":151,"weaponDamageMax":228,"weaponSpeed":2.4,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":151,"weaponDamageMax":228,"stats":{"2":78,"4":56,"14":249},"isBase":true}}}, +{"id":37804,"name":"Bloodwood Greatstaff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"weaponDamageMin":450,"weaponDamageMax":676,"weaponSpeed":3,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"weaponDamageMin":450,"weaponDamageMax":676,"stats":{"8":77,"23":200},"isBase":true}}}, +{"id":37805,"name":"Melia's Magnificent Scepter","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,26,0,0,0,0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":41,"weaponDamageMin":87,"weaponDamageMax":163,"weaponSpeed":1.8,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":41,"weaponDamageMin":87,"weaponDamageMax":163,"stats":{"2":32,"4":26,"14":288},"isBase":true}}}, +{"id":37806,"name":"Zabra's Misplaced Staff","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,0,101,0,0,34,53,0,0,0,0,0,0,0,312,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":248,"weaponDamageMax":373,"weaponSpeed":3.2,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"weaponDamageMin":248,"weaponDamageMax":373,"stats":{"2":101,"5":34,"6":53,"14":312},"isBase":true}}}, +{"id":37807,"name":"Lydia's Sharpened Swordbreaker","icon":"inv_sword_2h_blood_c_03","type":13,"weaponType":9,"handType":2,"stats":[27,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":160,"weaponDamageMax":298,"weaponSpeed":1.7,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":40,"weaponDamageMin":160,"weaponDamageMax":298,"stats":{"0":27,"2":39},"isBase":true}}}, +{"id":37808,"name":"Dragonjaw Mauler","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":188,"weaponDamageMax":350,"weaponSpeed":1.8,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":44,"weaponDamageMin":188,"weaponDamageMax":350,"stats":{"2":32,"6":25},"isBase":true}}}, +{"id":37809,"name":"Roc-Feather Longbow","icon":"inv_weapon_bow_34","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":367,"weaponDamageMax":682,"weaponSpeed":2.7,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"weaponDamageMin":367,"weaponDamageMax":682,"stats":{"5":60,"6":76},"isBase":true}}}, +{"id":37810,"name":"Blade-Binding Bulwark","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[19,0,43,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,4814,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":56,"stats":{"0":19,"2":43,"10":36,"22":4814},"isBase":true}}}, +{"id":37811,"name":"Captain Carver's Persuader","icon":"inv_axe_81","type":13,"weaponType":1,"handType":4,"stats":[29,0,60,0,0,0,40,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"weaponDamageMin":473,"weaponDamageMax":711,"weaponSpeed":3.5,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":89,"weaponDamageMin":473,"weaponDamageMax":711,"stats":{"0":29,"2":60,"6":40,"7":46},"isBase":true}}}, +{"id":37812,"name":"Petrified Ironwood Smasher","icon":"inv_mace_64","type":13,"weaponType":4,"handType":4,"stats":[77,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"weaponDamageMin":480,"weaponDamageMax":721,"weaponSpeed":3.2,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"weaponDamageMin":480,"weaponDamageMax":721,"stats":{"0":77,"2":75},"isBase":true}}}, +{"id":37813,"name":"Banner Slicer","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,72,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"weaponDamageMin":435,"weaponDamageMax":653,"weaponSpeed":3,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"weaponDamageMin":435,"weaponDamageMax":653,"stats":{"6":72,"12":100,"13":100},"isBase":true}}}, +{"id":37814,"name":"Iron Dwarf Smith Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"2":87,"10":57,"22":1699},"isBase":true}}}, +{"id":37817,"name":"Branch of Sinful Reprieve","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,39,17,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"2":39,"3":17,"7":15},"isBase":true}}}, +{"id":37818,"name":"Patroller's War-Kilt","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,0,110,70,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":70,"6":70,"22":1389},"isBase":true}}}, +{"id":37819,"name":"Milan's Mastercraft Band","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,24,0,0,15,24,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":24,"5":15,"6":24,"12":44,"13":44},"isBase":true}}}, +{"id":37820,"name":"Worgen's Ring of Revitalization","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,31,0,0,0,0,0,0,21,0,0,0,0,0,0,24,0,0,0,0,0,0,36,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":142,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":48,"stats":{"2":31,"9":21,"16":24,"23":36},"isBase":true}}}, +{"id":37821,"name":"Raine's Signet of Blasting","icon":"inv_jewelry_ring_24","type":11,"stats":[0,0,48,27,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Raine's Revenge","setId":759,"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":48,"3":27,"6":21},"isBase":true}}}, +{"id":37822,"name":"Twisted Puzzle-Ring","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,50,30,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":170,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"170":{"randPropPoints":62,"stats":{"2":50,"3":30,"4":32},"isBase":true}}}, +{"id":37823,"name":"Draconic Choker of Ferocity","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,34,0,0,19,30,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":34,"5":19,"6":30,"12":60,"13":60},"isBase":true}}}, +{"id":37824,"name":"Gwyneth's Runed Dragonwand","icon":"inv_wand_10","type":14,"rangedWeaponType":6,"stats":[0,0,49,24,0,0,0,22,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":49,"3":24,"7":22,"14":351},"isBase":true}}}, +{"id":37825,"name":"Traditionally Dyed Handguards","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,91,50,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":91,"3":50,"7":44,"22":489},"isBase":true}}}, +{"id":37826,"name":"The General's Steel Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[58,36,85,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"1":36,"2":85,"5":41,"22":1274},"isBase":true}}}, +{"id":37835,"name":"Je'Tze's Bell","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":91},"isBase":true}}}, +{"id":37840,"name":"Shroud of Reverberation","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,25,96,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":25,"2":96,"8":31,"22":391},"isBase":true}}}, +{"id":37841,"name":"Slag Footguards","icon":"inv_boots_chain_07","type":10,"armorType":2,"stats":[0,58,99,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":99,"6":30,"22":734},"isBase":true}}}, +{"id":37842,"name":"Belt of Vivacity","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,85,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":85,"3":58,"4":58,"22":600},"isBase":true}}}, +{"id":37843,"name":"Giant-Hair Woven Gloves","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,97,58,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":97,"3":58,"6":44,"22":489},"isBase":true}}}, +{"id":37844,"name":"Winged Talisman","icon":"spell_shadow_burningspirit","type":12,"stats":[0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"4":72},"isBase":true}}}, +{"id":37845,"name":"Cord of Swirling Winds","icon":"inv_belt_36","type":8,"armorType":3,"stats":[0,58,78,0,0,0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":78,"6":39,"7":42,"22":893},"isBase":true}}}, +{"id":37846,"name":"Charged-Bolt Grips","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,50,100,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":100,"6":36,"22":667},"isBase":true}}}, +{"id":37847,"name":"Skywall Striders","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,81,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":58,"6":57,"22":1557},"isBase":true}}}, +{"id":37848,"name":"Lightning Giant Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,76,152,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":524,"weaponDamageMax":787,"weaponSpeed":2.4,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":524,"weaponDamageMax":787,"stats":{"1":76,"2":152,"6":45},"isBase":true}}}, +{"id":37849,"name":"Planetary Helm","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[80,76,78,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":80,"1":76,"2":78,"5":52,"22":1840},"isBase":true}}}, +{"id":37850,"name":"Flowing Sash of Order","icon":"inv_belt_30","type":8,"armorType":1,"stats":[0,0,81,50,0,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"5":31,"6":38,"22":440},"isBase":true}}}, +{"id":37851,"name":"Ornate Woolen Stola","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,134,78,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":134,"3":78,"6":60,"22":782},"isBase":true}}}, +{"id":37852,"name":"Colossal Skull-Clad Cleaver","icon":"inv_axe_76","type":13,"weaponType":1,"handType":4,"stats":[90,54,94,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"weaponSpeed":3.4,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"stats":{"0":90,"1":54,"2":94,"7":90},"isBase":true}}}, +{"id":37853,"name":"Advanced Tooled-Leather Bands","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,50,73,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":73,"7":49,"22":482},"isBase":true}}}, +{"id":37854,"name":"Woven Bracae Leggings","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,127,90,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":90,"6":89,"22":707},"isBase":true}}}, +{"id":37855,"name":"Mail Girdle of the Audient Earth","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":66,"22":923},"isBase":true}}}, +{"id":37856,"name":"Librarian's Paper Cutter","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,0,25,0,0,0,26,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"2":25,"6":26,"7":46},"isBase":true}}}, +{"id":37857,"name":"Helm of the Lightning Halls","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,111,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":78,"4":78,"22":1290},"isBase":true}}}, +{"id":37858,"name":"Awakened Handguards","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,81,58,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4272,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":58,"7":58,"22":667},"isBase":true}}}, +{"id":37861,"name":"Necklace of Arcane Spheres","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,29,82,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":29,"2":82,"6":42},"isBase":true}}}, +{"id":37862,"name":"Gauntlets of the Water Revenant","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[42,0,87,0,0,33,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":42,"2":87,"5":33,"9":57,"22":1416},"isBase":true}}}, +{"id":37864,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"128":{"randPropPoints":64,"stats":{"16":45},"isBase":true}}}, +{"id":37865,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":128,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"128":{"randPropPoints":64,"stats":{"16":45},"isBase":true}}}, +{"id":37867,"name":"Footwraps of Teleportation","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,98,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,538,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":98,"3":50,"4":39,"22":538},"isBase":true}}}, +{"id":37868,"name":"Girdle of the Ethereal","icon":"inv_belt_17","type":8,"armorType":3,"stats":[0,0,83,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":83,"3":50,"7":50,"22":893},"isBase":true}}}, +{"id":37869,"name":"Globule Signet","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,60,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":44,"6":42},"isBase":true}}}, +{"id":37870,"name":"Twin-Headed Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,58,66,0,0,0,58,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":66,"6":58,"7":30,"22":1092},"isBase":true}}}, +{"id":37871,"name":"The Key","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,34,57,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"1":34,"2":57,"5":24},"isBase":true}}}, +{"id":37872,"name":"Lavanthor's Talisman","icon":"inv_misc_armorkit_21","type":12,"stats":[0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"9":74},"isBase":true}}}, +{"id":37873,"name":"Mark of the War Prisoner","icon":"inv_jewelry_talisman_13","type":12,"stats":[0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"5":73},"isBase":true}}}, +{"id":37874,"name":"Gauntlets of Capture","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[58,34,64,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":58,"1":34,"2":64,"7":56,"22":1416},"isBase":true}}}, +{"id":37875,"name":"Spaulders of the Violet Hold","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,84,50,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":50,"7":49,"22":1191},"isBase":true}}}, +{"id":37876,"name":"Cyanigosa's Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,110,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":78,"4":78,"22":684},"isBase":true}}}, +{"id":37883,"name":"Staff of Trickery","icon":"inv_staff_84","type":13,"weaponType":8,"handType":4,"stats":[0,89,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":578,"weaponDamageMax":867,"weaponSpeed":2.4,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":578,"weaponDamageMax":867,"stats":{"1":89,"2":201},"isBase":true}}}, +{"id":37884,"name":"Azure Cloth Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,70,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":50,"22":354},"isBase":true}}}, +{"id":37886,"name":"Handgrips of the Savage Emissary","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,66,77,0,0,0,36,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":77,"6":36,"7":65,"22":1026},"isBase":true}}}, +{"id":37889,"name":"Prison Manifest","icon":"inv_misc_book_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,72,44,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":72,"3":44,"4":34},"isBase":true}}}, +{"id":37890,"name":"Chain Gang Legguards","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,78,150,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":78,"2":150,"5":45,"22":934},"isBase":true}}}, +{"id":37891,"name":"Cast Iron Shackles","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[43,28,64,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"zoneId":4415,"otherName":"Trash"}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"1":28,"2":64,"5":29,"22":991},"isBase":true}}}, +{"id":37927,"name":"Guardian's Band of Subjugation","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,36,24,0,0,0,34,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":36,"3":24,"7":34,"16":24},"isBase":true}}}, +{"id":37928,"name":"Guardian's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,47,24,0,0,0,24,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":47,"3":24,"7":24,"16":18},"isBase":true}}}, +{"id":37929,"name":"Guardian's Pendant of Reprieve","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,40,26,0,0,0,26,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":40,"3":26,"7":26,"16":18},"isBase":true}}}, +{"id":37936,"name":"Fisherman's Earwarmer","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,33,35,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":33,"3":35,"4":56,"22":339},"isBase":true}}}, +{"id":37937,"name":"Alystros' Plume Cinch","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,65,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":65,"3":26,"22":234},"isBase":true}}}, +{"id":37938,"name":"Visionary's Robes","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,42,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":42,"3":43,"4":45,"22":417},"isBase":true}}}, +{"id":37939,"name":"Baleen Braided Collar","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":44,"3":25},"isBase":true}}}, +{"id":37940,"name":"Mantle of Itharius","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,32,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":32,"3":32,"4":33,"22":313},"isBase":true}}}, +{"id":37941,"name":"Fading Handwraps","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,0,0,26,42,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"5":26,"6":42,"7":16,"22":260},"isBase":true}}}, +{"id":37942,"name":"Kirin Tor Initiate's Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,63,26,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":63,"3":26,"4":16,"22":287},"isBase":true}}}, +{"id":37943,"name":"Kirin Tor Initiate's Cowl","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,52,56,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":52,"3":56,"4":22,"22":339},"isBase":true}}}, +{"id":37944,"name":"High Priest Forith's Robes","icon":"inv_chest_cloth_40","type":5,"armorType":1,"stats":[0,0,42,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":42,"3":43,"4":45,"22":417},"isBase":true}}}, +{"id":37945,"name":"Thin Jormungar Legwraps","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,42,45,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":42,"3":45,"6":43,"22":365},"isBase":true}}}, +{"id":37947,"name":"Miraculous Waistwarming Band","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,31,32,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":31,"3":32,"6":33,"22":234},"isBase":true}}}, +{"id":37948,"name":"Refractive Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,60,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":60,"3":32,"22":313},"isBase":true}}}, +{"id":37949,"name":"Saboteur's Wrap","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,22,0,0,0,25,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":22,"6":25,"12":48,"13":48,"22":208},"isBase":true}}}, +{"id":37950,"name":"Highseas Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,31,0,20,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"3":31,"5":20,"6":12,"22":182},"isBase":true}}}, +{"id":37953,"name":"Wastewind Garments","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,33,56,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":33,"3":56,"5":35,"22":417},"isBase":true}}}, +{"id":37954,"name":"Wastewind Cinch","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,48,33,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":48,"3":33,"4":21,"22":234},"isBase":true}}}, +{"id":37956,"name":"Frontrunner's Blessed Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,24,26,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":24,"3":26,"6":42,"22":260},"isBase":true}}}, +{"id":37957,"name":"Wastewind Bracers","icon":"inv_bracer_01","type":6,"armorType":1,"stats":[0,0,24,26,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":24,"3":26,"6":42,"22":182},"isBase":true}}}, +{"id":37958,"name":"Wastewind Headcover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,82,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":82,"3":43,"22":339},"isBase":true}}}, +{"id":37959,"name":"Wastewind Pauldrons","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,68,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":68,"3":22,"22":313},"isBase":true}}}, +{"id":37960,"name":"Oath Signet","icon":"inv_jewelry_ring_05","type":11,"stats":[0,0,27,32,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":27,"3":32,"5":12},"isBase":true}}}, +{"id":37961,"name":"Wastewind Leggings","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,36,57,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":36,"3":57,"4":33,"22":365},"isBase":true}}}, +{"id":37962,"name":"Treads of the Charred Canyon","icon":"inv_boots_cloth_07","type":10,"armorType":1,"stats":[0,0,27,23,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":27,"3":23,"7":43,"22":287},"isBase":true}}}, +{"id":37963,"name":"Wastewind Handwraps","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,59,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":59,"3":33,"22":260},"isBase":true}}}, +{"id":37964,"name":"Spiderwarder Braces","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,51,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":51,"3":15,"22":182},"isBase":true}}}, +{"id":37965,"name":"Wyrmward Cover","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,66,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":66,"3":55,"22":339},"isBase":true}}}, +{"id":37966,"name":"Bracers of Nature's Fury","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,20,18,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":20,"3":18,"6":32,"22":182},"isBase":true}}}, +{"id":37968,"name":"Robe of Calcified Tears","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,86,33,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":86,"3":33,"6":24,"22":417},"isBase":true}}}, +{"id":37969,"name":"Chaos Mender Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,18,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":18,"3":32,"7":18,"22":208},"isBase":true}}}, +{"id":37970,"name":"Feathers of the Dragon Wastes","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,57,33,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"3":57,"4":33,"6":24,"22":339},"isBase":true}}}, +{"id":37971,"name":"Sash of the Nibbling Plague","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":46,"3":43,"22":234},"isBase":true}}}, +{"id":37980,"name":"Moa'ki Thresherhide Tunic","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,45,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":45,"2":82,"22":577},"isBase":true}}}, +{"id":37981,"name":"Ancient Dreamer's Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,68,41,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":68,"3":41,"6":32,"22":504},"isBase":true}}}, +{"id":37982,"name":"Gleaming Tuskring","icon":"inv_jewelry_ring_30","type":11,"stats":[0,0,27,0,0,0,0,0,13,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":27,"8":13,"12":64,"13":64},"isBase":true}}}, +{"id":37983,"name":"Gloves of the Emerald Stalker","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,31,46,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":31,"2":46,"5":24,"22":360},"isBase":true}}}, +{"id":37984,"name":"Deathtouched Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,33,36,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":33,"2":36,"8":31,"22":396},"isBase":true}}}, +{"id":37985,"name":"Violet Stalker Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,33,46,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":33,"2":46,"6":24,"22":432},"isBase":true}}}, +{"id":37986,"name":"Hood of the Forgotten Rifleman","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,41,48,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":41,"2":48,"5":45,"22":468},"isBase":true}}}, +{"id":37987,"name":"Violet Stalker Bracers","icon":"inv_bracer_04","type":6,"armorType":2,"stats":[0,32,19,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"1":32,"2":19,"7":18,"22":252},"isBase":true}}}, +{"id":37988,"name":"Lord Prestor's Drape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,0,32,18,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"3":32,"4":18,"6":13,"22":208},"isBase":true}}}, +{"id":37989,"name":"Rattlebore Slayer Leggings","icon":"inv_pants_leather_06","type":9,"armorType":2,"stats":[0,45,48,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":45,"2":48,"6":41,"22":504},"isBase":true}}}, +{"id":37990,"name":"Narf's Explosiveproof Strand","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,31,36,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":31,"2":36,"8":33,"22":324},"isBase":true}}}, +{"id":37991,"name":"Hyper-Amplified Natural Leather Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,39,55,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":39,"3":55,"4":33,"22":577},"isBase":true}}}, +{"id":37992,"name":"Ritual Neckguard","icon":"inv_jewelry_necklace_04","type":2,"stats":[0,0,37,22,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":37,"3":22,"7":18},"isBase":true}}}, +{"id":37993,"name":"Glade Wanderer Boots","icon":"inv_boots_05","type":10,"armorType":2,"stats":[0,0,35,43,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":35,"3":43,"4":18,"22":396},"isBase":true}}}, +{"id":37995,"name":"Snowfall Reaver Hood","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,36,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":33,"2":36,"6":57,"22":468},"isBase":true}}}, +{"id":37996,"name":"Snowfall Reaver Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":23,"2":27,"6":43,"22":360},"isBase":true}}}, +{"id":37998,"name":"Snowfall Reaver Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,33,0,0,0,0,31,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":33,"6":31,"7":24,"22":396},"isBase":true}}}, +{"id":37999,"name":"Glade Wanderer Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":35,"3":32,"22":252},"isBase":true}}}, +{"id":38000,"name":"Snowfall Reaver Breastplate","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,56,39,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":56,"2":39,"7":33,"22":577},"isBase":true}}}, +{"id":38001,"name":"Snowfall Reaver Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,42,36,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":42,"2":36,"6":19,"22":432},"isBase":true}}}, +{"id":38002,"name":"Honorborn Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,32,0,0,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"1":32,"6":13,"7":18,"22":208},"isBase":true}}}, +{"id":38003,"name":"Snowfall Reaver Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,57,50,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":57,"2":50,"5":24,"22":504},"isBase":true}}}, +{"id":38004,"name":"Scourgeslayer Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,24,63,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":24,"2":63,"6":19,"22":324},"isBase":true}}}, +{"id":38005,"name":"Spiritfury Bands","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,48,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":48,"5":13,"6":18,"22":252},"isBase":true}}}, +{"id":38006,"name":"Glade Wanderer Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,62,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":62,"3":33,"22":324},"isBase":true}}}, +{"id":38007,"name":"Canyon Runner's Vest","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":33,"2":91,"22":577},"isBase":true}}}, +{"id":38008,"name":"Lothalar Woodwalker Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,43,27,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":43,"2":27,"7":23,"22":324},"isBase":true}}}, +{"id":38010,"name":"Scourgeslayer Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,84,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":33,"2":84,"7":26,"22":468},"isBase":true}}}, +{"id":38011,"name":"Torturer's Fleshwoven Leggings","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,30,78,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":30,"2":78,"7":38,"22":504},"isBase":true}}}, +{"id":38012,"name":"Lothalar Woodwalker Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,29,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"1":29,"2":41,"22":252},"isBase":true}}}, +{"id":38013,"name":"Lothalar Woodwalker Shoulders","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,39,30,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":39,"2":30,"5":16,"22":432},"isBase":true}}}, +{"id":38014,"name":"Vermin-Handler's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,39,0,0,0,0,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":39,"6":27,"7":22,"22":360},"isBase":true}}}, +{"id":38023,"name":"Sharkdiver's Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,47,55,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":47,"3":55,"4":32,"22":760},"isBase":true}}}, +{"id":38024,"name":"Verdant Linked Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,23,27,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":23,"2":27,"7":43,"22":597},"isBase":true}}}, +{"id":38025,"name":"Guiding Gloves of the Seer","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,27,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":27,"3":23,"4":42,"22":543},"isBase":true}}}, +{"id":38026,"name":"Sharkdiver's Bracers","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,50,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":50,"3":18,"22":380},"isBase":true}}}, +{"id":38027,"name":"Verdant Hunter's Guise","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,33,39,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":33,"2":39,"7":56,"22":705},"isBase":true}}}, +{"id":38028,"name":"Ring of the Afterlife","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,35,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":35,"3":32},"isBase":true}}}, +{"id":38029,"name":"Azurehunter Handguards","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":23,"2":27,"6":43,"22":543},"isBase":true}}}, +{"id":38030,"name":"Chestpiece of the Forgotten Captain","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,57,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":57,"2":64,"22":868},"isBase":true}}}, +{"id":38031,"name":"Azurehunter Legguards","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,26,47,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":26,"2":47,"7":56,"22":760},"isBase":true}}}, +{"id":38032,"name":"Wyrm-Slave Collar","icon":"inv_jewelry_necklace_05","type":2,"stats":[0,0,0,0,0,0,32,13,0,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"6":32,"7":13,"12":36,"13":36},"isBase":true}}}, +{"id":38033,"name":"Ice Heart Chestguard","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,39,56,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":39,"3":56,"6":33,"22":868},"isBase":true}}}, +{"id":38034,"name":"Serrated Chain Links","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,43,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":43,"2":46,"22":488},"isBase":true}}}, +{"id":38035,"name":"Tightened Chainmesh Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,27,23,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":27,"3":23,"6":43,"22":597},"isBase":true}}}, +{"id":38036,"name":"Circlet of the Forgotten Mercenary","icon":"inv_jewelry_ring_06","type":11,"stats":[0,0,0,13,18,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"3":13,"4":18,"7":32},"isBase":true}}}, +{"id":38037,"name":"Westwind Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":46,"3":43,"22":651},"isBase":true}}}, +{"id":38039,"name":"Iceshear Pauldrons","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,23,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":23,"2":27,"6":43,"22":651},"isBase":true}}}, +{"id":38040,"name":"Iceshear Bindings","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,23,33,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"1":23,"2":33,"6":22,"22":380},"isBase":true}}}, +{"id":38041,"name":"Westwind Waistband","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,47,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":47,"3":31,"6":24,"22":488},"isBase":true}}}, +{"id":38042,"name":"Scourge Ghoul Collar","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,26,0,0,0,0,0,14,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":26,"8":14,"12":62,"13":62},"isBase":true}}}, +{"id":38043,"name":"Anub'ar-Husk Leggings","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,45,61,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":45,"2":61,"6":32,"22":760},"isBase":true}}}, +{"id":38044,"name":"Anub'ar-Husk Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,31,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":31,"2":68,"22":651},"isBase":true}}}, +{"id":38045,"name":"Anub'ar-Husk Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,45,62,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":45,"2":62,"7":32,"22":705},"isBase":true}}}, +{"id":38046,"name":"Wyrmfire Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,18,64,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":18,"2":64,"5":23,"22":543},"isBase":true}}}, +{"id":38047,"name":"Belt of Ghostly Essence","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,45,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":45,"3":30,"4":30,"22":488},"isBase":true}}}, +{"id":38048,"name":"Breastplate of Sizzling Chitin","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,48,33,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":48,"3":33,"4":58,"22":868},"isBase":true}}}, +{"id":38049,"name":"Wyrmchaser's Waistguard","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,43,0,0,0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":43,"5":18,"6":23,"22":488},"isBase":true}}}, +{"id":38051,"name":"Star's Rest Treads","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,30,45,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":30,"2":45,"5":31,"22":597},"isBase":true}}}, +{"id":38053,"name":"Wyrmfire Links","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,56,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":56,"2":36,"6":33,"22":868},"isBase":true}}}, +{"id":38054,"name":"Paingiver Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,33,46,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"1":33,"2":46,"6":24,"22":380},"isBase":true}}}, +{"id":38055,"name":"Ridgehunter Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,31,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":31,"2":36,"6":33,"22":543},"isBase":true}}}, +{"id":38056,"name":"Ridgehunter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,34,85,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":34,"2":85,"5":24,"22":868},"isBase":true}}}, +{"id":38057,"name":"Rodent-Proof Headguard","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,41,61,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":41,"2":61,"6":41,"22":705},"isBase":true}}}, +{"id":38068,"name":"Sinner's Repentance","icon":"inv_jewelry_ring_23","type":11,"stats":[0,0,27,0,0,0,13,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":27,"6":13,"7":32},"isBase":true}}}, +{"id":38070,"name":"Foresight's Anticipation","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"7":40},"isBase":true}}}, +{"id":38071,"name":"Valonforth's Remembrance","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"4":40},"isBase":true}}}, +{"id":38072,"name":"Thunder Capacitor","icon":"inv_misc_enggizmos_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"isBase":true}}}, +{"id":38073,"name":"Will of the Red Dragonflight","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"3":47},"isBase":true}}}, +{"id":38080,"name":"Automated Weapon Coater","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"6":43},"isBase":true}}}, +{"id":38081,"name":"Scarab of Isanoth","icon":"inv_misc_horn_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"12":82,"13":82},"isBase":true}}}, +{"id":38084,"name":"Crustacean Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[23,0,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"2":27,"6":43,"22":880},"isBase":true}}}, +{"id":38085,"name":"Belt of the Emerald Guardian","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,27,23,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":27,"3":23,"4":42,"22":720},"isBase":true}}}, +{"id":38086,"name":"Vigilant Skullcap","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,91,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":91,"3":33,"22":1040},"isBase":true}}}, +{"id":38087,"name":"Sea Rusted Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,50,31,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":50,"3":31,"6":24,"22":800},"isBase":true}}}, +{"id":38088,"name":"Breastplate of Nature's Ire","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[33,0,36,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":33,"2":36,"7":57,"22":1280},"isBase":true}}}, +{"id":38092,"name":"Crystalplate Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[23,0,27,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"2":27,"6":43,"22":960},"isBase":true}}}, +{"id":38093,"name":"Dalaran Sentry Wristbraces","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[13,0,48,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"0":13,"2":48,"7":18,"22":560},"isBase":true}}}, +{"id":38094,"name":"Dalaran Sentry Headguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[33,0,36,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":33,"2":36,"8":57,"22":1040},"isBase":true}}}, +{"id":38095,"name":"Legplates of the Conquered Knight","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,65,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":65,"3":56,"22":1120},"isBase":true}}}, +{"id":38096,"name":"Crystalplate Legguards","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[24,0,86,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":24,"2":86,"6":33,"22":1120},"isBase":true}}}, +{"id":38097,"name":"Experimental Utility Belt","icon":"inv_belt_32","type":8,"armorType":4,"stats":[43,0,0,0,0,0,18,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":43,"6":18,"7":23,"22":720},"isBase":true}}}, +{"id":38100,"name":"Crystalplate Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[23,0,65,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"2":65,"8":18,"22":800},"isBase":true}}}, +{"id":38101,"name":"Stonepath Sabatons","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[31,0,45,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":31,"2":45,"6":30,"22":880},"isBase":true}}}, +{"id":38102,"name":"Stonepath Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[18,0,0,0,0,23,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":18,"5":23,"6":43,"22":800},"isBase":true}}}, +{"id":38103,"name":"Petrified Bone Chestguard","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[0,0,62,41,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":62,"3":41,"6":41,"22":1280},"isBase":true}}}, +{"id":38104,"name":"Stonepath Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[24,0,85,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":24,"2":85,"5":33,"22":1040},"isBase":true}}}, +{"id":38105,"name":"Stonepath Pauldrons","icon":"inv_shoulder_80","type":3,"armorType":4,"stats":[23,0,0,0,0,0,18,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"6":18,"7":43,"22":960},"isBase":true}}}, +{"id":38106,"name":"Petrified Bone Footguards","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":46,"3":43,"22":880},"isBase":true}}}, +{"id":38107,"name":"Stonepath Chestguard","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[33,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":33,"2":86,"7":24,"22":1280},"isBase":true}}}, +{"id":38108,"name":"Conscript's Ruby Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[31,0,45,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":31,"2":45,"7":30,"22":720},"isBase":true}}}, +{"id":38109,"name":"Wraithshimmer Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[57,0,36,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":57,"2":36,"6":33,"22":1120},"isBase":true}}}, +{"id":38110,"name":"Legplates of the Agmar Preserver","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,36,33,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":36,"3":33,"6":57,"22":1120},"isBase":true}}}, +{"id":38111,"name":"Wyrmbane Wristguards","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[32,0,0,0,0,13,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"0":32,"5":13,"6":18,"22":560},"isBase":true}}}, +{"id":38112,"name":"Bark Covered Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[23,0,64,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"2":64,"6":18,"22":960},"isBase":true}}}, +{"id":38114,"name":"Chestplate of the Ruby Champion","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[57,0,0,0,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":57,"6":24,"7":33,"22":1280},"isBase":true}}}, +{"id":38115,"name":"Sabatons of the Enforcer","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[30,30,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":30,"1":30,"7":31,"22":880},"isBase":true}}}, +{"id":38116,"name":"Plated Magnataur Leggings","icon":"inv_pants_plate_09","type":9,"armorType":4,"stats":[33,0,0,0,0,0,57,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1120,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":33,"6":57,"8":24,"22":1120},"isBase":true}}}, +{"id":38117,"name":"Dreadtalon's Clutch","icon":"inv_belt_28","type":8,"armorType":4,"stats":[23,0,62,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":23,"2":62,"5":19,"22":720},"isBase":true}}}, +{"id":38118,"name":"Bite-Proof Grips","icon":"inv_gauntlets_13","type":7,"armorType":4,"stats":[43,0,27,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":43,"2":27,"8":23,"22":800},"isBase":true}}}, +{"id":38126,"name":"Frostbite Warstaff","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,39,60,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"5":39,"6":60,"14":235},"isBase":true}}}, +{"id":38127,"name":"Carved Dragonbone Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,26,0,16,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":2.2,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":92,"weaponDamageMax":172,"stats":{"4":26,"6":16,"14":232},"isBase":true}}}, +{"id":38128,"name":"Staff of the Spiked Beast","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,84,0,0,0,0,0,0,0,0,0,91,91,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":376,"weaponDamageMax":564,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":376,"weaponDamageMax":564,"stats":{"2":84,"12":91,"13":91},"isBase":true}}}, +{"id":38129,"name":"Staff of the Ley Mender","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,56,0,0,45,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"4":56,"7":45,"14":235},"isBase":true}}}, +{"id":38130,"name":"Emme's Lost Spellblade","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,28,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"stats":{"2":28,"6":24,"14":232},"isBase":true}}}, +{"id":38131,"name":"Staff of Ruby Wood","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,60,0,39,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"4":60,"6":39,"14":235},"isBase":true}}}, +{"id":38132,"name":"Moonrest Garden Stave","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,90,0,39,0,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"2":90,"4":39,"14":235},"isBase":true}}}, +{"id":38133,"name":"Timeshattered Spire","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":451,"weaponDamageMax":677,"weaponSpeed":3.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":451,"weaponDamageMax":677,"stats":{"2":69,"12":112,"13":112},"isBase":true}}}, +{"id":38134,"name":"Bloodtinged Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,16,0,26,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"stats":{"4":16,"6":26,"14":232},"isBase":true}}}, +{"id":38135,"name":"Mace of the Fallen Raven Priest","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,16,0,0,26,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":92,"weaponDamageMax":172,"weaponSpeed":2.2,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":92,"weaponDamageMax":172,"stats":{"4":16,"7":26,"14":232},"isBase":true}}}, +{"id":38137,"name":"Endurance of the Spell Warder","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,114,0,0,0,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"2":114,"14":235},"isBase":true}}}, +{"id":38138,"name":"Keldonus' Missing Spellshard","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,40,0,0,0,14,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"stats":{"2":40,"6":14,"14":232},"isBase":true}}}, +{"id":38141,"name":"Coldwind Scratching Pole","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,56,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":376,"weaponDamageMax":564,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":376,"weaponDamageMax":564,"stats":{"6":56,"9":45},"isBase":true}}}, +{"id":38142,"name":"Infused Dragonbone Splinter","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":2,"stats":[0,0,21,0,0,0,0,27,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"stats":{"2":21,"7":27,"14":232},"isBase":true}}}, +{"id":38143,"name":"Composite Harpyspine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,68,0,52,0,0,0,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":188,"weaponDamageMax":282,"stats":{"2":68,"4":52,"14":235},"isBase":true}}}, +{"id":38146,"name":"Gleaming Iceblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":211,"weaponDamageMax":392,"weaponSpeed":2.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":211,"weaponDamageMax":392,"stats":{"2":22,"12":58,"13":58},"isBase":true}}}, +{"id":38148,"name":"Chilled Headsmasher","icon":"inv_mace_65","type":13,"weaponType":4,"handType":4,"stats":[0,0,68,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"stats":{"2":68,"6":56},"isBase":true}}}, +{"id":38150,"name":"Imported Ironshod Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,68,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"weaponSpeed":2.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"stats":{"1":68,"2":39},"isBase":true}}}, +{"id":38151,"name":"Daschal's Discarded Shiv","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,24,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"6":24,"7":19},"isBase":true}}}, +{"id":38152,"name":"Mace of the Violet Guardian","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,39,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"stats":{"2":39,"5":16},"isBase":true}}}, +{"id":38153,"name":"Mana Infused Claw","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[26,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":2.4,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":202,"weaponDamageMax":376,"stats":{"0":26,"7":16},"isBase":true}}}, +{"id":38154,"name":"Taigasha","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,16,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":2.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":227,"weaponDamageMax":423,"stats":{"1":16,"5":26},"isBase":true}}}, +{"id":38155,"name":"Shortblade of the Ruby Ally","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,26,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"stats":{"6":26,"8":16},"isBase":true}}}, +{"id":38156,"name":"Battered Magnataur Dualblade","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,45,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":476,"weaponDamageMax":715,"weaponSpeed":3.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":476,"weaponDamageMax":715,"stats":{"7":45,"12":112,"13":112},"isBase":true}}}, +{"id":38157,"name":"Longbow of the Ruby Rider","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,59,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":329,"weaponDamageMax":611,"weaponSpeed":3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":329,"weaponDamageMax":611,"stats":{"1":59,"6":39},"isBase":true}}}, +{"id":38169,"name":"Keen Woodland Shank","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,19,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"1":19,"6":24},"isBase":true}}}, +{"id":38170,"name":"Spiked Coldwind Club","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[26,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"stats":{"0":26,"6":16},"isBase":true}}}, +{"id":38171,"name":"Battleworn Magnataur Crusher","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,39,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":451,"weaponDamageMax":677,"weaponSpeed":3.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":451,"weaponDamageMax":677,"stats":{"1":39,"7":60},"isBase":true}}}, +{"id":38172,"name":"Crossbow of the Hardened Ranger","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,26,0,0,0,0,0,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"weaponSpeed":2.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"stats":{"6":26,"12":137,"13":137},"isBase":true}}}, +{"id":38173,"name":"Dagger of the Returning Past","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"5":19,"6":24},"isBase":true}}}, +{"id":38174,"name":"Time-Bending Smasher","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,19,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":135,"weaponDamageMax":251,"weaponSpeed":1.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":135,"weaponDamageMax":251,"stats":{"8":19,"12":48,"13":48},"isBase":true}}}, +{"id":38175,"name":"The Horseman's Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":2,"stats":[0,14,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":203,"weaponDamageMax":378,"weaponSpeed":2.7,"ilvl":115,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":33,"weaponDamageMin":203,"weaponDamageMax":378,"stats":{"1":14,"2":38},"isBase":true}}}, +{"id":38176,"name":"Stronghold Battlemace","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,19,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"stats":{"5":19,"6":24},"isBase":true}}}, +{"id":38177,"name":"Siege Captain's Gun","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,55,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"weaponSpeed":2.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":307,"weaponDamageMax":571,"stats":{"1":55,"2":68},"isBase":true}}}, +{"id":38178,"name":"Battlement Enforcer's Axe","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[45,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":413,"weaponDamageMax":621,"weaponSpeed":3.3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":413,"weaponDamageMax":621,"stats":{"0":45,"6":56},"isBase":true}}}, +{"id":38181,"name":"Warblade of the Forgotten Footman","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":426,"weaponDamageMax":640,"weaponSpeed":3.4,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":426,"weaponDamageMax":640,"stats":{"2":69,"6":53},"isBase":true}}}, +{"id":38187,"name":"Reactive Waraxe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,36,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":2.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":227,"weaponDamageMax":423,"stats":{"2":36,"5":18},"isBase":true}}}, +{"id":38188,"name":"Claw of the Undead Ravager","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,18,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"1":18,"2":36},"isBase":true}}}, +{"id":38189,"name":"Backtwister","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,40,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"2":40,"6":14},"isBase":true}}}, +{"id":38190,"name":"Scourgeslayer's Shank","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,27,0,0,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"7":27,"12":28,"13":28},"isBase":true}}}, +{"id":38191,"name":"Compact Explosive Delivery Device","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":151,"weaponDamageMax":282,"stats":{"6":14,"12":54,"13":54},"isBase":true}}}, +{"id":38194,"name":"Mageslayer Rifle","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,26,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":340,"weaponDamageMax":632,"weaponSpeed":3.1,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":340,"weaponDamageMax":632,"stats":{"1":26,"7":68},"isBase":true}}}, +{"id":38195,"name":"Magister's Bane","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[59,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"weaponSpeed":3.5,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":439,"weaponDamageMax":659,"stats":{"0":59,"1":41},"isBase":true}}}, +{"id":38196,"name":"Bloodsmeared Brutalizer","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,36,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"stats":{"2":36,"7":18},"isBase":true}}}, +{"id":38197,"name":"Mounted Boneshredder","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,45,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"weaponDamageMin":413,"weaponDamageMax":621,"weaponSpeed":3.3,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"weaponDamageMin":413,"weaponDamageMax":621,"stats":{"1":45,"6":55},"isBase":true}}}, +{"id":38198,"name":"Joint-Severing Quickblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"stats":{"2":33,"8":33},"isBase":true}}}, +{"id":38202,"name":"Twig of Happy Reminders","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,0,29,11,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":88,"weaponDamageMax":165,"weaponSpeed":2.1,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":88,"weaponDamageMax":165,"stats":{"3":29,"4":11,"14":232},"isBase":true}}}, +{"id":38206,"name":"Wand of Blinding Light","icon":"inv_wand_22","type":14,"rangedWeaponType":6,"stats":[0,0,0,29,0,21,0,23,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":125,"weaponSpeed":1.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":67,"weaponDamageMax":125,"stats":{"3":29,"5":21,"7":23,"14":232},"isBase":true}}}, +{"id":38207,"name":"Wand of Purifying Fire","icon":"inv_wand_01","type":14,"rangedWeaponType":6,"stats":[0,0,40,17,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"weaponSpeed":1.8,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":75,"weaponDamageMax":141,"stats":{"2":40,"3":17,"14":232},"isBase":true}}}, +{"id":38208,"name":"Valiance Longbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,41,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"weaponSpeed":2.9,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"weaponDamageMin":298,"weaponDamageMax":554,"stats":{"1":41,"5":53},"isBase":true}}}, +{"id":38212,"name":"Death Knight's Anguish","icon":"inv_misc_noose_01","type":12,"stats":[0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"6":31},"isBase":true}}}, +{"id":38213,"name":"Harbinger's Wrath","icon":"inv_misc_coin_10","type":12,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"7":38},"isBase":true}}}, +{"id":38214,"name":"Hypergizmatic Energy Booster","icon":"inv_misc_enggizmos_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":44,"3":24},"isBase":true}}}, +{"id":38217,"name":"Tome of the Violet Tower","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":34,"3":32},"isBase":true}}}, +{"id":38218,"name":"Executioner's Band","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,31,0,0,0,36,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"2":31,"6":36,"12":52,"13":52},"isBase":true}}}, +{"id":38219,"name":"Ring of Decimation","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,36,28,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"2":36,"3":28,"4":34},"isBase":true}}}, +{"id":38220,"name":"Signet of Swift Judgment","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,41,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"2":41,"3":29,"4":28},"isBase":true}}}, +{"id":38221,"name":"Shroud of Fluid Strikes","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,42,0,0,0,0,30,0,0,0,0,60,60,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":42,"7":30,"12":60,"13":60,"22":289},"isBase":true}}}, +{"id":38222,"name":"Mantle of Keristrasza","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,51,29,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":51,"3":29,"4":22,"22":289},"isBase":true}}}, +{"id":38223,"name":"Cloak of Azure Lights","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,41,30,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":41,"3":30,"7":29,"22":289},"isBase":true}}}, +{"id":38224,"name":"Life Binder Talisman","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":33,"3":32},"isBase":true}}}, +{"id":38226,"name":"Chain of the Tolling Bell","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,27,0,0,20,0,0,21,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":27,"5":20,"8":21,"12":48,"13":48},"isBase":true}}}, +{"id":38227,"name":"Indomitable Choker of Light","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,41,25,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":41,"3":25,"6":20},"isBase":true}}}, +{"id":38228,"name":"Pendant of Revolutionary Thought","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,50,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":50,"3":21,"5":17},"isBase":true}}}, +{"id":38230,"name":"Clutch of Undying Will","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,0,41,25,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":41,"3":25,"6":20},"isBase":true}}}, +{"id":38231,"name":"Choker of Forceful Redemption","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,27,0,0,20,0,0,21,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":27,"5":20,"8":21,"12":48,"13":48},"isBase":true}}}, +{"id":38232,"name":"Chain of Vigilant Thought","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,50,21,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":50,"3":21,"5":17},"isBase":true}}}, +{"id":38237,"name":"Axe of Frozen Death","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[37,0,54,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":683,"weaponSpeed":3.6,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":683,"stats":{"0":37,"2":54,"5":28,"6":43},"isBase":true}}}, +{"id":38238,"name":"Borean Smasher","icon":"inv_weapon_hand_18","type":13,"weaponType":3,"handType":2,"stats":[0,15,34,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":238,"weaponDamageMax":443,"weaponSpeed":2.8,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":35,"weaponDamageMin":238,"weaponDamageMax":443,"stats":{"1":15,"2":34,"6":17},"isBase":true}}}, +{"id":38239,"name":"Tower of the Infinite Mind","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,0,32,36,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":3,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"stats":{"2":87,"5":32,"6":36,"14":250},"isBase":true}}}, +{"id":38240,"name":"Staff of the Purposeful Mendicant","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,36,0,0,37,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":3,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"stats":{"2":83,"4":36,"7":37,"14":250},"isBase":true}}}, +{"id":38241,"name":"Fury of the Raging Dragon","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,38,77,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":343,"weaponDamageMax":637,"weaponSpeed":3.1,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":343,"weaponDamageMax":637,"stats":{"1":38,"2":77,"5":38},"isBase":true}}}, +{"id":38242,"name":"Fang of the Desolate Soul","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,16,35,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":1.8,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":35,"weaponDamageMin":153,"weaponDamageMax":285,"stats":{"1":16,"2":35,"6":15},"isBase":true}}}, +{"id":38243,"name":"Ravaging Steelfist","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,15,34,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":238,"weaponDamageMax":443,"weaponSpeed":2.8,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":35,"weaponDamageMin":238,"weaponDamageMax":443,"stats":{"1":15,"2":34,"6":17},"isBase":true}}}, +{"id":38244,"name":"Valorous Exterminator","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[37,0,54,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":683,"weaponSpeed":3.6,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":455,"weaponDamageMax":683,"stats":{"0":37,"2":54,"5":28,"6":43},"isBase":true}}}, +{"id":38245,"name":"Crystalline Providence","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,83,0,36,0,0,37,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":3,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"stats":{"2":83,"4":36,"7":37,"14":250},"isBase":true}}}, +{"id":38246,"name":"Skull-Forged Blunderbuss","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,38,77,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":343,"weaponDamageMax":637,"weaponSpeed":3.1,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":343,"weaponDamageMax":637,"stats":{"1":38,"2":77,"5":38},"isBase":true}}}, +{"id":38247,"name":"Entrail Render","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,16,35,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":35,"weaponDamageMin":153,"weaponDamageMax":285,"weaponSpeed":1.8,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":35,"weaponDamageMin":153,"weaponDamageMax":285,"stats":{"1":16,"2":35,"6":15},"isBase":true}}}, +{"id":38248,"name":"Torch of the Fallen Souls","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,0,32,36,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"weaponSpeed":3,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":83,"weaponDamageMin":189,"weaponDamageMax":285,"stats":{"2":87,"5":32,"6":36,"14":250},"isBase":true}}}, +{"id":38250,"name":"Activist's Signet of Blasting","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,45,21,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":45,"3":21,"7":20},"isBase":true}}}, +{"id":38251,"name":"Ring of Indignant Rage","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,27,0,0,20,20,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":27,"5":20,"6":20,"12":45,"13":45},"isBase":true}}}, +{"id":38252,"name":"Band of Wholesome Preservation","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,30,22,18,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":46,"stats":{"2":30,"3":22,"4":18,"6":20},"isBase":true}}}, +{"id":38254,"name":"BTBlue Spell Cloak1","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,25,0,24,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":25,"5":24,"6":12,"22":195},"isBase":true}}}, +{"id":38255,"name":"BTBlue Physical Cloak1","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,0,0,12,16,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"5":12,"6":16,"12":60,"13":60,"22":195},"isBase":true}}}, +{"id":38256,"name":"BTBlue Healer Cloak1","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,24,30,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":24,"3":30,"4":12,"22":195},"isBase":true}}}, +{"id":38257,"name":"Strike of the Seas","icon":"inv_spear_14","type":12,"stats":[0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"6":43},"isBase":true}}}, +{"id":38258,"name":"Sailor's Knotted Charm","icon":"inv_misc_net_01","type":12,"stats":[0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"4":46},"isBase":true}}}, +{"id":38259,"name":"First Mate's Pocketwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":138,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":61,"stats":{"12":88,"13":88},"isBase":true}}}, +{"id":38276,"name":"Haliscan Brimmed Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,259,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":115,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":28132,"zoneId":2367}},{"drop":{"difficulty":2,"npcId":28132,"zoneId":2367}}],"scalingOptions":{"115":{"stats":{"22":259},"isBase":true}}}, +{"id":38282,"name":"Bland Two-Handed Blade","icon":"inv_sword_80","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"weaponDamageMin":330,"weaponDamageMax":331,"weaponSpeed":2.7,"ilvl":100,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"100":{"randPropPoints":68,"weaponDamageMin":330,"weaponDamageMax":331,"isBase":true}}}, +{"id":38284,"name":"Siegemaster's Torch Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,18,33,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"2":18,"3":33,"6":15},"isBase":true}}}, +{"id":38287,"name":"Empty Mug of Direbrew","icon":"inv_drink_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"12":72,"13":72},"isBase":true}}}, +{"id":38288,"name":"Direbrew Hops","icon":"inv_misc_herb_08","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"3":38},"isBase":true}}}, +{"id":38289,"name":"Coren's Lucky Coin","icon":"inv_misc_elvencoins","type":12,"stats":[0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"9":39},"isBase":true}}}, +{"id":38290,"name":"Dark Iron Smoking Pipe","icon":"inv_misc_pipe_01","type":12,"stats":[0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":110,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"110":{"randPropPoints":54,"stats":{"3":37},"isBase":true}}}, +{"id":38293,"name":"Suntouched Flowers","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,22,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":43,"stats":{"3":22,"4":32},"isBase":true}}}, +{"id":38322,"name":"Iron-Bound Tome","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,49,63,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59497}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":49,"3":63,"6":33,"23":141},"isBase":true}}}, +{"id":38353,"name":"Venture Bay Buccaneer's Cape","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,30,0,0,0,28,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":30,"6":28,"12":64,"13":64,"22":267},"isBase":true}}}, +{"id":38354,"name":"Oil-Stained Tarp","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,35,27,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":35,"3":27,"6":30,"22":267},"isBase":true}}}, +{"id":38355,"name":"Thick Goblin Back Protector ","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[27,0,45,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"0":27,"2":45,"9":23,"22":267},"isBase":true}}}, +{"id":38356,"name":"Venture Battle Wand","icon":"inv_wand_18","type":14,"rangedWeaponType":6,"stats":[0,0,8,21,0,0,33,0,0,0,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":2.1,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":40,"weaponDamageMin":99,"weaponDamageMax":184,"stats":{"2":8,"3":21,"6":33,"14":281},"isBase":true}}}, +{"id":38358,"name":"Arcane Revitalizer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":69,"stats":{"3":49},"isBase":true}}}, +{"id":38359,"name":"Goblin Repetition Reducer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":69,"stats":{"12":98,"13":98},"isBase":true}}}, +{"id":38383,"name":"Valonforth's Folly","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"3":43},"isBase":true}}}, +{"id":38387,"name":"Grizzled Hat","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":81,"2":51,"22":942},"isBase":true}}}, +{"id":38388,"name":"Cap of the North","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":81,"2":51,"22":942},"isBase":true}}}, +{"id":38389,"name":"Comfy Raccoonskin Hat","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":81,"2":51,"22":942},"isBase":true}}}, +{"id":38390,"name":"The Rugged Marksman","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":81,"2":51,"22":942},"isBase":true}}}, +{"id":38400,"name":"Arctic Chestpiece","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,50,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50944}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"1":50,"2":73,"22":556},"isBase":true}}}, +{"id":38401,"name":"Arctic Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,42,60,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50945}}],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":42,"2":60,"6":41,"22":504},"isBase":true}}}, +{"id":38402,"name":"Arctic Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50946}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"1":36,"2":54,"22":417},"isBase":true}}}, +{"id":38403,"name":"Arctic Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,38,29,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,360,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50947}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":38,"2":29,"5":30,"22":360},"isBase":true}}}, +{"id":38404,"name":"Arctic Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50948}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"1":37,"2":54,"22":382},"isBase":true}}}, +{"id":38405,"name":"Arctic Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,35,33,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50949}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":35,"2":33,"6":31,"22":324},"isBase":true}}}, +{"id":38406,"name":"Iceborne Belt","icon":"inv_belt_02","type":8,"armorType":2,"stats":[0,0,45,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50943}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"2":45,"3":41,"22":313},"isBase":true}}}, +{"id":38407,"name":"Iceborne Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,49,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50942}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":49,"3":36,"22":369},"isBase":true}}}, +{"id":38408,"name":"Iceborne Chestguard","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,36,48,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50938}}],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":36,"3":48,"6":37,"22":537},"isBase":true}}}, +{"id":38409,"name":"Iceborne Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,55,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50941}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"2":55,"3":38,"22":348},"isBase":true}}}, +{"id":38410,"name":"Iceborne Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,71,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50939}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"2":71,"3":50,"22":487},"isBase":true}}}, +{"id":38411,"name":"Iceborne Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,57,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,432,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50940}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":57,"3":35,"22":432},"isBase":true}}}, +{"id":38412,"name":"Frostscale Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,28,38,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50955}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"1":28,"2":38,"6":28,"22":453},"isBase":true}}}, +{"id":38413,"name":"Frostscale Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,39,0,0,0,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,597,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50954}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"1":39,"5":25,"6":26,"22":597},"isBase":true}}}, +{"id":38414,"name":"Frostscale Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,38,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50950}}],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"1":38,"2":84,"22":806},"isBase":true}}}, +{"id":38415,"name":"Frostscale Gloves","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,30,43,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50953}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"1":30,"2":43,"6":29,"22":523},"isBase":true}}}, +{"id":38416,"name":"Frostscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,50,51,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50951}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"1":50,"2":51,"6":33,"22":732},"isBase":true}}}, +{"id":38417,"name":"Nerubian Shoulders","icon":"inv_shoulder_16","type":3,"armorType":3,"stats":[0,0,29,39,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50958}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"2":29,"3":39,"6":29,"22":651},"isBase":true}}}, +{"id":38418,"name":"Nerubian Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,53,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50961}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":53,"3":36,"22":453},"isBase":true}}}, +{"id":38419,"name":"Nerubian Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,27,38,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50960}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"2":27,"3":38,"4":30,"22":575},"isBase":true}}}, +{"id":38420,"name":"Nerubian Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,48,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50956}}],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":48,"3":48,"4":32,"22":806},"isBase":true}}}, +{"id":38421,"name":"Nerubian Gloves","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,33,35,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50959}}],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"2":33,"3":35,"6":23,"22":485},"isBase":true}}}, +{"id":38422,"name":"Nerubian Legguards","icon":"inv_pants_leather_09","type":9,"armorType":3,"stats":[0,0,51,48,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50957}}],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"2":51,"3":48,"6":30,"22":705},"isBase":true}}}, +{"id":38424,"name":"Frostscale Shoulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,38,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":50952}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"1":38,"2":67,"22":627},"isBase":true}}}, +{"id":38433,"name":"Arctic Wristguards","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,30,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51571}}],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"1":30,"2":44,"22":261},"isBase":true}}}, +{"id":38434,"name":"Iceborne Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,30,21,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60607}}],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"3":30,"4":21,"6":19,"22":261},"isBase":true}}}, +{"id":38435,"name":"Nerubian Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,32,30,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60622}}],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"2":32,"3":30,"6":19,"22":394},"isBase":true}}}, +{"id":38436,"name":"Frostscale Bracers","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,24,35,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60599}}],"scalingOptions":{"150":{"randPropPoints":45,"stats":{"1":24,"2":35,"6":23,"22":394},"isBase":true}}}, +{"id":38437,"name":"Arctic Helm","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,53,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51572}}],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"1":53,"2":78,"22":486},"isBase":true}}}, +{"id":38438,"name":"Iceborne Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,53,35,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60608}}],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"3":53,"4":35,"6":36,"22":486},"isBase":true}}}, +{"id":38439,"name":"Nerubian Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,54,53,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60624}}],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"2":54,"3":53,"6":35,"22":732},"isBase":true}}}, +{"id":38440,"name":"Frostscale Helm","icon":"inv_helmet_11","type":1,"armorType":3,"stats":[0,42,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60600}}],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"1":42,"2":63,"6":42,"22":732},"isBase":true}}}, +{"id":38441,"name":"Cloak of Harsh Winds","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,14,49,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60631}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"1":14,"2":49,"6":23,"22":289},"isBase":true}}}, +{"id":38442,"name":"Mail Melee Leatherworking Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"22":1535},"isBase":true}}}, +{"id":38443,"name":"Mail Melee Leatherworking Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"22":1151},"isBase":true}}}, +{"id":38444,"name":"Mail Melee Leatherworking Bracer","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"22":672},"isBase":true}}}, +{"id":38445,"name":"Mail Caster Leatherworking Helm","icon":"inv_helmet_12","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"22":1247},"isBase":true}}}, +{"id":38452,"name":"Bulwark of the Warchief","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,31,32,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":45,"8":31,"9":32,"22":5234},"isBase":true}}}, +{"id":38453,"name":"Shield of the Lion-Hearted","icon":"inv_shield_36","type":13,"weaponType":7,"handType":3,"stats":[0,0,45,0,0,0,0,0,31,32,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":45,"8":31,"9":32,"22":5234},"isBase":true}}}, +{"id":38454,"name":"Warsong Punisher","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[26,0,36,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":1.6,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":173,"weaponDamageMax":322,"stats":{"0":26,"2":36,"9":22},"isBase":true}}}, +{"id":38455,"name":"Hammer of the Alliance Vanguard","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[26,0,36,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":173,"weaponDamageMax":322,"weaponSpeed":1.6,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":173,"weaponDamageMax":322,"stats":{"0":26,"2":36,"9":22},"isBase":true}}}, +{"id":38456,"name":"Sin'dorei Recurve Bow","icon":"inv_weapon_bow_35","type":14,"rangedWeaponType":1,"stats":[0,54,85,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":436,"weaponDamageMax":811,"weaponSpeed":3.1,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":107,"weaponDamageMin":436,"weaponDamageMax":811,"stats":{"1":54,"2":85,"5":57},"isBase":true}}}, +{"id":38457,"name":"Sawed-Off Hand Cannon","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,54,85,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"weaponDamageMin":436,"weaponDamageMax":811,"weaponSpeed":3.1,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":107,"weaponDamageMin":436,"weaponDamageMax":811,"stats":{"1":54,"2":85,"5":57},"isBase":true}}}, +{"id":38458,"name":"Darkspear Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":44,"3":29,"7":31},"isBase":true}}}, +{"id":38459,"name":"Orb of the Eastern Kingdoms","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,44,29,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":44,"3":29,"7":31},"isBase":true}}}, +{"id":38460,"name":"Charged Wand of the Cleft","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,37,23,23,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":2.1,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":113,"weaponDamageMax":211,"stats":{"2":37,"3":23,"4":23,"14":323},"isBase":true}}}, +{"id":38461,"name":"Warsong Shanker","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,27,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":195,"weaponDamageMax":362,"weaponSpeed":1.8,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":195,"weaponDamageMax":362,"stats":{"1":27,"2":50},"isBase":true}}}, +{"id":38462,"name":"Warsong Stormshield ","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,69,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":69,"3":32,"22":5234},"isBase":true}}}, +{"id":38463,"name":"Lordaeron's Resolve ","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,69,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5234,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":60,"stats":{"2":69,"3":32,"22":5234},"isBase":true}}}, +{"id":38464,"name":"Gnomish Magician's Quill","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,37,23,23,0,0,0,0,0,0,0,0,0,323,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":113,"weaponDamageMax":211,"weaponSpeed":2.1,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":113,"weaponDamageMax":211,"stats":{"2":37,"3":23,"4":23,"14":323},"isBase":true}}}, +{"id":38465,"name":"Vanguard Soldier's Dagger","icon":"inv_weapon_shortblade_69","type":13,"weaponType":2,"handType":2,"stats":[0,27,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":195,"weaponDamageMax":362,"weaponSpeed":1.8,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"166":{"randPropPoints":46,"weaponDamageMin":195,"weaponDamageMax":362,"stats":{"1":27,"2":50},"isBase":true}}}, +{"id":38468,"name":"Kalu'ak Peacebringer","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":38,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.6,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":38,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"6":23,"7":15},"isBase":true}}}, +{"id":38506,"name":"Don Carlos' Famous Hat","icon":"inv_helmet_50","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":2,"npcId":28132,"zoneId":2367}}],"scalingOptions":{"115":{"randPropPoints":63,"stats":{"22":300},"isBase":true}}}, +{"id":38524,"name":"Carapace of the Scarlet Commander","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[57,0,0,0,0,0,24,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"0":57,"6":24,"7":33,"22":1280},"isBase":true}}}, +{"id":38525,"name":"Jailor's Padded Cover","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,33,84,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":33,"2":84,"7":26,"22":468},"isBase":true}}}, +{"id":38526,"name":"Binding of the Imprisoned Soul","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"6":41},"isBase":true}}}, +{"id":38527,"name":"Onslaught Scalemail Hauberk","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,56,0,24,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":56,"3":24,"6":33,"22":868},"isBase":true}}}, +{"id":38528,"name":"Legpads of the Inquisitor","icon":"inv_pants_leather_08","type":9,"armorType":2,"stats":[0,30,78,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"1":30,"2":78,"7":38,"22":504},"isBase":true}}}, +{"id":38529,"name":"Robe of the Justicebringer","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,86,33,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":78,"stats":{"2":86,"3":33,"6":24,"22":417},"isBase":true}}}, +{"id":38530,"name":"Wrap of Vigorous Destruction","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,53,36,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"2":53,"3":36,"7":29,"22":288},"isBase":true}}}, +{"id":38531,"name":"Links of Righteous Persecution","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,29,40,0,0,21,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"1":29,"2":40,"5":21,"6":38,"22":601},"isBase":true}}}, +{"id":38532,"name":"Belt of Vengeful Purification","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,35,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,399,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"1":35,"2":78,"22":399},"isBase":true}}}, +{"id":38533,"name":"Girdle of Forceful Annihilation","icon":"inv_belt_35","type":8,"armorType":4,"stats":[36,0,43,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"0":36,"2":43,"6":35,"22":886},"isBase":true}}}, +{"id":38534,"name":"Purity-Anointed Warbands","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[29,0,36,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"0":29,"2":36,"5":24,"22":689},"isBase":true}}}, +{"id":38535,"name":"Wristguards of the Remorseful","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,38,28,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"2":38,"3":28,"6":24,"22":467},"isBase":true}}}, +{"id":38536,"name":"Bindings of the Forceful Vanquisher","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,39,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"2":39,"3":26,"6":26,"22":224},"isBase":true}}}, +{"id":38537,"name":"Cuffs of the Decapitator","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,27,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"1":27,"2":55,"22":310},"isBase":true}}}, +{"id":38540,"name":"Sandals of Chaos Resolution","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,53,35,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"2":53,"3":35,"6":34,"22":352},"isBase":true}}}, +{"id":38541,"name":"Implacable Zombie Crushers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[36,0,49,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1083,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"0":36,"2":49,"6":33,"22":1083},"isBase":true}}}, +{"id":38542,"name":"Treads of the Valiant Struggle","icon":"inv_boots_01","type":10,"armorType":3,"stats":[0,35,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"1":35,"2":78,"22":734},"isBase":true}}}, +{"id":38543,"name":"Reinforced Traveler's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,34,52,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,488,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"1":34,"2":52,"8":35,"22":488},"isBase":true}}}, +{"id":38572,"name":"Bounty Procurement Enhancer","icon":"inv_misc_armorkit_22","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,98,98,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"150":{"randPropPoints":69,"stats":{"12":98,"13":98},"isBase":true}}}, +{"id":38588,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[10],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":38589,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"unique":true,"classAllowlist":[10],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":38590,"name":"Black Chitinguard Boots","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,39,89,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51568}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":39,"2":89,"6":33,"22":648},"isBase":true}}}, +{"id":38591,"name":"Dark Arctic Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,55,111,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51569}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"1":55,"2":111,"6":43,"22":789},"isBase":true}}}, +{"id":38592,"name":"Dark Arctic Chestpiece","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,52,122,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Borean Embrace","setId":754,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":51570}}],"scalingOptions":{"175":{"randPropPoints":117,"stats":{"1":52,"2":122,"6":45,"22":942},"isBase":true}}}, +{"id":38611,"name":"Ringlet of Repose","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,54,37,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"2":54,"3":37,"4":36},"isBase":true}}}, +{"id":38613,"name":"Chain of Fiery Orbs","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,55,36,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"2":55,"3":36,"4":38},"isBase":true}}}, +{"id":38614,"name":"Embrace of Sorrow","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,25,64,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"1":25,"2":64,"5":37,"22":357},"isBase":true}}}, +{"id":38615,"name":"Lightning-Charged Gloves","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,83,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":83,"3":58,"4":58,"22":992},"isBase":true}}}, +{"id":38616,"name":"Maiden's Girdle","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,89,58,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":89,"3":58,"6":58,"22":600},"isBase":true}}}, +{"id":38617,"name":"Woeful Band","icon":"inv_jewelry_ring_66","type":11,"stats":[44,0,63,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":44,"2":63,"10":42},"isBase":true}}}, +{"id":38618,"name":"Hammer of Grief","icon":"inv_hammer_25","type":13,"weaponType":4,"handType":4,"stats":[0,0,117,0,0,0,77,0,0,0,0,0,156,156,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"2":117,"6":77,"12":156,"13":156},"isBase":true}}}, +{"id":38710,"name":"Wayfinder's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,59,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":59,"3":21,"22":195},"isBase":true}}}, +{"id":38711,"name":"Grounded Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,77,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":77,"3":28,"22":279},"isBase":true}}}, +{"id":38712,"name":"Headbinder's Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,56,38,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":56,"3":38,"4":56,"22":363},"isBase":true}}}, +{"id":38713,"name":"Spaulders of Foresight","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":62,"3":43,"22":335},"isBase":true}}}, +{"id":38714,"name":"Path-Cutter's Cord","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,65,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":65,"3":42,"22":251},"isBase":true}}}, +{"id":38715,"name":"Forge-Scarred Sandals","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,41,28,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":41,"3":28,"6":42,"22":307},"isBase":true}}}, +{"id":38716,"name":"Ethereal Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,55,56,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":55,"3":56,"4":38,"22":363},"isBase":true}}}, +{"id":38717,"name":"Dusty Miner's Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,105,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":105,"3":38,"22":390},"isBase":true}}}, +{"id":38718,"name":"Wispy Shoulderpads","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,63,27,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":63,"3":27,"4":28,"22":335},"isBase":true}}}, +{"id":38719,"name":"Robe of Expurgation","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,106,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":106,"3":37,"22":446},"isBase":true}}}, +{"id":38726,"name":"Instigator's Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,40,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":40,"3":43,"4":28,"22":279},"isBase":true}}}, +{"id":38727,"name":"Foreseer's Girdle","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,44,38,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":44,"3":38,"6":28,"22":251},"isBase":true}}}, +{"id":38728,"name":"Kilt of Peaceful Reclamation","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,56,38,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":56,"3":38,"4":56,"22":390},"isBase":true}}}, +{"id":38729,"name":"Sandals of Quick Escape","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,42,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":42,"3":42,"7":28,"22":307},"isBase":true}}}, +{"id":38730,"name":"Bell-Ringer's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,63,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":63,"3":28,"5":28,"22":335},"isBase":true}}}, +{"id":38732,"name":"Bramble-Proof Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,54,56,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":54,"3":56,"4":38,"22":390},"isBase":true}}}, +{"id":38733,"name":"Raiment of the Caged Beast","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,84,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":84,"3":38,"4":37,"22":446},"isBase":true}}}, +{"id":38734,"name":"Abandoned Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,106,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":106,"3":38,"22":363},"isBase":true}}}, +{"id":38735,"name":"Specially Treated Robes","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,57,56,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":57,"3":56,"7":37,"22":446},"isBase":true}}}, +{"id":38736,"name":"Smuggler's Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,25,41,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":25,"3":41,"6":24,"22":232},"isBase":true}}}, +{"id":38737,"name":"Shock-Proof Head Protector","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,59,68,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":59,"3":68,"7":48,"22":430},"isBase":true}}}, +{"id":38739,"name":"Fleshwerk Shackles","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,30,39,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":30,"3":39,"5":26,"22":232},"isBase":true}}}, +{"id":38741,"name":"Gloves of Tormented Recollection","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,39,34,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":39,"3":34,"6":53,"22":331},"isBase":true}}}, +{"id":38743,"name":"Band of the Tender","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":48,"3":32},"isBase":true}}}, +{"id":38744,"name":"Solstice Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,48,22,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":48,"3":22,"4":21},"isBase":true}}}, +{"id":38745,"name":"Fetid Loop","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,32,21,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"3":32,"4":21,"7":22},"isBase":true}}}, +{"id":38746,"name":"Rancid Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,32,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":33,"3":32,"5":21},"isBase":true}}}, +{"id":38747,"name":"Mildly Tarnished Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,0,0,0,21,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":33,"6":21,"12":64,"13":64},"isBase":true}}}, +{"id":38748,"name":"Seal of the Slumbering Wolf","icon":"inv_jewelry_ring_28","type":11,"stats":[0,21,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"1":21,"2":60},"isBase":true}}}, +{"id":38749,"name":"Thane-Reaper's Signet","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,33,0,0,22,0,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":33,"5":22,"12":62,"13":62},"isBase":true}}}, +{"id":38750,"name":"Worgslayer's Ring","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,0,0,0,21,22,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"6":21,"7":22,"12":64,"13":64},"isBase":true}}}, +{"id":38751,"name":"Vengeful Spirit Beads","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,33,0,0,0,22,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":33,"6":22,"12":62,"13":62},"isBase":true}}}, +{"id":38752,"name":"Tatjana's Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,32,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":32,"3":22,"6":30},"isBase":true}}}, +{"id":38753,"name":"Hoarder's Necklace","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,36,24,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":36,"3":24,"4":23},"isBase":true}}}, +{"id":38754,"name":"Pruning Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,36,0,0,24,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":36,"5":24,"12":48,"13":48},"isBase":true}}}, +{"id":38755,"name":"Scepter of Passionate Reprisal","icon":"inv_offhand_blood_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":32,"3":32,"4":22},"isBase":true}}}, +{"id":38756,"name":"Drape of Horticultural Sanitization","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":32,"3":32,"6":20,"22":223},"isBase":true}}}, +{"id":38757,"name":"Drape of the Possessive Soul","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,30,0,0,0,0,22,0,0,0,0,62,62,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":30,"7":22,"12":62,"13":62,"22":223},"isBase":true}}}, +{"id":38758,"name":"Therapeutic Cloak","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,33,0,0,31,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":33,"5":31,"12":44,"13":44,"22":223},"isBase":true}}}, +{"id":38759,"name":"Injured Trapper's Cloak","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,36,23,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":36,"3":23,"4":24,"22":223},"isBase":true}}}, +{"id":38760,"name":"Mendicant's Charm","icon":"inv_misc_candle_01","type":12,"stats":[0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"3":48},"isBase":true}}}, +{"id":38761,"name":"Talon of Hatred","icon":"inv_misc_horn_05","type":12,"stats":[0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"7":48},"isBase":true}}}, +{"id":38762,"name":"Insignia of Bloody Fire","icon":"spell_fire_playingwithfire","type":12,"stats":[0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"6":48},"isBase":true}}}, +{"id":38763,"name":"Futuresight Rune","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":53},"isBase":true}}}, +{"id":38764,"name":"Rune of Finite Variation","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"6":47},"isBase":true}}}, +{"id":38765,"name":"Rune of Infinite Power","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"5":55},"isBase":true}}}, +{"id":39010,"name":"Wolfslayer's Crest","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,31,20,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":31,"3":20,"4":30,"22":3723},"isBase":true}}}, +{"id":39011,"name":"Bloody Bulwark","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[21,0,48,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,3723,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"0":21,"2":48,"9":20,"22":3723},"isBase":true}}}, +{"id":39013,"name":"Discoverer's Mitts","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":42,"2":54,"22":387},"isBase":true}}}, +{"id":39015,"name":"Crackpot Spaulders","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":41,"2":63,"22":465},"isBase":true}}}, +{"id":39016,"name":"Tunic of the Rectified Thane","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":84,"3":56,"22":619},"isBase":true}}}, +{"id":39017,"name":"Belt of Keen Hearing","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,41,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":41,"2":65,"22":348},"isBase":true}}}, +{"id":39018,"name":"Boots of Safe Travel","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,28,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":28,"2":78,"22":426},"isBase":true}}}, +{"id":39019,"name":"Iron-Shatter Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":84,"22":542},"isBase":true}}}, +{"id":39020,"name":"Drakuru's Ghastly Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":84,"22":503},"isBase":true}}}, +{"id":39021,"name":"Ectoplasm Stained Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,32,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"1":32,"2":46,"22":271},"isBase":true}}}, +{"id":39022,"name":"Helm of Rising Smoke","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":84,"3":56,"22":503},"isBase":true}}}, +{"id":39023,"name":"Wax-Coated Chestguard","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,56,56,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":56,"6":38,"22":619},"isBase":true}}}, +{"id":39025,"name":"Shackles of Sanity","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,32,32,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"1":32,"2":32,"5":20,"22":271},"isBase":true}}}, +{"id":39026,"name":"Pauldrons of the Prophet","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":41,"2":42,"6":28,"22":465},"isBase":true}}}, +{"id":39027,"name":"Leggings of Anger Management","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":84,"3":56,"22":542},"isBase":true}}}, +{"id":39028,"name":"Coiled Leather Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,27,42,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":27,"2":42,"7":42,"22":387},"isBase":true}}}, +{"id":39029,"name":"Waistguard of Expedient Procurement","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,28,41,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":28,"2":41,"6":40,"22":348},"isBase":true}}}, +{"id":39030,"name":"Patchhide Pants","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,56,57,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":57,"5":37,"22":542},"isBase":true}}}, +{"id":39031,"name":"Boots of Internal Strife","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":62,"3":43,"22":426},"isBase":true}}}, +{"id":39033,"name":"Discarded Miner's Jerkin","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,56,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":71,"22":619},"isBase":true}}}, +{"id":39034,"name":"Bearskin Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,56,56,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":56,"5":37,"22":503},"isBase":true}}}, +{"id":39035,"name":"Glacier-Walker's Mukluks","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,43,48,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":43,"2":48,"6":40,"22":509},"isBase":true}}}, +{"id":39036,"name":"Hulking Horror Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,68,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":68,"2":97,"22":741},"isBase":true}}}, +{"id":39038,"name":"Fleshwerk Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,39,39,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":39,"2":39,"6":20,"22":324},"isBase":true}}}, +{"id":39040,"name":"Gloves of Troubled Memory","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,53,51,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":53,"2":51,"6":26,"22":463},"isBase":true}}}, +{"id":39043,"name":"Trailbreaker's Spaulders","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":62,"3":43,"22":702},"isBase":true}}}, +{"id":39044,"name":"Short-Circuiting Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":42,"2":63,"22":643},"isBase":true}}}, +{"id":39045,"name":"Legguards of Refuted Feudalism","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":84,"3":56,"22":819},"isBase":true}}}, +{"id":39046,"name":"Shoulderpads of Imminent Disaster","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":42,"2":63,"22":702},"isBase":true}}}, +{"id":39047,"name":"Legguards of Unerring Navigation","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"2":84,"22":819},"isBase":true}}}, +{"id":39049,"name":"Helm of Spirit Links","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,0,104,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":104,"3":37,"22":760},"isBase":true}}}, +{"id":39050,"name":"Ghostridden Waistguard","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":41,"2":63,"22":526},"isBase":true}}}, +{"id":39051,"name":"Plane-Shifted Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,63,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":63,"3":43,"22":643},"isBase":true}}}, +{"id":39052,"name":"Acid-Resistant Hauberk","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,83,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":83,"3":56,"22":935},"isBase":true}}}, +{"id":39053,"name":"Helm of the Furbolg Purifier","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":55,"2":82,"22":760},"isBase":true}}}, +{"id":39054,"name":"Gossamer-Stained Grips","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,42,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":42,"2":62,"22":585},"isBase":true}}}, +{"id":39055,"name":"Handguards of Extermination","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":62,"3":43,"22":585},"isBase":true}}}, +{"id":39056,"name":"Whip-Stitched Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,31,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"1":31,"2":48,"22":409},"isBase":true}}}, +{"id":39057,"name":"Polished Staghorn Helm","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,55,53,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":55,"2":53,"6":39,"22":760},"isBase":true}}}, +{"id":39058,"name":"Legguards of Swift Pursuit","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,56,0,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":56,"6":38,"7":37,"22":819},"isBase":true}}}, +{"id":39059,"name":"Wristguard of the Tormented Soul","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,47,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,409,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":47,"3":31,"22":409},"isBase":true}}}, +{"id":39060,"name":"Patched Trapper Pauldrons","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"1":41,"2":42,"6":28,"22":702},"isBase":true}}}, +{"id":39062,"name":"Herbalist's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,62,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":62,"3":43,"22":465},"isBase":true}}}, +{"id":39064,"name":"Hide-Lined Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,55,54,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"1":55,"2":54,"6":38,"22":935},"isBase":true}}}, +{"id":39065,"name":"Skycaptain's Belt","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,43,44,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":43,"2":44,"5":42,"22":634},"isBase":true}}}, +{"id":39066,"name":"Leggings of the Turning Point","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,62,77,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":62,"2":77,"7":41,"22":986},"isBase":true}}}, +{"id":39068,"name":"Flesh-Scaled Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,39,30,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":39,"2":30,"6":26,"22":493},"isBase":true}}}, +{"id":39070,"name":"Gloves of the Mad Bomber","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,36,44,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":36,"2":44,"6":50,"22":704},"isBase":true}}}, +{"id":39072,"name":"Blacksoul Protector's Hauberk","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[32,0,48,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":72,"stats":{"0":32,"2":48,"9":48,"22":1172},"isBase":true}}}, +{"id":39073,"name":"Root of the Everlasting","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,0,24,23,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"weaponSpeed":1.6,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":31,"weaponDamageMin":63,"weaponDamageMax":117,"stats":{"3":24,"4":23,"14":218},"isBase":true}}}, +{"id":39074,"name":"Drape of Distilled Hatred","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,17,26,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"3":17,"4":26,"7":18,"22":195},"isBase":true}}}, +{"id":39075,"name":"Waywalker's Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[42,0,40,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":42,"2":40,"6":28,"22":781},"isBase":true}}}, +{"id":39076,"name":"Golem-Rider's Greaves","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[56,0,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":56,"2":55,"6":38,"22":1215},"isBase":true}}}, +{"id":39077,"name":"Skull-Reshaper's Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[0,0,85,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":85,"3":56,"22":1128},"isBase":true}}}, +{"id":39078,"name":"Whispering Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[42,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":42,"2":42,"6":27,"22":955},"isBase":true}}}, +{"id":39079,"name":"Bracers of the Chaperon","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[32,0,30,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"0":32,"2":30,"6":21,"22":608},"isBase":true}}}, +{"id":39080,"name":"Grips of Flawed Temper","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[42,0,39,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":42,"2":39,"5":28,"22":868},"isBase":true}}}, +{"id":39081,"name":"Spiritforged Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[38,0,55,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":38,"2":55,"6":56,"22":1128},"isBase":true}}}, +{"id":39082,"name":"Shocksteel Shoulderguards","icon":"inv_shoulder_69","type":3,"armorType":4,"stats":[27,0,63,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":27,"2":63,"5":28,"22":1042},"isBase":true}}}, +{"id":39083,"name":"Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[33,0,36,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52572}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"0":33,"2":36,"9":30,"22":920},"isBase":true}}}, +{"id":39084,"name":"Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[33,0,51,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52571}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"0":33,"2":51,"9":50,"22":996},"isBase":true}}}, +{"id":39085,"name":"Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52570}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"0":39,"2":60,"9":39,"22":1226},"isBase":true}}}, +{"id":39086,"name":"Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[40,0,66,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52567}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"0":40,"2":66,"9":32,"22":1073},"isBase":true}}}, +{"id":39087,"name":"Cobalt Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[25,0,39,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52568}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"0":25,"2":39,"9":37,"22":690},"isBase":true}}}, +{"id":39088,"name":"Cobalt Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[29,0,44,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":52569}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"0":29,"2":44,"9":30,"22":843},"isBase":true}}}, +{"id":39089,"name":"Spiritforged Legguards","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,84,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1227,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":155,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":84,"stats":{"2":84,"3":56,"22":1227},"isBase":true}}}, +{"id":39090,"name":"Chestplate of Untimely Rewards","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[56,0,54,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":56,"2":54,"7":38,"22":1389},"isBase":true}}}, +{"id":39091,"name":"Blood-Spattered Spaulders","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[41,0,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":41,"2":42,"6":28,"22":1042},"isBase":true}}}, +{"id":39092,"name":"Thought-Purifying Protector","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[58,0,54,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":58,"2":54,"6":35,"22":1128},"isBase":true}}}, +{"id":39093,"name":"Chestguard of Expressed Fury","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[0,0,80,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":80,"3":58,"22":1389},"isBase":true}}}, +{"id":39094,"name":"Load-Bearing Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[26,0,39,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":26,"2":39,"5":43,"22":781},"isBase":true}}}, +{"id":39095,"name":"Hammer-Holder's Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[26,0,38,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":26,"2":38,"7":44,"22":868},"isBase":true}}}, +{"id":39096,"name":"Snaptooth Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[59,0,51,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":59,"2":51,"6":35,"22":1215},"isBase":true}}}, +{"id":39097,"name":"Sabatons of Crushed Humanity","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,66,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":66,"3":43,"22":955},"isBase":true}}}, +{"id":39098,"name":"Rusty Cave Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,36,0,0,24,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":36,"5":24,"6":45,"22":955},"isBase":true}}}, +{"id":39099,"name":"Carapace of the Fallen","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[60,0,0,0,0,0,33,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"0":60,"6":33,"8":32,"22":1389},"isBase":true}}}, +{"id":39100,"name":"Plated Bracelet of the Skies","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[21,0,0,0,0,0,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":21,"6":32,"7":24,"22":726},"isBase":true}}}, +{"id":39102,"name":"Icewalker's Spikes","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[52,0,0,0,0,0,27,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":52,"6":27,"7":34,"22":1141},"isBase":true}}}, +{"id":39104,"name":"Hardened Bone Wrist Protectors","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[39,0,30,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":39,"2":30,"8":26,"22":726},"isBase":true}}}, +{"id":39105,"name":"Girdle of Growing Vines","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,36,42,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":36,"3":42,"6":31,"22":781},"isBase":true}}}, +{"id":39108,"name":"Bloodstained Helmet","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[51,0,0,0,0,0,41,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":51,"6":41,"7":62,"22":1349},"isBase":true}}}, +{"id":39109,"name":"Branch of the Roaming Spirit","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,49,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":402,"weaponDamageMax":603,"weaponSpeed":3,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":402,"weaponDamageMax":603,"stats":{"1":49,"2":90},"isBase":true}}}, +{"id":39110,"name":"Staff of Righteous Vengeance","icon":"inv_staff_50","type":13,"weaponType":8,"handType":4,"stats":[0,59,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":388,"weaponDamageMax":583,"weaponSpeed":2.9,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":388,"weaponDamageMax":583,"stats":{"1":59,"8":51},"isBase":true}}}, +{"id":39112,"name":"Talon of Freedom","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":243,"weaponDamageMax":452,"weaponSpeed":2.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":243,"weaponDamageMax":452,"stats":{"6":22,"12":50,"13":50},"isBase":true}}}, +{"id":39113,"name":"Jagged Troll Render","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[21,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":207,"weaponDamageMax":385,"weaponSpeed":2.3,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":207,"weaponDamageMax":385,"stats":{"0":21,"6":26},"isBase":true}}}, +{"id":39114,"name":"Axe of the Warlord's Demise","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,49,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":361,"weaponDamageMax":543,"weaponSpeed":2.7,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":361,"weaponDamageMax":543,"stats":{"1":49,"2":90},"isBase":true}}}, +{"id":39115,"name":"Axe of Bloodstained Ice","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[53,0,79,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":587,"weaponDamageMax":881,"weaponSpeed":3.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":587,"weaponDamageMax":881,"stats":{"0":53,"2":79,"9":53},"isBase":true}}}, +{"id":39116,"name":"Grinder of Reverse Emancipation","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[46,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"weaponSpeed":3.5,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":469,"weaponDamageMax":704,"stats":{"0":46,"8":62},"isBase":true}}}, +{"id":39117,"name":"Liberator's Blade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,64,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":482,"weaponDamageMax":724,"weaponSpeed":3.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":482,"weaponDamageMax":724,"stats":{"5":64,"6":42},"isBase":true}}}, +{"id":39118,"name":"Glowing Voodoo Orb","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,37,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"3":37,"6":23},"isBase":true}}}, +{"id":39119,"name":"Bondsniper","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,65,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":340,"weaponDamageMax":632,"weaponSpeed":2.9,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":340,"weaponDamageMax":632,"stats":{"1":65,"6":42},"isBase":true}}}, +{"id":39120,"name":"Spire of Soaring Rumination","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,62,0,46,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":201,"weaponDamageMax":302,"weaponSpeed":3,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":201,"weaponDamageMax":302,"stats":{"4":62,"6":46,"14":253},"isBase":true}}}, +{"id":39121,"name":"Cultist's Cauldron Stirrer","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,114,0,0,0,0,52,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":230,"weaponDamageMax":345,"weaponSpeed":2.9,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":230,"weaponDamageMax":345,"stats":{"2":114,"7":52,"14":304},"isBase":true}}}, +{"id":39124,"name":"Branch of Insightful Dreams","icon":"inv_wand_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,32,30,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":47,"stats":{"2":32,"3":30,"7":22},"isBase":true}}}, +{"id":39125,"name":"Beaked Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"6":21,"12":52,"13":52},"isBase":true}}}, +{"id":39127,"name":"Serrated Cold-Iron Slicer","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,21,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":144,"weaponDamageMax":268,"weaponSpeed":1.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":144,"weaponDamageMax":268,"stats":{"6":21,"8":26},"isBase":true}}}, +{"id":39128,"name":"Yoke Slasher","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,28,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"stats":{"1":28,"2":27},"isBase":true}}}, +{"id":39129,"name":"Spike of Renounced Autonomy","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":162,"weaponDamageMax":302,"weaponSpeed":1.8,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":162,"weaponDamageMax":302,"stats":{"6":18,"7":28},"isBase":true}}}, +{"id":39130,"name":"Corrupter's Shanker","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,23,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"1":23,"2":50},"isBase":true}}}, +{"id":39131,"name":"Warbling Crossbow","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,61,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"weaponDamageMin":363,"weaponDamageMax":675,"weaponSpeed":3.1,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":84,"weaponDamageMin":363,"weaponDamageMax":675,"stats":{"1":61,"6":48},"isBase":true}}}, +{"id":39132,"name":"Sword of the Caged Mind","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,56,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":72,"weaponDamageMax":134,"weaponSpeed":1.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":72,"weaponDamageMax":134,"stats":{"2":56,"14":253},"isBase":true}}}, +{"id":39133,"name":"Necrolord's Sacrificial Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,44,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"4":44,"14":302},"isBase":true}}}, +{"id":39134,"name":"Bow of Regression","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,69,57,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":416,"weaponDamageMax":774,"weaponSpeed":3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":416,"weaponDamageMax":774,"stats":{"1":69,"2":57,"7":47},"isBase":true}}}, +{"id":39135,"name":"Wyrmstalker's Bow","icon":"inv_weapon_bow_37","type":14,"rangedWeaponType":1,"stats":[0,57,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"weaponSpeed":2.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"stats":{"1":57,"6":76},"isBase":true}}}, +{"id":39136,"name":"Reanimator's Hacker","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[24,0,0,0,0,0,23,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"0":24,"6":23,"7":19},"isBase":true}}}, +{"id":39139,"name":"Ravaging Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[67,0,72,0,0,0,38,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":67,"2":72,"6":38,"7":65,"22":1609},"isBase":true}}}, +{"id":39140,"name":"Knife of Incision","icon":"inv_knife_1h_stratholme_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,19,72,0,0,0,29,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"stats":{"1":19,"2":72,"6":29,"7":26},"isBase":true}}}, +{"id":39141,"name":"Deflection Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[38,0,75,0,0,25,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":38,"2":75,"5":25,"9":48},"isBase":true}}}, +{"id":39142,"name":"Mace of Helotry","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,42,0,18,0,0,0,0,0,0,0,0,0,253,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":99,"weaponDamageMax":184,"weaponSpeed":2.2,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":99,"weaponDamageMax":184,"stats":{"2":42,"4":18,"14":253},"isBase":true}}}, +{"id":39143,"name":"Writhing Mace","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,30,0,0,0,31,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":2.2,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":117,"weaponDamageMax":218,"stats":{"2":30,"6":31,"14":302},"isBase":true}}}, +{"id":39144,"name":"Twisted Hooligan Whacker","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,24,0,0,0,0,0,20,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"2":24,"8":20,"12":56,"13":56},"isBase":true}}}, +{"id":39146,"name":"Collar of Dissolution","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,36,78,0,0,24,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":36,"2":78,"5":24,"8":38},"isBase":true}}}, +{"id":39168,"name":"Worg-Rendering Shoulderguards","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[40,0,42,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"0":40,"2":42,"7":28,"22":1292},"isBase":true}}}, +{"id":39169,"name":"Keen Razorfang Spaulders","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"1":42,"2":63,"22":870},"isBase":true}}}, +{"id":39170,"name":"Furred Worgslayer Spaulders","icon":"inv_shoulder_74","type":3,"armorType":1,"stats":[0,0,71,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"2":71,"3":44,"22":415},"isBase":true}}}, +{"id":39171,"name":"Fangsever Shoulderguards","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,41,42,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"1":41,"2":42,"6":28,"22":576},"isBase":true}}}, +{"id":39172,"name":"Bone-Polished Iceplate Shoulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[29,0,62,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,1292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"0":29,"2":62,"9":28,"22":1292},"isBase":true}}}, +{"id":39173,"name":"Bulwark of the Tormented God","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[21,0,44,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,4619,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":54,"stats":{"0":21,"2":44,"9":32,"22":4619},"isBase":true}}}, +{"id":39174,"name":"Legguards of Dissolved Hope","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[62,0,48,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"0":62,"2":48,"6":50,"22":1507},"isBase":true}}}, +{"id":39175,"name":"Leggings of Forceful Purification","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[38,0,87,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"0":38,"2":87,"9":50,"22":1507},"isBase":true}}}, +{"id":39176,"name":"Kilt of Deific Torment","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,54,59,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"2":54,"3":59,"6":50,"22":484},"isBase":true}}}, +{"id":39177,"name":"Pants of Purified Wind","icon":"inv_pants_leather_20","type":9,"armorType":2,"stats":[0,60,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":60,"2":95,"22":672},"isBase":true}}}, +{"id":39178,"name":"Greaves of Sanctified Dissolution","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,59,77,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":96,"stats":{"1":59,"2":77,"6":36,"22":1015},"isBase":true}}}, +{"id":39179,"name":"Charged Earthlink Grips","icon":"inv_gauntlets_03","type":7,"armorType":4,"stats":[44,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"0":44,"2":38,"7":26,"22":1076},"isBase":true}}}, +{"id":39180,"name":"Handguards of the Sanguine Gladiator","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[26,0,66,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"0":26,"2":66,"9":27,"22":1076},"isBase":true}}}, +{"id":39181,"name":"Grips of Torrential Power","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,42,28,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"2":42,"3":28,"6":41,"22":346},"isBase":true}}}, +{"id":39182,"name":"Handguards of Deluded Might","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,42,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"1":42,"2":42,"6":27,"22":725},"isBase":true}}}, +{"id":39183,"name":"Shining Buckle Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":71,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":71,"stats":{"1":42,"2":54,"22":480},"isBase":true}}}, +{"id":39188,"name":"Chivalric Chestguard","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,128,73,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"6":36,"7":64,"22":2340},"isBase":true}}}, +{"id":39189,"name":"Boots of Persistence","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,95,66,32,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":66,"4":32,"6":50,"22":1128},"isBase":true}}}, +{"id":39190,"name":"Agonal Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,95,65,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28546,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":65,"4":48,"7":38,"22":455},"isBase":true}}}, +{"id":39191,"name":"Splint-Bound Leggings","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,123,73,68,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28587,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":68,"7":36,"22":965},"isBase":true}}}, +{"id":39192,"name":"Gloves of Dark Gestures","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,95,58,0,25,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28586,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":58,"5":25,"6":50,"22":505},"isBase":true}}}, +{"id":39193,"name":"Band of Neglected Pleas","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,71,50,32,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":32,"6":33},"isBase":true}}}, +{"id":39194,"name":"Rusted-Link Spiked Gauntlets","icon":"inv_gauntlets_59","type":7,"armorType":3,"stats":[0,58,79,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":79,"5":36,"6":44,"22":1026},"isBase":true}}}, +{"id":39195,"name":"Bracers of Lost Sentiments","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[50,0,73,0,0,25,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":73,"5":25,"8":38,"22":1024},"isBase":true}}}, +{"id":39196,"name":"Boots of the Worshiper","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,66,91,0,0,0,38,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":91,"6":38,"7":51,"22":758},"isBase":true}}}, +{"id":39197,"name":"Gauntlets of the Master","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[51,0,99,0,0,33,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":51,"2":99,"5":33,"9":65,"22":1463},"isBase":true}}}, +{"id":39198,"name":"Frostblight Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,95,65,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":65,"4":38,"7":48,"22":1755},"isBase":true}}}, +{"id":39199,"name":"Watchful Eye","icon":"inv_offhand_naxxramas_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,71,50,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27977,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"5":28,"6":36},"isBase":true}}}, +{"id":39200,"name":"Grieving Spellblade","icon":"inv_sword_61","type":13,"weaponType":9,"handType":2,"stats":[0,0,70,0,0,0,37,27,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28234,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":70,"6":37,"7":27,"14":513},"isBase":true}}}, +{"id":39215,"name":"Boots of the Follower","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,77,66,66,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":77,"3":66,"4":66,"7":32,"22":758},"isBase":true}}}, +{"id":39216,"name":"Sash of Mortal Desire","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,94,65,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27975,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":65,"4":38,"6":48,"22":455},"isBase":true}}}, +{"id":39217,"name":"Avenging Combat Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,128,73,38,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"4":38,"7":63,"22":1436},"isBase":true}}}, +{"id":39221,"name":"Wraith Spear","icon":"inv_weapon_halberd_04","type":13,"weaponType":6,"handType":4,"stats":[0,90,130,0,0,0,68,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":891,"weaponDamageMax":1337,"weaponSpeed":3.7,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":891,"weaponDamageMax":1337,"stats":{"1":90,"2":130,"6":68,"7":45},"isBase":true}}}, +{"id":39224,"name":"Leggings of Discord","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,90,121,0,0,0,68,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":90,"2":121,"6":68,"8":53,"22":965},"isBase":true}}}, +{"id":39225,"name":"Cloak of Armed Strife","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[39,0,50,0,0,28,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,404,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":39,"2":50,"5":28,"9":37,"22":404,"23":96},"isBase":true}}}, +{"id":39226,"name":"Maexxna's Femur","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,27,68,0,0,0,19,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":1.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"stats":{"1":27,"2":68,"6":19,"7":29},"isBase":true}}}, +{"id":39228,"name":"Web Cocoon Grips","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,94,66,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":38,"7":48,"22":1463},"isBase":true}}}, +{"id":39229,"name":"Embrace of the Spider","icon":"inv_trinket_naxxramas04","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":84},"isBase":true}}}, +{"id":39230,"name":"Spaulders of the Monstrosity","icon":"inv_shoulder_72","type":3,"armorType":2,"stats":[0,0,94,67,48,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":67,"4":48,"6":38,"22":827},"isBase":true}}}, +{"id":39231,"name":"Timeworn Silken Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,71,50,28,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":28,"6":36},"isBase":true}}}, +{"id":39232,"name":"Pendant of Lost Vocations","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,69,49,30,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":69,"3":49,"4":30,"7":36},"isBase":true}}}, +{"id":39233,"name":"Aegis of Damnation","icon":"inv_shield_28","type":13,"weaponType":7,"handType":3,"stats":[0,0,67,51,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":67,"3":51,"6":36,"7":28,"22":6757},"isBase":true}}}, +{"id":39234,"name":"Plague-Impervious Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[65,0,99,0,0,0,0,0,0,53,33,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29304,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":65,"2":99,"9":53,"10":33,"22":1609},"isBase":true}}}, +{"id":39235,"name":"Bone-Framed Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,75,49,30,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":49,"4":30,"6":36,"22":1024},"isBase":true}}}, +{"id":39236,"name":"Trespasser's Boots","icon":"inv_boots_chain_01","type":10,"armorType":3,"stats":[0,66,70,0,0,0,62,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":70,"6":62,"7":29,"22":1128},"isBase":true}}}, +{"id":39237,"name":"Spaulders of Resumed Battle","icon":"inv_shoulder_67","type":3,"armorType":2,"stats":[0,66,106,0,0,38,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":106,"5":38,"6":42,"22":827},"isBase":true}}}, +{"id":39239,"name":"Chestplate of the Risen Soldier","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[90,0,96,0,0,0,52,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":90,"2":96,"6":52,"7":89,"22":2340},"isBase":true}}}, +{"id":39240,"name":"Noth's Curse","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,123,73,52,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":52,"7":36,"22":896},"isBase":true}}}, +{"id":39241,"name":"Dark Shroud of the Scourge","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[0,0,70,51,0,28,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":51,"5":28,"6":36,"22":404},"isBase":true}}}, +{"id":39242,"name":"Robes of Hoarse Breaths","icon":"inv_chest_cloth_42","type":5,"armorType":1,"stats":[0,0,132,89,66,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":132,"3":89,"4":66,"7":42,"22":808},"isBase":true}}}, +{"id":39243,"name":"Handgrips of the Foredoomed","icon":"inv_gauntlets_27","type":7,"armorType":3,"stats":[0,0,94,65,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27483,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":65,"6":48,"7":39,"22":1026},"isBase":true}}}, +{"id":39244,"name":"Ring of the Fated","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,71,36,0,0,50,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26631,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":36,"6":50,"7":28},"isBase":true}}}, +{"id":39245,"name":"Demise","icon":"inv_mace_25","type":13,"weaponType":4,"handType":4,"stats":[90,0,103,0,0,45,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":843,"weaponDamageMax":1265,"weaponSpeed":3.5,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26630,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":843,"weaponDamageMax":1265,"stats":{"0":90,"2":103,"5":45,"7":89},"isBase":true}}}, +{"id":39246,"name":"Amulet of Autopsy","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[50,0,75,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":75,"9":39,"23":100},"isBase":true}}}, +{"id":39247,"name":"Cuffs of Dark Shadows","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,50,80,0,0,0,32,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":80,"6":32,"7":25,"22":482},"isBase":true}}}, +{"id":39248,"name":"Tunic of the Lost Pack","icon":"inv_chest_leather_02","type":5,"armorType":3,"stats":[0,89,134,0,0,52,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":89,"2":134,"5":52,"6":64,"22":1641},"isBase":true}}}, +{"id":39249,"name":"Shoulderplates of Bloodshed","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[59,0,72,0,0,30,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":59,"2":72,"5":30,"6":65,"22":1755},"isBase":true}}}, +{"id":39250,"name":"Ring of Holy Cleansing","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,70,50,29,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":29,"7":36},"isBase":true}}}, +{"id":39251,"name":"Necrogenic Belt","icon":"inv_belt_15","type":8,"armorType":3,"stats":[0,0,97,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":46,"6":44,"22":923},"isBase":true}}}, +{"id":39252,"name":"Preceptor's Bindings","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,70,50,0,33,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"5":33,"6":34,"22":354},"isBase":true}}}, +{"id":39254,"name":"Saltarello Shoes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,94,66,51,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":51,"7":33,"22":556},"isBase":true}}}, +{"id":39255,"name":"Staff of the Plague Beast","icon":"inv_staff_77","type":13,"weaponType":8,"handType":4,"stats":[0,89,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":578,"weaponDamageMax":867,"weaponSpeed":2.4,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":578,"weaponDamageMax":867,"stats":{"1":89,"2":178,"23":180},"isBase":true}}}, +{"id":39256,"name":"Sulfur Stave","icon":"inv_staff_34","type":13,"weaponType":8,"handType":4,"stats":[0,0,169,0,0,59,89,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":252,"weaponDamageMax":379,"weaponSpeed":2.1,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":252,"weaponDamageMax":379,"stats":{"2":169,"5":59,"6":89,"14":511},"isBase":true}}}, +{"id":39257,"name":"Loatheb's Shadow","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":39258,"name":"Legplates of Inescapable Death","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[73,0,111,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":73,"2":111,"10":73,"22":2048},"isBase":true}}}, +{"id":39259,"name":"Fungi-Stained Coverings","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,127,73,65,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":73,"4":65,"6":36,"22":1103},"isBase":true}}}, +{"id":39260,"name":"Helm of the Corrupted Mind","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,128,72,0,0,49,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":72,"6":49,"7":36,"22":1901},"isBase":true}}}, +{"id":39261,"name":"Tainted Girdle of Mending","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,97,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28921,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":46,"6":44,"22":1316},"isBase":true}}}, +{"id":39262,"name":"Gauntlets of Combined Strength","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[65,0,99,0,0,0,33,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":65,"2":99,"6":33,"7":52,"22":1463},"isBase":true}}}, +{"id":39263,"name":"Dissevered Leggings","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,73,134,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29309,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":134,"5":44,"6":60,"22":1436},"isBase":true}}}, +{"id":39267,"name":"Abomination Shoulderblades","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[53,0,87,0,0,28,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28684,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":53,"2":87,"5":28,"9":59,"22":1755},"isBase":true}}}, +{"id":39271,"name":"Blade of Dormant Memories","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,66,0,0,0,40,27,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":66,"6":40,"7":27,"14":513},"isBase":true}}}, +{"id":39272,"name":"Drape of Surgery","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,0,74,50,36,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":74,"3":50,"4":36,"7":25,"22":404},"isBase":true}}}, +{"id":39273,"name":"Sullen Cloth Boots","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,92,65,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":92,"3":65,"4":38,"6":48,"22":556},"isBase":true}}}, +{"id":39274,"name":"Retcher's Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,0,92,66,28,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":92,"3":66,"4":28,"7":53,"22":1231},"isBase":true}}}, +{"id":39275,"name":"Contagion Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,66,38,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":38,"6":48,"22":689},"isBase":true}}}, +{"id":39276,"name":"The Skull of Ruin","icon":"inv_shield_26","type":13,"weaponType":7,"handType":3,"stats":[50,0,75,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":75,"9":39,"22":6757},"isBase":true}}}, +{"id":39277,"name":"Sealing Ring of Grobbulus","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,36,89,0,0,0,38,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":36,"2":89,"6":38,"7":24},"isBase":true}}}, +{"id":39278,"name":"Bands of Anxiety","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,50,75,0,0,29,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":75,"5":29,"6":36,"22":718},"isBase":true}}}, +{"id":39279,"name":"Blistered Belt of Decay","icon":"inv_belt_21","type":8,"armorType":2,"stats":[0,66,100,0,0,0,33,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":100,"6":33,"7":48,"22":620},"isBase":true}}}, +{"id":39280,"name":"Leggings of Innumerable Barbs","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[74,0,133,0,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":36,"7":64,"22":2048},"isBase":true}}}, +{"id":39281,"name":"Infection Repulser","icon":"inv_mace_29","type":13,"weaponType":4,"handType":2,"stats":[0,0,66,0,28,0,0,40,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":66,"4":28,"7":40,"14":513},"isBase":true}}}, +{"id":39282,"name":"Bone-Linked Amulet","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,58,49,25,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":58,"3":49,"4":25,"6":50},"isBase":true}}}, +{"id":39283,"name":"Putrescent Bands","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,60,49,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":60,"3":49,"4":38,"7":29,"22":482},"isBase":true}}}, +{"id":39284,"name":"Miasma Mantle","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,97,66,43,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":43,"6":45,"22":606},"isBase":true}}}, +{"id":39285,"name":"Handgrips of Turmoil","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,97,58,36,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":58,"4":36,"7":44,"22":505},"isBase":true}}}, +{"id":39291,"name":"Torment of the Banished","icon":"inv_sword_60","type":13,"weaponType":9,"handType":2,"stats":[0,27,72,0,0,0,26,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":27,"2":72,"6":26,"7":22},"isBase":true}}}, +{"id":39292,"name":"Repelling Charge","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"9":84},"isBase":true}}}, +{"id":39293,"name":"Blackened Legplates of Feugen","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[0,0,128,89,58,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":89,"4":58,"7":61,"22":2048},"isBase":true}}}, +{"id":39294,"name":"Arc-Scorched Helmet","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,74,111,0,0,0,71,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":111,"6":71,"7":30,"22":1333},"isBase":true}}}, +{"id":39295,"name":"Cowl of Sheet Lightning","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,127,73,38,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":73,"4":38,"7":48,"22":657},"isBase":true}}}, +{"id":39296,"name":"Accursed Bow of the Elite","icon":"inv_weapon_bow_13","type":14,"rangedWeaponType":1,"stats":[0,90,119,0,0,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":590,"weaponDamageMax":1096,"weaponSpeed":2.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":590,"weaponDamageMax":1096,"stats":{"1":90,"2":119,"5":51,"7":67},"isBase":true}}}, +{"id":39297,"name":"Cloak of Darkening","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,29,97,0,0,0,24,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":29,"2":97,"6":24,"7":38,"22":404},"isBase":true}}}, +{"id":39298,"name":"Waistguard of the Tutor","icon":"inv_belt_12","type":8,"armorType":4,"stats":[67,0,97,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26687,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":67,"2":97,"10":53,"22":1316},"isBase":true}}}, +{"id":39299,"name":"Rapid Attack Gloves","icon":"inv_gauntlets_31","type":7,"armorType":2,"stats":[0,58,100,0,0,0,0,40,33,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":100,"7":40,"8":33,"22":689},"isBase":true}}}, +{"id":39306,"name":"Plated Gloves of Relief","icon":"inv_gauntlets_52","type":7,"armorType":4,"stats":[0,0,94,58,48,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":48,"6":30,"22":1463},"isBase":true}}}, +{"id":39307,"name":"Iron Rings of Endurance","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,70,50,30,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29312,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":30,"6":36,"22":718},"isBase":true}}}, +{"id":39308,"name":"Girdle of Lenience","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,94,66,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26668,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":48,"7":38,"22":620},"isBase":true}}}, +{"id":39309,"name":"Leggings of the Instructor","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,122,74,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":122,"3":74,"4":52,"6":52,"22":707},"isBase":true}}}, +{"id":39310,"name":"Mantle of the Extensive Mind","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,99,66,46,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":99,"3":66,"4":46,"7":44,"22":606},"isBase":true}}}, +{"id":39311,"name":"Scepter of Murmuring Spirits","icon":"inv_offhand_naxxramas_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,65,50,32,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":65,"3":50,"4":32,"6":38},"isBase":true}}}, +{"id":39323,"name":"Scrap-Hide Spaulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,84,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":84,"3":30,"22":358},"isBase":true}}}, +{"id":39330,"name":"Fingers of Dextrous Decimation","icon":"inv_gauntlets_20","type":7,"armorType":1,"stats":[0,0,44,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":44,"3":45,"4":30,"22":299},"isBase":true}}}, +{"id":39331,"name":"Tooth-Marked Girdle","icon":"inv_belt_05","type":8,"armorType":1,"stats":[0,0,72,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":72,"3":26,"6":26,"22":269},"isBase":true}}}, +{"id":39332,"name":"Ogre-Crushing Wristguards","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,29,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":29,"3":20,"4":36,"22":209},"isBase":true}}}, +{"id":39333,"name":"Nimblefoot Moccasins","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,63,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":63,"3":46,"22":329},"isBase":true}}}, +{"id":39335,"name":"Leggings of Mending Fronds","icon":"inv_pants_cloth_08","type":9,"armorType":1,"stats":[0,0,57,62,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":57,"3":62,"4":38,"22":418},"isBase":true}}}, +{"id":39336,"name":"Bracers of Prompt Reclamation","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,32,31,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":32,"3":31,"6":26,"22":209},"isBase":true}}}, +{"id":39337,"name":"Stained Coop Warmer","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,0,38,38,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"3":38,"4":38,"7":62,"22":478},"isBase":true}}}, +{"id":39344,"name":"Slayer of the Lifeless","icon":"inv_sword_62","type":13,"weaponType":9,"handType":2,"stats":[29,0,57,0,0,19,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"0":29,"2":57,"5":19,"9":38},"isBase":true}}}, +{"id":39345,"name":"Girdle of the Ascended Phantom","icon":"inv_belt_15","type":8,"armorType":4,"stats":[67,0,97,0,0,51,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":67,"2":97,"5":51,"6":33,"22":1316},"isBase":true}}}, +{"id":39346,"name":"Chitin-Reinforced Hood","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,57,62,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":57,"3":62,"5":38,"22":388},"isBase":true}}}, +{"id":39347,"name":"Gloves of the Crackling Storm","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,0,46,28,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"3":46,"4":28,"6":28,"22":299},"isBase":true}}}, +{"id":39348,"name":"Aged Watcher's Legwraps","icon":"inv_pants_06","type":9,"armorType":1,"stats":[0,0,60,40,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":60,"3":40,"7":40,"22":418},"isBase":true}}}, +{"id":39363,"name":"Binding of Purified Corpses","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,44,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":44,"3":30,"4":45,"22":269},"isBase":true}}}, +{"id":39364,"name":"Hood of the Titan Defender","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,58,41,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"3":58,"4":41,"6":40,"22":388},"isBase":true}}}, +{"id":39365,"name":"Lifewarden's Raiment","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,83,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":83,"3":63,"22":478},"isBase":true}}}, +{"id":39366,"name":"Spaulders of the Runeseeker","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,41,47,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":41,"3":47,"5":28,"22":358},"isBase":true}}}, +{"id":39367,"name":"Cowl of the Purifier","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,63,55,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":63,"3":55,"6":42,"22":388},"isBase":true}}}, +{"id":39368,"name":"Field Researcher's Boots","icon":"inv_boots_04","type":10,"armorType":1,"stats":[0,0,47,42,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":47,"3":42,"6":32,"22":329},"isBase":true}}}, +{"id":39369,"name":"Sabatons of Deathlike Gloom","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,94,66,46,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":24200,"zoneId":206}},{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":46,"6":44,"22":1609},"isBase":true}}}, +{"id":39372,"name":"Mantle of the Dark Messenger","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,0,43,32,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":43,"4":32,"7":40,"22":397},"isBase":true}}}, +{"id":39373,"name":"Bracers of Rapid Death","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,30,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"1":30,"2":53,"22":291},"isBase":true}}}, +{"id":39374,"name":"Crocscale Moccasins","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,48,32,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":48,"3":32,"7":40,"22":457},"isBase":true}}}, +{"id":39375,"name":"Dreadsaber Tooth Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,48,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":48,"2":62,"22":499},"isBase":true}}}, +{"id":39376,"name":"Bracers of the Rejuvenated Forest","icon":"inv_bracer_01","type":6,"armorType":2,"stats":[0,0,32,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":32,"3":35,"4":20,"22":291},"isBase":true}}}, +{"id":39377,"name":"Toenail Belt","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,33,47,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":33,"2":47,"6":48,"22":374},"isBase":true}}}, +{"id":39378,"name":"Ragged Leaf Grips","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,48,43,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":48,"2":43,"6":27,"22":416},"isBase":true}}}, +{"id":39379,"name":"Spectral Rider's Girdle","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,66,77,0,0,0,65,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":77,"6":65,"7":33,"22":923},"isBase":true}}}, +{"id":39380,"name":"Legguards of the Aggressive Emissary","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,54,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":54,"2":96,"22":582},"isBase":true}}}, +{"id":39383,"name":"Egg-Warming Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,49,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":49,"2":58,"22":457},"isBase":true}}}, +{"id":39385,"name":"Helm of the Ancient Horn","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,51,66,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":51,"2":66,"8":43,"22":541},"isBase":true}}}, +{"id":39386,"name":"Tunic of Dislocation","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,74,144,0,0,0,0,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":144,"7":43,"8":45,"22":1103},"isBase":true}}}, +{"id":39387,"name":"Stinger-Proof Chestguard","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,60,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,665,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":60,"2":89,"22":665},"isBase":true}}}, +{"id":39388,"name":"Spirit-World Glass","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"4":84},"isBase":true}}}, +{"id":39389,"name":"Signet of the Malevolent","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[0,0,75,39,0,49,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":39,"5":49,"7":33},"isBase":true}}}, +{"id":39390,"name":"Resurgent Phantom Bindings","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,64,50,38,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":64,"3":50,"4":38,"7":33,"22":354},"isBase":true}}}, +{"id":39391,"name":"Heinous Mail Chestguard","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,128,73,40,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"4":40,"6":61,"22":1641},"isBase":true}}}, +{"id":39392,"name":"Veiled Amulet of Life","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,70,50,34,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23953,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"7":33},"isBase":true}}}, +{"id":39393,"name":"Claymore of Ancient Power","icon":"inv_sword_46","type":13,"weaponType":9,"handType":4,"stats":[0,64,160,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":843,"weaponDamageMax":1265,"weaponSpeed":3.5,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":843,"weaponDamageMax":1265,"stats":{"1":64,"2":160,"6":89},"isBase":true}}}, +{"id":39394,"name":"Charmed Cierge","icon":"inv_staff_31","type":13,"weaponType":8,"handType":4,"stats":[0,0,127,0,90,0,0,89,0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":385,"weaponDamageMax":578,"weaponSpeed":3.2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":385,"weaponDamageMax":578,"stats":{"2":127,"4":90,"7":89,"14":511},"isBase":true}}}, +{"id":39395,"name":"Thane's Tainted Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[73,0,111,0,0,0,0,0,0,59,44,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26794,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":73,"2":111,"9":59,"10":44,"22":1901},"isBase":true}}}, +{"id":39396,"name":"Gown of Blaumeux","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,144,90,0,45,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":144,"3":90,"5":45,"7":59,"22":808},"isBase":true}}}, +{"id":39397,"name":"Pauldrons of Havoc","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,66,87,0,0,0,60,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26731,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":87,"6":60,"7":33,"22":1231},"isBase":true}}}, +{"id":39398,"name":"Massive Skeletal Ribcage","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[68,0,135,0,0,0,0,0,45,0,87,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26798,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":68,"2":135,"8":45,"10":87,"22":2340},"isBase":true}}}, +{"id":39399,"name":"Helm of the Vast Legions","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,74,126,0,0,43,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":126,"5":43,"7":48,"22":896},"isBase":true}}}, +{"id":39400,"name":"Static-Dispersing Shoulderpads","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,44,30,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":44,"3":30,"4":45,"22":499},"isBase":true}}}, +{"id":39401,"name":"Circle of Death","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[50,0,51,0,0,0,49,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":51,"6":49,"8":33},"isBase":true}}}, +{"id":39402,"name":"Binding of the Ancient Keeper","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,45,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,374,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":45,"3":45,"4":30,"22":374},"isBase":true}}}, +{"id":39403,"name":"Helm of the Unsubmissive","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[74,0,96,0,0,36,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":96,"5":36,"7":73,"22":1901},"isBase":true}}}, +{"id":39404,"name":"Cloak of Mastery","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[0,50,92,0,0,21,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":92,"5":21,"6":23,"22":404},"isBase":true}}}, +{"id":39405,"name":"Helmet of the Inner Sanctum","icon":"inv_helmet_107","type":1,"armorType":3,"stats":[0,0,135,73,0,0,48,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":135,"3":73,"6":48,"7":36,"22":1333},"isBase":true}}}, +{"id":39406,"name":"Splattered Zombie Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,33,33,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"1":33,"2":33,"6":23,"22":291},"isBase":true}}}, +{"id":39407,"name":"Circle of Life","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,72,50,32,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26763,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":72,"3":50,"4":32,"7":34},"isBase":true}}}, +{"id":39408,"name":"Leggings of Sapphiron","icon":"inv_pants_cloth_15","type":9,"armorType":1,"stats":[0,0,110,75,72,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27654,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":110,"3":75,"4":72,"7":41,"22":707},"isBase":true}}}, +{"id":39409,"name":"Cowl of Winged Fear","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,134,74,45,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27447,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":134,"3":74,"4":45,"6":36,"22":657},"isBase":true}}}, +{"id":39410,"name":"Gauntlets of Rampant Destruction","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,45,44,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":45,"3":44,"6":30,"22":416},"isBase":true}}}, +{"id":39411,"name":"Legguards of Guided Travel","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,61,60,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":61,"2":60,"6":39,"22":582},"isBase":true}}}, +{"id":39412,"name":"Scourgebane Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,45,47,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":45,"2":47,"7":28,"22":457},"isBase":true}}}, +{"id":39413,"name":"Hydrafang Breeches","icon":"inv_pants_leather_14","type":9,"armorType":2,"stats":[0,0,63,59,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":63,"3":59,"4":37,"22":582},"isBase":true}}}, +{"id":39414,"name":"Gilly's Strangulation Gauntlets","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,44,48,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":44,"2":48,"8":33,"22":463},"isBase":true}}}, +{"id":39415,"name":"Shroud of the Citadel","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,0,72,50,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27655,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":72,"3":50,"6":38,"7":25,"22":404},"isBase":true}}}, +{"id":39416,"name":"Kel'Thuzad's Reach","icon":"inv_weapon_hand_03","type":13,"weaponType":3,"handType":2,"stats":[0,21,81,0,0,0,31,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":545,"weaponDamageMax":818,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":545,"weaponDamageMax":818,"stats":{"1":21,"2":81,"6":31,"7":28},"isBase":true}}}, +{"id":39417,"name":"Death's Bite","icon":"inv_axe_2h_stratholme_d_01","type":13,"weaponType":1,"handType":4,"stats":[101,0,114,0,0,62,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"weaponSpeed":3.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"stats":{"0":101,"2":114,"5":62,"6":90},"isBase":true}}}, +{"id":39419,"name":"Nerubian Conquerer","icon":"inv_weapon_rifle_21","type":14,"rangedWeaponType":3,"stats":[0,102,181,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":691,"weaponDamageMax":1285,"weaponSpeed":2.9,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":691,"weaponDamageMax":1285,"stats":{"1":102,"2":181,"6":67},"isBase":true}}}, +{"id":39420,"name":"Anarchy","icon":"inv_weapon_shortblade_37","type":13,"weaponType":2,"handType":2,"stats":[0,29,83,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":377,"weaponDamageMax":566,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":377,"weaponDamageMax":566,"stats":{"1":29,"2":83,"5":28,"6":25},"isBase":true}}}, +{"id":39421,"name":"Gem of Imprisoned Vassals","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,32,104,0,0,0,41,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":32,"2":104,"6":41,"7":38},"isBase":true}}}, +{"id":39422,"name":"Staff of the Plaguehound","icon":"inv_staff_80","type":13,"weaponType":8,"handType":4,"stats":[0,72,225,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"weaponSpeed":2.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"stats":{"1":72,"2":225,"8":59},"isBase":true}}}, +{"id":39423,"name":"Hammer of the Astral Plane","icon":"inv_mace_27","type":13,"weaponType":4,"handType":2,"stats":[0,0,77,0,0,0,42,31,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26861,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":77,"6":42,"7":31,"14":576},"isBase":true}}}, +{"id":39424,"name":"The Soulblade","icon":"inv_knife_1h_stratholme_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,79,0,0,30,42,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":79,"5":30,"6":42,"14":576},"isBase":true}}}, +{"id":39425,"name":"Cloak of the Dying","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,80,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"6":38,"22":426},"isBase":true}}}, +{"id":39426,"name":"Wand of the Archlich","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,55,44,33,0,0,27,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":55,"3":44,"4":33,"7":27,"14":576},"isBase":true}}}, +{"id":39427,"name":"Omen of Ruin","icon":"inv_knife_1h_stratholme_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,29,71,0,0,0,29,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"1":29,"2":71,"6":29,"7":19},"isBase":true}}}, +{"id":39428,"name":"Faceguard of Flawless Aim","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,60,62,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":60,"2":62,"5":38,"22":819},"isBase":true}}}, +{"id":39429,"name":"Pauldrons of Swift Replenishment","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,42,31,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":42,"3":31,"6":44,"22":756},"isBase":true}}}, +{"id":39430,"name":"Spitelinked Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,31,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":31,"3":33,"4":26,"22":441},"isBase":true}}}, +{"id":39431,"name":"Shaved Rhinohorn Chestguard","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,60,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":60,"2":89,"22":1008},"isBase":true}}}, +{"id":39432,"name":"Belt of Misconceptions","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,0,67,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":67,"3":44,"22":567},"isBase":true}}}, +{"id":39433,"name":"Clear Earthen Scalemail","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,56,43,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":56,"3":43,"4":58,"22":1008},"isBase":true}}}, +{"id":39435,"name":"Straw-Lined Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,62,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"1":62,"2":84,"22":882},"isBase":true}}}, +{"id":39436,"name":"Insect-Filtering Faceguard","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,84,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,819,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":84,"3":62,"22":819},"isBase":true}}}, +{"id":39437,"name":"Belt of Trapped Lightning","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,30,40,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":30,"2":40,"6":46,"22":567},"isBase":true}}}, +{"id":39438,"name":"Rockhandler's Gloves","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,30,38,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":30,"2":38,"6":45,"22":630},"isBase":true}}}, +{"id":39439,"name":"Skeleton Smashers","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,44,47,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":44,"3":47,"7":25,"22":693},"isBase":true}}}, +{"id":39440,"name":"Greaves of the Titan Protectorate","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,59,63,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,882,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":59,"3":63,"4":32,"22":882},"isBase":true}}}, +{"id":39441,"name":"Treads of Bound Life","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,47,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":47,"2":70,"22":693},"isBase":true}}}, +{"id":39442,"name":"Seeing-Eye Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,47,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":47,"2":70,"22":567},"isBase":true}}}, +{"id":39443,"name":"Chain Gloves of the Demonic Minion","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,55,47,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":55,"2":47,"6":25,"22":704},"isBase":true}}}, +{"id":39444,"name":"Keeper's Touch","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,0,41,44,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":41,"3":44,"7":32,"22":630},"isBase":true}}}, +{"id":39445,"name":"Roc Hunter's Bracer","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,33,31,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"1":33,"2":31,"6":24,"22":441},"isBase":true}}}, +{"id":39446,"name":"Pauldrons of Resolution","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,44,47,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"1":44,"2":47,"5":29,"22":756},"isBase":true}}}, +{"id":39448,"name":"Helm of Brutal Slaughter","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[60,0,63,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":60,"2":63,"5":37,"22":1217},"isBase":true}}}, +{"id":39449,"name":"Wristguards of Titanic Vengeance","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[33,0,30,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":33,"2":30,"6":25,"22":655},"isBase":true}}}, +{"id":39450,"name":"Bug-Smashing Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[27,0,66,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"0":27,"2":66,"6":32,"22":1123},"isBase":true}}}, +{"id":39451,"name":"Pauldrons of the Silent Mist","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,66,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1123,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":66,"3":44,"22":1123},"isBase":true}}}, +{"id":39452,"name":"Roaming Wristguards","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[0,0,30,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":30,"3":34,"6":23,"22":655},"isBase":true}}}, +{"id":39453,"name":"Rhino-Tail Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[44,0,41,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"0":44,"2":41,"6":32,"22":842},"isBase":true}}}, +{"id":39454,"name":"Handguards of Transient Friendship","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[26,0,66,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"0":26,"2":66,"9":33,"22":936},"isBase":true}}}, +{"id":39455,"name":"Cracked Nest Stabilizer","icon":"inv_belt_29","type":8,"armorType":4,"stats":[0,0,69,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":69,"3":44,"22":842},"isBase":true}}}, +{"id":39457,"name":"Zepik's Grounded Legplates","icon":"inv_pants_plate_18","type":9,"armorType":4,"stats":[44,0,53,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":44,"2":53,"6":58,"22":1310},"isBase":true}}}, +{"id":39458,"name":"Cultbreaker's Chestguard","icon":"inv_chest_plate14","type":5,"armorType":4,"stats":[53,0,80,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":53,"2":80,"9":37,"22":1660},"isBase":true}}}, +{"id":39459,"name":"Preservative-Stained Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[46,0,45,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"0":46,"2":45,"8":25,"22":936},"isBase":true}}}, +{"id":39460,"name":"Sabatons of the Rampaging Construct","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,64,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":64,"3":46,"22":1030},"isBase":true}}}, +{"id":39461,"name":"Muck-Stained Carapace","icon":"inv_chest_plate04","type":5,"armorType":4,"stats":[58,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":58,"1":44,"2":52,"22":1497},"isBase":true}}}, +{"id":39462,"name":"Legplates of the Northern Expedition","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,65,59,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1310,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":65,"3":59,"6":53,"22":1310},"isBase":true}}}, +{"id":39463,"name":"Norrington's Burnished Breastplate","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,48,59,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"2":48,"3":59,"4":42,"22":1497},"isBase":true}}}, +{"id":39464,"name":"Lifegiver's Ward","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[24,0,51,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":24,"2":51,"10":18,"22":655},"isBase":true}}}, +{"id":39465,"name":"Pathfinding Treads","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,39,0,0,0,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":39,"6":43,"7":33,"22":1030},"isBase":true}}}, +{"id":39466,"name":"Boots of Dominance","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[43,26,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"0":43,"1":26,"6":34,"22":1030},"isBase":true}}}, +{"id":39467,"name":"Minion Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[50,0,75,0,0,0,0,0,0,38,24,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":75,"9":38,"10":24,"22":1024},"isBase":true}}}, +{"id":39468,"name":"The Stray","icon":"inv_weapon_hand_03","type":13,"weaponType":3,"handType":2,"stats":[0,22,72,0,0,27,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":22,"2":72,"5":27,"7":26},"isBase":true}}}, +{"id":39470,"name":"Medallion of the Disgraced","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[48,0,75,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":48,"2":75,"9":40},"isBase":true}}}, +{"id":39471,"name":"Gutbuster of Aldur'thar","icon":"inv_belt_33","type":8,"armorType":4,"stats":[39,0,58,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":39,"2":58,"9":40,"22":934},"isBase":true}}}, +{"id":39472,"name":"Chain of Latent Energies","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,69,50,0,34,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26693,"zoneId":1196}},{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":69,"3":50,"5":34,"7":36},"isBase":true}}}, +{"id":39473,"name":"Contortion","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,59,39,28,0,21,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":32273,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":59,"3":39,"4":28,"6":21,"14":513},"isBase":true}}}, +{"id":39474,"name":"Ring of Devoted Promises","icon":"inv_jewelry_ring_28","type":11,"stats":[0,0,0,36,0,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"3":36,"5":22,"6":16},"isBase":true}}}, +{"id":39475,"name":"Artruis' Focus Stone","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,45,34,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"2":45,"3":34,"7":26},"isBase":true}}}, +{"id":39478,"name":"Cloak of the Deadliest Game","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[0,0,33,0,0,0,19,33,0,0,0,0,48,48,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"2":33,"6":19,"7":33,"12":48,"13":48,"22":299},"isBase":true}}}, +{"id":39479,"name":"Cloak of Renewed Hope","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,30,32,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":30,"3":32,"4":25,"22":239},"isBase":true}}}, +{"id":39480,"name":"Bent Crocolisk Tooth","icon":"inv_jewelry_ring_64","type":11,"stats":[0,34,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"1":34,"2":50},"isBase":true}}}, +{"id":39481,"name":"Signet of the Avenging Heart","icon":"inv_jewelry_ring_28","type":11,"stats":[22,0,34,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":22,"2":34,"5":32},"isBase":true}}}, +{"id":39482,"name":"Ring of Misinterpreted Gestures","icon":"inv_jewelry_ring_28","type":11,"stats":[26,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":26,"2":39,"9":26},"isBase":true}}}, +{"id":39483,"name":"Choker of Binding","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,29,29,26,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"2":29,"3":29,"4":26,"6":26},"isBase":true}}}, +{"id":39484,"name":"Spiked Collar of Servitude","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,0,28,0,0,0,29,26,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"2":28,"6":29,"7":26,"12":52,"13":52},"isBase":true}}}, +{"id":39485,"name":"Blood-Infused Pendant","icon":"inv_jewelry_necklace_20","type":2,"stats":[24,0,51,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"0":24,"2":51,"9":27},"isBase":true}}}, +{"id":39486,"name":"Hemet's Trophy Gun","icon":"inv_weapon_rifle_27","type":14,"rangedWeaponType":3,"stats":[0,69,72,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":394,"weaponDamageMax":733,"weaponSpeed":2.9,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"weaponDamageMin":394,"weaponDamageMax":733,"stats":{"1":69,"2":72,"6":44},"isBase":true}}}, +{"id":39487,"name":"Dragon Slayer's Shortbow","icon":"inv_weapon_bow_36","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,50,41,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":381,"weaponDamageMax":708,"weaponSpeed":2.8,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"weaponDamageMin":381,"weaponDamageMax":708,"stats":{"5":50,"6":41,"7":69},"isBase":true}}}, +{"id":39488,"name":"Nesingwary Brush Burner","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,28,29,21,0,0,0,0,0,0,0,0,0,309,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":44,"weaponDamageMin":115,"weaponDamageMax":214,"weaponSpeed":2.2,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":44,"weaponDamageMin":115,"weaponDamageMax":214,"stats":{"2":28,"3":29,"4":21,"14":309},"isBase":true}}}, +{"id":39491,"name":"Heroes' Frostfire Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,113,74,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":113,"3":74,"4":60,"6":43,"22":657},"isBase":true}}}, +{"id":39492,"name":"Heroes' Frostfire Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,110,74,60,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":110,"3":74,"4":60,"6":51,"22":808},"isBase":true}}}, +{"id":39493,"name":"Heroes' Frostfire Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,74,0,36,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"5":36,"7":64,"22":707},"isBase":true}}}, +{"id":39494,"name":"Heroes' Frostfire Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,93,58,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":93,"3":58,"6":48,"7":30,"22":606},"isBase":true}}}, +{"id":39495,"name":"Heroes' Frostfire Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,100,50,0,33,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":100,"3":50,"5":33,"6":48,"22":505},"isBase":true}}}, +{"id":39496,"name":"Heroes' Plagueheart Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,124,74,46,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":124,"3":74,"4":46,"7":48,"22":657},"isBase":true}}}, +{"id":39497,"name":"Heroes' Plagueheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,134,74,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":134,"3":74,"5":36,"6":64,"22":808},"isBase":true}}}, +{"id":39498,"name":"Heroes' Plagueheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,131,74,0,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":131,"3":74,"6":43,"7":60,"22":707},"isBase":true}}}, +{"id":39499,"name":"Heroes' Plagueheart Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,99,58,0,30,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":99,"3":58,"5":30,"7":48,"22":606},"isBase":true}}}, +{"id":39500,"name":"Heroes' Plagueheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,50,0,0,38,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":99,"3":50,"6":38,"7":48,"22":505},"isBase":true}}}, +{"id":39503,"name":"Bronzed Dome Protector","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[38,0,90,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":38,"2":90,"9":41,"22":1217},"isBase":true}}}, +{"id":39508,"name":"Stonebound Chestguard","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[35,0,90,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1497,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":35,"2":90,"9":43,"22":1497},"isBase":true}}}, +{"id":39514,"name":"Heroes' Crown of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,108,73,64,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":108,"3":73,"4":64,"7":43,"22":657},"isBase":true}}}, +{"id":39515,"name":"Heroes' Robe of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,118,73,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":118,"3":73,"4":83,"22":808},"isBase":true}}}, +{"id":39517,"name":"Heroes' Leggings of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,75,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":75,"4":60,"6":43,"22":707},"isBase":true}}}, +{"id":39518,"name":"Heroes' Shoulderpads of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,94,58,44,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":44,"6":36,"22":606},"isBase":true}}}, +{"id":39519,"name":"Heroes' Gloves of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,88,58,49,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":88,"3":58,"4":49,"6":35,"22":505},"isBase":true}}}, +{"id":39521,"name":"Heroes' Circlet of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,108,73,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":108,"3":73,"4":64,"6":43,"22":657},"isBase":true}}}, +{"id":39523,"name":"Heroes' Raiments of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,119,73,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":119,"3":73,"5":43,"6":60,"22":808},"isBase":true}}}, +{"id":39528,"name":"Heroes' Pants of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,127,75,51,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":75,"4":51,"6":52,"22":707},"isBase":true}}}, +{"id":39529,"name":"Heroes' Mantle of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,94,58,0,36,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":36,"7":44,"22":606},"isBase":true}}}, +{"id":39530,"name":"Heroes' Handwraps of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,88,58,0,0,49,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":88,"3":58,"6":49,"7":35,"22":505},"isBase":true}}}, +{"id":39531,"name":"Heroes' Dreamwalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,128,73,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"4":63,"22":896},"isBase":true}}}, +{"id":39534,"name":"Pauldrons of the Lightning Revenant","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[44,0,76,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":44,"2":76,"5":42,"22":1661},"isBase":true}}}, +{"id":39535,"name":"Ionar's Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,74,51,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":74,"3":51,"6":50,"22":1246},"isBase":true}}}, +{"id":39536,"name":"Thundercloud Grasps","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,90,51,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":90,"3":51,"4":38,"22":454},"isBase":true}}}, +{"id":39538,"name":"Heroes' Dreamwalker Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,122,73,69,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":122,"3":73,"4":69,"7":36,"22":1103},"isBase":true}}}, +{"id":39539,"name":"Heroes' Dreamwalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,123,73,68,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":68,"6":36,"22":965},"isBase":true}}}, +{"id":39542,"name":"Heroes' Dreamwalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,90,58,51,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":90,"3":58,"4":51,"6":29,"22":827},"isBase":true}}}, +{"id":39543,"name":"Heroes' Dreamwalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,94,58,48,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":48,"7":30,"22":689},"isBase":true}}}, +{"id":39544,"name":"Heroes' Dreamwalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,94,58,30,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":30,"6":48,"22":689},"isBase":true}}}, +{"id":39545,"name":"Heroes' Dreamwalker Cover","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,123,73,0,36,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"5":36,"6":53,"22":896},"isBase":true}}}, +{"id":39546,"name":"Heroes' Dreamwalker Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,123,73,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":52,"6":52,"22":965},"isBase":true}}}, +{"id":39547,"name":"Heroes' Dreamwalker Vestments","icon":"inv_chest_plate02","type":5,"armorType":2,"stats":[0,0,121,73,0,0,54,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":121,"3":73,"6":54,"7":52,"22":1103},"isBase":true}}}, +{"id":39548,"name":"Heroes' Dreamwalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,94,58,0,29,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":29,"7":47,"22":827},"isBase":true}}}, +{"id":39553,"name":"Heroes' Dreamwalker Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,73,135,0,0,0,44,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":135,"6":44,"7":43,"22":896},"isBase":true}}}, +{"id":39554,"name":"Heroes' Dreamwalker Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,74,142,0,0,0,54,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":142,"6":54,"8":35,"22":1103},"isBase":true}}}, +{"id":39555,"name":"Heroes' Dreamwalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,73,145,0,0,0,51,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":145,"6":51,"8":37,"22":965},"isBase":true}}}, +{"id":39556,"name":"Heroes' Dreamwalker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,58,107,0,0,0,44,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":107,"6":44,"7":25,"22":827},"isBase":true}}}, +{"id":39557,"name":"Heroes' Dreamwalker Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,51,106,0,0,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":51,"2":106,"6":44,"7":33,"22":689},"isBase":true}}}, +{"id":39558,"name":"Heroes' Bonescythe Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,74,133,0,0,0,43,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":133,"6":43,"7":54,"22":1103},"isBase":true}}}, +{"id":39560,"name":"Heroes' Bonescythe Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,58,98,0,0,33,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":98,"5":33,"6":44,"22":689},"isBase":true}}}, +{"id":39561,"name":"Heroes' Bonescythe Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,73,128,0,0,0,52,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":128,"6":52,"8":37,"22":896},"isBase":true}}}, +{"id":39564,"name":"Heroes' Bonescythe Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,81,136,0,0,37,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":81,"2":136,"5":37,"7":51,"22":965},"isBase":true}}}, +{"id":39565,"name":"Heroes' Bonescythe Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,45,98,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":45,"2":98,"6":50,"7":33,"22":827},"isBase":true}}}, +{"id":39578,"name":"Heroes' Cryptstalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,73,105,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":105,"6":78,"7":30,"22":1333},"isBase":true}}}, +{"id":39579,"name":"Heroes' Cryptstalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,73,134,0,0,44,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":134,"5":44,"7":56,"22":1641},"isBase":true}}}, +{"id":39580,"name":"Heroes' Cryptstalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,74,111,0,0,0,68,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":111,"6":68,"7":52,"22":1436},"isBase":true}}}, +{"id":39581,"name":"Heroes' Cryptstalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,58,78,0,0,0,58,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":78,"6":58,"7":36,"22":1231},"isBase":true}}}, +{"id":39582,"name":"Heroes' Cryptstalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,58,82,0,0,0,56,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":82,"6":56,"7":35,"22":1026},"isBase":true}}}, +{"id":39583,"name":"Heroes' Earthshatter Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,123,73,42,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":42,"7":52,"22":1333},"isBase":true}}}, +{"id":39588,"name":"Heroes' Earthshatter Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,127,73,50,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":73,"4":50,"7":53,"22":1641},"isBase":true}}}, +{"id":39589,"name":"Heroes' Earthshatter Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,141,73,38,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":141,"3":73,"4":38,"7":56,"22":1436},"isBase":true}}}, +{"id":39590,"name":"Heroes' Earthshatter Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,94,58,32,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":32,"6":44,"22":1231},"isBase":true}}}, +{"id":39591,"name":"Heroes' Earthshatter Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,97,58,40,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":58,"4":40,"6":38,"22":1026},"isBase":true}}}, +{"id":39592,"name":"Heroes' Earthshatter Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,128,73,0,0,53,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"6":53,"7":50,"22":1641},"isBase":true}}}, +{"id":39593,"name":"Heroes' Earthshatter Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,97,58,0,38,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":58,"5":38,"6":40,"22":1026},"isBase":true}}}, +{"id":39594,"name":"Heroes' Earthshatter Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,123,73,0,0,43,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"6":43,"7":52,"22":1333},"isBase":true}}}, +{"id":39595,"name":"Heroes' Earthshatter Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,141,73,0,37,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":141,"3":73,"5":37,"6":56,"22":1436},"isBase":true}}}, +{"id":39596,"name":"Heroes' Earthshatter Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,94,58,0,32,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":32,"6":44,"22":1231},"isBase":true}}}, +{"id":39597,"name":"Heroes' Earthshatter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,73,134,0,0,56,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":134,"5":56,"8":44,"22":1641},"isBase":true}}}, +{"id":39601,"name":"Heroes' Earthshatter Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,58,82,0,0,0,62,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":82,"6":62,"7":26,"22":1026},"isBase":true}}}, +{"id":39602,"name":"Heroes' Earthshatter Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,65,134,0,0,36,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":65,"2":134,"5":36,"6":56,"22":1333},"isBase":true}}}, +{"id":39603,"name":"Heroes' Earthshatter War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,73,134,0,0,36,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":134,"5":36,"6":64,"22":1436},"isBase":true}}}, +{"id":39604,"name":"Heroes' Earthshatter Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,58,99,0,0,0,43,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":99,"6":43,"8":35,"22":1231},"isBase":true}}}, +{"id":39605,"name":"Heroes' Dreadnaught Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,0,81,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":90,"6":81,"7":29,"22":1901},"isBase":true}}}, +{"id":39606,"name":"Heroes' Dreadnaught Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,90,0,0,52,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":73,"2":90,"5":52,"6":81,"22":2340},"isBase":true}}}, +{"id":39607,"name":"Heroes' Dreadnaught Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,90,0,0,0,72,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":75,"2":90,"6":72,"8":59,"22":2048},"isBase":true}}}, +{"id":39608,"name":"Heroes' Dreadnaught Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,0,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":66,"2":70,"6":50,"7":39,"22":1755},"isBase":true}}}, +{"id":39609,"name":"Heroes' Dreadnaught Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,33,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":57,"2":99,"5":33,"8":46,"22":1463},"isBase":true}}}, +{"id":39610,"name":"Heroes' Dreadnaught Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,30,0,0,0,49,43,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":72,"2":111,"5":30,"9":49,"10":43,"22":1901},"isBase":true}}}, +{"id":39611,"name":"Heroes' Dreadnaught Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[81,0,111,0,0,0,0,0,0,71,38,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":81,"2":111,"9":71,"10":38,"22":2340},"isBase":true}}}, +{"id":39612,"name":"Heroes' Dreadnaught Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,59,41,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":89,"2":111,"9":59,"10":41,"22":2048},"isBase":true}}}, +{"id":39613,"name":"Heroes' Dreadnaught Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,57,25,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":87,"9":57,"10":25,"22":1755},"isBase":true}}}, +{"id":39617,"name":"Heroes' Scourgeborne Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[74,0,90,0,0,0,60,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":90,"6":60,"7":72,"22":2340},"isBase":true}}}, +{"id":39618,"name":"Heroes' Scourgeborne Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,33,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":57,"2":99,"5":33,"6":46,"22":1463},"isBase":true}}}, +{"id":39619,"name":"Heroes' Scourgeborne Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,29,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":90,"5":29,"6":81,"22":1901},"isBase":true}}}, +{"id":39620,"name":"Heroes' Scourgeborne Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,90,0,0,0,72,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":75,"2":90,"6":72,"7":59,"22":2048},"isBase":true}}}, +{"id":39621,"name":"Heroes' Scourgeborne Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,39,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":66,"2":70,"5":39,"6":50,"22":1755},"isBase":true}}}, +{"id":39622,"name":"Heroes' Dreadnaught Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,0,0,0,30,0,61,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":51,"2":87,"8":30,"10":61,"22":1463},"isBase":true}}}, +{"id":39623,"name":"Heroes' Scourgeborne Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[81,0,111,0,0,0,0,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":81,"2":111,"9":64,"10":47,"22":2340},"isBase":true}}}, +{"id":39624,"name":"Heroes' Scourgeborne Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,30,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":51,"2":87,"5":30,"9":61,"22":1463},"isBase":true}}}, +{"id":39625,"name":"Heroes' Scourgeborne Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,0,0,0,30,0,69,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":72,"2":111,"8":30,"10":69,"22":1901},"isBase":true}}}, +{"id":39626,"name":"Heroes' Scourgeborne Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[72,0,111,0,0,30,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":72,"2":111,"5":30,"9":81,"22":2048},"isBase":true}}}, +{"id":39627,"name":"Heroes' Scourgeborne Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[58,0,87,0,0,0,0,0,0,43,45,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":87,"9":43,"10":45,"22":1755},"isBase":true}}}, +{"id":39628,"name":"Heroes' Redemption Headpiece","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[0,0,128,73,42,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"4":42,"6":44,"22":1901},"isBase":true}}}, +{"id":39629,"name":"Heroes' Redemption Tunic","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,128,73,46,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":73,"4":46,"7":60,"22":2340},"isBase":true}}}, +{"id":39630,"name":"Heroes' Redemption Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,127,73,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":73,"6":44,"7":60,"22":2048},"isBase":true}}}, +{"id":39631,"name":"Heroes' Redemption Spaulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,95,58,0,0,48,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":58,"6":48,"7":31,"22":1755},"isBase":true}}}, +{"id":39632,"name":"Heroes' Redemption Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,94,58,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":48,"7":30,"22":1463},"isBase":true}}}, +{"id":39633,"name":"Heroes' Redemption Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,103,0,0,0,74,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":73,"2":103,"6":74,"7":45,"22":2340},"isBase":true}}}, +{"id":39634,"name":"Heroes' Redemption Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,0,46,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":57,"2":99,"6":46,"7":33,"22":1463},"isBase":true}}}, +{"id":39635,"name":"Heroes' Redemption Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[74,0,90,0,0,29,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":90,"5":29,"7":81,"22":1901},"isBase":true}}}, +{"id":39636,"name":"Heroes' Redemption Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[81,0,90,0,0,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":81,"2":90,"6":52,"7":73,"22":2048},"isBase":true}}}, +{"id":39637,"name":"Heroes' Redemption Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,70,0,0,39,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":66,"2":70,"5":39,"6":50,"22":1755},"isBase":true}}}, +{"id":39638,"name":"Heroes' Redemption Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":89,"2":111,"9":64,"22":2340},"isBase":true}}}, +{"id":39639,"name":"Heroes' Redemption Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[51,0,87,0,0,30,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":51,"2":87,"5":30,"9":61,"22":1463},"isBase":true}}}, +{"id":39640,"name":"Heroes' Redemption Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[72,0,111,0,0,0,0,0,30,43,49,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":72,"2":111,"8":30,"9":43,"10":49,"22":1901},"isBase":true}}}, +{"id":39641,"name":"Heroes' Redemption Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[89,0,111,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":89,"2":111,"9":67,"22":2048},"isBase":true}}}, +{"id":39642,"name":"Heroes' Redemption Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[60,0,87,0,0,0,0,0,0,50,35,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":60,"2":87,"9":50,"10":35,"22":1755},"isBase":true}}}, +{"id":39648,"name":"Kurzel's Rage","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,49,0,0,33,0,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":49,"5":33,"12":66,"13":66},"isBase":true}}}, +{"id":39649,"name":"Kurzel's Angst","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,58,33,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":58,"3":33,"4":26},"isBase":true}}}, +{"id":39650,"name":"Kurzel's Warband","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[33,0,49,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"0":33,"2":49,"9":32},"isBase":true}}}, +{"id":39652,"name":"Choker of the Betrayer","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,36,0,0,0,23,0,0,0,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":36,"6":23,"12":68,"13":68},"isBase":true}}}, +{"id":39653,"name":"Choker of Betrayal","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,48,25,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"2":48,"3":25,"7":24},"isBase":true}}}, +{"id":39655,"name":"Betrayer's Choker","icon":"inv_jewelry_necklace_17","type":2,"stats":[24,0,49,0,0,19,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"0":24,"2":49,"5":19,"9":17},"isBase":true}}}, +{"id":39657,"name":"Tornado Cuffs","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,39,33,0,0,0,39,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":39,"2":33,"6":39,"7":28,"22":672},"isBase":true}}}, +{"id":39672,"name":"Drape of the Offered Branch","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,35,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":35,"3":34,"4":22,"22":239},"isBase":true}}}, +{"id":39673,"name":"Lightning Beetle's Cape","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,29,34,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":29,"3":34,"7":25,"22":239},"isBase":true}}}, +{"id":39674,"name":"Cloak of the Buzzing Swarm","icon":"inv_misc_cape_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,22,35,0,0,0,0,44,44,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"6":22,"7":35,"12":44,"13":44,"22":239},"isBase":true}}}, +{"id":39675,"name":"Cloak of the Hardened Tortoise","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[24,0,47,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":24,"2":47,"9":21,"22":239},"isBase":true}}}, +{"id":39676,"name":"Wraps of the San'layn","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,39,29,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"2":39,"3":29,"4":28,"22":244},"isBase":true}}}, +{"id":39678,"name":"Vendetta Bindings","icon":"inv_bracer_06","type":6,"armorType":2,"stats":[0,28,41,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"1":28,"2":41,"7":29,"22":339},"isBase":true}}}, +{"id":39679,"name":"Runecaster's Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,47,29,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"2":47,"3":29,"4":20,"22":512},"isBase":true}}}, +{"id":39680,"name":"Vambraces of the Vengeance Bringer","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[30,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":54,"stats":{"0":30,"2":42,"6":27,"22":761},"isBase":true}}}, +{"id":39688,"name":"Mark \"S\" Boomstick","icon":"inv_weapon_rifle_08","type":14,"rangedWeaponType":3,"stats":[0,54,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"weaponDamageMin":412,"weaponDamageMax":766,"weaponSpeed":2.9,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":54353}}],"scalingOptions":{"167":{"randPropPoints":108,"weaponDamageMin":412,"weaponDamageMax":766,"stats":{"1":54,"5":57,"6":57},"isBase":true}}}, +{"id":39701,"name":"Dawnwalkers","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,74,99,0,0,50,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":74,"2":99,"5":50,"6":57,"22":785},"isBase":true}}}, +{"id":39702,"name":"Arachnoid Gold Band","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,56,75,0,0,0,44,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":75,"6":44,"7":37,"22":730},"isBase":true}}}, +{"id":39703,"name":"Rescinding Grips","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,107,75,0,0,53,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"6":53,"7":43,"22":1471},"isBase":true}}}, +{"id":39704,"name":"Pauldrons of Unnatural Death","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[57,0,100,0,0,0,0,0,30,0,72,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":57,"2":100,"8":30,"10":72,"22":1765},"isBase":true}}}, +{"id":39706,"name":"Sabatons of Sudden Reprisal","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[67,0,82,0,0,0,66,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":82,"6":66,"7":43,"22":1618},"isBase":true}}}, +{"id":39707,"name":"Verdant Tundra Cap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,87,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":155,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":84,"stats":{"2":87,"3":51,"22":508},"isBase":true}}}, +{"id":39708,"name":"Verdant Tundra Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,39,38,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":155,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":63,"stats":{"2":39,"3":38,"4":33,"22":469},"isBase":true}}}, +{"id":39709,"name":"Verdant Tundra Boots","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,60,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":60,"3":38,"22":415},"isBase":true}}}, +{"id":39710,"name":"Verdant Tundra Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,0,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":151,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":60,"stats":{"2":58,"3":40,"22":339},"isBase":true}}}, +{"id":39711,"name":"Verdant Tundra Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,23,31,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"ilvl":151,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":45,"stats":{"2":23,"3":31,"4":20,"22":264},"isBase":true}}}, +{"id":39712,"name":"Gemmed Wand of the Nerubians","icon":"inv_wand_16","type":14,"rangedWeaponType":6,"stats":[0,0,62,44,0,25,0,30,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":62,"3":44,"5":25,"7":30,"14":576},"isBase":true}}}, +{"id":39714,"name":"Webbed Death","icon":"inv_weapon_shortblade_58","type":13,"weaponType":2,"handType":2,"stats":[0,43,65,0,0,21,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"1":43,"2":65,"5":21,"6":31},"isBase":true}}}, +{"id":39716,"name":"Shield of Assimilation","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"7":38,"22":6898},"isBase":true}}}, +{"id":39717,"name":"Inexorable Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[74,0,94,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":74,"2":94,"9":43,"22":1618},"isBase":true}}}, +{"id":39718,"name":"Corpse Scarab Handguards","icon":"inv_gauntlets_03","type":7,"armorType":3,"stats":[0,0,107,67,40,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"4":40,"6":49,"22":1043},"isBase":true}}}, +{"id":39719,"name":"Mantle of the Locusts","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,87,67,67,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":87,"3":67,"4":67,"7":39,"22":639},"isBase":true}}}, +{"id":39720,"name":"Leggings of Atrophy","icon":"inv_pants_cloth_14","type":9,"armorType":1,"stats":[0,0,144,101,0,50,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":144,"3":101,"5":50,"6":76,"22":746},"isBase":true}}}, +{"id":39721,"name":"Sash of the Parlor","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,112,75,56,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":112,"3":75,"4":56,"6":37,"22":480},"isBase":true}}}, +{"id":39722,"name":"Swarm Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,80,56,32,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":32,"6":41,"22":499},"isBase":true}}}, +{"id":39723,"name":"Fire-Scorched Greathelm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[100,0,150,0,0,59,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":150,"5":59,"6":72,"22":1912},"isBase":true}}}, +{"id":39724,"name":"Cult's Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,100,151,0,0,76,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":151,"5":76,"8":57,"22":1668},"isBase":true}}}, +{"id":39725,"name":"Epaulets of the Grieving Servant","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,107,75,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"6":55,"7":43,"22":1765},"isBase":true}}}, +{"id":39726,"name":"Callous-Hearted Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[74,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":74,"2":112,"9":48,"10":50,"22":1471},"isBase":true}}}, +{"id":39727,"name":"Dislocating Handguards","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,75,118,0,0,50,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":118,"5":50,"8":38,"22":713},"isBase":true}}}, +{"id":39729,"name":"Bracers of the Tyrant","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[57,0,61,0,0,0,0,55,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":57,"2":61,"7":55,"8":32,"22":1030},"isBase":true}}}, +{"id":39730,"name":"Widow's Fury","icon":"inv_sword_98","type":13,"weaponType":9,"handType":2,"stats":[0,43,66,0,0,0,29,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"weaponSpeed":1.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"stats":{"1":43,"2":66,"6":29,"7":25},"isBase":true}}}, +{"id":39731,"name":"Punctilious Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,80,56,39,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":39,"7":37,"22":373},"isBase":true}}}, +{"id":39732,"name":"Faerlina's Madness","icon":"inv_helmet_126","type":1,"armorType":1,"stats":[0,0,143,101,0,58,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"5":58,"6":72,"22":693},"isBase":true}}}, +{"id":39733,"name":"Gloves of Token Respect","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,107,75,53,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"4":53,"7":43,"22":533},"isBase":true}}}, +{"id":39734,"name":"Atonement Greaves","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,105,75,56,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":75,"4":56,"7":43,"22":1147},"isBase":true}}}, +{"id":39735,"name":"Belt of False Dignity","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,105,75,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":75,"4":55,"6":43,"22":480},"isBase":true}}}, +{"id":39756,"name":"Tunic of Prejudice","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,143,101,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":72,"7":58,"22":1141},"isBase":true}}}, +{"id":39758,"name":"The Jawbone","icon":"inv_mace_83","type":13,"weaponType":4,"handType":4,"stats":[101,0,108,0,0,0,0,99,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"0":101,"2":108,"7":99,"8":59},"isBase":true}}}, +{"id":39759,"name":"Ablative Chitin Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[74,0,100,0,0,37,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":74,"2":100,"5":37,"10":68,"22":1324},"isBase":true}}}, +{"id":39760,"name":"Helm of Diminished Pride","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,137,101,58,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":101,"4":58,"6":77,"22":1912},"isBase":true}}}, +{"id":39761,"name":"Infectious Skitterer Leggings","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,100,152,0,0,0,72,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":152,"6":72,"7":50,"22":998},"isBase":true}}}, +{"id":39762,"name":"Torn Web Wrapping","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,75,112,0,0,44,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":112,"5":44,"6":53,"22":938},"isBase":true}}}, +{"id":39763,"name":"Wraith Strike","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":2,"stats":[0,0,75,0,0,0,31,43,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":75,"6":31,"7":43,"14":576},"isBase":true}}}, +{"id":39764,"name":"Bindings of the Hapless Prey","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[56,0,84,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"10":47,"22":1030},"isBase":true}}}, +{"id":39765,"name":"Sinner's Bindings","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,48,84,0,0,0,41,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":48,"2":84,"6":41,"7":24,"22":499},"isBase":true}}}, +{"id":39766,"name":"Matriarch's Spawn","icon":"inv_offhand_naxxramas_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,78,56,43,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":78,"3":56,"4":43,"7":32},"isBase":true}}}, +{"id":39767,"name":"Undiminished Battleplate","icon":"inv_chest_plate08","type":5,"armorType":4,"stats":[100,0,115,0,0,100,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":115,"5":100,"8":51,"22":2354},"isBase":true}}}, +{"id":39768,"name":"Cowl of the Perished","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,143,101,72,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":72,"6":58,"22":927},"isBase":true}}}, +{"id":39769,"name":"Arcanite Ripper","icon":"inv_axe_09","type":13,"weaponType":1,"handType":4,"stats":[0,0,48,0,0,0,24,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"weaponDamageMin":398,"weaponDamageMax":665,"weaponSpeed":3.8,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":28194,"zoneId":3457}}],"scalingOptions":{"115":{"randPropPoints":77,"weaponDamageMin":398,"weaponDamageMax":665,"stats":{"2":48,"6":24,"12":112,"13":112},"isBase":true}}}, +{"id":39770,"name":"Soothsayer's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,50,43,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":50,"3":43,"6":58,"22":375},"isBase":true}}}, +{"id":39771,"name":"Embattled Legwraps","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,85,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":85,"3":58,"22":404},"isBase":true}}}, +{"id":39772,"name":"Bloodbinder's Wrist Wraps","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,27,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":27,"3":32,"4":24,"22":202},"isBase":true}}}, +{"id":39773,"name":"Soothsayer's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,36,43,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":36,"3":43,"7":31,"22":346},"isBase":true}}}, +{"id":39775,"name":"Soothsayer's Sandals","icon":"inv_boots_cloth_08","type":10,"armorType":1,"stats":[0,0,46,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":46,"3":43,"4":24,"22":317},"isBase":true}}}, +{"id":39776,"name":"Bloodbinder's Shoulderguards","icon":"inv_shoulder_76","type":3,"armorType":3,"stats":[0,0,41,43,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":41,"3":43,"6":29,"22":702},"isBase":true}}}, +{"id":39777,"name":"Band of Misty Mojo","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,27,24,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":27,"3":24,"6":32},"isBase":true}}}, +{"id":39778,"name":"Bloodletter's Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[57,0,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":57,"2":58,"5":39,"22":1263},"isBase":true}}}, +{"id":39779,"name":"Crusader's Ripcord","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,51,33,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":51,"3":33,"6":33,"22":260},"isBase":true}}}, +{"id":39780,"name":"Valiant Belt of Battle","icon":"inv_belt_27","type":8,"armorType":3,"stats":[0,58,50,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":58,"2":50,"6":42,"22":546},"isBase":true}}}, +{"id":39781,"name":"Bloodbinder's Raiment","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,87,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":87,"3":43,"4":33,"22":462},"isBase":true}}}, +{"id":39782,"name":"Thick Bracers of Battle","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[32,0,33,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":32,"2":33,"5":21,"22":631},"isBase":true}}}, +{"id":39783,"name":"Bloodbinder's Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":3,"stats":[0,0,42,43,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":42,"3":43,"7":28,"22":607},"isBase":true}}}, +{"id":39784,"name":"Staff of the Dutybound","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,58,0,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":401,"weaponDamageMax":603,"weaponSpeed":2.9,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":401,"weaponDamageMax":603,"stats":{"6":58,"12":114,"13":114},"isBase":true}}}, +{"id":39785,"name":"Soothsayer's Garb","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,113,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":113,"3":33,"22":462},"isBase":true}}}, +{"id":39786,"name":"Band of the Bloodletter","icon":"inv_jewelry_ring_46","type":11,"stats":[32,0,36,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":32,"2":36,"5":18},"isBase":true}}}, +{"id":39787,"name":"Soothsayer's Handwraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,44,36,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":44,"3":36,"7":34,"22":289},"isBase":true}}}, +{"id":39788,"name":"Leggings of the Ritual","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,50,69,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":50,"2":69,"5":36,"22":850},"isBase":true}}}, +{"id":39789,"name":"Bloodbinder's Shoulderpads","icon":"inv_shoulder_79","type":3,"armorType":1,"stats":[0,0,45,34,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":45,"3":34,"4":36,"22":346},"isBase":true}}}, +{"id":39790,"name":"Gauntlets of the Altar","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[31,0,37,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":31,"2":37,"6":42,"22":902},"isBase":true}}}, +{"id":39791,"name":"Soothsayer's Wristwraps","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,41,32,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":41,"3":32,"5":23,"22":202},"isBase":true}}}, +{"id":39792,"name":"Ritualistic Band of Light","icon":"inv_jewelry_ring_56","type":11,"stats":[0,0,31,32,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":31,"3":32,"4":22},"isBase":true}}}, +{"id":39793,"name":"Neckcharm of Mighty Mojo","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,38,27,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":38,"3":27,"6":23},"isBase":true}}}, +{"id":39794,"name":"Bloodbinder's Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,45,36,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":45,"3":36,"4":34,"22":289},"isBase":true}}}, +{"id":39795,"name":"Boots of the Altar","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[43,0,36,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":43,"2":36,"5":31,"22":992},"isBase":true}}}, +{"id":39796,"name":"Boots of the Great Sacrifice","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,42,37,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"2":37,"6":31,"22":668},"isBase":true}}}, +{"id":39797,"name":"Bloodbinder's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,53,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":53,"3":58,"4":41,"22":375},"isBase":true}}}, +{"id":39798,"name":"Ring of Ancestral Protectors","icon":"inv_jewelry_ring_52naxxramas","type":11,"stats":[21,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":21,"2":48,"23":308},"isBase":true}}}, +{"id":39799,"name":"Rescuer's Chestguard","icon":"inv_chest_chain_14","type":5,"armorType":3,"stats":[0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":58,"2":84,"22":971},"isBase":true}}}, +{"id":39800,"name":"Pantaloons of the Dutybound","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,51,59,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":51,"3":59,"6":40,"22":404},"isBase":true}}}, +{"id":39801,"name":"Boots of the Rescuer","icon":"inv_boots_chain_09","type":10,"armorType":4,"stats":[42,0,37,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":42,"2":37,"8":31,"22":992},"isBase":true}}}, +{"id":39802,"name":"Crusader's Greatblade","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,53,0,0,0,0,0,124,124,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":457,"weaponDamageMax":686,"weaponSpeed":3.3,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":457,"weaponDamageMax":686,"stats":{"6":53,"12":124,"13":124},"isBase":true}}}, +{"id":39803,"name":"Gauntlets of the Great Sacrifice","icon":"inv_gauntlets_10","type":7,"armorType":3,"stats":[0,42,0,0,0,0,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"6":27,"7":30,"22":607},"isBase":true}}}, +{"id":39804,"name":"Braided Bat Sinew","icon":"inv_belt_24","type":8,"armorType":1,"stats":[0,0,0,46,0,27,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"3":46,"5":27,"7":23,"22":260},"isBase":true}}}, +{"id":39805,"name":"Chestplate of the Altar","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[63,0,0,0,0,27,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":63,"5":27,"6":36,"22":1443},"isBase":true}}}, +{"id":39806,"name":"Blade of Diligence","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,31,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":242,"weaponDamageMax":450,"stats":{"2":31,"6":27},"isBase":true}}}, +{"id":39807,"name":"Rescuer's Cloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[0,0,59,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":59,"3":20,"22":231},"isBase":true}}}, +{"id":39808,"name":"Staff of Diligence","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,75,0,63,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":200,"weaponDamageMax":301,"weaponSpeed":2.9,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":200,"weaponDamageMax":301,"stats":{"2":75,"4":63,"14":262},"isBase":true}}}, +{"id":39809,"name":"Sandals of Spying","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":56,"3":46,"22":317},"isBase":true}}}, +{"id":39810,"name":"Cords of Duplicity","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,46,27,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,260,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"3":46,"4":27,"7":22,"22":260},"isBase":true}}}, +{"id":39811,"name":"Badge of the Infiltrator","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"3":46},"isBase":true}}}, +{"id":39812,"name":"Soiled Trousers","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,63,36,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"3":63,"4":36,"7":30,"22":404},"isBase":true}}}, +{"id":39814,"name":"Slippers of the Broken Front","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,38,55,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":38,"3":55,"4":31,"22":364},"isBase":true}}}, +{"id":39815,"name":"Bloodbinder's Links","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,0,0,58,38,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"3":58,"4":38,"6":39,"22":850},"isBase":true}}}, +{"id":39816,"name":"Medic's Hood","icon":"inv_helmet_124","type":1,"armorType":1,"stats":[0,0,0,44,29,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"3":44,"4":29,"7":58,"22":375},"isBase":true}}}, +{"id":39817,"name":"Brazen Offender's Shoulderplates","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[43,0,0,0,0,0,27,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":43,"6":27,"7":30,"22":1082},"isBase":true}}}, +{"id":39818,"name":"Frigid Crossbow","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,58,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":218,"weaponDamageMax":405,"weaponSpeed":1.8,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":218,"weaponDamageMax":405,"stats":{"1":58,"6":58},"isBase":true}}}, +{"id":39819,"name":"Bloodbinder's Runestone","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"3":38},"isBase":true}}}, +{"id":39820,"name":"Blade of Valorous Service","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,24,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":167,"weaponDamageMax":312,"weaponSpeed":1.8,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":167,"weaponDamageMax":312,"stats":{"1":24,"7":25},"isBase":true}}}, +{"id":39821,"name":"Spiritist's Focus","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"4":48},"isBase":true}}}, +{"id":39822,"name":"Knife of the Dutybound","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,35,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"stats":{"2":35,"5":26},"isBase":true}}}, +{"id":39823,"name":"Dutybound Mace of Purity","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,36,0,26,0,0,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":102,"weaponDamageMax":191,"weaponSpeed":2.2,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":102,"weaponDamageMax":191,"stats":{"2":36,"4":26,"14":260},"isBase":true}}}, +{"id":39824,"name":"Cleaver of Diligence","icon":"inv_axe_78","type":13,"weaponType":1,"handType":4,"stats":[55,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":498,"weaponDamageMax":748,"weaponSpeed":3.6,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":498,"weaponDamageMax":748,"stats":{"0":55,"6":60},"isBase":true}}}, +{"id":39825,"name":"Belt of the Bloodbinder","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,42,42,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":42,"3":42,"4":30,"22":546},"isBase":true}}}, +{"id":39826,"name":"Bloodletter's Blade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,21,0,0,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"weaponSpeed":1.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":158,"weaponDamageMax":295,"stats":{"5":21,"12":52,"13":52},"isBase":true}}}, +{"id":39827,"name":"Vile Tome of Tenets","icon":"inv_misc_book_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,31,34,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":31,"3":34,"4":14},"isBase":true}}}, +{"id":39828,"name":"Punisher's Cloak","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,24,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"1":24,"2":56,"22":231},"isBase":true}}}, +{"id":39829,"name":"High-Strung Bow","icon":"inv_weapon_bow_42","type":14,"rangedWeaponType":1,"stats":[0,87,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":363,"weaponDamageMax":676,"weaponSpeed":3,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":363,"weaponDamageMax":676,"stats":{"1":87,"6":68},"isBase":true}}}, +{"id":39830,"name":"Fist of Subtlety","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,21,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":251,"weaponDamageMax":468,"weaponSpeed":2.7,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":251,"weaponDamageMax":468,"stats":{"1":21,"2":41},"isBase":true}}}, +{"id":39831,"name":"Petrified Ghoul Finger","icon":"inv_jewelry_ring_23","type":11,"stats":[17,0,0,0,0,0,28,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":17,"6":28,"7":26},"isBase":true}}}, +{"id":39833,"name":"Supple Bloodbinder's Boots","icon":"inv_boots_06","type":10,"armorType":2,"stats":[0,0,35,37,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":35,"3":37,"6":35,"22":441},"isBase":true}}}, +{"id":39834,"name":"Embattled Jerkin","icon":"inv_chest_leather_02","type":5,"armorType":2,"stats":[0,63,38,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":63,"2":38,"7":38,"22":642},"isBase":true}}}, +{"id":39835,"name":"Supple Bloodbinder's Helm","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,87,39,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":87,"3":39,"7":39,"22":522},"isBase":true}}}, +{"id":39836,"name":"Supple Mantle of the Bloodletter","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,28,41,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":28,"2":41,"8":44,"22":481},"isBase":true}}}, +{"id":39837,"name":"Gloves of Swift Death","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,44,42,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":44,"2":42,"6":27,"22":401},"isBase":true}}}, +{"id":39838,"name":"Supple Belt of the Bloodletter","icon":"inv_belt_09","type":8,"armorType":2,"stats":[0,43,0,0,0,26,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":43,"5":26,"6":28,"22":361},"isBase":true}}}, +{"id":39839,"name":"Ritualistic Shoulderguards","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"2":63,"22":728},"isBase":true}}}, +{"id":39840,"name":"Rescuer's Ripcord","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,33,33,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":33,"3":33,"4":22},"isBase":true}}}, +{"id":39841,"name":"Ancestral Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[47,0,30,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":47,"2":30,"7":27,"22":812},"isBase":true}}}, +{"id":39842,"name":"Bloodletter's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,46,41,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":46,"2":41,"7":26,"22":441},"isBase":true}}}, +{"id":39843,"name":"Supple Wristguards","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,19,30,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"1":19,"2":30,"6":33,"22":281},"isBase":true}}}, +{"id":39844,"name":"Ritualistic Shield","icon":"inv_shield_44","type":13,"weaponType":7,"handType":3,"stats":[0,0,27,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":27,"3":32,"6":24,"22":3871},"isBase":true}}}, +{"id":39845,"name":"Ancestral Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[25,0,63,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":25,"2":63,"9":31,"22":902},"isBase":true}}}, +{"id":39846,"name":"Bloodletter's Headgear","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,58,49,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":58,"2":49,"6":42,"22":789},"isBase":true}}}, +{"id":39847,"name":"Ancestral War Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[44,0,40,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":44,"2":40,"6":28,"22":992},"isBase":true}}}, +{"id":39848,"name":"Neckcharm of the Bloodletter","icon":"inv_jewelry_necklace_26","type":2,"stats":[0,0,31,0,0,0,22,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":31,"6":22,"12":64,"13":64},"isBase":true}}}, +{"id":39849,"name":"Belt of Divine Ancestry","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,63,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":63,"3":43,"22":812},"isBase":true}}}, +{"id":39850,"name":"Wristguards of Service","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,32,33,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"1":32,"2":33,"6":21,"22":425},"isBase":true}}}, +{"id":39851,"name":"Ribbed Helm of Servitude","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[63,36,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":63,"1":36,"2":40,"22":1173},"isBase":true}}}, +{"id":39852,"name":"Victorious Spellblade","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,36,0,0,0,25,0,0,0,0,0,0,0,260,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":83,"weaponDamageMax":156,"weaponSpeed":1.8,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":83,"weaponDamageMax":156,"stats":{"2":36,"6":25,"14":260},"isBase":true}}}, +{"id":39853,"name":"Thorny Bough of the Light","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,87,0,58,0,0,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":200,"weaponDamageMax":301,"weaponSpeed":2.9,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"weaponDamageMin":200,"weaponDamageMax":301,"stats":{"2":87,"4":58,"14":262},"isBase":true}}}, +{"id":39854,"name":"Huntsman's Jerkin","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,58,49,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":58,"2":49,"5":42,"22":971},"isBase":true}}}, +{"id":39855,"name":"Gauntlets of the Gatherer","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[42,0,0,0,0,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":42,"7":31,"8":25,"22":902},"isBase":true}}}, +{"id":39856,"name":"Bloodletter's Pants","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,61,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":61,"2":80,"22":562},"isBase":true}}}, +{"id":39857,"name":"Rescuer's Binding","icon":"inv_belt_33","type":8,"armorType":3,"stats":[0,42,36,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"2":36,"6":31,"22":546},"isBase":true}}}, +{"id":39858,"name":"Drape of the Bloodletter","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,0,0,0,0,20,19,0,0,0,0,68,68,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"6":20,"7":19,"12":68,"13":68,"22":231},"isBase":true}}}, +{"id":39859,"name":"Bloodletter's Skullcap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,53,62,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":53,"2":62,"6":40,"22":522},"isBase":true}}}, +{"id":39860,"name":"Vindicator's Bracers of Sacrifice","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[35,0,0,0,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":35,"6":20,"7":15,"22":631},"isBase":true}}}, +{"id":39861,"name":"Supple Bloodbinder's Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,0,53,40,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"3":53,"4":40,"6":41,"22":562},"isBase":true}}}, +{"id":39862,"name":"Supple Vest of the Bloodletter","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,42,92,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":42,"2":92,"6":39,"22":642},"isBase":true}}}, +{"id":39863,"name":"Supple Vest of the Bloodbinder","icon":"inv_chest_leather_04","type":5,"armorType":2,"stats":[0,0,79,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":79,"3":61,"22":642},"isBase":true}}}, +{"id":39864,"name":"Belt of Service","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,30,45,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":30,"2":45,"8":39,"22":361},"isBase":true}}}, +{"id":39865,"name":"Knuckle of Victory","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[22,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":37,"weaponDamageMin":233,"weaponDamageMax":433,"weaponSpeed":2.5,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":37,"weaponDamageMin":233,"weaponDamageMax":433,"stats":{"0":22,"7":27},"isBase":true}}}, +{"id":39866,"name":"Gauntlets of the Secret Agent","icon":"inv_gauntlets_04","type":7,"armorType":3,"stats":[0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"2":64,"22":607},"isBase":true}}}, +{"id":39867,"name":"Bat Fur Mitts","icon":"inv_gauntlets_08","type":7,"armorType":2,"stats":[0,45,39,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":45,"2":39,"6":26,"22":401},"isBase":true}}}, +{"id":39868,"name":"Ravager's Skullcap","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,53,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":53,"2":91,"22":522},"isBase":true}}}, +{"id":39869,"name":"Double-Agent's Wristwraps","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,29,36,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"1":29,"2":36,"7":21,"22":281},"isBase":true}}}, +{"id":39870,"name":"Drape of Duplicity","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,27,32,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":27,"3":32,"4":24,"22":231},"isBase":true}}}, +{"id":39871,"name":"Subtle Boots of the Infiltrator","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,31,59,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":31,"2":59,"6":28,"22":441},"isBase":true}}}, +{"id":39872,"name":"Helm of Subtle Whispers","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,83,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":83,"3":58,"22":789},"isBase":true}}}, +{"id":39873,"name":"Skins of Subterfuge","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,61,56,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":61,"2":56,"7":33,"22":562},"isBase":true}}}, +{"id":39874,"name":"Infiltrator's Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[24,0,48,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,3871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":24,"2":48,"9":18,"22":3871},"isBase":true}}}, +{"id":39875,"name":"Shoulderguards of Subterfuge","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,43,0,0,0,24,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":43,"5":24,"6":31,"22":728},"isBase":true}}}, +{"id":39876,"name":"Aged Abomination Tripe","icon":"inv_belt_08","type":8,"armorType":2,"stats":[0,0,0,45,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"3":45,"4":40,"22":361},"isBase":true}}}, +{"id":39877,"name":"Belt of the Betrayer","icon":"inv_belt_27","type":8,"armorType":4,"stats":[47,0,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":47,"2":30,"6":27,"22":812},"isBase":true}}}, +{"id":39880,"name":"Redigested Mail Scraps","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,27,32,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":27,"3":32,"6":24,"22":425},"isBase":true}}}, +{"id":39881,"name":"Mantle of Reanimation","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,45,46,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":45,"3":46,"6":38,"22":481},"isBase":true}}}, +{"id":39882,"name":"Carved Bone Helm","icon":"inv_helmet_106","type":1,"armorType":4,"stats":[0,0,57,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":57,"3":58,"6":39,"22":1173},"isBase":true}}}, +{"id":39886,"name":"Greenhealer's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,69,24,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":69,"3":24,"4":25,"22":401},"isBase":true}}}, +{"id":39887,"name":"Geist Stalker Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,72,51,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":72,"2":51,"6":43,"22":986},"isBase":true}}}, +{"id":39888,"name":"Scourgebane Pauldrons","icon":"inv_shoulder_69","type":3,"armorType":4,"stats":[43,0,60,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":43,"2":60,"5":34,"22":1245},"isBase":true}}}, +{"id":39889,"name":"Horn of Argent Fury","icon":"inv_misc_horn_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"isBase":true}}}, +{"id":39890,"name":"Purifier's Pantaloons","icon":"inv_pants_mail_16","type":9,"armorType":4,"stats":[0,0,57,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":57,"3":58,"4":40,"22":1263},"isBase":true}}}, +{"id":39891,"name":"Brazen Offender's Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[29,0,46,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":29,"2":46,"6":62,"22":1173},"isBase":true}}}, +{"id":39893,"name":"Ancestral Chestplates","icon":"inv_chest_chain_14","type":5,"armorType":4,"stats":[0,0,50,63,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":50,"3":63,"6":34,"22":1443},"isBase":true}}}, +{"id":40060,"name":"Distorted Limbs","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,143,101,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":72,"7":58,"22":746},"isBase":true}}}, +{"id":40061,"name":"Quivering Tunic","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,143,101,66,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":66,"7":67,"22":1668},"isBase":true}}}, +{"id":40062,"name":"Digested Silken Robes","icon":"inv_chest_cloth_44","type":5,"armorType":1,"stats":[0,0,134,101,63,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":134,"3":101,"4":63,"6":77,"22":852},"isBase":true}}}, +{"id":40063,"name":"Mantle of Shattered Kinship","icon":"inv_shoulder_11","type":3,"armorType":2,"stats":[0,0,107,75,51,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"4":51,"7":48,"22":856},"isBase":true}}}, +{"id":40064,"name":"Thunderstorm Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,90,56,0,28,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":90,"3":56,"5":28,"6":38},"isBase":true}}}, +{"id":40065,"name":"Fool's Trial","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,38,104,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":38,"2":104,"5":28,"6":43},"isBase":true}}}, +{"id":40069,"name":"Heritage","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[43,0,84,0,0,28,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":43,"2":84,"5":28,"9":55},"isBase":true}}}, +{"id":40071,"name":"Chains of Adoration","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,80,56,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":40,"7":32},"isBase":true}}}, +{"id":40074,"name":"Strong-Handed Ring","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[0,56,82,0,0,28,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":82,"5":28,"7":41},"isBase":true}}}, +{"id":40075,"name":"Ruthlessness","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[57,0,61,0,0,0,54,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":57,"2":61,"6":54,"8":32},"isBase":true}}}, +{"id":40080,"name":"Lost Jewel","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,77,56,37,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":77,"3":56,"4":37,"6":42},"isBase":true}}}, +{"id":40107,"name":"Sand-Worn Band","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[56,0,84,0,0,0,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"9":38,"10":37},"isBase":true}}}, +{"id":40108,"name":"Seized Beauty","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,80,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15953,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"6":38},"isBase":true}}}, +{"id":40184,"name":"Crippled Treads","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,75,95,0,0,0,74,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":95,"6":74,"7":33,"22":1147},"isBase":true}}}, +{"id":40185,"name":"Shoulderguards of Opportunity","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[69,0,82,0,0,0,65,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":69,"2":82,"6":65,"7":43,"22":1765},"isBase":true}}}, +{"id":40186,"name":"Thrusting Bands","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,56,86,0,0,36,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":86,"5":36,"8":38,"22":499},"isBase":true}}}, +{"id":40187,"name":"Poignant Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,107,67,0,0,35,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"6":35,"7":55,"22":1618},"isBase":true}}}, +{"id":40188,"name":"Gauntlets of the Disobedient","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[74,0,112,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":74,"2":112,"9":65,"22":1471},"isBase":true}}}, +{"id":40189,"name":"Angry Dread","icon":"inv_mace_73","type":13,"weaponType":4,"handType":2,"stats":[0,31,80,0,0,25,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"weaponSpeed":2.5,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"stats":{"1":31,"2":80,"5":25,"6":29},"isBase":true}}}, +{"id":40192,"name":"Accursed Spine","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,78,56,32,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":78,"3":56,"4":32,"6":43},"isBase":true}}}, +{"id":40193,"name":"Tunic of Masked Suffering","icon":"inv_chest_samurai","type":5,"armorType":3,"stats":[0,100,128,0,0,0,100,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":128,"6":100,"7":39,"22":1668},"isBase":true}}}, +{"id":40194,"name":"Blanketing Robes of Snow","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,144,113,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":144,"3":113,"4":74,"22":902},"isBase":true}}}, +{"id":40196,"name":"Legguards of the Undisturbed","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,143,101,66,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":66,"6":67,"22":1460},"isBase":true}}}, +{"id":40197,"name":"Gloves of the Fallen Wizard","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,75,0,25,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":99,"3":75,"5":25,"6":74,"22":533},"isBase":true}}}, +{"id":40198,"name":"Bands of Impurity","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,75,48,37,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":75,"3":48,"4":37,"6":34,"22":373},"isBase":true}}}, +{"id":40200,"name":"Belt of Potent Chanting","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,107,75,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"4":55,"6":43,"22":642},"isBase":true}}}, +{"id":40201,"name":"Leggings of Colossal Strides","icon":"inv_pants_03","type":9,"armorType":3,"stats":[0,100,119,0,0,0,89,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":119,"6":89,"7":67,"22":1460},"isBase":true}}}, +{"id":40203,"name":"Breastplate of Tormented Rage","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[84,0,150,0,0,36,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":84,"2":150,"5":36,"9":98,"22":2354},"isBase":true}}}, +{"id":40204,"name":"Legguards of the Apostle","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,143,101,0,0,58,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"6":58,"7":72,"22":2059},"isBase":true}}}, +{"id":40205,"name":"Stalk-Skin Belt","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,64,123,0,0,0,62,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":64,"2":123,"6":62,"7":36,"22":642},"isBase":true}}}, +{"id":40206,"name":"Iron-Spring Jumpers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[76,0,85,0,0,73,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":76,"2":85,"5":73,"6":37,"22":1618},"isBase":true}}}, +{"id":40208,"name":"Cryptfiend's Bite","icon":"inv_weapon_halberd_26","type":13,"weaponType":6,"handType":4,"stats":[0,51,194,0,0,0,58,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15956,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"1":51,"2":194,"6":58,"7":77},"isBase":true}}}, +{"id":40209,"name":"Bindings of the Decrepit","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"7":38,"22":730},"isBase":true}}}, +{"id":40210,"name":"Chestguard of Bitter Charms","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,132,101,66,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":132,"3":101,"4":66,"6":77,"22":2354},"isBase":true}}}, +{"id":40233,"name":"The Undeath Carrier","icon":"inv_staff_86","type":13,"weaponType":8,"handType":4,"stats":[0,100,199,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"weaponSpeed":2.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"stats":{"1":100,"2":199,"6":51},"isBase":true}}}, +{"id":40234,"name":"Heigan's Putrid Vestments","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,161,85,0,49,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":161,"3":85,"5":49,"7":51,"22":852},"isBase":true}}}, +{"id":40235,"name":"Helm of Pilgrimage","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,143,101,66,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":101,"4":66,"6":67,"22":1355},"isBase":true}}}, +{"id":40236,"name":"Serene Echoes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,107,75,50,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"4":50,"6":49,"22":586},"isBase":true}}}, +{"id":40237,"name":"Eruption-Scarred Boots","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,0,119,67,0,0,42,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":119,"3":67,"6":42,"7":38,"22":1147},"isBase":true}}}, +{"id":40238,"name":"Gloves of the Dancing Bear","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,105,65,50,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":65,"4":50,"6":43,"22":713},"isBase":true}}}, +{"id":40239,"name":"The Hand of Nerub","icon":"inv_weapon_hand_05","type":13,"weaponType":3,"handType":2,"stats":[0,33,80,0,0,21,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"weaponSpeed":1.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"stats":{"1":33,"2":80,"5":21,"6":29},"isBase":true}}}, +{"id":40240,"name":"Greaves of Turbulence","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[100,0,150,0,0,0,0,0,0,66,67,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":150,"9":66,"10":67,"22":2059},"isBase":true}}}, +{"id":40241,"name":"Girdle of Unity","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,105,75,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":75,"4":56,"6":43,"22":1324},"isBase":true}}}, +{"id":40242,"name":"Grotesque Handgrips","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,66,86,0,0,0,65,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":86,"6":65,"7":40,"22":1043},"isBase":true}}}, +{"id":40243,"name":"Footwraps of Vile Deceit","icon":"inv_boots_cloth_02","type":10,"armorType":2,"stats":[0,67,120,0,0,0,0,49,30,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":120,"7":49,"8":30,"22":785},"isBase":true}}}, +{"id":40244,"name":"The Impossible Dream","icon":"inv_mace_84","type":13,"weaponType":4,"handType":2,"stats":[0,0,77,0,31,0,42,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":77,"4":31,"6":42,"14":576},"isBase":true}}}, +{"id":40245,"name":"Fading Glow","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,63,44,30,0,0,25,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":183,"weaponDamageMax":341,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":183,"weaponDamageMax":341,"stats":{"2":63,"3":44,"4":30,"7":25,"14":576},"isBase":true}}}, +{"id":40246,"name":"Boots of Impetuous Ideals","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,112,75,0,37,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":112,"3":75,"5":37,"7":55,"22":586},"isBase":true}}}, +{"id":40247,"name":"Cowl of Innocent Delight","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,168,101,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":168,"3":101,"4":81,"22":693},"isBase":true}}}, +{"id":40249,"name":"Vest of Vitality","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,144,85,50,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16011,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":144,"3":85,"4":50,"6":67,"22":1141},"isBase":true}}}, +{"id":40250,"name":"Aged Winter Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,38,105,0,0,0,43,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":38,"2":105,"6":43,"7":28,"22":426},"isBase":true}}}, +{"id":40251,"name":"Shroud of Luminosity","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,90,56,0,0,38,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":90,"3":56,"6":38,"7":28,"22":426},"isBase":true}}}, +{"id":40252,"name":"Cloak of the Shadowed Sun","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[56,0,84,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,426,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"9":47,"22":426,"23":96},"isBase":true}}}, +{"id":40253,"name":"Shawl of the Old Maid","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,80,56,38,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"6":37,"22":426},"isBase":true}}}, +{"id":40254,"name":"Cloak of Averted Crisis","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[0,0,82,56,38,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"6":38,"22":426},"isBase":true}}}, +{"id":40255,"name":"Dying Curse","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"5":71},"isBase":true}}}, +{"id":40256,"name":"Grim Toll","icon":"inv_trinket_naxxramas04","type":12,"stats":[0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"5":83},"isBase":true}}}, +{"id":40257,"name":"Defender's Code","icon":"inv_trinket_naxxramas05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"23":379},"isBase":true}}}, +{"id":40258,"name":"Forethought Talisman","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15952,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15936,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"3":95},"isBase":true}}}, +{"id":40259,"name":"Waistguard of Divine Grace","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,112,75,0,0,37,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":112,"3":75,"6":37,"7":55,"22":1324},"isBase":true}}}, +{"id":40260,"name":"Belt of the Tortured","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,75,116,0,0,50,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":116,"5":50,"6":43,"22":642},"isBase":true}}}, +{"id":40261,"name":"Crude Discolored Battlegrips","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[75,0,82,0,0,74,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":82,"5":74,"6":43,"22":1471},"isBase":true}}}, +{"id":40262,"name":"Gloves of Calculated Risk","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,75,112,0,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":112,"5":43,"6":57,"22":1043},"isBase":true}}}, +{"id":40263,"name":"Fleshless Girdle","icon":"inv_belt_34","type":8,"armorType":4,"stats":[75,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":112,"9":48,"10":50,"22":1324},"isBase":true}}}, +{"id":40264,"name":"Split Greathammer","icon":"inv_mace_78","type":13,"weaponType":4,"handType":2,"stats":[0,43,69,0,0,0,29,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"weaponSpeed":1.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":293,"weaponDamageMax":545,"stats":{"1":43,"2":69,"6":29,"8":21},"isBase":true}}}, +{"id":40265,"name":"Arrowsong","icon":"inv_weapon_bow_40","type":14,"rangedWeaponType":1,"stats":[0,99,162,0,0,51,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":667,"weaponDamageMax":1240,"weaponSpeed":2.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":667,"weaponDamageMax":1240,"stats":{"1":99,"2":162,"5":51,"6":64},"isBase":true}}}, +{"id":40266,"name":"Hero's Surrender","icon":"inv_shield_56","type":13,"weaponType":7,"handType":3,"stats":[56,0,84,0,0,0,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"9":44,"10":30,"22":6898},"isBase":true}}}, +{"id":40269,"name":"Boots of Persuasion","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,113,67,55,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":113,"3":67,"4":55,"6":35,"22":586},"isBase":true}}}, +{"id":40270,"name":"Boots of Septic Wounds","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,108,67,49,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":67,"4":49,"6":38,"22":785},"isBase":true}}}, +{"id":40271,"name":"Sash of Solitude","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,108,67,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":67,"4":62,"22":480},"isBase":true}}}, +{"id":40272,"name":"Girdle of the Gambit","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,119,75,50,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":119,"3":75,"4":50,"7":38,"22":938},"isBase":true}}}, +{"id":40273,"name":"Surplus Limb","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,84,56,0,32,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16028,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"5":32,"7":41},"isBase":true}}}, +{"id":40274,"name":"Bracers of Liberation","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,84,56,0,0,41,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"6":41,"7":28,"22":1030},"isBase":true}}}, +{"id":40275,"name":"Depraved Linked Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,74,86,0,0,0,66,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":74,"2":86,"6":66,"7":50,"22":938},"isBase":true}}}, +{"id":40277,"name":"Tunic of Indulgence","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,85,151,0,0,42,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":151,"5":42,"6":71,"22":1141},"isBase":true}}}, +{"id":40278,"name":"Girdle of Chivalry","icon":"inv_belt_34","type":8,"armorType":4,"stats":[70,0,88,0,0,46,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":70,"2":88,"5":46,"7":60,"22":1324},"isBase":true}}}, +{"id":40279,"name":"Chestguard of the Exhausted","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,39,87,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":84,"2":126,"9":39,"10":87,"22":2354},"isBase":true}}}, +{"id":40280,"name":"Origin of Nightmares","icon":"inv_staff_90","type":13,"weaponType":8,"handType":4,"stats":[0,100,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"weaponSpeed":2.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":654,"weaponDamageMax":981,"stats":{"1":100,"2":199,"23":204},"isBase":true}}}, +{"id":40281,"name":"Twilight Mist","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,25,83,0,0,21,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"1":25,"2":83,"5":21,"7":33},"isBase":true}}}, +{"id":40282,"name":"Slime Stream Bands","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,48,84,0,0,28,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":48,"2":84,"5":28,"6":39,"22":730},"isBase":true}}}, +{"id":40283,"name":"Fallout Impervious Tunic","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,137,85,0,0,61,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"6":61,"7":58,"22":1668},"isBase":true}}}, +{"id":40284,"name":"Plague Igniter","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,55,44,27,0,33,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":55,"3":44,"4":27,"6":33,"14":576},"isBase":true}}}, +{"id":40285,"name":"Desecrated Past","icon":"inv_pants_leather_22","type":9,"armorType":2,"stats":[0,0,150,101,77,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":150,"3":101,"4":77,"6":50,"22":998},"isBase":true}}}, +{"id":40286,"name":"Mantle of the Corrupted","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,113,75,0,37,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":113,"3":75,"5":37,"7":57,"22":639},"isBase":true}}}, +{"id":40287,"name":"Cowl of Vanity","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,139,85,63,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":139,"3":85,"4":63,"7":40,"22":693},"isBase":true}}}, +{"id":40288,"name":"Spaulders of Incoherence","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,0,105,66,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":66,"4":56,"6":43,"22":1251},"isBase":true}}}, +{"id":40289,"name":"Sympathetic Amice","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,120,75,38,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":120,"3":75,"4":38,"6":50,"22":639},"isBase":true}}}, +{"id":40290,"name":"Gaze of the Punishing Construct","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,83,53,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"2":83,"3":53,"6":51,"22":485},"isBase":true}}}, +{"id":40291,"name":"Helm of the Avenging Protector","icon":"inv_helmet128","type":1,"armorType":2,"stats":[0,53,95,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"1":53,"2":95,"5":40,"22":676},"isBase":true}}}, +{"id":40292,"name":"Headguard of Vast Destruction","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,46,40,0,0,15,45,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"1":46,"2":40,"5":15,"6":45,"7":50,"22":1024},"isBase":true}}}, +{"id":40293,"name":"Helm of Towering Rage","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[50,0,69,0,0,0,46,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"0":50,"2":69,"6":46,"7":40,"22":1521},"isBase":true}}}, +{"id":40294,"name":"Riveted Abomination Leggings","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[101,0,108,0,0,59,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":101,"2":108,"5":59,"7":99,"22":2059},"isBase":true}}}, +{"id":40295,"name":"Greathelm of the Titan Protectorate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[50,0,80,0,0,0,0,0,34,40,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":104,"stats":{"0":50,"2":80,"8":34,"9":40,"22":1521},"isBase":true}}}, +{"id":40296,"name":"Cover of Silence","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,100,147,0,0,50,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":147,"5":50,"6":77,"22":927},"isBase":true}}}, +{"id":40297,"name":"Sabatons of Endurance","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[57,0,111,0,0,0,0,0,38,74,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":57,"2":111,"8":38,"9":74,"22":1618},"isBase":true}}}, +{"id":40298,"name":"Faceguard of the Succumbed","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[0,0,137,85,0,0,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"6":42,"7":61,"22":1912},"isBase":true}}}, +{"id":40299,"name":"Pauldrons of the Abandoned","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,75,90,0,0,0,72,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":90,"6":72,"7":38,"22":1251},"isBase":true}}}, +{"id":40300,"name":"Spire of Sunset","icon":"inv_staff_82","type":13,"weaponType":8,"handType":4,"stats":[0,0,179,0,58,0,0,99,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":436,"weaponDamageMax":654,"weaponSpeed":3.2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":436,"weaponDamageMax":654,"stats":{"2":179,"4":58,"7":99,"14":577},"isBase":true}}}, +{"id":40301,"name":"Cincture of Polarity","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,107,75,0,43,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"5":43,"7":53,"22":480},"isBase":true}}}, +{"id":40302,"name":"Benefactor's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,0,119,75,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":119,"3":75,"6":38,"7":50,"22":1043},"isBase":true}}}, +{"id":40303,"name":"Wraps of the Persecuted","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,107,75,50,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":75,"4":50,"6":49,"22":533},"isBase":true}}}, +{"id":40304,"name":"Headpiece of Fungal Bloom","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,162,85,50,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15928,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":162,"3":85,"4":50,"7":34,"22":927},"isBase":true}}}, +{"id":40305,"name":"Spaulders of Egotism","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,75,113,0,0,0,57,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":113,"6":57,"7":37,"22":856},"isBase":true}}}, +{"id":40306,"name":"Bracers of the Unholy Knight","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[48,0,72,0,0,0,0,0,0,46,26,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":48,"2":72,"9":46,"10":26,"22":1030},"isBase":true}}}, +{"id":40315,"name":"Shoulderpads of Secret Arts","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,67,112,0,0,35,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":112,"5":35,"7":57,"22":1251},"isBase":true}}}, +{"id":40316,"name":"Gauntlets of Guiding Touch","icon":"inv_gauntlets_15","type":7,"armorType":4,"stats":[0,0,107,67,42,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"4":42,"7":47,"22":1471},"isBase":true}}}, +{"id":40317,"name":"Girdle of Razuvious","icon":"inv_belt_34","type":8,"armorType":4,"stats":[75,0,85,0,0,0,74,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":85,"6":74,"8":38,"22":1324},"isBase":true}}}, +{"id":40318,"name":"Legplates of Double Strikes","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[84,0,120,0,0,0,64,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":84,"2":120,"6":64,"7":78,"22":2059},"isBase":true}}}, +{"id":40319,"name":"Chestpiece of Suspicion","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,100,160,0,0,0,50,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":160,"6":50,"7":67,"22":1141},"isBase":true}}}, +{"id":40320,"name":"Faithful Steel Sabatons","icon":"inv_boots_plate_03","type":10,"armorType":4,"stats":[0,0,111,75,56,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":111,"3":75,"4":56,"6":43,"22":1618},"isBase":true}}}, +{"id":40323,"name":"Esteemed Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,74,48,35,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":74,"3":48,"4":35,"7":37,"22":499},"isBase":true}}}, +{"id":40324,"name":"Bands of Mutual Respect","icon":"inv_bracer_12","type":6,"armorType":3,"stats":[0,0,84,48,0,0,43,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":48,"6":43,"7":20,"22":730},"isBase":true}}}, +{"id":40325,"name":"Bindings of the Expansive Mind","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,84,56,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"5":28,"6":43,"22":373},"isBase":true}}}, +{"id":40326,"name":"Boots of Forlorn Wishes","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,95,67,66,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":95,"3":67,"4":66,"7":33,"22":586},"isBase":true}}}, +{"id":40327,"name":"Girdle of Recuperation","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,0,113,75,0,0,57,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16061,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":113,"3":75,"6":57,"7":37,"22":938},"isBase":true}}}, +{"id":40328,"name":"Helm of Vital Protection","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[68,0,126,0,0,0,0,0,36,0,86,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":68,"2":126,"8":36,"10":86,"22":1912},"isBase":true}}}, +{"id":40329,"name":"Hood of the Exodus","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,84,162,0,0,0,0,50,35,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":162,"7":50,"8":35,"22":927},"isBase":true}}}, +{"id":40330,"name":"Bracers of Unrelenting Attack","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[50,0,48,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":50,"2":48,"5":46,"6":41,"22":1030},"isBase":true}}}, +{"id":40331,"name":"Leggings of Failed Escape","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,84,151,0,0,43,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":151,"5":43,"6":72,"22":1460},"isBase":true}}}, +{"id":40332,"name":"Abetment Bracers","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,82,48,30,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":48,"4":30,"7":37,"22":1030},"isBase":true}}}, +{"id":40333,"name":"Leggings of Fleeting Moments","icon":"inv_pants_mail_21","type":9,"armorType":2,"stats":[0,100,149,0,0,0,77,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":100,"2":149,"6":77,"7":55,"22":998},"isBase":true}}}, +{"id":40334,"name":"Burdened Shoulderplates","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[75,0,112,0,0,0,0,0,0,48,50,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":112,"9":48,"10":50,"22":1765},"isBase":true}}}, +{"id":40335,"name":"Touch of Horror","icon":"inv_mace_80","type":14,"rangedWeaponType":6,"stats":[0,0,49,44,41,0,22,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":183,"weaponDamageMax":341,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":183,"weaponDamageMax":341,"stats":{"2":49,"3":44,"4":41,"6":22,"14":576},"isBase":true}}}, +{"id":40336,"name":"Life and Death","icon":"inv_sword_121","type":13,"weaponType":9,"handType":2,"stats":[0,0,81,0,0,0,42,29,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":81,"6":42,"7":29,"14":576},"isBase":true}}}, +{"id":40338,"name":"Bindings of Yearning","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,84,56,28,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"4":28,"6":41,"22":373},"isBase":true}}}, +{"id":40339,"name":"Gothik's Cowl","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,137,85,0,0,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"6":42,"7":34,"22":693},"isBase":true}}}, +{"id":40340,"name":"Helm of Unleashed Energy","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,0,146,85,62,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":146,"3":85,"4":62,"7":33,"22":1355},"isBase":true}}}, +{"id":40341,"name":"Shackled Cinch","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,108,75,38,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16060,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":75,"4":38,"7":57,"22":642},"isBase":true}}}, +{"id":40343,"name":"Armageddon","icon":"inv_sword_104","type":13,"weaponType":9,"handType":4,"stats":[101,0,108,0,0,0,58,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"weaponSpeed":3.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"stats":{"0":101,"2":108,"6":58,"7":100},"isBase":true}}}, +{"id":40344,"name":"Helm of the Grave","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,85,117,0,0,0,75,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":117,"6":75,"7":53,"22":1355},"isBase":true}}}, +{"id":40345,"name":"Broken Promise","icon":"inv_sword_115","type":13,"weaponType":9,"handType":2,"stats":[29,0,64,0,0,16,0,0,20,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"weaponSpeed":2.5,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"stats":{"0":29,"2":64,"5":16,"8":20,"9":43},"isBase":true}}}, +{"id":40346,"name":"Final Voyage","icon":"inv_weapon_crossbow_25","type":14,"rangedWeaponType":2,"stats":[0,57,191,0,0,0,51,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":763,"weaponDamageMax":1145,"weaponSpeed":2.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":763,"weaponDamageMax":1145,"stats":{"1":57,"2":191,"6":51,"7":80},"isBase":true}}}, +{"id":40347,"name":"Zeliek's Gauntlets","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[67,0,79,0,0,0,0,67,43,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":79,"7":67,"8":43,"22":1471},"isBase":true}}}, +{"id":40348,"name":"Damnation","icon":"inv_staff_67","type":13,"weaponType":8,"handType":4,"stats":[0,0,180,0,85,0,91,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":2.1,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":286,"weaponDamageMax":429,"stats":{"2":180,"4":85,"6":91,"14":577},"isBase":true}}}, +{"id":40349,"name":"Gloves of Peaceful Death","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,105,73,57,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":73,"4":57,"7":42,"22":713},"isBase":true}}}, +{"id":40350,"name":"Urn of Lost Memories","icon":"inv_offhand_naxxramas_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,68,56,42,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":68,"3":56,"4":42,"6":41},"isBase":true}}}, +{"id":40351,"name":"Mantle of the Fatigued Sage","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,103,67,0,35,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15931,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":103,"3":67,"5":35,"6":57,"22":639},"isBase":true}}}, +{"id":40352,"name":"Leggings of Voracious Shadows","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,0,146,85,0,0,50,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":16064,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":146,"3":85,"6":50,"7":61,"22":1460},"isBase":true}}}, +{"id":40353,"name":"Polished Protodrake Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,31,26,0,0,27,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":162,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":58,"stats":{"2":31,"3":26,"6":27,"7":25,"22":299},"isBase":true}}}, +{"id":40354,"name":"Monster Slayer's Kit","icon":"inv_misc_bag_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponSpeed":0.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":40362,"name":"Gloves of Fast Reactions","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,66,110,0,0,0,38,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":110,"6":38,"7":49,"22":713},"isBase":true}}}, +{"id":40363,"name":"Bone-Inlaid Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,154,85,56,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":154,"3":85,"4":56,"6":50,"22":2059},"isBase":true}}}, +{"id":40365,"name":"Breastplate of Frozen Pain","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[85,0,150,0,0,43,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"5":43,"6":64,"22":2354},"isBase":true}}}, +{"id":40366,"name":"Platehelm of the Great Wyrm","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[100,0,151,0,0,0,0,0,0,65,67,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":151,"9":65,"10":67,"22":1912},"isBase":true}}}, +{"id":40367,"name":"Boots of the Great Construct","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,67,98,0,0,0,61,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":98,"6":61,"7":40,"22":1147},"isBase":true}}}, +{"id":40368,"name":"Murder","icon":"inv_weapon_shortblade_84","type":13,"weaponType":2,"handType":2,"stats":[0,25,83,0,0,21,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"1":25,"2":83,"5":21,"7":33},"isBase":true}}}, +{"id":40369,"name":"Icy Blast Amulet","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,56,70,0,0,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":70,"6":28,"7":43},"isBase":true}}}, +{"id":40370,"name":"Gatekeeper","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[43,0,84,0,0,28,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":43,"2":84,"5":28,"9":41,"23":128},"isBase":true}}}, +{"id":40371,"name":"Bandit's Insignia","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"12":190,"13":190},"isBase":true}}}, +{"id":40372,"name":"Rune of Repulsion","icon":"inv_trinket_naxxramas01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"10":95},"isBase":true}}}, +{"id":40373,"name":"Extract of Necromantic Power","icon":"inv_trinket_naxxramas06","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"6":95},"isBase":true}}}, +{"id":40374,"name":"Cosmic Lights","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,79,56,0,0,37,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":79,"3":56,"6":37,"7":41},"isBase":true}}}, +{"id":40375,"name":"Ring of Decaying Beauty","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,81,56,40,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":81,"3":56,"4":40,"7":35},"isBase":true}}}, +{"id":40376,"name":"Legwraps of the Defeated Dragon","icon":"inv_pants_cloth_16","type":9,"armorType":1,"stats":[0,0,152,85,0,50,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":152,"3":85,"5":50,"6":56,"22":746},"isBase":true}}}, +{"id":40377,"name":"Noble Birthright Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,105,67,46,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":46,"7":43,"22":1765},"isBase":true}}}, +{"id":40378,"name":"Ceaseless Pity","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,78,56,32,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":78,"3":56,"4":32,"6":43},"isBase":true}}}, +{"id":40379,"name":"Legguards of the Boneyard","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,137,85,58,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"4":58,"7":61,"22":998},"isBase":true}}}, +{"id":40380,"name":"Gloves of Grandeur","icon":"inv_gauntlets_14","type":7,"armorType":1,"stats":[0,0,123,75,0,38,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":123,"3":75,"5":38,"6":43,"22":533},"isBase":true}}}, +{"id":40381,"name":"Sympathy","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,143,85,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":86,"22":852},"isBase":true}}}, +{"id":40382,"name":"Soul of the Dead","icon":"inv_trinket_naxxramas03","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15989,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"6":95},"isBase":true}}}, +{"id":40383,"name":"Calamity's Grasp","icon":"inv_weapon_hand_20","type":13,"weaponType":3,"handType":2,"stats":[0,36,87,0,0,0,37,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":617,"weaponDamageMax":927,"weaponSpeed":2.6,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":617,"weaponDamageMax":927,"stats":{"1":36,"2":87,"6":37,"7":24},"isBase":true}}}, +{"id":40384,"name":"Betrayer of Humanity","icon":"inv_axe_99","type":13,"weaponType":1,"handType":4,"stats":[0,66,218,0,0,0,87,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"weaponDamageMin":1050,"weaponDamageMax":1576,"weaponSpeed":3.4,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":216,"weaponDamageMin":1050,"weaponDamageMax":1576,"stats":{"1":66,"2":218,"6":87,"7":57},"isBase":true}}}, +{"id":40385,"name":"Envoy of Mortality","icon":"inv_weapon_rifle_24","type":14,"rangedWeaponType":3,"stats":[0,114,200,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"weaponDamageMin":783,"weaponDamageMax":1456,"weaponSpeed":2.9,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":216,"weaponDamageMin":783,"weaponDamageMax":1456,"stats":{"1":114,"2":200,"6":83},"isBase":true}}}, +{"id":40386,"name":"Sinister Revenge","icon":"inv_weapon_shortblade_92","type":13,"weaponType":2,"handType":2,"stats":[0,36,87,0,0,37,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":427,"weaponDamageMax":642,"weaponSpeed":1.8,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":427,"weaponDamageMax":642,"stats":{"1":36,"2":87,"5":37,"7":24},"isBase":true}}}, +{"id":40387,"name":"Boundless Ambition","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[49,0,94,0,0,0,0,0,31,46,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"0":49,"2":94,"8":31,"9":46,"23":96},"isBase":true}}}, +{"id":40388,"name":"Journey's End","icon":"inv_staff_89","type":13,"weaponType":8,"handType":4,"stats":[0,87,214,0,0,0,57,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"weaponDamageMin":741,"weaponDamageMax":1112,"weaponSpeed":2.4,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":216,"weaponDamageMin":741,"weaponDamageMax":1112,"stats":{"1":87,"2":214,"6":57,"7":75},"isBase":true}}}, +{"id":40395,"name":"Torch of Holy Fire","icon":"inv_mace_82","type":13,"weaponType":4,"handType":2,"stats":[0,0,82,0,38,0,0,48,0,0,0,0,0,0,654,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":187,"weaponDamageMax":348,"weaponSpeed":1.8,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":187,"weaponDamageMax":348,"stats":{"2":82,"4":38,"7":48,"14":654},"isBase":true}}}, +{"id":40396,"name":"The Turning Tide","icon":"inv_sword_130","type":13,"weaponType":9,"handType":2,"stats":[0,0,83,0,0,0,37,48,0,0,0,0,0,0,654,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":187,"weaponDamageMax":348,"weaponSpeed":1.8,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":187,"weaponDamageMax":348,"stats":{"2":83,"6":37,"7":48,"14":654},"isBase":true}}}, +{"id":40398,"name":"Leggings of Mortal Arrogance","icon":"inv_pants_cloth_26","type":9,"armorType":1,"stats":[0,0,159,98,71,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":159,"3":98,"4":71,"6":57,"22":789},"isBase":true}}}, +{"id":40399,"name":"Signet of Manifested Pain","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[0,0,90,63,0,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"6":46,"7":36},"isBase":true}}}, +{"id":40400,"name":"Wall of Terror","icon":"inv_shield_32","type":13,"weaponType":7,"handType":3,"stats":[63,0,94,0,0,0,0,0,0,50,31,0,0,0,0,0,0,0,0,0,0,0,7046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"0":63,"2":94,"9":50,"10":31,"22":7046},"isBase":true}}}, +{"id":40401,"name":"Voice of Reason","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[0,0,92,63,0,0,46,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":92,"3":63,"6":46,"7":31,"22":7046},"isBase":true}}}, +{"id":40402,"name":"Last Laugh","icon":"inv_axe_61","type":13,"weaponType":1,"handType":2,"stats":[37,0,73,0,0,24,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.6,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":332,"weaponDamageMax":618,"stats":{"0":37,"2":73,"5":24,"10":49},"isBase":true}}}, +{"id":40403,"name":"Drape of the Deadly Foe","icon":"inv_misc_cape_naxxramas_03","type":4,"armorType":1,"stats":[0,42,118,0,0,0,49,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"1":42,"2":118,"6":49,"7":31,"22":451},"isBase":true}}}, +{"id":40405,"name":"Cape of the Unworthy Wizard","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,82,63,49,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15990,"zoneId":3456}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":82,"3":63,"4":49,"6":42,"22":451},"isBase":true}}}, +{"id":40406,"name":"Inevitable Defeat","icon":"inv_mace_1h_stratholme_d_01","type":13,"weaponType":4,"handType":4,"stats":[100,80,120,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"weaponSpeed":3.4,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":926,"weaponDamageMax":1390,"stats":{"0":100,"1":80,"2":120,"8":78},"isBase":true}}}, +{"id":40407,"name":"Silent Crusader","icon":"inv_sword_120","type":13,"weaponType":9,"handType":2,"stats":[0,21,85,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"weaponSpeed":2.5,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":458,"weaponDamageMax":852,"stats":{"1":21,"2":85,"5":31,"6":25},"isBase":true}}}, +{"id":40408,"name":"Haunting Call","icon":"inv_weapon_shortblade_82","type":13,"weaponType":2,"handType":2,"stats":[0,0,76,0,0,45,23,0,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":76,"5":45,"6":23,"14":576},"isBase":true}}}, +{"id":40409,"name":"Boots of the Escaped Captive","icon":"inv_boots_chain_01","type":10,"armorType":2,"stats":[0,0,99,75,38,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":99,"3":75,"4":38,"7":60,"22":785},"isBase":true}}}, +{"id":40410,"name":"Shadow of the Ghoul","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[56,0,84,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"9":50,"22":426},"isBase":true}}}, +{"id":40412,"name":"Ousted Bead Necklace","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,84,43,56,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":43,"4":56,"6":28},"isBase":true}}}, +{"id":40414,"name":"Shoulderguards of the Undaunted","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[75,0,85,0,0,75,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"zoneId":3456,"otherName":"Trash"}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":85,"5":75,"7":37,"22":1765},"isBase":true}}}, +{"id":40415,"name":"Valorous Frostfire Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,112,59,0,38,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":112,"3":59,"5":38,"6":53,"22":533},"isBase":true}}}, +{"id":40416,"name":"Valorous Frostfire Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,126,84,66,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":126,"3":84,"4":66,"6":51,"22":693},"isBase":true}}}, +{"id":40417,"name":"Valorous Frostfire Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,152,85,0,43,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":152,"3":85,"5":43,"7":67,"22":746},"isBase":true}}}, +{"id":40418,"name":"Valorous Frostfire Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,141,85,66,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":141,"3":85,"4":66,"6":61,"22":852},"isBase":true}}}, +{"id":40419,"name":"Valorous Frostfire Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,107,67,0,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Frostfire Garb","setId":803,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"6":53,"7":35,"22":639},"isBase":true}}}, +{"id":40420,"name":"Valorous Plagueheart Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,113,59,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":113,"3":59,"6":43,"7":53,"22":533},"isBase":true}}}, +{"id":40421,"name":"Valorous Plagueheart Circlet","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,141,85,50,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":141,"3":85,"4":50,"7":56,"22":693},"isBase":true}}}, +{"id":40422,"name":"Valorous Plagueheart Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,146,85,0,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":146,"3":85,"6":51,"7":66,"22":746},"isBase":true}}}, +{"id":40423,"name":"Valorous Plagueheart Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,150,85,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":150,"3":85,"5":51,"6":66,"22":852},"isBase":true}}}, +{"id":40424,"name":"Valorous Plagueheart Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,111,67,0,35,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Plagueheart Garb","setId":802,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":111,"3":67,"5":35,"7":55,"22":639},"isBase":true}}}, +{"id":40426,"name":"Signet of the Accord","icon":"inv_jewelry_ring_70","type":11,"stats":[36,0,73,0,0,0,0,0,29,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":36,"2":73,"8":29,"10":50},"isBase":true}}}, +{"id":40427,"name":"Circle of Arcane Streams","icon":"spell_arcane_blast","type":2,"stats":[0,0,78,45,0,31,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":78,"3":45,"5":31,"6":35},"isBase":true}}}, +{"id":40428,"name":"Titan's Outlook","icon":"inv_helmet_110","type":1,"armorType":4,"stats":[103,0,99,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":103,"2":99,"6":57,"7":63,"22":1901},"isBase":true}}}, +{"id":40429,"name":"Crimson Steel","icon":"inv_weapon_hand_18","type":13,"weaponType":3,"handType":2,"stats":[0,19,66,0,0,27,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":19,"2":66,"5":27,"6":22},"isBase":true}}}, +{"id":40430,"name":"Majestic Dragon Figurine","icon":"inv_misc_head_dragon_green","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":126,"isBase":true}}}, +{"id":40431,"name":"Fury of the Five Flights","icon":"spell_shadow_rainoffire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":142,"isBase":true}}}, +{"id":40432,"name":"Illustration of the Dragon Soul","icon":"inv_offhand_hyjal_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":142,"isBase":true}}}, +{"id":40433,"name":"Wyrmrest Band","icon":"inv_jewelry_ring_67","type":11,"stats":[0,0,76,57,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":76,"3":57,"4":40,"7":32},"isBase":true}}}, +{"id":40437,"name":"Concealment Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,66,119,0,0,0,45,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":119,"6":45,"8":53,"22":856},"isBase":true}}}, +{"id":40438,"name":"Council Chamber Epaulets","icon":"inv_shoulder_80","type":3,"armorType":3,"stats":[0,0,106,77,32,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":106,"3":77,"4":32,"7":61,"22":1251},"isBase":true}}}, +{"id":40439,"name":"Mantle of the Eternal Sentinel","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,0,97,78,0,0,61,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":97,"3":78,"6":61,"7":32,"22":856},"isBase":true}}}, +{"id":40440,"name":"Brutal Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[45,0,76,0,0,18,45,12,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1995,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Dreadplate","setId":760,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":45,"2":76,"5":18,"6":45,"7":12,"16":24,"22":1995},"isBase":true}}}, +{"id":40441,"name":"Brutal Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[42,0,59,0,0,0,37,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Dreadplate","setId":760,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":42,"2":59,"6":37,"16":24,"22":1247},"isBase":true}}}, +{"id":40442,"name":"Brutal Gladiator's Dreadplate Helm","icon":"inv_helmet_127","type":1,"armorType":4,"stats":[45,0,68,0,0,18,41,12,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Dreadplate","setId":760,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":45,"2":68,"5":18,"6":41,"7":12,"16":25,"22":1621},"isBase":true}}}, +{"id":40443,"name":"Brutal Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[57,0,77,0,0,18,53,12,0,0,0,0,0,0,0,0,22,0,0,0,0,0,1746,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Dreadplate","setId":760,"scalingOptions":{"159":{"randPropPoints":116,"stats":{"0":57,"2":77,"5":18,"6":53,"7":12,"16":22,"22":1746},"isBase":true}}}, +{"id":40444,"name":"Brutal Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[38,0,64,0,0,0,35,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":159,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Dreadplate","setId":760,"scalingOptions":{"159":{"randPropPoints":86,"stats":{"0":38,"2":64,"6":35,"16":20,"22":1497},"isBase":true}}}, +{"id":40445,"name":"Valorous Gloves of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,67,41,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":102,"3":67,"4":41,"6":41,"22":533},"isBase":true}}}, +{"id":40446,"name":"Dragon Brood Legguards","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[77,0,152,0,0,50,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":77,"2":152,"5":50,"9":98,"22":2059},"isBase":true}}}, +{"id":40447,"name":"Valorous Crown of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,125,85,67,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":125,"3":85,"4":67,"7":50,"22":693},"isBase":true}}}, +{"id":40448,"name":"Valorous Leggings of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,143,85,67,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":67,"6":50,"22":746},"isBase":true}}}, +{"id":40449,"name":"Valorous Robe of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,132,85,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":132,"3":85,"4":95,"22":852},"isBase":true}}}, +{"id":40450,"name":"Valorous Shoulderpads of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,105,67,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Regalia of Faith","setId":804,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":50,"6":42,"22":639},"isBase":true}}}, +{"id":40451,"name":"Hyaline Helm of the Sniper","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,86,151,0,0,39,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":86,"2":151,"5":39,"7":58,"22":1355},"isBase":true}}}, +{"id":40453,"name":"Chestplate of the Great Aspects","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,133,105,0,0,27,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":133,"3":105,"6":27,"7":82,"22":2354},"isBase":true}}}, +{"id":40454,"name":"Valorous Handwraps of Faith","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,99,67,0,0,56,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":99,"3":67,"6":56,"7":41,"22":533},"isBase":true}}}, +{"id":40455,"name":"Staff of Restraint","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,0,185,0,84,0,68,0,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":436,"weaponDamageMax":654,"weaponSpeed":3.2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":436,"weaponDamageMax":654,"stats":{"2":185,"4":84,"6":68,"14":577},"isBase":true}}}, +{"id":40456,"name":"Valorous Circlet of Faith","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,128,84,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":128,"3":84,"4":64,"6":51,"22":693},"isBase":true}}}, +{"id":40457,"name":"Valorous Pants of Faith","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,143,85,58,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":58,"6":59,"22":746},"isBase":true}}}, +{"id":40458,"name":"Valorous Raiments of Faith","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,143,85,0,50,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"5":50,"6":66,"22":852},"isBase":true}}}, +{"id":40459,"name":"Valorous Mantle of Faith","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,107,67,0,41,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Garb of Faith","setId":805,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"5":41,"7":50,"22":639},"isBase":true}}}, +{"id":40460,"name":"Valorous Dreamwalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,105,67,55,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":55,"7":35,"22":713},"isBase":true}}}, +{"id":40461,"name":"Valorous Dreamwalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,143,85,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":72,"22":927},"isBase":true}}}, +{"id":40462,"name":"Valorous Dreamwalker Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,137,85,77,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"4":77,"6":42,"22":998},"isBase":true}}}, +{"id":40463,"name":"Valorous Dreamwalker Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,137,85,77,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"4":77,"7":42,"22":1141},"isBase":true}}}, +{"id":40465,"name":"Valorous Dreamwalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,103,67,57,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Regalia","setId":799,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":103,"3":67,"4":57,"6":35,"22":856},"isBase":true}}}, +{"id":40466,"name":"Valorous Dreamwalker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,107,67,35,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":107,"3":67,"4":35,"6":53,"22":713},"isBase":true}}}, +{"id":40467,"name":"Valorous Dreamwalker Cover","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,137,85,0,42,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"5":42,"6":61,"22":927},"isBase":true}}}, +{"id":40468,"name":"Valorous Dreamwalker Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,143,85,59,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":59,"6":58,"22":998},"isBase":true}}}, +{"id":40469,"name":"Valorous Dreamwalker Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,135,85,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":135,"3":85,"6":61,"7":61,"22":1141},"isBase":true}}}, +{"id":40470,"name":"Valorous Dreamwalker Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,105,67,0,35,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Garb","setId":800,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"5":35,"7":55,"22":856},"isBase":true}}}, +{"id":40471,"name":"Valorous Dreamwalker Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,85,163,0,0,0,57,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":163,"6":57,"8":40,"22":1141},"isBase":true}}}, +{"id":40472,"name":"Valorous Dreamwalker Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,59,120,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":120,"6":50,"7":37,"22":713},"isBase":true}}}, +{"id":40473,"name":"Valorous Dreamwalker Headguard","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,85,151,0,0,0,51,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":151,"6":51,"7":48,"22":927},"isBase":true}}}, +{"id":40474,"name":"Surge Needle Ring","icon":"inv_jewelry_ring_78","type":11,"stats":[0,41,95,0,0,32,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":41,"2":95,"5":32,"6":43},"isBase":true}}}, +{"id":40475,"name":"Barricade of Eternity","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[43,0,84,0,0,0,0,0,28,0,55,0,0,0,0,0,0,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":43,"2":84,"8":28,"10":55,"22":6898},"isBase":true}}}, +{"id":40486,"name":"Necklace of the Glittering Chamber","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,77,59,38,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":77,"3":59,"4":38,"6":37},"isBase":true}}}, +{"id":40488,"name":"Ice Spire Scepter","icon":"inv_mace_77","type":13,"weaponType":4,"handType":2,"stats":[0,0,81,0,25,0,0,38,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":165,"weaponDamageMax":307,"stats":{"2":81,"4":25,"7":38,"14":576},"isBase":true}}}, +{"id":40489,"name":"Greatstaff of the Nexus","icon":"inv_staff_83","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,95,0,104,0,0,0,0,0,0,577,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":286,"weaponDamageMax":429,"weaponSpeed":2.1,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":286,"weaponDamageMax":429,"stats":{"2":162,"5":95,"7":104,"14":577},"isBase":true}}}, +{"id":40490,"name":"Necromantic Wristguards","icon":"inv_bracer_09","type":6,"armorType":3,"stats":[0,43,52,0,0,0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":43,"2":52,"6":29,"7":43,"22":695},"isBase":true}}}, +{"id":40491,"name":"Hailstorm","icon":"inv_sword_122","type":13,"weaponType":9,"handType":2,"stats":[0,31,78,0,0,31,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"1":31,"2":78,"5":31,"6":25},"isBase":true}}}, +{"id":40492,"name":"Argent War Horn","icon":"inv_misc_horn_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponSpeed":0.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":40493,"name":"Valorous Dreamwalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,85,163,0,0,0,55,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":163,"6":55,"8":42,"22":998},"isBase":true}}}, +{"id":40494,"name":"Valorous Dreamwalker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,67,120,0,0,0,49,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Dreamwalker Battlegear","setId":798,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":120,"6":49,"7":30,"22":856},"isBase":true}}}, +{"id":40495,"name":"Valorous Bonescythe Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,84,152,0,0,0,44,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":152,"6":44,"7":62,"22":1141},"isBase":true}}}, +{"id":40496,"name":"Valorous Bonescythe Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,66,111,0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,713,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":111,"5":38,"6":50,"22":713},"isBase":true}}}, +{"id":40497,"name":"Black Ice","icon":"inv_weapon_halberd17","type":13,"weaponType":6,"handType":4,"stats":[0,108,141,0,0,72,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":954,"weaponDamageMax":1431,"weaponSpeed":3.5,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":954,"weaponDamageMax":1431,"stats":{"1":108,"2":141,"5":72,"7":58},"isBase":true}}}, +{"id":40499,"name":"Valorous Bonescythe Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,85,144,0,0,0,58,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":144,"6":58,"8":42,"22":927},"isBase":true}}}, +{"id":40500,"name":"Valorous Bonescythe Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,92,153,0,0,42,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":92,"2":153,"5":42,"7":58,"22":998},"isBase":true}}}, +{"id":40502,"name":"Valorous Bonescythe Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,55,111,0,0,0,58,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,856,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Bonescythe Battlegear","setId":801,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":55,"2":111,"6":58,"7":43,"22":856},"isBase":true}}}, +{"id":40503,"name":"Valorous Cryptstalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,84,151,0,0,51,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":151,"5":51,"7":64,"22":1668},"isBase":true}}}, +{"id":40504,"name":"Valorous Cryptstalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,67,93,0,0,0,63,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":93,"6":63,"7":39,"22":1043},"isBase":true}}}, +{"id":40505,"name":"Valorous Cryptstalker Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,84,112,0,0,0,90,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":112,"6":90,"7":37,"22":1355},"isBase":true}}}, +{"id":40506,"name":"Valorous Cryptstalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,85,133,0,0,0,78,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":85,"2":133,"6":78,"7":52,"22":1460},"isBase":true}}}, +{"id":40507,"name":"Valorous Cryptstalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,66,91,0,0,0,66,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Cryptstalker Battlegear","setId":794,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":91,"6":66,"7":41,"22":1251},"isBase":true}}}, +{"id":40508,"name":"Valorous Earthshatter Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,143,85,58,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":58,"7":59,"22":1668},"isBase":true}}}, +{"id":40509,"name":"Valorous Earthshatter Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,110,63,46,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":110,"3":63,"4":46,"6":45,"22":1043},"isBase":true}}}, +{"id":40510,"name":"Valorous Earthshatter Headpiece","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,138,85,50,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":138,"3":85,"4":50,"7":58,"22":1355},"isBase":true}}}, +{"id":40511,"name":"Focusing Energy Epaulets","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[0,0,102,78,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":102,"3":78,"4":56,"6":38,"22":1765},"isBase":true}}}, +{"id":40512,"name":"Valorous Earthshatter Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,85,40,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":161,"3":85,"4":40,"7":59,"22":1460},"isBase":true}}}, +{"id":40513,"name":"Valorous Earthshatter Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,105,67,40,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Regalia","setId":797,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":40,"6":50,"22":1251},"isBase":true}}}, +{"id":40514,"name":"Valorous Earthshatter Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,143,85,0,0,60,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":60,"7":57,"22":1668},"isBase":true}}}, +{"id":40515,"name":"Valorous Earthshatter Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,108,66,0,44,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":66,"5":44,"6":46,"22":1043},"isBase":true}}}, +{"id":40516,"name":"Valorous Earthshatter Helm","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,0,137,85,0,0,51,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":137,"3":85,"6":51,"7":58,"22":1355},"isBase":true}}}, +{"id":40517,"name":"Valorous Earthshatter Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,84,0,42,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":161,"3":84,"5":42,"6":59,"22":1460},"isBase":true}}}, +{"id":40518,"name":"Valorous Earthshatter Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,110,67,0,37,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Garb","setId":796,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":110,"3":67,"5":37,"6":50,"22":1251},"isBase":true}}}, +{"id":40519,"name":"Footsteps of Malygos","icon":"inv_boots_chain_13","type":10,"armorType":2,"stats":[0,0,106,77,0,0,41,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":23954,"zoneId":206}},{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":106,"3":77,"6":41,"7":56,"22":785},"isBase":true}}}, +{"id":40520,"name":"Valorous Earthshatter Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,67,93,0,0,0,69,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":93,"6":69,"7":31,"22":1043},"isBase":true}}}, +{"id":40521,"name":"Valorous Earthshatter Faceguard","icon":"inv_helmet_15","type":1,"armorType":3,"stats":[0,76,151,0,0,51,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":76,"2":151,"5":51,"6":56,"22":1355},"isBase":true}}}, +{"id":40522,"name":"Valorous Earthshatter War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,84,151,0,0,51,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":151,"5":51,"6":64,"22":1460},"isBase":true}}}, +{"id":40523,"name":"Valorous Earthshatter Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,84,151,0,0,64,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":151,"5":64,"8":51,"22":1668},"isBase":true}}}, +{"id":40524,"name":"Valorous Earthshatter Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,67,112,0,0,0,49,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Earthshatter Battlegear","setId":795,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":112,"6":49,"8":40,"22":1251},"isBase":true}}}, +{"id":40525,"name":"Valorous Dreadnaught Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[73,0,100,0,0,66,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":73,"2":100,"5":66,"6":92,"22":2354},"isBase":true}}}, +{"id":40526,"name":"Gown of the Spell-Weaver","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,143,94,0,72,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":28923,"zoneId":4272}},{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":94,"5":72,"6":50,"22":852},"isBase":true}}}, +{"id":40527,"name":"Valorous Dreadnaught Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,42,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"5":42,"8":50,"22":1471},"isBase":true}}}, +{"id":40528,"name":"Valorous Dreadnaught Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,102,0,0,0,92,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":102,"6":92,"7":43,"22":1912},"isBase":true}}}, +{"id":40529,"name":"Valorous Dreadnaught Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,84,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":100,"6":84,"8":66,"22":2059},"isBase":true}}}, +{"id":40530,"name":"Valorous Dreadnaught Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,82,0,0,0,58,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Battlegear","setId":788,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":82,"6":58,"7":43,"22":1765},"isBase":true}}}, +{"id":40531,"name":"Mark of Norgannon","icon":"ability_hunter_readiness","type":12,"stats":[0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"8":69},"isBase":true}}}, +{"id":40532,"name":"Living Ice Crystals","icon":"inv_datacrystal09","type":12,"stats":[0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"4":108},"isBase":true}}}, +{"id":40539,"name":"Chestguard of the Recluse","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,116,143,0,0,0,0,63,83,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"1":116,"2":143,"7":63,"8":83,"22":1187},"isBase":true}}}, +{"id":40541,"name":"Frosted Adroit Handguards","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,87,118,0,0,58,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"1":87,"2":118,"5":58,"6":53,"22":742},"isBase":true}}}, +{"id":40543,"name":"Blue Aspect Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,101,125,0,0,0,87,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1387,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"1":101,"2":125,"6":87,"7":51,"22":1387},"isBase":true}}}, +{"id":40544,"name":"Valorous Dreadnaught Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,127,0,0,0,0,0,0,78,45,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":92,"2":127,"9":78,"10":45,"22":2354},"isBase":true}}}, +{"id":40545,"name":"Valorous Dreadnaught Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,100,0,0,0,0,0,34,0,70,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":57,"2":100,"8":34,"10":70,"22":1471},"isBase":true}}}, +{"id":40546,"name":"Valorous Dreadnaught Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,35,0,0,0,58,51,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":80,"2":127,"5":35,"9":58,"10":51,"22":1912},"isBase":true}}}, +{"id":40547,"name":"Valorous Dreadnaught Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,72,45,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":127,"9":72,"10":45,"22":2059},"isBase":true}}}, +{"id":40548,"name":"Valorous Dreadnaught Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,100,0,0,0,0,0,0,65,29,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Dreadnaught Plate","setId":787,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":66,"2":100,"9":65,"10":29,"22":1765},"isBase":true}}}, +{"id":40549,"name":"Boots of the Renewed Flight","icon":"inv_boots_leather_02","type":10,"armorType":3,"stats":[0,88,95,0,0,0,83,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"1":88,"2":95,"6":83,"7":37,"22":1174},"isBase":true}}}, +{"id":40550,"name":"Valorous Scourgeborne Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[85,0,102,0,0,0,67,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":102,"6":67,"7":83,"22":2354},"isBase":true}}}, +{"id":40552,"name":"Valorous Scourgeborne Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,39,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"5":39,"6":49,"22":1471},"isBase":true}}}, +{"id":40553,"name":"Electrified Blade","icon":"inv_sword_22","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":470,"weaponDamageMax":873,"weaponSpeed":2.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":470,"weaponDamageMax":873,"isBase":true}}}, +{"id":40554,"name":"Valorous Scourgeborne Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,100,0,0,34,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":100,"5":34,"6":100,"22":1912},"isBase":true}}}, +{"id":40555,"name":"Mantle of Dissemination","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,126,84,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":126,"3":84,"4":52,"6":60,"22":676},"isBase":true}}}, +{"id":40556,"name":"Valorous Scourgeborne Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,84,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":100,"6":84,"7":66,"22":2059},"isBase":true}}}, +{"id":40557,"name":"Valorous Scourgeborne Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,82,0,0,43,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Battlegear","setId":792,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":82,"5":43,"6":58,"22":1765},"isBase":true}}}, +{"id":40558,"name":"Arcanic Tramplers","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,125,85,62,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":125,"3":85,"4":62,"7":46,"22":620},"isBase":true}}}, +{"id":40559,"name":"Valorous Scourgeborne Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,127,0,0,0,0,0,0,74,53,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":92,"2":127,"9":74,"10":53,"22":2354},"isBase":true}}}, +{"id":40560,"name":"Leggings of the Wanton Spellcaster","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,158,113,0,82,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":158,"3":113,"5":82,"7":66,"22":789},"isBase":true}}}, +{"id":40561,"name":"Leash of Heedless Magic","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,117,88,48,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":117,"3":88,"4":48,"7":62,"22":507},"isBase":true}}}, +{"id":40562,"name":"Hood of Rationality","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,143,103,81,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":143,"3":103,"4":81,"6":50,"22":733},"isBase":true}}}, +{"id":40563,"name":"Valorous Scourgeborne Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,99,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":57,"2":99,"5":38,"9":68,"22":1471},"isBase":true}}}, +{"id":40564,"name":"Winter Spectacle Gloves","icon":"inv_gauntlets_15","type":7,"armorType":3,"stats":[0,0,123,85,62,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":123,"3":85,"4":62,"7":48,"22":1067},"isBase":true}}}, +{"id":40565,"name":"Valorous Scourgeborne Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,0,0,0,35,0,82,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":80,"2":127,"8":35,"10":82,"22":1912},"isBase":true}}}, +{"id":40566,"name":"Unravelling Strands of Sanity","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,121,84,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":121,"3":84,"4":83,"22":667},"isBase":true}}}, +{"id":40567,"name":"Valorous Scourgeborne Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[80,0,127,0,0,35,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":80,"2":127,"5":35,"9":92,"22":2059},"isBase":true}}}, +{"id":40568,"name":"Valorous Scourgeborne Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,100,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Scourgeborne Plate","setId":793,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":66,"2":100,"9":50,"10":50,"22":1765},"isBase":true}}}, +{"id":40569,"name":"Valorous Redemption Tunic","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[0,0,143,85,50,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":50,"7":67,"22":2354},"isBase":true}}}, +{"id":40570,"name":"Valorous Redemption Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,105,67,0,0,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":55,"7":35,"22":1471},"isBase":true}}}, +{"id":40571,"name":"Valorous Redemption Headpiece","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[0,0,143,85,50,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":50,"6":51,"22":1912},"isBase":true}}}, +{"id":40572,"name":"Valorous Redemption Greaves","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[0,0,143,85,0,0,51,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"7":66,"22":2059},"isBase":true}}}, +{"id":40573,"name":"Valorous Redemption Spaulders","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,105,67,0,0,55,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Regalia","setId":790,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":55,"7":35,"22":1765},"isBase":true}}}, +{"id":40574,"name":"Valorous Redemption Chestpiece","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[85,0,115,0,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":115,"6":84,"7":50,"22":2354},"isBase":true}}}, +{"id":40575,"name":"Valorous Redemption Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[67,0,111,0,0,0,50,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":50,"7":42,"22":1471},"isBase":true}}}, +{"id":40576,"name":"Valorous Redemption Helm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[85,0,67,0,0,40,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":67,"5":40,"7":94,"22":1912},"isBase":true}}}, +{"id":40577,"name":"Valorous Redemption Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[85,0,100,0,0,0,66,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":100,"6":66,"7":84,"22":2059},"isBase":true}}}, +{"id":40578,"name":"Valorous Redemption Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[75,0,79,0,0,43,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Battlegear","setId":789,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":79,"5":43,"6":59,"22":1765},"isBase":true}}}, +{"id":40579,"name":"Valorous Redemption Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":127,"9":74,"22":2354},"isBase":true}}}, +{"id":40580,"name":"Valorous Redemption Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[57,0,100,0,0,37,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":57,"2":100,"5":37,"9":69,"22":1471},"isBase":true}}}, +{"id":40581,"name":"Valorous Redemption Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[80,0,127,0,0,0,0,0,35,66,51,0,0,0,0,0,0,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":80,"2":127,"8":35,"9":66,"10":51,"22":1912},"isBase":true}}}, +{"id":40583,"name":"Valorous Redemption Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":127,"9":80,"22":2059},"isBase":true}}}, +{"id":40584,"name":"Valorous Redemption Shoulderguards","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[68,0,100,0,0,0,0,0,0,58,39,0,0,0,0,0,0,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Redemption Plate","setId":791,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":68,"2":100,"9":58,"10":39,"22":1765},"isBase":true}}}, +{"id":40585,"name":"Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,75,50,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"6":36,"7":28},"isBase":true}}}, +{"id":40586,"name":"Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,33,95,0,0,0,34,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":33,"2":95,"6":34,"7":31},"isBase":true}}}, +{"id":40588,"name":"Tunic of the Artifact Guardian","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,153,117,58,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1707,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":153,"3":117,"4":58,"6":70,"22":1707},"isBase":true}}}, +{"id":40589,"name":"Legplates of Sovereignty","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[82,0,171,0,0,0,0,0,66,0,107,0,0,0,0,0,0,0,0,0,0,0,2086,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"0":82,"2":171,"8":66,"10":107,"22":2086},"isBase":true}}}, +{"id":40590,"name":"Elevated Lair Pauldrons","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,119,85,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":119,"3":85,"4":50,"6":62,"22":1788},"isBase":true}}}, +{"id":40591,"name":"Melancholy Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[77,0,107,0,0,0,54,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"0":77,"2":107,"6":54,"7":84,"22":1639},"isBase":true}}}, +{"id":40592,"name":"Boots of Healing Energies","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,118,84,66,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":118,"3":84,"4":66,"7":43,"22":1639},"isBase":true}}}, +{"id":40593,"name":"Argent Tome","icon":"inv_misc_book_13","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponSpeed":0.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":40594,"name":"Spaulders of Catatonia","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,125,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28859,"zoneId":4500}}],"scalingOptions":{"226":{"randPropPoints":161,"stats":{"2":125,"3":85,"4":60,"6":49,"22":890},"isBase":true}}}, +{"id":40601,"name":"Argent Dawn Banner","icon":"inv_bannerpvp_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponSpeed":0.5,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":48,"isBase":true}}}, +{"id":40602,"name":"Robes of Mutation","icon":"inv_chest_cloth_32","type":5,"armorType":1,"stats":[0,0,143,85,71,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":15954,"zoneId":3456}},{"drop":{"difficulty":1,"npcId":15932,"zoneId":3456}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":71,"6":42,"22":852},"isBase":true}}}, +{"id":40668,"name":"Cobalt Triangle Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[22,0,33,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,3282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54550}}],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"0":22,"2":33,"9":22,"22":3282},"isBase":true}}}, +{"id":40669,"name":"Tempered Saronite Belt","icon":"inv_belt_22","type":8,"armorType":4,"stats":[24,0,49,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54551}}],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"0":24,"2":49,"9":57,"22":1062},"isBase":true}}}, +{"id":40670,"name":"Saronite Defender","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[17,0,61,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54557}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"0":17,"2":61,"9":23,"22":4890},"isBase":true}}}, +{"id":40671,"name":"Tempered Saronite Boots","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[42,0,69,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,1345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54552}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"0":42,"2":69,"9":36,"22":1345},"isBase":true}}}, +{"id":40672,"name":"Tempered Saronite Breastplate","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[49,0,90,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54553}}],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"0":49,"2":90,"9":56,"22":1956},"isBase":true}}}, +{"id":40673,"name":"Tempered Saronite Helm","icon":"inv_helmet_123","type":1,"armorType":4,"stats":[46,0,52,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54555}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"0":46,"2":52,"9":83,"22":1645},"isBase":true}}}, +{"id":40674,"name":"Tempered Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[43,0,114,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54554}}],"scalingOptions":{"163":{"randPropPoints":104,"stats":{"0":43,"2":114,"9":32,"22":1652},"isBase":true}}}, +{"id":40675,"name":"Tempered Saronite Shoulders","icon":"inv_shoulder_70","type":3,"armorType":4,"stats":[41,0,84,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54556}}],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"0":41,"2":84,"9":32,"22":1518},"isBase":true}}}, +{"id":40678,"name":"Pendant of the Outcast Hero","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,45,95,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":45,"2":95,"6":38},"isBase":true}}}, +{"id":40679,"name":"Chained Military Gorget","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[41,0,75,0,0,21,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":41,"2":75,"5":21,"9":49},"isBase":true}}}, +{"id":40680,"name":"Encircling Burnished Gold Chains","icon":"inv_jewelry_necklace_27naxxramas","type":2,"stats":[0,0,80,50,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":80,"3":50,"5":25,"6":34},"isBase":true}}}, +{"id":40681,"name":"Lattice Choker of Light","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,71,50,32,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":32,"6":34},"isBase":true}}}, +{"id":40682,"name":"Sundial of the Exiled","icon":"ability_hunter_readiness","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":40683,"name":"Valor Medal of the First War","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"9":84},"isBase":true}}}, +{"id":40684,"name":"Mirror of Truth","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":40685,"name":"The Egg of Mortal Essence","icon":"inv_egg_05","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":84},"isBase":true}}}, +{"id":40688,"name":"Verdungo's Barbarian Cord","icon":"inv_belt_13","type":8,"armorType":4,"stats":[58,0,99,0,0,0,48,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":48,"7":30,"22":1316},"isBase":true}}}, +{"id":40689,"name":"Waistguard of Living Iron","icon":"inv_belt_29","type":8,"armorType":4,"stats":[57,0,88,0,0,0,0,0,0,52,32,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":57,"2":88,"9":52,"10":32,"22":1316},"isBase":true}}}, +{"id":40691,"name":"Magroth's Meditative Cincture","icon":"inv_belt_15","type":8,"armorType":4,"stats":[0,0,94,58,0,0,38,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":38,"7":40,"22":1316},"isBase":true}}}, +{"id":40692,"name":"Vereesa's Silver Chain Belt","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,58,99,0,0,30,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":99,"5":30,"7":50,"22":923},"isBase":true}}}, +{"id":40693,"name":"Beadwork Belt of Shamanic Vision","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,93,58,38,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":93,"3":58,"4":38,"7":44,"22":923},"isBase":true}}}, +{"id":40694,"name":"Jorach's Crocolisk Skin Belt","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,58,91,0,0,0,46,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":91,"6":46,"8":38,"22":620},"isBase":true}}}, +{"id":40695,"name":"Vine Belt of the Woodland Dryad","icon":"inv_belt_05","type":8,"armorType":2,"stats":[0,0,94,58,38,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":38,"6":40,"22":620},"isBase":true}}}, +{"id":40696,"name":"Plush Sash of Guzbah","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,95,58,0,33,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":58,"5":33,"7":42,"22":455},"isBase":true}}}, +{"id":40697,"name":"Elegant Temple Gardens' Girdle","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,97,58,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":58,"4":56,"22":455},"isBase":true}}}, +{"id":40698,"name":"Ward of the Violet Citadel","icon":"inv_offhand_dalaran_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,75,50,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"5":38,"6":25},"isBase":true}}}, +{"id":40699,"name":"Handbook of Obscure Remedies","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,73,50,38,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"3":50,"4":38,"7":25},"isBase":true}}}, +{"id":40700,"name":"Protective Barricade of the Light","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[0,0,75,50,38,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"4":38,"6":25,"22":6757},"isBase":true}}}, +{"id":40701,"name":"Crygil's Discarded Plate Panel","icon":"inv_shield_41","type":13,"weaponType":7,"handType":3,"stats":[38,0,75,0,0,25,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":38,"2":75,"5":25,"9":50,"22":6757},"isBase":true}}}, +{"id":40702,"name":"Rolfsen's Ripper","icon":"inv_weapon_shortblade_88","type":13,"weaponType":2,"handType":3,"stats":[0,0,73,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.7,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"2":73,"7":50},"isBase":true}}}, +{"id":40703,"name":"Grasscutter","icon":"inv_sword_123","type":13,"weaponType":9,"handType":3,"stats":[0,25,72,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":1.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":259,"weaponDamageMax":482,"stats":{"1":25,"2":72,"6":38},"isBase":true}}}, +{"id":40704,"name":"Pride","icon":"inv_weapon_hand_06","type":13,"weaponType":3,"handType":2,"stats":[0,0,72,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":405,"weaponDamageMax":753,"weaponSpeed":2.5,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":405,"weaponDamageMax":753,"stats":{"2":72,"5":50},"isBase":true}}}, +{"id":40717,"name":"Ring of Invincibility","icon":"inv_jewelry_ring_47","type":11,"stats":[0,28,104,0,0,0,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":28,"2":104,"6":43,"7":38},"isBase":true}}}, +{"id":40718,"name":"Signet of the Impregnable Fortress","icon":"inv_jewelry_ring_46","type":11,"stats":[38,0,84,0,0,27,0,0,21,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":38,"2":84,"5":27,"8":21,"9":56},"isBase":true}}}, +{"id":40719,"name":"Band of Channeled Magic","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,78,56,32,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":78,"3":56,"4":32,"7":43},"isBase":true}}}, +{"id":40720,"name":"Renewal of Life","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,82,56,42,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":42,"6":28},"isBase":true}}}, +{"id":40721,"name":"Hammerhead Sharkskin Cloak","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,28,109,0,0,0,43,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":28,"2":109,"6":43,"7":32,"22":426},"isBase":true}}}, +{"id":40722,"name":"Platinum Mesh Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[41,0,84,0,0,32,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":41,"2":84,"5":32,"9":56,"22":426},"isBase":true}}}, +{"id":40723,"name":"Disguise of the Kumiho","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,79,56,37,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":79,"3":56,"4":37,"7":41,"22":426},"isBase":true}}}, +{"id":40724,"name":"Cloak of Kea Feathers","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,0,80,56,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":42,"7":28,"22":426},"isBase":true}}}, +{"id":40733,"name":"Wristbands of the Sentinel Huntress","icon":"inv_bracer_15","type":6,"armorType":4,"stats":[56,0,61,0,0,0,56,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":61,"6":56,"8":32,"22":1030},"isBase":true}}}, +{"id":40734,"name":"Bracers of Dalaran's Parapets","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[43,0,84,0,0,28,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":43,"2":84,"5":28,"10":56,"22":1030},"isBase":true}}}, +{"id":40735,"name":"Zartson's Jungle Vambraces","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,84,56,32,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"4":32,"7":41,"22":1030},"isBase":true}}}, +{"id":40736,"name":"Armguard of the Tower Archer","icon":"inv_bracer_02","type":6,"armorType":3,"stats":[0,56,84,0,0,33,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":84,"5":33,"7":40,"22":730},"isBase":true}}}, +{"id":40737,"name":"Pigmented Clan Bindings","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,84,56,42,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"3":56,"4":42,"7":28,"22":730},"isBase":true}}}, +{"id":40738,"name":"Wristwraps of the Cutthroat","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,56,84,0,0,0,32,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":84,"6":32,"7":41,"22":499},"isBase":true}}}, +{"id":40739,"name":"Bands of the Great Tree","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,82,56,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":53,"22":499},"isBase":true}}}, +{"id":40740,"name":"Wraps of the Astral Traveler","icon":"inv_bracer_18","type":6,"armorType":1,"stats":[0,0,82,56,0,28,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"5":28,"6":43,"22":373},"isBase":true}}}, +{"id":40741,"name":"Cuffs of the Shadow Ascendant","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,80,56,38,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":38,"7":38,"22":373},"isBase":true}}}, +{"id":40742,"name":"Bladed Steelboots","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[75,0,112,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":112,"5":43,"6":53,"22":1618},"isBase":true}}}, +{"id":40743,"name":"Kyzoc's Ground Stompers","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[75,0,111,0,0,0,0,0,0,62,34,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":75,"2":111,"9":62,"10":34,"22":1618},"isBase":true}}}, +{"id":40745,"name":"Sabatons of Rapid Recovery","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,111,75,50,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":111,"3":75,"4":50,"7":49,"22":1618},"isBase":true}}}, +{"id":40746,"name":"Pack-Ice Striders","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,75,112,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":112,"5":50,"6":50,"22":1147},"isBase":true}}}, +{"id":40747,"name":"Treads of Coastal Wandering","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,108,75,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":75,"4":50,"6":50,"22":1147},"isBase":true}}}, +{"id":40748,"name":"Boots of Captain Ellis","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,75,105,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":75,"2":105,"6":43,"7":55,"22":785},"isBase":true}}}, +{"id":40749,"name":"Rainey's Chewed Boots","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,112,75,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":112,"3":75,"4":70,"22":785},"isBase":true}}}, +{"id":40750,"name":"Xintor's Expeditionary Boots","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,105,75,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":75,"5":43,"6":55,"22":586},"isBase":true}}}, +{"id":40751,"name":"Slippers of the Holy Light","icon":"inv_boots_cloth_09","type":10,"armorType":1,"stats":[0,0,110,75,57,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":110,"3":75,"4":57,"7":37,"22":586},"isBase":true}}}, +{"id":40755,"name":"Enticing Sabatons","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[45,0,66,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"0":45,"2":66,"6":43,"22":1392},"isBase":true}}}, +{"id":40756,"name":"Shoulders of the Seducer","icon":"inv_shoulder_95","type":3,"armorType":3,"stats":[0,0,63,44,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"2":63,"3":44,"4":46,"22":1028},"isBase":true}}}, +{"id":40757,"name":"Shackles of Dark Whispers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,33,64,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"1":33,"2":64,"5":19,"22":394},"isBase":true}}}, +{"id":40758,"name":"Shroud of Temptation","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,86,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":86,"3":59,"4":59,"22":524},"isBase":true}}}, +{"id":40767,"name":"Sonic Booster","icon":"inv_gizmo_goblinboombox_01","type":12,"stats":[0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56466}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":81},"isBase":true}}}, +{"id":40778,"name":"Savage Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":2265},"isBase":true}}}, +{"id":40779,"name":"Savage Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":2265},"isBase":true}}}, +{"id":40780,"name":"Savage Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":2265},"isBase":true}}}, +{"id":40781,"name":"Hateful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2340},"isBase":true}}}, +{"id":40782,"name":"Hateful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2340},"isBase":true}}}, +{"id":40783,"name":"Hateful Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2340},"isBase":true}}}, +{"id":40784,"name":"Deadly Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2354},"isBase":true}}}, +{"id":40785,"name":"Deadly Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2354},"isBase":true}}}, +{"id":40786,"name":"Deadly Gladiator's Plate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2354},"isBase":true}}}, +{"id":40787,"name":"Furious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2424},"isBase":true}}}, +{"id":40788,"name":"Furious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2424},"isBase":true}}}, +{"id":40789,"name":"Furious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2424},"isBase":true}}}, +{"id":40790,"name":"Relentless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2540},"isBase":true}}}, +{"id":40791,"name":"Relentless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2540},"isBase":true}}}, +{"id":40792,"name":"Relentless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2540},"isBase":true}}}, +{"id":40797,"name":"Savage Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1416,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":23,"16":30,"22":1416},"isBase":true}}}, +{"id":40798,"name":"Savage Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1416,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":23,"16":30,"22":1416},"isBase":true}}}, +{"id":40799,"name":"Savage Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[50,0,85,0,0,0,23,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1416,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":23,"16":30,"22":1416},"isBase":true}}}, +{"id":40801,"name":"Hateful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":27,"16":35,"22":1463},"isBase":true}}}, +{"id":40802,"name":"Hateful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":27,"16":35,"22":1463},"isBase":true}}}, +{"id":40803,"name":"Hateful Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[58,0,99,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":27,"16":35,"22":1463},"isBase":true}}}, +{"id":40804,"name":"Deadly Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":32,"16":39,"22":1471},"isBase":true}}}, +{"id":40805,"name":"Deadly Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":32,"16":39,"22":1471},"isBase":true}}}, +{"id":40806,"name":"Deadly Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,111,0,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":32,"16":39,"22":1471},"isBase":true}}}, +{"id":40807,"name":"Furious Gladiator's Plate Gauntlets","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":41,"16":50,"22":1515},"isBase":true}}}, +{"id":40808,"name":"Furious Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":41,"16":50,"22":1515},"isBase":true}}}, +{"id":40809,"name":"Furious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[87,0,141,0,0,0,41,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":41,"16":50,"22":1515},"isBase":true}}}, +{"id":40810,"name":"Relentless Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1587},"isBase":true}}}, +{"id":40811,"name":"Relentless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1587},"isBase":true}}}, +{"id":40812,"name":"Relentless Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1587},"isBase":true}}}, +{"id":40816,"name":"Savage Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":36,"22":1840},"isBase":true}}}, +{"id":40817,"name":"Savage Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":36,"22":1840},"isBase":true}}}, +{"id":40818,"name":"Savage Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":36,"22":1840},"isBase":true}}}, +{"id":40819,"name":"Hateful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":43,"22":1901},"isBase":true}}}, +{"id":40820,"name":"Hateful Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":43,"22":1901},"isBase":true}}}, +{"id":40821,"name":"Hateful Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":43,"22":1901},"isBase":true}}}, +{"id":40823,"name":"Deadly Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":50,"22":1912},"isBase":true}}}, +{"id":40824,"name":"Deadly Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":50,"22":1912},"isBase":true}}}, +{"id":40825,"name":"Deadly Gladiator's Scaled Helm","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":50,"22":1912},"isBase":true}}}, +{"id":40826,"name":"Furious Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1969,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":68,"22":1969},"isBase":true}}}, +{"id":40827,"name":"Furious Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1969,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":68,"22":1969},"isBase":true}}}, +{"id":40828,"name":"Furious Gladiator's Scaled Helm","icon":"inv_helmet_133","type":1,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1969,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":68,"22":1969},"isBase":true}}}, +{"id":40829,"name":"Relentless Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":80,"22":2064},"isBase":true}}}, +{"id":40830,"name":"Relentless Gladiator's Dreadplate Helm","icon":"inv_helmet_135","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":80,"22":2064},"isBase":true}}}, +{"id":40831,"name":"Relentless Gladiator's Scaled Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":80,"22":2064},"isBase":true}}}, +{"id":40836,"name":"Savage Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":1982},"isBase":true}}}, +{"id":40837,"name":"Savage Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":1982},"isBase":true}}}, +{"id":40838,"name":"Savage Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[62,0,115,0,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":115,"6":36,"16":52,"22":1982},"isBase":true}}}, +{"id":40840,"name":"Hateful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2048},"isBase":true}}}, +{"id":40841,"name":"Hateful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2048},"isBase":true}}}, +{"id":40842,"name":"Hateful Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[74,0,133,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"6":44,"16":59,"22":2048},"isBase":true}}}, +{"id":40844,"name":"Deadly Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2059},"isBase":true}}}, +{"id":40845,"name":"Deadly Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2059},"isBase":true}}}, +{"id":40846,"name":"Deadly Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[85,0,150,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"6":51,"16":66,"22":2059},"isBase":true}}}, +{"id":40847,"name":"Furious Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2121},"isBase":true}}}, +{"id":40848,"name":"Furious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2121},"isBase":true}}}, +{"id":40849,"name":"Furious Gladiator's Scaled Legguards","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[112,0,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"0":112,"2":191,"6":68,"16":85,"22":2121},"isBase":true}}}, +{"id":40850,"name":"Relentless Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2222},"isBase":true}}}, +{"id":40851,"name":"Relentless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2222},"isBase":true}}}, +{"id":40852,"name":"Relentless Gladiator's Scaled Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[128,0,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":215,"6":80,"16":96,"22":2222},"isBase":true}}}, +{"id":40856,"name":"Savage Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":31,"16":38,"22":1699},"isBase":true}}}, +{"id":40857,"name":"Savage Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":31,"16":38,"22":1699},"isBase":true}}}, +{"id":40858,"name":"Savage Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[50,0,85,0,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":85,"6":31,"16":38,"22":1699},"isBase":true}}}, +{"id":40859,"name":"Hateful Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":36,"16":44,"22":1755},"isBase":true}}}, +{"id":40860,"name":"Hateful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":36,"16":44,"22":1755},"isBase":true}}}, +{"id":40861,"name":"Hateful Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":36,"16":44,"22":1755},"isBase":true}}}, +{"id":40862,"name":"Deadly Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":42,"16":50,"22":1765},"isBase":true}}}, +{"id":40863,"name":"Deadly Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":42,"16":50,"22":1765},"isBase":true}}}, +{"id":40864,"name":"Deadly Gladiator's Scaled Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":42,"16":50,"22":1765},"isBase":true}}}, +{"id":40865,"name":"Noise Machine","icon":"inv_gizmo_goblinboombox_01","type":12,"stats":[0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56467}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"3":54},"isBase":true}}}, +{"id":40866,"name":"Furious Gladiator's Plate Shoulders","icon":"inv_shoulder_89","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":55,"16":63,"22":1818},"isBase":true}}}, +{"id":40868,"name":"Furious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":55,"16":63,"22":1818},"isBase":true}}}, +{"id":40869,"name":"Furious Gladiator's Scaled Shoulders","icon":"inv_shoulder_94","type":3,"armorType":4,"stats":[87,0,141,0,0,0,55,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"0":87,"2":141,"6":55,"16":63,"22":1818},"isBase":true}}}, +{"id":40870,"name":"Relentless Gladiator's Plate Shoulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1905},"isBase":true}}}, +{"id":40871,"name":"Relentless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1905},"isBase":true}}}, +{"id":40872,"name":"Relentless Gladiator's Scaled Shoulders","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[99,0,160,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":63,"16":71,"22":1905},"isBase":true}}}, +{"id":40877,"name":"Hateful Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":36,"16":44,"22":1316},"isBase":true}}}, +{"id":40878,"name":"Hateful Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[58,0,99,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"6":36,"16":44,"22":1609},"isBase":true}}}, +{"id":40879,"name":"Deadly Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":42,"16":50,"22":1324},"isBase":true}}}, +{"id":40880,"name":"Deadly Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[67,0,111,0,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"6":42,"16":50,"22":1618},"isBase":true}}}, +{"id":40881,"name":"Furious Gladiator's Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[82,0,134,0,0,0,52,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":82,"2":134,"6":52,"16":59,"22":1346},"isBase":true}}}, +{"id":40882,"name":"Furious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[82,0,134,0,0,0,52,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":82,"2":134,"6":52,"16":59,"22":1645},"isBase":true}}}, +{"id":40883,"name":"Relentless Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":59,"16":67,"22":1398},"isBase":true}}}, +{"id":40884,"name":"Relentless Gladiator's Greaves of Triumph","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[93,0,151,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":59,"16":67,"22":1709},"isBase":true}}}, +{"id":40887,"name":"Hateful Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[50,0,73,0,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":73,"6":34,"16":33,"22":1024},"isBase":true}}}, +{"id":40888,"name":"Deadly Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[56,0,84,0,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":84,"6":38,"16":37,"22":1030},"isBase":true}}}, +{"id":40889,"name":"Furious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[67,0,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":99,"6":44,"16":44,"22":1047},"isBase":true}}}, +{"id":40890,"name":"Relentless Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[76,0,114,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"6":50,"16":50,"22":1087},"isBase":true}}}, +{"id":40898,"name":"Savage Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":2265},"isBase":true}}}, +{"id":40904,"name":"Hateful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":2340},"isBase":true}}}, +{"id":40905,"name":"Deadly Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":2354},"isBase":true}}}, +{"id":40907,"name":"Furious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":2424},"isBase":true}}}, +{"id":40910,"name":"Relentless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":2540},"isBase":true}}}, +{"id":40918,"name":"Savage Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,1416,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":1416},"isBase":true}}}, +{"id":40925,"name":"Hateful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":1463},"isBase":true}}}, +{"id":40926,"name":"Deadly Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1471,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":1471},"isBase":true}}}, +{"id":40927,"name":"Furious Gladiator's Ornamented Gloves","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":1515},"isBase":true}}}, +{"id":40928,"name":"Relentless Gladiator's Ornamented Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":1587},"isBase":true}}}, +{"id":40930,"name":"Savage Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":1840},"isBase":true}}}, +{"id":40931,"name":"Hateful Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":1901},"isBase":true}}}, +{"id":40932,"name":"Deadly Gladiator's Ornamented Headcover","icon":"inv_helmet_124","type":1,"armorType":4,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1912,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":1912},"isBase":true}}}, +{"id":40933,"name":"Furious Gladiator's Ornamented Headcover","icon":"inv_helmet_133","type":1,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1969,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":1969},"isBase":true}}}, +{"id":40934,"name":"Relentless Gladiator's Ornamented Headcover","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":2064},"isBase":true}}}, +{"id":40936,"name":"Savage Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1982,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":1982},"isBase":true}}}, +{"id":40937,"name":"Hateful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":2048},"isBase":true}}}, +{"id":40938,"name":"Deadly Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":2059},"isBase":true}}}, +{"id":40939,"name":"Furious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":2121},"isBase":true}}}, +{"id":40940,"name":"Relentless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":2222},"isBase":true}}}, +{"id":40942,"name":"Spiked Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[30,0,0,0,0,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54917}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"0":30,"5":29,"6":29,"22":996},"isBase":true}}}, +{"id":40943,"name":"Spiked Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[58,0,0,0,0,0,43,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54947}}],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":58,"6":43,"7":32,"22":1263},"isBase":true}}}, +{"id":40949,"name":"Spiked Cobalt Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[38,0,0,0,0,0,29,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54918}}],"scalingOptions":{"146":{"randPropPoints":58,"stats":{"0":38,"6":29,"7":21,"22":880},"isBase":true}}}, +{"id":40950,"name":"Spiked Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[40,0,0,0,0,14,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1001,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54941}}],"scalingOptions":{"150":{"randPropPoints":60,"stats":{"0":40,"5":14,"6":34,"22":1001},"isBase":true}}}, +{"id":40951,"name":"Spiked Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[54,0,0,0,0,0,29,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54944}}],"scalingOptions":{"150":{"randPropPoints":80,"stats":{"0":54,"6":29,"7":39,"22":1335},"isBase":true}}}, +{"id":40952,"name":"Spiked Cobalt Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[45,0,0,0,0,19,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54945}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":45,"5":19,"6":26,"22":868},"isBase":true}}}, +{"id":40953,"name":"Spiked Cobalt Belt","icon":"inv_belt_31","type":8,"armorType":4,"stats":[34,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,812,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54946}}],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"0":34,"6":33,"7":33,"22":812},"isBase":true}}}, +{"id":40954,"name":"Spiked Cobalt Bracers","icon":"inv_bracer_03","type":6,"armorType":4,"stats":[34,0,0,0,0,0,26,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54948}}],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":34,"6":26,"7":17,"22":655},"isBase":true}}}, +{"id":40955,"name":"Horned Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[66,0,0,0,0,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54949}}],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":66,"5":28,"6":37,"22":1217},"isBase":true}}}, +{"id":40956,"name":"Reinforced Cobalt Shoulders","icon":"inv_shoulder_31","type":3,"armorType":4,"stats":[28,0,42,0,0,0,27,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54978}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"0":28,"2":42,"6":27,"16":27,"22":1042},"isBase":true}}}, +{"id":40957,"name":"Reinforced Cobalt Helm","icon":"inv_helmet_06","type":1,"armorType":4,"stats":[40,0,60,0,0,0,40,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,1217,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54979}}],"scalingOptions":{"162":{"randPropPoints":90,"stats":{"0":40,"2":60,"6":40,"16":40,"22":1217},"isBase":true}}}, +{"id":40958,"name":"Reinforced Cobalt Legplates","icon":"inv_pants_plate_03","type":9,"armorType":4,"stats":[48,0,63,0,0,0,31,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54980}}],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"0":48,"2":63,"6":31,"16":41,"22":1358},"isBase":true}}}, +{"id":40959,"name":"Reinforced Cobalt Chestpiece","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[47,0,64,0,0,0,38,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":170,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":54981}}],"scalingOptions":{"170":{"randPropPoints":97,"stats":{"0":47,"2":64,"6":38,"16":43,"22":1606},"isBase":true}}}, +{"id":40960,"name":"Savage Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":1699},"isBase":true}}}, +{"id":40961,"name":"Hateful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1755,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":1755},"isBase":true}}}, +{"id":40962,"name":"Deadly Gladiator's Ornamented Spaulders","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1765,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":1765},"isBase":true}}}, +{"id":40963,"name":"Furious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_94","type":3,"armorType":4,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":1818},"isBase":true}}}, +{"id":40964,"name":"Relentless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,155,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":155,"3":99,"6":63,"16":71,"22":1905},"isBase":true}}}, +{"id":40966,"name":"Hateful Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":1316},"isBase":true}}}, +{"id":40972,"name":"Hateful Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,1024,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[4],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":36,"16":33,"22":1024},"isBase":true}}}, +{"id":40973,"name":"Hateful Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":1609},"isBase":true}}}, +{"id":40974,"name":"Deadly Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":1324},"isBase":true}}}, +{"id":40975,"name":"Deadly Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":1618},"isBase":true}}}, +{"id":40976,"name":"Furious Gladiator's Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":50,"16":56,"22":1346},"isBase":true}}}, +{"id":40977,"name":"Furious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":50,"16":56,"22":1645},"isBase":true}}}, +{"id":40978,"name":"Relentless Gladiator's Girdle of Salvation","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":1398},"isBase":true}}}, +{"id":40979,"name":"Relentless Gladiator's Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":1709},"isBase":true}}}, +{"id":40982,"name":"Deadly Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,1030,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[4],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":1030},"isBase":true}}}, +{"id":40983,"name":"Furious Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":42,"22":1047},"isBase":true}}}, +{"id":40984,"name":"Relentless Gladiator's Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":1087},"isBase":true}}}, +{"id":40986,"name":"Savage Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":51,"22":1588},"isBase":true}}}, +{"id":40987,"name":"Savage Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":1588},"isBase":true}}}, +{"id":40988,"name":"Hateful Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":46,"16":59,"22":1641},"isBase":true}}}, +{"id":40989,"name":"Hateful Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":1641},"isBase":true}}}, +{"id":40990,"name":"Deadly Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"4":50,"16":66,"22":1668},"isBase":true}}}, +{"id":40991,"name":"Deadly Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":1668},"isBase":true}}}, +{"id":40992,"name":"Furious Gladiator's Ringmail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":66,"16":80,"22":1752},"isBase":true}}}, +{"id":40993,"name":"Furious Gladiator's Mail Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":1752},"isBase":true}}}, +{"id":40994,"name":"Relentless Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":1853},"isBase":true}}}, +{"id":40995,"name":"Relentless Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1853},"isBase":true}}}, +{"id":40998,"name":"Savage Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":22,"16":30,"22":992},"isBase":true}}}, +{"id":40999,"name":"Hateful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,94,58,28,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":28,"16":35,"22":1026},"isBase":true}}}, +{"id":41000,"name":"Deadly Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":32,"16":39,"22":1043},"isBase":true}}}, +{"id":41001,"name":"Furious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,0,127,82,40,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1095,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":40,"16":47,"22":1095},"isBase":true}}}, +{"id":41002,"name":"Relentless Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":1158},"isBase":true}}}, +{"id":41004,"name":"Savage Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":992},"isBase":true}}}, +{"id":41005,"name":"Hateful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":1026},"isBase":true}}}, +{"id":41006,"name":"Deadly Gladiator's Mail Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":1043},"isBase":true}}}, +{"id":41007,"name":"Furious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1095,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":1095},"isBase":true}}}, +{"id":41008,"name":"Relentless Gladiator's Mail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":1158},"isBase":true}}}, +{"id":41010,"name":"Savage Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":36,"22":1290},"isBase":true}}}, +{"id":41011,"name":"Hateful Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":46,"16":43,"22":1333},"isBase":true}}}, +{"id":41012,"name":"Deadly Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,143,85,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":50,"16":50,"22":1355},"isBase":true}}}, +{"id":41013,"name":"Furious Gladiator's Ringmail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,1423,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":66,"16":64,"22":1423},"isBase":true}}}, +{"id":41014,"name":"Relentless Gladiator's Ringmail Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":80,"22":1505},"isBase":true}}}, +{"id":41016,"name":"Savage Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":1290},"isBase":true}}}, +{"id":41017,"name":"Hateful Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":1333},"isBase":true}}}, +{"id":41018,"name":"Deadly Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":1355},"isBase":true}}}, +{"id":41019,"name":"Furious Gladiator's Mail Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1423,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":1423},"isBase":true}}}, +{"id":41020,"name":"Relentless Gladiator's Mail Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":1505},"isBase":true}}}, +{"id":41023,"name":"Savage Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":52,"22":1389},"isBase":true}}}, +{"id":41024,"name":"Savage Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,81,50,30,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":30,"16":38,"22":1191},"isBase":true}}}, +{"id":41025,"name":"Hateful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":46,"16":59,"22":1436},"isBase":true}}}, +{"id":41026,"name":"Deadly Gladiator's Ringmail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,143,85,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":50,"16":66,"22":1460},"isBase":true}}}, +{"id":41027,"name":"Furious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,171,105,66,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":66,"16":80,"22":1533},"isBase":true}}}, +{"id":41028,"name":"Relentless Gladiator's Ringmail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":1621},"isBase":true}}}, +{"id":41030,"name":"Savage Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":1389},"isBase":true}}}, +{"id":41031,"name":"Hateful Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":1436},"isBase":true}}}, +{"id":41032,"name":"Deadly Gladiator's Mail Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":1460},"isBase":true}}}, +{"id":41033,"name":"Furious Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":1533},"isBase":true}}}, +{"id":41034,"name":"Relentless Gladiator's Mail Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1621},"isBase":true}}}, +{"id":41036,"name":"Hateful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":1231},"isBase":true}}}, +{"id":41037,"name":"Deadly Gladiator's Ringmail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":1251},"isBase":true}}}, +{"id":41038,"name":"Furious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,0,127,82,50,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":50,"16":60,"22":1314},"isBase":true}}}, +{"id":41039,"name":"Relentless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":1389},"isBase":true}}}, +{"id":41041,"name":"Savage Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":1191},"isBase":true}}}, +{"id":41042,"name":"Hateful Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":1231},"isBase":true}}}, +{"id":41043,"name":"Deadly Gladiator's Mail Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":1251},"isBase":true}}}, +{"id":41044,"name":"Furious Gladiator's Mail Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":1314},"isBase":true}}}, +{"id":41045,"name":"Relentless Gladiator's Mail Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":1389},"isBase":true}}}, +{"id":41047,"name":"Hateful Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":36,"16":33,"22":718},"isBase":true}}}, +{"id":41048,"name":"Deadly Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":938},"isBase":true}}}, +{"id":41049,"name":"Hateful Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":1128},"isBase":true}}}, +{"id":41050,"name":"Hateful Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":923},"isBase":true}}}, +{"id":41051,"name":"Furious Gladiator's Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,968,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":50,"16":56,"22":968},"isBase":true}}}, +{"id":41052,"name":"Relentless Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":1016},"isBase":true}}}, +{"id":41054,"name":"Deadly Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":1147},"isBase":true}}}, +{"id":41055,"name":"Furious Gladiator's Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,119,77,50,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":50,"16":56,"22":1184},"isBase":true}}}, +{"id":41056,"name":"Relentless Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":1241},"isBase":true}}}, +{"id":41059,"name":"Deadly Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":730},"isBase":true}}}, +{"id":41060,"name":"Furious Gladiator's Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,92,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":92,"3":62,"4":42,"16":42,"22":753},"isBase":true}}}, +{"id":41061,"name":"Relentless Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":790},"isBase":true}}}, +{"id":41063,"name":"Hateful Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33,"22":718},"isBase":true}}}, +{"id":41064,"name":"Deadly Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37,"22":730},"isBase":true}}}, +{"id":41065,"name":"Furious Gladiator's Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44,"22":753},"isBase":true}}}, +{"id":41066,"name":"Relentless Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":50,"16":50,"22":790},"isBase":true}}}, +{"id":41068,"name":"Hateful Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":923},"isBase":true}}}, +{"id":41069,"name":"Deadly Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":938},"isBase":true}}}, +{"id":41070,"name":"Furious Gladiator's Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,968,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":968},"isBase":true}}}, +{"id":41071,"name":"Relentless Gladiator's Waistguard of Dominance","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":1016},"isBase":true}}}, +{"id":41073,"name":"Hateful Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":1128},"isBase":true}}}, +{"id":41074,"name":"Deadly Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":1147},"isBase":true}}}, +{"id":41075,"name":"Furious Gladiator's Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":1184},"isBase":true}}}, +{"id":41076,"name":"Relentless Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":1241},"isBase":true}}}, +{"id":41078,"name":"Savage Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":46,"2":117,"6":52,"16":52,"22":1588},"isBase":true}}}, +{"id":41079,"name":"Hateful Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":57,"2":134,"6":60,"16":60,"22":1641},"isBase":true}}}, +{"id":41080,"name":"Deadly Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":68,"2":151,"6":67,"16":67,"22":1668},"isBase":true}}}, +{"id":41081,"name":"Furious Gladiator's Linked Armor","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":88,"2":181,"6":80,"16":80,"22":1752},"isBase":true}}}, +{"id":41082,"name":"Relentless Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":112,"2":215,"6":96,"16":96,"22":1853},"isBase":true}}}, +{"id":41084,"name":"Savage Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":46,"2":117,"6":52,"16":52,"22":1588},"isBase":true}}}, +{"id":41085,"name":"Hateful Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":57,"2":134,"6":60,"16":60,"22":1641},"isBase":true}}}, +{"id":41086,"name":"Deadly Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":68,"2":151,"6":67,"16":67,"22":1668},"isBase":true}}}, +{"id":41087,"name":"Furious Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":88,"2":181,"6":80,"16":80,"22":1752},"isBase":true}}}, +{"id":41088,"name":"Relentless Gladiator's Chain Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,128,215,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":215,"6":80,"16":96,"22":1853},"isBase":true}}}, +{"id":41112,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56465}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":581},"isBase":true}}}, +{"id":41113,"name":"Saronite Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[25,0,66,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,5851,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55014}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":25,"2":66,"9":31,"22":5851},"isBase":true}}}, +{"id":41114,"name":"Tempered Saronite Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[28,0,55,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55015}}],"scalingOptions":{"179":{"randPropPoints":90,"stats":{"0":28,"2":55,"9":66,"22":1361},"isBase":true}}}, +{"id":41116,"name":"Tempered Saronite Bracers","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[27,0,30,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55017}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":27,"2":30,"9":48,"22":923},"isBase":true}}}, +{"id":41117,"name":"Saronite Protector","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,26,41,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55013}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":26,"3":41,"6":23,"22":4890},"isBase":true}}}, +{"id":41121,"name":"Gnomish Lightning Generator","icon":"spell_nature_lightningoverload","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56469}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"6":84},"isBase":true}}}, +{"id":41126,"name":"Brilliant Saronite Legplates","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[0,0,0,76,30,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55055}}],"scalingOptions":{"163":{"randPropPoints":104,"stats":{"3":76,"4":30,"6":44,"22":1652},"isBase":true}}}, +{"id":41127,"name":"Brilliant Saronite Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,38,60,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1223,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55056}}],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"2":38,"3":60,"6":33,"22":1223},"isBase":true}}}, +{"id":41128,"name":"Brilliant Saronite Boots","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,42,56,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55057}}],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"2":42,"3":56,"6":43,"22":1392},"isBase":true}}}, +{"id":41129,"name":"Brilliant Saronite Breastplate","icon":"inv_chest_plate11","type":5,"armorType":4,"stats":[0,0,0,88,50,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55058}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"3":88,"4":50,"6":38,"22":2177},"isBase":true}}}, +{"id":41134,"name":"Savage Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":42,"2":87,"6":39,"16":39,"22":992},"isBase":true}}}, +{"id":41135,"name":"Hateful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":1026},"isBase":true}}}, +{"id":41136,"name":"Deadly Gladiator's Linked Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":1043},"isBase":true}}}, +{"id":41137,"name":"Furious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_71","type":7,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1095,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":73,"2":134,"6":60,"16":60,"22":1095},"isBase":true}}}, +{"id":41138,"name":"Relentless Gladiator's Linked Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"6":71,"16":71,"22":1158},"isBase":true}}}, +{"id":41140,"name":"Savage Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":42,"2":87,"6":39,"16":39,"22":992},"isBase":true}}}, +{"id":41141,"name":"Hateful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1026,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":1026},"isBase":true}}}, +{"id":41142,"name":"Deadly Gladiator's Chain Gauntlets","icon":"inv_gauntlets_65","type":7,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":1043},"isBase":true}}}, +{"id":41143,"name":"Furious Gladiator's Chain Gauntlets","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,89,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1095,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":89,"2":134,"6":60,"16":60,"22":1095},"isBase":true}}}, +{"id":41144,"name":"Relentless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_74","type":7,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"6":71,"16":71,"22":1158},"isBase":true}}}, +{"id":41148,"name":"Savage Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,54,117,0,0,0,28,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":54,"2":117,"6":28,"16":52,"22":1290},"isBase":true}}}, +{"id":41149,"name":"Hateful Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,65,134,0,0,0,36,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":65,"2":134,"6":36,"16":60,"22":1333},"isBase":true}}}, +{"id":41150,"name":"Deadly Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,76,151,0,0,0,43,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":76,"2":151,"6":43,"16":67,"22":1355},"isBase":true}}}, +{"id":41151,"name":"Furious Gladiator's Linked Helm","icon":"inv_helmet_140","type":1,"armorType":3,"stats":[0,96,181,0,0,0,56,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1423,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":96,"2":181,"6":56,"16":80,"22":1423},"isBase":true}}}, +{"id":41152,"name":"Relentless Gladiator's Linked Helm","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,120,215,0,0,0,72,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":120,"2":215,"6":72,"16":96,"22":1505},"isBase":true}}}, +{"id":41154,"name":"Savage Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,54,117,0,0,0,28,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":54,"2":117,"6":28,"16":52,"22":1290},"isBase":true}}}, +{"id":41155,"name":"Hateful Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,65,134,0,0,0,36,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":65,"2":134,"6":36,"16":60,"22":1333},"isBase":true}}}, +{"id":41156,"name":"Deadly Gladiator's Chain Helm","icon":"inv_helmet128","type":1,"armorType":3,"stats":[0,76,151,0,0,0,43,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1355,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":76,"2":151,"6":43,"16":67,"22":1355},"isBase":true}}}, +{"id":41157,"name":"Furious Gladiator's Chain Helm","icon":"inv_helmet_125","type":1,"armorType":3,"stats":[0,96,181,0,0,0,56,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1423,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":96,"2":181,"6":56,"16":80,"22":1423},"isBase":true}}}, +{"id":41158,"name":"Relentless Gladiator's Chain Helm","icon":"inv_helmet_73","type":1,"armorType":3,"stats":[0,120,215,0,0,0,72,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":120,"2":215,"6":72,"16":96,"22":1505},"isBase":true}}}, +{"id":41160,"name":"Savage Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":46,"2":117,"6":52,"16":52,"22":1389},"isBase":true}}}, +{"id":41162,"name":"Hateful Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":57,"2":134,"6":60,"16":60,"22":1436},"isBase":true}}}, +{"id":41168,"name":"Armor Plated Combat Shotgun","icon":"inv_weapon_rifle_19","type":14,"rangedWeaponType":3,"stats":[0,0,135,0,0,58,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56479}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":135,"5":58,"9":67},"isBase":true}}}, +{"id":41181,"name":"Honed Cobalt Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,51,0,0,0,0,154,154,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":484,"weaponDamageMax":727,"weaponSpeed":3.2,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55174}}],"scalingOptions":{"159":{"randPropPoints":101,"weaponDamageMin":484,"weaponDamageMax":727,"stats":{"7":51,"12":154,"13":154},"isBase":true}}}, +{"id":41182,"name":"Savage Cobalt Slicer","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,30,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":45,"weaponDamageMin":274,"weaponDamageMax":510,"weaponSpeed":2.6,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55177}}],"scalingOptions":{"163":{"randPropPoints":45,"weaponDamageMin":274,"weaponDamageMax":510,"stats":{"1":30,"2":30,"5":20},"isBase":true}}}, +{"id":41183,"name":"Saronite Ambusher","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,30,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":46,"weaponDamageMin":212,"weaponDamageMax":319,"weaponSpeed":1.7,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55179}}],"scalingOptions":{"167":{"randPropPoints":46,"weaponDamageMin":212,"weaponDamageMax":319,"stats":{"6":30,"12":62,"13":62},"isBase":true}}}, +{"id":41184,"name":"Saronite Shiv","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,35,0,0,15,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"weaponDamageMin":233,"weaponDamageMax":350,"weaponSpeed":1.8,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55181}}],"scalingOptions":{"171":{"randPropPoints":48,"weaponDamageMin":233,"weaponDamageMax":350,"stats":{"5":35,"8":15,"12":40,"13":40},"isBase":true}}}, +{"id":41185,"name":"Furious Saronite Beatstick","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,38,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":211,"weaponDamageMax":392,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55182}}],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":211,"weaponDamageMax":392,"stats":{"7":38,"12":50,"13":50},"isBase":true}}}, +{"id":41186,"name":"Corroded Saronite Edge","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,0,50,0,0,14,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":316,"weaponDamageMax":587,"weaponSpeed":2.6,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55183}}],"scalingOptions":{"179":{"randPropPoints":52,"weaponDamageMin":316,"weaponDamageMax":587,"stats":{"2":50,"5":14,"8":28},"isBase":true}}}, +{"id":41187,"name":"Corroded Saronite Woundbringer","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,28,50,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"weaponDamageMin":218,"weaponDamageMax":407,"weaponSpeed":1.8,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55184}}],"scalingOptions":{"179":{"randPropPoints":52,"weaponDamageMin":218,"weaponDamageMax":407,"stats":{"1":28,"2":50,"8":14},"isBase":true}}}, +{"id":41188,"name":"Saronite Mindcrusher","icon":"inv_mace_63","type":13,"weaponType":4,"handType":4,"stats":[88,0,57,0,0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"weaponDamageMin":650,"weaponDamageMax":976,"weaponSpeed":3.6,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55185}}],"scalingOptions":{"179":{"randPropPoints":121,"weaponDamageMin":650,"weaponDamageMax":976,"stats":{"0":88,"2":57,"5":25,"6":38},"isBase":true}}}, +{"id":41189,"name":"Chestplate of Conquest","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[88,0,57,0,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55186}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"0":88,"2":57,"6":38,"7":25,"22":2177},"isBase":true}}}, +{"id":41190,"name":"Legplates of Conquest","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[54,0,81,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697,39,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55187}}],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"0":54,"2":81,"6":54,"7":54,"22":1697,"23":39},"isBase":true}}}, +{"id":41198,"name":"Deadly Gladiator's Linked Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":68,"2":151,"6":67,"16":67,"22":1460},"isBase":true}}}, +{"id":41199,"name":"Furious Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":88,"2":181,"6":80,"16":80,"22":1533},"isBase":true}}}, +{"id":41200,"name":"Relentless Gladiator's Linked Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":112,"2":215,"6":96,"16":96,"22":1621},"isBase":true}}}, +{"id":41202,"name":"Savage Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,46,117,0,0,0,52,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":46,"2":117,"6":52,"16":52,"22":1389},"isBase":true}}}, +{"id":41203,"name":"Hateful Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,57,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":57,"2":134,"6":60,"16":60,"22":1436},"isBase":true}}}, +{"id":41204,"name":"Deadly Gladiator's Chain Leggings","icon":"inv_pants_mail_26","type":9,"armorType":3,"stats":[0,68,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":68,"2":151,"6":67,"16":67,"22":1460},"isBase":true}}}, +{"id":41205,"name":"Furious Gladiator's Chain Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,88,181,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1533,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":88,"2":181,"6":80,"16":80,"22":1533},"isBase":true}}}, +{"id":41206,"name":"Relentless Gladiator's Chain Leggings","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,112,215,0,0,0,96,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":112,"2":215,"6":96,"16":96,"22":1621},"isBase":true}}}, +{"id":41208,"name":"Savage Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":42,"2":87,"6":39,"16":39,"22":1191},"isBase":true}}}, +{"id":41209,"name":"Hateful Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":1231},"isBase":true}}}, +{"id":41210,"name":"Deadly Gladiator's Linked Spaulders","icon":"inv_shoulder_104","type":3,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":1251},"isBase":true}}}, +{"id":41211,"name":"Furious Gladiator's Linked Spaulders","icon":"inv_shoulder_82","type":3,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":73,"2":134,"6":60,"16":60,"22":1314},"isBase":true}}}, +{"id":41212,"name":"Relentless Gladiator's Linked Spaulders","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"6":71,"16":71,"22":1389},"isBase":true}}}, +{"id":41214,"name":"Savage Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,42,87,0,0,0,39,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":42,"2":87,"6":39,"16":39,"22":1191},"isBase":true}}}, +{"id":41215,"name":"Hateful Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1231,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":1231},"isBase":true}}}, +{"id":41216,"name":"Deadly Gladiator's Chain Spaulders","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":1251},"isBase":true}}}, +{"id":41217,"name":"Furious Gladiator's Chain Spaulders","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,73,134,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":73,"2":134,"6":60,"16":60,"22":1314},"isBase":true}}}, +{"id":41218,"name":"Relentless Gladiator's Chain Spaulders","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,91,160,0,0,0,71,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"6":71,"16":71,"22":1389},"isBase":true}}}, +{"id":41223,"name":"Hateful Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,50,75,0,0,0,33,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":75,"6":33,"16":33,"22":718},"isBase":true}}}, +{"id":41224,"name":"Deadly Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,56,84,0,0,0,38,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":84,"6":38,"16":38,"22":730},"isBase":true}}}, +{"id":41225,"name":"Furious Gladiator's Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,63,95,0,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":95,"6":42,"16":42,"22":753},"isBase":true}}}, +{"id":41226,"name":"Relentless Gladiator's Wristguards of Triumph","icon":"inv_bracer_28","type":6,"armorType":3,"stats":[0,76,114,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":50,"16":50,"22":790},"isBase":true}}}, +{"id":41228,"name":"Hateful Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":1128},"isBase":true}}}, +{"id":41229,"name":"Deadly Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":1147},"isBase":true}}}, +{"id":41230,"name":"Furious Gladiator's Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,69,127,0,0,0,56,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":127,"6":56,"16":56,"22":1184},"isBase":true}}}, +{"id":41231,"name":"Relentless Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_02","type":10,"armorType":3,"stats":[0,85,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":85,"2":151,"6":67,"16":67,"22":1241},"isBase":true}}}, +{"id":41233,"name":"Hateful Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,50,99,0,0,0,44,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"6":44,"16":44,"22":923},"isBase":true}}}, +{"id":41234,"name":"Deadly Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,59,112,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"6":50,"16":50,"22":938},"isBase":true}}}, +{"id":41235,"name":"Furious Gladiator's Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,69,127,0,0,0,56,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,968,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":127,"6":56,"16":56,"22":968},"isBase":true}}}, +{"id":41236,"name":"Relentless Gladiator's Waistguard of Triumph","icon":"inv_belt_49","type":8,"armorType":3,"stats":[0,85,151,0,0,0,67,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":85,"2":151,"6":67,"16":67,"22":1016},"isBase":true}}}, +{"id":41238,"name":"Cloak of Tormented Skies","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[31,0,48,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,312,60,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":55199}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"0":31,"2":48,"9":24,"22":312,"23":60},"isBase":true}}}, +{"id":41239,"name":"Sturdy Cobalt Quickblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,19,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"weaponSpeed":1.7,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55200}}],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":143,"weaponDamageMax":267,"stats":{"6":19,"12":48,"13":48},"isBase":true}}}, +{"id":41240,"name":"Cobalt Tenderizer","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,26,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"weaponSpeed":2.6,"ilvl":146,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55201}}],"scalingOptions":{"146":{"randPropPoints":33,"weaponDamageMin":219,"weaponDamageMax":408,"stats":{"1":26,"8":16},"isBase":true}}}, +{"id":41242,"name":"Forged Cobalt Claymore","icon":"inv_sword_96","type":13,"weaponType":9,"handType":4,"stats":[61,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":3.5,"ilvl":150,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55203}}],"scalingOptions":{"150":{"randPropPoints":80,"weaponDamageMin":453,"weaponDamageMax":681,"stats":{"0":61,"7":40},"isBase":true}}}, +{"id":41243,"name":"Notched Cobalt War Axe","icon":"inv_axe_88","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,18,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"weaponSpeed":2.6,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55204}}],"scalingOptions":{"154":{"randPropPoints":36,"weaponDamageMin":234,"weaponDamageMax":436,"stats":{"6":18,"12":56,"13":56},"isBase":true}}}, +{"id":41257,"name":"Titansteel Destroyer","icon":"inv_mace_84","type":13,"weaponType":4,"handType":4,"stats":[124,0,105,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"weaponSpeed":3.4,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55369}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"stats":{"0":124,"2":105,"5":54},"isBase":true}}}, +{"id":41264,"name":"Deflecting Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":55243}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"10":82,"22":467},"isBase":true}}}, +{"id":41268,"name":"Savage Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":22,"16":30,"22":667},"isBase":true}}}, +{"id":41269,"name":"Savage Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":36,"22":867},"isBase":true}}}, +{"id":41270,"name":"Savage Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":52,"22":934},"isBase":true}}}, +{"id":41271,"name":"Savage Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,81,50,31,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,800,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":31,"16":38,"22":800},"isBase":true}}}, +{"id":41272,"name":"Savage Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":51,"22":1067},"isBase":true}}}, +{"id":41273,"name":"Hateful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":827},"isBase":true}}}, +{"id":41274,"name":"Deadly Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":856},"isBase":true}}}, +{"id":41275,"name":"Furious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,127,82,51,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,926,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":51,"16":60,"22":926},"isBase":true}}}, +{"id":41276,"name":"Relentless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":993},"isBase":true}}}, +{"id":41278,"name":"Savage Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,800,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":800},"isBase":true}}}, +{"id":41279,"name":"Hateful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":827},"isBase":true}}}, +{"id":41280,"name":"Deadly Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":856},"isBase":true}}}, +{"id":41281,"name":"Furious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,926,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":926},"isBase":true}}}, +{"id":41282,"name":"Relentless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":993},"isBase":true}}}, +{"id":41284,"name":"Hateful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,58,27,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,689,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":27,"16":35,"22":689},"isBase":true}}}, +{"id":41286,"name":"Deadly Gladiator's Kodohide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,713,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":32,"16":39,"22":713},"isBase":true}}}, +{"id":41287,"name":"Furious Gladiator's Kodohide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,0,127,82,39,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":39,"16":47,"22":772},"isBase":true}}}, +{"id":41288,"name":"Relentless Gladiator's Kodohide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":827},"isBase":true}}}, +{"id":41290,"name":"Savage Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":667},"isBase":true}}}, +{"id":41291,"name":"Hateful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,689,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":689},"isBase":true}}}, +{"id":41292,"name":"Deadly Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,713,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":713},"isBase":true}}}, +{"id":41293,"name":"Furious Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":772},"isBase":true}}}, +{"id":41294,"name":"Relentless Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":827},"isBase":true}}}, +{"id":41296,"name":"Hateful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":59,"22":965},"isBase":true}}}, +{"id":41297,"name":"Deadly Gladiator's Kodohide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":51,"16":66,"22":998},"isBase":true}}}, +{"id":41298,"name":"Furious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":80,"22":1080},"isBase":true}}}, +{"id":41299,"name":"Relentless Gladiator's Kodohide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":1158},"isBase":true}}}, +{"id":41301,"name":"Savage Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":934},"isBase":true}}}, +{"id":41302,"name":"Hateful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":965},"isBase":true}}}, +{"id":41303,"name":"Deadly Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":998},"isBase":true}}}, +{"id":41304,"name":"Furious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":1080},"isBase":true}}}, +{"id":41305,"name":"Relentless Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1158},"isBase":true}}}, +{"id":41308,"name":"Hateful Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":59,"22":1103},"isBase":true}}}, +{"id":41309,"name":"Deadly Gladiator's Kodohide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"4":51,"16":66,"22":1141},"isBase":true}}}, +{"id":41310,"name":"Furious Gladiator's Kodohide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1234,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":80,"22":1234},"isBase":true}}}, +{"id":41311,"name":"Relentless Gladiator's Kodohide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":1324},"isBase":true}}}, +{"id":41313,"name":"Savage Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":1067},"isBase":true}}}, +{"id":41314,"name":"Hateful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":1103},"isBase":true}}}, +{"id":41315,"name":"Deadly Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":1141},"isBase":true}}}, +{"id":41316,"name":"Furious Gladiator's Wyrmhide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1234,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":1234},"isBase":true}}}, +{"id":41317,"name":"Relentless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1324},"isBase":true}}}, +{"id":41319,"name":"Hateful Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":43,"22":896},"isBase":true}}}, +{"id":41320,"name":"Deadly Gladiator's Kodohide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":51,"16":50,"22":927},"isBase":true}}}, +{"id":41321,"name":"Furious Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":68,"22":1003},"isBase":true}}}, +{"id":41322,"name":"Relentless Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":80,"22":1076},"isBase":true}}}, +{"id":41324,"name":"Savage Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":867},"isBase":true}}}, +{"id":41325,"name":"Hateful Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":896},"isBase":true}}}, +{"id":41326,"name":"Deadly Gladiator's Wyrmhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":927},"isBase":true}}}, +{"id":41327,"name":"Furious Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":1003},"isBase":true}}}, +{"id":41328,"name":"Relentless Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":1076},"isBase":true}}}, +{"id":41330,"name":"Hateful Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":620},"isBase":true}}}, +{"id":41331,"name":"Hateful Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":758},"isBase":true}}}, +{"id":41332,"name":"Hateful Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"16":33,"22":482},"isBase":true}}}, +{"id":41344,"name":"Helm of Command","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[95,0,0,0,0,0,55,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55302}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":95,"6":55,"7":41,"22":1800},"isBase":true}}}, +{"id":41345,"name":"Daunting Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[54,0,93,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55303}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":54,"2":93,"9":88,"22":1938},"isBase":true}}}, +{"id":41346,"name":"Righteous Greaves","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,93,88,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55304}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":93,"3":88,"6":54,"22":1938},"isBase":true}}}, +{"id":41347,"name":"Savage Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[59,0,99,0,0,0,44,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55310}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":59,"2":99,"6":44,"16":58,"22":1938},"isBase":true}}}, +{"id":41348,"name":"Savage Saronite Walkers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[27,0,57,0,0,0,52,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55308}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":27,"2":57,"6":52,"16":47,"22":1523},"isBase":true}}}, +{"id":41349,"name":"Savage Saronite Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[52,0,66,0,0,0,27,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55309}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":52,"2":66,"6":27,"16":43,"22":1385},"isBase":true}}}, +{"id":41350,"name":"Savage Saronite Skullshield","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[37,0,78,0,0,0,70,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55312}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":37,"2":78,"6":70,"16":63,"22":1800},"isBase":true}}}, +{"id":41351,"name":"Savage Saronite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[52,0,66,0,0,0,43,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55306}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":52,"2":66,"6":43,"16":27,"22":1661},"isBase":true}}}, +{"id":41352,"name":"Savage Saronite Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[44,0,40,0,0,0,43,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55307}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":44,"2":40,"6":43,"16":52,"22":1246},"isBase":true}}}, +{"id":41353,"name":"Savage Saronite Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[72,0,105,0,0,0,37,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55311}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":72,"2":105,"6":37,"16":37,"22":2215},"isBase":true}}}, +{"id":41354,"name":"Savage Saronite Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[37,0,48,0,0,0,24,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Savage Saronite Battlegear","setId":816,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55305}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":37,"2":48,"6":24,"16":33,"22":969},"isBase":true}}}, +{"id":41355,"name":"Vengeance Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[53,0,0,0,0,23,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55298}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":53,"5":23,"6":30,"22":969},"isBase":true}}}, +{"id":41356,"name":"Righteous Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,45,71,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55300}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":45,"3":71,"6":30,"22":1385},"isBase":true}}}, +{"id":41357,"name":"Daunting Handguards","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[30,0,60,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55301}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":30,"2":60,"9":71,"22":1385},"isBase":true}}}, +{"id":41383,"name":"Titansteel Bonecrusher","icon":"inv_mace_87","type":13,"weaponType":4,"handType":2,"stats":[0,0,59,0,0,0,0,0,29,0,0,0,140,140,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":405,"weaponDamageMax":753,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55370}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":405,"weaponDamageMax":753,"stats":{"2":59,"8":29,"12":140,"13":140},"isBase":true}}}, +{"id":41384,"name":"Titansteel Guardian","icon":"inv_mace_87","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,0,0,0,29,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55371}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":202,"weaponDamageMax":376,"stats":{"2":58,"6":29,"14":513},"isBase":true}}}, +{"id":41386,"name":"Spiked Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[97,0,0,0,0,60,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55372}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":97,"5":60,"6":44,"22":1901},"isBase":true}}}, +{"id":41387,"name":"Tempered Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[61,0,162,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55373}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":61,"2":162,"9":46,"22":1901},"isBase":true}}}, +{"id":41388,"name":"Brilliant Titansteel Helm","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,0,92,60,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55374}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"3":92,"4":60,"6":53,"22":1901},"isBase":true}}}, +{"id":41391,"name":"Spiked Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[80,0,67,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55375}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":80,"2":67,"6":35,"22":1609},"isBase":true}}}, +{"id":41392,"name":"Tempered Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[45,0,120,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55376}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":45,"2":120,"9":35,"22":1609},"isBase":true}}}, +{"id":41394,"name":"Brilliant Titansteel Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,0,79,46,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55377}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":79,"4":46,"6":35,"22":1609},"isBase":true}}}, +{"id":41512,"name":"Frostwoven Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,22,26,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56031}}],"scalingOptions":{"134":{"randPropPoints":39,"stats":{"2":22,"3":26,"4":19,"22":165},"isBase":true}}}, +{"id":41513,"name":"Frostwoven Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,28,35,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55902}}],"scalingOptions":{"134":{"randPropPoints":52,"stats":{"2":28,"3":35,"4":25,"22":282},"isBase":true}}}, +{"id":41515,"name":"Frostwoven Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,39,46,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":134,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55903}}],"scalingOptions":{"134":{"randPropPoints":69,"stats":{"2":39,"3":46,"4":34,"22":376},"isBase":true}}}, +{"id":41516,"name":"Frostsavage Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59586}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"6":34,"16":34,"22":454},"isBase":true}}}, +{"id":41519,"name":"Frostwoven Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,43,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56030}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"2":43,"3":50,"4":36,"22":352},"isBase":true}}}, +{"id":41520,"name":"Frostwoven Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55906}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":30,"3":36,"4":26,"22":268},"isBase":true}}}, +{"id":41521,"name":"Frostwoven Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,43,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,327,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55907}}],"scalingOptions":{"142":{"randPropPoints":75,"stats":{"2":43,"3":50,"4":36,"22":327},"isBase":true}}}, +{"id":41522,"name":"Frostwoven Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55908}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":30,"3":36,"4":26,"22":219},"isBase":true}}}, +{"id":41523,"name":"Mystic Frostwoven Shoulders","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,35,36,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55910}}],"scalingOptions":{"146":{"randPropPoints":66,"stats":{"3":35,"4":36,"6":33,"22":384},"isBase":true}}}, +{"id":41525,"name":"Mystic Frostwoven Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,0,61,62,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55911}}],"scalingOptions":{"150":{"randPropPoints":93,"stats":{"3":61,"4":62,"6":60,"22":535},"isBase":true}}}, +{"id":41528,"name":"Mystic Frostwoven Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,0,27,27,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55913}}],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"3":27,"4":27,"6":24,"22":224},"isBase":true}}}, +{"id":41543,"name":"Duskweave Belt","icon":"inv_belt_29","type":8,"armorType":1,"stats":[0,0,45,42,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":62,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55914}}],"scalingOptions":{"154":{"randPropPoints":62,"stats":{"2":45,"3":42,"7":23,"22":251},"isBase":true}}}, +{"id":41544,"name":"Duskweave Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,48,45,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55924}}],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":48,"3":45,"7":25,"22":329},"isBase":true}}}, +{"id":41545,"name":"Duskweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,47,43,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55922}}],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"2":47,"3":43,"7":24,"22":289},"isBase":true}}}, +{"id":41546,"name":"Duskweave Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,62,56,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55919}}],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":62,"3":56,"7":32,"22":363},"isBase":true}}}, +{"id":41548,"name":"Duskweave Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,62,56,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":154,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55901}}],"scalingOptions":{"154":{"randPropPoints":84,"stats":{"2":62,"3":56,"7":32,"22":390},"isBase":true}}}, +{"id":41549,"name":"Duskweave Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,63,58,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55921}}],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"2":63,"3":58,"7":33,"22":462},"isBase":true}}}, +{"id":41550,"name":"Duskweave Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,65,60,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":67,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55923}}],"scalingOptions":{"162":{"randPropPoints":67,"stats":{"2":65,"3":60,"7":35,"22":358},"isBase":true}}}, +{"id":41551,"name":"Duskweave Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,36,32,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55920}}],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":36,"3":32,"7":18,"22":202},"isBase":true}}}, +{"id":41553,"name":"Black Duskweave Leggings","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,101,69,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55925}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":101,"3":69,"7":69,"22":635},"isBase":true}}}, +{"id":41554,"name":"Black Duskweave Robe","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,102,68,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55941}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":102,"3":68,"7":70,"22":726},"isBase":true}}}, +{"id":41555,"name":"Black Duskweave Wristwraps","icon":"inv_bracer_11","type":6,"armorType":1,"stats":[0,0,55,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Duskweaver","setId":764,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55943}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":55,"3":39,"7":38,"22":318},"isBase":true}}}, +{"id":41587,"name":"Battlemaster's Celerity","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":84,"stats":{"7":60},"isBase":true}}}, +{"id":41588,"name":"Battlemaster's Aggression","icon":"ability_warrior_focusedrage","type":12,"stats":[0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":84,"stats":{"6":60},"isBase":true}}}, +{"id":41589,"name":"Battlemaster's Resolve","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":84,"stats":{"12":120,"13":120},"isBase":true}}}, +{"id":41590,"name":"Battlemaster's Courage","icon":"spell_nature_focusedmind","type":12,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":84,"stats":{"3":60},"isBase":true}}}, +{"id":41591,"name":"Sergeant's Reinforced Cape","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,42,28,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":63,"stats":{"2":42,"3":28,"6":26,"16":30,"22":311},"isBase":true}}}, +{"id":41592,"name":"The Gladiator's Resolution","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,42,0,0,0,33,0,0,0,0,0,56,56,0,0,20,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":63,"stats":{"2":42,"6":33,"12":56,"13":56,"16":20,"22":311},"isBase":true}}}, +{"id":41607,"name":"Cloak of the Moon","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,41,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56014}}],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":41,"3":30,"4":28,"22":267},"isBase":true}}}, +{"id":41608,"name":"Cloak of Frozen Spirits","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,42,30,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":54,"ilvl":154,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56015}}],"scalingOptions":{"154":{"randPropPoints":54,"stats":{"2":42,"3":30,"7":27,"22":277},"isBase":true}}}, +{"id":41609,"name":"Wispcloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,73,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56016}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"3":50,"4":50,"22":404},"isBase":true}}}, +{"id":41610,"name":"Deathchill Cloak","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,0,50,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56017}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"3":50,"6":43,"7":53,"22":404},"isBase":true}}}, +{"id":41616,"name":"Deadly Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":642},"isBase":true}}}, +{"id":41617,"name":"Furious Gladiator's Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"16":56,"22":678},"isBase":true}}}, +{"id":41618,"name":"Relentless Gladiator's Belt of Salvation","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":721},"isBase":true}}}, +{"id":41620,"name":"Deadly Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,785,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":785},"isBase":true}}}, +{"id":41621,"name":"Furious Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"16":56,"22":829},"isBase":true}}}, +{"id":41622,"name":"Relentless Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":881},"isBase":true}}}, +{"id":41624,"name":"Deadly Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":499},"isBase":true}}}, +{"id":41625,"name":"Furious Gladiator's Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":44,"22":527},"isBase":true}}}, +{"id":41626,"name":"Relentless Gladiator's Armwraps of Salvation","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":561},"isBase":true}}}, +{"id":41628,"name":"Hateful Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":620},"isBase":true}}}, +{"id":41629,"name":"Deadly Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":642},"isBase":true}}}, +{"id":41630,"name":"Furious Gladiator's Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":678},"isBase":true}}}, +{"id":41631,"name":"Relentless Gladiator's Belt of Dominance","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":721},"isBase":true}}}, +{"id":41633,"name":"Hateful Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":758},"isBase":true}}}, +{"id":41634,"name":"Deadly Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,785,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":785},"isBase":true}}}, +{"id":41635,"name":"Furious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":829},"isBase":true}}}, +{"id":41636,"name":"Relentless Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":881},"isBase":true}}}, +{"id":41638,"name":"Hateful Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33,"22":482},"isBase":true}}}, +{"id":41639,"name":"Deadly Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37,"22":499},"isBase":true}}}, +{"id":41640,"name":"Furious Gladiator's Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44,"22":527},"isBase":true}}}, +{"id":41641,"name":"Relentless Gladiator's Armwraps of Dominance","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":50,"16":50,"22":561},"isBase":true}}}, +{"id":41643,"name":"Savage Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,50,82,0,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":82,"6":22,"16":30,"22":667},"isBase":true}}}, +{"id":41644,"name":"Savage Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,62,93,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":93,"6":36,"16":51,"22":867},"isBase":true}}}, +{"id":41645,"name":"Savage Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":111,"6":36,"16":51,"22":934},"isBase":true}}}, +{"id":41646,"name":"Savage Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,50,82,0,0,0,30,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,800,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":82,"6":30,"16":38,"22":800},"isBase":true}}}, +{"id":41647,"name":"Savage Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":111,"6":36,"16":51,"22":1067},"isBase":true}}}, +{"id":41648,"name":"Hateful Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":128,"6":44,"16":59,"22":1103},"isBase":true}}}, +{"id":41649,"name":"Deadly Gladiator's Leather Tunic","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":144,"6":51,"16":66,"22":1141},"isBase":true}}}, +{"id":41650,"name":"Furious Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1234,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":80,"22":1234},"isBase":true}}}, +{"id":41651,"name":"Relentless Gladiator's Leather Tunic","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":96,"22":1324},"isBase":true}}}, +{"id":41653,"name":"Hateful Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":128,"6":44,"16":59,"22":965},"isBase":true}}}, +{"id":41654,"name":"Deadly Gladiator's Leather Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":144,"6":51,"16":66,"22":998},"isBase":true}}}, +{"id":41655,"name":"Furious Gladiator's Leather Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":80,"22":1080},"isBase":true}}}, +{"id":41656,"name":"Relentless Gladiator's Leather Legguards","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":96,"22":1158},"isBase":true}}}, +{"id":41658,"name":"Savage Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":111,"6":36,"16":51,"22":1067},"isBase":true}}}, +{"id":41659,"name":"Hateful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":128,"6":44,"16":59,"22":1103},"isBase":true}}}, +{"id":41660,"name":"Deadly Gladiator's Dragonhide Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":144,"6":51,"16":66,"22":1141},"isBase":true}}}, +{"id":41661,"name":"Furious Gladiator's Dragonhide Robes","icon":"inv_chest_cloth_70","type":5,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1234,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":80,"22":1234},"isBase":true}}}, +{"id":41662,"name":"Relentless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":96,"22":1324},"isBase":true}}}, +{"id":41664,"name":"Savage Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,62,111,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":111,"6":36,"16":51,"22":934},"isBase":true}}}, +{"id":41665,"name":"Hateful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,73,128,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":128,"6":44,"16":59,"22":965},"isBase":true}}}, +{"id":41666,"name":"Deadly Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":144,"6":51,"16":66,"22":998},"isBase":true}}}, +{"id":41667,"name":"Furious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_24","type":9,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":80,"22":1080},"isBase":true}}}, +{"id":41668,"name":"Relentless Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":96,"22":1158},"isBase":true}}}, +{"id":41670,"name":"Hateful Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":110,"6":44,"16":59,"22":896},"isBase":true}}}, +{"id":41671,"name":"Deadly Gladiator's Leather Helm","icon":"inv_misc_bandana_03","type":1,"armorType":2,"stats":[0,84,126,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":126,"6":51,"16":66,"22":927},"isBase":true}}}, +{"id":41672,"name":"Furious Gladiator's Leather Helm","icon":"inv_helmet_102","type":1,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":68,"22":1003},"isBase":true}}}, +{"id":41673,"name":"Relentless Gladiator's Leather Helm","icon":"inv_helmet_87","type":1,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":80,"22":1076},"isBase":true}}}, +{"id":41675,"name":"Savage Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,62,93,0,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":93,"6":36,"16":51,"22":867},"isBase":true}}}, +{"id":41676,"name":"Hateful Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":110,"6":44,"16":59,"22":896},"isBase":true}}}, +{"id":41677,"name":"Deadly Gladiator's Dragonhide Helm","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,84,126,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,927,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":126,"6":51,"16":66,"22":927},"isBase":true}}}, +{"id":41678,"name":"Furious Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,105,171,0,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,1003,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"1":105,"2":171,"6":64,"16":68,"22":1003},"isBase":true}}}, +{"id":41679,"name":"Relentless Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,128,205,0,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":205,"6":80,"16":80,"22":1076},"isBase":true}}}, +{"id":41681,"name":"Hateful Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":36,"16":44,"22":827},"isBase":true}}}, +{"id":41682,"name":"Deadly Gladiator's Leather Spaulders","icon":"inv_shoulder_95","type":3,"armorType":2,"stats":[0,67,107,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":107,"6":42,"16":49,"22":856},"isBase":true}}}, +{"id":41683,"name":"Furious Gladiator's Leather Spaulders","icon":"inv_shoulder_88","type":3,"armorType":2,"stats":[0,82,127,0,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,926,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":82,"2":127,"6":51,"16":60,"22":926},"isBase":true}}}, +{"id":41684,"name":"Relentless Gladiator's Leather Spaulders","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":152,"6":63,"16":71,"22":993},"isBase":true}}}, +{"id":41712,"name":"Savage Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,50,82,0,0,0,30,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,800,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":82,"6":30,"16":38,"22":800},"isBase":true}}}, +{"id":41713,"name":"Hateful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":36,"16":44,"22":827},"isBase":true}}}, +{"id":41714,"name":"Deadly Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,67,107,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,856,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":107,"6":42,"16":49,"22":856},"isBase":true}}}, +{"id":41715,"name":"Furious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_98","type":3,"armorType":2,"stats":[0,82,127,0,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,926,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":82,"2":127,"6":51,"16":60,"22":926},"isBase":true}}}, +{"id":41716,"name":"Relentless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":152,"6":63,"16":71,"22":993},"isBase":true}}}, +{"id":41755,"name":"The Fire Extinguisher","icon":"inv_staff_76","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":326,"weaponDamageMax":559,"weaponSpeed":3.1,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":43,"weaponDamageMin":326,"weaponDamageMax":559,"isBase":true}}}, +{"id":41756,"name":"Heart's Blood Signet","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,33,32,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":33,"3":32,"4":21},"isBase":true}}}, +{"id":41757,"name":"Vest of Unyielding Companionship","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":58,"2":84,"22":642},"isBase":true}}}, +{"id":41758,"name":"Blood-Bond Helm","icon":"inv_helmet_18","type":1,"armorType":3,"stats":[0,63,0,36,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"1":63,"3":36,"7":29,"22":789},"isBase":true}}}, +{"id":41759,"name":"Shackles of Perpetual Friendship","icon":"inv_bracer_18","type":6,"armorType":4,"stats":[20,0,24,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"0":20,"2":24,"6":34,"22":631},"isBase":true}}}, +{"id":41760,"name":"Emancipator's Robes","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,0,63,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"3":63,"4":50,"22":462},"isBase":true}}}, +{"id":41761,"name":"Wristguard of Healing Fingers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,30,32,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":48,"stats":{"2":30,"3":32,"7":19,"22":281},"isBase":true}}}, +{"id":41762,"name":"Freedom-Path Treads","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,42,44,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":64,"stats":{"1":42,"2":44,"6":28,"22":668},"isBase":true}}}, +{"id":41763,"name":"Leggings of the Canny Chief","icon":"inv_pants_plate_19","type":9,"armorType":4,"stats":[40,0,60,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":158,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":87,"stats":{"0":40,"2":60,"6":55,"22":1263},"isBase":true}}}, +{"id":41765,"name":"Hateful Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,58,94,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,689,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":27,"16":35,"22":689},"isBase":true}}}, +{"id":41766,"name":"Deadly Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,67,105,0,0,0,31,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,713,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":105,"6":31,"16":39,"22":713},"isBase":true}}}, +{"id":41767,"name":"Furious Gladiator's Leather Gloves","icon":"inv_gauntlets_53","type":7,"armorType":2,"stats":[0,82,127,0,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":82,"2":127,"6":39,"16":47,"22":772},"isBase":true}}}, +{"id":41768,"name":"Relentless Gladiator's Leather Gloves","icon":"inv_gauntlets_49","type":7,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":152,"6":63,"16":71,"22":827},"isBase":true}}}, +{"id":41770,"name":"Savage Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,50,82,0,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,667,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":82,"6":22,"16":30,"22":667},"isBase":true}}}, +{"id":41771,"name":"Hateful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,58,94,0,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,689,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":27,"16":35,"22":689},"isBase":true}}}, +{"id":41772,"name":"Deadly Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_58","type":7,"armorType":2,"stats":[0,67,105,0,0,0,31,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,713,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":105,"6":31,"16":39,"22":713},"isBase":true}}}, +{"id":41773,"name":"Furious Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_72","type":7,"armorType":2,"stats":[0,82,127,0,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,772,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"1":82,"2":127,"6":39,"16":47,"22":772},"isBase":true}}}, +{"id":41774,"name":"Relentless Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,99,152,0,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,827,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":152,"6":63,"16":71,"22":827},"isBase":true}}}, +{"id":41815,"name":"Icier Barbed Spear","icon":"inv_weapon_halberd_23","type":13,"weaponType":6,"handType":4,"stats":[0,62,89,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":558,"weaponDamageMax":837,"weaponSpeed":3.2,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":558,"weaponDamageMax":837,"stats":{"1":62,"2":89,"6":61},"isBase":true}}}, +{"id":41816,"name":"De-Raged Waraxe","icon":"inv_axe_82","type":13,"weaponType":1,"handType":4,"stats":[61,0,93,0,0,47,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":610,"weaponDamageMax":916,"weaponSpeed":3.5,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":610,"weaponDamageMax":916,"stats":{"0":61,"2":93,"5":47,"6":30},"isBase":true}}}, +{"id":41821,"name":"Chilly Slobberknocker","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,119,0,0,50,0,47,0,0,0,0,0,0,352,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":270,"weaponDamageMax":405,"weaponSpeed":3.1,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":270,"weaponDamageMax":405,"stats":{"2":119,"5":50,"7":47,"14":352},"isBase":true}}}, +{"id":41822,"name":"Screw-Sprung Fixer-Upper","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,44,0,26,0,21,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":129,"weaponDamageMax":240,"weaponSpeed":2.2,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":129,"weaponDamageMax":240,"stats":{"2":44,"4":26,"6":21,"14":351},"isBase":true}}}, +{"id":41824,"name":"Crimson Cranium Crusher","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,19,46,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":328,"weaponDamageMax":610,"weaponSpeed":2.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":328,"weaponDamageMax":610,"stats":{"1":19,"2":46,"6":26},"isBase":true}}}, +{"id":41825,"name":"Wodin's Second-Best Shanker","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,27,29,0,0,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":211,"weaponDamageMax":392,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":211,"weaponDamageMax":392,"stats":{"1":27,"2":29,"5":26,"6":20},"isBase":true}}}, +{"id":41826,"name":"Grips of the Giant-Rider","icon":"inv_gauntlets_41","type":7,"armorType":1,"stats":[0,0,59,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":74,"stats":{"2":59,"3":39,"7":38,"22":358},"isBase":true}}}, +{"id":41827,"name":"Hateful Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":36,"16":44,"22":620},"isBase":true}}}, +{"id":41828,"name":"Hateful Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":36,"16":44,"22":758},"isBase":true}}}, +{"id":41829,"name":"Horns of Electrified Terror","icon":"inv_helmet_100","type":1,"armorType":2,"stats":[0,52,80,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"1":52,"2":80,"6":52,"22":647},"isBase":true}}}, +{"id":41830,"name":"Hateful Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,50,71,0,0,0,33,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":71,"6":33,"16":32,"22":482},"isBase":true}}}, +{"id":41831,"name":"Deadly Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":105,"6":42,"16":49,"22":642},"isBase":true}}}, +{"id":41832,"name":"Furious Gladiator's Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,77,119,0,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":119,"6":48,"16":56,"22":678},"isBase":true}}}, +{"id":41833,"name":"Relentless Gladiator's Belt of Triumph","icon":"inv_belt_43c","type":8,"armorType":2,"stats":[0,93,144,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,721,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":144,"6":59,"16":67,"22":721},"isBase":true}}}, +{"id":41835,"name":"Deadly Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,785,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":105,"6":42,"16":49,"22":785},"isBase":true}}}, +{"id":41836,"name":"Furious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,77,119,0,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":119,"6":48,"16":56,"22":829},"isBase":true}}}, +{"id":41837,"name":"Relentless Gladiator's Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,93,144,0,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":144,"6":59,"16":67,"22":881},"isBase":true}}}, +{"id":41839,"name":"Deadly Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,56,82,0,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":56,"2":82,"6":38,"16":37,"22":499},"isBase":true}}}, +{"id":41840,"name":"Furious Gladiator's Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,63,90,0,0,0,43,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":90,"6":43,"16":41,"22":527},"isBase":true}}}, +{"id":41841,"name":"Relentless Gladiator's Armwraps of Triumph","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,76,108,0,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":108,"6":50,"16":50,"22":561},"isBase":true}}}, +{"id":41844,"name":"Bracers of Vengeful Flight","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,29,43,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":56,"stats":{"1":29,"2":43,"6":28,"22":527},"isBase":true}}}, +{"id":41845,"name":"Life-Light Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,71,39,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":74,"stats":{"2":71,"3":39,"6":26,"22":1342},"isBase":true}}}, +{"id":41846,"name":"Clutch of the Storm Giant","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[38,0,79,0,0,0,0,0,30,52,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"0":38,"2":79,"8":30,"9":52,"22":1790},"isBase":true}}}, +{"id":41847,"name":"Savage Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,22,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,489,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":22,"16":30,"22":489},"isBase":true}}}, +{"id":41848,"name":"Savage Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":36,"22":635},"isBase":true}}}, +{"id":41849,"name":"Savage Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":52,"22":684},"isBase":true}}}, +{"id":41850,"name":"Savage Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,81,50,31,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"4":31,"16":38,"22":587},"isBase":true}}}, +{"id":41851,"name":"Savage Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,36,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"4":36,"16":51,"22":782},"isBase":true}}}, +{"id":41852,"name":"Hateful Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":43,"22":657},"isBase":true}}}, +{"id":41853,"name":"Deadly Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":51,"16":50,"22":693},"isBase":true}}}, +{"id":41854,"name":"Furious Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,773,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":68,"22":773},"isBase":true}}}, +{"id":41855,"name":"Relentless Gladiator's Mooncloth Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":80,"22":840},"isBase":true}}}, +{"id":41857,"name":"Hateful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":59,"22":808},"isBase":true}}}, +{"id":41858,"name":"Deadly Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"4":51,"16":66,"22":852},"isBase":true}}}, +{"id":41859,"name":"Furious Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":80,"22":951},"isBase":true}}}, +{"id":41860,"name":"Relentless Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":1034},"isBase":true}}}, +{"id":41862,"name":"Hateful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,44,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":44,"16":59,"22":707},"isBase":true}}}, +{"id":41863,"name":"Deadly Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,51,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":51,"16":66,"22":746},"isBase":true}}}, +{"id":41864,"name":"Furious Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"4":64,"16":80,"22":832},"isBase":true}}}, +{"id":41865,"name":"Relentless Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,80,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,905,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":80,"16":96,"22":905},"isBase":true}}}, +{"id":41867,"name":"Hateful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,606,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":606},"isBase":true}}}, +{"id":41868,"name":"Deadly Gladiator's Mooncloth Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":639},"isBase":true}}}, +{"id":41869,"name":"Furious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,127,82,51,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,714,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":51,"16":60,"22":714},"isBase":true}}}, +{"id":41870,"name":"Relentless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":776},"isBase":true}}}, +{"id":41872,"name":"Hateful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,27,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,505,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":27,"16":35,"22":505},"isBase":true}}}, +{"id":41873,"name":"Deadly Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,32,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":32,"16":39,"22":533},"isBase":true}}}, +{"id":41874,"name":"Furious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,127,82,39,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,595,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"4":39,"16":47,"22":595},"isBase":true}}}, +{"id":41875,"name":"Relentless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":63,"16":71,"22":646},"isBase":true}}}, +{"id":41877,"name":"Hateful Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,455,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":455},"isBase":true}}}, +{"id":41878,"name":"Hateful Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"16":33,"22":354},"isBase":true}}}, +{"id":41879,"name":"Hateful Gladiator's Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,36,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"4":36,"16":44,"22":556},"isBase":true}}}, +{"id":41880,"name":"Deadly Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":480},"isBase":true}}}, +{"id":41881,"name":"Furious Gladiator's Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,519,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"16":56,"22":519},"isBase":true}}}, +{"id":41882,"name":"Relentless Gladiator's Cord of Salvation","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":560},"isBase":true}}}, +{"id":41884,"name":"Deadly Gladiator's Treads of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,105,67,42,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"4":42,"16":50,"22":586},"isBase":true}}}, +{"id":41885,"name":"Furious Gladiator's Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,119,77,48,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"16":56,"22":634},"isBase":true}}}, +{"id":41886,"name":"Relentless Gladiator's Treads of Salvation","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,59,0,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"16":67,"22":684},"isBase":true}}}, +{"id":41890,"name":"Robe of the Conquered Prophet","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,77,53,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,573,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"2":77,"3":53,"4":52,"22":573},"isBase":true}}}, +{"id":41891,"name":"Intricate Zandalari Tunic","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,53,101,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,796,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"1":53,"2":101,"6":30,"22":796},"isBase":true}}}, +{"id":41892,"name":"Deadly Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":373},"isBase":true}}}, +{"id":41893,"name":"Furious Gladiator's Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":44,"22":404},"isBase":true}}}, +{"id":41894,"name":"Relentless Gladiator's Cuffs of Salvation","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":436},"isBase":true}}}, +{"id":41896,"name":"Hateful Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,455,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":455},"isBase":true}}}, +{"id":41897,"name":"Deadly Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":480},"isBase":true}}}, +{"id":41898,"name":"Furious Gladiator's Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,519,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":519},"isBase":true}}}, +{"id":41899,"name":"Relentless Gladiator's Cord of Dominance","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":560},"isBase":true}}}, +{"id":41901,"name":"Hateful Gladiator's Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":556},"isBase":true}}}, +{"id":41902,"name":"Deadly Gladiator's Treads of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,586,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":586},"isBase":true}}}, +{"id":41903,"name":"Furious Gladiator's Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,119,77,0,0,48,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"16":56,"22":634},"isBase":true}}}, +{"id":41904,"name":"Relentless Gladiator's Treads of Dominance","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,0,59,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"16":67,"22":684},"isBase":true}}}, +{"id":41905,"name":"Chestguard of Rampaging Fury","icon":"inv_chest_plate08","type":5,"armorType":3,"stats":[0,56,68,0,0,31,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"1":56,"2":68,"5":31,"6":38,"22":1204},"isBase":true}}}, +{"id":41907,"name":"Hateful Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33,"22":354},"isBase":true}}}, +{"id":41908,"name":"Deadly Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,373,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37,"22":373},"isBase":true}}}, +{"id":41909,"name":"Furious Gladiator's Cuffs of Dominance","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44,"22":404},"isBase":true}}}, +{"id":41910,"name":"Relentless Gladiator's Cuffs of Dominance","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":50,"16":50,"22":436},"isBase":true}}}, +{"id":41912,"name":"Savage Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":635},"isBase":true}}}, +{"id":41913,"name":"Hateful Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":657},"isBase":true}}}, +{"id":41914,"name":"Deadly Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":693},"isBase":true}}}, +{"id":41915,"name":"Furious Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,773,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":773},"isBase":true}}}, +{"id":41916,"name":"Relentless Gladiator's Satin Hood","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":840},"isBase":true}}}, +{"id":41918,"name":"Savage Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":782},"isBase":true}}}, +{"id":41919,"name":"Hateful Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":808},"isBase":true}}}, +{"id":41920,"name":"Deadly Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":852},"isBase":true}}}, +{"id":41921,"name":"Furious Gladiator's Satin Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":951},"isBase":true}}}, +{"id":41922,"name":"Relentless Gladiator's Satin Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1034},"isBase":true}}}, +{"id":41924,"name":"Savage Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":684},"isBase":true}}}, +{"id":41925,"name":"Hateful Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":707},"isBase":true}}}, +{"id":41926,"name":"Deadly Gladiator's Satin Leggings","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":746},"isBase":true}}}, +{"id":41927,"name":"Furious Gladiator's Satin Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":832},"isBase":true}}}, +{"id":41928,"name":"Relentless Gladiator's Satin Leggings","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,905,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":905},"isBase":true}}}, +{"id":41930,"name":"Savage Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":587},"isBase":true}}}, +{"id":41931,"name":"Hateful Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,606,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":606},"isBase":true}}}, +{"id":41932,"name":"Links of the Terrified Deity","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[56,0,67,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"0":56,"2":67,"6":53,"22":1790},"isBase":true}}}, +{"id":41933,"name":"Deadly Gladiator's Satin Mantle","icon":"inv_shoulder_100","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":639},"isBase":true}}}, +{"id":41934,"name":"Furious Gladiator's Satin Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,714,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":714},"isBase":true}}}, +{"id":41935,"name":"Relentless Gladiator's Satin Mantle","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":776},"isBase":true}}}, +{"id":41937,"name":"Savage Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,489,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":489},"isBase":true}}}, +{"id":41938,"name":"Hateful Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,505,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":505},"isBase":true}}}, +{"id":41939,"name":"Deadly Gladiator's Satin Gloves","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":533},"isBase":true}}}, +{"id":41940,"name":"Furious Gladiator's Satin Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,595,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":595},"isBase":true}}}, +{"id":41941,"name":"Relentless Gladiator's Satin Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":646},"isBase":true}}}, +{"id":41943,"name":"Savage Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":635},"isBase":true}}}, +{"id":41944,"name":"Hateful Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":657},"isBase":true}}}, +{"id":41945,"name":"Deadly Gladiator's Silk Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":693},"isBase":true}}}, +{"id":41946,"name":"Furious Gladiator's Silk Cowl","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,773,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":773},"isBase":true}}}, +{"id":41947,"name":"Relentless Gladiator's Silk Cowl","icon":"inv_helmet_86","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":840},"isBase":true}}}, +{"id":41949,"name":"Savage Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":782},"isBase":true}}}, +{"id":41950,"name":"Hateful Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":808},"isBase":true}}}, +{"id":41951,"name":"Deadly Gladiator's Silk Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":852},"isBase":true}}}, +{"id":41953,"name":"Furious Gladiator's Silk Raiment","icon":"inv_chest_cloth_61","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":951},"isBase":true}}}, +{"id":41954,"name":"Relentless Gladiator's Silk Raiment","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1034},"isBase":true}}}, +{"id":41956,"name":"Savage Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":684},"isBase":true}}}, +{"id":41957,"name":"Hateful Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":707},"isBase":true}}}, +{"id":41958,"name":"Deadly Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":746},"isBase":true}}}, +{"id":41959,"name":"Furious Gladiator's Silk Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":832},"isBase":true}}}, +{"id":41960,"name":"Relentless Gladiator's Silk Trousers","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,905,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":905},"isBase":true}}}, +{"id":41962,"name":"Savage Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":587},"isBase":true}}}, +{"id":41963,"name":"Hateful Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,606,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":606},"isBase":true}}}, +{"id":41964,"name":"Deadly Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":639},"isBase":true}}}, +{"id":41965,"name":"Furious Gladiator's Silk Amice","icon":"inv_shoulder_49","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,714,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":714},"isBase":true}}}, +{"id":41966,"name":"Relentless Gladiator's Silk Amice","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":776},"isBase":true}}}, +{"id":41968,"name":"Savage Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,489,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":489},"isBase":true}}}, +{"id":41969,"name":"Hateful Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,505,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":505},"isBase":true}}}, +{"id":41970,"name":"Deadly Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":533},"isBase":true}}}, +{"id":41971,"name":"Furious Gladiator's Silk Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,595,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":595},"isBase":true}}}, +{"id":41972,"name":"Relentless Gladiator's Silk Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":646},"isBase":true}}}, +{"id":41974,"name":"Cobalt Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[25,0,27,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":42,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55834}}],"scalingOptions":{"142":{"randPropPoints":42,"stats":{"0":25,"2":27,"9":45,"22":536},"isBase":true}}}, +{"id":41975,"name":"Cobalt Gauntlets","icon":"inv_gauntlets_09","type":7,"armorType":4,"stats":[37,0,39,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":142,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":55835}}],"scalingOptions":{"142":{"randPropPoints":56,"stats":{"0":37,"2":39,"9":25,"22":766},"isBase":true}}}, +{"id":41984,"name":"Hat of Wintry Doom","icon":"inv_helmet_120","type":1,"armorType":1,"stats":[0,0,104,45,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,590,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56018}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":45,"5":44,"22":590},"isBase":true}}}, +{"id":41985,"name":"Silky Iceshard Boots","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,76,51,0,0,37,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56019}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":76,"3":51,"6":37,"7":29,"22":499},"isBase":true}}}, +{"id":41986,"name":"Deep Frozen Cord","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,89,52,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56020}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":89,"3":52,"6":36,"22":408},"isBase":true}}}, +{"id":41987,"name":"Staff of the Sorrowful Chieftain","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,61,93,0,0,0,44,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":540,"weaponDamageMax":811,"weaponSpeed":3.1,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":117,"weaponDamageMin":540,"weaponDamageMax":811,"stats":{"1":61,"2":93,"6":44,"7":35},"isBase":true}}}, +{"id":41990,"name":"Savage Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,635,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":36,"22":635},"isBase":true}}}, +{"id":41991,"name":"Hateful Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":657},"isBase":true}}}, +{"id":41992,"name":"Deadly Gladiator's Felweave Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":50,"22":693},"isBase":true}}}, +{"id":41993,"name":"Furious Gladiator's Felweave Cowl","icon":"inv_helmet_137","type":1,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,773,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":68,"22":773},"isBase":true}}}, +{"id":41994,"name":"Relentless Gladiator's Felweave Cowl","icon":"inv_helmet_137","type":1,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":80,"22":840},"isBase":true}}}, +{"id":41996,"name":"Savage Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":51,"22":782},"isBase":true}}}, +{"id":41997,"name":"Deadly Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"6":51,"16":66,"22":852},"isBase":true}}}, +{"id":41998,"name":"Furious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,951,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":951},"isBase":true}}}, +{"id":41999,"name":"Relentless Gladiator's Felweave Raiment","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":1034},"isBase":true}}}, +{"id":42001,"name":"Hateful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":808},"isBase":true}}}, +{"id":42002,"name":"Savage Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,110,62,0,0,36,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,684,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":110,"3":62,"6":36,"16":52,"22":684},"isBase":true}}}, +{"id":42003,"name":"Hateful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,707,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":707},"isBase":true}}}, +{"id":42004,"name":"Deadly Gladiator's Felweave Trousers","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,143,85,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,746,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"6":51,"16":66,"22":746},"isBase":true}}}, +{"id":42005,"name":"Furious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,171,105,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,832,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"238":{"randPropPoints":242,"stats":{"2":171,"3":105,"6":64,"16":80,"22":832},"isBase":true}}}, +{"id":42006,"name":"Relentless Gladiator's Felweave Trousers","icon":"inv_pants_cloth_30","type":9,"armorType":1,"stats":[0,0,205,128,0,0,80,0,0,0,0,0,0,0,0,0,96,0,0,0,0,0,905,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":80,"16":96,"22":905},"isBase":true}}}, +{"id":42008,"name":"Savage Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,81,50,0,0,31,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":31,"16":38,"22":587},"isBase":true}}}, +{"id":42009,"name":"Hateful Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,606,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":606},"isBase":true}}}, +{"id":42010,"name":"Deadly Gladiator's Felweave Amice","icon":"inv_shoulder_99","type":3,"armorType":1,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,639,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":639},"isBase":true}}}, +{"id":42011,"name":"Furious Gladiator's Felweave Amice","icon":"inv_shoulder_101","type":3,"armorType":1,"stats":[0,0,127,82,0,0,51,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,714,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":51,"16":60,"22":714},"isBase":true}}}, +{"id":42012,"name":"Relentless Gladiator's Felweave Amice","icon":"inv_shoulder_106","type":3,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":776},"isBase":true}}}, +{"id":42014,"name":"Savage Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,81,50,0,0,22,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,489,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":50,"6":22,"16":30,"22":489},"isBase":true}}}, +{"id":42015,"name":"Hateful Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,94,58,0,0,27,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,505,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":27,"16":35,"22":505},"isBase":true}}}, +{"id":42016,"name":"Deadly Gladiator's Felweave Handguards","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,105,67,0,0,32,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,533,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":32,"16":39,"22":533},"isBase":true}}}, +{"id":42017,"name":"Furious Gladiator's Felweave Handguards","icon":"inv_gauntlets_72","type":7,"armorType":1,"stats":[0,0,127,82,0,0,39,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,595,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":180,"ilvl":238,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"238":{"randPropPoints":180,"stats":{"2":127,"3":82,"6":39,"16":47,"22":595},"isBase":true}}}, +{"id":42018,"name":"Relentless Gladiator's Felweave Handguards","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,152,99,0,0,63,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":63,"16":71,"22":646},"isBase":true}}}, +{"id":42020,"name":"Hateful Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"6":34,"12":100,"13":100,"16":33},"isBase":true}}}, +{"id":42021,"name":"Hateful Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,73,0,0,34,0,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"5":34,"12":100,"13":100,"16":33},"isBase":true}}}, +{"id":42022,"name":"Hateful Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33},"isBase":true}}}, +{"id":42023,"name":"Hateful Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,0,0,34,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"7":34,"16":33},"isBase":true}}}, +{"id":42024,"name":"Hateful Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,0,34,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"5":34,"16":33},"isBase":true}}}, +{"id":42025,"name":"Hateful Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"16":33},"isBase":true}}}, +{"id":42026,"name":"Hateful Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":36,"16":33},"isBase":true}}}, +{"id":42027,"name":"Deadly Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,84,0,0,0,38,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"6":38,"12":112,"13":112,"16":37},"isBase":true}}}, +{"id":42028,"name":"Deadly Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"5":38,"12":112,"13":112,"16":37},"isBase":true}}}, +{"id":42029,"name":"Deadly Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37},"isBase":true}}}, +{"id":42030,"name":"Deadly Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"5":38,"16":37},"isBase":true}}}, +{"id":42031,"name":"Deadly Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,0,0,0,38,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"7":38,"16":37},"isBase":true}}}, +{"id":42032,"name":"Deadly Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37},"isBase":true}}}, +{"id":42033,"name":"Deadly Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37},"isBase":true}}}, +{"id":42034,"name":"Furious Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"6":44,"12":133,"13":133,"16":44},"isBase":true}}}, +{"id":42035,"name":"Furious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,44,0,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"5":44,"12":133,"13":133,"16":44},"isBase":true}}}, +{"id":42036,"name":"Furious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44},"isBase":true}}}, +{"id":42037,"name":"Furious Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,42,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"5":42,"16":44},"isBase":true}}}, +{"id":42038,"name":"Furious Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,0,0,0,42,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"7":42,"16":44},"isBase":true}}}, +{"id":42039,"name":"Furious Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":44},"isBase":true}}}, +{"id":42040,"name":"Furious Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":42},"isBase":true}}}, +{"id":42041,"name":"Relentless Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"6":50,"12":151,"13":151,"16":50},"isBase":true}}}, +{"id":42042,"name":"Relentless Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"5":50,"12":151,"13":151,"16":50},"isBase":true}}}, +{"id":42043,"name":"Relentless Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":50,"16":50},"isBase":true}}}, +{"id":42044,"name":"Relentless Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":50,"16":50},"isBase":true}}}, +{"id":42045,"name":"Relentless Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"7":50,"16":50},"isBase":true}}}, +{"id":42046,"name":"Relentless Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50},"isBase":true}}}, +{"id":42047,"name":"Relentless Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50},"isBase":true}}}, +{"id":42055,"name":"Hateful Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33,"22":404},"isBase":true}}}, +{"id":42056,"name":"Hateful Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,70,50,0,0,0,34,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"7":34,"16":33,"22":404},"isBase":true}}}, +{"id":42057,"name":"Hateful Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,70,50,0,34,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"5":34,"16":33,"22":404},"isBase":true}}}, +{"id":42058,"name":"Hateful Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":36,"16":33,"22":404},"isBase":true}}}, +{"id":42059,"name":"Hateful Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"16":33,"22":404},"isBase":true}}}, +{"id":42060,"name":"Hateful Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"6":34,"12":100,"13":100,"16":33,"22":404},"isBase":true}}}, +{"id":42061,"name":"Hateful Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,73,0,0,34,0,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"5":34,"12":100,"13":100,"16":33,"22":404},"isBase":true}}}, +{"id":42062,"name":"Deadly Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37,"22":426},"isBase":true}}}, +{"id":42063,"name":"Deadly Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,82,56,0,0,0,38,0,0,0,0,0,0,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"7":38,"16":37,"22":426},"isBase":true}}}, +{"id":42064,"name":"Deadly Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"5":38,"16":37,"22":426},"isBase":true}}}, +{"id":42065,"name":"Deadly Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":426},"isBase":true}}}, +{"id":42066,"name":"Deadly Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":426},"isBase":true}}}, +{"id":42067,"name":"Deadly Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,84,0,0,0,38,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"6":38,"12":112,"13":112,"16":37,"22":426},"isBase":true}}}, +{"id":42068,"name":"Deadly Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"5":38,"12":112,"13":112,"16":37,"22":426},"isBase":true}}}, +{"id":42069,"name":"Furious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44,"22":461},"isBase":true}}}, +{"id":42070,"name":"Furious Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,90,62,0,0,0,42,0,0,0,0,0,0,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"7":42,"16":44,"22":461},"isBase":true}}}, +{"id":42071,"name":"Furious Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,90,62,0,42,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"5":42,"16":44,"22":461},"isBase":true}}}, +{"id":42072,"name":"Furious Gladiator's Cloak of Salvation","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":42,"22":461},"isBase":true}}}, +{"id":42073,"name":"Furious Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,90,62,42,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"4":42,"16":44,"22":461},"isBase":true}}}, +{"id":42074,"name":"Furious Gladiator's Cloak of Triumph","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"6":44,"12":133,"13":133,"16":44,"22":461},"isBase":true}}}, +{"id":42075,"name":"Furious Gladiator's Cloak of Victory","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,99,0,0,44,0,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"5":44,"12":133,"13":133,"16":44,"22":461},"isBase":true}}}, +{"id":42076,"name":"Relentless Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,108,76,0,0,50,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":50,"16":50,"22":498},"isBase":true}}}, +{"id":42077,"name":"Relentless Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,108,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"7":50,"16":50,"22":498},"isBase":true}}}, +{"id":42078,"name":"Relentless Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":50,"16":50,"22":498},"isBase":true}}}, +{"id":42079,"name":"Relentless Gladiator's Cloak of Salvation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":498},"isBase":true}}}, +{"id":42080,"name":"Relentless Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,108,76,50,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"16":50,"22":498},"isBase":true}}}, +{"id":42081,"name":"Relentless Gladiator's Cloak of Triumph","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"6":50,"12":151,"13":151,"16":50,"22":498},"isBase":true}}}, +{"id":42082,"name":"Relentless Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"5":50,"12":151,"13":151,"16":50,"22":498},"isBase":true}}}, +{"id":42093,"name":"Frostmoon Pants","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,101,52,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56021}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":101,"3":52,"4":68,"22":635},"isBase":true}}}, +{"id":42095,"name":"Light Blessed Mittens","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,74,50,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56022}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":74,"3":50,"4":52,"22":454},"isBase":true}}}, +{"id":42096,"name":"Aurora Slippers","icon":"inv_boots_cloth_01","type":10,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56023}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":499},"isBase":true}}}, +{"id":42100,"name":"Moonshroud Robe","icon":"inv_chest_cloth_04","type":5,"armorType":1,"stats":[0,0,127,90,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56024}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":90,"4":89,"22":808},"isBase":true}}}, +{"id":42101,"name":"Ebonweave Robe","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,150,90,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56026}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":150,"3":90,"5":68,"22":808},"isBase":true}}}, +{"id":42102,"name":"Spellweave Robe","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,96,89,52,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56028}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":96,"3":89,"4":52,"7":90,"22":808},"isBase":true}}}, +{"id":42103,"name":"Moonshroud Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,94,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56025}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":65,"4":67,"22":505},"isBase":true}}}, +{"id":42110,"name":"Hateful Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33},"isBase":true}}}, +{"id":42111,"name":"Ebonweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,111,66,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56027}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":111,"3":66,"5":51,"22":505},"isBase":true}}}, +{"id":42112,"name":"Hateful Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,73,0,0,0,34,0,0,0,0,0,100,100,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"6":34,"12":100,"13":100,"16":33},"isBase":true}}}, +{"id":42113,"name":"Spellweave Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,72,66,39,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":56029}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":72,"3":66,"4":39,"7":65,"22":505},"isBase":true}}}, +{"id":42114,"name":"Deadly Gladiator's Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,82,56,0,38,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"5":38,"16":37},"isBase":true}}}, +{"id":42115,"name":"Deadly Gladiator's Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,84,0,0,38,0,0,0,0,0,0,112,112,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":84,"5":38,"12":112,"13":112,"16":37},"isBase":true}}}, +{"id":42116,"name":"Furious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,90,62,0,0,42,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":62,"6":42,"16":44},"isBase":true}}}, +{"id":42117,"name":"Furious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"6":44,"12":133,"13":133,"16":44},"isBase":true}}}, +{"id":42118,"name":"Relentless Gladiator's Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,108,76,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":50,"16":50},"isBase":true}}}, +{"id":42119,"name":"Relentless Gladiator's Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,114,0,0,50,0,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"5":50,"12":151,"13":151,"16":50},"isBase":true}}}, +{"id":42122,"name":"Medallion of the Horde","icon":"inv_jewelry_necklace_38","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":84},"isBase":true}}}, +{"id":42123,"name":"Medallion of the Alliance","icon":"inv_jewelry_necklace_37","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":84},"isBase":true}}}, +{"id":42124,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"226":{"randPropPoints":161,"stats":{"16":108},"isBase":true}}}, +{"id":42126,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"226":{"randPropPoints":161,"stats":{"16":108},"isBase":true}}}, +{"id":42128,"name":"Battlemaster's Hostility","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"6":95},"isBase":true}}}, +{"id":42129,"name":"Battlemaster's Accuracy","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"5":95},"isBase":true}}}, +{"id":42130,"name":"Battlemaster's Avidity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"7":95},"isBase":true}}}, +{"id":42131,"name":"Battlemaster's Conviction","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"12":190,"13":190},"isBase":true}}}, +{"id":42132,"name":"Battlemaster's Bravery","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"3":95},"isBase":true}}}, +{"id":42133,"name":"Battlemaster's Fury","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"6":128},"isBase":true}}}, +{"id":42134,"name":"Battlemaster's Precision","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"5":128},"isBase":true}}}, +{"id":42135,"name":"Battlemaster's Vivacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"7":128},"isBase":true}}}, +{"id":42136,"name":"Battlemaster's Rage","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"12":256,"13":256},"isBase":true}}}, +{"id":42137,"name":"Battlemaster's Ruination","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":42206,"name":"Savage Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42207,"name":"Hateful Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42208,"name":"Deadly Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42209,"name":"Furious Gladiator's Cleaver","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42210,"name":"Relentless Gladiator's Cleaver","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42212,"name":"Savage Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42213,"name":"Savage Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42214,"name":"Savage Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[2],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42215,"name":"Savage Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42216,"name":"Savage Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42217,"name":"Savage Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42218,"name":"Savage Gladiator's Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42219,"name":"Savage Gladiator's Slasher","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42220,"name":"Savage Gladiator's Fleshslicer","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42221,"name":"Savage Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42222,"name":"Savage Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42223,"name":"Savage Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":264,"weaponDamageMax":492,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42224,"name":"Savage Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,49,0,0,0,22,0,0,0,0,0,66,66,0,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":437,"weaponDamageMax":656,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":437,"weaponDamageMax":656,"stats":{"2":49,"6":22,"12":66,"13":66,"16":22},"isBase":true}}}, +{"id":42226,"name":"Hateful Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42227,"name":"Deadly Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42228,"name":"Furious Gladiator's Hacker","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42229,"name":"Relentless Gladiator's Hacker","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42231,"name":"Hateful Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42232,"name":"Deadly Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42233,"name":"Furious Gladiator's Chopper","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":82,"6":27,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42234,"name":"Relentless Gladiator's Chopper","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42236,"name":"Hateful Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[2],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42237,"name":"Deadly Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[2],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42238,"name":"Furious Gladiator's Waraxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[2],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42239,"name":"OBSOLETE - LK Arena 5 Hunter 1h Axe - OBSOLETE","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,82,0,0,0,37,0,0,0,0,0,110,110,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":105,"weaponDamageMin":613,"weaponDamageMax":1140,"weaponSpeed":2.6,"ilvl":239,"quality":4,"classAllowlist":[2],"scalingOptions":{"239":{"randPropPoints":105,"weaponDamageMin":613,"weaponDamageMax":1140,"stats":{"2":82,"6":37,"12":110,"13":110,"16":36},"isBase":true}}}, +{"id":42240,"name":"OBSOLETE - LK Arena 6 Hunter 1h Axe - OBSOLETE","icon":"inv_axe_1h_blacksmithing_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,93,0,0,0,42,0,0,0,0,0,124,124,0,0,41,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[2],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":42,"12":124,"13":124,"16":41},"isBase":true}}}, +{"id":42241,"name":"Hateful Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42242,"name":"Deadly Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":377,"weaponDamageMax":566,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":377,"weaponDamageMax":566,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42243,"name":"Furious Gladiator's Shanker","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":480,"weaponDamageMax":721,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":480,"weaponDamageMax":721,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42244,"name":"Relentless Gladiator's Shanker","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42247,"name":"Hateful Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42248,"name":"Deadly Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42249,"name":"Furious Gladiator's Shiv","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42250,"name":"Relentless Gladiator's Shiv","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42254,"name":"Hateful Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42255,"name":"Deadly Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42256,"name":"Furious Gladiator's Mutilator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42257,"name":"Relentless Gladiator's Mutilator","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42259,"name":"Hateful Gladiator's Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42260,"name":"Deadly Gladiator's Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42261,"name":"Furious Gladiator's Ripper","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42262,"name":"Relentless Gladiator's Ripper","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42264,"name":"Hateful Gladiator's Slasher","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42265,"name":"Deadly Gladiator's Slasher","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42266,"name":"Furious Gladiator's Slasher","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":82,"6":27,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42267,"name":"Relentless Gladiator's Slasher","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42269,"name":"Hateful Gladiator's Fleshslicer","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42270,"name":"Deadly Gladiator's Fleshslicer","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42271,"name":"Furious Gladiator's Fleshslicer","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42272,"name":"Relentless Gladiator's Fleshslicer","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42274,"name":"Hateful Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42275,"name":"Deadly Gladiator's Pummeler","icon":"inv_mace_72","type":13,"weaponType":4,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":477,"weaponDamageMax":886,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42276,"name":"Furious Gladiator's Pummeler","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42277,"name":"Relentless Gladiator's Pummeler","icon":"inv_mace_110","type":13,"weaponType":4,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42279,"name":"Hateful Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42280,"name":"Deadly Gladiator's Bonecracker","icon":"inv_mace_72","type":13,"weaponType":4,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42281,"name":"Furious Gladiator's Bonecracker","icon":"inv_mace_17","type":13,"weaponType":4,"handType":3,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42282,"name":"Relentless Gladiator's Bonecracker","icon":"inv_mace_110","type":13,"weaponType":4,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42284,"name":"Hateful Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":481,"weaponDamageMax":723,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":481,"weaponDamageMax":723,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42285,"name":"Deadly Gladiator's Slicer","icon":"inv_sword_86","type":13,"weaponType":9,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":545,"weaponDamageMax":818,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":545,"weaponDamageMax":818,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42286,"name":"Furious Gladiator's Slicer","icon":"inv_sword_58","type":13,"weaponType":9,"handType":2,"stats":[0,0,83,0,0,0,28,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":694,"weaponDamageMax":1042,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":694,"weaponDamageMax":1042,"stats":{"2":83,"6":28,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42287,"name":"Relentless Gladiator's Slicer","icon":"inv_sword_146","type":13,"weaponType":9,"handType":2,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42289,"name":"Hateful Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,58,0,0,0,26,0,0,0,0,0,76,76,0,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":58,"6":26,"12":76,"13":76,"16":25},"isBase":true}}}, +{"id":42290,"name":"Deadly Gladiator's Quickblade","icon":"inv_sword_86","type":13,"weaponType":9,"handType":3,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,86,86,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"weaponSpeed":1.8,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":330,"weaponDamageMax":613,"stats":{"2":64,"6":29,"12":86,"13":86,"16":28},"isBase":true}}}, +{"id":42291,"name":"Furious Gladiator's Quickblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":3,"stats":[0,0,82,0,0,0,27,0,0,0,0,0,91,91,0,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"2":82,"6":27,"12":91,"13":91,"16":36},"isBase":true}}}, +{"id":42292,"name":"Relentless Gladiator's Quickblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":3,"stats":[0,0,88,0,0,0,31,0,0,0,0,0,101,101,0,0,39,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"2":88,"6":31,"12":101,"13":101,"16":39},"isBase":true}}}, +{"id":42294,"name":"Savage Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"2":117,"6":52,"12":156,"13":156,"16":51},"isBase":true}}}, +{"id":42295,"name":"Savage Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"2":117,"6":52,"12":156,"13":156,"16":51},"isBase":true}}}, +{"id":42296,"name":"Savage Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"2":117,"6":52,"12":156,"13":156,"16":51},"isBase":true}}}, +{"id":42297,"name":"Savage Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,117,0,0,0,52,0,0,0,0,0,156,156,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"2":117,"6":52,"12":156,"13":156,"16":51},"isBase":true}}}, +{"id":42316,"name":"Hateful Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"weaponSpeed":3.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"stats":{"2":135,"6":60,"12":178,"13":178,"16":59},"isBase":true}}}, +{"id":42317,"name":"Deadly Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"2":151,"6":67,"12":200,"13":200,"16":66},"isBase":true}}}, +{"id":42318,"name":"Furious Gladiator's Decapitator","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":3.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"stats":{"2":191,"6":68,"12":223,"13":223,"16":85},"isBase":true}}}, +{"id":42319,"name":"Relentless Gladiator's Decapitator","icon":"inv_axe_111","type":13,"weaponType":1,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"2":204,"6":74,"12":271,"13":271,"16":74},"isBase":true}}}, +{"id":42321,"name":"Hateful Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"weaponSpeed":3.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"stats":{"2":135,"6":60,"12":178,"13":178,"16":59},"isBase":true}}}, +{"id":42322,"name":"Deadly Gladiator's Bonegrinder","icon":"inv_hammer_31","type":13,"weaponType":4,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"2":151,"6":67,"12":200,"13":200,"16":66},"isBase":true}}}, +{"id":42323,"name":"Furious Gladiator's Bonegrinder","icon":"inv_mace_74","type":13,"weaponType":4,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":3.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"stats":{"2":191,"6":68,"12":223,"13":223,"16":85},"isBase":true}}}, +{"id":42324,"name":"Relentless Gladiator's Bonegrinder","icon":"inv_mace_112","type":13,"weaponType":4,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"2":204,"6":74,"12":271,"13":271,"16":74},"isBase":true}}}, +{"id":42326,"name":"Hateful Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"weaponSpeed":3.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"stats":{"2":135,"6":60,"12":178,"13":178,"16":59},"isBase":true}}}, +{"id":42327,"name":"Deadly Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"2":151,"6":67,"12":200,"13":200,"16":66},"isBase":true}}}, +{"id":42328,"name":"Furious Gladiator's Pike","icon":"inv_weapon_halberd_29","type":13,"weaponType":6,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":3.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"stats":{"2":191,"6":68,"12":223,"13":223,"16":85},"isBase":true}}}, +{"id":42329,"name":"Relentless Gladiator's Pike","icon":"inv_staff_104","type":13,"weaponType":6,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"2":204,"6":74,"12":271,"13":271,"16":74},"isBase":true}}}, +{"id":42331,"name":"Hateful Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,135,0,0,0,60,0,0,0,0,0,178,178,0,0,59,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"weaponSpeed":3.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":867,"weaponDamageMax":1301,"stats":{"2":135,"6":60,"12":178,"13":178,"16":59},"isBase":true}}}, +{"id":42332,"name":"Deadly Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,151,0,0,0,67,0,0,0,0,0,200,200,0,0,66,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"weaponSpeed":3.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":981,"weaponDamageMax":1472,"stats":{"2":151,"6":67,"12":200,"13":200,"16":66},"isBase":true}}}, +{"id":42333,"name":"Furious Gladiator's Greatsword","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,191,0,0,0,68,0,0,0,0,0,223,223,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":3.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"stats":{"2":191,"6":68,"12":223,"13":223,"16":85},"isBase":true}}}, +{"id":42334,"name":"Relentless Gladiator's Greatsword","icon":"inv_sword_149","type":13,"weaponType":9,"handType":4,"stats":[0,0,204,0,0,0,74,0,0,0,0,0,271,271,0,0,74,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"2":204,"6":74,"12":271,"13":271,"16":74},"isBase":true}}}, +{"id":42336,"name":"Bloodstone Band","icon":"inv_jewelry_ring_25","type":11,"stats":[0,0,0,0,0,4,16,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56193}}],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"5":4,"6":16,"12":44,"13":44},"isBase":true}}}, +{"id":42337,"name":"Sun Rock Ring","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,18,21,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56194}}],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":18,"3":21,"6":8},"isBase":true}}}, +{"id":42338,"name":"Jade Dagger Pendant","icon":"inv_weapon_shortblade_22","type":2,"stats":[0,0,40,0,0,0,19,0,0,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56195}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"2":40,"6":19,"12":64,"13":64},"isBase":true}}}, +{"id":42339,"name":"Blood Sun Necklace","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,0,34,30,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56196}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"3":34,"4":30,"7":22},"isBase":true}}}, +{"id":42340,"name":"Dream Signet","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56197}}],"scalingOptions":{"174":{"randPropPoints":65,"isBase":true}}}, +{"id":42341,"name":"Figurine - Ruby Hare","icon":"inv_jewelcrafting_crimsonhare","type":12,"stats":[0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56199}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":62},"isBase":true}}}, +{"id":42343,"name":"Savage Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,63,0,0,0,28,0,0,0,0,0,0,0,443,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"weaponSpeed":1.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"stats":{"2":63,"6":28,"14":443,"16":28},"isBase":true}}}, +{"id":42344,"name":"Savage Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":2,"stats":[0,0,63,0,28,0,0,0,0,0,0,0,0,0,443,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"weaponSpeed":1.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":117,"weaponDamageMax":219,"stats":{"2":63,"4":28,"14":443,"16":28},"isBase":true}}}, +{"id":42345,"name":"Hateful Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,73,0,0,0,32,0,0,0,0,0,0,0,513,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":129,"weaponDamageMax":241,"weaponSpeed":1.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":129,"weaponDamageMax":241,"stats":{"2":73,"6":32,"14":513,"16":32},"isBase":true}}}, +{"id":42346,"name":"Deadly Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,82,0,0,0,36,0,0,0,0,0,0,0,576,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":1.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":146,"weaponDamageMax":273,"stats":{"2":82,"6":36,"14":576,"16":36},"isBase":true}}}, +{"id":42347,"name":"Furious Gladiator's Spellblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,0,0,689,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":186,"weaponDamageMax":347,"weaponSpeed":1.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":186,"weaponDamageMax":347,"stats":{"2":99,"6":36,"14":689,"16":38},"isBase":true}}}, +{"id":42348,"name":"Relentless Gladiator's Spellblade","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,111,0,0,0,41,0,0,0,0,0,0,0,780,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":1.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"stats":{"2":111,"6":41,"14":780,"16":41},"isBase":true}}}, +{"id":42351,"name":"Hateful Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":2,"stats":[0,0,73,0,32,0,0,0,0,0,0,0,0,0,513,0,32,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":129,"weaponDamageMax":241,"weaponSpeed":1.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":129,"weaponDamageMax":241,"stats":{"2":73,"4":32,"14":513,"16":32},"isBase":true}}}, +{"id":42352,"name":"Deadly Gladiator's Gavel","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":2,"stats":[0,0,82,0,36,0,0,0,0,0,0,0,0,0,576,0,36,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":146,"weaponDamageMax":273,"weaponSpeed":1.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":146,"weaponDamageMax":273,"stats":{"2":82,"4":36,"14":576,"16":36},"isBase":true}}}, +{"id":42353,"name":"Furious Gladiator's Gavel","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,99,0,36,0,0,0,0,0,0,0,0,0,689,0,36,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":186,"weaponDamageMax":347,"weaponSpeed":1.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":186,"weaponDamageMax":347,"stats":{"2":99,"4":36,"14":689,"16":36},"isBase":true}}}, +{"id":42354,"name":"Relentless Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":2,"stats":[0,0,111,0,42,0,0,0,0,0,0,0,0,0,780,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":1.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"stats":{"2":111,"4":42,"14":780,"16":41},"isBase":true}}}, +{"id":42356,"name":"Savage Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,0,66,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"stats":{"2":140,"6":66,"14":444,"16":65},"isBase":true}}}, +{"id":42359,"name":"Hateful Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,0,75,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"2":162,"6":75,"14":511,"16":75},"isBase":true}}}, +{"id":42362,"name":"Deadly Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,0,85,0,0,0,0,0,0,0,575,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":182,"6":85,"14":575,"16":84},"isBase":true}}}, +{"id":42364,"name":"Furious Gladiator's Battle Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,0,86,0,0,0,0,0,0,0,690,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"stats":{"2":218,"6":86,"14":690,"16":91},"isBase":true}}}, +{"id":42366,"name":"Relentless Gladiator's Battle Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,0,99,0,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"stats":{"2":245,"6":99,"14":777,"16":99},"isBase":true}}}, +{"id":42382,"name":"Savage Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,66,0,0,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"stats":{"2":140,"4":66,"14":444,"16":65},"isBase":true}}}, +{"id":42383,"name":"Hateful Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,75,0,0,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"2":162,"4":75,"14":511,"16":75},"isBase":true}}}, +{"id":42384,"name":"Deadly Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,85,0,0,0,0,0,0,0,0,0,575,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":182,"4":85,"14":575,"16":84},"isBase":true}}}, +{"id":42385,"name":"Furious Gladiator's Energy Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,86,0,0,0,0,0,0,0,0,0,690,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"stats":{"2":218,"4":86,"14":690,"16":91},"isBase":true}}}, +{"id":42386,"name":"Relentless Gladiator's Energy Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,98,0,0,0,0,0,0,0,0,0,777,0,98,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"stats":{"2":245,"4":98,"14":777,"16":98},"isBase":true}}}, +{"id":42388,"name":"Savage Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,50,112,0,0,0,66,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":437,"weaponDamageMax":656,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":437,"weaponDamageMax":656,"stats":{"1":50,"2":112,"6":66,"16":65},"isBase":true}}}, +{"id":42389,"name":"Hateful Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,57,130,0,0,0,75,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":481,"weaponDamageMax":723,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":481,"weaponDamageMax":723,"stats":{"1":57,"2":130,"6":75,"16":75},"isBase":true}}}, +{"id":42390,"name":"Deadly Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,64,147,0,0,0,85,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":545,"weaponDamageMax":818,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":545,"weaponDamageMax":818,"stats":{"1":64,"2":147,"6":85,"16":84},"isBase":true}}}, +{"id":42391,"name":"Furious Gladiator's Staff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,112,191,0,0,0,68,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":694,"weaponDamageMax":1042,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":694,"weaponDamageMax":1042,"stats":{"1":112,"2":191,"6":68,"16":85},"isBase":true}}}, +{"id":42392,"name":"Relentless Gladiator's Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,120,204,0,0,0,74,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":743,"weaponDamageMax":1116,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":743,"weaponDamageMax":1116,"stats":{"1":120,"2":204,"6":74,"16":90},"isBase":true}}}, +{"id":42395,"name":"Figurine - Twilight Serpent","icon":"inv_jewelcrafting_purpleserpent","type":12,"stats":[0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56201}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"5":42},"isBase":true}}}, +{"id":42413,"name":"Figurine - Sapphire Owl","icon":"inv_jewelcrafting_azureowl","type":12,"stats":[0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56202}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"3":42},"isBase":true}}}, +{"id":42418,"name":"Figurine - Emerald Boar","icon":"inv_jewelcrafting_emeraldboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56203}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"12":84,"13":84},"isBase":true}}}, +{"id":42435,"name":"Titansteel Shanker","icon":"inv_weapon_shortblade_76","type":13,"weaponType":2,"handType":2,"stats":[0,0,45,0,0,0,23,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":296,"weaponDamageMax":445,"weaponSpeed":1.6,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56234}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":296,"weaponDamageMax":445,"stats":{"2":45,"6":23,"12":106,"13":106},"isBase":true}}}, +{"id":42443,"name":"Cudgel of Saronite Justice","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,26,0,0,38,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56280}}],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"stats":{"4":26,"7":38,"14":351},"isBase":true}}}, +{"id":42445,"name":"Savage Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,77,116,0,0,0,51,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"weaponSpeed":3,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"stats":{"1":77,"2":116,"6":51,"16":51},"isBase":true}}}, +{"id":42446,"name":"Savage Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,116,0,0,0,51,0,0,0,0,0,154,154,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"weaponSpeed":3,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"stats":{"2":116,"6":51,"12":154,"13":154,"16":51},"isBase":true}}}, +{"id":42447,"name":"Savage Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,77,116,0,0,0,51,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"weaponSpeed":3,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":655,"weaponDamageMax":984,"stats":{"1":77,"2":116,"6":51,"16":51},"isBase":true}}}, +{"id":42448,"name":"Savage Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,47,33,0,0,22,0,0,0,0,0,0,0,443,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"weaponSpeed":1.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"stats":{"2":47,"3":33,"6":22,"14":443,"16":22},"isBase":true}}}, +{"id":42484,"name":"Hateful Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,90,135,0,0,0,58,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"stats":{"1":90,"2":135,"6":58,"16":58},"isBase":true}}}, +{"id":42485,"name":"Deadly Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,99,153,0,0,0,67,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"weaponSpeed":3,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"stats":{"1":99,"2":153,"6":67,"16":64},"isBase":true}}}, +{"id":42486,"name":"Furious Gladiator's Rifle","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,121,175,0,0,0,83,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"weaponSpeed":3,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"stats":{"1":121,"2":175,"6":83,"16":80},"isBase":true}}}, +{"id":42487,"name":"Relentless Gladiator's Rifle","icon":"inv_weapon_rifle_37","type":14,"rangedWeaponType":3,"stats":[0,136,204,0,0,0,90,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"weaponSpeed":3,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"stats":{"1":136,"2":204,"6":90,"16":90},"isBase":true}}}, +{"id":42489,"name":"Hateful Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,90,135,0,0,0,58,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"stats":{"1":90,"2":135,"6":58,"16":58},"isBase":true}}}, +{"id":42490,"name":"Deadly Gladiator's Longbow","icon":"inv_weapon_bow_50","type":14,"rangedWeaponType":1,"stats":[0,99,153,0,0,0,67,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"weaponSpeed":3,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"stats":{"1":99,"2":153,"6":67,"16":64},"isBase":true}}}, +{"id":42491,"name":"Furious Gladiator's Longbow","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,121,175,0,0,0,83,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"weaponSpeed":3,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"stats":{"1":121,"2":175,"6":83,"16":80},"isBase":true}}}, +{"id":42492,"name":"Relentless Gladiator's Longbow","icon":"inv_weapon_bow_54","type":14,"rangedWeaponType":1,"stats":[0,136,204,0,0,0,90,0,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"weaponSpeed":3,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"stats":{"1":136,"2":204,"6":90,"16":90},"isBase":true}}}, +{"id":42494,"name":"Hateful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,135,0,0,0,58,0,0,0,0,0,180,180,0,0,58,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":722,"weaponDamageMax":1084,"stats":{"2":135,"6":58,"12":180,"13":180,"16":58},"isBase":true}}}, +{"id":42495,"name":"Deadly Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,153,0,0,0,67,0,0,0,0,0,197,197,0,0,64,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"weaponSpeed":3,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":817,"weaponDamageMax":1227,"stats":{"2":153,"6":67,"12":197,"13":197,"16":64},"isBase":true}}}, +{"id":42496,"name":"Furious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,175,0,0,0,83,0,0,0,0,0,242,242,0,0,80,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"weaponSpeed":3,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1041,"weaponDamageMax":1563,"stats":{"2":175,"6":83,"12":242,"13":242,"16":80},"isBase":true}}}, +{"id":42498,"name":"Relentless Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_36","type":14,"rangedWeaponType":2,"stats":[0,0,204,0,0,0,90,0,0,0,0,0,271,271,0,0,90,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"weaponSpeed":3,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1115,"weaponDamageMax":1674,"stats":{"2":204,"6":90,"12":271,"13":271,"16":90},"isBase":true}}}, +{"id":42501,"name":"Hateful Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,52,39,0,0,26,0,0,0,0,0,0,0,513,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":1.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"stats":{"2":52,"3":39,"6":26,"14":513,"16":25},"isBase":true}}}, +{"id":42502,"name":"Deadly Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,63,44,0,0,29,0,0,0,0,0,0,0,576,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.9,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"stats":{"2":63,"3":44,"6":29,"14":576,"16":27},"isBase":true}}}, +{"id":42503,"name":"Furious Gladiator's Touch of Defeat","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,74,52,0,0,34,0,0,0,0,0,0,0,689,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"weaponSpeed":1.9,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"stats":{"2":74,"3":52,"6":34,"14":689,"16":33},"isBase":true}}}, +{"id":42504,"name":"Relentless Gladiator's Touch of Defeat","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,83,58,0,0,39,0,0,0,0,0,0,0,780,0,39,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"weaponSpeed":1.9,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"stats":{"2":83,"3":58,"6":39,"14":780,"16":39},"isBase":true}}}, +{"id":42508,"name":"Titansteel Shield Wall","icon":"inv_shield_60","type":13,"weaponType":7,"handType":3,"stats":[36,0,69,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56400}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":36,"2":69,"9":64,"22":6757},"isBase":true}}}, +{"id":42511,"name":"Savage Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,47,33,22,0,0,0,0,0,0,0,0,0,443,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"weaponSpeed":1.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"stats":{"2":47,"3":33,"4":22,"14":443,"16":22},"isBase":true}}}, +{"id":42512,"name":"Hateful Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,52,39,26,0,0,0,0,0,0,0,0,0,513,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":1.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"stats":{"2":52,"3":39,"4":26,"14":513,"16":25},"isBase":true}}}, +{"id":42513,"name":"Deadly Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,60,44,29,0,0,0,0,0,0,0,0,0,576,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.9,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"stats":{"2":60,"3":44,"4":29,"14":576,"16":27},"isBase":true}}}, +{"id":42514,"name":"Furious Gladiator's Baton of Light","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,74,52,34,0,0,0,0,0,0,0,0,0,689,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"weaponSpeed":1.9,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"stats":{"2":74,"3":52,"4":34,"14":689,"16":33},"isBase":true}}}, +{"id":42515,"name":"Relentless Gladiator's Baton of Light","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,83,58,39,0,0,0,0,0,0,0,0,0,780,0,39,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"weaponSpeed":1.9,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"stats":{"2":83,"3":58,"4":39,"14":780,"16":39},"isBase":true}}}, +{"id":42517,"name":"Savage Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,47,33,0,0,0,27,0,0,0,0,0,0,443,0,22,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"weaponSpeed":1.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":139,"weaponDamageMax":260,"stats":{"2":47,"3":33,"7":27,"14":443,"16":22},"isBase":true}}}, +{"id":42518,"name":"Hateful Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,52,39,0,0,0,33,0,0,0,0,0,0,513,0,25,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"weaponSpeed":1.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":154,"weaponDamageMax":286,"stats":{"2":52,"3":39,"7":33,"14":513,"16":25},"isBase":true}}}, +{"id":42519,"name":"Deadly Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,63,44,0,0,0,36,0,0,0,0,0,0,576,0,27,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"weaponSpeed":1.9,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":174,"weaponDamageMax":324,"stats":{"2":63,"3":44,"7":36,"14":576,"16":27},"isBase":true}}}, +{"id":42520,"name":"Furious Gladiator's Piercing Touch","icon":"inv_wand_27","type":14,"rangedWeaponType":6,"stats":[0,0,74,52,0,0,0,42,0,0,0,0,0,0,689,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"weaponSpeed":1.9,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":222,"weaponDamageMax":412,"stats":{"2":74,"3":52,"7":42,"14":689,"16":33},"isBase":true}}}, +{"id":42521,"name":"Relentless Gladiator's Piercing Touch","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,83,58,0,0,0,49,0,0,0,0,0,0,780,0,39,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"weaponSpeed":1.9,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"stats":{"2":83,"3":58,"7":49,"14":780,"16":39},"isBase":true}}}, +{"id":42523,"name":"Savage Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"6":29,"16":28},"isBase":true}}}, +{"id":42524,"name":"Hateful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33},"isBase":true}}}, +{"id":42525,"name":"Deadly Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37},"isBase":true}}}, +{"id":42526,"name":"Furious Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,0,0,44,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":96,"3":67,"6":44,"16":47},"isBase":true}}}, +{"id":42527,"name":"Relentless Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,0,0,53,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"6":53,"16":53},"isBase":true}}}, +{"id":42529,"name":"Savage Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,29,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":29,"16":28},"isBase":true}}}, +{"id":42530,"name":"Hateful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,34,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":34,"16":33},"isBase":true}}}, +{"id":42531,"name":"Deadly Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37},"isBase":true}}}, +{"id":42532,"name":"Furious Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,44,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":96,"3":67,"4":44,"16":47},"isBase":true}}}, +{"id":42533,"name":"Relentless Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,53,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"4":53,"16":53},"isBase":true}}}, +{"id":42535,"name":"Savage Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,60,43,0,0,0,36,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"7":36,"16":28},"isBase":true}}}, +{"id":42536,"name":"Hateful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,70,50,0,0,0,43,0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"7":43,"16":33},"isBase":true}}}, +{"id":42537,"name":"Deadly Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,82,56,0,0,0,48,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"7":48,"16":37},"isBase":true}}}, +{"id":42538,"name":"Furious Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,96,67,0,0,0,55,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":96,"3":67,"7":55,"16":44},"isBase":true}}}, +{"id":42539,"name":"Relentless Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,0,0,0,67,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"7":67,"16":53},"isBase":true}}}, +{"id":42549,"name":"Armored Titanium Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[73,0,111,0,0,0,0,0,43,60,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56480}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":73,"2":111,"8":43,"9":60,"22":1901},"isBase":true}}}, +{"id":42550,"name":"Weakness Spectralizers","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,74,150,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56481}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":150,"6":43,"22":896},"isBase":true}}}, +{"id":42551,"name":"Truesight Ice Blinders","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,74,115,0,0,0,44,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56574}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":115,"6":44,"7":60,"22":1333},"isBase":true}}}, +{"id":42552,"name":"Charged Titanium Specs","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[75,0,109,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56483}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":75,"2":109,"6":72,"22":1901},"isBase":true}}}, +{"id":42553,"name":"Visage Liquification Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56484}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":109,"3":74,"6":73,"22":657},"isBase":true}}}, +{"id":42554,"name":"Greensight Gogs","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56486}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":109,"3":74,"6":73,"22":896},"isBase":true}}}, +{"id":42555,"name":"Electroflux Sight Enhancers","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":56487}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":109,"3":74,"6":73,"22":1333},"isBase":true}}}, +{"id":42556,"name":"Savage Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":82,"16":54,"22":6531},"isBase":true}}}, +{"id":42557,"name":"Savage Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"6":29,"16":28,"22":6531},"isBase":true}}}, +{"id":42558,"name":"Hateful Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":96,"16":63,"22":6757},"isBase":true}}}, +{"id":42559,"name":"Deadly Gladiator's Shield Wall","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":108,"16":71,"22":6898},"isBase":true}}}, +{"id":42560,"name":"Furious Gladiator's Shield Wall","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,7189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":133,"16":89,"22":7189},"isBase":true}}}, +{"id":42561,"name":"Relentless Gladiator's Shield Wall","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":152,"16":101,"22":7351},"isBase":true}}}, +{"id":42563,"name":"Hateful Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,70,50,0,0,34,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"6":34,"16":33,"22":6757},"isBase":true}}}, +{"id":42564,"name":"Deadly Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,56,0,0,38,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"6":38,"16":37,"22":6898},"isBase":true}}}, +{"id":42565,"name":"Furious Gladiator's Barrier","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,0,0,44,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,7189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":96,"3":67,"6":44,"16":47,"22":7189},"isBase":true}}}, +{"id":42566,"name":"Relentless Gladiator's Barrier","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,114,80,0,0,53,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"6":53,"16":53,"22":7351},"isBase":true}}}, +{"id":42568,"name":"Savage Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,30,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":30,"16":28,"22":6531},"isBase":true}}}, +{"id":42569,"name":"Hateful Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,70,50,36,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":70,"3":50,"4":36,"16":33,"22":6757},"isBase":true}}}, +{"id":42570,"name":"Deadly Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,56,38,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,6898,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":38,"16":37,"22":6898},"isBase":true}}}, +{"id":42571,"name":"Furious Gladiator's Redoubt","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,46,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,7189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":135,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":135,"stats":{"2":96,"3":67,"4":46,"16":44,"22":7189},"isBase":true}}}, +{"id":42572,"name":"Relentless Gladiator's Redoubt","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,114,80,53,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"4":53,"16":53,"22":7351},"isBase":true}}}, +{"id":42625,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":23,"2":49,"5":12,"6":30,"16":23,"22":1432},"isBase":true}}}, +{"id":42626,"name":"Gladiator's Plate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":28,"2":42,"6":26,"16":21,"22":895},"isBase":true}}}, +{"id":42627,"name":"Gladiator's Plate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":30,"2":52,"6":28,"16":25,"22":1164},"isBase":true}}}, +{"id":42628,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":40,"2":55,"5":12,"6":36,"16":21,"22":1253},"isBase":true}}}, +{"id":42629,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":22,"2":45,"6":23,"16":19,"22":1074},"isBase":true}}}, +{"id":42630,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":32,"2":65,"6":23,"16":23,"22":1432},"isBase":true}}}, +{"id":42631,"name":"Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,48,0,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":32,"2":48,"6":21,"16":21,"22":895},"isBase":true}}}, +{"id":42632,"name":"Gladiator's Scaled Helm","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[32,0,65,0,0,0,23,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":32,"2":65,"6":23,"16":23,"22":1164},"isBase":true}}}, +{"id":42633,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[44,0,65,0,0,0,29,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":44,"2":65,"6":29,"16":29,"22":1253},"isBase":true}}}, +{"id":42634,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[24,0,48,0,0,0,17,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":24,"2":48,"6":17,"16":17,"22":1074},"isBase":true}}}, +{"id":42635,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[0,0,69,19,0,0,30,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":19,"6":30,"16":27,"22":1432},"isBase":true}}}, +{"id":42636,"name":"Gladiator's Ornamented Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,53,24,0,0,24,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"6":24,"16":14,"22":895},"isBase":true}}}, +{"id":42637,"name":"Gladiator's Ornamented Headcover","icon":"inv_helmet_22","type":1,"armorType":4,"stats":[0,0,73,26,0,0,21,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":73,"3":26,"6":21,"16":32,"22":1164},"isBase":true}}}, +{"id":42638,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[0,0,72,32,0,0,32,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":72,"3":32,"6":32,"16":31,"22":1253},"isBase":true}}}, +{"id":42639,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,50,16,0,0,23,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[4],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":50,"3":16,"6":23,"16":20,"22":1074},"isBase":true}}}, +{"id":42642,"name":"Titanium Impact Band","icon":"inv_jewelry_ring_55","type":11,"stats":[0,33,86,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56496}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":33,"2":86,"6":41},"isBase":true}}}, +{"id":42643,"name":"Titanium Earthguard Ring","icon":"inv_jewelry_ring_59","type":11,"stats":[50,0,63,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56497}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":63,"9":44},"isBase":true}}}, +{"id":42644,"name":"Titanium Spellshock Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,73,42,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56498}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"3":42,"6":42},"isBase":true}}}, +{"id":42645,"name":"Titanium Impact Choker","icon":"inv_jewelry_necklace_14","type":2,"stats":[0,33,86,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56499}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":33,"2":86,"6":42},"isBase":true}}}, +{"id":42646,"name":"Titanium Earthguard Chain","icon":"inv_jewelry_necklace_33","type":2,"stats":[49,0,63,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56500}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":49,"2":63,"9":34,"23":100},"isBase":true}}}, +{"id":42647,"name":"Titanium Spellshock Necklace","icon":"inv_jewelry_necklace_35","type":2,"stats":[0,0,73,42,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":56501}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"3":42,"6":41},"isBase":true}}}, +{"id":42654,"name":"Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[23,0,49,0,0,12,30,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,1432,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":23,"2":49,"5":12,"6":30,"16":23,"22":1432},"isBase":true}}}, +{"id":42655,"name":"Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[28,0,42,0,0,0,26,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":28,"2":42,"6":26,"16":21,"22":895},"isBase":true}}}, +{"id":42656,"name":"Gladiator's Dreadplate Helm","icon":"inv_helmet_07","type":1,"armorType":4,"stats":[30,0,52,0,0,0,28,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,1164,0,0,0,0],"gemSockets":[1,4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":30,"2":52,"6":28,"16":25,"22":1164},"isBase":true}}}, +{"id":42657,"name":"Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[40,0,55,0,0,12,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,1253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":40,"2":55,"5":12,"6":36,"16":21,"22":1253},"isBase":true}}}, +{"id":42658,"name":"Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[22,0,45,0,0,0,23,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,1074,0,0,0,0],"gemSockets":[2,4],"socketBonus":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[9],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":22,"2":45,"6":23,"16":19,"22":1074},"isBase":true}}}, +{"id":42659,"name":"Gladiator's Mail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":27,"4":18,"6":23,"16":25,"22":997},"isBase":true}}}, +{"id":42660,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":21,"16":21,"22":623},"isBase":true}}}, +{"id":42661,"name":"Gladiator's Mail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":810},"isBase":true}}}, +{"id":42662,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,69,36,16,0,22,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"4":16,"6":22,"16":29,"22":873},"isBase":true}}}, +{"id":42663,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,44,19,16,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":44,"3":19,"4":16,"6":20,"16":20,"22":748},"isBase":true}}}, +{"id":42664,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,0,57,27,18,0,23,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":27,"4":18,"6":23,"16":25,"22":997},"isBase":true}}}, +{"id":42665,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,47,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":21,"16":21,"22":623},"isBase":true}}}, +{"id":42666,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,0,63,28,0,0,17,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":63,"3":28,"6":17,"16":30,"22":810},"isBase":true}}}, +{"id":42667,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,70,36,16,0,21,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":36,"4":16,"6":21,"16":29,"22":873},"isBase":true}}}, +{"id":42668,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,0,46,19,16,0,18,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":46,"3":19,"4":16,"6":18,"16":20,"22":748},"isBase":true}}}, +{"id":42669,"name":"Gladiator's Linked Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[29,0,51,0,0,20,28,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":29,"2":51,"5":20,"6":28,"16":26,"22":997},"isBase":true}}}, +{"id":42670,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[25,0,40,0,0,0,27,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":25,"2":40,"6":27,"16":21,"22":623},"isBase":true}}}, +{"id":42671,"name":"Gladiator's Linked Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[34,0,51,0,0,0,26,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"0":34,"2":51,"6":26,"16":30,"22":810},"isBase":true}}}, +{"id":42672,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,42,54,0,0,0,36,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":42,"2":54,"6":36,"16":28,"22":873},"isBase":true}}}, +{"id":42673,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[19,0,42,0,0,12,22,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[7],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"0":19,"2":42,"5":12,"6":22,"16":21,"22":748},"isBase":true}}}, +{"id":42674,"name":"Gladiator's Chain Armor","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,27,57,0,0,0,18,13,0,0,0,0,0,0,0,0,20,0,0,0,0,0,997,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":27,"2":57,"6":18,"7":13,"16":20,"22":997},"isBase":true}}}, +{"id":42675,"name":"Gladiator's Chain Gauntlets","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,26,42,0,0,0,14,13,0,0,0,0,0,0,0,0,18,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[2],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":26,"2":42,"6":14,"7":13,"16":18,"22":623},"isBase":true}}}, +{"id":42676,"name":"Gladiator's Chain Helm","icon":"inv_helmet_09","type":1,"armorType":3,"stats":[0,34,57,0,0,0,20,18,0,0,0,0,0,0,0,0,20,0,0,0,0,0,810,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":34,"2":57,"6":20,"7":18,"16":20,"22":810},"isBase":true}}}, +{"id":42677,"name":"Gladiator's Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,35,56,0,0,0,19,19,0,0,0,0,0,0,0,0,31,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[2],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":35,"2":56,"6":19,"7":19,"16":31,"22":873},"isBase":true}}}, +{"id":42678,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_29","type":3,"armorType":3,"stats":[0,27,38,0,0,0,11,9,0,0,0,0,0,0,0,0,18,0,0,0,0,0,748,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[2],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":38,"6":11,"7":9,"16":18,"22":748},"isBase":true}}}, +{"id":42680,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,55,28,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":28,"4":16,"16":22,"22":414,"23":11},"isBase":true}}}, +{"id":42681,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,72,34,16,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":72,"3":34,"4":16,"16":28,"22":538,"23":11},"isBase":true}}}, +{"id":42682,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,75,38,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":75,"3":38,"4":26,"16":29,"22":580,"23":17},"isBase":true}}}, +{"id":42683,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,48,21,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":48,"3":21,"4":10,"16":20,"22":497,"23":11},"isBase":true}}}, +{"id":42684,"name":"Gladiator's Kodohide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,65,34,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":65,"3":34,"4":16,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":42685,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,0,48,32,16,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":48,"3":32,"4":16,"16":22,"22":414,"23":11},"isBase":true}}}, +{"id":42686,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,0,62,37,18,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":62,"3":37,"4":18,"16":27,"22":538,"23":11},"isBase":true}}}, +{"id":42687,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,0,66,43,26,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":66,"3":43,"4":26,"16":29,"22":580,"23":17},"isBase":true}}}, +{"id":42688,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,0,41,24,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":41,"3":24,"4":10,"16":20,"22":497,"23":11},"isBase":true}}}, +{"id":42689,"name":"Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,0,56,39,16,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":56,"3":39,"4":16,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":42690,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,30,55,6,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,414,11,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":30,"2":55,"3":6,"16":20,"22":414,"23":11},"isBase":true}}}, +{"id":42691,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,33,64,21,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,538,11,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":33,"2":64,"3":21,"16":24,"22":538,"23":11},"isBase":true}}}, +{"id":42692,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,40,79,10,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,580,17,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":40,"2":79,"3":10,"16":28,"22":580,"23":17},"isBase":true}}}, +{"id":42693,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,28,48,13,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,497,11,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":28,"2":48,"3":13,"16":18,"22":497,"23":11},"isBase":true}}}, +{"id":42694,"name":"Gladiator's Dragonhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,32,61,13,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,662,11,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[1],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":32,"2":61,"3":13,"16":26,"22":662,"23":11},"isBase":true}}}, +{"id":42695,"name":"Gladiator's Leather Gloves","icon":"inv_gauntlets_28","type":7,"armorType":2,"stats":[0,27,46,0,0,0,14,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,414,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[6],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":27,"2":46,"6":14,"16":23,"22":414},"isBase":true}}}, +{"id":42696,"name":"Gladiator's Leather Helm","icon":"inv_helmet_30","type":1,"armorType":2,"stats":[0,34,60,0,0,0,13,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,538,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":34,"2":60,"6":13,"16":23,"22":538},"isBase":true}}}, +{"id":42697,"name":"Gladiator's Leather Legguards","icon":"inv_pants_cloth_05","type":9,"armorType":2,"stats":[0,36,64,0,0,0,19,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":36,"2":64,"6":19,"16":36,"22":580},"isBase":true}}}, +{"id":42698,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,29,39,0,0,0,21,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,497,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[6],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"1":29,"2":39,"6":21,"16":23,"22":497},"isBase":true}}}, +{"id":42699,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,33,54,0,0,0,12,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,662,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[6],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"1":33,"2":54,"6":12,"16":23,"22":662},"isBase":true}}}, +{"id":42703,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"16":28,"22":299},"isBase":true}}}, +{"id":42704,"name":"Gladiator's Mooncloth Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,70,25,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":25,"16":30,"22":389},"isBase":true}}}, +{"id":42705,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,28,28,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":79,"3":28,"4":28,"16":30,"22":419},"isBase":true}}}, +{"id":42706,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":19,"16":24,"22":359},"isBase":true}}}, +{"id":42707,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,70,21,16,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":70,"3":21,"4":16,"16":25,"22":479},"isBase":true}}}, +{"id":42708,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_15","type":7,"armorType":1,"stats":[0,0,53,24,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":53,"3":24,"16":28,"22":299},"isBase":true}}}, +{"id":42709,"name":"Gladiator's Satin Hood","icon":"inv_helmet_30","type":1,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":68,"3":27,"16":30,"22":389},"isBase":true}}}, +{"id":42710,"name":"Gladiator's Satin Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":79,"3":42,"16":30,"22":419},"isBase":true}}}, +{"id":42711,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,55,19,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,359,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":55,"3":19,"16":24,"22":359},"isBase":true}}}, +{"id":42712,"name":"Gladiator's Satin Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,68,27,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":68,"3":27,"16":28,"22":479},"isBase":true}}}, +{"id":42713,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,46,27,0,0,13,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[3],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":46,"3":27,"6":13,"16":21,"22":359},"isBase":true}}}, +{"id":42714,"name":"Gladiator's Silk Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":389},"isBase":true}}}, +{"id":42715,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[3],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":45,"3":27,"6":21,"16":21,"22":299},"isBase":true}}}, +{"id":42716,"name":"Gladiator's Silk Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,59,27,0,0,25,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":59,"3":27,"6":25,"16":24,"22":479},"isBase":true}}}, +{"id":42717,"name":"Gladiator's Silk Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[3],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"6":28,"16":30,"22":419},"isBase":true}}}, +{"id":42718,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_19","type":3,"armorType":1,"stats":[0,0,47,27,0,0,12,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,359,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":47,"3":27,"6":12,"16":21,"22":359},"isBase":true}}}, +{"id":42719,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,57,32,0,0,18,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,389,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":57,"3":32,"6":18,"16":30,"22":389},"isBase":true}}}, +{"id":42720,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_19","type":7,"armorType":1,"stats":[0,0,45,27,0,0,21,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,299,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":61,"ilvl":123,"quality":4,"classAllowlist":[8],"scalingOptions":{"123":{"randPropPoints":61,"stats":{"2":45,"3":27,"6":21,"16":21,"22":299},"isBase":true}}}, +{"id":42721,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_leather_01","type":5,"armorType":1,"stats":[0,0,56,27,0,0,27,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":56,"3":27,"6":27,"16":24,"22":479},"isBase":true}}}, +{"id":42722,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_07","type":9,"armorType":1,"stats":[0,0,69,36,0,0,28,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":83,"ilvl":123,"quality":4,"classAllowlist":[8],"scalingOptions":{"123":{"randPropPoints":83,"stats":{"2":69,"3":36,"6":28,"16":30,"22":419},"isBase":true}}}, +{"id":42723,"name":"Ornate Saronite Bracers","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,59,38,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56549}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":59,"3":38,"6":25,"16":26,"22":969},"isBase":true}}}, +{"id":42724,"name":"Ornate Saronite Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56553}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":1385},"isBase":true}}}, +{"id":42725,"name":"Ornate Saronite Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56555}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"6":46,"16":46,"22":2215},"isBase":true}}}, +{"id":42726,"name":"Ornate Saronite Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56554}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"4":46,"16":46,"22":1938},"isBase":true}}}, +{"id":42727,"name":"Ornate Saronite Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56550}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"6":34,"16":34,"22":1661},"isBase":true}}}, +{"id":42728,"name":"Ornate Saronite Skullshield","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56556}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"6":46,"16":46,"22":1800},"isBase":true}}}, +{"id":42729,"name":"Ornate Saronite Waistguard","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56551}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":1246},"isBase":true}}}, +{"id":42730,"name":"Ornate Saronite Walkers","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Ornate Saronite Battlegear","setId":814,"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":56552}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":1523},"isBase":true}}}, +{"id":42731,"name":"Leggings of Visceral Strikes","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,69,101,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60660}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":101,"6":68,"22":886},"isBase":true}}}, +{"id":42758,"name":"Time-Twisted Wraps","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,56,38,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":56,"3":38,"7":37,"22":349},"isBase":true}}}, +{"id":42760,"name":"Sandals of Mystical Evolution","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,72,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":72,"3":36,"4":36,"22":384},"isBase":true}}}, +{"id":42761,"name":"Time-Stop Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,37,55,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":37,"2":55,"6":38,"22":484},"isBase":true}}}, +{"id":42762,"name":"Treads of Torn Future","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,44,62,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,533,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":44,"2":62,"6":21,"22":533},"isBase":true}}}, +{"id":42763,"name":"Bindings of Sabotage","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,38,66,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":38,"2":66,"6":27,"22":732},"isBase":true}}}, +{"id":42765,"name":"Gauntlets of the Disturbed Giant","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[27,0,57,0,0,21,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"0":27,"2":57,"5":21,"9":38,"22":1087},"isBase":true}}}, +{"id":42766,"name":"Spiked Treads of Mutation","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,0,54,39,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":54,"3":39,"4":36,"22":805},"isBase":true}}}, +{"id":42767,"name":"Invigorating Sabatons","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,54,40,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":54,"3":40,"6":35,"22":1195},"isBase":true}}}, +{"id":42768,"name":"Boots of the Unbowed Protector","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[38,0,55,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"0":38,"2":55,"9":37,"22":1195},"isBase":true}}}, +{"id":42785,"name":"Mammoth Sinew Cinch","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,54,50,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":54,"3":50,"4":30,"22":298},"isBase":true}}}, +{"id":42786,"name":"Daschal's Serrated Blade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"weaponSpeed":2.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"stats":{"6":28,"12":58,"13":58},"isBase":true}}}, +{"id":42787,"name":"Ironwool Bindings","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,30,29,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"3":30,"4":29,"6":29,"22":232},"isBase":true}}}, +{"id":42788,"name":"Frosthowl Cinch","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,74,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":74,"3":50,"22":298},"isBase":true}}}, +{"id":42789,"name":"Boots of the Howling Winds","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,56,43,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":56,"3":43,"6":36,"22":364},"isBase":true}}}, +{"id":42790,"name":"K3 Surgeon's Gloves","icon":"inv_misc_surgeonglove_01","type":7,"armorType":1,"stats":[0,0,0,53,26,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":53,"4":26,"7":34,"22":331},"isBase":true}}}, +{"id":42791,"name":"Ring of Order","icon":"inv_jewelry_ring_26","type":11,"stats":[0,0,49,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":49,"3":40},"isBase":true}}}, +{"id":42792,"name":"Vestments of Dun Niffelem","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,88,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":88,"3":62,"22":529},"isBase":true}}}, +{"id":42793,"name":"Locket of Snowcrest","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,35,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":35,"3":34,"4":29},"isBase":true}}}, +{"id":42794,"name":"Hardened Vine of the Mauler","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,71,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":492,"weaponDamageMax":738,"weaponSpeed":3.1,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":492,"weaponDamageMax":738,"stats":{"1":71,"2":93},"isBase":true}}}, +{"id":42795,"name":"Leggings of Renewed Hope","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,0,71,36,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"3":71,"4":36,"6":29,"22":463},"isBase":true}}}, +{"id":42796,"name":"Lantern of Enchanted Flame","icon":"inv_misc_lantern_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,59,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":59,"3":32},"isBase":true}}}, +{"id":42798,"name":"Mammoth Hide Galoshes","icon":"inv_boots_cloth_17","type":10,"armorType":2,"stats":[0,0,38,55,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":38,"3":55,"4":31,"22":509},"isBase":true}}}, +{"id":42799,"name":"Snowblind Butcher","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,59,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"stats":{"6":59,"7":72},"isBase":true}}}, +{"id":42800,"name":"Gale-Wind Guard","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,48,44,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":48,"3":44,"6":39,"22":556},"isBase":true}}}, +{"id":42801,"name":"Nomadic Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,32,34,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":32,"2":34,"6":30,"22":324},"isBase":true}}}, +{"id":42802,"name":"Hardened Whipping Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,55,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":55,"2":63,"22":417},"isBase":true}}}, +{"id":42803,"name":"Buckshot-Proof Battlesurgeon's Protector","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,0,85,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":85,"3":62,"22":741},"isBase":true}}}, +{"id":42804,"name":"Spiked Iceclimber's Boots","icon":"inv_boots_chain_13","type":10,"armorType":2,"stats":[0,53,39,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":53,"2":39,"6":34,"22":509},"isBase":true}}}, +{"id":42805,"name":"Njormeld's Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,57,41,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":57,"2":41,"5":22,"22":556},"isBase":true}}}, +{"id":42806,"name":"Storm-Weathered Cuffs","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,37,33,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":37,"2":33,"6":27,"22":324},"isBase":true}}}, +{"id":42807,"name":"Blade of the Inception","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,0,32,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"2":32,"6":33},"isBase":true}}}, +{"id":42808,"name":"Bouldercrag's Pendant","icon":"inv_jewelry_necklace_23","type":2,"stats":[0,0,24,0,0,0,43,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":24,"6":43,"12":40,"13":40},"isBase":true}}}, +{"id":42809,"name":"Bloodied Leather Gloves","icon":"inv_misc_surgeonglove_01","type":7,"armorType":2,"stats":[0,38,49,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":38,"2":49,"8":41,"22":463},"isBase":true}}}, +{"id":42810,"name":"Wooly Cowl","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,74,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":74,"3":61,"22":916},"isBase":true}}}, +{"id":42811,"name":"Twisted Reflection","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,37,0,0,0,31,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":37,"6":31,"14":302},"isBase":true}}}, +{"id":42812,"name":"Commemorative K3 Expedition Ring","icon":"inv_jewelry_ring_15","type":11,"stats":[0,0,24,0,0,0,0,20,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":24,"7":20,"12":86,"13":86},"isBase":true}}}, +{"id":42813,"name":"Chestplate of the Northern Ranger","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,61,56,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":61,"2":56,"5":29,"22":1127},"isBase":true}}}, +{"id":42814,"name":"Broken Chastity Belt","icon":"inv_belt_34","type":8,"armorType":3,"stats":[0,0,57,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":57,"3":38,"4":38,"22":634},"isBase":true}}}, +{"id":42815,"name":"Mammoth Mukluks","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,0,46,52,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":46,"3":52,"7":32,"22":775},"isBase":true}}}, +{"id":42816,"name":"Cuffs of Invention","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,24,35,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":24,"2":35,"6":39,"22":493},"isBase":true}}}, +{"id":42817,"name":"Reforged Chain Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,54,63,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":54,"2":63,"6":42,"22":986},"isBase":true}}}, +{"id":42818,"name":"Stormstalker's Clutch","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,52,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":52,"2":71,"22":634},"isBase":true}}}, +{"id":42819,"name":"Maker's Touch","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,41,0,30,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":128,"weaponDamageMax":238,"weaponSpeed":2.4,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":128,"weaponDamageMax":238,"stats":{"2":41,"4":30,"14":302},"isBase":true}}}, +{"id":42820,"name":"Mantle of Bouldercrag","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,45,53,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":45,"3":53,"4":30,"22":845},"isBase":true}}}, +{"id":42821,"name":"Belt of the Stormforged","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,45,52,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":45,"2":52,"6":36,"22":634},"isBase":true}}}, +{"id":42822,"name":"K3 Pachyderm Prevention Device","icon":"inv_weapon_rifle_05","type":14,"rangedWeaponType":3,"stats":[0,76,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":361,"weaponDamageMax":671,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":361,"weaponDamageMax":671,"stats":{"1":76,"5":57},"isBase":true}}}, +{"id":42823,"name":"Ricket's Beatstick","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,31,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"stats":{"1":31,"6":25},"isBase":true}}}, +{"id":42824,"name":"Maker's Edge","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[60,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":539,"weaponDamageMax":810,"weaponSpeed":3.4,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":539,"weaponDamageMax":810,"stats":{"0":60,"7":72},"isBase":true}}}, +{"id":42825,"name":"Polished Tusk Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,43,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":30,"2":43,"9":29,"22":726},"isBase":true}}}, +{"id":42826,"name":"Goblin Damage Absorber","icon":"inv_belt_35","type":8,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,549,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":39,"2":60,"22":934,"23":549},"isBase":true}}}, +{"id":42827,"name":"Rockshaper's Resolve","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[53,0,80,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":53,"2":80,"9":37,"22":1660},"isBase":true}}}, +{"id":42828,"name":"Garm's Ward","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,110,0,40,0,39,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":190,"weaponDamageMax":286,"weaponSpeed":2.4,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":190,"weaponDamageMax":286,"stats":{"2":110,"4":40,"6":39,"14":304},"isBase":true}}}, +{"id":42829,"name":"Plated Skullguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,60,72,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":60,"3":72,"6":26,"22":1349},"isBase":true}}}, +{"id":42830,"name":"Ring of Jokkum","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,62,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":62,"3":32,"22":726},"isBase":true}}}, +{"id":42831,"name":"Maiden's Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,25,32,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":85,"weaponDamageMax":159,"weaponSpeed":1.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":85,"weaponDamageMax":159,"stats":{"6":25,"7":32,"14":302},"isBase":true}}}, +{"id":42832,"name":"Coldblooded Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[61,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":61,"2":51,"6":34,"22":1453},"isBase":true}}}, +{"id":42833,"name":"Jawbreakers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[43,0,55,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":43,"2":55,"5":36,"22":1141},"isBase":true}}}, +{"id":42834,"name":"Mantle of Long Winter","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[29,0,42,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":29,"2":42,"6":55,"22":1245},"isBase":true}}}, +{"id":42835,"name":"Backhanded Grips","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[41,0,0,0,0,0,39,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":41,"6":39,"7":38,"22":1038},"isBase":true}}}, +{"id":42836,"name":"Rockshaper Stompers","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[55,0,45,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":55,"2":45,"6":29,"22":1141},"isBase":true}}}, +{"id":42841,"name":"Leggings of the Frozen Wastes","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,89,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":89,"3":56,"22":463},"isBase":true}}}, +{"id":42842,"name":"Fur-Lined Shoulder Warmers","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,0,43,0,0,36,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":43,"6":36,"7":37,"22":397},"isBase":true}}}, +{"id":42843,"name":"Mildred's Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,66,68,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":66,"3":68,"5":29,"22":430},"isBase":true}}}, +{"id":42844,"name":"Robes of Lightning","icon":"inv_chest_cloth_25","type":5,"armorType":1,"stats":[0,0,110,65,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":110,"3":65,"5":55,"22":726},"isBase":true}}}, +{"id":42845,"name":"Brunnhildar Runed Ring","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,30,26,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":30,"3":26,"5":39},"isBase":true}}}, +{"id":42846,"name":"Jormungar Galoshes","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,41,34,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":41,"3":34,"4":52,"22":364},"isBase":true}}}, +{"id":42847,"name":"Terrace Gazer's Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,71,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":71,"3":38,"6":30,"22":331},"isBase":true}}}, +{"id":42848,"name":"Razor-Sharp Icicle","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":2,"stats":[0,27,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"1":27,"6":30},"isBase":true}}}, +{"id":42849,"name":"Flowing Valkyrion Robes","icon":"inv_chest_cloth_30","type":5,"armorType":1,"stats":[0,0,60,63,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":60,"3":63,"4":35,"22":529},"isBase":true}}}, +{"id":42850,"name":"Flamebringer's Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,36,70,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":36,"3":70,"6":51,"22":430},"isBase":true}}}, +{"id":42856,"name":"Frosthowl Amulet","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,57,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":57,"3":35},"isBase":true}}}, +{"id":42857,"name":"Thorim's Riding Crop","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,95,0,0,0,0,70,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"stats":{"2":95,"7":70,"14":304},"isBase":true}}}, +{"id":42858,"name":"Crossbow of the Storms","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,51,0,0,0,0,0,158,158,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"weaponSpeed":2.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"stats":{"6":51,"12":158,"13":158},"isBase":true}}}, +{"id":42859,"name":"Thorim's Crusher","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[62,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":523,"weaponDamageMax":786,"weaponSpeed":3.3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":523,"weaponDamageMax":786,"stats":{"0":62,"2":106},"isBase":true}}}, +{"id":42860,"name":"Broodmother's Protector","icon":"inv_shield_49","type":13,"weaponType":7,"handType":3,"stats":[0,0,44,34,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":44,"3":34,"6":23,"22":4586},"isBase":true}}}, +{"id":42861,"name":"Jormungar Fang","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,29,0,0,0,0,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"5":29,"12":56,"13":56},"isBase":true}}}, +{"id":42862,"name":"Hyldnir Painbringer","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,21,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"weaponSpeed":2.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"stats":{"1":21,"6":33},"isBase":true}}}, +{"id":42864,"name":"Frozen Mood Ring","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,0,0,0,0,25,41,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"6":25,"7":41,"12":32,"13":32},"isBase":true}}}, +{"id":42865,"name":"Frost Hardened Bracers","icon":"inv_bracer_05","type":6,"armorType":2,"stats":[0,0,37,31,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":37,"3":31,"6":28,"22":324},"isBase":true}}}, +{"id":42866,"name":"Fur-Lined Mittens","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,0,0,41,33,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":41,"4":33,"6":38,"22":463},"isBase":true}}}, +{"id":42867,"name":"Cured Proto-Drake Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,51,68,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":51,"2":68,"6":29,"22":648},"isBase":true}}}, +{"id":42868,"name":"Hyldnir Headcracker","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,25,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"weaponSpeed":2.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"stats":{"6":25,"8":31},"isBase":true}}}, +{"id":42869,"name":"Yeti Hide Mantle","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,43,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":43,"2":81,"22":556},"isBase":true}}}, +{"id":42870,"name":"Hibernal Chestguard","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,39,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":39,"3":52,"4":59,"22":741},"isBase":true}}}, +{"id":42871,"name":"Bracer of Tarbash","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,32,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":32,"2":60,"22":324},"isBase":true}}}, +{"id":42872,"name":"Proto-Drake Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,59,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":59,"2":88,"22":602},"isBase":true}}}, +{"id":42874,"name":"Wooly Stompers","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,55,0,0,0,0,25,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":55,"6":25,"7":31,"22":509},"isBase":true}}}, +{"id":42875,"name":"Worg-Hide Pants","icon":"inv_pants_leather_07","type":9,"armorType":2,"stats":[0,56,51,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":56,"2":51,"6":43,"22":648},"isBase":true}}}, +{"id":42876,"name":"Light-Touched Mantle","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,44,43,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":44,"3":43,"6":28,"22":1245},"isBase":true}}}, +{"id":42877,"name":"Chestguard of the Frozen Ascent","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,59,56,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":59,"3":56,"4":40,"22":1660},"isBase":true}}}, +{"id":42878,"name":"Vrykul Training Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[40,0,59,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":40,"2":59,"6":56,"22":1349},"isBase":true}}}, +{"id":42879,"name":"Crown of Hyldnir","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[53,0,79,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":53,"2":79,"9":37,"22":1349},"isBase":true}}}, +{"id":42880,"name":"Astrid's Riding Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[55,0,42,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":55,"2":42,"6":29,"22":1038},"isBase":true}}}, +{"id":42881,"name":"Bjornrittar's Chilled Legguards","icon":"inv_pants_plate_01","type":9,"armorType":4,"stats":[0,0,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":71,"3":72,"22":1453},"isBase":true}}}, +{"id":42882,"name":"Thorim's Grasp","icon":"inv_belt_27","type":8,"armorType":4,"stats":[55,0,44,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":55,"2":44,"5":28,"22":934},"isBase":true}}}, +{"id":42883,"name":"Iva's Boots","icon":"inv_boots_plate_04","type":10,"armorType":4,"stats":[0,0,64,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":64,"3":55,"22":1141},"isBase":true}}}, +{"id":42884,"name":"Steel-Tipped Snowboots","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":39,"2":60,"10":39,"22":1141},"isBase":true}}}, +{"id":42885,"name":"Mountaineer's Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[56,0,0,0,0,0,40,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":56,"6":40,"8":39,"22":1349},"isBase":true}}}, +{"id":42886,"name":"Gloves of the Howling Peaks","icon":"inv_gauntlets_26","type":7,"armorType":3,"stats":[0,40,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":40,"2":87,"22":704},"isBase":true}}}, +{"id":42887,"name":"Pauldrons of the Ascent","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,43,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":43,"2":81,"22":845},"isBase":true}}}, +{"id":42888,"name":"Summit Bracers","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,27,24,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":27,"3":24,"4":40,"22":493},"isBase":true}}}, +{"id":42889,"name":"Mildred's Grasp","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,40,0,0,0,0,32,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":40,"6":32,"7":43,"22":634},"isBase":true}}}, +{"id":42890,"name":"Proto-Scale Pants","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,44,61,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":44,"3":61,"4":38,"22":986},"isBase":true}}}, +{"id":42891,"name":"Brunnhildar Snowkickers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,41,57,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":41,"2":57,"6":33,"22":775},"isBase":true}}}, +{"id":42892,"name":"Scaled Proto-Wristguard","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,0,42,31,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":42,"3":31,"6":25,"22":493},"isBase":true}}}, +{"id":42893,"name":"Shoulders of Earthen Might","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,27,33,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":27,"2":33,"5":57,"22":845},"isBase":true}}}, +{"id":42895,"name":"Scaled Jormungar Protector","icon":"inv_helmet_106","type":1,"armorType":3,"stats":[0,61,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":61,"2":77,"22":916},"isBase":true}}}, +{"id":42896,"name":"Valkyrion Tracker's Chestguard","icon":"inv_chest_chain_08","type":5,"armorType":3,"stats":[0,61,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":61,"2":51,"6":34,"22":1127},"isBase":true}}}, +{"id":42987,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":90},"isBase":true}}}, +{"id":42988,"name":"Darkmoon Card: Illusion","icon":"inv_inscription_tarotillusion","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":85},"isBase":true}}}, +{"id":42989,"name":"Darkmoon Card: Berserker!","icon":"inv_inscription_tarotberserker","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":100},"isBase":true}}}, +{"id":42990,"name":"Darkmoon Card: Death","icon":"inv_inscription_tarotdeath","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":85},"isBase":true}}}, +{"id":43068,"name":"Blessed Spaulders of Undead Slaying","icon":"inv_shoulder_21","type":3,"armorType":4,"stats":[30,0,45,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Battlegear of Undead Slaying","setId":784,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":30,"2":45,"7":29,"22":1054},"isBase":true}}}, +{"id":43069,"name":"Blessed Breastplate of Undead Slaying","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[41,0,58,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Battlegear of Undead Slaying","setId":784,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":41,"2":58,"7":40,"22":1405},"isBase":true}}}, +{"id":43070,"name":"Blessed Gauntlets of Undead Slaying","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[32,0,45,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Battlegear of Undead Slaying","setId":784,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"0":32,"2":45,"7":27,"22":878},"isBase":true}}}, +{"id":43071,"name":"Blessed Legplates of Undead Slaying","icon":"inv_pants_plate_12","type":9,"armorType":4,"stats":[41,0,59,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1230,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Battlegear of Undead Slaying","setId":784,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"0":41,"2":59,"7":39,"22":1230},"isBase":true}}}, +{"id":43072,"name":"Blessed Robe of Undead Cleansing","icon":"inv_chest_cloth_12","type":5,"armorType":1,"stats":[0,0,55,38,24,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Regalia of Undead Cleansing","setId":781,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":55,"3":38,"4":24,"7":31,"22":460},"isBase":true}}}, +{"id":43073,"name":"Blessed Gloves of Undead Cleansing","icon":"inv_gauntlets_27","type":7,"armorType":1,"stats":[0,0,61,37,22,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Regalia of Undead Cleansing","setId":781,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":61,"3":37,"4":22,"7":30,"22":287},"isBase":true}}}, +{"id":43074,"name":"Blessed Mantle of Undead Cleansing","icon":"inv_shoulder_05","type":3,"armorType":1,"stats":[0,0,43,27,18,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Regalia of Undead Cleansing","setId":781,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"2":43,"3":27,"4":18,"7":22,"22":345},"isBase":true}}}, +{"id":43075,"name":"Blessed Trousers of Undead Cleansing","icon":"inv_pants_01","type":9,"armorType":1,"stats":[0,0,51,38,29,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Regalia of Undead Cleansing","setId":781,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"2":51,"3":38,"4":29,"7":30,"22":402},"isBase":true}}}, +{"id":43076,"name":"Blessed Tunic of Undead Slaying","icon":"inv_chest_cloth_05","type":5,"armorType":2,"stats":[0,39,69,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Undead Slayer's Blessed Armor","setId":782,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":39,"2":69,"7":31,"22":642},"isBase":true}}}, +{"id":43077,"name":"Blessed Shoulderpads of Undead Slaying","icon":"inv_shoulder_12","type":3,"armorType":2,"stats":[0,22,53,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Undead Slayer's Blessed Armor","setId":782,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":22,"2":53,"7":29,"22":481},"isBase":true}}}, +{"id":43078,"name":"Blessed Grips of Undead Slaying","icon":"inv_gauntlets_47","type":7,"armorType":2,"stats":[0,29,57,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Undead Slayer's Blessed Armor","setId":782,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":29,"2":57,"7":17,"22":401},"isBase":true}}}, +{"id":43079,"name":"Blessed Leggings of Undead Slaying","icon":"inv_pants_cloth_21","type":9,"armorType":2,"stats":[0,39,64,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Undead Slayer's Blessed Armor","setId":782,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":39,"2":64,"7":38,"22":561},"isBase":true}}}, +{"id":43080,"name":"Blessed Hauberk of Undead Slaying","icon":"inv_chest_chain_11","type":5,"armorType":3,"stats":[0,29,59,0,0,0,29,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Garb of the Undead Slayer","setId":783,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":29,"2":59,"6":29,"7":37,"22":974},"isBase":true}}}, +{"id":43081,"name":"Blessed Pauldrons of Undead Slaying","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,22,45,0,0,0,18,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Garb of the Undead Slayer","setId":783,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":22,"2":45,"6":18,"7":28,"22":730},"isBase":true}}}, +{"id":43082,"name":"Blessed Handguards of Undead Slaying","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,28,43,0,0,0,21,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":57,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Garb of the Undead Slayer","setId":783,"scalingOptions":{"115":{"randPropPoints":57,"stats":{"1":28,"2":43,"6":21,"7":20,"22":609},"isBase":true}}}, +{"id":43083,"name":"Blessed Greaves of Undead Slaying","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,31,56,0,0,0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":77,"ilvl":115,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Blessed Garb of the Undead Slayer","setId":783,"scalingOptions":{"115":{"randPropPoints":77,"stats":{"1":31,"2":56,"6":25,"7":38,"22":852},"isBase":true}}}, +{"id":43085,"name":"Royal Crest of Lordaeron","icon":"inv_shield_58","type":13,"weaponType":7,"handType":3,"stats":[38,0,75,0,0,25,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":38,"2":75,"5":25,"9":49,"22":6757},"isBase":true}}}, +{"id":43129,"name":"Razorstrike Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,63,102,0,0,0,46,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60649}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":63,"2":102,"6":46,"7":51,"22":1535},"isBase":true}}}, +{"id":43130,"name":"Virulent Spaulders","icon":"inv_shoulder_69","type":3,"armorType":3,"stats":[0,47,73,0,0,0,34,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60651}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":47,"2":73,"6":34,"7":38,"22":1151},"isBase":true}}}, +{"id":43131,"name":"Eaglebane Bracers","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,41,82,0,0,34,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60652}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":41,"2":82,"5":34,"6":32,"22":672},"isBase":true}}}, +{"id":43132,"name":"Nightshock Hood","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,107,63,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60655}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":107,"3":63,"6":67,"22":1247},"isBase":true}}}, +{"id":43133,"name":"Nightshock Girdle","icon":"inv_belt_22","type":8,"armorType":3,"stats":[0,0,78,46,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60658}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":78,"3":46,"6":50,"22":864},"isBase":true}}}, +{"id":43160,"name":"Leggings of Fastidious Decapitation","icon":"inv_pants_14","type":9,"armorType":1,"stats":[0,0,95,52,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"2":95,"3":52,"4":33,"22":501},"isBase":true}}}, +{"id":43161,"name":"Legguards of Solemn Revenge","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,96,50,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,697,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"2":96,"3":50,"6":36,"22":697},"isBase":true}}}, +{"id":43162,"name":"Ceremonial Pike Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,73,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"2":73,"3":48,"4":56,"22":1054},"isBase":true}}}, +{"id":43163,"name":"Legplates of the Vengeful Mendicant","icon":"inv_pants_plate_13","type":9,"armorType":4,"stats":[0,0,75,51,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1566,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":158,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"158":{"randPropPoints":100,"stats":{"2":75,"3":51,"6":52,"22":1566},"isBase":true}}}, +{"id":43164,"name":"Sly Mojo Sash","icon":"inv_belt_11","type":8,"armorType":1,"stats":[0,0,74,43,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":74,"3":43,"7":39,"22":378},"isBase":true}}}, +{"id":43165,"name":"Strange Voodoo Belt","icon":"inv_belt_17","type":8,"armorType":2,"stats":[0,36,74,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,530,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":36,"2":74,"6":45,"22":530},"isBase":true}}}, +{"id":43167,"name":"Ranger's Belt of the Fallen Empire","icon":"inv_belt_30","type":8,"armorType":3,"stats":[0,48,61,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,806,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":48,"2":61,"5":38,"22":806},"isBase":true}}}, +{"id":43168,"name":"Clasp of the Fallen Demi-God","icon":"inv_belt_35","type":8,"armorType":4,"stats":[44,0,54,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":44,"2":54,"6":43,"22":1186},"isBase":true}}}, +{"id":43171,"name":"Fur-Lined Moccasins","icon":"inv_boots_cloth_10","type":10,"armorType":1,"stats":[0,0,47,35,38,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":47,"3":35,"4":38,"7":43,"22":463},"isBase":true}}}, +{"id":43172,"name":"Rhino Hide Kneeboots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,46,73,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":46,"2":73,"5":36,"22":648},"isBase":true}}}, +{"id":43173,"name":"Scaled Boots of Fallen Hope","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,67,48,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":67,"3":48,"6":38,"22":986},"isBase":true}}}, +{"id":43174,"name":"Trollkickers","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[43,0,58,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":43,"2":58,"5":47,"22":1450},"isBase":true}}}, +{"id":43176,"name":"Slippers of the Mojo Dojo","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,83,40,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1450,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":83,"3":40,"6":32,"22":1450},"isBase":true}}}, +{"id":43177,"name":"Voodoo Signet","icon":"inv_jewelry_ring_ahnqiraj_04","type":11,"stats":[0,0,57,34,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":57,"3":34,"5":24},"isBase":true}}}, +{"id":43178,"name":"Ring of Foul Mojo","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,0,30,0,0,29,35,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":30,"5":29,"6":35,"12":50,"13":50},"isBase":true}}}, +{"id":43179,"name":"Solid Platinum Band","icon":"inv_jewelry_ring_69","type":11,"stats":[34,0,51,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":34,"2":51,"10":33},"isBase":true}}}, +{"id":43180,"name":"Lion's Head Ring","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,44,47,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":44,"3":47,"4":20},"isBase":true}}}, +{"id":43181,"name":"Shoulders of the Northern Lights","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,61,38,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"2":61,"3":38,"6":31,"22":419},"isBase":true}}}, +{"id":43182,"name":"Cured Mammoth Hide Mantle","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,38,62,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,581,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":38,"2":62,"6":30,"22":581},"isBase":true}}}, +{"id":43183,"name":"Tundra Tracker's Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,37,68,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"1":37,"2":68,"7":24,"22":878},"isBase":true}}}, +{"id":43184,"name":"Tundra Pauldrons","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[37,0,56,0,0,0,0,0,0,37,17,0,0,0,0,0,0,0,0,0,0,0,1304,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":72,"ilvl":155,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"155":{"randPropPoints":72,"stats":{"0":37,"2":56,"9":37,"10":17,"22":1304},"isBase":true}}}, +{"id":43185,"name":"Wand of Chilled Renewal","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,29,25,32,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":29,"3":25,"4":32,"14":351},"isBase":true}}}, +{"id":43186,"name":"Iceshrieker's Touch","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,40,32,0,0,19,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":93,"weaponDamageMax":173,"weaponSpeed":1.6,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":93,"weaponDamageMax":173,"stats":{"2":40,"3":32,"6":19,"14":351},"isBase":true}}}, +{"id":43189,"name":"Amberglow Signet","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,49,33,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":49,"3":33,"5":34},"isBase":true}}}, +{"id":43190,"name":"Iceforged Battle Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[26,0,51,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":26,"2":51,"8":17,"23":136},"isBase":true}}}, +{"id":43191,"name":"Jagged Ice Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,27,63,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":27,"2":63,"6":27},"isBase":true}}}, +{"id":43192,"name":"Ring of the Northern Winds","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,55,34,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":55,"3":34,"7":27},"isBase":true}}}, +{"id":43193,"name":"Lightning Infused Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,71,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":71,"3":45,"4":37,"22":500},"isBase":true}}}, +{"id":43194,"name":"Charred Leather Shoulderguards","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,41,75,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"1":41,"2":75,"8":42,"22":700},"isBase":true}}}, +{"id":43195,"name":"Stormforged Shoulders","icon":"inv_shoulder_04","type":3,"armorType":3,"stats":[0,0,83,42,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":83,"3":42,"6":34,"22":1065},"isBase":true}}}, +{"id":43197,"name":"Pauldrons of Extinguished Hatred","icon":"inv_shoulder_75","type":3,"armorType":4,"stats":[0,0,67,45,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":67,"3":45,"6":39,"22":1569},"isBase":true}}}, +{"id":43198,"name":"Mantle of Volkhan","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[54,0,45,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"0":54,"2":45,"5":46,"22":1569},"isBase":true}}}, +{"id":43200,"name":"Snowdrift Pantaloons","icon":"inv_pants_cloth_09","type":9,"armorType":1,"stats":[0,0,86,56,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,584,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"2":86,"3":56,"7":61,"22":584},"isBase":true}}}, +{"id":43201,"name":"Leggings of Heightened Renewal","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,0,101,62,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"2":101,"3":62,"4":41,"22":817},"isBase":true}}}, +{"id":43202,"name":"Jormungar Hide Legguards","icon":"inv_pants_mail_03","type":9,"armorType":3,"stats":[0,53,99,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"1":53,"2":99,"6":58,"22":1243},"isBase":true}}}, +{"id":43203,"name":"Iron Colossus Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[61,0,91,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"0":61,"2":91,"10":59,"22":1831},"isBase":true}}}, +{"id":43204,"name":"Hyldnir Runeweaver's Garb","icon":"inv_chest_cloth_17","type":5,"armorType":1,"stats":[0,0,54,54,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":54,"3":54,"6":46,"22":529},"isBase":true}}}, +{"id":43207,"name":"Hardened Tongue Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,68,111,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":68,"2":111,"7":54,"22":1012},"isBase":true}}}, +{"id":43208,"name":"Lightningbringer's Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,66,107,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":66,"2":107,"6":53,"22":1535},"isBase":true}}}, +{"id":43209,"name":"Breastplate of Jagged Stone","icon":"inv_chest_plate03","type":5,"armorType":4,"stats":[69,0,103,0,0,0,49,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":69,"2":103,"6":49,"7":39,"22":2215},"isBase":true}}}, +{"id":43210,"name":"Gloves of the Servant","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,93,53,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":93,"3":53,"7":35,"22":417},"isBase":true}}}, +{"id":43211,"name":"Rough Climber's Grips","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,41,81,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"1":41,"2":81,"6":51,"22":583},"isBase":true}}}, +{"id":43212,"name":"Gauntlets of the Windreacher","icon":"inv_gauntlets_12","type":7,"armorType":3,"stats":[0,0,89,53,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":89,"3":53,"6":28,"22":960},"isBase":true}}}, +{"id":43213,"name":"Gauntlets of Vigilance","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[51,34,76,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"1":34,"2":76,"9":34,"22":1385},"isBase":true}}}, +{"id":43244,"name":"Crystal Citrine Necklace","icon":"inv_jewelry_necklace_03","type":2,"stats":[0,0,29,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58141}}],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":29,"3":17,"4":17},"isBase":true}}}, +{"id":43245,"name":"Crystal Chalcedony Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,19,0,0,0,17,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58142}}],"scalingOptions":{"138":{"randPropPoints":40,"stats":{"2":19,"6":17,"12":34,"13":34},"isBase":true}}}, +{"id":43246,"name":"Earthshadow Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,32,22,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":150,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58143}}],"scalingOptions":{"150":{"randPropPoints":52,"stats":{"2":32,"3":22,"4":29},"isBase":true}}}, +{"id":43247,"name":"Jade Ring of Slaying","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,43,0,0,0,0,0,21,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58144}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":43,"8":21,"12":44,"13":44},"isBase":true}}}, +{"id":43248,"name":"Stoneguard Band","icon":"inv_jewelry_ring_02","type":11,"stats":[20,0,39,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58145}}],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"0":20,"2":39,"9":16},"isBase":true}}}, +{"id":43249,"name":"Shadowmight Ring","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,15,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58146}}],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"2":15,"6":10,"7":26},"isBase":true}}}, +{"id":43250,"name":"Ring of Earthen Might","icon":"inv_jewelry_ring_75","type":11,"stats":[38,0,34,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58147}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":38,"2":34,"9":26,"23":100},"isBase":true}}}, +{"id":43251,"name":"Ring of Scarlet Shadows","icon":"inv_jewelry_ring_ahnqiraj_06","type":11,"stats":[0,0,0,0,0,38,31,0,0,0,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58148}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"5":38,"6":31,"12":60,"13":60},"isBase":true}}}, +{"id":43252,"name":"Windfire Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,0,27,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58149}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":27,"6":35,"7":35},"isBase":true}}}, +{"id":43253,"name":"Ring of Northern Tears","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,31,0,31,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58150}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"3":31,"5":31,"6":39},"isBase":true}}}, +{"id":43255,"name":"Seafoam Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":2,"stats":[0,47,94,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60665}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":47,"2":94,"6":38,"22":633},"isBase":true}}}, +{"id":43256,"name":"Jormscale Footpads","icon":"inv_boots_07","type":10,"armorType":2,"stats":[0,47,87,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60666}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":47,"2":87,"6":43,"22":696},"isBase":true}}}, +{"id":43257,"name":"Wildscale Breastplate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,51,68,68,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60669}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":51,"3":68,"4":68,"6":53,"22":1012},"isBase":true}}}, +{"id":43258,"name":"Purehorn Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,70,57,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60671}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":70,"3":57,"7":37,"22":759},"isBase":true}}}, +{"id":43260,"name":"Eviscerator's Facemask","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60697}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":104,"6":46,"16":46,"22":822},"isBase":true}}}, +{"id":43261,"name":"Overcast Headguard","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60715}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"4":46,"16":46,"22":822},"isBase":true}}}, +{"id":43262,"name":"Overcast Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60716}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":34,"16":34,"22":759},"isBase":true}}}, +{"id":43263,"name":"Overcast Chestguard","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60718}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"4":46,"16":46,"22":1012},"isBase":true}}}, +{"id":43264,"name":"Overcast Bracers","icon":"inv_bracer_07","type":6,"armorType":2,"stats":[0,0,59,38,25,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60720}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":59,"3":38,"4":25,"16":26,"22":443},"isBase":true}}}, +{"id":43265,"name":"Overcast Handwraps","icon":"inv_gauntlets_02","type":7,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60721}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":34,"16":34,"22":633},"isBase":true}}}, +{"id":43266,"name":"Overcast Belt","icon":"inv_belt_14","type":8,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60723}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":34,"16":34,"22":569},"isBase":true}}}, +{"id":43271,"name":"Overcast Leggings","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,104,69,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60725}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"4":46,"16":46,"22":886},"isBase":true}}}, +{"id":43273,"name":"Overcast Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,77,51,34,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Overcaster Battlegear","setId":815,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60727}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":34,"16":34,"22":696},"isBase":true}}}, +{"id":43277,"name":"Jedoga's Greatring","icon":"inv_jewelry_ring_71","type":11,"stats":[0,22,71,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"1":22,"2":71,"6":18},"isBase":true}}}, +{"id":43278,"name":"Cloak of the Darkcaster","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,44,32,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"2":44,"3":32,"4":30,"22":312},"isBase":true}}}, +{"id":43279,"name":"Battlechest of the Twilight Cult","icon":"inv_chest_chain_15","type":5,"armorType":4,"stats":[43,0,82,0,0,0,0,0,27,60,0,0,0,0,0,0,0,0,0,0,0,0,1956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"0":43,"2":82,"8":27,"9":60,"22":1956},"isBase":true}}}, +{"id":43280,"name":"Faceguard of the Hammer Clan","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,112,77,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":112,"3":77,"4":76,"22":1840},"isBase":true}}}, +{"id":43281,"name":"Edge of Oblivion","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[80,0,117,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"0":80,"2":117,"7":74},"isBase":true}}}, +{"id":43282,"name":"Shadowseeker's Pendant","icon":"inv_jewelry_necklace_ahnqiraj_03","type":2,"stats":[42,0,66,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":42,"2":66,"9":41},"isBase":true}}}, +{"id":43283,"name":"Subterranean Waterfall Shroud","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,53,37,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29310,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":53,"3":37,"4":54,"22":391},"isBase":true}}}, +{"id":43284,"name":"Amanitar Skullbow","icon":"inv_weapon_crossbow_22","type":14,"rangedWeaponType":2,"stats":[0,90,148,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":633,"weaponDamageMax":951,"weaponSpeed":2.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":633,"weaponDamageMax":951,"stats":{"1":90,"2":148,"7":77},"isBase":true}}}, +{"id":43285,"name":"Amulet of the Spell Flinger","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[0,0,65,43,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":65,"3":43,"6":42},"isBase":true}}}, +{"id":43286,"name":"Legguards of Swarming Attacks","icon":"inv_pants_mail_07","type":9,"armorType":2,"stats":[0,48,118,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":48,"2":118,"8":54,"22":934},"isBase":true}}}, +{"id":43287,"name":"Silken Bridge Handwraps","icon":"inv_gauntlets_16","type":7,"armorType":1,"stats":[0,0,83,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":30258,"zoneId":4494}},{"drop":{"difficulty":7,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":83,"3":50,"7":50,"22":489},"isBase":true}}}, +{"id":43305,"name":"Shroud of Akali","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,66,36,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":68,"stats":{"2":66,"3":36,"5":24,"22":348},"isBase":true}}}, +{"id":43306,"name":"Gal'darah's Signet","icon":"inv_jewelry_ring_76","type":11,"stats":[26,0,54,0,0,0,0,0,20,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":179,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":68,"stats":{"0":26,"2":54,"8":20,"9":36},"isBase":true}}}, +{"id":43309,"name":"Amulet of the Stampede","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,0,0,0,0,0,56,21,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":68,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"179":{"randPropPoints":68,"stats":{"7":56,"8":21,"12":50,"13":50},"isBase":true}}}, +{"id":43310,"name":"Engraved Chestplate of Eck","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[62,0,117,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":62,"2":117,"5":61,"22":2265},"isBase":true}}}, +{"id":43311,"name":"Helmet of the Shrine","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,62,108,0,0,0,40,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":62,"2":108,"6":40,"8":35,"22":1290},"isBase":true}}}, +{"id":43312,"name":"Gorloc Muddy Footwraps","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,50,83,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":50,"2":83,"7":50,"22":734},"isBase":true}}}, +{"id":43313,"name":"Leggings of the Ruins Dweller","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,92,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29932,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":92,"3":62,"4":62,"22":684},"isBase":true}}}, +{"id":43353,"name":"Void Sentry Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[60,0,78,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1845,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":117,"stats":{"0":60,"2":78,"9":56,"22":1845},"isBase":true}}}, +{"id":43358,"name":"Pendant of Shadow Beams","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,50,34,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":50,"3":34,"7":35},"isBase":true}}}, +{"id":43363,"name":"Screeching Cape","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[25,0,51,0,0,0,0,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":25,"2":51,"8":19,"9":34,"22":336},"isBase":true}}}, +{"id":43375,"name":"Trousers of the Arakkoa","icon":"inv_pants_cloth_11","type":9,"armorType":1,"stats":[0,0,78,68,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":117,"stats":{"2":78,"3":68,"7":53,"22":589},"isBase":true}}}, +{"id":43382,"name":"Band of Eyes","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,48,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":48,"3":34,"4":34},"isBase":true}}}, +{"id":43387,"name":"Shoulderplates of the Beholder","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[40,0,67,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1582,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":40,"2":67,"5":36,"22":1582},"isBase":true}}}, +{"id":43401,"name":"Water-Drenched Robe","icon":"inv_chest_cloth_41","type":5,"armorType":1,"stats":[0,0,111,62,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29313,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":62,"5":62,"22":782},"isBase":true}}}, +{"id":43402,"name":"The Obliterator Greaves","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[57,0,0,0,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":57,"6":43,"7":53,"22":1557},"isBase":true}}}, +{"id":43403,"name":"Shroud of Darkness","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,36,93,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":36,"2":93,"6":61,"22":867},"isBase":true}}}, +{"id":43404,"name":"Zuramat's Necklace","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,80,43,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29314,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":80,"3":43,"4":29},"isBase":true}}}, +{"id":43405,"name":"Sabatons of Erekem","icon":"inv_boots_chain_08","type":10,"armorType":4,"stats":[0,0,107,50,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":107,"3":50,"4":78,"22":1557},"isBase":true}}}, +{"id":43406,"name":"Cloak of the Gushing Wound","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,43,80,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":43,"2":80,"5":29,"22":391},"isBase":true}}}, +{"id":43407,"name":"Stormstrike Mace","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[0,0,36,0,0,0,42,0,0,0,0,0,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29315,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":36,"6":42,"12":62,"13":62},"isBase":true}}}, +{"id":43408,"name":"Solitaire of Reflecting Beams","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,63,43,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":63,"3":43,"7":43},"isBase":true}}}, +{"id":43409,"name":"Saliva Corroded Pike","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[86,0,135,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"0":86,"2":135,"6":71},"isBase":true}}}, +{"id":43410,"name":"Moragg's Chestguard","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,117,62,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":29316,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":117,"3":62,"7":61,"22":1588},"isBase":true}}}, +{"id":43433,"name":"Eviscerator's Shoulderpads","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60702}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":759},"isBase":true}}}, +{"id":43434,"name":"Eviscerator's Chestguard","icon":"inv_chest_leather_10","type":5,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60703}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":104,"6":46,"16":46,"22":1012},"isBase":true}}}, +{"id":43435,"name":"Eviscerator's Bindings","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,39,57,0,0,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60704}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":39,"2":57,"6":26,"16":26,"22":443},"isBase":true}}}, +{"id":43436,"name":"Eviscerator's Gauntlets","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60705}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":633},"isBase":true}}}, +{"id":43437,"name":"Eviscerator's Waistguard","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60706}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":569},"isBase":true}}}, +{"id":43438,"name":"Eviscerator's Legguards","icon":"inv_pants_leather_25","type":9,"armorType":2,"stats":[0,69,104,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60711}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":104,"6":46,"16":46,"22":886},"isBase":true}}}, +{"id":43439,"name":"Eviscerator's Treads","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,51,71,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Eviscerator's Battlegear","setId":813,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60712}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":71,"6":34,"16":34,"22":696},"isBase":true}}}, +{"id":43442,"name":"Swiftarrow Belt","icon":"inv_belt_19","type":8,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60734}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":864},"isBase":true}}}, +{"id":43443,"name":"Swiftarrow Boots","icon":"inv_boots_chain_10","type":10,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60737}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":1056},"isBase":true}}}, +{"id":43444,"name":"Swiftarrow Bracers","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,38,58,0,0,0,26,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60731}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":38,"2":58,"6":26,"16":26,"22":672},"isBase":true}}}, +{"id":43445,"name":"Swiftarrow Hauberk","icon":"inv_chest_chain_06","type":5,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60730}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":103,"6":46,"16":46,"22":1535},"isBase":true}}}, +{"id":43446,"name":"Swiftarrow Gauntlets","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60732}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":960},"isBase":true}}}, +{"id":43447,"name":"Swiftarrow Helm","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60728}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":103,"6":46,"16":46,"22":1247},"isBase":true}}}, +{"id":43448,"name":"Swiftarrow Leggings","icon":"inv_pants_mail_17","type":9,"armorType":3,"stats":[0,69,103,0,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60735}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":103,"6":46,"16":46,"22":1343},"isBase":true}}}, +{"id":43449,"name":"Swiftarrow Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,51,77,0,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Swiftarrow Battlegear","setId":818,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60729}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":34,"16":34,"22":1151},"isBase":true}}}, +{"id":43450,"name":"Stormhide Belt","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60750}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":864},"isBase":true}}}, +{"id":43451,"name":"Stormhide Stompers","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1056,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60752}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":1056},"isBase":true}}}, +{"id":43452,"name":"Stormhide Wristguards","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,0,57,39,26,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60748}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":57,"3":39,"4":26,"16":26,"22":672},"isBase":true}}}, +{"id":43453,"name":"Stormhide Hauberk","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60747}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":68,"4":46,"16":46,"22":1535},"isBase":true}}}, +{"id":43454,"name":"Stormhide Grips","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60749}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":960},"isBase":true}}}, +{"id":43455,"name":"Stormhide Crown","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60743}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":68,"4":46,"16":46,"22":1247},"isBase":true}}}, +{"id":43456,"name":"Stormhide Legguards","icon":"inv_pants_mail_18","type":9,"armorType":3,"stats":[0,0,104,68,46,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60751}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":68,"4":46,"16":46,"22":1343},"isBase":true}}}, +{"id":43457,"name":"Stormhide Shoulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,77,51,36,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Stormhide Battlegear","setId":817,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60746}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"4":36,"16":34,"22":1151},"isBase":true}}}, +{"id":43458,"name":"Giantmaim Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,90,106,0,0,0,59,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60754}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":90,"2":106,"6":59,"7":64,"22":1436},"isBase":true}}}, +{"id":43459,"name":"Giantmaim Bracers","icon":"inv_bracer_15","type":6,"armorType":3,"stats":[0,50,65,0,0,0,36,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60755}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":65,"6":36,"7":36,"22":718},"isBase":true}}}, +{"id":43460,"name":"Giantmaim Girdle","icon":"inv_belt_29","type":8,"armorType":3,"stats":[0,65,92,0,0,0,44,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":65,"2":92,"6":44,"7":50,"22":923},"isBase":true}}}, +{"id":43461,"name":"Revenant's Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,128,90,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60756}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":128,"3":90,"7":89,"22":1641},"isBase":true}}}, +{"id":43469,"name":"Revenant's Treads","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,94,66,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60757}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":66,"7":66,"22":1128},"isBase":true}}}, +{"id":43475,"name":"Grips of the Chilling Revenant ","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,81,58,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,992,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":81,"3":58,"7":46,"22":992},"isBase":true}}}, +{"id":43476,"name":"Trollwoven Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,78,98,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":78,"2":98,"7":67,"22":1067},"isBase":true}}}, +{"id":43481,"name":"Trollwoven Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,72,123,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60758}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":72,"2":123,"8":28,"22":827},"isBase":true}}}, +{"id":43482,"name":"Savage Titanium Ring","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,48,0,0,0,33,0,0,0,0,0,32,32,0,0,32,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58492}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":48,"6":33,"12":32,"13":32,"16":32},"isBase":true}}}, +{"id":43484,"name":"Trollwoven Girdle","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,66,128,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60759}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":128,"8":38,"22":620},"isBase":true}}}, +{"id":43495,"name":"Earthgiving Legguards","icon":"inv_pants_leather_04","type":9,"armorType":2,"stats":[0,0,131,90,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60760}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":131,"3":90,"4":89,"22":965},"isBase":true}}}, +{"id":43498,"name":"Savage Titanium Band","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,48,16,0,0,0,33,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58507}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":48,"3":16,"7":33,"16":32},"isBase":true}}}, +{"id":43500,"name":"Bolstered Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[68,0,123,0,0,45,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":31134,"zoneId":4415}},{"drop":{"difficulty":7,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":68,"2":123,"5":45,"9":81,"22":2048},"isBase":true}}}, +{"id":43502,"name":"Earthgiving Boots","icon":"inv_boots_cloth_07","type":10,"armorType":2,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60761}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":66,"22":758},"isBase":true}}}, +{"id":43555,"name":"Deputy Pa'trolla Badge","icon":"inv_misc_coin_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"isBase":true}}}, +{"id":43565,"name":"Durable Nerubhide Cape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[41,0,75,0,0,0,0,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60640}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":41,"2":75,"8":21,"9":49,"22":404},"isBase":true}}}, +{"id":43566,"name":"Ice Striker's Cloak","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,24,113,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60637}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":24,"2":113,"7":38,"22":404},"isBase":true}}}, +{"id":43573,"name":"Tears of Bitter Anguish","icon":"inv_elemental_crystal_water","type":12,"stats":[0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"7":73},"isBase":true}}}, +{"id":43582,"name":"Titanium Frostguard Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":58954}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":100,"19":68},"isBase":true}}}, +{"id":43583,"name":"Glacial Robe","icon":"inv_chest_cloth_08","type":5,"armorType":1,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,852,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60993}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":169,"19":115,"22":852},"isBase":true}}}, +{"id":43584,"name":"Glacial Waistband","icon":"inv_belt_31","type":8,"armorType":1,"stats":[0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,0,0,480,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60990}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":130,"19":85,"22":480},"isBase":true}}}, +{"id":43585,"name":"Glacial Slippers","icon":"inv_boots_cloth_05","type":10,"armorType":1,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,586,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":60994}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":586},"isBase":true}}}, +{"id":43586,"name":"Icebane Chestguard","icon":"inv_chest_chain_11","type":5,"armorType":4,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,2354,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61008}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":169,"19":115,"22":2354},"isBase":true}}}, +{"id":43587,"name":"Icebane Girdle","icon":"inv_belt_33","type":8,"armorType":4,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61009}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":1324},"isBase":true}}}, +{"id":43588,"name":"Icebane Treads","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,1618,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":61010}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":1618},"isBase":true}}}, +{"id":43590,"name":"Polar Vest","icon":"inv_chest_cloth_08","type":5,"armorType":2,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,1141,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60996}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":169,"19":115,"22":1141},"isBase":true}}}, +{"id":43591,"name":"Polar Cord","icon":"inv_belt_22","type":8,"armorType":2,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,642,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60997}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":642},"isBase":true}}}, +{"id":43592,"name":"Polar Boots","icon":"inv_boots_cloth_01","type":10,"armorType":2,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,785,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60998}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":785},"isBase":true}}}, +{"id":43593,"name":"Icy Scale Chestguard","icon":"inv_chest_plate09","type":5,"armorType":3,"stats":[0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,1668,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60999}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":169,"19":115,"22":1668},"isBase":true}}}, +{"id":43594,"name":"Icy Scale Belt","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,938,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":61000}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":938},"isBase":true}}}, +{"id":43595,"name":"Icy Scale Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,1147,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":61002}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":129,"19":86,"22":1147},"isBase":true}}}, +{"id":43611,"name":"Krol Cleaver","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,36,71,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":36,"2":71,"6":28},"isBase":true}}}, +{"id":43613,"name":"The Dusk Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":333,"weaponDamageMax":500,"isBase":true}}}, +{"id":43651,"name":"Crafty's Pole","icon":"inv_fishingpole_01","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":3,"ilvl":200,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"weaponDamageMin":722,"weaponDamageMax":1084,"isBase":true}}}, +{"id":43828,"name":"Touch of Light","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,36,20,0,0,23,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":36,"3":20,"6":23,"14":302},"isBase":true}}}, +{"id":43829,"name":"Crusader's Locket","icon":"inv_jewelry_talisman_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,106,106,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"12":106,"13":106},"isBase":true}}}, +{"id":43830,"name":"Cobalt's Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,83,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":83,"3":38,"22":845},"isBase":true}}}, +{"id":43831,"name":"Enchanted Plate Waistguard","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,44,55,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":44,"3":55,"6":28,"22":934},"isBase":true}}}, +{"id":43832,"name":"The Argent Resolve","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[0,0,60,0,0,0,51,0,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":571,"weaponDamageMax":857,"weaponSpeed":3.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":571,"weaponDamageMax":857,"stats":{"2":60,"6":51,"12":122,"13":122},"isBase":true}}}, +{"id":43833,"name":"Blade of Echoes","icon":"inv_sword_111","type":13,"weaponType":9,"handType":2,"stats":[0,25,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"1":25,"2":46},"isBase":true}}}, +{"id":43834,"name":"Staff of Redeemed Souls","icon":"inv_staff_76","type":13,"weaponType":8,"handType":4,"stats":[0,0,56,0,61,0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"stats":{"2":56,"4":61,"14":304},"isBase":true}}}, +{"id":43835,"name":"Hand of Gustav","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,32,0,21,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":128,"weaponDamageMax":238,"weaponSpeed":2.4,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":128,"weaponDamageMax":238,"stats":{"4":32,"6":21,"14":302},"isBase":true}}}, +{"id":43836,"name":"Thorny Rose Brooch","icon":"inv_jewelry_talisman_03","type":12,"stats":[0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"7":43},"isBase":true}}}, +{"id":43837,"name":"Softly Glowing Orb","icon":"achievement_dungeon_ulduar77","type":12,"stats":[0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"4":33},"isBase":true}}}, +{"id":43838,"name":"Chuchu's Tiny Box of Horrors","icon":"inv_box_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"12":53,"13":53},"isBase":true}}}, +{"id":43839,"name":"Leiah's Footpads","icon":"inv_boots_cloth_06","type":10,"armorType":1,"stats":[0,0,33,31,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":33,"3":31,"5":43,"22":364},"isBase":true}}}, +{"id":43840,"name":"Sixen's Skullcap","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,43,48,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":43,"2":48,"6":72,"22":602},"isBase":true}}}, +{"id":43841,"name":"Argent Girdle","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,0,38,26,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"3":38,"4":26,"6":31,"22":634},"isBase":true}}}, +{"id":43842,"name":"Jayde's Reinforced Handguards","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[41,0,57,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":41,"2":57,"9":39,"22":1038},"isBase":true}}}, +{"id":43843,"name":"Iron Coffin Lid","icon":"inv_shield_50","type":13,"weaponType":7,"handType":3,"stats":[23,0,51,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,4586,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":23,"2":51,"9":29,"22":4586},"isBase":true}}}, +{"id":43844,"name":"Ebon Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[34,0,52,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":34,"2":52,"9":33,"22":1245},"isBase":true}}}, +{"id":43845,"name":"Legplates of Dominion","icon":"inv_pants_plate_17","type":9,"armorType":4,"stats":[54,0,79,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":54,"2":79,"10":52,"22":1453},"isBase":true}}}, +{"id":43846,"name":"Helmet of the Dedicated","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[58,0,79,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,1349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":58,"2":79,"9":46,"22":1349},"isBase":true}}}, +{"id":43847,"name":"Demolisher's Grips","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[32,0,60,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":32,"2":60,"9":43,"22":1038},"isBase":true}}}, +{"id":43848,"name":"Bracers of Icy Resolve","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[23,0,38,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":23,"2":38,"9":24,"22":726},"isBase":true}}}, +{"id":43849,"name":"Chain of the Sovereign","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[29,0,45,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":29,"2":45,"9":29},"isBase":true}}}, +{"id":43855,"name":"Adepts Wristwraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,66,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":66,"3":30,"22":232},"isBase":true}}}, +{"id":43856,"name":"Sigrid's Mittens","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":71,"3":39,"22":331},"isBase":true}}}, +{"id":43857,"name":"Duke Lankral's Velvet Slippers","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,60,43,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":60,"3":43,"6":32,"22":364},"isBase":true}}}, +{"id":43858,"name":"Vrykul Crusher","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":460,"weaponDamageMax":690,"weaponSpeed":2.9,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":460,"weaponDamageMax":690,"stats":{"6":59,"9":56},"isBase":true}}}, +{"id":43859,"name":"Shadow Vault Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,59,48,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":59,"3":48,"4":68,"22":430},"isBase":true}}}, +{"id":43860,"name":"Brilliant Saronite Belt","icon":"inv_belt_20","type":8,"armorType":4,"stats":[0,0,0,56,28,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59436}}],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"3":56,"4":28,"6":43,"22":1139},"isBase":true}}}, +{"id":43861,"name":"Bone Witch's Drape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,33,26,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":33,"3":26,"4":37,"22":265},"isBase":true}}}, +{"id":43862,"name":"Mantle of the Underhalls","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,54,43,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":54,"3":43,"5":21,"22":397},"isBase":true}}}, +{"id":43863,"name":"Pantaloons of the Water Magi","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,68,55,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":68,"3":55,"6":51,"22":463},"isBase":true}}}, +{"id":43864,"name":"Brilliant Saronite Bracers","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,0,33,30,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59438}}],"scalingOptions":{"171":{"randPropPoints":63,"stats":{"3":33,"4":30,"6":35,"22":886},"isBase":true}}}, +{"id":43865,"name":"Brilliant Saronite Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,65,56,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1518,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":84,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59440}}],"scalingOptions":{"171":{"randPropPoints":84,"stats":{"2":65,"3":56,"4":28,"22":1518},"isBase":true}}}, +{"id":43866,"name":"Lithe Stalker's Cord","icon":"inv_belt_09","type":8,"armorType":1,"stats":[0,0,62,41,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":62,"3":41,"5":33,"22":298},"isBase":true}}}, +{"id":43870,"name":"Brilliant Saronite Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,79,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1769,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":121,"ilvl":179,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59441}}],"scalingOptions":{"179":{"randPropPoints":121,"stats":{"3":79,"4":50,"6":53,"22":1769},"isBase":true}}}, +{"id":43871,"name":"Saronite Spellblade","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[0,0,38,0,0,0,38,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"weaponSpeed":1.8,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":59442}}],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":105,"weaponDamageMax":196,"stats":{"2":38,"6":38,"14":351},"isBase":true}}}, +{"id":43872,"name":"Weeping Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,32,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":32,"3":43,"4":36,"22":397},"isBase":true}}}, +{"id":43873,"name":"Frail Bone Wand","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,28,20,0,23,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":28,"3":20,"5":23,"14":302},"isBase":true}}}, +{"id":43874,"name":"Lady Nightswood's Engagement Ring","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,29,30,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":29,"3":30,"4":38},"isBase":true}}}, +{"id":43875,"name":"Axe of the Cunning","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[16,23,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"0":16,"1":23,"2":15},"isBase":true}}}, +{"id":43877,"name":"Blood-Forged Circle","icon":"inv_jewelry_ring_36","type":11,"stats":[0,0,0,15,19,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"3":15,"4":19,"7":30},"isBase":true}}}, +{"id":43878,"name":"Mantle of Unholy Power","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,82,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":82,"3":43,"22":397},"isBase":true}}}, +{"id":43879,"name":"Gryphon Rider's Bracers","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,36,20,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":36,"3":20,"6":29,"22":232},"isBase":true}}}, +{"id":43880,"name":"Fair Touch of the Crusader","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,35,23,22,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":35,"3":23,"4":22,"14":302},"isBase":true}}}, +{"id":43881,"name":"Demolisher Driver's Dustcoat","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,92,53,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":92,"3":53,"7":40,"22":529},"isBase":true}}}, +{"id":43882,"name":"Cultist's Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,76,56,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,430,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":76,"3":56,"7":45,"22":430},"isBase":true}}}, +{"id":43883,"name":"Arete's Command","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[77,0,43,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":539,"weaponDamageMax":810,"weaponSpeed":3.4,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":539,"weaponDamageMax":810,"stats":{"0":77,"2":43,"7":37},"isBase":true}}}, +{"id":43884,"name":"Amulet of the Malefic Necromancer","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,28,22,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":28,"3":22,"5":29},"isBase":true}}}, +{"id":43885,"name":"Scourgehammer","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,80,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"weaponSpeed":3.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":555,"weaponDamageMax":833,"stats":{"6":80,"7":37},"isBase":true}}}, +{"id":43888,"name":"Blunt Brainwasher","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,11,33,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"1":11,"2":33,"5":17},"isBase":true}}}, +{"id":43889,"name":"Hulking Abomination Hide Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,25,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":25,"2":66,"22":265},"isBase":true}}}, +{"id":43890,"name":"Interrogator's Flaming Knuckles","icon":"inv_weapon_hand_17","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,12,15,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"weaponSpeed":2.5,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":267,"weaponDamageMax":496,"stats":{"6":12,"7":15,"12":66,"13":66},"isBase":true}}}, +{"id":43891,"name":"Jhaeqon's Tunic","icon":"inv_chest_leather_06","type":5,"armorType":2,"stats":[0,52,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":52,"2":114,"22":741},"isBase":true}}}, +{"id":43892,"name":"Refurbished Demolisher Gear Belt","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,30,58,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":30,"2":58,"6":33,"22":417},"isBase":true}}}, +{"id":43893,"name":"Olakin's Enchanted Torch","icon":"inv_torch_thrown","type":14,"rangedWeaponType":6,"stats":[0,0,32,34,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":32,"3":34,"14":302},"isBase":true}}}, +{"id":43894,"name":"Gryphon Hide Moccasins","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,55,38,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":55,"2":38,"5":31,"22":509},"isBase":true}}}, +{"id":43895,"name":"Leggings of Silent Echoes","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,112,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":112,"3":43,"22":648},"isBase":true}}}, +{"id":43896,"name":"Grotesque Butcher's Pants","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,59,58,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":59,"2":58,"7":51,"22":648},"isBase":true}}}, +{"id":43897,"name":"Frost Climber's Hatchet","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,64,0,0,0,29,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":138,"weaponDamageMax":258,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":138,"weaponDamageMax":258,"stats":{"2":64,"6":29,"14":302},"isBase":true}}}, +{"id":43898,"name":"Icy Quick Edge","icon":"inv_axe_86","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"stats":{"6":15,"12":23,"13":23},"isBase":true}}}, +{"id":43899,"name":"Sapph's Cleaver","icon":"inv_axe_87","type":13,"weaponType":1,"handType":4,"stats":[0,64,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":571,"weaponDamageMax":857,"weaponSpeed":3.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":571,"weaponDamageMax":857,"stats":{"1":64,"6":70},"isBase":true}}}, +{"id":43903,"name":"Ring of the Fallen Shadow Adept","icon":"inv_jewelry_ring_33","type":11,"stats":[0,0,44,38,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":44,"3":38,"4":18},"isBase":true}}}, +{"id":43904,"name":"Discarded Slaughterhouse Gloves","icon":"inv_gauntlets_07","type":7,"armorType":2,"stats":[0,50,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":50,"2":55,"22":463},"isBase":true}}}, +{"id":43905,"name":"Fur-Lined Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,114,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":114,"3":36,"22":602},"isBase":true}}}, +{"id":43906,"name":"Cunning Leather Tunic","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,55,66,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":55,"2":66,"7":52,"22":741},"isBase":true}}}, +{"id":43907,"name":"Spear-Sisters Mantle","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,36,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":36,"2":71,"22":556},"isBase":true}}}, +{"id":43908,"name":"Boots of the Fallen Thane","icon":"inv_boots_chain_10","type":10,"armorType":2,"stats":[0,0,71,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":71,"3":36,"22":509},"isBase":true}}}, +{"id":43909,"name":"Belt of Njorndar","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,40,59,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":40,"2":59,"6":38,"22":417},"isBase":true}}}, +{"id":43910,"name":"Gloves of the Flayed","icon":"inv_gauntlets_01","type":7,"armorType":2,"stats":[0,0,50,41,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":50,"3":41,"7":22,"22":463},"isBase":true}}}, +{"id":43911,"name":"Vile's Poker","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":181,"weaponDamageMax":337,"weaponSpeed":1.7,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":181,"weaponDamageMax":337,"stats":{"6":28,"12":58,"13":58},"isBase":true}}}, +{"id":43912,"name":"Vest of Jotunheim","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,741,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":98,"3":68,"22":741},"isBase":true}}}, +{"id":43913,"name":"Efrem's Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,36,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,324,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":36,"3":38,"22":324},"isBase":true}}}, +{"id":43914,"name":"Girdle of Reprieve","icon":"inv_belt_06","type":8,"armorType":2,"stats":[0,0,77,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,417,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":77,"3":32,"22":417},"isBase":true}}}, +{"id":43915,"name":"Pilot's Knife","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,29,24,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"1":29,"2":24,"7":20},"isBase":true}}}, +{"id":43916,"name":"Mace of the Final Command","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,32,0,0,0,0,33,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":138,"weaponDamageMax":258,"weaponSpeed":2.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":138,"weaponDamageMax":258,"stats":{"2":32,"7":33,"14":302},"isBase":true}}}, +{"id":43917,"name":"Ritualist's Bloodletter","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,39,0,0,30,0,0,0,0,0,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":96,"weaponDamageMax":179,"stats":{"2":39,"5":30,"14":302},"isBase":true}}}, +{"id":43918,"name":"Shooter's Glory","icon":"inv_weapon_crossbow_24","type":14,"rangedWeaponType":2,"stats":[0,57,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"weaponSpeed":2.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"stats":{"1":57,"6":25},"isBase":true}}}, +{"id":43919,"name":"Curved Assassin's Dagger","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":2,"stats":[0,0,10,0,0,0,0,22,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"weaponSpeed":1.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":192,"weaponDamageMax":357,"stats":{"2":10,"7":22,"12":44,"13":44},"isBase":true}}}, +{"id":43920,"name":"Growler's Intimidation","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,79,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":460,"weaponDamageMax":690,"weaponSpeed":2.9,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":460,"weaponDamageMax":690,"stats":{"2":79,"6":53,"23":74},"isBase":true}}}, +{"id":43921,"name":"Staff of Interrogation","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,111,0,0,0,58,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"stats":{"2":111,"6":58,"14":304},"isBase":true}}}, +{"id":43922,"name":"Honed Lightblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,26,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"stats":{"1":26,"2":45},"isBase":true}}}, +{"id":43923,"name":"Bloodblade","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,33,0,0,0,23,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":1.6,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":43,"weaponDamageMin":170,"weaponDamageMax":317,"stats":{"2":33,"6":23,"12":44,"13":44},"isBase":true}}}, +{"id":43924,"name":"Illskar's Greatcloak","icon":"inv_misc_cape_08","type":4,"armorType":1,"stats":[20,0,42,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":20,"2":42,"6":20,"22":265},"isBase":true}}}, +{"id":43925,"name":"Shadow Vault Shawl","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,0,55,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":55,"3":37,"22":265},"isBase":true}}}, +{"id":43926,"name":"Signet of Baron Sliver","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,24,0,0,25,0,0,0,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"2":24,"5":25,"12":82,"13":82},"isBase":true}}}, +{"id":43927,"name":"Wrought-Iron Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,128,0,0,0,36,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"weaponSpeed":3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":238,"weaponDamageMax":357,"stats":{"2":128,"6":36,"14":304},"isBase":true}}}, +{"id":43928,"name":"Bow of Bone and Sinew","icon":"inv_weapon_bow_12","type":14,"rangedWeaponType":1,"stats":[0,73,60,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"weaponSpeed":2.8,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":388,"weaponDamageMax":722,"stats":{"1":73,"2":60,"5":44},"isBase":true}}}, +{"id":43929,"name":"Vile's Uglystick","icon":"inv_mace_68","type":13,"weaponType":4,"handType":4,"stats":[53,0,80,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"weaponDamageMin":523,"weaponDamageMax":786,"weaponSpeed":3.3,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"weaponDamageMin":523,"weaponDamageMax":786,"stats":{"0":53,"2":80,"10":53},"isBase":true}}}, +{"id":43930,"name":"Accelerator Stompers","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,18,55,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":18,"3":55,"7":29,"22":1141},"isBase":true}}}, +{"id":43931,"name":"Savryn's Muddy Boots","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,45,52,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":45,"3":52,"6":32,"22":775},"isBase":true}}}, +{"id":43932,"name":"Drivetrain Chain Leggings","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,53,69,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":53,"2":69,"6":58,"22":986},"isBase":true}}}, +{"id":43933,"name":"Gauntlets of Urgency","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,53,38,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":53,"2":38,"6":20,"22":704},"isBase":true}}}, +{"id":43934,"name":"Enchanted Bracelets of the Scout","icon":"inv_bracer_16","type":6,"armorType":3,"stats":[0,40,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":40,"2":49,"22":493},"isBase":true}}}, +{"id":43935,"name":"Links of the Battlemender","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,75,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":75,"3":61,"22":1127},"isBase":true}}}, +{"id":43936,"name":"Battlesurgeon's Gauntlets","icon":"inv_gauntlets_14","type":7,"armorType":3,"stats":[0,0,51,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":51,"3":53,"22":704},"isBase":true}}}, +{"id":43937,"name":"Blood-Stalker's Cover","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,45,53,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":45,"2":53,"6":71,"22":916},"isBase":true}}}, +{"id":43938,"name":"Belt of Rising Hope","icon":"inv_belt_31","type":8,"armorType":4,"stats":[0,0,47,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":47,"3":55,"22":934},"isBase":true}}}, +{"id":43939,"name":"Breastplate of Splattered Blood","icon":"inv_chest_plate10","type":5,"armorType":4,"stats":[53,0,80,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":53,"2":80,"6":37,"22":1660},"isBase":true}}}, +{"id":43940,"name":"Plated Legs of the Unholy","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[71,0,0,0,0,45,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":71,"5":45,"6":36,"22":1453},"isBase":true}}}, +{"id":43941,"name":"Grimy Saronite Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":46,"3":43,"22":1245},"isBase":true}}}, +{"id":43942,"name":"Jotunheim Shackles","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[30,0,43,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":30,"2":43,"6":29,"22":726},"isBase":true}}}, +{"id":43943,"name":"Gauntlets of the Holy Gladiator","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,87,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":87,"3":41,"22":1038},"isBase":true}}}, +{"id":43944,"name":"Rings of Nergeld","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[26,0,0,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"0":26,"5":29,"6":34,"22":726},"isBase":true}}}, +{"id":43945,"name":"Blackened Breastplate of the Vault","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[68,0,66,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"0":68,"2":66,"6":45,"22":1660},"isBase":true}}}, +{"id":43946,"name":"Chestplate of the Glacial Crusader","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,58,68,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1660,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":58,"3":68,"7":48,"22":1660},"isBase":true}}}, +{"id":43947,"name":"Stability Girdle","icon":"inv_belt_27","type":8,"armorType":4,"stats":[39,0,44,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"0":39,"2":44,"6":28,"22":934},"isBase":true}}}, +{"id":43948,"name":"Blood-Encrusted Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,33,62,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":33,"2":62,"5":38,"22":775},"isBase":true}}}, +{"id":43969,"name":"Frostsavage Belt","icon":"inv_belt_16","type":8,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59582}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"6":34,"16":34,"22":408},"isBase":true}}}, +{"id":43970,"name":"Frostsavage Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59585}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"6":34,"16":34,"22":499},"isBase":true}}}, +{"id":43971,"name":"Frostsavage Cowl","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59589}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"6":46,"16":46,"22":590},"isBase":true}}}, +{"id":43972,"name":"Frostsavage Robe","icon":"inv_chest_cloth_51","type":5,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59587}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"6":46,"16":46,"22":726},"isBase":true}}}, +{"id":43973,"name":"Frostsavage Shoulders","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,77,51,0,0,34,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59584}}],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":77,"3":51,"6":34,"16":34,"22":544},"isBase":true}}}, +{"id":43974,"name":"Frostsavage Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,59,38,0,0,25,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,318,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59583}}],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":59,"3":38,"6":25,"16":26,"22":318},"isBase":true}}}, +{"id":43975,"name":"Frostsavage Leggings","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,104,69,0,0,46,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostsavage Battlegear","setId":819,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":59588}}],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":104,"3":69,"6":46,"16":46,"22":635},"isBase":true}}}, +{"id":43976,"name":"Chain Gloves of the Quarry","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,54,50,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"2":54,"3":50,"6":29,"22":704},"isBase":true}}}, +{"id":43977,"name":"Links of the Sleep-Watcher","icon":"inv_chest_chain_12","type":5,"armorType":3,"stats":[0,0,59,67,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":59,"3":67,"6":49,"22":1127},"isBase":true}}}, +{"id":43978,"name":"Circlet of Suffering","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,63,59,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"2":63,"3":59,"7":52,"22":916},"isBase":true}}}, +{"id":43979,"name":"Glaciel Ranger's Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,70,69,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":101,"stats":{"1":70,"2":69,"7":36,"22":986},"isBase":true}}}, +{"id":43980,"name":"Thane's Restraints","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":56,"stats":{"1":39,"2":34,"22":493},"isBase":true}}}, +{"id":43981,"name":"Gauntlets of Onu'zun","icon":"inv_gauntlets_22","type":7,"armorType":3,"stats":[0,52,40,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":52,"2":40,"7":34,"22":704},"isBase":true}}}, +{"id":43982,"name":"Architect's Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,38,45,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":174,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":75,"stats":{"1":38,"2":45,"7":31,"22":845},"isBase":true}}}, +{"id":43988,"name":"Gale-Proof Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[36,0,63,0,0,0,0,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":36,"2":63,"8":21,"9":49,"22":404},"isBase":true}}}, +{"id":43989,"name":"Remembrance Girdle","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,97,58,36,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":58,"4":36,"7":44,"22":1316},"isBase":true}}}, +{"id":43990,"name":"Blade-Scarred Tunic","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,74,134,0,0,60,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26532,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":74,"2":134,"5":60,"7":43,"22":1103},"isBase":true}}}, +{"id":43991,"name":"Legguards of Composure","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,123,73,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26530,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":123,"3":73,"4":52,"6":52,"22":965},"isBase":true}}}, +{"id":43992,"name":"Volitant Amulet","icon":"inv_jewelry_necklace_41","type":2,"stats":[0,0,71,42,32,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26529,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":42,"4":32,"6":26},"isBase":true}}}, +{"id":43993,"name":"Greatring of Collision","icon":"inv_jewelry_ring_66","type":11,"stats":[0,20,102,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":20,"2":102,"6":41,"7":32},"isBase":true}}}, +{"id":43994,"name":"Belabored Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[85,0,150,0,0,42,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2059,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29120,"zoneId":4277}},{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"5":42,"6":72,"22":2059},"isBase":true}}}, +{"id":43995,"name":"Enamored Cowl","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,121,85,79,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,693,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":121,"3":85,"4":79,"6":40,"22":693},"isBase":true}}}, +{"id":43996,"name":"Sabatons of Firmament","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,110,67,40,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1147,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26632,"zoneId":4196}},{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":110,"3":67,"4":40,"6":50,"22":1147},"isBase":true}}}, +{"id":43998,"name":"Chestguard of Flagrant Prowess","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,84,151,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29311,"zoneId":4494}},{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":151,"5":41,"6":76,"22":1668},"isBase":true}}}, +{"id":43999,"name":"Ring of the Empty Horizon","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,82,48,38,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":82,"3":48,"4":38,"7":29},"isBase":true}}}, +{"id":44000,"name":"Dragonstorm Breastplate","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[100,0,127,0,0,0,0,0,0,61,58,0,0,0,0,0,0,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":100,"2":127,"9":61,"10":58,"22":2354},"isBase":true}}}, +{"id":44002,"name":"The Sanctum's Flowing Vestments","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,85,51,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":85,"4":51,"7":66,"22":852},"isBase":true}}}, +{"id":44003,"name":"Upstanding Spaulders","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,66,83,0,0,0,75,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":66,"2":83,"6":75,"7":30,"22":1251},"isBase":true}}}, +{"id":44004,"name":"Bountiful Gauntlets","icon":"inv_gauntlets_69","type":7,"armorType":3,"stats":[0,0,108,67,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"One Drake Left"}}],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":108,"3":67,"4":50,"6":42,"22":1043},"isBase":true}}}, +{"id":44005,"name":"Pennant Cloak","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,92,55,0,0,34,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":92,"3":55,"6":34,"7":42,"22":451},"isBase":true}}}, +{"id":44006,"name":"Obsidian Greathelm","icon":"inv_helmet_95","type":1,"armorType":4,"stats":[98,0,145,0,0,0,76,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1937,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"0":98,"2":145,"6":76,"8":59,"22":1937},"isBase":true}}}, +{"id":44007,"name":"Headpiece of Reconciliation","icon":"inv_helmet_108","type":1,"armorType":2,"stats":[0,0,161,97,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"2":161,"3":97,"4":60,"7":60,"22":964},"isBase":true}}}, +{"id":44008,"name":"Unsullied Cuffs","icon":"inv_bracer_17","type":6,"armorType":1,"stats":[0,0,92,55,42,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":92,"3":55,"4":42,"7":34,"22":394},"isBase":true}}}, +{"id":44011,"name":"Leggings of the Honored","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,98,169,0,0,66,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":28860,"zoneId":4493,"category":"Two Drakes Left"}}],"scalingOptions":{"226":{"randPropPoints":216,"stats":{"1":98,"2":169,"5":66,"7":65,"22":1038},"isBase":true}}}, +{"id":44013,"name":"Cannoneer's Fuselighter","icon":"inv_gizmo_elementalblastingpowder","type":12,"stats":[0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"6":54},"isBase":true}}}, +{"id":44014,"name":"Fezzik's Pocketwatch","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"7":60},"isBase":true}}}, +{"id":44015,"name":"Cannoneer's Morale","icon":"inv_datacrystal08","type":12,"stats":[0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"4":56},"isBase":true}}}, +{"id":44016,"name":"Wristguard of the Bone Witch","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,66,34,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":66,"3":34,"6":19,"22":292},"isBase":true}}}, +{"id":44017,"name":"Emeline's Locket","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,42,34,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":42,"3":34,"5":25},"isBase":true}}}, +{"id":44018,"name":"Bridenbrad's Sash","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,66,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,375,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":66,"3":45,"4":45,"22":375},"isBase":true}}}, +{"id":44019,"name":"The Argent Skullcap","icon":"inv_helmet_63","type":1,"armorType":1,"stats":[0,0,89,61,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"2":89,"3":61,"5":61,"22":542},"isBase":true}}}, +{"id":44020,"name":"Bloodbane's Fall","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,50,35,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":50,"3":35,"6":34,"22":334},"isBase":true}}}, +{"id":44021,"name":"The Darkspeaker's Footpads","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,68,44,26,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":68,"3":44,"4":26,"7":33,"22":459},"isBase":true}}}, +{"id":44022,"name":"The Witching Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,38,34,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":38,"3":34,"4":41},"isBase":true}}}, +{"id":44023,"name":"Bonecaster's Endgame","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,59,34,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":59,"3":34,"6":25},"isBase":true}}}, +{"id":44024,"name":"The Darkspeaker's Treads","icon":"inv_boots_cloth_03","type":10,"armorType":2,"stats":[0,45,75,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"1":45,"2":75,"5":35,"22":642},"isBase":true}}}, +{"id":44025,"name":"Bloodbane Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,35,49,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":35,"2":49,"7":34,"22":334},"isBase":true}}}, +{"id":44026,"name":"Bloodbane's Resolve","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[34,0,51,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":34,"2":51,"9":32,"22":334},"isBase":true}}}, +{"id":44027,"name":"Bloodbane Shroud","icon":"inv_misc_cape_12","type":4,"armorType":1,"stats":[0,0,59,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,334,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":59,"3":35,"4":26,"22":334},"isBase":true}}}, +{"id":44028,"name":"Vengance Shiv","icon":"inv_weapon_shortblade_72","type":13,"weaponType":2,"handType":2,"stats":[0,26,39,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":209,"weaponDamageMax":389,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":209,"weaponDamageMax":389,"stats":{"1":26,"2":39,"6":27},"isBase":true}}}, +{"id":44029,"name":"Quickblade of Cold Return","icon":"inv_sword_91","type":13,"weaponType":9,"handType":2,"stats":[0,0,39,0,0,0,0,0,0,0,26,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":186,"weaponDamageMax":346,"weaponSpeed":1.6,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":186,"weaponDamageMax":346,"stats":{"2":39,"10":26,"12":50,"13":50},"isBase":true}}}, +{"id":44030,"name":"The Darkspeaker's Sabatons","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,64,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":64,"3":45,"4":46,"22":976},"isBase":true}}}, +{"id":44031,"name":"The Darkspeaker's Iron Walkers","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[47,0,67,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"0":47,"2":67,"6":43,"22":1438},"isBase":true}}}, +{"id":44032,"name":"Bulwark of Redemption","icon":"inv_shield_51","type":13,"weaponType":7,"handType":3,"stats":[0,0,58,33,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5756,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":58,"3":33,"7":26,"22":5756},"isBase":true}}}, +{"id":44033,"name":"The Severed Noose of Westwind","icon":"inv_misc_noose_01","type":2,"stats":[0,29,53,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":29,"2":53,"6":18},"isBase":true}}}, +{"id":44034,"name":"Amulet of the Crusade","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,43,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":43,"3":34,"4":26},"isBase":true}}}, +{"id":44035,"name":"Reinforced Titanium Neckguard","icon":"inv_belt_22","type":2,"stats":[34,0,27,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":34,"2":27,"9":32},"isBase":true}}}, +{"id":44036,"name":"Njorndar Furywraps","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,34,63,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":34,"2":63,"5":23,"22":408},"isBase":true}}}, +{"id":44037,"name":"Iskalder's Fate","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,23,63,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":23,"2":63,"6":34,"22":621},"isBase":true}}}, +{"id":44038,"name":"Battlescar Spirebands","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[35,0,48,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":35,"2":48,"6":34,"22":915},"isBase":true}}}, +{"id":44039,"name":"Signet of Bridenbrad","icon":"inv_jewelry_ring_43","type":11,"stats":[0,24,62,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":24,"2":62,"6":18},"isBase":true}}}, +{"id":44040,"name":"The Crusader's Resolution","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[43,0,91,0,0,0,0,0,38,60,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"0":43,"2":91,"8":38,"9":60,"22":1700},"isBase":true}}}, +{"id":44041,"name":"Belt of the Never-Forgotten","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,0,82,45,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":82,"3":45,"4":31,"22":525},"isBase":true}}}, +{"id":44042,"name":"Chained Belt of Remembrance","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,0,66,45,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,799,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":66,"3":45,"7":45,"22":799},"isBase":true}}}, +{"id":44043,"name":"Girdle of Eternal Memory","icon":"inv_belt_27","type":8,"armorType":4,"stats":[0,0,79,45,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":79,"3":45,"4":32,"22":1177},"isBase":true}}}, +{"id":44044,"name":"Tirion's Headwrap","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,52,115,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"1":52,"2":115,"6":51,"22":759},"isBase":true}}}, +{"id":44045,"name":"Crusader's Coif","icon":"inv_helmet_110","type":1,"armorType":3,"stats":[0,67,91,0,0,0,33,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"1":67,"2":91,"6":33,"7":37,"22":1154},"isBase":true}}}, +{"id":44046,"name":"The Argent Crown","icon":"inv_helmet_122","type":1,"armorType":4,"stats":[0,0,79,67,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"2":79,"3":67,"6":61,"22":1700},"isBase":true}}}, +{"id":44050,"name":"Mastercraft Kalu'ak Fishing Pole","icon":"inv_fishingpole_03","type":13,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":722,"weaponDamageMax":1084,"weaponSpeed":3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":722,"weaponDamageMax":1084,"isBase":true}}}, +{"id":44051,"name":"Traditional Flensing Knife","icon":"inv_weapon_shortblade_87","type":13,"weaponType":2,"handType":2,"stats":[0,29,54,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":222,"weaponDamageMax":413,"weaponSpeed":1.7,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":222,"weaponDamageMax":413,"stats":{"1":29,"2":54,"6":21},"isBase":true}}}, +{"id":44052,"name":"Totemic Purification Rod","icon":"inv_mace_76","type":13,"weaponType":4,"handType":2,"stats":[0,0,72,0,0,0,0,32,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":169,"weaponDamageMax":316,"weaponSpeed":2.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":169,"weaponDamageMax":316,"stats":{"2":72,"7":32,"14":394},"isBase":true}}}, +{"id":44053,"name":"Whale-Stick Harpoon","icon":"inv_weapon_halberd_ahnqiraj","type":13,"weaponType":6,"handType":4,"stats":[0,69,134,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":699,"weaponDamageMax":1049,"weaponSpeed":3.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":699,"weaponDamageMax":1049,"stats":{"1":69,"2":134,"5":40},"isBase":true}}}, +{"id":44054,"name":"Whale-Skin Breastplate","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,57,86,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"1":57,"2":86,"7":55,"22":862},"isBase":true}}}, +{"id":44055,"name":"Whale-Skin Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,83,55,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"2":83,"3":55,"7":56,"22":862},"isBase":true}}}, +{"id":44057,"name":"Ivory-Reinforced Chestguard","icon":"inv_chest_plate07","type":5,"armorType":4,"stats":[43,0,84,0,0,0,0,0,28,56,0,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"0":43,"2":84,"8":28,"9":56,"22":1940},"isBase":true}}}, +{"id":44058,"name":"Whalebone Carapace","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[75,0,61,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1940,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"0":75,"2":61,"6":46,"22":1940},"isBase":true}}}, +{"id":44059,"name":"Cuttlefish Scale Breastplate","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,56,99,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"1":56,"2":99,"6":41,"22":1308},"isBase":true}}}, +{"id":44060,"name":"Cuttlefish Tooth Ringmail","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,82,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"2":82,"3":56,"4":56,"22":1308},"isBase":true}}}, +{"id":44061,"name":"Pigment-Stained Robes","icon":"inv_chest_cloth_19","type":5,"armorType":1,"stats":[0,0,80,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"2":80,"3":56,"4":56,"22":618},"isBase":true}}}, +{"id":44062,"name":"Turtle-Minders Robe","icon":"inv_chest_cloth_18","type":5,"armorType":1,"stats":[0,0,104,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,618,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":166,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":107,"stats":{"2":104,"3":56,"5":38,"22":618},"isBase":true}}}, +{"id":44063,"name":"Figurine - Monarch Crab","icon":"inv_jewelcrafting_goldencrab","type":12,"stats":[0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":59759}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":63},"isBase":true}}}, +{"id":44073,"name":"Frenzyheart Insignia of Fury","icon":"inv_misc_rune_14","type":12,"stats":[0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"7":71},"isBase":true}}}, +{"id":44074,"name":"Oracle Talisman of Ablution","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":71},"isBase":true}}}, +{"id":44104,"name":"Fishy Cinch","icon":"inv_belt_03","type":8,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":408},"isBase":true}}}, +{"id":44106,"name":"Glitterscale Wrap","icon":"inv_belt_24","type":8,"armorType":2,"stats":[0,51,102,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":102,"6":25,"22":569},"isBase":true}}}, +{"id":44108,"name":"Shinygem Rod","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,42,30,0,0,22,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":117,"weaponDamageMax":218,"stats":{"2":42,"3":30,"6":22,"14":394},"isBase":true}}}, +{"id":44109,"name":"Toothslice Helm","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,69,119,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":119,"6":34,"7":34,"22":1247},"isBase":true}}}, +{"id":44110,"name":"Sharkjaw Cap","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,116,69,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":69,"6":53,"22":1247},"isBase":true}}}, +{"id":44111,"name":"Gold Star Spaulders","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[50,0,57,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":50,"2":57,"6":58,"22":1661},"isBase":true}}}, +{"id":44112,"name":"Glimmershell Shoulder Protectors","icon":"inv_shoulder_haremmatron_d_01","type":3,"armorType":4,"stats":[50,0,75,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":50,"2":75,"10":51,"22":1661},"isBase":true}}}, +{"id":44116,"name":"Muddied Crimson Gloves","icon":"inv_gauntlets_49","type":7,"armorType":1,"stats":[0,0,73,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":73,"3":51,"4":51,"22":454},"isBase":true}}}, +{"id":44117,"name":"Azure Strappy Pants","icon":"inv_pants_leather_21","type":9,"armorType":2,"stats":[0,69,116,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"1":69,"2":116,"5":53,"22":817},"isBase":true}}}, +{"id":44120,"name":"Giant-Sized Gauntlets","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[40,0,77,0,0,25,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":40,"2":77,"5":25,"9":51,"22":1385},"isBase":true}}}, +{"id":44121,"name":"Sparkly Shiny Gloves","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,88,51,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":88,"3":51,"6":37,"22":1385},"isBase":true}}}, +{"id":44122,"name":"Scavenged Feathery Leggings","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,122,69,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1343,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":122,"3":69,"7":40,"22":1343},"isBase":true}}}, +{"id":44123,"name":"Discarded Titanium Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,116,68,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":68,"6":53,"22":1938},"isBase":true}}}, +{"id":44166,"name":"Lightblade Rivener","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,29,44,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":268,"weaponDamageMax":403,"stats":{"1":29,"2":44,"7":30},"isBase":true}}}, +{"id":44167,"name":"Shroud of Dedicated Research","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,54,39,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"7":38,"22":363},"isBase":true}}}, +{"id":44170,"name":"Helm of the Majestic Stag","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,116,67,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":67,"4":52,"22":822},"isBase":true}}}, +{"id":44171,"name":"Spaulders of Grounded Lightning","icon":"inv_shoulder_97","type":3,"armorType":3,"stats":[0,34,77,0,0,0,34,34,0,0,0,0,0,0,0,0,34,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":34,"2":77,"6":34,"7":34,"16":34,"22":1151},"isBase":true}}}, +{"id":44173,"name":"Flameheart Spell Scalpel","icon":"inv_sword_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,58,0,0,34,25,0,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":132,"weaponDamageMax":246,"stats":{"2":58,"5":34,"6":25,"14":443},"isBase":true}}}, +{"id":44174,"name":"Stave of Shrouded Mysteries","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,117,0,0,0,0,0,0,56,0,0,155,155,0,0,0,0,0,0,0,0,0,90,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":633,"weaponDamageMax":951,"weaponSpeed":2.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":633,"weaponDamageMax":951,"stats":{"2":117,"9":56,"12":155,"13":155,"23":90},"isBase":true}}}, +{"id":44176,"name":"Girdle of the Warrior Magi","icon":"inv_belt_34","type":8,"armorType":4,"stats":[0,0,84,58,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":84,"3":58,"6":42,"22":1274},"isBase":true}}}, +{"id":44179,"name":"Mind-Expanding Leggings","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,78,112,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"1":78,"2":112,"8":62,"22":934},"isBase":true}}}, +{"id":44180,"name":"Robes of Crackling Flame","icon":"inv_chest_cloth_24","type":5,"armorType":1,"stats":[0,0,132,89,66,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,808,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":132,"3":89,"4":66,"7":42,"22":808},"isBase":true}}}, +{"id":44181,"name":"Ghostflicker Waistband","icon":"inv_belt_39","type":8,"armorType":2,"stats":[0,0,99,66,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":99,"3":66,"6":48,"22":620},"isBase":true}}}, +{"id":44182,"name":"Boots of Twinkling Stars","icon":"inv_boots_chain_05","type":10,"armorType":3,"stats":[0,42,83,0,0,0,25,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":42,"2":83,"6":25,"7":58,"22":1128},"isBase":true}}}, +{"id":44183,"name":"Fireproven Gauntlets","icon":"inv_gauntlets_31","type":7,"armorType":4,"stats":[67,0,99,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":67,"2":99,"9":65,"22":1463},"isBase":true}}}, +{"id":44187,"name":"Fang of Truth","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[0,32,49,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":235,"weaponDamageMax":437,"stats":{"1":32,"2":49,"5":33},"isBase":true}}}, +{"id":44188,"name":"Cloak of Peaceful Resolutions","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[31,0,64,0,0,25,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"0":31,"2":64,"5":25,"9":43,"22":363},"isBase":true}}}, +{"id":44189,"name":"Giant Ring Belt","icon":"inv_belt_31","type":8,"armorType":3,"stats":[0,51,77,0,0,0,25,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":77,"6":25,"7":40,"22":864},"isBase":true}}}, +{"id":44190,"name":"Spaulders of Frozen Knives","icon":"inv_shoulder_101","type":3,"armorType":2,"stats":[0,50,77,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":50,"2":77,"7":52,"22":759},"isBase":true}}}, +{"id":44191,"name":"Ice-Rimed Chopper","icon":"inv_axe_83","type":13,"weaponType":1,"handType":4,"stats":[80,0,117,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"0":80,"2":117,"7":74},"isBase":true}}}, +{"id":44192,"name":"Stalactite Chopper","icon":"inv_axe_30","type":13,"weaponType":1,"handType":2,"stats":[0,0,49,0,0,0,34,26,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":2.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":49,"6":34,"7":26,"12":32,"13":32},"isBase":true}}}, +{"id":44193,"name":"Broken Stalactite","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,26,36,0,0,28,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"weaponSpeed":1.8,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":302,"weaponDamageMax":454,"stats":{"1":26,"2":36,"5":28,"6":33},"isBase":true}}}, +{"id":44194,"name":"Giant-Friend Kilt","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,111,77,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":77,"6":78,"22":934},"isBase":true}}}, +{"id":44195,"name":"Spaulders of the Giant Lords","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[66,0,64,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":66,"2":64,"6":58,"22":1699},"isBase":true}}}, +{"id":44196,"name":"Sash of the Wizened Wyrm","icon":"inv_belt_22","type":8,"armorType":1,"stats":[0,0,85,51,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":85,"3":51,"5":40,"22":408},"isBase":true}}}, +{"id":44197,"name":"Bracers of Accorded Courtesy","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,54,39,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":54,"3":39,"7":22,"22":969},"isBase":true}}}, +{"id":44198,"name":"Breastplate of the Solemn Council","icon":"inv_chest_plate12","type":5,"armorType":4,"stats":[49,0,117,0,0,0,0,0,56,76,0,0,0,0,0,0,0,0,0,0,0,0,2265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":49,"2":117,"8":56,"9":76,"22":2265},"isBase":true}}}, +{"id":44199,"name":"Gavel of the Brewing Storm","icon":"inv_mace_60","type":13,"weaponType":4,"handType":2,"stats":[0,0,66,0,0,0,24,25,0,0,0,0,0,0,443,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":169,"weaponDamageMax":314,"weaponSpeed":2.3,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":169,"weaponDamageMax":314,"stats":{"2":66,"6":24,"7":25,"14":443},"isBase":true}}}, +{"id":44200,"name":"Ancestral Sinew Wristguards","icon":"inv_bracer_05","type":6,"armorType":1,"stats":[0,0,60,43,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"4":27,"22":342},"isBase":true}}}, +{"id":44201,"name":"Sabatons of Draconic Vigor","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[44,0,85,0,0,29,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":44,"2":85,"5":29,"9":58,"22":1557},"isBase":true}}}, +{"id":44202,"name":"Sandals of Crimson Fury","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,93,66,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":93,"3":66,"7":51,"22":556},"isBase":true}}}, +{"id":44203,"name":"Dragonfriend Bracers","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,50,84,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":50,"2":84,"6":38,"22":482},"isBase":true}}}, +{"id":44204,"name":"Grips of Fierce Pronouncements","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,97,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1026,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"4":66,"22":1026},"isBase":true}}}, +{"id":44205,"name":"Legplates of Bloody Reprisal","icon":"inv_pants_plate_02","type":9,"armorType":4,"stats":[96,0,117,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":96,"2":117,"6":90,"22":2048},"isBase":true}}}, +{"id":44210,"name":"Faces of Doom","icon":"inv_misc_book_09","type":13,"weaponType":5,"handType":3,"stats":[0,0,63,42,42,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":59498}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":63,"3":42,"4":42,"6":42},"isBase":true}}}, +{"id":44211,"name":"Frostwoven Gloves","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,30,36,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":53,"ilvl":138,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostwoven Power","setId":763,"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":55904}}],"scalingOptions":{"138":{"randPropPoints":53,"stats":{"2":30,"3":36,"4":26,"22":243},"isBase":true}}}, +{"id":44214,"name":"Purifying Torch","icon":"inv_wand_11","type":14,"rangedWeaponType":6,"stats":[0,0,29,30,27,0,0,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.6,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":29,"3":30,"4":27,"14":394},"isBase":true}}}, +{"id":44216,"name":"Cloak of Holy Extermination","icon":"inv_misc_cape_12","type":4,"armorType":1,"stats":[0,39,72,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"1":39,"2":72,"6":25,"22":363},"isBase":true}}}, +{"id":44239,"name":"Standard Issue Legguards","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,116,68,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":68,"7":40,"22":1938},"isBase":true}}}, +{"id":44240,"name":"Special Issue Legplates","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[30,0,102,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,1938,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":30,"2":102,"5":46,"9":69,"22":1938},"isBase":true}}}, +{"id":44241,"name":"Unholy Persuader","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":2,"stats":[0,30,46,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":326,"weaponDamageMax":607,"weaponSpeed":2.5,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":326,"weaponDamageMax":607,"stats":{"1":30,"2":46,"6":29},"isBase":true}}}, +{"id":44242,"name":"Dark Soldier Cape","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[0,0,64,39,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,363,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":73,"stats":{"2":64,"3":39,"5":29,"22":363},"isBase":true}}}, +{"id":44243,"name":"Toxin-Tempered Sabatons","icon":"inv_boots_plate_07","type":10,"armorType":4,"stats":[51,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,1523,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":51,"2":76,"9":34,"10":34,"22":1523},"isBase":true}}}, +{"id":44244,"name":"Argent Skeleton Crusher","icon":"inv_staff_71","type":13,"weaponType":4,"handType":4,"stats":[84,0,100,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"weaponSpeed":3.6,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":786,"weaponDamageMax":1180,"stats":{"0":84,"2":100,"6":77},"isBase":true}}}, +{"id":44245,"name":"Zombie Sweeper Shotgun","icon":"inv_weapon_rifle_01","type":14,"rangedWeaponType":3,"stats":[0,109,0,0,0,45,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"weaponSpeed":2.9,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":554,"weaponDamageMax":1030,"stats":{"1":109,"5":45,"6":58},"isBase":true}}}, +{"id":44247,"name":"Fang-Deflecting Faceguard","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[89,0,87,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"0":89,"2":87,"7":78,"22":1840},"isBase":true}}}, +{"id":44248,"name":"Battle Mender's Helm","icon":"inv_helmet_13","type":1,"armorType":3,"stats":[0,0,111,78,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1290,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"2":111,"3":78,"6":77,"22":1290},"isBase":true}}}, +{"id":44249,"name":"Runeblade of Demonstrable Power","icon":"inv_sword_95","type":13,"weaponType":9,"handType":4,"stats":[0,63,126,0,0,0,67,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":764,"weaponDamageMax":1147,"weaponSpeed":3.5,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":764,"weaponDamageMax":1147,"stats":{"1":63,"2":126,"6":67,"7":33},"isBase":true}}}, +{"id":44250,"name":"Reaper of Dark Souls","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[0,0,24,0,0,33,26,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"weaponDamageMin":453,"weaponDamageMax":681,"weaponSpeed":2.7,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":63,"weaponDamageMin":453,"weaponDamageMax":681,"stats":{"2":24,"5":33,"6":26,"12":66,"13":66},"isBase":true}}}, +{"id":44253,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":90},"isBase":true}}}, +{"id":44254,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"4":90},"isBase":true}}}, +{"id":44255,"name":"Darkmoon Card: Greatness","icon":"inv_inscription_tarotgreatness","type":12,"stats":[0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":90},"isBase":true}}}, +{"id":44256,"name":"Sterile Flesh-Handling Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":102,"3":58,"4":41,"22":489},"isBase":true}}}, +{"id":44257,"name":"Spaulders of the Black Arrow","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,58,81,0,0,0,33,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":81,"6":33,"7":44,"22":1191},"isBase":true}}}, +{"id":44258,"name":"Wound-Binder's Wristguards","icon":"inv_bracer_18","type":6,"armorType":2,"stats":[0,0,76,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":76,"3":44,"4":36,"22":467},"isBase":true}}}, +{"id":44283,"name":"Signet of Hopeful Light","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,88,50,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":88,"3":50,"7":36},"isBase":true}}}, +{"id":44295,"name":"Polished Regimental Hauberk","icon":"inv_chest_chain_16","type":5,"armorType":3,"stats":[0,89,128,0,0,49,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":89,"2":128,"5":49,"6":52,"22":1641},"isBase":true}}}, +{"id":44296,"name":"Helm of Purified Thoughts","icon":"inv_helmet_20","type":1,"armorType":4,"stats":[0,0,152,72,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":152,"3":72,"6":45,"22":1901},"isBase":true}}}, +{"id":44297,"name":"Boots of the Neverending Path","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,61,94,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":61,"2":94,"5":66,"22":758},"isBase":true}}}, +{"id":44302,"name":"Belt of Dark Mending","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,104,66,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":104,"3":66,"7":55,"22":455},"isBase":true}}}, +{"id":44303,"name":"Darkheart Chestguard","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,90,149,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":90,"2":149,"6":68,"22":1103},"isBase":true}}}, +{"id":44305,"name":"Kilt of Dark Mercy","icon":"inv_pants_mail_11","type":9,"armorType":3,"stats":[0,0,127,89,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":72,"22":1436},"isBase":true}}}, +{"id":44306,"name":"Death-Inured Sabatons","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[50,0,73,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":50,"2":73,"6":66,"22":1609},"isBase":true}}}, +{"id":44308,"name":"Signet of Edward the Odd","icon":"inv_jewelry_ring_76","type":11,"stats":[0,49,73,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":49,"2":73,"7":29},"isBase":true}}}, +{"id":44309,"name":"Sash of Jordan","icon":"inv_belt_40","type":8,"armorType":1,"stats":[0,0,95,56,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":56,"4":55,"22":455},"isBase":true}}}, +{"id":44310,"name":"Namlak's Supernumerary Sticker","icon":"inv_weapon_shortblade_63","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,32,48,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"5":32,"6":48,"7":32},"isBase":true}}}, +{"id":44311,"name":"Avool's Sword of Jin","icon":"inv_sword_109","type":13,"weaponType":9,"handType":2,"stats":[0,38,62,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"1":38,"2":62,"5":31},"isBase":true}}}, +{"id":44312,"name":"Wapach's Spaulders of Solidarity","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[53,0,100,0,0,0,0,0,42,58,0,0,0,0,0,0,0,0,0,0,0,0,1755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":53,"2":100,"8":42,"9":58,"22":1755},"isBase":true}}}, +{"id":44313,"name":"Zom's Crackling Bulwark","icon":"inv_shield_34","type":13,"weaponType":7,"handType":3,"stats":[0,0,74,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6757,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":74,"3":50,"4":50,"22":6757},"isBase":true}}}, +{"id":44322,"name":"Mercurial Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,0,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60396}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"3":50,"7":50},"isBase":true}}}, +{"id":44323,"name":"Indestructible Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,75,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60403}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":75,"9":50},"isBase":true}}}, +{"id":44324,"name":"Mighty Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":1,"spellId":60405}}],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"6":50,"12":100,"13":100},"isBase":true}}}, +{"id":44333,"name":"Ghostcrawler's Greaves","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,0,77,66,66,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":77,"3":66,"4":66,"7":32,"22":758},"isBase":true}}}, +{"id":44334,"name":"Ring of Temerity","icon":"inv_jewelry_ring_19","type":11,"stats":[0,0,57,34,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":57,"3":34,"6":26},"isBase":true}}}, +{"id":44335,"name":"Band of Motivation","icon":"inv_jewelry_ring_33","type":11,"stats":[0,19,77,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"1":19,"2":77,"8":25},"isBase":true}}}, +{"id":44336,"name":"Flourishing Band","icon":"inv_jewelry_ring_14","type":11,"stats":[0,0,59,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":59,"3":34,"4":26},"isBase":true}}}, +{"id":44337,"name":"Staunch Signet","icon":"inv_jewelry_ring_12","type":11,"stats":[34,0,51,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":34,"2":51,"9":33},"isBase":true}}}, +{"id":44338,"name":"Cuffs of Gratitude","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,51,34,26,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":51,"3":34,"4":26,"6":17,"22":294},"isBase":true}}}, +{"id":44339,"name":"Soaring Wristwraps","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,51,34,25,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"2":51,"3":34,"4":25,"6":19,"22":412},"isBase":true}}}, +{"id":44340,"name":"Bindings of Raelorasz","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,34,37,0,0,0,25,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"1":34,"2":37,"6":25,"7":28,"22":627},"isBase":true}}}, +{"id":44341,"name":"Bracers of Reverence","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[25,0,51,0,0,19,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"0":25,"2":51,"5":19,"9":34,"22":923},"isBase":true}}}, +{"id":44342,"name":"Tattooed Deerskin Leggings","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,55,88,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"1":55,"2":88,"6":52,"22":761},"isBase":true}}}, +{"id":44343,"name":"Conferred Pantaloons","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,78,58,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":78,"3":58,"4":57,"22":545},"isBase":true}}}, +{"id":44344,"name":"Labyrinthine Legguards","icon":"inv_pants_mail_04","type":9,"armorType":3,"stats":[0,57,86,0,0,0,41,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"1":57,"2":86,"6":41,"7":32,"22":1155},"isBase":true}}}, +{"id":44345,"name":"Dalaran Warden's Legplates","icon":"inv_pants_plate_10","type":9,"armorType":4,"stats":[0,0,86,38,56,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1712,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":86,"3":38,"4":56,"6":38,"22":1712},"isBase":true}}}, +{"id":44346,"name":"Warchief's Leggings of Wisdom","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,65,47,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":65,"3":47,"7":47,"22":449},"isBase":true}}}, +{"id":44347,"name":"Warchief's Legguards of Heroism","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,77,47,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":77,"3":47,"4":37,"22":621},"isBase":true}}}, +{"id":44348,"name":"Warchief's Leggings of Valor","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,91,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":91,"3":46,"4":22,"22":934},"isBase":true}}}, +{"id":44349,"name":"Warchief's Legplates of Carnage","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[37,0,0,0,0,28,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"0":37,"5":28,"6":65,"22":1378},"isBase":true}}}, +{"id":44350,"name":"Mantle of Thwarted Evil","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,72,41,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":72,"3":41,"6":30,"22":452},"isBase":true}}}, +{"id":44351,"name":"Shoulderpads of Abhorrence","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,41,80,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"1":41,"2":80,"6":23,"22":629},"isBase":true}}}, +{"id":44352,"name":"Shoulderplates of the Abolished","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[42,0,60,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"0":42,"2":60,"6":41,"22":1416},"isBase":true}}}, +{"id":44353,"name":"Epaulets of the Faceless Ones","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,62,41,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,954,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":163,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"163":{"randPropPoints":78,"stats":{"2":62,"3":41,"6":41,"22":954},"isBase":true}}}, +{"id":44354,"name":"Assault Hauberk","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,61,96,0,0,32,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"1":61,"2":96,"5":32,"6":33,"22":1420},"isBase":true}}}, +{"id":44355,"name":"Incursion Vestments","icon":"inv_chest_cloth_23","type":5,"armorType":1,"stats":[0,0,99,57,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":99,"3":57,"7":46,"22":623},"isBase":true}}}, +{"id":44356,"name":"Vest of the Assailant","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,64,100,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"1":64,"2":100,"6":34,"22":870},"isBase":true}}}, +{"id":44357,"name":"Besieging Breastplate","icon":"inv_chest_plate09","type":5,"armorType":4,"stats":[0,0,95,57,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":95,"3":57,"4":52,"22":1956},"isBase":true}}}, +{"id":44358,"name":"Kilix's Silk Slippers","icon":"inv_boots_fabric_01","type":10,"armorType":1,"stats":[0,0,44,40,22,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":44,"3":40,"4":22,"7":39,"22":397},"isBase":true}}}, +{"id":44359,"name":"Don Soto's Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,40,61,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"1":40,"2":61,"7":39,"22":552},"isBase":true}}}, +{"id":44360,"name":"Husk Shard Sabatons","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,40,54,0,0,0,26,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"1":40,"2":54,"6":26,"7":29,"22":836},"isBase":true}}}, +{"id":44361,"name":"Greaves of the Traitor","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[40,0,58,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1242,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"0":40,"2":58,"6":39,"22":1242},"isBase":true}}}, +{"id":44362,"name":"Expelling Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[39,0,60,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"0":39,"2":60,"10":38,"22":1129},"isBase":true}}}, +{"id":44363,"name":"Purging Handguards","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,0,65,40,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":65,"3":40,"4":30,"22":760},"isBase":true}}}, +{"id":44364,"name":"Wraps of Quelled Bane","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,31,35,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,502,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"1":31,"2":35,"6":55,"22":502},"isBase":true}}}, +{"id":44365,"name":"Gloves of Banished Infliction","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,59,40,29,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,361,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"2":59,"3":40,"4":29,"6":22,"22":361},"isBase":true}}}, +{"id":44366,"name":"Shameful Cuffs","icon":"inv_bracer_09","type":6,"armorType":1,"stats":[0,0,24,30,22,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":24,"3":30,"4":22,"6":39,"22":253},"isBase":true}}}, +{"id":44367,"name":"Scorned Bands","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,29,55,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"1":29,"2":55,"7":18,"22":351},"isBase":true}}}, +{"id":44368,"name":"Accused Wristguards","icon":"inv_bracer_17","type":6,"armorType":3,"stats":[0,0,43,29,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":43,"3":29,"4":30,"22":532},"isBase":true}}}, +{"id":44369,"name":"Disavowed Bracers","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,41,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":41,"3":30,"4":30,"22":790},"isBase":true}}}, +{"id":44370,"name":"Mantle of the Intrepid Explorer","icon":"inv_shoulder_72","type":3,"armorType":1,"stats":[0,0,50,46,46,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":50,"3":46,"4":46,"7":26,"22":505},"isBase":true}}}, +{"id":44371,"name":"Shoulderpads of the Adventurer","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,51,46,46,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,706,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":51,"3":46,"4":46,"6":26,"22":706},"isBase":true}}}, +{"id":44372,"name":"Spaulders of Lost Secrets","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,34,59,0,0,46,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":34,"2":59,"5":46,"6":33,"22":1075},"isBase":true}}}, +{"id":44373,"name":"Pauldrons of Reconnaissance","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[34,0,69,0,0,0,0,0,24,46,0,0,0,0,0,0,0,0,0,0,0,0,1582,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"0":34,"2":69,"8":24,"9":46,"22":1582},"isBase":true}}}, +{"id":44374,"name":"Amulet of the Tranquil Mind","icon":"inv_jewelry_necklace_08","type":2,"stats":[0,0,23,28,20,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":151,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":52,"stats":{"2":23,"3":28,"4":20,"7":27},"isBase":true}}}, +{"id":44375,"name":"Razor-Blade Pendant","icon":"inv_jewelry_necklace_ahnqiraj_01","type":2,"stats":[30,0,37,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":151,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":52,"stats":{"0":30,"2":37,"6":26},"isBase":true}}}, +{"id":44376,"name":"Necklace of Fragmented Light","icon":"inv_jewelry_necklace_11","type":2,"stats":[0,0,38,28,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":151,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":52,"stats":{"2":38,"3":28,"5":27},"isBase":true}}}, +{"id":44377,"name":"Woven Steel Necklace","icon":"inv_jewelry_necklace_04","type":2,"stats":[27,0,42,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":151,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"151":{"randPropPoints":52,"stats":{"0":27,"2":42,"10":26},"isBase":true}}}, +{"id":44378,"name":"Mantle of the Flesh Giant","icon":"inv_shoulder_06","type":3,"armorType":1,"stats":[0,0,80,45,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":80,"3":45,"7":33,"22":500},"isBase":true}}}, +{"id":44379,"name":"Shoulderpads of Fleshwerks","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,45,80,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"1":45,"2":80,"8":33,"22":700},"isBase":true}}}, +{"id":44380,"name":"Giant Champion's Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,80,45,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1065,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":80,"3":45,"7":33,"22":1065},"isBase":true}}}, +{"id":44381,"name":"Pauldrons of Morbidus","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,72,45,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1569,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"2":72,"3":45,"6":37,"22":1569},"isBase":true}}}, +{"id":44382,"name":"Robes of Refrained Celebration","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":66,"22":715},"isBase":true}}}, +{"id":44383,"name":"Battleplate of Unheard Ovation","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[70,0,102,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,2219,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"0":70,"2":102,"8":68,"22":2219},"isBase":true}}}, +{"id":44384,"name":"Chestguard of Unwanted Success","icon":"inv_chest_chain_05","type":5,"armorType":3,"stats":[0,0,111,66,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1532,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":111,"3":66,"6":51,"22":1532},"isBase":true}}}, +{"id":44385,"name":"Tunic of the Unduly Victorious","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,94,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1004,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"2":94,"3":66,"4":66,"22":1004},"isBase":true}}}, +{"id":44386,"name":"Newt-Eye Ring","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,51,34,28,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":51,"3":34,"4":28,"7":14},"isBase":true}}}, +{"id":44387,"name":"Bat-Wool Signet","icon":"inv_jewelry_ring_ahnqiraj_03","type":11,"stats":[0,0,38,34,0,19,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":38,"3":34,"5":19,"6":34},"isBase":true}}}, +{"id":44388,"name":"Frog-Toe Band","icon":"inv_jewelry_ring_44","type":11,"stats":[0,20,68,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"1":20,"2":68,"6":34},"isBase":true}}}, +{"id":44389,"name":"Curative Necklace","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,51,23,36,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":51,"3":23,"4":36,"7":22},"isBase":true}}}, +{"id":44390,"name":"Venomous Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,0,0,0,0,0,20,27,0,0,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"6":20,"7":27,"12":96,"13":96},"isBase":true}}}, +{"id":44391,"name":"Cast Steel Choker","icon":"inv_jewelry_necklace_14","type":2,"stats":[34,0,51,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"0":34,"2":51,"9":26,"23":68},"isBase":true}}}, +{"id":44392,"name":"Necklace of Permeation","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,57,34,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":65,"stats":{"2":57,"3":34,"6":26},"isBase":true}}}, +{"id":44393,"name":"Polished Zombie Exterminator","icon":"inv_weapon_crossbow_21","type":14,"rangedWeaponType":2,"stats":[0,0,90,0,0,0,61,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"weaponDamageMin":423,"weaponDamageMax":787,"weaponSpeed":2.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"weaponDamageMin":423,"weaponDamageMax":787,"stats":{"2":90,"6":61,"12":116,"13":116},"isBase":true}}}, +{"id":44394,"name":"Encrusted Zombie Finger","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,24,21,38,0,0,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":24,"3":21,"4":38,"14":351},"isBase":true}}}, +{"id":44395,"name":"Touch of Unlife","icon":"inv_wand_12","type":14,"rangedWeaponType":6,"stats":[0,0,24,21,0,0,38,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":104,"weaponDamageMax":194,"stats":{"2":24,"3":21,"6":38,"14":351},"isBase":true}}}, +{"id":44396,"name":"Gloves of the Time Guardian","icon":"inv_gauntlets_06","type":7,"armorType":1,"stats":[0,0,71,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"2":71,"3":51,"4":51,"22":454},"isBase":true}}}, +{"id":44397,"name":"Handwraps of Preserved History","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,47,96,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":47,"2":96,"8":38,"22":633},"isBase":true}}}, +{"id":44398,"name":"Grips of Chronological Events","icon":"inv_gauntlets_28","type":7,"armorType":3,"stats":[0,51,78,0,0,0,37,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,960,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"1":51,"2":78,"6":37,"7":22,"22":960},"isBase":true}}}, +{"id":44399,"name":"Gauntlets of The Culling","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[52,0,76,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":97,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":97,"stats":{"0":52,"2":76,"5":50,"22":1385},"isBase":true}}}, +{"id":44400,"name":"Necklace of Calm Skies","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,46,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"2":46,"3":26,"4":20},"isBase":true}}}, +{"id":44401,"name":"Hundred Tooth Necklace","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,17,59,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"1":17,"2":59,"6":18},"isBase":true}}}, +{"id":44402,"name":"Tiled-Stone Pendant","icon":"inv_jewelry_necklace_06","type":2,"stats":[20,0,39,0,0,0,0,0,13,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"0":20,"2":39,"8":13,"9":26},"isBase":true}}}, +{"id":44403,"name":"Amulet of Constrained Power","icon":"inv_jewelry_necklace_07","type":2,"stats":[0,0,36,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"146":{"randPropPoints":50,"stats":{"2":36,"3":26,"6":26},"isBase":true}}}, +{"id":44404,"name":"Bauble-Woven Gown","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,94,69,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":94,"3":69,"4":68,"22":726},"isBase":true}}}, +{"id":44405,"name":"Exotic Leather Tunic","icon":"inv_chest_leather_05","type":5,"armorType":2,"stats":[0,69,132,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":132,"8":39,"22":1012},"isBase":true}}}, +{"id":44406,"name":"Gilded Ringmail Hauberk","icon":"inv_chest_chain_07","type":5,"armorType":3,"stats":[0,69,89,0,0,0,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1535,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":89,"6":49,"7":50,"22":1535},"isBase":true}}}, +{"id":44407,"name":"Silver-Plated Battlechest","icon":"inv_chest_plate05","type":5,"armorType":4,"stats":[60,0,103,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,2215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":60,"2":103,"9":74,"22":2215},"isBase":true}}}, +{"id":44408,"name":"Cowl of the Vindictive Captain","icon":"inv_helmet_107","type":1,"armorType":1,"stats":[0,0,116,69,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,590,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":116,"3":69,"7":52,"22":590},"isBase":true}}}, +{"id":44409,"name":"Headguard of Retaliation","icon":"inv_helmet_04","type":1,"armorType":2,"stats":[0,69,134,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":69,"2":134,"6":40,"22":822},"isBase":true}}}, +{"id":44410,"name":"Helmet of Just Retribution","icon":"inv_helmet_104","type":1,"armorType":3,"stats":[0,46,120,0,0,0,49,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"1":46,"2":120,"6":49,"7":46,"22":1247},"isBase":true}}}, +{"id":44411,"name":"Platehelm of Irate Revenge","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[0,0,115,69,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"2":115,"3":69,"7":53,"22":1800},"isBase":true}}}, +{"id":44412,"name":"Faceguard of Punishment","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[70,0,102,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"stats":{"0":70,"2":102,"5":68,"22":1800},"isBase":true}}}, +{"id":44415,"name":"Savage Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,0,0,66,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"stats":{"2":140,"7":66,"14":444,"16":65},"isBase":true}}}, +{"id":44416,"name":"Savage Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,140,0,0,66,0,0,0,0,0,0,0,0,444,0,65,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"weaponSpeed":2,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"weaponDamageMin":218,"weaponDamageMax":328,"stats":{"2":140,"5":66,"14":444,"16":65},"isBase":true}}}, +{"id":44417,"name":"Hateful Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,0,0,75,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"2":162,"7":75,"14":511,"16":75},"isBase":true}}}, +{"id":44418,"name":"Hateful Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,162,0,0,75,0,0,0,0,0,0,0,0,511,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":240,"weaponDamageMax":361,"stats":{"2":162,"5":75,"14":511,"16":75},"isBase":true}}}, +{"id":44419,"name":"Deadly Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,0,0,85,0,0,0,0,0,0,575,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":182,"7":85,"14":575,"16":84},"isBase":true}}}, +{"id":44420,"name":"Deadly Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,182,0,0,85,0,0,0,0,0,0,0,0,575,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":191,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":182,"5":85,"14":575,"16":84},"isBase":true}}}, +{"id":44421,"name":"Furious Gladiator's War Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,0,0,86,0,0,0,0,0,0,690,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"stats":{"2":218,"7":86,"14":690,"16":91},"isBase":true}}}, +{"id":44422,"name":"Furious Gladiator's Focus Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,218,0,0,86,0,0,0,0,0,0,0,0,690,0,91,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":347,"weaponDamageMax":521,"stats":{"2":218,"5":86,"14":690,"16":91},"isBase":true}}}, +{"id":44423,"name":"Relentless Gladiator's War Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,0,0,99,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"stats":{"2":245,"7":99,"14":777,"16":99},"isBase":true}}}, +{"id":44424,"name":"Relentless Gladiator's Focus Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,0,245,0,0,99,0,0,0,0,0,0,0,0,777,0,99,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"weaponSpeed":2,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":371,"weaponDamageMax":558,"stats":{"2":245,"5":99,"14":777,"16":99},"isBase":true}}}, +{"id":44429,"name":"Volanthius Shroud","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,42,28,0,0,19,18,0,0,0,0,0,0,0,0,28,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":63,"stats":{"2":42,"3":28,"6":19,"7":18,"16":28,"22":311},"isBase":true}}}, +{"id":44431,"name":"Cloak of Certain Reprieve","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,0,52,28,20,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,311,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":63,"ilvl":156,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"156":{"randPropPoints":63,"stats":{"2":52,"3":28,"4":20,"16":28,"22":311},"isBase":true}}}, +{"id":44436,"name":"Dark Frostscale Leggings","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,39,69,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60601}}],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"1":39,"2":69,"6":39,"22":1155},"isBase":true}}}, +{"id":44437,"name":"Dark Frostscale Breastplate","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,55,98,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Frostscale Binding","setId":756,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60604}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"1":55,"2":98,"6":55,"22":1370},"isBase":true}}}, +{"id":44438,"name":"Dragonstompers","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,46,64,0,0,26,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60605}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"1":46,"2":64,"5":26,"6":33,"22":986},"isBase":true}}}, +{"id":44440,"name":"Dark Iceborne Leggings","icon":"inv_pants_06","type":9,"armorType":2,"stats":[0,0,78,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60611}}],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":78,"3":57,"4":57,"22":761},"isBase":true}}}, +{"id":44441,"name":"Dark Iceborne Chestguard","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,84,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Iceborne Embrace","setId":757,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60613}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":84,"3":60,"4":59,"22":902},"isBase":true}}}, +{"id":44442,"name":"Bugsquashers","icon":"inv_boots_04","type":10,"armorType":2,"stats":[0,0,64,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60620}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":64,"3":46,"4":46,"22":648},"isBase":true}}}, +{"id":44443,"name":"Dark Nerubian Leggings","icon":"inv_pants_mail_14","type":9,"armorType":3,"stats":[0,0,110,57,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60627}}],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"2":110,"3":57,"6":32,"22":1155},"isBase":true}}}, +{"id":44444,"name":"Dark Nerubian Chestpiece","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,114,60,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1370,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":171,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Nerubian Hive","setId":755,"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60629}}],"scalingOptions":{"171":{"randPropPoints":113,"stats":{"2":114,"3":60,"6":34,"22":1370},"isBase":true}}}, +{"id":44445,"name":"Scaled Icewalkers","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,64,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,986,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":60630}}],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"2":64,"3":46,"4":46,"22":986},"isBase":true}}}, +{"id":44504,"name":"Nesingwary 4000","icon":"inv_weapon_rifle_06","type":14,"rangedWeaponType":3,"stats":[0,125,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":590,"weaponDamageMax":1096,"weaponSpeed":2.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":60874}}],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":590,"weaponDamageMax":1096,"stats":{"1":125,"6":67},"isBase":true}}}, +{"id":44505,"name":"Dustbringer","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":235,"weaponDamageMax":437,"weaponSpeed":1.8,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":235,"weaponDamageMax":437,"isBase":true}}}, +{"id":44579,"name":"Medallion of Heroism","icon":"inv_jewelry_talisman_07","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":66,"stats":{"6":50},"isBase":true}}}, +{"id":44583,"name":"Warchief's Legguards of Brutality","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,47,82,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"1":47,"2":82,"6":34,"22":621},"isBase":true}}}, +{"id":44590,"name":"Warchief's Leggings of Foresight","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,47,66,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"1":47,"2":66,"6":35,"7":26,"22":934},"isBase":true}}}, +{"id":44591,"name":"Wrynn's Leggings of Foresight","icon":"inv_pants_mail_13","type":9,"armorType":3,"stats":[0,47,66,0,0,0,35,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"1":47,"2":66,"6":35,"7":26,"22":934},"isBase":true}}}, +{"id":44592,"name":"Wrynn's Leggings of Valor","icon":"inv_pants_mail_02","type":9,"armorType":3,"stats":[0,0,91,46,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,934,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":91,"3":46,"4":22,"22":934},"isBase":true}}}, +{"id":44593,"name":"Wrynn's Leggings of Wisdom","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,65,47,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,449,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":65,"3":47,"7":47,"22":449},"isBase":true}}}, +{"id":44594,"name":"Wrynn's Legguards of Brutality","icon":"inv_pants_leather_02","type":9,"armorType":2,"stats":[0,47,82,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"1":47,"2":82,"6":34,"22":621},"isBase":true}}}, +{"id":44595,"name":"Wrynn's Legguards of Heroism","icon":"inv_pants_leather_01","type":9,"armorType":2,"stats":[0,0,77,47,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,621,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"2":77,"3":47,"4":37,"22":621},"isBase":true}}}, +{"id":44596,"name":"Wrynn's Legplates of Carnage","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[37,0,0,0,0,28,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1378,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":89,"ilvl":146,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":89,"stats":{"0":37,"5":28,"6":65,"22":1378},"isBase":true}}}, +{"id":44597,"name":"Medallion of Heroism","icon":"inv_jewelry_talisman_07","type":12,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":66,"ilvl":146,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"146":{"randPropPoints":66,"stats":{"6":50},"isBase":true}}}, +{"id":44649,"name":"Crystalbark's Toenail","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"22":1129},"isBase":true}}}, +{"id":44657,"name":"Torque of the Red Dragonflight","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,80,48,38,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":48,"4":38,"6":30},"isBase":true}}}, +{"id":44658,"name":"Chain of the Ancient Wyrm","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,80,48,0,30,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"2":80,"3":48,"5":30,"7":37},"isBase":true}}}, +{"id":44659,"name":"Pendant of the Dragonsworn","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,38,95,0,0,0,35,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"1":38,"2":95,"6":35,"7":28},"isBase":true}}}, +{"id":44660,"name":"Drakescale Collar","icon":"inv_jewelry_necklace_05","type":2,"stats":[56,0,72,0,0,0,0,0,0,24,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":107,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":7,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}},{"drop":{"difficulty":7,"npcId":27656,"zoneId":4228}},{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"213":{"randPropPoints":107,"stats":{"0":56,"2":72,"9":24,"10":41},"isBase":true}}}, +{"id":44661,"name":"Wyrmrest Necklace of Power","icon":"inv_jewelry_amulet_05","type":2,"stats":[0,0,89,55,0,33,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":89,"3":55,"5":33,"7":43},"isBase":true}}}, +{"id":44662,"name":"Life-Binder's Locket","icon":"inv_jewelry_talisman_09","type":2,"stats":[0,0,89,55,40,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":89,"3":55,"4":40,"6":35},"isBase":true}}}, +{"id":44664,"name":"Favor of the Dragon Queen","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,42,109,0,0,0,41,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"1":42,"2":109,"6":41,"7":31},"isBase":true}}}, +{"id":44665,"name":"Nexus War Champion Beads","icon":"inv_jewelry_necklace_02","type":2,"stats":[63,0,94,0,0,0,0,0,0,28,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"0":63,"2":94,"9":28,"10":47},"isBase":true}}}, +{"id":44666,"name":"Fumblub's Seat Cushion","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":101,"stats":{"22":803},"isBase":true}}}, +{"id":44667,"name":"Mammoth-Hair Crown","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":101,"stats":{"22":469},"isBase":true}}}, +{"id":44668,"name":"Egg-Warming Blanket","icon":"inv_chest_cloth_28","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":101,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":101,"stats":{"22":578},"isBase":true}}}, +{"id":44669,"name":"Worgen-Scored Shackles","icon":"inv_bracer_28","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,532,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"22":532},"isBase":true}}}, +{"id":44670,"name":"Soul-Sealed Belt","icon":"inv_belt_36","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":75,"stats":{"22":1016},"isBase":true}}}, +{"id":44671,"name":"Highlord's Padded Legguards","icon":"inv_pants_mail_07","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"22":1155},"isBase":true}}}, +{"id":44672,"name":"Seal-Fur Spaulders","icon":"inv_shoulder_75","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"22":652},"isBase":true}}}, +{"id":44673,"name":"Mammoth-Riding Boots","icon":"inv_boots_cloth_11","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"22":429},"isBase":true}}}, +{"id":44674,"name":"Ichor-Stained Wraps","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":60,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":60,"stats":{"22":273},"isBase":true}}}, +{"id":44675,"name":"Rock-Giant's Pinky Cover","icon":"inv_gauntlets_11","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":81,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":81,"stats":{"22":825},"isBase":true}}}, +{"id":44676,"name":"Syreian's Leggings","icon":"inv_pants_leather_12","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"22":761},"isBase":true}}}, +{"id":44677,"name":"Eternal Observer's Legplates","icon":"inv_pants_plate_16","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,1831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"stats":{"8":30,"22":1831},"isBase":true}}}, +{"id":44681,"name":"Titanium Brain-Gear","icon":"inv_misc_gear_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":70,"isBase":true}}}, +{"id":44682,"name":"Time-Forward Talisman","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":70,"isBase":true}}}, +{"id":44683,"name":"King's Eyesocket","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"isBase":true}}}, +{"id":44685,"name":"Calcified Web Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"22":1075},"isBase":true}}}, +{"id":44686,"name":"Ethereal Terror Handwraps","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":87,"stats":{"22":589},"isBase":true}}}, +{"id":44687,"name":"Loque'Nahak's Pelt","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"22":336},"isBase":true}}}, +{"id":44688,"name":"Loque'Nahak's Severed Fang","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"isBase":true}}}, +{"id":44691,"name":"Aotona's Collar","icon":"inv_bracer_14","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"stats":{"22":923},"isBase":true}}}, +{"id":44695,"name":"Corroded Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":1803},"isBase":true}}}, +{"id":44696,"name":"Giant's Toewrap","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":70,"stats":{"22":439},"isBase":true}}}, +{"id":44697,"name":"Val'kyr Vestments","icon":"inv_chest_chain_09","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1532,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":1532},"isBase":true}}}, +{"id":44703,"name":"Dark Herring","icon":"inv_misc_fish_64","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":49,"weaponDamageMin":227,"weaponDamageMax":422,"weaponSpeed":1.9,"ilvl":187,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":49,"weaponDamageMin":227,"weaponDamageMax":422,"stats":{"6":50},"isBase":true}}}, +{"id":44708,"name":"Dirkee's Superstructure","icon":"inv_gizmo_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,99,0,0,0,44,59,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":131,"weaponDamageMin":640,"weaponDamageMax":961,"weaponSpeed":3.3,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":131,"weaponDamageMin":640,"weaponDamageMax":961,"stats":{"2":99,"6":44,"7":59,"12":114,"13":114},"isBase":true}}}, +{"id":44732,"name":"Azure Dragonleather Helm","icon":"inv_helmet_86","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":816},"isBase":true}}}, +{"id":44734,"name":"Hammer of Quiet Mourning","icon":"inv_mace_61","type":13,"weaponType":4,"handType":2,"stats":[26,0,39,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":187,"weaponDamageMax":349,"weaponSpeed":1.6,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":187,"weaponDamageMax":349,"stats":{"0":26,"2":39,"9":26},"isBase":true}}}, +{"id":44735,"name":"Crescent of Brooding Fury","icon":"inv_axe_79","type":13,"weaponType":1,"handType":2,"stats":[20,0,39,0,0,0,0,0,14,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":2.6,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":305,"weaponDamageMax":567,"stats":{"0":20,"2":39,"8":14,"9":26},"isBase":true}}}, +{"id":44736,"name":"Sword of Heartwrenching Slaughter","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[25,0,39,0,0,0,0,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":199,"weaponDamageMax":371,"weaponSpeed":1.7,"ilvl":175,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":50,"weaponDamageMin":199,"weaponDamageMax":371,"stats":{"0":25,"2":39,"9":16,"10":18},"isBase":true}}}, +{"id":44740,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61481}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":816},"isBase":true}}}, +{"id":44741,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61482}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":1245},"isBase":true}}}, +{"id":44742,"name":"Mechanized Snow Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":183,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":61483}}],"scalingOptions":{"183":{"randPropPoints":126,"stats":{"22":1803},"isBase":true}}}, +{"id":44745,"name":"Blade of the Empty Void","icon":"inv_sword_97","type":13,"weaponType":9,"handType":2,"stats":[24,0,41,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":186,"weaponDamageMax":346,"weaponSpeed":1.6,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":186,"weaponDamageMax":346,"stats":{"0":24,"2":41,"10":25},"isBase":true}}}, +{"id":44746,"name":"Knife of the Tarnished Soul","icon":"inv_weapon_shortblade_71","type":13,"weaponType":2,"handType":2,"stats":[0,25,29,0,0,0,19,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":209,"weaponDamageMax":389,"weaponSpeed":1.8,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":209,"weaponDamageMax":389,"stats":{"1":25,"2":29,"6":19,"7":27},"isBase":true}}}, +{"id":44747,"name":"Hammer of Wrenching Change","icon":"inv_mace_59","type":13,"weaponType":4,"handType":2,"stats":[0,0,55,0,20,0,14,0,0,0,0,0,0,0,351,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"weaponDamageMin":122,"weaponDamageMax":227,"weaponSpeed":2.1,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":50,"weaponDamageMin":122,"weaponDamageMax":227,"stats":{"2":55,"4":20,"6":14,"14":351},"isBase":true}}}, +{"id":44748,"name":"Stave of Youthful Sorrow","icon":"inv_staff_69","type":13,"weaponType":8,"handType":4,"stats":[0,0,99,0,0,44,67,0,0,0,0,0,0,0,349,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":116,"weaponDamageMin":267,"weaponDamageMax":402,"weaponSpeed":3.1,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":116,"weaponDamageMin":267,"weaponDamageMax":402,"stats":{"2":99,"5":44,"6":67,"14":349},"isBase":true}}}, +{"id":44869,"name":"Frenzyheart Insignia of Fury","icon":"inv_misc_rune_14","type":12,"stats":[0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"7":71},"isBase":true}}}, +{"id":44870,"name":"Oracle Talisman of Ablution","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":71},"isBase":true}}}, +{"id":44891,"name":"Titan-Forged Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":36,"16":44,"22":758},"isBase":true}}}, +{"id":44892,"name":"Titan-Forged Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"7":36,"16":44,"22":758},"isBase":true}}}, +{"id":44893,"name":"Titan-Forged Boots of Triumph","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,58,94,0,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,758,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":58,"2":94,"6":36,"16":44,"22":758},"isBase":true}}}, +{"id":44894,"name":"Titan-Forged Greaves of Salvation","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[0,0,94,58,0,0,36,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"6":36,"16":44,"22":1609},"isBase":true}}}, +{"id":44895,"name":"Titan-Forged Greaves of Triumph","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[58,0,99,0,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":58,"2":99,"5":36,"16":44,"22":1609},"isBase":true}}}, +{"id":44896,"name":"Titan-Forged Sabatons of Dominance","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":36,"16":44,"22":1128},"isBase":true}}}, +{"id":44897,"name":"Titan-Forged Sabatons of Salvation","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"7":36,"16":44,"22":1128},"isBase":true}}}, +{"id":44898,"name":"Titan-Forged Sabatons of Triumph","icon":"inv_boots_plate_09","type":10,"armorType":3,"stats":[0,50,99,0,0,44,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":99,"5":44,"16":44,"22":1128},"isBase":true}}}, +{"id":44899,"name":"Titan-Forged Slippers of Dominance","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,36,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"5":36,"16":44,"22":556},"isBase":true}}}, +{"id":44900,"name":"Titan-Forged Slippers of Salvation","icon":"inv_boots_cloth_12","type":10,"armorType":1,"stats":[0,0,94,58,0,0,0,36,0,0,0,0,0,0,0,0,44,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":94,"3":58,"7":36,"16":44,"22":556},"isBase":true}}}, +{"id":44901,"name":"Titan-Forged Plate Headcover of Salvation","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,127,74,46,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"4":46,"16":43,"22":1901},"isBase":true}}}, +{"id":44902,"name":"Titan-Forged Plate Helm of Triumph","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[74,0,133,0,0,44,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":74,"2":133,"5":44,"16":59,"22":1901},"isBase":true}}}, +{"id":44903,"name":"Titan-Forged Chain Helm of Triumph","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,65,134,0,0,36,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":65,"2":134,"5":36,"16":60,"22":1333},"isBase":true}}}, +{"id":44904,"name":"Titan-Forged Mail Helm of Dominance","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"5":44,"16":43,"22":1333},"isBase":true}}}, +{"id":44905,"name":"Titan-Forged Ringmail Helm of Salvation","icon":"inv_helmet_138","type":1,"armorType":3,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,1333,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[7],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"7":44,"16":43,"22":1333},"isBase":true}}}, +{"id":44906,"name":"Titan-Forged Leather Helm of Salvation","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"7":44,"16":43,"22":896},"isBase":true}}}, +{"id":44907,"name":"Titan-Forged Leather Helm of Dominance","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"5":44,"16":43,"22":896},"isBase":true}}}, +{"id":44908,"name":"Titan-Forged Leather Helm of Triumph","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,73,110,0,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":73,"2":110,"6":44,"16":59,"22":896},"isBase":true}}}, +{"id":44909,"name":"Titan-Forged Hood of Salvation","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,0,0,44,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"7":44,"16":43,"22":657},"isBase":true}}}, +{"id":44910,"name":"Titan-Forged Hood of Dominance","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,127,74,0,44,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"5":44,"16":43,"22":657},"isBase":true}}}, +{"id":44912,"name":"Flow of Knowledge","icon":"spell_arcane_arcanetorrent","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":84},"isBase":true}}}, +{"id":44914,"name":"Anvil of Titans","icon":"trade_blacksmithing","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":84},"isBase":true}}}, +{"id":44926,"name":"Titansteel Deflector","icon":"inv_sword_126","type":13,"weaponType":9,"handType":4,"stats":[89,0,133,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"weaponSpeed":3.4,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"stats":{"0":89,"2":133,"10":90},"isBase":true}}}, +{"id":44930,"name":"Windripper Boots","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,97,66,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":62176}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"6":66,"22":758},"isBase":true}}}, +{"id":44931,"name":"Windripper Leggings","icon":"inv_pants_leather_03","type":9,"armorType":2,"stats":[0,0,131,90,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":62177}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":131,"3":90,"6":89,"22":965},"isBase":true}}}, +{"id":44934,"name":"Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,75,50,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":75,"3":50,"4":48},"isBase":true}}}, +{"id":44935,"name":"Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[50,0,75,0,0,0,34,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":50,"2":75,"6":34,"8":31},"isBase":true}}}, +{"id":44948,"name":"Titansteel Defender","icon":"inv_axe_95","type":13,"weaponType":1,"handType":4,"stats":[89,0,133,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"weaponSpeed":3.4,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":819,"weaponDamageMax":1229,"stats":{"0":89,"2":133,"9":90},"isBase":true}}}, +{"id":44949,"name":"Unbreakable Healing Amplifiers","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,109,74,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":4,"spellId":62271}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":109,"3":74,"6":73,"22":1901},"isBase":true}}}, +{"id":45074,"name":"Claymore of the Prophet","icon":"inv_sword_143","type":13,"weaponType":9,"handType":4,"stats":[101,0,104,0,0,67,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":794,"weaponDamageMax":1192,"weaponSpeed":3.3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":794,"weaponDamageMax":1192,"stats":{"0":101,"2":104,"5":67,"7":45},"isBase":true}}}, +{"id":45075,"name":"Ironforge Smasher","icon":"inv_mace_29","type":13,"weaponType":4,"handType":2,"stats":[0,39,48,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":39,"2":48,"6":28,"7":25},"isBase":true}}}, +{"id":45076,"name":"Teldrassil Protector","icon":"inv_axe_107","type":13,"weaponType":1,"handType":2,"stats":[29,0,43,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.7,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"0":29,"2":43,"10":47},"isBase":true}}}, +{"id":45077,"name":"Dagger of the Rising Moon","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":2,"stats":[0,0,43,0,0,38,22,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":315,"weaponDamageMax":473,"weaponSpeed":1.7,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":315,"weaponDamageMax":473,"stats":{"2":43,"5":38,"6":22,"12":78,"13":78},"isBase":true}}}, +{"id":45078,"name":"Dagger of Lunar Purity","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":2,"stats":[0,0,64,0,38,0,0,30,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":64,"4":38,"7":30,"14":513},"isBase":true}}}, +{"id":45085,"name":"Titansteel Spellblade","icon":"inv_sword_73","type":13,"weaponType":2,"handType":2,"stats":[0,0,34,0,0,30,53,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":202,"weaponDamageMax":376,"weaponSpeed":2.5,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63182}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":202,"weaponDamageMax":376,"stats":{"2":34,"5":30,"6":53,"14":513},"isBase":true}}}, +{"id":45106,"name":"Strength of the Automaton","icon":"inv_jewelry_ring_58","type":11,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"6":49,"7":38},"isBase":true}}}, +{"id":45107,"name":"Iron Riveted War Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,137,0,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":112,"2":137,"5":64,"7":72,"22":1944},"isBase":true}}}, +{"id":45108,"name":"Mechanist's Bindings","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,63,95,0,0,0,39,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":95,"6":39,"7":44,"22":527},"isBase":true}}}, +{"id":45109,"name":"Gloves of the Fiery Behemoth","icon":"inv_gauntlets_51","type":7,"armorType":3,"stats":[0,84,100,0,0,0,77,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":84,"2":100,"6":77,"7":56,"22":1076},"isBase":true}}}, +{"id":45110,"name":"Titanguard","icon":"inv_sword_132","type":13,"weaponType":9,"handType":2,"stats":[39,0,82,0,0,29,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":373,"weaponDamageMax":694,"weaponSpeed":1.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":373,"weaponDamageMax":694,"stats":{"0":39,"2":82,"5":29,"10":51},"isBase":true}}}, +{"id":45111,"name":"Mimiron's Inferno Couplings","icon":"inv_bracer_28","type":6,"armorType":4,"stats":[49,0,99,0,0,36,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":49,"2":99,"5":36,"9":62,"22":1047},"isBase":true}}}, +{"id":45112,"name":"The Leviathan's Coil","icon":"inv_jewelry_ring_71","type":11,"stats":[67,0,99,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":99,"9":50,"23":128},"isBase":true}}}, +{"id":45113,"name":"Glowing Ring of Reclamation","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,0,90,63,44,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":63,"4":44,"6":39},"isBase":true}}}, +{"id":45115,"name":"Leviathan Fueling Manual","icon":"inv_offhand_ulduarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,89,64,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":89,"3":64,"5":41,"6":42},"isBase":true}}}, +{"id":45116,"name":"Freya's Choker of Warding","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,0,89,63,46,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":89,"3":63,"4":46,"7":39},"isBase":true}}}, +{"id":45117,"name":"Constructor's Handwraps","icon":"inv_gauntlets_64","type":7,"armorType":1,"stats":[0,0,125,85,53,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":85,"4":53,"6":58,"22":577},"isBase":true}}}, +{"id":45118,"name":"Steamworker's Goggles","icon":"inv_helmet_47","type":1,"armorType":3,"stats":[0,0,161,97,56,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":97,"4":56,"6":60,"22":1399},"isBase":true}}}, +{"id":45119,"name":"Embrace of the Leviathan","icon":"inv_belt_49","type":8,"armorType":1,"stats":[0,0,119,85,62,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":85,"4":62,"7":49,"22":519},"isBase":true}}}, +{"id":45128,"name":"Silvery Sylvan Stave","icon":"inv_staff_96","type":13,"weaponType":8,"handType":4,"stats":[0,103,149,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"weaponSpeed":2.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"stats":{"1":103,"2":149,"6":52,"23":180},"isBase":true}}}, +{"id":45129,"name":"Gnomeregan Bonechopper","icon":"inv_sword_58","type":13,"weaponType":9,"handType":2,"stats":[0,0,82,0,0,29,22,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":82,"5":29,"6":22,"14":513},"isBase":true}}}, +{"id":45130,"name":"Blunderbuss of Khaz Modan","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,103,125,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":698,"weaponDamageMax":1048,"weaponSpeed":2.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":698,"weaponDamageMax":1048,"stats":{"1":103,"2":125,"7":71},"isBase":true}}}, +{"id":45131,"name":"Jouster's Fury","icon":"inv_banner_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"16":73},"isBase":true}}}, +{"id":45132,"name":"Golden Saronite Dragon","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":2,"stats":[0,32,89,0,0,40,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":827,"weaponDamageMax":1242,"weaponSpeed":2.7,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":827,"weaponDamageMax":1242,"stats":{"1":32,"2":89,"5":40,"7":32},"isBase":true}}}, +{"id":45133,"name":"Pendant of Fiery Havoc","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,103,64,0,46,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"5":46,"7":41},"isBase":true}}}, +{"id":45134,"name":"Plated Leggings of Ruination","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[107,0,191,0,0,0,97,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"0":107,"2":191,"6":97,"7":71,"22":2230},"isBase":true}}}, +{"id":45135,"name":"Boots of Fiery Resolution","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,135,87,64,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":135,"3":87,"4":64,"7":55,"22":716},"isBase":true}}}, +{"id":45136,"name":"Shoulderpads of Dormant Energies","icon":"inv_shoulder_84","type":3,"armorType":2,"stats":[0,0,139,79,56,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"4":56,"6":55,"22":998},"isBase":true}}}, +{"id":45137,"name":"Veranus' Bane","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,86,181,0,0,67,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":881,"weaponDamageMax":1636,"weaponSpeed":2.9,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":881,"weaponDamageMax":1636,"stats":{"1":86,"2":181,"5":67,"7":121},"isBase":true}}}, +{"id":45138,"name":"Drape of the Drakerider","icon":"inv_misc_cape_12","type":4,"armorType":1,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"6":49,"7":38,"22":461},"isBase":true}}}, +{"id":45139,"name":"Dragonslayer's Brace","icon":"inv_belt_34","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"9":67,"22":1346},"isBase":true}}}, +{"id":45140,"name":"Razorscale Shoulderguards","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[0,0,121,85,50,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":85,"4":50,"7":60,"22":1795},"isBase":true}}}, +{"id":45141,"name":"Proto-Hide Leggings","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,105,158,0,0,0,86,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":105,"2":158,"6":86,"8":57,"22":1055},"isBase":true}}}, +{"id":45142,"name":"Remorse","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[0,52,80,0,0,0,0,34,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"1":52,"2":80,"7":34,"8":29},"isBase":true}}}, +{"id":45143,"name":"Saronite Mesh Legguards","icon":"inv_pants_plate_25","type":9,"armorType":3,"stats":[0,97,155,0,0,0,98,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":97,"2":155,"6":98,"7":60,"22":1507},"isBase":true}}}, +{"id":45146,"name":"Shackles of the Odalisque","icon":"inv_bracer_27","type":6,"armorType":1,"stats":[0,0,82,63,49,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":82,"3":63,"4":49,"6":42,"22":404},"isBase":true}}}, +{"id":45147,"name":"Guiding Star","icon":"inv_mace_89","type":13,"weaponType":4,"handType":2,"stats":[0,0,81,0,38,0,0,49,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"stats":{"2":81,"4":38,"7":49,"14":689},"isBase":true}}}, +{"id":45148,"name":"Living Flame","icon":"spell_fire_burnout","type":12,"stats":[0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"5":113},"isBase":true}}}, +{"id":45149,"name":"Bracers of the Broodmother","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,92,63,49,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":92,"3":63,"4":49,"7":36,"22":527},"isBase":true}}}, +{"id":45150,"name":"Collar of the Wyrmhunter","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,162,97,0,51,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":162,"3":97,"5":51,"7":68,"22":750},"isBase":true}}}, +{"id":45151,"name":"Belt of the Fallen Wyrm","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,122,85,0,0,49,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33186,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33186,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"6":49,"7":62,"22":968},"isBase":true}}}, +{"id":45152,"name":"Pendant of Azure Dreams","icon":"inv_jewelry_necklace_16","type":2,"stats":[43,0,57,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":57,"6":47},"isBase":true}}}, +{"id":45153,"name":"Susurrating Shell Necklace","icon":"inv_jewelry_necklace_20","type":2,"stats":[0,47,77,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":47,"2":77,"7":26},"isBase":true}}}, +{"id":45154,"name":"Necklace of Valiant Blood","icon":"inv_jewelry_necklace_15","type":2,"stats":[0,0,48,43,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":48,"3":43,"4":50},"isBase":true}}}, +{"id":45155,"name":"Choker of Spiral Focus","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,64,44,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":44,"5":43},"isBase":true}}}, +{"id":45156,"name":"Sash of Shattering Hearts","icon":"inv_belt_42b","type":8,"armorType":1,"stats":[0,0,76,57,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":76,"3":57,"7":50,"22":440},"isBase":true}}}, +{"id":45157,"name":"Cindershard Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,63,88,0,0,42,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":88,"5":42,"6":46},"isBase":true}}}, +{"id":45158,"name":"Heart of Iron","icon":"inv_spiritshard_01","type":12,"stats":[0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":171},"isBase":true}}}, +{"id":45159,"name":"Treads of Nimble Evasion","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,58,84,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":84,"6":41,"22":734},"isBase":true}}}, +{"id":45160,"name":"Girdle of Valorous Defeat","icon":"inv_belt_36","type":8,"armorType":4,"stats":[50,0,75,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":75,"8":57,"22":1274},"isBase":true}}}, +{"id":45161,"name":"Girdle of Embers","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[86,0,126,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":86,"2":126,"6":63,"7":52,"22":1346},"isBase":true}}}, +{"id":45162,"name":"Flamestalker Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,85,118,0,0,0,62,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":118,"6":62,"7":56,"22":829},"isBase":true}}}, +{"id":45163,"name":"Stanchions of Unseatable Furor","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":45164,"name":"Helm of the Furnace Master","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,97,134,0,0,0,95,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":97,"2":134,"6":95,"7":51,"22":1399},"isBase":true}}}, +{"id":45165,"name":"Worldcarver","icon":"inv_axe_102","type":13,"weaponType":1,"handType":4,"stats":[120,0,179,0,0,0,0,74,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"weaponSpeed":3.4,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"stats":{"0":120,"2":179,"7":74,"8":92},"isBase":true}}}, +{"id":45166,"name":"Charred Saronite Greaves","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[66,0,134,0,0,49,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":66,"2":134,"5":49,"9":84,"22":1645},"isBase":true}}}, +{"id":45167,"name":"Lifeforge Breastplate","icon":"inv_chest_plate19","type":5,"armorType":4,"stats":[0,0,169,105,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":169,"3":105,"4":76,"6":68,"22":2393},"isBase":true}}}, +{"id":45168,"name":"Pyrelight Circle","icon":"inv_jewelry_ring_71","type":11,"stats":[0,0,95,63,0,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"6":46,"7":36},"isBase":true}}}, +{"id":45170,"name":"Scepter of Creation","icon":"inv_wand_29","type":14,"rangedWeaponType":6,"stats":[0,0,80,52,34,0,33,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":2,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":80,"3":52,"4":34,"6":33,"14":689},"isBase":true}}}, +{"id":45171,"name":"Intensity","icon":"inv_staff_95","type":13,"weaponType":8,"handType":4,"stats":[0,0,215,0,0,120,86,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"weaponSpeed":2.1,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"stats":{"2":215,"5":120,"6":86,"14":689},"isBase":true}}}, +{"id":45181,"name":"Wrap of the Everliving Tree","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,104,62,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":104,"3":62,"7":33,"22":600},"isBase":true}}}, +{"id":45182,"name":"Gauntlets of Shattered Pride","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,104,59,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":104,"3":59,"6":38,"22":1416},"isBase":true}}}, +{"id":45183,"name":"Treads of the Glorious Spirit","icon":"inv_boots_chain_04","type":10,"armorType":3,"stats":[0,0,82,61,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":61,"6":47,"22":1092},"isBase":true}}}, +{"id":45184,"name":"Cinch of Bonded Servitude","icon":"inv_belt_44c","type":8,"armorType":3,"stats":[0,58,90,0,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":90,"6":33,"7":38,"22":893},"isBase":true}}}, +{"id":45185,"name":"Flamewrought Cinch","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,119,85,62,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":85,"4":62,"6":55,"22":678},"isBase":true}}}, +{"id":45186,"name":"Soot-Covered Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,121,77,0,52,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":77,"5":52,"6":49,"22":692},"isBase":true}}}, +{"id":45187,"name":"Wristguards of the Firetender","icon":"inv_bracer_24","type":6,"armorType":3,"stats":[0,0,92,63,36,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33118,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33118,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":92,"3":63,"4":36,"6":49,"22":753},"isBase":true}}}, +{"id":45193,"name":"Insurmountable Fervor","icon":"inv_jewelry_necklace_33","type":2,"stats":[63,0,95,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"6":49,"7":38},"isBase":true}}}, +{"id":45203,"name":"Grimhorn Crusher","icon":"inv_mace_81","type":13,"weaponType":4,"handType":2,"stats":[0,39,48,0,0,0,28,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"weaponSpeed":2.6,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":421,"weaponDamageMax":783,"stats":{"1":39,"2":48,"6":28,"7":25},"isBase":true}}}, +{"id":45204,"name":"Axe of the Sen'jin Protector","icon":"inv_axe_108","type":13,"weaponType":1,"handType":2,"stats":[29,0,43,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.7,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"0":29,"2":43,"10":47},"isBase":true}}}, +{"id":45205,"name":"Greatsword of the Sin'dorei","icon":"inv_weapon_shortblade_98","type":13,"weaponType":9,"handType":4,"stats":[101,0,104,0,0,67,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":794,"weaponDamageMax":1192,"weaponSpeed":3.3,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":794,"weaponDamageMax":1192,"stats":{"0":101,"2":104,"5":67,"7":45},"isBase":true}}}, +{"id":45206,"name":"Choker of Feral Fury","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,47,77,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"1":47,"2":77,"7":26},"isBase":true}}}, +{"id":45207,"name":"Necklace of Stolen Skulls","icon":"inv_jewelry_necklace_19","type":2,"stats":[0,0,64,44,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":44,"5":43},"isBase":true}}}, +{"id":45208,"name":"Blade of the Keening Banshee","icon":"inv_sword_61","type":13,"weaponType":9,"handType":2,"stats":[0,0,82,0,0,29,22,0,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":82,"5":29,"6":22,"14":513},"isBase":true}}}, +{"id":45209,"name":"Sash of Trumpeted Pride","icon":"inv_belt_38c","type":8,"armorType":1,"stats":[0,0,76,57,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,440,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":76,"3":57,"7":50,"22":440},"isBase":true}}}, +{"id":45210,"name":"Sen'jin Beakblade Longrifle","icon":"inv_weapon_rifle_34","type":14,"rangedWeaponType":3,"stats":[0,103,125,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":698,"weaponDamageMax":1048,"weaponSpeed":2.9,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":698,"weaponDamageMax":1048,"stats":{"1":103,"2":125,"7":71},"isBase":true}}}, +{"id":45211,"name":"Waistguard of Equine Fury","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,104,62,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":104,"3":62,"7":33,"22":600},"isBase":true}}}, +{"id":45212,"name":"Staff of Feral Furies","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,103,149,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"weaponSpeed":2.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":170,"weaponDamageMin":674,"weaponDamageMax":1012,"stats":{"1":103,"2":149,"6":52,"23":180},"isBase":true}}}, +{"id":45213,"name":"Pendant of Emerald Crusader","icon":"inv_jewelry_necklace_42","type":2,"stats":[0,0,48,43,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":48,"3":43,"4":50},"isBase":true}}}, +{"id":45214,"name":"Scalpel of the Royal Apothecary","icon":"inv_weapon_shortblade_76","type":13,"weaponType":2,"handType":2,"stats":[0,0,64,0,38,0,0,30,0,0,0,0,0,0,513,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"weaponSpeed":1.8,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":145,"weaponDamageMax":271,"stats":{"2":64,"4":38,"7":30,"14":513},"isBase":true}}}, +{"id":45215,"name":"Links of Unquenched Savagery","icon":"inv_belt_47c","type":8,"armorType":3,"stats":[0,58,90,0,0,0,33,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":90,"6":33,"7":38,"22":893},"isBase":true}}}, +{"id":45216,"name":"Gauntlets of Mending Touch","icon":"inv_gauntlets_30","type":7,"armorType":4,"stats":[0,0,104,59,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":104,"3":59,"6":38,"22":1416},"isBase":true}}}, +{"id":45217,"name":"Clinch of Savage Fury","icon":"inv_belt_46","type":8,"armorType":4,"stats":[50,0,75,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":50,"2":75,"8":57,"22":1274},"isBase":true}}}, +{"id":45218,"name":"Blood-Caked Stompers","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":45219,"name":"Jouster's Fury","icon":"inv_banner_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"16":73},"isBase":true}}}, +{"id":45220,"name":"Treads of the Earnest Squire","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,58,84,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,734,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"1":58,"2":84,"6":41,"22":734},"isBase":true}}}, +{"id":45221,"name":"Treads of Whispering Dreams","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,82,61,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":110,"stats":{"2":82,"3":61,"6":47,"22":1092},"isBase":true}}}, +{"id":45222,"name":"Spinal Destroyer","icon":"inv_weapon_shortblade_97","type":13,"weaponType":2,"handType":2,"stats":[0,0,43,0,0,38,22,0,0,0,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":315,"weaponDamageMax":473,"weaponSpeed":1.7,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":315,"weaponDamageMax":473,"stats":{"2":43,"5":38,"6":22,"12":78,"13":78},"isBase":true}}}, +{"id":45223,"name":"Razor's Edge Pendant","icon":"inv_jewelry_necklace_34","type":2,"stats":[43,0,57,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"200":{"randPropPoints":82,"stats":{"0":43,"2":57,"6":47},"isBase":true}}}, +{"id":45224,"name":"Drape of the Lithe","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,63,95,0,0,36,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":95,"5":36,"7":46,"22":461},"isBase":true}}}, +{"id":45225,"name":"Steelbreaker's Embrace","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[106,0,170,0,0,0,87,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":106,"2":170,"6":87,"8":61,"22":2393},"isBase":true}}}, +{"id":45226,"name":"Ancient Iron Heaume","icon":"inv_helmet_91","type":1,"armorType":4,"stats":[0,0,165,98,0,0,67,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"6":67,"7":60,"22":1944},"isBase":true}}}, +{"id":45227,"name":"Iron-Studded Mantle","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,85,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":127,"5":56,"6":56,"22":1291},"isBase":true}}}, +{"id":45228,"name":"Handguards of the Enclave","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"9":67,"22":1496},"isBase":true}}}, +{"id":45232,"name":"Runed Ironhide Boots","icon":"inv_boots_cloth_19","type":10,"armorType":2,"stats":[0,77,123,0,0,0,49,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":123,"6":49,"8":56,"22":829},"isBase":true}}}, +{"id":45233,"name":"Stormrune Edge","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[0,121,180,0,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"weaponSpeed":3.4,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"stats":{"1":121,"2":180,"6":86,"7":70},"isBase":true}}}, +{"id":45234,"name":"Rapture","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,0,224,0,121,0,81,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"weaponSpeed":2.1,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"stats":{"2":224,"4":121,"6":81,"14":689},"isBase":true}}}, +{"id":45235,"name":"Radiant Seal","icon":"inv_jewelry_ring_64","type":11,"stats":[0,0,95,63,36,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"4":36,"7":46},"isBase":true}}}, +{"id":45236,"name":"Unblinking Eye","icon":"inv_misc_gem_lionseye_01","type":2,"stats":[0,0,83,63,41,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":83,"3":63,"4":41,"6":49},"isBase":true}}}, +{"id":45237,"name":"Phaelia's Vestments of the Sprouting Seed","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,0,161,106,75,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":106,"4":75,"6":68,"22":1205},"isBase":true}}}, +{"id":45238,"name":"Overload Legwraps","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,161,113,0,81,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":113,"5":81,"7":66,"22":807},"isBase":true}}}, +{"id":45239,"name":"Runeshaper's Gloves","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,125,77,0,0,41,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":77,"6":41,"7":64,"22":1076},"isBase":true}}}, +{"id":45240,"name":"Raiments of the Iron Council","icon":"inv_chest_cloth_65","type":5,"armorType":1,"stats":[0,0,165,98,57,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"4":57,"7":70,"22":923},"isBase":true}}}, +{"id":45241,"name":"Belt of Colossal Rage","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[82,0,142,0,0,54,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1434,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"0":82,"2":142,"5":54,"6":73,"22":1434},"isBase":true}}}, +{"id":45242,"name":"Drape of Mortal Downfall","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,103,64,0,41,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"5":41,"6":43,"22":520},"isBase":true}}}, +{"id":45243,"name":"Sapphire Amulet of Renewal","icon":"inv_jewelry_necklace_30naxxramas","type":2,"stats":[0,0,107,64,47,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":107,"3":64,"4":47,"7":35},"isBase":true}}}, +{"id":45244,"name":"Greaves of Swift Vengeance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,79,143,0,0,55,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1279,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"1":79,"2":143,"5":55,"6":63,"22":1279},"isBase":true}}}, +{"id":45245,"name":"Shoulderpads of the Intruder","icon":"inv_shoulder_51","type":3,"armorType":2,"stats":[0,87,141,0,0,55,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,998,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"1":87,"2":141,"5":55,"8":47,"22":998},"isBase":true}}}, +{"id":45246,"name":"Golem-Shard Sticker","icon":"inv_weapon_shortblade_78","type":13,"weaponType":2,"handType":2,"stats":[0,52,80,0,0,0,34,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"1":52,"2":80,"6":34,"8":29},"isBase":true}}}, +{"id":45247,"name":"Signet of the Earthshaker","icon":"inv_jewelry_ring_74","type":11,"stats":[67,0,99,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":99,"9":49},"isBase":true}}}, +{"id":45248,"name":"Clockwork Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[106,0,170,0,0,66,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":106,"2":170,"5":66,"6":83,"22":2094},"isBase":true}}}, +{"id":45249,"name":"Brass-Lined Boots","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,85,100,0,0,0,86,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":100,"6":86,"7":43,"22":1184},"isBase":true}}}, +{"id":45250,"name":"Crazed Construct Ring","icon":"inv_jewelry_ring_66","type":11,"stats":[63,0,95,0,0,43,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"5":43,"7":44},"isBase":true}}}, +{"id":45251,"name":"Shoulderplates of the Deconstructor","icon":"inv_shoulder_96","type":3,"armorType":4,"stats":[89,0,134,0,0,43,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"5":43,"9":68,"22":1795},"isBase":true}}}, +{"id":45252,"name":"Horologist's Wristguards","icon":"inv_bracer_19","type":6,"armorType":4,"stats":[0,0,95,63,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"4":46,"6":36,"22":1047},"isBase":true}}}, +{"id":45253,"name":"Mantle of Wavering Calm","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,126,85,62,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"4":62,"7":49,"22":692},"isBase":true}}}, +{"id":45256,"name":"Twisted Visage","icon":"inv_staff_95","type":13,"weaponType":8,"handType":4,"stats":[0,120,181,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":833,"weaponDamageMax":1250,"weaponSpeed":2.4,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":833,"weaponDamageMax":1250,"stats":{"1":120,"2":181,"5":70,"6":86},"isBase":true}}}, +{"id":45257,"name":"Quartz Crystal Wand","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,72,52,0,37,33,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"stats":{"2":72,"3":52,"5":37,"6":33,"14":689},"isBase":true}}}, +{"id":45258,"name":"Sandals of Rash Temperament","icon":"inv_boots_cloth_16","type":10,"armorType":1,"stats":[0,0,122,85,0,57,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"5":57,"6":56,"22":634},"isBase":true}}}, +{"id":45259,"name":"Quartz-Studded Harness","icon":"inv_chest_plate19","type":5,"armorType":3,"stats":[0,0,165,97,70,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":97,"4":70,"7":66,"22":1722},"isBase":true}}}, +{"id":45260,"name":"Boots of Hasty Revival","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,125,77,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":77,"4":60,"6":41,"22":829},"isBase":true}}}, +{"id":45261,"name":"Giant's Bane","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,121,175,0,0,0,67,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":881,"weaponDamageMax":1636,"weaponSpeed":2.9,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":881,"weaponDamageMax":1636,"stats":{"1":121,"2":175,"6":67,"7":86},"isBase":true}}}, +{"id":45262,"name":"Necklace of Unerring Mettle","icon":"inv_jewelry_necklace_41","type":2,"stats":[67,0,99,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":99,"9":53},"isBase":true}}}, +{"id":45263,"name":"Wrathstone","icon":"inv_pet_scorchedstone","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"6":114},"isBase":true}}}, +{"id":45264,"name":"Decimator's Armguards","icon":"inv_bracer_26b","type":6,"armorType":4,"stats":[63,0,95,0,0,38,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"5":38,"6":49,"22":1047},"isBase":true}}}, +{"id":45265,"name":"Shoulderpads of the Monolith","icon":"inv_shoulder_51","type":3,"armorType":2,"stats":[0,77,118,0,0,0,48,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":118,"6":48,"7":62,"22":904},"isBase":true}}}, +{"id":45266,"name":"Malice","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,52,81,0,0,0,37,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":2.5,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"1":52,"2":81,"6":37,"7":29},"isBase":true}}}, +{"id":45267,"name":"Saronite Plated Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,2094,236,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":77,"22":2094,"23":236},"isBase":true}}}, +{"id":45268,"name":"Gloves of the Pythonic Guardian","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,121,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":85,"4":60,"6":49,"22":1496},"isBase":true}}}, +{"id":45269,"name":"Unfaltering Armguards","icon":"inv_bracer_31a","type":6,"armorType":4,"stats":[0,0,90,55,36,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":55,"4":36,"7":28,"22":1047},"isBase":true}}}, +{"id":45271,"name":"Ironmender","icon":"inv_offhand_ulduarraid_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,93,63,45,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":93,"3":63,"4":45,"7":36},"isBase":true}}}, +{"id":45272,"name":"Robes of the Umbral Brute","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,161,105,0,0,58,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":105,"6":58,"7":82,"22":923},"isBase":true}}}, +{"id":45273,"name":"Handwraps of Plentiful Recovery","icon":"inv_gauntlets_57","type":7,"armorType":1,"stats":[0,0,125,85,56,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":85,"4":56,"7":59,"22":577},"isBase":true}}}, +{"id":45274,"name":"Leggings of the Stoneweaver","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,165,106,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":106,"4":76,"6":60,"22":1507},"isBase":true}}}, +{"id":45275,"name":"Bracers of Unleashed Magic","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,99,63,0,36,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32930,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32930,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"3":63,"5":36,"7":42,"22":404},"isBase":true}}}, +{"id":45282,"name":"Ironsoul","icon":"inv_mace_94","type":13,"weaponType":4,"handType":4,"stats":[111,0,133,0,0,0,73,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"weaponSpeed":3.5,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"stats":{"0":111,"2":133,"6":73,"7":89},"isBase":true}}}, +{"id":45283,"name":"Flamewatch Armguards","icon":"inv_bracer_31a","type":6,"armorType":4,"stats":[50,0,93,0,0,28,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":50,"2":93,"5":28,"9":59,"22":1039},"isBase":true}}}, +{"id":45284,"name":"Kinetic Ripper","icon":"inv_weapon_hand_22","type":13,"weaponType":3,"handType":2,"stats":[0,49,68,0,0,23,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"stats":{"1":49,"2":68,"5":23,"7":36},"isBase":true}}}, +{"id":45285,"name":"Might of the Leviathan","icon":"inv_jewelry_necklace_09","type":2,"stats":[60,0,88,0,0,36,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":60,"2":88,"5":36,"6":45},"isBase":true}}}, +{"id":45286,"name":"Pyrite Infuser","icon":"spell_frost_fireresistancetotem","type":12,"stats":[0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26723,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"5":100},"isBase":true}}}, +{"id":45287,"name":"Firesoul","icon":"inv_sword_134","type":13,"weaponType":9,"handType":2,"stats":[0,0,102,0,0,34,0,26,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":164,"weaponDamageMax":306,"weaponSpeed":1.6,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":164,"weaponDamageMax":306,"stats":{"2":102,"5":34,"7":26,"14":611},"isBase":true}}}, +{"id":45288,"name":"Firestrider Chestguard","icon":"inv_chest_mail_06","type":5,"armorType":3,"stats":[0,0,158,93,0,0,57,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26794,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":158,"3":93,"6":57,"7":81,"22":1700},"isBase":true}}}, +{"id":45289,"name":"Lifespark Visage","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,152,90,45,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":152,"3":90,"4":45,"7":63,"22":728},"isBase":true}}}, +{"id":45291,"name":"Combustion Bracers","icon":"inv_bracer_25a","type":6,"armorType":1,"stats":[0,0,87,60,0,32,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":87,"3":60,"5":32,"6":44,"22":392},"isBase":true}}}, +{"id":45292,"name":"Energy Siphon","icon":"ability_druid_typhoon","type":12,"stats":[0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26763,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"4":108},"isBase":true}}}, +{"id":45293,"name":"Handguards of Potent Cures","icon":"inv_gauntlets_24","type":7,"armorType":2,"stats":[0,0,122,84,57,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":122,"3":84,"4":57,"6":56,"22":776},"isBase":true}}}, +{"id":45294,"name":"Petrified Ivy Sprig","icon":"inv_wand_29","type":14,"rangedWeaponType":6,"stats":[0,0,56,52,0,39,30,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":56,"3":52,"5":39,"6":30,"14":689},"isBase":true}}}, +{"id":45295,"name":"Gilded Steel Legplates","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[92,0,180,0,0,0,0,0,66,0,104,0,0,0,0,0,0,0,0,0,0,0,2128,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"0":92,"2":180,"8":66,"10":104,"22":2128},"isBase":true}}}, +{"id":45297,"name":"Shimmering Seal","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,95,63,0,42,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":95,"3":63,"5":42,"6":22},"isBase":true}}}, +{"id":45298,"name":"Razorscale Talon","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,38,89,0,0,0,35,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":535,"weaponDamageMax":994,"weaponSpeed":2.6,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":535,"weaponDamageMax":994,"stats":{"1":38,"2":89,"6":35,"7":20},"isBase":true}}}, +{"id":45299,"name":"Dragonsteel Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[81,0,128,0,0,0,75,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":81,"2":128,"6":75,"7":49,"22":1930},"isBase":true}}}, +{"id":45300,"name":"Mantle of Fiery Vengeance","icon":"inv_shoulder_73","type":3,"armorType":3,"stats":[0,65,120,0,0,0,83,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33113,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"1":65,"2":120,"6":83,"7":41,"22":1319},"isBase":true}}}, +{"id":45301,"name":"Bracers of the Smothering Inferno","icon":"inv_bracer_27b","type":6,"armorType":3,"stats":[0,59,89,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}},{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":59,"2":89,"5":45,"6":34,"22":744},"isBase":true}}}, +{"id":45302,"name":"Treads of the Invader","icon":"inv_boots_mail_01","type":10,"armorType":2,"stats":[0,84,116,0,0,0,63,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":84,"2":116,"6":63,"7":42,"22":811},"isBase":true}}}, +{"id":45303,"name":"Band of Draconic Guile","icon":"inv_jewelry_ring_04","type":11,"stats":[0,62,87,0,0,0,45,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":62,"2":87,"6":45,"7":37},"isBase":true}}}, +{"id":45304,"name":"Stormtempered Girdle","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[59,0,126,0,0,45,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":59,"2":126,"5":45,"9":77,"22":1336},"isBase":true}}}, +{"id":45305,"name":"Breastplate of the Afterlife","icon":"inv_chest_plate06","type":5,"armorType":4,"stats":[0,0,179,81,60,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29305,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":179,"3":81,"4":60,"7":62,"22":2375},"isBase":true}}}, +{"id":45306,"name":"Binding of the Dragon Matriarch","icon":"inv_belt_49a","type":8,"armorType":1,"stats":[0,0,104,78,58,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29307,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":104,"3":78,"4":58,"6":57,"22":504},"isBase":true}}}, +{"id":45307,"name":"Ironscale Leggings","icon":"inv_pants_mail_12","type":9,"armorType":3,"stats":[0,0,171,93,76,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":171,"3":93,"4":76,"7":62,"22":1487},"isBase":true}}}, +{"id":45308,"name":"Eye of the Broodmother","icon":"inv_misc_eye_02","type":12,"stats":[0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29932,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"6":92},"isBase":true}}}, +{"id":45309,"name":"Rifle of the Platinum Guard","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,0,133,0,0,76,92,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":749,"weaponDamageMax":1392,"weaponSpeed":2.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":749,"weaponDamageMax":1392,"stats":{"2":133,"5":76,"6":92,"7":98},"isBase":true}}}, +{"id":45310,"name":"Gauntlets of the Iron Furnace","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[62,0,124,0,0,0,43,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":62,"2":124,"6":43,"9":78,"22":1484},"isBase":true}}}, +{"id":45311,"name":"Relentless Edge","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,69,203,0,0,0,80,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":979,"weaponDamageMax":1469,"weaponSpeed":3.2,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":979,"weaponDamageMax":1469,"stats":{"1":69,"2":203,"6":80,"7":66},"isBase":true}}}, +{"id":45312,"name":"Gloves of Smoldering Touch","icon":"inv_gauntlets_47","type":7,"armorType":2,"stats":[0,88,110,0,0,0,56,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":88,"2":110,"6":56,"7":51,"22":738},"isBase":true}}}, +{"id":45313,"name":"Furnace Stone","icon":"inv_shield_59","type":12,"stats":[0,0,0,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"9":111},"isBase":true}}}, +{"id":45314,"name":"Igniter Rod","icon":"inv_offhand_ulduarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,84,55,36,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29309,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":84,"3":55,"4":36,"6":47},"isBase":true}}}, +{"id":45315,"name":"Stonerender","icon":"inv_mace_90","type":13,"weaponType":4,"handType":2,"stats":[0,51,77,0,0,0,30,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":420,"weaponDamageMax":781,"stats":{"1":51,"2":77,"6":30,"7":38},"isBase":true}}}, +{"id":45316,"name":"Armbraces of the Vibrant Flame","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,66,68,36,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":66,"3":68,"4":36,"6":43,"22":744},"isBase":true}}}, +{"id":45317,"name":"Shawl of the Caretaker","icon":"inv_misc_cape_09","type":4,"armorType":1,"stats":[0,0,88,63,30,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":30258,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":88,"3":63,"4":30,"7":39,"22":448},"isBase":true}}}, +{"id":45318,"name":"Drape of Fuming Anger","icon":"inv_misc_cape_22","type":4,"armorType":1,"stats":[60,0,88,0,0,0,32,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29120,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":60,"2":88,"6":32,"7":49,"22":448},"isBase":true}}}, +{"id":45319,"name":"Cloak of the Makers","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[49,0,99,0,0,36,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":49,"2":99,"5":36,"9":63,"22":461},"isBase":true}}}, +{"id":45320,"name":"Shoulderplates of the Eternal","icon":"inv_shoulder_88","type":3,"armorType":4,"stats":[79,0,126,0,0,43,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":79,"2":126,"5":43,"6":64,"22":1795},"isBase":true}}}, +{"id":45321,"name":"Pauldrons of Tempered Will","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,134,79,0,0,43,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":134,"3":79,"6":43,"7":34,"22":1781},"isBase":true}}}, +{"id":45322,"name":"Cloak of the Iron Council","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[52,0,95,0,0,0,0,0,26,54,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":52,"2":95,"8":26,"9":54,"22":448},"isBase":true}}}, +{"id":45324,"name":"Leggings of Swift Reflexes","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,112,160,0,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":112,"2":160,"6":56,"7":80,"22":1033},"isBase":true}}}, +{"id":45325,"name":"Gloves of the Stonereaper","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,77,126,0,0,65,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":126,"5":65,"6":41,"22":753},"isBase":true}}}, +{"id":45326,"name":"Platinum Band of the Aesir","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[44,0,99,0,0,0,0,0,42,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":44,"2":99,"8":42,"9":62},"isBase":true}}}, +{"id":45327,"name":"Siren's Cry","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,121,181,0,0,0,80,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":850,"weaponDamageMax":1580,"weaponSpeed":2.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":850,"weaponDamageMax":1580,"stats":{"1":121,"2":181,"6":80,"7":70},"isBase":true}}}, +{"id":45329,"name":"Circlet of True Sight","icon":"inv_jewelry_ring_73","type":1,"armorType":3,"stats":[0,82,159,0,0,71,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":24200,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":82,"2":159,"5":71,"6":47,"22":1381},"isBase":true}}}, +{"id":45330,"name":"Greaves of Iron Intensity","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[80,0,118,0,0,59,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":80,"2":118,"5":59,"6":48,"22":1633},"isBase":true}}}, +{"id":45331,"name":"Rune-Etched Nightblade","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[0,49,69,0,0,0,34,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"stats":{"1":49,"2":69,"6":34,"7":27},"isBase":true}}}, +{"id":45332,"name":"Stormtip","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,0,64,0,34,0,0,53,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.8,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"stats":{"2":64,"4":34,"7":53,"14":611},"isBase":true}}}, +{"id":45333,"name":"Belt of the Iron Servant","icon":"inv_belt_46a","type":8,"armorType":3,"stats":[0,0,119,79,58,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":119,"3":79,"4":58,"7":39,"22":956},"isBase":true}}}, +{"id":45334,"name":"Unbreakable Chestguard","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[112,0,169,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":112,"2":169,"9":83,"22":2393},"isBase":true}}}, +{"id":45335,"name":"Valorous Darkruned Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,86,49,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":96,"2":143,"9":86,"10":49,"22":2375},"isBase":true}}}, +{"id":45336,"name":"Valorous Darkruned Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[86,0,143,0,0,37,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":86,"2":143,"5":37,"9":89,"22":1930},"isBase":true}}}, +{"id":45337,"name":"Valorous Darkruned Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[61,0,126,0,0,0,0,0,36,0,74,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":61,"2":126,"8":36,"10":74,"22":1484},"isBase":true}}}, +{"id":45338,"name":"Valorous Darkruned Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[75,0,143,0,0,0,0,0,54,0,104,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":75,"2":143,"8":54,"10":104,"22":2078},"isBase":true}}}, +{"id":45339,"name":"Valorous Darkruned Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[66,0,126,0,0,0,0,0,0,65,36,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":66,"2":126,"9":65,"10":36,"22":1781},"isBase":true}}}, +{"id":45340,"name":"Valorous Darkruned Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,158,0,0,0,75,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"6":75,"8":54,"22":2375},"isBase":true}}}, +{"id":45341,"name":"Valorous Darkruned Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,55,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"5":55,"6":41,"22":1484},"isBase":true}}}, +{"id":45342,"name":"Valorous Darkruned Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[81,0,128,0,0,0,69,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":81,"2":128,"6":69,"7":48,"22":1930},"isBase":true}}}, +{"id":45343,"name":"Valorous Darkruned Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[92,0,158,0,0,0,69,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"6":69,"7":63,"22":2078},"isBase":true}}}, +{"id":45344,"name":"Valorous Darkruned Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,118,0,0,43,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"5":43,"7":55,"22":1781},"isBase":true}}}, +{"id":45345,"name":"Valorous Nightsong Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,111,71,53,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"4":53,"6":44,"22":738},"isBase":true}}}, +{"id":45346,"name":"Valorous Nightsong Headpiece","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,150,90,55,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":55,"7":54,"22":959},"isBase":true}}}, +{"id":45347,"name":"Valorous Nightsong Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,150,90,71,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":71,"6":54,"22":1033},"isBase":true}}}, +{"id":45348,"name":"Valorous Nightsong Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,150,90,63,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":63,"6":62,"22":1180},"isBase":true}}}, +{"id":45349,"name":"Valorous Nightsong Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,111,70,53,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":70,"4":53,"7":44,"22":885},"isBase":true}}}, +{"id":45351,"name":"Valorous Nightsong Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,111,71,0,52,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"5":52,"6":45,"22":738},"isBase":true}}}, +{"id":45352,"name":"Valorous Nightsong Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,111,71,45,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"4":45,"6":52,"22":885},"isBase":true}}}, +{"id":45353,"name":"Valorous Nightsong Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,150,90,0,54,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"5":54,"6":71,"22":1033},"isBase":true}}}, +{"id":45354,"name":"Valorous Nightsong Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,150,90,55,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":55,"7":70,"22":1180},"isBase":true}}}, +{"id":45355,"name":"Valorous Nightsong Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,84,132,0,0,0,42,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":84,"2":132,"6":42,"7":32,"22":738},"isBase":true}}}, +{"id":45356,"name":"Valorous Nightsong Headguard","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,79,165,0,0,0,74,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":79,"2":165,"6":74,"7":49,"22":959},"isBase":true}}}, +{"id":45357,"name":"Valorous Nightsong Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,113,145,0,0,0,69,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":113,"2":145,"6":69,"7":49,"22":1033},"isBase":true}}}, +{"id":45358,"name":"Valorous Nightsong Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,96,168,0,0,48,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":96,"2":168,"5":48,"6":66,"22":1180},"isBase":true}}}, +{"id":45359,"name":"Valorous Nightsong Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,75,109,0,0,0,59,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":75,"2":109,"6":59,"8":44,"22":885},"isBase":true}}}, +{"id":45360,"name":"Valorous Scourgestalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,71,118,0,0,49,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":71,"2":118,"5":49,"7":49,"22":1062},"isBase":true}}}, +{"id":45361,"name":"Valorous Scourgestalker Headpiece","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,90,107,0,0,0,99,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":90,"2":107,"6":99,"7":46,"22":1381},"isBase":true}}}, +{"id":45362,"name":"Valorous Scourgestalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,106,118,0,0,0,92,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":106,"2":118,"6":92,"7":42,"22":1487},"isBase":true}}}, +{"id":45363,"name":"Valorous Scourgestalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,71,118,0,0,47,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":71,"2":118,"5":47,"7":51,"22":1275},"isBase":true}}}, +{"id":45364,"name":"Valorous Scourgestalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,90,159,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":90,"2":159,"5":63,"6":63,"22":1700},"isBase":true}}}, +{"id":45365,"name":"Valorous Kirin Tor Hood","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,133,90,0,64,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":133,"3":90,"5":64,"6":61,"22":728},"isBase":true}}}, +{"id":45367,"name":"Valorous Kirin Tor Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,137,98,0,62,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":137,"3":98,"5":62,"6":68,"22":784},"isBase":true}}}, +{"id":45368,"name":"Valorous Kirin Tor Tunic","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,137,106,46,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":137,"3":106,"4":46,"6":76,"22":896},"isBase":true}}}, +{"id":45369,"name":"Valorous Kirin Tor Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,78,30,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":113,"3":78,"4":30,"7":57,"22":672},"isBase":true}}}, +{"id":45370,"name":"Valorous Aegis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,111,71,46,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"4":46,"7":53,"22":1484},"isBase":true}}}, +{"id":45371,"name":"Valorous Aegis Greaves","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,150,90,70,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":70,"7":54,"22":2078},"isBase":true}}}, +{"id":45372,"name":"Valorous Aegis Headpiece","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[0,0,150,90,0,0,54,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"6":54,"7":55,"22":1930},"isBase":true}}}, +{"id":45373,"name":"Valorous Aegis Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"6":45,"7":52,"22":1781},"isBase":true}}}, +{"id":45374,"name":"Valorous Aegis Tunic","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[0,0,150,90,70,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":70,"6":54,"22":2375},"isBase":true}}}, +{"id":45375,"name":"Valorous Aegis Battleplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[92,0,158,0,0,78,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"5":78,"6":48,"22":2375},"isBase":true}}}, +{"id":45376,"name":"Valorous Aegis Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,0,59,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"6":59,"8":37,"22":1484},"isBase":true}}}, +{"id":45377,"name":"Valorous Aegis Helm","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[103,0,128,0,0,0,64,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":103,"2":128,"6":64,"7":57,"22":1930},"isBase":true}}}, +{"id":45378,"name":"Boots of the Petrified Forest","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,0,116,79,52,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23953,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":116,"3":79,"4":52,"7":53,"22":811},"isBase":true}}}, +{"id":45379,"name":"Valorous Aegis Legplates","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[92,0,158,0,0,57,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"5":57,"6":72,"22":2078},"isBase":true}}}, +{"id":45380,"name":"Valorous Aegis Shoulderplates","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[73,0,118,0,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"6":55,"7":43,"22":1781},"isBase":true}}}, +{"id":45381,"name":"Valorous Aegis Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,77,51,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":113,"2":143,"9":77,"10":51,"22":2375},"isBase":true}}}, +{"id":45382,"name":"Valorous Aegis Faceguard","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,83,40,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":96,"2":143,"9":83,"10":40,"22":1930},"isBase":true}}}, +{"id":45383,"name":"Valorous Aegis Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[83,0,112,0,0,0,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":83,"2":112,"9":43,"10":55,"22":1484},"isBase":true}}}, +{"id":45384,"name":"Valorous Aegis Legguards","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,72,55,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":113,"2":143,"9":72,"10":55,"22":2078},"isBase":true}}}, +{"id":45385,"name":"Valorous Aegis Shoulderguards","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[83,0,112,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":83,"2":112,"10":56,"22":1781},"isBase":true}}}, +{"id":45386,"name":"Valorous Cowl of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,132,90,71,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":132,"3":90,"4":71,"6":62,"22":728},"isBase":true}}}, +{"id":45387,"name":"Valorous Gloves of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,100,79,57,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":100,"3":79,"4":57,"7":46,"22":560},"isBase":true}}}, +{"id":45388,"name":"Valorous Leggings of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,137,106,54,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":137,"3":106,"4":54,"7":66,"22":784},"isBase":true}}}, +{"id":45389,"name":"Valorous Robe of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,151,90,76,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":151,"3":90,"4":76,"6":46,"22":896},"isBase":true}}}, +{"id":45390,"name":"Valorous Shoulderpads of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,71,37,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":113,"3":71,"4":37,"7":56,"22":672},"isBase":true}}}, +{"id":45391,"name":"Valorous Circlet of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,137,90,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":137,"3":90,"6":65,"7":60,"22":728},"isBase":true}}}, +{"id":45392,"name":"Valorous Handwraps of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,89,79,49,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":89,"3":79,"4":49,"6":59,"22":560},"isBase":true}}}, +{"id":45393,"name":"Valorous Mantle of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,104,71,46,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":104,"3":71,"4":46,"6":57,"22":672},"isBase":true}}}, +{"id":45394,"name":"Valorous Pants of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,155,90,52,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":155,"3":90,"4":52,"7":70,"22":784},"isBase":true}}}, +{"id":45395,"name":"Valorous Raiments of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,141,106,0,68,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":141,"3":106,"5":68,"7":54,"22":896},"isBase":true}}}, +{"id":45396,"name":"Valorous Terrorblade Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,96,146,0,0,0,66,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":96,"2":146,"6":66,"8":75,"22":1180},"isBase":true}}}, +{"id":45397,"name":"Valorous Terrorblade Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,84,107,0,0,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,738,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":84,"2":107,"5":53,"6":42,"22":738},"isBase":true}}}, +{"id":45398,"name":"Valorous Terrorblade Helmet","icon":"inv_helmet_100.tga","type":1,"armorType":2,"stats":[0,106,114,0,0,0,75,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":106,"2":114,"6":75,"7":56,"22":959},"isBase":true}}}, +{"id":45399,"name":"Valorous Terrorblade Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,100,148,0,0,0,66,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":100,"2":148,"6":66,"7":70,"22":1033},"isBase":true}}}, +{"id":45400,"name":"Valorous Terrorblade Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,84,116,0,0,55,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":84,"2":116,"5":55,"6":38,"22":885},"isBase":true}}}, +{"id":45401,"name":"Valorous Worldbreaker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"6":45,"7":52,"22":1062},"isBase":true}}}, +{"id":45402,"name":"Valorous Worldbreaker Headpiece","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,150,90,0,0,55,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"6":55,"7":54,"22":1381},"isBase":true}}}, +{"id":45403,"name":"Valorous Worldbreaker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,150,90,70,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":70,"6":55,"22":1487},"isBase":true}}}, +{"id":45404,"name":"Valorous Worldbreaker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,111,71,46,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"4":46,"7":53,"22":1275},"isBase":true}}}, +{"id":45405,"name":"Valorous Worldbreaker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,150,90,70,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"4":70,"6":55,"22":1700},"isBase":true}}}, +{"id":45406,"name":"Valorous Worldbreaker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,111,71,0,0,45,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"6":45,"7":52,"22":1062},"isBase":true}}}, +{"id":45408,"name":"Valorous Worldbreaker Helm","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,150,90,0,55,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"5":55,"6":58,"22":1381},"isBase":true}}}, +{"id":45409,"name":"Valorous Worldbreaker Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,150,90,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"5":55,"6":71,"22":1487},"isBase":true}}}, +{"id":45410,"name":"Valorous Worldbreaker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,111,71,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":71,"6":53,"7":45,"22":1275},"isBase":true}}}, +{"id":45411,"name":"Valorous Worldbreaker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,150,90,0,55,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"5":55,"7":70,"22":1700},"isBase":true}}}, +{"id":45412,"name":"Valorous Worldbreaker Faceguard","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,94,115,0,0,0,89,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":94,"2":115,"6":89,"7":49,"22":1381},"isBase":true}}}, +{"id":45413,"name":"Valorous Worldbreaker Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,90,159,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":90,"2":159,"5":63,"6":63,"22":1700},"isBase":true}}}, +{"id":45414,"name":"Valorous Worldbreaker Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,71,118,0,0,0,0,56,41,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":71,"2":118,"7":56,"8":41,"22":1062},"isBase":true}}}, +{"id":45415,"name":"Valorous Worldbreaker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,71,118,0,0,0,52,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":71,"2":118,"6":52,"8":42,"22":1275},"isBase":true}}}, +{"id":45416,"name":"Valorous Worldbreaker War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,90,159,0,0,46,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":90,"2":159,"5":46,"7":81,"22":1487},"isBase":true}}}, +{"id":45417,"name":"Valorous Deathbringer Hood","icon":"inv_helmet_131","type":1,"armorType":1,"stats":[0,0,141,90,37,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":141,"3":90,"4":37,"6":81,"22":728},"isBase":true}}}, +{"id":45418,"name":"Lady Maye's Sapphire Ring","icon":"inv_jewelry_ring_63","type":11,"stats":[0,0,87,61,44,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":23954,"zoneId":206}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":87,"3":61,"4":44,"7":32},"isBase":true}}}, +{"id":45419,"name":"Valorous Deathbringer Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,116,79,0,59,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":116,"3":79,"5":59,"6":25,"22":560},"isBase":true}}}, +{"id":45420,"name":"Valorous Deathbringer Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,151,106,44,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":151,"3":106,"4":44,"7":62,"22":784},"isBase":true}}}, +{"id":45421,"name":"Valorous Deathbringer Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,138,98,0,68,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":138,"3":98,"5":68,"6":62,"22":896},"isBase":true}}}, +{"id":45422,"name":"Valorous Deathbringer Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,111,79,0,0,53,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":79,"6":53,"7":38,"22":672},"isBase":true}}}, +{"id":45423,"name":"Runetouch Wristwraps","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,86,59,29,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26668,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":86,"3":59,"4":29,"6":46,"22":392},"isBase":true}}}, +{"id":45424,"name":"Valorous Siegebreaker Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,49,77,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":113,"2":143,"9":49,"10":77,"22":2375},"isBase":true}}}, +{"id":45425,"name":"Valorous Siegebreaker Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[96,0,143,0,0,0,0,0,0,78,47,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":96,"2":143,"9":78,"10":47,"22":1930},"isBase":true}}}, +{"id":45426,"name":"Valorous Siegebreaker Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[59,0,112,0,0,45,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":59,"2":112,"5":45,"9":73,"22":1484},"isBase":true}}}, +{"id":45427,"name":"Valorous Siegebreaker Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[113,0,143,0,0,0,0,0,0,71,56,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":113,"2":143,"9":71,"10":56,"22":2078},"isBase":true}}}, +{"id":45428,"name":"Valorous Siegebreaker Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[59,0,112,0,0,0,0,0,45,73,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":59,"2":112,"8":45,"9":73,"22":1781},"isBase":true}}}, +{"id":45429,"name":"Valorous Siegebreaker Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[92,0,158,0,0,0,57,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"6":57,"7":72,"22":2375},"isBase":true}}}, +{"id":45430,"name":"Valorous Siegebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[73,0,118,0,0,37,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"5":37,"8":59,"22":1484},"isBase":true}}}, +{"id":45431,"name":"Valorous Siegebreaker Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[81,0,128,0,0,0,58,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":81,"2":128,"6":58,"7":66,"22":1930},"isBase":true}}}, +{"id":45432,"name":"Valorous Siegebreaker Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[92,0,158,0,0,72,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":92,"2":158,"5":72,"8":60,"22":2078},"isBase":true}}}, +{"id":45433,"name":"Valorous Siegebreaker Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,118,0,0,46,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":73,"2":118,"5":46,"6":53,"22":1781},"isBase":true}}}, +{"id":45434,"name":"Greaves of the Rockmender","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,125,77,56,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":77,"4":56,"6":48,"22":1645},"isBase":true}}}, +{"id":45435,"name":"Cowl of the Absolute","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,156,114,0,86,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":156,"3":114,"5":86,"6":57,"22":750},"isBase":true}}}, +{"id":45437,"name":"Runescribed Blade","icon":"inv_sword_134","type":13,"weaponType":9,"handType":2,"stats":[0,0,90,0,37,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.8,"ilvl":238,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"stats":{"2":90,"4":37,"6":52,"14":689},"isBase":true}}}, +{"id":45438,"name":"Ring of the Faithful Servant","icon":"inv_jewelry_ring_43","type":11,"stats":[0,0,95,63,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"4":46,"6":36},"isBase":true}}}, +{"id":45439,"name":"Unwavering Stare","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,165,98,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"4":60,"7":59,"22":979},"isBase":true}}}, +{"id":45440,"name":"Amice of the Stoic Watch","icon":"inv_shoulder_59","type":3,"armorType":3,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":77,"4":48,"6":57,"22":1291},"isBase":true}}}, +{"id":45441,"name":"Sandals of the Ancient Keeper","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,119,85,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33515,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33515,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":85,"4":62,"6":49,"22":634},"isBase":true}}}, +{"id":45442,"name":"Sorthalis, Hammer of the Watchers","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[45,0,79,0,0,0,0,0,32,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":429,"weaponDamageMax":797,"weaponSpeed":1.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":429,"weaponDamageMax":797,"stats":{"0":45,"2":79,"8":32,"10":49},"isBase":true}}}, +{"id":45443,"name":"Charm of Meticulous Timing","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,103,64,48,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"4":48,"7":40},"isBase":true}}}, +{"id":45444,"name":"Gloves of the Steady Hand","icon":"inv_gauntlets_48","type":7,"armorType":3,"stats":[0,79,143,0,0,52,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1163,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"1":79,"2":143,"5":52,"6":56,"22":1163},"isBase":true}}}, +{"id":45445,"name":"Breastplate of the Devoted","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[0,0,187,112,0,0,76,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2549,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"2":187,"3":112,"6":76,"7":58,"22":2549},"isBase":true}}}, +{"id":45446,"name":"Grasps of Reason","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,106,64,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":106,"3":64,"4":48,"7":39,"22":455},"isBase":true}}}, +{"id":45447,"name":"Watchful Eye of Fate","icon":"inv_jewelry_ring_45","type":2,"stats":[0,0,79,63,37,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":79,"3":63,"4":37,"7":40},"isBase":true}}}, +{"id":45448,"name":"Perilous Bite","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,58,75,0,0,39,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":75,"5":39,"6":24},"isBase":true}}}, +{"id":45449,"name":"The Masticator","icon":"inv_weapon_hand_22","type":13,"weaponType":3,"handType":2,"stats":[0,48,79,0,0,39,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":772,"weaponDamageMax":1159,"weaponSpeed":2.7,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":772,"weaponDamageMax":1159,"stats":{"1":48,"2":79,"5":39,"6":34},"isBase":true}}}, +{"id":45450,"name":"Northern Barrier","icon":"inv_shield_66","type":13,"weaponType":7,"handType":3,"stats":[44,0,99,0,0,30,0,0,30,67,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":44,"2":99,"5":30,"8":30,"9":67,"22":7117},"isBase":true}}}, +{"id":45451,"name":"Frozen Loop","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,89,63,0,46,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":89,"3":63,"5":46,"7":36},"isBase":true}}}, +{"id":45452,"name":"Frostplate Greaves","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,165,106,68,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":106,"4":68,"6":75,"22":2094},"isBase":true}}}, +{"id":45453,"name":"Winter's Icy Embrace","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,97,126,0,0,0,81,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":97,"2":126,"6":81,"8":57,"22":1205},"isBase":true}}}, +{"id":45454,"name":"Frost-Bound Chain Bracers","icon":"inv_bracer_25","type":6,"armorType":3,"stats":[0,63,95,0,0,40,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":95,"5":40,"6":43,"22":753},"isBase":true}}}, +{"id":45455,"name":"Belt of the Crystal Tree","icon":"inv_belt_37a","type":8,"armorType":2,"stats":[0,0,120,84,51,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":120,"3":84,"4":51,"7":40,"22":698},"isBase":true}}}, +{"id":45456,"name":"Loop of the Agile","icon":"inv_jewelry_ring_71","type":11,"stats":[0,71,82,0,0,0,51,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":71,"2":82,"6":51,"7":36},"isBase":true}}}, +{"id":45457,"name":"Staff of Endless Winter","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,227,0,84,0,104,0,0,0,0,0,0,0,735,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":418,"weaponDamageMax":628,"weaponSpeed":2.1,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":418,"weaponDamageMax":628,"stats":{"2":227,"4":84,"6":104,"14":735},"isBase":true}}}, +{"id":45458,"name":"Stormedge","icon":"inv_axe_102","type":13,"weaponType":1,"handType":4,"stats":[112,0,132,0,0,102,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"weaponSpeed":3.5,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28921,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"stats":{"0":112,"2":132,"5":102,"6":78},"isBase":true}}}, +{"id":45459,"name":"Frigid Strength of Hodir","icon":"inv_jewelry_necklace_04","type":2,"stats":[65,0,107,0,0,45,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":65,"2":107,"5":45,"6":54},"isBase":true}}}, +{"id":45460,"name":"Bindings of Winter Gale","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,103,64,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,814,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"6":48,"7":39,"22":814},"isBase":true}}}, +{"id":45461,"name":"Drape of Icy Intent","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,64,110,0,0,40,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"phase":2,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"1":64,"2":110,"5":40,"7":41,"22":520},"isBase":true}}}, +{"id":45462,"name":"Gloves of the Frozen Glade","icon":"inv_gauntlets_74","type":7,"armorType":2,"stats":[0,0,140,79,56,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":140,"3":79,"4":56,"6":55,"22":832},"isBase":true}}}, +{"id":45463,"name":"Vulmir, the Northern Tempest","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,52,80,0,0,37,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":607,"weaponDamageMax":1128,"stats":{"1":52,"2":80,"5":37,"8":29},"isBase":true}}}, +{"id":45464,"name":"Cowl of Icy Breaths","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,142,98,0,60,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":142,"3":98,"5":60,"6":48,"22":728},"isBase":true}}}, +{"id":45466,"name":"Scale of Fates","icon":"inv_spiritshard_02","type":12,"stats":[0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"3":107},"isBase":true}}}, +{"id":45467,"name":"Belt of the Betrayed","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,85,99,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":99,"6":76,"7":56,"22":968},"isBase":true}}}, +{"id":45468,"name":"Leggings of Lost Love","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,165,98,86,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"4":86,"7":41,"22":807},"isBase":true}}}, +{"id":45469,"name":"Sif's Promise","icon":"inv_jewelry_ring_54","type":11,"stats":[63,0,95,0,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"6":44,"8":44},"isBase":true}}}, +{"id":45470,"name":"Wisdom's Hold","icon":"inv_shield_65","type":13,"weaponType":7,"handType":3,"stats":[0,0,107,64,0,0,40,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":107,"3":64,"6":40,"7":47,"22":7364},"isBase":true}}}, +{"id":45471,"name":"Fate's Clutch","icon":"inv_jewelry_ring_69","type":11,"stats":[58,0,109,0,0,0,0,0,41,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":58,"2":109,"8":41,"9":65},"isBase":true}}}, +{"id":45472,"name":"Warhelm of the Champion","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[139,0,165,0,0,69,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2071,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"0":139,"2":165,"5":69,"6":98,"22":2071},"isBase":true}}}, +{"id":45473,"name":"Embrace of the Gladiator","icon":"inv_chest_leather_16","type":5,"armorType":2,"stats":[0,112,174,0,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"1":112,"2":174,"6":70,"7":85,"22":1331},"isBase":true}}}, +{"id":45474,"name":"Pauldrons of the Combatant","icon":"inv_shoulder_01","type":3,"armorType":3,"stats":[0,0,139,79,62,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1395,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"4":62,"7":48,"22":1395},"isBase":true}}}, +{"id":45479,"name":"The Lifebinder","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,0,226,0,80,0,0,120,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"weaponSpeed":2.1,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":364,"weaponDamageMax":547,"stats":{"2":226,"4":80,"7":120,"14":689},"isBase":true}}}, +{"id":45480,"name":"Nymph Heart Charm","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,63,99,0,0,36,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":99,"5":36,"7":42},"isBase":true}}}, +{"id":45481,"name":"Gauntlets of Ruthless Reprisal","icon":"inv_gauntlets_29","type":7,"armorType":4,"stats":[86,0,126,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":86,"2":126,"6":63,"7":52,"22":1496},"isBase":true}}}, +{"id":45482,"name":"Leggings of the Lifetender","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,165,98,76,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"4":76,"7":59,"22":1055},"isBase":true}}}, +{"id":45483,"name":"Boots of the Servant","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,118,77,48,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":118,"3":77,"4":48,"7":62,"22":634},"isBase":true}}}, +{"id":45484,"name":"Bladetwister","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,55,72,0,0,0,28,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"1":55,"2":72,"6":28,"7":37},"isBase":true}}}, +{"id":45485,"name":"Bronze Pendant of the Vanir","icon":"inv_jewelry_necklace_47","type":2,"stats":[80,0,109,0,0,0,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":80,"2":109,"9":50,"10":37},"isBase":true}}}, +{"id":45486,"name":"Drape of the Sullen Goddess","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,103,64,48,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"4":48,"6":40,"22":520},"isBase":true}}}, +{"id":45487,"name":"Handguards of Revitalization","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[96,0,145,0,0,0,0,0,0,66,46,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"0":96,"2":145,"9":66,"10":46,"22":1593},"isBase":true}}}, +{"id":45488,"name":"Leggings of the Enslaved Idol","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,182,104,0,70,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"2":182,"3":104,"5":70,"6":77,"22":911},"isBase":true}}}, +{"id":45489,"name":"Insanity's Grip","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":2,"stats":[0,52,83,0,0,0,34,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":694,"weaponDamageMax":1042,"weaponSpeed":2.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":694,"weaponDamageMax":1042,"stats":{"1":52,"2":83,"6":34,"8":25},"isBase":true}}}, +{"id":45490,"name":"Pandora's Plea","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"3":114},"isBase":true}}}, +{"id":45491,"name":"Waistguard of the Creator","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,77,127,0,0,0,43,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":127,"6":43,"7":56,"22":678},"isBase":true}}}, +{"id":45492,"name":"Malleable Steelweave Mantle","icon":"inv_shoulder_18","type":3,"armorType":2,"stats":[0,0,121,77,56,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":77,"4":56,"7":48,"22":904},"isBase":true}}}, +{"id":45493,"name":"Asimov's Drape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,82,63,44,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":82,"3":63,"4":44,"6":49,"22":461},"isBase":true}}}, +{"id":45494,"name":"Delirium's Touch","icon":"inv_weapon_hand_23","type":13,"weaponType":3,"handType":2,"stats":[0,35,93,0,0,0,27,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"1":35,"2":93,"6":27,"7":37},"isBase":true}}}, +{"id":45495,"name":"Conductive Seal","icon":"inv_jewelry_ring_66","type":11,"stats":[0,0,93,64,39,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":93,"3":64,"4":39,"7":55},"isBase":true}}}, +{"id":45496,"name":"Titanskin Cloak","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[54,0,109,0,0,27,0,0,35,80,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":54,"2":109,"5":27,"8":35,"9":80,"22":520},"isBase":true}}}, +{"id":45497,"name":"Crown of Luminescence","icon":"inv_helmet_99","type":1,"armorType":1,"stats":[0,0,187,112,70,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"2":187,"3":112,"4":70,"6":69,"22":846},"isBase":true}}}, +{"id":45498,"name":"Lotrafen, Spear of the Damned","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,120,169,0,0,0,87,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"weaponSpeed":3.4,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1180,"weaponDamageMax":1771,"stats":{"1":120,"2":169,"6":87,"7":80},"isBase":true}}}, +{"id":45501,"name":"Boots of the Underdweller","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[86,0,126,0,0,52,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":86,"2":126,"5":52,"6":63,"22":1645},"isBase":true}}}, +{"id":45502,"name":"Helm of the Faceless","icon":"inv_helmet_138","type":1,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,65,59,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":65,"10":59,"22":1944},"isBase":true}}}, +{"id":45503,"name":"Metallic Loop of the Sufferer","icon":"inv_jewelry_ring_35","type":11,"stats":[0,62,99,0,0,0,43,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":62,"2":99,"6":43,"7":36},"isBase":true}}}, +{"id":45504,"name":"Darkcore Leggings","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,106,170,0,0,52,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":106,"2":170,"5":52,"7":76,"22":1507},"isBase":true}}}, +{"id":45505,"name":"Belt of Clinging Hope","icon":"inv_belt_44b","type":8,"armorType":4,"stats":[0,0,121,85,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":85,"4":59,"7":56,"22":1346},"isBase":true}}}, +{"id":45507,"name":"The General's Heart","icon":"inv_misc_ahnqirajtrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"9":113},"isBase":true}}}, +{"id":45508,"name":"Belt of the Darkspeaker","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,119,77,0,56,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"5":56,"6":49,"22":519},"isBase":true}}}, +{"id":45511,"name":"Scepter of Lost Souls","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,78,52,0,0,25,39,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"stats":{"2":78,"3":52,"6":25,"7":39,"14":689},"isBase":true}}}, +{"id":45512,"name":"Grips of the Unbroken","icon":"inv_gauntlets_53","type":7,"armorType":2,"stats":[0,0,121,77,64,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":77,"4":64,"7":34,"22":753},"isBase":true}}}, +{"id":45513,"name":"Boots of the Forgotten Depths","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,126,85,50,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"4":50,"7":62,"22":1184},"isBase":true}}}, +{"id":45514,"name":"Mantle of the Unknowing","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,118,77,62,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":118,"3":77,"4":62,"6":41,"22":692},"isBase":true}}}, +{"id":45515,"name":"Ring of the Vacant Eye","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,92,63,0,44,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":92,"3":63,"5":44,"6":42},"isBase":true}}}, +{"id":45516,"name":"Voldrethar, Dark Blade of Oblivion","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[114,0,191,0,0,0,98,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"weaponSpeed":3.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"stats":{"0":114,"2":191,"6":98,"7":79},"isBase":true}}}, +{"id":45517,"name":"Pendulum of Infinity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,64,101,0,0,0,48,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"1":64,"2":101,"6":48,"7":41},"isBase":true}}}, +{"id":45518,"name":"Flare of the Heavens","icon":"spell_holy_summonlightwell","type":12,"stats":[0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"6":135},"isBase":true}}}, +{"id":45519,"name":"Vestments of the Blind Denizen","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,159,104,78,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"2":159,"3":104,"4":78,"7":69,"22":1331},"isBase":true}}}, +{"id":45520,"name":"Handwraps of the Vigilant","icon":"inv_gauntlets_71","type":7,"armorType":1,"stats":[0,0,135,79,51,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":135,"3":79,"4":51,"6":59,"22":651},"isBase":true}}}, +{"id":45521,"name":"Earthshaper","icon":"inv_mace_93","type":13,"weaponType":4,"handType":4,"stats":[120,0,180,0,0,74,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"weaponSpeed":3.6,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":242,"weaponDamageMin":1250,"weaponDamageMax":1875,"stats":{"0":120,"2":180,"5":74,"6":92},"isBase":true}}}, +{"id":45522,"name":"Blood of the Old God","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"5":114},"isBase":true}}}, +{"id":45523,"name":"Garona's Guise","icon":"inv_helmet_100.tga","type":1,"armorType":2,"stats":[0,98,147,0,0,0,0,76,59,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":147,"7":76,"8":59,"22":979},"isBase":true}}}, +{"id":45524,"name":"Chestguard of Insidious Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":170,"5":60,"6":76,"22":1722},"isBase":true}}}, +{"id":45525,"name":"Godbane Signet","icon":"inv_jewelry_ring_54","type":11,"stats":[0,46,118,0,0,0,42,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":46,"2":118,"6":42,"8":36},"isBase":true}}}, +{"id":45527,"name":"Soulscribe","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,0,96,0,0,0,28,48,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"weaponSpeed":1.8,"ilvl":238,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":210,"weaponDamageMax":391,"stats":{"2":96,"6":28,"7":48,"14":689},"isBase":true}}}, +{"id":45529,"name":"Shawl of Haunted Memories","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,86,63,49,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":86,"3":63,"4":49,"6":36,"22":461},"isBase":true}}}, +{"id":45530,"name":"Sanity's Bond","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,95,63,50,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"4":50,"7":31},"isBase":true}}}, +{"id":45531,"name":"Chestguard of the Fallen God","icon":"inv_chest_leather_13","type":5,"armorType":3,"stats":[0,0,161,106,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":106,"6":75,"7":68,"22":1722},"isBase":true}}}, +{"id":45532,"name":"Cowl of Dark Whispers","icon":"inv_helmet_136","type":1,"armorType":1,"stats":[0,0,138,98,80,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":138,"3":98,"4":80,"6":59,"22":750},"isBase":true}}}, +{"id":45533,"name":"Dark Edge of Depravity","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,112,189,0,0,64,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1395,"weaponDamageMax":2093,"weaponSpeed":3.5,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1395,"weaponDamageMax":2093,"stats":{"1":112,"2":189,"5":64,"7":85},"isBase":true}}}, +{"id":45534,"name":"Seal of the Betrayed King","icon":"inv_jewelry_ring_76","type":11,"stats":[65,0,107,0,0,45,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":65,"2":107,"5":45,"6":54},"isBase":true}}}, +{"id":45535,"name":"Show of Faith","icon":"spell_holy_improvedresistanceauras","type":12,"stats":[0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"3":120},"isBase":true}}}, +{"id":45536,"name":"Legguards of Cunning Deception","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,112,181,0,0,0,78,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1165,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"1":112,"2":181,"6":78,"7":66,"22":1165},"isBase":true}}}, +{"id":45537,"name":"Treads of the False Oracle","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,139,79,0,0,61,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"6":61,"7":47,"22":716},"isBase":true}}}, +{"id":45538,"name":"Titanstone Pendant","icon":"inv_jewelry_necklace_15","type":2,"stats":[49,0,99,0,0,0,0,0,36,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":49,"2":99,"8":36,"9":63},"isBase":true}}}, +{"id":45539,"name":"Pendant of Focused Energies","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,0,95,63,0,46,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":63,"5":46,"6":36},"isBase":true}}}, +{"id":45540,"name":"Bladebearer's Signet","icon":"inv_jewelry_ring_72","type":11,"stats":[63,0,95,0,0,49,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":63,"2":95,"5":49,"8":38},"isBase":true}}}, +{"id":45541,"name":"Shroud of Alteration","icon":"inv_misc_cape_05","type":4,"armorType":1,"stats":[0,0,90,63,46,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":63,"4":46,"7":36,"22":461},"isBase":true}}}, +{"id":45542,"name":"Greaves of the Stonewarder","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,45,60,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":45,"10":60,"22":1645},"isBase":true}}}, +{"id":45543,"name":"Shoulders of Misfortune","icon":"inv_shoulder_101","type":3,"armorType":3,"stats":[0,77,99,0,0,0,70,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":99,"6":70,"7":56,"22":1291},"isBase":true}}}, +{"id":45544,"name":"Leggings of the Tortured Earth","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,165,114,76,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":114,"4":76,"7":75,"22":1507},"isBase":true}}}, +{"id":45547,"name":"Relic Hunter's Cord","icon":"inv_belt_46b","type":8,"armorType":2,"stats":[0,85,131,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":131,"5":57,"6":49,"22":678},"isBase":true}}}, +{"id":45548,"name":"Belt of the Sleeper","icon":"inv_belt_49c","type":8,"armorType":2,"stats":[0,0,121,85,60,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":85,"4":60,"7":49,"22":678},"isBase":true}}}, +{"id":45549,"name":"Grips of Chaos","icon":"inv_bracer_31b","type":6,"armorType":1,"stats":[0,0,90,63,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":90,"3":63,"5":36,"6":46,"22":404},"isBase":true}}}, +{"id":45550,"name":"Belt of the Titans","icon":"inv_belt_34","type":8,"armorType":4,"stats":[73,0,134,0,0,0,61,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63187}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":73,"2":134,"6":61,"8":43,"22":1346},"isBase":true}}}, +{"id":45551,"name":"Indestructible Plate Girdle","icon":"inv_belt_45a","type":8,"armorType":4,"stats":[89,0,109,0,0,0,0,0,0,61,37,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63191}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":109,"9":61,"10":37,"22":1346},"isBase":true}}}, +{"id":45552,"name":"Plate Girdle of Righteousness","icon":"inv_belt_28","type":8,"armorType":4,"stats":[0,0,107,69,56,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63189}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":107,"3":69,"4":56,"7":40,"22":1346},"isBase":true}}}, +{"id":45553,"name":"Belt of Dragons","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,69,99,0,0,0,73,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63194}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":99,"6":73,"7":47,"22":968},"isBase":true}}}, +{"id":45554,"name":"Blue Belt of Chaos","icon":"inv_belt_45b","type":8,"armorType":3,"stats":[0,0,121,69,40,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63196}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":69,"4":40,"6":56,"22":968},"isBase":true}}}, +{"id":45555,"name":"Death-Warmed Belt","icon":"inv_belt_37b","type":8,"armorType":2,"stats":[0,69,118,0,0,40,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63198}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":118,"5":40,"6":56,"22":678},"isBase":true}}}, +{"id":45556,"name":"Belt of Arctic Life","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,0,122,69,57,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63200}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":69,"4":57,"7":40,"22":678},"isBase":true}}}, +{"id":45557,"name":"Sash of Ancient Power","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,119,69,0,43,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63203}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":69,"5":43,"7":49,"22":519},"isBase":true}}}, +{"id":45558,"name":"Cord of the White Dawn","icon":"inv_belt_40b","type":8,"armorType":1,"stats":[0,0,125,69,48,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63205}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":69,"4":48,"6":51,"22":519},"isBase":true}}}, +{"id":45559,"name":"Battlelord's Plate Boots","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[73,0,134,0,0,0,52,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63188}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":73,"2":134,"6":52,"7":51,"22":1645},"isBase":true}}}, +{"id":45560,"name":"Spiked Deathdealers","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[90,0,109,0,0,0,0,0,0,61,37,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63192}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":90,"2":109,"9":61,"10":37,"22":1645},"isBase":true}}}, +{"id":45561,"name":"Treads of Destiny","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[0,0,122,69,48,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":63190}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":69,"4":48,"7":49,"22":1645},"isBase":true}}}, +{"id":45562,"name":"Boots of Living Scale","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,69,100,0,0,0,72,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63195}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":100,"6":72,"7":48,"22":1184},"isBase":true}}}, +{"id":45563,"name":"Lightning Grounded Boots","icon":"inv_boots_chain_12","type":10,"armorType":3,"stats":[0,0,119,69,40,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63197}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":69,"4":40,"6":57,"22":1184},"isBase":true}}}, +{"id":45564,"name":"Footpads of Silence","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,69,112,0,0,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63199}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":69,"2":112,"5":48,"6":56,"22":829},"isBase":true}}}, +{"id":45565,"name":"Boots of Wintry Endurance","icon":"inv_boots_03","type":10,"armorType":2,"stats":[0,0,119,69,49,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":63201}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":69,"4":49,"6":48,"22":829},"isBase":true}}}, +{"id":45566,"name":"Spellslinger's Slippers","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,119,69,41,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63204}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":69,"4":41,"7":56,"22":634},"isBase":true}}}, +{"id":45567,"name":"Savior's Slippers","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,122,69,57,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":63206}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":69,"4":57,"6":40,"22":634},"isBase":true}}}, +{"id":45570,"name":"Skyforge Crossbow","icon":"inv_weapon_crossbow_33","type":14,"rangedWeaponType":2,"stats":[0,127,200,0,0,73,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1116,"weaponDamageMax":1674,"weaponSpeed":2.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1116,"weaponDamageMax":1674,"stats":{"1":127,"2":200,"5":73,"6":89},"isBase":true}}}, +{"id":45587,"name":"Bulwark of Algalon","icon":"inv_shield_67","type":13,"weaponType":7,"handType":3,"stats":[80,0,109,0,0,0,0,0,0,50,37,0,0,0,0,0,0,0,0,0,0,0,7364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":80,"2":109,"9":50,"10":37,"22":7364},"isBase":true}}}, +{"id":45588,"name":"Drape of the Skyborn","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[73,0,120,0,0,42,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":73,"2":120,"5":42,"6":53,"22":520},"isBase":true}}}, +{"id":45594,"name":"Legplates of the Endless Void","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[146,0,178,0,0,0,0,0,0,83,67,0,0,0,0,0,0,0,0,0,0,0,2230,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"0":146,"2":178,"9":83,"10":67,"22":2230},"isBase":true}}}, +{"id":45599,"name":"Sabatons of Lifeless Night","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[82,0,142,0,0,0,73,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"0":82,"2":142,"6":73,"7":54,"22":1752},"isBase":true}}}, +{"id":45605,"name":"Daschal's Bite","icon":"inv_weapon_shortblade_74","type":13,"weaponType":2,"handType":2,"stats":[0,52,80,0,0,0,29,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"weaponDamageMin":480,"weaponDamageMax":721,"weaponSpeed":1.8,"ilvl":238,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4273,"otherName":"Trash"}},{"drop":{"difficulty":5,"zoneId":4273,"otherName":"Trash"}}],"scalingOptions":{"238":{"randPropPoints":104,"weaponDamageMin":480,"weaponDamageMax":721,"stats":{"1":52,"2":80,"6":29,"7":34},"isBase":true}}}, +{"id":45607,"name":"Fang of Oblivion","icon":"inv_weapon_shortblade_84","type":13,"weaponType":2,"handType":2,"stats":[0,47,86,0,0,0,29,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":551,"weaponDamageMax":828,"weaponSpeed":1.8,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32857,"zoneId":4273,"category":"Hard Mode"}},{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":551,"weaponDamageMax":828,"stats":{"1":47,"2":86,"6":29,"7":24},"isBase":true}}}, +{"id":45608,"name":"Brann's Signet Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,64,100,0,0,0,43,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"1":64,"2":100,"6":43,"7":33},"isBase":true}}}, +{"id":45609,"name":"Comet's Trail","icon":"spell_arcane_starfire","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,271,271,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"12":271,"13":271},"isBase":true}}}, +{"id":45610,"name":"Boundless Gaze","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,104,192,0,0,74,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1512,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":275,"stats":{"1":104,"2":192,"5":74,"6":74,"22":1512},"isBase":true}}}, +{"id":45611,"name":"Solar Bindings","icon":"inv_bracer_26","type":6,"armorType":2,"stats":[0,64,94,0,0,0,0,48,47,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"1":64,"2":94,"7":48,"8":47,"22":582},"isBase":true}}}, +{"id":45612,"name":"Constellus","icon":"inv_mace_92","type":13,"weaponType":4,"handType":2,"stats":[0,0,102,0,48,0,29,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":241,"weaponDamageMax":448,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":241,"weaponDamageMax":448,"stats":{"2":102,"4":48,"6":29,"14":738},"isBase":true}}}, +{"id":45613,"name":"Dreambinder","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,112,158,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":956,"weaponDamageMax":1435,"weaponSpeed":2.4,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":956,"weaponDamageMax":1435,"stats":{"1":112,"2":158,"6":85,"7":86},"isBase":true}}}, +{"id":45614,"name":"Starshine Circle","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,103,64,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":103,"3":64,"4":48,"7":39},"isBase":true}}}, +{"id":45615,"name":"Planewalker Treads","icon":"inv_boots_chain_08","type":10,"armorType":3,"stats":[0,0,139,79,64,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1279,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"4":64,"6":56,"22":1279},"isBase":true}}}, +{"id":45616,"name":"Star-Beaded Clutch","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,139,79,48,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"4":48,"7":63,"22":749},"isBase":true}}}, +{"id":45617,"name":"Cosmos","icon":"inv_offhand_ulduarraid_d_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,101,72,0,51,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":101,"3":72,"5":51,"6":41},"isBase":true}}}, +{"id":45618,"name":"Sunglimmer Cloak","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,107,64,55,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,520,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"2":107,"3":64,"4":55,"7":39,"22":520},"isBase":true}}}, +{"id":45619,"name":"Starwatcher's Binding","icon":"inv_belt_46","type":8,"armorType":1,"stats":[0,0,139,79,64,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,585,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":139,"3":79,"4":64,"6":47,"22":585},"isBase":true}}}, +{"id":45620,"name":"Starshard Edge","icon":"inv_weapon_shortblade_92","type":13,"weaponType":2,"handType":2,"stats":[0,0,92,0,0,39,43,0,0,0,0,0,0,0,738,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":241,"weaponDamageMax":448,"weaponSpeed":1.8,"ilvl":252,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}},{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":241,"weaponDamageMax":448,"stats":{"2":92,"5":39,"6":43,"14":738},"isBase":true}}}, +{"id":45663,"name":"Armbands of Bedlam","icon":"inv_bracer_23a","type":6,"armorType":4,"stats":[65,0,107,0,0,0,54,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1115,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":153,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"252":{"randPropPoints":153,"stats":{"0":65,"2":107,"6":54,"7":45,"22":1115},"isBase":true}}}, +{"id":45665,"name":"Pharos Gloves","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,135,79,0,0,64,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"252":{"randPropPoints":205,"stats":{"2":135,"3":79,"6":64,"7":74,"22":651},"isBase":true}}}, +{"id":45675,"name":"Power Enhancing Loop","icon":"inv_jewelry_ring_78","type":11,"stats":[60,0,88,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":60,"2":88,"5":37,"6":45},"isBase":true}}}, +{"id":45676,"name":"Chestplate of Vicious Potency","icon":"inv_chest_plate13","type":5,"armorType":4,"stats":[99,0,158,0,0,0,48,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":99,"2":158,"6":48,"7":86,"22":2375},"isBase":true}}}, +{"id":45677,"name":"Treacherous Shoulderpads","icon":"inv_shoulder_73","type":3,"armorType":2,"stats":[0,63,113,0,0,57,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":63,"2":113,"5":57,"6":46,"22":885},"isBase":true}}}, +{"id":45679,"name":"Gloves of Taut Grip","icon":"inv_gauntlets_54","type":7,"armorType":3,"stats":[0,59,114,0,0,0,70,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1062,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":59,"2":114,"6":70,"7":42,"22":1062},"isBase":true}}}, +{"id":45680,"name":"Armbands of the Construct","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,89,59,32,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":89,"3":59,"4":32,"6":44,"22":1039},"isBase":true}}}, +{"id":45682,"name":"Pulsing Spellshield","icon":"inv_shield_64","type":13,"weaponType":7,"handType":3,"stats":[0,0,84,59,0,0,42,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7035,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":84,"3":59,"6":42,"7":34,"22":7035},"isBase":true}}}, +{"id":45685,"name":"Plasma Foil","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,0,76,0,46,0,35,0,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.8,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26532,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"stats":{"2":76,"4":46,"6":35,"14":611},"isBase":true}}}, +{"id":45686,"name":"Vest of the Glowing Crescent","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,0,151,106,57,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":32273,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":151,"3":106,"4":57,"6":66,"22":1180},"isBase":true}}}, +{"id":45687,"name":"Helm of Veiled Energies","icon":"inv_helmet_97","type":1,"armorType":3,"stats":[0,0,141,90,0,0,65,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1381,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26631,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":141,"3":90,"6":65,"7":59,"22":1381},"isBase":true}}}, +{"id":45688,"name":"Inscribed Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,37,106,0,0,0,38,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":37,"2":106,"6":38,"7":37},"isBase":true}}}, +{"id":45689,"name":"Inscribed Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,84,56,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":84,"3":56,"4":57},"isBase":true}}}, +{"id":45690,"name":"Inscribed Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[63,0,94,0,0,0,43,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":63,"2":94,"6":43,"8":41},"isBase":true}}}, +{"id":45691,"name":"Inscribed Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,84,56,0,0,37,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":84,"3":56,"6":37,"7":38},"isBase":true}}}, +{"id":45694,"name":"Conductive Cord","icon":"inv_belt_44","type":8,"armorType":1,"stats":[0,0,117,79,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":117,"3":79,"4":60,"6":41,"22":504},"isBase":true}}}, +{"id":45695,"name":"Spire of Withering Dreams","icon":"inv_staff_93","type":13,"weaponType":8,"handType":4,"stats":[0,73,189,0,0,0,67,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":856,"weaponDamageMax":1285,"weaponSpeed":2.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26530,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":856,"weaponDamageMax":1285,"stats":{"1":73,"2":189,"6":67,"7":76},"isBase":true}}}, +{"id":45696,"name":"Mark of the Unyielding","icon":"inv_jewelry_necklace_18","type":2,"stats":[63,0,93,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":63,"2":93,"9":59,"23":96},"isBase":true}}}, +{"id":45697,"name":"Shoulderguards of the Solemn Watch","icon":"inv_shoulder_104","type":3,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,36,65,0,0,0,0,0,0,0,0,0,0,0,1781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":84,"2":126,"9":36,"10":65,"22":1781},"isBase":true}}}, +{"id":45698,"name":"Sabatons of the Iron Watcher","icon":"inv_boots_plate_05","type":10,"armorType":4,"stats":[0,0,117,78,60,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26630,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":117,"3":78,"4":60,"6":41,"22":1633},"isBase":true}}}, +{"id":45699,"name":"Pendant of the Piercing Glare","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,86,59,0,46,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":86,"3":59,"5":46,"7":29},"isBase":true}}}, +{"id":45700,"name":"Stoneguard","icon":"inv_sword_135","type":13,"weaponType":9,"handType":2,"stats":[37,0,73,0,0,25,0,0,0,33,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":329,"weaponDamageMax":612,"weaponSpeed":1.6,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":329,"weaponDamageMax":612,"stats":{"0":37,"2":73,"5":25,"9":33,"10":32},"isBase":true}}}, +{"id":45701,"name":"Greaves of the Earthbinder","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,108,75,42,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":108,"3":75,"4":42,"6":47,"22":1168},"isBase":true}}}, +{"id":45702,"name":"Emerald Signet Ring","icon":"inv_jewelry_ring_74","type":11,"stats":[0,0,83,60,0,34,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29310,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":83,"3":60,"5":34,"6":43},"isBase":true}}}, +{"id":45704,"name":"Shawl of the Shattered Giant","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,63,87,0,0,34,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29311,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":63,"2":87,"5":34,"6":47,"22":448},"isBase":true}}}, +{"id":45707,"name":"Shieldwall of the Breaker","icon":"inv_shield_67","type":13,"weaponType":7,"handType":3,"stats":[42,0,70,0,0,0,0,0,34,0,57,0,0,0,0,0,0,0,0,0,0,0,7035,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":42,"2":70,"8":34,"10":57,"22":7035},"isBase":true}}}, +{"id":45708,"name":"Archaedas' Lost Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[83,0,169,0,0,0,0,0,61,69,55,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26687,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":83,"2":169,"8":61,"9":69,"10":55,"22":2078},"isBase":true}}}, +{"id":45709,"name":"Nimble Climber's Belt","icon":"inv_belt_40a","type":8,"armorType":2,"stats":[0,84,115,0,0,59,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,664,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":84,"2":115,"5":59,"7":45,"22":664},"isBase":true}}}, +{"id":45711,"name":"Ironaya's Discarded Mantle","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,79,95,0,0,0,71,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":79,"2":95,"6":71,"7":45,"22":1275},"isBase":true}}}, +{"id":45712,"name":"Chestplate of Titanic Fury","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[99,0,158,0,0,66,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2375,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":99,"2":158,"5":66,"6":75,"22":2375},"isBase":true}}}, +{"id":45713,"name":"Nurturing Touch","icon":"inv_wand_28","type":14,"rangedWeaponType":6,"stats":[0,0,69,45,33,0,27,0,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"stats":{"2":69,"3":45,"4":33,"6":27,"14":611},"isBase":true}}}, +{"id":45808,"name":"Runed Mana Band","icon":"inv_jewelry_ring_34","type":11,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64727}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"6":28,"16":29},"isBase":true}}}, +{"id":45809,"name":"Scarlet Signet","icon":"inv_jewelry_ring_72","type":11,"stats":[0,0,65,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64728}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":65,"6":28,"12":86,"13":86,"16":29},"isBase":true}}}, +{"id":45810,"name":"Cloak of Crimson Snow","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":64730}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"6":28,"16":29,"22":391},"isBase":true}}}, +{"id":45811,"name":"Frostguard Drape","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":64729}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"6":28,"12":86,"13":86,"16":29,"22":391},"isBase":true}}}, +{"id":45812,"name":"Emerald Choker","icon":"inv_jewelry_necklace_24","type":2,"stats":[0,0,64,0,0,0,28,0,0,0,0,0,86,86,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64725}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"6":28,"12":86,"13":86,"16":29},"isBase":true}}}, +{"id":45813,"name":"Sky Sapphire Amulet","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,0,64,43,0,0,28,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":7,"spellId":64726}}],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":64,"3":43,"6":28,"16":29},"isBase":true}}}, +{"id":45819,"name":"Spiked Battleguard Choker","icon":"inv_jewelry_necklace_42","type":2,"stats":[69,0,98,0,0,48,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":69,"2":98,"5":48,"6":38},"isBase":true}}}, +{"id":45820,"name":"Broach of the Wailing Night","icon":"inv_jewelry_necklace_40","type":2,"stats":[0,63,99,0,0,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":63,"2":99,"6":36,"7":46},"isBase":true}}}, +{"id":45821,"name":"Shard of the Crystal Forest","icon":"inv_jewelry_necklace_47","type":2,"stats":[44,0,99,0,0,42,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":44,"2":99,"5":42,"9":63},"isBase":true}}}, +{"id":45822,"name":"Evoker's Charm","icon":"inv_jewelry_necklace_41","type":2,"stats":[0,0,96,63,41,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":63,"4":41,"7":42},"isBase":true}}}, +{"id":45823,"name":"Frozen Tear of Elune","icon":"inv_jewelry_amulet_04","type":2,"stats":[0,0,96,63,42,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":63,"4":42,"6":41},"isBase":true}}}, +{"id":45824,"name":"Belt of the Singing Blade","icon":"inv_belt_34","type":8,"armorType":4,"stats":[92,0,131,0,0,52,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":92,"2":131,"5":52,"6":63,"22":1346},"isBase":true}}}, +{"id":45825,"name":"Shieldwarder Girdle","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[60,0,134,0,0,56,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":60,"2":134,"5":56,"9":82,"22":1346},"isBase":true}}}, +{"id":45826,"name":"Girdle of Unyielding Trust","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[0,0,127,85,60,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":85,"4":60,"6":49,"22":1346},"isBase":true}}}, +{"id":45827,"name":"Belt of the Ardent Marksman","icon":"inv_belt_18","type":8,"armorType":3,"stats":[0,85,127,0,0,53,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":127,"5":53,"7":59,"22":968},"isBase":true}}}, +{"id":45828,"name":"Windchill Binding","icon":"inv_belt_28","type":8,"armorType":3,"stats":[0,0,126,85,50,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"4":50,"7":60,"22":968},"isBase":true}}}, +{"id":45829,"name":"Belt of the Twilight Assassin","icon":"inv_belt_15","type":8,"armorType":2,"stats":[0,84,133,0,0,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":84,"2":133,"5":49,"8":57,"22":678},"isBase":true}}}, +{"id":45830,"name":"Belt of the Living Thicket","icon":"inv_belt_25","type":8,"armorType":2,"stats":[0,0,122,85,56,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"4":56,"7":59,"22":678},"isBase":true}}}, +{"id":45831,"name":"Sash of Potent Incantations","icon":"inv_belt_10","type":8,"armorType":1,"stats":[0,0,122,85,63,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"4":63,"6":40,"22":519},"isBase":true}}}, +{"id":45832,"name":"Mantle of the Preserver","icon":"inv_shoulder_94","type":3,"armorType":1,"stats":[0,0,117,78,46,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26798,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":117,"3":78,"4":46,"6":57,"22":672},"isBase":true}}}, +{"id":45833,"name":"Bladebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[92,0,131,0,0,0,63,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":92,"2":131,"6":63,"7":52,"22":1496},"isBase":true}}}, +{"id":45834,"name":"Gauntlets of the Royal Watch","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[63,0,134,0,0,49,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":63,"2":134,"5":49,"9":83,"22":1496},"isBase":true}}}, +{"id":45835,"name":"Gauntlets of Serene Blessing","icon":"inv_gauntlets_10","type":7,"armorType":4,"stats":[0,0,122,85,59,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"4":59,"7":56,"22":1496},"isBase":true}}}, +{"id":45836,"name":"Gloves of Unerring Aim","icon":"inv_gauntlets_05","type":7,"armorType":3,"stats":[0,85,99,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":99,"6":76,"7":56,"22":1076},"isBase":true}}}, +{"id":45837,"name":"Gloves of Augury","icon":"inv_gauntlets_30","type":7,"armorType":3,"stats":[0,0,126,85,50,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"4":50,"6":60,"22":1076},"isBase":true}}}, +{"id":45838,"name":"Gloves of the Blind Stalker","icon":"inv_gauntlets_22","type":7,"armorType":2,"stats":[0,85,131,0,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":131,"6":49,"7":57,"22":753},"isBase":true}}}, +{"id":45839,"name":"Grips of the Secret Grove","icon":"inv_gauntlets_13","type":7,"armorType":2,"stats":[0,0,122,85,63,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"4":63,"6":49,"22":753},"isBase":true}}}, +{"id":45840,"name":"Touch of the Occult","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,122,85,63,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":85,"4":63,"7":49,"22":577},"isBase":true}}}, +{"id":45841,"name":"Legplates of the Violet Champion","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[99,0,171,0,0,0,72,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":171,"6":72,"7":71,"22":2094},"isBase":true}}}, +{"id":45842,"name":"Wyrmguard Legplates","icon":"inv_pants_plate_07","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":89,"22":2094},"isBase":true}}}, +{"id":45843,"name":"Legguards of the Peaceful Covenant","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,169,98,72,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":169,"3":98,"4":72,"7":58,"22":2094},"isBase":true}}}, +{"id":45844,"name":"Leggings of the Tireless Sentry","icon":"inv_pants_mail_06","type":9,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":170,"5":60,"6":76,"22":1507},"isBase":true}}}, +{"id":45845,"name":"Leggings of the Weary Mystic","icon":"inv_pants_mail_10","type":9,"armorType":3,"stats":[0,0,170,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":170,"3":98,"4":76,"7":60,"22":1507},"isBase":true}}}, +{"id":45846,"name":"Leggings of Wavering Shadow","icon":"inv_pants_mail_25","type":9,"armorType":2,"stats":[0,98,160,0,0,68,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":160,"5":68,"7":75,"22":1055},"isBase":true}}}, +{"id":45847,"name":"Wildstrider Legguards","icon":"inv_pants_leather_11","type":9,"armorType":2,"stats":[0,0,161,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":68,"6":67,"22":1055},"isBase":true}}}, +{"id":45848,"name":"Legwraps of the Master Conjurer","icon":"inv_pants_cloth_24","type":9,"armorType":1,"stats":[0,0,165,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":165,"3":98,"4":68,"6":67,"22":807},"isBase":true}}}, +{"id":45849,"name":"Twilight Tome","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,25,35,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":64053}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":25,"3":35,"7":25},"isBase":true}}}, +{"id":45850,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":37,"5":25,"6":36},"isBase":true}}}, +{"id":45851,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":37,"5":25,"6":36},"isBase":true}}}, +{"id":45852,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":37,"5":25,"6":36},"isBase":true}}}, +{"id":45853,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":37,"5":25,"6":36},"isBase":true}}}, +{"id":45854,"name":"Rituals of the New Moon","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,37,0,0,25,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"ilvl":159,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":6,"spellId":64051}}],"scalingOptions":{"159":{"randPropPoints":56,"stats":{"2":37,"5":25,"6":36},"isBase":true}}}, +{"id":45859,"name":"The 5 Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,55,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":100,"ilvl":206,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"206":{"randPropPoints":100,"stats":{"2":55,"5":55,"6":55},"isBase":true}}}, +{"id":45864,"name":"Cover of the Keepers","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,141,90,45,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26693,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":141,"3":90,"4":45,"7":73,"22":959},"isBase":true}}}, +{"id":45865,"name":"Raiments of the Corrupted","icon":"inv_chest_cloth_66","type":5,"armorType":1,"stats":[0,0,149,100,0,76,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26731,"zoneId":4265}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":149,"3":100,"5":76,"6":61,"22":896},"isBase":true}}}, +{"id":45866,"name":"Elemental Focus Stone","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26861,"zoneId":1196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"5":114},"isBase":true}}}, +{"id":45867,"name":"Breastplate of the Stoneshaper","icon":"inv_chest_mail_04","type":5,"armorType":3,"stats":[0,0,165,97,0,0,70,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1759,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"2":165,"3":97,"6":70,"7":57,"22":1759},"isBase":true}}}, +{"id":45868,"name":"Aesir's Edge","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[97,0,161,0,0,0,92,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":97,"2":161,"6":92,"7":73},"isBase":true}}}, +{"id":45869,"name":"Fluxing Energy Coils","icon":"inv_bracer_15","type":6,"armorType":2,"stats":[0,71,81,0,0,46,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,543,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":71,"2":81,"5":46,"6":30,"22":543},"isBase":true}}}, +{"id":45870,"name":"Magnetized Projectile Emitter","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,105,175,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":976,"weaponDamageMax":1813,"weaponSpeed":3,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":976,"weaponDamageMax":1813,"stats":{"1":105,"2":175,"5":86},"isBase":true}}}, +{"id":45871,"name":"Seal of Ulduar","icon":"achievement_dungeon_ulduarraid_misc_02","type":11,"stats":[45,0,82,0,0,0,0,0,25,0,40,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33293,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"0":45,"2":82,"8":25,"10":40,"23":128},"isBase":true}}}, +{"id":45872,"name":"Avalanche","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,104,186,0,0,51,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.9,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"1":104,"2":186,"5":51,"6":54},"isBase":true}}}, +{"id":45873,"name":"Winter's Frigid Embrace","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,63,90,0,0,0,43,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":63,"2":90,"6":43,"7":31,"22":448},"isBase":true}}}, +{"id":45874,"name":"Signet of Winter","icon":"inv_jewelry_ring_35","type":11,"stats":[63,0,94,0,0,0,0,0,0,45,36,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28684,"zoneId":4277}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":63,"2":94,"9":45,"10":36,"23":128},"isBase":true}}}, +{"id":45876,"name":"Shiver","icon":"inv_mace_90","type":13,"weaponType":4,"handType":2,"stats":[41,0,88,0,0,26,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"weaponSpeed":1.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"stats":{"0":41,"2":88,"5":26,"10":45},"isBase":true}}}, +{"id":45877,"name":"The Boreal Guard","icon":"inv_shield_66","type":13,"weaponType":7,"handType":3,"stats":[44,0,105,0,0,0,0,0,0,33,54,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":44,"2":105,"9":33,"10":54,"22":7276},"isBase":true}}}, +{"id":45886,"name":"Icecore Staff","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,209,0,84,0,0,93,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"weaponSpeed":2.1,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"stats":{"2":209,"4":84,"7":93,"14":689},"isBase":true}}}, +{"id":45887,"name":"Ice Layered Barrier","icon":"inv_shield_65","type":13,"weaponType":7,"handType":3,"stats":[0,0,96,67,40,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":96,"3":67,"4":40,"7":48,"22":7276},"isBase":true}}}, +{"id":45888,"name":"Bitter Cold Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[56,0,95,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32845,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"0":56,"2":95,"6":48,"7":39,"22":1064},"isBase":true}}}, +{"id":45892,"name":"Legacy of Thunder","icon":"inv_mace_89","type":13,"weaponType":4,"handType":2,"stats":[37,0,73,0,0,0,0,0,24,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":350,"weaponDamageMax":650,"weaponSpeed":1.7,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":350,"weaponDamageMax":650,"stats":{"0":37,"2":73,"8":24,"9":45},"isBase":true}}}, +{"id":45893,"name":"Guise of the Midgard Serpent","icon":"inv_helmet_100.tga","type":1,"armorType":2,"stats":[0,107,140,0,0,0,64,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29306,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":107,"2":140,"6":64,"8":56,"22":959},"isBase":true}}}, +{"id":45894,"name":"Leggings of Unstable Discharge","icon":"inv_pants_cloth_30","type":9,"armorType":1,"stats":[0,0,171,106,53,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":171,"3":106,"4":53,"6":70,"22":784},"isBase":true}}}, +{"id":45895,"name":"Belt of the Blood Pit","icon":"inv_belt_14","type":8,"armorType":3,"stats":[0,79,101,0,0,0,67,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27975,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":79,"2":101,"6":67,"7":41,"22":956},"isBase":true}}}, +{"id":45927,"name":"Handwraps of Resonance","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,112,85,53,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27977,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":112,"3":85,"4":53,"6":52,"22":560},"isBase":true}}}, +{"id":45928,"name":"Gauntlets of the Thunder God","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,101,85,0,0,41,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1520,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":101,"3":85,"6":41,"7":54,"22":1520},"isBase":true}}}, +{"id":45929,"name":"Sif's Remembrance","icon":"spell_ice_rune","type":12,"stats":[0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"3":94},"isBase":true}}}, +{"id":45930,"name":"Combatant's Bootblade","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,50,72,0,0,0,32,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":50,"2":72,"6":32,"7":39},"isBase":true}}}, +{"id":45931,"name":"Mjolnir Runestone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"6":115},"isBase":true}}}, +{"id":45933,"name":"Pendant of the Shallow Grave","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,82,63,0,0,41,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32865,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":82,"3":63,"6":41,"7":31},"isBase":true}}}, +{"id":45934,"name":"Unraveling Reach","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,155,0,0,114,93,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":321,"weaponDamageMax":482,"weaponSpeed":2.1,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":321,"weaponDamageMax":482,"stats":{"2":155,"5":114,"6":93,"14":610},"isBase":true}}}, +{"id":45935,"name":"Ironbark Faceguard","icon":"inv_helmet_95","type":1,"armorType":4,"stats":[70,0,143,0,0,0,0,0,62,87,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"0":70,"2":143,"8":62,"9":87,"22":1930},"isBase":true}}}, +{"id":45936,"name":"Legplates of Flourishing Resolve","icon":"inv_pants_plate_11","type":9,"armorType":4,"stats":[0,0,171,106,66,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2078,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":171,"3":106,"4":66,"6":43,"22":2078},"isBase":true}}}, +{"id":45937,"name":"Furious Gladiator's Shotgun","icon":"inv_weapon_rifle_31","type":14,"rangedWeaponType":3,"stats":[0,130,190,0,0,0,86,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"weaponSpeed":3,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"stats":{"1":130,"2":190,"6":86,"16":82},"isBase":true}}}, +{"id":45938,"name":"Furious Gladiator's Recurve","icon":"inv_weapon_bow_31","type":14,"rangedWeaponType":1,"stats":[0,130,190,0,0,0,86,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"weaponSpeed":3,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"stats":{"1":130,"2":190,"6":86,"16":82},"isBase":true}}}, +{"id":45939,"name":"Furious Gladiator's Repeater","icon":"inv_weapon_crossbow_32","type":14,"rangedWeaponType":2,"stats":[0,0,190,0,0,0,86,0,0,0,0,0,260,260,0,0,82,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"weaponSpeed":3,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1195,"weaponDamageMax":1794,"stats":{"2":190,"6":86,"12":260,"13":260,"16":82},"isBase":true}}}, +{"id":45940,"name":"Tunic of the Limber Stalker","icon":"inv_chest_leather_15","type":5,"armorType":2,"stats":[0,112,153,0,0,65,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1180,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29315,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29314,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29266,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29313,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29316,"zoneId":4415}},{"drop":{"difficulty":8,"npcId":29312,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":112,"2":153,"5":65,"6":67,"22":1180},"isBase":true}}}, +{"id":45941,"name":"Chestguard of the Lasher","icon":"inv_chest_leather_15","type":5,"armorType":3,"stats":[0,106,159,0,0,62,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":106,"2":159,"5":62,"7":76,"22":1700},"isBase":true}}}, +{"id":45943,"name":"Gloves of Whispering Winds","icon":"inv_gauntlets_61","type":7,"armorType":3,"stats":[0,0,125,85,0,0,50,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1099,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":125,"3":85,"6":50,"7":43,"22":1099},"isBase":true}}}, +{"id":45945,"name":"Seed of Budding Carnage","icon":"spell_nature_wispsplodegreen","type":2,"stats":[0,65,104,0,0,32,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":65,"2":104,"5":32,"6":38},"isBase":true}}}, +{"id":45946,"name":"Fire Orchid Signet","icon":"inv_jewelry_ring_65","type":11,"stats":[0,0,90,63,38,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":90,"3":63,"4":38,"7":30},"isBase":true}}}, +{"id":45947,"name":"Serilas, Blood Blade of Invar One-Arm","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,59,66,0,0,32,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32906,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":59,"2":66,"5":32,"8":29},"isBase":true}}}, +{"id":45948,"name":"Furious Gladiator's Sunderer","icon":"inv_axe_98","type":13,"weaponType":1,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"weaponSpeed":3.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"stats":{"2":219,"6":80,"12":255,"13":255,"16":97},"isBase":true}}}, +{"id":45949,"name":"Furious Gladiator's Crusher","icon":"inv_mace_74","type":13,"weaponType":4,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"weaponSpeed":3.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"stats":{"2":219,"6":80,"12":255,"13":255,"16":97},"isBase":true}}}, +{"id":45950,"name":"Furious Gladiator's Claymore","icon":"inv_sword_131","type":13,"weaponType":9,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"weaponSpeed":3.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"stats":{"2":219,"6":80,"12":255,"13":255,"16":97},"isBase":true}}}, +{"id":45951,"name":"Furious Gladiator's Halberd","icon":"inv_weapon_halberd_20","type":13,"weaponType":6,"handType":4,"stats":[0,0,219,0,0,0,80,0,0,0,0,0,255,255,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"weaponSpeed":3.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":1434,"weaponDamageMax":2152,"stats":{"2":219,"6":80,"12":255,"13":255,"16":97},"isBase":true}}}, +{"id":45952,"name":"Furious Gladiator's Greatstaff","icon":"inv_staff_88","type":13,"weaponType":8,"handType":4,"stats":[0,128,219,0,0,0,80,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":797,"weaponDamageMax":1196,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":797,"weaponDamageMax":1196,"stats":{"1":128,"2":219,"6":80,"16":97},"isBase":true}}}, +{"id":45953,"name":"Furious Gladiator's Combat Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,0,0,92,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"stats":{"2":232,"7":92,"14":735,"16":105},"isBase":true}}}, +{"id":45954,"name":"Furious Gladiator's Acute Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,92,0,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"stats":{"2":232,"5":92,"14":735,"16":105},"isBase":true}}}, +{"id":45955,"name":"Furious Gladiator's Skirmish Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,0,0,92,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"stats":{"2":232,"6":92,"14":735,"16":105},"isBase":true}}}, +{"id":45956,"name":"Furious Gladiator's Light Staff","icon":"inv_staff_87","type":13,"weaponType":8,"handType":4,"stats":[0,0,232,0,92,0,0,0,0,0,0,0,0,0,735,0,105,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"weaponSpeed":2,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":275,"weaponDamageMin":398,"weaponDamageMax":598,"stats":{"2":232,"4":92,"14":735,"16":105},"isBase":true}}}, +{"id":45957,"name":"Furious Gladiator's Handaxe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45958,"name":"Furious Gladiator's Spike","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":551,"weaponDamageMax":828,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":551,"weaponDamageMax":828,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45959,"name":"Furious Gladiator's Truncheon","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45960,"name":"Furious Gladiator's Longblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":797,"weaponDamageMax":1196,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":797,"weaponDamageMax":1196,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45961,"name":"Furious Gladiator's Dicer","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45962,"name":"Furious Gladiator's Dirk","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45963,"name":"Furious Gladiator's Fleshslicer","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45964,"name":"Furious Gladiator's Punisher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45965,"name":"Furious Gladiator's Swiftblade","icon":"inv_sword_58","type":13,"weaponType":9,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45966,"name":"Furious Gladiator's Splitter","icon":"inv_axe_97","type":13,"weaponType":1,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45967,"name":"Furious Gladiator's Eviscerator","icon":"inv_weapon_shortblade_90","type":13,"weaponType":2,"handType":3,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"weaponSpeed":1.8,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":482,"weaponDamageMax":897,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45968,"name":"Furious Gladiator's Claw","icon":"inv_weapon_hand_15","type":13,"weaponType":3,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45969,"name":"Furious Gladiator's Grasp","icon":"inv_weapon_hand_19","type":13,"weaponType":3,"handType":2,"stats":[0,0,93,0,0,0,33,0,0,0,0,0,107,107,0,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"weaponSpeed":2.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":697,"weaponDamageMax":1295,"stats":{"2":93,"6":33,"12":107,"13":107,"16":41},"isBase":true}}}, +{"id":45970,"name":"Furious Gladiator's Mageblade","icon":"inv_weapon_shortblade_91","type":13,"weaponType":2,"handType":2,"stats":[0,0,104,0,0,0,39,0,0,0,0,0,0,0,738,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":1.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"2":104,"6":39,"14":738,"16":38},"isBase":true}}}, +{"id":45971,"name":"Furious Gladiator's Salvation","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[0,0,104,0,40,0,0,0,0,0,0,0,0,0,738,0,38,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":118,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":1.6,"ilvl":252,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"252":{"randPropPoints":118,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"2":104,"4":40,"14":738,"16":38},"isBase":true}}}, +{"id":45972,"name":"Pulse Baton","icon":"inv_mace_90","type":13,"weaponType":4,"handType":2,"stats":[0,0,74,0,38,0,46,0,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":185,"weaponDamageMax":344,"stats":{"2":74,"4":38,"6":46,"14":611},"isBase":true}}}, +{"id":45973,"name":"Stylish Power Cape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[60,0,88,0,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":60,"2":88,"6":37,"7":45,"22":448},"isBase":true}}}, +{"id":45974,"name":"Shoulderguards of Assimilation","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,0,118,78,46,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26632,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":118,"3":78,"4":46,"7":57,"22":885},"isBase":true}}}, +{"id":45975,"name":"Cable of the Metrognome","icon":"inv_belt_49","type":8,"armorType":4,"stats":[0,0,116,79,56,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27483,"zoneId":4196}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":116,"3":79,"4":56,"7":49,"22":1336},"isBase":true}}}, +{"id":45976,"name":"Static Charge Handwraps","icon":"inv_gauntlets_52","type":7,"armorType":1,"stats":[0,0,114,79,0,60,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29304,"zoneId":4416}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":114,"3":79,"5":60,"6":39,"22":560},"isBase":true}}}, +{"id":45982,"name":"Fused Alloy Legplates","icon":"inv_pants_plate_21","type":9,"armorType":4,"stats":[99,0,170,0,0,87,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2128,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"0":99,"2":170,"5":87,"6":68,"22":2128},"isBase":true}}}, +{"id":45988,"name":"Greaves of the Iron Army","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[63,0,116,0,0,0,0,0,43,0,80,0,0,0,0,0,0,0,0,0,0,0,1672,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"0":63,"2":116,"8":43,"10":80,"22":1672},"isBase":true}}}, +{"id":45989,"name":"Tempered Mercury Greaves","icon":"inv_boots_chain_03","type":10,"armorType":3,"stats":[0,69,127,0,0,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1209,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"1":69,"2":127,"5":53,"6":42,"22":1209},"isBase":true}}}, +{"id":45990,"name":"Fusion Blade","icon":"inv_sword_132","type":13,"weaponType":9,"handType":2,"stats":[0,0,79,0,0,52,37,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":79,"5":52,"6":37,"14":689},"isBase":true}}}, +{"id":45993,"name":"Mimiron's Flight Goggles","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,110,160,0,0,0,68,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33350,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"1":110,"2":160,"6":68,"7":75,"22":1008},"isBase":true}}}, +{"id":45994,"name":"Lost Ring","icon":"inv_jewelry_ring_38","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"isBase":true}}}, +{"id":45995,"name":"Forgotten Necklace","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"isBase":true}}}, +{"id":45996,"name":"Hoperender","icon":"inv_weapon_halberd_30","type":13,"weaponType":6,"handType":4,"stats":[0,112,142,0,0,66,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"weaponSpeed":3.5,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":1070,"weaponDamageMax":1606,"stats":{"1":112,"2":142,"5":66,"6":83},"isBase":true}}}, +{"id":45997,"name":"Gauntlets of the Wretched","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[80,0,118,0,0,41,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27654,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":80,"2":118,"5":41,"6":63,"22":1484},"isBase":true}}}, +{"id":46008,"name":"Choker of the Abyss","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,63,69,0,0,0,46,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"1":63,"2":69,"6":46,"7":43},"isBase":true}}}, +{"id":46009,"name":"Bindings of the Depths","icon":"inv_bracer_32","type":6,"armorType":2,"stats":[0,0,81,60,34,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,516,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":81,"3":60,"4":34,"6":46,"22":516},"isBase":true}}}, +{"id":46010,"name":"Darkstone Ring","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[60,0,88,0,0,42,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":31134,"zoneId":4415}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":60,"2":88,"5":42,"6":42},"isBase":true}}}, +{"id":46011,"name":"Shadowbite","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,48,59,0,0,37,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"1":48,"2":59,"5":37,"8":31},"isBase":true}}}, +{"id":46012,"name":"Vestments of the Piercing Light","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,151,106,76,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27656,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":151,"3":106,"4":76,"6":62,"22":896},"isBase":true}}}, +{"id":46013,"name":"Underworld Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,111,79,46,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27655,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":111,"3":79,"4":46,"7":40,"22":672},"isBase":true}}}, +{"id":46014,"name":"Saronite Animus Cloak","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[45,0,93,0,0,35,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":45,"2":93,"5":35,"10":56,"22":448},"isBase":true}}}, +{"id":46015,"name":"Pendant of Endless Despair","icon":"inv_jewelry_necklace_17","type":2,"stats":[0,0,89,60,46,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27447,"zoneId":4228}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":89,"3":60,"4":46,"6":29},"isBase":true}}}, +{"id":46016,"name":"Abaddon","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[112,0,168,0,0,66,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":1040,"weaponDamageMax":1560,"weaponSpeed":3.4,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":1040,"weaponDamageMax":1560,"stats":{"0":112,"2":168,"5":66,"6":80},"isBase":true}}}, +{"id":46017,"name":"Val'anyr, Hammer of Ancient Kings","icon":"inv_mace_99","type":13,"weaponType":4,"handType":2,"stats":[0,0,105,0,0,0,50,49,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":5,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":105,"6":50,"7":49,"14":780},"isBase":true}}}, +{"id":46018,"name":"Deliverance","icon":"inv_weapon_crossbow_33","type":14,"rangedWeaponType":2,"stats":[0,76,189,0,0,51,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":887,"weaponDamageMax":1331,"weaponSpeed":2.9,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":887,"weaponDamageMax":1331,"stats":{"1":76,"2":189,"5":51,"6":82},"isBase":true}}}, +{"id":46019,"name":"Leggings of the Insatiable","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,106,159,0,0,67,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":29308,"zoneId":4494}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"1":106,"2":159,"5":67,"7":73,"22":1487},"isBase":true}}}, +{"id":46021,"name":"Royal Seal of King Llane","icon":"inv_crown_13","type":12,"stats":[0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":164},"isBase":true}}}, +{"id":46022,"name":"Pendant of a Thousand Maws","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[71,0,72,0,0,37,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":71,"2":72,"5":37,"6":45},"isBase":true}}}, +{"id":46024,"name":"Kingsbane","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,49,65,0,0,38,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"1":49,"2":65,"5":38,"8":23},"isBase":true}}}, +{"id":46025,"name":"Devotion","icon":"inv_staff_92","type":13,"weaponType":8,"handType":4,"stats":[0,0,188,0,106,0,0,87,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":321,"weaponDamageMax":482,"weaponSpeed":2.1,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26533,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":321,"weaponDamageMax":482,"stats":{"2":188,"4":106,"7":87,"14":610},"isBase":true}}}, +{"id":46028,"name":"Faceguard of the Eyeless Horror","icon":"inv_helmet_129","type":1,"armorType":4,"stats":[0,0,125,90,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1930,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":125,"3":90,"4":60,"6":76,"22":1930},"isBase":true}}}, +{"id":46030,"name":"Treads of the Dragon Council","icon":"inv_boots_cloth_14","type":10,"armorType":1,"stats":[0,0,116,79,42,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":116,"3":79,"4":42,"6":59,"22":616},"isBase":true}}}, +{"id":46031,"name":"Touch of Madness","icon":"inv_axe_101","type":13,"weaponType":1,"handType":2,"stats":[0,25,91,0,0,34,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":535,"weaponDamageMax":994,"weaponSpeed":2.6,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":535,"weaponDamageMax":994,"stats":{"1":25,"2":91,"5":34,"6":26},"isBase":true}}}, +{"id":46032,"name":"Drape of the Faceless General","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,60,93,0,0,0,40,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":60,"2":93,"6":40,"7":34,"22":479},"isBase":true}}}, +{"id":46033,"name":"Tortured Earth","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,88,213,0,0,56,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"weaponSpeed":2.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"stats":{"1":88,"2":213,"5":56,"6":73},"isBase":true}}}, +{"id":46034,"name":"Leggings of Profound Darkness","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,155,113,66,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"2":155,"3":113,"4":66,"6":60,"22":838},"isBase":true}}}, +{"id":46035,"name":"Aesuga, Hand of the Ardent Champion","icon":"inv_mace_92","type":13,"weaponType":4,"handType":2,"stats":[0,0,96,0,0,0,41,22,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":96,"6":41,"7":22,"14":689},"isBase":true}}}, +{"id":46036,"name":"Void Sabre","icon":"inv_sword_133","type":13,"weaponType":9,"handType":2,"stats":[0,59,79,0,0,41,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33271,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"1":59,"2":79,"5":41,"6":23},"isBase":true}}}, +{"id":46037,"name":"Shoulderplates of the Celestial Watch","icon":"inv_shoulder_49","type":3,"armorType":4,"stats":[72,0,126,0,0,0,64,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1824,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"0":72,"2":126,"6":64,"7":39,"22":1824},"isBase":true}}}, +{"id":46038,"name":"Dark Matter","icon":"spell_shadow_seedofdestruction","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,251,251,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"12":251,"13":251},"isBase":true}}}, +{"id":46039,"name":"Breastplate of the Timeless","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[92,0,167,0,0,0,0,0,66,0,98,0,0,0,0,0,0,0,0,0,0,0,2432,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"0":92,"2":167,"8":66,"10":98,"22":2432},"isBase":true}}}, +{"id":46040,"name":"Strength of the Heavens","icon":"inv_jewelry_necklace_47","type":2,"stats":[58,0,95,0,0,0,48,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"0":58,"2":95,"6":48,"7":41},"isBase":true}}}, +{"id":46041,"name":"Starfall Girdle","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[72,0,126,0,0,0,46,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1368,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"0":72,"2":126,"6":46,"8":64,"22":1368},"isBase":true}}}, +{"id":46042,"name":"Drape of the Messenger","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,74,63,0,31,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":74,"3":63,"5":31,"6":49,"22":479},"isBase":true}}}, +{"id":46043,"name":"Gloves of the Endless Dark","icon":"inv_gauntlets_54","type":7,"armorType":2,"stats":[0,96,85,0,0,74,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"1":96,"2":85,"5":74,"7":55,"22":776},"isBase":true}}}, +{"id":46044,"name":"Observer's Mantle","icon":"inv_shoulder_31","type":3,"armorType":3,"stats":[0,0,112,85,0,0,46,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":112,"3":85,"6":46,"7":50,"22":1319},"isBase":true}}}, +{"id":46045,"name":"Pulsar Gloves","icon":"inv_gauntlets_70","type":7,"armorType":1,"stats":[0,0,109,85,0,50,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,598,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":109,"3":85,"5":50,"7":46,"22":598},"isBase":true}}}, +{"id":46046,"name":"Nebula Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,77,63,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":77,"3":63,"6":46,"7":41},"isBase":true}}}, +{"id":46047,"name":"Pendant of the Somber Witness","icon":"inv_jewelry_necklace_42","type":2,"stats":[0,0,92,56,38,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":92,"3":56,"4":38,"6":36},"isBase":true}}}, +{"id":46048,"name":"Band of Lights","icon":"inv_jewelry_ring_68","type":11,"stats":[0,64,84,0,0,52,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":64,"2":84,"5":52,"6":35},"isBase":true}}}, +{"id":46049,"name":"Zodiac Leggings","icon":"inv_pants_leather_22","type":9,"armorType":2,"stats":[0,0,143,113,66,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1086,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":244,"stats":{"2":143,"3":113,"4":66,"7":71,"22":1086},"isBase":true}}}, +{"id":46050,"name":"Starlight Treads","icon":"inv_boots_cloth_21","type":10,"armorType":1,"stats":[0,0,121,80,45,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":121,"3":80,"4":45,"6":57,"22":658},"isBase":true}}}, +{"id":46051,"name":"Meteorite Crystal","icon":"achievement_dungeon_ulduarraid_misc_04","type":12,"stats":[0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":32871,"zoneId":4273}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"3":125},"isBase":true}}}, +{"id":46057,"name":"Titan-Forged Chestguard of Salvation","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[0,0,143,84,50,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"4":50,"16":66,"22":2354},"isBase":true}}}, +{"id":46058,"name":"Titan-Forged Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[85,0,150,0,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,2354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"0":85,"2":150,"5":51,"16":66,"22":2354},"isBase":true}}}, +{"id":46059,"name":"Titan-Forged Chain Armor of Triumph","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,68,151,0,0,67,0,0,0,0,0,0,0,0,0,0,67,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":68,"2":151,"5":67,"16":67,"22":1668},"isBase":true}}}, +{"id":46060,"name":"Titan-Forged Ringmail of Salvation","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"7":51,"16":66,"22":1668},"isBase":true}}}, +{"id":46061,"name":"Titan-Forged Mail Armor of Domination","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[7],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"5":51,"16":66,"22":1668},"isBase":true}}}, +{"id":46062,"name":"Titan-Forged Leather Tunic of Triumph","icon":"inv_chest_leather_13","type":5,"armorType":2,"stats":[0,84,144,0,0,0,51,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"1":84,"2":144,"6":51,"16":66,"22":1141},"isBase":true}}}, +{"id":46063,"name":"Titan-Forged Leather Chestguard of Salvation","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"7":51,"16":66,"22":1141},"isBase":true}}}, +{"id":46064,"name":"Titan-Forged Leather Chestguard of Dominance","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[1],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"5":51,"16":66,"22":1141},"isBase":true}}}, +{"id":46065,"name":"Titan-Forged Raiment of Dominance","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,51,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"5":51,"16":66,"22":852},"isBase":true}}}, +{"id":46066,"name":"Titan-Forged Raiment of Salvation","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,143,84,0,0,0,51,0,0,0,0,0,0,0,0,66,0,0,0,0,0,852,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":191,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":191,"stats":{"2":143,"3":84,"7":51,"16":66,"22":852},"isBase":true}}}, +{"id":46067,"name":"Hammer of Crushing Whispers","icon":"inv_mace_93","type":13,"weaponType":4,"handType":4,"stats":[137,0,157,0,0,75,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":137,"2":157,"5":75,"6":93},"isBase":true}}}, +{"id":46068,"name":"Amice of Inconceivable Horror","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,91,85,42,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"2":91,"3":85,"4":42,"7":62,"22":718},"isBase":true}}}, +{"id":46071,"name":"Titan-Forged Girdle of Salvation","icon":"inv_belt_12","type":8,"armorType":4,"stats":[0,0,105,67,0,0,42,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"6":42,"16":50,"22":1324},"isBase":true}}}, +{"id":46072,"name":"Titan-Forged Girdle of Triumph","icon":"inv_belt_14","type":8,"armorType":4,"stats":[67,0,111,0,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"0":67,"2":111,"5":42,"16":50,"22":1324},"isBase":true}}}, +{"id":46073,"name":"Titan-Forged Waistguard of Dominance","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"5":42,"16":50,"22":938},"isBase":true}}}, +{"id":46074,"name":"Titan-Forged Waistguard of Salvation","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,0,105,67,0,0,0,40,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"7":40,"16":50,"22":938},"isBase":true}}}, +{"id":46075,"name":"Titan-Forged Waistguard of Triumph","icon":"inv_belt_13","type":8,"armorType":3,"stats":[0,59,112,0,0,50,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":59,"2":112,"5":50,"16":50,"22":938},"isBase":true}}}, +{"id":46076,"name":"Titan-Forged Belt of Dominance","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"5":42,"16":50,"22":642},"isBase":true}}}, +{"id":46077,"name":"Titan-Forged Belt of Salvation","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,0,105,67,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"7":42,"16":50,"22":642},"isBase":true}}}, +{"id":46078,"name":"Titan-Forged Belt of Triumph","icon":"inv_belt_12","type":8,"armorType":2,"stats":[0,67,105,0,0,0,42,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,642,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"1":67,"2":105,"6":42,"16":49,"22":642},"isBase":true}}}, +{"id":46079,"name":"Titan-Forged Cord of Dominance","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,42,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"5":42,"16":50,"22":480},"isBase":true}}}, +{"id":46080,"name":"Titan-Forged Cord of Salvation","icon":"inv_belt_13","type":8,"armorType":1,"stats":[0,0,105,67,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,480,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"2":105,"3":67,"7":42,"16":50,"22":480},"isBase":true}}}, +{"id":46081,"name":"Titan-Forged Rune of Audacity","icon":"inv_misc_rune_10","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"3":95},"isBase":true}}}, +{"id":46082,"name":"Titan-Forged Rune of Determination","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"12":190,"13":190},"isBase":true}}}, +{"id":46083,"name":"Titan-Forged Rune of Accuracy","icon":"inv_misc_rune_07","type":12,"stats":[0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"5":95},"isBase":true}}}, +{"id":46084,"name":"Titan-Forged Rune of Cruelty","icon":"inv_misc_rune_06","type":12,"stats":[0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"6":95},"isBase":true}}}, +{"id":46085,"name":"Titan-Forged Rune of Alacrity","icon":"inv_misc_rune_05","type":12,"stats":[0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"7":95},"isBase":true}}}, +{"id":46086,"name":"Platinum Disks of Battle","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"16":95},"isBase":true}}}, +{"id":46087,"name":"Platinum Disks of Sorcery","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"16":95},"isBase":true}}}, +{"id":46088,"name":"Platinum Disks of Swiftness","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":142,"ilvl":213,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":142,"stats":{"16":95},"isBase":true}}}, +{"id":46095,"name":"Soul-Devouring Cinch","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,97,113,0,0,0,60,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"1":97,"2":113,"6":60,"8":64,"22":698},"isBase":true}}}, +{"id":46096,"name":"Signet of Soft Lament","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,92,63,36,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":92,"3":63,"4":36,"6":32},"isBase":true}}}, +{"id":46097,"name":"Caress of Insanity","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,45,90,0,0,0,0,25,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":675,"weaponDamageMax":1255,"weaponSpeed":2.7,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":675,"weaponDamageMax":1255,"stats":{"1":45,"2":90,"7":25,"8":34},"isBase":true}}}, +{"id":46103,"name":"Shirt of Titanic Scaling","icon":"inv_shirt_blue_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"219":{"isBase":true}}}, +{"id":46104,"name":"Shirt of the Yogg-Slayer","icon":"inv_shirt_purple_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"isBase":true}}}, +{"id":46105,"name":"Shirt of the Future Champion","icon":"inv_shirt_red_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"239":{"isBase":true}}}, +{"id":46111,"name":"Conqueror's Darkruned Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[99,0,170,0,0,0,82,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"6":82,"8":58,"22":2393},"isBase":true}}}, +{"id":46113,"name":"Conqueror's Darkruned Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"5":59,"6":45,"22":1496},"isBase":true}}}, +{"id":46115,"name":"Conqueror's Darkruned Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[89,0,137,0,0,0,75,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":89,"2":137,"6":75,"7":52,"22":1944},"isBase":true}}}, +{"id":46116,"name":"Conqueror's Darkruned Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[99,0,170,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"6":74,"7":70,"22":2094},"isBase":true}}}, +{"id":46117,"name":"Conqueror's Darkruned Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[95,0,108,0,0,43,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Battlegear","setId":834,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"5":43,"7":59,"22":1795},"isBase":true}}}, +{"id":46118,"name":"Conqueror's Darkruned Chestguard","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,93,52,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":103,"2":156,"9":93,"10":52,"22":2393},"isBase":true}}}, +{"id":46119,"name":"Conqueror's Darkruned Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[66,0,136,0,0,0,0,0,39,0,80,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":66,"2":136,"8":39,"10":80,"22":1496},"isBase":true}}}, +{"id":46120,"name":"Conqueror's Darkruned Faceguard","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[91,0,156,0,0,41,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":91,"2":156,"5":41,"9":95,"22":1944},"isBase":true}}}, +{"id":46121,"name":"Conqueror's Darkruned Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[81,0,156,0,0,0,0,0,59,0,110,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":81,"2":156,"8":59,"10":110,"22":2094},"isBase":true}}}, +{"id":46122,"name":"Conqueror's Darkruned Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[73,0,136,0,0,0,0,0,0,69,38,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Darkruned Plate","setId":835,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":73,"2":136,"9":69,"10":38,"22":1795},"isBase":true}}}, +{"id":46123,"name":"Conqueror's Terrorblade Breastplate","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,103,159,0,0,0,70,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":103,"2":159,"6":70,"8":81,"22":1205},"isBase":true}}}, +{"id":46124,"name":"Conqueror's Terrorblade Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,90,117,0,0,57,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":90,"2":117,"5":57,"6":46,"22":753},"isBase":true}}}, +{"id":46125,"name":"Conqueror's Terrorblade Helmet","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,114,129,0,0,0,82,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":114,"2":129,"6":82,"7":63,"22":979},"isBase":true}}}, +{"id":46126,"name":"Conqueror's Terrorblade Legplates","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,107,159,0,0,0,70,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":107,"2":159,"6":70,"7":77,"22":1055},"isBase":true}}}, +{"id":46127,"name":"Conqueror's Terrorblade Pauldrons","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,90,125,0,0,59,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Terrorblade Battlegear","setId":826,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":90,"2":125,"5":59,"6":42,"22":904},"isBase":true}}}, +{"id":46129,"name":"Conqueror's Kirin Tor Hood","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,144,97,0,69,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":144,"3":97,"5":69,"6":66,"22":750},"isBase":true}}}, +{"id":46130,"name":"Conqueror's Kirin Tor Tunic","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,147,113,50,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":147,"3":113,"4":50,"6":82,"22":923},"isBase":true}}}, +{"id":46131,"name":"Valorous Kirin Tor Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,102,79,0,55,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":102,"3":79,"5":55,"7":44,"22":560},"isBase":true}}}, +{"id":46132,"name":"Conqueror's Kirin Tor Gauntlets","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,112,85,0,60,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":112,"3":85,"5":60,"7":47,"22":577},"isBase":true}}}, +{"id":46133,"name":"Conqueror's Kirin Tor Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,149,105,0,66,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":149,"3":105,"5":66,"6":74,"22":807},"isBase":true}}}, +{"id":46134,"name":"Conqueror's Kirin Tor Shoulderpads","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,122,84,33,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Kirin Tor Garb","setId":836,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":84,"4":33,"7":62,"22":692},"isBase":true}}}, +{"id":46135,"name":"Conqueror's Deathbringer Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,125,85,0,65,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":125,"3":85,"5":65,"6":27,"22":577},"isBase":true}}}, +{"id":46136,"name":"Conqueror's Deathbringer Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,121,85,0,0,58,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":85,"6":58,"7":41,"22":692},"isBase":true}}}, +{"id":46137,"name":"Conqueror's Deathbringer Robe","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,148,106,0,73,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":148,"3":106,"5":73,"6":66,"22":923},"isBase":true}}}, +{"id":46139,"name":"Conqueror's Deathbringer Leggings","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,161,113,49,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":113,"4":49,"7":66,"22":807},"isBase":true}}}, +{"id":46140,"name":"Conqueror's Deathbringer Hood","icon":"inv_helmet_131","type":1,"armorType":1,"stats":[0,0,152,97,41,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Deathbringer Garb","setId":837,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":152,"3":97,"4":41,"6":86,"22":750},"isBase":true}}}, +{"id":46141,"name":"Conqueror's Scourgestalker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,98,170,0,0,66,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":170,"5":66,"6":70,"22":1722},"isBase":true}}}, +{"id":46142,"name":"Conqueror's Scourgestalker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,77,127,0,0,52,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":127,"5":52,"7":52,"22":1076},"isBase":true}}}, +{"id":46143,"name":"Conqueror's Scourgestalker Headpiece","icon":"inv_helmet_92","type":1,"armorType":3,"stats":[0,98,116,0,0,0,106,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":116,"6":106,"7":50,"22":1399},"isBase":true}}}, +{"id":46144,"name":"Conqueror's Scourgestalker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,114,126,0,0,0,98,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":114,"2":126,"6":98,"7":45,"22":1507},"isBase":true}}}, +{"id":46145,"name":"Conqueror's Scourgestalker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,77,127,0,0,48,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Scourgestalker Battlegear","setId":838,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":127,"5":48,"7":56,"22":1291},"isBase":true}}}, +{"id":46146,"name":"Conqueror's Siegebreaker Battleplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[99,0,170,0,0,0,62,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"6":62,"7":79,"22":2393},"isBase":true}}}, +{"id":46148,"name":"Conqueror's Siegebreaker Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,40,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"5":40,"8":64,"22":1496},"isBase":true}}}, +{"id":46149,"name":"Conqueror's Siegebreaker Shoulderplates","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[95,0,108,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"5":49,"6":57,"22":1795},"isBase":true}}}, +{"id":46150,"name":"Conqueror's Siegebreaker Legplates","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[99,0,170,0,0,79,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"5":79,"8":62,"22":2094},"isBase":true}}}, +{"id":46151,"name":"Conqueror's Siegebreaker Helmet","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[89,0,137,0,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Battlegear","setId":830,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":89,"2":137,"6":64,"7":72,"22":1944},"isBase":true}}}, +{"id":46152,"name":"Conqueror's Aegis Shoulderplates","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[95,0,108,0,0,0,59,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"6":59,"7":48,"22":1795},"isBase":true}}}, +{"id":46153,"name":"Conqueror's Aegis Legplates","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[99,0,170,0,0,62,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"5":62,"6":79,"22":2094},"isBase":true}}}, +{"id":46154,"name":"Conqueror's Aegis Battleplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[99,0,170,0,0,84,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":99,"2":170,"5":84,"6":52,"22":2393},"isBase":true}}}, +{"id":46155,"name":"Conqueror's Aegis Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[95,0,108,0,0,0,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":95,"2":108,"6":64,"8":40,"22":1496},"isBase":true}}}, +{"id":46156,"name":"Conqueror's Aegis Helm","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[112,0,137,0,0,0,70,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Battlegear","setId":820,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":112,"2":137,"6":70,"7":62,"22":1944},"isBase":true}}}, +{"id":46157,"name":"Conqueror's Nightsong Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,82,119,0,0,0,66,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":82,"2":119,"6":66,"8":48,"22":904},"isBase":true}}}, +{"id":46158,"name":"Conqueror's Nightsong Handgrips","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,90,143,0,0,0,46,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":90,"2":143,"6":46,"7":35,"22":753},"isBase":true}}}, +{"id":46159,"name":"Conqueror's Nightsong Raiments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,103,180,0,0,52,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":103,"2":180,"5":52,"6":70,"22":1205},"isBase":true}}}, +{"id":46160,"name":"Conqueror's Nightsong Legguards","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,121,156,0,0,0,74,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":121,"2":156,"6":74,"7":53,"22":1055},"isBase":true}}}, +{"id":46161,"name":"Conqueror's Nightsong Headguard","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,87,177,0,0,0,80,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Battlegear","setId":827,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":87,"2":177,"6":80,"7":53,"22":979},"isBase":true}}}, +{"id":46162,"name":"Conqueror's Siegebreaker Breastplate","icon":"inv_chest_plate02","type":5,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,51,83,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":51,"10":83,"22":2393},"isBase":true}}}, +{"id":46163,"name":"Conqueror's Handwraps of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,96,85,54,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":96,"3":85,"4":54,"6":64,"22":577},"isBase":true}}}, +{"id":46164,"name":"Conqueror's Siegebreaker Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[64,0,122,0,0,49,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":64,"2":122,"5":49,"9":79,"22":1496},"isBase":true}}}, +{"id":46165,"name":"Conqueror's Mantle of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,113,77,49,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":113,"3":77,"4":49,"6":62,"22":692},"isBase":true}}}, +{"id":46166,"name":"Conqueror's Siegebreaker Greathelm","icon":"inv_helmet_58","type":1,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,83,54,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":103,"2":156,"9":83,"10":54,"22":1944},"isBase":true}}}, +{"id":46167,"name":"Conqueror's Siegebreaker Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[64,0,122,0,0,0,0,0,49,79,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":64,"2":122,"8":49,"9":79,"22":1795},"isBase":true}}}, +{"id":46168,"name":"Conqueror's Raiments of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,153,113,0,74,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":153,"3":113,"5":74,"7":58,"22":923},"isBase":true}}}, +{"id":46169,"name":"Conqueror's Siegebreaker Legguards","icon":"inv_pants_plate_05","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,59,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Siegebreaker Plate","setId":831,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":77,"10":59,"22":2094},"isBase":true}}}, +{"id":46170,"name":"Conqueror's Pants of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,167,97,52,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":167,"3":97,"4":52,"7":76,"22":807},"isBase":true}}}, +{"id":46172,"name":"Conqueror's Circlet of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,149,97,0,0,70,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Garb","setId":832,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":149,"3":97,"6":70,"7":66,"22":750},"isBase":true}}}, +{"id":46173,"name":"Conqueror's Aegis Breastplate","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,83,54,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":83,"10":54,"22":2393},"isBase":true}}}, +{"id":46174,"name":"Conqueror's Aegis Handguards","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,45,61,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":45,"10":61,"22":1496},"isBase":true}}}, +{"id":46175,"name":"Conqueror's Aegis Faceguard","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[103,0,156,0,0,0,0,0,0,89,43,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":103,"2":156,"9":89,"10":43,"22":1944},"isBase":true}}}, +{"id":46176,"name":"Conqueror's Aegis Legguards","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[120,0,156,0,0,0,0,0,0,77,60,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":156,"9":77,"10":60,"22":2094},"isBase":true}}}, +{"id":46177,"name":"Conqueror's Aegis Shoulderguards","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Plate","setId":821,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":61,"22":1795},"isBase":true}}}, +{"id":46178,"name":"Conqueror's Aegis Tunic","icon":"inv_chest_plate21","type":5,"armorType":4,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":76,"6":60,"22":2393},"isBase":true}}}, +{"id":46179,"name":"Conqueror's Aegis Gloves","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,119,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"7":57,"22":1496},"isBase":true}}}, +{"id":46180,"name":"Conqueror's Aegis Headpiece","icon":"inv_helmet_97","type":1,"armorType":4,"stats":[0,0,161,98,0,0,59,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"6":59,"7":60,"22":1944},"isBase":true}}}, +{"id":46181,"name":"Conqueror's Aegis Greaves","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[0,0,161,98,76,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":76,"7":75,"22":2094},"isBase":true}}}, +{"id":46182,"name":"Conqueror's Aegis Spaulders","icon":"inv_shoulder_22","type":3,"armorType":4,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Aegis Regalia","setId":822,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"7":57,"22":1795},"isBase":true}}}, +{"id":46183,"name":"Conqueror's Nightsong Handguards","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,119,77,57,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":57,"6":48,"22":753},"isBase":true}}}, +{"id":46184,"name":"Conqueror's Nightsong Headpiece","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,161,98,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":60,"7":59,"22":979},"isBase":true}}}, +{"id":46185,"name":"Conqueror's Nightsong Leggings","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,161,98,76,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":76,"6":59,"22":1055},"isBase":true}}}, +{"id":46186,"name":"Conqueror's Nightsong Robe","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,161,98,68,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":68,"6":67,"22":1205},"isBase":true}}}, +{"id":46187,"name":"Conqueror's Nightsong Spaulders","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,119,77,57,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Regalia","setId":829,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":57,"7":48,"22":904},"isBase":true}}}, +{"id":46188,"name":"Conqueror's Gloves of Sanctification","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,108,85,60,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":108,"3":85,"4":60,"7":49,"22":577},"isBase":true}}}, +{"id":46189,"name":"Conqueror's Nightsong Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,119,77,0,57,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"5":57,"6":48,"22":753},"isBase":true}}}, +{"id":46190,"name":"Conqueror's Shoulderpads of Sanctification","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,122,77,41,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":122,"3":77,"4":41,"7":62,"22":692},"isBase":true}}}, +{"id":46191,"name":"Conqueror's Nightsong Cover","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,161,98,0,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"5":60,"6":59,"22":979},"isBase":true}}}, +{"id":46192,"name":"Conqueror's Nightsong Trousers","icon":"inv_pants_mail_15","type":9,"armorType":2,"stats":[0,0,161,98,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"5":59,"6":76,"22":1055},"isBase":true}}}, +{"id":46193,"name":"Conqueror's Robe of Sanctification","icon":"inv_chest_cloth_43","type":5,"armorType":1,"stats":[0,0,161,98,81,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":81,"6":50,"22":923},"isBase":true}}}, +{"id":46194,"name":"Conqueror's Nightsong Vestments","icon":"inv_chest_chain_15","type":5,"armorType":2,"stats":[0,0,161,98,60,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":60,"7":75,"22":1205},"isBase":true}}}, +{"id":46195,"name":"Conqueror's Leggings of Sanctification","icon":"inv_pants_cloth_05","type":9,"armorType":1,"stats":[0,0,149,113,60,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":149,"3":113,"4":60,"7":72,"22":807},"isBase":true}}}, +{"id":46196,"name":"Conqueror's Nightsong Mantle","icon":"inv_shoulder_14","type":3,"armorType":2,"stats":[0,0,119,77,49,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":49,"6":56,"22":904},"isBase":true}}}, +{"id":46197,"name":"Conqueror's Cowl of Sanctification","icon":"inv_crown_01","type":1,"armorType":1,"stats":[0,0,143,98,76,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Sanctification Regalia","setId":833,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":143,"3":98,"4":76,"6":67,"22":750},"isBase":true}}}, +{"id":46198,"name":"Conqueror's Worldbreaker Tunic","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":76,"6":60,"22":1722},"isBase":true}}}, +{"id":46199,"name":"Conqueror's Worldbreaker Handguards","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"7":57,"22":1076},"isBase":true}}}, +{"id":46200,"name":"Conqueror's Worldbreaker Grips","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,77,127,0,0,0,0,56,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":127,"7":56,"8":48,"22":1076},"isBase":true}}}, +{"id":46201,"name":"Conqueror's Worldbreaker Headpiece","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,161,98,0,0,60,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"6":60,"7":59,"22":1399},"isBase":true}}}, +{"id":46202,"name":"Conqueror's Worldbreaker Legguards","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"4":76,"6":60,"22":1507},"isBase":true}}}, +{"id":46203,"name":"Conqueror's Worldbreaker Shoulderguards","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,77,127,0,0,0,56,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":77,"2":127,"6":56,"8":48,"22":1291},"isBase":true}}}, +{"id":46204,"name":"Conqueror's Worldbreaker Spaulders","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,119,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Regalia","setId":825,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"4":48,"7":57,"22":1291},"isBase":true}}}, +{"id":46205,"name":"Conqueror's Worldbreaker Chestguard","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,98,170,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":98,"2":170,"5":70,"6":70,"22":1722},"isBase":true}}}, +{"id":46206,"name":"Conqueror's Worldbreaker Hauberk","icon":"inv_chest_chain_15","type":5,"armorType":3,"stats":[0,0,161,98,0,60,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"5":60,"7":75,"22":1722},"isBase":true}}}, +{"id":46207,"name":"Conqueror's Worldbreaker Gloves","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,119,77,0,0,48,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":48,"7":57,"22":1076},"isBase":true}}}, +{"id":46208,"name":"Conqueror's Worldbreaker War-Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,88,170,0,0,60,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":88,"2":170,"5":60,"7":86,"22":1507},"isBase":true}}}, +{"id":46209,"name":"Conqueror's Worldbreaker Helm","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,161,98,0,60,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"5":60,"6":64,"22":1399},"isBase":true}}}, +{"id":46210,"name":"Conqueror's Worldbreaker Kilt","icon":"inv_pants_mail_15","type":9,"armorType":3,"stats":[0,0,161,98,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":98,"5":60,"6":76,"22":1507},"isBase":true}}}, +{"id":46211,"name":"Conqueror's Worldbreaker Shoulderpads","icon":"inv_shoulder_14","type":3,"armorType":3,"stats":[0,0,119,77,0,0,57,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Garb","setId":824,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":77,"6":57,"7":48,"22":1291},"isBase":true}}}, +{"id":46212,"name":"Conqueror's Worldbreaker Faceguard","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,102,123,0,0,0,95,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Worldbreaker Battlegear","setId":823,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":102,"2":123,"6":95,"7":54,"22":1399},"isBase":true}}}, +{"id":46312,"name":"Vanquished Clutches of Yogg-Saron","icon":"inv_misc_ahnqirajtrinket_05","type":12,"stats":[0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":33288,"zoneId":4273,"category":"Hard Mode"}}],"scalingOptions":{"239":{"randPropPoints":181,"stats":{"6":154},"isBase":true}}}, +{"id":46313,"name":"Valorous Nightsong Cover","icon":"inv_jewelry_necklace_11","type":1,"armorType":2,"stats":[0,0,150,90,0,55,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":225,"phase":2,"quality":4,"classAllowlist":[1],"setName":"Nightsong Garb","setId":828,"scalingOptions":{"225":{"randPropPoints":214,"stats":{"2":150,"3":90,"5":55,"6":54,"22":959},"isBase":true}}}, +{"id":46320,"name":"Drape of the Skyherald","icon":"inv_misc_cape_21","type":4,"armorType":1,"stats":[62,0,108,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"0":62,"2":108,"5":36,"6":48,"22":479},"isBase":true}}}, +{"id":46321,"name":"Sunglimmer Drape","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,95,55,48,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":95,"3":55,"4":48,"7":34,"22":479},"isBase":true}}}, +{"id":46322,"name":"Brann's Sealing Ring","icon":"inv_jewelry_ring_67","type":11,"stats":[0,55,97,0,0,0,36,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"1":55,"2":97,"6":36,"7":33},"isBase":true}}}, +{"id":46323,"name":"Starshine Signet","icon":"inv_jewelry_ring_31","type":11,"stats":[0,0,92,55,42,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"ilvl":239,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"239":{"randPropPoints":136,"stats":{"2":92,"3":55,"4":42,"7":32},"isBase":true}}}, +{"id":46324,"name":"Gondria's Spectral Claw","icon":"inv_jewelry_ring_62","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":65,"ilvl":175,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"175":{"randPropPoints":65,"isBase":true}}}, +{"id":46326,"name":"Conqueror's Darkruned Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46327,"name":"Conqueror's Siegebreaker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46328,"name":"Conqueror's Aegis Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46329,"name":"Conqueror's Boots of Sanctification","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46330,"name":"Conqueror's Nightsong Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46331,"name":"Conqueror's Terrorblade Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46332,"name":"Conqueror's Kirin Tor Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46333,"name":"Conqueror's Deathbringer Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46334,"name":"Conqueror's Worldbreaker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46335,"name":"Conqueror's Scourgestalker Boots","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[59,0,84,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":110,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":110,"stats":{"0":59,"2":84,"9":56,"22":1557},"isBase":true}}}, +{"id":46339,"name":"Mimiron's Repeater","icon":"inv_weapon_rifle_33","type":14,"rangedWeaponType":3,"stats":[0,104,161,0,0,0,69,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.9,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":26529,"zoneId":4100}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"1":104,"2":161,"6":69,"7":69},"isBase":true}}}, +{"id":46340,"name":"Adamant Handguards","icon":"inv_gauntlets_54","type":7,"armorType":4,"stats":[84,0,126,0,0,0,0,0,0,25,69,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28234,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"0":84,"2":126,"9":25,"10":69,"22":1484},"isBase":true}}}, +{"id":46341,"name":"Drape of the Spellweaver","icon":"inv_misc_cape_09","type":4,"armorType":1,"stats":[0,0,90,58,0,0,39,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":90,"3":58,"6":39,"7":30,"22":448},"isBase":true}}}, +{"id":46342,"name":"Golemheart Longbow","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,104,174,0,0,0,54,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.9,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"1":104,"2":174,"6":54,"7":69},"isBase":true}}}, +{"id":46343,"name":"Fervor of the Protectorate","icon":"inv_jewelry_necklace_18","type":2,"stats":[49,0,94,0,0,0,0,0,32,0,62,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28587,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"0":49,"2":94,"8":32,"10":62,"23":96},"isBase":true}}}, +{"id":46344,"name":"Iceshear Mantle","icon":"inv_shoulder_97","type":3,"armorType":1,"stats":[0,0,110,79,55,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,672,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28546,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"2":110,"3":79,"4":55,"6":47,"22":672},"isBase":true}}}, +{"id":46345,"name":"Bracers of Righteous Reformation","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,88,44,46,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":88,"3":44,"4":46,"7":29,"22":1039},"isBase":true}}}, +{"id":46346,"name":"Boots of Unsettled Prey","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,79,95,0,0,0,77,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":159,"stats":{"1":79,"2":95,"6":77,"7":41,"22":1168},"isBase":true}}}, +{"id":46347,"name":"Cloak of the Dormant Blaze","icon":"inv_misc_cape_09","type":4,"armorType":1,"stats":[0,0,85,59,48,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,448,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":119,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28586,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":119,"stats":{"2":85,"3":59,"4":48,"6":29,"22":448},"isBase":true}}}, +{"id":46350,"name":"Pillar of Fortitude","icon":"inv_staff_94","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,81,0,53,0,0,0,0,0,0,0,610,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"weaponDamageMin":443,"weaponDamageMax":665,"weaponSpeed":2.9,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":28923,"zoneId":4272}}],"scalingOptions":{"225":{"randPropPoints":214,"weaponDamageMin":443,"weaponDamageMax":665,"stats":{"2":239,"4":81,"6":53,"14":610},"isBase":true}}}, +{"id":46351,"name":"Bloodcrush Cudgel","icon":"inv_mace_91","type":13,"weaponType":4,"handType":2,"stats":[0,49,71,0,0,0,47,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"weaponSpeed":1.8,"ilvl":225,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":8,"npcId":27978,"zoneId":4264}}],"scalingOptions":{"225":{"randPropPoints":92,"weaponDamageMin":370,"weaponDamageMax":688,"stats":{"1":49,"2":71,"6":47,"8":25},"isBase":true}}}, +{"id":46373,"name":"Furious Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,99,0,0,0,44,0,0,0,0,0,133,133,0,0,44,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":99,"6":44,"12":133,"13":133,"16":44},"isBase":true}}}, +{"id":46374,"name":"Relentless Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,50,0,0,0,0,0,151,151,0,0,50,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"6":50,"12":151,"13":151,"16":50},"isBase":true}}}, +{"id":46839,"name":"Frostwolf Insignia Rank 7","icon":"inv_jewelry_frostwolftrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"8":84,"16":84},"isBase":true}}}, +{"id":46840,"name":"Frostwolf Insignia Rank 7","icon":"inv_jewelry_frostwolftrinket_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"16":84},"isBase":true}}}, +{"id":46842,"name":"Crusader's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":100},"isBase":true}}}, +{"id":46958,"name":"Steel Bladebreaker","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":94,"6":44,"7":30},"isBase":true}}}, +{"id":46959,"name":"Band of the Violent Temperment","icon":"inv_jewelry_ring_76","type":11,"stats":[75,0,113,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":75,"2":113,"6":50,"7":50},"isBase":true}}}, +{"id":46960,"name":"Breastplate of Cruel Intent","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,128,161,0,0,0,112,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":161,"6":112,"7":71,"22":1805},"isBase":true}}}, +{"id":46961,"name":"Boneshatter Armplates","icon":"inv_bracer_27b","type":6,"armorType":4,"stats":[76,0,114,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"6":50,"8":50,"22":1087},"isBase":true}}}, +{"id":46962,"name":"Chestplate of the Towering Monstrosity","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,120,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"8":69,"9":120,"22":2486},"isBase":true}}}, +{"id":46963,"name":"Crystal Plated Vanguard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[71,0,108,0,0,0,0,0,0,55,39,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":71,"2":108,"9":55,"10":39,"22":7276},"isBase":true}}}, +{"id":46964,"name":"Crystal Plated Vanguard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[80,0,108,0,0,0,0,0,0,55,42,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":80,"2":108,"9":55,"10":42,"22":7442},"isBase":true}}}, +{"id":46965,"name":"Breastplate of Cruel Intent","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,137,181,0,0,0,121,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":181,"6":121,"7":80,"22":1892},"isBase":true}}}, +{"id":46966,"name":"Band of the Violent Temperment","icon":"inv_jewelry_ring_76","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":57,"7":49},"isBase":true}}}, +{"id":46967,"name":"Boneshatter Armplates","icon":"inv_bracer_27b","type":6,"armorType":4,"stats":[77,0,128,0,0,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":49,"8":57,"22":1129},"isBase":true}}}, +{"id":46968,"name":"Chestplate of the Towering Monstrosity","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[116,0,182,0,0,0,0,0,78,137,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":182,"8":78,"9":137,"22":2581},"isBase":true}}}, +{"id":46969,"name":"Steel Bladebreaker","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"stats":{"1":58,"2":94,"6":50,"7":33},"isBase":true}}}, +{"id":46970,"name":"Drape of the Untamed Predator","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":50,"7":50,"22":498},"isBase":true}}}, +{"id":46971,"name":"Drape of the Untamed Predator","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,77,116,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":57,"7":57,"22":535},"isBase":true}}}, +{"id":46972,"name":"Cord of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":560},"isBase":true}}}, +{"id":46973,"name":"Cord of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,162,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":76,"7":60,"22":602},"isBase":true}}}, +{"id":46974,"name":"Leggings of the Broken Beast","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,128,192,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":192,"5":74,"7":90,"22":1122},"isBase":true}}}, +{"id":46975,"name":"Leggings of the Broken Beast","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,206,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"5":86,"7":102,"22":1191},"isBase":true}}}, +{"id":46976,"name":"Shawl of the Refreshing Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"7":50,"22":498},"isBase":true}}}, +{"id":46977,"name":"Shawl of the Refreshing Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":57,"7":49,"22":535},"isBase":true}}}, +{"id":46979,"name":"Blade of Tarasque","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":2,"stats":[0,0,97,0,0,45,0,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":97,"5":45,"7":58,"14":780},"isBase":true}}}, +{"id":46980,"name":"Blade of Tarasque","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":2,"stats":[0,0,109,0,0,51,0,57,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":109,"5":51,"7":57,"14":870},"isBase":true}}}, +{"id":46985,"name":"Boots of the Courageous","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1709},"isBase":true}}}, +{"id":46986,"name":"Boots of the Courageous","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,162,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":60,"7":76,"22":1775},"isBase":true}}}, +{"id":46988,"name":"Boots of the Unrelenting Storm","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"6":67,"22":881},"isBase":true}}}, +{"id":46989,"name":"Boots of the Unrelenting Storm","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,162,98,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":60,"6":76,"22":936},"isBase":true}}}, +{"id":46990,"name":"Belt of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":1016},"isBase":true}}}, +{"id":46991,"name":"Belt of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":1064},"isBase":true}}}, +{"id":46992,"name":"Flowing Vestments of Ascent","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":996},"isBase":true}}}, +{"id":46993,"name":"Flowing Vestments of Ascent","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":1071},"isBase":true}}}, +{"id":46994,"name":"Talonstrike","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,136,204,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"weaponSpeed":2.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"stats":{"1":136,"2":204,"6":90,"7":90},"isBase":true}}}, +{"id":46995,"name":"Talonstrike","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,145,218,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1184,"weaponDamageMax":1777,"weaponSpeed":2.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1184,"weaponDamageMax":1777,"stats":{"1":145,"2":218,"6":102,"7":102},"isBase":true}}}, +{"id":46996,"name":"Lionhead Slasher","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,88,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"1":58,"2":88,"6":39,"7":39},"isBase":true}}}, +{"id":46997,"name":"Dawnbreaker Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1709},"isBase":true}}}, +{"id":46999,"name":"Bloodbath Belt","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":59,"8":67,"22":1398},"isBase":true}}}, +{"id":47000,"name":"Cuirass of Calamitous Fate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,120,180,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"7":90,"22":1282},"isBase":true}}}, +{"id":47001,"name":"Lionhead Slasher","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,66,87,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"1":66,"2":87,"6":36,"7":44},"isBase":true}}}, +{"id":47002,"name":"Bloodbath Belt","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[98,0,170,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[4,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":68,"8":68,"22":1452},"isBase":true}}}, +{"id":47003,"name":"Dawnbreaker Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,82,52,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":146,"9":82,"10":52,"22":1775},"isBase":true}}}, +{"id":47004,"name":"Cuirass of Calamitous Fate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,137,206,0,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":86,"7":102,"22":1361},"isBase":true}}}, +{"id":47041,"name":"Solace of the Defeated","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":47042,"name":"Pride of the Eredar","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[58,0,114,0,0,0,0,0,38,75,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"8":38,"9":75,"22":498},"isBase":true}}}, +{"id":47043,"name":"Charge of the Demon Lord","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":54,"7":44},"isBase":true}}}, +{"id":47051,"name":"Leggings of the Soothing Touch","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":871},"isBase":true}}}, +{"id":47052,"name":"Legguards of Feverish Dedication","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,0,120,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"8":69,"10":120,"22":2175},"isBase":true}}}, +{"id":47053,"name":"Symbol of Transgression","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"5":50,"6":50},"isBase":true}}}, +{"id":47054,"name":"Band of Deplorable Violence","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,109,76,44,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":44,"6":54},"isBase":true}}}, +{"id":47055,"name":"Bracers of the Autumn Willow","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50,"22":561},"isBase":true}}}, +{"id":47056,"name":"Bracers of Cloudy Omen","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":790},"isBase":true}}}, +{"id":47057,"name":"Legplates of Failing Light","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,193,120,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":80,"7":84,"22":2175},"isBase":true}}}, +{"id":47058,"name":"Pennant Cloak (4.0)","icon":"inv_misc_cape_naxxramas_02","type":4,"armorType":1,"stats":[0,0,92,55,0,0,34,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":92,"3":55,"6":34,"7":42,"22":451},"isBase":true}}}, +{"id":47059,"name":"Solace of the Defeated","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"3":144},"isBase":true}}}, +{"id":47060,"name":"Charge of the Demon Lord","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":61,"7":50},"isBase":true}}}, +{"id":47061,"name":"Legguards of Feverish Dedication","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[116,0,194,0,0,0,0,0,78,0,129,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":194,"8":78,"10":129,"22":2259},"isBase":true}}}, +{"id":47062,"name":"Leggings of the Soothing Touch","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":937},"isBase":true}}}, +{"id":47063,"name":"Pride of the Eredar","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[65,0,116,0,0,0,0,0,43,77,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":65,"2":116,"8":43,"9":77,"22":535},"isBase":true}}}, +{"id":47064,"name":"Symbol of Transgression","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"5":57,"6":57},"isBase":true}}}, +{"id":47066,"name":"Bracers of the Autumn Willow","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,121,77,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":49,"7":57,"22":596},"isBase":true}}}, +{"id":47067,"name":"Legplates of Failing Light","icon":"inv_pants_plate_15","type":9,"armorType":4,"stats":[0,0,218,129,0,0,88,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":88,"7":92,"22":2259},"isBase":true}}}, +{"id":47068,"name":"Bracers of Cloudy Omen","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":56,"6":49,"22":828},"isBase":true}}}, +{"id":47069,"name":"Justicebringer","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":128,"2":203,"6":90,"7":82},"isBase":true}}}, +{"id":47070,"name":"Ring of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":54,"7":44},"isBase":true}}}, +{"id":47071,"name":"Treads of the Icewalker","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,93,151,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":67,"6":59,"22":881},"isBase":true}}}, +{"id":47072,"name":"Girdle of Bloodied Scars","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1398},"isBase":true}}}, +{"id":47073,"name":"Bracers of the Untold Massacre","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,76,75,0,0,0,76,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":75,"6":76,"7":40,"22":790},"isBase":true}}}, +{"id":47074,"name":"Bracers of the Untold Massacre","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,77,84,0,0,0,77,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":84,"6":77,"7":45,"22":828},"isBase":true}}}, +{"id":47075,"name":"Ring of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":61,"7":50},"isBase":true}}}, +{"id":47076,"name":"Girdle of Bloodied Scars","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,74,60,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":146,"9":74,"10":60,"22":1452},"isBase":true}}}, +{"id":47077,"name":"Treads of the Icewalker","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,98,158,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":158,"5":76,"6":68,"22":936},"isBase":true}}}, +{"id":47078,"name":"Justicebringer","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"0":137,"2":229,"6":94,"7":94},"isBase":true}}}, +{"id":47079,"name":"Bastion of Purity","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,109,76,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"6":50,"7":50,"22":7276},"isBase":true}}}, +{"id":47080,"name":"Satrina's Impeding Scarab","icon":"inv_scarab_crystal","type":12,"stats":[0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":192},"isBase":true}}}, +{"id":47081,"name":"Cord of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,0,51,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":51,"6":72,"22":560},"isBase":true}}}, +{"id":47082,"name":"Chestplate of the Frostborn Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,203,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":203,"5":74,"7":90,"22":2486},"isBase":true}}}, +{"id":47083,"name":"Legguards of Concealed Hatred","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":1580},"isBase":true}}}, +{"id":47084,"name":"Cord of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,162,98,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"5":58,"6":73,"22":602},"isBase":true}}}, +{"id":47085,"name":"Bastion of Purity","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,122,85,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"6":57,"7":57,"22":7442},"isBase":true}}}, +{"id":47086,"name":"Chestplate of the Frostborn Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"5":86,"7":102,"22":2581},"isBase":true}}}, +{"id":47087,"name":"Legguards of Concealed Hatred","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":1655},"isBase":true}}}, +{"id":47088,"name":"Satrina's Impeding Scarab","icon":"inv_scarab_crystal","type":12,"stats":[0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":216},"isBase":true}}}, +{"id":47089,"name":"Cloak of Displacement","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,108,76,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":50,"7":50,"22":498},"isBase":true}}}, +{"id":47090,"name":"Boots of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1241},"isBase":true}}}, +{"id":47091,"name":"Unfaltering Armguards (4.0)","icon":"inv_bracer_31a","type":6,"armorType":4,"stats":[0,0,89,55,35,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":89,"3":55,"4":35,"7":28,"22":1043},"isBase":true}}}, +{"id":47092,"name":"Boots of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":684},"isBase":true}}}, +{"id":47093,"name":"Vambraces of the Broken Bond","icon":"inv_bracer_28b","type":6,"armorType":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":1087},"isBase":true}}}, +{"id":47094,"name":"Vestments of the Shattered Fellowship","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":1282},"isBase":true}}}, +{"id":47095,"name":"Cloak of Displacement","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,121,77,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"5":49,"7":57,"22":535},"isBase":true}}}, +{"id":47096,"name":"Vestments of the Shattered Fellowship","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,129,102,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":102,"7":78,"22":1361},"isBase":true}}}, +{"id":47097,"name":"Boots of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,162,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"7":68,"22":736},"isBase":true}}}, +{"id":47098,"name":"Vambraces of the Broken Bond","icon":"inv_bracer_28b","type":6,"armorType":4,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":48,"6":57,"22":1129},"isBase":true}}}, +{"id":47099,"name":"Boots of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,162,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1301,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":60,"7":76,"22":1301},"isBase":true}}}, +{"id":47104,"name":"Twin Spike","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":94,"5":39,"7":39},"isBase":true}}}, +{"id":47105,"name":"The Executioner's Malice","icon":"inv_jewelry_necklace_33","type":2,"stats":[76,0,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"5":50,"6":50},"isBase":true}}}, +{"id":47106,"name":"Sabatons of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,96,151,0,0,53,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":96,"2":151,"5":53,"6":67,"22":1241},"isBase":true}}}, +{"id":47107,"name":"Belt of the Merciless Killer","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,93,151,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"7":67,"22":721},"isBase":true}}}, +{"id":47108,"name":"Bracers of the Shieldmaiden","icon":"inv_bracer_31","type":6,"armorType":4,"stats":[58,0,114,0,0,0,0,0,38,0,75,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"8":38,"10":75,"22":1087},"isBase":true}}}, +{"id":47109,"name":"Sabatons of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,98,170,0,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1301,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":170,"5":58,"6":73,"22":1301},"isBase":true}}}, +{"id":47110,"name":"The Executioner's Malice","icon":"inv_jewelry_necklace_33","type":2,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":49,"6":57},"isBase":true}}}, +{"id":47111,"name":"Bracers of the Shieldmaiden","icon":"inv_bracer_31","type":6,"armorType":4,"stats":[65,0,116,0,0,0,0,0,43,0,77,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":65,"2":116,"8":43,"10":77,"22":1129},"isBase":true}}}, +{"id":47112,"name":"Belt of the Merciless Killer","icon":"inv_belt_37c","type":8,"armorType":2,"stats":[0,98,158,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":158,"5":68,"7":76,"22":766},"isBase":true}}}, +{"id":47113,"name":"Twin Spike","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"stats":{"1":58,"2":94,"5":44,"7":44},"isBase":true}}}, +{"id":47114,"name":"Lupine Longstaff","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,128,204,0,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"weaponSpeed":2.4,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"stats":{"1":128,"2":204,"6":82,"7":90},"isBase":true}}}, +{"id":47115,"name":"Death's Verdict","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"12":256,"13":256},"isBase":true}}}, +{"id":47116,"name":"The Arbiter's Muse","icon":"inv_jewelry_necklace_44","type":2,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"9":60,"23":156},"isBase":true}}}, +{"id":47121,"name":"Legguards of Ascension","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":90,"7":74,"22":2175},"isBase":true}}}, +{"id":47126,"name":"Skyweaver Robes","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"7":82,"22":996},"isBase":true}}}, +{"id":47129,"name":"Skyweaver Robes","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":86,"7":94,"22":1071},"isBase":true}}}, +{"id":47130,"name":"Lupine Longstaff","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,137,218,0,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":2.4,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"stats":{"1":137,"2":218,"6":94,"7":102},"isBase":true}}}, +{"id":47131,"name":"Death's Verdict","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,288,288,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"12":288,"13":288},"isBase":true}}}, +{"id":47132,"name":"Legguards of Ascension","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"7":86,"22":2259},"isBase":true}}}, +{"id":47133,"name":"The Arbiter's Muse","icon":"inv_jewelry_necklace_44","type":2,"stats":[85,0,116,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":60,"23":176},"isBase":true}}}, +{"id":47138,"name":"Chalice of Searing Light","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50},"isBase":true}}}, +{"id":47139,"name":"Wail of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,58,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":58,"7":38},"isBase":true}}}, +{"id":47140,"name":"Cord of Pale Thorns","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":721},"isBase":true}}}, +{"id":47141,"name":"Bindings of Dark Essence","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,76,0,38,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":38,"6":58,"22":436},"isBase":true}}}, +{"id":47142,"name":"Breastplate of the Frozen Lake","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":2486},"isBase":true}}}, +{"id":47143,"name":"Bindings of Dark Essence","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,121,77,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"5":43,"6":57,"22":469},"isBase":true}}}, +{"id":47144,"name":"Wail of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,121,77,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"6":57,"7":43},"isBase":true}}}, +{"id":47145,"name":"Cord of Pale Thorns","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":98,"4":76,"7":60,"22":766},"isBase":true}}}, +{"id":47146,"name":"Chalice of Searing Light","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,57,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"4":57,"6":57},"isBase":true}}}, +{"id":47147,"name":"Breastplate of the Frozen Lake","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":2581},"isBase":true}}}, +{"id":47148,"name":"Stormpike Cleaver","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":58,"2":87,"5":39,"7":39},"isBase":true}}}, +{"id":47149,"name":"Signet of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"9":60,"10":40},"isBase":true}}}, +{"id":47150,"name":"Greaves of the 7th Legion","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[93,0,151,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"8":59,"22":1709},"isBase":true}}}, +{"id":47151,"name":"Bracers of Dark Determination","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,76,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"5":50,"6":50,"22":561},"isBase":true}}}, +{"id":47152,"name":"Belt of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1016},"isBase":true}}}, +{"id":47153,"name":"Belt of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":170,"5":60,"6":76,"22":1064},"isBase":true}}}, +{"id":47154,"name":"Greaves of the 7th Legion","icon":"inv_boots_plate_01","type":10,"armorType":4,"stats":[98,0,170,0,0,0,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":76,"8":60,"22":1775},"isBase":true}}}, +{"id":47155,"name":"Bracers of Dark Determination","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,69,116,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":69,"2":116,"5":49,"6":57,"22":596},"isBase":true}}}, +{"id":47156,"name":"Stormpike Cleaver","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"1":58,"2":87,"5":44,"7":44},"isBase":true}}}, +{"id":47157,"name":"Signet of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[85,0,116,0,0,0,0,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":59,"10":45},"isBase":true}}}, +{"id":47170,"name":"Belt of Fierce Competition","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,66,82,0,0,0,31,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":82,"6":31,"7":47,"22":620},"isBase":true}}}, +{"id":47171,"name":"Legguards of Abandoned Fealty","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[44,0,134,0,0,0,0,0,56,89,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":44,"2":134,"8":56,"9":89,"22":2048},"isBase":true}}}, +{"id":47172,"name":"Helm of the Bested Gallant","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[0,0,97,81,0,0,44,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":97,"3":81,"6":44,"7":52,"22":1901},"isBase":true}}}, +{"id":47173,"name":"Bindings of the Wicked","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,72,50,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":72,"3":50,"5":33,"6":33,"22":354},"isBase":true}}}, +{"id":47174,"name":"Binding of the Tranquil Glade","icon":"inv_belt_11","type":8,"armorType":2,"stats":[0,0,98,58,49,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":98,"3":58,"4":49,"7":28,"22":620},"isBase":true}}}, +{"id":47175,"name":"Scale Boots of the Outlander","icon":"inv_boots_leather01","type":10,"armorType":3,"stats":[0,50,97,0,0,0,47,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":50,"2":97,"6":47,"7":39,"22":1128},"isBase":true}}}, +{"id":47176,"name":"Breastplate of the Imperial Joust","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[90,0,96,0,0,48,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2340,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":90,"2":96,"5":48,"6":52,"22":2340},"isBase":true}}}, +{"id":47177,"name":"Gloves of the Argent Fanatic","icon":"inv_gauntlets_68","type":7,"armorType":2,"stats":[0,66,84,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":66,"2":84,"6":45,"7":34,"22":689},"isBase":true}}}, +{"id":47178,"name":"Carapace of Grim Visions","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,0,108,89,51,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1641,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":108,"3":89,"4":51,"6":52,"22":1641},"isBase":true}}}, +{"id":47181,"name":"Belt of the Churning Blaze","icon":"inv_belt_08","type":8,"armorType":1,"stats":[0,0,95,66,0,50,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":95,"3":66,"5":50,"6":35,"22":455},"isBase":true}}}, +{"id":47182,"name":"Reign of the Unliving","icon":"inv_crown_13","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":47183,"name":"Strength of the Nerub","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":75,"2":113,"5":44,"6":54,"22":498},"isBase":true}}}, +{"id":47184,"name":"Legguards of the Lurking Threat","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":174,"6":119,"7":71,"22":1580},"isBase":true}}}, +{"id":47185,"name":"Leggings of the Haggard Apprentice","icon":"inv_pants_cloth_27","type":9,"armorType":1,"stats":[0,0,114,81,56,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,707,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":114,"3":81,"4":56,"6":47,"22":707},"isBase":true}}}, +{"id":47186,"name":"Legwraps of the Awakening","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":1122},"isBase":true}}}, +{"id":47187,"name":"Leggings of the Deepening Void","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"6":82,"22":871},"isBase":true}}}, +{"id":47188,"name":"Reign of the Unliving","icon":"inv_crown_13","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"3":144},"isBase":true}}}, +{"id":47189,"name":"Leggings of the Deepening Void","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":937},"isBase":true}}}, +{"id":47190,"name":"Legwraps of the Awakening","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":1191},"isBase":true}}}, +{"id":47191,"name":"Legguards of the Lurking Threat","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,129,196,0,0,0,129,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":129,"2":196,"6":129,"7":80,"22":1655},"isBase":true}}}, +{"id":47192,"name":"Strength of the Nerub","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[77,0,128,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":50,"6":53,"22":535},"isBase":true}}}, +{"id":47193,"name":"Misery's End","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,109,0,0,0,39,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":109,"6":39,"7":58,"14":780},"isBase":true}}}, +{"id":47194,"name":"Footpads of the Icy Floe","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"7":67,"22":684},"isBase":true}}}, +{"id":47195,"name":"Belt of the Forgotten Martyr","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":1398},"isBase":true}}}, +{"id":47197,"name":"Gauntlets of the Stouthearted Crusader","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[76,0,64,0,0,0,46,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":76,"2":64,"6":46,"7":37,"22":1463},"isBase":true}}}, +{"id":47199,"name":"Greaves of the Grand Paladin","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,82,62,40,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":82,"3":62,"4":40,"7":30,"22":1609},"isBase":true}}}, +{"id":47200,"name":"Signet of Purity","icon":"inv_jewelry_ring_64","type":11,"stats":[0,0,73,50,30,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":73,"3":50,"4":30,"6":35},"isBase":true}}}, +{"id":47201,"name":"Boots of Heartfelt Repentance","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[41,0,99,0,0,0,0,0,29,65,0,0,0,0,0,0,0,0,0,0,0,0,1609,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":41,"2":99,"8":29,"9":65,"22":1609},"isBase":true}}}, +{"id":47202,"name":"Leggings of Brazen Trespass","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,89,109,0,0,64,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"1":89,"2":109,"5":64,"6":52,"22":965},"isBase":true}}}, +{"id":47203,"name":"Armbands of the Ashen Saint","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50,"22":436},"isBase":true}}}, +{"id":47204,"name":"Chestguard of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":1805},"isBase":true}}}, +{"id":47205,"name":"Footpads of the Icy Floe","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,162,98,0,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"5":60,"7":76,"22":736},"isBase":true}}}, +{"id":47206,"name":"Misery's End","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,124,0,0,0,44,66,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":124,"6":44,"7":66,"14":879},"isBase":true}}}, +{"id":47207,"name":"Belt of the Forgotten Martyr","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[0,0,162,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":76,"6":60,"22":1452},"isBase":true}}}, +{"id":47208,"name":"Armbands of the Ashen Saint","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,121,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":57,"7":49,"22":469},"isBase":true}}}, +{"id":47209,"name":"Chestguard of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,129,102,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":102,"6":78,"22":1892},"isBase":true}}}, +{"id":47210,"name":"Mantle of Gnarled Overgrowth","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,0,97,66,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"5":44,"6":44,"22":827},"isBase":true}}}, +{"id":47211,"name":"Wristguards of Ceaseless Regret","icon":"inv_bracer_23b","type":6,"armorType":3,"stats":[0,38,61,0,0,0,38,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":38,"2":61,"6":38,"7":25,"22":718},"isBase":true}}}, +{"id":47212,"name":"Mercy's Hold","icon":"inv_gauntlets_72","type":7,"armorType":4,"stats":[42,0,99,0,0,0,0,0,35,57,0,0,0,0,0,0,0,0,0,0,0,0,1463,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":42,"2":99,"8":35,"9":57,"22":1463},"isBase":true}}}, +{"id":47213,"name":"Abyssal Rune","icon":"inv_misc_rune_09","type":12,"stats":[0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"7":84},"isBase":true}}}, +{"id":47214,"name":"Banner of Victory","icon":"inv_bannerpvp_03","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":47215,"name":"Tears of the Vanquished","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":84},"isBase":true}}}, +{"id":47216,"name":"The Black Heart","icon":"inv_misc_gem_bloodstone_02","type":12,"stats":[0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":126},"isBase":true}}}, +{"id":47217,"name":"Gaze of the Somber Keeper","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,98,73,56,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":98,"3":73,"4":56,"6":52,"22":896},"isBase":true}}}, +{"id":47218,"name":"The Confessor's Binding","icon":"inv_belt_48","type":8,"armorType":1,"stats":[0,0,92,58,45,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":92,"3":58,"4":45,"6":34,"22":455},"isBase":true}}}, +{"id":47219,"name":"Brilliant Hailstone Amulet","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,65,46,0,21,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":65,"3":46,"5":21,"6":36},"isBase":true}}}, +{"id":47220,"name":"Helm of the Violent Fray","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[90,0,72,0,0,0,44,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":90,"2":72,"6":44,"7":56,"22":1901},"isBase":true}}}, +{"id":47221,"name":"Shoulderpads of the Infamous Knave","icon":"inv_shoulder_105","type":3,"armorType":2,"stats":[0,62,94,0,0,27,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":62,"2":94,"5":27,"6":47,"22":827},"isBase":true}}}, +{"id":47222,"name":"Uruka's Band of Zeal","icon":"inv_jewelry_ring_79","type":11,"stats":[0,36,89,0,0,0,34,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":36,"2":89,"6":34,"8":32},"isBase":true}}}, +{"id":47223,"name":"Ring of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50},"isBase":true}}}, +{"id":47224,"name":"Ring of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,121,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":57,"7":49},"isBase":true}}}, +{"id":47225,"name":"Maiden's Favor","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":498},"isBase":true}}}, +{"id":47226,"name":"Mantle of Inconsolable Fear","icon":"inv_shoulder_31","type":3,"armorType":1,"stats":[0,0,97,66,0,0,37,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":97,"3":66,"6":37,"7":49,"22":606},"isBase":true}}}, +{"id":47227,"name":"Girdle of the Pallid Knight","icon":"inv_belt_28","type":8,"armorType":4,"stats":[48,0,99,0,0,24,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":48,"2":99,"5":24,"10":58,"22":1316},"isBase":true}}}, +{"id":47228,"name":"Leggings of the Bloodless Knight","icon":"inv_pants_plate_24","type":9,"armorType":3,"stats":[0,0,118,89,0,0,56,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1436,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":118,"3":89,"6":56,"7":54,"22":1436},"isBase":true}}}, +{"id":47229,"name":"Girdle of Arrogant Downfall","icon":"inv_belt_50","type":8,"armorType":4,"stats":[68,0,76,0,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1316,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"0":68,"2":76,"6":41,"7":37,"22":1316},"isBase":true}}}, +{"id":47230,"name":"Handwraps of Surrendered Hope","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,92,63,49,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":92,"3":63,"4":49,"7":29,"22":505},"isBase":true}}}, +{"id":47231,"name":"Belt of Merciless Cruelty","icon":"inv_belt_23","type":8,"armorType":3,"stats":[0,48,91,0,0,0,51,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"1":48,"2":91,"6":51,"7":40,"22":923},"isBase":true}}}, +{"id":47232,"name":"Drape of the Undefeated","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[57,0,57,0,0,0,36,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"0":57,"2":57,"6":36,"7":28,"22":404},"isBase":true}}}, +{"id":47233,"name":"Archon Glaive","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,128,192,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":128,"2":192,"6":90,"7":90},"isBase":true}}}, +{"id":47234,"name":"Gloves of Bitter Reprisal","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"7":59,"22":1554},"isBase":true}}}, +{"id":47235,"name":"Gloves of the Lifeless Touch","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":622},"isBase":true}}}, +{"id":47236,"name":"Gloves of the Lifeless Touch","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":98,"6":60,"7":76,"22":669},"isBase":true}}}, +{"id":47237,"name":"Band of Deplorable Violence","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,122,77,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":50,"6":53},"isBase":true}}}, +{"id":47238,"name":"Maiden's Favor","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":56,"6":49,"22":535},"isBase":true}}}, +{"id":47239,"name":"Archon Glaive","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,137,218,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1480,"weaponDamageMax":2221,"weaponSpeed":3.5,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1480,"weaponDamageMax":2221,"stats":{"1":137,"2":218,"6":102,"7":94},"isBase":true}}}, +{"id":47240,"name":"Gloves of Bitter Reprisal","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[98,0,170,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":76,"7":60,"22":1613},"isBase":true}}}, +{"id":47243,"name":"Mark of the Relentless","icon":"inv_jewelry_ring_60","type":11,"stats":[48,0,89,0,0,0,0,0,26,30,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":48,"2":89,"8":26,"9":30,"10":34},"isBase":true}}}, +{"id":47244,"name":"Chestguard of the Ravenous Fiend","icon":"inv_chest_mail_06","type":5,"armorType":3,"stats":[0,98,159,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":98,"2":159,"5":63,"6":71,"22":1684},"isBase":true}}}, +{"id":47245,"name":"Pauldrons of Concealed Loathing","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,71,118,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":71,"2":118,"5":49,"6":49,"22":1263},"isBase":true}}}, +{"id":47248,"name":"Treads of Dismal Fortune","icon":"inv_boots_mail_01","type":10,"armorType":2,"stats":[0,73,101,0,0,0,59,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":73,"2":101,"6":59,"8":42,"22":798},"isBase":true}}}, +{"id":47249,"name":"Leggings of the Snowy Bramble","icon":"inv_pants_leather_23","type":9,"armorType":2,"stats":[0,0,152,106,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":152,"3":106,"6":52,"7":69,"22":1016},"isBase":true}}}, +{"id":47250,"name":"Pauldrons of the Deafening Gale","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,0,118,73,0,60,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1263,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":118,"3":73,"5":60,"6":30,"22":1263},"isBase":true}}}, +{"id":47251,"name":"Cuirass of Cruel Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,128,161,0,0,0,112,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":161,"6":112,"7":71,"22":1805},"isBase":true}}}, +{"id":47252,"name":"Ring of the Violent Temperament","icon":"inv_jewelry_ring_76","type":11,"stats":[75,0,113,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":75,"2":113,"6":50,"7":50},"isBase":true}}}, +{"id":47253,"name":"Boneshatter Vambraces","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[76,0,114,0,0,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"6":50,"8":50,"22":1087},"isBase":true}}}, +{"id":47254,"name":"Hauberk of the Towering Monstrosity","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,120,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"8":69,"9":120,"22":2486},"isBase":true}}}, +{"id":47255,"name":"Stygian Bladebreaker","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,44,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":94,"6":44,"7":30},"isBase":true}}}, +{"id":47256,"name":"Drape of the Refreshing Winds","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,109,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"7":50,"22":498},"isBase":true}}}, +{"id":47257,"name":"Cloak of the Untamed Predator","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":50,"7":50,"22":498},"isBase":true}}}, +{"id":47258,"name":"Belt of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":560},"isBase":true}}}, +{"id":47259,"name":"Legwraps of the Broken Beast","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,128,192,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":192,"5":74,"7":90,"22":1122},"isBase":true}}}, +{"id":47260,"name":"Forlorn Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[71,0,108,0,0,0,0,0,0,55,39,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":71,"2":108,"9":55,"10":39,"22":7276},"isBase":true}}}, +{"id":47261,"name":"Barb of Tarasque","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,0,97,0,0,45,0,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":97,"5":45,"7":58,"14":780},"isBase":true}}}, +{"id":47262,"name":"Boots of the Harsh Winter","icon":"inv_boots_leather_04b","type":10,"armorType":2,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"6":67,"22":881},"isBase":true}}}, +{"id":47263,"name":"Sabatons of the Courageous","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1709},"isBase":true}}}, +{"id":47264,"name":"Flowing Robes of Ascent","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":996},"isBase":true}}}, +{"id":47265,"name":"Binding of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":1016},"isBase":true}}}, +{"id":47266,"name":"Blood Fury","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,88,0,0,0,39,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"1":58,"2":88,"6":39,"7":39},"isBase":true}}}, +{"id":47267,"name":"Death's Head Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,136,204,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"weaponSpeed":2.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1041,"weaponDamageMax":1562,"stats":{"1":136,"2":204,"6":90,"7":90},"isBase":true}}}, +{"id":47268,"name":"Bloodbath Girdle","icon":"inv_belt_50","type":8,"armorType":4,"stats":[93,0,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":59,"8":67,"22":1398},"isBase":true}}}, +{"id":47269,"name":"Dawnbreaker Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1709},"isBase":true}}}, +{"id":47270,"name":"Vest of Calamitous Fate","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,120,180,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"7":90,"22":1282},"isBase":true}}}, +{"id":47271,"name":"Solace of the Fallen","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":47272,"name":"Charge of the Eredar","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":54,"7":44},"isBase":true}}}, +{"id":47273,"name":"Legplates of Feverish Dedication","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,69,0,120,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"8":69,"10":120,"22":2175},"isBase":true}}}, +{"id":47274,"name":"Pants of the Soothing Touch","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":871},"isBase":true}}}, +{"id":47275,"name":"Pride of the Demon Lord","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[58,0,114,0,0,0,0,0,38,75,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"8":38,"9":75,"22":498},"isBase":true}}}, +{"id":47276,"name":"Talisman of Heedless Sins","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"5":50,"6":50},"isBase":true}}}, +{"id":47277,"name":"Bindings of the Autumn Willow","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50,"22":561},"isBase":true}}}, +{"id":47278,"name":"Circle of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50},"isBase":true}}}, +{"id":47279,"name":"Leggings of Failing Light","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,193,120,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":80,"7":84,"22":2175},"isBase":true}}}, +{"id":47280,"name":"Wristwraps of Cloudy Omen","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":790},"isBase":true}}}, +{"id":47281,"name":"Bracers of the Silent Massacre","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,76,75,0,0,0,76,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":75,"6":76,"7":40,"22":790},"isBase":true}}}, +{"id":47282,"name":"Band of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,76,114,0,0,0,54,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":54,"7":44},"isBase":true}}}, +{"id":47283,"name":"Belt of Bloodied Scars","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1398},"isBase":true}}}, +{"id":47284,"name":"Icewalker Treads","icon":"inv_boots_leather_04a","type":10,"armorType":2,"stats":[0,93,151,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":67,"6":59,"22":881},"isBase":true}}}, +{"id":47285,"name":"Dual-Blade Butcher","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":128,"2":203,"6":90,"7":82},"isBase":true}}}, +{"id":47286,"name":"Belt of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,144,93,0,51,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":51,"6":72,"22":560},"isBase":true}}}, +{"id":47287,"name":"Bastion of Resolve","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,109,76,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"6":50,"7":50,"22":7276},"isBase":true}}}, +{"id":47288,"name":"Chestplate of the Frostwolf Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,203,0,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":203,"5":74,"7":90,"22":2486},"isBase":true}}}, +{"id":47289,"name":"Leggings of Concealed Hatred","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":1580},"isBase":true}}}, +{"id":47290,"name":"Juggernaut's Vitality","icon":"inv_scarab_crystal","type":12,"stats":[0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":192},"isBase":true}}}, +{"id":47291,"name":"Shroud of Displacement","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,108,76,0,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":50,"7":50,"22":498},"isBase":true}}}, +{"id":47292,"name":"Robes of the Shattered Fellowship","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":1282},"isBase":true}}}, +{"id":47293,"name":"Sandals of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":684},"isBase":true}}}, +{"id":47294,"name":"Bracers of the Broken Bond","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":1087},"isBase":true}}}, +{"id":47295,"name":"Sabatons of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1241},"isBase":true}}}, +{"id":47296,"name":"Greaves of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1241},"isBase":true}}}, +{"id":47297,"name":"The Executioner's Vice","icon":"inv_jewelry_necklace_33","type":2,"stats":[76,0,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"5":50,"6":50},"isBase":true}}}, +{"id":47298,"name":"Armguards of the Shieldmaiden","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[58,0,114,0,0,0,0,0,38,0,75,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"8":38,"10":75,"22":1087},"isBase":true}}}, +{"id":47299,"name":"Belt of the Pitiless Killer","icon":"inv_belt_38b","type":8,"armorType":2,"stats":[0,93,151,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"7":67,"22":721},"isBase":true}}}, +{"id":47300,"name":"Gouge of the Frigid Heart","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":94,"5":39,"7":39},"isBase":true}}}, +{"id":47301,"name":"Skyweaver Vestments","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"7":82,"22":996},"isBase":true}}}, +{"id":47302,"name":"Twin's Pact","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,128,204,0,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"weaponSpeed":2.4,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"stats":{"1":128,"2":204,"6":82,"7":90},"isBase":true}}}, +{"id":47303,"name":"Death's Choice","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,256,256,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"12":256,"13":256},"isBase":true}}}, +{"id":47304,"name":"Legplates of Ascension","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[120,0,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":90,"7":74,"22":2175},"isBase":true}}}, +{"id":47305,"name":"Legionnaire's Gorget","icon":"inv_jewelry_necklace_44","type":2,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"9":60,"23":156},"isBase":true}}}, +{"id":47306,"name":"Dark Essence Bindings","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,108,76,0,38,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"5":38,"6":58,"22":436},"isBase":true}}}, +{"id":47307,"name":"Cry of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,76,0,0,58,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"6":58,"7":38},"isBase":true}}}, +{"id":47308,"name":"Belt of Pale Thorns","icon":"inv_belt_46c","type":8,"armorType":2,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":721},"isBase":true}}}, +{"id":47309,"name":"Mystifying Charm","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50},"isBase":true}}}, +{"id":47310,"name":"Chestplate of the Frozen Lake","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":2486},"isBase":true}}}, +{"id":47311,"name":"Waistguard of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1016},"isBase":true}}}, +{"id":47312,"name":"Greaves of the Saronite Citadel","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[93,0,151,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"8":59,"22":1709},"isBase":true}}}, +{"id":47313,"name":"Armbands of Dark Determination","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,76,114,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"5":50,"6":50,"22":561},"isBase":true}}}, +{"id":47314,"name":"Hellscream Slicer","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,39,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":58,"2":87,"5":39,"7":39},"isBase":true}}}, +{"id":47315,"name":"Band of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"9":60,"10":40},"isBase":true}}}, +{"id":47316,"name":"Reign of the Dead","icon":"inv_crown_13","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":47317,"name":"Breeches of the Deepening Void","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"6":82,"22":871},"isBase":true}}}, +{"id":47318,"name":"Leggings of the Awakening","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":1122},"isBase":true}}}, +{"id":47319,"name":"Leggings of the Lurking Threat","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":174,"6":119,"7":71,"22":1580},"isBase":true}}}, +{"id":47320,"name":"Might of the Nerub","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":75,"2":113,"5":44,"6":54,"22":498},"isBase":true}}}, +{"id":47321,"name":"Boots of the Icy Floe","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,144,93,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"7":67,"22":684},"isBase":true}}}, +{"id":47322,"name":"Suffering's End","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,109,0,0,0,39,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":109,"6":39,"7":58,"14":780},"isBase":true}}}, +{"id":47323,"name":"Girdle of the Forgotten Martyr","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":1398},"isBase":true}}}, +{"id":47324,"name":"Bindings of the Ashen Saint","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50,"22":436},"isBase":true}}}, +{"id":47325,"name":"Cuirass of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":1805},"isBase":true}}}, +{"id":47326,"name":"Handwraps of the Lifeless Touch","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":622},"isBase":true}}}, +{"id":47327,"name":"Lurid Manifestation","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,109,76,44,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":44,"6":54},"isBase":true}}}, +{"id":47328,"name":"Maiden's Adoration","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50,"22":498},"isBase":true}}}, +{"id":47329,"name":"Hellion Glaive","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,128,192,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":128,"2":192,"6":90,"7":90},"isBase":true}}}, +{"id":47330,"name":"Gauntlets of Bitter Reprisal","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"7":59,"22":1554},"isBase":true}}}, +{"id":47412,"name":"Cuirass of Cruel Intent","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,137,181,0,0,0,121,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":181,"6":121,"7":80,"22":1892},"isBase":true}}}, +{"id":47413,"name":"Ring of the Violent Temperament","icon":"inv_jewelry_ring_76","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":57,"7":49},"isBase":true}}}, +{"id":47414,"name":"Boneshatter Vambraces","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[77,0,128,0,0,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":49,"8":57,"22":1129},"isBase":true}}}, +{"id":47415,"name":"Hauberk of the Towering Monstrosity","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[116,0,182,0,0,0,0,0,78,137,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":182,"8":78,"9":137,"22":2581},"isBase":true}}}, +{"id":47416,"name":"Stygian Bladebreaker","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"stats":{"1":58,"2":94,"6":50,"7":33},"isBase":true}}}, +{"id":47417,"name":"Drape of the Refreshing Winds","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":57,"7":49,"22":535},"isBase":true}}}, +{"id":47418,"name":"Cloak of the Untamed Predator","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,77,116,0,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":57,"7":57,"22":535},"isBase":true}}}, +{"id":47419,"name":"Belt of the Tenebrous Mist","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,162,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":76,"7":60,"22":602},"isBase":true}}}, +{"id":47420,"name":"Legwraps of the Broken Beast","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,137,206,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"5":86,"7":102,"22":1191},"isBase":true}}}, +{"id":47421,"name":"Forlorn Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[80,0,108,0,0,0,0,0,0,55,42,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":80,"2":108,"9":55,"10":42,"22":7442},"isBase":true}}}, +{"id":47422,"name":"Barb of Tarasque","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,0,109,0,0,51,0,57,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":109,"5":51,"7":57,"14":870},"isBase":true}}}, +{"id":47423,"name":"Boots of the Harsh Winter","icon":"inv_boots_leather_04b","type":10,"armorType":2,"stats":[0,0,162,98,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":60,"6":76,"22":936},"isBase":true}}}, +{"id":47424,"name":"Sabatons of the Courageous","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[0,0,162,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":60,"7":76,"22":1775},"isBase":true}}}, +{"id":47425,"name":"Flowing Robes of Ascent","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":1071},"isBase":true}}}, +{"id":47426,"name":"Binding of the Ice Burrower","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,162,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":76,"6":60,"22":1064},"isBase":true}}}, +{"id":47427,"name":"Blood Fury","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,66,87,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"1":66,"2":87,"6":36,"7":44},"isBase":true}}}, +{"id":47428,"name":"Death's Head Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,145,218,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1184,"weaponDamageMax":1777,"weaponSpeed":2.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1184,"weaponDamageMax":1777,"stats":{"1":145,"2":218,"6":102,"7":102},"isBase":true}}}, +{"id":47429,"name":"Bloodbath Girdle","icon":"inv_belt_50","type":8,"armorType":4,"stats":[98,0,170,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[4,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":68,"8":68,"22":1452},"isBase":true}}}, +{"id":47430,"name":"Dawnbreaker Sabatons","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,82,52,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":146,"9":82,"10":52,"22":1775},"isBase":true}}}, +{"id":47431,"name":"Vest of Calamitous Fate","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,137,206,0,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":86,"7":102,"22":1361},"isBase":true}}}, +{"id":47432,"name":"Solace of the Fallen","icon":"achievement_dungeon_ulduar77_25man","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"3":144},"isBase":true}}}, +{"id":47433,"name":"Charge of the Eredar","icon":"inv_jewelry_necklace_34","type":2,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":61,"7":50},"isBase":true}}}, +{"id":47434,"name":"Legplates of Feverish Dedication","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,194,0,0,0,0,0,78,0,129,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":194,"8":78,"10":129,"22":2259},"isBase":true}}}, +{"id":47435,"name":"Pants of the Soothing Touch","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":937},"isBase":true}}}, +{"id":47436,"name":"Pride of the Demon Lord","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[65,0,116,0,0,0,0,0,43,77,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":65,"2":116,"8":43,"9":77,"22":535},"isBase":true}}}, +{"id":47437,"name":"Talisman of Heedless Sins","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"5":57,"6":57},"isBase":true}}}, +{"id":47438,"name":"Bindings of the Autumn Willow","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,121,77,49,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":49,"7":57,"22":596},"isBase":true}}}, +{"id":47439,"name":"Circle of the Darkmender","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,121,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":57,"7":49},"isBase":true}}}, +{"id":47440,"name":"Leggings of Failing Light","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,218,129,0,0,88,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":88,"7":92,"22":2259},"isBase":true}}}, +{"id":47441,"name":"Wristwraps of Cloudy Omen","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":56,"6":49,"22":828},"isBase":true}}}, +{"id":47442,"name":"Bracers of the Silent Massacre","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,77,84,0,0,0,77,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":84,"6":77,"7":45,"22":828},"isBase":true}}}, +{"id":47443,"name":"Band of Callous Aggression","icon":"inv_jewelry_ring_65","type":11,"stats":[0,77,116,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":77,"2":116,"6":61,"7":50},"isBase":true}}}, +{"id":47444,"name":"Belt of Bloodied Scars","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[114,0,146,0,0,0,0,0,0,74,60,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":146,"9":74,"10":60,"22":1452},"isBase":true}}}, +{"id":47445,"name":"Icewalker Treads","icon":"inv_boots_leather_04a","type":10,"armorType":2,"stats":[0,98,158,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,936,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":158,"5":76,"6":68,"22":936},"isBase":true}}}, +{"id":47446,"name":"Dual-Blade Butcher","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"0":137,"2":229,"6":94,"7":94},"isBase":true}}}, +{"id":47447,"name":"Belt of Biting Cold","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,162,98,0,58,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"5":58,"6":73,"22":602},"isBase":true}}}, +{"id":47448,"name":"Bastion of Resolve","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,122,85,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7442,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"6":57,"7":57,"22":7442},"isBase":true}}}, +{"id":47449,"name":"Chestplate of the Frostwolf Hero","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"5":86,"7":102,"22":2581},"isBase":true}}}, +{"id":47450,"name":"Leggings of Concealed Hatred","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,129,94,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"7":86,"22":1655},"isBase":true}}}, +{"id":47451,"name":"Juggernaut's Vitality","icon":"inv_scarab_crystal","type":12,"stats":[0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":216},"isBase":true}}}, +{"id":47452,"name":"Shroud of Displacement","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,121,77,0,49,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"5":49,"7":57,"22":535},"isBase":true}}}, +{"id":47453,"name":"Robes of the Shattered Fellowship","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,129,102,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":102,"7":78,"22":1361},"isBase":true}}}, +{"id":47454,"name":"Sandals of the Mourning Widow","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,162,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"7":68,"22":736},"isBase":true}}}, +{"id":47455,"name":"Bracers of the Broken Bond","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,122,77,48,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":48,"6":57,"22":1129},"isBase":true}}}, +{"id":47456,"name":"Sabatons of Tremoring Earth","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,162,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1301,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":60,"7":76,"22":1301},"isBase":true}}}, +{"id":47457,"name":"Greaves of Ruthless Judgment","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1301,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":170,"5":60,"6":76,"22":1301},"isBase":true}}}, +{"id":47458,"name":"The Executioner's Vice","icon":"inv_jewelry_necklace_33","type":2,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":49,"6":57},"isBase":true}}}, +{"id":47459,"name":"Armguards of the Shieldmaiden","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[65,0,116,0,0,0,0,0,43,0,77,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":65,"2":116,"8":43,"10":77,"22":1129},"isBase":true}}}, +{"id":47460,"name":"Belt of the Pitiless Killer","icon":"inv_belt_38b","type":8,"armorType":2,"stats":[0,98,158,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":158,"5":68,"7":76,"22":766},"isBase":true}}}, +{"id":47461,"name":"Gouge of the Frigid Heart","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,58,94,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"stats":{"1":58,"2":94,"5":44,"7":44},"isBase":true}}}, +{"id":47462,"name":"Skyweaver Vestments","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":86,"7":94,"22":1071},"isBase":true}}}, +{"id":47463,"name":"Twin's Pact","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,137,218,0,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":2.4,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"stats":{"1":137,"2":218,"6":94,"7":102},"isBase":true}}}, +{"id":47464,"name":"Death's Choice","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,288,288,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"12":288,"13":288},"isBase":true}}}, +{"id":47465,"name":"Legplates of Ascension","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"7":86,"22":2259},"isBase":true}}}, +{"id":47466,"name":"Legionnaire's Gorget","icon":"inv_jewelry_necklace_44","type":2,"stats":[85,0,116,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,176,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":60,"23":176},"isBase":true}}}, +{"id":47467,"name":"Dark Essence Bindings","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,121,77,0,43,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"5":43,"6":57,"22":469},"isBase":true}}}, +{"id":47468,"name":"Cry of the Val'kyr","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,121,77,0,0,57,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"6":57,"7":43},"isBase":true}}}, +{"id":47469,"name":"Belt of Pale Thorns","icon":"inv_belt_46c","type":8,"armorType":2,"stats":[0,0,161,98,76,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":98,"4":76,"7":60,"22":766},"isBase":true}}}, +{"id":47470,"name":"Mystifying Charm","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,122,85,57,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":85,"4":57,"6":57},"isBase":true}}}, +{"id":47471,"name":"Chestplate of the Frozen Lake","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":2581},"isBase":true}}}, +{"id":47472,"name":"Waistguard of Deathly Dominion","icon":"inv_belt_45a","type":8,"armorType":3,"stats":[0,98,170,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":170,"5":60,"6":76,"22":1064},"isBase":true}}}, +{"id":47473,"name":"Greaves of the Saronite Citadel","icon":"inv_boots_plate_08","type":10,"armorType":4,"stats":[98,0,170,0,0,0,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":76,"8":60,"22":1775},"isBase":true}}}, +{"id":47474,"name":"Armbands of Dark Determination","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,69,116,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":69,"2":116,"5":49,"6":57,"22":596},"isBase":true}}}, +{"id":47475,"name":"Hellscream Slicer","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,58,87,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"1":58,"2":87,"5":44,"7":44},"isBase":true}}}, +{"id":47476,"name":"Band of the Traitor King","icon":"inv_jewelry_ring_57","type":11,"stats":[85,0,116,0,0,0,0,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":59,"10":45},"isBase":true}}}, +{"id":47477,"name":"Reign of the Dead","icon":"inv_crown_13","type":12,"stats":[0,0,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"3":144},"isBase":true}}}, +{"id":47478,"name":"Breeches of the Deepening Void","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":937},"isBase":true}}}, +{"id":47479,"name":"Leggings of the Awakening","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":1191},"isBase":true}}}, +{"id":47480,"name":"Leggings of the Lurking Threat","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,129,196,0,0,0,129,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":129,"2":196,"6":129,"7":80,"22":1655},"isBase":true}}}, +{"id":47481,"name":"Might of the Nerub","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[77,0,128,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":50,"6":53,"22":535},"isBase":true}}}, +{"id":47482,"name":"Boots of the Icy Floe","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,162,98,0,60,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"5":60,"7":76,"22":736},"isBase":true}}}, +{"id":47483,"name":"Suffering's End","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,124,0,0,0,44,66,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":124,"6":44,"7":66,"14":879},"isBase":true}}}, +{"id":47484,"name":"Girdle of the Forgotten Martyr","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,162,98,76,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"4":76,"6":60,"22":1452},"isBase":true}}}, +{"id":47485,"name":"Bindings of the Ashen Saint","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,121,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"4":57,"7":49,"22":469},"isBase":true}}}, +{"id":47486,"name":"Cuirass of Flowing Elements","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,129,102,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":102,"6":78,"22":1892},"isBase":true}}}, +{"id":47487,"name":"Handwraps of the Lifeless Touch","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,161,98,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":98,"6":60,"7":76,"22":669},"isBase":true}}}, +{"id":47489,"name":"Lurid Manifestation","icon":"inv_jewelry_ring_55","type":11,"stats":[0,0,122,77,50,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":50,"6":53},"isBase":true}}}, +{"id":47490,"name":"Maiden's Adoration","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,122,77,56,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":56,"6":49,"22":535},"isBase":true}}}, +{"id":47491,"name":"Hellion Glaive","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,137,218,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1480,"weaponDamageMax":2221,"weaponSpeed":3.5,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1480,"weaponDamageMax":2221,"stats":{"1":137,"2":218,"6":102,"7":94},"isBase":true}}}, +{"id":47492,"name":"Gauntlets of Bitter Reprisal","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[98,0,170,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":98,"2":170,"6":76,"7":60,"22":1613},"isBase":true}}}, +{"id":47493,"name":"Edge of Ruin","icon":"inv_axe_76","type":13,"weaponType":1,"handType":4,"stats":[106,0,135,0,0,0,62,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"weaponSpeed":3.5,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34705,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34705,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"stats":{"0":106,"2":135,"6":62,"7":76},"isBase":true}}}, +{"id":47494,"name":"Ancient Pendant of Arathor","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,42,106,0,0,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"1":42,"2":106,"6":44,"7":33},"isBase":true}}}, +{"id":47495,"name":"Legplates of Relentless Onslaught","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[106,0,141,0,0,0,50,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2069,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":106,"2":141,"6":50,"7":81,"22":2069},"isBase":true}}}, +{"id":47496,"name":"Armbands of the Wary Lookout","icon":"inv_bracer_22b","type":6,"armorType":2,"stats":[0,59,84,0,0,40,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,508,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"1":59,"2":84,"5":40,"6":39,"22":508},"isBase":true}}}, +{"id":47497,"name":"Helm of the Crestfallen Challenger","icon":"inv_helmet_134","type":1,"armorType":4,"stats":[66,0,135,0,0,54,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,1921,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":66,"2":135,"5":54,"10":92,"22":1921},"isBase":true}}}, +{"id":47498,"name":"Gloves of Dismal Fortune","icon":"inv_gauntlets_74","type":7,"armorType":2,"stats":[0,0,109,79,0,0,50,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":109,"3":79,"6":50,"7":54,"22":726},"isBase":true}}}, +{"id":47500,"name":"Peacekeeper Blade","icon":"inv_sword_142","type":13,"weaponType":9,"handType":2,"stats":[31,0,69,0,0,0,0,0,21,29,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":349,"weaponDamageMax":650,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":349,"weaponDamageMax":650,"stats":{"0":31,"2":69,"8":21,"9":29,"10":23},"isBase":true}}}, +{"id":47501,"name":"Kurisu's Indecision","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,87,59,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":87,"3":59,"5":44,"6":33,"22":437},"isBase":true}}}, +{"id":47502,"name":"Majestic Silversmith Shoulderplates","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[71,0,106,0,0,0,40,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":71,"2":106,"6":40,"7":60,"22":1773},"isBase":true}}}, +{"id":47503,"name":"Legplates of the Argent Armistice","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,151,106,76,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2069,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":151,"3":106,"4":76,"6":50,"22":2069},"isBase":true}}}, +{"id":47504,"name":"Barkhide Treads","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,112,79,0,34,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":112,"3":79,"5":34,"6":63,"22":798},"isBase":true}}}, +{"id":47506,"name":"Silverwing Defender","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[66,0,87,0,0,0,0,0,0,44,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"stats":{"0":66,"2":87,"9":44,"10":35},"isBase":true}}}, +{"id":47508,"name":"Aledar's Battlestar","icon":"inv_mace_100","type":13,"weaponType":4,"handType":2,"stats":[0,46,63,0,0,13,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"weaponSpeed":2.6,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"stats":{"1":46,"2":63,"5":13,"6":31},"isBase":true}}}, +{"id":47509,"name":"Mariel's Sorrow","icon":"inv_mace_102","type":13,"weaponType":4,"handType":2,"stats":[0,0,86,0,46,0,31,0,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35119,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35119,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"stats":{"2":86,"4":46,"6":31,"14":611},"isBase":true}}}, +{"id":47510,"name":"Trueheart Girdle","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,106,79,0,0,56,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1330,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":106,"3":79,"6":56,"7":34,"22":1330},"isBase":true}}}, +{"id":47511,"name":"Plated Greaves of Providence","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[75,0,106,0,0,0,38,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1626,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":75,"2":106,"6":38,"7":59,"22":1626},"isBase":true}}}, +{"id":47512,"name":"Sinner's Confession","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,86,60,0,44,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":86,"3":60,"5":44,"6":33},"isBase":true}}}, +{"id":47513,"name":"Orgrim's Deflector","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[66,0,87,0,0,0,0,0,0,44,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"stats":{"0":66,"2":87,"9":44,"10":35},"isBase":true}}}, +{"id":47514,"name":"Regal Aurous Shoulderplates","icon":"inv_shoulder_98","type":3,"armorType":4,"stats":[59,0,115,0,0,35,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":59,"2":115,"5":35,"9":70,"22":1773},"isBase":true}}}, +{"id":47515,"name":"Decimation","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,137,230,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1438,"weaponDamageMax":2158,"weaponSpeed":3.4,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1438,"weaponDamageMax":2158,"stats":{"1":137,"2":230,"5":94,"6":102},"isBase":true}}}, +{"id":47516,"name":"Fleshrender","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1438,"weaponDamageMax":2158,"weaponSpeed":3.4,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1438,"weaponDamageMax":2158,"stats":{"1":137,"2":218,"5":94,"6":102},"isBase":true}}}, +{"id":47517,"name":"Blade of the Unbroken Covenant","icon":"inv_sword_144","type":13,"weaponType":9,"handType":2,"stats":[0,0,118,0,0,0,58,39,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":118,"6":58,"7":39,"14":879},"isBase":true}}}, +{"id":47518,"name":"Mortalis","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[0,0,118,0,0,0,58,39,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":118,"6":58,"7":39,"14":879},"isBase":true}}}, +{"id":47519,"name":"Catastrophe","icon":"inv_mace_106","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,96,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"0":137,"2":229,"6":96,"8":92},"isBase":true}}}, +{"id":47520,"name":"Grievance","icon":"inv_mace_104","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,96,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"0":137,"2":229,"6":96,"8":92},"isBase":true}}}, +{"id":47521,"name":"BRK-1000","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,153,294,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1073,"weaponDamageMax":1994,"weaponSpeed":2.9,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1073,"weaponDamageMax":1994,"stats":{"1":153,"2":294,"6":102,"7":94},"isBase":true}}}, +{"id":47522,"name":"Marrowstrike","icon":"inv_weapon_halberd16","type":13,"weaponType":6,"handType":4,"stats":[0,106,162,0,0,0,57,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"weaponSpeed":3.5,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":34928,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":34928,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"stats":{"1":106,"2":162,"6":57,"7":60},"isBase":true}}}, +{"id":47523,"name":"Fezzik's Autocannon","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,153,294,0,0,0,102,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1073,"weaponDamageMax":1994,"weaponSpeed":2.9,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1073,"weaponDamageMax":1994,"stats":{"1":153,"2":294,"6":102,"7":94},"isBase":true}}}, +{"id":47524,"name":"Clemency","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,287,0,86,0,137,0,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":444,"weaponDamageMax":666,"weaponSpeed":2.1,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":444,"weaponDamageMax":666,"stats":{"2":287,"4":86,"6":137,"14":878},"isBase":true}}}, +{"id":47525,"name":"Sufferance","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,287,0,86,0,137,0,0,0,0,0,0,0,878,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":444,"weaponDamageMax":666,"weaponSpeed":2.1,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":444,"weaponDamageMax":666,"stats":{"2":287,"4":86,"6":137,"14":878},"isBase":true}}}, +{"id":47526,"name":"Remorseless","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,58,99,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"1":58,"2":99,"6":44,"7":36},"isBase":true}}}, +{"id":47527,"name":"Embrace of Madness","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,127,106,56,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":127,"3":106,"4":56,"6":69,"22":874},"isBase":true}}}, +{"id":47528,"name":"Cudgel of the Damned","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,58,99,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"1":58,"2":99,"6":44,"7":36},"isBase":true}}}, +{"id":47529,"name":"Mask of Distant Memory","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,98,129,0,0,64,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":98,"2":129,"5":64,"6":61,"22":943},"isBase":true}}}, +{"id":47545,"name":"Vereesa's Dexterity","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,97,134,0,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"1":97,"2":134,"6":65,"7":57,"22":583},"isBase":true}}}, +{"id":47546,"name":"Sylvanas' Cunning","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,97,134,0,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"1":97,"2":134,"6":65,"7":57,"22":583},"isBase":true}}}, +{"id":47547,"name":"Varian's Furor","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[89,0,146,0,0,57,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"0":89,"2":146,"5":57,"6":65,"22":583},"isBase":true}}}, +{"id":47548,"name":"Garrosh's Rage","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[89,0,146,0,0,57,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"0":89,"2":146,"5":57,"6":65,"22":583},"isBase":true}}}, +{"id":47549,"name":"Magni's Resolution","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[97,0,134,0,0,0,0,0,0,69,51,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"0":97,"2":134,"9":69,"10":51,"22":583},"isBase":true}}}, +{"id":47550,"name":"Cairne's Endurance","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[97,0,134,0,0,0,0,0,0,69,51,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"0":97,"2":134,"9":69,"10":51,"22":583},"isBase":true}}}, +{"id":47551,"name":"Aethas' Intensity","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,139,89,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"2":139,"3":89,"6":65,"7":57,"22":583},"isBase":true}}}, +{"id":47552,"name":"Jaina's Radiance","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,139,89,0,0,65,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"2":139,"3":89,"6":65,"7":57,"22":583},"isBase":true}}}, +{"id":47553,"name":"Bolvar's Devotion","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,139,89,65,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"2":139,"3":89,"4":65,"7":57,"22":583},"isBase":true}}}, +{"id":47554,"name":"Lady Liadrin's Conviction","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,139,89,65,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,583,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":185,"ilvl":272,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"272":{"randPropPoints":185,"stats":{"2":139,"3":89,"4":65,"7":57,"22":583},"isBase":true}}}, +{"id":47560,"name":"Boots of the Crackling Flame","icon":"inv_boots_cloth_22","type":10,"armorType":1,"stats":[0,0,112,79,0,35,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":112,"3":79,"5":35,"6":51,"22":601},"isBase":true}}}, +{"id":47561,"name":"Gloves of the Dark Exile","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,79,73,0,0,0,70,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1053,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":79,"2":73,"6":70,"7":46,"22":1053},"isBase":true}}}, +{"id":47562,"name":"Symbol of Redemption","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,76,56,42,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":76,"3":56,"4":42,"6":29},"isBase":true}}}, +{"id":47563,"name":"Girdle of the Dauntless Conqueror","icon":"inv_belt_49","type":8,"armorType":3,"stats":[0,0,109,76,57,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,947,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":109,"3":76,"4":57,"6":37,"22":947},"isBase":true}}}, +{"id":47564,"name":"Gaze of the Unknown","icon":"inv_helmet_133","type":1,"armorType":1,"stats":[0,0,115,98,0,57,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":115,"3":98,"5":57,"6":67,"22":710},"isBase":true}}}, +{"id":47565,"name":"Vambraces of Unholy Command","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[59,0,89,0,0,0,29,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":59,"2":89,"6":29,"7":46,"22":1034},"isBase":true}}}, +{"id":47566,"name":"The Warlord's Depravity","icon":"inv_jewelry_necklace_29","type":2,"stats":[42,0,89,0,0,0,0,0,0,43,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":42,"2":89,"9":43,"10":35},"isBase":true}}}, +{"id":47567,"name":"Gauntlets of Revelation","icon":"inv_gauntlets_77a","type":7,"armorType":4,"stats":[0,0,102,75,55,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":102,"3":75,"4":55,"6":45,"22":1478},"isBase":true}}}, +{"id":47568,"name":"True-Aim Long Rifle","icon":"inv_weapon_rifle_34","type":14,"rangedWeaponType":3,"stats":[0,106,209,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":757,"weaponDamageMax":1408,"weaponSpeed":3,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":757,"weaponDamageMax":1408,"stats":{"1":106,"2":209,"6":106},"isBase":true}}}, +{"id":47569,"name":"Spectral Kris","icon":"inv_weapon_shortblade_96","type":13,"weaponType":2,"handType":2,"stats":[0,0,53,0,0,0,36,46,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"weaponSpeed":1.8,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"stats":{"2":53,"6":36,"7":46,"14":611},"isBase":true}}}, +{"id":47570,"name":"Saronite Swordbreakers","icon":"inv_bracer_32a","type":6,"armorType":4,"stats":[58,0,102,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67092}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":102,"5":38,"9":68,"22":1087},"isBase":true}}}, +{"id":47571,"name":"Saronite Swordbreakers","icon":"inv_bracer_30b","type":6,"armorType":4,"stats":[58,0,102,0,0,38,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67131}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":102,"5":38,"9":68,"22":1087},"isBase":true}}}, +{"id":47572,"name":"Titanium Spikeguards","icon":"inv_bracer_37","type":6,"armorType":4,"stats":[68,0,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67094}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":68,"2":114,"6":42,"7":50,"22":1087},"isBase":true}}}, +{"id":47573,"name":"Titanium Spikeguards","icon":"inv_bracer_26b","type":6,"armorType":4,"stats":[68,0,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67133}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":68,"2":114,"6":42,"7":50,"22":1087},"isBase":true}}}, +{"id":47574,"name":"Sunforged Bracers","icon":"inv_bracer_32a","type":6,"armorType":4,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67096}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":34,"7":50,"22":1087},"isBase":true}}}, +{"id":47575,"name":"Sunforged Bracers","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67135}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":34,"7":50,"22":1087},"isBase":true}}}, +{"id":47576,"name":"Crusader's Dragonscale Bracers","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,68,114,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67083}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":68,"2":114,"5":42,"6":50,"22":790},"isBase":true}}}, +{"id":47577,"name":"Crusader's Dragonscale Bracers","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,68,114,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67143}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":68,"2":114,"5":42,"6":50,"22":790},"isBase":true}}}, +{"id":47578,"name":"Carnivorous Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,100,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":59,"2":100,"6":45,"7":34},"isBase":true}}}, +{"id":47579,"name":"Black Chitin Bracers","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67081}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":34,"7":50,"22":790},"isBase":true}}}, +{"id":47580,"name":"Black Chitin Bracers","icon":"inv_bracer_29","type":6,"armorType":3,"stats":[0,0,108,68,34,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67137}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":34,"7":50,"22":790},"isBase":true}}}, +{"id":47581,"name":"Bracers of Swift Death","icon":"inv_bracer_23b","type":6,"armorType":2,"stats":[0,68,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67087}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":68,"2":114,"6":42,"7":50,"22":561},"isBase":true}}}, +{"id":47582,"name":"Bracers of Swift Death","icon":"inv_bracer_36a","type":6,"armorType":2,"stats":[0,68,114,0,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67139}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":68,"2":114,"6":42,"7":50,"22":561},"isBase":true}}}, +{"id":47583,"name":"Moonshadow Armguards","icon":"inv_bracer_30b","type":6,"armorType":2,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67085}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":50,"6":42,"22":561},"isBase":true}}}, +{"id":47584,"name":"Moonshadow Armguards","icon":"inv_bracer_36b","type":6,"armorType":2,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67141}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":50,"6":42,"22":561},"isBase":true}}}, +{"id":47585,"name":"Bejeweled Wizard's Bracers","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,68,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67079}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"6":42,"7":50,"22":436},"isBase":true}}}, +{"id":47586,"name":"Bejeweled Wizard's Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,108,68,0,0,42,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67145}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"6":42,"7":50,"22":436},"isBase":true}}}, +{"id":47587,"name":"Royal Moonshroud Bracers","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67065}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":50,"6":42,"22":436},"isBase":true}}}, +{"id":47588,"name":"Royal Moonshroud Bracers","icon":"inv_bracer_24b","type":6,"armorType":1,"stats":[0,0,108,68,50,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67147}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":50,"6":42,"22":436},"isBase":true}}}, +{"id":47589,"name":"Titanium Razorplate","icon":"inv_chest_plate18","type":5,"armorType":4,"stats":[112,0,203,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67093}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":203,"6":82,"7":74,"22":2486},"isBase":true}}}, +{"id":47590,"name":"Titanium Razorplate","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[112,0,203,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67132}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":203,"6":82,"7":74,"22":2486},"isBase":true}}}, +{"id":47591,"name":"Breastplate of the White Knight","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,168,0,0,0,0,0,0,91,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67091}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"9":91,"10":63,"22":2486},"isBase":true}}}, +{"id":47592,"name":"Breastplate of the White Knight","icon":"inv_chest_plate20","type":5,"armorType":4,"stats":[103,0,168,0,0,0,0,0,0,91,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67130}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"9":91,"10":63,"22":2486},"isBase":true}}}, +{"id":47593,"name":"Sunforged Breastplate","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67095}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":2486},"isBase":true}}}, +{"id":47594,"name":"Sunforged Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":67134}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":2486},"isBase":true}}}, +{"id":47595,"name":"Crusader's Dragonscale Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,161,0,0,0,112,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67082}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":161,"6":112,"7":63,"22":1805},"isBase":true}}}, +{"id":47596,"name":"Crusader's Dragonscale Breastplate","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,120,161,0,0,0,112,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67138}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":161,"6":112,"7":63,"22":1805},"isBase":true}}}, +{"id":47597,"name":"Ensorcelled Nerubian Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67080}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"7":66,"22":1805},"isBase":true}}}, +{"id":47598,"name":"Ensorcelled Nerubian Breastplate","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67136}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"7":66,"22":1805},"isBase":true}}}, +{"id":47599,"name":"Knightbane Carapace","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,112,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67086}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":82,"6":74,"22":1282},"isBase":true}}}, +{"id":47600,"name":"Knightbane Carapace","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,112,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67142}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":82,"6":74,"22":1282},"isBase":true}}}, +{"id":47601,"name":"Lunar Eclipse Robes","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67140}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"6":74,"22":1282},"isBase":true}}}, +{"id":47602,"name":"Lunar Eclipse Robes","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":67084}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"6":74,"22":1282},"isBase":true}}}, +{"id":47603,"name":"Merlin's Robe","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,112,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67066}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":66,"7":90,"22":996},"isBase":true}}}, +{"id":47604,"name":"Merlin's Robe","icon":"inv_chest_cloth_64","type":5,"armorType":1,"stats":[0,0,193,112,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67146}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":66,"7":90,"22":996},"isBase":true}}}, +{"id":47605,"name":"Royal Moonshroud Robe","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67064}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":996},"isBase":true}}}, +{"id":47606,"name":"Royal Moonshroud Robe","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":67144}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":996},"isBase":true}}}, +{"id":47607,"name":"Collar of Ceaseless Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,67,97,0,0,0,46,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":97,"6":46,"7":42},"isBase":true}}}, +{"id":47608,"name":"Acidmaw Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,85,122,0,0,63,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":122,"5":63,"8":48,"22":829},"isBase":true}}}, +{"id":47609,"name":"Gauntlets of Rising Anger","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[81,0,134,0,0,46,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":46,"6":63,"22":1496},"isBase":true}}}, +{"id":47610,"name":"Armbands of the Northern Stalker","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,67,100,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":100,"5":48,"7":39,"22":753},"isBase":true}}}, +{"id":47611,"name":"Dreadscale Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[48,0,100,0,0,39,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":48,"2":100,"5":39,"10":64,"22":1047},"isBase":true}}}, +{"id":47612,"name":"Rod of Imprisoned Souls","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,77,52,0,0,38,29,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":77,"3":52,"6":38,"7":29,"14":689},"isBase":true}}}, +{"id":47613,"name":"Shoulderpads of the Glacial Wilds","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,117,73,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":117,"3":73,"6":60,"7":52,"22":904},"isBase":true}}}, +{"id":47614,"name":"Girdle of the Impaler","icon":"inv_belt_50","type":8,"armorType":4,"stats":[81,0,134,0,0,0,58,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":58,"7":52,"22":1346},"isBase":true}}}, +{"id":47615,"name":"Belt of the Frozen Reach","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[0,0,129,89,0,0,45,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"6":45,"7":68,"22":1346},"isBase":true}}}, +{"id":47616,"name":"Shoulderguards of the Spirit Walker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,123,82,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":123,"3":82,"6":64,"7":47,"22":1291},"isBase":true}}}, +{"id":47617,"name":"Icehowl Cinch","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,119,81,0,57,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":81,"5":57,"7":60,"22":519},"isBase":true}}}, +{"id":47618,"name":"Firestorm Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,95,67,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"5":50,"6":36},"isBase":true}}}, +{"id":47619,"name":"Amulet of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,96,67,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":67,"4":45,"6":45},"isBase":true}}}, +{"id":47620,"name":"Leggings of the Demonic Messenger","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,176,112,86,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":176,"3":112,"4":86,"6":62,"22":807},"isBase":true}}}, +{"id":47621,"name":"Girdle of the Farseer","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,129,89,68,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"4":68,"6":45,"22":968},"isBase":true}}}, +{"id":47658,"name":"Brimstone Igniter","icon":"inv_wand_32","type":14,"rangedWeaponType":6,"stats":[0,0,83,58,0,39,39,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":83,"3":58,"5":39,"6":39,"14":780},"isBase":true}}}, +{"id":47663,"name":"Felspark Bindings","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,95,67,0,36,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"5":36,"7":50,"22":404},"isBase":true}}}, +{"id":47669,"name":"Belt of the Winter Solstice","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,127,81,60,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":48,"22":678},"isBase":true}}}, +{"id":47674,"name":"Helm of Thunderous Rampage","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[112,0,204,0,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":74,"7":82,"22":2020},"isBase":true}}}, +{"id":47675,"name":"Faceplate of Thunderous Rampage","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[112,0,204,0,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":74,"7":82,"22":2020},"isBase":true}}}, +{"id":47676,"name":"Dirk of the Night Watch","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,37,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":71,"5":37,"7":22},"isBase":true}}}, +{"id":47677,"name":"Faceplate of the Honorbound","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[103,0,168,0,0,0,0,0,69,111,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"8":69,"9":111,"22":2020},"isBase":true}}}, +{"id":47678,"name":"Headplate of the Honorbound","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[103,0,168,0,0,0,0,0,69,111,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"8":69,"9":111,"22":2020},"isBase":true}}}, +{"id":47679,"name":"Endurance of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[39,0,100,0,0,0,0,0,48,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":39,"2":100,"8":48,"9":67},"isBase":true}}}, +{"id":47680,"name":"Armguards of the Nether Lord","icon":"inv_bracer_29a","type":6,"armorType":4,"stats":[67,0,100,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"6":39,"7":48,"22":1047},"isBase":true}}}, +{"id":47681,"name":"Heaume of the Restless Watch","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":2020},"isBase":true}}}, +{"id":47682,"name":"Helm of the Restless Watch","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":2020},"isBase":true}}}, +{"id":47683,"name":"Sentinel Scouting Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,89,106,0,0,0,81,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":106,"6":81,"7":39,"22":1184},"isBase":true}}}, +{"id":47684,"name":"Coif of the Brooding Dragon","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,120,161,0,0,0,120,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":161,"6":120,"7":55,"22":1467},"isBase":true}}}, +{"id":47685,"name":"Helm of the Brooding Dragon","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,120,161,0,0,0,120,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":161,"6":120,"7":55,"22":1467},"isBase":true}}}, +{"id":47686,"name":"Helm of Inner Warmth","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"7":66,"22":1467},"isBase":true}}}, +{"id":47687,"name":"Headguard of Inner Warmth","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,90,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"7":66,"22":1467},"isBase":true}}}, +{"id":47688,"name":"Mask of Lethal Intent","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,120,192,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":82,"6":74,"22":1042},"isBase":true}}}, +{"id":47689,"name":"Hood of Lethal Intent","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,192,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":82,"6":74,"22":1042},"isBase":true}}}, +{"id":47690,"name":"Helm of Abundant Growth","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,82,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"7":74,"22":1042},"isBase":true}}}, +{"id":47691,"name":"Mask of Abundant Growth","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,82,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"7":74,"22":1042},"isBase":true}}}, +{"id":47692,"name":"Hood of Smoldering Aftermath","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":74,"7":82,"22":809},"isBase":true}}}, +{"id":47693,"name":"Hood of Fiery Aftermath","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":74,"7":82,"22":809},"isBase":true}}}, +{"id":47694,"name":"Helm of Clouded Sight","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":809},"isBase":true}}}, +{"id":47695,"name":"Hood of Clouded Sight","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,90,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":90,"6":66,"22":809},"isBase":true}}}, +{"id":47696,"name":"Shoulderplates of Trembling Rage","icon":"inv_shoulder_88","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":47697,"name":"Pauldrons of Trembling Rage","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":47698,"name":"Shoulderplates of Enduring Order","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1864},"isBase":true}}}, +{"id":47699,"name":"Shoulderguards of Enduring Order","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1864},"isBase":true}}}, +{"id":47700,"name":"Loop of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[67,0,100,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"9":52,"23":140},"isBase":true}}}, +{"id":47701,"name":"Shoulderplates of the Cavalier","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1864},"isBase":true}}}, +{"id":47702,"name":"Pauldrons of the Cavalier","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1864},"isBase":true}}}, +{"id":47703,"name":"Planestalker Signet","icon":"inv_jewelry_ring_61","type":11,"stats":[0,61,108,0,0,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":61,"2":108,"5":38,"6":39},"isBase":true}}}, +{"id":47704,"name":"Epaulets of the Devourer","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":120,"6":93,"7":53,"22":1354},"isBase":true}}}, +{"id":47705,"name":"Pauldrons of the Devourer","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":120,"6":93,"7":53,"22":1354},"isBase":true}}}, +{"id":47706,"name":"Shoulders of the Groundbreaker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":68,"6":59,"22":1354},"isBase":true}}}, +{"id":47707,"name":"Mantle of the Groundbreaker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,68,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":68,"6":59,"22":1354},"isBase":true}}}, +{"id":47708,"name":"Duskstalker Shoulderpads","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,93,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":67,"7":59,"22":962},"isBase":true}}}, +{"id":47709,"name":"Duskstalker Pauldrons","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,93,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":67,"7":59,"22":962},"isBase":true}}}, +{"id":47710,"name":"Epaulets of the Fateful Accord","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":962},"isBase":true}}}, +{"id":47711,"name":"Girdle of the Nether Champion","icon":"inv_belt_48a","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"9":78,"10":30,"22":1346},"isBase":true}}}, +{"id":47712,"name":"Shoulders of the Fateful Accord","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":962},"isBase":true}}}, +{"id":47713,"name":"Mantle of Catastrophic Emanation","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":67,"6":59,"22":747},"isBase":true}}}, +{"id":47714,"name":"Pauldrons of Catastrophic Emanation","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":67,"6":59,"22":747},"isBase":true}}}, +{"id":47715,"name":"Pauldrons of Revered Mortality","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":747},"isBase":true}}}, +{"id":47716,"name":"Mantle of Revered Mortality","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":747},"isBase":true}}}, +{"id":47717,"name":"Faceplate of the Silver Champion","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[104,0,169,0,0,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":169,"6":59,"7":76,"22":1944},"isBase":true}}}, +{"id":47718,"name":"Helm of the Silver Ranger","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,96,181,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":56,"6":80,"22":1399},"isBase":true}}}, +{"id":47719,"name":"Gloves of the Silver Assassin","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,85,126,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":126,"6":54,"7":54,"22":753},"isBase":true}}}, +{"id":47720,"name":"Pauldrons of the Silver Defender","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[81,0,134,0,0,0,0,0,0,50,58,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"9":50,"10":58,"22":1795},"isBase":true}}}, +{"id":47721,"name":"Sandals of the Silver Magus","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,126,85,0,40,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"5":40,"6":64,"22":634},"isBase":true}}}, +{"id":47724,"name":"Blade of the Silver Disciple","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":2,"stats":[0,0,74,0,0,0,32,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":74,"6":32,"7":52,"14":689},"isBase":true}}}, +{"id":47725,"name":"Victor's Call","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"8":83},"isBase":true}}}, +{"id":47726,"name":"Talisman of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"6":114},"isBase":true}}}, +{"id":47727,"name":"Fervor of the Frostborn","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"9":114},"isBase":true}}}, +{"id":47728,"name":"Binding Light","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"4":114},"isBase":true}}}, +{"id":47729,"name":"Bloodshed Band","icon":"inv_jewelry_ring_71","type":11,"stats":[75,0,113,0,0,44,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":75,"2":113,"5":44,"6":54},"isBase":true}}}, +{"id":47730,"name":"Dexterous Brightstone Ring","icon":"inv_jewelry_ring_ahnqiraj_01","type":11,"stats":[0,76,114,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":114,"6":50,"7":50},"isBase":true}}}, +{"id":47731,"name":"Clutch of Fortification","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[76,0,114,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":76,"2":114,"9":60,"23":160},"isBase":true}}}, +{"id":47732,"name":"Band of the Invoker","icon":"inv_jewelry_ring_54","type":11,"stats":[0,0,108,76,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"4":50,"7":50},"isBase":true}}}, +{"id":47733,"name":"Heartmender Circle","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,109,76,50,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":50,"6":50},"isBase":true}}}, +{"id":47734,"name":"Mark of Supremacy","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"5":128},"isBase":true}}}, +{"id":47735,"name":"Glyph of Indomitability","icon":"inv_spiritshard_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,512,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"23":512},"isBase":true}}}, +{"id":47736,"name":"Icefall Blade","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,72,0,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":72,"6":36,"7":32},"isBase":true}}}, +{"id":47737,"name":"Reckoning","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,112,172,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"1":112,"2":172,"6":86,"7":62},"isBase":true}}}, +{"id":47738,"name":"Sabatons of the Lingering Vortex","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[60,0,134,0,0,40,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":60,"2":134,"5":40,"9":85,"22":1645},"isBase":true}}}, +{"id":47739,"name":"Armor of Shifting Shadows","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,118,152,0,0,0,81,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":118,"2":152,"6":81,"7":59,"22":1205},"isBase":true}}}, +{"id":47740,"name":"The Diplomat","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,117,219,0,0,66,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":802,"weaponDamageMax":1490,"weaponSpeed":2.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":802,"weaponDamageMax":1490,"stats":{"1":117,"2":219,"5":66,"6":84},"isBase":true}}}, +{"id":47741,"name":"Baelgun's Heavy Crossbow","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,120,181,0,0,0,84,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":949,"weaponDamageMax":1424,"weaponSpeed":2.9,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":949,"weaponDamageMax":1424,"stats":{"1":120,"2":181,"6":84,"7":74},"isBase":true}}}, +{"id":47742,"name":"Chalice of Benedictus","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,59,0,37,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":91,"3":59,"5":37,"7":45},"isBase":true}}}, +{"id":47743,"name":"Enlightenment","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,153,0,0,0,113,108,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":507,"weaponDamageMax":761,"weaponSpeed":3.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":507,"weaponDamageMax":761,"stats":{"2":153,"6":113,"7":108,"14":689},"isBase":true}}}, +{"id":47744,"name":"Gloves of the Azure Prophet","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,127,81,49,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":49,"6":62,"22":1076},"isBase":true}}}, +{"id":47745,"name":"Gloves of Looming Shadow","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,116,82,0,44,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":116,"3":82,"5":44,"7":60,"22":577},"isBase":true}}}, +{"id":47746,"name":"Helm of the Snowy Grotto","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,146,104,78,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":146,"3":104,"4":78,"6":62,"22":979},"isBase":true}}}, +{"id":47747,"name":"Darkbane Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,91,59,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":91,"3":59,"5":36,"6":46},"isBase":true}}}, +{"id":47748,"name":"Khadgar's Hood of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"5":64,"7":72,"22":750},"isBase":true}}}, +{"id":47749,"name":"Khadgar's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":64,"6":80,"22":923},"isBase":true}}}, +{"id":47750,"name":"Khadgar's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":807},"isBase":true}}}, +{"id":47751,"name":"Khadgar's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":692},"isBase":true}}}, +{"id":47752,"name":"Khadgar's Gauntlets of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,127,81,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"6":60,"7":52,"22":577},"isBase":true}}}, +{"id":47753,"name":"Khadgar's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":67,"7":59,"22":622},"isBase":true}}}, +{"id":47754,"name":"Khadgar's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":74,"7":82,"22":809},"isBase":true}}}, +{"id":47755,"name":"Khadgar's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"6":90,"22":871},"isBase":true}}}, +{"id":47756,"name":"Khadgar's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":74,"6":90,"22":996},"isBase":true}}}, +{"id":47757,"name":"Khadgar's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":747},"isBase":true}}}, +{"id":47758,"name":"Khadgar's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"6":68,"7":76,"22":803},"isBase":true}}}, +{"id":47759,"name":"Khadgar's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":86,"6":102,"22":1071},"isBase":true}}}, +{"id":47760,"name":"Khadgar's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":86,"6":102,"22":937},"isBase":true}}}, +{"id":47761,"name":"Khadgar's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":86,"7":94,"22":870},"isBase":true}}}, +{"id":47762,"name":"Khadgar's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,162,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"6":76,"7":68,"22":669},"isBase":true}}}, +{"id":47763,"name":"Sunstrider's Gauntlets of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,162,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"6":76,"7":68,"22":669},"isBase":true}}}, +{"id":47764,"name":"Sunstrider's Hood of Triumph","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,218,129,0,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":86,"7":94,"22":870},"isBase":true}}}, +{"id":47765,"name":"Sunstrider's Leggings of Triumph","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,218,137,86,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":86,"6":102,"22":937},"isBase":true}}}, +{"id":47766,"name":"Sunstrider's Robe of Triumph","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,218,137,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":86,"6":102,"22":1071},"isBase":true}}}, +{"id":47767,"name":"Sunstrider's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"6":68,"7":76,"22":803},"isBase":true}}}, +{"id":47768,"name":"Sunstrider's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":747},"isBase":true}}}, +{"id":47769,"name":"Sunstrider's Robe of Triumph","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,193,120,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":74,"6":90,"22":996},"isBase":true}}}, +{"id":47770,"name":"Sunstrider's Leggings of Triumph","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"6":90,"22":871},"isBase":true}}}, +{"id":47771,"name":"Sunstrider's Hood of Triumph","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,193,112,0,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":74,"7":82,"22":809},"isBase":true}}}, +{"id":47772,"name":"Sunstrider's Gauntlets of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":67,"7":59,"22":622},"isBase":true}}}, +{"id":47773,"name":"Sunstrider's Gauntlets of Conquest","icon":"inv_gauntlets_56","type":7,"armorType":1,"stats":[0,0,127,81,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"6":60,"7":52,"22":577},"isBase":true}}}, +{"id":47774,"name":"Sunstrider's Hood of Conquest","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,173,97,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":64,"7":72,"22":750},"isBase":true}}}, +{"id":47775,"name":"Sunstrider's Leggings of Conquest","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":807},"isBase":true}}}, +{"id":47776,"name":"Sunstrider's Robe of Conquest","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":64,"6":80,"22":923},"isBase":true}}}, +{"id":47777,"name":"Sunstrider's Shoulderpads of Conquest","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":692},"isBase":true}}}, +{"id":47778,"name":"Kel'Thuzad's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":74,"6":82,"22":809},"isBase":true}}}, +{"id":47779,"name":"Kel'Thuzad's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"6":82,"22":996},"isBase":true}}}, +{"id":47780,"name":"Kel'Thuzad's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":90,"7":74,"22":871},"isBase":true}}}, +{"id":47781,"name":"Kel'Thuzad's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"6":67,"22":747},"isBase":true}}}, +{"id":47782,"name":"Kel'Thuzad's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"6":67,"22":622},"isBase":true}}}, +{"id":47783,"name":"Kel'Thuzad's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,127,81,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":47784,"name":"Kel'Thuzad's Hood of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":64,"6":72,"22":750},"isBase":true}}}, +{"id":47785,"name":"Kel'Thuzad's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":80,"7":64,"22":807},"isBase":true}}}, +{"id":47786,"name":"Kel'Thuzad's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"6":72,"22":923},"isBase":true}}}, +{"id":47787,"name":"Kel'Thuzad's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,127,81,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":52,"6":60,"22":692},"isBase":true}}}, +{"id":47788,"name":"Kel'Thuzad's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,162,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"5":68,"6":76,"22":669},"isBase":true}}}, +{"id":47789,"name":"Kel'Thuzad's Hood of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":86,"6":94,"22":870},"isBase":true}}}, +{"id":47790,"name":"Kel'Thuzad's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,0,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":102,"7":86,"22":937},"isBase":true}}}, +{"id":47791,"name":"Kel'Thuzad's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":94,"6":94,"22":1071},"isBase":true}}}, +{"id":47792,"name":"Kel'Thuzad's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,162,106,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"6":76,"22":803},"isBase":true}}}, +{"id":47793,"name":"Gul'dan's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,162,106,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"6":76,"22":803},"isBase":true}}}, +{"id":47794,"name":"Gul'dan's Robe of Triumph","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,218,137,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":94,"6":94,"22":1071},"isBase":true}}}, +{"id":47795,"name":"Gul'dan's Leggings of Triumph","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,218,137,0,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":102,"7":86,"22":937},"isBase":true}}}, +{"id":47796,"name":"Gul'dan's Hood of Triumph","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":86,"6":94,"22":870},"isBase":true}}}, +{"id":47797,"name":"Gul'dan's Gloves of Triumph","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,162,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"5":68,"6":76,"22":669},"isBase":true}}}, +{"id":47798,"name":"Gul'dan's Shoulderpads of Conquest","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,127,81,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":52,"6":60,"22":692},"isBase":true}}}, +{"id":47799,"name":"Gul'dan's Robe of Conquest","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"6":72,"22":923},"isBase":true}}}, +{"id":47800,"name":"Gul'dan's Leggings of Conquest","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":80,"7":64,"22":807},"isBase":true}}}, +{"id":47801,"name":"Gul'dan's Hood of Conquest","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,172,96,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":64,"6":72,"22":750},"isBase":true}}}, +{"id":47802,"name":"Gul'dan's Gloves of Conquest","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,127,81,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":47803,"name":"Gul'dan's Gloves of Triumph","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"6":67,"22":622},"isBase":true}}}, +{"id":47804,"name":"Gul'dan's Hood of Triumph","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":74,"6":82,"22":809},"isBase":true}}}, +{"id":47805,"name":"Gul'dan's Leggings of Triumph","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":90,"7":74,"22":871},"isBase":true}}}, +{"id":47806,"name":"Gul'dan's Robe of Triumph","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,193,120,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"6":82,"22":996},"isBase":true}}}, +{"id":47807,"name":"Gul'dan's Shoulderpads of Triumph","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,144,93,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"6":67,"22":747},"isBase":true}}}, +{"id":47808,"name":"The Lion's Maw","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":52,"2":73,"6":38,"7":29},"isBase":true}}}, +{"id":47809,"name":"Argent Resolve","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,73,0,52,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":73,"4":52,"6":52,"14":689},"isBase":true}}}, +{"id":47810,"name":"Crusader's Glory","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"0":52,"2":77,"9":35,"23":128},"isBase":true}}}, +{"id":47811,"name":"Chestguard of the Warden","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,90,56,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":169,"9":90,"10":56,"22":2393},"isBase":true}}}, +{"id":47812,"name":"Vigilant Ward","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,59,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":82,"3":59,"4":48,"6":39,"22":7117},"isBase":true}}}, +{"id":47813,"name":"Helmet of the Crypt Lord","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,160,104,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":160,"3":104,"6":84,"7":50,"22":1399},"isBase":true}}}, +{"id":47814,"name":"Westfall Saber","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[0,52,75,0,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"1":52,"2":75,"6":29,"7":38},"isBase":true}}}, +{"id":47815,"name":"Cold Convergence","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,192,0,0,0,88,116,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":343,"weaponDamageMax":516,"weaponSpeed":2.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":343,"weaponDamageMax":516,"stats":{"2":192,"6":88,"7":116,"14":690},"isBase":true}}}, +{"id":47816,"name":"The Grinder","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,48,62,0,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":48,"2":62,"6":35,"7":30},"isBase":true}}}, +{"id":47829,"name":"Pauldrons of the Timeless Hunter","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,89,99,0,0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":99,"6":79,"7":42,"22":1291},"isBase":true}}}, +{"id":47830,"name":"Legplates of the Silver Hand","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[104,0,168,0,0,0,57,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":168,"6":57,"7":89,"22":2094},"isBase":true}}}, +{"id":47832,"name":"Spaulders of the Snow Bandit","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,84,120,0,0,0,51,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":84,"2":120,"6":51,"7":61,"22":904},"isBase":true}}}, +{"id":47834,"name":"Fordragon Blades","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"1":104,"2":169,"6":86,"7":62},"isBase":true}}}, +{"id":47835,"name":"Bulwark of the Royal Guard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[51,0,100,0,0,0,0,0,0,34,49,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":51,"2":100,"9":34,"10":49,"22":7117},"isBase":true}}}, +{"id":47836,"name":"Legplates of the Immortal Spider","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[0,0,161,113,70,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":113,"4":70,"6":73,"22":2094},"isBase":true}}}, +{"id":47837,"name":"Cinch of the Undying","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,121,89,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":89,"4":64,"6":40,"22":519},"isBase":true}}}, +{"id":47838,"name":"Vestments of the Sleepless","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,166,112,0,86,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":166,"3":112,"5":86,"6":65,"22":923},"isBase":true}}}, +{"id":47849,"name":"Collar of Unending Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,67,97,0,0,0,46,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":97,"6":46,"7":42},"isBase":true}}}, +{"id":47850,"name":"Bracers of the Northern Stalker","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,67,100,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":100,"5":48,"7":39,"22":753},"isBase":true}}}, +{"id":47851,"name":"Gauntlets of Mounting Anger","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,46,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":46,"6":63,"22":1496},"isBase":true}}}, +{"id":47852,"name":"Dreadscale Bracers","icon":"inv_bracer_32b","type":6,"armorType":4,"stats":[48,0,100,0,0,39,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":48,"2":100,"5":39,"10":64,"22":1047},"isBase":true}}}, +{"id":47853,"name":"Acidmaw Treads","icon":"inv_boots_leather_03a","type":10,"armorType":2,"stats":[0,85,122,0,0,63,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":122,"5":63,"8":48,"22":829},"isBase":true}}}, +{"id":47854,"name":"Gormok's Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,100,0,0,0,45,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":59,"2":100,"6":45,"7":34},"isBase":true}}}, +{"id":47855,"name":"Icehowl Binding","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,119,81,0,57,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":119,"3":81,"5":57,"7":60,"22":519},"isBase":true}}}, +{"id":47856,"name":"Scepter of Imprisoned Souls","icon":"inv_wand_31","type":14,"rangedWeaponType":6,"stats":[0,0,77,52,0,0,38,29,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":77,"3":52,"6":38,"7":29,"14":689},"isBase":true}}}, +{"id":47857,"name":"Pauldrons of the Glacial Wilds","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,117,73,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":117,"3":73,"6":60,"7":52,"22":904},"isBase":true}}}, +{"id":47858,"name":"Girdle of the Frozen Reach","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,129,89,0,0,45,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"6":45,"7":68,"22":1346},"isBase":true}}}, +{"id":47859,"name":"Belt of the Impaler","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[81,0,134,0,0,0,58,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":58,"7":52,"22":1346},"isBase":true}}}, +{"id":47860,"name":"Pauldrons of the Spirit Walker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,123,82,0,0,64,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":123,"3":82,"6":64,"7":47,"22":1291},"isBase":true}}}, +{"id":47861,"name":"Felspark Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,95,67,0,36,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"5":36,"7":50,"22":404},"isBase":true}}}, +{"id":47862,"name":"Firestorm Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,95,67,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"5":50,"6":36},"isBase":true}}}, +{"id":47863,"name":"Belt of the Bloodhoof Emissary","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,127,81,60,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,678,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":48,"22":678},"isBase":true}}}, +{"id":47864,"name":"Pendant of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,96,67,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":67,"4":45,"6":45},"isBase":true}}}, +{"id":47865,"name":"Legwraps of the Demonic Messenger","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,176,112,86,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":176,"3":112,"4":86,"6":62,"22":807},"isBase":true}}}, +{"id":47866,"name":"Darkspear Ritual Binding","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,129,89,68,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"4":68,"6":45,"22":968},"isBase":true}}}, +{"id":47867,"name":"Warsong Poacher's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,89,106,0,0,0,81,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":106,"6":81,"7":39,"22":1184},"isBase":true}}}, +{"id":47868,"name":"Planestalker Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,61,108,0,0,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":61,"2":108,"5":38,"6":39},"isBase":true}}}, +{"id":47869,"name":"Armplates of the Nether Lord","icon":"inv_bracer_26","type":6,"armorType":4,"stats":[67,0,100,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"6":39,"7":48,"22":1047},"isBase":true}}}, +{"id":47870,"name":"Belt of the Nether Champion","icon":"inv_belt_50","type":8,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,78,30,0,0,0,0,0,0,0,0,0,0,0,1346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"9":78,"10":30,"22":1346},"isBase":true}}}, +{"id":47871,"name":"Orcish Deathblade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,52,71,0,0,37,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":71,"5":37,"7":22},"isBase":true}}}, +{"id":47872,"name":"Fortitude of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[39,0,100,0,0,0,0,0,48,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":39,"2":100,"8":48,"9":67},"isBase":true}}}, +{"id":47873,"name":"Sunreaver Magus' Sandals","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,126,85,0,40,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":126,"3":85,"5":40,"6":64,"22":634},"isBase":true}}}, +{"id":47874,"name":"Sunreaver Disciple's Blade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,0,74,0,0,0,32,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":74,"6":32,"7":52,"14":689},"isBase":true}}}, +{"id":47875,"name":"Sunreaver Ranger's Helm","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,96,181,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":56,"6":80,"22":1399},"isBase":true}}}, +{"id":47876,"name":"Sunreaver Champion's Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[104,0,169,0,0,0,59,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":169,"6":59,"7":76,"22":1944},"isBase":true}}}, +{"id":47877,"name":"Sunreaver Defender's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,0,0,0,0,50,58,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"9":50,"10":58,"22":1795},"isBase":true}}}, +{"id":47878,"name":"Sunreaver Assassin's Gloves","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,85,126,0,0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":85,"2":126,"6":54,"7":54,"22":753},"isBase":true}}}, +{"id":47879,"name":"Fetish of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"6":114},"isBase":true}}}, +{"id":47880,"name":"Binding Stone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"4":114},"isBase":true}}}, +{"id":47881,"name":"Vengeance of the Forsaken","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"8":83},"isBase":true}}}, +{"id":47882,"name":"Eitrigg's Oath","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"9":114},"isBase":true}}}, +{"id":47883,"name":"Widebarrel Flintlock","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,117,219,0,0,66,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":802,"weaponDamageMax":1490,"weaponSpeed":2.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":802,"weaponDamageMax":1490,"stats":{"1":117,"2":219,"5":66,"6":84},"isBase":true}}}, +{"id":47884,"name":"Edge of Agony","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,112,172,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"1":112,"2":172,"6":86,"7":62},"isBase":true}}}, +{"id":47885,"name":"Greaves of the Lingering Vortex","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[60,0,134,0,0,40,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":60,"2":134,"5":40,"9":85,"22":1645},"isBase":true}}}, +{"id":47886,"name":"Nemesis Blade","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,52,72,0,0,0,36,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":72,"6":36,"7":32},"isBase":true}}}, +{"id":47887,"name":"Vest of Shifting Shadows","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,118,152,0,0,0,81,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":118,"2":152,"6":81,"7":59,"22":1205},"isBase":true}}}, +{"id":47888,"name":"Band of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[67,0,100,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"9":52,"23":140},"isBase":true}}}, +{"id":47889,"name":"Looming Shadow Wraps","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,116,82,0,44,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":116,"3":82,"5":44,"7":60,"22":577},"isBase":true}}}, +{"id":47890,"name":"Darkbane Amulet","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,91,59,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":91,"3":59,"5":36,"6":46},"isBase":true}}}, +{"id":47891,"name":"Helm of the High Mesa","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,146,104,78,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":146,"3":104,"4":78,"6":62,"22":979},"isBase":true}}}, +{"id":47892,"name":"Illumination","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,153,0,0,0,113,108,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":507,"weaponDamageMax":761,"weaponSpeed":3.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":507,"weaponDamageMax":761,"stats":{"2":153,"6":113,"7":108,"14":689},"isBase":true}}}, +{"id":47893,"name":"Sen'jin Ritualist Gloves","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,127,81,49,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":49,"6":62,"22":1076},"isBase":true}}}, +{"id":47894,"name":"Mace of the Earthborn Chieftain","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,73,0,52,0,52,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":73,"4":52,"6":52,"14":689},"isBase":true}}}, +{"id":47895,"name":"Pride of the Kor'kron","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,82,59,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":82,"3":59,"4":48,"6":39,"22":7117},"isBase":true}}}, +{"id":47896,"name":"Stoneskin Chestplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,90,56,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":169,"9":90,"10":56,"22":2393},"isBase":true}}}, +{"id":47897,"name":"Helm of the Crypt Lord","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,160,104,0,0,84,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":160,"3":104,"6":84,"7":50,"22":1399},"isBase":true}}}, +{"id":47898,"name":"Frostblade Hatchet","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,38,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":52,"2":73,"6":38,"7":29},"isBase":true}}}, +{"id":47899,"name":"Ardent Guard","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"0":52,"2":77,"9":35,"23":128},"isBase":true}}}, +{"id":47900,"name":"Perdition","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,192,0,0,0,88,116,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":343,"weaponDamageMax":516,"weaponSpeed":2.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":343,"weaponDamageMax":516,"stats":{"2":192,"6":88,"7":116,"14":690},"isBase":true}}}, +{"id":47901,"name":"Pauldrons of the Shadow Hunter","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,89,99,0,0,0,79,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":99,"6":79,"7":42,"22":1291},"isBase":true}}}, +{"id":47902,"name":"Legplates of Redeemed Blood","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,168,0,0,0,57,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":168,"6":57,"7":89,"22":2094},"isBase":true}}}, +{"id":47903,"name":"Forsaken Bonecarver","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[0,52,75,0,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"1":52,"2":75,"6":29,"7":38},"isBase":true}}}, +{"id":47904,"name":"Shoulderpads of the Snow Bandit","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,84,120,0,0,0,51,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":84,"2":120,"6":51,"7":61,"22":904},"isBase":true}}}, +{"id":47905,"name":"Blackhorn Bludgeon","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,48,62,0,0,0,35,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":48,"2":62,"6":35,"7":30},"isBase":true}}}, +{"id":47906,"name":"Robes of the Sleepless","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,166,112,0,86,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":166,"3":112,"5":86,"6":65,"22":923},"isBase":true}}}, +{"id":47907,"name":"Darkmaw Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,120,181,0,0,0,84,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":949,"weaponDamageMax":1424,"weaponSpeed":2.9,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":949,"weaponDamageMax":1424,"stats":{"1":120,"2":181,"6":84,"7":74},"isBase":true}}}, +{"id":47908,"name":"Sunwalker Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,161,113,70,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":161,"3":113,"4":70,"6":73,"22":2094},"isBase":true}}}, +{"id":47909,"name":"Belt of the Eternal","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,121,89,64,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":121,"3":89,"4":64,"6":40,"22":519},"isBase":true}}}, +{"id":47910,"name":"Aegis of the Coliseum","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[51,0,100,0,0,0,0,0,0,34,49,0,0,0,0,0,0,0,0,0,0,0,7117,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":51,"2":100,"9":34,"10":49,"22":7117},"isBase":true}}}, +{"id":47911,"name":"Anguish","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"1":104,"2":169,"6":86,"7":62},"isBase":true}}}, +{"id":47913,"name":"Lightbane Focus","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,59,0,37,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":91,"3":59,"5":37,"7":45},"isBase":true}}}, +{"id":47914,"name":"Velen's Cowl of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":72,"6":64,"22":750},"isBase":true}}}, +{"id":47915,"name":"Collar of Ceaseless Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,70,107,0,0,0,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":107,"6":52,"7":40},"isBase":true}}}, +{"id":47916,"name":"Armbands of the Northern Stalker","icon":"inv_bracer_32a","type":6,"armorType":3,"stats":[0,70,114,0,0,50,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":114,"5":50,"7":40,"22":790},"isBase":true}}}, +{"id":47917,"name":"Gauntlets of Rising Anger","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[85,0,151,0,0,45,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":85,"2":151,"5":45,"6":71,"22":1554},"isBase":true}}}, +{"id":47918,"name":"Dreadscale Armguards","icon":"inv_bracer_32","type":6,"armorType":4,"stats":[50,0,102,0,0,44,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":50,"2":102,"5":44,"10":68,"22":1087},"isBase":true}}}, +{"id":47919,"name":"Acidmaw Boots","icon":"inv_boots_leather_02","type":10,"armorType":2,"stats":[0,93,130,0,0,69,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":130,"5":69,"8":51,"22":881},"isBase":true}}}, +{"id":47920,"name":"Carnivorous Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,113,0,0,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":59,"2":113,"6":41,"7":42},"isBase":true}}}, +{"id":47921,"name":"Icehowl Cinch","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,129,85,0,61,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":129,"3":85,"5":61,"7":67,"22":560},"isBase":true}}}, +{"id":47922,"name":"Rod of Imprisoned Souls","icon":"inv_wand_15","type":14,"rangedWeaponType":6,"stats":[0,0,87,58,0,0,43,32,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":87,"3":58,"6":43,"7":32,"14":780},"isBase":true}}}, +{"id":47923,"name":"Shoulderpads of the Glacial Wilds","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,133,85,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":133,"3":85,"6":67,"7":59,"22":962},"isBase":true}}}, +{"id":47924,"name":"Belt of the Frozen Reach","icon":"inv_belt_49b","type":8,"armorType":4,"stats":[0,0,142,93,0,0,45,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":142,"3":93,"6":45,"7":77,"22":1398},"isBase":true}}}, +{"id":47925,"name":"Girdle of the Impaler","icon":"inv_belt_50","type":8,"armorType":4,"stats":[85,0,151,0,0,0,63,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":85,"2":151,"6":63,"7":54,"22":1398},"isBase":true}}}, +{"id":47926,"name":"Shoulderguards of the Spirit Walker","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,135,85,0,0,72,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":135,"3":85,"6":72,"7":49,"22":1354},"isBase":true}}}, +{"id":47927,"name":"Felspark Bindings","icon":"inv_bracer_37","type":6,"armorType":1,"stats":[0,0,107,68,0,33,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":107,"3":68,"5":33,"7":56,"22":436},"isBase":true}}}, +{"id":47928,"name":"Firestorm Ring","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,107,68,0,56,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":107,"3":68,"5":56,"6":33},"isBase":true}}}, +{"id":47929,"name":"Belt of the Winter Solstice","icon":"inv_belt_38a","type":8,"armorType":2,"stats":[0,0,144,85,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":64,"6":51,"22":721},"isBase":true}}}, +{"id":47930,"name":"Amulet of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,108,68,42,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":42,"6":50},"isBase":true}}}, +{"id":47931,"name":"Leggings of the Demonic Messenger","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,186,128,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":186,"3":128,"4":89,"6":71,"22":871},"isBase":true}}}, +{"id":47932,"name":"Girdle of the Farseer","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,133,93,77,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":133,"3":93,"4":77,"6":51,"22":1016},"isBase":true}}}, +{"id":47933,"name":"Sentinel Scouting Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,101,114,0,0,0,87,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":114,"6":87,"7":39,"22":1241},"isBase":true}}}, +{"id":47934,"name":"Planestalker Signet","icon":"inv_jewelry_ring_61","type":11,"stats":[0,70,122,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":122,"5":44,"6":44},"isBase":true}}}, +{"id":47935,"name":"Armguards of the Nether Lord","icon":"inv_bracer_29a","type":6,"armorType":4,"stats":[68,0,114,0,0,0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":68,"2":114,"6":36,"7":54,"22":1087},"isBase":true}}}, +{"id":47936,"name":"Velen's Robe of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,172,104,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"6":72,"22":923},"isBase":true}}}, +{"id":47937,"name":"Girdle of the Nether Champion","icon":"inv_belt_49c","type":8,"armorType":4,"stats":[97,0,139,0,0,0,0,0,0,84,34,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":97,"2":139,"9":84,"10":34,"22":1398},"isBase":true}}}, +{"id":47938,"name":"Dirk of the Night Watch","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,58,82,0,0,42,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":82,"5":42,"7":26},"isBase":true}}}, +{"id":47939,"name":"Endurance of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[40,0,114,0,0,0,0,0,46,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":40,"2":114,"8":46,"9":72},"isBase":true}}}, +{"id":47940,"name":"Sandals of the Silver Magus","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,130,89,0,47,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":130,"3":89,"5":47,"6":72,"22":684},"isBase":true}}}, +{"id":47941,"name":"Blade of the Silver Disciple","icon":"inv_weapon_shortblade_99","type":13,"weaponType":2,"handType":2,"stats":[0,0,84,0,0,0,37,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":84,"6":37,"7":58,"14":780},"isBase":true}}}, +{"id":47942,"name":"Helm of the Silver Ranger","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,112,204,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":66,"6":90,"22":1467},"isBase":true}}}, +{"id":47943,"name":"Faceplate of the Silver Champion","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[120,0,191,0,0,0,69,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":191,"6":69,"7":86,"22":2020},"isBase":true}}}, +{"id":47944,"name":"Pauldrons of the Silver Defender","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[91,0,139,0,0,0,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":91,"2":139,"9":57,"10":63,"22":1864},"isBase":true}}}, +{"id":47945,"name":"Gloves of the Silver Assassin","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,97,118,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":97,"2":118,"6":61,"7":61,"22":801},"isBase":true}}}, +{"id":47946,"name":"Talisman of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"6":126},"isBase":true}}}, +{"id":47947,"name":"Binding Light","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"4":126},"isBase":true}}}, +{"id":47948,"name":"Victor's Call","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"8":83},"isBase":true}}}, +{"id":47949,"name":"Fervor of the Frostborn","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"9":126},"isBase":true}}}, +{"id":47950,"name":"The Diplomat","icon":"inv_weapon_rifle_35","type":14,"rangedWeaponType":3,"stats":[0,133,248,0,0,76,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"stats":{"1":133,"2":248,"5":76,"6":94},"isBase":true}}}, +{"id":47951,"name":"Reckoning","icon":"inv_sword_141","type":13,"weaponType":9,"handType":4,"stats":[0,120,193,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":120,"2":193,"6":97,"7":63},"isBase":true}}}, +{"id":47952,"name":"Sabatons of the Lingering Vortex","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[64,0,151,0,0,47,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":64,"2":151,"5":47,"9":84,"22":1709},"isBase":true}}}, +{"id":47953,"name":"Icefall Blade","icon":"inv_weapon_shortblade_95","type":13,"weaponType":2,"handType":2,"stats":[0,52,66,0,0,0,41,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":52,"2":66,"6":41,"7":36},"isBase":true}}}, +{"id":47954,"name":"Armor of Shifting Shadows","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,126,162,0,0,0,93,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":126,"2":162,"6":93,"7":67,"22":1282},"isBase":true}}}, +{"id":47955,"name":"Loop of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[64,0,114,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":64,"2":114,"9":55,"23":152},"isBase":true}}}, +{"id":47956,"name":"Gloves of Looming Shadow","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,132,93,0,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":132,"3":93,"5":51,"7":67,"22":622},"isBase":true}}}, +{"id":47957,"name":"Darkbane Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,104,68,0,42,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":104,"3":68,"5":42,"6":52},"isBase":true}}}, +{"id":47958,"name":"Chalice of Benedictus","icon":"inv_offhand_pvealliance_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,104,68,0,43,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":104,"3":68,"5":43,"7":51},"isBase":true}}}, +{"id":47959,"name":"Helm of the Snowy Grotto","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,167,120,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":167,"3":120,"4":89,"6":71,"22":1042},"isBase":true}}}, +{"id":47960,"name":"Enlightenment","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,163,0,0,0,122,117,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":576,"weaponDamageMax":865,"weaponSpeed":3.1,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":576,"weaponDamageMax":865,"stats":{"2":163,"6":122,"7":117,"14":777},"isBase":true}}}, +{"id":47961,"name":"Gloves of the Azure Prophet","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,85,46,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":46,"6":70,"22":1128},"isBase":true}}}, +{"id":47962,"name":"Argent Resolve","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,82,0,50,0,50,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":82,"4":50,"6":50,"14":780},"isBase":true}}}, +{"id":47963,"name":"Vigilant Ward","icon":"inv_shield_69","type":13,"weaponType":7,"handType":3,"stats":[0,0,95,68,54,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":95,"3":68,"4":54,"6":44,"22":7276},"isBase":true}}}, +{"id":47964,"name":"Chestguard of the Warden","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,95,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":95,"10":63,"22":2486},"isBase":true}}}, +{"id":47965,"name":"Helmet of the Crypt Lord","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,181,120,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":120,"6":94,"7":60,"22":1467},"isBase":true}}}, +{"id":47966,"name":"The Lion's Maw","icon":"inv_axe_105","type":13,"weaponType":1,"handType":2,"stats":[0,50,83,0,0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":50,"2":83,"6":43,"7":24},"isBase":true}}}, +{"id":47967,"name":"Crusader's Glory","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"0":58,"2":76,"9":32,"23":149},"isBase":true}}}, +{"id":47968,"name":"Cold Convergence","icon":"inv_staff_98","type":13,"weaponType":8,"handType":4,"stats":[0,0,206,0,0,0,95,128,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"weaponSpeed":2.1,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"stats":{"2":206,"6":95,"7":128,"14":777},"isBase":true}}}, +{"id":47969,"name":"Pauldrons of the Timeless Hunter","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,101,107,0,0,0,86,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":107,"6":86,"7":41,"22":1354},"isBase":true}}}, +{"id":47970,"name":"Legplates of the Silver Hand","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[120,0,192,0,0,0,65,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":192,"6":65,"7":101,"22":2175},"isBase":true}}}, +{"id":47971,"name":"Westfall Saber","icon":"inv_sword_145","type":13,"weaponType":9,"handType":2,"stats":[0,58,73,0,0,0,24,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"1":58,"2":73,"6":24,"7":43},"isBase":true}}}, +{"id":47972,"name":"Spaulders of the Snow Bandit","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,91,130,0,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":91,"2":130,"6":52,"7":69,"22":962},"isBase":true}}}, +{"id":47973,"name":"The Grinder","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[0,54,71,0,0,0,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":54,"2":71,"6":40,"7":35},"isBase":true}}}, +{"id":47974,"name":"Vestments of the Sleepless","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,181,120,0,96,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":120,"5":96,"6":71,"22":996},"isBase":true}}}, +{"id":47975,"name":"Baelgun's Heavy Crossbow","icon":"inv_weapon_crossbow_34","type":14,"rangedWeaponType":2,"stats":[0,128,204,0,0,0,94,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1078,"weaponDamageMax":1618,"weaponSpeed":2.9,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1078,"weaponDamageMax":1618,"stats":{"1":128,"2":204,"6":94,"7":76},"isBase":true}}}, +{"id":47976,"name":"Legplates of the Immortal Spider","icon":"inv_pants_plate_23","type":9,"armorType":4,"stats":[0,0,181,128,80,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":128,"4":80,"6":83,"22":2175},"isBase":true}}}, +{"id":47977,"name":"Cinch of the Undying","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,138,101,72,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":138,"3":101,"4":72,"6":47,"22":560},"isBase":true}}}, +{"id":47978,"name":"Bulwark of the Royal Guard","icon":"inv_shield_68","type":13,"weaponType":7,"handType":3,"stats":[58,0,114,0,0,0,0,0,0,38,58,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"9":38,"10":58,"22":7276},"isBase":true}}}, +{"id":47979,"name":"Fordragon Blades","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,118,180,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":118,"2":180,"6":97,"7":63},"isBase":true}}}, +{"id":47980,"name":"Velen's Leggings of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":807},"isBase":true}}}, +{"id":47981,"name":"Velen's Shoulderpads of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,127,81,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":47982,"name":"Velen's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,127,81,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":52,"7":60,"22":577},"isBase":true}}}, +{"id":47983,"name":"Velen's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":622},"isBase":true}}}, +{"id":47984,"name":"Velen's Cowl of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"6":74,"22":809},"isBase":true}}}, +{"id":47985,"name":"Velen's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":871},"isBase":true}}}, +{"id":47986,"name":"Velen's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":996},"isBase":true}}}, +{"id":47987,"name":"Velen's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":747},"isBase":true}}}, +{"id":47988,"name":"Collar of Unending Torment","icon":"inv_jewelry_necklace_ahnqiraj_02","type":2,"stats":[0,70,107,0,0,0,52,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":107,"6":52,"7":40},"isBase":true}}}, +{"id":47989,"name":"Bracers of the Northern Stalker","icon":"inv_bracer_38","type":6,"armorType":3,"stats":[0,70,114,0,0,50,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":114,"5":50,"7":40,"22":790},"isBase":true}}}, +{"id":47990,"name":"Gauntlets of Mounting Anger","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[85,0,151,0,0,45,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":85,"2":151,"5":45,"6":71,"22":1554},"isBase":true}}}, +{"id":47991,"name":"Dreadscale Bracers","icon":"inv_bracer_32b","type":6,"armorType":4,"stats":[50,0,102,0,0,44,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":50,"2":102,"5":44,"10":68,"22":1087},"isBase":true}}}, +{"id":47992,"name":"Acidmaw Treads","icon":"inv_boots_leather_03a","type":10,"armorType":2,"stats":[0,93,130,0,0,69,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,881,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":130,"5":69,"8":51,"22":881},"isBase":true}}}, +{"id":47993,"name":"Gormok's Band","icon":"inv_jewelry_ring_53naxxramas","type":11,"stats":[59,0,113,0,0,0,41,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":59,"2":113,"6":41,"7":42},"isBase":true}}}, +{"id":47994,"name":"Icehowl Binding","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,129,85,0,61,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":129,"3":85,"5":61,"7":67,"22":560},"isBase":true}}}, +{"id":47995,"name":"Scepter of Imprisoned Souls","icon":"inv_wand_31","type":14,"rangedWeaponType":6,"stats":[0,0,87,58,0,0,43,32,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":87,"3":58,"6":43,"7":32,"14":780},"isBase":true}}}, +{"id":47996,"name":"Pauldrons of the Glacial Wilds","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,133,85,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":133,"3":85,"6":67,"7":59,"22":962},"isBase":true}}}, +{"id":47997,"name":"Girdle of the Frozen Reach","icon":"inv_belt_51","type":8,"armorType":4,"stats":[0,0,142,93,0,0,45,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":142,"3":93,"6":45,"7":77,"22":1398},"isBase":true}}}, +{"id":47998,"name":"Belt of the Impaler","icon":"inv_belt_46b","type":8,"armorType":4,"stats":[85,0,151,0,0,0,63,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":85,"2":151,"6":63,"7":54,"22":1398},"isBase":true}}}, +{"id":47999,"name":"Pauldrons of the Spirit Walker","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,135,85,0,0,72,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Beasts of Northrend"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":135,"3":85,"6":72,"7":49,"22":1354},"isBase":true}}}, +{"id":48000,"name":"Felspark Bracers","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,107,68,0,33,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,436,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":107,"3":68,"5":33,"7":56,"22":436},"isBase":true}}}, +{"id":48001,"name":"Firestorm Band","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,107,68,0,56,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":107,"3":68,"5":56,"6":33},"isBase":true}}}, +{"id":48002,"name":"Belt of the Bloodhoof Emissary","icon":"inv_belt_40b","type":8,"armorType":2,"stats":[0,0,144,85,64,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":64,"6":51,"22":721},"isBase":true}}}, +{"id":48003,"name":"Pendant of Binding Elements","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,108,68,42,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"4":42,"6":50},"isBase":true}}}, +{"id":48004,"name":"Legwraps of the Demonic Messenger","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,186,128,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":186,"3":128,"4":89,"6":71,"22":871},"isBase":true}}}, +{"id":48005,"name":"Darkspear Ritual Binding","icon":"inv_belt_47a","type":8,"armorType":3,"stats":[0,0,133,93,77,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":133,"3":93,"4":77,"6":51,"22":1016},"isBase":true}}}, +{"id":48006,"name":"Warsong Poacher's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,101,114,0,0,0,87,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":114,"6":87,"7":39,"22":1241},"isBase":true}}}, +{"id":48007,"name":"Planestalker Band","icon":"inv_jewelry_ring_61","type":11,"stats":[0,70,122,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":70,"2":122,"5":44,"6":44},"isBase":true}}}, +{"id":48008,"name":"Armplates of the Nether Lord","icon":"inv_bracer_26","type":6,"armorType":4,"stats":[68,0,114,0,0,0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":68,"2":114,"6":36,"7":54,"22":1087},"isBase":true}}}, +{"id":48009,"name":"Belt of the Nether Champion","icon":"inv_belt_50","type":8,"armorType":4,"stats":[97,0,139,0,0,0,0,0,0,84,34,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":97,"2":139,"9":84,"10":34,"22":1398},"isBase":true}}}, +{"id":48010,"name":"Orcish Deathblade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,58,82,0,0,42,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":58,"2":82,"5":42,"7":26},"isBase":true}}}, +{"id":48011,"name":"Fortitude of the Infernal","icon":"inv_jewelry_necklace_41","type":2,"stats":[40,0,114,0,0,0,0,0,46,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":40,"2":114,"8":46,"9":72},"isBase":true}}}, +{"id":48012,"name":"Sunreaver Magus' Sandals","icon":"inv_boots_cloth_17","type":10,"armorType":1,"stats":[0,0,130,89,0,47,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":130,"3":89,"5":47,"6":72,"22":684},"isBase":true}}}, +{"id":48013,"name":"Sunreaver Disciple's Blade","icon":"inv_weapon_shortblade_93","type":13,"weaponType":2,"handType":2,"stats":[0,0,84,0,0,0,37,58,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":84,"6":37,"7":58,"14":780},"isBase":true}}}, +{"id":48014,"name":"Sunreaver Ranger's Helm","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,112,204,0,0,66,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":66,"6":90,"22":1467},"isBase":true}}}, +{"id":48015,"name":"Sunreaver Champion's Faceplate","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[120,0,191,0,0,0,69,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":191,"6":69,"7":86,"22":2020},"isBase":true}}}, +{"id":48016,"name":"Sunreaver Defender's Pauldrons","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[91,0,139,0,0,0,0,0,0,57,63,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":91,"2":139,"9":57,"10":63,"22":1864},"isBase":true}}}, +{"id":48017,"name":"Sunreaver Assassin's Gloves","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,97,118,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":97,"2":118,"6":61,"7":61,"22":801},"isBase":true}}}, +{"id":48018,"name":"Fetish of Volatile Power","icon":"inv_jewelry_necklace_27","type":12,"stats":[0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"6":126},"isBase":true}}}, +{"id":48019,"name":"Binding Stone","icon":"inv_misc_rune_11","type":12,"stats":[0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"4":126},"isBase":true}}}, +{"id":48020,"name":"Vengeance of the Forsaken","icon":"inv_misc_horn_04","type":12,"stats":[0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"8":83},"isBase":true}}}, +{"id":48021,"name":"Eitrigg's Oath","icon":"inv_jewelry_talisman_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Faction Champions"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"9":126},"isBase":true}}}, +{"id":48022,"name":"Widebarrel Flintlock","icon":"inv_weapon_rifle_36","type":14,"rangedWeaponType":3,"stats":[0,133,248,0,0,76,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"stats":{"1":133,"2":248,"5":76,"6":94},"isBase":true}}}, +{"id":48023,"name":"Edge of Agony","icon":"inv_sword_140","type":13,"weaponType":9,"handType":4,"stats":[0,120,193,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":120,"2":193,"6":97,"7":63},"isBase":true}}}, +{"id":48024,"name":"Greaves of the Lingering Vortex","icon":"inv_boots_plate_09","type":10,"armorType":4,"stats":[64,0,151,0,0,47,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":64,"2":151,"5":47,"9":84,"22":1709},"isBase":true}}}, +{"id":48025,"name":"Nemesis Blade","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,52,66,0,0,0,41,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":515,"weaponDamageMax":773,"stats":{"1":52,"2":66,"6":41,"7":36},"isBase":true}}}, +{"id":48026,"name":"Vest of Shifting Shadows","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,126,162,0,0,0,93,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":126,"2":162,"6":93,"7":67,"22":1282},"isBase":true}}}, +{"id":48027,"name":"Band of the Twin Val'kyr","icon":"inv_jewelry_ring_59","type":11,"stats":[64,0,114,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,152,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":64,"2":114,"9":55,"23":152},"isBase":true}}}, +{"id":48028,"name":"Looming Shadow Wraps","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,132,93,0,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":132,"3":93,"5":51,"7":67,"22":622},"isBase":true}}}, +{"id":48029,"name":"Velen's Shoulderpads of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":803},"isBase":true}}}, +{"id":48030,"name":"Darkbane Amulet","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,104,68,0,42,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":104,"3":68,"5":42,"6":52},"isBase":true}}}, +{"id":48031,"name":"Velen's Robe of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"6":94,"22":1071},"isBase":true}}}, +{"id":48032,"name":"Lightbane Focus","icon":"inv_offhand_stratholme_a_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,104,68,0,43,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":104,"3":68,"5":43,"7":51},"isBase":true}}}, +{"id":48033,"name":"Velen's Leggings of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":937},"isBase":true}}}, +{"id":48034,"name":"Helm of the High Mesa","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,167,120,89,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":167,"3":120,"4":89,"6":71,"22":1042},"isBase":true}}}, +{"id":48035,"name":"Velen's Cowl of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"6":86,"22":870},"isBase":true}}}, +{"id":48036,"name":"Illumination","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,163,0,0,0,122,117,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":576,"weaponDamageMax":865,"weaponSpeed":3.1,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":576,"weaponDamageMax":865,"stats":{"2":163,"6":122,"7":117,"14":777},"isBase":true}}}, +{"id":48037,"name":"Velen's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":669},"isBase":true}}}, +{"id":48038,"name":"Sen'jin Ritualist Gloves","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,85,46,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":46,"6":70,"22":1128},"isBase":true}}}, +{"id":48039,"name":"Mace of the Earthborn Chieftain","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,82,0,50,0,50,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":82,"4":50,"6":50,"14":780},"isBase":true}}}, +{"id":48040,"name":"Pride of the Kor'kron","icon":"inv_shield_70","type":13,"weaponType":7,"handType":3,"stats":[0,0,95,68,54,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":95,"3":68,"4":54,"6":44,"22":7276},"isBase":true}}}, +{"id":48041,"name":"Stoneskin Chestplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,95,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":95,"10":63,"22":2486},"isBase":true}}}, +{"id":48042,"name":"Helm of the Crypt Lord","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,181,120,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":120,"6":94,"7":60,"22":1467},"isBase":true}}}, +{"id":48043,"name":"Frostblade Hatchet","icon":"inv_axe_104","type":13,"weaponType":1,"handType":2,"stats":[0,50,83,0,0,0,43,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":50,"2":83,"6":43,"7":24},"isBase":true}}}, +{"id":48044,"name":"Ardent Guard","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"0":58,"2":76,"9":32,"23":149},"isBase":true}}}, +{"id":48045,"name":"Perdition","icon":"inv_staff_102","type":13,"weaponType":8,"handType":4,"stats":[0,0,206,0,0,0,95,128,0,0,0,0,0,0,777,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"weaponSpeed":2.1,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":390,"weaponDamageMax":586,"stats":{"2":206,"6":95,"7":128,"14":777},"isBase":true}}}, +{"id":48046,"name":"Pauldrons of the Shadow Hunter","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,101,107,0,0,0,86,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":107,"6":86,"7":41,"22":1354},"isBase":true}}}, +{"id":48047,"name":"Legplates of the Redeemed Blood Knight","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,192,0,0,0,65,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":192,"6":65,"7":101,"22":2175},"isBase":true}}}, +{"id":48048,"name":"Forsaken Bonecarver","icon":"inv_sword_138","type":13,"weaponType":9,"handType":2,"stats":[0,58,73,0,0,0,24,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"stats":{"1":58,"2":73,"6":24,"7":43},"isBase":true}}}, +{"id":48049,"name":"Shoulderpads of the Snow Bandit","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,91,130,0,0,0,52,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":91,"2":130,"6":52,"7":69,"22":962},"isBase":true}}}, +{"id":48050,"name":"Blackhorn Bludgeon","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[0,54,71,0,0,0,40,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"stats":{"1":54,"2":71,"6":40,"7":35},"isBase":true}}}, +{"id":48051,"name":"Robes of the Sleepless","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,181,120,0,96,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":120,"5":96,"6":71,"22":996},"isBase":true}}}, +{"id":48052,"name":"Darkmaw Crossbow","icon":"inv_weapon_crossbow_35","type":14,"rangedWeaponType":2,"stats":[0,128,204,0,0,0,94,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1078,"weaponDamageMax":1618,"weaponSpeed":2.9,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1078,"weaponDamageMax":1618,"stats":{"1":128,"2":204,"6":94,"7":76},"isBase":true}}}, +{"id":48053,"name":"Sunwalker Legguards","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,181,128,80,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":181,"3":128,"4":80,"6":83,"22":2175},"isBase":true}}}, +{"id":48054,"name":"Belt of the Eternal","icon":"inv_belt_52","type":8,"armorType":1,"stats":[0,0,138,101,72,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":138,"3":101,"4":72,"6":47,"22":560},"isBase":true}}}, +{"id":48055,"name":"Aegis of the Coliseum","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[58,0,114,0,0,0,0,0,0,38,58,0,0,0,0,0,0,0,0,0,0,0,7276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"9":38,"10":58,"22":7276},"isBase":true}}}, +{"id":48056,"name":"Anguish","icon":"inv_weapon_halberd_31","type":13,"weaponType":6,"handType":4,"stats":[0,118,180,0,0,0,97,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Anub'arak"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"1":118,"2":180,"6":97,"7":63},"isBase":true}}}, +{"id":48057,"name":"Zabra's Gloves of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":669},"isBase":true}}}, +{"id":48058,"name":"Zabra's Cowl of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,218,129,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":94,"6":86,"22":870},"isBase":true}}}, +{"id":48059,"name":"Zabra's Leggings of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":937},"isBase":true}}}, +{"id":48060,"name":"Zabra's Robe of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"6":94,"22":1071},"isBase":true}}}, +{"id":48061,"name":"Zabra's Shoulderpads of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":803},"isBase":true}}}, +{"id":48062,"name":"Zabra's Shoulderpads of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":747},"isBase":true}}}, +{"id":48063,"name":"Zabra's Robe of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":996},"isBase":true}}}, +{"id":48064,"name":"Zabra's Leggings of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":871},"isBase":true}}}, +{"id":48065,"name":"Zabra's Cowl of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":82,"6":74,"22":809},"isBase":true}}}, +{"id":48066,"name":"Zabra's Gloves of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":622},"isBase":true}}}, +{"id":48067,"name":"Zabra's Gloves of Conquest","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,127,81,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":52,"7":60,"22":577},"isBase":true}}}, +{"id":48068,"name":"Zabra's Cowl of Conquest","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,172,96,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":72,"6":64,"22":750},"isBase":true}}}, +{"id":48069,"name":"Zabra's Leggings of Conquest","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":807},"isBase":true}}}, +{"id":48070,"name":"Zabra's Robe of Conquest","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,172,104,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"6":72,"22":923},"isBase":true}}}, +{"id":48071,"name":"Zabra's Shoulderpads of Conquest","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,127,81,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48072,"name":"Velen's Handwraps of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48073,"name":"Velen's Circlet of Conquest","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":750},"isBase":true}}}, +{"id":48074,"name":"Velen's Pants of Conquest","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"7":64,"22":807},"isBase":true}}}, +{"id":48075,"name":"Velen's Raiments of Conquest","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":923},"isBase":true}}}, +{"id":48076,"name":"Velen's Mantle of Conquest","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,127,81,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48077,"name":"Velen's Handwraps of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"6":67,"22":622},"isBase":true}}}, +{"id":48078,"name":"Velen's Circlet of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":82,"6":74,"22":809},"isBase":true}}}, +{"id":48079,"name":"Velen's Pants of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,193,120,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"7":74,"22":871},"isBase":true}}}, +{"id":48080,"name":"Velen's Raiments of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":996},"isBase":true}}}, +{"id":48081,"name":"Velen's Mantle of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":747},"isBase":true}}}, +{"id":48082,"name":"Velen's Mantle of Triumph","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":803},"isBase":true}}}, +{"id":48083,"name":"Velen's Raiments of Triumph","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":1071},"isBase":true}}}, +{"id":48084,"name":"Velen's Pants of Triumph","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,218,137,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"7":86,"22":937},"isBase":true}}}, +{"id":48085,"name":"Velen's Circlet of Triumph","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":870},"isBase":true}}}, +{"id":48086,"name":"Velen's Handwraps of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"5":68,"6":76,"22":669},"isBase":true}}}, +{"id":48087,"name":"Zabra's Handwraps of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,161,106,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,669,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"5":68,"6":76,"22":669},"isBase":true}}}, +{"id":48088,"name":"Zabra's Circlet of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":870},"isBase":true}}}, +{"id":48089,"name":"Zabra's Pants of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,218,137,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"7":86,"22":937},"isBase":true}}}, +{"id":48090,"name":"Zabra's Raiments of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1071,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":1071},"isBase":true}}}, +{"id":48091,"name":"Zabra's Mantle of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,803,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":803},"isBase":true}}}, +{"id":48092,"name":"Zabra's Mantle of Triumph","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":747},"isBase":true}}}, +{"id":48093,"name":"Zabra's Raiments of Triumph","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,996,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":996},"isBase":true}}}, +{"id":48094,"name":"Zabra's Pants of Triumph","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,193,120,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"7":74,"22":871},"isBase":true}}}, +{"id":48095,"name":"Zabra's Circlet of Triumph","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":82,"6":74,"22":809},"isBase":true}}}, +{"id":48096,"name":"Zabra's Handwraps of Triumph","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,144,93,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":59,"6":67,"22":622},"isBase":true}}}, +{"id":48097,"name":"Zabra's Handwraps of Conquest","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48098,"name":"Zabra's Circlet of Conquest","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":750},"isBase":true}}}, +{"id":48099,"name":"Zabra's Pants of Conquest","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"7":64,"22":807},"isBase":true}}}, +{"id":48100,"name":"Zabra's Raiments of Conquest","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":923},"isBase":true}}}, +{"id":48101,"name":"Zabra's Mantle of Conquest","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,127,81,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48102,"name":"Malfurion's Headpiece of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":64,"6":72,"22":979},"isBase":true}}}, +{"id":48129,"name":"Malfurion's Robe of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":1205},"isBase":true}}}, +{"id":48130,"name":"Malfurion's Leggings of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":1055},"isBase":true}}}, +{"id":48131,"name":"Malfurion's Spaulders of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":904},"isBase":true}}}, +{"id":48132,"name":"Malfurion's Handguards of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":753},"isBase":true}}}, +{"id":48133,"name":"Malfurion's Handguards of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":801},"isBase":true}}}, +{"id":48134,"name":"Malfurion's Headpiece of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":74,"6":82,"22":1042},"isBase":true}}}, +{"id":48135,"name":"Malfurion's Leggings of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":1122},"isBase":true}}}, +{"id":48136,"name":"Malfurion's Robe of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":1282},"isBase":true}}}, +{"id":48137,"name":"Malfurion's Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":962},"isBase":true}}}, +{"id":48138,"name":"Malfurion's Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":1021},"isBase":true}}}, +{"id":48139,"name":"Malfurion's Robe of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"6":94,"22":1361},"isBase":true}}}, +{"id":48140,"name":"Malfurion's Leggings of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":1191},"isBase":true}}}, +{"id":48141,"name":"Malfurion's Headpiece of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":86,"6":94,"22":1106},"isBase":true}}}, +{"id":48142,"name":"Malfurion's Handguards of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":851},"isBase":true}}}, +{"id":48143,"name":"Runetotem's Handguards of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":851},"isBase":true}}}, +{"id":48144,"name":"Runetotem's Headpiece of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,218,129,86,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":86,"6":94,"22":1106},"isBase":true}}}, +{"id":48145,"name":"Runetotem's Leggings of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,137,94,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"7":94,"22":1191},"isBase":true}}}, +{"id":48146,"name":"Runetotem's Robe of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,137,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":94,"6":94,"22":1361},"isBase":true}}}, +{"id":48147,"name":"Runetotem's Spaulders of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":1021},"isBase":true}}}, +{"id":48148,"name":"Runetotem's Spaulders of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":962},"isBase":true}}}, +{"id":48149,"name":"Runetotem's Robe of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":1282},"isBase":true}}}, +{"id":48150,"name":"Runetotem's Leggings of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":1122},"isBase":true}}}, +{"id":48151,"name":"Runetotem's Headpiece of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,74,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":74,"6":82,"22":1042},"isBase":true}}}, +{"id":48152,"name":"Runetotem's Handguards of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":801},"isBase":true}}}, +{"id":48153,"name":"Runetotem's Handguards of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":753},"isBase":true}}}, +{"id":48154,"name":"Runetotem's Headpiece of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":64,"6":72,"22":979},"isBase":true}}}, +{"id":48155,"name":"Runetotem's Leggings of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":1055},"isBase":true}}}, +{"id":48156,"name":"Runetotem's Robe of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":1205},"isBase":true}}}, +{"id":48157,"name":"Runetotem's Spaulders of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":904},"isBase":true}}}, +{"id":48158,"name":"Malfurion's Cover of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":979},"isBase":true}}}, +{"id":48159,"name":"Malfurion's Vestments of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":64,"7":80,"22":1205},"isBase":true}}}, +{"id":48160,"name":"Malfurion's Trousers of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1055},"isBase":true}}}, +{"id":48161,"name":"Malfurion's Mantle of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":904},"isBase":true}}}, +{"id":48162,"name":"Malfurion's Gloves of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":753},"isBase":true}}}, +{"id":48163,"name":"Malfurion's Gloves of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":801},"isBase":true}}}, +{"id":48164,"name":"Malfurion's Cover of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":82,"6":74,"22":1042},"isBase":true}}}, +{"id":48165,"name":"Malfurion's Trousers of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"6":74,"22":1122},"isBase":true}}}, +{"id":48166,"name":"Malfurion's Vestments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":1282},"isBase":true}}}, +{"id":48167,"name":"Malfurion's Mantle of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":962},"isBase":true}}}, +{"id":48168,"name":"Malfurion's Mantle of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":1021},"isBase":true}}}, +{"id":48169,"name":"Malfurion's Vestments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,218,137,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":86,"7":102,"22":1361},"isBase":true}}}, +{"id":48170,"name":"Malfurion's Trousers of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"6":86,"22":1191},"isBase":true}}}, +{"id":48171,"name":"Malfurion's Cover of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":1106},"isBase":true}}}, +{"id":48172,"name":"Malfurion's Gloves of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":851},"isBase":true}}}, +{"id":48173,"name":"Runetotem's Gloves of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,162,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":68,"7":76,"22":851},"isBase":true}}}, +{"id":48174,"name":"Runetotem's Cover of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,218,129,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"5":94,"6":86,"22":1106},"isBase":true}}}, +{"id":48175,"name":"Runetotem's Trousers of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"6":86,"22":1191},"isBase":true}}}, +{"id":48176,"name":"Runetotem's Vestments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,218,137,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":86,"7":102,"22":1361},"isBase":true}}}, +{"id":48177,"name":"Runetotem's Mantle of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,162,106,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"6":68,"22":1021},"isBase":true}}}, +{"id":48178,"name":"Runetotem's Mantle of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,144,93,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"6":59,"22":962},"isBase":true}}}, +{"id":48179,"name":"Runetotem's Vestments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":1282},"isBase":true}}}, +{"id":48180,"name":"Runetotem's Trousers of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"6":74,"22":1122},"isBase":true}}}, +{"id":48181,"name":"Runetotem's Cover of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,193,112,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"5":82,"6":74,"22":1042},"isBase":true}}}, +{"id":48182,"name":"Runetotem's Gloves of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,144,93,59,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":59,"7":67,"22":801},"isBase":true}}}, +{"id":48183,"name":"Runetotem's Gloves of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":753},"isBase":true}}}, +{"id":48184,"name":"Runetotem's Cover of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":979},"isBase":true}}}, +{"id":48185,"name":"Runetotem's Trousers of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1055},"isBase":true}}}, +{"id":48186,"name":"Runetotem's Vestments of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":64,"7":80,"22":1205},"isBase":true}}}, +{"id":48187,"name":"Runetotem's Mantle of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":904},"isBase":true}}}, +{"id":48188,"name":"Runetotem's Headguard of Conquest","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48189,"name":"Runetotem's Raiments of Conquest","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":74,"7":70,"22":1205},"isBase":true}}}, +{"id":48190,"name":"Runetotem's Legguards of Conquest","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"5":64,"6":80,"22":1055},"isBase":true}}}, +{"id":48191,"name":"Runetotem's Shoulderpads of Conquest","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"7":60,"22":904},"isBase":true}}}, +{"id":48192,"name":"Runetotem's Handgrips of Conquest","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48193,"name":"Runetotem's Handgrips of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":801},"isBase":true}}}, +{"id":48194,"name":"Runetotem's Headguard of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"8":74,"22":1042},"isBase":true}}}, +{"id":48195,"name":"Runetotem's Legguards of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,120,180,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"5":74,"6":90,"22":1122},"isBase":true}}}, +{"id":48196,"name":"Runetotem's Raiments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,120,204,0,0,0,84,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"6":84,"7":80,"22":1282},"isBase":true}}}, +{"id":48197,"name":"Runetotem's Shoulderpads of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,93,151,0,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":59,"7":67,"22":962},"isBase":true}}}, +{"id":48198,"name":"Runetotem's Shoulderpads of Triumph","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,106,170,0,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"6":68,"7":76,"22":1021},"isBase":true}}}, +{"id":48199,"name":"Runetotem's Raiments of Triumph","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,137,230,0,0,0,96,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"6":96,"7":92,"22":1361},"isBase":true}}}, +{"id":48200,"name":"Runetotem's Legguards of Triumph","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,137,206,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"5":86,"6":102,"22":1191},"isBase":true}}}, +{"id":48201,"name":"Runetotem's Headguard of Triumph","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":102,"8":86,"22":1106},"isBase":true}}}, +{"id":48202,"name":"Runetotem's Handgrips of Triumph","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":851},"isBase":true}}}, +{"id":48203,"name":"Malfurion's Handgrips of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":851},"isBase":true}}}, +{"id":48204,"name":"Malfurion's Headguard of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":102,"8":86,"22":1106},"isBase":true}}}, +{"id":48205,"name":"Malfurion's Legguards of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,206,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"5":86,"6":102,"22":1191},"isBase":true}}}, +{"id":48206,"name":"Malfurion's Raiments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,137,230,0,0,0,96,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"6":96,"7":92,"22":1361},"isBase":true}}}, +{"id":48207,"name":"Malfurion's Shoulderpads of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,106,170,0,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"6":68,"7":76,"22":1021},"isBase":true}}}, +{"id":48208,"name":"Malfurion's Shoulderpads of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,93,151,0,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":59,"7":67,"22":962},"isBase":true}}}, +{"id":48209,"name":"Malfurion's Raiments of Triumph","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,120,204,0,0,0,84,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"6":84,"7":80,"22":1282},"isBase":true}}}, +{"id":48210,"name":"Malfurion's Legguards of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,120,180,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"5":74,"6":90,"22":1122},"isBase":true}}}, +{"id":48211,"name":"Malfurion's Headguard of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"8":74,"22":1042},"isBase":true}}}, +{"id":48212,"name":"Malfurion's Handgrips of Triumph","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":801},"isBase":true}}}, +{"id":48213,"name":"Malfurion's Handgrips of Conquest","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48214,"name":"Malfurion's Headguard of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48215,"name":"Malfurion's Legguards of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"5":64,"6":80,"22":1055},"isBase":true}}}, +{"id":48216,"name":"Malfurion's Raiments of Conquest","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":74,"7":70,"22":1205},"isBase":true}}}, +{"id":48217,"name":"Malfurion's Shoulderpads of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"7":60,"22":904},"isBase":true}}}, +{"id":48218,"name":"VanCleef's Helmet of Conquest","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48219,"name":"VanCleef's Breastplate of Conquest","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":72,"6":80,"22":1205},"isBase":true}}}, +{"id":48220,"name":"VanCleef's Legplates of Conquest","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":64,"6":72,"22":1055},"isBase":true}}}, +{"id":48221,"name":"VanCleef's Pauldrons of Conquest","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"6":60,"8":52,"22":904},"isBase":true}}}, +{"id":48222,"name":"VanCleef's Gauntlets of Conquest","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48223,"name":"VanCleef's Breastplate of Triumph","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,120,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":82,"6":90,"22":1282},"isBase":true}}}, +{"id":48224,"name":"VanCleef's Gauntlets of Triumph","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,101,139,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":139,"5":59,"6":67,"22":801},"isBase":true}}}, +{"id":48225,"name":"VanCleef's Helmet of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"8":74,"22":1042},"isBase":true}}}, +{"id":48226,"name":"VanCleef's Legplates of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,120,192,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":74,"6":82,"22":1122},"isBase":true}}}, +{"id":48227,"name":"VanCleef's Pauldrons of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,101,139,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":139,"6":67,"8":59,"22":962},"isBase":true}}}, +{"id":48228,"name":"VanCleef's Pauldrons of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,114,158,0,0,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":114,"2":158,"6":76,"8":68,"22":1021},"isBase":true}}}, +{"id":48229,"name":"VanCleef's Legplates of Triumph","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,137,218,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":218,"5":86,"6":94,"22":1191},"isBase":true}}}, +{"id":48230,"name":"VanCleef's Helmet of Triumph","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":102,"8":86,"22":1106},"isBase":true}}}, +{"id":48231,"name":"VanCleef's Gauntlets of Triumph","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,114,158,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":114,"2":158,"5":68,"6":76,"22":851},"isBase":true}}}, +{"id":48232,"name":"VanCleef's Breastplate of Triumph","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":218,"5":94,"6":102,"22":1361},"isBase":true}}}, +{"id":48233,"name":"Garona's Breastplate of Triumph","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,137,218,0,0,94,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":218,"5":94,"6":102,"22":1361},"isBase":true}}}, +{"id":48234,"name":"Garona's Gauntlets of Triumph","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,114,158,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":114,"2":158,"5":68,"6":76,"22":851},"isBase":true}}}, +{"id":48235,"name":"Garona's Helmet of Triumph","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,137,206,0,0,0,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":206,"6":102,"8":86,"22":1106},"isBase":true}}}, +{"id":48236,"name":"Garona's Legplates of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,137,218,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":218,"5":86,"6":94,"22":1191},"isBase":true}}}, +{"id":48237,"name":"Garona's Pauldrons of Triumph","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,114,158,0,0,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":114,"2":158,"6":76,"8":68,"22":1021},"isBase":true}}}, +{"id":48238,"name":"Garona's Pauldrons of Triumph","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,101,139,0,0,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,962,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":139,"6":67,"8":59,"22":962},"isBase":true}}}, +{"id":48239,"name":"Garona's Legplates of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,120,192,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":74,"6":82,"22":1122},"isBase":true}}}, +{"id":48240,"name":"Garona's Helmet of Triumph","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,120,180,0,0,0,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":180,"6":90,"8":74,"22":1042},"isBase":true}}}, +{"id":48241,"name":"Garona's Gauntlets of Triumph","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,101,139,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,801,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":101,"2":139,"5":59,"6":67,"22":801},"isBase":true}}}, +{"id":48242,"name":"Garona's Breastplate of Triumph","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,120,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":192,"5":82,"6":90,"22":1282},"isBase":true}}}, +{"id":48243,"name":"Garona's Breastplate of Conquest","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":72,"6":80,"22":1205},"isBase":true}}}, +{"id":48244,"name":"Garona's Gauntlets of Conquest","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48245,"name":"Garona's Helmet of Conquest","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48246,"name":"Garona's Legplates of Conquest","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":64,"6":72,"22":1055},"isBase":true}}}, +{"id":48247,"name":"Garona's Pauldrons of Conquest","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"6":60,"8":52,"22":904},"isBase":true}}}, +{"id":48250,"name":"Windrunner's Headpiece of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":142,"6":104,"7":47,"22":1399},"isBase":true}}}, +{"id":48251,"name":"Windrunner's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,104,181,0,0,62,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":62,"6":78,"22":1722},"isBase":true}}}, +{"id":48252,"name":"Windrunner's Legguards of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":154,"6":104,"7":63,"22":1507},"isBase":true}}}, +{"id":48253,"name":"Windrunner's Spaulders of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48254,"name":"Windrunner's Handguards of Conquest","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,81,106,0,0,0,81,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":106,"6":81,"7":47,"22":1076},"isBase":true}}}, +{"id":48255,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,204,0,0,71,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"5":71,"6":89,"22":1805},"isBase":true}}}, +{"id":48256,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":120,"6":93,"7":53,"22":1128},"isBase":true}}}, +{"id":48257,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":160,"6":119,"7":55,"22":1467},"isBase":true}}}, +{"id":48258,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":174,"6":119,"7":71,"22":1580},"isBase":true}}}, +{"id":48259,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1354},"isBase":true}}}, +{"id":48260,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":1419},"isBase":true}}}, +{"id":48261,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,137,196,0,0,0,137,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":196,"6":137,"7":80,"22":1655},"isBase":true}}}, +{"id":48262,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,137,181,0,0,0,137,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":181,"6":137,"7":64,"22":1537},"isBase":true}}}, +{"id":48263,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,106,134,0,0,0,106,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":134,"6":106,"7":60,"22":1182},"isBase":true}}}, +{"id":48264,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,137,230,0,0,82,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"5":82,"6":101,"22":1892},"isBase":true}}}, +{"id":48265,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,137,230,0,0,82,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"5":82,"6":101,"22":1892},"isBase":true}}}, +{"id":48266,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,106,134,0,0,0,106,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":134,"6":106,"7":60,"22":1182},"isBase":true}}}, +{"id":48267,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,137,181,0,0,0,137,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":181,"6":137,"7":64,"22":1537},"isBase":true}}}, +{"id":48268,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,137,196,0,0,0,137,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":196,"6":137,"7":80,"22":1655},"isBase":true}}}, +{"id":48269,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":1419},"isBase":true}}}, +{"id":48270,"name":"Windrunner's Spaulders of Triumph","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1354},"isBase":true}}}, +{"id":48271,"name":"Windrunner's Legguards of Triumph","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,120,174,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":174,"6":119,"7":71,"22":1580},"isBase":true}}}, +{"id":48272,"name":"Windrunner's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,120,160,0,0,0,119,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":160,"6":119,"7":55,"22":1467},"isBase":true}}}, +{"id":48273,"name":"Windrunner's Handguards of Triumph","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,93,120,0,0,0,93,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":120,"6":93,"7":53,"22":1128},"isBase":true}}}, +{"id":48274,"name":"Windrunner's Tunic of Triumph","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"5":74,"6":90,"22":1805},"isBase":true}}}, +{"id":48275,"name":"Windrunner's Tunic of Conquest","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1722},"isBase":true}}}, +{"id":48276,"name":"Windrunner's Handguards of Conquest","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,81,106,0,0,0,81,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":106,"6":81,"7":47,"22":1076},"isBase":true}}}, +{"id":48277,"name":"Windrunner's Headpiece of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":142,"6":104,"7":47,"22":1399},"isBase":true}}}, +{"id":48278,"name":"Windrunner's Legguards of Conquest","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":154,"6":104,"7":63,"22":1507},"isBase":true}}}, +{"id":48279,"name":"Windrunner's Spaulders of Conquest","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48280,"name":"Nobundo's Headpiece of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":70,"6":66,"22":1399},"isBase":true}}}, +{"id":48281,"name":"Nobundo's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48282,"name":"Nobundo's Legguards of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":70,"6":74,"22":1507},"isBase":true}}}, +{"id":48283,"name":"Nobundo's Spaulders of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1291},"isBase":true}}}, +{"id":48284,"name":"Nobundo's Handguards of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48285,"name":"Nobundo's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":82,"7":82,"22":1805},"isBase":true}}}, +{"id":48286,"name":"Nobundo's Handguards of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":1128},"isBase":true}}}, +{"id":48287,"name":"Nobundo's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,80,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":80,"6":76,"22":1467},"isBase":true}}}, +{"id":48288,"name":"Nobundo's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,80,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":80,"6":84,"22":1580},"isBase":true}}}, +{"id":48289,"name":"Nobundo's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":1354},"isBase":true}}}, +{"id":48290,"name":"Nobundo's Spaulders of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"4":76,"7":68,"22":1419},"isBase":true}}}, +{"id":48291,"name":"Nobundo's Legguards of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,137,92,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":92,"6":96,"22":1655},"isBase":true}}}, +{"id":48292,"name":"Nobundo's Headpiece of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,218,129,92,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":92,"6":88,"22":1537},"isBase":true}}}, +{"id":48293,"name":"Nobundo's Handguards of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,161,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"4":76,"7":68,"22":1182},"isBase":true}}}, +{"id":48294,"name":"Nobundo's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":94,"7":94,"22":1892},"isBase":true}}}, +{"id":48295,"name":"Thrall's Tunic of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48296,"name":"Thrall's Handguards of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48297,"name":"Thrall's Headpiece of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":70,"6":66,"22":1399},"isBase":true}}}, +{"id":48298,"name":"Thrall's Legguards of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":70,"6":74,"22":1507},"isBase":true}}}, +{"id":48299,"name":"Thrall's Spaulders of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1291},"isBase":true}}}, +{"id":48300,"name":"Thrall's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":82,"7":82,"22":1805},"isBase":true}}}, +{"id":48301,"name":"Thrall's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":1128},"isBase":true}}}, +{"id":48302,"name":"Thrall's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,80,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"4":80,"6":76,"22":1467},"isBase":true}}}, +{"id":48303,"name":"Thrall's Legguards of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,80,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":80,"6":84,"22":1580},"isBase":true}}}, +{"id":48304,"name":"Thrall's Spaulders of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,67,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":67,"7":59,"22":1354},"isBase":true}}}, +{"id":48305,"name":"Thrall's Tunic of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"6":94,"7":94,"22":1892},"isBase":true}}}, +{"id":48306,"name":"Thrall's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,162,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"7":68,"22":1182},"isBase":true}}}, +{"id":48307,"name":"Thrall's Headpiece of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,218,129,92,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"4":92,"6":88,"22":1537},"isBase":true}}}, +{"id":48308,"name":"Thrall's Legguards of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,137,92,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":92,"6":96,"22":1655},"isBase":true}}}, +{"id":48309,"name":"Thrall's Spaulders of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,162,106,76,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"4":76,"7":68,"22":1419},"isBase":true}}}, +{"id":48310,"name":"Nobundo's Hauberk of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48312,"name":"Nobundo's Gloves of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48313,"name":"Nobundo's Helm of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":70,"7":74,"22":1399},"isBase":true}}}, +{"id":48314,"name":"Nobundo's Kilt of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1507},"isBase":true}}}, +{"id":48315,"name":"Nobundo's Shoulderpads of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":1291},"isBase":true}}}, +{"id":48316,"name":"Nobundo's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"7":82,"22":1805},"isBase":true}}}, +{"id":48317,"name":"Nobundo's Gloves of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,144,93,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":67,"7":59,"22":1128},"isBase":true}}}, +{"id":48318,"name":"Nobundo's Helm of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,193,112,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":80,"7":84,"22":1467},"isBase":true}}}, +{"id":48319,"name":"Nobundo's Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"6":74,"22":1580},"isBase":true}}}, +{"id":48320,"name":"Nobundo's Shoulderpads of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1354},"isBase":true}}}, +{"id":48321,"name":"Nobundo's Shoulderpads of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,161,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"6":68,"7":76,"22":1419},"isBase":true}}}, +{"id":48322,"name":"Nobundo's Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"6":86,"22":1655},"isBase":true}}}, +{"id":48323,"name":"Nobundo's Helm of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,218,129,0,0,92,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":92,"7":96,"22":1537},"isBase":true}}}, +{"id":48324,"name":"Nobundo's Gloves of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,161,106,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"5":76,"7":68,"22":1182},"isBase":true}}}, +{"id":48325,"name":"Nobundo's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":94,"7":94,"22":1892},"isBase":true}}}, +{"id":48326,"name":"Thrall's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,218,137,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":94,"7":94,"22":1892},"isBase":true}}}, +{"id":48327,"name":"Thrall's Gloves of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,162,106,0,76,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"5":76,"7":68,"22":1182},"isBase":true}}}, +{"id":48328,"name":"Thrall's Helm of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,218,129,0,0,92,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":92,"7":96,"22":1537},"isBase":true}}}, +{"id":48329,"name":"Thrall's Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,218,137,0,102,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"5":102,"6":86,"22":1655},"isBase":true}}}, +{"id":48330,"name":"Thrall's Shoulderpads of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,162,106,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":106,"6":68,"7":76,"22":1419},"isBase":true}}}, +{"id":48331,"name":"Thrall's Shoulderpads of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,144,93,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":59,"7":67,"22":1354},"isBase":true}}}, +{"id":48332,"name":"Thrall's Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,193,120,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":90,"6":74,"22":1580},"isBase":true}}}, +{"id":48333,"name":"Thrall's Helm of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,193,112,0,0,80,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":80,"7":84,"22":1467},"isBase":true}}}, +{"id":48334,"name":"Thrall's Gloves of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,144,93,0,67,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"5":67,"7":59,"22":1128},"isBase":true}}}, +{"id":48335,"name":"Thrall's Hauberk of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,193,120,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":82,"7":82,"22":1805},"isBase":true}}}, +{"id":48336,"name":"Thrall's Hauberk of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48337,"name":"Thrall's Gloves of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48338,"name":"Thrall's Helm of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":70,"7":74,"22":1399},"isBase":true}}}, +{"id":48339,"name":"Thrall's Kilt of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1507},"isBase":true}}}, +{"id":48340,"name":"Thrall's Shoulderpads of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":1291},"isBase":true}}}, +{"id":48341,"name":"Nobundo's Chestguard of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":121,"2":142,"6":96,"7":55,"22":1722},"isBase":true}}}, +{"id":48342,"name":"Nobundo's Grips of Conquest","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"8":60,"22":1076},"isBase":true}}}, +{"id":48343,"name":"Nobundo's Faceguard of Conquest","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,96,181,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":68,"6":68,"22":1399},"isBase":true}}}, +{"id":48344,"name":"Nobundo's War-Kilt of Conquest","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1507},"isBase":true}}}, +{"id":48345,"name":"Nobundo's Shoulderguards of Conquest","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48346,"name":"Nobundo's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,136,160,0,0,0,111,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":136,"2":160,"6":111,"7":63,"22":1805},"isBase":true}}}, +{"id":48347,"name":"Nobundo's Grips of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,93,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":59,"8":67,"22":1128},"isBase":true}}}, +{"id":48348,"name":"Nobundo's Faceguard of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,112,204,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":78,"6":78,"22":1467},"isBase":true}}}, +{"id":48349,"name":"Nobundo's War-Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"5":74,"6":90,"22":1580},"isBase":true}}}, +{"id":48350,"name":"Nobundo's Shoulderguards of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1354},"isBase":true}}}, +{"id":48351,"name":"Nobundo's Shoulderguards of Triumph","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":1419},"isBase":true}}}, +{"id":48352,"name":"Nobundo's War-Kilt of Triumph","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,137,230,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"5":86,"6":102,"22":1655},"isBase":true}}}, +{"id":48353,"name":"Nobundo's Faceguard of Triumph","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,129,230,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":129,"2":230,"5":90,"6":90,"22":1537},"isBase":true}}}, +{"id":48354,"name":"Nobundo's Grips of Triumph","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,106,170,0,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"6":68,"8":76,"22":1182},"isBase":true}}}, +{"id":48355,"name":"Nobundo's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,153,181,0,0,0,129,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":153,"2":181,"6":129,"7":72,"22":1892},"isBase":true}}}, +{"id":48356,"name":"Thrall's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,153,181,0,0,0,129,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":153,"2":181,"6":129,"7":72,"22":1892},"isBase":true}}}, +{"id":48357,"name":"Thrall's Grips of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,106,170,0,0,0,68,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,1182,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"6":68,"8":76,"22":1182},"isBase":true}}}, +{"id":48358,"name":"Thrall's Faceguard of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,129,230,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1537,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":129,"2":230,"5":90,"6":90,"22":1537},"isBase":true}}}, +{"id":48359,"name":"Thrall's War-Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,137,230,0,0,86,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":137,"2":230,"5":86,"6":102,"22":1655},"isBase":true}}}, +{"id":48360,"name":"Thrall's Shoulderguards of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,106,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":106,"2":170,"5":68,"6":76,"22":1419},"isBase":true}}}, +{"id":48361,"name":"Thrall's Shoulderguards of Triumph","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,93,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"5":59,"6":67,"22":1354},"isBase":true}}}, +{"id":48362,"name":"Thrall's War-Kilt of Triumph","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,120,204,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1580,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":204,"5":74,"6":90,"22":1580},"isBase":true}}}, +{"id":48363,"name":"Thrall's Faceguard of Triumph","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,112,204,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":112,"2":204,"5":78,"6":78,"22":1467},"isBase":true}}}, +{"id":48364,"name":"Thrall's Grips of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,93,151,0,0,0,59,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"1":93,"2":151,"6":59,"8":67,"22":1128},"isBase":true}}}, +{"id":48365,"name":"Thrall's Chestguard of Triumph","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,136,160,0,0,0,111,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":136,"2":160,"6":111,"7":63,"22":1805},"isBase":true}}}, +{"id":48366,"name":"Thrall's Chestguard of Conquest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":121,"2":142,"6":96,"7":55,"22":1722},"isBase":true}}}, +{"id":48367,"name":"Thrall's Grips of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"8":60,"22":1076},"isBase":true}}}, +{"id":48368,"name":"Thrall's Faceguard of Conquest","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,96,181,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":68,"6":68,"22":1399},"isBase":true}}}, +{"id":48369,"name":"Thrall's War-Kilt of Conquest","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1507},"isBase":true}}}, +{"id":48370,"name":"Thrall's Shoulderguards of Conquest","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48371,"name":"Wrynn's Helmet of Conquest","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"5":72,"6":64,"22":1944},"isBase":true}}}, +{"id":48372,"name":"Wrynn's Battleplate of Conquest","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48373,"name":"Wrynn's Legplates of Conquest","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48374,"name":"Wrynn's Shoulderplates of Conquest","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48375,"name":"Wrynn's Gauntlets of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48376,"name":"Wrynn's Battleplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48377,"name":"Wrynn's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48378,"name":"Wrynn's Helmet of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[112,0,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"5":82,"6":74,"22":2020},"isBase":true}}}, +{"id":48379,"name":"Wrynn's Legplates of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"8":82,"22":2175},"isBase":true}}}, +{"id":48380,"name":"Wrynn's Shoulderplates of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"7":59,"22":1864},"isBase":true}}}, +{"id":48381,"name":"Wrynn's Shoulderplates of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[106,0,170,0,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"6":76,"7":68,"22":1936},"isBase":true}}}, +{"id":48382,"name":"Wrynn's Legplates of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"8":94,"22":2259},"isBase":true}}}, +{"id":48383,"name":"Wrynn's Helmet of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[129,0,229,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"5":94,"6":86,"22":2097},"isBase":true}}}, +{"id":48384,"name":"Wrynn's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48385,"name":"Wrynn's Battleplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48386,"name":"Hellscream's Battleplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48387,"name":"Hellscream's Gauntlets of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48388,"name":"Hellscream's Helmet of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"5":72,"6":64,"22":1944},"isBase":true}}}, +{"id":48389,"name":"Hellscream's Legplates of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48390,"name":"Hellscream's Shoulderplates of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48391,"name":"Hellscream's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48392,"name":"Hellscream's Gauntlets of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48393,"name":"Hellscream's Helmet of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,204,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"5":82,"6":74,"22":2020},"isBase":true}}}, +{"id":48394,"name":"Hellscream's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"8":82,"22":2175},"isBase":true}}}, +{"id":48395,"name":"Hellscream's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[93,0,151,0,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"6":67,"7":59,"22":1864},"isBase":true}}}, +{"id":48396,"name":"Hellscream's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48397,"name":"Hellscream's Gauntlets of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48398,"name":"Hellscream's Helmet of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[129,0,229,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"5":94,"6":86,"22":2097},"isBase":true}}}, +{"id":48399,"name":"Hellscream's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"8":94,"22":2259},"isBase":true}}}, +{"id":48400,"name":"Hellscream's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[106,0,170,0,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"6":76,"7":68,"22":1936},"isBase":true}}}, +{"id":48402,"name":"Relentless Gladiator's Sunderer","icon":"inv_axe_111","type":13,"weaponType":1,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"2":230,"6":86,"12":274,"13":274,"16":102},"isBase":true}}}, +{"id":48404,"name":"Relentless Gladiator's Crusher","icon":"inv_mace_112","type":13,"weaponType":4,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"2":230,"6":86,"12":274,"13":274,"16":102},"isBase":true}}}, +{"id":48406,"name":"Relentless Gladiator's Claymore","icon":"inv_sword_149","type":13,"weaponType":9,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"2":230,"6":86,"12":274,"13":274,"16":102},"isBase":true}}}, +{"id":48408,"name":"Relentless Gladiator's Mageblade","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,125,0,0,0,48,0,0,0,0,0,0,0,879,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"stats":{"2":125,"6":48,"14":879,"16":48},"isBase":true}}}, +{"id":48410,"name":"Relentless Gladiator's Skirmish Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,0,113,0,0,0,0,0,0,0,877,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"2":276,"6":113,"14":877,"16":113},"isBase":true}}}, +{"id":48412,"name":"Relentless Gladiator's Acute Staff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,113,0,0,0,0,0,0,0,0,877,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"2":276,"5":113,"14":877,"16":113},"isBase":true}}}, +{"id":48414,"name":"Relentless Gladiator's Combat Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,0,0,0,113,0,0,0,0,0,0,877,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"2":276,"7":113,"14":877,"16":113},"isBase":true}}}, +{"id":48420,"name":"Relentless Gladiator's Recurve","icon":"inv_weapon_bow_54","type":14,"rangedWeaponType":1,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"weaponSpeed":3,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"stats":{"1":153,"2":230,"6":102,"16":102},"isBase":true}}}, +{"id":48422,"name":"Relentless Gladiator's Repeater","icon":"inv_weapon_crossbow_36","type":14,"rangedWeaponType":2,"stats":[0,0,230,0,0,0,102,0,0,0,0,0,306,306,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"weaponSpeed":3,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"stats":{"2":230,"6":102,"12":306,"13":306,"16":102},"isBase":true}}}, +{"id":48424,"name":"Relentless Gladiator's Shotgun","icon":"inv_weapon_rifle_37","type":14,"rangedWeaponType":3,"stats":[0,153,230,0,0,0,102,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"weaponSpeed":3,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"stats":{"1":153,"2":230,"6":102,"16":102},"isBase":true}}}, +{"id":48426,"name":"Relentless Gladiator's Dicer","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48428,"name":"Relentless Gladiator's Dirk","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48429,"name":"Wrynn's Greathelm of Conquest","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":63,"22":1944},"isBase":true}}}, +{"id":48430,"name":"Wrynn's Greathelm of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":168,"9":83,"10":66,"22":2020},"isBase":true}}}, +{"id":48432,"name":"Relentless Gladiator's Fleshslicer","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48433,"name":"Wrynn's Greathelm of Triumph","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,73,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":194,"9":97,"10":73,"22":2097},"isBase":true}}}, +{"id":48435,"name":"Relentless Gladiator's Punisher","icon":"inv_mace_111","type":13,"weaponType":4,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48436,"name":"Wrynn's Breastplate of Conquest","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48438,"name":"Relentless Gladiator's Swiftblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48440,"name":"Relentless Gladiator's Splitter","icon":"inv_axe_110","type":13,"weaponType":1,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48442,"name":"Relentless Gladiator's Eviscerator","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":3,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48444,"name":"Relentless Gladiator's Claw","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48445,"name":"Wrynn's Legguards of Conquest","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48446,"name":"Wrynn's Legguards of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"5":53,"9":90,"10":90,"22":2175},"isBase":true}}}, +{"id":48447,"name":"Wrynn's Legguards of Triumph","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"5":62,"9":102,"10":102,"22":2259},"isBase":true}}}, +{"id":48448,"name":"Wrynn's Pauldrons of Conquest","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48449,"name":"Wrynn's Handguards of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48450,"name":"Wrynn's Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":99,"10":63,"22":2486},"isBase":true}}}, +{"id":48451,"name":"Wrynn's Breastplate of Triumph","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":206,"9":112,"10":72,"22":2581},"isBase":true}}}, +{"id":48452,"name":"Wrynn's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1554},"isBase":true}}}, +{"id":48453,"name":"Wrynn's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":82,"10":60,"22":1613},"isBase":true}}}, +{"id":48454,"name":"Wrynn's Pauldrons of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"8":43,"9":101,"22":1864},"isBase":true}}}, +{"id":48455,"name":"Wrynn's Pauldrons of Triumph","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"8":50,"9":114,"22":1936},"isBase":true}}}, +{"id":48456,"name":"Hellscream's Breastplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48457,"name":"Hellscream's Handguards of Conquest","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48458,"name":"Hellscream's Greathelm of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":63,"22":1944},"isBase":true}}}, +{"id":48459,"name":"Hellscream's Legguards of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48460,"name":"Hellscream's Pauldrons of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48461,"name":"Hellscream's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":99,"10":63,"22":2486},"isBase":true}}}, +{"id":48462,"name":"Hellscream's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1554},"isBase":true}}}, +{"id":48463,"name":"Hellscream's Greathelm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":168,"9":83,"10":66,"22":2020},"isBase":true}}}, +{"id":48464,"name":"Hellscream's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"5":53,"9":90,"10":90,"22":2175},"isBase":true}}}, +{"id":48465,"name":"Hellscream's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"8":43,"9":101,"22":1864},"isBase":true}}}, +{"id":48466,"name":"Hellscream's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":206,"9":112,"10":72,"22":2581},"isBase":true}}}, +{"id":48467,"name":"Hellscream's Handguards of Triumph","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":82,"10":60,"22":1613},"isBase":true}}}, +{"id":48468,"name":"Hellscream's Greathelm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,73,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":194,"9":97,"10":73,"22":2097},"isBase":true}}}, +{"id":48469,"name":"Hellscream's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"5":62,"9":102,"10":102,"22":2259},"isBase":true}}}, +{"id":48470,"name":"Hellscream's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"8":50,"9":114,"22":1936},"isBase":true}}}, +{"id":48472,"name":"Thassarian's Helmet of Conquest","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"8":64,"22":1944},"isBase":true}}}, +{"id":48474,"name":"Thassarian's Battleplate of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48476,"name":"Thassarian's Legplates of Conquest","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2094},"isBase":true}}}, +{"id":48478,"name":"Thassarian's Shoulderplates of Conquest","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48480,"name":"Thassarian's Gauntlets of Conquest","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48481,"name":"Thassarian's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48482,"name":"Thassarian's Gauntlets of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48483,"name":"Thassarian's Helmet of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":82,"8":74,"22":2020},"isBase":true}}}, +{"id":48484,"name":"Thassarian's Legplates of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2175},"isBase":true}}}, +{"id":48485,"name":"Thassarian's Shoulderplates of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":48486,"name":"Thassarian's Shoulderplates of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1936},"isBase":true}}}, +{"id":48487,"name":"Thassarian's Legplates of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2259},"isBase":true}}}, +{"id":48488,"name":"Thassarian's Helmet of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"8":86,"22":2097},"isBase":true}}}, +{"id":48489,"name":"Thassarian's Gauntlets of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48490,"name":"Thassarian's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Battlegear","setId":871,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48491,"name":"Koltira's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48492,"name":"Koltira's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48493,"name":"Koltira's Helmet of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"8":86,"22":2097},"isBase":true}}}, +{"id":48494,"name":"Koltira's Legplates of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2259},"isBase":true}}}, +{"id":48495,"name":"Koltira's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1936},"isBase":true}}}, +{"id":48496,"name":"Koltira's Shoulderplates of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":48497,"name":"Koltira's Legplates of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2175},"isBase":true}}}, +{"id":48498,"name":"Koltira's Helmet of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":82,"8":74,"22":2020},"isBase":true}}}, +{"id":48499,"name":"Koltira's Gauntlets of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48500,"name":"Koltira's Battleplate of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48501,"name":"Koltira's Battleplate of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48502,"name":"Koltira's Gauntlets of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48503,"name":"Koltira's Helmet of Conquest","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"8":64,"22":1944},"isBase":true}}}, +{"id":48504,"name":"Koltira's Legplates of Conquest","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2094},"isBase":true}}}, +{"id":48505,"name":"Koltira's Shoulderplates of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Battlegear","setId":872,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48507,"name":"Relentless Gladiator's Handaxe","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48509,"name":"Relentless Gladiator's Spike","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":585,"weaponDamageMax":879,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48511,"name":"Relentless Gladiator's Truncheon","icon":"inv_mace_110","type":13,"weaponType":4,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48513,"name":"Relentless Gladiator's Longblade","icon":"inv_sword_146","type":13,"weaponType":9,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":846,"weaponDamageMax":1269,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":846,"weaponDamageMax":1269,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48515,"name":"Relentless Gladiator's Grasp","icon":"inv_weapon_hand_31","type":13,"weaponType":3,"handType":2,"stats":[0,0,99,0,0,0,36,0,0,0,0,0,115,115,0,0,44,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":740,"weaponDamageMax":1375,"stats":{"2":99,"6":36,"12":115,"13":115,"16":44},"isBase":true}}}, +{"id":48517,"name":"Relentless Gladiator's Halberd","icon":"inv_staff_104","type":13,"weaponType":6,"handType":4,"stats":[0,0,230,0,0,0,86,0,0,0,0,0,274,274,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"2":230,"6":86,"12":274,"13":274,"16":102},"isBase":true}}}, +{"id":48519,"name":"Relentless Gladiator's Salvation","icon":"inv_mace_111","type":13,"weaponType":4,"handType":2,"stats":[0,0,125,0,48,0,0,0,0,0,0,0,0,0,879,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"stats":{"2":125,"4":48,"14":879,"16":48},"isBase":true}}}, +{"id":48521,"name":"Relentless Gladiator's Light Staff","icon":"inv_staff_103","type":13,"weaponType":8,"handType":4,"stats":[0,0,276,0,113,0,0,0,0,0,0,0,0,0,877,0,113,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":423,"weaponDamageMax":635,"stats":{"2":276,"4":113,"14":877,"16":113},"isBase":true}}}, +{"id":48523,"name":"Relentless Gladiator's Greatstaff","icon":"inv_staff_105","type":13,"weaponType":8,"handType":4,"stats":[0,137,230,0,0,0,86,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":846,"weaponDamageMax":1269,"weaponSpeed":2,"ilvl":258,"quality":4,"classAllowlist":[1],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":846,"weaponDamageMax":1269,"stats":{"1":137,"2":230,"6":86,"16":102},"isBase":true}}}, +{"id":48529,"name":"Thassarian's Faceguard of Conquest","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[92,0,145,0,0,45,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":145,"5":45,"9":112,"22":1944},"isBase":true}}}, +{"id":48531,"name":"Thassarian's Chestguard of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,85,57,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"9":85,"10":57,"22":2393},"isBase":true}}}, +{"id":48533,"name":"Thassarian's Legguards of Conquest","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,89,53,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"9":89,"10":53,"22":2094},"isBase":true}}}, +{"id":48535,"name":"Thassarian's Pauldrons of Conquest","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[68,0,122,0,0,37,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"5":37,"10":89,"22":1795},"isBase":true}}}, +{"id":48537,"name":"Thassarian's Handguards of Conquest","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":71,"10":39,"22":1496},"isBase":true}}}, +{"id":48538,"name":"Thassarian's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,97,65,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"9":97,"10":65,"22":2486},"isBase":true}}}, +{"id":48539,"name":"Thassarian's Handguards of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,80,45,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":80,"10":45,"22":1554},"isBase":true}}}, +{"id":48540,"name":"Thassarian's Faceguard of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[103,0,168,0,0,53,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"5":53,"9":127,"22":2020},"isBase":true}}}, +{"id":48541,"name":"Thassarian's Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,101,61,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"9":101,"10":61,"22":2175},"isBase":true}}}, +{"id":48542,"name":"Thassarian's Pauldrons of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[77,0,139,0,0,43,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"5":43,"10":101,"22":1864},"isBase":true}}}, +{"id":48543,"name":"Thassarian's Pauldrons of Triumph","icon":"inv_shoulder_04","type":3,"armorType":4,"stats":[86,0,158,0,0,50,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"5":50,"10":114,"22":1936},"isBase":true}}}, +{"id":48544,"name":"Thassarian's Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,115,70,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"9":115,"10":70,"22":2259},"isBase":true}}}, +{"id":48545,"name":"Thassarian's Faceguard of Triumph","icon":"inv_helmet_08","type":1,"armorType":4,"stats":[116,0,194,0,0,62,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":194,"5":62,"9":145,"22":2097},"isBase":true}}}, +{"id":48546,"name":"Thassarian's Handguards of Triumph","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,90,52,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":90,"10":52,"22":1613},"isBase":true}}}, +{"id":48547,"name":"Thassarian's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,110,74,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Thassarian's Plate","setId":873,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"9":110,"10":74,"22":2581},"isBase":true}}}, +{"id":48548,"name":"Koltira's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,110,74,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"9":110,"10":74,"22":2581},"isBase":true}}}, +{"id":48549,"name":"Koltira's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,90,52,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":90,"10":52,"22":1613},"isBase":true}}}, +{"id":48550,"name":"Koltira's Faceguard of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[116,0,194,0,0,62,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":194,"5":62,"9":145,"22":2097},"isBase":true}}}, +{"id":48551,"name":"Koltira's Legguards of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[116,0,206,0,0,0,0,0,0,114,70,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"9":114,"10":70,"22":2259},"isBase":true}}}, +{"id":48552,"name":"Koltira's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[86,0,158,0,0,50,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"5":50,"10":114,"22":1936},"isBase":true}}}, +{"id":48553,"name":"Koltira's Pauldrons of Triumph","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[77,0,139,0,0,43,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"5":43,"10":101,"22":1864},"isBase":true}}}, +{"id":48554,"name":"Koltira's Legguards of Triumph","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,101,61,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"9":101,"10":61,"22":2175},"isBase":true}}}, +{"id":48555,"name":"Koltira's Faceguard of Triumph","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[103,0,168,0,0,53,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":168,"5":53,"9":127,"22":2020},"isBase":true}}}, +{"id":48556,"name":"Koltira's Handguards of Triumph","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,80,45,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":80,"10":45,"22":1554},"isBase":true}}}, +{"id":48557,"name":"Koltira's Chestguard of Triumph","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[103,0,180,0,0,0,0,0,0,97,65,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"9":97,"10":65,"22":2486},"isBase":true}}}, +{"id":48558,"name":"Koltira's Chestguard of Conquest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,85,57,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"9":85,"10":57,"22":2393},"isBase":true}}}, +{"id":48559,"name":"Koltira's Handguards of Conquest","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,71,39,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":71,"10":39,"22":1496},"isBase":true}}}, +{"id":48560,"name":"Koltira's Faceguard of Conquest","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[92,0,145,0,0,45,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":145,"5":45,"9":112,"22":1944},"isBase":true}}}, +{"id":48561,"name":"Koltira's Legguards of Conquest","icon":"inv_pants_plate_25","type":9,"armorType":4,"stats":[92,0,157,0,0,0,0,0,0,89,53,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"9":89,"10":53,"22":2094},"isBase":true}}}, +{"id":48562,"name":"Koltira's Pauldrons of Conquest","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[68,0,122,0,0,37,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[10],"setName":"Koltira's Plate","setId":874,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"5":37,"10":89,"22":1795},"isBase":true}}}, +{"id":48564,"name":"Turalyon's Headpiece of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":64,"7":72,"22":1944},"isBase":true}}}, +{"id":48566,"name":"Turalyon's Tunic of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2393},"isBase":true}}}, +{"id":48568,"name":"Turalyon's Greaves of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2094},"isBase":true}}}, +{"id":48572,"name":"Turalyon's Spaulders of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48574,"name":"Turalyon's Gloves of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":1496},"isBase":true}}}, +{"id":48575,"name":"Turalyon's Tunic of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":2486},"isBase":true}}}, +{"id":48576,"name":"Turalyon's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,144,93,60,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":60,"7":67,"22":1554},"isBase":true}}}, +{"id":48577,"name":"Turalyon's Headpiece of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,193,112,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":74,"7":82,"22":2020},"isBase":true}}}, +{"id":48578,"name":"Turalyon's Greaves of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":2175},"isBase":true}}}, +{"id":48579,"name":"Turalyon's Spaulders of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":67,"7":59,"22":1864},"isBase":true}}}, +{"id":48580,"name":"Turalyon's Spaulders of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"6":76,"7":68,"22":1936},"isBase":true}}}, +{"id":48581,"name":"Turalyon's Greaves of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":102,"6":86,"22":2259},"isBase":true}}}, +{"id":48582,"name":"Turalyon's Headpiece of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":2097},"isBase":true}}}, +{"id":48583,"name":"Turalyon's Gloves of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"4":68,"7":76,"22":1613},"isBase":true}}}, +{"id":48584,"name":"Turalyon's Tunic of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":102,"6":86,"22":2581},"isBase":true}}}, +{"id":48585,"name":"Liadrin's Spaulders of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,161,106,0,0,76,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"6":76,"7":68,"22":1936},"isBase":true}}}, +{"id":48586,"name":"Liadrin's Greaves of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":102,"6":86,"22":2259},"isBase":true}}}, +{"id":48587,"name":"Liadrin's Headpiece of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,218,129,0,0,86,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":129,"6":86,"7":94,"22":2097},"isBase":true}}}, +{"id":48588,"name":"Liadrin's Gloves of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,161,106,68,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":161,"3":106,"4":68,"7":76,"22":1613},"isBase":true}}}, +{"id":48589,"name":"Liadrin's Tunic of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,218,137,102,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"2":218,"3":137,"4":102,"6":86,"22":2581},"isBase":true}}}, +{"id":48590,"name":"Liadrin's Spaulders of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,144,93,0,0,67,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"6":67,"7":59,"22":1864},"isBase":true}}}, +{"id":48591,"name":"Liadrin's Greaves of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":2175},"isBase":true}}}, +{"id":48592,"name":"Liadrin's Headpiece of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,193,112,0,0,74,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":112,"6":74,"7":82,"22":2020},"isBase":true}}}, +{"id":48593,"name":"Liadrin's Gloves of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,144,93,60,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":60,"7":67,"22":1554},"isBase":true}}}, +{"id":48594,"name":"Liadrin's Tunic of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":2486},"isBase":true}}}, +{"id":48595,"name":"Liadrin's Spaulders of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48596,"name":"Liadrin's Greaves of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2094},"isBase":true}}}, +{"id":48597,"name":"Liadrin's Headpiece of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":64,"7":72,"22":1944},"isBase":true}}}, +{"id":48598,"name":"Liadrin's Gloves of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":1496},"isBase":true}}}, +{"id":48599,"name":"Liadrin's Tunic of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2393},"isBase":true}}}, +{"id":48602,"name":"Turalyon's Battleplate of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48603,"name":"Turalyon's Gauntlets of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48604,"name":"Turalyon's Helm of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"7":64,"22":1944},"isBase":true}}}, +{"id":48605,"name":"Turalyon's Legplates of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48606,"name":"Turalyon's Shoulderplates of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48607,"name":"Turalyon's Battleplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48608,"name":"Turalyon's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48609,"name":"Turalyon's Helm of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":82,"7":74,"22":2020},"isBase":true}}}, +{"id":48610,"name":"Turalyon's Legplates of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"8":82,"22":2175},"isBase":true}}}, +{"id":48611,"name":"Turalyon's Shoulderplates of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":48612,"name":"Turalyon's Shoulderplates of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1936},"isBase":true}}}, +{"id":48613,"name":"Turalyon's Legplates of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"8":94,"22":2259},"isBase":true}}}, +{"id":48614,"name":"Turalyon's Helm of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"7":86,"22":2097},"isBase":true}}}, +{"id":48615,"name":"Turalyon's Gauntlets of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48616,"name":"Turalyon's Battleplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48617,"name":"Liadrin's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"7":94,"22":2581},"isBase":true}}}, +{"id":48618,"name":"Liadrin's Gauntlets of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1613},"isBase":true}}}, +{"id":48619,"name":"Liadrin's Helm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[129,0,229,0,0,0,94,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":129,"2":229,"6":94,"7":86,"22":2097},"isBase":true}}}, +{"id":48620,"name":"Liadrin's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[137,0,229,0,0,0,94,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":137,"2":229,"6":94,"8":94,"22":2259},"isBase":true}}}, +{"id":48621,"name":"Liadrin's Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[106,0,170,0,0,68,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":106,"2":170,"5":68,"6":76,"22":1936},"isBase":true}}}, +{"id":48622,"name":"Liadrin's Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1864},"isBase":true}}}, +{"id":48623,"name":"Liadrin's Legplates of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[120,0,204,0,0,0,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"8":82,"22":2175},"isBase":true}}}, +{"id":48624,"name":"Liadrin's Helm of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[112,0,204,0,0,0,82,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":112,"2":204,"6":82,"7":74,"22":2020},"isBase":true}}}, +{"id":48625,"name":"Liadrin's Gauntlets of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[93,0,151,0,0,59,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":93,"2":151,"5":59,"6":67,"22":1554},"isBase":true}}}, +{"id":48626,"name":"Liadrin's Battleplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,204,0,0,0,82,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":82,"7":82,"22":2486},"isBase":true}}}, +{"id":48627,"name":"Liadrin's Shoulderplates of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48628,"name":"Liadrin's Legplates of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48629,"name":"Liadrin's Helm of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"7":64,"22":1944},"isBase":true}}}, +{"id":48630,"name":"Liadrin's Gauntlets of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48631,"name":"Liadrin's Battleplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48632,"name":"Turalyon's Breastplate of Conquest","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48633,"name":"Turalyon's Handguards of Conquest","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48634,"name":"Turalyon's Faceguard of Conquest","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48635,"name":"Turalyon's Legguards of Conquest","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48636,"name":"Turalyon's Shoulderguards of Conquest","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48637,"name":"Turalyon's Shoulderguards of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"8":43,"9":101,"22":1864},"isBase":true}}}, +{"id":48638,"name":"Turalyon's Legguards of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"5":53,"9":90,"10":90,"22":2175},"isBase":true}}}, +{"id":48639,"name":"Turalyon's Faceguard of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,90,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":168,"9":83,"10":90,"22":2020},"isBase":true}}}, +{"id":48640,"name":"Turalyon's Handguards of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1554},"isBase":true}}}, +{"id":48641,"name":"Turalyon's Breastplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":99,"10":63,"22":2486},"isBase":true}}}, +{"id":48642,"name":"Turalyon's Breastplate of Triumph","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":206,"9":112,"10":72,"22":2581},"isBase":true}}}, +{"id":48643,"name":"Turalyon's Handguards of Triumph","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":82,"10":60,"22":1613},"isBase":true}}}, +{"id":48644,"name":"Turalyon's Faceguard of Triumph","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,102,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":194,"9":97,"10":102,"22":2097},"isBase":true}}}, +{"id":48645,"name":"Turalyon's Legguards of Triumph","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"5":62,"9":102,"10":102,"22":2259},"isBase":true}}}, +{"id":48646,"name":"Turalyon's Shoulderguards of Triumph","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"8":50,"9":114,"22":1936},"isBase":true}}}, +{"id":48647,"name":"Liadrin's Shoulderguards of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[86,0,158,0,0,0,0,0,50,114,0,0,0,0,0,0,0,0,0,0,0,0,1936,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":86,"2":158,"8":50,"9":114,"22":1936},"isBase":true}}}, +{"id":48648,"name":"Liadrin's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[116,0,206,0,0,62,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,2259,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":116,"2":206,"5":62,"9":102,"10":102,"22":2259},"isBase":true}}}, +{"id":48649,"name":"Liadrin's Faceguard of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[153,0,194,0,0,0,0,0,0,97,102,0,0,0,0,0,0,0,0,0,0,0,2097,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":194,"9":97,"10":102,"22":2097},"isBase":true}}}, +{"id":48650,"name":"Liadrin's Handguards of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,82,60,0,0,0,0,0,0,0,0,0,0,0,1613,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":82,"10":60,"22":1613},"isBase":true}}}, +{"id":48651,"name":"Liadrin's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[153,0,206,0,0,0,0,0,0,112,72,0,0,0,0,0,0,0,0,0,0,0,2581,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":291,"stats":{"0":153,"2":206,"9":112,"10":72,"22":2581},"isBase":true}}}, +{"id":48652,"name":"Liadrin's Breastplate of Conquest","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48653,"name":"Liadrin's Handguards of Conquest","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48654,"name":"Liadrin's Faceguard of Conquest","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48655,"name":"Liadrin's Legguards of Conquest","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48656,"name":"Liadrin's Shoulderguards of Conquest","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48657,"name":"Liadrin's Breastplate of Triumph","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2486,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":99,"10":63,"22":2486},"isBase":true}}}, +{"id":48658,"name":"Liadrin's Handguards of Triumph","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[101,0,139,0,0,0,0,0,0,72,53,0,0,0,0,0,0,0,0,0,0,0,1554,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":101,"2":139,"9":72,"10":53,"22":1554},"isBase":true}}}, +{"id":48659,"name":"Liadrin's Faceguard of Triumph","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[136,0,168,0,0,0,0,0,0,83,90,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":136,"2":168,"9":83,"10":90,"22":2020},"isBase":true}}}, +{"id":48660,"name":"Liadrin's Legguards of Triumph","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[103,0,180,0,0,53,0,0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,2175,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"expansion":3,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":103,"2":180,"5":53,"9":90,"10":90,"22":2175},"isBase":true}}}, +{"id":48661,"name":"Liadrin's Shoulderguards of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[77,0,139,0,0,0,0,0,43,101,0,0,0,0,0,0,0,0,0,0,0,0,1864,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"0":77,"2":139,"8":43,"9":101,"22":1864},"isBase":true}}}, +{"id":48663,"name":"Tankard O' Terror","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,47,64,0,0,0,29,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":540,"weaponDamageMax":1004,"weaponSpeed":2.6,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":540,"weaponDamageMax":1004,"stats":{"1":47,"2":64,"6":29,"7":27},"isBase":true}}}, +{"id":48666,"name":"Drape of the Sunreavers","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,121,77,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"6":57,"7":49,"22":535},"isBase":true}}}, +{"id":48667,"name":"Shawl of the Devout Crusader","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":57,"7":49,"22":535},"isBase":true}}}, +{"id":48668,"name":"Cloak of Serrated Blades","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,85,116,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":85,"2":116,"6":57,"7":49,"22":535},"isBase":true}}}, +{"id":48669,"name":"Cloak of the Triumphant Combatant","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":49,"6":57,"22":535},"isBase":true}}}, +{"id":48670,"name":"Cloak of the Unflinching Guardian","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[85,0,116,0,0,0,0,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":59,"10":45,"22":535},"isBase":true}}}, +{"id":48671,"name":"Drape of Bitter Incantation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,121,77,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"6":57,"7":49,"22":535},"isBase":true}}}, +{"id":48672,"name":"Shawl of Fervent Crusader","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,122,77,57,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":57,"7":49,"22":535},"isBase":true}}}, +{"id":48673,"name":"Cloak of the Silver Covenant","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,85,116,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":85,"2":116,"6":57,"7":49,"22":535},"isBase":true}}}, +{"id":48674,"name":"Cloak of the Victorious Combatant","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[77,0,128,0,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"5":49,"6":57,"22":535},"isBase":true}}}, +{"id":48675,"name":"Cloak of the Unmoving Guardian","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[85,0,116,0,0,0,0,0,0,59,45,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":85,"2":116,"9":59,"10":45,"22":535},"isBase":true}}}, +{"id":48693,"name":"Heartsmasher","icon":"inv_mace_103","type":13,"weaponType":4,"handType":2,"stats":[0,0,92,0,0,0,36,54,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":92,"6":36,"7":54,"14":780},"isBase":true}}}, +{"id":48695,"name":"Mor'kosh, the Bloodreaver","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[128,0,204,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":128,"2":204,"5":70,"6":85},"isBase":true}}}, +{"id":48697,"name":"Frenzystrike Longbow","icon":"inv_weapon_bow_51","type":14,"rangedWeaponType":1,"stats":[0,132,187,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"stats":{"1":132,"2":187,"5":86,"6":86},"isBase":true}}}, +{"id":48699,"name":"Blood and Glory","icon":"inv_mace_101","type":13,"weaponType":4,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,46,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"weaponSpeed":1.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"stats":{"0":58,"2":76,"9":46,"10":23},"isBase":true}}}, +{"id":48701,"name":"Spellharvest","icon":"inv_sword_137","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,32,0,52,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":104,"5":32,"7":52,"14":780},"isBase":true}}}, +{"id":48703,"name":"The Facebreaker","icon":"inv_weapon_hand_30","type":13,"weaponType":3,"handType":2,"stats":[0,58,71,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"stats":{"1":58,"2":71,"6":39,"7":31},"isBase":true}}}, +{"id":48705,"name":"Attrition","icon":"inv_staff_97","type":13,"weaponType":8,"handType":4,"stats":[0,128,165,0,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"weaponSpeed":2.4,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"stats":{"1":128,"2":165,"6":63,"7":97},"isBase":true}}}, +{"id":48708,"name":"Spellstorm Blade","icon":"inv_sword_144","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,32,0,52,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":104,"5":32,"7":52,"14":780},"isBase":true}}}, +{"id":48709,"name":"Heartcrusher","icon":"inv_mace_107","type":13,"weaponType":4,"handType":2,"stats":[0,0,92,0,0,0,36,54,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":92,"6":36,"7":54,"14":780},"isBase":true}}}, +{"id":48710,"name":"Paragon's Breadth","icon":"inv_staff_100","type":13,"weaponType":8,"handType":4,"stats":[0,128,165,0,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"weaponSpeed":2.4,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":892,"weaponDamageMax":1339,"stats":{"1":128,"2":165,"6":63,"7":97},"isBase":true}}}, +{"id":48711,"name":"Rhok'shalla, the Shadow's Bane","icon":"inv_weapon_bow_52","type":14,"rangedWeaponType":1,"stats":[0,132,187,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"weaponSpeed":2.8,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":911,"weaponDamageMax":1692,"stats":{"1":132,"2":187,"5":86,"6":86},"isBase":true}}}, +{"id":48712,"name":"The Spinebreaker","icon":"inv_weapon_hand_29","type":13,"weaponType":3,"handType":2,"stats":[0,58,71,0,0,0,39,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"weaponSpeed":2.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":743,"weaponDamageMax":1116,"stats":{"1":58,"2":71,"6":39,"7":31},"isBase":true}}}, +{"id":48713,"name":"Lothar's Edge","icon":"inv_axe_103","type":13,"weaponType":1,"handType":4,"stats":[128,0,204,0,0,70,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"weaponSpeed":3.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1339,"weaponDamageMax":2009,"stats":{"0":128,"2":204,"5":70,"6":85},"isBase":true}}}, +{"id":48714,"name":"Honor of the Fallen","icon":"inv_mace_105","type":13,"weaponType":4,"handType":2,"stats":[58,0,76,0,0,0,0,0,0,46,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"weaponSpeed":1.6,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Argent Crusade Tribute Chest","category":"%s Attempts left"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":400,"weaponDamageMax":744,"stats":{"0":58,"2":76,"9":46,"10":23},"isBase":true}}}, +{"id":48722,"name":"Shard of the Crystal Heart","icon":"inv_spiritshard_01","type":12,"stats":[0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"5":128},"isBase":true}}}, +{"id":48724,"name":"Talisman of Resurgence","icon":"inv_misc_gem_bloodstone_03","type":12,"stats":[0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"3":128},"isBase":true}}}, +{"id":48725,"name":"Khadgar's Gauntlets ","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,127,81,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"6":60,"7":52,"22":577},"isBase":true}}}, +{"id":48726,"name":"Khadgar's Hood ","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"5":64,"7":72,"22":750},"isBase":true}}}, +{"id":48727,"name":"Khadgar's Leggings ","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":64,"6":80,"22":807},"isBase":true}}}, +{"id":48728,"name":"Khadgar's Robe ","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":64,"6":80,"22":923},"isBase":true}}}, +{"id":48729,"name":"Khadgar's Shoulderpads ","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Khadgar's Regalia","setId":843,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":692},"isBase":true}}}, +{"id":48731,"name":"Sunstrider's Hood ","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,173,97,0,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":64,"7":72,"22":750},"isBase":true}}}, +{"id":48732,"name":"Sunstrider's Leggings ","icon":"inv_pants_cloth_20","type":9,"armorType":1,"stats":[0,0,173,105,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":64,"6":80,"22":807},"isBase":true}}}, +{"id":48733,"name":"Sunstrider's Robe ","icon":"inv_chest_cloth_68","type":5,"armorType":1,"stats":[0,0,173,105,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":64,"6":80,"22":923},"isBase":true}}}, +{"id":48734,"name":"Sunstrider's Shoulderpads ","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[3],"setName":"Sunstrider's Regalia","setId":844,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":692},"isBase":true}}}, +{"id":48735,"name":"Gul'dan's Gloves ","icon":"inv_gauntlets_61","type":7,"armorType":1,"stats":[0,0,127,81,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48736,"name":"Gul'dan's Hood ","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":64,"6":72,"22":750},"isBase":true}}}, +{"id":48737,"name":"Gul'dan's Leggings ","icon":"inv_pants_cloth_02","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":80,"7":64,"22":807},"isBase":true}}}, +{"id":48738,"name":"Gul'dan's Robe ","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"6":72,"22":923},"isBase":true}}}, +{"id":48739,"name":"Gul'dan's Shoulderpads ","icon":"inv_shoulder_35","type":3,"armorType":1,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Gul'dan's Regalia","setId":845,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"6":60,"22":692},"isBase":true}}}, +{"id":48740,"name":"Kel'Thuzad's Gloves ","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,127,81,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48741,"name":"Kel'Thuzad's Hood ","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":64,"6":72,"22":750},"isBase":true}}}, +{"id":48742,"name":"Kel'Thuzad's Leggings ","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":80,"7":64,"22":807},"isBase":true}}}, +{"id":48743,"name":"Kel'Thuzad's Robe ","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"6":72,"22":923},"isBase":true}}}, +{"id":48744,"name":"Kel'Thuzad's Shoulderpads ","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[8],"setName":"Kel'Thuzad's Regalia","setId":846,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"6":60,"22":692},"isBase":true}}}, +{"id":48745,"name":"Velen's Cowl ","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"4":72,"6":64,"22":750},"isBase":true}}}, +{"id":48746,"name":"Velen's Gloves ","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":577},"isBase":true}}}, +{"id":48747,"name":"Velen's Leggings ","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":807},"isBase":true}}}, +{"id":48748,"name":"Velen's Robe ","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":923},"isBase":true}}}, +{"id":48749,"name":"Velen's Shoulderpads ","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Raiment","setId":847,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48750,"name":"Zabra's Cowl ","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,173,97,72,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":72,"6":64,"22":750},"isBase":true}}}, +{"id":48751,"name":"Zabra's Gloves ","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":577},"isBase":true}}}, +{"id":48752,"name":"Zabra's Leggings ","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":807},"isBase":true}}}, +{"id":48753,"name":"Zabra's Robe ","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":923},"isBase":true}}}, +{"id":48754,"name":"Zabra's Shoulderpads ","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Raiment","setId":848,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48755,"name":"Velen's Circlet ","icon":"inv_helmet_146","type":1,"armorType":1,"stats":[0,0,172,96,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":96,"5":72,"6":64,"22":750},"isBase":true}}}, +{"id":48756,"name":"Velen's Handwraps ","icon":"inv_gauntlets_79","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48757,"name":"Velen's Mantle ","icon":"inv_shoulder_110","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48758,"name":"Velen's Pants ","icon":"inv_pants_cloth_33","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"7":64,"22":807},"isBase":true}}}, +{"id":48759,"name":"Velen's Raiments ","icon":"inv_chest_cloth_75","type":5,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Velen's Regalia","setId":849,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":923},"isBase":true}}}, +{"id":48760,"name":"Zabra's Circlet ","icon":"inv_helmet_87","type":1,"armorType":1,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":750},"isBase":true}}}, +{"id":48761,"name":"Zabra's Handwraps ","icon":"inv_gauntlets_55","type":7,"armorType":1,"stats":[0,0,128,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":52,"6":60,"22":577},"isBase":true}}}, +{"id":48762,"name":"Zabra's Mantle ","icon":"inv_shoulder_90","type":3,"armorType":1,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":692},"isBase":true}}}, +{"id":48763,"name":"Zabra's Pants ","icon":"inv_pants_cloth_06","type":9,"armorType":1,"stats":[0,0,173,105,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"7":64,"22":807},"isBase":true}}}, +{"id":48764,"name":"Zabra's Raiments ","icon":"inv_chest_cloth_73","type":5,"armorType":1,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"setName":"Zabra's Regalia","setId":850,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":923},"isBase":true}}}, +{"id":48769,"name":"Runetotem's Handguards ","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":753},"isBase":true}}}, +{"id":48770,"name":"Runetotem's Headpiece ","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":64,"6":72,"22":979},"isBase":true}}}, +{"id":48771,"name":"Runetotem's Leggings ","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":1055},"isBase":true}}}, +{"id":48772,"name":"Runetotem's Robe ","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":1205},"isBase":true}}}, +{"id":48773,"name":"Runetotem's Spaulders ","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Garb","setId":852,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":904},"isBase":true}}}, +{"id":48774,"name":"Malfurion's Handguards ","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":753},"isBase":true}}}, +{"id":48775,"name":"Malfurion's Headpiece ","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,64,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":64,"6":72,"22":979},"isBase":true}}}, +{"id":48776,"name":"Malfurion's Leggings ","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"7":72,"22":1055},"isBase":true}}}, +{"id":48777,"name":"Malfurion's Robe ","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":72,"6":72,"22":1205},"isBase":true}}}, +{"id":48778,"name":"Malfurion's Spaulders ","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Garb","setId":851,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":904},"isBase":true}}}, +{"id":48781,"name":"Runetotem's Cover ","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":979},"isBase":true}}}, +{"id":48782,"name":"Runetotem's Gloves ","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":753},"isBase":true}}}, +{"id":48783,"name":"Runetotem's Mantle ","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":904},"isBase":true}}}, +{"id":48784,"name":"Runetotem's Trousers ","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1055},"isBase":true}}}, +{"id":48785,"name":"Runetotem's Vestments ","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Regalia","setId":854,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":64,"7":80,"22":1205},"isBase":true}}}, +{"id":48786,"name":"Malfurion's Cover ","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,0,173,97,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"5":72,"6":64,"22":979},"isBase":true}}}, +{"id":48787,"name":"Malfurion's Gloves ","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":753},"isBase":true}}}, +{"id":48788,"name":"Malfurion's Mantle ","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,0,128,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"6":52,"22":904},"isBase":true}}}, +{"id":48789,"name":"Malfurion's Trousers ","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1055},"isBase":true}}}, +{"id":48790,"name":"Malfurion's Vestments ","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,0,173,105,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Regalia","setId":853,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":64,"7":80,"22":1205},"isBase":true}}}, +{"id":48794,"name":"Runetotem's Handgrips ","icon":"inv_gauntlets_78b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48795,"name":"Runetotem's Headguard ","icon":"inv_helmet_145b","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48796,"name":"Runetotem's Legguards ","icon":"inv_pants_leather_30b","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"5":64,"6":80,"22":1055},"isBase":true}}}, +{"id":48797,"name":"Runetotem's Raiments ","icon":"inv_chest_leather_18b","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":74,"7":70,"22":1205},"isBase":true}}}, +{"id":48798,"name":"Runetotem's Shoulderpads ","icon":"inv_shoulder_109b","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Runetotem's Battlegear","setId":856,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"7":60,"22":904},"isBase":true}}}, +{"id":48799,"name":"Malfurion's Handgrips ","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48800,"name":"Malfurion's Headguard ","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48801,"name":"Malfurion's Legguards ","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,157,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"5":64,"6":80,"22":1055},"isBase":true}}}, +{"id":48802,"name":"Malfurion's Raiments ","icon":"inv_chest_leather_12","type":5,"armorType":2,"stats":[0,104,181,0,0,0,74,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":74,"7":70,"22":1205},"isBase":true}}}, +{"id":48803,"name":"Malfurion's Shoulderpads ","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,81,134,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1],"setName":"Malfurion's Battlegear","setId":855,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"7":60,"22":904},"isBase":true}}}, +{"id":48804,"name":"Garona's Breastplate ","icon":"inv_chest_leather_18a","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":72,"6":80,"22":1205},"isBase":true}}}, +{"id":48805,"name":"Garona's Gauntlets ","icon":"inv_gauntlets_78a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48806,"name":"Garona's Helmet ","icon":"inv_helmet_145a","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48807,"name":"Garona's Legplates ","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":64,"6":72,"22":1055},"isBase":true}}}, +{"id":48808,"name":"Garona's Pauldrons ","icon":"inv_shoulder_109a","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"Garona's Battlegear","setId":858,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"6":60,"8":52,"22":904},"isBase":true}}}, +{"id":48809,"name":"VanCleef's Breastplate ","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,104,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":72,"6":80,"22":1205},"isBase":true}}}, +{"id":48810,"name":"VanCleef's Gauntlets ","icon":"inv_gauntlets_77a","type":7,"armorType":2,"stats":[0,89,122,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"5":52,"6":60,"22":753},"isBase":true}}}, +{"id":48811,"name":"VanCleef's Helmet ","icon":"inv_helmet_139","type":1,"armorType":2,"stats":[0,104,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":157,"6":80,"8":64,"22":979},"isBase":true}}}, +{"id":48812,"name":"VanCleef's Legplates ","icon":"inv_pants_leather_28","type":9,"armorType":2,"stats":[0,104,169,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":169,"5":64,"6":72,"22":1055},"isBase":true}}}, +{"id":48813,"name":"VanCleef's Pauldrons ","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,89,122,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[6],"setName":"VanCleef's Battlegear","setId":857,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":122,"6":60,"8":52,"22":904},"isBase":true}}}, +{"id":48814,"name":"Windrunner's Handguards ","icon":"inv_gauntlets_80","type":7,"armorType":3,"stats":[0,81,106,0,0,0,81,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":106,"6":81,"7":47,"22":1076},"isBase":true}}}, +{"id":48815,"name":"Windrunner's Headpiece ","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":142,"6":104,"7":47,"22":1399},"isBase":true}}}, +{"id":48816,"name":"Windrunner's Legguards ","icon":"inv_pants_mail_24","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":154,"6":104,"7":63,"22":1507},"isBase":true}}}, +{"id":48817,"name":"Windrunner's Spaulders ","icon":"inv_shoulder_100","type":3,"armorType":3,"stats":[0,89,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48818,"name":"Windrunner's Tunic ","icon":"inv_chest_mail_03","type":5,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Pursuit","setId":860,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1722},"isBase":true}}}, +{"id":48819,"name":"Windrunner's Handguards ","icon":"inv_gauntlets_56","type":7,"armorType":3,"stats":[0,81,106,0,0,0,81,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":106,"6":81,"7":47,"22":1076},"isBase":true}}}, +{"id":48820,"name":"Windrunner's Headpiece ","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,104,142,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":142,"6":104,"7":47,"22":1399},"isBase":true}}}, +{"id":48821,"name":"Windrunner's Legguards ","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,154,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":154,"6":104,"7":63,"22":1507},"isBase":true}}}, +{"id":48822,"name":"Windrunner's Spaulders ","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":61,"22":1291},"isBase":true}}}, +{"id":48823,"name":"Windrunner's Tunic ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"setName":"Windrunner's Battlegear","setId":859,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1722},"isBase":true}}}, +{"id":48824,"name":"Nobundo's Handguards ","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48825,"name":"Nobundo's Headpiece ","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":70,"6":66,"22":1399},"isBase":true}}}, +{"id":48826,"name":"Nobundo's Legguards ","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":70,"6":74,"22":1507},"isBase":true}}}, +{"id":48827,"name":"Nobundo's Spaulders ","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1291},"isBase":true}}}, +{"id":48828,"name":"Nobundo's Tunic ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Garb","setId":861,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48829,"name":"Thrall's Handguards ","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48830,"name":"Thrall's Headpiece ","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,70,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"4":70,"6":66,"22":1399},"isBase":true}}}, +{"id":48831,"name":"Thrall's Legguards ","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,70,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":70,"6":74,"22":1507},"isBase":true}}}, +{"id":48832,"name":"Thrall's Spaulders ","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":60,"7":52,"22":1291},"isBase":true}}}, +{"id":48833,"name":"Thrall's Tunic ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Garb","setId":862,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48836,"name":"Nobundo's Gloves ","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48837,"name":"Nobundo's Hauberk ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48838,"name":"Nobundo's Helm ","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":70,"7":74,"22":1399},"isBase":true}}}, +{"id":48839,"name":"Nobundo's Kilt ","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1507},"isBase":true}}}, +{"id":48840,"name":"Nobundo's Shoulderpads ","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Regalia","setId":864,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":1291},"isBase":true}}}, +{"id":48841,"name":"Thrall's Gloves ","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,0,128,82,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"5":60,"7":52,"22":1076},"isBase":true}}}, +{"id":48842,"name":"Thrall's Hauberk ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,173,105,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":72,"7":72,"22":1722},"isBase":true}}}, +{"id":48843,"name":"Thrall's Helm ","icon":"inv_helmet_100","type":1,"armorType":3,"stats":[0,0,173,97,0,0,70,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":70,"7":74,"22":1399},"isBase":true}}}, +{"id":48844,"name":"Thrall's Kilt ","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,0,173,105,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"5":80,"6":64,"22":1507},"isBase":true}}}, +{"id":48845,"name":"Thrall's Shoulderpads ","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,0,128,82,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Regalia","setId":863,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":52,"7":60,"22":1291},"isBase":true}}}, +{"id":48846,"name":"Nobundo's Chestguard ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":121,"2":142,"6":96,"7":55,"22":1722},"isBase":true}}}, +{"id":48847,"name":"Nobundo's Faceguard ","icon":"inv_helmet_95","type":1,"armorType":3,"stats":[0,96,181,0,0,56,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":56,"6":80,"22":1399},"isBase":true}}}, +{"id":48848,"name":"Nobundo's Grips ","icon":"inv_gauntlets_73","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"8":60,"22":1076},"isBase":true}}}, +{"id":48849,"name":"Nobundo's Shoulderguards ","icon":"inv_shoulder_107","type":3,"armorType":3,"stats":[0,81,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"5":52,"6":60,"22":1291},"isBase":true}}}, +{"id":48850,"name":"Nobundo's War-Kilt ","icon":"inv_pants_mail_25","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Nobundo's Battlegear","setId":865,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1507},"isBase":true}}}, +{"id":48851,"name":"Thrall's Chestguard ","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,121,142,0,0,0,96,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":121,"2":142,"6":96,"7":55,"22":1722},"isBase":true}}}, +{"id":48852,"name":"Thrall's Faceguard ","icon":"inv_axe_100","type":1,"armorType":3,"stats":[0,96,181,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":96,"2":181,"5":68,"6":68,"22":1399},"isBase":true}}}, +{"id":48853,"name":"Thrall's Grips ","icon":"inv_gauntlets_53","type":7,"armorType":3,"stats":[0,81,134,0,0,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":52,"8":60,"22":1076},"isBase":true}}}, +{"id":48854,"name":"Thrall's Shoulderguards ","icon":"inv_shoulder_67","type":3,"armorType":3,"stats":[0,81,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":81,"2":134,"6":60,"7":52,"22":1291},"isBase":true}}}, +{"id":48855,"name":"Thrall's War-Kilt ","icon":"inv_pants_mail_28","type":9,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"setName":"Thrall's Battlegear","setId":866,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1507},"isBase":true}}}, +{"id":48860,"name":"Hellscream's Battleplate ","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48861,"name":"Hellscream's Gauntlets ","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48862,"name":"Hellscream's Helmet ","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"5":72,"6":64,"22":1944},"isBase":true}}}, +{"id":48863,"name":"Hellscream's Legplates ","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48864,"name":"Hellscream's Shoulderplates ","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Battlegear","setId":868,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48865,"name":"Wrynn's Battleplate ","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48866,"name":"Wrynn's Gauntlets ","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48867,"name":"Wrynn's Helmet ","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[96,0,180,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"5":72,"6":64,"22":1944},"isBase":true}}}, +{"id":48868,"name":"Wrynn's Legplates ","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48869,"name":"Wrynn's Shoulderplates ","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[81,0,134,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Battlegear","setId":867,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48870,"name":"Hellscream's Breastplate ","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48871,"name":"Hellscream's Greathelm ","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48872,"name":"Hellscream's Handguards ","icon":"inv_gauntlets_53","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48873,"name":"Hellscream's Legguards ","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48874,"name":"Hellscream's Pauldrons ","icon":"inv_shoulder_73","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Hellscream's Plate","setId":870,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48875,"name":"Wrynn's Breastplate ","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48876,"name":"Wrynn's Greathelm ","icon":"inv_helmet_23","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48877,"name":"Wrynn's Handguards ","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48878,"name":"Wrynn's Legguards ","icon":"inv_pants_plate_24","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48879,"name":"Wrynn's Pauldrons ","icon":"inv_shoulder_20","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[9],"setName":"Wrynn's Plate","setId":869,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48900,"name":"Turalyon's Tunic ","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2393},"isBase":true}}}, +{"id":48901,"name":"Turalyon's Spaulders ","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48902,"name":"Turalyon's Headpiece ","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":64,"7":72,"22":1944},"isBase":true}}}, +{"id":48903,"name":"Turalyon's Greaves ","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2094},"isBase":true}}}, +{"id":48904,"name":"Turalyon's Gloves ","icon":"inv_gauntlets_79","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Garb","setId":875,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":1496},"isBase":true}}}, +{"id":48905,"name":"Liadrin's Tunic ","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2393},"isBase":true}}}, +{"id":48906,"name":"Liadrin's Spaulders ","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[0,0,128,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"6":60,"7":52,"22":1795},"isBase":true}}}, +{"id":48907,"name":"Liadrin's Headpiece ","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[0,0,173,97,0,0,64,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":97,"6":64,"7":72,"22":1944},"isBase":true}}}, +{"id":48908,"name":"Liadrin's Greaves ","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":2094},"isBase":true}}}, +{"id":48909,"name":"Liadrin's Gloves ","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[0,0,128,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Garb","setId":876,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":82,"4":52,"7":60,"22":1496},"isBase":true}}}, +{"id":48910,"name":"Liadrin's Battleplate ","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48911,"name":"Liadrin's Gauntlets ","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48912,"name":"Liadrin's Helm ","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"7":64,"22":1944},"isBase":true}}}, +{"id":48913,"name":"Liadrin's Legplates ","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48914,"name":"Liadrin's Shoulderplates ","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Battlegear","setId":878,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48915,"name":"Turalyon's Battleplate ","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[104,0,180,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"7":72,"22":2393},"isBase":true}}}, +{"id":48916,"name":"Turalyon's Gauntlets ","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1496},"isBase":true}}}, +{"id":48917,"name":"Turalyon's Helm ","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[96,0,180,0,0,0,72,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":96,"2":180,"6":72,"7":64,"22":1944},"isBase":true}}}, +{"id":48918,"name":"Turalyon's Legplates ","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[104,0,180,0,0,0,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":72,"8":72,"22":2094},"isBase":true}}}, +{"id":48919,"name":"Turalyon's Shoulderplates ","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[81,0,134,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Battlegear","setId":877,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":81,"2":134,"5":52,"6":60,"22":1795},"isBase":true}}}, +{"id":48922,"name":"Liadrin's Breastplate ","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48923,"name":"Liadrin's Faceguard ","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48924,"name":"Liadrin's Handguards ","icon":"inv_gauntlets_65","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48925,"name":"Liadrin's Legguards ","icon":"inv_pants_plate_30","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48926,"name":"Liadrin's Shoulderguards ","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Liadrin's Plate","setId":880,"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48927,"name":"Turalyon's Breastplate ","icon":"inv_chest_plate_22","type":5,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":2393},"isBase":true}}}, +{"id":48928,"name":"Turalyon's Faceguard ","icon":"inv_helmet_25","type":1,"armorType":4,"stats":[120,0,145,0,0,0,0,0,0,71,80,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":145,"9":71,"10":80,"22":1944},"isBase":true}}}, +{"id":48929,"name":"Turalyon's Handguards ","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[89,0,122,0,0,0,0,0,0,63,47,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":122,"9":63,"10":47,"22":1496},"isBase":true}}}, +{"id":48930,"name":"Turalyon's Legguards ","icon":"inv_pants_plate_29","type":9,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":80,"10":80,"22":2094},"isBase":true}}}, +{"id":48931,"name":"Turalyon's Shoulderguards ","icon":"inv_shoulder_30","type":3,"armorType":4,"stats":[68,0,122,0,0,0,0,0,37,89,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[4],"setName":"Turalyon's Plate","setId":879,"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":122,"8":37,"9":89,"22":1795},"isBase":true}}}, +{"id":48945,"name":"Gnomish Thinking Cap","icon":"inv_helmet_49","type":1,"stats":[0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0,0],"gemSockets":[4,4,4],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"3":100,"23":236},"isBase":true}}}, +{"id":48954,"name":"Etched Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,41,119,0,0,0,43,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":41,"2":119,"6":43,"7":41},"isBase":true}}}, +{"id":48955,"name":"Etched Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,94,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":94,"3":63,"4":64},"isBase":true}}}, +{"id":48956,"name":"Etched Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[67,0,99,0,0,0,45,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":99,"6":45,"8":43},"isBase":true}}}, +{"id":48957,"name":"Etched Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,94,63,0,0,41,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":94,"3":63,"6":41,"7":43},"isBase":true}}}, +{"id":48974,"name":"Titan-Forged Armwraps of Dominance","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,63,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"5":42,"16":42,"22":519},"isBase":true}}}, +{"id":48975,"name":"Titan-Forged Armwraps of Salvation","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"7":42,"16":42,"22":519},"isBase":true}}}, +{"id":48976,"name":"Titan-Forged Armwraps of Triumph","icon":"inv_bracer_09","type":6,"armorType":2,"stats":[0,63,90,0,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"1":63,"2":90,"6":42,"16":42,"22":519},"isBase":true}}}, +{"id":48977,"name":"Titan-Forged Bracers of Salvation","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,0,90,63,0,0,42,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[4],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"6":42,"16":42,"22":1043},"isBase":true}}}, +{"id":48978,"name":"Titan-Forged Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[63,0,95,0,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"0":63,"2":95,"5":42,"16":42,"22":1043},"isBase":true}}}, +{"id":48979,"name":"Titan-Forged Cuffs of Salvation","icon":"inv_bracer_02","type":6,"armorType":1,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,394,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"7":42,"16":42,"22":394},"isBase":true}}}, +{"id":48980,"name":"Titan-Forged Wristguards of Dominance","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,63,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[7],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"5":42,"16":42,"22":747},"isBase":true}}}, +{"id":48981,"name":"Titan-Forged Wristguards of Salvation","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[7],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"7":42,"16":42,"22":747},"isBase":true}}}, +{"id":48982,"name":"Titan-Forged Wristguards of Triumph","icon":"inv_bracer_18","type":6,"armorType":3,"stats":[0,63,95,0,0,42,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"1":63,"2":95,"5":42,"16":42,"22":747},"isBase":true}}}, +{"id":48983,"name":"Titan-Forged Chain Leggings of Triumph","icon":"inv_pants_mail_16","type":9,"armorType":3,"stats":[0,104,181,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"16":80,"22":1507},"isBase":true}}}, +{"id":48987,"name":"Titan-Forged Leather Legguards of Salvation","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,171,105,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":171,"3":105,"7":64,"16":80,"22":1055},"isBase":true}}}, +{"id":48988,"name":"Titan-Forged Leather Legguards of Triumph","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,104,172,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":172,"5":64,"16":80,"22":1055},"isBase":true}}}, +{"id":48990,"name":"Titan-Forged Mail Leggings of Dominance","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,171,105,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":171,"3":105,"5":64,"16":80,"22":1507},"isBase":true}}}, +{"id":48991,"name":"Titan-Forged Cloth Leggings of Salvation","icon":"inv_pants_cloth_31","type":9,"armorType":1,"stats":[0,0,172,104,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"7":64,"16":80,"22":807},"isBase":true}}}, +{"id":48992,"name":"Titan-Forged Plate Legguards of Salvation","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,171,105,64,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":171,"3":105,"4":64,"16":80,"22":2094},"isBase":true}}}, +{"id":48993,"name":"Titan-Forged Plate Legguards of Triumph","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[104,0,181,0,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":104,"2":181,"5":64,"16":80,"22":2094},"isBase":true}}}, +{"id":48994,"name":"Titan-Forged Ringmail Leggings of Salvation","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,171,105,0,0,0,64,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1507,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":171,"3":105,"7":64,"16":80,"22":1507},"isBase":true}}}, +{"id":48997,"name":"Titan-Forged Cloth Trousers of Domination","icon":"inv_pants_cloth_28","type":9,"armorType":1,"stats":[0,0,172,104,0,0,64,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,807,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":64,"16":80,"22":807},"isBase":true}}}, +{"id":48998,"name":"Titan-Forged Leather Legguards of Dominance","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,171,105,0,64,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1055,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":171,"3":105,"5":64,"16":80,"22":1055},"isBase":true}}}, +{"id":48999,"name":"Titan-Forged Band of Ascendancy","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,90,63,0,0,0,42,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":90,"3":63,"7":42,"16":42},"isBase":true}}}, +{"id":49000,"name":"Titan-Forged Band of Victory","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,95,0,0,0,42,0,0,0,0,0,126,126,0,0,42,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":120,"ilvl":226,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":120,"stats":{"2":95,"6":42,"12":126,"13":126,"16":42},"isBase":true}}}, +{"id":49074,"name":"Coren's Chromium Coaster","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":49076,"name":"Mithril Pocketwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"6":84},"isBase":true}}}, +{"id":49078,"name":"Ancient Pickled Egg","icon":"inv_egg_02","type":12,"stats":[0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"3":84},"isBase":true}}}, +{"id":49080,"name":"Brawler's Souvenir","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"9":84},"isBase":true}}}, +{"id":49114,"name":"Chestplate of the Example Quest","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[215,0,274,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"289":{"randPropPoints":338,"stats":{"0":215,"2":274,"7":108,"22":2615},"isBase":true}}}, +{"id":49116,"name":"Bitter Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":170},"isBase":true}}}, +{"id":49118,"name":"Bubbling Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":126,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":126,"stats":{"2":170},"isBase":true}}}, +{"id":49120,"name":"Direbrew's Bloody Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,38,58,0,0,22,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":324,"weaponDamageMax":602,"weaponSpeed":2,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23872,"zoneId":1584}}],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":324,"weaponDamageMax":602,"stats":{"1":38,"2":58,"5":22,"6":27},"isBase":true}}}, +{"id":49121,"name":"Ring of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,33,94,0,0,29,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"1":33,"2":94,"5":29,"6":36},"isBase":true}}}, +{"id":49123,"name":"The Horseman's Seal","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,71,50,0,29,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"5":29,"7":36},"isBase":true}}}, +{"id":49124,"name":"Wicked Witch's Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,71,50,33,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":95,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":95,"stats":{"2":71,"3":50,"4":33,"6":33},"isBase":true}}}, +{"id":49126,"name":"The Horseman's Horrific Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[86,0,102,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1901,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"0":86,"2":102,"5":36,"6":48,"22":1901},"isBase":true}}}, +{"id":49128,"name":"The Horseman's Baleful Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":2,"stats":[0,26,72,0,0,26,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":73,"weaponDamageMin":437,"weaponDamageMax":813,"weaponSpeed":2.7,"ilvl":200,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":73,"weaponDamageMin":437,"weaponDamageMax":813,"stats":{"1":26,"2":72,"5":26,"8":26},"isBase":true}}}, +{"id":49179,"name":"Relentless Gladiator's Cord of Alacrity","icon":"inv_belt_39c","type":8,"armorType":1,"stats":[0,0,144,93,0,0,0,59,0,0,0,0,0,0,0,0,67,0,0,0,0,0,560,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"7":59,"16":67,"22":560},"isBase":true}}}, +{"id":49181,"name":"Relentless Gladiator's Cuffs of Alacrity","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,108,76,0,0,0,50,0,0,0,0,0,0,0,0,50,0,0,0,0,0,436,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":76,"7":50,"16":50,"22":436},"isBase":true}}}, +{"id":49183,"name":"Relentless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,0,0,0,59,0,0,0,0,0,0,0,0,67,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"7":59,"16":67,"22":684},"isBase":true}}}, +{"id":49185,"name":"Relentless Gladiator's Wand of Alacrity","icon":"inv_wand_33","type":14,"rangedWeaponType":6,"stats":[0,0,83,58,0,0,0,39,0,0,0,0,0,0,780,0,39,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"weaponSpeed":1.9,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":237,"weaponDamageMax":442,"stats":{"2":83,"3":58,"7":39,"14":780,"16":39},"isBase":true}}}, +{"id":49187,"name":"Relentless Gladiator's Compendium","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,0,0,0,53,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"7":53,"16":53},"isBase":true}}}, +{"id":49189,"name":"Relentless Gladiator's Blade of Alacrity","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,111,0,0,0,0,41,0,0,0,0,0,0,780,0,41,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"weaponSpeed":1.6,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":200,"weaponDamageMax":372,"stats":{"2":111,"7":41,"14":780,"16":41},"isBase":true}}}, +{"id":49191,"name":"Relentless Gladiator's Blade of Celerity","icon":"inv_knife_1h_pvp320_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,125,0,0,0,0,48,0,0,0,0,0,0,879,0,48,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"weaponSpeed":1.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":227,"weaponDamageMax":423,"stats":{"2":125,"7":48,"14":879,"16":48},"isBase":true}}}, +{"id":49227,"name":"Skoll's Fang","icon":"inv_weapon_shortblade_70","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":56,"weaponDamageMin":111,"weaponDamageMax":206,"weaponSpeed":1.7,"ilvl":187,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"187":{"randPropPoints":56,"weaponDamageMin":111,"weaponDamageMax":206,"stats":{"14":394},"isBase":true}}}, +{"id":49231,"name":"Boots of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,127,89,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":52,"6":64,"22":634},"isBase":true}}}, +{"id":49232,"name":"Sandals of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,127,89,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":52,"6":64,"22":634},"isBase":true}}}, +{"id":49233,"name":"Sandals of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,51,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":51,"6":72,"22":684},"isBase":true}}}, +{"id":49234,"name":"Boots of the Grieving Soul","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,144,93,51,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"The Twin Val'kyr"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":93,"4":51,"6":72,"22":684},"isBase":true}}}, +{"id":49235,"name":"Boots of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,127,81,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":52,"6":60,"22":1184},"isBase":true}}}, +{"id":49236,"name":"Sabatons of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,127,81,53,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":81,"4":53,"6":60,"22":1184},"isBase":true}}}, +{"id":49237,"name":"Sabatons of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,85,53,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":2,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":53,"6":67,"22":1241},"isBase":true}}}, +{"id":49238,"name":"Boots of Tortured Space","icon":"inv_boots_chain_06","type":10,"armorType":3,"stats":[0,0,144,85,51,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4722,"otherName":"Lord Jaraxxus"}}],"factionRestriction":1,"scalingOptions":{"245":{"randPropPoints":192,"stats":{"2":144,"3":85,"4":51,"6":67,"22":1241},"isBase":true}}}, +{"id":49296,"name":"Singed Vis'kag the Bloodletter","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"isBase":true}}}, +{"id":49297,"name":"Empowered Deathbringer","icon":"inv_axe_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":595,"weaponDamageMax":1105,"weaponSpeed":2.7,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":595,"weaponDamageMax":1105,"isBase":true}}}, +{"id":49298,"name":"Glinting Azuresong Mageblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,0,91,0,0,39,45,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":264,"weaponDamageMax":491,"weaponSpeed":2.4,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":264,"weaponDamageMax":491,"stats":{"2":91,"5":39,"6":45,"14":689},"isBase":true}}}, +{"id":49299,"name":"Keen Obsidian Edged Blade","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[129,0,159,0,0,0,61,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"0":129,"2":159,"6":61,"8":92},"isBase":true}}}, +{"id":49301,"name":"Reclaimed Thunderstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,78,202,0,0,0,0,55,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":3.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1015,"weaponDamageMax":1523,"stats":{"1":78,"2":202,"7":55,"8":62},"isBase":true}}}, +{"id":49302,"name":"Reclaimed Shadowstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,104,154,0,0,0,64,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":3.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1015,"weaponDamageMax":1523,"stats":{"1":104,"2":154,"6":64,"7":78},"isBase":true}}}, +{"id":49303,"name":"Gleaming Quel'Serrar","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":440,"weaponDamageMax":819,"weaponSpeed":2,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[4,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":440,"weaponDamageMax":819,"stats":{"2":65},"isBase":true}}}, +{"id":49304,"name":"Sharpened Fang of the Mystics","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,86,0,52,0,40,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":86,"4":52,"6":40,"14":689},"isBase":true}}}, +{"id":49305,"name":"Snub-Nose Blastershot Launcher","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,120,237,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":830,"weaponDamageMax":1543,"weaponSpeed":2.9,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":830,"weaponDamageMax":1543,"stats":{"1":120,"2":237,"6":120},"isBase":true}}}, +{"id":49306,"name":"Eskhandar's Choker","icon":"inv_belt_12","type":2,"stats":[51,0,100,0,0,0,0,0,34,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":51,"2":100,"8":34,"9":67},"isBase":true}}}, +{"id":49307,"name":"Fluttering Sapphiron Drape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,98,67,0,0,44,30,0,0,0,0,0,0,0,0,0,6,0,6,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":98,"3":67,"6":44,"7":30,"17":6,"19":6,"22":461},"isBase":true}}}, +{"id":49308,"name":"Antique Cornerstone Grimoire","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,91,55,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":91,"3":55,"4":40},"isBase":true}}}, +{"id":49309,"name":"Runed Ring of Binding","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,100,0,0,0,0,0,0,50,0,0,0,0,0,0,0,25,25,25,25,25,0,200,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":100,"9":50,"17":25,"18":25,"19":25,"20":25,"21":25,"23":200},"isBase":true}}}, +{"id":49310,"name":"Purified Shard of the Scale","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Purified Shard of the Gods","setId":881,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"4":170},"isBase":true}}}, +{"id":49315,"name":"Nemesis Skullcover","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,135,112,88,0,47,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,750,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[8],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":135,"3":112,"4":88,"6":47,"19":10,"21":10,"22":750},"isBase":true}}}, +{"id":49316,"name":"Circlet of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,130,112,78,0,66,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,750,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":130,"3":112,"4":78,"6":66,"18":10,"19":10,"22":750},"isBase":true}}}, +{"id":49317,"name":"Coronet of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,127,112,0,0,72,64,0,0,0,0,0,0,0,0,0,0,10,10,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[5],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":127,"3":112,"6":72,"7":64,"18":10,"19":10,"22":750},"isBase":true}}}, +{"id":49318,"name":"Netherwind Hood","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,133,112,0,56,74,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,750,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[3],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":133,"3":112,"5":56,"6":74,"19":10,"21":10,"22":750},"isBase":true}}}, +{"id":49319,"name":"Dragonstalker's Helmet","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,109,105,0,0,0,91,61,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1399,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[2],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":109,"2":105,"6":91,"7":61,"19":10,"21":10,"22":1399},"isBase":true}}}, +{"id":49320,"name":"Faceguard of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[109,0,159,0,0,0,0,0,0,62,66,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":109,"2":159,"9":62,"10":66,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49321,"name":"Greathelm of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[106,0,170,0,0,0,66,60,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[9],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":106,"2":170,"6":66,"7":60,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49322,"name":"Bloodfang Mask","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,112,142,0,0,0,58,76,0,0,0,0,0,0,0,0,0,0,0,10,0,10,979,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[6],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":112,"2":142,"6":58,"7":76,"19":10,"21":10,"22":979},"isBase":true}}}, +{"id":49323,"name":"Judgement Cover","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,140,112,0,0,60,76,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":140,"3":112,"6":60,"7":76,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49324,"name":"Judgement Helmet","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[63,0,176,0,0,66,0,0,0,96,0,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":63,"2":176,"5":66,"9":96,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49325,"name":"Judgement Helm","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[100,0,157,0,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":100,"2":157,"6":75,"7":68,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49326,"name":"Stormrage Hood","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,130,112,79,0,61,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":130,"3":112,"4":79,"6":61,"19":10,"21":10,"22":979},"isBase":true}}}, +{"id":49327,"name":"Stormrage Antlers","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,125,112,0,0,75,72,0,0,0,0,0,0,0,0,0,0,0,10,0,10,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":125,"3":112,"6":75,"7":72,"19":10,"21":10,"22":979},"isBase":true}}}, +{"id":49328,"name":"Stormrage Helm","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,110,164,0,0,80,0,0,45,0,0,0,0,0,0,0,0,0,0,10,0,10,979,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":110,"2":164,"5":80,"8":45,"19":10,"21":10,"22":979},"isBase":true}}}, +{"id":49329,"name":"Gaze of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,148,112,79,0,49,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":148,"3":112,"4":79,"6":49,"19":10,"21":10,"22":1399},"isBase":true}}}, +{"id":49330,"name":"Cowl of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,112,97,0,0,0,105,55,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1399,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":112,"2":97,"6":105,"7":55,"19":10,"21":10,"22":1399},"isBase":true}}}, +{"id":49331,"name":"Coif of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,124,105,0,76,82,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":124,"3":105,"5":76,"6":82,"19":10,"21":10,"22":1399},"isBase":true}}}, +{"id":49332,"name":"Frostforged Ringhelm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[83,0,154,0,0,59,0,0,0,0,107,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":83,"2":154,"5":59,"10":107,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49333,"name":"Frostforged Helmet","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[110,0,151,0,0,73,62,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[10],"expansion":3,"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":110,"2":151,"5":73,"6":62,"19":10,"21":10,"22":1944},"isBase":true}}}, +{"id":49437,"name":"Rusted Gutgore Ripper","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"isBase":true}}}, +{"id":49463,"name":"Purified Shard of the Flame","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Purified Shard of the Gods","setId":881,"expansion":3,"sources":[{"drop":{"difficulty":3,"npcId":10184,"zoneId":2159}}],"scalingOptions":{"232":{"randPropPoints":170,"isBase":true}}}, +{"id":49464,"name":"Shiny Shard of the Flame","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Shiny Shard of the Gods","setId":882,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159}}],"scalingOptions":{"245":{"randPropPoints":192,"isBase":true}}}, +{"id":49465,"name":"Tarnished Gutgore Ripper","icon":"inv_weapon_shortblade_18","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":450,"weaponDamageMax":837,"isBase":true}}}, +{"id":49466,"name":"Frostforged Helm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[124,0,173,0,0,82,76,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":124,"2":173,"5":82,"6":76,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49467,"name":"Frostforged Greathelm","icon":"inv_helmet_146","type":1,"armorType":4,"stats":[95,0,177,0,0,67,0,0,0,0,122,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[10],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":95,"2":177,"5":67,"10":122,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49468,"name":"Helm of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,144,121,0,87,94,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1467,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":144,"3":121,"5":87,"6":94,"19":10,"21":10,"22":1467},"isBase":true}}}, +{"id":49469,"name":"Crown of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,128,113,0,0,0,121,63,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1467,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":113,"6":121,"7":63,"19":10,"21":10,"22":1467},"isBase":true}}}, +{"id":49470,"name":"Helmet of Ten Storms","icon":"inv_helmet_69","type":1,"armorType":3,"stats":[0,0,170,128,91,0,57,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1467,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":170,"3":128,"4":91,"6":57,"19":10,"21":10,"22":1467},"isBase":true}}}, +{"id":49471,"name":"Stormrage Coverlet","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,120,184,0,0,90,0,0,59,0,0,0,0,0,0,0,0,0,0,10,0,10,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":120,"2":184,"5":90,"8":59,"19":10,"21":10,"22":1042},"isBase":true}}}, +{"id":49472,"name":"Stormrage Crown","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,145,128,0,0,85,84,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1042,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":145,"3":128,"6":85,"7":84,"19":10,"21":10,"22":1042},"isBase":true}}}, +{"id":49473,"name":"Stormrage Cover","icon":"inv_helmet_09","type":1,"armorType":2,"stats":[0,0,151,128,88,0,69,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1042,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[1],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":151,"3":128,"4":88,"6":69,"19":10,"21":10,"22":1042},"isBase":true}}}, +{"id":49474,"name":"Judgement Hood","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[114,0,179,0,0,0,89,76,0,0,0,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":114,"2":179,"6":89,"7":76,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49475,"name":"Judgement Heaume","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[77,0,199,0,0,75,0,0,0,108,0,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":77,"2":199,"5":75,"9":108,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49476,"name":"Judgement Crown","icon":"inv_helmet_74","type":1,"armorType":4,"stats":[0,0,162,128,0,0,69,87,0,0,0,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[4],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":162,"3":128,"6":69,"7":87,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49477,"name":"Bloodfang Hood","icon":"inv_helmet_41","type":1,"armorType":2,"stats":[0,128,163,0,0,0,68,86,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1042,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[6],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":128,"2":163,"6":68,"7":86,"19":10,"21":10,"22":1042},"isBase":true}}}, +{"id":49478,"name":"Helmet of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[122,0,188,0,0,0,78,70,0,0,0,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":122,"2":188,"6":78,"7":70,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49479,"name":"Helm of Wrath","icon":"inv_helmet_71","type":1,"armorType":4,"stats":[125,0,182,0,0,0,0,0,0,72,77,0,0,0,0,0,0,0,0,10,0,10,2020,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[9],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"0":125,"2":182,"9":72,"10":77,"19":10,"21":10,"22":2020},"isBase":true}}}, +{"id":49480,"name":"Dragonstalker's Helm","icon":"inv_helmet_05","type":1,"armorType":3,"stats":[0,125,121,0,0,0,106,70,0,0,0,0,0,0,0,0,0,0,0,10,0,10,1467,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[2],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"1":125,"2":121,"6":106,"7":70,"19":10,"21":10,"22":1467},"isBase":true}}}, +{"id":49481,"name":"Netherwind Crown","icon":"inv_helmet_70","type":1,"armorType":1,"stats":[0,0,154,128,0,64,86,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,809,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[3],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":154,"3":128,"5":64,"6":86,"19":10,"21":10,"22":809},"isBase":true}}}, +{"id":49482,"name":"Aurora of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,150,128,0,0,86,76,0,0,0,0,0,0,0,0,0,0,10,10,0,0,809,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":150,"3":128,"6":86,"7":76,"18":10,"19":10,"22":809},"isBase":true}}}, +{"id":49483,"name":"Halo of Transcendence","icon":"inv_helmet_24","type":1,"armorType":1,"stats":[0,0,152,128,89,0,75,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,809,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[5],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":152,"3":128,"4":89,"6":75,"18":10,"19":10,"22":809},"isBase":true}}}, +{"id":49484,"name":"Nemesis Skullcap","icon":"inv_helmet_08","type":1,"armorType":1,"stats":[0,0,157,128,99,0,55,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,809,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":245,"quality":4,"classAllowlist":[8],"expansion":3,"scalingOptions":{"245":{"randPropPoints":258,"stats":{"2":157,"3":128,"4":99,"6":55,"19":10,"21":10,"22":809},"isBase":true}}}, +{"id":49485,"name":"Sparkling Onyxia Tooth Pendant","icon":"inv_jewelry_necklace_09","type":2,"stats":[0,76,97,0,0,48,52,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"1":76,"2":97,"5":48,"6":52,"18":10},"isBase":true}}}, +{"id":49486,"name":"Polished Dragonslayer's Signet","icon":"inv_jewelry_ring_27","type":11,"stats":[0,0,109,76,36,0,53,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":109,"3":76,"4":36,"6":53,"18":10},"isBase":true}}}, +{"id":49487,"name":"Purified Onyxia Blood Talisman","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"10":129,"18":15},"isBase":true}}}, +{"id":49488,"name":"Shiny Shard of the Scale","icon":"inv_misc_monsterscales_15","type":12,"stats":[0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":192,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Shiny Shard of the Gods","setId":882,"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159}}],"scalingOptions":{"245":{"randPropPoints":192,"stats":{"4":192},"isBase":true}}}, +{"id":49489,"name":"Signified Ring of Binding","icon":"inv_jewelry_ring_13","type":11,"stats":[0,0,115,0,0,0,0,0,0,55,0,0,0,0,0,0,0,30,30,30,30,30,0,229,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":115,"9":55,"17":30,"18":30,"19":30,"20":30,"21":30,"23":229},"isBase":true}}}, +{"id":49490,"name":"Antediluvian Cornerstone Grimoire","icon":"inv_misc_book_07","type":13,"weaponType":5,"handType":3,"stats":[0,0,106,64,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":106,"3":64,"4":46},"isBase":true}}}, +{"id":49491,"name":"Flowing Sapphiron Drape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,111,76,0,0,50,35,0,0,0,0,0,0,0,0,0,6,0,6,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":111,"3":76,"6":50,"7":35,"17":6,"19":6,"22":498},"isBase":true}}}, +{"id":49492,"name":"Eskhandar's Links","icon":"inv_belt_12","type":2,"stats":[58,0,114,0,0,0,0,0,38,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"0":58,"2":114,"8":38,"9":76},"isBase":true}}}, +{"id":49493,"name":"Rifled Blastershot Launcher","icon":"inv_weapon_rifle_09","type":14,"rangedWeaponType":3,"stats":[0,136,267,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":943,"weaponDamageMax":1753,"weaponSpeed":2.9,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":943,"weaponDamageMax":1753,"stats":{"1":136,"2":267,"6":136},"isBase":true}}}, +{"id":49494,"name":"Honed Fang of the Mystics","icon":"inv_weapon_shortblade_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,95,0,58,0,46,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"weaponSpeed":1.8,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":225,"weaponDamageMax":418,"stats":{"2":95,"4":58,"6":46,"14":780},"isBase":true}}}, +{"id":49495,"name":"Burnished Quel'Serrar","icon":"inv_sword_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":500,"weaponDamageMax":930,"weaponSpeed":2,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[4,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":500,"weaponDamageMax":930,"stats":{"2":74},"isBase":true}}}, +{"id":49496,"name":"Reinforced Shadowstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,120,177,0,0,0,73,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1153,"weaponDamageMax":1730,"weaponSpeed":3.1,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1153,"weaponDamageMax":1730,"stats":{"1":120,"2":177,"6":73,"7":89},"isBase":true}}}, +{"id":49497,"name":"Reinforced Thunderstrike","icon":"inv_spear_08","type":13,"weaponType":6,"handType":4,"stats":[0,89,233,0,0,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1153,"weaponDamageMax":1730,"weaponSpeed":3.1,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1153,"weaponDamageMax":1730,"stats":{"1":89,"2":233,"7":63,"8":71},"isBase":true}}}, +{"id":49498,"name":"Sharpened Obsidian Edged Blade","icon":"inv_sword_28","type":13,"weaponType":9,"handType":4,"stats":[146,0,179,0,0,0,69,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"weaponSpeed":3.5,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":258,"weaponDamageMin":1301,"weaponDamageMax":1953,"stats":{"0":146,"2":179,"6":69,"8":103},"isBase":true}}}, +{"id":49499,"name":"Polished Azuresong Mageblade","icon":"inv_sword_39","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,44,51,0,0,0,0,0,0,0,780,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":300,"weaponDamageMax":558,"weaponSpeed":2.4,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":300,"weaponDamageMax":558,"stats":{"2":104,"5":44,"6":51,"14":780},"isBase":true}}}, +{"id":49500,"name":"Raging Deathbringer","icon":"inv_axe_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":675,"weaponDamageMax":1255,"weaponSpeed":2.7,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":675,"weaponDamageMax":1255,"isBase":true}}}, +{"id":49501,"name":"Tempered Vis'kag the Bloodletter","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"weaponSpeed":2.6,"ilvl":245,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"npcId":10184,"zoneId":2159,"category":"Class Item drops"}}],"scalingOptions":{"245":{"randPropPoints":111,"weaponDamageMin":650,"weaponDamageMax":1209,"isBase":true}}}, +{"id":49623,"name":"Shadowmourne","icon":"inv_axe_113","type":13,"weaponType":1,"handType":4,"stats":[195,0,269,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1925,"weaponDamageMax":3209,"weaponSpeed":3.7,"ilvl":284,"quality":5,"classAllowlist":[4,9,10],"scalingOptions":{"284":{"weaponDamageMin":1925,"weaponDamageMax":3209,"stats":{"0":195,"2":269,"6":114,"7":114},"isBase":true}}}, +{"id":49682,"name":"Black Knight's Rondel","icon":"inv_weapon_shortblade_94","type":13,"weaponType":2,"handType":2,"stats":[0,46,65,0,0,27,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":35451,"zoneId":4723}},{"drop":{"difficulty":8,"npcId":35451,"zoneId":4723}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"stats":{"1":46,"2":65,"5":27,"6":33},"isBase":true}}}, +{"id":49686,"name":"Maghia's Misguided Quill","icon":"inv_feather_06","type":12,"stats":[0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"4":1000},"isBase":true}}}, +{"id":49783,"name":"Lucky Old Sun","icon":"inv_mace_89","type":13,"weaponType":4,"handType":2,"stats":[46,0,69,0,0,0,0,0,0,35,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":310,"weaponDamageMax":577,"weaponSpeed":1.6,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":310,"weaponDamageMax":577,"stats":{"0":46,"2":69,"9":35,"10":24},"isBase":true}}}, +{"id":49784,"name":"Minister's Number One Legplates","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[106,0,159,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2069,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":106,"2":159,"5":71,"6":71,"22":2069},"isBase":true}}}, +{"id":49785,"name":"Bewildering Shoulderpads","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,79,112,0,0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":79,"2":112,"6":56,"7":46,"22":871},"isBase":true}}}, +{"id":49786,"name":"Robes of the Cheating Heart","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,0,155,106,66,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1161,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":155,"3":106,"4":66,"7":74,"22":1161},"isBase":true}}}, +{"id":49787,"name":"Seven Stormy Mornings","icon":"inv_bracer_31b","type":6,"armorType":3,"stats":[0,0,86,60,0,42,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":86,"3":60,"5":42,"6":35,"22":737},"isBase":true}}}, +{"id":49788,"name":"Cold Sweat Grips","icon":"inv_gauntlets_51","type":7,"armorType":1,"stats":[0,0,115,79,0,47,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":115,"3":79,"5":47,"6":56,"22":546},"isBase":true}}}, +{"id":49789,"name":"Heartshiver","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,46,75,0,0,0,25,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"stats":{"1":46,"2":75,"6":25,"7":28},"isBase":true}}}, +{"id":49790,"name":"Blood Boil Lancet","icon":"inv_staff_86","type":13,"weaponType":8,"handType":4,"stats":[0,0,197,0,83,0,94,0,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":447,"weaponDamageMax":671,"weaponSpeed":3.1,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":447,"weaponDamageMax":671,"stats":{"2":197,"4":83,"6":94,"14":608},"isBase":true}}}, +{"id":49791,"name":"Lost Reliquary Chestguard","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[106,0,159,0,0,74,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":106,"2":159,"5":74,"6":66,"22":2365},"isBase":true}}}, +{"id":49792,"name":"Accursed Crawling Cape","icon":"inv_misc_cape_22","type":4,"armorType":1,"stats":[0,59,87,0,0,41,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"1":59,"2":87,"5":41,"6":37,"22":437},"isBase":true}}}, +{"id":49793,"name":"Tower of the Mouldering Corpse","icon":"inv_staff_85","type":13,"weaponType":8,"handType":4,"stats":[0,106,152,0,0,76,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":923,"weaponDamageMax":1386,"weaponSpeed":3.2,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":923,"weaponDamageMax":1386,"stats":{"1":106,"2":152,"5":76,"6":62},"isBase":true}}}, +{"id":49794,"name":"Legplates of Frozen Granite","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[72,0,147,0,0,55,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,2069,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":72,"2":147,"5":55,"10":105,"22":2069},"isBase":true}}}, +{"id":49795,"name":"Sollerets of Suffering","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,47,55,0,0,0,0,0,0,0,0,0,0,0,1626,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":79,"2":118,"9":47,"10":55,"22":1626},"isBase":true}}}, +{"id":49796,"name":"Essence of Anger","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,112,79,0,45,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,492,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":112,"3":79,"5":45,"7":57,"22":492},"isBase":true}}}, +{"id":49797,"name":"Brace Guards of the Starless Night","icon":"inv_bracer_49","type":6,"armorType":4,"stats":[0,0,87,60,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":87,"3":60,"6":40,"7":40,"22":1034},"isBase":true}}}, +{"id":49798,"name":"Soul Screaming Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,118,79,57,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":118,"3":79,"4":57,"7":45,"22":1158},"isBase":true}}}, +{"id":49799,"name":"Coil of Missing Gems","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,87,59,0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":87,"3":59,"5":38,"6":41},"isBase":true}}}, +{"id":49800,"name":"Spiteful Signet","icon":"inv_jewelry_ring_44","type":11,"stats":[0,0,84,60,42,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":84,"3":60,"4":42,"6":36},"isBase":true}}}, +{"id":49801,"name":"Unspeakable Secret","icon":"inv_staff_82","type":13,"weaponType":8,"handType":4,"stats":[0,0,152,0,0,0,114,93,0,0,0,0,0,0,608,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":404,"weaponDamageMax":606,"weaponSpeed":2.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":404,"weaponDamageMax":606,"stats":{"2":152,"6":114,"7":93,"14":608},"isBase":true}}}, +{"id":49802,"name":"Garfrost's Two-Ton Hammer","icon":"inv_mace_83","type":13,"weaponType":4,"handType":4,"stats":[95,0,123,0,0,0,98,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":1039,"weaponDamageMax":1559,"weaponSpeed":3.6,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":1039,"weaponDamageMax":1559,"stats":{"0":95,"2":123,"6":98,"7":53},"isBase":true}}}, +{"id":49803,"name":"Ring of Carnelian and Bone","icon":"inv_jewelry_ring_39","type":11,"stats":[0,59,86,0,0,0,38,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"1":59,"2":86,"6":38,"7":41},"isBase":true}}}, +{"id":49804,"name":"Polished Mirror Helm","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,0,130,90,68,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1368,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":130,"3":90,"4":68,"7":54,"22":1368},"isBase":true}}}, +{"id":49805,"name":"Ice-Steeped Sandals","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,113,79,45,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":113,"3":79,"4":45,"7":57,"22":601},"isBase":true}}}, +{"id":49806,"name":"Flayer's Black Belt","icon":"inv_belt_65","type":8,"armorType":2,"stats":[0,71,112,0,0,0,56,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,653,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":71,"2":112,"6":56,"8":39,"22":653},"isBase":true}}}, +{"id":49807,"name":"Krick's Beetle Stabber","icon":"inv_weapon_shortblade_80","type":13,"weaponType":2,"handType":2,"stats":[0,46,66,0,0,0,28,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"weaponSpeed":1.8,"ilvl":219,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":399,"weaponDamageMax":600,"stats":{"1":46,"2":66,"6":28,"7":32},"isBase":true}}}, +{"id":49808,"name":"Bent Gold Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[79,0,118,0,0,0,47,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":79,"2":118,"6":47,"7":56,"22":1330},"isBase":true}}}, +{"id":49809,"name":"Wristguards of Subterranean Moss","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,86,59,41,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":86,"3":59,"4":41,"7":37,"22":382},"isBase":true}}}, +{"id":49810,"name":"Scabrous Zombie Leather Belt","icon":"inv_belt_69","type":8,"armorType":3,"stats":[0,79,118,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,947,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":79,"2":118,"5":53,"6":53,"22":947},"isBase":true}}}, +{"id":49811,"name":"Black Dragonskin Breeches","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,155,106,75,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"phase":4,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":155,"3":106,"4":75,"6":64,"22":1474},"isBase":true}}}, +{"id":49812,"name":"Purloined Wedding Ring","icon":"inv_jewelry_ring_42","type":11,"stats":[60,0,89,0,0,0,42,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"phase":4,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":60,"2":89,"6":42,"7":35},"isBase":true}}}, +{"id":49813,"name":"Rimebane Rifle","icon":"inv_weapon_rifle_13","type":14,"rangedWeaponType":3,"stats":[0,106,202,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":732,"weaponDamageMax":1361,"weaponSpeed":2.9,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":732,"weaponDamageMax":1361,"stats":{"1":106,"2":202,"6":106},"isBase":true}}}, +{"id":49816,"name":"Scourgelord's Frigid Chestplate","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[81,0,147,0,0,0,0,0,46,74,66,0,0,0,0,0,0,0,0,0,0,0,2365,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":81,"2":147,"8":46,"9":74,"10":66,"22":2365},"isBase":true}}}, +{"id":49817,"name":"Shaggy Wyrmleather Leggings","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,106,155,0,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":106,"2":155,"6":71,"7":71,"22":1016},"isBase":true}}}, +{"id":49818,"name":"Painfully Sharp Choker","icon":"inv_jewelry_necklace_04","type":2,"stats":[60,0,89,0,0,0,45,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":60,"2":89,"6":45,"7":30},"isBase":true}}}, +{"id":49819,"name":"Skeleton Lord's Cranium","icon":"inv_helmet_130","type":1,"armorType":4,"stats":[90,0,135,0,0,64,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1921,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"0":90,"2":135,"5":64,"6":58,"22":1921},"isBase":true}}}, +{"id":49820,"name":"Gondria's Spectral Bracer","icon":"inv_bracer_31","type":6,"armorType":3,"stats":[0,59,66,0,0,0,59,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"1":59,"2":66,"6":59,"7":31,"22":737},"isBase":true}}}, +{"id":49821,"name":"Protector of Frigid Souls","icon":"inv_shield_55","type":13,"weaponType":7,"handType":3,"stats":[0,0,86,60,42,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":86,"3":60,"4":42,"6":35,"22":6966},"isBase":true}}}, +{"id":49822,"name":"Rimewoven Silks","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,155,98,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,765,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":155,"3":98,"6":71,"7":63,"22":765},"isBase":true}}}, +{"id":49823,"name":"Cloak of the Fallen Cardinal","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,89,59,42,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"2":89,"3":59,"4":42,"6":35,"22":437},"isBase":true}}}, +{"id":49824,"name":"Horns of the Spurned Val'kyr","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,82,159,0,0,50,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1368,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":82,"2":159,"5":50,"7":64,"22":1368},"isBase":true}}}, +{"id":49825,"name":"Palebone Robes","icon":"inv_chest_cloth_79","type":5,"armorType":1,"stats":[0,0,153,106,0,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,874,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":153,"3":106,"6":71,"7":71,"22":874},"isBase":true}}}, +{"id":49826,"name":"Shroud of Rime","icon":"inv_chest_mail_12","type":5,"armorType":3,"stats":[0,0,159,106,76,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":159,"3":106,"4":76,"7":62,"22":1684},"isBase":true}}}, +{"id":49827,"name":"Ghoulslicer","icon":"inv_sword_119","type":13,"weaponType":9,"handType":2,"stats":[0,46,66,0,0,0,33,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"weaponSpeed":2.6,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"stats":{"1":46,"2":66,"6":33,"8":27},"isBase":true}}}, +{"id":49828,"name":"Marwyn's Macabre Fingertips","icon":"inv_gauntlets_91","type":7,"armorType":1,"stats":[0,0,115,71,53,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":115,"3":71,"4":53,"6":45,"22":546},"isBase":true}}}, +{"id":49829,"name":"Valonforth's Tarnished Pauldrons","icon":"inv_shoulder_100","type":3,"armorType":4,"stats":[0,0,112,79,60,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1773,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":112,"3":79,"4":60,"6":40,"22":1773},"isBase":true}}}, +{"id":49830,"name":"Fallen Sentry's Hood","icon":"inv_helmet_153","type":1,"armorType":2,"stats":[0,0,131,90,0,0,73,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,943,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":131,"3":90,"6":73,"7":46,"22":943},"isBase":true}}}, +{"id":49831,"name":"Muddied Boots of Brill","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,79,92,0,0,0,76,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":79,"2":92,"6":76,"7":41,"22":1158},"isBase":true}}}, +{"id":49832,"name":"Eerie Runeblade Polisher","icon":"inv_misc_cape_11","type":4,"armorType":1,"stats":[59,0,89,0,0,0,0,0,0,49,27,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":59,"2":89,"9":49,"10":27,"22":437},"isBase":true}}}, +{"id":49833,"name":"Splintered Icecrown Parapet","icon":"inv_sword_85","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,0,31,31,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":155,"weaponDamageMax":289,"weaponSpeed":1.6,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":155,"weaponDamageMax":289,"stats":{"2":104,"6":31,"7":31,"14":611},"isBase":true}}}, +{"id":49834,"name":"Frayed Abomination Stitching Shoulders","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,115,79,0,0,60,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":115,"3":79,"6":60,"7":40,"22":656},"isBase":true}}}, +{"id":49835,"name":"Splintered Door of the Citadel","icon":"inv_shield_63","type":13,"weaponType":7,"handType":3,"stats":[59,0,89,0,0,0,0,0,0,31,46,0,0,0,0,0,0,0,0,0,0,0,6966,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":59,"2":89,"9":31,"10":46,"22":6966},"isBase":true}}}, +{"id":49836,"name":"Frostsworn Bone Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,106,133,0,0,0,94,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":106,"2":133,"6":94,"7":60,"22":1474},"isBase":true}}}, +{"id":49837,"name":"Mitts of Burning Hail","icon":"inv_gauntlets_62","type":7,"armorType":3,"stats":[0,0,112,79,0,54,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1053,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":112,"3":79,"5":54,"7":50,"22":1053},"isBase":true}}}, +{"id":49838,"name":"Carpal Tunnelers","icon":"inv_gauntlets_62","type":7,"armorType":2,"stats":[0,79,113,0,0,0,56,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"1":79,"2":113,"6":56,"7":47,"22":726},"isBase":true}}}, +{"id":49839,"name":"Mourning Malice","icon":"inv_sword_127","type":13,"weaponType":9,"handType":4,"stats":[114,0,141,0,0,0,67,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"weaponSpeed":3.5,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":1010,"weaponDamageMax":1516,"stats":{"0":114,"2":141,"6":67,"8":73},"isBase":true}}}, +{"id":49840,"name":"Hate-Forged Cleaver","icon":"inv_axe_94","type":13,"weaponType":1,"handType":2,"stats":[0,46,67,0,0,0,32,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"weaponSpeed":2.6,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":505,"weaponDamageMax":938,"stats":{"1":46,"2":67,"6":32,"7":28},"isBase":true}}}, +{"id":49841,"name":"Blackened Geist Ribs","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,98,155,0,0,63,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1161,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"1":98,"2":155,"5":63,"7":71,"22":1161},"isBase":true}}}, +{"id":49842,"name":"Tapestry of the Frozen Throne","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[60,0,89,0,0,35,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":113,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":113,"stats":{"0":60,"2":89,"5":35,"6":42,"22":437},"isBase":true}}}, +{"id":49843,"name":"Crystalline Citadel Gauntlets","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,55,47,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":79,"2":118,"9":55,"10":47,"22":1478},"isBase":true}}}, +{"id":49844,"name":"Crypt Fiend Slayer","icon":"inv_weapon_bow_44","type":14,"rangedWeaponType":1,"stats":[0,106,151,0,0,62,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":757,"weaponDamageMax":1408,"weaponSpeed":3,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":757,"weaponDamageMax":1408,"stats":{"1":106,"2":151,"5":62,"7":76},"isBase":true}}}, +{"id":49845,"name":"Bone Golem Scapula","icon":"inv_mace_88","type":13,"weaponType":4,"handType":2,"stats":[0,0,100,0,20,0,0,37,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"stats":{"2":100,"4":20,"7":37,"14":611},"isBase":true}}}, +{"id":49846,"name":"Chilled Heart of the Glacier","icon":"inv_weapon_shortblade_79","type":13,"weaponType":2,"handType":2,"stats":[0,0,69,0,0,28,0,46,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"weaponSpeed":1.8,"ilvl":219,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"stats":{"2":69,"5":28,"7":46,"14":611},"isBase":true}}}, +{"id":49847,"name":"Legguards of Untimely Demise","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,151,106,0,67,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":151,"3":106,"5":67,"6":73,"22":1474},"isBase":true}}}, +{"id":49848,"name":"Grim Lasher Shoulderguards","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,0,115,79,58,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":115,"3":79,"4":58,"6":44,"22":871},"isBase":true}}}, +{"id":49849,"name":"Tattered Glacial-Woven Hood","icon":"inv_helmet_155","type":1,"armorType":1,"stats":[0,0,131,90,66,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":131,"3":90,"4":66,"7":58,"22":710},"isBase":true}}}, +{"id":49851,"name":"Greathelm of the Silver Hand","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[0,0,133,90,0,0,48,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1921,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":1,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"219":{"randPropPoints":202,"stats":{"2":133,"3":90,"6":48,"7":73,"22":1921},"isBase":true}}}, +{"id":49852,"name":"Coffin Nail","icon":"inv_wand_1h_stratholme_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,67,46,31,0,0,31,0,0,0,0,0,0,611,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"weaponSpeed":1.8,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"219":{"randPropPoints":87,"weaponDamageMin":174,"weaponDamageMax":325,"stats":{"2":67,"3":46,"4":31,"7":31,"14":611},"isBase":true}}}, +{"id":49853,"name":"Titanium Links of Lore","icon":"inv_belt_70","type":8,"armorType":4,"stats":[79,0,118,0,0,0,0,0,0,59,41,0,0,0,0,0,0,0,0,0,0,0,1330,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":79,"2":118,"9":59,"10":41,"22":1330},"isBase":true}}}, +{"id":49854,"name":"Mantle of Tattered Feathers","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,114,79,53,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,656,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"219":{"randPropPoints":150,"stats":{"2":114,"3":79,"4":53,"6":53,"22":656},"isBase":true}}}, +{"id":49855,"name":"Plated Grips of Korth'azz","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[79,0,118,0,0,0,56,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1478,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":150,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"219":{"randPropPoints":150,"stats":{"0":79,"2":118,"6":56,"7":46,"22":1478},"isBase":true}}}, +{"id":49888,"name":"Shadow's Edge","icon":"inv_axe_113","type":13,"weaponType":1,"handType":4,"stats":[162,0,243,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1661,"weaponDamageMax":2493,"weaponSpeed":3.7,"ilvl":264,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1661,"weaponDamageMax":2493,"stats":{"0":162,"2":243,"6":92,"7":92},"isBase":true}}}, +{"id":49890,"name":"Deathfrost Boots","icon":"inv_boots_cloth_25","type":10,"armorType":1,"stats":[0,0,172,104,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70551}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":64,"6":80,"22":764},"isBase":true}}}, +{"id":49891,"name":"Leggings of Woven Death","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70550}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":84,"7":108,"22":972},"isBase":true}}}, +{"id":49892,"name":"Lightweave Leggings","icon":"inv_pants_cloth_12","type":9,"armorType":1,"stats":[0,0,231,138,108,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70552}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"6":84,"22":972},"isBase":true}}}, +{"id":49893,"name":"Sandals of Consecration","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,172,104,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":11,"spellId":70553}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"6":64,"22":764},"isBase":true}}}, +{"id":49894,"name":"Blessed Cenarion Boots","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70555}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":966},"isBase":true}}}, +{"id":49895,"name":"Footpads of Impending Death","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,120,157,0,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70557}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":157,"6":80,"8":64,"22":966},"isBase":true}}}, +{"id":49896,"name":"Earthsoul Boots","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,172,104,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70559}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":64,"7":80,"22":1334},"isBase":true}}}, +{"id":49897,"name":"Rock-Steady Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,120,143,0,0,0,104,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70561}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":143,"6":104,"7":47,"22":1334},"isBase":true}}}, +{"id":49898,"name":"Legwraps of Unleashed Nature","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70554}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":1229},"isBase":true}}}, +{"id":49899,"name":"Bladeborn Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,207,0,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70556}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":207,"6":92,"7":100,"22":1229},"isBase":true}}}, +{"id":49900,"name":"Lightning-Infused Leggings","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,138,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70558}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":92,"7":100,"22":1698},"isBase":true}}}, +{"id":49901,"name":"Draconic Bonesplinter Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,138,192,0,0,0,146,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":8,"spellId":70560}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":192,"6":146,"7":77,"22":1698},"isBase":true}}}, +{"id":49902,"name":"Puresteel Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70562}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":100,"7":92,"22":2308},"isBase":true}}}, +{"id":49903,"name":"Legplates of Painful Death","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70565}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":100,"7":92,"22":2308},"isBase":true}}}, +{"id":49904,"name":"Pillars of Might","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,69,77,0,0,0,0,0,0,0,0,0,0,0,2308,340,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70567}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":207,"9":69,"10":77,"22":2308,"23":340},"isBase":true}}}, +{"id":49905,"name":"Protectors of Life","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70563}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1814},"isBase":true}}}, +{"id":49906,"name":"Hellfrozen Bonegrinders","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[104,0,181,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70566}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"6":64,"7":80,"22":1814},"isBase":true}}}, +{"id":49907,"name":"Boots of Kingly Upheaval","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[92,0,157,0,0,53,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"crafted":{"profession":2,"spellId":70568}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":53,"9":72,"10":72,"22":1814},"isBase":true}}}, +{"id":49919,"name":"Cryptmaker","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[146,0,243,0,0,95,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"weaponSpeed":3.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"stats":{"0":146,"2":243,"5":95,"6":100},"isBase":true}}}, +{"id":49933,"name":"Argent Crusader's Shield","icon":"inv_shield_61","type":13,"weaponType":7,"handType":3,"stats":[0,0,60,43,0,0,29,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,6531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"200":{"randPropPoints":82,"stats":{"2":60,"3":43,"6":29,"16":28,"22":6531},"isBase":true}}}, +{"id":49949,"name":"Band of the Bone Colossus","icon":"inv_jewelry_ring_83","type":11,"stats":[0,90,124,0,0,54,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"5":54,"7":57},"isBase":true}}}, +{"id":49950,"name":"Frostbitten Fur Boots","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,104,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":80,"7":64,"22":966},"isBase":true}}}, +{"id":49951,"name":"Gendarme's Cuirass","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[138,0,243,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"5":92,"6":100,"22":2638},"isBase":true}}}, +{"id":49952,"name":"Snowserpent Mail Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":243,"5":84,"6":108,"22":1577},"isBase":true}}}, +{"id":49960,"name":"Bracers of Dark Reckoning","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[90,0,124,0,0,0,0,0,0,71,40,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":124,"9":71,"10":40,"22":1154},"isBase":true}}}, +{"id":49964,"name":"Legguards of Lost Hope","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[123,0,207,0,0,74,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":207,"5":74,"9":146,"22":2308},"isBase":true}}}, +{"id":49967,"name":"Marrowgar's Frigid Eye","icon":"item_icecrownringb","type":11,"stats":[0,0,129,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":52,"7":60},"isBase":true}}}, +{"id":49968,"name":"Frozen Bonespike","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,126,0,59,0,59,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":126,"4":59,"6":59,"14":928},"isBase":true}}}, +{"id":49975,"name":"Bone Sentinel's Amulet","icon":"inv_jewelry_necklace_53","type":2,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"7":52},"isBase":true}}}, +{"id":49976,"name":"Bulwark of Smouldering Steel","icon":"inv_shield_72","type":13,"weaponType":7,"handType":3,"stats":[0,0,129,91,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":91,"6":60,"7":60,"22":7521},"isBase":true}}}, +{"id":49977,"name":"Loop of the Endless Labyrinth","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,129,82,0,45,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"5":45,"6":65},"isBase":true}}}, +{"id":49978,"name":"Crushing Coldwraith Belt","icon":"inv_belt_66","type":8,"armorType":1,"stats":[0,0,172,104,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":64,"7":80,"22":625},"isBase":true}}}, +{"id":49979,"name":"Handguards of Winter's Respite","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,172,104,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"7":64,"22":878},"isBase":true}}}, +{"id":49980,"name":"Rusted Bonespike Pauldrons","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":1978},"isBase":true}}}, +{"id":49981,"name":"Fal'inrush, Defender of Quel'thalas","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,173,260,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1445,"weaponDamageMax":2168,"weaponSpeed":3,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1445,"weaponDamageMax":2168,"stats":{"1":173,"2":260,"6":115,"7":115},"isBase":true}}}, +{"id":49982,"name":"Heartpierce","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,47,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"stats":{"1":47,"2":69},"isBase":true}}}, +{"id":49983,"name":"Blood-Soaked Saronite Stompers","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[104,0,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"6":80,"7":64,"22":1814},"isBase":true}}}, +{"id":49985,"name":"Juggernaut Band","icon":"item_icecrownringd","type":11,"stats":[90,0,124,0,0,0,0,0,0,62,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":124,"9":62,"10":48},"isBase":true}}}, +{"id":49986,"name":"Broken Ram Skull Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[123,0,207,0,0,74,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":207,"5":74,"9":146,"22":2143},"isBase":true}}}, +{"id":49987,"name":"Cultist's Bloodsoaked Spaulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,112,169,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":169,"6":80,"7":64,"22":1054},"isBase":true}}}, +{"id":49988,"name":"Leggings of Northern Lights","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,146,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":192,"6":138,"7":77,"22":1698},"isBase":true}}}, +{"id":49989,"name":"Ahn'kahar Onyx Neckguard","icon":"inv_jewelry_necklace_48","type":2,"stats":[82,0,136,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"5":52,"6":60},"isBase":true}}}, +{"id":49990,"name":"Ring of Maddening Whispers","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52},"isBase":true}}}, +{"id":49991,"name":"Shoulders of Mercy Killing","icon":"inv_shoulder_116","type":3,"armorType":1,"stats":[0,0,172,104,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":64,"7":80,"22":833},"isBase":true}}}, +{"id":49992,"name":"Nibelung","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,183,0,0,0,0,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.1,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"stats":{"2":183,"14":928},"isBase":true}}}, +{"id":49993,"name":"Necrophotic Greaves","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,172,104,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"6":72,"22":1334},"isBase":true}}}, +{"id":49994,"name":"The Lady's Brittle Bracers","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,129,82,0,45,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"5":45,"6":65,"22":486},"isBase":true}}}, +{"id":49995,"name":"Fallen Lord's Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1649},"isBase":true}}}, +{"id":49996,"name":"Deathwhisper Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,108,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"6":84,"22":1405},"isBase":true}}}, +{"id":49997,"name":"Mithrios, Bronzebeard's Legacy","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[56,0,111,0,0,0,0,0,38,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":518,"weaponDamageMax":964,"weaponSpeed":1.6,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":518,"weaponDamageMax":964,"stats":{"0":56,"2":111,"8":38,"10":74},"isBase":true}}}, +{"id":49998,"name":"Shadowvault Slayer's Cloak","icon":"item_icecrowncloak","type":4,"armorType":1,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":52,"7":60,"22":556},"isBase":true}}}, +{"id":49999,"name":"Skeleton Lord's Circle","icon":"inv_jewelry_ring_83","type":11,"stats":[82,0,136,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":60,"8":52},"isBase":true}}}, +{"id":50000,"name":"Scourge Hunter's Vambraces","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,90,107,0,0,0,82,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":107,"6":82,"7":40,"22":849},"isBase":true}}}, +{"id":50001,"name":"Ikfirus' Sack of Wonder","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,146,231,0,0,100,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":231,"5":100,"8":92,"22":1405},"isBase":true}}}, +{"id":50002,"name":"Polar Bear Claw Bracers","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[82,0,136,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"5":52,"6":60,"22":1154},"isBase":true}}}, +{"id":50003,"name":"Boneguard Commander's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,87,55,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":87,"10":55,"22":1978},"isBase":true}}}, +{"id":50005,"name":"Amulet of the Silent Eulogy","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,129,83,0,52,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"5":52,"7":60},"isBase":true}}}, +{"id":50006,"name":"Corp'rethar Ceremonial Crown","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":903},"isBase":true}}}, +{"id":50008,"name":"Ring of Rapid Ascent","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,129,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"6":60,"7":52},"isBase":true}}}, +{"id":50009,"name":"Boots of Unnatural Growth","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":966},"isBase":true}}}, +{"id":50010,"name":"Waistband of Righteous Fury","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":1484},"isBase":true}}}, +{"id":50011,"name":"Gunship Captain's Mittens","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,172,104,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":64,"7":80,"22":695},"isBase":true}}}, +{"id":50012,"name":"Havoc's Call, Blade of Lordaeron Kings","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,74,111,0,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":843,"weaponDamageMax":1566,"weaponSpeed":2.6,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":843,"weaponDamageMax":1566,"stats":{"1":74,"2":111,"6":49,"7":49},"isBase":true}}}, +{"id":50014,"name":"Greatcloak of the Turned Champion","icon":"item_icecrowncape","type":4,"armorType":1,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"4":60,"7":52,"22":556},"isBase":true}}}, +{"id":50015,"name":"Belt of the Blood Nova","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,72,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"7":72,"22":1092},"isBase":true}}}, +{"id":50016,"name":"Rib Spreader","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"stats":{"1":69,"2":104,"6":46,"7":46},"isBase":true}}}, +{"id":50019,"name":"Winding Sheet","icon":"item_icecrowncape","type":4,"armorType":1,"stats":[82,0,136,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":60,"7":52,"22":556},"isBase":true}}}, +{"id":50020,"name":"Raging Behemoth's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[104,0,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"5":64,"6":80,"22":1978},"isBase":true}}}, +{"id":50021,"name":"Aldriana's Gloves of Secrecy","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,112,169,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":169,"6":80,"7":64,"22":878},"isBase":true}}}, +{"id":50022,"name":"Dual-Bladed Pauldrons","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,112,143,0,0,0,112,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":143,"6":112,"7":47,"22":1456},"isBase":true}}}, +{"id":50023,"name":"Bile-Encrusted Medallion","icon":"item_icecrownnecklaceb","type":2,"stats":[90,0,124,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":124,"9":64,"23":192},"isBase":true}}}, +{"id":50024,"name":"Blightborne Warplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[123,0,207,0,0,58,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":207,"5":58,"9":162,"22":2638},"isBase":true}}}, +{"id":50025,"name":"Seal of Many Mouths","icon":"item_icecrownringc","type":11,"stats":[0,90,124,0,0,0,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":60,"8":52},"isBase":true}}}, +{"id":50026,"name":"Helm of the Elder Moon","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":1141},"isBase":true}}}, +{"id":50027,"name":"Rot-Resistant Breastplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,137,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":137,"6":92,"7":100,"22":2638},"isBase":true}}}, +{"id":50028,"name":"Trauma","icon":"inv_mace_118","type":13,"weaponType":4,"handType":2,"stats":[0,0,99,0,0,0,0,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":99,"14":928},"isBase":true}}}, +{"id":50030,"name":"Bloodsunder's Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,129,83,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"6":52,"7":60,"22":849},"isBase":true}}}, +{"id":50032,"name":"Death Surgeon's Sleeves","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52,"22":486},"isBase":true}}}, +{"id":50033,"name":"Corpse-Impaling Spike","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,0,0,46,46,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":99,"3":69,"6":46,"7":46,"14":928},"isBase":true}}}, +{"id":50034,"name":"Zod's Repeating Longbow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,108,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1100,"weaponDamageMax":2044,"weaponSpeed":2.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1100,"weaponDamageMax":2044,"stats":{"1":108,"2":162},"isBase":true}}}, +{"id":50035,"name":"Black Bruise","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":2,"stats":[0,0,69,0,0,0,0,0,0,0,0,0,93,93,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"stats":{"2":69,"12":93,"13":93},"isBase":true}}}, +{"id":50036,"name":"Belt of Broken Bones","icon":"inv_belt_62","type":8,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,79,63,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":79,"10":63,"22":1484},"isBase":true}}}, +{"id":50037,"name":"Fleshrending Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[104,0,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"6":80,"7":64,"22":1649},"isBase":true}}}, +{"id":50038,"name":"Carapace of Forgotten Kings","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":243,"5":84,"6":108,"22":1941},"isBase":true}}}, +{"id":50040,"name":"Distant Land","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,146,219,0,0,0,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1077,"weaponDamageMax":1617,"weaponSpeed":2.4,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1077,"weaponDamageMax":1617,"stats":{"1":146,"2":219,"6":108,"7":108},"isBase":true}}}, +{"id":50041,"name":"Leather of Stitched Scourge Parts","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"7":84,"22":1229},"isBase":true}}}, +{"id":50042,"name":"Gangrenous Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,146,231,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":231,"5":84,"6":108,"22":1229},"isBase":true}}}, +{"id":50046,"name":"Quel'Delar, Cunning of the Shadows","icon":"inv_sword_155","type":13,"weaponType":9,"handType":2,"stats":[0,62,90,0,0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":717,"weaponDamageMax":1332,"weaponSpeed":2.7,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":717,"weaponDamageMax":1332,"stats":{"1":62,"2":90,"6":42,"7":39},"isBase":true}}}, +{"id":50047,"name":"Quel'Delar, Lens of the Mind","icon":"inv_sword_155","type":13,"weaponType":9,"handType":2,"stats":[0,0,111,0,0,0,54,49,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":278,"weaponDamageMax":518,"weaponSpeed":2.1,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":278,"weaponDamageMax":518,"stats":{"2":111,"6":54,"7":49,"14":822},"isBase":true}}}, +{"id":50048,"name":"Quel'Delar, Might of the Faithful","icon":"inv_sword_155","type":13,"weaponType":9,"handType":4,"stats":[144,0,215,0,0,0,99,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1420,"weaponDamageMax":2131,"weaponSpeed":3.6,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1420,"weaponDamageMax":2131,"stats":{"0":144,"2":215,"6":99,"7":91},"isBase":true}}}, +{"id":50049,"name":"Quel'Delar, Ferocity of the Scorned","icon":"inv_sword_155","type":13,"weaponType":9,"handType":4,"stats":[0,144,213,0,0,0,99,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1341,"weaponDamageMax":2013,"weaponSpeed":3.4,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1341,"weaponDamageMax":2013,"stats":{"1":144,"2":213,"6":99,"7":91},"isBase":true}}}, +{"id":50050,"name":"Cudgel of Furious Justice","icon":"inv_mace_48","type":13,"weaponType":4,"handType":2,"stats":[0,62,92,0,0,0,42,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"weaponSpeed":2.6,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"stats":{"1":62,"2":92,"6":42,"7":40},"isBase":true}}}, +{"id":50051,"name":"Hammer of Purified Flame","icon":"inv_mace_86","type":13,"weaponType":4,"handType":2,"stats":[0,0,111,0,0,0,54,49,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"stats":{"2":111,"6":54,"7":49,"14":822},"isBase":true}}}, +{"id":50052,"name":"Lightborn Spire","icon":"inv_mace_87","type":13,"weaponType":4,"handType":4,"stats":[0,144,215,0,0,0,103,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1262,"weaponDamageMax":1894,"weaponSpeed":3.2,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1262,"weaponDamageMax":1894,"stats":{"1":144,"2":215,"6":103,"8":84},"isBase":true}}}, +{"id":50056,"name":"Plaguebringer's Stained Pants","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,146,0,98,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":98,"7":102,"22":972},"isBase":true}}}, +{"id":50059,"name":"Horrific Flesh Epaulets","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1456},"isBase":true}}}, +{"id":50060,"name":"Faceplate of the Forgotten","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,231,146,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":92,"6":92,"22":2143},"isBase":true}}}, +{"id":50061,"name":"Holiday's Grace","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52},"isBase":true}}}, +{"id":50062,"name":"Plague Scientist's Boots","icon":"inv_boots_cloth_25","type":10,"armorType":1,"stats":[0,0,172,104,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":64,"7":80,"22":764},"isBase":true}}}, +{"id":50063,"name":"Lingering Illness","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,172,104,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"6":64,"22":625},"isBase":true}}}, +{"id":50064,"name":"Unclean Surgical Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,172,104,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"7":80,"22":1213},"isBase":true}}}, +{"id":50065,"name":"Icecrown Glacial Wall","icon":"inv_shield_75","type":13,"weaponType":7,"handType":3,"stats":[90,0,136,0,0,0,0,0,0,60,71,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":136,"9":60,"10":71,"22":7521},"isBase":true}}}, +{"id":50067,"name":"Astrylian's Sutured Cinch","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,104,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"6":80,"7":64,"22":790},"isBase":true}}}, +{"id":50068,"name":"Rigormortis","icon":"inv_sword_152","type":13,"weaponType":9,"handType":2,"stats":[0,0,126,0,0,59,0,59,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":126,"5":59,"7":59,"14":928},"isBase":true}}}, +{"id":50069,"name":"Professor's Bloodied Smock","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,172,104,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"7":80,"22":790},"isBase":true}}}, +{"id":50070,"name":"Glorenzelg, High-Blade of the Silver Hand","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[157,0,259,0,0,0,115,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"weaponSpeed":3.6,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"stats":{"0":157,"2":259,"6":115,"8":99},"isBase":true}}}, +{"id":50071,"name":"Treads of the Wasteland","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1334},"isBase":true}}}, +{"id":50072,"name":"Landsoul's Horned Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[138,0,243,0,0,92,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"5":92,"6":100,"22":2143},"isBase":true}}}, +{"id":50073,"name":"Geistlord's Punishment Sack","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":243,"5":84,"6":108,"22":1141},"isBase":true}}}, +{"id":50074,"name":"Royal Crimson Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[69,0,124,0,0,38,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":69,"2":124,"5":38,"9":90,"22":556},"isBase":true}}}, +{"id":50075,"name":"Taldaram's Plated Fists","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,79,63,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":79,"10":63,"22":1649},"isBase":true}}}, +{"id":50078,"name":"Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":216,"6":96,"7":80,"22":2540},"isBase":true}}}, +{"id":50079,"name":"Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"5":63,"6":71,"22":1587},"isBase":true}}}, +{"id":50080,"name":"Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":216,"6":88,"7":80,"22":2064},"isBase":true}}}, +{"id":50081,"name":"Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[128,0,214,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":214,"6":96,"8":80,"22":2222},"isBase":true}}}, +{"id":50082,"name":"Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":71,"7":63,"22":1905},"isBase":true}}}, +{"id":50087,"name":"Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,144,191,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":191,"6":96,"7":80,"22":1324},"isBase":true}}}, +{"id":50088,"name":"Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":148,"6":71,"7":63,"22":827},"isBase":true}}}, +{"id":50089,"name":"Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,144,179,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":179,"6":88,"7":80,"22":1076},"isBase":true}}}, +{"id":50090,"name":"Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,144,191,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":191,"6":96,"8":80,"22":1158},"isBase":true}}}, +{"id":50094,"name":"Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":216,"6":96,"7":80,"22":2540},"isBase":true}}}, +{"id":50095,"name":"Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"5":63,"6":71,"22":1587},"isBase":true}}}, +{"id":50096,"name":"Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":216,"6":88,"7":80,"22":2064},"isBase":true}}}, +{"id":50097,"name":"Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[128,0,216,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":216,"6":96,"8":80,"22":2222},"isBase":true}}}, +{"id":50098,"name":"Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":71,"7":63,"22":1905},"isBase":true}}}, +{"id":50105,"name":"Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,107,148,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":148,"5":63,"6":71,"22":993},"isBase":true}}}, +{"id":50106,"name":"Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,205,128,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":96,"6":80,"22":1324},"isBase":true}}}, +{"id":50107,"name":"Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,99,71,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":71,"7":63,"22":827},"isBase":true}}}, +{"id":50108,"name":"Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,205,120,88,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":88,"6":80,"22":1076},"isBase":true}}}, +{"id":50109,"name":"Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,205,128,96,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":96,"7":78,"22":1158},"isBase":true}}}, +{"id":50113,"name":"Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,152,99,71,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":71,"6":63,"22":993},"isBase":true}}}, +{"id":50114,"name":"Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,99,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":160,"5":63,"6":71,"22":1158},"isBase":true}}}, +{"id":50115,"name":"Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,136,170,0,0,0,112,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":136,"2":170,"6":112,"7":68,"22":1505},"isBase":true}}}, +{"id":50116,"name":"Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":170,"6":120,"7":68,"22":1621},"isBase":true}}}, +{"id":50117,"name":"Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,107,126,0,0,0,99,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":126,"6":99,"7":48,"22":1389},"isBase":true}}}, +{"id":50118,"name":"Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":170,"6":120,"7":68,"22":1853},"isBase":true}}}, +{"id":50170,"name":"Valanar's Other Signet Ring","icon":"inv_jewelry_ring_81","type":11,"stats":[0,0,129,82,0,38,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"5":38,"7":69},"isBase":true}}}, +{"id":50171,"name":"Shoulders of Frost-Tipped Thorns","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,172,104,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"7":64,"22":1054},"isBase":true}}}, +{"id":50172,"name":"Sanguine Silk Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"7":84,"22":1111},"isBase":true}}}, +{"id":50173,"name":"Shadow Silk Spindle","icon":"inv_misc_thread_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,91,0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":91,"6":60,"7":60},"isBase":true}}}, +{"id":50174,"name":"Incarnadine Band of Mending","icon":"inv_jewelry_ring_84","type":11,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52},"isBase":true}}}, +{"id":50175,"name":"Crypt Keeper's Bracers","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,129,83,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"6":52,"7":60,"22":1154},"isBase":true}}}, +{"id":50176,"name":"San'layn Ritualist Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,105,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":64,"7":80,"22":695},"isBase":true}}}, +{"id":50177,"name":"Mail of Crimson Coins","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"7":84,"22":1941},"isBase":true}}}, +{"id":50178,"name":"Bloodfall","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"weaponSpeed":3.4,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"stats":{"1":162,"2":219,"6":108,"7":92},"isBase":true}}}, +{"id":50179,"name":"Last Word","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104},"isBase":true}}}, +{"id":50180,"name":"Lana'thel's Chain of Flagellation","icon":"inv_jewelry_necklace_50","type":2,"stats":[82,0,136,0,0,0,65,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":65,"8":45},"isBase":true}}}, +{"id":50181,"name":"Dying Light","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,121,0,0,121,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.1,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"stats":{"2":293,"4":121,"7":121,"14":928},"isBase":true}}}, +{"id":50182,"name":"Blood Queen's Crimson Choker","icon":"inv_jewelcrafting_crimsonspinel_02","type":2,"stats":[0,0,129,83,0,0,57,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"6":57,"7":53},"isBase":true}}}, +{"id":50183,"name":"Lungbreaker","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"1":69,"2":104,"6":46,"7":46},"isBase":true}}}, +{"id":50184,"name":"Keleseth's Seducer","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":2,"stats":[0,69,104,0,0,46,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"1":69,"2":104,"5":46,"7":46},"isBase":true}}}, +{"id":50185,"name":"Devium's Eternally Cold Ring","icon":"inv_jewelry_ring_86","type":11,"stats":[90,0,124,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":124,"9":64,"23":192},"isBase":true}}}, +{"id":50186,"name":"Frostbrood Sapphire Ring","icon":"item_icecrownringa","type":11,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":52,"7":60},"isBase":true}}}, +{"id":50187,"name":"Coldwraith Links","icon":"inv_belt_62","type":8,"armorType":4,"stats":[104,0,180,0,0,0,75,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":75,"7":68,"22":1484},"isBase":true}}}, +{"id":50188,"name":"Anub'ar Stalker's Gloves","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,143,0,0,0,104,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":143,"6":104,"7":55,"22":1213},"isBase":true}}}, +{"id":50190,"name":"Grinning Skull Greatboots","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[92,0,157,0,0,0,0,0,53,112,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":157,"8":53,"9":112,"22":1814},"isBase":true}}}, +{"id":50191,"name":"Nighttime","icon":"inv_axe_91","type":13,"weaponType":1,"handType":2,"stats":[0,52,73,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":52,"2":73,"6":34,"7":34},"isBase":true}}}, +{"id":50192,"name":"Scourge Reaver's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[138,0,243,0,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":108,"7":84,"22":2308},"isBase":true}}}, +{"id":50193,"name":"Very Fashionable Shoulders","icon":"inv_shoulder_118","type":3,"armorType":1,"stats":[0,0,127,89,0,62,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"5":62,"7":55,"22":692},"isBase":true}}}, +{"id":50194,"name":"Weeping Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[89,0,134,0,0,0,49,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"6":49,"7":66,"22":1496},"isBase":true}}}, +{"id":50195,"name":"Noose of Malachite","icon":"item_icecrownnecklacec","type":2,"stats":[69,0,124,0,0,46,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":69,"2":124,"5":46,"9":82},"isBase":true}}}, +{"id":50196,"name":"Love's Prisoner","icon":"inv_spiritshard_02","type":2,"stats":[0,0,95,67,51,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"4":51,"7":34},"isBase":true}}}, +{"id":50197,"name":"Eyes of Bewilderment","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,104,127,0,0,0,106,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36497,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":127,"6":106,"7":69,"22":1399},"isBase":true}}}, +{"id":50198,"name":"Needle-Encrusted Scorpion","icon":"inv_qirajidol_onyx","type":12,"stats":[0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"6":114},"isBase":true}}}, +{"id":50199,"name":"Leggings of Dying Candles","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":2308},"isBase":true}}}, +{"id":50202,"name":"Snowstorm Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":1577},"isBase":true}}}, +{"id":50203,"name":"Blood Weeper","icon":"inv_weapon_shortblade_77","type":13,"weaponType":2,"handType":2,"stats":[0,52,73,0,0,0,30,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":73,"6":30,"7":37},"isBase":true}}}, +{"id":50204,"name":"Wand of the Drowned Contessa","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,46,0,0,46,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":302,"weaponDamageMax":561,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":302,"weaponDamageMax":561,"stats":{"2":99,"3":69,"4":46,"7":46,"14":928},"isBase":true}}}, +{"id":50205,"name":"Frostbinder's Shredded Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,129,82,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"6":60,"7":52,"22":556},"isBase":true}}}, +{"id":50206,"name":"Frayed Scoundrel's Cap","icon":"inv_helmet_153","type":1,"armorType":2,"stats":[0,104,148,0,0,0,47,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,979,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":104,"2":148,"6":47,"7":90,"22":979},"isBase":true}}}, +{"id":50207,"name":"Black Spire Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[89,0,134,0,0,0,0,0,0,71,47,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"9":71,"10":47,"22":1645},"isBase":true}}}, +{"id":50208,"name":"Pauldrons of the Souleater","icon":"inv_shoulder_121","type":3,"armorType":4,"stats":[89,0,134,0,0,0,54,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"6":54,"7":63,"22":1795},"isBase":true}}}, +{"id":50209,"name":"Essence of Suffering","icon":"inv_bracer_31","type":6,"armorType":3,"stats":[0,67,100,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":100,"5":39,"6":48,"22":753},"isBase":true}}}, +{"id":50210,"name":"Seethe","icon":"inv_sword_120","type":13,"weaponType":9,"handType":2,"stats":[0,0,88,0,0,39,0,52,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":242,"weaponDamageMax":450,"weaponSpeed":2.2,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":242,"weaponDamageMax":450,"stats":{"2":88,"5":39,"7":52,"14":689},"isBase":true}}}, +{"id":50211,"name":"Arcane Loops of Anger","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,98,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":98,"3":67,"6":45,"7":45},"isBase":true}}}, +{"id":50212,"name":"Essence of Desire","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,129,89,62,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"4":62,"7":55,"22":753},"isBase":true}}}, +{"id":50213,"name":"Mord'rethar Robes","icon":"inv_chest_cloth_48","type":5,"armorType":1,"stats":[0,0,172,120,86,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":120,"4":86,"6":70,"22":923},"isBase":true}}}, +{"id":50214,"name":"Helm of the Spirit Shock","icon":"inv_helmet_157","type":1,"armorType":3,"stats":[0,0,148,104,0,0,58,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1399,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":148,"3":104,"6":58,"7":84,"22":1399},"isBase":true}}}, +{"id":50215,"name":"Recovered Reliquary Boots","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[0,0,129,89,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36502,"zoneId":4809}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":129,"3":89,"4":60,"6":60,"22":1645},"isBase":true}}}, +{"id":50227,"name":"Surgeon's Needle","icon":"inv_weapon_shortblade_100","type":13,"weaponType":2,"handType":2,"stats":[0,0,88,0,52,0,39,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"weaponSpeed":1.8,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":198,"weaponDamageMax":368,"stats":{"2":88,"4":52,"6":39,"14":689},"isBase":true}}}, +{"id":50228,"name":"Barbed Ymirheim Choker","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,67,96,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":96,"6":39,"7":48},"isBase":true}}}, +{"id":50229,"name":"Legguards of the Frosty Depths","icon":"inv_pants_plate_34","type":9,"armorType":4,"stats":[0,0,166,112,80,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2094,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":166,"3":112,"4":80,"7":76,"22":2094},"isBase":true}}}, +{"id":50230,"name":"Malykriss Vambraces","icon":"inv_bracer_49","type":6,"armorType":4,"stats":[67,0,100,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"5":45,"6":45,"22":1047},"isBase":true}}}, +{"id":50233,"name":"Spurned Val'kyr Shoulderguards","icon":"inv_shoulder_120","type":3,"armorType":3,"stats":[0,89,120,0,0,0,80,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1291,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":120,"6":80,"7":47,"22":1291},"isBase":true}}}, +{"id":50234,"name":"Shoulderplates of Frozen Blood","icon":"inv_shoulder_121","type":3,"armorType":4,"stats":[68,0,134,0,0,0,0,0,45,87,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36494,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":68,"2":134,"8":45,"9":87,"22":1795},"isBase":true}}}, +{"id":50235,"name":"Ick's Rotting Thumb","icon":"inv_misc_bone_10","type":12,"stats":[0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"9":113},"isBase":true}}}, +{"id":50240,"name":"Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"6":71,"22":646},"isBase":true}}}, +{"id":50241,"name":"Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,204,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":120,"6":88,"7":80,"22":840},"isBase":true}}}, +{"id":50242,"name":"Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"5":80,"6":96,"22":905},"isBase":true}}}, +{"id":50243,"name":"Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"6":96,"7":80,"22":1034},"isBase":true}}}, +{"id":50244,"name":"Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":776},"isBase":true}}}, +{"id":50257,"name":"Shadow's Edge Monster Offhand","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"stats":{"2":25,"7":18,"12":52,"13":52},"isBase":true}}}, +{"id":50259,"name":"Nevermelting Ice Crystal","icon":"inv_datacrystal09","type":12,"stats":[0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"3":95},"isBase":true}}}, +{"id":50260,"name":"Ephemeral Snowflake","icon":"inv_jewelcrafting_empyreansapphire_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"isBase":true}}}, +{"id":50262,"name":"Felglacier Bolter","icon":"inv_weapon_crossbow_30","type":14,"rangedWeaponType":2,"stats":[0,120,172,0,0,89,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":982,"weaponDamageMax":1474,"weaponSpeed":3,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":982,"weaponDamageMax":1474,"stats":{"1":120,"2":172,"5":89,"6":65},"isBase":true}}}, +{"id":50263,"name":"Braid of Salt and Fire","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,131,89,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":131,"3":89,"4":60,"7":60,"22":519},"isBase":true}}}, +{"id":50264,"name":"Chewed Leather Wristguards","icon":"inv_bracer_23a","type":6,"armorType":2,"stats":[0,67,96,0,0,46,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":96,"5":46,"6":41,"22":527},"isBase":true}}}, +{"id":50265,"name":"Blackened Ghoul Skin Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,172,120,74,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":120,"4":74,"7":84,"22":1507},"isBase":true}}}, +{"id":50266,"name":"Ancient Polar Bear Hide","icon":"inv_chest_cloth_79","type":5,"armorType":1,"stats":[0,0,172,120,0,61,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36476,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":120,"5":61,"7":92,"22":923},"isBase":true}}}, +{"id":50267,"name":"Tyrannical Beheader","icon":"inv_axe_96","type":13,"weaponType":1,"handType":4,"stats":[112,0,181,0,0,0,53,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"0":112,"2":181,"6":53,"7":92},"isBase":true}}}, +{"id":50268,"name":"Rimefang's Claw","icon":"inv_weapon_shortblade_86","type":13,"weaponType":9,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,44,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":374,"weaponDamageMax":696,"weaponSpeed":1.7,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":374,"weaponDamageMax":696,"stats":{"0":52,"2":77,"9":44,"10":21},"isBase":true}}}, +{"id":50269,"name":"Fleshwerk Leggings","icon":"inv_pants_leather_30a","type":9,"armorType":2,"stats":[0,120,172,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":120,"2":172,"6":80,"7":80,"22":1055},"isBase":true}}}, +{"id":50270,"name":"Belt of Rotted Fingernails","icon":"inv_belt_69","type":8,"armorType":3,"stats":[0,89,134,0,0,52,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,968,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":134,"5":52,"7":64,"22":968},"isBase":true}}}, +{"id":50271,"name":"Band of Stained Souls","icon":"inv_jewelry_ring_12","type":11,"stats":[0,67,100,0,0,0,50,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":100,"6":50,"7":36},"isBase":true}}}, +{"id":50272,"name":"Frost Wyrm Ribcage","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[120,0,181,0,0,0,84,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":181,"6":84,"7":74,"22":2393},"isBase":true}}}, +{"id":50273,"name":"Engraved Gargoyle Femur","icon":"inv_staff_81","type":13,"weaponType":8,"handType":4,"stats":[0,0,219,0,0,113,0,86,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":491,"weaponDamageMax":737,"weaponSpeed":3,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":491,"weaponDamageMax":737,"stats":{"2":219,"5":113,"7":86,"14":690},"isBase":true}}}, +{"id":50275,"name":"Bloodmage Gloves","icon":"inv_gauntlets_90purple","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"6":71,"22":646},"isBase":true}}}, +{"id":50276,"name":"Bloodmage Hood","icon":"inv_helmet_150purple","type":1,"armorType":1,"stats":[0,0,204,120,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":120,"6":96,"7":72,"22":840},"isBase":true}}}, +{"id":50277,"name":"Bloodmage Leggings","icon":"inv_pants_cloth_34purple","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"5":80,"6":96,"22":905},"isBase":true}}}, +{"id":50278,"name":"Bloodmage Robe","icon":"inv_chest_cloth_78purple","type":5,"armorType":1,"stats":[0,0,204,128,0,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"6":80,"7":96,"22":1034},"isBase":true}}}, +{"id":50279,"name":"Bloodmage Shoulderpads","icon":"inv_shoulder_116purple","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":776},"isBase":true}}}, +{"id":50283,"name":"Mudslide Boots","icon":"inv_boots_chain_11","type":10,"armorType":3,"stats":[0,0,131,89,0,0,61,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":131,"3":89,"6":61,"7":57,"22":1184},"isBase":true}}}, +{"id":50284,"name":"Rusty Frozen Fingerguards","icon":"inv_gauntlets_94","type":7,"armorType":4,"stats":[0,0,127,89,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1496,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":60,"6":60,"22":1496},"isBase":true}}}, +{"id":50285,"name":"Icebound Bronze Cuirass","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[88,0,181,0,0,67,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":88,"2":181,"5":67,"9":117,"22":2393},"isBase":true}}}, +{"id":50286,"name":"Prelate's Snowshoes","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,127,89,61,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36658,"zoneId":4813}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"4":61,"7":57,"22":634},"isBase":true}}}, +{"id":50290,"name":"Falric's Wrist-Chopper","icon":"inv_axe_89","type":13,"weaponType":1,"handType":2,"stats":[52,0,77,0,0,0,0,0,0,31,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":352,"weaponDamageMax":655,"weaponSpeed":1.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":352,"weaponDamageMax":655,"stats":{"0":52,"2":77,"9":31,"10":36},"isBase":true}}}, +{"id":50291,"name":"Soulsplinter","icon":"inv_wand_1h_stratholme_d_02","type":14,"rangedWeaponType":6,"stats":[0,0,75,52,0,37,30,0,0,0,0,0,0,0,689,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":231,"weaponDamageMax":430,"weaponSpeed":2.1,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":231,"weaponDamageMax":430,"stats":{"2":75,"3":52,"5":37,"6":30,"14":689},"isBase":true}}}, +{"id":50292,"name":"Bracer of Worn Molars","icon":"inv_bracer_32a","type":6,"armorType":1,"stats":[0,0,95,67,0,43,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"5":43,"6":45,"22":404},"isBase":true}}}, +{"id":50293,"name":"Spaulders of Black Betrayal","icon":"inv_shoulder_115","type":3,"armorType":2,"stats":[0,89,131,0,0,57,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":131,"5":57,"6":61,"22":904},"isBase":true}}}, +{"id":50294,"name":"Chestpiece of High Treason","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,172,112,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"7":80,"22":2393},"isBase":true}}}, +{"id":50295,"name":"Spiked Toestompers","icon":"inv_boots_chain_13","type":10,"armorType":3,"stats":[0,89,97,0,0,0,89,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38112,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":97,"6":89,"7":47,"22":1184},"isBase":true}}}, +{"id":50296,"name":"Orca-Hunter's Harpoon","icon":"inv_weapon_halberd_26","type":13,"weaponType":6,"handType":4,"stats":[0,112,172,0,0,84,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1113,"weaponDamageMax":1670,"weaponSpeed":3.4,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1113,"weaponDamageMax":1670,"stats":{"1":112,"2":172,"5":84,"6":66},"isBase":true}}}, +{"id":50297,"name":"Frostsworn Bone Chestpiece","icon":"inv_chest_mail_12","type":5,"armorType":3,"stats":[0,120,143,0,0,0,101,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1722,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":120,"2":143,"6":101,"7":71,"22":1722},"isBase":true}}}, +{"id":50298,"name":"Sightless Crown of Ulmaas","icon":"inv_helmet_155","type":1,"armorType":1,"stats":[0,0,148,104,0,62,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,750,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":148,"3":104,"5":62,"7":78,"22":750},"isBase":true}}}, +{"id":50299,"name":"Suspiciously Soft Gloves","icon":"inv_gauntlets_91","type":7,"armorType":1,"stats":[0,0,128,90,57,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":128,"3":90,"4":57,"6":61,"22":577},"isBase":true}}}, +{"id":50300,"name":"Choking Hauberk","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,112,176,0,0,59,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":38113,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"1":112,"2":176,"5":59,"6":89,"22":1205},"isBase":true}}}, +{"id":50302,"name":"Liar's Tongue","icon":"inv_sword_118","type":13,"weaponType":9,"handType":2,"stats":[0,52,74,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"1":52,"2":74,"6":34,"8":34},"isBase":true}}}, +{"id":50303,"name":"Black Icicle","icon":"inv_mace_78","type":13,"weaponType":4,"handType":2,"stats":[0,39,87,0,0,29,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":573,"weaponDamageMax":1064,"stats":{"1":39,"2":87,"5":29,"6":38},"isBase":true}}}, +{"id":50304,"name":"Hoarfrost Gauntlets","icon":"inv_gauntlets_77a","type":7,"armorType":3,"stats":[0,89,134,0,0,52,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":134,"5":52,"6":64,"22":1076},"isBase":true}}}, +{"id":50305,"name":"Grinning Skull Boots","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[89,0,134,0,0,0,64,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1645,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"0":89,"2":134,"6":64,"7":52,"22":1645},"isBase":true}}}, +{"id":50306,"name":"The Lady's Promise","icon":"inv_jewelry_ring_26","type":11,"stats":[67,0,100,0,0,0,47,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"6":47,"8":40},"isBase":true}}}, +{"id":50308,"name":"Blighted Leather Footpads","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,89,127,0,0,0,54,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,829,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"1":89,"2":127,"6":54,"7":63,"22":829},"isBase":true}}}, +{"id":50309,"name":"Shriveled Heart","icon":"inv_ore_feliron_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,79,67,0,0,51,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":79,"3":67,"6":51,"7":50},"isBase":true}}}, +{"id":50310,"name":"Fossilized Ammonite Choker","icon":"inv_misc_shell_04","type":2,"stats":[67,0,100,0,0,0,0,0,0,53,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"9":53,"10":35},"isBase":true}}}, +{"id":50311,"name":"Second Helm of the Executioner","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[84,0,157,0,0,0,0,0,53,98,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":84,"2":157,"8":53,"9":98,"22":1944},"isBase":true}}}, +{"id":50312,"name":"Chestguard of Broken Branches","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,0,173,112,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1205,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"2":173,"3":112,"4":80,"7":72,"22":1205},"isBase":true}}}, +{"id":50313,"name":"Oath of Empress Zoe","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,95,67,50,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":95,"3":67,"4":50,"6":36},"isBase":true}}}, +{"id":50314,"name":"Strip of Remorse","icon":"inv_belt_67","type":8,"armorType":1,"stats":[0,0,127,89,0,0,55,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":2,"npcId":36954,"zoneId":4820}}],"scalingOptions":{"232":{"randPropPoints":170,"stats":{"2":127,"3":89,"6":55,"7":62,"22":519},"isBase":true}}}, +{"id":50315,"name":"Seven-Fingered Claws","icon":"inv_weapon_hand_04","type":13,"weaponType":3,"handType":2,"stats":[0,52,83,0,0,34,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":654,"weaponDamageMax":982,"weaponSpeed":2.6,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":654,"weaponDamageMax":982,"stats":{"1":52,"2":83,"5":34,"6":25},"isBase":true}}}, +{"id":50318,"name":"Ghostly Wristwraps","icon":"inv_bracer_22c","type":6,"armorType":2,"stats":[0,0,96,67,41,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":67,"4":41,"6":46,"22":527},"isBase":true}}}, +{"id":50319,"name":"Unsharpened Ice Razor","icon":"inv_weapon_shortblade_61","type":13,"weaponType":2,"handType":2,"stats":[0,52,75,0,0,0,37,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"weaponSpeed":1.8,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":453,"weaponDamageMax":680,"stats":{"1":52,"2":75,"6":37,"8":30},"isBase":true}}}, +{"id":50324,"name":"Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[99,0,160,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"6":71,"7":63,"22":1905},"isBase":true}}}, +{"id":50325,"name":"Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[128,0,216,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":216,"6":96,"8":80,"22":2222},"isBase":true}}}, +{"id":50326,"name":"Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[120,0,216,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":216,"6":88,"7":80,"22":2064},"isBase":true}}}, +{"id":50327,"name":"Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[99,0,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"5":63,"6":71,"22":1587},"isBase":true}}}, +{"id":50328,"name":"Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[128,0,216,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":128,"2":216,"6":96,"7":80,"22":2540},"isBase":true}}}, +{"id":50333,"name":"Toskk's Maximized Wristguards","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,90,124,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":52,"7":60,"22":615},"isBase":true}}}, +{"id":50339,"name":"Sliver of Pure Ice","icon":"inv_jewelry_trinket_05","type":12,"stats":[0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"3":135},"isBase":true}}}, +{"id":50340,"name":"Muradin's Spyglass","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"6":131},"isBase":true}}}, +{"id":50341,"name":"Unidentifiable Organ","icon":"inv_ore_feliron_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"23":541},"isBase":true}}}, +{"id":50342,"name":"Whispering Fanged Skull","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"6":131},"isBase":true}}}, +{"id":50343,"name":"Whispering Fanged Skull","icon":"inv_misc_bone_skull_02","type":12,"stats":[0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"6":148},"isBase":true}}}, +{"id":50344,"name":"Unidentifiable Organ","icon":"inv_ore_feliron_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,611,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"23":611},"isBase":true}}}, +{"id":50345,"name":"Muradin's Spyglass","icon":"inv_misc_spyglass_02","type":12,"stats":[0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"6":152},"isBase":true}}}, +{"id":50346,"name":"Sliver of Pure Ice","icon":"inv_jewelry_trinket_05","type":12,"stats":[0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"3":152},"isBase":true}}}, +{"id":50348,"name":"Dislodged Foreign Object","icon":"inv_jewelry_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"7":170},"isBase":true}}}, +{"id":50349,"name":"Corpse Tongue Coin","icon":"inv_misc_coin_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"9":172},"isBase":true}}}, +{"id":50351,"name":"Tiny Abomination in a Jar","icon":"inv_alchemy_enchantedvial","type":12,"stats":[0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"5":85},"isBase":true}}}, +{"id":50352,"name":"Corpse Tongue Coin","icon":"inv_misc_coin_18","type":12,"stats":[0,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"9":152},"isBase":true}}}, +{"id":50353,"name":"Dislodged Foreign Object","icon":"inv_jewelry_trinket_01","type":12,"stats":[0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"7":155},"isBase":true}}}, +{"id":50354,"name":"Bauble of True Blood","icon":"inv_jewelcrafting_gem_28","type":12,"stats":[0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"4":152},"isBase":true}}}, +{"id":50355,"name":"Herkuml War Token","icon":"inv_misc_rune_12","type":12,"stats":[0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"7":153},"isBase":true}}}, +{"id":50356,"name":"Corroded Skeleton Key","icon":"inv_misc_key_15","type":12,"stats":[0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":228},"isBase":true}}}, +{"id":50357,"name":"Maghia's Misguided Quill","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"5":152},"isBase":true}}}, +{"id":50358,"name":"Purified Lunar Dust","icon":"inv_misc_ammo_gunpowder_05","type":12,"stats":[0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"3":153},"isBase":true}}}, +{"id":50359,"name":"Althor's Abacus","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"3":153},"isBase":true}}}, +{"id":50360,"name":"Phylactery of the Nameless Lich","icon":"inv_jewelry_trinket_03","type":12,"stats":[0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"6":152},"isBase":true}}}, +{"id":50361,"name":"Sindragosa's Flawless Fang","icon":"inv_jewelry_trinket_06","type":12,"stats":[0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":228},"isBase":true}}}, +{"id":50362,"name":"Deathbringer's Will","icon":"inv_jewelry_trinket_04","type":12,"stats":[0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"6":155},"isBase":true}}}, +{"id":50363,"name":"Deathbringer's Will","icon":"inv_jewelry_trinket_04","type":12,"stats":[0,0,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"6":167},"isBase":true}}}, +{"id":50364,"name":"Sindragosa's Flawless Fang","icon":"inv_jewelry_trinket_06","type":12,"stats":[0,0,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":258},"isBase":true}}}, +{"id":50365,"name":"Phylactery of the Nameless Lich","icon":"inv_jewelry_trinket_03","type":12,"stats":[0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"6":172},"isBase":true}}}, +{"id":50366,"name":"Althor's Abacus","icon":"inv_jewelry_trinket_02","type":12,"stats":[0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"3":172},"isBase":true}}}, +{"id":50375,"name":"Ashen Band of Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[57,0,120,0,0,47,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":57,"2":120,"5":47,"9":80},"isBase":true}}}, +{"id":50376,"name":"Ashen Band of Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,80,117,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":80,"2":117,"5":53,"6":53},"isBase":true}}}, +{"id":50377,"name":"Ashen Band of Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,114,80,0,47,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"5":47,"7":57},"isBase":true}}}, +{"id":50378,"name":"Ashen Band of Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,114,80,54,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"4":54,"7":53},"isBase":true}}}, +{"id":50384,"name":"Ashen Band of Greater Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,124,86,0,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":164,"ilvl":259,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"259":{"randPropPoints":164,"stats":{"2":124,"3":86,"5":50,"7":62},"isBase":true}}}, +{"id":50386,"name":"Ashen Band of Greater Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,124,86,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":164,"ilvl":259,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"259":{"randPropPoints":164,"stats":{"2":124,"3":86,"4":58,"7":57},"isBase":true}}}, +{"id":50387,"name":"Ashen Band of Greater Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,86,126,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":164,"ilvl":259,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"259":{"randPropPoints":164,"stats":{"1":86,"2":126,"5":57,"6":57},"isBase":true}}}, +{"id":50388,"name":"Ashen Band of Greater Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[62,0,129,0,0,50,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":164,"ilvl":259,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"259":{"randPropPoints":164,"stats":{"0":62,"2":129,"5":50,"9":86},"isBase":true}}}, +{"id":50391,"name":"Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"6":71,"22":646},"isBase":true}}}, +{"id":50392,"name":"Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,205,119,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":119,"6":96,"7":72,"22":840},"isBase":true}}}, +{"id":50393,"name":"Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"5":80,"6":96,"22":905},"isBase":true}}}, +{"id":50394,"name":"Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,205,128,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":88,"7":88,"22":1034},"isBase":true}}}, +{"id":50396,"name":"Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":776},"isBase":true}}}, +{"id":50397,"name":"Ashen Band of Unmatched Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,120,86,0,50,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":178,"ilvl":268,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"268":{"randPropPoints":178,"stats":{"2":120,"3":86,"5":50,"7":62},"isBase":true}}}, +{"id":50398,"name":"Ashen Band of Endless Destruction","icon":"inv_jewelry_ring_83","type":11,"stats":[0,0,133,87,0,51,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":133,"3":87,"5":51,"7":64},"isBase":true}}}, +{"id":50399,"name":"Ashen Band of Unmatched Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,120,86,58,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":178,"ilvl":268,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"268":{"randPropPoints":178,"stats":{"2":120,"3":86,"4":58,"7":57},"isBase":true}}}, +{"id":50400,"name":"Ashen Band of Endless Wisdom","icon":"inv_jewelry_ring_85","type":11,"stats":[0,0,132,87,60,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":132,"3":87,"4":60,"7":59},"isBase":true}}}, +{"id":50401,"name":"Ashen Band of Unmatched Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,88,123,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":178,"ilvl":268,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"268":{"randPropPoints":178,"stats":{"1":88,"2":123,"5":57,"6":57},"isBase":true}}}, +{"id":50402,"name":"Ashen Band of Endless Vengeance","icon":"inv_jewelry_ring_81","type":11,"stats":[0,88,135,0,0,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":88,"2":135,"5":59,"6":59},"isBase":true}}}, +{"id":50403,"name":"Ashen Band of Unmatched Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[62,0,129,0,0,50,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":178,"ilvl":268,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"268":{"randPropPoints":178,"stats":{"0":62,"2":129,"5":50,"9":83},"isBase":true}}}, +{"id":50404,"name":"Ashen Band of Endless Courage","icon":"inv_jewelry_ring_84","type":11,"stats":[68,0,130,0,0,55,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":68,"2":130,"5":55,"9":84},"isBase":true}}}, +{"id":50411,"name":"Scourgeborne Waraxe","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,69,104,0,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"1":69,"2":104,"6":46,"7":46},"isBase":true}}}, +{"id":50412,"name":"Bloodvenom Blade","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[0,69,104,0,0,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"1":69,"2":104,"5":46,"6":46},"isBase":true}}}, +{"id":50413,"name":"Nerub'ar Stalker's Cord","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,142,0,0,0,104,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":142,"6":104,"7":63,"22":1092},"isBase":true}}}, +{"id":50414,"name":"Might of Blight","icon":"inv_jewelry_ring_84","type":11,"stats":[82,0,136,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":60,"7":52},"isBase":true}}}, +{"id":50415,"name":"Bryntroll, the Bone Arbiter","icon":"inv_axe_120","type":13,"weaponType":1,"handType":4,"stats":[169,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"weaponSpeed":3.4,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"stats":{"0":169,"2":161},"isBase":true}}}, +{"id":50416,"name":"Boots of the Funeral March","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,172,104,72,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":72,"6":72,"22":1814},"isBase":true}}}, +{"id":50417,"name":"Bracers of Eternal Dreaming","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52,"22":615},"isBase":true}}}, +{"id":50418,"name":"Robe of the Waking Nightmare","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,138,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"5":84,"6":108,"22":1111},"isBase":true}}}, +{"id":50421,"name":"Sindragosa's Cruel Claw","icon":"inv_misc_monsterhorn_03","type":2,"stats":[0,90,124,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":60,"7":52},"isBase":true}}}, +{"id":50423,"name":"Sundial of Eternal Dusk","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,91,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":91,"4":60,"7":60},"isBase":true}}}, +{"id":50424,"name":"Memory of Malygos","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"7":52},"isBase":true}}}, +{"id":50425,"name":"Oathbinder, Charge of the Ranger-General","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,157,260,0,0,0,99,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"weaponSpeed":3.6,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"stats":{"1":157,"2":260,"6":99,"7":115},"isBase":true}}}, +{"id":50426,"name":"Heaven's Fall, Kryss of a Thousand Lies","icon":"inv_weapon_shortblade_104","type":13,"weaponType":2,"handType":2,"stats":[0,74,111,0,0,0,49,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":667,"weaponDamageMax":1001,"weaponSpeed":1.8,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":667,"weaponDamageMax":1001,"stats":{"1":74,"2":111,"6":49,"7":49},"isBase":true}}}, +{"id":50427,"name":"Bloodsurge, Kel'Thuzad's Blade of Agony","icon":"inv_sword_150","type":13,"weaponType":9,"handType":2,"stats":[0,0,133,0,0,0,63,63,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":271,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":133,"6":63,"7":63,"14":991},"isBase":true}}}, +{"id":50428,"name":"Royal Scepter of Terenas II","icon":"inv_mace_115","type":13,"weaponType":4,"handType":2,"stats":[0,0,133,0,0,0,63,63,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":133,"6":63,"7":63,"14":991},"isBase":true}}}, +{"id":50429,"name":"Archus, Greatstaff of Antonidas","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,0,313,0,130,0,0,130,0,0,0,0,0,0,992,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":505,"weaponDamageMax":759,"weaponSpeed":2.1,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":505,"weaponDamageMax":759,"stats":{"2":313,"4":130,"7":130,"14":992},"isBase":true}}}, +{"id":50444,"name":"Rowan's Rifle of Silver Bullets","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,123,243,0,0,82,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":825,"weaponDamageMax":1533,"weaponSpeed":2.1,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":825,"weaponDamageMax":1533,"stats":{"1":123,"2":243,"5":82,"6":108,"7":108},"isBase":true}}}, +{"id":50447,"name":"Harbinger's Bone Band","icon":"inv_jewelry_ring_84","type":11,"stats":[69,0,124,0,0,38,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":69,"2":124,"5":38,"9":90},"isBase":true}}}, +{"id":50449,"name":"Stiffened Corpse Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,172,104,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"6":64,"22":833},"isBase":true}}}, +{"id":50450,"name":"Leggings of Dubious Charms","icon":"inv_pants_mail_35","type":9,"armorType":3,"stats":[0,0,231,137,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":137,"4":100,"6":92,"22":1698},"isBase":true}}}, +{"id":50451,"name":"Belt of the Lonely Noble","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1484},"isBase":true}}}, +{"id":50452,"name":"Wodin's Lucky Necklace","icon":"inv_misc_pelt_wolf_ruin_01","type":2,"stats":[0,90,124,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"5":38,"6":69},"isBase":true}}}, +{"id":50453,"name":"Ring of Rotting Sinew","icon":"inv_jewelry_ring_81","type":11,"stats":[82,0,136,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Trash Mobs"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"5":38,"6":69},"isBase":true}}}, +{"id":50466,"name":"Sentinel's Winter Cloak","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[90,0,124,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,556,160,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":124,"9":72,"22":556,"23":160},"isBase":true}}}, +{"id":50467,"name":"Might of the Ocean Serpent","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[82,0,136,0,0,0,65,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":65,"8":45,"22":556},"isBase":true}}}, +{"id":50468,"name":"Drape of the Violet Tower","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,129,83,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"4":60,"6":52,"22":556},"isBase":true}}}, +{"id":50469,"name":"Volde's Cloak of the Night Sky","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,129,82,60,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"6":52,"22":556},"isBase":true}}}, +{"id":50470,"name":"Recovered Scarlet Onslaught Cape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,90,124,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":124,"6":60,"7":52,"22":556},"isBase":true}}}, +{"id":50472,"name":"Nightmare Ender","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,46,0,46,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":99,"3":69,"4":46,"6":46,"14":928},"isBase":true}}}, +{"id":50603,"name":"Cryptmaker","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[159,0,274,0,0,99,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"weaponSpeed":3.6,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"stats":{"0":159,"2":274,"5":99,"6":115},"isBase":true}}}, +{"id":50604,"name":"Band of the Bone Colossus","icon":"inv_jewelry_ring_83","type":11,"stats":[0,102,141,0,0,62,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"5":62,"7":65},"isBase":true}}}, +{"id":50605,"name":"Snowserpent Mail Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":159,"2":275,"5":98,"6":122,"22":1666},"isBase":true}}}, +{"id":50606,"name":"Gendarme's Cuirass","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[159,0,274,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":274,"5":106,"6":114,"22":2764},"isBase":true}}}, +{"id":50607,"name":"Frostbitten Fur Boots","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,120,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":120,"2":204,"6":90,"7":74,"22":1033},"isBase":true}}}, +{"id":50608,"name":"Frozen Bonespike","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,141,0,66,0,50,0,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":1.8,"ilvl":277,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"stats":{"2":141,"4":66,"6":50,"14":1047},"isBase":true}}}, +{"id":50609,"name":"Bone Sentinel's Amulet","icon":"inv_jewelry_necklace_53","type":2,"stats":[0,0,145,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"7":60},"isBase":true}}}, +{"id":50610,"name":"Marrowgar's Frigid Eye","icon":"item_icecrownringb","type":11,"stats":[0,0,145,94,60,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":60,"7":68},"isBase":true}}}, +{"id":50611,"name":"Bracers of Dark Reckoning","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[102,0,141,0,0,0,0,0,0,80,46,0,0,0,0,0,0,0,0,0,0,0,1209,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":102,"2":141,"9":80,"10":46,"22":1209},"isBase":true}}}, +{"id":50612,"name":"Legguards of Lost Hope","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[139,0,239,0,0,85,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":239,"5":85,"9":167,"22":2419},"isBase":true}}}, +{"id":50613,"name":"Crushing Coldwraith Belt","icon":"inv_belt_64","type":8,"armorType":1,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":676},"isBase":true}}}, +{"id":50614,"name":"Loop of the Endless Labyrinth","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,145,94,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"5":52,"6":73},"isBase":true}}}, +{"id":50615,"name":"Handguards of Winter's Respite","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":939},"isBase":true}}}, +{"id":50616,"name":"Bulwark of Smouldering Steel","icon":"inv_shield_72","type":13,"weaponType":7,"handType":3,"stats":[0,0,146,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7699,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":94,"6":68,"7":60,"22":7699},"isBase":true}}}, +{"id":50617,"name":"Rusted Bonespike Pauldrons","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"6":90,"22":2073},"isBase":true}}}, +{"id":50618,"name":"Frostbrood Sapphire Ring","icon":"item_icecrownringa","type":11,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"6":60,"7":68},"isBase":true}}}, +{"id":50619,"name":"Anub'ar Stalker's Gloves","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,128,161,0,0,0,120,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":161,"6":120,"7":63,"22":1282},"isBase":true}}}, +{"id":50620,"name":"Coldwraith Links","icon":"inv_belt_63","type":8,"armorType":4,"stats":[120,0,204,0,0,0,85,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":120,"2":204,"6":85,"7":78,"22":1555},"isBase":true}}}, +{"id":50621,"name":"Lungbreaker","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,78,106,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"1":78,"2":106,"6":52,"7":44},"isBase":true}}}, +{"id":50622,"name":"Devium's Eternally Cold Ring","icon":"inv_jewelry_ring_86","type":11,"stats":[102,0,141,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":102,"2":141,"9":73,"23":216},"isBase":true}}}, +{"id":50623,"name":"Leggings of Dying Candles","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":114,"6":106,"22":2419},"isBase":true}}}, +{"id":50624,"name":"Scourge Reaver's Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[159,0,275,0,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":275,"6":122,"7":98,"22":2419},"isBase":true}}}, +{"id":50625,"name":"Grinning Skull Greatboots","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[103,0,180,0,0,0,0,0,61,128,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":103,"2":180,"8":61,"9":128,"22":1900},"isBase":true}}}, +{"id":50626,"name":"Snowstorm Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":114,"6":106,"22":1666},"isBase":true}}}, +{"id":50627,"name":"Noose of Malachite","icon":"item_icecrownnecklacec","type":2,"stats":[78,0,141,0,0,52,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":78,"2":141,"5":52,"9":94},"isBase":true}}}, +{"id":50628,"name":"Frostbinder's Shredded Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,145,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"6":68,"7":60,"22":601},"isBase":true}}}, +{"id":50629,"name":"Robe of the Waking Nightmare","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,261,159,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"5":98,"6":122,"22":1202},"isBase":true}}}, +{"id":50630,"name":"Bracers of Eternal Dreaming","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"6":60,"22":657},"isBase":true}}}, +{"id":50631,"name":"Nightmare Ender","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,112,70,44,0,52,0,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"stats":{"2":112,"3":70,"4":44,"6":52,"14":1047},"isBase":true}}}, +{"id":50632,"name":"Boots of the Funeral March","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":1900},"isBase":true}}}, +{"id":50633,"name":"Sindragosa's Cruel Claw","icon":"inv_misc_monsterhorn_03","type":2,"stats":[0,102,141,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"6":68,"7":60},"isBase":true}}}, +{"id":50635,"name":"Sundial of Eternal Dusk","icon":"inv_offhand_zulaman_d_02","type":13,"weaponType":5,"handType":3,"stats":[0,0,146,102,68,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":102,"4":68,"7":68},"isBase":true}}}, +{"id":50636,"name":"Memory of Malygos","icon":"inv_jewelry_ring_40","type":11,"stats":[0,0,145,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"7":60},"isBase":true}}}, +{"id":50638,"name":"Zod's Repeating Longbow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,106,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1253,"weaponDamageMax":2329,"weaponSpeed":2.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1253,"weaponDamageMax":2329,"stats":{"1":106,"2":183},"isBase":true}}}, +{"id":50639,"name":"Blood-Soaked Saronite Stompers","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[120,0,203,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":120,"2":203,"6":90,"7":74,"22":1900},"isBase":true}}}, +{"id":50640,"name":"Broken Ram Skull Helm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[139,0,239,0,0,85,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":239,"5":85,"9":167,"22":2246},"isBase":true}}}, +{"id":50641,"name":"Heartpierce","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,48,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"stats":{"1":48,"2":78},"isBase":true}}}, +{"id":50642,"name":"Juggernaut Band","icon":"item_icecrownringd","type":11,"stats":[102,0,141,0,0,0,0,0,0,70,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":102,"2":141,"9":70,"10":54},"isBase":true}}}, +{"id":50643,"name":"Shoulders of Mercy Killing","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,193,120,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":74,"7":90,"22":901},"isBase":true}}}, +{"id":50644,"name":"Ring of Maddening Whispers","icon":"inv_jewelry_ring_ahnqiraj_05","type":11,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"6":60},"isBase":true}}}, +{"id":50645,"name":"Leggings of Northern Lights","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,167,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1794,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":167,"2":216,"6":159,"7":88,"22":1794},"isBase":true}}}, +{"id":50646,"name":"Cultist's Bloodsoaked Spaulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,128,192,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":192,"6":90,"7":74,"22":1127},"isBase":true}}}, +{"id":50647,"name":"Ahn'kahar Onyx Neckguard","icon":"inv_jewelry_necklace_48","type":2,"stats":[94,0,153,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"5":60,"6":68},"isBase":true}}}, +{"id":50648,"name":"Nibelung","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,189,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":2.1,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":537,"weaponDamageMax":806,"stats":{"2":189,"14":1048},"isBase":true}}}, +{"id":50649,"name":"Deathwhisper Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,159,122,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":122,"6":98,"22":1502},"isBase":true}}}, +{"id":50650,"name":"Fallen Lord's Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":90,"7":74,"22":1728},"isBase":true}}}, +{"id":50651,"name":"The Lady's Brittle Bracers","icon":"inv_bracer_44","type":6,"armorType":1,"stats":[0,0,145,94,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"5":52,"6":73,"22":526},"isBase":true}}}, +{"id":50652,"name":"Necrophotic Greaves","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,193,120,82,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"6":82,"22":1410},"isBase":true}}}, +{"id":50653,"name":"Shadowvault Slayer's Cloak","icon":"item_icecrowncloak","type":4,"armorType":1,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"6":60,"7":68,"22":601},"isBase":true}}}, +{"id":50654,"name":"Scourgeborne Waraxe","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,78,106,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"1":78,"2":106,"6":52,"7":44},"isBase":true}}}, +{"id":50655,"name":"Scourge Hunter's Vambraces","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,102,121,0,0,0,94,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,897,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":121,"6":94,"7":46,"22":897},"isBase":true}}}, +{"id":50656,"name":"Ikfirus' Sack of Wonder","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,167,263,0,0,114,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":167,"2":263,"5":114,"8":106,"22":1502},"isBase":true}}}, +{"id":50657,"name":"Skeleton Lord's Circle","icon":"inv_jewelry_ring_83","type":11,"stats":[94,0,153,0,0,0,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"6":68,"8":60},"isBase":true}}}, +{"id":50658,"name":"Amulet of the Silent Eulogy","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,146,94,0,60,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":94,"5":60,"7":68},"isBase":true}}}, +{"id":50659,"name":"Polar Bear Claw Bracers","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[94,0,153,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1209,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"5":60,"6":68,"22":1209},"isBase":true}}}, +{"id":50660,"name":"Boneguard Commander's Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":99,"10":63,"22":2073},"isBase":true}}}, +{"id":50661,"name":"Corp'rethar Ceremonial Crown","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":114,"6":106,"22":976},"isBase":true}}}, +{"id":50663,"name":"Gunship Captain's Mittens","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,193,120,0,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"5":74,"7":90,"22":751},"isBase":true}}}, +{"id":50664,"name":"Ring of Rapid Ascent","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,145,94,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"6":68,"7":60},"isBase":true}}}, +{"id":50665,"name":"Boots of Unnatural Growth","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1033,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"6":90,"22":1033},"isBase":true}}}, +{"id":50667,"name":"Waistband of Righteous Fury","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,193,120,74,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"6":90,"22":1555},"isBase":true}}}, +{"id":50668,"name":"Greatcloak of the Turned Champion","icon":"item_icecrowncape","type":4,"armorType":1,"stats":[0,0,146,94,68,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":94,"4":68,"7":60,"22":601},"isBase":true}}}, +{"id":50670,"name":"Toskk's Maximized Wristguards","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,102,141,0,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"6":60,"7":68,"22":657},"isBase":true}}}, +{"id":50671,"name":"Belt of the Blood Nova","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,193,120,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":82,"7":82,"22":1154},"isBase":true}}}, +{"id":50672,"name":"Bloodvenom Blade","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[0,70,118,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"1":70,"2":118,"5":52,"6":44},"isBase":true}}}, +{"id":50673,"name":"Dual-Bladed Pauldrons","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,128,161,0,0,0,128,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":161,"6":128,"7":55,"22":1538},"isBase":true}}}, +{"id":50674,"name":"Raging Behemoth's Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[120,0,203,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":120,"2":203,"5":74,"6":90,"22":2073},"isBase":true}}}, +{"id":50675,"name":"Aldriana's Gloves of Secrecy","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,128,192,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":192,"6":90,"7":74,"22":939},"isBase":true}}}, +{"id":50676,"name":"Rib Spreader","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,78,106,0,0,0,52,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"stats":{"1":78,"2":106,"6":52,"7":44},"isBase":true}}}, +{"id":50677,"name":"Winding Sheet","icon":"item_icecrowncape","type":4,"armorType":1,"stats":[94,0,153,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"6":68,"7":60,"22":601},"isBase":true}}}, +{"id":50678,"name":"Seal of Many Mouths","icon":"item_icecrownringc","type":11,"stats":[0,102,141,0,0,0,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"1":102,"2":141,"6":68,"8":60},"isBase":true}}}, +{"id":50679,"name":"Helm of the Elder Moon","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":114,"6":106,"22":1220},"isBase":true}}}, +{"id":50680,"name":"Rot-Resistant Breastplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,261,158,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"6":106,"7":114,"22":2764},"isBase":true}}}, +{"id":50681,"name":"Blightborne Warplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[139,0,239,0,0,69,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":239,"5":69,"9":183,"22":2764},"isBase":true}}}, +{"id":50682,"name":"Bile-Encrusted Medallion","icon":"item_icecrownnecklaceb","type":2,"stats":[102,0,141,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":102,"2":141,"9":73,"23":216},"isBase":true}}}, +{"id":50684,"name":"Corpse-Impaling Spike","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,112,70,0,0,52,44,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"stats":{"2":112,"3":70,"6":52,"7":44,"14":1047},"isBase":true}}}, +{"id":50685,"name":"Trauma","icon":"inv_mace_118","type":13,"weaponType":4,"handType":2,"stats":[0,0,89,0,0,0,0,0,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"stats":{"2":89,"14":1047},"isBase":true}}}, +{"id":50686,"name":"Death Surgeon's Sleeves","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"6":60,"22":526},"isBase":true}}}, +{"id":50687,"name":"Bloodsunder's Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,146,94,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,897,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":94,"6":60,"7":68,"22":897},"isBase":true}}}, +{"id":50688,"name":"Nerub'ar Stalker's Cord","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,120,160,0,0,0,119,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":120,"2":160,"6":119,"7":71,"22":1154},"isBase":true}}}, +{"id":50689,"name":"Carapace of Forgotten Kings","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":159,"2":275,"5":98,"6":122,"22":2051},"isBase":true}}}, +{"id":50690,"name":"Fleshrending Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[120,0,203,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":120,"2":203,"6":90,"7":74,"22":1728},"isBase":true}}}, +{"id":50691,"name":"Belt of Broken Bones","icon":"inv_belt_63","type":8,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,91,71,0,0,0,0,0,0,0,0,0,0,0,1555,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":91,"10":71,"22":1555},"isBase":true}}}, +{"id":50692,"name":"Black Bruise","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":2,"stats":[0,0,78,0,0,0,0,0,0,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":1023,"weaponDamageMax":1535,"weaponSpeed":2.6,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":1023,"weaponDamageMax":1535,"stats":{"2":78,"12":72,"13":72},"isBase":true}}}, +{"id":50693,"name":"Might of Blight","icon":"inv_jewelry_ring_84","type":11,"stats":[94,0,153,0,0,0,68,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"6":68,"7":60},"isBase":true}}}, +{"id":50694,"name":"Plaguebringer's Stained Pants","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,261,158,0,104,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"5":104,"7":116,"22":1051},"isBase":true}}}, +{"id":50695,"name":"Distant Land","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,159,239,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1228,"weaponDamageMax":1842,"weaponSpeed":2.4,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1228,"weaponDamageMax":1842,"stats":{"1":159,"2":239,"6":122,"7":122},"isBase":true}}}, +{"id":50696,"name":"Leather of Stitched Scourge Parts","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,158,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"4":122,"7":98,"22":1314},"isBase":true}}}, +{"id":50697,"name":"Gangrenous Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,167,263,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":167,"2":263,"5":98,"6":122,"22":1314},"isBase":true}}}, +{"id":50698,"name":"Horrific Flesh Epaulets","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,120,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":90,"7":74,"22":1538},"isBase":true}}}, +{"id":50699,"name":"Plague Scientist's Boots","icon":"inv_boots_cloth_24","type":10,"armorType":1,"stats":[0,0,193,120,0,0,74,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,826,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"6":74,"7":90,"22":826},"isBase":true}}}, +{"id":50700,"name":"Holiday's Grace","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"6":60},"isBase":true}}}, +{"id":50701,"name":"Faceplate of the Forgotten","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,261,167,106,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":106,"6":106,"22":2246},"isBase":true}}}, +{"id":50702,"name":"Lingering Illness","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,193,120,90,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"6":74,"22":676},"isBase":true}}}, +{"id":50703,"name":"Unclean Surgical Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"7":90,"22":1282},"isBase":true}}}, +{"id":50704,"name":"Rigormortis","icon":"inv_sword_152","type":13,"weaponType":9,"handType":2,"stats":[0,0,143,0,0,50,0,66,0,0,0,0,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"weaponSpeed":1.8,"ilvl":277,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":310,"weaponDamageMax":576,"stats":{"2":143,"5":50,"7":66,"14":1047},"isBase":true}}}, +{"id":50705,"name":"Professor's Bloodied Smock","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"7":90,"22":845},"isBase":true}}}, +{"id":50706,"name":"Tiny Abomination in a Jar","icon":"inv_alchemy_enchantedvial","type":12,"stats":[0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"5":85},"isBase":true}}}, +{"id":50707,"name":"Astrylian's Sutured Cinch","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,120,204,0,0,0,90,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,845,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":120,"2":204,"6":90,"7":74,"22":845},"isBase":true}}}, +{"id":50708,"name":"Last Word","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":94},"isBase":true}}}, +{"id":50709,"name":"Bryntroll, the Bone Arbiter","icon":"inv_axe_120","type":13,"weaponType":1,"handType":4,"stats":[185,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1740,"weaponDamageMax":2610,"weaponSpeed":3.4,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1740,"weaponDamageMax":2610,"stats":{"0":185,"2":173},"isBase":true}}}, +{"id":50710,"name":"Keleseth's Seducer","icon":"inv_weapon_hand_33","type":13,"weaponType":3,"handType":2,"stats":[0,78,106,0,0,44,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"1":78,"2":106,"5":44,"7":52},"isBase":true}}}, +{"id":50711,"name":"Treads of the Wasteland","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,120,204,0,0,63,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1410,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":120,"2":204,"5":63,"6":97,"22":1410},"isBase":true}}}, +{"id":50712,"name":"Landsoul's Horned Greathelm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[159,0,275,0,0,106,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":275,"5":106,"6":114,"22":2246},"isBase":true}}}, +{"id":50713,"name":"Geistlord's Punishment Sack","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,159,275,0,0,98,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":159,"2":275,"5":98,"6":122,"22":1220},"isBase":true}}}, +{"id":50714,"name":"Valanar's Other Signet Ring","icon":"inv_jewelry_ring_81","type":11,"stats":[0,0,145,94,0,44,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"5":44,"7":78},"isBase":true}}}, +{"id":50715,"name":"Shoulders of Frost-Tipped Thorns","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,120,90,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":90,"7":74,"22":1127},"isBase":true}}}, +{"id":50716,"name":"Taldaram's Plated Fists","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[136,0,180,0,0,0,0,0,0,91,71,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":180,"9":91,"10":71,"22":1728},"isBase":true}}}, +{"id":50717,"name":"Sanguine Silk Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,159,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":122,"7":98,"22":1202},"isBase":true}}}, +{"id":50718,"name":"Royal Crimson Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[78,0,141,0,0,44,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":78,"2":141,"5":44,"9":102,"22":601},"isBase":true}}}, +{"id":50719,"name":"Shadow Silk Spindle","icon":"inv_misc_thread_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,146,102,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":102,"6":68,"7":68},"isBase":true}}}, +{"id":50720,"name":"Incarnadine Band of Mending","icon":"inv_jewelry_ring_84","type":11,"stats":[0,0,145,94,68,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"4":68,"6":60},"isBase":true}}}, +{"id":50721,"name":"Crypt Keeper's Bracers","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,146,94,0,0,60,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1209,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":146,"3":94,"6":60,"7":68,"22":1209},"isBase":true}}}, +{"id":50722,"name":"San'layn Ritualist Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,120,74,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":120,"4":74,"7":90,"22":751},"isBase":true}}}, +{"id":50723,"name":"Mail of Crimson Coins","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,159,122,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":122,"7":98,"22":2051},"isBase":true}}}, +{"id":50724,"name":"Blood Queen's Crimson Choker","icon":"inv_jewelcrafting_crimsonspinel_02","type":2,"stats":[0,0,145,94,0,0,65,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"2":145,"3":94,"6":65,"7":60},"isBase":true}}}, +{"id":50725,"name":"Dying Light","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,330,0,131,0,0,131,0,0,0,0,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":537,"weaponDamageMax":806,"weaponSpeed":2.1,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":537,"weaponDamageMax":806,"stats":{"2":330,"4":131,"7":131,"14":1048},"isBase":true}}}, +{"id":50726,"name":"Bauble of True Blood","icon":"inv_jewelcrafting_gem_28","type":12,"stats":[0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":258,"stats":{"4":171},"isBase":true}}}, +{"id":50727,"name":"Bloodfall","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,175,251,0,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1740,"weaponDamageMax":2610,"weaponSpeed":3.4,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1740,"weaponDamageMax":2610,"stats":{"1":175,"2":251,"6":122,"7":98},"isBase":true}}}, +{"id":50728,"name":"Lana'thel's Chain of Flagellation","icon":"inv_jewelry_necklace_50","type":2,"stats":[94,0,153,0,0,0,73,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":94,"2":153,"6":73,"8":52},"isBase":true}}}, +{"id":50729,"name":"Icecrown Glacial Wall","icon":"inv_shield_75","type":13,"weaponType":7,"handType":3,"stats":[102,0,141,0,0,0,0,0,0,68,72,0,0,0,0,0,0,0,0,0,0,0,7699,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":102,"2":141,"9":68,"10":72,"22":7699},"isBase":true}}}, +{"id":50730,"name":"Glorenzelg, High-Blade of the Silver Hand","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[171,0,292,0,0,0,122,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":1998,"weaponDamageMax":2998,"weaponSpeed":3.6,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":371,"weaponDamageMin":1998,"weaponDamageMax":2998,"stats":{"0":171,"2":292,"6":122,"8":114},"isBase":true}}}, +{"id":50731,"name":"Archus, Greatstaff of Antonidas","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,0,353,0,141,0,0,141,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":582,"weaponDamageMax":874,"weaponSpeed":2.1,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":371,"weaponDamageMin":582,"weaponDamageMax":874,"stats":{"2":353,"4":141,"7":141,"14":1117},"isBase":true}}}, +{"id":50732,"name":"Bloodsurge, Kel'Thuzad's Blade of Agony","icon":"inv_sword_150","type":13,"weaponType":9,"handType":2,"stats":[0,0,152,0,0,0,55,71,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.8,"ilvl":284,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":159,"weaponDamageMin":332,"weaponDamageMax":618,"stats":{"2":152,"6":55,"7":71,"14":1117},"isBase":true}}}, +{"id":50733,"name":"Fal'inrush, Defender of Quel'thalas","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,195,281,0,0,0,130,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":1665,"weaponDamageMax":2498,"weaponSpeed":3,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":371,"weaponDamageMin":1665,"weaponDamageMax":2498,"stats":{"1":195,"2":281,"6":130,"7":122},"isBase":true}}}, +{"id":50734,"name":"Royal Scepter of Terenas II","icon":"inv_mace_115","type":13,"weaponType":4,"handType":2,"stats":[0,0,152,0,0,0,55,71,0,0,0,0,0,0,1117,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":1.8,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":159,"weaponDamageMin":332,"weaponDamageMax":618,"stats":{"2":152,"6":55,"7":71,"14":1117},"isBase":true}}}, +{"id":50735,"name":"Oathbinder, Charge of the Ranger-General","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,179,269,0,0,0,114,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":371,"weaponDamageMin":1998,"weaponDamageMax":2998,"weaponSpeed":3.6,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":371,"weaponDamageMin":1998,"weaponDamageMax":2998,"stats":{"1":179,"2":269,"6":114,"7":122},"isBase":true}}}, +{"id":50736,"name":"Heaven's Fall, Kryss of a Thousand Lies","icon":"inv_weapon_shortblade_104","type":13,"weaponType":2,"handType":2,"stats":[0,76,125,0,0,0,48,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"weaponDamageMin":760,"weaponDamageMax":1141,"weaponSpeed":1.8,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":159,"weaponDamageMin":760,"weaponDamageMax":1141,"stats":{"1":76,"2":125,"6":48,"7":56},"isBase":true}}}, +{"id":50737,"name":"Havoc's Call, Blade of Lordaeron Kings","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,84,113,0,0,0,56,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"weaponDamageMin":961,"weaponDamageMax":1785,"weaponSpeed":2.6,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":159,"weaponDamageMin":961,"weaponDamageMax":1785,"stats":{"1":84,"2":113,"6":56,"7":48},"isBase":true}}}, +{"id":50738,"name":"Mithrios, Bronzebeard's Legacy","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[64,0,113,0,0,0,0,0,42,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":159,"weaponDamageMin":591,"weaponDamageMax":1099,"weaponSpeed":1.6,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"284":{"randPropPoints":159,"weaponDamageMin":591,"weaponDamageMax":1099,"stats":{"0":64,"2":113,"8":42,"10":76},"isBase":true}}}, +{"id":50741,"name":"Vile Fumigator's Mask","icon":"spell_shadow_plaguecloud","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,635,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":148,"ilvl":200,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}},{"drop":{"difficulty":1,"npcId":36296,"zoneId":209}}],"scalingOptions":{"200":{"randPropPoints":148,"stats":{"22":635},"isBase":true}}}, +{"id":50759,"name":"Bone Warden's Splitter","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,62,92,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"weaponSpeed":1.8,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"stats":{"1":62,"2":92,"6":41,"7":41},"isBase":true}}}, +{"id":50760,"name":"Bonebreaker Scepter","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[42,0,92,0,0,39,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":451,"weaponDamageMax":839,"weaponSpeed":1.7,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":451,"weaponDamageMax":839,"stats":{"0":42,"2":92,"5":39,"9":60},"isBase":true}}}, +{"id":50761,"name":"Citadel Enforcer's Claymore","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[136,0,215,0,0,103,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1341,"weaponDamageMax":2013,"weaponSpeed":3.4,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1341,"weaponDamageMax":2013,"stats":{"0":136,"2":215,"5":103,"6":76},"isBase":true}}}, +{"id":50762,"name":"Linked Scourge Vertebrae","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,91,160,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"5":46,"6":76,"22":1042},"isBase":true}}}, +{"id":50763,"name":"Marrowgar's Scratching Choker","icon":"inv_jewelry_necklace_52","type":2,"stats":[79,0,108,0,0,0,0,0,0,54,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":79,"2":108,"9":54,"10":42},"isBase":true}}}, +{"id":50764,"name":"Shawl of Nerubian Silk","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,72,114,0,0,41,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":114,"5":41,"8":56,"22":517},"isBase":true}}}, +{"id":50765,"name":"Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,205,120,80,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":80,"6":88,"22":840},"isBase":true}}}, +{"id":50766,"name":"Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,99,71,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":71,"7":63,"22":646},"isBase":true}}}, +{"id":50767,"name":"Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,99,71,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":71,"6":63,"22":776},"isBase":true}}}, +{"id":50768,"name":"Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,205,128,88,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":88,"6":88,"22":1034},"isBase":true}}}, +{"id":50769,"name":"Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,205,128,96,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":96,"7":80,"22":905},"isBase":true}}}, +{"id":50771,"name":"Frost Needle","icon":"inv_sword_152","type":13,"weaponType":9,"handType":2,"stats":[0,0,111,0,0,49,0,54,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"stats":{"2":111,"5":49,"7":54,"14":822},"isBase":true}}}, +{"id":50772,"name":"Ancient Skeletal Boots","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,152,91,54,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":54,"6":71,"22":1746},"isBase":true}}}, +{"id":50773,"name":"Cord of the Patronizing Practitioner","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,152,91,54,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":54,"7":68,"22":582},"isBase":true}}}, +{"id":50774,"name":"Coldwraith Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,114,72,48,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":48,"7":49,"22":810},"isBase":true}}}, +{"id":50775,"name":"Corrupted Silverplate Leggings","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,204,120,0,0,81,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":120,"6":81,"7":87,"22":2222},"isBase":true}}}, +{"id":50776,"name":"Njorndar Bone Bow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,144,205,0,0,89,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1001,"weaponDamageMax":1860,"weaponSpeed":2.9,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1001,"weaponDamageMax":1860,"stats":{"1":144,"2":205,"5":89,"6":100},"isBase":true}}}, +{"id":50777,"name":"Handgrips of Frost and Sleet","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,91,160,0,0,71,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"5":71,"6":46,"22":1158},"isBase":true}}}, +{"id":50778,"name":"Soulthief's Braided Belt","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,91,152,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":152,"5":46,"6":76,"22":745},"isBase":true}}}, +{"id":50779,"name":"Deathspeaker Zealot's Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[120,0,215,0,0,0,95,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":215,"6":95,"7":68,"22":2064},"isBase":true}}}, +{"id":50780,"name":"Chestguard of the Frigid Noose","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,132,175,0,0,0,79,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":132,"2":175,"6":79,"7":99,"22":1324},"isBase":true}}}, +{"id":50781,"name":"Scourgelord's Baton","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,114,80,0,57,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"5":57,"6":47},"isBase":true}}}, +{"id":50782,"name":"Sister's Handshrouds","icon":"inv_gauntlets_90purple","type":7,"armorType":1,"stats":[0,0,152,91,0,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"5":71,"7":55,"22":646},"isBase":true}}}, +{"id":50783,"name":"Boots of the Frozen Seed","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,152,91,0,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"6":46,"7":76,"22":910},"isBase":true}}}, +{"id":50784,"name":"Deathspeaker Disciple's Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,152,91,50,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":50,"7":74,"22":1042},"isBase":true}}}, +{"id":50785,"name":"Bracers of Dark Blessings","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,114,72,51,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":51,"6":47,"22":453},"isBase":true}}}, +{"id":50786,"name":"Ghoul Commander's Cuirass","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,86,76,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":179,"9":86,"10":76,"22":2540},"isBase":true}}}, +{"id":50787,"name":"Frost Giant's Cleaver","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,62,88,0,0,0,45,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"stats":{"1":62,"2":88,"6":45,"7":35},"isBase":true}}}, +{"id":50788,"name":"Bone Drake's Enameled Boots","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[91,0,160,0,0,0,73,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"6":73,"8":52,"22":1746},"isBase":true}}}, +{"id":50789,"name":"Icecrown Rampart Bracers","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,45,120,0,0,43,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":45,"2":120,"5":43,"6":53,"22":810},"isBase":true}}}, +{"id":50790,"name":"Abomination's Bloody Ring","icon":"inv_jewelry_ring_85","type":11,"stats":[49,0,108,0,0,47,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":49,"2":108,"5":47,"9":79},"isBase":true}}}, +{"id":50791,"name":"Saronite Gargoyle Cloak","icon":"inv_misc_cape_26","type":4,"armorType":1,"stats":[72,0,120,0,0,0,32,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":32,"7":61,"22":517},"isBase":true}}}, +{"id":50792,"name":"Pauldrons of Lost Hope","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,107,119,0,0,0,85,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":119,"6":85,"7":44,"22":1389},"isBase":true}}}, +{"id":50793,"name":"Midnight Sun","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,0,111,0,56,0,0,46,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"stats":{"2":111,"4":56,"7":46,"14":822},"isBase":true}}}, +{"id":50794,"name":"Neverending Winter","icon":"inv_shield_73","type":13,"weaponType":7,"handType":3,"stats":[80,0,120,0,0,0,0,0,0,37,65,0,0,0,0,0,0,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":80,"2":120,"9":37,"10":65,"22":7351},"isBase":true}}}, +{"id":50795,"name":"Cord of Dark Suffering","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,152,91,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":71,"6":55,"22":745},"isBase":true}}}, +{"id":50796,"name":"Bracers of Pale Illumination","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,117,72,53,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":117,"3":72,"4":53,"7":45,"22":1111},"isBase":true}}}, +{"id":50797,"name":"Ice-Reinforced Vrykul Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,184,128,86,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":184,"3":128,"4":86,"7":88,"22":1505},"isBase":true}}}, +{"id":50798,"name":"Ramaladni's Blade of Culling","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[128,0,216,0,0,0,83,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"weaponSpeed":3.5,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"stats":{"0":128,"2":216,"6":83,"8":91},"isBase":true}}}, +{"id":50799,"name":"Scourge Stranglers","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,107,126,0,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":126,"6":63,"7":63,"22":827},"isBase":true}}}, +{"id":50800,"name":"Hauberk of a Thousand Cuts","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,120,215,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":120,"2":215,"5":72,"6":96,"22":1853},"isBase":true}}}, +{"id":50801,"name":"Blade-Scored Carapace","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[132,0,215,0,0,0,72,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":132,"2":215,"6":72,"7":84,"22":2540},"isBase":true}}}, +{"id":50802,"name":"Gargoyle Spit Bracers","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[72,0,108,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,1111,180,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":108,"9":59,"22":1111,"23":180},"isBase":true}}}, +{"id":50803,"name":"Saurfang's Cold-Forged Band","icon":"inv_jewelry_ring_81","type":11,"stats":[0,72,117,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":117,"6":53,"7":45},"isBase":true}}}, +{"id":50804,"name":"Icecrown Spire Sandals","icon":"inv_boots_cloth_25purple","type":10,"armorType":1,"stats":[0,0,152,91,0,46,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"5":46,"6":76,"22":711},"isBase":true}}}, +{"id":50805,"name":"Mag'hari Chieftain's Staff","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,180,0,136,0,0,136,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":611,"weaponDamageMax":918,"weaponSpeed":3.1,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":611,"weaponDamageMax":918,"stats":{"2":180,"4":136,"7":136,"14":822},"isBase":true}}}, +{"id":50806,"name":"Leggings of Unrelenting Blood","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,205,120,96,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":96,"7":72,"22":1158},"isBase":true}}}, +{"id":50807,"name":"Thaumaturge's Crackling Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,205,128,88,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"4":88,"7":72,"22":840},"isBase":true}}}, +{"id":50808,"name":"Deathforged Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[109,0,179,0,0,0,0,0,49,144,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":109,"2":179,"8":49,"9":144,"22":2222},"isBase":true}}}, +{"id":50809,"name":"Soulcleave Pendant","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,114,72,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"6":55,"7":43},"isBase":true}}}, +{"id":50810,"name":"Gutbuster","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,47,104,0,0,39,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"stats":{"1":47,"2":104,"5":39,"6":42},"isBase":true}}}, +{"id":50811,"name":"Festering Fingerguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[91,0,160,0,0,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"5":71,"8":55,"22":1587},"isBase":true}}}, +{"id":50812,"name":"Taldron's Long Neglected Boots","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,91,131,0,0,0,78,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":131,"6":78,"7":62,"22":1274},"isBase":true}}}, +{"id":50815,"name":"Shadowmourne Monster Offhand","icon":"inv_sword_108","type":13,"weaponType":9,"handType":2,"stats":[0,0,25,0,0,0,0,18,0,0,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"weaponSpeed":1.8,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"132":{"randPropPoints":39,"weaponDamageMin":157,"weaponDamageMax":292,"stats":{"2":25,"7":18,"12":52,"13":52},"isBase":true}}}, +{"id":50819,"name":"Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":993},"isBase":true}}}, +{"id":50820,"name":"Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,205,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"5":80,"6":96,"22":1158},"isBase":true}}}, +{"id":50821,"name":"Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,205,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"6":88,"7":80,"22":1076},"isBase":true}}}, +{"id":50822,"name":"Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"6":71,"22":827},"isBase":true}}}, +{"id":50823,"name":"Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,205,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":128,"6":96,"7":80,"22":1324},"isBase":true}}}, +{"id":50824,"name":"Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":148,"6":71,"7":63,"22":993},"isBase":true}}}, +{"id":50825,"name":"Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,144,191,0,0,0,96,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":191,"6":96,"8":80,"22":1158},"isBase":true}}}, +{"id":50826,"name":"Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,144,179,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":179,"6":88,"7":80,"22":1076},"isBase":true}}}, +{"id":50827,"name":"Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,107,148,0,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":148,"6":71,"7":63,"22":827},"isBase":true}}}, +{"id":50828,"name":"Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,144,191,0,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":191,"6":96,"7":80,"22":1324},"isBase":true}}}, +{"id":50830,"name":"Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,144,170,0,0,0,120,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":170,"6":120,"7":68,"22":1853},"isBase":true}}}, +{"id":50831,"name":"Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,99,160,0,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":160,"5":63,"6":71,"22":1158},"isBase":true}}}, +{"id":50832,"name":"Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,136,170,0,0,0,120,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":136,"2":170,"6":120,"7":60,"22":1505},"isBase":true}}}, +{"id":50833,"name":"Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,128,215,0,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":215,"5":80,"6":96,"22":1621},"isBase":true}}}, +{"id":50834,"name":"Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,107,126,0,0,0,99,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":107,"2":126,"6":99,"7":48,"22":1389},"isBase":true}}}, +{"id":50835,"name":"Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"6":96,"7":80,"22":1853},"isBase":true}}}, +{"id":50836,"name":"Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,99,64,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":64,"6":71,"22":1158},"isBase":true}}}, +{"id":50837,"name":"Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,204,119,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":119,"6":88,"7":80,"22":1505},"isBase":true}}}, +{"id":50838,"name":"Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,204,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"4":80,"6":96,"22":1621},"isBase":true}}}, +{"id":50839,"name":"Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":1389},"isBase":true}}}, +{"id":50841,"name":"Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"6":96,"7":80,"22":1853},"isBase":true}}}, +{"id":50842,"name":"Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,99,0,63,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"6":71,"22":1158},"isBase":true}}}, +{"id":50843,"name":"Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,204,119,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":119,"6":88,"7":80,"22":1505},"isBase":true}}}, +{"id":50844,"name":"Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,204,128,0,80,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"5":80,"6":96,"22":1621},"isBase":true}}}, +{"id":50845,"name":"Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":1389},"isBase":true}}}, +{"id":50846,"name":"Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":107,"2":148,"9":76,"10":56,"22":1905},"isBase":true}}}, +{"id":50847,"name":"Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":109,"2":191,"8":73,"9":128,"22":2222},"isBase":true}}}, +{"id":50848,"name":"Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":179,"9":98,"10":68,"22":2064},"isBase":true}}}, +{"id":50849,"name":"Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1587,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":81,"2":148,"5":54,"9":53,"22":1587,"23":252},"isBase":true}}}, +{"id":50850,"name":"Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2540,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":191,"9":41,"10":76,"22":2540,"23":304},"isBase":true}}}, +{"id":50852,"name":"Precious' Putrid Collar","icon":"inv_jewelry_ring_78","type":2,"stats":[0,72,115,0,0,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":115,"5":55,"7":43},"isBase":true}}}, +{"id":50853,"name":"Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":107,"2":148,"9":76,"10":56,"22":1905},"isBase":true}}}, +{"id":50854,"name":"Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":109,"2":191,"8":73,"9":128,"22":2222},"isBase":true}}}, +{"id":50855,"name":"Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":179,"9":98,"10":68,"22":2064},"isBase":true}}}, +{"id":50856,"name":"Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1587,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":81,"2":148,"5":54,"9":53,"22":1587,"23":252},"isBase":true}}}, +{"id":50857,"name":"Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2540,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":191,"9":41,"10":76,"22":2540,"23":304},"isBase":true}}}, +{"id":50858,"name":"Plague-Soaked Leather Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,144,179,0,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":179,"6":72,"7":96,"22":1158},"isBase":true}}}, +{"id":50859,"name":"Cloak of Many Skins","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[72,0,108,0,0,0,0,0,0,61,42,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":108,"9":61,"10":42,"22":517},"isBase":true}}}, +{"id":50860,"name":"Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[107,0,148,0,0,0,0,0,0,76,56,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":107,"2":148,"9":76,"10":56,"22":1905},"isBase":true}}}, +{"id":50861,"name":"Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[109,0,191,0,0,0,0,0,73,128,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":109,"2":191,"8":73,"9":128,"22":2222},"isBase":true}}}, +{"id":50862,"name":"Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[144,0,179,0,0,0,0,0,0,98,68,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":179,"9":98,"10":68,"22":2064},"isBase":true}}}, +{"id":50863,"name":"Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[81,0,148,0,0,54,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1587,252,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":81,"2":148,"5":54,"9":53,"22":1587,"23":252},"isBase":true}}}, +{"id":50864,"name":"Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[144,0,191,0,0,0,0,0,0,41,76,0,0,0,0,0,0,0,0,0,0,0,2540,304,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":191,"9":41,"10":76,"22":2540,"23":304},"isBase":true}}}, +{"id":50865,"name":"Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,152,99,0,0,71,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"6":71,"7":63,"22":1905},"isBase":true}}}, +{"id":50866,"name":"Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,204,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"4":80,"6":96,"22":2222},"isBase":true}}}, +{"id":50867,"name":"Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,204,120,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2064,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":120,"6":88,"7":80,"22":2064},"isBase":true}}}, +{"id":50868,"name":"Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,152,99,64,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3,"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"4":64,"6":71,"22":1587},"isBase":true}}}, +{"id":50869,"name":"Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,204,128,0,0,96,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":128,"6":96,"7":80,"22":2540},"isBase":true}}}, +{"id":50965,"name":"Castle Breaker's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[138,0,243,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":84,"7":108,"22":2638},"isBase":true}}}, +{"id":50966,"name":"Abracadaver","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,220,0,0,101,0,136,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":414,"weaponDamageMax":622,"weaponSpeed":2.1,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":414,"weaponDamageMax":622,"stats":{"2":220,"5":101,"7":136,"14":822},"isBase":true}}}, +{"id":50967,"name":"Festergut's Gaseous Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,152,91,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":71,"6":55,"22":1587},"isBase":true}}}, +{"id":50968,"name":"Cataclysmic Chestguard","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[123,0,207,0,0,0,0,0,82,108,0,0,0,0,0,0,0,0,0,0,0,0,2638,336,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":207,"8":82,"9":108,"22":2638,"23":336},"isBase":true}}}, +{"id":50969,"name":"Chestplate of Unspoken Truths","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":92,"6":100,"22":2638},"isBase":true}}}, +{"id":50970,"name":"Longstrider's Vest","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,146,192,0,0,0,146,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":192,"6":146,"7":69,"22":1941},"isBase":true}}}, +{"id":50971,"name":"Mail of the Geyser","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":92,"6":100,"22":1941},"isBase":true}}}, +{"id":50972,"name":"Shadow Seeker's Tunic","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,162,219,0,0,0,92,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":219,"6":92,"8":92,"22":1405},"isBase":true}}}, +{"id":50973,"name":"Vestments of Spruce and Fir","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,84,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":84,"7":108,"22":1405},"isBase":true}}}, +{"id":50974,"name":"Meteor Chaser's Raiment","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":84,"7":108,"22":1111},"isBase":true}}}, +{"id":50975,"name":"Ermine Coronation Robes","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":84,"6":108,"22":1111},"isBase":true}}}, +{"id":50976,"name":"Gauntlets of Overexposure","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1649},"isBase":true}}}, +{"id":50977,"name":"Gatecrasher's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[104,0,181,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"6":80,"7":64,"22":1649},"isBase":true}}}, +{"id":50978,"name":"Gauntlets of the Kraken","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,1649,288,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"10":83,"22":1649,"23":288},"isBase":true}}}, +{"id":50979,"name":"Logsplitters","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,143,0,0,0,96,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":143,"6":96,"7":63,"22":1213},"isBase":true}}}, +{"id":50980,"name":"Blizzard Keeper's Mitts","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1213},"isBase":true}}}, +{"id":50981,"name":"Gloves of the Great Horned Owl","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":80,"7":72,"22":878},"isBase":true}}}, +{"id":50982,"name":"Cat Burglar's Grips","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,120,157,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":157,"6":80,"7":64,"22":878},"isBase":true}}}, +{"id":50983,"name":"Gloves of False Gestures","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":695},"isBase":true}}}, +{"id":50984,"name":"Gloves of Ambivalence","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":695},"isBase":true}}}, +{"id":50985,"name":"Wrists of Septic Shock","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,114,72,56,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":56,"6":41,"22":579},"isBase":true}}}, +{"id":50986,"name":"Signet of Putrefaction","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,114,72,53,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":53,"7":45},"isBase":true}}}, +{"id":50987,"name":"Malevolent Girdle","icon":"inv_belt_62","type":8,"armorType":4,"stats":[104,0,180,0,0,60,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":180,"5":60,"6":83,"22":1484},"isBase":true}}}, +{"id":50988,"name":"Bloodstained Surgeon's Shoulderguards","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,152,91,75,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":75,"6":48,"22":776},"isBase":true}}}, +{"id":50989,"name":"Lich Killer's Lanyard","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1484},"isBase":true}}}, +{"id":50990,"name":"Kilt of Untreated Wounds","icon":"inv_pants_cloth_34purple","type":9,"armorType":1,"stats":[0,0,204,120,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":204,"3":120,"6":84,"7":84,"22":905},"isBase":true}}}, +{"id":50991,"name":"Verdigris Chain Belt","icon":"inv_belt_62","type":8,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,1484,188,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"10":95,"22":1484,"23":188},"isBase":true}}}, +{"id":50992,"name":"Waistband of Despair","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1092},"isBase":true}}}, +{"id":50993,"name":"Band of the Night Raven","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,181,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":54,"6":86,"22":1092},"isBase":true}}}, +{"id":50994,"name":"Belt of Petrified Ivy","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,173,105,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":105,"6":80,"7":64,"22":790},"isBase":true}}}, +{"id":50995,"name":"Vengeful Noose","icon":"inv_misc_noose_01","type":8,"armorType":2,"stats":[0,120,157,0,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":157,"6":80,"7":64,"22":790},"isBase":true}}}, +{"id":50996,"name":"Belt of Omission","icon":"inv_belt_66","type":8,"armorType":1,"stats":[0,0,172,104,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":64,"6":80,"22":625},"isBase":true}}}, +{"id":50997,"name":"Circle of Ossus","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,172,104,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"7":80,"22":625},"isBase":true}}}, +{"id":50998,"name":"Shaft of Glacial Ice","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,136,211,0,0,88,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":947,"weaponDamageMax":1421,"weaponSpeed":2.4,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":947,"weaponDamageMax":1421,"stats":{"1":136,"2":211,"5":88,"6":96},"isBase":true}}}, +{"id":51000,"name":"Flesh-Shaper's Gurney Strap","icon":"inv_belt_62","type":8,"armorType":4,"stats":[91,0,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"5":55,"6":71,"22":1429},"isBase":true}}}, +{"id":51001,"name":"Rotface's Rupturing Ring","icon":"item_icecrownringd","type":11,"stats":[71,0,120,0,0,0,47,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":71,"2":120,"6":47,"8":51},"isBase":true}}}, +{"id":51002,"name":"Taldron's Short-Sighted Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,128,170,0,0,0,118,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1505,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":128,"2":170,"6":118,"7":68,"22":1505},"isBase":true}}}, +{"id":51003,"name":"Abomination Knuckles","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,62,88,0,0,0,36,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":789,"weaponDamageMax":1184,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":789,"weaponDamageMax":1184,"stats":{"1":62,"2":88,"6":36,"7":44},"isBase":true}}}, +{"id":51004,"name":"Lockjaw","icon":"inv_mace_118","type":13,"weaponType":4,"handType":2,"stats":[0,0,114,0,52,0,0,52,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":292,"weaponDamageMax":543,"weaponSpeed":2.2,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":292,"weaponDamageMax":543,"stats":{"2":114,"4":52,"7":52,"14":822},"isBase":true}}}, +{"id":51005,"name":"Gloves of Broken Fingers","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,152,91,46,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,646,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":46,"7":76,"22":646},"isBase":true}}}, +{"id":51006,"name":"Shuffling Shoes","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,152,91,70,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":70,"7":55,"22":1274},"isBase":true}}}, +{"id":51007,"name":"Ether-Soaked Bracers","icon":"inv_bracer_45purple","type":6,"armorType":1,"stats":[0,0,114,80,0,40,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"5":40,"7":61,"22":453},"isBase":true}}}, +{"id":51008,"name":"Choker of Filthy Diamonds","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,115,72,45,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":115,"3":72,"4":45,"7":53},"isBase":true}}}, +{"id":51009,"name":"Chestguard of the Failed Experiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,205,120,72,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":72,"6":96,"22":1324},"isBase":true}}}, +{"id":51010,"name":"The Facelifter","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[44,0,92,0,0,0,0,0,36,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":425,"weaponDamageMax":789,"weaponSpeed":1.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":425,"weaponDamageMax":789,"stats":{"0":44,"2":92,"8":36,"10":62},"isBase":true}}}, +{"id":51011,"name":"Flesh-Carving Scalpel","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,44,110,0,0,0,44,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":546,"weaponDamageMax":820,"weaponSpeed":1.8,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":546,"weaponDamageMax":820,"stats":{"1":44,"2":110,"6":44,"7":36},"isBase":true}}}, +{"id":51012,"name":"Infected Choker","icon":"item_icecrownnecklaceb","type":2,"stats":[72,0,120,0,0,0,55,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":55,"8":43},"isBase":true}}}, +{"id":51013,"name":"Discarded Bag of Entrails","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,136,181,0,0,0,88,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":136,"2":181,"6":88,"7":80,"22":1076},"isBase":true}}}, +{"id":51014,"name":"Scalpel-Sharpening Shoulderguards","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[91,0,160,0,0,52,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"5":52,"6":73,"22":1905},"isBase":true}}}, +{"id":51015,"name":"Shoulderpads of the Morbid Ritual","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,91,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"5":55,"6":71,"22":1389},"isBase":true}}}, +{"id":51016,"name":"Pendant of Split Veins","icon":"inv_jewelry_talisman_16","type":2,"stats":[0,0,115,72,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":115,"3":72,"5":45,"6":53},"isBase":true}}}, +{"id":51017,"name":"Cauterized Cord","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,152,91,0,0,76,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"6":76,"7":46,"22":582},"isBase":true}}}, +{"id":51018,"name":"Chestplate of Septic Stitches","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,205,120,72,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":72,"6":96,"22":2540},"isBase":true}}}, +{"id":51019,"name":"Rippling Flesh Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,205,120,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"6":84,"7":84,"22":1621},"isBase":true}}}, +{"id":51020,"name":"Shoulders of Ruinous Senility","icon":"inv_shoulder_116purple","type":3,"armorType":1,"stats":[0,0,152,91,0,55,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"5":55,"7":71,"22":776},"isBase":true}}}, +{"id":51021,"name":"Soulbreaker","icon":"inv_sword_151","type":13,"weaponType":9,"handType":2,"stats":[0,62,88,0,0,0,43,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":690,"weaponDamageMax":1283,"stats":{"1":62,"2":88,"6":43,"7":38},"isBase":true}}}, +{"id":51022,"name":"Hersir's Greatspear","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,97,243,0,0,53,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"weaponSpeed":3.5,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"stats":{"1":97,"2":243,"5":53,"6":109},"isBase":true}}}, +{"id":51023,"name":"Taldaram's Soft Slippers","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,91,156,0,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":156,"6":55,"7":71,"22":910},"isBase":true}}}, +{"id":51024,"name":"Thrice Fanged Signet","icon":"item_icecrownringb","type":11,"stats":[72,0,120,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":45,"7":53},"isBase":true}}}, +{"id":51025,"name":"Battle-Maiden's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[120,0,216,0,0,0,0,96,72,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":216,"7":96,"8":72,"22":2222},"isBase":true}}}, +{"id":51125,"name":"Sanctified Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[112,0,181,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"6":80,"7":72,"22":1978},"isBase":true}}}, +{"id":51126,"name":"Sanctified Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[146,0,243,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":243,"6":108,"8":92,"22":2308},"isBase":true}}}, +{"id":51127,"name":"Sanctified Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":100,"7":92,"22":2143},"isBase":true}}}, +{"id":51128,"name":"Sanctified Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[112,0,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"5":72,"6":80,"22":1649},"isBase":true}}}, +{"id":51129,"name":"Sanctified Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":243,"6":108,"7":92,"22":2638},"isBase":true}}}, +{"id":51130,"name":"Sanctified Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":169,"9":87,"10":63,"22":1978},"isBase":true}}}, +{"id":51131,"name":"Sanctified Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":219,"8":82,"9":146,"22":2308},"isBase":true}}}, +{"id":51132,"name":"Sanctified Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1649,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":169,"5":61,"9":60,"22":1649,"23":288},"isBase":true}}}, +{"id":51133,"name":"Sanctified Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,112,77,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":207,"9":112,"10":77,"22":2143},"isBase":true}}}, +{"id":51134,"name":"Sanctified Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,48,85,0,0,0,0,0,0,0,0,0,0,0,2638,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":219,"9":48,"10":85,"22":2638,"23":340},"isBase":true}}}, +{"id":51135,"name":"Sanctified Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,172,112,80,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":80,"6":72,"22":1054},"isBase":true}}}, +{"id":51136,"name":"Sanctified Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,146,108,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":108,"7":90,"22":1229},"isBase":true}}}, +{"id":51137,"name":"Sanctified Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,100,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":100,"6":92,"22":1141},"isBase":true}}}, +{"id":51138,"name":"Sanctified Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,172,112,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":80,"7":72,"22":878},"isBase":true}}}, +{"id":51139,"name":"Sanctified Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,146,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":108,"6":92,"22":1405},"isBase":true}}}, +{"id":51140,"name":"Sanctified Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":169,"6":80,"7":72,"22":1054},"isBase":true}}}, +{"id":51141,"name":"Sanctified Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":219,"6":108,"7":92,"22":1405},"isBase":true}}}, +{"id":51142,"name":"Sanctified Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,162,219,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":219,"6":108,"8":92,"22":1229},"isBase":true}}}, +{"id":51143,"name":"Sanctified Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,162,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":207,"6":100,"7":92,"22":1141},"isBase":true}}}, +{"id":51144,"name":"Sanctified Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":169,"6":80,"7":72,"22":878},"isBase":true}}}, +{"id":51145,"name":"Sanctified Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":108,"7":92,"22":1405},"isBase":true}}}, +{"id":51146,"name":"Sanctified Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":92,"6":108,"22":1229},"isBase":true}}}, +{"id":51147,"name":"Sanctified Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":80,"7":72,"22":1054},"isBase":true}}}, +{"id":51148,"name":"Sanctified Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,172,112,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"5":72,"6":80,"22":878},"isBase":true}}}, +{"id":51149,"name":"Sanctified Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":100,"7":92,"22":1141},"isBase":true}}}, +{"id":51150,"name":"Sanctified Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":192,"6":138,"7":77,"22":1941},"isBase":true}}}, +{"id":51151,"name":"Sanctified Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,120,143,0,0,0,112,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":143,"6":112,"7":55,"22":1456},"isBase":true}}}, +{"id":51152,"name":"Sanctified Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":192,"6":138,"7":77,"22":1698},"isBase":true}}}, +{"id":51153,"name":"Sanctified Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,154,192,0,0,0,130,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":154,"2":192,"6":130,"7":77,"22":1577},"isBase":true}}}, +{"id":51154,"name":"Sanctified Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,112,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":181,"5":72,"6":80,"22":1213},"isBase":true}}}, +{"id":51155,"name":"Sanctified Bloodmage Shoulderpads","icon":"inv_shoulder_116","type":3,"armorType":1,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"6":80,"7":72,"22":833},"isBase":true}}}, +{"id":51156,"name":"Sanctified Bloodmage Robe","icon":"inv_chest_cloth_78","type":5,"armorType":1,"stats":[0,0,231,146,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":92,"7":108,"22":1111},"isBase":true}}}, +{"id":51157,"name":"Sanctified Bloodmage Leggings","icon":"inv_pants_cloth_34","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":92,"6":108,"22":972},"isBase":true}}}, +{"id":51158,"name":"Sanctified Bloodmage Hood","icon":"inv_helmet_150red","type":1,"armorType":1,"stats":[0,0,231,138,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":108,"7":84,"22":903},"isBase":true}}}, +{"id":51159,"name":"Sanctified Bloodmage Gloves","icon":"inv_gauntlets_90","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"5":72,"6":80,"22":695},"isBase":true}}}, +{"id":51160,"name":"Sanctified Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[112,0,181,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"6":80,"7":72,"22":1978},"isBase":true}}}, +{"id":51161,"name":"Sanctified Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[146,0,243,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":243,"6":108,"8":92,"22":2308},"isBase":true}}}, +{"id":51162,"name":"Sanctified Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":100,"7":92,"22":2143},"isBase":true}}}, +{"id":51163,"name":"Sanctified Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[112,0,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"5":72,"6":80,"22":1649},"isBase":true}}}, +{"id":51164,"name":"Sanctified Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":243,"6":108,"7":92,"22":2638},"isBase":true}}}, +{"id":51165,"name":"Sanctified Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":108,"7":92,"22":2638},"isBase":true}}}, +{"id":51166,"name":"Sanctified Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"6":80,"7":72,"22":1978},"isBase":true}}}, +{"id":51167,"name":"Sanctified Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":100,"7":92,"22":2143},"isBase":true}}}, +{"id":51168,"name":"Sanctified Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":92,"6":108,"22":2308},"isBase":true}}}, +{"id":51169,"name":"Sanctified Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,173,113,72,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"4":72,"6":80,"22":1649},"isBase":true}}}, +{"id":51170,"name":"Sanctified Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":169,"9":87,"10":63,"22":1978},"isBase":true}}}, +{"id":51171,"name":"Sanctified Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":219,"8":82,"9":146,"22":2308},"isBase":true}}}, +{"id":51172,"name":"Sanctified Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1649,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":169,"5":61,"9":60,"22":1649,"23":288},"isBase":true}}}, +{"id":51173,"name":"Sanctified Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[162,0,211,0,0,0,0,0,0,112,77,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":211,"9":112,"10":77,"22":2143},"isBase":true}}}, +{"id":51174,"name":"Sanctified Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,48,85,0,0,0,0,0,0,0,0,0,0,0,2638,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":219,"9":48,"10":85,"22":2638,"23":340},"isBase":true}}}, +{"id":51175,"name":"Sanctified Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,172,112,80,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":80,"6":72,"22":833},"isBase":true}}}, +{"id":51176,"name":"Sanctified Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,146,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":100,"6":100,"22":1111},"isBase":true}}}, +{"id":51177,"name":"Sanctified Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,231,146,108,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":108,"7":92,"22":972},"isBase":true}}}, +{"id":51178,"name":"Sanctified Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":92,"6":100,"22":903},"isBase":true}}}, +{"id":51179,"name":"Sanctified Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,172,112,80,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":80,"7":72,"22":695},"isBase":true}}}, +{"id":51180,"name":"Sanctified Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,146,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":100,"7":100,"22":1111},"isBase":true}}}, +{"id":51181,"name":"Sanctified Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":92,"6":108,"22":972},"isBase":true}}}, +{"id":51182,"name":"Sanctified Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":80,"7":72,"22":833},"isBase":true}}}, +{"id":51183,"name":"Sanctified Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"5":72,"6":80,"22":695},"isBase":true}}}, +{"id":51184,"name":"Sanctified Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,137,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":137,"6":108,"7":84,"22":903},"isBase":true}}}, +{"id":51185,"name":"Sanctified Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,120,169,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":169,"5":72,"6":80,"22":1054},"isBase":true}}}, +{"id":51186,"name":"Sanctified Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,219,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":219,"6":108,"8":92,"22":1229},"isBase":true}}}, +{"id":51187,"name":"Sanctified Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,162,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":207,"6":100,"7":92,"22":1141},"isBase":true}}}, +{"id":51188,"name":"Sanctified Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,120,169,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":169,"6":80,"7":72,"22":878},"isBase":true}}}, +{"id":51189,"name":"Sanctified Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,162,219,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":219,"6":108,"7":92,"22":1405},"isBase":true}}}, +{"id":51190,"name":"Sanctified Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":108,"7":92,"22":1941},"isBase":true}}}, +{"id":51191,"name":"Sanctified Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,113,72,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"4":72,"6":80,"22":1213},"isBase":true}}}, +{"id":51192,"name":"Sanctified Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,137,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":137,"6":100,"7":92,"22":1577},"isBase":true}}}, +{"id":51193,"name":"Sanctified Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":92,"6":108,"22":1698},"isBase":true}}}, +{"id":51194,"name":"Sanctified Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":80,"7":72,"22":1456},"isBase":true}}}, +{"id":51195,"name":"Sanctified Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,162,192,0,0,0,138,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":192,"6":138,"7":77,"22":1941},"isBase":true}}}, +{"id":51196,"name":"Sanctified Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,112,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":181,"5":72,"6":80,"22":1213},"isBase":true}}}, +{"id":51197,"name":"Sanctified Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,154,192,0,0,0,138,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":154,"2":192,"6":138,"7":69,"22":1577},"isBase":true}}}, +{"id":51198,"name":"Sanctified Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,146,243,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":243,"5":92,"6":108,"22":1698},"isBase":true}}}, +{"id":51199,"name":"Sanctified Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,120,143,0,0,0,112,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":143,"6":112,"7":55,"22":1456},"isBase":true}}}, +{"id":51200,"name":"Sanctified Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":108,"7":92,"22":1941},"isBase":true}}}, +{"id":51201,"name":"Sanctified Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"5":72,"6":80,"22":1213},"isBase":true}}}, +{"id":51202,"name":"Sanctified Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,231,137,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":137,"6":100,"7":92,"22":1577},"isBase":true}}}, +{"id":51203,"name":"Sanctified Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":92,"6":108,"22":1698},"isBase":true}}}, +{"id":51204,"name":"Sanctified Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,112,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":80,"7":72,"22":1456},"isBase":true}}}, +{"id":51205,"name":"Sanctified Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,173,113,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"6":80,"7":72,"22":833},"isBase":true}}}, +{"id":51206,"name":"Sanctified Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,231,146,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"6":108,"7":92,"22":1111},"isBase":true}}}, +{"id":51207,"name":"Sanctified Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,231,146,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"5":92,"6":108,"22":972},"isBase":true}}}, +{"id":51208,"name":"Sanctified Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,231,138,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":100,"7":92,"22":903},"isBase":true}}}, +{"id":51209,"name":"Sanctified Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,173,113,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":113,"5":72,"6":80,"22":695},"isBase":true}}}, +{"id":51210,"name":"Sanctified Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[112,0,181,0,0,0,80,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"6":80,"7":72,"22":1978},"isBase":true}}}, +{"id":51211,"name":"Sanctified Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[146,0,242,0,0,0,108,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":242,"6":108,"8":92,"22":2308},"isBase":true}}}, +{"id":51212,"name":"Sanctified Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[138,0,243,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":100,"7":92,"22":2143},"isBase":true}}}, +{"id":51213,"name":"Sanctified Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[112,0,181,0,0,72,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"5":72,"6":80,"22":1649},"isBase":true}}}, +{"id":51214,"name":"Sanctified Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[146,0,243,0,0,0,108,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":146,"2":243,"6":108,"7":92,"22":2638},"isBase":true}}}, +{"id":51215,"name":"Sanctified Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[120,0,169,0,0,0,0,0,0,87,63,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":169,"9":87,"10":63,"22":1978},"isBase":true}}}, +{"id":51216,"name":"Sanctified Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[123,0,219,0,0,0,0,0,82,146,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":219,"8":82,"9":146,"22":2308},"isBase":true}}}, +{"id":51217,"name":"Sanctified Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[92,0,169,0,0,61,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,1649,288,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":169,"5":61,"9":60,"22":1649,"23":288},"isBase":true}}}, +{"id":51218,"name":"Sanctified Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,104,77,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":207,"9":104,"10":77,"22":2143},"isBase":true}}}, +{"id":51219,"name":"Sanctified Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[162,0,219,0,0,0,0,0,0,56,77,0,0,0,0,0,0,0,0,0,0,0,2638,340,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":219,"9":56,"10":77,"22":2638,"23":340},"isBase":true}}}, +{"id":51220,"name":"Sanctified Ymirjar Lord's Breastplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,64,88,0,0,0,0,0,0,0,0,0,0,0,2764,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":251,"9":64,"10":88,"22":2764,"23":384},"isBase":true}}}, +{"id":51221,"name":"Sanctified Ymirjar Lord's Greathelm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":239,"9":128,"10":88,"22":2246},"isBase":true}}}, +{"id":51222,"name":"Sanctified Ymirjar Lord's Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1728,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":103,"2":192,"5":69,"9":68,"22":1728,"23":328},"isBase":true}}}, +{"id":51223,"name":"Sanctified Ymirjar Lord's Legguards","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":251,"8":93,"9":167,"22":2419},"isBase":true}}}, +{"id":51224,"name":"Sanctified Ymirjar Lord's Pauldrons","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Plate","setId":896,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":192,"9":99,"10":71,"22":2073},"isBase":true}}}, +{"id":51225,"name":"Sanctified Ymirjar Lord's Battleplate","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":275,"6":122,"7":106,"22":2764},"isBase":true}}}, +{"id":51226,"name":"Sanctified Ymirjar Lord's Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[128,0,203,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"5":82,"6":90,"22":1728},"isBase":true}}}, +{"id":51227,"name":"Sanctified Ymirjar Lord's Helmet","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":275,"6":114,"7":106,"22":2246},"isBase":true}}}, +{"id":51228,"name":"Sanctified Ymirjar Lord's Legplates","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[167,0,274,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":274,"6":122,"8":106,"22":2419},"isBase":true}}}, +{"id":51229,"name":"Sanctified Ymirjar Lord's Shoulderplates","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[9],"setName":"Ymirjar Lord's Battlegear","setId":895,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"6":90,"7":82,"22":2073},"isBase":true}}}, +{"id":51230,"name":"Sanctified Dark Coven Gloves","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"5":82,"6":90,"22":751},"isBase":true}}}, +{"id":51231,"name":"Sanctified Dark Coven Hood","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"6":114,"7":106,"22":976},"isBase":true}}}, +{"id":51232,"name":"Sanctified Dark Coven Leggings","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"5":106,"6":122,"22":1051},"isBase":true}}}, +{"id":51233,"name":"Sanctified Dark Coven Robe","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":122,"7":106,"22":1202},"isBase":true}}}, +{"id":51234,"name":"Sanctified Dark Coven Shoulderpads","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[8],"setName":"Dark Coven's Regalia","setId":884,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":901},"isBase":true}}}, +{"id":51235,"name":"Sanctified Frost Witch's Shoulderpads","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":1538},"isBase":true}}}, +{"id":51236,"name":"Sanctified Frost Witch's Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1794,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"5":106,"6":122,"22":1794},"isBase":true}}}, +{"id":51237,"name":"Sanctified Frost Witch's Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,158,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"6":114,"7":106,"22":1666},"isBase":true}}}, +{"id":51238,"name":"Sanctified Frost Witch's Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"5":82,"6":90,"22":1282},"isBase":true}}}, +{"id":51239,"name":"Sanctified Frost Witch's Hauberk","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Regalia","setId":893,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":122,"7":106,"22":2051},"isBase":true}}}, +{"id":51240,"name":"Sanctified Frost Witch's Shoulderguards","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,136,161,0,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":161,"6":128,"7":63,"22":1538},"isBase":true}}}, +{"id":51241,"name":"Sanctified Frost Witch's War-Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,167,275,0,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1794,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":167,"2":275,"5":106,"6":122,"22":1794},"isBase":true}}}, +{"id":51242,"name":"Sanctified Frost Witch's Faceguard","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,175,216,0,0,0,159,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":175,"2":216,"6":159,"7":80,"22":1666},"isBase":true}}}, +{"id":51243,"name":"Sanctified Frost Witch's Grips","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,128,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":204,"5":82,"6":90,"22":1282},"isBase":true}}}, +{"id":51244,"name":"Sanctified Frost Witch's Chestguard","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Battlegear","setId":894,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":216,"6":159,"7":88,"22":2051},"isBase":true}}}, +{"id":51245,"name":"Sanctified Frost Witch's Spaulders","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":1538},"isBase":true}}}, +{"id":51246,"name":"Sanctified Frost Witch's Legguards","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,261,167,106,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1794,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":106,"6":122,"22":1794},"isBase":true}}}, +{"id":51247,"name":"Sanctified Frost Witch's Headpiece","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,261,158,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"6":114,"7":106,"22":1666},"isBase":true}}}, +{"id":51248,"name":"Sanctified Frost Witch's Handguards","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,193,128,82,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":82,"6":90,"22":1282},"isBase":true}}}, +{"id":51249,"name":"Sanctified Frost Witch's Tunic","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[7],"setName":"Frost Witch's Garb","setId":892,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":122,"7":106,"22":2051},"isBase":true}}}, +{"id":51250,"name":"Sanctified Shadowblade Breastplate","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,183,251,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":251,"6":122,"7":106,"22":1502},"isBase":true}}}, +{"id":51251,"name":"Sanctified Shadowblade Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":192,"6":90,"7":82,"22":939},"isBase":true}}}, +{"id":51252,"name":"Sanctified Shadowblade Helmet","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,183,239,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":239,"6":114,"7":106,"22":1220},"isBase":true}}}, +{"id":51253,"name":"Sanctified Shadowblade Legplates","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,183,251,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":251,"6":122,"8":106,"22":1314},"isBase":true}}}, +{"id":51254,"name":"Sanctified Shadowblade Pauldrons","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,136,192,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[6],"setName":"Shadowblade's Battlegear","setId":890,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":192,"5":82,"6":90,"22":1127},"isBase":true}}}, +{"id":51255,"name":"Sanctified Crimson Acolyte Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,158,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":158,"6":122,"7":98,"22":976},"isBase":true}}}, +{"id":51256,"name":"Sanctified Crimson Acolyte Handwraps","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"5":82,"6":90,"22":751},"isBase":true}}}, +{"id":51257,"name":"Sanctified Crimson Acolyte Mantle","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":901},"isBase":true}}}, +{"id":51258,"name":"Sanctified Crimson Acolyte Pants","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"5":106,"6":122,"22":1051},"isBase":true}}}, +{"id":51259,"name":"Sanctified Crimson Acolyte Raiments","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,167,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Regalia","setId":886,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":114,"7":114,"22":1202},"isBase":true}}}, +{"id":51260,"name":"Sanctified Crimson Acolyte Gloves","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,193,128,90,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":90,"7":82,"22":751},"isBase":true}}}, +{"id":51261,"name":"Sanctified Crimson Acolyte Hood","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,261,159,106,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":106,"6":114,"22":976},"isBase":true}}}, +{"id":51262,"name":"Sanctified Crimson Acolyte Leggings","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,261,167,122,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":122,"7":106,"22":1051},"isBase":true}}}, +{"id":51263,"name":"Sanctified Crimson Acolyte Robe","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,261,167,114,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":114,"6":114,"22":1202},"isBase":true}}}, +{"id":51264,"name":"Sanctified Crimson Acolyte Shoulderpads","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,193,128,90,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[5],"setName":"Crimson Acolyte's Raiment","setId":885,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":90,"6":82,"22":901},"isBase":true}}}, +{"id":51265,"name":"Sanctified Lightsworn Chestguard","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,56,96,0,0,0,0,0,0,0,0,0,0,0,2764,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":251,"9":56,"10":96,"22":2764,"23":384},"isBase":true}}}, +{"id":51266,"name":"Sanctified Lightsworn Faceguard","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":239,"9":128,"10":88,"22":2246},"isBase":true}}}, +{"id":51267,"name":"Sanctified Lightsworn Handguards","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1728,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":103,"2":192,"5":69,"9":68,"22":1728,"23":328},"isBase":true}}}, +{"id":51268,"name":"Sanctified Lightsworn Legguards","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":251,"8":93,"9":167,"22":2419},"isBase":true}}}, +{"id":51269,"name":"Sanctified Lightsworn Shoulderguards","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Plate","setId":901,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":192,"9":99,"10":71,"22":2073},"isBase":true}}}, +{"id":51270,"name":"Sanctified Lightsworn Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,193,128,82,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":82,"6":90,"22":1728},"isBase":true}}}, +{"id":51271,"name":"Sanctified Lightsworn Greaves","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,261,167,106,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":106,"6":122,"22":2419},"isBase":true}}}, +{"id":51272,"name":"Sanctified Lightsworn Headpiece","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"6":114,"7":106,"22":2246},"isBase":true}}}, +{"id":51273,"name":"Sanctified Lightsworn Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":2073},"isBase":true}}}, +{"id":51274,"name":"Sanctified Lightsworn Tunic","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Garb","setId":899,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":122,"7":106,"22":2764},"isBase":true}}}, +{"id":51275,"name":"Sanctified Lightsworn Battleplate","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":275,"6":122,"7":106,"22":2764},"isBase":true}}}, +{"id":51276,"name":"Sanctified Lightsworn Gauntlets","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[128,0,203,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"5":82,"6":90,"22":1728},"isBase":true}}}, +{"id":51277,"name":"Sanctified Lightsworn Helmet","icon":"inv_helmet_154","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":275,"6":114,"7":106,"22":2246},"isBase":true}}}, +{"id":51278,"name":"Sanctified Lightsworn Legplates","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[167,0,275,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":275,"6":122,"8":106,"22":2419},"isBase":true}}}, +{"id":51279,"name":"Sanctified Lightsworn Shoulderplates","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[4],"setName":"Lightsworn Battlegear","setId":900,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"6":90,"7":82,"22":2073},"isBase":true}}}, +{"id":51280,"name":"Sanctified Bloodmage Gloves","icon":"inv_gauntlets_90black","type":7,"armorType":1,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"5":82,"6":90,"22":751},"isBase":true}}}, +{"id":51281,"name":"Sanctified Bloodmage Hood","icon":"inv_helmet_150black","type":1,"armorType":1,"stats":[0,0,261,159,0,0,122,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"6":122,"7":98,"22":976},"isBase":true}}}, +{"id":51282,"name":"Sanctified Bloodmage Leggings","icon":"inv_pants_cloth_34black","type":9,"armorType":1,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"5":106,"6":122,"22":1051},"isBase":true}}}, +{"id":51283,"name":"Sanctified Bloodmage Robe","icon":"inv_chest_cloth_78black","type":5,"armorType":1,"stats":[0,0,261,167,0,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":106,"7":122,"22":1202},"isBase":true}}}, +{"id":51284,"name":"Sanctified Bloodmage Shoulderpads","icon":"inv_shoulder_116black","type":3,"armorType":1,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[3],"setName":"Bloodmage's Regalia","setId":883,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":901},"isBase":true}}}, +{"id":51285,"name":"Sanctified Ahn'Kahar Blood Hunter's Handguards","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,128,204,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1282,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":128,"2":204,"5":82,"6":90,"22":1282},"isBase":true}}}, +{"id":51286,"name":"Sanctified Ahn'Kahar Blood Hunter's Headpiece","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,175,216,0,0,0,151,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1666,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":175,"2":216,"6":151,"7":88,"22":1666},"isBase":true}}}, +{"id":51287,"name":"Sanctified Ahn'Kahar Blood Hunter's Legguards","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1794,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":216,"6":159,"7":88,"22":1794},"isBase":true}}}, +{"id":51288,"name":"Sanctified Ahn'Kahar Blood Hunter's Spaulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,136,161,0,0,0,128,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":161,"6":128,"7":63,"22":1538},"isBase":true}}}, +{"id":51289,"name":"Sanctified Ahn'Kahar Blood Hunter's Tunic","icon":"inv_chest_mail_11","type":5,"armorType":3,"stats":[0,183,216,0,0,0,159,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[2],"setName":"Ahn'Kahar Blood Hunter's Battlegear","setId":891,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":216,"6":159,"7":88,"22":2051},"isBase":true}}}, +{"id":51290,"name":"Sanctified Lasherweave Cover","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"6":114,"7":106,"22":1220},"isBase":true}}}, +{"id":51291,"name":"Sanctified Lasherweave Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,128,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"5":82,"6":90,"22":939},"isBase":true}}}, +{"id":51292,"name":"Sanctified Lasherweave Mantle","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,128,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"6":90,"7":82,"22":1127},"isBase":true}}}, +{"id":51293,"name":"Sanctified Lasherweave Trousers","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,167,0,106,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"5":106,"6":122,"22":1314},"isBase":true}}}, +{"id":51294,"name":"Sanctified Lasherweave Vestment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,167,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Regalia","setId":888,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"6":122,"7":106,"22":1502},"isBase":true}}}, +{"id":51295,"name":"Sanctified Lasherweave Handgrips","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":192,"6":90,"7":82,"22":939},"isBase":true}}}, +{"id":51296,"name":"Sanctified Lasherweave Headguard","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,183,239,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":239,"6":114,"7":106,"22":1220},"isBase":true}}}, +{"id":51297,"name":"Sanctified Lasherweave Legguards","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,183,251,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":251,"6":122,"8":106,"22":1314},"isBase":true}}}, +{"id":51298,"name":"Sanctified Lasherweave Raiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,183,251,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"1":183,"2":251,"6":122,"7":106,"22":1502},"isBase":true}}}, +{"id":51299,"name":"Sanctified Lasherweave Shoulderpads","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,136,192,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Battlegear","setId":889,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"1":136,"2":192,"6":90,"7":82,"22":1127},"isBase":true}}}, +{"id":51300,"name":"Sanctified Lasherweave Robes","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,261,167,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1502,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":122,"6":106,"22":1502},"isBase":true}}}, +{"id":51301,"name":"Sanctified Lasherweave Gauntlets","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,193,128,90,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":90,"7":82,"22":939},"isBase":true}}}, +{"id":51302,"name":"Sanctified Lasherweave Helmet","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,261,159,114,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":159,"4":114,"6":106,"22":1220},"isBase":true}}}, +{"id":51303,"name":"Sanctified Lasherweave Legplates","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,261,167,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"2":261,"3":167,"4":122,"7":104,"22":1314},"isBase":true}}}, +{"id":51304,"name":"Sanctified Lasherweave Pauldrons","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,193,128,90,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[1],"setName":"Lasherweave Garb","setId":887,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"2":193,"3":128,"4":90,"6":82,"22":1127},"isBase":true}}}, +{"id":51305,"name":"Sanctified Scourgelord Chestguard","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[183,0,251,0,0,0,0,0,0,56,96,0,0,0,0,0,0,0,0,0,0,0,2764,384,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":251,"9":56,"10":96,"22":2764,"23":384},"isBase":true}}}, +{"id":51306,"name":"Sanctified Scourgelord Faceguard","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[183,0,239,0,0,0,0,0,0,128,88,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":183,"2":239,"9":128,"10":88,"22":2246},"isBase":true}}}, +{"id":51307,"name":"Sanctified Scourgelord Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[103,0,192,0,0,69,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1728,328,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":103,"2":192,"5":69,"9":68,"22":1728,"23":328},"isBase":true}}}, +{"id":51308,"name":"Sanctified Scourgelord Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[139,0,251,0,0,0,0,0,93,167,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":139,"2":251,"8":93,"9":167,"22":2419},"isBase":true}}}, +{"id":51309,"name":"Sanctified Scourgelord Pauldrons","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[136,0,192,0,0,0,0,0,0,99,71,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Plate","setId":898,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":136,"2":192,"9":99,"10":71,"22":2073},"isBase":true}}}, +{"id":51310,"name":"Sanctified Scourgelord Battleplate","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[167,0,275,0,0,0,122,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2764,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":275,"6":122,"7":106,"22":2764},"isBase":true}}}, +{"id":51311,"name":"Sanctified Scourgelord Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[128,0,203,0,0,82,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1728,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"5":82,"6":90,"22":1728},"isBase":true}}}, +{"id":51312,"name":"Sanctified Scourgelord Helmet","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[159,0,275,0,0,0,114,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2246,0,0,0,0],"gemSockets":[1,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":159,"2":275,"6":114,"7":106,"22":2246},"isBase":true}}}, +{"id":51313,"name":"Sanctified Scourgelord Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[167,0,275,0,0,0,122,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,0,0,0,0],"gemSockets":[4,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"277":{"randPropPoints":348,"stats":{"0":167,"2":275,"6":122,"8":106,"22":2419},"isBase":true}}}, +{"id":51314,"name":"Sanctified Scourgelord Shoulderplates","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[128,0,203,0,0,0,90,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":277,"quality":4,"heroic":true,"classAllowlist":[10],"setName":"Scourgelord's Battlegear","setId":897,"scalingOptions":{"277":{"randPropPoints":258,"stats":{"0":128,"2":203,"6":90,"7":82,"22":2073},"isBase":true}}}, +{"id":51325,"name":"Blood-Drinker's Girdle","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,91,118,0,0,0,107,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":118,"6":107,"7":44,"22":1042},"isBase":true}}}, +{"id":51326,"name":"Wand of Ruby Claret","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,91,62,0,45,0,34,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":252,"weaponDamageMax":469,"weaponSpeed":1.9,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":252,"weaponDamageMax":469,"stats":{"2":91,"3":62,"5":45,"7":34,"14":822},"isBase":true}}}, +{"id":51327,"name":"Wrathful Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":625},"isBase":true}}}, +{"id":51328,"name":"Wrathful Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":764},"isBase":true}}}, +{"id":51329,"name":"Wrathful Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60,"22":486},"isBase":true}}}, +{"id":51330,"name":"Wrathful Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60,"22":556},"isBase":true}}}, +{"id":51331,"name":"Wrathful Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60},"isBase":true}}}, +{"id":51332,"name":"Wrathful Gladiator's Cloak of Subjugation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,129,90,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"7":60,"16":60,"22":556},"isBase":true}}}, +{"id":51333,"name":"Wrathful Gladiator's Pendant of Subjugation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"7":60,"16":60},"isBase":true}}}, +{"id":51334,"name":"Wrathful Gladiator's Cloak of Ascendancy","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,129,90,0,60,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"5":60,"16":60,"22":556},"isBase":true}}}, +{"id":51335,"name":"Wrathful Gladiator's Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,0,60,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"5":60,"16":60},"isBase":true}}}, +{"id":51336,"name":"Wrathful Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60},"isBase":true}}}, +{"id":51337,"name":"Wrathful Gladiator's Cord of Alacrity","icon":"inv_belt_78","type":8,"armorType":1,"stats":[0,0,172,112,0,0,0,72,0,0,0,0,0,0,0,0,80,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"7":72,"16":80,"22":625},"isBase":true}}}, +{"id":51338,"name":"Wrathful Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_32","type":10,"armorType":1,"stats":[0,0,172,112,0,0,0,72,0,0,0,0,0,0,0,0,80,0,0,0,0,0,764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"7":72,"16":80,"22":764},"isBase":true}}}, +{"id":51339,"name":"Wrathful Gladiator's Cuffs of Alacrity","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,129,90,0,0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"7":60,"16":60,"22":486},"isBase":true}}}, +{"id":51340,"name":"Wrathful Gladiator's Belt of Salvation","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":790},"isBase":true}}}, +{"id":51341,"name":"Wrathful Gladiator's Boots of Salvation","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":966},"isBase":true}}}, +{"id":51342,"name":"Wrathful Gladiator's Armwraps of Salvation","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":615},"isBase":true}}}, +{"id":51343,"name":"Wrathful Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":790},"isBase":true}}}, +{"id":51344,"name":"Wrathful Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":966},"isBase":true}}}, +{"id":51345,"name":"Wrathful Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60,"22":615},"isBase":true}}}, +{"id":51346,"name":"Wrathful Gladiator's Cloak of Salvation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":556},"isBase":true}}}, +{"id":51347,"name":"Wrathful Gladiator's Pendant of Salvation","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60},"isBase":true}}}, +{"id":51348,"name":"Wrathful Gladiator's Cloak of Deliverance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":556},"isBase":true}}}, +{"id":51349,"name":"Wrathful Gladiator's Pendant of Deliverance","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60},"isBase":true}}}, +{"id":51350,"name":"Wrathful Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,112,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":181,"6":72,"16":80,"22":1092},"isBase":true}}}, +{"id":51351,"name":"Wrathful Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,112,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":181,"6":72,"16":80,"22":1334},"isBase":true}}}, +{"id":51352,"name":"Wrathful Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,90,136,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":136,"6":60,"16":60,"22":849},"isBase":true}}}, +{"id":51353,"name":"Wrathful Gladiator's Pendant of Sundering","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"6":60,"12":181,"13":181,"16":60},"isBase":true}}}, +{"id":51354,"name":"Wrathful Gladiator's Cloak of Triumph","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"6":60,"12":181,"13":181,"16":60,"22":556},"isBase":true}}}, +{"id":51355,"name":"Wrathful Gladiator's Pendant of Triumph","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"6":60,"12":181,"13":181,"16":60},"isBase":true}}}, +{"id":51356,"name":"Wrathful Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,136,0,0,60,0,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"5":60,"12":181,"13":181,"16":60,"22":556},"isBase":true}}}, +{"id":51357,"name":"Wrathful Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,136,0,0,60,0,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"5":60,"12":181,"13":181,"16":60},"isBase":true}}}, +{"id":51358,"name":"Wrathful Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,136,0,0,0,60,0,0,0,0,0,181,181,0,0,60,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":136,"6":60,"12":181,"13":181,"16":60},"isBase":true}}}, +{"id":51359,"name":"Wrathful Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":1484},"isBase":true}}}, +{"id":51360,"name":"Wrathful Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":1814},"isBase":true}}}, +{"id":51361,"name":"Wrathful Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[4,9],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":1154},"isBase":true}}}, +{"id":51362,"name":"Wrathful Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[112,0,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"6":72,"16":80,"22":1484},"isBase":true}}}, +{"id":51363,"name":"Wrathful Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[112,0,181,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":112,"2":181,"6":72,"16":80,"22":1814},"isBase":true}}}, +{"id":51364,"name":"Wrathful Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[90,0,136,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[4,9,10],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":90,"2":136,"6":60,"16":60,"22":1154},"isBase":true}}}, +{"id":51365,"name":"Wrathful Gladiator's Cord of Salvation","icon":"inv_belt_78","type":8,"armorType":1,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":625},"isBase":true}}}, +{"id":51366,"name":"Wrathful Gladiator's Treads of Salvation","icon":"inv_boots_cloth_26","type":10,"armorType":1,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,764,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":764},"isBase":true}}}, +{"id":51367,"name":"Wrathful Gladiator's Cuffs of Salvation","icon":"inv_bracer_33","type":6,"armorType":1,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,486,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[3,5,8],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":486},"isBase":true}}}, +{"id":51368,"name":"Wrathful Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,112,172,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":172,"6":72,"16":80,"22":790},"isBase":true}}}, +{"id":51369,"name":"Wrathful Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,112,172,0,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,966,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":112,"2":172,"6":72,"16":80,"22":966},"isBase":true}}}, +{"id":51370,"name":"Wrathful Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,90,129,0,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[1,6,11],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":129,"6":60,"16":60,"22":615},"isBase":true}}}, +{"id":51371,"name":"Wrathful Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":1092},"isBase":true}}}, +{"id":51372,"name":"Wrathful Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,172,112,72,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"4":72,"16":80,"22":1334},"isBase":true}}}, +{"id":51373,"name":"Wrathful Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,129,90,60,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"4":60,"16":60,"22":849},"isBase":true}}}, +{"id":51374,"name":"Wrathful Gladiator's Waistguard of Dominance","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":1092},"isBase":true}}}, +{"id":51375,"name":"Wrathful Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,172,112,0,0,72,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":112,"6":72,"16":80,"22":1334},"isBase":true}}}, +{"id":51376,"name":"Wrathful Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,129,90,0,0,60,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,849,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"classAllowlist":[2,7],"expansion":3,"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":90,"6":60,"16":60,"22":849},"isBase":true}}}, +{"id":51377,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"16":153},"isBase":true}}}, +{"id":51378,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"264":{"randPropPoints":229,"stats":{"16":153},"isBase":true}}}, +{"id":51379,"name":"Bloodsoul Raiment","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,205,120,78,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":78,"7":90,"22":1034},"isBase":true}}}, +{"id":51380,"name":"Pale Corpse Boots","icon":"inv_boots_cloth_27","type":10,"armorType":1,"stats":[0,0,152,91,55,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":55,"6":71,"22":711},"isBase":true}}}, +{"id":51381,"name":"Cerise Coiled Ring","icon":"item_icecrownringc","type":11,"stats":[0,0,113,72,0,0,59,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":113,"3":72,"6":59,"7":35},"isBase":true}}}, +{"id":51382,"name":"Heartsick Mender's Cape","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,114,72,53,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":53,"7":45,"22":517},"isBase":true}}}, +{"id":51383,"name":"Spaulders of the Blood Princes","icon":"inv_shoulder_129","type":3,"armorType":4,"stats":[74,0,136,0,0,66,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":74,"2":136,"5":66,"10":88,"22":1905},"isBase":true}}}, +{"id":51384,"name":"Bloodsipper","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,62,88,0,0,0,42,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"weaponSpeed":1.8,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"stats":{"1":62,"2":88,"6":42,"7":39},"isBase":true}}}, +{"id":51385,"name":"Stakethrower","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,144,270,0,0,0,100,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1035,"weaponDamageMax":1924,"weaponSpeed":3,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1035,"weaponDamageMax":1924,"stats":{"1":144,"2":270,"6":100,"7":89},"isBase":true}}}, +{"id":51386,"name":"Throatrender Handguards","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[91,0,160,0,0,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"5":71,"7":55,"22":1587},"isBase":true}}}, +{"id":51387,"name":"Seal of the Twilight Queen","icon":"inv_jewelry_ring_70","type":11,"stats":[0,72,117,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":117,"6":45,"7":53},"isBase":true}}}, +{"id":51388,"name":"Wrathful Gladiator's Decapitator","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"weaponSpeed":3.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"stats":{"2":243,"6":92,"12":324,"13":324,"16":92},"isBase":true}}}, +{"id":51389,"name":"Wrathful Gladiator's Sunderer","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"weaponSpeed":3.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"stats":{"2":275,"6":106,"12":334,"13":334,"16":122},"isBase":true}}}, +{"id":51390,"name":"Wrathful Gladiator's Bonegrinder","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"weaponSpeed":3.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"stats":{"2":243,"6":92,"12":324,"13":324,"16":92},"isBase":true}}}, +{"id":51391,"name":"Wrathful Gladiator's Crusher","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"weaponSpeed":3.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"stats":{"2":275,"6":106,"12":334,"13":334,"16":122},"isBase":true}}}, +{"id":51392,"name":"Wrathful Gladiator's Greatsword","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"weaponSpeed":3.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"stats":{"2":243,"6":92,"12":324,"13":324,"16":92},"isBase":true}}}, +{"id":51393,"name":"Wrathful Gladiator's Claymore","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"weaponSpeed":3.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"stats":{"2":275,"6":106,"12":334,"13":334,"16":122},"isBase":true}}}, +{"id":51394,"name":"Wrathful Gladiator's Longbow","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,162,243,0,0,0,108,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"weaponSpeed":3,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"stats":{"1":162,"2":243,"6":108,"16":108},"isBase":true}}}, +{"id":51395,"name":"Wrathful Gladiator's Recurve","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,183,275,0,0,0,122,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"weaponSpeed":3,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"stats":{"1":183,"2":275,"6":122,"16":122},"isBase":true}}}, +{"id":51396,"name":"Wrathful Gladiator's Endgame","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,143,95,0,0,63,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":143,"3":95,"6":63,"16":63},"isBase":true}}}, +{"id":51397,"name":"Wrathful Gladiator's Spellblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":2,"stats":[0,0,132,0,0,0,51,0,0,0,0,0,0,0,928,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"weaponSpeed":1.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"stats":{"2":132,"6":51,"14":928,"16":51},"isBase":true}}}, +{"id":51398,"name":"Wrathful Gladiator's Blade of Celerity","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":2,"stats":[0,0,149,0,0,0,0,58,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"2":149,"7":58,"14":1047,"16":58},"isBase":true}}}, +{"id":51399,"name":"Wrathful Gladiator's Mageblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":2,"stats":[0,0,149,0,0,0,58,0,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"2":149,"6":58,"14":1047,"16":58},"isBase":true}}}, +{"id":51400,"name":"Wrathful Gladiator's War Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,0,0,121,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"stats":{"2":293,"7":121,"14":928,"16":121},"isBase":true}}}, +{"id":51401,"name":"Wrathful Gladiator's Combat Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,0,0,139,0,0,0,0,0,0,1048,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"weaponSpeed":2,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"stats":{"2":332,"7":139,"14":1048,"16":139},"isBase":true}}}, +{"id":51402,"name":"Wrathful Gladiator's Focus Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,121,0,0,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"stats":{"2":293,"5":121,"14":928,"16":121},"isBase":true}}}, +{"id":51403,"name":"Wrathful Gladiator's Acute Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,139,0,0,0,0,0,0,0,0,1048,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"weaponSpeed":2,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"stats":{"2":332,"5":139,"14":1048,"16":139},"isBase":true}}}, +{"id":51404,"name":"Wrathful Gladiator's Battle Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,0,0,121,0,0,0,0,0,0,0,928,0,121,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"stats":{"2":293,"6":121,"14":928,"16":121},"isBase":true}}}, +{"id":51405,"name":"Wrathful Gladiator's Skirmish Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,0,0,139,0,0,0,0,0,0,0,1048,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"weaponSpeed":2,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"stats":{"2":332,"6":139,"14":1048,"16":139},"isBase":true}}}, +{"id":51406,"name":"Wrathful Gladiator's Blade of Alacrity","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":2,"stats":[0,0,132,0,0,0,0,51,0,0,0,0,0,0,928,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"weaponSpeed":1.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"stats":{"2":132,"7":51,"14":928,"16":51},"isBase":true}}}, +{"id":51407,"name":"Wrathful Gladiator's Compendium","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,0,0,0,63,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":136,"3":95,"7":63,"16":63},"isBase":true}}}, +{"id":51408,"name":"Wrathful Gladiator's Grimoire","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":136,"3":95,"16":63},"isBase":true}}}, +{"id":51409,"name":"Wrathful Gladiator's Reprieve","icon":"inv_misc_book_06","type":13,"weaponType":5,"handType":3,"stats":[0,0,136,95,63,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":136,"3":95,"4":63,"16":63},"isBase":true}}}, +{"id":51410,"name":"Wrathful Gladiator's Touch of Defeat","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,0,0,46,0,0,0,0,0,0,0,928,0,46,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"weaponSpeed":1.9,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"stats":{"2":99,"3":69,"6":46,"14":928,"16":46},"isBase":true}}}, +{"id":51411,"name":"Wrathful Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,0,243,0,0,0,108,0,0,0,0,0,324,324,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"weaponSpeed":3,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"stats":{"2":243,"6":108,"12":324,"13":324,"16":108},"isBase":true}}}, +{"id":51412,"name":"Wrathful Gladiator's Repeater","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,0,275,0,0,0,122,0,0,0,0,0,366,366,0,0,122,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"weaponSpeed":3,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"stats":{"2":275,"6":122,"12":366,"13":366,"16":122},"isBase":true}}}, +{"id":51413,"name":"Wrathful Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_25","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2695,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2695},"isBase":true}}}, +{"id":51414,"name":"Wrathful Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_75","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":1685},"isBase":true}}}, +{"id":51415,"name":"Wrathful Gladiator's Dreadplate Helm","icon":"inv_helmet_158","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2190,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":98,"22":2190},"isBase":true}}}, +{"id":51416,"name":"Wrathful Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2359,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2359},"isBase":true}}}, +{"id":51418,"name":"Wrathful Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_99","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":768,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":2022},"isBase":true}}}, +{"id":51419,"name":"Wrathful Gladiator's Kodohide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1449,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1449},"isBase":true}}}, +{"id":51420,"name":"Wrathful Gladiator's Kodohide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":906},"isBase":true}}}, +{"id":51421,"name":"Wrathful Gladiator's Kodohide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":98,"22":1177},"isBase":true}}}, +{"id":51422,"name":"Wrathful Gladiator's Kodohide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1268},"isBase":true}}}, +{"id":51424,"name":"Wrathful Gladiator's Kodohide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":773,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":1087},"isBase":true}}}, +{"id":51425,"name":"Wrathful Gladiator's Dragonhide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1449,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":114,"22":1449},"isBase":true}}}, +{"id":51426,"name":"Wrathful Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":181,"6":77,"16":85,"22":906},"isBase":true}}}, +{"id":51427,"name":"Wrathful Gladiator's Dragonhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":98,"22":1177},"isBase":true}}}, +{"id":51428,"name":"Wrathful Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":114,"22":1268},"isBase":true}}}, +{"id":51430,"name":"Wrathful Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":775,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":181,"6":77,"16":85,"22":1087},"isBase":true}}}, +{"id":51431,"name":"Wrathful Gladiator's Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,146,243,0,0,0,92,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":898,"weaponDamageMax":1347,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":898,"weaponDamageMax":1347,"stats":{"1":146,"2":243,"6":92,"16":108},"isBase":true}}}, +{"id":51432,"name":"Wrathful Gladiator's Greatstaff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,167,275,0,0,0,106,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1023,"weaponDamageMax":1535,"weaponSpeed":2,"ilvl":277,"quality":4,"classAllowlist":[1],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1023,"weaponDamageMax":1535,"stats":{"1":167,"2":275,"6":106,"16":122},"isBase":true}}}, +{"id":51433,"name":"Wrathful Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_25","type":5,"armorType":2,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1449,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1449},"isBase":true}}}, +{"id":51434,"name":"Wrathful Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_77b","type":7,"armorType":2,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":906},"isBase":true}}}, +{"id":51435,"name":"Wrathful Gladiator's Wyrmhide Helm","icon":"inv_helmet_126","type":1,"armorType":2,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":1177},"isBase":true}}}, +{"id":51436,"name":"Wrathful Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_27","type":9,"armorType":2,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1268},"isBase":true}}}, +{"id":51438,"name":"Wrathful Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_128","type":3,"armorType":2,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":774,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":1087},"isBase":true}}}, +{"id":51439,"name":"Wrathful Gladiator's Hacker","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51440,"name":"Wrathful Gladiator's Dicer","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51441,"name":"Wrathful Gladiator's Shiv","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51442,"name":"Wrathful Gladiator's Dirk","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51443,"name":"Wrathful Gladiator's Fleshslicer","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51444,"name":"Wrathful Gladiator's Razor","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51445,"name":"Wrathful Gladiator's Bonecracker","icon":"inv_mace_120","type":13,"weaponType":4,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51446,"name":"Wrathful Gladiator's Punisher","icon":"inv_mace_120","type":13,"weaponType":4,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51447,"name":"Wrathful Gladiator's Quickblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51448,"name":"Wrathful Gladiator's Swiftblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51449,"name":"Wrathful Gladiator's Rifle","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,162,243,0,0,0,108,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"weaponSpeed":3,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1347,"weaponDamageMax":2021,"stats":{"1":162,"2":243,"6":108,"16":108},"isBase":true}}}, +{"id":51450,"name":"Wrathful Gladiator's Shotgun","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,183,275,0,0,0,122,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"weaponSpeed":3,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1535,"weaponDamageMax":2303,"stats":{"1":183,"2":275,"6":122,"16":122},"isBase":true}}}, +{"id":51451,"name":"Wrathful Gladiator's Wand of Alacrity","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,0,0,0,46,0,0,0,0,0,0,928,0,46,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"weaponSpeed":1.9,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"stats":{"2":99,"3":69,"7":46,"14":928,"16":46},"isBase":true}}}, +{"id":51452,"name":"Wrathful Gladiator's Barrier","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,136,95,0,0,63,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":136,"3":95,"6":63,"16":63,"22":7602},"isBase":true}}}, +{"id":51453,"name":"Wrathful Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":2,"stats":[0,0,132,0,50,0,0,0,0,0,0,0,0,0,928,0,51,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"weaponSpeed":1.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":241,"weaponDamageMax":449,"stats":{"2":132,"4":50,"14":928,"16":51},"isBase":true}}}, +{"id":51454,"name":"Wrathful Gladiator's Salvation","icon":"inv_mace_111","type":13,"weaponType":4,"handType":2,"stats":[0,0,149,0,58,0,0,0,0,0,0,0,0,0,1047,0,58,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"weaponSpeed":1.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":275,"weaponDamageMax":512,"stats":{"2":149,"4":58,"14":1047,"16":58},"isBase":true}}}, +{"id":51455,"name":"Wrathful Gladiator's Redoubt","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,136,95,63,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":136,"3":95,"4":63,"16":63,"22":7602},"isBase":true}}}, +{"id":51456,"name":"Wrathful Gladiator's Energy Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,293,0,120,0,0,0,0,0,0,0,0,0,928,0,120,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"weaponSpeed":2,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":449,"weaponDamageMax":674,"stats":{"2":293,"4":120,"14":928,"16":120},"isBase":true}}}, +{"id":51457,"name":"Wrathful Gladiator's Light Staff","icon":"inv_staff_112","type":13,"weaponType":8,"handType":4,"stats":[0,0,332,0,139,0,0,0,0,0,0,0,0,0,1048,0,139,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"weaponSpeed":2,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":511,"weaponDamageMax":768,"stats":{"2":332,"4":139,"14":1048,"16":139},"isBase":true}}}, +{"id":51458,"name":"Wrathful Gladiator's Chain Armor","icon":"inv_chest_mail_13","type":5,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1991,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":114,"22":1991},"isBase":true}}}, +{"id":51459,"name":"Wrathful Gladiator's Chain Gauntlets","icon":"inv_gauntlets_96","type":7,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":191,"6":77,"16":85,"22":1244},"isBase":true}}}, +{"id":51460,"name":"Wrathful Gladiator's Chain Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":98,"22":1618},"isBase":true}}}, +{"id":51461,"name":"Wrathful Gladiator's Chain Leggings","icon":"inv_pants_mail_34","type":9,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":114,"22":1742},"isBase":true}}}, +{"id":51462,"name":"Wrathful Gladiator's Chain Spaulders","icon":"inv_shoulder_123","type":3,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1493,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":772,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":191,"6":77,"16":85,"22":1493},"isBase":true}}}, +{"id":51463,"name":"Wrathful Gladiator's Silk Raiment","icon":"inv_chest_cloth_81","type":5,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1152},"isBase":true}}}, +{"id":51464,"name":"Wrathful Gladiator's Silk Handguards","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":720},"isBase":true}}}, +{"id":51465,"name":"Wrathful Gladiator's Silk Cowl","icon":"inv_helmet_159","type":1,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":936},"isBase":true}}}, +{"id":51466,"name":"Wrathful Gladiator's Silk Trousers","icon":"inv_pants_cloth_36","type":9,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1008},"isBase":true}}}, +{"id":51467,"name":"Wrathful Gladiator's Silk Amice","icon":"inv_shoulder_122","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":779,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":864},"isBase":true}}}, +{"id":51468,"name":"Wrathful Gladiator's Ornamented Chestguard","icon":"inv_chest_plate26","type":5,"armorType":4,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2695,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":2695},"isBase":true}}}, +{"id":51469,"name":"Wrathful Gladiator's Ornamented Gloves","icon":"inv_gauntlets_91","type":7,"armorType":4,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":1685},"isBase":true}}}, +{"id":51470,"name":"Wrathful Gladiator's Ornamented Headcover","icon":"inv_helmet_164","type":1,"armorType":4,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2190,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":2190},"isBase":true}}}, +{"id":51471,"name":"Wrathful Gladiator's Ornamented Legplates","icon":"inv_pants_plate_37","type":9,"armorType":4,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2359,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":2359},"isBase":true}}}, +{"id":51473,"name":"Wrathful Gladiator's Ornamented Spaulders","icon":"inv_shoulder_126","type":3,"armorType":4,"stats":[0,0,184,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":767,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":184,"3":119,"6":77,"16":85,"22":2022},"isBase":true}}}, +{"id":51474,"name":"Wrathful Gladiator's Scaled Chestpiece","icon":"inv_chest_plate26","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2695,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2695},"isBase":true}}}, +{"id":51475,"name":"Wrathful Gladiator's Scaled Gauntlets","icon":"inv_gauntlets_91","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":1685},"isBase":true}}}, +{"id":51476,"name":"Wrathful Gladiator's Scaled Helm","icon":"inv_helmet_164","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2190,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":98,"22":2190},"isBase":true}}}, +{"id":51477,"name":"Wrathful Gladiator's Scaled Legguards","icon":"inv_pants_plate_37","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2359,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2359},"isBase":true}}}, +{"id":51479,"name":"Wrathful Gladiator's Scaled Shoulders","icon":"inv_shoulder_126","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":766,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":2022},"isBase":true}}}, +{"id":51480,"name":"Wrathful Gladiator's Pike","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,0,243,0,0,0,92,0,0,0,0,0,324,324,0,0,92,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"weaponSpeed":3.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1616,"weaponDamageMax":2425,"stats":{"2":243,"6":92,"12":324,"13":324,"16":92},"isBase":true}}}, +{"id":51481,"name":"Wrathful Gladiator's Halberd","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,0,275,0,0,0,106,0,0,0,0,0,334,334,0,0,122,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"weaponSpeed":3.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":348,"weaponDamageMin":1842,"weaponDamageMax":2764,"stats":{"2":275,"6":106,"12":334,"13":334,"16":122},"isBase":true}}}, +{"id":51482,"name":"Wrathful Gladiator's Mooncloth Robe","icon":"inv_chest_cloth_83","type":5,"armorType":1,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1152},"isBase":true}}}, +{"id":51483,"name":"Wrathful Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":720},"isBase":true}}}, +{"id":51484,"name":"Wrathful Gladiator's Mooncloth Hood","icon":"inv_helmet_165","type":1,"armorType":1,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":98,"22":936},"isBase":true}}}, +{"id":51485,"name":"Wrathful Gladiator's Mooncloth Leggings","icon":"inv_pants_cloth_37","type":9,"armorType":1,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1008},"isBase":true}}}, +{"id":51486,"name":"Wrathful Gladiator's Mooncloth Mantle","icon":"inv_shoulder_127","type":3,"armorType":1,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":777,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":864},"isBase":true}}}, +{"id":51487,"name":"Wrathful Gladiator's Satin Robe","icon":"inv_chest_cloth_83","type":5,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1152},"isBase":true}}}, +{"id":51488,"name":"Wrathful Gladiator's Satin Gloves","icon":"inv_gauntlets_95","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":720},"isBase":true}}}, +{"id":51489,"name":"Wrathful Gladiator's Satin Hood","icon":"inv_helmet_165","type":1,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":936},"isBase":true}}}, +{"id":51490,"name":"Wrathful Gladiator's Satin Leggings","icon":"inv_pants_cloth_37","type":9,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1008},"isBase":true}}}, +{"id":51491,"name":"Wrathful Gladiator's Satin Mantle","icon":"inv_shoulder_127","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":778,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":864},"isBase":true}}}, +{"id":51492,"name":"Wrathful Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1449,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":114,"22":1449},"isBase":true}}}, +{"id":51493,"name":"Wrathful Gladiator's Leather Gloves","icon":"inv_gauntlets_97","type":7,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,906,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":181,"6":77,"16":85,"22":906},"isBase":true}}}, +{"id":51494,"name":"Wrathful Gladiator's Leather Helm","icon":"inv_helmet_161","type":1,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1177,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":98,"22":1177},"isBase":true}}}, +{"id":51495,"name":"Wrathful Gladiator's Leather Legguards","icon":"inv_pants_leather_36","type":9,"armorType":2,"stats":[0,155,244,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1268,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":244,"6":98,"16":114,"22":1268},"isBase":true}}}, +{"id":51496,"name":"Wrathful Gladiator's Leather Spaulders","icon":"inv_shoulder_120","type":3,"armorType":2,"stats":[0,119,181,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":776,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":181,"6":77,"16":85,"22":1087},"isBase":true}}}, +{"id":51497,"name":"Wrathful Gladiator's Ringmail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1991,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1991},"isBase":true}}}, +{"id":51498,"name":"Wrathful Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":1244},"isBase":true}}}, +{"id":51499,"name":"Wrathful Gladiator's Ringmail Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":98,"22":1618},"isBase":true}}}, +{"id":51500,"name":"Wrathful Gladiator's Ringmail Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,244,155,98,0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"4":98,"16":114,"22":1742},"isBase":true}}}, +{"id":51502,"name":"Wrathful Gladiator's Ringmail Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,0,181,119,77,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1493,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":771,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"4":77,"16":85,"22":1493},"isBase":true}}}, +{"id":51503,"name":"Wrathful Gladiator's Linked Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1991,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":114,"22":1991},"isBase":true}}}, +{"id":51504,"name":"Wrathful Gladiator's Linked Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":191,"6":77,"16":85,"22":1244},"isBase":true}}}, +{"id":51505,"name":"Wrathful Gladiator's Linked Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":98,"22":1618},"isBase":true}}}, +{"id":51506,"name":"Wrathful Gladiator's Linked Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,155,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"1":155,"2":257,"6":98,"16":114,"22":1742},"isBase":true}}}, +{"id":51508,"name":"Wrathful Gladiator's Linked Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,119,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1493,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":770,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"1":119,"2":191,"6":77,"16":85,"22":1493},"isBase":true}}}, +{"id":51509,"name":"Wrathful Gladiator's Mail Armor","icon":"inv_chest_mail_02","type":5,"armorType":3,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1991,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1991},"isBase":true}}}, +{"id":51510,"name":"Wrathful Gladiator's Mail Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":1244},"isBase":true}}}, +{"id":51511,"name":"Wrathful Gladiator's Mail Helm","icon":"inv_helmet_160","type":1,"armorType":3,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,1618,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":1618},"isBase":true}}}, +{"id":51512,"name":"Wrathful Gladiator's Mail Leggings","icon":"inv_pants_mail_33","type":9,"armorType":3,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1742,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1742},"isBase":true}}}, +{"id":51514,"name":"Wrathful Gladiator's Mail Spaulders","icon":"inv_shoulder_47","type":3,"armorType":3,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1493,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":769,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":1493},"isBase":true}}}, +{"id":51515,"name":"Wrathful Gladiator's Cleaver","icon":"inv_axe_116","type":13,"weaponType":1,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51516,"name":"Wrathful Gladiator's Handaxe","icon":"inv_axe_116","type":13,"weaponType":1,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51517,"name":"Wrathful Gladiator's Shanker","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51518,"name":"Wrathful Gladiator's Spike","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":708,"weaponDamageMax":1063,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51519,"name":"Wrathful Gladiator's Pummeler","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51520,"name":"Wrathful Gladiator's Truncheon","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51521,"name":"Wrathful Gladiator's Slicer","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51522,"name":"Wrathful Gladiator's Longblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":1023,"weaponDamageMax":1535,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":1023,"weaponDamageMax":1535,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51523,"name":"Wrathful Gladiator's Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51524,"name":"Wrathful Gladiator's Grasp","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51525,"name":"Wrathful Gladiator's Chopper","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51526,"name":"Wrathful Gladiator's Splitter","icon":"inv_axe_116","type":13,"weaponType":1,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51527,"name":"Wrathful Gladiator's Mutilator","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51528,"name":"Wrathful Gladiator's Eviscerator","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51529,"name":"Wrathful Gladiator's Talon","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"weaponSpeed":2.6,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":895,"weaponDamageMax":1663,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":51530,"name":"Wrathful Gladiator's Slasher","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,0,104,0,0,0,38,0,0,0,0,0,123,123,0,0,46,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"2":104,"6":38,"12":123,"13":123,"16":46},"isBase":true}}}, +{"id":51531,"name":"Wrathful Gladiator's Piercing Touch","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,0,0,0,0,0,0,0,0,0,0,928,0,46,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"weaponSpeed":1.9,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"stats":{"2":99,"3":69,"14":928,"16":46},"isBase":true}}}, +{"id":51532,"name":"Wrathful Gladiator's Baton of Light","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,99,69,46,0,0,0,0,0,0,0,0,0,928,0,46,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"weaponSpeed":1.9,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"stats":{"2":99,"3":69,"4":46,"14":928,"16":46},"isBase":true}}}, +{"id":51533,"name":"Wrathful Gladiator's Shield Wall","icon":"inv_shield_71","type":13,"weaponType":7,"handType":3,"stats":[0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,0,0,0,0,7602,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":181,"ilvl":270,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"270":{"randPropPoints":181,"stats":{"2":181,"16":121,"22":7602},"isBase":true}}}, +{"id":51536,"name":"Wrathful Gladiator's Felweave Raiment","icon":"inv_chest_cloth_85","type":5,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1152,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1152},"isBase":true}}}, +{"id":51537,"name":"Wrathful Gladiator's Felweave Handguards","icon":"inv_gauntlets_94","type":7,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":720},"isBase":true}}}, +{"id":51538,"name":"Wrathful Gladiator's Felweave Cowl","icon":"inv_helmet_168","type":1,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":98,"22":936},"isBase":true}}}, +{"id":51539,"name":"Wrathful Gladiator's Felweave Trousers","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,244,155,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"2":244,"3":155,"6":98,"16":114,"22":1008},"isBase":true}}}, +{"id":51540,"name":"Wrathful Gladiator's Felweave Amice","icon":"inv_shoulder_132","type":3,"armorType":1,"stats":[0,0,181,119,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":780,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"2":181,"3":119,"6":77,"16":85,"22":864},"isBase":true}}}, +{"id":51541,"name":"Wrathful Gladiator's Plate Chestpiece","icon":"inv_chest_leather_24","type":5,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2695,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2695},"isBase":true}}}, +{"id":51542,"name":"Wrathful Gladiator's Plate Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1685,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":1685},"isBase":true}}}, +{"id":51543,"name":"Wrathful Gladiator's Plate Helm","icon":"inv_helmet_98","type":1,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,2190,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":98,"22":2190},"isBase":true}}}, +{"id":51544,"name":"Wrathful Gladiator's Plate Legguards","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[155,0,257,0,0,0,98,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,2359,0,0,0,0],"gemSockets":[2,3],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":326,"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"expansion":3,"scalingOptions":{"270":{"randPropPoints":326,"stats":{"0":155,"2":257,"6":98,"16":114,"22":2359},"isBase":true}}}, +{"id":51545,"name":"Wrathful Gladiator's Plate Shoulders","icon":"inv_shoulder_132","type":3,"armorType":4,"stats":[119,0,191,0,0,0,77,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,2022,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":270,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":765,"scalingOptions":{"270":{"randPropPoints":242,"stats":{"0":119,"2":191,"6":77,"16":85,"22":2022},"isBase":true}}}, +{"id":51548,"name":"Collar of Haughty Disdain","icon":"inv_jewelry_necklace_48","type":2,"stats":[72,0,120,0,0,0,55,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":55,"7":43},"isBase":true}}}, +{"id":51550,"name":"Ivory-Inlaid Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,120,210,0,0,0,103,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":120,"2":210,"6":103,"7":60,"22":1158},"isBase":true}}}, +{"id":51551,"name":"Chestguard of Siphoned Elements","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,205,120,72,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":72,"7":96,"22":1853},"isBase":true}}}, +{"id":51552,"name":"Shoulderpads of the Searing Kiss","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,154,91,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":154,"3":91,"4":71,"7":55,"22":993},"isBase":true}}}, +{"id":51553,"name":"Lana'thel's Bloody Nail","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,91,62,45,0,34,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":292,"weaponDamageMax":543,"weaponSpeed":2.2,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":292,"weaponDamageMax":543,"stats":{"2":91,"3":62,"4":45,"6":34,"14":822},"isBase":true}}}, +{"id":51554,"name":"Cowl of Malefic Repose","icon":"inv_helmet_150purple","type":1,"armorType":1,"stats":[0,0,205,120,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,840,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"6":72,"7":96,"22":840},"isBase":true}}}, +{"id":51555,"name":"Tightening Waistband","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,152,91,55,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":55,"7":71,"22":1429},"isBase":true}}}, +{"id":51556,"name":"Veincrusher Gauntlets","icon":"inv_gauntlets_86","type":7,"armorType":4,"stats":[76,0,136,0,0,0,0,0,62,91,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":76,"2":136,"8":62,"9":91,"22":1587},"isBase":true}}}, +{"id":51557,"name":"Runed Signet of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,119,80,0,0,53,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":119,"3":80,"6":53,"7":54},"isBase":true}}}, +{"id":51558,"name":"Runed Loop of the Kirin Tor","icon":"inv_jewelry_ring_73","type":11,"stats":[0,0,119,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":119,"3":80,"4":81},"isBase":true}}}, +{"id":51559,"name":"Runed Ring of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[80,0,119,0,0,0,54,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":80,"2":119,"6":54,"8":53},"isBase":true}}}, +{"id":51560,"name":"Runed Band of the Kirin Tor","icon":"inv_jewelry_ring_74","type":11,"stats":[0,80,120,0,0,0,55,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":80,"2":120,"6":55,"7":51},"isBase":true}}}, +{"id":51561,"name":"Dreamhunter's Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,144,215,0,0,0,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":897,"weaponDamageMax":1667,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":897,"weaponDamageMax":1667,"stats":{"1":144,"2":215,"7":139},"isBase":true}}}, +{"id":51562,"name":"Oxheart","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[128,0,216,0,0,0,95,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"weaponSpeed":3.5,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":1381,"weaponDamageMax":2072,"stats":{"0":128,"2":216,"6":95,"8":76},"isBase":true}}}, +{"id":51563,"name":"Taiga Bindings","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[72,0,120,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":45,"7":53,"22":1111},"isBase":true}}}, +{"id":51564,"name":"Ironrope Belt of Ymirjar","icon":"inv_belt_62","type":8,"armorType":4,"stats":[81,0,136,0,0,54,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":81,"2":136,"5":54,"10":88,"22":1429},"isBase":true}}}, +{"id":51565,"name":"Skinned Whelp Shoulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,91,152,0,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,993,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":152,"6":55,"7":71,"22":993},"isBase":true}}}, +{"id":51566,"name":"Legguards of the Twisted Dream","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,120,215,0,0,84,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":120,"2":215,"5":84,"6":84,"22":1621},"isBase":true}}}, +{"id":51568,"name":"Titan-Forged Pendant of Ascendancy","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,108,68,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"7":42,"16":50},"isBase":true}}}, +{"id":51569,"name":"Titan-Forged Pendant of Victory","icon":"inv_jewelry_necklace_36","type":2,"stats":[0,0,114,0,0,0,42,0,0,0,0,0,135,135,0,0,50,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"6":42,"12":135,"13":135,"16":50},"isBase":true}}}, +{"id":51570,"name":"Titan-Forged Cloak of Ascendancy","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,108,68,0,0,0,42,0,0,0,0,0,0,0,0,50,0,0,0,0,0,498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":108,"3":68,"7":42,"16":50,"22":498},"isBase":true}}}, +{"id":51571,"name":"Titan-Forged Cloak of Victory","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,114,0,0,0,42,0,0,0,0,0,135,135,0,0,50,0,0,0,0,0,498,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":144,"ilvl":245,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"245":{"randPropPoints":144,"stats":{"2":114,"6":42,"12":135,"13":135,"16":50,"22":498},"isBase":true}}}, +{"id":51572,"name":"Titan-Forged Shoulderpads of Salvation","icon":"inv_shoulder_103","type":3,"armorType":1,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"7":63,"16":71,"22":776},"isBase":true}}}, +{"id":51573,"name":"Titan-Forged Shoulderpads of Domination","icon":"inv_shoulder_89","type":3,"armorType":1,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,776,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"16":71,"22":776},"isBase":true}}}, +{"id":51574,"name":"Titan-Forged Spaulders of Dominance","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"16":71,"22":993},"isBase":true}}}, +{"id":51575,"name":"Titan-Forged Spaulders of Salvation","icon":"inv_shoulder_107","type":3,"armorType":2,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"7":63,"16":71,"22":993},"isBase":true}}}, +{"id":51576,"name":"Titan-Forged Spaulders of Triumph","icon":"inv_shoulder_89","type":3,"armorType":2,"stats":[0,99,152,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,993,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":152,"5":63,"16":71,"22":993},"isBase":true}}}, +{"id":51577,"name":"Titan-Forged Shoulders of Triumph","icon":"inv_shoulder_102","type":3,"armorType":3,"stats":[0,99,160,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":99,"2":160,"5":63,"16":71,"22":1389},"isBase":true}}}, +{"id":51578,"name":"Titan-Forged Shoulders of Dominance","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"5":63,"16":71,"22":1389},"isBase":true}}}, +{"id":51579,"name":"Titan-Forged Shoulders of Salvation","icon":"inv_shoulder_52","type":3,"armorType":3,"stats":[0,0,152,99,0,0,0,63,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[7],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":99,"7":63,"16":71,"22":1389},"isBase":true}}}, +{"id":51580,"name":"Titan-Forged Shoulderplates of Triumph","icon":"inv_shoulder_62","type":3,"armorType":4,"stats":[99,0,160,0,0,63,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":99,"2":160,"5":63,"16":71,"22":1905},"isBase":true}}}, +{"id":51581,"name":"Titan-Forged Shoulderplates of Salvation","icon":"inv_shoulder_91","type":3,"armorType":4,"stats":[0,0,155,99,63,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[4],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":155,"3":99,"4":63,"16":71,"22":1905},"isBase":true}}}, +{"id":51582,"name":"Sister Svalna's Aether Staff","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,220,0,0,136,101,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"weaponDamageMin":513,"weaponDamageMax":770,"weaponSpeed":2.6,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"weaponDamageMin":513,"weaponDamageMax":770,"stats":{"2":220,"5":136,"6":101,"14":822},"isBase":true}}}, +{"id":51583,"name":"Stormbringer Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,152,91,0,0,74,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"6":74,"7":50,"22":1158},"isBase":true}}}, +{"id":51584,"name":"Lich Wrappings","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,114,72,0,41,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"5":41,"7":56,"22":517},"isBase":true}}}, +{"id":51585,"name":"Sister Svalna's Spangenhelm","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,205,120,80,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1076,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":80,"6":88,"22":1076},"isBase":true}}}, +{"id":51586,"name":"Emerald Saint's Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,152,91,71,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":71,"6":55,"22":1905},"isBase":true}}}, +{"id":51777,"name":"Leggings of the Refracted Mind","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,180,128,80,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":180,"3":128,"4":80,"6":96,"22":905},"isBase":true}}}, +{"id":51779,"name":"Rimetooth Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,80,105,0,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":80,"2":105,"6":45,"7":53},"isBase":true}}}, +{"id":51782,"name":"Etched Dragonbone Girdle","icon":"inv_belt_62","type":8,"armorType":4,"stats":[91,0,160,0,0,0,76,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":91,"2":160,"6":76,"8":46,"22":1429},"isBase":true}}}, +{"id":51783,"name":"Vambraces of the Frost Wyrm Queen","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,80,105,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,579,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":80,"2":105,"6":53,"7":45,"22":579},"isBase":true}}}, +{"id":51784,"name":"Splintershard","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,62,92,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"weaponSpeed":1.8,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":478,"weaponDamageMax":888,"stats":{"1":62,"2":92,"6":41,"7":41},"isBase":true}}}, +{"id":51785,"name":"Wyrmwing Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,91,160,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"1":91,"2":160,"5":55,"6":71,"22":1274},"isBase":true}}}, +{"id":51786,"name":"Legplates of Aetheric Strife","icon":"inv_pants_plate_32","type":9,"armorType":4,"stats":[120,0,216,0,0,0,72,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":120,"2":216,"6":72,"7":96,"22":2222},"isBase":true}}}, +{"id":51787,"name":"Scourge Fanged Stompers","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[81,0,136,0,0,38,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"0":81,"2":136,"5":38,"9":104,"22":1746},"isBase":true}}}, +{"id":51788,"name":"Bleak Coldarra Carver","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,102,0,0,61,47,0,0,0,0,0,0,0,822,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"weaponSpeed":1.8,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":117,"weaponDamageMin":239,"weaponDamageMax":444,"stats":{"2":102,"5":61,"6":47,"14":822},"isBase":true}}}, +{"id":51789,"name":"Icicle Shapers","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,152,91,71,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":71,"7":55,"22":827},"isBase":true}}}, +{"id":51790,"name":"Robes of Azure Downfall","icon":"inv_chest_cloth_78purple","type":5,"armorType":1,"stats":[0,0,193,120,0,0,76,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":193,"3":120,"6":76,"7":95,"22":1034},"isBase":true}}}, +{"id":51791,"name":"Lost Pavise of the Blue Flight","icon":"inv_shield_74","type":13,"weaponType":7,"handType":3,"stats":[0,0,114,80,54,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7351,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":80,"4":54,"7":53,"22":7351},"isBase":true}}}, +{"id":51792,"name":"Shoulderguards of Crystalline Bone","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,152,91,0,0,71,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"6":71,"7":55,"22":1389},"isBase":true}}}, +{"id":51795,"name":"Troggbane, Axe of the Frostborne King","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[66,0,99,0,0,0,0,0,0,49,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"weaponSpeed":1.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":455,"weaponDamageMax":846,"stats":{"0":66,"2":99,"9":49,"10":37},"isBase":true}}}, +{"id":51796,"name":"Warmace of Menethil","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[137,0,229,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"weaponSpeed":3.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1522,"weaponDamageMax":2284,"stats":{"0":137,"2":229,"6":94,"7":94},"isBase":true}}}, +{"id":51797,"name":"Tainted Twig of Nordrassil","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,137,225,0,0,0,98,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"weaponSpeed":2.4,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1015,"weaponDamageMax":1523,"stats":{"1":137,"2":225,"6":98,"7":90},"isBase":true}}}, +{"id":51798,"name":"Valius, Gavel of the Lightbringer","icon":"inv_mace_115","type":13,"weaponType":4,"handType":2,"stats":[0,0,120,0,56,0,56,0,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":313,"weaponDamageMax":582,"weaponSpeed":2.2,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":313,"weaponDamageMax":582,"stats":{"2":120,"4":56,"6":56,"14":879},"isBase":true}}}, +{"id":51799,"name":"Halion, Staff of Forgotten Love","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,235,0,0,0,145,108,0,0,0,0,0,0,877,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":549,"weaponDamageMax":825,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":549,"weaponDamageMax":825,"stats":{"2":235,"6":145,"7":108,"14":877},"isBase":true}}}, +{"id":51800,"name":"Stormfury, Black Blade of the Betrayer","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,66,94,0,0,0,44,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"weaponSpeed":1.8,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":512,"weaponDamageMax":952,"stats":{"1":66,"2":94,"6":44,"8":44},"isBase":true}}}, +{"id":51801,"name":"Pugius, Fist of Defiance","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,66,94,0,0,0,45,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":846,"weaponDamageMax":1269,"weaponSpeed":2.6,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":846,"weaponDamageMax":1269,"stats":{"1":66,"2":94,"6":45,"7":42},"isBase":true}}}, +{"id":51802,"name":"Windrunner's Heartseeker","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,153,224,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"weaponSpeed":3,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":291,"weaponDamageMin":1269,"weaponDamageMax":1904,"stats":{"1":153,"2":224,"6":102,"7":102},"isBase":true}}}, +{"id":51803,"name":"Tel'thas, Dagger of the Blood King","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,108,0,0,0,51,65,0,0,0,0,0,0,879,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"weaponSpeed":1.8,"ilvl":258,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"258":{"randPropPoints":125,"weaponDamageMin":256,"weaponDamageMax":476,"stats":{"2":108,"6":51,"7":65,"14":879},"isBase":true}}}, +{"id":51811,"name":"Shoulderguards of Crystalline Bone","icon":"inv_shoulder_133","type":3,"armorType":3,"stats":[0,0,172,104,0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":80,"7":64,"22":1456},"isBase":true}}}, +{"id":51812,"name":"Lost Pavise of the Blue Flight","icon":"inv_shield_74","type":13,"weaponType":7,"handType":3,"stats":[0,0,129,83,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"4":60,"7":52,"22":7521},"isBase":true}}}, +{"id":51813,"name":"Robes of Azure Downfall","icon":"inv_chest_cloth_77","type":5,"armorType":1,"stats":[0,0,219,138,0,0,87,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":219,"3":138,"6":87,"7":108,"22":1111},"isBase":true}}}, +{"id":51814,"name":"Icicle Shapers","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,172,104,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"7":64,"22":878},"isBase":true}}}, +{"id":51815,"name":"Bleak Coldarra Carver","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,103,0,0,69,46,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":103,"5":69,"6":46,"14":928},"isBase":true}}}, +{"id":51816,"name":"Scourge Fanged Stompers","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[92,0,157,0,0,45,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":45,"9":117,"22":1814},"isBase":true}}}, +{"id":51817,"name":"Legplates of Aetheric Strife","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[138,0,243,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":84,"7":108,"22":2308},"isBase":true}}}, +{"id":51818,"name":"Wyrmwing Treads","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1334},"isBase":true}}}, +{"id":51819,"name":"Splintershard","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,61,104,0,0,0,46,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"1":61,"2":104,"6":46,"7":38},"isBase":true}}}, +{"id":51820,"name":"Vambraces of the Frost Wyrm Queen","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,90,120,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":120,"6":60,"7":52,"22":615},"isBase":true}}}, +{"id":51821,"name":"Etched Dragonbone Girdle","icon":"inv_belt_63","type":8,"armorType":4,"stats":[104,0,180,0,0,0,86,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":180,"6":86,"8":54,"22":1484},"isBase":true}}}, +{"id":51822,"name":"Rimetooth Pendant","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,90,120,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Sindragosa"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":90,"2":120,"6":52,"7":60},"isBase":true}}}, +{"id":51823,"name":"Leggings of the Refracted Mind","icon":"inv_pants_cloth_35","type":9,"armorType":1,"stats":[0,0,207,146,92,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":207,"3":146,"4":92,"6":108,"22":972},"isBase":true}}}, +{"id":51824,"name":"Emerald Saint's Spaulders","icon":"inv_shoulder_117","type":3,"armorType":4,"stats":[0,0,172,104,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"6":64,"22":1978},"isBase":true}}}, +{"id":51825,"name":"Sister Svalna's Spangenhelm","icon":"inv_helmet_148","type":1,"armorType":2,"stats":[0,0,231,138,92,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":92,"6":100,"22":1141},"isBase":true}}}, +{"id":51826,"name":"Lich Wrappings","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,129,82,0,48,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"5":48,"7":63,"22":556},"isBase":true}}}, +{"id":51827,"name":"Stormbringer Gloves","icon":"inv_gauntlets_104","type":7,"armorType":3,"stats":[0,0,172,104,0,0,84,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":84,"7":58,"22":1213},"isBase":true}}}, +{"id":51828,"name":"Sister Svalna's Aether Staff","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,0,150,111,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":583,"weaponDamageMax":876,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":583,"weaponDamageMax":876,"stats":{"2":239,"5":150,"6":111,"14":928},"isBase":true}}}, +{"id":51829,"name":"Legguards of the Twisted Dream","icon":"inv_pants_mail_32","type":9,"armorType":3,"stats":[0,138,243,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":243,"5":96,"6":96,"22":1698},"isBase":true}}}, +{"id":51830,"name":"Skinned Whelp Shoulders","icon":"inv_shoulder_112","type":3,"armorType":2,"stats":[0,104,172,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":172,"6":64,"7":80,"22":1054},"isBase":true}}}, +{"id":51831,"name":"Ironrope Belt of Ymirjar","icon":"inv_belt_63","type":8,"armorType":4,"stats":[92,0,157,0,0,61,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":157,"5":61,"10":101,"22":1484},"isBase":true}}}, +{"id":51832,"name":"Taiga Bindings","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[82,0,136,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":52,"7":60,"22":1154},"isBase":true}}}, +{"id":51833,"name":"Oxheart","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[138,0,243,0,0,0,104,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"stats":{"0":138,"2":243,"6":104,"8":83},"isBase":true}}}, +{"id":51834,"name":"Dreamhunter's Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,154,231,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1021,"weaponDamageMax":1898,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Valithria Dreamwalker"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1021,"weaponDamageMax":1898,"stats":{"1":154,"2":231,"7":157},"isBase":true}}}, +{"id":51835,"name":"Veincrusher Gauntlets","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[86,0,157,0,0,0,0,0,70,104,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":86,"2":157,"8":70,"9":104,"22":1649},"isBase":true}}}, +{"id":51836,"name":"Tightening Waistband","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,172,104,64,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"7":80,"22":1484},"isBase":true}}}, +{"id":51837,"name":"Cowl of Malefic Repose","icon":"inv_helmet_152","type":1,"armorType":1,"stats":[0,0,231,138,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":84,"7":108,"22":903},"isBase":true}}}, +{"id":51838,"name":"Lana'thel's Bloody Nail","icon":"inv_wand_35","type":14,"rangedWeaponType":6,"stats":[0,0,103,61,51,0,30,0,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":2.2,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":332,"weaponDamageMax":618,"stats":{"2":103,"3":61,"4":51,"6":30,"14":928},"isBase":true}}}, +{"id":51839,"name":"Shoulderpads of the Searing Kiss","icon":"inv_shoulder_111","type":3,"armorType":2,"stats":[0,0,173,104,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1054,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":104,"4":80,"7":64,"22":1054},"isBase":true}}}, +{"id":51840,"name":"Chestguard of Siphoned Elements","icon":"inv_chest_mail_15","type":5,"armorType":3,"stats":[0,0,231,138,84,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":84,"7":108,"22":1941},"isBase":true}}}, +{"id":51841,"name":"Ivory-Inlaid Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,138,237,0,0,0,116,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":237,"6":116,"7":71,"22":1229},"isBase":true}}}, +{"id":51842,"name":"Collar of Haughty Disdain","icon":"inv_jewelry_necklace_48","type":2,"stats":[82,0,136,0,0,0,62,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":62,"7":49},"isBase":true}}}, +{"id":51843,"name":"Seal of the Twilight Queen","icon":"inv_jewelry_ring_70","type":11,"stats":[0,82,132,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":82,"2":132,"6":52,"7":60},"isBase":true}}}, +{"id":51844,"name":"Throatrender Handguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[104,0,181,0,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"5":80,"7":64,"22":1649},"isBase":true}}}, +{"id":51845,"name":"Stakethrower","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,154,305,0,0,0,113,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1179,"weaponDamageMax":2190,"weaponSpeed":3,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1179,"weaponDamageMax":2190,"stats":{"1":154,"2":305,"6":113,"7":92},"isBase":true}}}, +{"id":51846,"name":"Bloodsipper","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,69,87,0,0,0,40,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood-Queen Lana'thel"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"1":69,"2":87,"6":40,"7":44},"isBase":true}}}, +{"id":51847,"name":"Spaulders of the Blood Princes","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[84,0,157,0,0,74,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":84,"2":157,"5":74,"10":101,"22":1978},"isBase":true}}}, +{"id":51848,"name":"Heartsick Mender's Cape","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"7":52,"22":556},"isBase":true}}}, +{"id":51849,"name":"Cerise Coiled Ring","icon":"item_icecrownringc","type":11,"stats":[0,0,128,82,0,0,67,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":128,"3":82,"6":67,"7":41},"isBase":true}}}, +{"id":51850,"name":"Pale Corpse Boots","icon":"inv_boots_cloth_27","type":10,"armorType":1,"stats":[0,0,172,104,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":64,"6":80,"22":764},"isBase":true}}}, +{"id":51851,"name":"Bloodsoul Raiment","icon":"inv_chest_cloth_80","type":5,"armorType":1,"stats":[0,0,231,138,90,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[2,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":90,"7":102,"22":1111},"isBase":true}}}, +{"id":51852,"name":"Wand of Ruby Claret","icon":"inv_wand_34","type":14,"rangedWeaponType":6,"stats":[0,0,103,61,0,43,0,38,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"weaponSpeed":1.9,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":287,"weaponDamageMax":533,"stats":{"2":103,"3":61,"5":43,"7":38,"14":928},"isBase":true}}}, +{"id":51853,"name":"Blood-Drinker's Girdle","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,134,0,0,0,120,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":134,"6":120,"7":52,"22":1092},"isBase":true}}}, +{"id":51854,"name":"Battle-Maiden's Legguards","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[138,0,243,0,0,0,0,108,84,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"7":108,"8":84,"22":2308},"isBase":true}}}, +{"id":51855,"name":"Thrice Fanged Signet","icon":"item_icecrownringb","type":11,"stats":[82,0,136,0,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":52,"7":60},"isBase":true}}}, +{"id":51856,"name":"Taldaram's Soft Slippers","icon":"inv_boots_leather_07","type":10,"armorType":2,"stats":[0,104,176,0,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":176,"6":64,"7":80,"22":966},"isBase":true}}}, +{"id":51857,"name":"Hersir's Greatspear","icon":"inv_weapon_staff_109","type":13,"weaponType":6,"handType":4,"stats":[0,105,275,0,0,52,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"stats":{"1":105,"2":275,"5":52,"6":123},"isBase":true}}}, +{"id":51858,"name":"Soulbreaker","icon":"inv_sword_151","type":13,"weaponType":9,"handType":2,"stats":[0,61,99,0,0,0,40,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Blood Prince Council"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"1":61,"2":99,"6":40,"7":43},"isBase":true}}}, +{"id":51859,"name":"Shoulders of Ruinous Senility","icon":"inv_shoulder_114","type":3,"armorType":1,"stats":[0,0,172,104,0,64,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":64,"7":80,"22":833},"isBase":true}}}, +{"id":51860,"name":"Rippling Flesh Kilt","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,231,138,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1698,0,0,0,0],"gemSockets":[2,4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":96,"7":96,"22":1698},"isBase":true}}}, +{"id":51861,"name":"Chestplate of Septic Stitches","icon":"inv_chest_plate22","type":5,"armorType":4,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":84,"6":108,"22":2638},"isBase":true}}}, +{"id":51862,"name":"Cauterized Cord","icon":"inv_belt_64","type":8,"armorType":1,"stats":[0,0,172,104,0,0,86,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":86,"7":54,"22":625},"isBase":true}}}, +{"id":51863,"name":"Pendant of Split Veins","icon":"inv_jewelry_talisman_16","type":2,"stats":[0,0,130,82,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":130,"3":82,"5":52,"6":60},"isBase":true}}}, +{"id":51864,"name":"Shoulderpads of the Morbid Ritual","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1456},"isBase":true}}}, +{"id":51865,"name":"Scalpel-Sharpening Shoulderguards","icon":"inv_shoulder_130","type":3,"armorType":4,"stats":[104,0,181,0,0,60,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1978,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"5":60,"6":83,"22":1978},"isBase":true}}}, +{"id":51866,"name":"Discarded Bag of Entrails","icon":"inv_helmet_149","type":1,"armorType":2,"stats":[0,154,207,0,0,0,100,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1141,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":154,"2":207,"6":100,"7":92,"22":1141},"isBase":true}}}, +{"id":51867,"name":"Infected Choker","icon":"item_icecrownnecklaceb","type":2,"stats":[82,0,136,0,0,0,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":62,"8":49},"isBase":true}}}, +{"id":51868,"name":"Flesh-Carving Scalpel","icon":"inv_weapon_shortblade_102","type":13,"weaponType":2,"handType":2,"stats":[0,42,124,0,0,0,50,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":621,"weaponDamageMax":933,"stats":{"1":42,"2":124,"6":50,"7":33},"isBase":true}}}, +{"id":51869,"name":"The Facelifter","icon":"inv_sword_154","type":13,"weaponType":9,"handType":2,"stats":[42,0,92,0,0,0,0,0,41,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":483,"weaponDamageMax":898,"weaponSpeed":1.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Professor Putricide"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":483,"weaponDamageMax":898,"stats":{"0":42,"2":92,"8":41,"10":69},"isBase":true}}}, +{"id":51870,"name":"Chestguard of the Failed Experiment","icon":"inv_chest_leather_21","type":5,"armorType":2,"stats":[0,0,231,138,84,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":84,"6":108,"22":1405},"isBase":true}}}, +{"id":51871,"name":"Choker of Filthy Diamonds","icon":"inv_jewelry_necklace_49","type":2,"stats":[0,0,130,82,52,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":130,"3":82,"4":52,"7":60},"isBase":true}}}, +{"id":51872,"name":"Ether-Soaked Bracers","icon":"inv_bracer_44","type":6,"armorType":1,"stats":[0,0,129,82,0,38,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"5":38,"7":69,"22":486},"isBase":true}}}, +{"id":51873,"name":"Shuffling Shoes","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,172,104,79,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":79,"7":64,"22":1334},"isBase":true}}}, +{"id":51874,"name":"Gloves of Broken Fingers","icon":"inv_gauntlets_92","type":7,"armorType":1,"stats":[0,0,172,104,54,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":54,"7":86,"22":695},"isBase":true}}}, +{"id":51875,"name":"Lockjaw","icon":"inv_mace_118","type":13,"weaponType":4,"handType":2,"stats":[0,0,117,0,58,0,0,51,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":332,"weaponDamageMax":618,"weaponSpeed":2.2,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":332,"weaponDamageMax":618,"stats":{"2":117,"4":58,"7":51,"14":928},"isBase":true}}}, +{"id":51876,"name":"Abomination Knuckles","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,61,99,0,0,0,33,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":898,"weaponDamageMax":1347,"stats":{"1":61,"2":99,"6":33,"7":50},"isBase":true}}}, +{"id":51877,"name":"Taldron's Short-Sighted Helm","icon":"inv_helmet_158","type":1,"armorType":3,"stats":[0,146,192,0,0,0,135,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":146,"2":192,"6":135,"7":79,"22":1577},"isBase":true}}}, +{"id":51878,"name":"Rotface's Rupturing Ring","icon":"item_icecrownringd","type":11,"stats":[82,0,136,0,0,0,54,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":54,"8":57},"isBase":true}}}, +{"id":51879,"name":"Flesh-Shaper's Gurney Strap","icon":"inv_belt_63","type":8,"armorType":4,"stats":[104,0,180,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,4],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":180,"5":64,"6":80,"22":1484},"isBase":true}}}, +{"id":51881,"name":"Shaft of Glacial Ice","icon":"inv_staff_106","type":13,"weaponType":8,"handType":4,"stats":[0,146,238,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1077,"weaponDamageMax":1617,"weaponSpeed":2.4,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Rotface"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1077,"weaponDamageMax":1617,"stats":{"1":146,"2":238,"5":92,"6":108},"isBase":true}}}, +{"id":51882,"name":"Kilt of Untreated Wounds","icon":"inv_kilt_cloth_02","type":9,"armorType":1,"stats":[0,0,231,138,0,0,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,972,0,0,0,0],"gemSockets":[4,4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":96,"7":96,"22":972},"isBase":true}}}, +{"id":51883,"name":"Bloodstained Surgeon's Shoulderguards","icon":"inv_shoulder_119","type":3,"armorType":1,"stats":[0,0,172,104,85,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,833,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":85,"6":56,"22":833},"isBase":true}}}, +{"id":51884,"name":"Signet of Putrefaction","icon":"inv_jewelry_ring_82","type":11,"stats":[0,0,129,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":60,"7":52},"isBase":true}}}, +{"id":51885,"name":"Wrists of Septic Shock","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,129,82,63,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,615,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":63,"6":48,"22":615},"isBase":true}}}, +{"id":51886,"name":"Festergut's Gaseous Gloves","icon":"inv_gauntlets_85","type":7,"armorType":4,"stats":[0,0,172,104,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":80,"6":64,"22":1649},"isBase":true}}}, +{"id":51887,"name":"Abracadaver","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,239,0,0,111,0,150,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"weaponSpeed":2.1,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":471,"weaponDamageMax":707,"stats":{"2":239,"5":111,"7":150,"14":928},"isBase":true}}}, +{"id":51888,"name":"Cloak of Many Skins","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[82,0,124,0,0,0,0,0,0,70,48,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":124,"9":70,"10":48,"22":556},"isBase":true}}}, +{"id":51889,"name":"Plague-Soaked Leather Leggings","icon":"inv_pants_leather_34","type":9,"armorType":2,"stats":[0,162,207,0,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[3,2,2],"socketBonus":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":162,"2":207,"6":84,"7":108,"22":1229},"isBase":true}}}, +{"id":51890,"name":"Precious' Putrid Collar","icon":"inv_jewelry_ring_78","type":2,"stats":[0,82,130,0,0,62,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":82,"2":130,"5":62,"7":49},"isBase":true}}}, +{"id":51891,"name":"Taldron's Long Neglected Boots","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,104,148,0,0,0,90,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":148,"6":90,"7":70,"22":1334},"isBase":true}}}, +{"id":51892,"name":"Festering Fingerguards","icon":"inv_gauntlets_87","type":7,"armorType":4,"stats":[104,0,181,0,0,80,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"5":80,"8":64,"22":1649},"isBase":true}}}, +{"id":51893,"name":"Gutbuster","icon":"inv_mace_114","type":13,"weaponType":4,"handType":2,"stats":[0,45,118,0,0,36,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Festergut"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"1":45,"2":118,"5":36,"6":48},"isBase":true}}}, +{"id":51894,"name":"Soulcleave Pendant","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,129,82,0,0,62,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"6":62,"7":49},"isBase":true}}}, +{"id":51895,"name":"Deathforged Legplates","icon":"inv_pants_plate_31","type":9,"armorType":4,"stats":[123,0,207,0,0,0,0,0,58,162,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":123,"2":207,"8":58,"9":162,"22":2308},"isBase":true}}}, +{"id":51896,"name":"Thaumaturge's Crackling Cowl","icon":"inv_helmet_156","type":1,"armorType":1,"stats":[0,0,231,146,100,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,903,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":146,"4":100,"7":84,"22":903},"isBase":true}}}, +{"id":51897,"name":"Leggings of Unrelenting Blood","icon":"inv_pants_leather_35","type":9,"armorType":2,"stats":[0,0,231,138,108,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1229,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"4":108,"7":84,"22":1229},"isBase":true}}}, +{"id":51898,"name":"Mag'hari Chieftain's Staff","icon":"inv_staff_107","type":13,"weaponType":8,"handType":4,"stats":[0,0,195,0,150,0,0,150,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":696,"weaponDamageMax":1044,"weaponSpeed":3.1,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":696,"weaponDamageMax":1044,"stats":{"2":195,"4":150,"7":150,"14":928},"isBase":true}}}, +{"id":51899,"name":"Icecrown Spire Sandals","icon":"inv_boots_cloth_24","type":10,"armorType":1,"stats":[0,0,172,104,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":54,"6":86,"22":764},"isBase":true}}}, +{"id":51900,"name":"Saurfang's Cold-Forged Band","icon":"inv_jewelry_ring_81","type":11,"stats":[0,82,132,0,0,0,60,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":82,"2":132,"6":60,"7":52},"isBase":true}}}, +{"id":51901,"name":"Gargoyle Spit Bracers","icon":"inv_bracer_43","type":6,"armorType":4,"stats":[82,0,124,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,1154,204,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":124,"9":68,"22":1154,"23":204},"isBase":true}}}, +{"id":51902,"name":"Blade-Scored Carapace","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[150,0,243,0,0,0,84,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[3,4,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":150,"2":243,"6":84,"7":96,"22":2638},"isBase":true}}}, +{"id":51903,"name":"Hauberk of a Thousand Cuts","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,138,243,0,0,84,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1941,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":138,"2":243,"5":84,"6":108,"22":1941},"isBase":true}}}, +{"id":51904,"name":"Scourge Stranglers","icon":"inv_gauntlets_79","type":7,"armorType":2,"stats":[0,120,146,0,0,0,72,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,878,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":146,"6":72,"7":72,"22":878},"isBase":true}}}, +{"id":51905,"name":"Ramaladni's Blade of Culling","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[138,0,243,0,0,0,91,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3,3,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"weaponSpeed":3.5,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Deathbringer Saurfang"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1572,"weaponDamageMax":2358,"stats":{"0":138,"2":243,"6":91,"8":99},"isBase":true}}}, +{"id":51906,"name":"Ice-Reinforced Vrykul Helm","icon":"inv_helmet_169","type":1,"armorType":3,"stats":[0,0,210,146,98,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":210,"3":146,"4":98,"7":100,"22":1577},"isBase":true}}}, +{"id":51907,"name":"Bracers of Pale Illumination","icon":"inv_bracer_46","type":6,"armorType":4,"stats":[0,0,132,82,60,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":132,"3":82,"4":60,"7":52,"22":1154},"isBase":true}}}, +{"id":51908,"name":"Cord of Dark Suffering","icon":"inv_belt_59","type":8,"armorType":2,"stats":[0,0,173,105,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":173,"3":105,"4":80,"6":64,"22":790},"isBase":true}}}, +{"id":51909,"name":"Neverending Winter","icon":"inv_shield_73","type":13,"weaponType":7,"handType":3,"stats":[82,0,124,0,0,0,0,0,0,42,74,0,0,0,0,0,0,0,0,0,0,0,7521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":124,"9":42,"10":74,"22":7521},"isBase":true}}}, +{"id":51910,"name":"Midnight Sun","icon":"inv_weapon_shortblade_103","type":13,"weaponType":2,"handType":2,"stats":[0,0,114,0,54,0,0,51,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":114,"4":54,"7":51,"14":928},"isBase":true}}}, +{"id":51911,"name":"Pauldrons of Lost Hope","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,120,134,0,0,0,97,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":120,"2":134,"6":97,"7":52,"22":1456},"isBase":true}}}, +{"id":51912,"name":"Saronite Gargoyle Cloak","icon":"inv_misc_cape_26","type":4,"armorType":1,"stats":[82,0,136,0,0,0,38,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":82,"2":136,"6":38,"7":69,"22":556},"isBase":true}}}, +{"id":51913,"name":"Abomination's Bloody Ring","icon":"inv_jewelry_ring_85","type":11,"stats":[57,0,124,0,0,53,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":57,"2":124,"5":53,"9":89},"isBase":true}}}, +{"id":51914,"name":"Icecrown Rampart Bracers","icon":"inv_bracer_40","type":6,"armorType":3,"stats":[0,82,136,0,0,52,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":82,"2":136,"5":52,"6":60,"22":849},"isBase":true}}}, +{"id":51915,"name":"Bone Drake's Enameled Boots","icon":"inv_boots_plate_13","type":10,"armorType":4,"stats":[104,0,181,0,0,0,83,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[3,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":104,"2":181,"6":83,"8":60,"22":1814},"isBase":true}}}, +{"id":51916,"name":"Frost Giant's Cleaver","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,61,99,0,0,0,50,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"weaponSpeed":2.6,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Icecrown Gunship Battle"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":786,"weaponDamageMax":1460,"stats":{"1":61,"2":99,"6":50,"7":31},"isBase":true}}}, +{"id":51917,"name":"Ghoul Commander's Cuirass","icon":"inv_chest_plate_26","type":5,"armorType":4,"stats":[162,0,207,0,0,0,0,0,0,101,85,0,0,0,0,0,0,0,0,0,0,0,2638,0,0,0,0],"gemSockets":[4,3,3],"socketBonus":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":162,"2":207,"9":101,"10":85,"22":2638},"isBase":true}}}, +{"id":51918,"name":"Bracers of Dark Blessings","icon":"inv_bracer_47","type":6,"armorType":1,"stats":[0,0,129,82,58,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,486,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":82,"4":58,"6":53,"22":486},"isBase":true}}}, +{"id":51919,"name":"Deathspeaker Disciple's Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,172,104,58,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":58,"7":84,"22":1092},"isBase":true}}}, +{"id":51920,"name":"Boots of the Frozen Seed","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,172,104,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,966,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"6":54,"7":86,"22":966},"isBase":true}}}, +{"id":51921,"name":"Sister's Handshrouds","icon":"inv_gauntlets_88","type":7,"armorType":1,"stats":[0,0,172,104,0,80,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,695,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"5":80,"7":64,"22":695},"isBase":true}}}, +{"id":51922,"name":"Scourgelord's Baton","icon":"inv_misc_bone_elfskull_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,129,83,0,65,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"5":65,"6":45},"isBase":true}}}, +{"id":51923,"name":"Chestguard of the Frigid Noose","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,150,201,0,0,0,91,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1405,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"1":150,"2":201,"6":91,"7":111,"22":1405},"isBase":true}}}, +{"id":51924,"name":"Deathspeaker Zealot's Helm","icon":"inv_helmet_151","type":1,"armorType":4,"stats":[138,0,243,0,0,0,108,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2143,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"0":138,"2":243,"6":108,"7":79,"22":2143},"isBase":true}}}, +{"id":51925,"name":"Soulthief's Braided Belt","icon":"inv_belt_61","type":8,"armorType":2,"stats":[0,104,172,0,0,54,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":172,"5":54,"6":86,"22":790},"isBase":true}}}, +{"id":51926,"name":"Handgrips of Frost and Sleet","icon":"inv_gauntlets_84","type":7,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1213},"isBase":true}}}, +{"id":51927,"name":"Njorndar Bone Bow","icon":"inv_weapon_bow_55","type":14,"rangedWeaponType":1,"stats":[0,154,231,0,0,92,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1139,"weaponDamageMax":2117,"weaponSpeed":2.9,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lady Deathwhisper"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1139,"weaponDamageMax":2117,"stats":{"1":154,"2":231,"5":92,"6":113},"isBase":true}}}, +{"id":51928,"name":"Corrupted Silverplate Leggings","icon":"inv_pants_plate_33","type":9,"armorType":4,"stats":[0,0,231,138,0,0,93,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4,3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"stats":{"2":231,"3":138,"6":93,"7":99,"22":2308},"isBase":true}}}, +{"id":51929,"name":"Coldwraith Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,129,83,54,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,849,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"2":129,"3":83,"4":54,"7":56,"22":849},"isBase":true}}}, +{"id":51930,"name":"Cord of the Patronizing Practitioner","icon":"inv_belt_68","type":8,"armorType":1,"stats":[0,0,172,104,62,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":62,"7":78,"22":625},"isBase":true}}}, +{"id":51931,"name":"Ancient Skeletal Boots","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,172,104,63,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"2":172,"3":104,"4":63,"6":80,"22":1814},"isBase":true}}}, +{"id":51932,"name":"Frost Needle","icon":"inv_sword_152","type":13,"weaponType":9,"handType":2,"stats":[0,0,114,0,0,52,0,56,0,0,0,0,0,0,928,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"weaponSpeed":1.8,"ilvl":264,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":272,"weaponDamageMax":505,"stats":{"2":114,"5":52,"7":56,"14":928},"isBase":true}}}, +{"id":51933,"name":"Shawl of Nerubian Silk","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,82,129,0,0,48,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,556,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"1":82,"2":129,"5":48,"8":63,"22":556},"isBase":true}}}, +{"id":51934,"name":"Marrowgar's Scratching Choker","icon":"inv_jewelry_necklace_52","type":2,"stats":[89,0,124,0,0,0,0,0,0,63,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":172,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":172,"stats":{"0":89,"2":124,"9":63,"10":48},"isBase":true}}}, +{"id":51935,"name":"Linked Scourge Vertebrae","icon":"inv_belt_60","type":8,"armorType":3,"stats":[0,104,181,0,0,64,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1092,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"1":104,"2":181,"5":64,"6":80,"22":1092},"isBase":true}}}, +{"id":51936,"name":"Citadel Enforcer's Claymore","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[146,0,243,0,0,116,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"weaponSpeed":3.4,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":308,"weaponDamageMin":1527,"weaponDamageMax":2291,"stats":{"0":146,"2":243,"5":116,"6":79},"isBase":true}}}, +{"id":51937,"name":"Bonebreaker Scepter","icon":"inv_mace_117","type":13,"weaponType":4,"handType":2,"stats":[48,0,92,0,0,44,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":513,"weaponDamageMax":954,"weaponSpeed":1.7,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":513,"weaponDamageMax":954,"stats":{"0":48,"2":92,"5":44,"9":60},"isBase":true}}}, +{"id":51938,"name":"Bone Warden's Splitter","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[0,61,104,0,0,0,38,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"weaponSpeed":1.8,"ilvl":264,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"Lord Marrowgar"}}],"scalingOptions":{"264":{"randPropPoints":132,"weaponDamageMin":544,"weaponDamageMax":1011,"stats":{"1":61,"2":104,"6":38,"7":46},"isBase":true}}}, +{"id":51939,"name":"Tel'thas, Dagger of the Blood King","icon":"inv_weapon_shortblade_101","type":13,"weaponType":2,"handType":2,"stats":[0,0,111,0,0,0,49,74,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"weaponSpeed":1.8,"ilvl":271,"quality":4,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":291,"weaponDamageMax":542,"stats":{"2":111,"6":49,"7":74,"14":991},"isBase":true}}}, +{"id":51940,"name":"Windrunner's Heartseeker","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,173,241,0,0,0,107,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1445,"weaponDamageMax":2168,"weaponSpeed":3,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1445,"weaponDamageMax":2168,"stats":{"1":173,"2":241,"6":107,"7":115},"isBase":true}}}, +{"id":51941,"name":"Pugius, Fist of Defiance","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,66,106,0,0,0,51,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":963,"weaponDamageMax":1445,"weaponSpeed":2.6,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":963,"weaponDamageMax":1445,"stats":{"1":66,"2":106,"6":51,"7":39},"isBase":true}}}, +{"id":51942,"name":"Stormfury, Black Blade of the Betrayer","icon":"inv_weapon_shortblade_105","type":13,"weaponType":2,"handType":2,"stats":[0,74,82,0,0,0,49,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":583,"weaponDamageMax":1084,"weaponSpeed":1.8,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":583,"weaponDamageMax":1084,"stats":{"1":74,"2":82,"6":49,"8":49},"isBase":true}}}, +{"id":51943,"name":"Halion, Staff of Forgotten Love","icon":"inv_staff_109","type":13,"weaponType":8,"handType":4,"stats":[0,0,258,0,0,0,161,120,0,0,0,0,0,0,993,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":626,"weaponDamageMax":940,"weaponSpeed":2.6,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":626,"weaponDamageMax":940,"stats":{"2":258,"6":161,"7":120,"14":993},"isBase":true}}}, +{"id":51944,"name":"Valius, Gavel of the Lightbringer","icon":"inv_mace_115","type":13,"weaponType":4,"handType":2,"stats":[0,0,123,0,62,0,55,0,0,0,0,0,0,0,991,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":356,"weaponDamageMax":662,"weaponSpeed":2.2,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":356,"weaponDamageMax":662,"stats":{"2":123,"4":62,"6":55,"14":991},"isBase":true}}}, +{"id":51945,"name":"Tainted Twig of Nordrassil","icon":"inv_staff_108","type":13,"weaponType":8,"handType":4,"stats":[0,149,254,0,0,0,109,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1156,"weaponDamageMax":1734,"weaponSpeed":2.4,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1156,"weaponDamageMax":1734,"stats":{"1":149,"2":254,"6":109,"7":97},"isBase":true}}}, +{"id":51946,"name":"Warmace of Menethil","icon":"inv_mace_116","type":13,"weaponType":4,"handType":4,"stats":[149,0,259,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2,2],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"weaponSpeed":3.6,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"stats":{"0":149,"2":259,"6":103,"7":103},"isBase":true}}}, +{"id":51947,"name":"Troggbane, Axe of the Frostborne King","icon":"inv_axe_113","type":13,"weaponType":1,"handType":2,"stats":[66,0,111,0,0,0,0,0,0,50,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":141,"weaponDamageMin":518,"weaponDamageMax":964,"weaponSpeed":1.6,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4812,"otherName":"The Lich King"}}],"scalingOptions":{"271":{"randPropPoints":141,"weaponDamageMin":518,"weaponDamageMax":964,"stats":{"0":66,"2":111,"9":50,"10":39},"isBase":true}}}, +{"id":51951,"name":"Pyrium Band","icon":"inv_jewelry_ring_11","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":51952,"name":"Pyrium Band","icon":"inv_jewelry_ring_10","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":51953,"name":"Pyrium Band","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":51958,"name":"Pristine Glowbear Pelt","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":108,"ilvl":167,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"167":{"randPropPoints":108,"stats":{"22":870},"isBase":true}}}, +{"id":51986,"name":"Stalwart Wrap","icon":"inv_belt_23","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"22":1177},"isBase":true}}}, +{"id":51988,"name":"Stalwart Handguards","icon":"inv_gauntlets_23","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":86,"ilvl":174,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"174":{"randPropPoints":86,"stats":{"22":1308},"isBase":true}}}, +{"id":52199,"name":"Figurine - Demon Panther","icon":"inv_jewelcrafting_blackpearlpanther","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"weaponSpeed":2.2,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"5":285},"isBase":true}}}, +{"id":52306,"name":"Jasper Ring","icon":"inv_misc_stonering1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":181,"ilvl":285,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"285":{"randPropPoints":181,"isBase":true}}}, +{"id":52307,"name":"Alicite Pendant","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"isBase":true}}}, +{"id":52308,"name":"Hessonite Band","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":52309,"name":"Nightstone Choker","icon":"inv_misc_stonenecklace","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":52310,"name":"Jasper Ring","icon":"inv_misc_stonering1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":52311,"name":"Jasper Ring","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"isBase":true}}}, +{"id":52312,"name":"Alicite Pendant","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":52313,"name":"Alicite Pendant","icon":"inv_jewelry_necklace_33","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":52314,"name":"Nightstone Choker","icon":"inv_misc_stonenecklace","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"isBase":true}}}, +{"id":52315,"name":"Choker of Night","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"isBase":true}}}, +{"id":52316,"name":"Hessonite Band","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"isBase":true}}}, +{"id":52317,"name":"Hessonite Band","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":263,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"isBase":true}}}, +{"id":52318,"name":"Band of Blades","icon":"inv_jewelry_ring_84","type":11,"stats":[0,138,252,0,0,97,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":138,"2":252,"5":97,"6":116},"isBase":true}}}, +{"id":52319,"name":"Ring of Warring Elements","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,252,143,0,0,101,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":143,"6":101,"11":104},"isBase":true}}}, +{"id":52320,"name":"Elementium Moebius Band","icon":"inv_jewelry_ring_69","type":11,"stats":[148,0,252,0,0,0,0,0,0,128,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":148,"2":252,"9":128,"11":65},"isBase":true}}}, +{"id":52321,"name":"Entwined Elementium Choker","icon":"inv_misc_thornnecklace","type":2,"stats":[0,148,252,0,0,0,65,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":148,"2":252,"6":65,"7":128},"isBase":true}}}, +{"id":52322,"name":"Eye of Many Deaths","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,252,128,0,0,0,114,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":128,"7":114,"11":109},"isBase":true}}}, +{"id":52323,"name":"Elementium Guardian","icon":"inv_jewelry_necklace_32","type":2,"stats":[148,0,252,0,0,0,0,0,96,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":148,"2":252,"8":96,"9":107},"isBase":true}}}, +{"id":52348,"name":"Elementium Destroyer's Ring","icon":"inv_jewelry_ring_70","type":11,"stats":[0,148,252,0,0,0,89,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":148,"2":252,"6":89,"11":114},"isBase":true}}}, +{"id":52350,"name":"Brazen Elementium Medallion","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,138,252,0,0,0,112,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":138,"2":252,"6":112,"7":102},"isBase":true}}}, +{"id":52351,"name":"Figurine - King of Boars","icon":"inv_jewelcrafting_goldenboar","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"weaponSpeed":2.2,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":52352,"name":"Figurine - Earthen Guardian","icon":"item_earthenmight","type":12,"stats":[0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"weaponSpeed":2.2,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":427},"isBase":true}}}, +{"id":52353,"name":"Figurine - Jeweled Serpent","icon":"inv_jewelcrafting_jadeserpent","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"weaponSpeed":2.2,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"3":285},"isBase":true}}}, +{"id":52354,"name":"Figurine - Dream Owl","icon":"inv_jewelcrafting_jadeowl","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"weaponSpeed":2.2,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"3":285},"isBase":true}}}, +{"id":52492,"name":"Carnelian Spikes","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,99,148,0,0,69,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"weaponDamageMin":1137,"weaponDamageMax":2113,"weaponSpeed":2.6,"ilvl":317,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"317":{"randPropPoints":188,"weaponDamageMin":1137,"weaponDamageMax":2113,"stats":{"1":99,"2":148,"5":69,"6":63},"isBase":true}}}, +{"id":52493,"name":"The Perforator","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,95,172,0,0,0,87,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"1":95,"2":172,"6":87,"11":38},"isBase":true}}}, +{"id":52569,"name":"Ashen Band of Might","icon":"inv_jewelry_ring_81","type":11,"stats":[80,0,120,0,0,53,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":80,"2":120,"5":53,"6":53},"isBase":true}}}, +{"id":52570,"name":"Ashen Band of Greater Might","icon":"inv_jewelry_ring_81","type":11,"stats":[86,0,129,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":164,"ilvl":259,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"259":{"randPropPoints":164,"stats":{"0":86,"2":129,"5":57,"6":57},"isBase":true}}}, +{"id":52571,"name":"Ashen Band of Unmatched Might","icon":"inv_jewelry_ring_81","type":11,"stats":[85,0,131,0,0,57,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":178,"ilvl":268,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"268":{"randPropPoints":178,"stats":{"0":85,"2":131,"5":57,"6":57},"isBase":true}}}, +{"id":52572,"name":"Ashen Band of Endless Might","icon":"inv_jewelry_ring_81","type":11,"stats":[85,0,144,0,0,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":194,"stats":{"0":85,"2":144,"5":59,"6":59},"isBase":true}}}, +{"id":52694,"name":"Cataclysm Gloves","icon":"inv_gauntlets_12","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":658},"isBase":true}}}, +{"id":52695,"name":"Cataclysm Chest","icon":"inv_chest_chain_11","type":5,"armorType":1,"stats":[100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1052,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"0":100,"22":1052},"isBase":true}}}, +{"id":52696,"name":"Cataclysm Cloak","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":526},"isBase":true}}}, +{"id":52697,"name":"Cataclysm Boots","icon":"inv_boots_09","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":761},"isBase":true}}}, +{"id":52698,"name":"Cataclysm Ring","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"isBase":true}}}, +{"id":52699,"name":"Cataclysm Helmet","icon":"inv_helmet_119","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":855},"isBase":true}}}, +{"id":52700,"name":"Cataclysm Legs","icon":"inv_pants_plate_05","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":969},"isBase":true}}}, +{"id":52701,"name":"Cataclysm Neck","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"isBase":true}}}, +{"id":52702,"name":"Cataclysm Shield","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":9209},"isBase":true}}}, +{"id":52703,"name":"Cataclysm Shoulders","icon":"inv_shoulder_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":789},"isBase":true}}}, +{"id":52704,"name":"Cataclysm Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,592,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":592},"isBase":true}}}, +{"id":52705,"name":"Cataclysm Bracers","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":460},"isBase":true}}}, +{"id":52711,"name":"Cataclysm Gloves (NO LEVEL REQ)","icon":"inv_gauntlets_12","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,658,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":300,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"stats":{"22":658},"isBase":true}}}, +{"id":52999,"name":"Art Template Cloth Chest - Robe_Common_B_02 - Blue","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":53000,"name":"Art Template Cloth Legs - Robe_Common_B_02 - Blue","icon":"inv_pants_cloth_42","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":479},"isBase":true}}}, +{"id":53001,"name":"Art Template Cloth Head - Robe_Common_B_02 - Blue","icon":"inv_helmet_186","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":445},"isBase":true}}}, +{"id":53002,"name":"Art Template Cloth Hand - Robe_Common_B_02 - Blue","icon":"inv_gauntlets_118","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":342},"isBase":true}}}, +{"id":53003,"name":"Art Template Cloth Robe - Robe_Common_B_02 - Blue","icon":"inv_chest_cloth_88","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":53004,"name":"Art Template Cloth Wrist - Robe_Common_B_02 - Blue","icon":"inv_bracer_76","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":240},"isBase":true}}}, +{"id":53005,"name":"Art Template Cloth Shoulder - Robe_Common_B_02 - Blue","icon":"inv_shoulder_146","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":411},"isBase":true}}}, +{"id":53006,"name":"Art Template Cloth Boot - Robe_Common_B_02 - Blue","icon":"inv_boots_cloth_35","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":377},"isBase":true}}}, +{"id":53007,"name":"Art Template Cloth Belt - Robe_Common_B_02 - Blue","icon":"inv_belt_97","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":308},"isBase":true}}}, +{"id":53103,"name":"Baltharus' Gift","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,85,125,0,0,0,57,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":162,"stats":{"1":85,"2":125,"6":57,"8":41},"isBase":true}}}, +{"id":53110,"name":"Zarithrian's Offering","icon":"item_icecrownringb","type":11,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":57,"7":49},"isBase":true}}}, +{"id":53111,"name":"Scion's Treads","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[114,0,158,0,0,0,0,0,0,74,52,0,0,0,0,0,0,0,0,0,0,0,1775,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"0":114,"2":158,"9":74,"10":52,"22":1775},"isBase":true}}}, +{"id":53112,"name":"Bracers of the Heir","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[77,0,128,0,0,0,57,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1129,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":162,"stats":{"0":77,"2":128,"6":57,"7":49,"22":1129},"isBase":true}}}, +{"id":53113,"name":"Twilight Scale Shoulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,98,170,0,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1419,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"1":98,"2":170,"6":76,"7":60,"22":1419},"isBase":true}}}, +{"id":53114,"name":"Gloaming Sark","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,153,182,0,0,0,94,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1361,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":291,"stats":{"1":153,"2":182,"6":94,"8":86,"22":1361},"isBase":true}}}, +{"id":53115,"name":"Abduction's Cover","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,122,77,48,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,535,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":122,"3":77,"4":48,"7":57,"22":535},"isBase":true}}}, +{"id":53116,"name":"Saviana's Tribute","icon":"item_icecrownringc","type":11,"stats":[0,0,121,77,0,49,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":162,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":162,"stats":{"2":121,"3":77,"5":49,"6":57},"isBase":true}}}, +{"id":53117,"name":"Changeling Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,162,98,0,0,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,851,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":68,"7":68,"22":851},"isBase":true}}}, +{"id":53118,"name":"Misbegotten Belt","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,162,98,0,50,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,602,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"5":50,"6":81,"22":602},"isBase":true}}}, +{"id":53119,"name":"Boots of Divided Being","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,162,98,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1301,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":76,"7":60,"22":1301},"isBase":true}}}, +{"id":53121,"name":"Surrogate Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,162,98,0,0,76,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1452,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":216,"ilvl":258,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":3,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"258":{"randPropPoints":216,"stats":{"2":162,"3":98,"6":76,"7":60,"22":1452},"isBase":true}}}, +{"id":53125,"name":"Apocalypse's Advance","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[112,0,192,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1860,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"0":112,"2":192,"5":70,"6":86,"22":1860},"isBase":true}}}, +{"id":53126,"name":"Umbrage Armbands","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,96,120,0,0,0,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,637,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"1":96,"2":120,"6":64,"7":64,"22":637},"isBase":true}}}, +{"id":53127,"name":"Returning Footfalls","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,128,152,0,0,0,112,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"1":128,"2":152,"6":112,"7":51,"22":1375},"isBase":true}}}, +{"id":53129,"name":"Treads of Impending Resurrection","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[128,0,180,0,0,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,1860,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"0":128,"2":180,"9":85,"10":59,"22":1860},"isBase":true}}}, +{"id":53132,"name":"Penumbra Pendant","icon":"inv_jewelry_necklace_48","type":2,"stats":[88,0,144,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"0":88,"2":144,"6":64,"7":56},"isBase":true}}}, +{"id":53133,"name":"Signet of Twilight","icon":"item_icecrownringc","type":11,"stats":[0,96,144,0,0,48,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"1":96,"2":144,"5":48,"6":64},"isBase":true}}}, +{"id":53134,"name":"Phaseshifter's Bracers","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,137,88,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,637,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":137,"3":88,"6":64,"7":56,"22":637},"isBase":true}}}, +{"id":53486,"name":"Bracers of Fiery Night","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,137,88,0,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":137,"3":88,"6":56,"7":64,"22":507},"isBase":true}}}, +{"id":53487,"name":"Foreshadow Steps","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,183,112,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1860,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"6":70,"7":86,"22":1860},"isBase":true}}}, +{"id":53488,"name":"Split Shape Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,183,112,0,0,70,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"6":70,"7":86,"22":1125},"isBase":true}}}, +{"id":53489,"name":"Cloak of Burning Dusk","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,137,88,0,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":137,"3":88,"6":56,"7":64,"22":580},"isBase":true}}}, +{"id":53490,"name":"Ring of Phased Regeneration","icon":"item_icecrownringb","type":11,"stats":[0,0,144,88,64,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":144,"3":88,"4":64,"7":56},"isBase":true}}}, +{"id":53491,"name":"Twilight Offering Bands","icon":"inv_bracer_28","type":6,"armorType":4,"stats":[80,0,108,0,0,0,0,0,0,63,34,0,0,0,0,0,0,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":80,"2":108,"9":63,"10":34,"22":1111},"isBase":true}}}, +{"id":53492,"name":"Ring of the Three-Headed Beast","icon":"inv_jewelry_ring_ahnqiraj_02","type":11,"stats":[0,0,114,72,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"phase":5,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"6":53,"7":45},"isBase":true}}}, +{"id":53493,"name":"Sacrificial Mail","icon":"inv_pants_mail_09","type":9,"armorType":3,"stats":[0,144,170,0,0,0,112,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1621,0,0,0,0],"gemSockets":[3,4,2],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":170,"6":112,"7":60,"22":1621},"isBase":true}}}, +{"id":53494,"name":"Girdle of Oblation","icon":"inv_belt_44b","type":8,"armorType":4,"stats":[0,0,152,91,55,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1429,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":55,"7":71,"22":1429},"isBase":true}}}, +{"id":53495,"name":"Old Gods' Blessing","icon":"inv_jewelry_ring_26","type":11,"stats":[72,0,120,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":53,"7":45},"isBase":true}}}, +{"id":53496,"name":"Barrier of the Earth Princess","icon":"inv_shield_66","type":13,"weaponType":7,"handType":3,"stats":[80,0,108,0,0,0,0,0,0,42,45,0,0,0,0,0,0,0,0,0,0,0,7351,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":80,"2":108,"9":42,"10":45,"22":7351},"isBase":true}}}, +{"id":53497,"name":"Zaetar's Deathshroud","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,114,72,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"5":45,"6":53,"22":517},"isBase":true}}}, +{"id":53498,"name":"Earth Bride's Gown","icon":"inv_chest_cloth_65","type":5,"armorType":1,"stats":[0,0,205,120,88,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1034,0,0,0,0],"gemSockets":[3,2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"2":205,"3":120,"4":88,"6":80,"22":1034},"isBase":true}}}, +{"id":53499,"name":"Amulet of the Centauri","icon":"inv_jewelry_necklace_22","type":2,"stats":[0,72,115,0,0,0,47,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":115,"6":47,"7":49},"isBase":true}}}, +{"id":53501,"name":"Sulfuron's Favor","icon":"inv_jewelry_ring_12","type":11,"stats":[0,72,120,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":72,"2":120,"6":53,"7":45},"isBase":true}}}, +{"id":53502,"name":"Flamelash Amulet","icon":"inv_jewelry_necklace_33","type":2,"stats":[72,0,120,0,0,0,53,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"0":72,"2":120,"6":53,"8":45},"isBase":true}}}, +{"id":53503,"name":"Pendant of Burning Spirits","icon":"inv_spiritshard_02","type":2,"stats":[0,0,114,72,45,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"4":45,"6":53},"isBase":true}}}, +{"id":53504,"name":"Flamewaker's Treads","icon":"inv_boots_leather01","type":10,"armorType":2,"stats":[0,0,152,91,55,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"4":55,"7":71,"22":910},"isBase":true}}}, +{"id":53505,"name":"Salamander Skin","icon":"inv_chest_plate23","type":5,"armorType":4,"stats":[144,0,203,0,0,0,0,0,0,113,68,0,0,0,0,0,0,0,0,0,0,0,2540,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"0":144,"2":203,"9":113,"10":68,"22":2540},"isBase":true}}}, +{"id":53506,"name":"Cloak of Mocking Winds","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[0,80,108,0,0,0,53,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"1":80,"2":108,"6":53,"7":45,"22":517},"isBase":true}}}, +{"id":53507,"name":"Sandfury Sandals","icon":"inv_boots_cloth_03","type":10,"armorType":1,"stats":[0,0,152,91,0,0,55,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":203,"stats":{"2":152,"3":91,"6":55,"7":71,"22":711},"isBase":true}}}, +{"id":53508,"name":"Pulmonary Casing","icon":"inv_chest_leather_23","type":5,"armorType":2,"stats":[0,144,191,0,0,0,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"gemSockets":[2,4,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":273,"stats":{"1":144,"2":191,"6":80,"7":80,"22":1324},"isBase":true}}}, +{"id":53509,"name":"Amulet of Evil Winds","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,114,72,0,0,45,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"6":45,"7":53},"isBase":true}}}, +{"id":54471,"name":"Deathsilk Belt","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,198,132,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"6":88,"7":88,"22":616},"isBase":true}}}, +{"id":54472,"name":"Deathsilk Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,282,188,0,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"295":{"randPropPoints":357,"stats":{"2":282,"3":188,"5":125,"6":125,"22":964},"isBase":true}}}, +{"id":54473,"name":"Deathsilk Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,148,99,0,0,0,68,0,0,0,66,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"289":{"randPropPoints":188,"stats":{"2":148,"3":99,"7":68,"11":66,"22":479},"isBase":true}}}, +{"id":54474,"name":"Deathsilk Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,198,132,0,0,88,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"6":88,"7":88,"22":822},"isBase":true}}}, +{"id":54475,"name":"Deathsilk Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,343,229,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"5":153,"6":153,"22":1125},"isBase":true}}}, +{"id":54476,"name":"Deathsilk Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,282,188,0,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"295":{"randPropPoints":357,"stats":{"2":282,"3":188,"5":125,"6":125,"22":895},"isBase":true}}}, +{"id":54477,"name":"Deathsilk Boots","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,198,132,0,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"5":90,"7":90,"22":753},"isBase":true}}}, +{"id":54478,"name":"Deathsilk Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,255,170,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Deathspeaker","setId":945,"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":113,"11":113,"22":703},"isBase":true}}}, +{"id":54479,"name":"Spiritmend Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,277,185,123,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"4":123,"7":123,"22":852},"isBase":true}}}, +{"id":54480,"name":"Spiritmend Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,157,105,0,0,0,70,0,0,0,70,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"295":{"randPropPoints":199,"stats":{"2":157,"3":105,"7":70,"11":70,"22":482},"isBase":true}}}, +{"id":54481,"name":"Spiritmend Belt","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,210,140,93,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"295":{"randPropPoints":266,"stats":{"2":210,"3":140,"4":93,"7":93,"22":620},"isBase":true}}}, +{"id":54482,"name":"Spiritmend Boots","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"6":97,"7":97,"22":761},"isBase":true}}}, +{"id":54483,"name":"Spiritmend Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,296,197,0,0,131,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"300":{"randPropPoints":375,"stats":{"2":296,"3":197,"6":131,"7":131,"22":969},"isBase":true}}}, +{"id":54484,"name":"Spiritmend Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"4":97,"11":97,"22":692},"isBase":true}}}, +{"id":54485,"name":"Spiritmend Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"6":178,"11":178,"22":930},"isBase":true}}}, +{"id":54486,"name":"Spiritmend Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,312,208,0,0,139,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Spiritmender","setId":944,"scalingOptions":{"306":{"randPropPoints":396,"stats":{"2":312,"3":208,"6":139,"7":139,"22":1114},"isBase":true}}}, +{"id":54487,"name":"Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"6":140,"16":140,"22":864},"isBase":true}}}, +{"id":54488,"name":"Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"11":105,"16":105,"22":504},"isBase":true}}}, +{"id":54489,"name":"Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"6":140,"16":140,"22":648},"isBase":true}}}, +{"id":54490,"name":"Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"11":140,"16":140,"22":792},"isBase":true}}}, +{"id":54491,"name":"Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"7":189,"16":189,"22":1008},"isBase":true}}}, +{"id":54492,"name":"Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"11":140,"16":140,"22":720},"isBase":true}}}, +{"id":54493,"name":"Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,425,283,0,0,189,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"6":189,"16":189,"22":936},"isBase":true}}}, +{"id":54494,"name":"Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"7":189,"16":189,"22":1151},"isBase":true}}}, +{"id":54495,"name":"Emberfire Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,425,283,189,0,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,1151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"4":189,"16":189,"22":1151},"isBase":true}}}, +{"id":54496,"name":"Emberfire Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,936,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"7":189,"16":189,"22":936},"isBase":true}}}, +{"id":54497,"name":"Emberfire Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,720,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":140,"16":140,"22":720},"isBase":true}}}, +{"id":54498,"name":"Emberfire Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,425,283,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,1008,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"11":189,"16":189,"22":1008},"isBase":true}}}, +{"id":54499,"name":"Emberfire Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,792,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":140,"16":140,"22":792},"isBase":true}}}, +{"id":54500,"name":"Emberfire Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,648,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"11":140,"16":140,"22":648},"isBase":true}}}, +{"id":54501,"name":"Emberfire Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,237,158,0,0,0,105,0,0,0,0,0,0,0,0,105,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"16":105,"22":504},"isBase":true}}}, +{"id":54502,"name":"Emberfire Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,316,210,140,0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,864,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"4":140,"16":140,"22":864},"isBase":true}}}, +{"id":54503,"name":"Dreamless Belt","icon":"inv_belt_robe_raidmage_i_01","type":8,"armorType":1,"stats":[0,0,380,233,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"5":149,"11":169,"22":704},"isBase":true}}}, +{"id":54504,"name":"Belt of the Depths","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,152,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":152,"7":165,"22":704},"isBase":true}}}, +{"id":54505,"name":"Breeches of Mended Nightmares","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,321,0,0,214,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":321,"6":214,"7":216,"22":1094},"isBase":true}}}, +{"id":54506,"name":"Flame-Ascended Pantaloons","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,512,321,0,0,185,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":321,"6":185,"11":241,"22":1094},"isBase":true}}}, +{"id":54542,"name":"Robes of Restored Hope","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,296,197,0,131,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"2":296,"3":197,"5":131,"6":131,"22":1108},"isBase":true}}}, +{"id":54543,"name":"Orca-Tooth Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,146,219,0,0,111,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"1":146,"2":219,"5":111,"11":74,"22":978},"isBase":true}}}, +{"id":54544,"name":"Scrapped Spaulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[146,0,219,0,0,0,86,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":146,"2":219,"6":86,"8":105,"22":2051},"isBase":true}}}, +{"id":54545,"name":"Adarrah's Semiprecious Signet","icon":"inv_jewelry_ring_87","type":11,"stats":[0,110,165,0,0,0,73,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"1":110,"2":165,"6":73,"8":73},"isBase":true}}}, +{"id":54546,"name":"Adarrah's Spare Choker","icon":"inv_jewelry_necklace_43","type":2,"stats":[0,0,165,110,0,0,0,84,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"2":165,"3":110,"7":84,"11":56},"isBase":true}}}, +{"id":54547,"name":"Cracked Jewelry Box","icon":"inv_box_04","type":12,"stats":[185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":185},"isBase":true}}}, +{"id":54548,"name":"Waterlogged Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,296,197,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"2":296,"3":197,"7":125,"22":1244},"isBase":true}}}, +{"id":54549,"name":"Saline-Soaked Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,146,219,0,0,105,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"1":146,"2":219,"5":105,"6":86,"22":1495},"isBase":true}}}, +{"id":54550,"name":"Hood of Vigorous Defense","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,296,197,0,0,0,141,0,0,0,115,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"2":296,"3":197,"7":141,"11":115,"22":900},"isBase":true}}}, +{"id":54551,"name":"Defiant Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,165,110,0,0,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"2":165,"3":110,"6":73,"7":73,"22":872},"isBase":true}}}, +{"id":54552,"name":"Retaliation Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[146,0,219,0,0,97,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":146,"2":219,"5":97,"7":97,"22":1709},"isBase":true}}}, +{"id":54553,"name":"Kliklak's Fearsome Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[171,0,257,0,0,0,114,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"stats":{"0":171,"2":257,"6":114,"11":114},"isBase":true}}}, +{"id":54554,"name":"Bejeweled Ship's Wheel","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[0,0,165,110,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"2":165,"3":110,"7":75,"22":9209},"isBase":true}}}, +{"id":54556,"name":"Abduction's Cover","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,137,89,56,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":137,"3":89,"4":56,"7":64,"22":580},"isBase":true}}}, +{"id":54557,"name":"Baltharus' Gift","icon":"inv_jewelry_amulet_06","type":2,"stats":[0,96,141,0,0,0,64,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"1":96,"2":141,"6":64,"8":48},"isBase":true}}}, +{"id":54558,"name":"Boots of Divided Being","icon":"inv_boots_mail_10","type":10,"armorType":3,"stats":[0,0,183,112,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1375,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"6":86,"7":70,"22":1375},"isBase":true}}}, +{"id":54559,"name":"Bracers of the Heir","icon":"inv_bracer_42","type":6,"armorType":4,"stats":[88,0,144,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1184,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"0":88,"2":144,"6":64,"7":56,"22":1184},"isBase":true}}}, +{"id":54560,"name":"Changeling Gloves","icon":"inv_gauntlets_83","type":7,"armorType":2,"stats":[0,0,183,112,0,0,78,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"6":78,"7":78,"22":910},"isBase":true}}}, +{"id":54561,"name":"Gloaming Sark","icon":"inv_chest_leather_22","type":5,"armorType":2,"stats":[0,173,211,0,0,0,107,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,1457,0,0,0,0],"gemSockets":[4,2,3],"socketBonus":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":329,"stats":{"1":173,"2":211,"6":107,"8":99,"22":1457},"isBase":true}}}, +{"id":54562,"name":"Misbegotten Belt","icon":"inv_belt_66green","type":8,"armorType":1,"stats":[0,0,183,112,0,59,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"5":59,"6":92,"22":652},"isBase":true}}}, +{"id":54563,"name":"Saviana's Tribute","icon":"item_icecrownringc","type":11,"stats":[0,0,137,88,0,56,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"2":137,"3":88,"5":56,"6":64},"isBase":true}}}, +{"id":54564,"name":"Scion's Treads","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[128,0,180,0,0,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,1860,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"0":128,"2":180,"9":85,"10":59,"22":1860},"isBase":true}}}, +{"id":54565,"name":"Surrogate Belt","icon":"inv_belt_70","type":8,"armorType":4,"stats":[0,0,183,112,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1522,0,0,0,0],"gemSockets":[3,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"2":183,"3":112,"6":86,"7":70,"22":1522},"isBase":true}}}, +{"id":54566,"name":"Twilight Scale Shoulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,112,192,0,0,0,86,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1500,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"1":112,"2":192,"6":86,"7":70,"22":1500},"isBase":true}}}, +{"id":54567,"name":"Zarithrian's Offering","icon":"item_icecrownringb","type":11,"stats":[88,0,144,0,0,0,64,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":183,"ilvl":271,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":4,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":183,"stats":{"0":88,"2":144,"6":64,"7":56},"isBase":true}}}, +{"id":54569,"name":"Sharpened Twilight Scale","icon":"inv_misc_rubysanctum4","type":12,"stats":[0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"6":163},"isBase":true}}}, +{"id":54571,"name":"Petrified Twilight Scale","icon":"inv_misc_rubysanctum3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"23":651},"isBase":true}}}, +{"id":54572,"name":"Charred Twilight Scale","icon":"inv_misc_rubysanctum2","type":12,"stats":[0,0,0,0,0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"7":163},"isBase":true}}}, +{"id":54573,"name":"Glowing Twilight Scale","icon":"inv_misc_rubysanctum1","type":12,"stats":[0,0,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":244,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":5,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"271":{"randPropPoints":244,"stats":{"3":163},"isBase":true}}}, +{"id":54576,"name":"Signet of Twilight","icon":"item_icecrownringc","type":11,"stats":[0,109,163,0,0,57,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"1":109,"2":163,"5":57,"6":73},"isBase":true}}}, +{"id":54577,"name":"Returning Footfalls","icon":"inv_boots_mail_06","type":10,"armorType":3,"stats":[0,145,172,0,0,0,129,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1300,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"1":145,"2":172,"6":129,"7":60,"22":1300},"isBase":true}}}, +{"id":54578,"name":"Apocalypse's Advance","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[145,0,218,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"0":145,"2":218,"5":81,"6":97,"22":1762},"isBase":true}}}, +{"id":54579,"name":"Treads of Impending Resurrection","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[145,0,206,0,0,0,0,0,0,99,68,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[3,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"0":145,"2":206,"9":99,"10":68,"22":1762},"isBase":true}}}, +{"id":54580,"name":"Umbrage Armbands","icon":"inv_bracer_41","type":6,"armorType":2,"stats":[0,109,139,0,0,0,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[2],"socketBonus":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"1":109,"2":139,"6":73,"7":73,"22":601},"isBase":true}}}, +{"id":54581,"name":"Penumbra Pendant","icon":"inv_jewelry_necklace_48","type":2,"stats":[101,0,163,0,0,0,73,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"0":101,"2":163,"6":73,"7":65},"isBase":true}}}, +{"id":54582,"name":"Bracers of Fiery Night","icon":"inv_bracer_45","type":6,"armorType":1,"stats":[0,0,155,101,0,0,65,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"2":155,"3":101,"6":65,"7":73,"22":477},"isBase":true}}}, +{"id":54583,"name":"Cloak of Burning Dusk","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,155,101,0,0,65,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,545,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"2":155,"3":101,"6":65,"7":73,"22":545},"isBase":true}}}, +{"id":54584,"name":"Phaseshifter's Bracers","icon":"inv_bracer_40","type":6,"armorType":2,"stats":[0,0,155,101,0,0,73,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,601,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"2":155,"3":101,"6":73,"7":65,"22":601},"isBase":true}}}, +{"id":54585,"name":"Ring of Phased Regeneration","icon":"item_icecrownringb","type":11,"stats":[0,0,163,101,73,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":207,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":207,"stats":{"2":163,"3":101,"4":73,"7":65},"isBase":true}}}, +{"id":54586,"name":"Foreshadow Steps","icon":"inv_boots_plate_14","type":10,"armorType":4,"stats":[0,0,207,129,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1762,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"2":207,"3":129,"6":81,"7":97,"22":1762},"isBase":true}}}, +{"id":54587,"name":"Split Shape Belt","icon":"inv_belt_83","type":8,"armorType":3,"stats":[0,0,207,129,0,0,81,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"2":207,"3":129,"6":81,"7":97,"22":1064},"isBase":true}}}, +{"id":54588,"name":"Charred Twilight Scale","icon":"inv_misc_rubysanctum2","type":12,"stats":[0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"7":184},"isBase":true}}}, +{"id":54589,"name":"Glowing Twilight Scale","icon":"inv_misc_rubysanctum1","type":12,"stats":[0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"3":184},"isBase":true}}}, +{"id":54590,"name":"Sharpened Twilight Scale","icon":"inv_misc_rubysanctum4","type":12,"stats":[0,0,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"6":184},"isBase":true}}}, +{"id":54591,"name":"Petrified Twilight Scale","icon":"inv_misc_rubysanctum3","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,736,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":276,"ilvl":284,"quality":4,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":3,"sources":[{"drop":{"difficulty":6,"zoneId":4987,"otherName":"Halion"}}],"scalingOptions":{"284":{"randPropPoints":276,"stats":{"23":736},"isBase":true}}}, +{"id":54592,"name":"Sul'lithuz Scale Bracers","icon":"inv_bracer_60","type":6,"armorType":3,"stats":[0,0,114,72,0,0,48,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":152,"ilvl":251,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"251":{"randPropPoints":152,"stats":{"2":114,"3":72,"6":48,"7":49,"22":810},"isBase":true}}}, +{"id":54801,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[67,0,100,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,461,140,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"9":53,"22":461,"23":140},"isBase":true}}}, +{"id":54802,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,67,100,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":67,"2":100,"6":51,"7":34,"22":461},"isBase":true}}}, +{"id":54803,"name":"The Frost Lord's Battle Shroud","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[67,0,100,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"0":67,"2":100,"6":45,"8":45,"22":461},"isBase":true}}}, +{"id":54804,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,96,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":67,"6":45,"7":45,"22":461},"isBase":true}}}, +{"id":54805,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,96,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":96,"3":67,"4":45,"7":45,"22":461},"isBase":true}}}, +{"id":54806,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,261,0,0,0,77,77,0,0,0,0,0,0,690,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":523,"weaponDamageMax":786,"weaponSpeed":3.2,"ilvl":232,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":2,"sources":[{"drop":{"difficulty":1,"npcId":25740,"zoneId":3717}}],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":523,"weaponDamageMax":786,"stats":{"2":261,"6":77,"7":77,"14":690},"isBase":true}}}, +{"id":54850,"name":"Hardened Obsidium Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[99,0,148,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"0":99,"2":148,"8":66,"9":66,"22":1144},"isBase":true}}}, +{"id":54852,"name":"Hardened Obsidium Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[132,0,198,0,0,0,0,0,0,0,88,88,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"10":88,"11":88,"22":1634},"isBase":true}}}, +{"id":54853,"name":"Hardened Obsidium Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[132,0,198,0,0,0,0,0,0,88,0,88,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"9":88,"11":88,"22":1471},"isBase":true}}}, +{"id":54854,"name":"Hardened Obsidium Boots","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[132,0,198,0,0,88,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"5":88,"10":88,"22":1798},"isBase":true}}}, +{"id":54876,"name":"Hardened Obsidium Shoulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[158,0,237,0,0,0,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"weaponSpeed":2.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"0":158,"2":237,"8":105,"9":105,"22":2119},"isBase":true}}}, +{"id":55022,"name":"Hardened Obsidium Legguards","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[178,0,267,0,0,0,0,0,0,119,0,119,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"0":178,"2":267,"9":119,"11":119,"22":2288},"isBase":true}}}, +{"id":55023,"name":"Hardened Obsidium Helm","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[212,0,319,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponSpeed":2.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":212,"2":319,"5":142,"10":142,"22":2296},"isBase":true}}}, +{"id":55024,"name":"Hardened Obsidium Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[178,0,267,0,0,119,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"0":178,"2":267,"5":119,"10":119,"22":2615},"isBase":true}}}, +{"id":55025,"name":"Redsteel Bracers","icon":"inv_bracer_63v1","type":6,"armorType":4,"stats":[99,0,148,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"0":99,"2":148,"6":66,"7":66,"22":1144},"isBase":true}}}, +{"id":55026,"name":"Redsteel Gauntlets","icon":"inv_gauntlets_107v1","type":7,"armorType":4,"stats":[132,0,198,0,0,0,0,88,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"7":88,"11":88,"22":1634},"isBase":true}}}, +{"id":55027,"name":"Redsteel Belt","icon":"inv_belt_86v1","type":8,"armorType":4,"stats":[170,0,255,0,0,0,0,0,113,0,0,113,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"weaponSpeed":2.6,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"8":113,"11":113,"22":1642},"isBase":true}}}, +{"id":55028,"name":"Redsteel Boots","icon":"inv_boots_plate_19v1","type":10,"armorType":4,"stats":[170,0,255,0,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"weaponSpeed":2.6,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"6":113,"11":113,"22":2007},"isBase":true}}}, +{"id":55029,"name":"Redsteel Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[146,0,219,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponSpeed":2.6,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":146,"2":219,"7":97,"8":97,"22":2051},"isBase":true}}}, +{"id":55030,"name":"Redsteel Legguards","icon":"inv_pants_plate_38v1","type":9,"armorType":4,"stats":[249,0,373,0,0,0,166,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,2649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponSpeed":1.8,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"0":249,"2":373,"6":166,"11":166,"22":2649},"isBase":true}}}, +{"id":55031,"name":"Redsteel Helm","icon":"inv_helmet_178v1","type":1,"armorType":4,"stats":[208,0,401,0,0,0,138,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"gemSockets":[1,2],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponSpeed":2.6,"ilvl":333,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":208,"2":401,"6":138,"8":158,"22":2542},"isBase":true}}}, +{"id":55032,"name":"Redsteel Breastplate","icon":"inv_chest_plate27v1","type":5,"armorType":4,"stats":[268,0,401,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":401,"7":178,"11":178,"22":3128},"isBase":true}}}, +{"id":55033,"name":"Stormforged Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,148,99,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"2":148,"3":99,"4":66,"6":66,"22":1144},"isBase":true}}}, +{"id":55034,"name":"Stormforged Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,237,158,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"weaponSpeed":2.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":105,"11":105,"22":1766},"isBase":true}}}, +{"id":55035,"name":"Stormforged Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"weaponSpeed":2.6,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":113,"7":113,"22":1642},"isBase":true}}}, +{"id":55036,"name":"Stormforged Boots","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,255,170,0,0,113,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"weaponSpeed":2.6,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":113,"7":113,"22":2007},"isBase":true}}}, +{"id":55037,"name":"Stormforged Shoulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,277,185,0,0,0,123,0,0,0,123,0,0,0,0,0,0,0,0,0,0,2271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"weaponSpeed":2.6,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"7":123,"11":123,"22":2271},"isBase":true}}}, +{"id":55038,"name":"Stormforged Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,373,249,166,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponSpeed":2.6,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"4":166,"6":166,"22":2649},"isBase":true}}}, +{"id":55039,"name":"Stormforged Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,401,268,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponSpeed":2.1,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"7":178,"11":178,"22":2542},"isBase":true}}}, +{"id":55040,"name":"Stormforged Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponSpeed":2.6,"ilvl":333,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"6":178,"11":178,"22":3128},"isBase":true}}}, +{"id":55041,"name":"Hardened Obsidium Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[99,0,148,0,0,0,0,0,66,0,66,0,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"0":99,"2":148,"8":66,"10":66,"22":8736},"isBase":true}}}, +{"id":55042,"name":"Stormforged Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,207,138,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponSpeed":2.6,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"2":207,"3":138,"6":92,"7":92,"22":11389},"isBase":true}}}, +{"id":55043,"name":"Decapitator's Razor","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,98,147,0,0,0,65,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"1":98,"2":147,"6":65,"11":65},"isBase":true}}}, +{"id":55044,"name":"Cold-Forged Shank","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,98,147,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":780,"weaponDamageMax":1449,"weaponSpeed":1.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":780,"weaponDamageMax":1449,"stats":{"1":98,"2":147,"5":65,"6":65},"isBase":true}}}, +{"id":55045,"name":"Fire-Etched Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,147,98,0,65,0,65,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":368,"weaponDamageMax":684,"weaponSpeed":1.7,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":368,"weaponDamageMax":684,"stats":{"2":147,"3":98,"5":65,"7":65,"14":1307},"isBase":true}}}, +{"id":55046,"name":"Lifeforce Hammer","icon":"inv_hammer_29","type":13,"weaponType":4,"handType":2,"stats":[0,0,147,98,65,0,0,0,0,0,0,65,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":455,"weaponDamageMax":845,"weaponSpeed":2.1,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":455,"weaponDamageMax":845,"stats":{"2":147,"3":98,"4":65,"11":65,"14":1307},"isBase":true}}}, +{"id":55052,"name":"Obsidium Executioner","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[229,0,343,0,0,0,153,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":2046,"weaponDamageMax":3800,"weaponSpeed":3.5,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":2046,"weaponDamageMax":3800,"stats":{"0":229,"2":343,"6":153,"11":153},"isBase":true}}}, +{"id":55058,"name":"Hardened Elementium Hauberk","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[321,0,512,0,0,0,0,0,228,0,208,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponSpeed":3.5,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":321,"2":512,"8":228,"10":208,"22":3426},"isBase":true}}}, +{"id":55059,"name":"Hardened Elementium Girdle","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,0,0,0,0,169,0,149,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"9":169,"11":149,"22":1927},"isBase":true}}}, +{"id":55060,"name":"Elementium Deathplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[321,0,512,0,0,0,228,0,0,0,0,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":321,"2":512,"6":228,"11":208,"22":3426},"isBase":true}}}, +{"id":55061,"name":"Elementium Girdle of Pain","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":169,"7":149,"22":1927},"isBase":true}}}, +{"id":55062,"name":"Light Elementium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,321,0,0,208,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":321,"6":208,"7":228,"22":3426},"isBase":true}}}, +{"id":55063,"name":"Light Elementium Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"11":169,"22":1927},"isBase":true}}}, +{"id":55064,"name":"Elementium Spellblade","icon":"inv_knife_1h_grimbatolraid_d_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,194,129,0,86,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"5":86,"6":86,"14":1729},"isBase":true}}}, +{"id":55065,"name":"Elementium Hammer","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,194,129,86,0,0,0,0,0,0,86,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":544,"weaponDamageMax":1012,"weaponSpeed":1.9,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":544,"weaponDamageMax":1012,"stats":{"2":194,"3":129,"4":86,"11":86,"14":1729},"isBase":true}}}, +{"id":55066,"name":"Elementium Poleaxe","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,202,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2705,"weaponDamageMax":5025,"weaponSpeed":3.5,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2705,"weaponDamageMax":5025,"stats":{"1":302,"2":454,"6":202,"11":202},"isBase":true}}}, +{"id":55067,"name":"Elementium Bonesplitter","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"7":86,"8":86},"isBase":true}}}, +{"id":55068,"name":"Elementium Shank","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"stats":{"1":129,"2":194,"5":86,"7":86},"isBase":true}}}, +{"id":55069,"name":"Elementium Earthguard","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[170,0,286,0,0,117,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":170,"2":286,"5":117,"11":117,"22":11896},"isBase":true}}}, +{"id":55070,"name":"Elementium Stormshield","icon":"inv_shield_bwdraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,170,122,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":170,"4":122,"7":112,"22":11896},"isBase":true}}}, +{"id":55071,"name":"Bloodied Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[158,0,237,0,0,105,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"5":105,"16":105,"22":1402},"isBase":true}}}, +{"id":55072,"name":"Bloodied Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[210,0,316,0,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":210,"2":316,"7":140,"16":140,"22":2003},"isBase":true}}}, +{"id":55073,"name":"Bloodied Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[210,0,316,0,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"weaponSpeed":1.8,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":210,"2":316,"7":140,"16":140,"22":1803},"isBase":true}}}, +{"id":55074,"name":"Bloodied Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[210,0,316,0,0,140,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":210,"2":316,"5":140,"16":140,"22":2204},"isBase":true}}}, +{"id":55075,"name":"Bloodied Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[210,0,316,0,0,0,0,0,140,0,0,0,0,0,0,0,140,0,0,0,0,0,2404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":210,"2":316,"8":140,"16":140,"22":2404},"isBase":true}}}, +{"id":55076,"name":"Bloodied Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[283,0,425,0,0,189,0,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":283,"2":425,"5":189,"16":189,"22":2805},"isBase":true}}}, +{"id":55077,"name":"Bloodied Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[283,0,425,0,0,0,0,0,189,0,0,0,0,0,0,0,189,0,0,0,0,0,2605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":283,"2":425,"8":189,"16":189,"22":2605},"isBase":true}}}, +{"id":55078,"name":"Bloodied Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[283,0,425,0,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,3206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":283,"2":425,"11":189,"16":189,"22":3206},"isBase":true}}}, +{"id":55079,"name":"Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,237,158,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":105,"16":105,"22":1402},"isBase":true}}}, +{"id":55080,"name":"Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":140,"16":140,"22":2003},"isBase":true}}}, +{"id":55081,"name":"Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,316,210,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"weaponSpeed":1.9,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"6":140,"16":140,"22":1803},"isBase":true}}}, +{"id":55082,"name":"Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,316,210,0,0,0,0,0,0,0,140,0,0,0,0,140,0,0,0,0,0,2204,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"11":140,"16":140,"22":2204},"isBase":true}}}, +{"id":55083,"name":"Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,316,210,0,0,0,140,0,0,0,0,0,0,0,0,140,0,0,0,0,0,2404,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":140,"16":140,"22":2404},"isBase":true}}}, +{"id":55084,"name":"Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,425,283,0,0,189,0,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2805,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"6":189,"16":189,"22":2805},"isBase":true}}}, +{"id":55085,"name":"Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,425,283,0,0,0,189,0,0,0,0,0,0,0,0,189,0,0,0,0,0,2605,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"7":189,"16":189,"22":2605},"isBase":true}}}, +{"id":55086,"name":"Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,425,283,0,0,0,0,0,0,0,189,0,0,0,0,189,0,0,0,0,0,3206,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"11":189,"16":189,"22":3206},"isBase":true}}}, +{"id":55154,"name":"Rough Approximation Nuker Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,4191,2793,0,0,1860,1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":4191,"3":2793,"6":1860,"7":1860,"22":1128},"isBase":true}}}, +{"id":55155,"name":"Rough Approximation AGI DPS Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,2793,4191,0,0,0,1860,1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":2793,"2":4191,"6":1860,"7":1860,"22":1128},"isBase":true}}}, +{"id":55156,"name":"Rough Approximation STR Tank Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[2793,0,4191,0,0,0,0,0,1860,1860,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":2793,"2":4191,"8":1860,"9":1860,"22":1128},"isBase":true}}}, +{"id":55157,"name":"Rough Approximation STR DPS Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[2793,0,4191,0,0,0,1860,1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":2793,"2":4191,"6":1860,"7":1860,"22":1128},"isBase":true}}}, +{"id":55159,"name":"Rough Approximation Healer Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,4191,2793,1860,0,0,1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":4191,"3":2793,"4":1860,"7":1860,"22":1128},"isBase":true}}}, +{"id":55195,"name":"Wrasse Handwraps","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,158,237,0,0,0,80,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1280,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":80,"11":120,"22":1280},"isBase":true}}}, +{"id":55198,"name":"Aurelian Mitre","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,319,212,124,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":124,"11":152,"22":907},"isBase":true}}}, +{"id":55201,"name":"Entwined Nereis","icon":"inv_jewelry_ring_41","type":11,"stats":[90,0,178,0,0,60,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":90,"2":178,"5":60,"9":118},"isBase":true}}}, +{"id":55202,"name":"Periwinkle Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,177,118,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"7":79,"11":79,"22":558},"isBase":true}}}, +{"id":55203,"name":"Lightning Whelk Axe","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":1046,"weaponDamageMax":1943,"weaponSpeed":2.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":1046,"weaponDamageMax":1943,"stats":{"1":91,"2":136,"5":61,"6":61},"isBase":true}}}, +{"id":55204,"name":"Caridean Epaulettes","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,158,237,0,0,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,1085,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"1":158,"2":237,"7":105,"8":105,"22":1085},"isBase":true}}}, +{"id":55205,"name":"Chromis Chestpiece","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,319,212,142,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"11":142,"22":2047},"isBase":true}}}, +{"id":55206,"name":"Eagle Ray Cloak","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[118,0,177,0,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":177,"7":79,"11":79,"22":558},"isBase":true}}}, +{"id":55207,"name":"Harp Shell Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"7":105,"22":2119},"isBase":true}}}, +{"id":55228,"name":"Cerith Spire Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,319,213,0,142,0,142,0,0,0,0,0,0,1217,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":651,"weaponDamageMax":977,"weaponSpeed":2.1,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":651,"weaponDamageMax":977,"stats":{"2":319,"3":213,"5":142,"7":142,"14":1217},"isBase":true}}}, +{"id":55229,"name":"Anomuran Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[212,0,319,0,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":142,"11":142,"22":2296},"isBase":true}}}, +{"id":55235,"name":"Decapod Slippers","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,237,158,80,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,995,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":80,"6":120,"22":995},"isBase":true}}}, +{"id":55236,"name":"Anthia's Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,0,177,118,0,69,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"5":69,"11":85},"isBase":true}}}, +{"id":55237,"name":"Porcelain Crab","icon":"inv_jewelcrafting_purplecrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"9":200},"isBase":true}}}, +{"id":55246,"name":"Obsidium Bladespear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,229,343,0,0,0,0,153,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":2046,"weaponDamageMax":3800,"weaponSpeed":3.5,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":2046,"weaponDamageMax":3800,"stats":{"1":229,"2":343,"7":153,"11":153},"isBase":true}}}, +{"id":55249,"name":"Triton Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,0,212,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":161,"2":319,"8":108,"10":212,"22":2472},"isBase":true}}}, +{"id":55250,"name":"Nautilus Ring","icon":"inv_misc_shell_04","type":11,"stats":[0,118,177,0,0,0,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"1":118,"2":177,"6":79,"7":79},"isBase":true}}}, +{"id":55251,"name":"Might of the Ocean","icon":"inv_stone_02","type":12,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"5":200},"isBase":true}}}, +{"id":55252,"name":"Whitefin Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[212,0,319,0,0,0,152,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2232,"weaponDamageMax":3349,"weaponSpeed":3.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":2232,"weaponDamageMax":3349,"stats":{"0":212,"2":319,"6":152,"7":124},"isBase":true}}}, +{"id":55253,"name":"Wentletrap Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2047,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":142,"7":142,"22":2047},"isBase":true}}}, +{"id":55254,"name":"Abalone Plate Armor","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,319,212,142,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"11":142,"22":2825},"isBase":true}}}, +{"id":55255,"name":"Mnemiopsis Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,237,158,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,698,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"5":105,"6":105,"22":698},"isBase":true}}}, +{"id":55256,"name":"Sea Star","icon":"inv_datacrystal05","type":12,"stats":[0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"4":200},"isBase":true}}}, +{"id":55258,"name":"Pipefish Cord","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,177,118,0,0,69,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"6":69,"11":85},"isBase":true}}}, +{"id":55259,"name":"Bioluminescent Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,177,118,85,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":85,"6":69},"isBase":true}}}, +{"id":55260,"name":"Alpheus Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[212,0,319,0,0,124,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":212,"2":319,"5":124,"6":152,"22":2472},"isBase":true}}}, +{"id":55261,"name":"Ring of the Great Whale","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,177,118,79,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":79,"7":79},"isBase":true}}}, +{"id":55262,"name":"Barnacle Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,118,177,0,0,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5004,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"1":118,"2":177,"7":69,"8":85},"isBase":true}}}, +{"id":55263,"name":"Renouncer's Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,212,319,0,0,142,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"11":142,"22":1663},"isBase":true}}}, +{"id":55264,"name":"Armbands of Change","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,177,118,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"6":69,"7":85,"22":633},"isBase":true}}}, +{"id":55265,"name":"Signet of Transformation","icon":"inv_misc_stonering2","type":11,"stats":[118,0,177,0,0,0,0,79,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":177,"7":79,"11":79},"isBase":true}}}, +{"id":55266,"name":"Grace of the Herald","icon":"inv_misc_horn_02","type":12,"stats":[0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"1":200},"isBase":true}}}, +{"id":55267,"name":"Corla's Baton","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,136,91,0,53,0,0,0,0,0,65,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":362,"weaponDamageMax":673,"weaponSpeed":1.8,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":362,"weaponDamageMax":673,"stats":{"2":136,"3":91,"5":53,"11":65,"14":1216},"isBase":true}}}, +{"id":55268,"name":"Bracers of Cooled Anger","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[118,0,177,0,0,0,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1236,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":177,"6":79,"8":79,"22":1236},"isBase":true}}}, +{"id":55269,"name":"Heat Wave Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,319,212,124,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":124,"6":152,"22":1791},"isBase":true}}}, +{"id":55270,"name":"Burned Gatherings","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[85,0,177,0,0,69,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":85,"2":177,"5":69,"11":118,"22":558},"isBase":true}}}, +{"id":55271,"name":"Quicksilver Amulet","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,177,118,85,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":85,"7":69},"isBase":true}}}, +{"id":55272,"name":"Steelbender's Masterpiece","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,91,136,0,0,65,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":827,"weaponDamageMax":1242,"weaponSpeed":1.8,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":827,"weaponDamageMax":1242,"stats":{"1":91,"2":136,"5":65,"11":53},"isBase":true}}}, +{"id":55273,"name":"Beauty's Chew Toy","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,212,319,0,0,142,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"7":142,"22":1266},"isBase":true}}}, +{"id":55274,"name":"Beauty's Plate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[212,0,319,0,0,0,0,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":212,"2":319,"10":142,"11":142,"22":2825},"isBase":true}}}, +{"id":55275,"name":"Beauty's Silken Ribbon","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,237,158,0,0,105,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,628,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":105,"7":105,"22":628},"isBase":true}}}, +{"id":55276,"name":"Kibble","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,177,118,85,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":85,"11":69},"isBase":true}}}, +{"id":55277,"name":"Beauty's Favorite Bone","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,177,118,0,85,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"5":85,"6":69},"isBase":true}}}, +{"id":55278,"name":"Inquisition Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,319,212,0,142,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"5":142,"11":142,"22":1116},"isBase":true}}}, +{"id":55279,"name":"Manacles of Pain","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":79,"6":79,"22":896},"isBase":true}}}, +{"id":55281,"name":"Razorwind Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"isBase":true}}}, +{"id":55282,"name":"Steelspark Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"weaponSpeed":2.6,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"isBase":true}}}, +{"id":55283,"name":"Angerfang Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"weaponSpeed":2.6,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"isBase":true}}}, +{"id":55284,"name":"Nethergarde Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"isBase":true}}}, +{"id":55285,"name":"Splinterspear Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"weaponSpeed":2.6,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"isBase":true}}}, +{"id":55286,"name":"Mardenholde Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"weaponSpeed":2.6,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"isBase":true}}}, +{"id":55287,"name":"Bladefist Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"weaponSpeed":2.6,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"isBase":true}}}, +{"id":55288,"name":"Irontree Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"isBase":true}}}, +{"id":55289,"name":"Rustmaul Axe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"isBase":true}}}, +{"id":55290,"name":"Razorwind Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55291,"name":"Steelspark Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"isBase":true}}}, +{"id":55292,"name":"Angerfang Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"isBase":true}}}, +{"id":55293,"name":"Nethergarde Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"isBase":true}}}, +{"id":55294,"name":"Splinterspear Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"isBase":true}}}, +{"id":55295,"name":"Mardenholde Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"isBase":true}}}, +{"id":55296,"name":"Bladefist Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"isBase":true}}}, +{"id":55297,"name":"Irontree Broadaxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"isBase":true}}}, +{"id":55298,"name":"Rustmaul Broadaxe","icon":"inv_axe_2h_cataclysm_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"isBase":true}}}, +{"id":55299,"name":"Razorwind Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"weaponSpeed":2.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"isBase":true}}}, +{"id":55300,"name":"Steelspark Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"weaponSpeed":2.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"isBase":true}}}, +{"id":55301,"name":"Angerfang Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"weaponSpeed":2.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"isBase":true}}}, +{"id":55302,"name":"Nethergarde Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"weaponSpeed":2.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55303,"name":"Splinterspear Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"weaponSpeed":2.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"isBase":true}}}, +{"id":55304,"name":"Mardenholde Bow","icon":"inv_bow_1h_cataclysm_b_02","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"weaponSpeed":2.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"isBase":true}}}, +{"id":55305,"name":"Bladefist Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"weaponSpeed":2.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"isBase":true}}}, +{"id":55306,"name":"Irontree Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"weaponSpeed":2.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"isBase":true}}}, +{"id":55307,"name":"Rustmaul Bow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"weaponSpeed":2.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"isBase":true}}}, +{"id":55308,"name":"Moonbrook Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":525},"isBase":true}}}, +{"id":55309,"name":"Swamplight Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":542},"isBase":true}}}, +{"id":55310,"name":"Sishir Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":544},"isBase":true}}}, +{"id":55311,"name":"Mirkfallon Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":548},"isBase":true}}}, +{"id":55312,"name":"Nethander Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":551},"isBase":true}}}, +{"id":55313,"name":"Mereldar Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":554},"isBase":true}}}, +{"id":55314,"name":"Thondroril Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":557},"isBase":true}}}, +{"id":55315,"name":"Blackwolf Cloak","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":560},"isBase":true}}}, +{"id":55316,"name":"Sorrowmurk Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":564},"isBase":true}}}, +{"id":55317,"name":"Razorwind Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"weaponSpeed":2.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"isBase":true}}}, +{"id":55318,"name":"Steelspark Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"weaponSpeed":2.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"isBase":true}}}, +{"id":55319,"name":"Angerfang Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"weaponSpeed":2.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"isBase":true}}}, +{"id":55320,"name":"Nethergarde Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"weaponSpeed":2.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55321,"name":"Splinterspear Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"weaponSpeed":2.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"isBase":true}}}, +{"id":55322,"name":"Mardenholde Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"weaponSpeed":2.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"isBase":true}}}, +{"id":55323,"name":"Bladefist Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"weaponSpeed":2.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"isBase":true}}}, +{"id":55324,"name":"Irontree Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"weaponSpeed":2.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"isBase":true}}}, +{"id":55325,"name":"Rustmaul Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"weaponSpeed":2.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"isBase":true}}}, +{"id":55326,"name":"Razorwind Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":124,"weaponDamageMin":496,"weaponDamageMax":922,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":496,"weaponDamageMax":922,"isBase":true}}}, +{"id":55327,"name":"Steelspark Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":131,"weaponDamageMin":527,"weaponDamageMax":979,"weaponSpeed":1.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":527,"weaponDamageMax":979,"isBase":true}}}, +{"id":55328,"name":"Angerfang Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":137,"weaponDamageMin":553,"weaponDamageMax":1029,"weaponSpeed":1.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":553,"weaponDamageMax":1029,"isBase":true}}}, +{"id":55329,"name":"Nethergarde Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":145,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":582,"weaponDamageMax":1082,"isBase":true}}}, +{"id":55330,"name":"Splinterspear Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":153,"weaponDamageMin":610,"weaponDamageMax":1134,"weaponSpeed":1.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":610,"weaponDamageMax":1134,"isBase":true}}}, +{"id":55331,"name":"Mardenholde Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":161,"weaponDamageMin":634,"weaponDamageMax":1179,"weaponSpeed":1.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":634,"weaponDamageMax":1179,"isBase":true}}}, +{"id":55332,"name":"Bladefist Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":170,"weaponDamageMin":671,"weaponDamageMax":1247,"weaponSpeed":1.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":671,"weaponDamageMax":1247,"isBase":true}}}, +{"id":55333,"name":"Irontree Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":179,"weaponDamageMin":710,"weaponDamageMax":1319,"weaponSpeed":1.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":710,"weaponDamageMax":1319,"isBase":true}}}, +{"id":55334,"name":"Rustmaul Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":190,"weaponDamageMin":750,"weaponDamageMax":1395,"weaponSpeed":1.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":750,"weaponDamageMax":1395,"isBase":true}}}, +{"id":55335,"name":"Razorwind Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55336,"name":"Steelspark Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"isBase":true}}}, +{"id":55337,"name":"Angerfang Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"isBase":true}}}, +{"id":55338,"name":"Nethergarde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"isBase":true}}}, +{"id":55339,"name":"Splinterspear Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"isBase":true}}}, +{"id":55340,"name":"Mardenholde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"isBase":true}}}, +{"id":55341,"name":"Bladefist Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"isBase":true}}}, +{"id":55342,"name":"Irontree Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"isBase":true}}}, +{"id":55343,"name":"Rustmaul Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"isBase":true}}}, +{"id":55344,"name":"Razorwind Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"isBase":true}}}, +{"id":55345,"name":"Steelspark Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"weaponSpeed":2.6,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"isBase":true}}}, +{"id":55346,"name":"Angerfang Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"weaponSpeed":2.6,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"isBase":true}}}, +{"id":55347,"name":"Nethergarde Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"isBase":true}}}, +{"id":55348,"name":"Splinterspear Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"weaponSpeed":2.6,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"isBase":true}}}, +{"id":55349,"name":"Mardenholde Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"weaponSpeed":2.6,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"isBase":true}}}, +{"id":55350,"name":"Bladefist Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"weaponSpeed":2.6,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"isBase":true}}}, +{"id":55351,"name":"Irontree Knuckles","icon":"inv_hand_1h_cataclysm_b_02-","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"isBase":true}}}, +{"id":55352,"name":"Rustmaul Knuckles","icon":"inv_hand_1h_cataclysm_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"isBase":true}}}, +{"id":55353,"name":"Razorwind Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"weaponSpeed":2.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1025,"weaponDamageMax":1905,"isBase":true}}}, +{"id":55354,"name":"Steelspark Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"weaponSpeed":2.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1090,"weaponDamageMax":2025,"isBase":true}}}, +{"id":55355,"name":"Angerfang Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"weaponSpeed":2.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1155,"weaponDamageMax":2146,"isBase":true}}}, +{"id":55356,"name":"Nethergarde Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"weaponSpeed":2.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1227,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55357,"name":"Splinterspear Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"weaponSpeed":2.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1297,"weaponDamageMax":2410,"isBase":true}}}, +{"id":55358,"name":"Mardenholde Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"weaponSpeed":2.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":1359,"weaponDamageMax":2525,"isBase":true}}}, +{"id":55359,"name":"Bladefist Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"weaponSpeed":2.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":1437,"weaponDamageMax":2671,"isBase":true}}}, +{"id":55360,"name":"Irontree Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"weaponSpeed":2.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1520,"weaponDamageMax":2824,"isBase":true}}}, +{"id":55361,"name":"Rustmaul Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"weaponSpeed":2.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1608,"weaponDamageMax":2986,"isBase":true}}}, +{"id":55362,"name":"Moonbrook Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"14":871},"isBase":true}}}, +{"id":55363,"name":"Swamplight Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":131,"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":263,"weaponDamageMax":489,"stats":{"14":921},"isBase":true}}}, +{"id":55364,"name":"Sishir Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":137,"weaponDamageMin":276,"weaponDamageMax":514,"weaponSpeed":1.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":276,"weaponDamageMax":514,"stats":{"14":963},"isBase":true}}}, +{"id":55365,"name":"Mirkfallon Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":145,"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":1.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":291,"weaponDamageMax":541,"stats":{"14":1019},"isBase":true}}}, +{"id":55366,"name":"Nethander Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":153,"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":1.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":305,"weaponDamageMax":567,"stats":{"14":1075},"isBase":true}}}, +{"id":55367,"name":"Mereldar Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"stats":{"14":1132},"isBase":true}}}, +{"id":55368,"name":"Thondroril Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":170,"weaponDamageMin":335,"weaponDamageMax":624,"weaponSpeed":1.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":335,"weaponDamageMax":624,"stats":{"14":1195},"isBase":true}}}, +{"id":55369,"name":"Blackwolf Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"stats":{"14":1258},"isBase":true}}}, +{"id":55370,"name":"Sorrowmurk Scepter","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"stats":{"14":1335},"isBase":true}}}, +{"id":55371,"name":"Moonbrook Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"isBase":true}}}, +{"id":55372,"name":"Swamplight Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"isBase":true}}}, +{"id":55373,"name":"Sishir Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"isBase":true}}}, +{"id":55374,"name":"Mirkfallon Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"isBase":true}}}, +{"id":55375,"name":"Nethander Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"isBase":true}}}, +{"id":55376,"name":"Mereldar Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":55377,"name":"Thondroril Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"isBase":true}}}, +{"id":55378,"name":"Blackwolf Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"isBase":true}}}, +{"id":55379,"name":"Sorrowmurk Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"isBase":true}}}, +{"id":55380,"name":"Razorwind Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"isBase":true}}}, +{"id":55381,"name":"Steelspark Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"weaponSpeed":2.6,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"isBase":true}}}, +{"id":55382,"name":"Angerfang Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"weaponSpeed":2.6,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"isBase":true}}}, +{"id":55383,"name":"Nethergarde Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"isBase":true}}}, +{"id":55384,"name":"Splinterspear Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"weaponSpeed":2.6,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"isBase":true}}}, +{"id":55385,"name":"Mardenholde Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"weaponSpeed":2.6,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"isBase":true}}}, +{"id":55386,"name":"Bladefist Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"weaponSpeed":2.6,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"isBase":true}}}, +{"id":55387,"name":"Irontree Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"isBase":true}}}, +{"id":55388,"name":"Rustmaul Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"isBase":true}}}, +{"id":55389,"name":"Razorwind Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55390,"name":"Steelspark Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"isBase":true}}}, +{"id":55391,"name":"Angerfang Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"isBase":true}}}, +{"id":55392,"name":"Nethergarde Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"isBase":true}}}, +{"id":55393,"name":"Splinterspear Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"isBase":true}}}, +{"id":55394,"name":"Mardenholde Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"isBase":true}}}, +{"id":55395,"name":"Bladefist Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"isBase":true}}}, +{"id":55396,"name":"Irontree Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"isBase":true}}}, +{"id":55397,"name":"Rustmaul Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"isBase":true}}}, +{"id":55398,"name":"Moonbrook Amulet","icon":"inv_jewelry_amulet_03","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"isBase":true}}}, +{"id":55399,"name":"Swamplight Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"isBase":true}}}, +{"id":55400,"name":"Sishir Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"isBase":true}}}, +{"id":55401,"name":"Mirkfallon Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"isBase":true}}}, +{"id":55402,"name":"Nethander Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"isBase":true}}}, +{"id":55403,"name":"Mereldar Amulet","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":55404,"name":"Thondroril Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"isBase":true}}}, +{"id":55405,"name":"Blackwolf Amulet","icon":"inv_misc_necklacea2","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"isBase":true}}}, +{"id":55406,"name":"Sorrowmurk Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"isBase":true}}}, +{"id":55407,"name":"Razorwind Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55408,"name":"Steelspark Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"isBase":true}}}, +{"id":55409,"name":"Angerfang Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"isBase":true}}}, +{"id":55410,"name":"Nethergarde Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"isBase":true}}}, +{"id":55411,"name":"Splinterspear Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"isBase":true}}}, +{"id":55412,"name":"Mardenholde Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"isBase":true}}}, +{"id":55413,"name":"Bladefist Spear","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"isBase":true}}}, +{"id":55414,"name":"Irontree Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"isBase":true}}}, +{"id":55415,"name":"Rustmaul Spear","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"isBase":true}}}, +{"id":55416,"name":"Moonbrook Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"isBase":true}}}, +{"id":55417,"name":"Swamplight Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"isBase":true}}}, +{"id":55418,"name":"Sishir Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"isBase":true}}}, +{"id":55419,"name":"Mirkfallon Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"isBase":true}}}, +{"id":55420,"name":"Nethander Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"isBase":true}}}, +{"id":55421,"name":"Mereldar Ring","icon":"inv_misc_starring1","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"isBase":true}}}, +{"id":55422,"name":"Thondroril Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"isBase":true}}}, +{"id":55423,"name":"Blackwolf Ring","icon":"inv_misc_starring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"isBase":true}}}, +{"id":55424,"name":"Sorrowmurk Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"isBase":true}}}, +{"id":55425,"name":"Dreadmaul Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":7256},"isBase":true}}}, +{"id":55426,"name":"Rethban Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":8615},"isBase":true}}}, +{"id":55427,"name":"Jasperlode Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":8358},"isBase":true}}}, +{"id":55428,"name":"Direforge Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":8736},"isBase":true}}}, +{"id":55429,"name":"Fargodeep Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":9122},"isBase":true}}}, +{"id":55430,"name":"Ravencrest Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":9209},"isBase":true}}}, +{"id":55431,"name":"Stonewrought Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":9859},"isBase":true}}}, +{"id":55432,"name":"Crystalvein Shield","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":10231},"isBase":true}}}, +{"id":55433,"name":"Steelgrill Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":10943},"isBase":true}}}, +{"id":55434,"name":"Moonbrook Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"14":871},"isBase":true}}}, +{"id":55435,"name":"Swamplight Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":131,"weaponDamageMin":263,"weaponDamageMax":489,"weaponSpeed":1.7,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":263,"weaponDamageMax":489,"stats":{"14":921},"isBase":true}}}, +{"id":55436,"name":"Sishir Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":137,"weaponDamageMin":276,"weaponDamageMax":514,"weaponSpeed":1.7,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":276,"weaponDamageMax":514,"stats":{"14":963},"isBase":true}}}, +{"id":55437,"name":"Mirkfallon Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":145,"weaponDamageMin":291,"weaponDamageMax":541,"weaponSpeed":1.7,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":291,"weaponDamageMax":541,"stats":{"14":1019},"isBase":true}}}, +{"id":55438,"name":"Nethander Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":153,"weaponDamageMin":305,"weaponDamageMax":567,"weaponSpeed":1.7,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":305,"weaponDamageMax":567,"stats":{"14":1075},"isBase":true}}}, +{"id":55439,"name":"Mereldar Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"stats":{"14":1132},"isBase":true}}}, +{"id":55440,"name":"Thondroril Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":170,"weaponDamageMin":335,"weaponDamageMax":624,"weaponSpeed":1.7,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":335,"weaponDamageMax":624,"stats":{"14":1195},"isBase":true}}}, +{"id":55441,"name":"Blackwolf Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"stats":{"14":1258},"isBase":true}}}, +{"id":55442,"name":"Sorrowmurk Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"stats":{"14":1335},"isBase":true}}}, +{"id":55443,"name":"Razorwind Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":289,"weaponDamageMin":759,"weaponDamageMax":1140,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":759,"weaponDamageMax":1140,"stats":{"14":870},"isBase":true}}}, +{"id":55444,"name":"Steelspark Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":305,"weaponDamageMin":807,"weaponDamageMax":1211,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":807,"weaponDamageMax":1211,"stats":{"14":919},"isBase":true}}}, +{"id":55445,"name":"Angerfang Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":320,"weaponDamageMin":855,"weaponDamageMax":1284,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":855,"weaponDamageMax":1284,"stats":{"14":964},"isBase":true}}}, +{"id":55446,"name":"Nethergarde Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":338,"weaponDamageMin":909,"weaponDamageMax":1364,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":909,"weaponDamageMax":1364,"stats":{"14":1018},"isBase":true}}}, +{"id":55447,"name":"Splinterspear Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":357,"weaponDamageMin":961,"weaponDamageMax":1442,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":961,"weaponDamageMax":1442,"stats":{"14":1075},"isBase":true}}}, +{"id":55448,"name":"Mardenholde Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1130,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":375,"weaponDamageMin":1007,"weaponDamageMax":1511,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":1007,"weaponDamageMax":1511,"stats":{"14":1130},"isBase":true}}}, +{"id":55449,"name":"Bladefist Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1193,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":396,"weaponDamageMin":1065,"weaponDamageMax":1598,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":1065,"weaponDamageMax":1598,"stats":{"14":1193},"isBase":true}}}, +{"id":55450,"name":"Irontree Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"weaponDamageMin":1126,"weaponDamageMax":1690,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1126,"weaponDamageMax":1690,"stats":{"14":1262},"isBase":true}}}, +{"id":55451,"name":"Rustmaul Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":443,"weaponDamageMin":1191,"weaponDamageMax":1787,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1191,"weaponDamageMax":1787,"stats":{"14":1334},"isBase":true}}}, +{"id":55452,"name":"Razorwind Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"isBase":true}}}, +{"id":55453,"name":"Steelspark Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"weaponSpeed":2.6,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":806,"weaponDamageMax":1497,"isBase":true}}}, +{"id":55454,"name":"Angerfang Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"weaponSpeed":2.6,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":847,"weaponDamageMax":1573,"isBase":true}}}, +{"id":55455,"name":"Nethergarde Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"isBase":true}}}, +{"id":55456,"name":"Splinterspear Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"weaponSpeed":2.6,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":933,"weaponDamageMax":1734,"isBase":true}}}, +{"id":55457,"name":"Mardenholde Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"weaponSpeed":2.6,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"isBase":true}}}, +{"id":55458,"name":"Bladefist Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"weaponSpeed":2.6,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":1026,"weaponDamageMax":1907,"isBase":true}}}, +{"id":55459,"name":"Irontree Sword","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"isBase":true}}}, +{"id":55460,"name":"Rustmaul Sword","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"isBase":true}}}, +{"id":55461,"name":"Razorwind Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"weaponSpeed":3.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1519,"weaponDamageMax":2279,"isBase":true}}}, +{"id":55462,"name":"Steelspark Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"weaponSpeed":3.5,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"weaponDamageMin":1615,"weaponDamageMax":2423,"isBase":true}}}, +{"id":55463,"name":"Angerfang Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"weaponSpeed":3.5,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"weaponDamageMin":1711,"weaponDamageMax":2567,"isBase":true}}}, +{"id":55464,"name":"Nethergarde Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"weaponSpeed":3.5,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1818,"weaponDamageMax":2727,"isBase":true}}}, +{"id":55465,"name":"Splinterspear Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"weaponSpeed":3.5,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"weaponDamageMin":1922,"weaponDamageMax":2884,"isBase":true}}}, +{"id":55466,"name":"Mardenholde Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"weaponSpeed":3.5,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"weaponDamageMin":2014,"weaponDamageMax":3022,"isBase":true}}}, +{"id":55467,"name":"Bladefist Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"weaponSpeed":3.5,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"weaponDamageMin":2130,"weaponDamageMax":3195,"isBase":true}}}, +{"id":55468,"name":"Irontree Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"weaponSpeed":3.5,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2252,"weaponDamageMax":3379,"isBase":true}}}, +{"id":55469,"name":"Rustmaul Greatsword","icon":"inv_sword_2h_cataclysm_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"weaponSpeed":3.5,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2382,"weaponDamageMax":3574,"isBase":true}}}, +{"id":55479,"name":"Moonbrook Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"14":871},"isBase":true}}}, +{"id":55480,"name":"Swamplight Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,921,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":131,"weaponDamageMin":279,"weaponDamageMax":518,"weaponSpeed":1.8,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":131,"weaponDamageMin":279,"weaponDamageMax":518,"stats":{"14":921},"isBase":true}}}, +{"id":55481,"name":"Sishir Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,963,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":137,"weaponDamageMin":325,"weaponDamageMax":605,"weaponSpeed":2,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":137,"weaponDamageMin":325,"weaponDamageMax":605,"stats":{"14":963},"isBase":true}}}, +{"id":55482,"name":"Mirkfallon Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":145,"weaponDamageMin":308,"weaponDamageMax":573,"weaponSpeed":1.8,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":308,"weaponDamageMax":573,"stats":{"14":1019},"isBase":true}}}, +{"id":55483,"name":"Nethander Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":153,"weaponDamageMin":341,"weaponDamageMax":634,"weaponSpeed":1.9,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":153,"weaponDamageMin":341,"weaponDamageMax":634,"stats":{"14":1075},"isBase":true}}}, +{"id":55484,"name":"Mereldar Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"weaponSpeed":1.7,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":317,"weaponDamageMax":590,"stats":{"14":1132},"isBase":true}}}, +{"id":55485,"name":"Thondroril Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1195,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":170,"weaponDamageMin":355,"weaponDamageMax":660,"weaponSpeed":1.8,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":170,"weaponDamageMin":355,"weaponDamageMax":660,"stats":{"14":1195},"isBase":true}}}, +{"id":55486,"name":"Blackwolf Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"weaponSpeed":1.7,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":355,"weaponDamageMax":659,"stats":{"14":1258},"isBase":true}}}, +{"id":55487,"name":"Sorrowmurk Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"weaponSpeed":1.7,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":375,"weaponDamageMax":697,"stats":{"14":1335},"isBase":true}}}, +{"id":55488,"name":"Dreadmaul Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":1070},"isBase":true}}}, +{"id":55489,"name":"Rethban Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":1094},"isBase":true}}}, +{"id":55490,"name":"Jasperlode Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":1116},"isBase":true}}}, +{"id":55491,"name":"Direforge Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":1144},"isBase":true}}}, +{"id":55492,"name":"Fargodeep Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1172,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":1172},"isBase":true}}}, +{"id":55493,"name":"Ravencrest Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":1196},"isBase":true}}}, +{"id":55494,"name":"Stonewrought Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":1226},"isBase":true}}}, +{"id":55495,"name":"Crystalvein Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":1256},"isBase":true}}}, +{"id":55496,"name":"Steelgrill Vambraces","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":1287},"isBase":true}}}, +{"id":55497,"name":"Dreadmaul Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":2446},"isBase":true}}}, +{"id":55498,"name":"Rethban Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":2500},"isBase":true}}}, +{"id":55499,"name":"Jasperlode Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":2552},"isBase":true}}}, +{"id":55500,"name":"Direforge Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":2615},"isBase":true}}}, +{"id":55501,"name":"Fargodeep Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":2680},"isBase":true}}}, +{"id":55502,"name":"Ravencrest Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":2735},"isBase":true}}}, +{"id":55503,"name":"Stonewrought Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2802,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":2802},"isBase":true}}}, +{"id":55504,"name":"Crystalvein Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":2872},"isBase":true}}}, +{"id":55505,"name":"Steelgrill Breastplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":2943},"isBase":true}}}, +{"id":55506,"name":"Dreadmaul Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1682},"isBase":true}}}, +{"id":55507,"name":"Rethban Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1719},"isBase":true}}}, +{"id":55508,"name":"Jasperlode Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1754,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1754},"isBase":true}}}, +{"id":55509,"name":"Direforge Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1798},"isBase":true}}}, +{"id":55510,"name":"Fargodeep Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1842,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1842},"isBase":true}}}, +{"id":55511,"name":"Ravencrest Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1880},"isBase":true}}}, +{"id":55512,"name":"Stonewrought Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1927},"isBase":true}}}, +{"id":55513,"name":"Crystalvein Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1974},"isBase":true}}}, +{"id":55514,"name":"Steelgrill Sabatons","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":2023},"isBase":true}}}, +{"id":55515,"name":"Dreadmaul Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1529},"isBase":true}}}, +{"id":55516,"name":"Rethban Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1563},"isBase":true}}}, +{"id":55517,"name":"Jasperlode Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1595},"isBase":true}}}, +{"id":55518,"name":"Direforge Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1634},"isBase":true}}}, +{"id":55519,"name":"Fargodeep Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1675,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1675},"isBase":true}}}, +{"id":55520,"name":"Ravencrest Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1709},"isBase":true}}}, +{"id":55521,"name":"Stonewrought Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1752,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1752},"isBase":true}}}, +{"id":55522,"name":"Crystalvein Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1795},"isBase":true}}}, +{"id":55523,"name":"Steelgrill Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1839},"isBase":true}}}, +{"id":55524,"name":"Dreadmaul Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1987},"isBase":true}}}, +{"id":55525,"name":"Rethban Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":2032},"isBase":true}}}, +{"id":55526,"name":"Jasperlode Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2073,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":2073},"isBase":true}}}, +{"id":55527,"name":"Direforge Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":2125},"isBase":true}}}, +{"id":55528,"name":"Fargodeep Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":2177},"isBase":true}}}, +{"id":55529,"name":"Ravencrest Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2222,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":2222},"isBase":true}}}, +{"id":55530,"name":"Stonewrought Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":2277},"isBase":true}}}, +{"id":55531,"name":"Crystalvein Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":2333},"isBase":true}}}, +{"id":55532,"name":"Steelgrill Helm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":2391},"isBase":true}}}, +{"id":55533,"name":"Dreadmaul Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":2140},"isBase":true}}}, +{"id":55534,"name":"Rethban Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2188,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":2188},"isBase":true}}}, +{"id":55535,"name":"Jasperlode Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2233,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":2233},"isBase":true}}}, +{"id":55536,"name":"Direforge Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":2288},"isBase":true}}}, +{"id":55537,"name":"Fargodeep Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2345,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":2345},"isBase":true}}}, +{"id":55538,"name":"Ravencrest Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":2393},"isBase":true}}}, +{"id":55539,"name":"Stonewrought Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2452,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":2452},"isBase":true}}}, +{"id":55540,"name":"Crystalvein Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":2513},"isBase":true}}}, +{"id":55541,"name":"Steelgrill Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":2575},"isBase":true}}}, +{"id":55542,"name":"Dreadmaul Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1834},"isBase":true}}}, +{"id":55543,"name":"Rethban Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1875,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1875},"isBase":true}}}, +{"id":55544,"name":"Jasperlode Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1914,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1914},"isBase":true}}}, +{"id":55545,"name":"Direforge Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1961},"isBase":true}}}, +{"id":55546,"name":"Fargodeep Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":2010},"isBase":true}}}, +{"id":55547,"name":"Ravencrest Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":2051},"isBase":true}}}, +{"id":55548,"name":"Stonewrought Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":2102},"isBase":true}}}, +{"id":55549,"name":"Crystalvein Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":2154},"isBase":true}}}, +{"id":55550,"name":"Steelgrill Pauldrons","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":2207},"isBase":true}}}, +{"id":55551,"name":"Dreadmaul Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1376},"isBase":true}}}, +{"id":55552,"name":"Rethban Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1407},"isBase":true}}}, +{"id":55553,"name":"Jasperlode Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1435,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1435},"isBase":true}}}, +{"id":55554,"name":"Direforge Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1471},"isBase":true}}}, +{"id":55555,"name":"Fargodeep Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1507},"isBase":true}}}, +{"id":55556,"name":"Ravencrest Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1538},"isBase":true}}}, +{"id":55557,"name":"Stonewrought Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1576},"isBase":true}}}, +{"id":55558,"name":"Crystalvein Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1615},"isBase":true}}}, +{"id":55559,"name":"Steelgrill Girdle","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1655},"isBase":true}}}, +{"id":55560,"name":"Nazferiti Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":791},"isBase":true}}}, +{"id":55561,"name":"Southfury Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":811},"isBase":true}}}, +{"id":55562,"name":"Sundown Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":825},"isBase":true}}}, +{"id":55563,"name":"Bramblescar Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":841},"isBase":true}}}, +{"id":55564,"name":"Hiri'watha Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":858},"isBase":true}}}, +{"id":55565,"name":"Highperch Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":872},"isBase":true}}}, +{"id":55566,"name":"Thornsnarl Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":890},"isBase":true}}}, +{"id":55567,"name":"Talondeep Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":908},"isBase":true}}}, +{"id":55568,"name":"Frayfeather Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":926},"isBase":true}}}, +{"id":55569,"name":"Nazferiti Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1809},"isBase":true}}}, +{"id":55570,"name":"Southfury Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1854},"isBase":true}}}, +{"id":55571,"name":"Sundown Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1885},"isBase":true}}}, +{"id":55572,"name":"Bramblescar Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1922},"isBase":true}}}, +{"id":55573,"name":"Hiri'watha Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1961},"isBase":true}}}, +{"id":55574,"name":"Highperch Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1994},"isBase":true}}}, +{"id":55575,"name":"Thornsnarl Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2034,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":2034},"isBase":true}}}, +{"id":55576,"name":"Talondeep Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":2075},"isBase":true}}}, +{"id":55577,"name":"Frayfeather Vest","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":2116},"isBase":true}}}, +{"id":55578,"name":"Nazferiti Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1244},"isBase":true}}}, +{"id":55579,"name":"Southfury Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1274},"isBase":true}}}, +{"id":55580,"name":"Sundown Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1296},"isBase":true}}}, +{"id":55581,"name":"Bramblescar Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1322},"isBase":true}}}, +{"id":55582,"name":"Hiri'watha Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1348},"isBase":true}}}, +{"id":55583,"name":"Highperch Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1371},"isBase":true}}}, +{"id":55584,"name":"Thornsnarl Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1398,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1398},"isBase":true}}}, +{"id":55585,"name":"Talondeep Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1426},"isBase":true}}}, +{"id":55586,"name":"Frayfeather Greaves","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1455},"isBase":true}}}, +{"id":55587,"name":"Nazferiti Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1131},"isBase":true}}}, +{"id":55588,"name":"Southfury Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1159,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1159},"isBase":true}}}, +{"id":55589,"name":"Sundown Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1178},"isBase":true}}}, +{"id":55590,"name":"Bramblescar Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1202},"isBase":true}}}, +{"id":55591,"name":"Hiri'watha Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1226},"isBase":true}}}, +{"id":55592,"name":"Highperch Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1246},"isBase":true}}}, +{"id":55593,"name":"Thornsnarl Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1271},"isBase":true}}}, +{"id":55594,"name":"Talondeep Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1297},"isBase":true}}}, +{"id":55595,"name":"Frayfeather Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1323},"isBase":true}}}, +{"id":55596,"name":"Nazferiti Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1470},"isBase":true}}}, +{"id":55597,"name":"Southfury Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1506,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1506},"isBase":true}}}, +{"id":55598,"name":"Sundown Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1531,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1531},"isBase":true}}}, +{"id":55599,"name":"Bramblescar Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1562},"isBase":true}}}, +{"id":55600,"name":"Hiri'watha Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1593},"isBase":true}}}, +{"id":55601,"name":"Highperch Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1620},"isBase":true}}}, +{"id":55602,"name":"Thornsnarl Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1652},"isBase":true}}}, +{"id":55603,"name":"Talondeep Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1686},"isBase":true}}}, +{"id":55604,"name":"Frayfeather Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1719},"isBase":true}}}, +{"id":55605,"name":"Nazferiti Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1583},"isBase":true}}}, +{"id":55606,"name":"Southfury Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1622},"isBase":true}}}, +{"id":55607,"name":"Sundown Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1649,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1649},"isBase":true}}}, +{"id":55608,"name":"Bramblescar Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1682},"isBase":true}}}, +{"id":55609,"name":"Hiri'watha Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1716,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1716},"isBase":true}}}, +{"id":55610,"name":"Highperch Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1745},"isBase":true}}}, +{"id":55611,"name":"Thornsnarl Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1780,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1780},"isBase":true}}}, +{"id":55612,"name":"Talondeep Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1815},"isBase":true}}}, +{"id":55613,"name":"Frayfeather Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1852},"isBase":true}}}, +{"id":55614,"name":"Nazferiti Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1357},"isBase":true}}}, +{"id":55615,"name":"Southfury Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1390},"isBase":true}}}, +{"id":55616,"name":"Sundown Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1413,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1413},"isBase":true}}}, +{"id":55617,"name":"Bramblescar Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1442},"isBase":true}}}, +{"id":55618,"name":"Hiri'watha Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1471},"isBase":true}}}, +{"id":55619,"name":"Highperch Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1495},"isBase":true}}}, +{"id":55620,"name":"Thornsnarl Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1525},"isBase":true}}}, +{"id":55621,"name":"Talondeep Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1556},"isBase":true}}}, +{"id":55622,"name":"Frayfeather Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1587},"isBase":true}}}, +{"id":55623,"name":"Nazferiti Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":1018},"isBase":true}}}, +{"id":55624,"name":"Southfury Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1043},"isBase":true}}}, +{"id":55625,"name":"Sundown Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1060,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1060},"isBase":true}}}, +{"id":55626,"name":"Bramblescar Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1081},"isBase":true}}}, +{"id":55627,"name":"Hiri'watha Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1103},"isBase":true}}}, +{"id":55628,"name":"Highperch Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1122},"isBase":true}}}, +{"id":55629,"name":"Thornsnarl Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1144,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1144},"isBase":true}}}, +{"id":55630,"name":"Talondeep Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1167},"isBase":true}}}, +{"id":55631,"name":"Frayfeather Belt","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1190},"isBase":true}}}, +{"id":55632,"name":"Stagalbog Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":577},"isBase":true}}}, +{"id":55633,"name":"Mosshide Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":593},"isBase":true}}}, +{"id":55634,"name":"Yojamba Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":600},"isBase":true}}}, +{"id":55635,"name":"Aboraz Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":608},"isBase":true}}}, +{"id":55636,"name":"Rocktusk Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":616},"isBase":true}}}, +{"id":55637,"name":"Dandred Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":622},"isBase":true}}}, +{"id":55638,"name":"Haldarr Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,630,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":630},"isBase":true}}}, +{"id":55639,"name":"Ravenholdt Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":639},"isBase":true}}}, +{"id":55640,"name":"Nighthaven Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":647},"isBase":true}}}, +{"id":55641,"name":"Stagalbog Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1319},"isBase":true}}}, +{"id":55642,"name":"Mosshide Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1356},"isBase":true}}}, +{"id":55643,"name":"Yojamba Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1371},"isBase":true}}}, +{"id":55644,"name":"Aboraz Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1389},"isBase":true}}}, +{"id":55645,"name":"Rocktusk Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1407,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1407},"isBase":true}}}, +{"id":55646,"name":"Dandred Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1422},"isBase":true}}}, +{"id":55647,"name":"Haldarr Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1441,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1441},"isBase":true}}}, +{"id":55648,"name":"Ravenholdt Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1460},"isBase":true}}}, +{"id":55649,"name":"Nighthaven Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1479},"isBase":true}}}, +{"id":55650,"name":"Stagalbog Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":907},"isBase":true}}}, +{"id":55651,"name":"Mosshide Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,932,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":932},"isBase":true}}}, +{"id":55652,"name":"Yojamba Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":942},"isBase":true}}}, +{"id":55653,"name":"Aboraz Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":955},"isBase":true}}}, +{"id":55654,"name":"Rocktusk Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":967},"isBase":true}}}, +{"id":55655,"name":"Dandred Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,978,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":978},"isBase":true}}}, +{"id":55656,"name":"Haldarr Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,991,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":991},"isBase":true}}}, +{"id":55657,"name":"Ravenholdt Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1003},"isBase":true}}}, +{"id":55658,"name":"Nighthaven Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1017},"isBase":true}}}, +{"id":55659,"name":"Stagalbog Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":824},"isBase":true}}}, +{"id":55660,"name":"Mosshide Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":848},"isBase":true}}}, +{"id":55661,"name":"Yojamba Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":857},"isBase":true}}}, +{"id":55662,"name":"Aboraz Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,868,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":868},"isBase":true}}}, +{"id":55663,"name":"Rocktusk Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,879,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":879},"isBase":true}}}, +{"id":55664,"name":"Dandred Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":889},"isBase":true}}}, +{"id":55665,"name":"Haldarr Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":900},"isBase":true}}}, +{"id":55666,"name":"Ravenholdt Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":912},"isBase":true}}}, +{"id":55667,"name":"Nighthaven Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":924},"isBase":true}}}, +{"id":55668,"name":"Stagalbog Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1072},"isBase":true}}}, +{"id":55669,"name":"Mosshide Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1102},"isBase":true}}}, +{"id":55670,"name":"Yojamba Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1114},"isBase":true}}}, +{"id":55671,"name":"Aboraz Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1128},"isBase":true}}}, +{"id":55672,"name":"Rocktusk Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1143},"isBase":true}}}, +{"id":55673,"name":"Dandred Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1156,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1156},"isBase":true}}}, +{"id":55674,"name":"Haldarr Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1171},"isBase":true}}}, +{"id":55675,"name":"Ravenholdt Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1186},"isBase":true}}}, +{"id":55676,"name":"Nighthaven Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1201},"isBase":true}}}, +{"id":55677,"name":"Stagalbog Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1154},"isBase":true}}}, +{"id":55678,"name":"Mosshide Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1187,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1187},"isBase":true}}}, +{"id":55679,"name":"Yojamba Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1199},"isBase":true}}}, +{"id":55680,"name":"Aboraz Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1215,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1215},"isBase":true}}}, +{"id":55681,"name":"Rocktusk Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1231},"isBase":true}}}, +{"id":55682,"name":"Dandred Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1244},"isBase":true}}}, +{"id":55683,"name":"Haldarr Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1261},"isBase":true}}}, +{"id":55684,"name":"Ravenholdt Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1277},"isBase":true}}}, +{"id":55685,"name":"Nighthaven Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1294},"isBase":true}}}, +{"id":55686,"name":"Stagalbog Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":989},"isBase":true}}}, +{"id":55687,"name":"Mosshide Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":1017},"isBase":true}}}, +{"id":55688,"name":"Yojamba Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1028,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":1028},"isBase":true}}}, +{"id":55689,"name":"Aboraz Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1042},"isBase":true}}}, +{"id":55690,"name":"Rocktusk Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1055,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1055},"isBase":true}}}, +{"id":55691,"name":"Dandred Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1067},"isBase":true}}}, +{"id":55692,"name":"Haldarr Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":1081},"isBase":true}}}, +{"id":55693,"name":"Ravenholdt Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":1095},"isBase":true}}}, +{"id":55694,"name":"Nighthaven Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":1109},"isBase":true}}}, +{"id":55695,"name":"Stagalbog Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":742},"isBase":true}}}, +{"id":55696,"name":"Mosshide Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":763},"isBase":true}}}, +{"id":55697,"name":"Yojamba Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":771},"isBase":true}}}, +{"id":55698,"name":"Aboraz Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":781},"isBase":true}}}, +{"id":55699,"name":"Rocktusk Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":791},"isBase":true}}}, +{"id":55700,"name":"Dandred Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":800},"isBase":true}}}, +{"id":55701,"name":"Haldarr Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,810,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":810},"isBase":true}}}, +{"id":55702,"name":"Ravenholdt Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":821},"isBase":true}}}, +{"id":55703,"name":"Nighthaven Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":832},"isBase":true}}}, +{"id":55704,"name":"Ameth'Aran Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"22":460},"isBase":true}}}, +{"id":55705,"name":"Mistmantle Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":170,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":170,"stats":{"22":474},"isBase":true}}}, +{"id":55706,"name":"Baradin Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":178,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":178,"stats":{"22":476},"isBase":true}}}, +{"id":55707,"name":"Darrowmere Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":479},"isBase":true}}}, +{"id":55708,"name":"Brightwood Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":482},"isBase":true}}}, +{"id":55709,"name":"Everstill Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":209,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"22":485},"isBase":true}}}, +{"id":55710,"name":"Mystral Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":221,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":221,"stats":{"22":487},"isBase":true}}}, +{"id":55711,"name":"Bluefen Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"22":490},"isBase":true}}}, +{"id":55712,"name":"Galardell Wristwraps","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"22":493},"isBase":true}}}, +{"id":55713,"name":"Ameth'Aran Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":1051},"isBase":true}}}, +{"id":55714,"name":"Mistmantle Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":1084},"isBase":true}}}, +{"id":55715,"name":"Baradin Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":1089},"isBase":true}}}, +{"id":55716,"name":"Darrowmere Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":1095},"isBase":true}}}, +{"id":55717,"name":"Brightwood Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1102,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":1102},"isBase":true}}}, +{"id":55718,"name":"Everstill Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1108},"isBase":true}}}, +{"id":55719,"name":"Mystral Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1114,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1114},"isBase":true}}}, +{"id":55720,"name":"Bluefen Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":1121},"isBase":true}}}, +{"id":55721,"name":"Galardell Robe","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":1128},"isBase":true}}}, +{"id":55722,"name":"Ameth'Aran Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":722},"isBase":true}}}, +{"id":55723,"name":"Mistmantle Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":745},"isBase":true}}}, +{"id":55724,"name":"Baradin Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,749,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":749},"isBase":true}}}, +{"id":55725,"name":"Darrowmere Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":753},"isBase":true}}}, +{"id":55726,"name":"Brightwood Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":758},"isBase":true}}}, +{"id":55727,"name":"Everstill Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,761,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":761},"isBase":true}}}, +{"id":55728,"name":"Mystral Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":766},"isBase":true}}}, +{"id":55729,"name":"Bluefen Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":771},"isBase":true}}}, +{"id":55730,"name":"Galardell Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":775},"isBase":true}}}, +{"id":55731,"name":"Ameth'Aran Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":657},"isBase":true}}}, +{"id":55732,"name":"Mistmantle Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":677},"isBase":true}}}, +{"id":55733,"name":"Baradin Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,681,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":681},"isBase":true}}}, +{"id":55734,"name":"Darrowmere Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":685},"isBase":true}}}, +{"id":55735,"name":"Brightwood Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":689},"isBase":true}}}, +{"id":55736,"name":"Everstill Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,692,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":692},"isBase":true}}}, +{"id":55737,"name":"Mystral Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":696},"isBase":true}}}, +{"id":55738,"name":"Bluefen Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":701},"isBase":true}}}, +{"id":55739,"name":"Galardell Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":705},"isBase":true}}}, +{"id":55740,"name":"Ameth'Aran Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":854},"isBase":true}}}, +{"id":55741,"name":"Mistmantle Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":880},"isBase":true}}}, +{"id":55742,"name":"Baradin Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":885},"isBase":true}}}, +{"id":55743,"name":"Darrowmere Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":890},"isBase":true}}}, +{"id":55744,"name":"Brightwood Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":895},"isBase":true}}}, +{"id":55745,"name":"Everstill Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,900,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":900},"isBase":true}}}, +{"id":55746,"name":"Mystral Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,905,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":905},"isBase":true}}}, +{"id":55747,"name":"Bluefen Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":911},"isBase":true}}}, +{"id":55748,"name":"Galardell Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":916},"isBase":true}}}, +{"id":55749,"name":"Ameth'Aran Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"22":919},"isBase":true}}}, +{"id":55750,"name":"Mistmantle Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,948,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":305,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":305,"stats":{"22":948},"isBase":true}}}, +{"id":55751,"name":"Baradin Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,953,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":320,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":320,"stats":{"22":953},"isBase":true}}}, +{"id":55752,"name":"Darrowmere Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"22":959},"isBase":true}}}, +{"id":55753,"name":"Brightwood Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,964,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":357,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":357,"stats":{"22":964},"isBase":true}}}, +{"id":55754,"name":"Everstill Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,969,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":969},"isBase":true}}}, +{"id":55755,"name":"Mystral Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,975,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":975},"isBase":true}}}, +{"id":55756,"name":"Bluefen Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"22":981},"isBase":true}}}, +{"id":55757,"name":"Galardell Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"22":987},"isBase":true}}}, +{"id":55758,"name":"Ameth'Aran Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":788},"isBase":true}}}, +{"id":55759,"name":"Mistmantle Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,813,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":813},"isBase":true}}}, +{"id":55760,"name":"Baradin Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":817},"isBase":true}}}, +{"id":55761,"name":"Darrowmere Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":822},"isBase":true}}}, +{"id":55762,"name":"Brightwood Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":827},"isBase":true}}}, +{"id":55763,"name":"Everstill Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":831},"isBase":true}}}, +{"id":55764,"name":"Mystral Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,836,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":836},"isBase":true}}}, +{"id":55765,"name":"Bluefen Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":841},"isBase":true}}}, +{"id":55766,"name":"Galardell Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":846},"isBase":true}}}, +{"id":55767,"name":"Ameth'Aran Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"22":591},"isBase":true}}}, +{"id":55768,"name":"Mistmantle Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,609,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":227,"ilvl":278,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"278":{"randPropPoints":227,"stats":{"22":609},"isBase":true}}}, +{"id":55769,"name":"Baradin Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,613,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":237,"ilvl":283,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"283":{"randPropPoints":237,"stats":{"22":613},"isBase":true}}}, +{"id":55770,"name":"Darrowmere Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":616},"isBase":true}}}, +{"id":55771,"name":"Brightwood Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":620},"isBase":true}}}, +{"id":55772,"name":"Everstill Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":623},"isBase":true}}}, +{"id":55773,"name":"Mystral Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,627,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":294,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"306":{"randPropPoints":294,"stats":{"22":627},"isBase":true}}}, +{"id":55774,"name":"Bluefen Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"22":631},"isBase":true}}}, +{"id":55775,"name":"Galardell Cord","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"22":634},"isBase":true}}}, +{"id":55776,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,118,177,0,0,0,79,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"1":118,"2":177,"6":79,"11":79},"isBase":true}}}, +{"id":55777,"name":"Torturer's Mercy","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,136,91,61,0,0,0,0,0,0,61,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":462,"weaponDamageMax":859,"weaponSpeed":2.3,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":462,"weaponDamageMax":859,"stats":{"2":136,"3":91,"4":61,"11":61,"14":1216},"isBase":true}}}, +{"id":55778,"name":"Shield of the Iron Maiden","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[118,0,177,0,0,0,0,0,0,85,0,69,0,0,0,0,0,0,0,0,0,0,9893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":177,"9":85,"11":69,"22":9893},"isBase":true}}}, +{"id":55779,"name":"Raz's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[158,0,237,0,0,92,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,2119,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"0":158,"2":237,"5":92,"11":113,"22":2119},"isBase":true}}}, +{"id":55780,"name":"Twitching Shadows","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,118,177,0,0,0,79,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"1":118,"2":177,"6":79,"7":79,"22":558},"isBase":true}}}, +{"id":55781,"name":"Carrier Wave Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[118,0,177,0,0,0,0,0,0,0,69,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":177,"10":69,"11":85},"isBase":true}}}, +{"id":55782,"name":"Amber Messenger","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,212,319,0,0,124,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1573,"weaponDamageMax":2922,"weaponSpeed":2.9,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":1573,"weaponDamageMax":2922,"stats":{"1":212,"2":319,"5":124,"6":152},"isBase":true}}}, +{"id":55784,"name":"Clutches of Dying Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,237,158,105,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1766,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"11":105,"22":1766},"isBase":true}}}, +{"id":55785,"name":"Willowy Crown","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,319,212,0,0,142,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1176,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"6":142,"11":142,"22":1176},"isBase":true}}}, +{"id":55786,"name":"Kyrstel Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,237,158,113,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,837,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":113,"7":92,"22":837},"isBase":true}}}, +{"id":55787,"name":"Witching Hourglass","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"3":200},"isBase":true}}}, +{"id":55788,"name":"Crepuscular Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9893,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":79,"6":79,"22":9893},"isBase":true}}}, +{"id":55789,"name":"Berto's Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1488,"weaponDamageMax":2232,"weaponSpeed":2.4,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":1488,"weaponDamageMax":2232,"stats":{"1":212,"2":319,"6":142,"7":142},"isBase":true}}}, +{"id":55790,"name":"Toxidunk Dagger","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,91,136,0,0,61,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":827,"weaponDamageMax":1242,"weaponSpeed":1.8,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":827,"weaponDamageMax":1242,"stats":{"1":91,"2":136,"5":61,"8":61},"isBase":true}}}, +{"id":55791,"name":"Acanthia's Lost Pendant","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,177,118,69,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4926,"otherName":"Trash Mobs"}}],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":69,"11":85},"isBase":true}}}, +{"id":55792,"name":"Cinnabar Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,255,170,0,0,121,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,2189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":121,"11":99,"22":2189},"isBase":true}}}, +{"id":55793,"name":"Dolomite Adorned Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":113,"7":113,"22":703},"isBase":true}}}, +{"id":55794,"name":"Phosphorescent Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[91,0,191,0,0,0,0,0,74,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":91,"2":191,"8":74,"10":127},"isBase":true}}}, +{"id":55795,"name":"Key to the Endless Chamber","icon":"inv_misc_key_10","type":12,"stats":[0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"5":215},"isBase":true}}}, +{"id":55796,"name":"Fist of Pained Senses","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":2,"stats":[0,98,147,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"1":98,"2":147,"6":65,"7":65},"isBase":true}}}, +{"id":55797,"name":"Hematite Plate Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[170,0,255,0,0,0,99,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"6":99,"7":121,"22":1824},"isBase":true}}}, +{"id":55798,"name":"Deep Delving Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":113,"7":113,"22":920},"isBase":true}}}, +{"id":55799,"name":"Rose Quartz Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,191,127,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"6":85,"7":85},"isBase":true}}}, +{"id":55801,"name":"Quicksilver Blade","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,98,147,0,0,0,0,65,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":891,"weaponDamageMax":1338,"weaponSpeed":1.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":891,"weaponDamageMax":1338,"stats":{"1":98,"2":147,"7":65,"11":65},"isBase":true}}}, +{"id":55802,"name":"Elementium Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,127,191,0,0,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"1":127,"2":191,"5":85,"7":85,"22":920},"isBase":true}}}, +{"id":55803,"name":"Belt of the Ringworm","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,255,170,113,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":113,"6":113,"22":1642},"isBase":true}}}, +{"id":55804,"name":"Pendant of the Lightless Grotto","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,127,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"1":127,"2":191,"6":85,"11":85},"isBase":true}}}, +{"id":55810,"name":"Tendrils of Burrowing Dark","icon":"inv_misc_volatileshadow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"11":215},"isBase":true}}}, +{"id":55811,"name":"Sword of the Bottomless Pit","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[229,0,343,0,0,0,0,153,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":2538,"weaponDamageMax":3808,"weaponSpeed":3.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":2538,"weaponDamageMax":3808,"stats":{"0":229,"2":343,"7":153,"11":153},"isBase":true}}}, +{"id":55812,"name":"Helm of Numberless Shadows","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,229,343,0,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1196,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"1":229,"2":343,"5":153,"6":153,"22":1196},"isBase":true}}}, +{"id":55813,"name":"Elementium Fang","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[98,0,147,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"0":98,"2":147,"10":65,"11":65},"isBase":true}}}, +{"id":55814,"name":"Magnetite Mirror","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"8":215},"isBase":true}}}, +{"id":55815,"name":"Darkling Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,229,343,0,0,153,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":1603,"weaponDamageMax":2405,"weaponSpeed":2.4,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":1603,"weaponDamageMax":2405,"stats":{"1":229,"2":343,"5":153,"11":153},"isBase":true}}}, +{"id":55816,"name":"Leaden Despair","icon":"quest_12252_icon","type":12,"stats":[0,0,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":323},"isBase":true}}}, +{"id":55817,"name":"Slippers of the Twilight Prophet","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,255,170,0,113,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,774,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"5":113,"11":113,"22":774},"isBase":true}}}, +{"id":55818,"name":"Cowl of the Unseen World","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,343,229,0,0,0,164,0,0,0,134,0,0,0,0,0,0,0,0,0,0,1708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"7":164,"11":134,"22":1708},"isBase":true}}}, +{"id":55819,"name":"Tear of Blood","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"3":215},"isBase":true}}}, +{"id":55820,"name":"Prophet's Scepter","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,74,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":74,"11":91},"isBase":true}}}, +{"id":55822,"name":"Heavy Geode Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,98,147,0,0,65,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"1":98,"2":147,"5":65,"8":65},"isBase":true}}}, +{"id":55823,"name":"Wand of Dark Worship","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,147,98,0,0,65,65,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"weaponSpeed":1.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"stats":{"2":147,"3":98,"6":65,"7":65,"14":1307},"isBase":true}}}, +{"id":55824,"name":"Skin of Stone","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[127,0,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5088,"otherName":"Trash Mobs"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"6":85,"11":85,"22":563},"isBase":true}}}, +{"id":55830,"name":"Stratosphere Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,255,170,0,99,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"5":99,"11":121,"22":633},"isBase":true}}}, +{"id":55831,"name":"Headcover of Fog","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[164,0,343,0,0,134,0,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"0":164,"2":343,"5":134,"10":229,"22":2372},"isBase":true}}}, +{"id":55832,"name":"Fallen Snow Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,255,170,0,0,86,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":86,"7":129,"22":1577},"isBase":true}}}, +{"id":55833,"name":"Red Sky Pendant","icon":"inv_jewelry_necklace_18","type":2,"stats":[127,0,191,0,0,0,85,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"6":85,"11":85},"isBase":true}}}, +{"id":55834,"name":"Biting Wind","icon":"inv_knife_1h_cataclysm_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,147,98,0,0,74,50,0,0,0,0,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"weaponSpeed":1.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"stats":{"2":147,"3":98,"6":74,"7":50,"14":1307},"isBase":true}}}, +{"id":55835,"name":"Hail-Strung Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,170,255,0,0,0,121,0,0,0,0,99,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"6":121,"11":99,"22":1183},"isBase":true}}}, +{"id":55838,"name":"Mantle of Bestilled Winds","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,255,170,113,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1104,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":113,"7":113,"22":1104},"isBase":true}}}, +{"id":55839,"name":"Skyshard Ring","icon":"inv_misc_kingsring2","type":11,"stats":[127,0,191,0,0,0,91,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"6":91,"8":74},"isBase":true}}}, +{"id":55840,"name":"Amulet of Tender Breath","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,191,127,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":85,"6":85},"isBase":true}}}, +{"id":55841,"name":"Axe of the Eclipse","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[98,0,147,0,0,50,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"0":98,"2":147,"5":50,"11":74},"isBase":true}}}, +{"id":55842,"name":"Legguards of Winnowing Wind","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[229,0,343,0,0,0,134,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,2554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"0":229,"2":343,"6":134,"11":164,"22":2554},"isBase":true}}}, +{"id":55844,"name":"Gloves of Haze","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,170,255,0,0,0,113,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"6":113,"11":113,"22":920},"isBase":true}}}, +{"id":55845,"name":"Heart of Thunder","icon":"spell_nature_stormreach","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"23":861},"isBase":true}}}, +{"id":55846,"name":"Lightningflash","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,229,343,0,0,0,174,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":1695,"weaponDamageMax":3148,"weaponSpeed":2.9,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":1695,"weaponDamageMax":3148,"stats":{"1":229,"2":343,"6":174,"7":116},"isBase":true}}}, +{"id":55847,"name":"Billowing Cape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[127,0,191,0,0,0,0,0,0,0,74,91,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"10":74,"11":91,"22":563},"isBase":true}}}, +{"id":55848,"name":"Lunar Halo","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,343,229,0,0,153,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"6":153,"7":153,"22":2372},"isBase":true}}}, +{"id":55849,"name":"Leggings of Iridescent Clouds","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,343,229,164,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"4":164,"6":134,"22":985},"isBase":true}}}, +{"id":55850,"name":"Shadow of Perfect Bliss","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,191,127,0,64,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"5":64,"6":97,"22":563},"isBase":true}}}, +{"id":55851,"name":"Ring of Frozen Rain","icon":"inv_misc_stonering2","type":11,"stats":[0,0,191,127,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":85,"6":85},"isBase":true}}}, +{"id":55853,"name":"Thundercall","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,229,343,0,0,134,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":1695,"weaponDamageMax":3148,"weaponSpeed":2.9,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":1695,"weaponDamageMax":3148,"stats":{"1":229,"2":343,"5":134,"11":164},"isBase":true}}}, +{"id":55854,"name":"Rainsong","icon":"inv_elemental_mote_water01","type":12,"stats":[0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Trash Mobs"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"4":215},"isBase":true}}}, +{"id":55855,"name":"Darksky Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[170,0,255,0,0,0,0,0,0,0,113,113,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5035,"otherName":"Trash Mobs"}}],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"10":113,"11":113,"22":2007},"isBase":true}}}, +{"id":55856,"name":"Greaves of Wu the Elder","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"5":116,"6":142,"22":2151},"isBase":true}}}, +{"id":55857,"name":"Ionic Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,133,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"6":133,"22":1390},"isBase":true}}}, +{"id":55858,"name":"Kaleki Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,149,224,0,0,76,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":76,"11":114,"22":572},"isBase":true}}}, +{"id":55859,"name":"Spirit Creeper Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,224,149,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":100,"11":100},"isBase":true}}}, +{"id":55860,"name":"Seliza's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,268,401,0,0,0,136,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"weaponSpeed":3.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"stats":{"1":268,"2":401,"6":136,"11":203},"isBase":true}}}, +{"id":55861,"name":"Balkar's Waders","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,401,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":401,"5":178,"6":178,"22":1946},"isBase":true}}}, +{"id":55862,"name":"Greaves of Wu the Younger","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,298,199,0,0,133,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":133,"11":133,"22":2151},"isBase":true}}}, +{"id":55863,"name":"Ring of the Darkest Day","icon":"inv_jewelry_ring_54","type":11,"stats":[149,0,224,0,0,0,87,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"6":87,"11":107},"isBase":true}}}, +{"id":55864,"name":"Tauntka's Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,224,149,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":100,"7":100},"isBase":true}}}, +{"id":55865,"name":"Resonant Kris","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[115,0,172,0,0,76,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"0":115,"2":172,"5":76,"7":76},"isBase":true}}}, +{"id":55866,"name":"Sand Silk Wristband","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"5":100,"6":100,"22":501},"isBase":true}}}, +{"id":55867,"name":"Sand Dune Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[151,0,298,0,0,0,0,0,101,199,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":151,"2":298,"8":101,"9":199,"22":1760},"isBase":true}}}, +{"id":55868,"name":"Heart of Solace","icon":"spell_holy_persecution","type":12,"stats":[0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"7":252},"isBase":true}}}, +{"id":55869,"name":"Veneficial Band","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,224,149,87,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":87,"11":107},"isBase":true}}}, +{"id":55870,"name":"Barim's Main Gauche","icon":"inv_knife_1h_cataclysm_c_06","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,76,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1044,"weaponDamageMax":1567,"weaponSpeed":1.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1044,"weaponDamageMax":1567,"stats":{"1":115,"2":172,"6":76,"11":76},"isBase":true}}}, +{"id":55871,"name":"Crafty's Gaiters","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,199,298,0,0,0,0,133,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"7":133,"11":133,"22":1050},"isBase":true}}}, +{"id":55872,"name":"Geordan's Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[149,0,224,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":87,"6":107,"22":572},"isBase":true}}}, +{"id":55873,"name":"Ring of Three Lights","icon":"inv_jewelry_ring_77","type":11,"stats":[149,0,224,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"10":100,"11":100},"isBase":true}}}, +{"id":55874,"name":"Tia's Grace","icon":"inv_ammo_arrow_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":55875,"name":"Hammer of Sparks","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,115,172,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"1":115,"2":172,"5":76,"6":76},"isBase":true}}}, +{"id":55876,"name":"Mantle of Master Cho","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,298,199,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":133,"7":133,"22":858},"isBase":true}}}, +{"id":55877,"name":"Leggings of the Path","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,401,268,178,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"4":178,"11":178,"22":1336},"isBase":true}}}, +{"id":55878,"name":"Evelyn's Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,133,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"7":133,"22":644},"isBase":true}}}, +{"id":55879,"name":"Sorrowsong","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":55880,"name":"Zora's Ward","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,224,149,0,0,0,107,0,0,0,87,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"7":107,"11":87,"22":11504},"isBase":true}}}, +{"id":55881,"name":"Impetuous Query","icon":"inv_misc_punchcards_yellow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":55882,"name":"Oasis Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,224,149,107,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":107,"11":87,"22":668},"isBase":true}}}, +{"id":55884,"name":"Mirage Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,149,224,0,0,76,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":5396,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":76,"7":114},"isBase":true}}}, +{"id":55886,"name":"Poison Fang Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,149,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":100,"7":100,"22":668},"isBase":true}}}, +{"id":55887,"name":"Belt of Petrified Tears","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,298,199,133,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"6":133,"22":1251},"isBase":true}}}, +{"id":55888,"name":"Darkhowl Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[114,0,224,0,0,0,0,0,76,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":114,"2":224,"8":76,"9":149},"isBase":true}}}, +{"id":55889,"name":"Anhuur's Hymnal","icon":"inv_misc_book_17","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"5":252},"isBase":true}}}, +{"id":55890,"name":"Awakening Footfalls","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,298,199,0,0,133,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":133,"11":133,"22":1050},"isBase":true}}}, +{"id":55992,"name":"Armguards of Unearthly Light","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[114,0,224,0,0,76,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":114,"2":224,"5":76,"9":149,"22":1369},"isBase":true}}}, +{"id":55993,"name":"Legwraps of Astral Rain","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"6":178,"11":178,"22":1002},"isBase":true}}}, +{"id":55994,"name":"Ring of Blinding Stars","icon":"inv_misc_starring3","type":11,"stats":[0,149,224,0,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"7":100,"11":100},"isBase":true}}}, +{"id":55995,"name":"Blood of Isiset","icon":"inv_potion_55","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":55996,"name":"Nova Band","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[149,0,224,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":100,"6":100},"isBase":true}}}, +{"id":55997,"name":"Bloodpetal Mantle","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,199,298,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"5":133,"6":133,"22":1668},"isBase":true}}}, +{"id":55998,"name":"Robes of Rampant Growth","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,401,268,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"6":178,"7":178,"22":1145},"isBase":true}}}, +{"id":55999,"name":"Seedling Pod","icon":"inv_misc_herb_08","type":2,"stats":[149,0,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":100,"7":100},"isBase":true}}}, +{"id":56000,"name":"Band of Life Energy","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":107,"6":87},"isBase":true}}}, +{"id":56004,"name":"Talons of the Storm Crow","icon":"inv_staff_101","type":13,"weaponType":6,"handType":4,"stats":[0,104,169,0,0,0,86,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"weaponSpeed":3.5,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":229,"weaponDamageMin":1146,"weaponDamageMax":1719,"stats":{"1":104,"2":169,"6":86,"7":62},"isBase":true}}}, +{"id":56093,"name":"Breastplate of the Risen Land","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":401,"6":178,"11":178,"22":3128},"isBase":true}}}, +{"id":56094,"name":"Underworld Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,298,199,133,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"11":133,"22":859},"isBase":true}}}, +{"id":56095,"name":"Mouth of the Earth","icon":"inv_misc_necklacea11","type":2,"stats":[0,149,224,0,0,100,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":100,"8":100},"isBase":true}}}, +{"id":56096,"name":"Bulwark of the Primordial Mound","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[114,0,224,0,0,76,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":114,"2":224,"5":76,"9":149,"22":11504},"isBase":true}}}, +{"id":56097,"name":"Soul Releaser","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,401,268,178,0,0,178,0,0,0,0,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":939,"weaponDamageMax":1409,"weaponSpeed":2.4,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":939,"weaponDamageMax":1409,"stats":{"2":401,"3":268,"4":178,"7":178,"14":1533},"isBase":true}}}, +{"id":56098,"name":"Red Beam Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":133,"7":133,"22":859},"isBase":true}}}, +{"id":56099,"name":"Fingers of Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[199,0,298,0,0,0,0,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,1955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"10":133,"11":133,"22":1955},"isBase":true}}}, +{"id":56100,"name":"Right Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"5":252},"isBase":true}}}, +{"id":56101,"name":"Sun Strike","icon":"inv_sword_1h_cataclysm_c_05","type":13,"weaponType":9,"handType":2,"stats":[115,0,172,0,0,76,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"0":115,"2":172,"5":76,"11":76},"isBase":true}}}, +{"id":56102,"name":"Left Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"8":252},"isBase":true}}}, +{"id":56104,"name":"Legguards of Noon","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,401,268,178,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"4":178,"6":178,"22":2737},"isBase":true}}}, +{"id":56105,"name":"Hekatic Slippers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,116,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":116,"11":142,"22":787},"isBase":true}}}, +{"id":56106,"name":"Band of Rays","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"5":100,"6":100},"isBase":true}}}, +{"id":56107,"name":"Solar Wind Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,224,149,100,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"7":100,"22":572},"isBase":true}}}, +{"id":56108,"name":"Blade of the Burning Sun","icon":"inv_sword_1h_cataclysm_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,172,115,0,0,82,67,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":406,"weaponDamageMax":755,"weaponSpeed":1.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":406,"weaponDamageMax":755,"stats":{"2":172,"3":115,"6":82,"7":67,"14":1532},"isBase":true}}}, +{"id":56109,"name":"Book of Origination","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,90,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"7":90,"11":105},"isBase":true}}}, +{"id":56110,"name":"Charm of the Muse","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,224,149,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"5":100,"6":100},"isBase":true}}}, +{"id":56111,"name":"Temple Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"9":100,"11":100},"isBase":true}}}, +{"id":56112,"name":"Wildhammer Riding Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,268,401,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":401,"6":178,"7":178,"22":1807},"isBase":true}}}, +{"id":56113,"name":"Cursed Skardyn Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,401,268,178,0,0,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"4":178,"11":178,"22":1527},"isBase":true}}}, +{"id":56114,"name":"Umbriss Band","icon":"inv_misc_stonering2","type":11,"stats":[114,0,224,0,0,76,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":114,"2":224,"5":76,"11":149},"isBase":true}}}, +{"id":56115,"name":"Skardyn's Grace","icon":"inv_misc_coin_08","type":12,"stats":[0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":252},"isBase":true}}}, +{"id":56116,"name":"Modgud's Blade","icon":"inv_knife_1h_cataclysm_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,172,115,0,76,76,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":457,"weaponDamageMax":849,"weaponSpeed":1.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":457,"weaponDamageMax":849,"stats":{"2":172,"3":115,"5":76,"6":76,"14":1532},"isBase":true}}}, +{"id":56118,"name":"Belt of the Forgemaster","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[199,0,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"6":133,"7":133,"22":1760},"isBase":true}}}, +{"id":56119,"name":"Dark Iron Chain Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,298,199,133,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"11":133,"22":1529},"isBase":true}}}, +{"id":56120,"name":"Ring of Dun Algaz","icon":"inv_misc_kingsring2","type":11,"stats":[0,149,224,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":87,"6":107},"isBase":true}}}, +{"id":56121,"name":"Throngus's Finger","icon":"inv_gizmo_felironshell","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"10":252},"isBase":true}}}, +{"id":56122,"name":"Wand of Untainted Power","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,172,115,76,0,0,76,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":457,"weaponDamageMax":849,"weaponSpeed":1.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":457,"weaponDamageMax":849,"stats":{"2":172,"3":115,"4":76,"7":76,"14":1532},"isBase":true}}}, +{"id":56123,"name":"Red Scale Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,199,298,0,0,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":142,"7":116,"22":1529},"isBase":true}}}, +{"id":56124,"name":"Earthshape Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[199,0,298,0,0,0,0,0,0,133,0,133,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"9":133,"11":133,"22":2346},"isBase":true}}}, +{"id":56125,"name":"Crimsonborne Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,224,149,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"6":100,"22":501},"isBase":true}}}, +{"id":56126,"name":"Azureborne Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":107,"6":87,"22":572},"isBase":true}}}, +{"id":56127,"name":"Windwalker Blade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,76,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1044,"weaponDamageMax":1567,"weaponSpeed":1.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1044,"weaponDamageMax":1567,"stats":{"1":115,"2":172,"6":76,"8":76},"isBase":true}}}, +{"id":56128,"name":"Vest of Misshapen Hides","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,268,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":401,"6":178,"11":178,"22":1527},"isBase":true}}}, +{"id":56129,"name":"Circle of Bone","icon":"inv_jewelry_ring_66","type":11,"stats":[149,0,224,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":100,"7":100},"isBase":true}}}, +{"id":56130,"name":"Mace of Transformed Bone","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[87,0,172,0,0,58,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"0":87,"2":172,"5":58,"9":115},"isBase":true}}}, +{"id":56131,"name":"Wild Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[268,0,401,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"weaponSpeed":3.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"stats":{"0":268,"2":401,"7":178,"11":178},"isBase":true}}}, +{"id":56132,"name":"Mark of Khardros","icon":"inv_hammer_04","type":12,"stats":[252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":252},"isBase":true}}}, +{"id":56133,"name":"Crown of Enfeebled Bodies","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,401,208,0,0,158,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"6":158,"7":138,"22":930},"isBase":true}}}, +{"id":56135,"name":"Bracers of Umbral Mending","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"11":100,"22":1369},"isBase":true}}}, +{"id":56136,"name":"Corrupted Egg Shell","icon":"inv_misc_cat_trinket09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":378,"isBase":true}}}, +{"id":56137,"name":"Staff of Siphoned Essences","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,401,268,0,0,178,0,0,0,0,178,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":821,"weaponDamageMax":1233,"weaponSpeed":2.1,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":821,"weaponDamageMax":1233,"stats":{"2":401,"3":268,"6":178,"11":178,"14":1533},"isBase":true}}}, +{"id":56138,"name":"Gale of Shadows","icon":"spell_shadow_gathershadows","type":12,"stats":[0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"7":252},"isBase":true}}}, +{"id":56217,"name":"Charred Dragonscale Shoulders","icon":"inv_shoulder_113","type":3,"armorType":3,"stats":[0,0,298,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"22":1668},"isBase":true}}}, +{"id":56218,"name":"Curse-Tainted Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,401,268,178,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"4":178,"11":157,"22":1002},"isBase":true}}}, +{"id":56219,"name":"Shroud of Dark Memories","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[114,0,224,0,0,0,0,0,76,149,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":114,"2":224,"8":76,"9":149,"22":572},"isBase":true}}}, +{"id":56220,"name":"Abandoned Dark Iron Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,224,149,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4950,"otherName":"Trash Mobs"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":100,"7":100},"isBase":true}}}, +{"id":56266,"name":"Lightning Whelk Axe","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":56267,"name":"Periwinkle Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,252,168,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"7":112,"11":112,"22":580},"isBase":true}}}, +{"id":56268,"name":"Wrasse Handwraps","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,205,337,0,0,0,114,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":114,"11":151,"22":1451},"isBase":true}}}, +{"id":56269,"name":"Aurelian Mitre","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,157,0,0,0,0,0,0,176,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":157,"11":176,"22":942},"isBase":true}}}, +{"id":56270,"name":"Entwined Nereis","icon":"inv_jewelry_ring_41","type":11,"stats":[128,0,253,0,0,86,0,0,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Lady Naz'jar"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":253,"5":86,"9":167},"isBase":true}}}, +{"id":56271,"name":"Cerith Spire Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,202,0,202,0,0,0,0,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"stats":{"2":454,"3":302,"5":202,"7":202,"14":1732},"isBase":true}}}, +{"id":56272,"name":"Harp Shell Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"7":150,"22":2474},"isBase":true}}}, +{"id":56273,"name":"Caridean Epaulettes","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,205,337,0,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":130,"8":150,"22":1178},"isBase":true}}}, +{"id":56274,"name":"Chromis Chestpiece","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"11":172,"22":2322},"isBase":true}}}, +{"id":56275,"name":"Eagle Ray Cloak","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Commander Ulthok, the Festering Prince"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"7":112,"11":112,"22":580},"isBase":true}}}, +{"id":56276,"name":"Anthia's Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,0,252,168,0,98,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":98,"11":120},"isBase":true}}}, +{"id":56277,"name":"Decapod Slippers","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,114,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":114,"6":151,"22":1080},"isBase":true}}}, +{"id":56278,"name":"Anomuran Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[242,0,454,0,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":242,"2":454,"6":162,"11":182,"22":2680},"isBase":true}}}, +{"id":56280,"name":"Porcelain Crab","icon":"inv_jewelcrafting_purplecrab","type":12,"stats":[0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Mindbender Ghur'sha"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"9":285},"isBase":true}}}, +{"id":56281,"name":"Wentletrap Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,262,454,0,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"6":192,"7":172,"22":2322},"isBase":true}}}, +{"id":56282,"name":"Nautilus Ring","icon":"inv_misc_shell_04","type":11,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"7":112},"isBase":true}}}, +{"id":56283,"name":"Triton Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[210,0,454,0,0,0,0,0,133,0,262,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":210,"2":454,"8":133,"10":262,"22":2886},"isBase":true}}}, +{"id":56284,"name":"Whitefin Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[302,0,454,0,0,0,216,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"0":302,"2":454,"6":216,"7":177},"isBase":true}}}, +{"id":56285,"name":"Might of the Ocean","icon":"inv_stone_02","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"5":285},"isBase":true}}}, +{"id":56286,"name":"Mnemiopsis Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"5":150,"6":130,"22":725},"isBase":true}}}, +{"id":56288,"name":"Pipefish Cord","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,252,168,0,0,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"7":120,"11":98},"isBase":true}}}, +{"id":56289,"name":"Bioluminescent Lamp","icon":"inv_offhand_outlandraid_03blue","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"6":98},"isBase":true}}}, +{"id":56290,"name":"Sea Star","icon":"inv_datacrystal05","type":12,"stats":[0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"4":285},"isBase":true}}}, +{"id":56291,"name":"Abalone Plate Armor","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,454,262,172,0,0,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5004,"otherName":"Ozumat"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":172,"11":192,"22":3298},"isBase":true}}}, +{"id":56292,"name":"Barnacle Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,168,252,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"7":98,"8":120},"isBase":true}}}, +{"id":56293,"name":"Ring of the Great Whale","icon":"inv_jewelry_ring_50naxxramas","type":11,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"7":112},"isBase":true}}}, +{"id":56294,"name":"Alpheus Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[262,0,454,0,0,157,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"5":157,"6":196,"22":2886},"isBase":true}}}, +{"id":56295,"name":"Grace of the Herald","icon":"inv_misc_horn_02","type":12,"stats":[0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":285},"isBase":true}}}, +{"id":56296,"name":"Corla's Baton","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,194,129,0,76,0,0,0,0,0,93,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"5":76,"11":93,"14":1729},"isBase":true}}}, +{"id":56297,"name":"Armbands of Change","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,252,168,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":98,"7":120,"22":687},"isBase":true}}}, +{"id":56298,"name":"Renouncer's Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,162,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"5":162,"11":182,"22":1887},"isBase":true}}}, +{"id":56299,"name":"Signet of Transformation","icon":"inv_misc_stonering2","type":11,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Corla, Herald of Twilight"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"7":112,"11":112},"isBase":true}}}, +{"id":56300,"name":"Quicksilver Amulet","icon":"inv_jewelry_necklace_30","type":2,"stats":[0,0,252,168,120,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"7":98},"isBase":true}}}, +{"id":56301,"name":"Bracers of Cooled Anger","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[168,0,252,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"8":112,"22":1443},"isBase":true}}}, +{"id":56302,"name":"Steelbender's Masterpiece","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,93,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"5":93,"11":76},"isBase":true}}}, +{"id":56303,"name":"Heat Wave Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,454,262,177,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":177,"6":176,"22":2032},"isBase":true}}}, +{"id":56304,"name":"Burned Gatherings","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[120,0,252,0,0,98,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Karsh Steelbender"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":120,"2":252,"5":98,"11":168,"22":580},"isBase":true}}}, +{"id":56305,"name":"Beauty's Silken Ribbon","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"7":130,"22":652},"isBase":true}}}, +{"id":56306,"name":"Beauty's Favorite Bone","icon":"inv_misc_bone_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,120,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":120,"6":98},"isBase":true}}}, +{"id":56307,"name":"Kibble","icon":"inv_jewelry_ring_45","type":11,"stats":[0,0,252,168,120,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"11":98},"isBase":true}}}, +{"id":56308,"name":"Beauty's Plate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":282,"2":454,"10":182,"11":162,"22":3298},"isBase":true}}}, +{"id":56309,"name":"Beauty's Chew Toy","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,262,454,0,0,162,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Beauty"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"5":162,"7":202,"22":1374},"isBase":true}}}, +{"id":56310,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"11":112},"isBase":true}}}, +{"id":56311,"name":"Inquisition Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,202,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"5":202,"11":162,"22":1160},"isBase":true}}}, +{"id":56312,"name":"Torturer's Mercy","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,194,129,91,0,0,0,0,0,0,78,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"stats":{"2":194,"3":129,"4":91,"11":78,"14":1729},"isBase":true}}}, +{"id":56313,"name":"Manacles of Pain","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112,"22":1016},"isBase":true}}}, +{"id":56314,"name":"Shield of the Iron Maiden","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[168,0,252,0,0,0,0,0,0,120,0,98,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Rom'ogg Bonecrusher"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"9":120,"11":98,"22":11696},"isBase":true}}}, +{"id":56315,"name":"Twitching Shadows","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"7":112,"22":580},"isBase":true}}}, +{"id":56317,"name":"Amber Messenger","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,302,454,0,0,177,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"weaponSpeed":2.9,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"stats":{"1":302,"2":454,"5":177,"6":216},"isBase":true}}}, +{"id":56318,"name":"Raz's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[205,0,337,0,0,111,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"5":111,"11":161,"22":2474},"isBase":true}}}, +{"id":56319,"name":"Carrier Wave Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[168,0,252,0,0,0,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"10":98,"11":120},"isBase":true}}}, +{"id":56320,"name":"Witching Hourglass","icon":"inv_gizmo_khoriumpowercore","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"3":285},"isBase":true}}}, +{"id":56321,"name":"Willowy Crown","icon":"inv_helmet_141","type":1,"armorType":2,"stats":[0,0,454,242,0,0,182,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"6":182,"11":162,"22":1276},"isBase":true}}}, +{"id":56322,"name":"Crepuscular Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112,"22":11696},"isBase":true}}}, +{"id":56323,"name":"Clutches of Dying Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"11":150,"22":2061},"isBase":true}}}, +{"id":56324,"name":"Kyrstel Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,161,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4926,"otherName":"Ascendant Lord Obsidius"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":161,"7":111,"22":870},"isBase":true}}}, +{"id":56325,"name":"Berto's Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,302,454,0,0,0,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2120,"weaponDamageMax":3181,"weaponSpeed":2.4,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2120,"weaponDamageMax":3181,"stats":{"1":302,"2":454,"6":202,"7":202},"isBase":true}}}, +{"id":56326,"name":"Toxidunk Dagger","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"5":86,"8":86},"isBase":true}}}, +{"id":56327,"name":"Acanthia's Lost Pendant","icon":"inv_jewelry_necklace_32","type":2,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":98,"11":120},"isBase":true}}}, +{"id":56328,"name":"Key to the Endless Chamber","icon":"inv_misc_key_10","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"5":285},"isBase":true}}}, +{"id":56329,"name":"Fist of Pained Senses","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":2,"stats":[0,129,194,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"6":86,"7":86},"isBase":true}}}, +{"id":56330,"name":"Cinnabar Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,337,205,0,0,141,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":141,"11":131,"22":2474},"isBase":true}}}, +{"id":56331,"name":"Dolomite Adorned Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"7":150,"22":725},"isBase":true}}}, +{"id":56332,"name":"Phosphorescent Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[120,0,252,0,0,0,0,0,98,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Corborus"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":120,"2":252,"8":98,"10":168},"isBase":true}}}, +{"id":56333,"name":"Rose Quartz Band","icon":"inv_jewelry_ring_68","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"7":112},"isBase":true}}}, +{"id":56334,"name":"Deep Delving Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":982},"isBase":true}}}, +{"id":56335,"name":"Quicksilver Blade","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"7":86,"11":86},"isBase":true}}}, +{"id":56336,"name":"Hematite Plate Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[205,0,337,0,0,0,131,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Slabhide"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":131,"7":141,"22":2061},"isBase":true}}}, +{"id":56338,"name":"Pendant of the Lightless Grotto","icon":"inv_jewelry_necklace_16","type":2,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"11":112},"isBase":true}}}, +{"id":56339,"name":"Tendrils of Burrowing Dark","icon":"inv_misc_volatileshadow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":56340,"name":"Elementium Scale Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"7":112,"22":1016},"isBase":true}}}, +{"id":56341,"name":"Belt of the Ringworm","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":1855},"isBase":true}}}, +{"id":56342,"name":"Sword of the Bottomless Pit","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,0,202,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"weaponSpeed":3.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"Ozruk"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"stats":{"0":302,"2":454,"7":202,"11":202},"isBase":true}}}, +{"id":56343,"name":"Darkling Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,302,454,0,0,202,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2120,"weaponDamageMax":3181,"weaponSpeed":2.4,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2120,"weaponDamageMax":3181,"stats":{"1":302,"2":454,"5":202,"11":202},"isBase":true}}}, +{"id":56344,"name":"Helm of Numberless Shadows","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,242,454,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"5":182,"6":162,"22":1276},"isBase":true}}}, +{"id":56345,"name":"Magnetite Mirror","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"8":285},"isBase":true}}}, +{"id":56346,"name":"Elementium Fang","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,0,0,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"10":86,"11":86},"isBase":true}}}, +{"id":56347,"name":"Leaden Despair","icon":"quest_12252_icon","type":12,"stats":[0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":427},"isBase":true}}}, +{"id":56348,"name":"Slippers of the Twilight Prophet","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"5":130,"11":150,"22":797},"isBase":true}}}, +{"id":56349,"name":"Prophet's Scepter","icon":"inv_offhand_utgarde_d_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":98,"11":120},"isBase":true}}}, +{"id":56351,"name":"Tear of Blood","icon":"spell_shadow_lifedrain","type":12,"stats":[0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"3":285},"isBase":true}}}, +{"id":56352,"name":"Cowl of the Unseen World","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,454,242,0,0,0,176,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5088,"otherName":"High Priestess Azil"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"7":176,"11":157,"22":1887},"isBase":true}}}, +{"id":56353,"name":"Heavy Geode Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,129,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"5":86,"8":86},"isBase":true}}}, +{"id":56354,"name":"Wand of Dark Worship","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,194,129,0,0,86,86,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"6":86,"7":86,"14":1729},"isBase":true}}}, +{"id":56355,"name":"Skin of Stone","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[168,0,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"11":112,"22":580},"isBase":true}}}, +{"id":56356,"name":"Stratosphere Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,111,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"5":111,"11":161,"22":652},"isBase":true}}}, +{"id":56357,"name":"Biting Wind","icon":"inv_knife_1h_cataclysm_c_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,194,130,0,0,98,66,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":130,"6":98,"7":66,"14":1729},"isBase":true}}}, +{"id":56358,"name":"Headcover of Fog","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[196,0,454,0,0,137,0,0,0,0,242,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":196,"2":454,"5":137,"10":242,"22":2680},"isBase":true}}}, +{"id":56359,"name":"Fallen Snow Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,337,205,0,0,114,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":114,"7":151,"22":1741},"isBase":true}}}, +{"id":56360,"name":"Red Sky Pendant","icon":"inv_jewelry_necklace_18","type":2,"stats":[168,0,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Grand Vizier Ertan"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"11":112},"isBase":true}}}, +{"id":56361,"name":"Mantle of Bestilled Winds","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,337,205,130,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"7":150,"22":1178},"isBase":true}}}, +{"id":56362,"name":"Amulet of Tender Breath","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112},"isBase":true}}}, +{"id":56363,"name":"Hail-Strung Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,205,337,0,0,0,141,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":141,"11":131,"22":1306},"isBase":true}}}, +{"id":56364,"name":"Axe of the Eclipse","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,66,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"5":66,"11":98},"isBase":true}}}, +{"id":56365,"name":"Skyshard Ring","icon":"inv_misc_kingsring2","type":11,"stats":[168,0,252,0,0,0,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Altairus"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":120,"8":98},"isBase":true}}}, +{"id":56366,"name":"Lightningflash","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,302,454,0,0,0,230,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"weaponSpeed":2.9,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"stats":{"1":302,"2":454,"6":230,"7":153},"isBase":true}}}, +{"id":56367,"name":"Legguards of Winnowing Wind","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[262,0,454,0,0,0,167,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"6":167,"11":185,"22":2886},"isBase":true}}}, +{"id":56368,"name":"Gloves of Haze","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,205,337,0,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":150,"11":130,"22":982},"isBase":true}}}, +{"id":56369,"name":"Billowing Cape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[168,0,252,0,0,0,0,0,0,0,98,120,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"10":98,"11":120,"22":580},"isBase":true}}}, +{"id":56370,"name":"Heart of Thunder","icon":"spell_nature_stormreach","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1139,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"23":1139},"isBase":true}}}, +{"id":56371,"name":"Shadow of Perfect Bliss","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,252,168,0,85,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":85,"6":128,"22":580},"isBase":true}}}, +{"id":56373,"name":"Ring of Frozen Rain","icon":"inv_misc_stonering2","type":11,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112},"isBase":true}}}, +{"id":56374,"name":"Lunar Halo","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,454,242,0,0,172,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"6":172,"7":172,"22":2680},"isBase":true}}}, +{"id":56375,"name":"Leggings of Iridescent Clouds","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,186,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":186,"6":167,"22":1015},"isBase":true}}}, +{"id":56376,"name":"Thundercall","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,302,454,0,0,177,0,0,0,0,0,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"weaponSpeed":2.9,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5035,"otherName":"Asaad, Caliph of Zephyrs"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2242,"weaponDamageMax":4164,"stats":{"1":302,"2":454,"5":177,"11":216},"isBase":true}}}, +{"id":56377,"name":"Rainsong","icon":"inv_elemental_mote_water01","type":12,"stats":[0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"4":285},"isBase":true}}}, +{"id":56378,"name":"Darksky Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":225,"2":337,"10":130,"11":130,"22":2268},"isBase":true}}}, +{"id":56379,"name":"Kaleki Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,85,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":85,"11":128,"22":580},"isBase":true}}}, +{"id":56380,"name":"Spirit Creeper Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"11":112},"isBase":true}}}, +{"id":56381,"name":"Greaves of Wu the Elder","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[205,0,337,0,0,131,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"5":131,"6":141,"22":2268},"isBase":true}}}, +{"id":56382,"name":"Seliza's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,153,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"1":302,"2":454,"6":153,"11":230},"isBase":true}}}, +{"id":56383,"name":"Ionic Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"General Husam"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":1451},"isBase":true}}}, +{"id":56384,"name":"Resonant Kris","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"5":86,"7":86},"isBase":true}}}, +{"id":56385,"name":"Tauntka's Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"7":112},"isBase":true}}}, +{"id":56386,"name":"Balkar's Waders","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,262,454,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"5":192,"6":172,"22":2032},"isBase":true}}}, +{"id":56387,"name":"Greaves of Wu the Younger","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"11":130,"22":2268},"isBase":true}}}, +{"id":56388,"name":"Ring of the Darkest Day","icon":"inv_jewelry_ring_54","type":11,"stats":[168,0,252,0,0,0,98,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"High Prophet Barim"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":98,"11":120},"isBase":true}}}, +{"id":56389,"name":"Sand Silk Wristband","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"6":112,"22":507},"isBase":true}}}, +{"id":56390,"name":"Barim's Main Gauche","icon":"inv_knife_1h_cataclysm_c_06","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"6":86,"11":86},"isBase":true}}}, +{"id":56391,"name":"Veneficial Band","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,252,168,98,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":98,"11":120},"isBase":true}}}, +{"id":56392,"name":"Sand Dune Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[171,0,337,0,0,0,0,0,114,185,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":171,"2":337,"8":114,"9":185,"22":1855},"isBase":true}}}, +{"id":56393,"name":"Heart of Solace","icon":"spell_holy_persecution","type":12,"stats":[0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Lockmaw"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"7":285},"isBase":true}}}, +{"id":56394,"name":"Tia's Grace","icon":"inv_ammo_arrow_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":56395,"name":"Crafty's Gaiters","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":130,"11":150,"22":1080},"isBase":true}}}, +{"id":56396,"name":"Hammer of Sparks","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":56397,"name":"Geordan's Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[168,0,252,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"5":98,"6":120,"22":580},"isBase":true}}}, +{"id":56398,"name":"Ring of Three Lights","icon":"inv_jewelry_ring_77","type":11,"stats":[168,0,252,0,0,0,0,0,0,0,113,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"10":113,"11":113},"isBase":true}}}, +{"id":56399,"name":"Mantle of Master Cho","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"7":130,"22":870},"isBase":true}}}, +{"id":56400,"name":"Sorrowsong","icon":"spell_nature_invisibilitytotem","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":56401,"name":"Leggings of the Path","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,0,454,262,202,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"11":162,"22":1374},"isBase":true}}}, +{"id":56402,"name":"Zora's Ward","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,0,0,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"7":120,"11":98,"22":11696},"isBase":true}}}, +{"id":56403,"name":"Evelyn's Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":5396,"otherName":"Siamat"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":652},"isBase":true}}}, +{"id":56404,"name":"Mirage Ring","icon":"inv_misc_stonering2","type":11,"stats":[0,168,252,0,0,85,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":85,"7":128},"isBase":true}}}, +{"id":56405,"name":"Oasis Bracers","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,252,168,120,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"11":98,"22":687},"isBase":true}}}, +{"id":56406,"name":"Impetuous Query","icon":"inv_misc_punchcards_yellow","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":56407,"name":"Anhuur's Hymnal","icon":"inv_misc_book_17","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"5":285},"isBase":true}}}, +{"id":56408,"name":"Awakening Footfalls","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":130,"11":150,"22":1080},"isBase":true}}}, +{"id":56409,"name":"Poison Fang Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"7":112,"22":687},"isBase":true}}}, +{"id":56410,"name":"Belt of Petrified Tears","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":1306},"isBase":true}}}, +{"id":56411,"name":"Darkhowl Amulet","icon":"inv_misc_necklacea12","type":2,"stats":[128,0,252,0,0,0,0,0,85,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Temple Guardian Anhuur"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"8":85,"9":168},"isBase":true}}}, +{"id":56412,"name":"Ring of Blinding Stars","icon":"inv_misc_starring3","type":11,"stats":[0,168,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"7":112,"11":112},"isBase":true}}}, +{"id":56413,"name":"Legwraps of Astral Rain","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,0,0,172,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":172,"11":192,"22":1015},"isBase":true}}}, +{"id":56414,"name":"Blood of Isiset","icon":"inv_potion_55","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"11":285},"isBase":true}}}, +{"id":56415,"name":"Nova Band","icon":"inv_jewelry_ring_51naxxramas","type":11,"stats":[168,0,252,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"5":112,"6":112},"isBase":true}}}, +{"id":56416,"name":"Armguards of Unearthly Light","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[128,0,252,0,0,85,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Isiset, Construct of Magic"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"5":85,"9":168,"22":1443},"isBase":true}}}, +{"id":56417,"name":"Robes of Rampant Growth","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,202,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":202,"7":162,"22":1160},"isBase":true}}}, +{"id":56418,"name":"Band of Life Energy","icon":"inv_jewelry_ring_75","type":11,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"6":98},"isBase":true}}}, +{"id":56419,"name":"Bloodpetal Mantle","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"6":150,"22":1741},"isBase":true}}}, +{"id":56421,"name":"Seedling Pod","icon":"inv_misc_herb_08","type":2,"stats":[168,0,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Ammunae, Construct of Life"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"5":112,"7":112},"isBase":true}}}, +{"id":56422,"name":"Mouth of the Earth","icon":"inv_misc_necklacea11","type":2,"stats":[0,168,252,0,0,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"8":112},"isBase":true}}}, +{"id":56423,"name":"Underworld Cord","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":884},"isBase":true}}}, +{"id":56424,"name":"Soul Releaser","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,202,0,0,202,0,0,0,0,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1060,"weaponDamageMax":1590,"weaponSpeed":2.4,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":1060,"weaponDamageMax":1590,"stats":{"2":454,"3":302,"4":202,"7":202,"14":1732},"isBase":true}}}, +{"id":56425,"name":"Breastplate of the Risen Land","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[262,0,454,0,0,0,202,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"6":202,"11":162,"22":3298},"isBase":true}}}, +{"id":56426,"name":"Bulwark of the Primordial Mound","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[128,0,252,0,0,85,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Earthrager Ptah"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"5":85,"9":168,"22":11696},"isBase":true}}}, +{"id":56427,"name":"Left Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"8":285},"isBase":true}}}, +{"id":56428,"name":"Fingers of Light","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[215,0,337,0,0,0,0,0,0,0,130,140,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":215,"2":337,"10":130,"11":140,"22":2061},"isBase":true}}}, +{"id":56429,"name":"Red Beam Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,205,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":130,"7":150,"22":884},"isBase":true}}}, +{"id":56430,"name":"Sun Strike","icon":"inv_sword_1h_cataclysm_c_05","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"5":86,"11":86},"isBase":true}}}, +{"id":56431,"name":"Right Eye of Rajh","icon":"inv_jewelcrafting_dragonseye02","type":12,"stats":[0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"5":285},"isBase":true}}}, +{"id":56432,"name":"Band of Rays","icon":"inv_jewelry_ring_57","type":11,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"6":112},"isBase":true}}}, +{"id":56433,"name":"Blade of the Burning Sun","icon":"inv_sword_1h_cataclysm_c_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,194,129,0,0,93,76,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":458,"weaponDamageMax":852,"weaponSpeed":1.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":458,"weaponDamageMax":852,"stats":{"2":194,"3":129,"6":93,"7":76,"14":1729},"isBase":true}}}, +{"id":56434,"name":"Solar Wind Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"7":112,"22":580},"isBase":true}}}, +{"id":56435,"name":"Legguards of Noon","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,454,302,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":302,"4":202,"6":202,"22":2886},"isBase":true}}}, +{"id":56436,"name":"Hekatic Slippers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,225,131,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Rajh, Construct of Sun"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":225,"4":131,"11":161,"22":797},"isBase":true}}}, +{"id":56437,"name":"Charm of the Muse","icon":"inv_jewelry_necklace_28naxxramas","type":2,"stats":[0,0,252,168,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"6":112},"isBase":true}}}, +{"id":56438,"name":"Book of Origination","icon":"inv_misc_book_10","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"7":100,"11":100},"isBase":true}}}, +{"id":56439,"name":"Temple Band","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"9":100,"11":100},"isBase":true}}}, +{"id":56440,"name":"Skardyn's Grace","icon":"inv_misc_coin_08","type":12,"stats":[0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":285},"isBase":true}}}, +{"id":56441,"name":"Modgud's Blade","icon":"inv_knife_1h_cataclysm_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,194,129,0,78,91,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"5":78,"6":91,"14":1729},"isBase":true}}}, +{"id":56442,"name":"Cursed Skardyn Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,454,262,162,0,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":162,"11":202,"22":1571},"isBase":true}}}, +{"id":56443,"name":"Wildhammer Riding Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"6":162,"7":182,"22":1887},"isBase":true}}}, +{"id":56444,"name":"Umbriss Band","icon":"inv_misc_stonering2","type":11,"stats":[128,0,252,0,0,85,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"General Umbriss"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"5":85,"11":168},"isBase":true}}}, +{"id":56445,"name":"Ring of Dun Algaz","icon":"inv_misc_kingsring2","type":11,"stats":[0,168,252,0,0,98,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":98,"6":120},"isBase":true}}}, +{"id":56446,"name":"Wand of Untainted Power","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,194,129,86,0,0,86,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"4":86,"7":86,"14":1729},"isBase":true}}}, +{"id":56447,"name":"Belt of the Forgemaster","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[205,0,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":130,"7":150,"22":1855},"isBase":true}}}, +{"id":56448,"name":"Dark Iron Chain Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":1596},"isBase":true}}}, +{"id":56449,"name":"Throngus's Finger","icon":"inv_gizmo_felironshell","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Forgemaster Throngus"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"10":285},"isBase":true}}}, +{"id":56450,"name":"Azureborne Cloak","icon":"inv_misc_cape_naxxramas_01","type":4,"armorType":1,"stats":[0,0,252,168,120,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"6":98,"22":580},"isBase":true}}}, +{"id":56451,"name":"Red Scale Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,0,151,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":151,"7":121,"22":1596},"isBase":true}}}, +{"id":56452,"name":"Earthshape Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,130,0,130,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":225,"2":337,"9":130,"11":130,"22":2474},"isBase":true}}}, +{"id":56453,"name":"Crimsonborne Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112,"22":507},"isBase":true}}}, +{"id":56454,"name":"Windwalker Blade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Drahga Shadowburner"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"6":86,"8":86},"isBase":true}}}, +{"id":56455,"name":"Vest of Misshapen Hides","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,162,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"6":162,"11":202,"22":1571},"isBase":true}}}, +{"id":56456,"name":"Wild Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,0,0,202,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"0":302,"2":454,"7":202,"11":202},"isBase":true}}}, +{"id":56457,"name":"Circle of Bone","icon":"inv_jewelry_ring_66","type":11,"stats":[168,0,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"5":112,"7":112},"isBase":true}}}, +{"id":56458,"name":"Mark of Khardros","icon":"inv_hammer_04","type":12,"stats":[285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":285},"isBase":true}}}, +{"id":56459,"name":"Mace of Transformed Bone","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[98,0,194,0,0,66,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":98,"2":194,"5":66,"9":129},"isBase":true}}}, +{"id":56460,"name":"Crown of Enfeebled Bodies","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"6":162,"7":182,"22":942},"isBase":true}}}, +{"id":56461,"name":"Staff of Siphoned Essences","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,202,0,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"stats":{"2":454,"3":302,"6":202,"11":202,"14":1732},"isBase":true}}}, +{"id":56462,"name":"Gale of Shadows","icon":"spell_shadow_gathershadows","type":12,"stats":[0,0,0,0,0,0,0,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"7":285},"isBase":true}}}, +{"id":56463,"name":"Corrupted Egg Shell","icon":"inv_misc_cat_trinket09","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":427,"isBase":true}}}, +{"id":56464,"name":"Bracers of Umbral Mending","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4950,"otherName":"Erudax, the Duke of Below"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"11":112,"22":1443},"isBase":true}}}, +{"id":56465,"name":"Abandoned Dark Iron Ring","icon":"inv_misc_vinering","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"7":112},"isBase":true}}}, +{"id":56466,"name":"Curse-Tainted Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,454,262,202,0,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"11":137,"22":1015},"isBase":true}}}, +{"id":56467,"name":"Shroud of Dark Memories","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[128,0,252,0,0,0,0,0,85,168,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"8":85,"9":168,"22":580},"isBase":true}}}, +{"id":56480,"name":"Savage Cloak","icon":"inv_misc_cape_07","type":4,"armorType":1,"stats":[0,99,148,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"1":99,"2":148,"5":73,"6":53,"22":548},"isBase":true}}}, +{"id":56481,"name":"Tsunami Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"295":{"randPropPoints":199,"stats":{"22":858},"isBase":true}}}, +{"id":56482,"name":"Tsunami Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1103,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":1103},"isBase":true}}}, +{"id":56483,"name":"Darkbrand Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"289":{"randPropPoints":188,"stats":{"22":608},"isBase":true}}}, +{"id":56484,"name":"Darkbrand Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,920,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"316":{"randPropPoints":323,"stats":{"22":920},"isBase":true}}}, +{"id":56485,"name":"Windbound Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,0,162,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":205,"ilvl":298,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"298":{"randPropPoints":205,"stats":{"2":162,"3":108,"22":867},"isBase":true}}}, +{"id":56486,"name":"Windbound Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,0,215,144,101,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":298,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"298":{"randPropPoints":273,"stats":{"2":215,"3":144,"4":101,"7":86,"22":1238},"isBase":true}}}, +{"id":56487,"name":"Razorshell Bracers","icon":"inv_bracer_10","type":6,"armorType":3,"stats":[0,108,162,0,0,0,0,0,68,0,0,74,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":205,"ilvl":298,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"298":{"randPropPoints":205,"stats":{"1":108,"2":162,"8":68,"11":74,"22":867},"isBase":true}}}, +{"id":56488,"name":"Razorshell Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,144,215,0,0,0,104,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,1485,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":273,"ilvl":298,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"298":{"randPropPoints":273,"stats":{"1":144,"2":215,"6":104,"11":82,"22":1485},"isBase":true}}}, +{"id":56489,"name":"Hardened Scale Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[105,0,157,0,0,0,0,0,0,60,0,76,0,0,0,0,0,0,0,0,0,0,551,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":199,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"295":{"randPropPoints":199,"stats":{"0":105,"2":157,"9":60,"11":76,"22":551},"isBase":true}}}, +{"id":56490,"name":"Tsunami Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1246},"isBase":true}}}, +{"id":56491,"name":"Darkbrand Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":266,"ilvl":295,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"295":{"randPropPoints":266,"stats":{"22":967},"isBase":true}}}, +{"id":56492,"name":"Windbound Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,0,255,170,0,0,102,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":102,"11":120,"22":1445},"isBase":true}}}, +{"id":56493,"name":"Razorshell Boots","icon":"inv_boots_09","type":10,"armorType":3,"stats":[0,170,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-143,-144,-145,-147,-149,-150,-154,-155,-157,-160,-161,-162,-163,-164,-165,-166,-167,-168],"randPropPoints":323,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"22":1445},"isBase":true}}}, +{"id":56494,"name":"Tsunami Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":1322},"isBase":true}}}, +{"id":56495,"name":"Darkbrand Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":278,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"300":{"randPropPoints":278,"stats":{"22":1067},"isBase":true}}}, +{"id":56496,"name":"Windbound Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,0,255,170,0,0,129,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":129,"11":86,"22":1183},"isBase":true}}}, +{"id":56497,"name":"Razorshell Gloves","icon":"inv_gauntlets_23","type":7,"armorType":3,"stats":[0,170,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1314,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-143,-144,-145,-147,-149,-150,-154,-155,-157,-160,-161,-162,-163,-164,-165,-166,-167,-168],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"22":1314},"isBase":true}}}, +{"id":56498,"name":"Tsunami Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1536,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"308":{"randPropPoints":300,"stats":{"22":1536},"isBase":true}}}, +{"id":56499,"name":"Darkbrand Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"289":{"randPropPoints":251,"stats":{"22":781},"isBase":true}}}, +{"id":56500,"name":"Windbound Shoulders","icon":"inv_shoulder_09","type":3,"armorType":3,"stats":[0,0,277,185,0,0,134,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"6":134,"7":105,"22":1624},"isBase":true}}}, +{"id":56501,"name":"Razorshell Belt","icon":"inv_belt_02","type":8,"armorType":3,"stats":[0,185,277,0,0,111,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":185,"2":277,"5":111,"11":130,"22":1218},"isBase":true}}}, +{"id":56504,"name":"Tsunami Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"22":2224},"isBase":true}}}, +{"id":56505,"name":"Darkbrand Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1171,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1171},"isBase":true}}}, +{"id":56506,"name":"Windbound Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,0,373,249,185,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"4":185,"7":134,"22":1895},"isBase":true}}}, +{"id":56507,"name":"Razorshell Helm","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,249,373,0,0,0,166,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"1":249,"2":373,"6":166,"11":166,"22":1760},"isBase":true}}}, +{"id":56508,"name":"Tsunami Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1745,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1745},"isBase":true}}}, +{"id":56509,"name":"Darkbrand Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1422,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":375,"ilvl":300,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"300":{"randPropPoints":375,"stats":{"22":1422},"isBase":true}}}, +{"id":56510,"name":"Windbound Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,0,401,268,0,0,0,199,0,0,0,144,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"7":199,"11":144,"22":2224},"isBase":true}}}, +{"id":56511,"name":"Razorshell Leggings","icon":"inv_pants_06","type":9,"armorType":3,"stats":[0,268,401,0,0,0,161,0,0,0,0,189,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":401,"6":161,"11":189,"22":1946},"isBase":true}}}, +{"id":56512,"name":"Tsunami Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1652,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":396,"ilvl":306,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Big Wave","setId":950,"scalingOptions":{"306":{"randPropPoints":396,"stats":{"22":1652},"isBase":true}}}, +{"id":56513,"name":"Darkbrand Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-131,-132,-133,-134,-135,-136,-137],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"The Dark Brand","setId":949,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"22":1336},"isBase":true}}}, +{"id":56514,"name":"Windbound Helm","icon":"inv_helmet_33","type":1,"armorType":3,"stats":[0,0,401,268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-140,-141,-142,-143,-144,-145,-147,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159],"randPropPoints":509,"ilvl":333,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"22":1807},"isBase":true}}}, +{"id":56515,"name":"Razorshell Chest","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,268,401,0,0,203,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":401,"5":203,"7":136,"22":2224},"isBase":true}}}, +{"id":56518,"name":"Cloak of Beasts","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,149,224,0,0,114,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"5":114,"11":76,"22":572},"isBase":true}}}, +{"id":56519,"name":"Cloak of War","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[149,0,224,0,0,0,0,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"9":100,"11":100,"22":572},"isBase":true}}}, +{"id":56520,"name":"Bloodied Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,237,158,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":105,"16":105,"22":677},"isBase":true}}}, +{"id":56521,"name":"Bloodied Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,316,210,0,0,0,0,0,0,0,126,0,0,0,0,148,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"11":126,"16":148,"22":870},"isBase":true}}}, +{"id":56522,"name":"Bloodied Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,158,237,0,0,0,0,95,0,0,0,0,0,0,0,0,111,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"7":95,"16":111,"22":677},"isBase":true}}}, +{"id":56523,"name":"Bloodied Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,210,316,0,0,0,107,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"6":107,"16":160,"22":967},"isBase":true}}}, +{"id":56524,"name":"Bloodied Scale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,237,158,0,80,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"5":80,"16":120,"22":993},"isBase":true}}}, +{"id":56525,"name":"Bloodied Scale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,316,210,0,0,0,113,0,0,0,0,0,0,0,0,156,0,0,0,0,0,1418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":113,"16":156,"22":1418},"isBase":true}}}, +{"id":56526,"name":"Bloodied Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,158,237,0,0,0,0,0,0,0,0,120,0,0,0,0,80,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"11":120,"16":80,"22":993},"isBase":true}}}, +{"id":56527,"name":"Bloodied Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,210,316,0,0,0,126,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,1702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"6":126,"16":148,"22":1702},"isBase":true}}}, +{"id":56528,"name":"Bloodied Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,316,210,156,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,967,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"4":156,"16":113,"22":967},"isBase":true}}}, +{"id":56529,"name":"Bloodied Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,316,210,0,0,0,160,0,0,0,0,0,0,0,0,107,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":160,"16":107,"22":1064},"isBase":true}}}, +{"id":56530,"name":"Bloodied Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,210,316,0,0,0,0,0,0,0,0,152,0,0,0,0,120,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"11":152,"16":120,"22":1064},"isBase":true}}}, +{"id":56531,"name":"Bloodied Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,210,316,0,0,0,126,0,0,0,0,0,0,0,0,0,148,0,0,0,0,0,1160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"6":126,"16":148,"22":1160},"isBase":true}}}, +{"id":56532,"name":"Bloodied Scale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,316,210,113,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0,0,1560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"4":113,"16":156,"22":1560},"isBase":true}}}, +{"id":56533,"name":"Bloodied Scale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,316,210,0,0,0,144,0,0,0,0,0,0,0,0,133,0,0,0,0,0,1276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":144,"16":133,"22":1276},"isBase":true}}}, +{"id":56534,"name":"Bloodied Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,210,316,0,0,160,0,0,0,0,0,0,0,0,0,0,107,0,0,0,0,0,1560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"5":160,"16":107,"22":1560},"isBase":true}}}, +{"id":56535,"name":"Bloodied Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,210,316,0,0,0,140,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,1418,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"6":140,"16":140,"22":1418},"isBase":true}}}, +{"id":56536,"name":"Lightning Lash","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":939},"isBase":true}}}, +{"id":56537,"name":"Belt of Nefarious Whispers","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,233,380,0,0,174,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":174,"11":134,"22":939},"isBase":true}}}, +{"id":56538,"name":"Stormleather Sash","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,0,0,188,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":188,"11":116,"22":1369},"isBase":true}}}, +{"id":56539,"name":"Corded Viper Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,233,380,0,0,0,159,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":159,"11":159,"22":1369},"isBase":true}}}, +{"id":56540,"name":"Bloodied Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,316,210,0,0,0,107,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1160,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"7":107,"16":160,"22":1160},"isBase":true}}}, +{"id":56541,"name":"Bloodied Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,425,283,0,0,0,0,0,0,0,215,0,0,0,0,144,0,0,0,0,0,1547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"11":215,"16":144,"22":1547},"isBase":true}}}, +{"id":56542,"name":"Bloodied Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,210,316,0,0,0,0,0,126,0,0,0,0,0,0,0,148,0,0,0,0,0,870,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"8":126,"16":148,"22":870},"isBase":true}}}, +{"id":56543,"name":"Bloodied Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,283,425,0,0,144,0,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"5":144,"16":215,"22":1257},"isBase":true}}}, +{"id":56544,"name":"Bloodied Scale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,316,210,0,107,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0,0,1702,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":210,"5":107,"16":160,"22":1702},"isBase":true}}}, +{"id":56545,"name":"Bloodied Scale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,425,283,0,0,152,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"6":152,"16":210,"22":1985},"isBase":true}}}, +{"id":56546,"name":"Bloodied Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,210,316,0,0,0,0,0,0,0,0,160,0,0,0,0,107,0,0,0,0,0,1276,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":210,"2":316,"11":160,"16":107,"22":1276},"isBase":true}}}, +{"id":56547,"name":"Bloodied Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,283,425,0,0,0,0,170,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"7":170,"16":200,"22":1843},"isBase":true}}}, +{"id":56548,"name":"Razor-Edged Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,0,125,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":125,"11":90,"22":580},"isBase":true}}}, +{"id":56549,"name":"Twilight Dragonscale Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[128,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":128,"2":252,"9":112,"11":112,"22":580},"isBase":true}}}, +{"id":56552,"name":"Bloodied Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,425,283,170,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"4":170,"16":200,"22":1354},"isBase":true}}}, +{"id":56553,"name":"Bloodied Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,425,283,0,0,144,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,1257,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"6":144,"16":215,"22":1257},"isBase":true}}}, +{"id":56554,"name":"Bloodied Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,283,425,0,0,0,0,0,0,0,0,144,0,0,0,0,215,0,0,0,0,0,1547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"11":144,"16":215,"22":1547},"isBase":true}}}, +{"id":56555,"name":"Bloodied Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,283,425,0,0,0,152,0,0,0,0,0,0,0,0,0,210,0,0,0,0,0,1354,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"6":152,"16":210,"22":1354},"isBase":true}}}, +{"id":56556,"name":"Bloodied Scale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,425,283,0,0,215,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,2269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"6":215,"16":144,"22":2269},"isBase":true}}}, +{"id":56557,"name":"Bloodied Scale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,425,283,0,0,0,170,0,0,0,0,0,0,0,0,200,0,0,0,0,0,1843,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":283,"7":170,"16":200,"22":1843},"isBase":true}}}, +{"id":56558,"name":"Bloodied Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,283,425,0,0,0,0,0,0,0,0,210,0,0,0,0,152,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"11":210,"16":152,"22":1985},"isBase":true}}}, +{"id":56559,"name":"Bloodied Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,283,425,0,0,0,215,0,0,0,0,0,0,0,0,0,144,0,0,0,0,0,2269,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":283,"2":425,"6":215,"16":144,"22":2269},"isBase":true}}}, +{"id":56561,"name":"Chestguard of Nature's Fury","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,321,0,0,205,0,0,0,0,221,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":321,"6":205,"11":221,"22":1669},"isBase":true}}}, +{"id":56562,"name":"Assassin's Chestplate","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,321,512,0,0,173,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":321,"2":512,"5":173,"6":243,"22":1669},"isBase":true}}}, +{"id":56563,"name":"Twilight Scale Chestguard","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,321,0,0,214,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":321,"6":214,"7":216,"22":2433},"isBase":true}}}, +{"id":56564,"name":"Dragonkiller Tunic","icon":"inv_shirt_04","type":5,"armorType":3,"stats":[0,321,512,0,0,0,0,249,0,0,0,163,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":321,"2":512,"7":249,"11":163,"22":2433},"isBase":true}}}, +{"id":57260,"name":"Nemesis Crushers","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,96,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"0":131,"2":196,"5":96,"11":72,"22":1791},"isBase":true}}}, +{"id":57261,"name":"Tortolla's Discarded Scales","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,95,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"6":95,"7":75,"22":1198},"isBase":true}}}, +{"id":57262,"name":"Leggings of the Vanquished Usurper","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,176,264,0,0,123,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"1":176,"2":264,"5":123,"11":109,"22":1213},"isBase":true}}}, +{"id":57263,"name":"Liberating Crown","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,264,176,0,124,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"2":264,"3":176,"5":124,"6":106,"22":889},"isBase":true}}}, +{"id":57264,"name":"Chestplate of Viridian Renewal","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[176,0,264,0,0,0,115,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,2604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"0":176,"2":264,"6":115,"11":119,"22":2604},"isBase":true}}}, +{"id":57265,"name":"Treads of Restoration","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,131,196,0,0,0,70,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1317,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"6":70,"11":97,"22":1317},"isBase":true}}}, +{"id":57266,"name":"Gloves of Nurtured Truth","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,196,131,72,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,866,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"4":72,"7":96,"22":866},"isBase":true}}}, +{"id":57267,"name":"Rebirth Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,196,131,0,0,68,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"6":68,"11":98,"22":821},"isBase":true}}}, +{"id":57268,"name":"Forgemaster's Shattered Shackle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[131,0,196,0,0,0,0,0,92,79,0,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"0":131,"2":196,"8":92,"9":79,"22":1465},"isBase":true}}}, +{"id":57269,"name":"Helm of Terrorizing Fangs","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,176,264,0,0,0,0,129,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"1":176,"2":264,"7":129,"11":97,"22":1557},"isBase":true}}}, +{"id":57270,"name":"Wolfking Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,131,196,0,0,0,0,90,0,0,0,83,0,0,0,0,0,0,0,0,0,0,1039,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"7":90,"11":83,"22":1039},"isBase":true}}}, +{"id":57271,"name":"Silver Spur Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,196,131,94,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"4":94,"7":77,"22":1791},"isBase":true}}}, +{"id":57272,"name":"Sky-Knight Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,0,87,0,0,0,87,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"7":87,"11":87,"22":1198},"isBase":true}}}, +{"id":57273,"name":"Blinkered Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,264,176,115,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,889,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"2":264,"3":176,"4":115,"7":119,"22":889},"isBase":true}}}, +{"id":57274,"name":"Hyjal Savior's Drape","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[98,0,148,0,0,0,71,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"0":98,"2":148,"6":71,"8":56,"22":547},"isBase":true}}}, +{"id":57275,"name":"Hyjal Savior's Pendant","icon":"inv_misc_necklacea11","type":2,"stats":[0,0,148,98,58,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"4":58,"6":70},"isBase":true}}}, +{"id":57276,"name":"Hyjal Savior's Signet","icon":"inv_misc_vinering","type":11,"stats":[0,98,148,0,0,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"5":66,"7":66},"isBase":true}}}, +{"id":57277,"name":"Crown of Chelonian Freedom","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[176,0,264,0,0,0,119,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"0":176,"2":264,"6":119,"7":115,"22":2116},"isBase":true}}}, +{"id":57278,"name":"Shadow-Cleanser Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"6":59,"7":69,"22":838},"isBase":true}}}, +{"id":57279,"name":"Boots of Infinite Possibility","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,131,196,0,0,90,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,953,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"5":90,"6":83,"22":953},"isBase":true}}}, +{"id":57280,"name":"Kilt of Reborn Future","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,264,176,0,0,112,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,958,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"2":264,"3":176,"6":112,"7":121,"22":958},"isBase":true}}}, +{"id":57281,"name":"Scalded Rockscale Shoulderpads","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,0,169,113,0,0,78,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":78,"11":69,"22":1357},"isBase":true}}}, +{"id":57282,"name":"Corecrusher Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":64,"7":82,"22":824},"isBase":true}}}, +{"id":57283,"name":"Rockbreaker Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,84,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"5":84,"7":111,"22":1051},"isBase":true}}}, +{"id":57284,"name":"Grips of Arcane Imprisonment","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,85,0,0,0,59,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"7":85,"11":59,"22":1529},"isBase":true}}}, +{"id":57285,"name":"Muffling Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,228,152,103,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":103,"6":99,"22":1072},"isBase":true}}}, +{"id":57286,"name":"Dreamrending Dagger","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"stats":{"1":65,"2":98,"7":65},"isBase":true}}}, +{"id":57287,"name":"Gauntlets of Guerilla Fury","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,0,0,0,73,0,0,0,76,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"7":73,"11":76,"22":1529},"isBase":true}}}, +{"id":57288,"name":"Subjugator's Shoulderguards","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,76,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":76,"7":73,"22":1357},"isBase":true}}}, +{"id":57289,"name":"Flamesear Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,228,152,91,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":91,"6":107,"22":919},"isBase":true}}}, +{"id":57290,"name":"Druidic Guardian Plate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":94,"10":106,"22":2446},"isBase":true}}}, +{"id":57291,"name":"Naturelord Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"7":116,"8":77,"22":1072},"isBase":true}}}, +{"id":57292,"name":"Repurposed Twilight Stave","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,211,152,0,0,0,159,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":629,"weaponDamageMax":944,"weaponSpeed":2.9,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":629,"weaponDamageMax":944,"stats":{"2":211,"3":152,"7":159,"14":870},"isBase":true}}}, +{"id":57293,"name":"Front-Line Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,152,211,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1139,"weaponDamageMax":2116,"weaponSpeed":3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1139,"weaponDamageMax":2116,"stats":{"1":152,"2":211,"6":159},"isBase":true}}}, +{"id":57294,"name":"Poisonfire Greatsword","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,0,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"11":152},"isBase":true}}}, +{"id":57295,"name":"Hornblower's Legguards","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,0,107,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"7":107,"11":91,"22":1583},"isBase":true}}}, +{"id":57296,"name":"Girdle of Nullified Infiltration","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,0,79,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":79,"11":68,"22":591},"isBase":true}}}, +{"id":57298,"name":"Gatekeeper Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,73,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":73,"11":76,"22":907},"isBase":true}}}, +{"id":57299,"name":"Torque of the Herald","icon":"inv_jewelry_necklace_52","type":2,"stats":[0,85,127,0,0,0,48,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":48,"7":61},"isBase":true}}}, +{"id":57300,"name":"Greaves of Violent Revenge","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,79,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":79,"6":114,"22":2140},"isBase":true}}}, +{"id":57301,"name":"Matriarch-Hide Wristguards","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,0,0,62,47,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"7":62,"8":47,"22":577},"isBase":true}}}, +{"id":57302,"name":"Maggotproof Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,68,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":68,"11":79,"22":657},"isBase":true}}}, +{"id":57303,"name":"Heatbinder Wristplates","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,47,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":47,"10":62,"22":1070},"isBase":true}}}, +{"id":57304,"name":"Druidic Channeler's Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,98,65,65,0,0,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":1.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":98,"3":65,"4":65,"14":871},"isBase":true}}}, +{"id":57305,"name":"Axe of Grounded Flame","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":730,"weaponDamageMax":1357,"weaponSpeed":2.5,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":730,"weaponDamageMax":1357,"stats":{"1":65,"2":98,"11":65},"isBase":true}}}, +{"id":57306,"name":"Chestguard of Rapid Promotion","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,96,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"5":96,"7":104,"22":1809},"isBase":true}}}, +{"id":57307,"name":"Belt of Swift Failure","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,64,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":64,"11":82,"22":742},"isBase":true}}}, +{"id":57308,"name":"Supplicant's Discarded Bracer","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,0,43,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"5":43,"11":64,"22":460},"isBase":true}}}, +{"id":57309,"name":"Chestplate of Exceptional Expectations","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,94,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":94,"11":106,"22":2446},"isBase":true}}}, +{"id":57310,"name":"Impressive Greaves","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":73,"7":76,"22":1244},"isBase":true}}}, +{"id":57312,"name":"Discarded Juggernaut Plating","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,99,103,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"9":99,"10":103,"22":2140},"isBase":true}}}, +{"id":57313,"name":"Bladerip Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,0,83,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":83,"7":62,"22":1018},"isBase":true}}}, +{"id":57314,"name":"Nimble-Knife Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":109,"11":89,"22":1319},"isBase":true}}}, +{"id":57315,"name":"Claw of Corroded Hope","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,127,85,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"7":85},"isBase":true}}}, +{"id":57316,"name":"Egg-Lift Talisman","icon":"inv_misc_shovel_01","type":12,"stats":[0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"8":143},"isBase":true}}}, +{"id":57317,"name":"Cloakbreaker Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,228,152,107,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":107,"7":91,"22":1470},"isBase":true}}}, +{"id":57318,"name":"Tunic of Soaring Safety","icon":"inv_chest_cloth_24","type":5,"armorType":2,"stats":[0,0,228,152,0,0,0,104,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"7":104,"11":96,"22":1319},"isBase":true}}}, +{"id":57319,"name":"Lightheart Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,71,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"5":71,"6":77,"22":722},"isBase":true}}}, +{"id":57320,"name":"Embercrusher Grips","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,75,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":75,"11":75,"22":1529},"isBase":true}}}, +{"id":57321,"name":"Charbite Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,0,86,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":86,"11":110,"22":1072},"isBase":true}}}, +{"id":57322,"name":"Signet of Nascent Fire","icon":"inv_misc_moodring2","type":11,"stats":[0,0,127,85,0,0,0,54,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"7":54,"11":58},"isBase":true}}}, +{"id":57323,"name":"Deathseed Crushers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,60,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":60,"7":84,"22":1682},"isBase":true}}}, +{"id":57324,"name":"Seedfilter Deflector","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,113,85,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":113,"3":85,"6":91,"22":7256},"isBase":true}}}, +{"id":57325,"name":"Bileberry Smelling Salts","icon":"inv_misc_dust_05","type":12,"stats":[0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":143},"isBase":true}}}, +{"id":57326,"name":"Salt-Lick Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,0,107,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":107,"11":91,"22":1809},"isBase":true}}}, +{"id":57327,"name":"Deer-Savior Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,152,228,0,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"7":96,"8":104,"22":1154},"isBase":true}}}, +{"id":57328,"name":"Cloak of Cheerful Flowers","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,127,85,0,0,52,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"6":52,"11":59,"22":525},"isBase":true}}}, +{"id":57329,"name":"Firestorm Hackblade","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[65,0,98,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"0":65,"2":98,"7":65},"isBase":true}}}, +{"id":57330,"name":"Lordbane Scepter","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,98,65,0,0,65,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":1.9,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"2":98,"3":65,"6":65,"14":871},"isBase":true}}}, +{"id":57331,"name":"Ring of the Quenched Inferno","icon":"inv_misc_starring1","type":11,"stats":[0,85,127,0,0,0,57,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":57,"11":55},"isBase":true}}}, +{"id":57332,"name":"Legplates of Persuasion","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":89,"6":109,"22":2140},"isBase":true}}}, +{"id":57333,"name":"Punishing Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":69,"6":78,"22":788},"isBase":true}}}, +{"id":57334,"name":"Pinpoint Choker","icon":"inv_misc_necklacea6","type":2,"stats":[0,85,127,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"5":63,"8":46},"isBase":true}}}, +{"id":57335,"name":"Signet of Fragrant Summoning","icon":"inv_misc_starring3","type":11,"stats":[85,0,127,0,0,0,58,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"6":58,"7":54},"isBase":true}}}, +{"id":57336,"name":"Skygrip Handguards","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,0,76,0,0,0,73,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":76,"11":73,"22":824},"isBase":true}}}, +{"id":57337,"name":"Heraldcall Censer","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,154,0,0,148,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"stats":{"2":228,"3":154,"6":148,"14":870},"isBase":true}}}, +{"id":57338,"name":"Jouster","icon":"inv_spear_05","type":12,"stats":[0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"3":143},"isBase":true}}}, +{"id":57339,"name":"Heartcrush Greathammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"6":101,"7":101},"isBase":true}}}, +{"id":57340,"name":"Griefsoul Wristguards","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,57,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":57,"6":55,"22":791},"isBase":true}}}, +{"id":57341,"name":"Shoulderpads of Dead Memories","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,64,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":64,"11":82,"22":989},"isBase":true}}}, +{"id":57342,"name":"Rescuers Shoulderguards","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,69,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"5":69,"7":78,"22":1834},"isBase":true}}}, +{"id":57343,"name":"Leggings of Fiery Travail","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":106,"7":94,"22":1583},"isBase":true}}}, +{"id":57344,"name":"Glyphtrace Ritual Knife","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,91,65,0,0,0,43,0,0,0,43,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"2":91,"3":65,"7":43,"11":43,"14":871},"isBase":true}}}, +{"id":57345,"name":"Razorproof Greaves","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,80,66,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"10":80,"11":66,"22":1682},"isBase":true}}}, +{"id":57346,"name":"Mindfletcher Talisman","icon":"inv_jewelry_talisman_10","type":12,"stats":[0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"3":143},"isBase":true}}}, +{"id":57347,"name":"Bloodbolt Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,152,228,0,0,0,89,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1101,"weaponDamageMax":2046,"weaponSpeed":2.9,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1101,"weaponDamageMax":2046,"stats":{"1":152,"2":228,"6":89,"7":109},"isBase":true}}}, +{"id":57348,"name":"Flameward Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[85,0,127,0,0,50,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":50,"9":61,"22":525},"isBase":true}}}, +{"id":57349,"name":"Helm of the Mendicant","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,0,0,109,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":109,"7":89,"22":1987},"isBase":true}}}, +{"id":57350,"name":"Kindleprotector Staff","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1345,"weaponDamageMax":2019,"weaponSpeed":3.1,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1345,"weaponDamageMax":2019,"stats":{"1":152,"2":228,"6":109,"11":89},"isBase":true}}}, +{"id":57351,"name":"Gutrip Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,113,169,0,0,73,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":73,"11":76,"22":1131},"isBase":true}}}, +{"id":57352,"name":"Gore-Stained Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,113,169,0,0,66,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":66,"6":80,"22":989},"isBase":true}}}, +{"id":57353,"name":"Calcified Gizzard","icon":"inv_misc_necklacea4","type":2,"stats":[0,0,127,85,0,0,0,58,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"7":58,"11":54},"isBase":true}}}, +{"id":57354,"name":"Wildlife Defender","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,0,48,0,64,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"9":48,"11":64,"22":7256},"isBase":true}}}, +{"id":57355,"name":"Treegrip Pants","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,106,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":106,"7":94,"22":1154},"isBase":true}}}, +{"id":57356,"name":"Stickyfoot Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":84,"11":60,"22":722},"isBase":true}}}, +{"id":57357,"name":"Anvilcrush Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,44,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":44,"8":64,"22":1070},"isBase":true}}}, +{"id":57358,"name":"Coreforged Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,169,113,80,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":80,"7":66,"22":1018},"isBase":true}}}, +{"id":57359,"name":"Drape of Smoldering Dreams","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,85,127,0,0,0,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":52,"7":59,"22":525},"isBase":true}}}, +{"id":57360,"name":"Shoulderguards of Empty Memory","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,75,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"5":75,"8":75,"22":1834},"isBase":true}}}, +{"id":57361,"name":"Neglected Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,62,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":62,"7":83,"22":907},"isBase":true}}}, +{"id":57362,"name":"Hood of Misplaced Dreams","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,103,0,0,0,99,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"7":103,"11":99,"22":854},"isBase":true}}}, +{"id":57363,"name":"Invidious Casque","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,99,0,103,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"9":99,"11":103,"22":1987},"isBase":true}}}, +{"id":57364,"name":"Purifying Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,69,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":69,"6":78,"22":1357},"isBase":true}}}, +{"id":57365,"name":"Crusher of Bonds","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,65,98,0,0,0,0,0,50,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"1":65,"2":98,"8":50,"11":37},"isBase":true}}}, +{"id":57366,"name":"Girdle of the Ancient Wolf","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,68,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"7":68,"8":79,"22":1376},"isBase":true}}}, +{"id":57367,"name":"Treads of the Dreamwolf","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,62,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":62,"7":83,"22":1244},"isBase":true}}}, +{"id":57368,"name":"Wolfcaller Bracers","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"5":51,"6":60,"22":577},"isBase":true}}}, +{"id":57369,"name":"Goldrinn's Purifier","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,98,65,0,47,38,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":1.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":98,"3":65,"5":47,"6":38,"14":871},"isBase":true}}}, +{"id":57370,"name":"Belt of Binding Purification","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,68,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"7":68,"8":79,"22":1376},"isBase":true}}}, +{"id":57371,"name":"Wolfcall Stompers","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,62,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":62,"7":83,"22":1244},"isBase":true}}}, +{"id":57372,"name":"Bracers of the Forlorn Wolf","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"5":51,"6":60,"22":577},"isBase":true}}}, +{"id":57373,"name":"Rage of Lo'Gosh","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,98,65,0,47,38,0,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":1.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":98,"3":65,"5":47,"6":38,"14":871},"isBase":true}}}, +{"id":57374,"name":"Choker of Lo'Gosh","icon":"inv_misc_necklacea2","type":2,"stats":[85,0,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":56,"6":56},"isBase":true}}}, +{"id":57375,"name":"Wrap of Furious Pride","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,80,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":80,"6":66,"22":742},"isBase":true}}}, +{"id":57376,"name":"Handguards of Restrained Brutality","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,0,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"5":75,"7":75,"22":657},"isBase":true}}}, +{"id":57377,"name":"Goldrinn's Locket","icon":"inv_misc_necklacea2","type":2,"stats":[85,0,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":56,"6":56},"isBase":true}}}, +{"id":57378,"name":"Primal Force Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,80,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":80,"6":66,"22":742},"isBase":true}}}, +{"id":57379,"name":"Clutches of the Worgen Spirit","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,0,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"5":75,"7":75,"22":657},"isBase":true}}}, +{"id":57380,"name":"Girdle of Gar'gol","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,169,113,0,0,60,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":60,"11":84,"22":1376},"isBase":true}}}, +{"id":57381,"name":"Chestguard of Inscrutability","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,94,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":94,"6":106,"22":1809},"isBase":true}}}, +{"id":57382,"name":"Apocryhphic Bindings","icon":"inv_bracer_10","type":6,"armorType":2,"stats":[0,0,127,85,59,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":59,"6":52,"22":577},"isBase":true}}}, +{"id":57383,"name":"Sharptooth Signet","icon":"inv_misc_starring1","type":11,"stats":[85,0,127,0,0,0,0,0,61,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":61,"11":48},"isBase":true}}}, +{"id":57384,"name":"Rust-Scrivened Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,228,152,114,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":114,"11":79,"22":1583},"isBase":true}}}, +{"id":57385,"name":"Repurposed Twilight Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,64,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":64,"7":82,"22":591},"isBase":true}}}, +{"id":57855,"name":"Alpha Bracers","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[129,0,224,0,0,80,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":129,"2":224,"5":80,"11":100,"22":1369},"isBase":true}}}, +{"id":57856,"name":"Omega Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,401,248,178,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":248,"4":178,"7":158,"22":3128},"isBase":true}}}, +{"id":57857,"name":"Boots of Crumbling Ruin","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,179,298,0,0,113,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":179,"2":298,"5":113,"11":133,"22":1529},"isBase":true}}}, +{"id":57858,"name":"Mantle of Soft Shadows","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,298,159,103,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":159,"4":103,"6":123,"22":1145},"isBase":true}}}, +{"id":57860,"name":"Anraphet's Regalia","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,401,228,178,0,0,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":228,"4":178,"11":138,"22":1145},"isBase":true}}}, +{"id":57861,"name":"Helm of Setesh","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[191,0,401,0,0,0,0,0,97,208,0,0,0,0,0,0,0,0,0,0,0,0,2542,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":191,"2":401,"8":97,"9":208,"22":2542},"isBase":true}}}, +{"id":57862,"name":"Chaotic Wrappings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,401,228,168,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":228,"4":168,"11":148,"22":1946},"isBase":true}}}, +{"id":57863,"name":"Hieroglyphic Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,228,401,0,0,0,158,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":228,"2":401,"6":158,"7":158,"22":1527},"isBase":true}}}, +{"id":57864,"name":"Helm of the Typhonic Beast","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,401,208,0,138,0,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"5":138,"11":158,"22":930},"isBase":true}}}, +{"id":57865,"name":"Scepter of Power","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,172,114,76,0,76,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":584,"weaponDamageMax":1085,"weaponSpeed":2.3,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":584,"weaponDamageMax":1085,"stats":{"2":172,"3":114,"4":76,"6":76,"14":1532},"isBase":true}}}, +{"id":57866,"name":"Mantle of Soft Shadows","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,337,185,120,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":185,"4":120,"6":140,"22":1178},"isBase":true}}}, +{"id":57867,"name":"Boots of Crumbling Ruin","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"11":150,"22":1596},"isBase":true}}}, +{"id":57868,"name":"Anraphet's Regalia","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,202,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"11":162,"22":1160},"isBase":true}}}, +{"id":57869,"name":"Omega Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,454,282,202,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":282,"4":202,"7":182,"22":3298},"isBase":true}}}, +{"id":57870,"name":"Alpha Bracers","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[148,0,252,0,0,92,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Anraphet"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":148,"2":252,"5":92,"11":112,"22":1443},"isBase":true}}}, +{"id":57871,"name":"Helm of the Typhonic Beast","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,162,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"5":162,"11":182,"22":942},"isBase":true}}}, +{"id":57872,"name":"Scepter of Power","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,194,129,86,0,0,86,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"stats":{"2":194,"3":129,"4":86,"7":86,"14":1729},"isBase":true}}}, +{"id":57873,"name":"Helm of Setesh","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[216,0,454,0,0,0,0,0,117,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":216,"2":454,"8":117,"9":242,"22":2680},"isBase":true}}}, +{"id":57874,"name":"Hieroglyphic Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,182,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"6":182,"7":182,"22":1571},"isBase":true}}}, +{"id":57875,"name":"Chaotic Wrappings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":4945,"otherName":"Setesh, Construct of Destruction"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"11":172,"22":2032},"isBase":true}}}, +{"id":57913,"name":"Beech Green Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[205,0,337,0,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":130,"11":150,"22":1855},"isBase":true}}}, +{"id":57914,"name":"Girdle of the Mountains","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,110,150,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":225,"2":337,"9":110,"10":150,"22":1855},"isBase":true}}}, +{"id":57915,"name":"Belt of Barred Clouds","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":1855},"isBase":true}}}, +{"id":57916,"name":"Belt of the Dim Forest","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"6":150,"22":1306},"isBase":true}}}, +{"id":57917,"name":"Belt of the Still Stream","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":1306},"isBase":true}}}, +{"id":57918,"name":"Sash of Musing","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,205,337,0,0,0,0,0,130,0,0,150,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"8":130,"11":150,"22":884},"isBase":true}}}, +{"id":57919,"name":"Thatch Eave Vines","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":884},"isBase":true}}}, +{"id":57921,"name":"Incense Infused Cummerbund","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":130,"11":150,"22":652},"isBase":true}}}, +{"id":57922,"name":"Belt of the Falling Rain","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":652},"isBase":true}}}, +{"id":57923,"name":"Hermit's Lamp","icon":"inv_offhand_outlandraid_03orange","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"7":112},"isBase":true}}}, +{"id":57924,"name":"Apple-Bent Bough","icon":"inv_staff_08","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"7":112},"isBase":true}}}, +{"id":57925,"name":"Shield of the Mists","icon":"inv_shield_38","type":13,"weaponType":7,"handType":3,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"11":112,"22":11696},"isBase":true}}}, +{"id":57926,"name":"Shield of the Four Grey Towers","icon":"inv_shield_19","type":13,"weaponType":7,"handType":3,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,11696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"9":112,"11":112,"22":11696},"isBase":true}}}, +{"id":57927,"name":"Throat Slasher","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":3,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":57928,"name":"Windslicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":3,"stats":[0,129,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"6":86,"11":86},"isBase":true}}}, +{"id":57929,"name":"Dawnblaze Blade","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":3,"stats":[129,0,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"6":86,"8":86},"isBase":true}}}, +{"id":57930,"name":"Pendant of Quiet Breath","icon":"inv_misc_silverjadenecklace","type":2,"stats":[168,0,252,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"8":112},"isBase":true}}}, +{"id":57931,"name":"Amulet of Dull Dreaming","icon":"inv_misc_forestnecklace","type":2,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"7":112},"isBase":true}}}, +{"id":57932,"name":"The Lustrous Eye","icon":"inv_misc_necklacea10","type":2,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"9":112,"11":112},"isBase":true}}}, +{"id":57933,"name":"String of Beaded Bubbles","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"11":112},"isBase":true}}}, +{"id":57934,"name":"Celadon Pendant","icon":"inv_jewelry_necklace_46","type":2,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"11":112},"isBase":true}}}, +{"id":58096,"name":"Breastplate of Raging Fury","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[262,0,454,0,0,172,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"5":172,"6":192,"22":3298},"isBase":true}}}, +{"id":58097,"name":"Greaves of Gallantry","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[262,0,454,0,0,0,182,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"6":182,"7":182,"22":2886},"isBase":true}}}, +{"id":58098,"name":"Helm of Easeful Death","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[242,0,454,0,0,0,0,162,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":242,"2":454,"7":162,"11":182,"22":2680},"isBase":true}}}, +{"id":58099,"name":"Reaping Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,111,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":111,"11":161,"22":2061},"isBase":true}}}, +{"id":58100,"name":"Pauldrons of the High Requiem","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[205,0,337,0,0,111,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"5":111,"8":161,"22":2474},"isBase":true}}}, +{"id":58101,"name":"Chestplate of the Steadfast","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[282,0,454,0,0,0,0,0,0,162,0,182,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":282,"2":454,"9":162,"11":182,"22":3298},"isBase":true}}}, +{"id":58102,"name":"Greaves of Splendor","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[210,0,454,0,0,133,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":210,"2":454,"5":133,"9":262,"22":2886},"isBase":true}}}, +{"id":58103,"name":"Helm of the Proud","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[302,0,454,0,0,0,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":302,"2":454,"9":142,"10":142,"22":2680},"isBase":true}}}, +{"id":58104,"name":"Sunburnt Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[161,0,337,0,0,111,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":161,"2":337,"5":111,"9":205,"22":2474},"isBase":true}}}, +{"id":58105,"name":"Numbing Handguards","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[215,0,337,0,0,0,0,0,0,130,0,140,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":215,"2":337,"9":130,"11":140,"22":2061},"isBase":true}}}, +{"id":58106,"name":"Chestguard of Dancing Waves","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,454,262,192,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"6":172,"22":3298},"isBase":true}}}, +{"id":58107,"name":"Legguards of the Gentle","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,454,262,192,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"11":172,"22":2886},"isBase":true}}}, +{"id":58108,"name":"Crown of the Blazing Sun","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,454,242,172,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":172,"6":172,"22":2680},"isBase":true}}}, +{"id":58109,"name":"Pauldrons of the Forlorn","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":2474},"isBase":true}}}, +{"id":58110,"name":"Gloves of Curious Conscience","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":2061},"isBase":true}}}, +{"id":58121,"name":"Vest of the True Companion","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,262,454,0,0,162,0,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"5":162,"11":202,"22":2322},"isBase":true}}}, +{"id":58122,"name":"Hillside Striders","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,262,454,0,0,0,202,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"6":202,"7":162,"22":2032},"isBase":true}}}, +{"id":58123,"name":"Willow Mask","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"6":162,"11":182,"22":1887},"isBase":true}}}, +{"id":58124,"name":"Wrap of the Valley Glades","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,205,337,0,0,130,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"7":150,"22":1741},"isBase":true}}}, +{"id":58125,"name":"Gloves of the Passing Night","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"6":150,"22":1451},"isBase":true}}}, +{"id":58126,"name":"Vest of the Waking Dream","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"6":162,"22":2322},"isBase":true}}}, +{"id":58127,"name":"Leggings of Soothing Silence","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,454,262,172,0,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":172,"7":192,"22":2032},"isBase":true}}}, +{"id":58128,"name":"Helm of the Inward Eye","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,454,242,176,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":176,"6":157,"22":1887},"isBase":true}}}, +{"id":58129,"name":"Seafoam Mantle","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,337,205,140,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":140,"11":120,"22":1741},"isBase":true}}}, +{"id":58130,"name":"Gleaning Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"11":130,"22":1451},"isBase":true}}}, +{"id":58131,"name":"Tunic of Sinking Envy","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,262,454,0,0,162,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"5":162,"6":202,"22":1571},"isBase":true}}}, +{"id":58132,"name":"Leggings of the Burrowing Mole","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,262,454,0,0,0,0,0,162,0,0,202,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"8":162,"11":202,"22":1374},"isBase":true}}}, +{"id":58133,"name":"Mask of Vines","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"6":182,"7":162,"22":1276},"isBase":true}}}, +{"id":58134,"name":"Embrace of the Night","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"6":150,"22":1178},"isBase":true}}}, +{"id":58138,"name":"Sticky Fingers","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":130,"11":150,"22":982},"isBase":true}}}, +{"id":58139,"name":"Chestguard of Forgetfulness","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,454,262,202,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"7":162,"22":1571},"isBase":true}}}, +{"id":58140,"name":"Leggings of Late Blooms","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,454,262,0,0,0,162,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"7":162,"11":202,"22":1374},"isBase":true}}}, +{"id":58150,"name":"Cluster of Stars","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,454,242,182,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":182,"7":162,"22":1276},"isBase":true}}}, +{"id":58151,"name":"Somber Shawl","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":1178},"isBase":true}}}, +{"id":58152,"name":"Blessed Hands of Elune","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":982},"isBase":true}}}, +{"id":58153,"name":"Robes of Embalmed Darkness","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,0,0,0,202,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"7":202,"11":162,"22":1160},"isBase":true}}}, +{"id":58154,"name":"Pensive Legwraps","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,454,262,0,0,162,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":162,"7":202,"22":1015},"isBase":true}}}, +{"id":58155,"name":"Cowl of Pleasant Gloom","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,454,242,0,162,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"5":162,"6":182,"22":942},"isBase":true}}}, +{"id":58157,"name":"Meadow Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,337,205,0,0,130,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":130,"11":150,"22":870},"isBase":true}}}, +{"id":58158,"name":"Gloves of the Painless Midnight","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,337,205,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"7":150,"11":130,"22":725},"isBase":true}}}, +{"id":58159,"name":"Musk Rose Robes","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"6":162,"22":1160},"isBase":true}}}, +{"id":58160,"name":"Leggings of Charity","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,454,262,206,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":206,"7":147,"22":1015},"isBase":true}}}, +{"id":58161,"name":"Mask of New Snow","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,454,242,182,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":182,"7":162,"22":942},"isBase":true}}}, +{"id":58162,"name":"Summer Song Shoulderwraps","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":870},"isBase":true}}}, +{"id":58163,"name":"Gloves of Purification","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":725},"isBase":true}}}, +{"id":58180,"name":"License to Slay","icon":"inv_misc_note_02","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"5":321},"isBase":true}}}, +{"id":58181,"name":"Fluid Death","icon":"ability_vehicle_liquidpyrite_blue","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"5":321},"isBase":true}}}, +{"id":58182,"name":"Bedrock Talisman","icon":"inv_misc_armorkit_21","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1285,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"23":1285},"isBase":true}}}, +{"id":58183,"name":"Soul Casket","icon":"inv_misc_enggizmos_12","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":58184,"name":"Core of Ripeness","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":58185,"name":"Band of Bees","icon":"inv_misc_pearlring1","type":11,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":58186,"name":"Skullcracker Ring","icon":"inv_jewelry_ring_47","type":11,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"7":112},"isBase":true}}}, +{"id":58187,"name":"Ring of the Battle Anthem","icon":"inv_jewelry_ring_82","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"11":127},"isBase":true}}}, +{"id":58188,"name":"Band of Secret Names","icon":"inv_misc_diamondring1","type":11,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"7":127},"isBase":true}}}, +{"id":58189,"name":"Twined Band of Flowers","icon":"inv_misc_pearlring1","type":11,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127},"isBase":true}}}, +{"id":58190,"name":"Floating Web","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,127,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"8":127,"11":127,"22":625},"isBase":true}}}, +{"id":58191,"name":"Viewless Wings","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":127,"6":127,"22":625},"isBase":true}}}, +{"id":58192,"name":"Gray Hair Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":136,"2":286,"8":111,"9":190,"22":625},"isBase":true}}}, +{"id":58193,"name":"Haunt of Flies","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":58194,"name":"Heavenly Breeze","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":58195,"name":"Woe Breeder's Boots","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"6":169,"7":149,"22":2355},"isBase":true}}}, +{"id":58197,"name":"Rock Furrow Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[181,0,380,0,0,0,0,0,138,223,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":181,"2":380,"8":138,"9":223,"22":2355},"isBase":true}}}, +{"id":58198,"name":"Eternal Pathfinders","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,380,233,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":149,"7":169,"22":2355},"isBase":true}}}, +{"id":58199,"name":"Moccasins of Verdurous Glooms","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"11":169,"22":1673},"isBase":true}}}, +{"id":58481,"name":"Boots of the Perilous Seas","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,159,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":159,"6":159,"22":1673},"isBase":true}}}, +{"id":58482,"name":"Treads of Fleeting Joy","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1148},"isBase":true}}}, +{"id":58483,"name":"Lifebound Alchemist Stone","icon":"spell_holy_aspiration","type":12,"stats":[0,0,380,0,0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"11":213},"isBase":true}}}, +{"id":58484,"name":"Fading Violet Sandals","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":1148},"isBase":true}}}, +{"id":58485,"name":"Melodious Slippers","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"5":149,"6":169,"22":860},"isBase":true}}}, +{"id":58486,"name":"Slippers of Moving Waters","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":860},"isBase":true}}}, +{"id":59117,"name":"Jumbotron Power Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,139,0,159,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":139,"11":159,"22":1927},"isBase":true}}}, +{"id":59118,"name":"Electron Inductor Coils","icon":"inv_bracer_plate_raiddeathknight_i_01","type":6,"armorType":4,"stats":[190,0,286,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"5":127,"7":127,"22":1499},"isBase":true}}}, +{"id":59119,"name":"Voltage Source Chestguard","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,198,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":198,"7":218,"22":2433},"isBase":true}}}, +{"id":59120,"name":"Poison Protocol Pauldrons","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"11":169,"22":1252},"isBase":true}}}, +{"id":59121,"name":"Lightning Conductor Band","icon":"inv_misc_diamondring1","type":11,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":127,"6":127},"isBase":true}}}, +{"id":59122,"name":"Organic Lifeform Inverter","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,0,0,97,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"stats":{"1":146,"2":219,"8":97,"11":97},"isBase":true}}}, +{"id":59216,"name":"Life Force Chargers","icon":"inv_boots_plate_raidpaladin_i_01","type":10,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":2355},"isBase":true}}}, +{"id":59217,"name":"X-Tron Duct Tape","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"6":149,"22":704},"isBase":true}}}, +{"id":59218,"name":"Passive Resistor Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":1252},"isBase":true}}}, +{"id":59219,"name":"Power Generator Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,168,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"6":168,"11":228,"22":1016},"isBase":true}}}, +{"id":59220,"name":"Security Measure Alpha","icon":"inv_misc_rubystar","type":11,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"6":127},"isBase":true}}}, +{"id":59221,"name":"Massacre Treads","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,0,0,149,0,0,169,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"8":149,"11":169,"22":2355},"isBase":true}}}, +{"id":59222,"name":"Spaulders of the Scarred Lady","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":169,"11":149,"22":1825},"isBase":true}}}, +{"id":59223,"name":"Double Attack Handguards","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,0,0,149,0,0,169,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"8":149,"11":169,"22":1043},"isBase":true}}}, +{"id":59224,"name":"Heart of Rage","icon":"inv_misc_ahnqirajtrinket_03","type":12,"stats":[0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"8":321},"isBase":true}}}, +{"id":59225,"name":"Plated Fists of Provocation","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"6":169,"7":149,"22":2141},"isBase":true}}}, +{"id":59233,"name":"Bile-O-Tron Nut","icon":"inv_misc_gear_01","type":11,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":136,"2":286,"8":111,"9":190},"isBase":true}}}, +{"id":59234,"name":"Quickstep Galoshes","icon":"inv_boots_robe_raidmage_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"7":169,"11":149,"22":860},"isBase":true}}}, +{"id":59310,"name":"Chaos Beast Bracers","icon":"inv_bracer_raidshaman_i_01","type":6,"armorType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":1064},"isBase":true}}}, +{"id":59311,"name":"Burden of Mortality","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":2570},"isBase":true}}}, +{"id":59312,"name":"Helm of the Blind Seer","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":228,"6":168,"22":1356},"isBase":true}}}, +{"id":59313,"name":"Brackish Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":782},"isBase":true}}}, +{"id":59314,"name":"Pip's Solution Agitator","icon":"inv_wand_1h_grimbatolraid_d_01","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"stats":{"2":219,"3":146,"4":97,"11":97,"14":1954},"isBase":true}}}, +{"id":59315,"name":"Boots of Vertigo","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"7":169,"22":1673},"isBase":true}}}, +{"id":59316,"name":"Battleplate of Ancient Kings","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"7":228,"8":188,"22":3426},"isBase":true}}}, +{"id":59317,"name":"Legguards of the Unseeing","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[239,0,512,0,0,0,0,0,133,0,321,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":239,"2":512,"8":133,"10":321,"22":2998},"isBase":true}}}, +{"id":59318,"name":"Sark of the Unwatched","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":198,"11":218,"22":1669},"isBase":true}}}, +{"id":59319,"name":"Ironstar Amulet","icon":"inv_misc_necklacea3","type":2,"stats":[145,0,286,0,0,96,0,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":145,"2":286,"5":96,"9":190},"isBase":true}}}, +{"id":59320,"name":"Themios the Darkbringer","icon":"inv_bow_1h_bwdraid_d_01","type":14,"rangedWeaponType":1,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2530,"weaponDamageMax":4700,"weaponSpeed":2.9,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2530,"weaponDamageMax":4700,"stats":{"1":341,"2":512,"6":228,"11":228},"isBase":true}}}, +{"id":59321,"name":"Belt of the Nightmare","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"6":169,"22":939},"isBase":true}}}, +{"id":59322,"name":"Bracers of the Burningeye","icon":"inv_bracer_cloth_raidpriest_i_01","type":6,"armorType":1,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127,"22":547},"isBase":true}}}, +{"id":59324,"name":"Gloves of Cacophony","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"6":169,"22":1521},"isBase":true}}}, +{"id":59325,"name":"Mantle of Roaring Flames","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"7":149,"22":938},"isBase":true}}}, +{"id":59326,"name":"Bell of Enraging Resonance","icon":"inv_misc_bell_01","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"6":321},"isBase":true}}}, +{"id":59327,"name":"Kingdom's Heart","icon":"inv_shield_grimbatolraid_d_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Atramedes"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"6":127,"22":11896},"isBase":true}}}, +{"id":59328,"name":"Molten Tantrum Boots","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,161,0,128,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":161,"11":128,"22":2355},"isBase":true}}}, +{"id":59329,"name":"Parasitic Bands","icon":"inv_bracer_leatherraidrogue_i_01","type":6,"armorType":2,"stats":[0,190,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"11":127,"22":730},"isBase":true}}}, +{"id":59330,"name":"Shalug'doom, the Axe of Unmaking","icon":"inv_axe_122","type":13,"weaponType":1,"handType":4,"stats":[341,0,512,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":228,"8":228},"isBase":true}}}, +{"id":59331,"name":"Leggings of Lethal Force","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"5":188,"11":228,"22":2129},"isBase":true}}}, +{"id":59332,"name":"Symbiotic Worm","icon":"inv_qiraj_skinsandworm","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":59333,"name":"Lava Spine","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"7":97},"isBase":true}}}, +{"id":59334,"name":"Lifecycle Waistguard","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"6":169,"22":1369},"isBase":true}}}, +{"id":59335,"name":"Scorched Wormling Vest","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,188,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"11":228,"22":1669},"isBase":true}}}, +{"id":59336,"name":"Flame Pillar Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"5":228,"6":188,"22":1094},"isBase":true}}}, +{"id":59337,"name":"Mantle of Nefarius","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,164,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":164,"6":154,"22":938},"isBase":true}}}, +{"id":59340,"name":"Breastplate of Avenging Flame","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,301,198,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":198,"7":218,"22":3426},"isBase":true}}}, +{"id":59341,"name":"Incineratus","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,219,146,0,0,0,97,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"stats":{"2":219,"3":146,"7":97,"11":97,"14":1954},"isBase":true}}}, +{"id":59342,"name":"Belt of Absolute Zero","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":149,"6":169,"22":1927},"isBase":true}}}, +{"id":59343,"name":"Aberration's Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":228,"7":188,"22":1460},"isBase":true}}}, +{"id":59344,"name":"Dragon Bone Warhelm","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,0,0,0,113,0,0,281,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":259,"2":512,"8":113,"11":281,"22":2784},"isBase":true}}}, +{"id":59346,"name":"Tunic of Failed Experiments","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,228,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"5":228,"11":188,"22":2433},"isBase":true}}}, +{"id":59347,"name":"Mace of Acrid Death","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"10":97,"11":97},"isBase":true}}}, +{"id":59348,"name":"Cloak of Biting Chill","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"11":127,"22":625},"isBase":true}}}, +{"id":59349,"name":"Belt of Arcane Storms","icon":"inv_belt_cloth_raidwarlock_i_01","type":8,"armorType":1,"stats":[0,0,380,233,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":149,"7":169,"22":704},"isBase":true}}}, +{"id":59350,"name":"Treads of Flawless Creation","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"11":169,"22":1673},"isBase":true}}}, +{"id":59352,"name":"Flash Freeze Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":2141},"isBase":true}}}, +{"id":59353,"name":"Leggings of Consuming Flames","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,218,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":218,"11":198,"22":1460},"isBase":true}}}, +{"id":59354,"name":"Jar of Ancient Remedies","icon":"inv_misc_cat_trinket06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Maloriak"}}],"scalingOptions":{"359":{"randPropPoints":482,"isBase":true}}}, +{"id":59355,"name":"Chimaeron Armguards","icon":"inv_bracer_mail_raidhunter_i_01","type":6,"armorType":3,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":127,"6":127,"22":1064},"isBase":true}}}, +{"id":59356,"name":"Pauldrons of the Apocalypse","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,0,0,0,108,0,233,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":193,"2":380,"8":108,"10":233,"22":2570},"isBase":true}}}, +{"id":59359,"name":"Reinforced Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"22":2784},"isBase":true}}}, +{"id":59364,"name":"Overpowered Chicken Splitter","icon":"inv_weapon_bow_60","type":14,"rangedWeaponType":1,"stats":[0,302,454,0,0,0,216,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2164,"weaponDamageMax":4020,"weaponSpeed":2.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2164,"weaponDamageMax":4020,"stats":{"1":302,"2":454,"6":216,"7":177},"isBase":true}}}, +{"id":59367,"name":"Kickback 5000","icon":"inv_weapon_rifle_44","type":14,"rangedWeaponType":3,"stats":[0,282,454,0,0,0,207,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2164,"weaponDamageMax":4020,"weaponSpeed":2.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2164,"weaponDamageMax":4020,"stats":{"1":282,"2":454,"6":207,"7":176},"isBase":true}}}, +{"id":59441,"name":"Prestor's Talisman of Machination","icon":"inv_jewelry_necklace_17","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":59442,"name":"Rage of Ages","icon":"inv_misc_necklacea8","type":2,"stats":[190,0,286,0,0,127,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"5":127,"11":127},"isBase":true}}}, +{"id":59443,"name":"Crul'korak, the Lightning's Arc","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"7":97},"isBase":true}}}, +{"id":59444,"name":"Akmin-Kurai, Dominion's Shield","icon":"inv_shield_bwdraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"10":127,"11":127,"22":11896},"isBase":true}}}, +{"id":59448,"name":"Specialized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":4,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"22":2784},"isBase":true}}}, +{"id":59449,"name":"Lightweight Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":1,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"22":1016},"isBase":true}}}, +{"id":59450,"name":"Belt of the Blackhand","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"6":169,"22":1927},"isBase":true}}}, +{"id":59451,"name":"Manacles of the Sleeping Beast","icon":"inv_bracer_leather_raiddruid_i_01","type":6,"armorType":2,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Chimaeron"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":730},"isBase":true}}}, +{"id":59452,"name":"Crown of Burning Waters","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,228,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":228,"11":168,"22":1016},"isBase":true}}}, +{"id":59453,"name":"Camouflage Bio-Optic Killshades","icon":"inv_helmet_170","type":1,"armorType":2,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"22":1356},"isBase":true}}}, +{"id":59454,"name":"Shadowblaze Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"5":188,"11":228,"22":1251},"isBase":true}}}, +{"id":59455,"name":"Agile Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":2,"stats":[0,301,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"22":1356},"isBase":true}}}, +{"id":59456,"name":"Deadly Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,301,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"22":1977},"isBase":true}}}, +{"id":59457,"name":"Shadow of Dread","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127,"22":625},"isBase":true}}}, +{"id":59458,"name":"Energized Bio-Optic Killshades","icon":"inv_gizmo_newgoggles","type":1,"armorType":3,"stats":[0,0,512,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,9,9],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"22":1977},"isBase":true}}}, +{"id":59459,"name":"Andoros, Fist of the Dragon King","icon":"inv_mace_1h_bwdraid_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"stats":{"2":219,"3":146,"4":97,"11":97,"14":1954},"isBase":true}}}, +{"id":59460,"name":"Theresa's Booklight","icon":"inv_wand_1h_cataclysm_c_03","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,0,97,0,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"stats":{"2":219,"3":146,"5":97,"11":97,"14":1954},"isBase":true}}}, +{"id":59461,"name":"Fury of Angerforge","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"6":321},"isBase":true}}}, +{"id":59462,"name":"Maimgor's Bite","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":3,"stats":[0,146,219,0,0,97,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"5":97,"11":97},"isBase":true}}}, +{"id":59463,"name":"Maldo's Sword Cane","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,219,146,0,0,88,0,0,0,0,103,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"stats":{"2":219,"3":146,"6":88,"11":103,"14":1954},"isBase":true}}}, +{"id":59464,"name":"Treads of Savage Beatings","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[233,0,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"6":169,"11":149,"22":2355},"isBase":true}}}, +{"id":59465,"name":"Corehammer's Riveted Girdle","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":1927},"isBase":true}}}, +{"id":59466,"name":"Ironstar's Impenetrable Cover","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127,"22":625},"isBase":true}}}, +{"id":59467,"name":"Hide of Chromaggus","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"6":149,"22":1252},"isBase":true}}}, +{"id":59468,"name":"Shadowforge's Lightbound Smock","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,228,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":228,"7":188,"22":1251},"isBase":true}}}, +{"id":59469,"name":"Storm Rider's Boots","icon":"inv_boot_leatherraidrogue_i_01","type":10,"armorType":2,"stats":[0,233,380,0,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"7":149,"11":169,"22":1148},"isBase":true}}}, +{"id":59470,"name":"Bracers of Impossible Strength","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"10":127,"11":127,"22":1499},"isBase":true}}}, +{"id":59471,"name":"Pauldrons of the Great Ettin","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"6":169,"11":149,"22":2570},"isBase":true}}}, +{"id":59472,"name":"Proto-Handler's Gauntlets","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"11":169,"22":1521},"isBase":true}}}, +{"id":59473,"name":"Essence of the Cyclone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":59474,"name":"Malevolence","icon":"inv_stave_2h_grimbatolraid_d_01","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2393,"weaponDamageMax":3590,"weaponSpeed":2.4,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2393,"weaponDamageMax":3590,"stats":{"1":341,"2":512,"6":228,"11":228},"isBase":true}}}, +{"id":59475,"name":"Bracers of the Bronze Flight","icon":"inv_bracer_robe_raidmage_i_01","type":6,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127,"22":547},"isBase":true}}}, +{"id":59476,"name":"Legguards of the Emerald Brood","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,512,301,228,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":228,"7":188,"22":2998},"isBase":true}}}, +{"id":59481,"name":"Helm of the Nether Scion","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,244,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":244,"7":140,"22":1977},"isBase":true}}}, +{"id":59482,"name":"Robes of the Burning Acolyte","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,198,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":198,"11":218,"22":1251},"isBase":true}}}, +{"id":59483,"name":"Wyrmbreaker's Amulet","icon":"inv_misc_necklacea7","type":2,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"6":127},"isBase":true}}}, +{"id":59484,"name":"Book of Binding Will","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,0,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Halfus Wyrmbreaker"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":127,"7":127},"isBase":true}}}, +{"id":59485,"name":"Coil of Ten-Thousand Screams","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1369},"isBase":true}}}, +{"id":59486,"name":"Battleplate of the Apocalypse","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[239,0,512,0,0,173,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":239,"2":512,"5":173,"10":281,"22":3426},"isBase":true}}}, +{"id":59487,"name":"Helm of Maddening Whispers","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":281,"2":512,"6":168,"7":228,"22":2784},"isBase":true}}}, +{"id":59490,"name":"Membrane of C'Thun","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"7":228,"8":168,"22":1356},"isBase":true}}}, +{"id":59492,"name":"Akirus the Worm-Breaker","icon":"inv_mace_2h_grimbatolraid_d_01","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,0,228,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Magmaw"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"8":228,"11":228},"isBase":true}}}, +{"id":59494,"name":"\"Uhn'agh Fash, the Darkest Betrayal\"","icon":"inv_knife_1h_grimbatolraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"stats":{"1":146,"2":219,"6":97,"7":97},"isBase":true}}}, +{"id":59495,"name":"Treads of Hideous Transformation","icon":"inv_boots_leather_raiddruid_i_01","type":10,"armorType":2,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"6":149,"22":1148},"isBase":true}}}, +{"id":59497,"name":"Shackles of the End of Days","icon":"inv_bracer_plate_raidpaladin_i_01","type":6,"armorType":4,"stats":[0,0,286,190,127,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"6":127,"22":1499},"isBase":true}}}, +{"id":59498,"name":"Hands of the Twilight Council","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"7":149,"22":782},"isBase":true}}}, +{"id":59499,"name":"Kilt of the Forgotten Battle","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":228,"11":188,"22":2129},"isBase":true}}}, +{"id":59500,"name":"Fall of Mortality","icon":"inv_misc_cat_trinket12","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":59501,"name":"Signet of the Fifth Circle","icon":"inv_misc_diamondring2","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":59502,"name":"Dispersing Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":939},"isBase":true}}}, +{"id":59503,"name":"Terrastra's Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"5":188,"7":228,"22":2998},"isBase":true}}}, +{"id":59504,"name":"Arion's Crown","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,0,178,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"6":178,"7":218,"22":1977},"isBase":true}}}, +{"id":59505,"name":"Gravitational Pull","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[183,0,380,0,0,0,0,0,108,0,0,243,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":183,"2":380,"8":108,"11":243,"22":2141},"isBase":true}}}, +{"id":59506,"name":"Crushing Weight","icon":"inv_misc_cat_trinket05","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":321},"isBase":true}}}, +{"id":59507,"name":"Glittering Epidermis","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":59508,"name":"Treads of Liquid Ice","icon":"inv_boots_cloth_raidpriest_i_01","type":10,"armorType":1,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"11":169,"22":860},"isBase":true}}}, +{"id":59509,"name":"Glaciated Helm","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,512,281,218,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":218,"7":178,"22":2784},"isBase":true}}}, +{"id":59510,"name":"Feludius' Mantle","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,154,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":154,"6":164,"22":1825},"isBase":true}}}, +{"id":59511,"name":"Hydrolance Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,149,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"11":169,"22":1043},"isBase":true}}}, +{"id":59512,"name":"Valiona's Medallion","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":59513,"name":"Scepter of Ice","icon":"inv_crystallized_water","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127},"isBase":true}}}, +{"id":59514,"name":"Heart of Ignacious","icon":"inv_misc_cat_trinket08","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Ascendant Council"}}],"scalingOptions":{"359":{"randPropPoints":482,"isBase":true}}}, +{"id":59515,"name":"Vial of Stolen Memories","icon":"inv_misc_cat_trinket02","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":59516,"name":"Drape of the Twins","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127,"22":625},"isBase":true}}}, +{"id":59517,"name":"Necklace of Strife","icon":"inv_misc_necklacea8","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":59518,"name":"Ring of Rivalry","icon":"inv_misc_diamondring3","type":11,"stats":[190,0,286,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":127,"8":127},"isBase":true}}}, +{"id":59519,"name":"Theralion's Mirror","icon":"spell_arcane_teleportironforge","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":59520,"name":"Unheeded Warning","icon":"inv_misc_cat_trinket11","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":59521,"name":"Soul Blade","icon":"inv_sword_1h_grimbatolraid_d_01-","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,97,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"5":97,"11":97},"isBase":true}}}, +{"id":59525,"name":"Chelley's Staff of Dark Mending","icon":"inv_stave_2h_grimbatolraid_d_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,228,0,0,0,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1196,"weaponDamageMax":1795,"weaponSpeed":2.4,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1196,"weaponDamageMax":1795,"stats":{"2":512,"3":341,"4":228,"11":228,"14":1955},"isBase":true}}}, +{"id":59598,"name":"Finely-Tuned Throat Needler","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,268,402,0,0,0,157,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1986,"weaponDamageMax":3689,"weaponSpeed":2.9,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1986,"weaponDamageMax":3689,"stats":{"1":268,"2":402,"6":157,"7":191},"isBase":true}}}, +{"id":59599,"name":"Volatile Thunderstick","icon":"inv_weapon_rifle_43","type":14,"rangedWeaponType":3,"stats":[0,268,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1917,"weaponDamageMax":3562,"weaponSpeed":2.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1917,"weaponDamageMax":3562,"stats":{"1":268,"2":401,"6":178,"11":178},"isBase":true}}}, +{"id":59601,"name":"Submariner's Weighted Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,85,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"0":131,"2":196,"5":85,"6":89,"22":1791},"isBase":true}}}, +{"id":59602,"name":"Signet of the Lookout","icon":"inv_misc_stonering1","type":11,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"7":67,"11":64},"isBase":true}}}, +{"id":59603,"name":"Drape of the Helmsman","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,98,148,0,0,0,0,62,0,0,0,68,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"7":62,"11":68,"22":547},"isBase":true}}}, +{"id":59604,"name":"Submariner's Weighted Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[131,0,196,0,0,85,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"0":131,"2":196,"5":85,"6":89,"22":1791},"isBase":true}}}, +{"id":59605,"name":"Signet of the Lookout","icon":"inv_misc_stonering1","type":11,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"7":67,"11":64},"isBase":true}}}, +{"id":59606,"name":"Drape of the Helmsman","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,98,148,0,0,0,0,62,0,0,0,68,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"7":62,"11":68,"22":547},"isBase":true}}}, +{"id":59607,"name":"Hallazeal's Demise","icon":"inv_misc_kingsring1","type":11,"stats":[98,0,148,0,0,0,0,0,58,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"0":98,"2":148,"8":58,"9":70},"isBase":true}}}, +{"id":59608,"name":"Chestguard of the Expired Deity","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,176,264,0,0,112,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"1":176,"2":264,"5":112,"7":121,"22":1916},"isBase":true}}}, +{"id":59609,"name":"Bracers of the Vanquished God","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,148,98,66,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"4":66,"6":66,"22":606},"isBase":true}}}, +{"id":59610,"name":"Bottled Neurons","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,148,98,0,0,0,68,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"7":68,"11":62},"isBase":true}}}, +{"id":59611,"name":"Grimhorn Pummeler","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,0,0,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"8":109,"11":89},"isBase":true}}}, +{"id":59612,"name":"Darkspear Ritual Blade","icon":"inv_sword_1h_cataclysm_b_01","type":13,"weaponType":9,"handType":2,"stats":[0,0,98,65,0,0,47,0,0,0,0,38,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"2":98,"3":65,"6":47,"11":38,"14":871},"isBase":true}}}, +{"id":59613,"name":"Goblin Shanker","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,36,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"stats":{"1":65,"2":98,"5":36,"11":48},"isBase":true}}}, +{"id":59614,"name":"Draenic Shacklebreaker","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[152,0,228,0,0,0,0,0,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"8":109,"11":89},"isBase":true}}}, +{"id":59615,"name":"Gnomeregan Mindslicer","icon":"inv_sword_142","type":13,"weaponType":9,"handType":2,"stats":[0,0,98,65,0,0,47,0,0,0,0,38,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"weaponSpeed":1.7,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":248,"weaponDamageMax":461,"stats":{"2":98,"3":65,"6":47,"11":38,"14":871},"isBase":true}}}, +{"id":59616,"name":"Gilnean Slicer","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,36,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"stats":{"1":65,"2":98,"5":36,"11":48},"isBase":true}}}, +{"id":59617,"name":"Mentalist's Protective Bottle","icon":"inv_drink_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"11":143},"isBase":true}}}, +{"id":59618,"name":"Chestguard of Cognitive Dissonance","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":101,"6":101,"22":2446},"isBase":true}}}, +{"id":59619,"name":"Brain-Connector Chain","icon":"spell_shadow_brainwash","type":2,"stats":[0,0,127,85,47,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":47,"11":62},"isBase":true}}}, +{"id":59620,"name":"Trench-Stalker Shotgun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,152,228,0,0,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"weaponSpeed":2.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"stats":{"1":152,"2":228,"5":111,"8":84},"isBase":true}}}, +{"id":59621,"name":"Eel-Slayer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":94,"11":106,"22":2140},"isBase":true}}}, +{"id":59622,"name":"Remora-Crusher Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,77,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"1":152,"2":228,"5":77,"11":116},"isBase":true}}}, +{"id":59623,"name":"Trench-Stalker Shotgun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,152,228,0,0,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"weaponSpeed":2.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"stats":{"1":152,"2":228,"5":111,"8":84},"isBase":true}}}, +{"id":59624,"name":"Eel-Slayer Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,228,152,0,0,94,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":94,"11":106,"22":2140},"isBase":true}}}, +{"id":59625,"name":"Remora-Crusher Staff","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,152,228,0,0,77,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"1":152,"2":228,"5":77,"11":116},"isBase":true}}}, +{"id":59627,"name":"Tentacle-Slayer Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,85,127,0,0,0,59,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":59,"8":52,"22":791},"isBase":true}}}, +{"id":59628,"name":"Hood of Teeming Horror","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":99,"6":103,"22":854},"isBase":true}}}, +{"id":59629,"name":"Riptide Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,0,109,89,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"10":109,"11":89,"22":2140},"isBase":true}}}, +{"id":59630,"name":"Severed Visionary Tentacle","icon":"inv_misc_monstertail_04","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"5":143},"isBase":true}}}, +{"id":59632,"name":"Riptide Legguards","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,0,0,0,0,109,89,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"10":109,"11":89,"22":2140},"isBase":true}}}, +{"id":59633,"name":"Severed Visionary Tentacle","icon":"inv_misc_monstertail_04","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"5":143},"isBase":true}}}, +{"id":59635,"name":"Necklace of the Furious Standard","icon":"inv_misc_necklacea4","type":2,"stats":[85,0,127,0,0,46,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":46,"9":63},"isBase":true}}}, +{"id":59636,"name":"Spikemender Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,169,113,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":75,"6":75,"22":1834},"isBase":true}}}, +{"id":59638,"name":"Necklace of the Furious Standard","icon":"inv_misc_necklacea4","type":2,"stats":[85,0,127,0,0,46,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"5":46,"9":63},"isBase":true}}}, +{"id":59639,"name":"Spikemender Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[0,0,169,113,75,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":75,"6":75,"22":1834},"isBase":true}}}, +{"id":59641,"name":"Chemical-Stained Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,66,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":66,"11":80,"22":1834},"isBase":true}}}, +{"id":59642,"name":"Vapor-Proof Headcover","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":101,"11":101,"22":1470},"isBase":true}}}, +{"id":59643,"name":"Gloves of Delicate Mixture","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,83,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":83,"7":62,"22":824},"isBase":true}}}, +{"id":59644,"name":"Chemical-Stained Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,66,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":66,"11":80,"22":1834},"isBase":true}}}, +{"id":59645,"name":"Vapor-Proof Headcover","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":101,"11":101,"22":1470},"isBase":true}}}, +{"id":59646,"name":"Gloves of Delicate Mixture","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,83,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":83,"7":62,"22":824},"isBase":true}}}, +{"id":59647,"name":"Captain Verne's Splitter","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"6":116,"7":77},"isBase":true}}}, +{"id":59648,"name":"Handguards of the Severed Starfish","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":73,"6":76,"22":1529},"isBase":true}}}, +{"id":59649,"name":"Chum-Coated Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,107,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":107,"7":91,"22":1051},"isBase":true}}}, +{"id":59650,"name":"Glovaal's Choppink Svord","icon":"inv_sword_2h_cataclysm_b_02","type":13,"weaponType":9,"handType":4,"stats":[152,0,228,0,0,0,116,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"6":116,"7":77},"isBase":true}}}, +{"id":59651,"name":"Grips of the Severed Starfish","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":73,"6":76,"22":1529},"isBase":true}}}, +{"id":59652,"name":"Drag-Resistant Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,107,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":107,"7":91,"22":1051},"isBase":true}}}, +{"id":59653,"name":"Explosively Decompressed Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,169,113,85,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":85,"7":59,"22":1682},"isBase":true}}}, +{"id":59654,"name":"Shoulderpads of Anguilliform Extinction","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":69,"11":78,"22":788},"isBase":true}}}, +{"id":59655,"name":"Eel Cutter","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,65,98,0,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"1":65,"2":98,"6":43,"7":43},"isBase":true}}}, +{"id":59656,"name":"Explosively Decompressed Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,169,113,85,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":85,"7":59,"22":1682},"isBase":true}}}, +{"id":59657,"name":"Shoulderpads of Anguilliform Extinction","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,69,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":69,"11":78,"22":788},"isBase":true}}}, +{"id":59658,"name":"Eel Cutter","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,65,98,0,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"1":65,"2":98,"6":43,"7":43},"isBase":true}}}, +{"id":59659,"name":"Atoll Treaders","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,0,78,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":78,"11":69,"22":1244},"isBase":true}}}, +{"id":59660,"name":"Tiger Shark Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":85,"8":59,"22":742},"isBase":true}}}, +{"id":59661,"name":"Pelagic Prism","icon":"inv_misc_metagemuncut_a","type":12,"stats":[0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"7":143},"isBase":true}}}, +{"id":59662,"name":"Atoll Treaders","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,0,78,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":78,"11":69,"22":1244},"isBase":true}}}, +{"id":59663,"name":"Tiger Shark Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":85,"8":59,"22":742},"isBase":true}}}, +{"id":59664,"name":"Pelagic Prism","icon":"inv_misc_metagemuncut_a","type":12,"stats":[0,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"7":143},"isBase":true}}}, +{"id":59665,"name":"Emerald Dragonet Choker","icon":"inv_misc_necklacea11","type":2,"stats":[98,0,148,0,0,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"0":98,"2":148,"7":73,"8":53},"isBase":true}}}, +{"id":59666,"name":"Volaren's Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,75,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"6":75,"7":95,"22":1198},"isBase":true}}}, +{"id":59667,"name":"Pearlescent Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,196,131,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"5":87,"7":87,"22":821},"isBase":true}}}, +{"id":59668,"name":"Quel'Dormir Signet Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"6":59,"7":69},"isBase":true}}}, +{"id":59669,"name":"Emerald Dragonet Choker","icon":"inv_misc_necklacea11","type":2,"stats":[98,0,148,0,0,0,0,73,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"0":98,"2":148,"7":73,"8":53},"isBase":true}}}, +{"id":59670,"name":"Volaren's Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,196,131,0,0,75,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"6":75,"7":95,"22":1198},"isBase":true}}}, +{"id":59671,"name":"Pearlescent Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,196,131,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"5":87,"7":87,"22":821},"isBase":true}}}, +{"id":59672,"name":"Quel'Dormir Signet Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,98,148,0,0,0,59,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"6":59,"7":69},"isBase":true}}}, +{"id":59673,"name":"True Beacon Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,78,69,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"9":78,"10":69,"22":1834},"isBase":true}}}, +{"id":59674,"name":"Harp Shell Wristguards","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,127,85,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":55,"11":57,"22":577},"isBase":true}}}, +{"id":59675,"name":"Robes of the Watery Savior","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":111,"7":84,"22":1051},"isBase":true}}}, +{"id":59676,"name":"True Beacon Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,78,69,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"9":78,"10":69,"22":1834},"isBase":true}}}, +{"id":59677,"name":"Harp Shell Wristguards","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,127,85,55,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,577,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":55,"11":57,"22":577},"isBase":true}}}, +{"id":59678,"name":"Robes of the Watery Savior","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":111,"7":84,"22":1051},"isBase":true}}}, +{"id":59679,"name":"Nephropsis Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,79,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":79,"7":68,"22":1244},"isBase":true}}}, +{"id":59680,"name":"Anomuran Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":75,"11":75,"22":907},"isBase":true}}}, +{"id":59681,"name":"Staff of Post-Facto Preparation","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,0,0,0,94,0,0,0,106,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"stats":{"2":228,"3":152,"7":94,"11":106,"14":871},"isBase":true}}}, +{"id":59682,"name":"Nephropsis Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,169,113,79,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":79,"7":68,"22":1244},"isBase":true}}}, +{"id":59683,"name":"Anomuran Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":75,"11":75,"22":907},"isBase":true}}}, +{"id":59684,"name":"Staff of Post-Facto Preparation","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,0,0,0,94,0,0,0,106,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"stats":{"2":228,"3":152,"7":94,"11":106,"14":870},"isBase":true}}}, +{"id":59685,"name":"Kvaldir Battle Standard","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"7":166},"isBase":true}}}, +{"id":59686,"name":"Grips of the Kvaldir","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,75,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"6":75,"11":95,"22":1198},"isBase":true}}}, +{"id":59687,"name":"Battlemaiden's Vision","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,176,264,0,0,0,0,0,109,0,0,123,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"1":176,"2":264,"8":109,"11":123,"22":1126},"isBase":true}}}, +{"id":59688,"name":"Ancient Beth'moran Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"7":67,"11":64,"22":547},"isBase":true}}}, +{"id":59689,"name":"Kvaldir Battle Standard","icon":"inv_brd_banner","type":12,"stats":[0,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"7":166},"isBase":true}}}, +{"id":59690,"name":"Grips of the Kvaldir","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,131,196,0,0,0,75,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,1198,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"1":131,"2":196,"6":75,"11":95,"22":1198},"isBase":true}}}, +{"id":59691,"name":"Battlemaiden's Vision","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,176,264,0,0,0,0,0,109,0,0,123,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"1":176,"2":264,"8":109,"11":123,"22":1126},"isBase":true}}}, +{"id":59692,"name":"Ancient Beth'moran Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,148,98,0,0,0,67,0,0,0,64,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"2":148,"3":98,"7":67,"11":64,"22":547},"isBase":true}}}, +{"id":59693,"name":"Gloves of Transcription","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,77,71,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"10":77,"11":71,"22":1529},"isBase":true}}}, +{"id":59694,"name":"Keenstone Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"5":89,"7":109,"22":1470},"isBase":true}}}, +{"id":59695,"name":"Scribe's Quill","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,98,65,0,0,48,35,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":1.9,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"2":98,"3":65,"6":48,"7":35,"14":871},"isBase":true}}}, +{"id":59696,"name":"Gloves of Transcription","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,0,0,0,0,77,71,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"10":77,"11":71,"22":1529},"isBase":true}}}, +{"id":59697,"name":"Keenstone Helm","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,152,228,0,0,89,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"5":89,"7":109,"22":1470},"isBase":true}}}, +{"id":59698,"name":"Scribe's Quill","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,98,65,0,0,48,35,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"weaponSpeed":1.9,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":277,"weaponDamageMax":516,"stats":{"2":98,"3":65,"6":48,"7":35,"14":871},"isBase":true}}}, +{"id":59699,"name":"Liminal Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,77,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":77,"7":116,"22":1987},"isBase":true}}}, +{"id":59700,"name":"Seafletcher Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,0,66,0,0,0,80,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"7":66,"11":80,"22":989},"isBase":true}}}, +{"id":59701,"name":"Treads of Dependability","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":73,"7":76,"22":722},"isBase":true}}}, +{"id":59702,"name":"Liminal Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,228,152,77,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":77,"7":116,"22":1987},"isBase":true}}}, +{"id":59703,"name":"Seafletcher Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,169,113,0,0,0,66,0,0,0,80,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"7":66,"11":80,"22":989},"isBase":true}}}, +{"id":59704,"name":"Treads of Dependability","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,0,0,73,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":73,"7":76,"22":722},"isBase":true}}}, +{"id":59705,"name":"Chestguard of the Naz'jar","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":99,"6":103,"22":1809},"isBase":true}}}, +{"id":59706,"name":"Wound-Binding Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,69,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":69,"7":78,"22":591},"isBase":true}}}, +{"id":59707,"name":"Wavespeaker's Focus","icon":"inv_misc_orb_01","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"5":143},"isBase":true}}}, +{"id":59708,"name":"Chestguard of the Naz'jar","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,228,152,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":99,"6":103,"22":1809},"isBase":true}}}, +{"id":59709,"name":"Wound-Binding Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,69,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":69,"7":78,"22":591},"isBase":true}}}, +{"id":59710,"name":"Wavespeaker's Focus","icon":"inv_misc_orb_01","type":12,"stats":[0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"5":143},"isBase":true}}}, +{"id":59711,"name":"Improvisational Historian's Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[85,0,127,0,0,0,0,0,52,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":52,"11":59,"22":525},"isBase":true}}}, +{"id":59712,"name":"Legguards of Revelation","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":106,"7":94,"22":1583},"isBase":true}}}, +{"id":59713,"name":"Time-Clearing Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":64,"6":43,"22":460},"isBase":true}}}, +{"id":59714,"name":"Improvisational Historian's Cloak","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[85,0,127,0,0,0,0,0,52,0,0,59,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":52,"11":59,"22":525},"isBase":true}}}, +{"id":59715,"name":"Legguards of Revelation","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,152,228,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":106,"7":94,"22":1583},"isBase":true}}}, +{"id":59716,"name":"Time-Clearing Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,64,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":64,"6":43,"22":460},"isBase":true}}}, +{"id":59717,"name":"Chestguard of Alarming Dreams","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,99,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":99,"9":103,"22":2446},"isBase":true}}}, +{"id":59718,"name":"Gulper Eel Sandals","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,0,0,76,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":76,"11":73,"22":907},"isBase":true}}}, +{"id":59719,"name":"Cowry-Shell Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,85,127,0,0,0,61,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":61,"11":50},"isBase":true}}}, +{"id":59720,"name":"Chestguard of Alarming Dreams","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,99,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":99,"9":103,"22":2446},"isBase":true}}}, +{"id":59721,"name":"Gulper Eel Sandals","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,169,113,0,0,76,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":76,"11":73,"22":907},"isBase":true}}}, +{"id":59722,"name":"Cowry-Shell Pendant","icon":"inv_jewelry_necklace_10","type":2,"stats":[0,85,127,0,0,0,61,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"6":61,"11":50},"isBase":true}}}, +{"id":59723,"name":"Meiofauna Wristguards","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,0,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":63,"11":46,"22":1070},"isBase":true}}}, +{"id":59724,"name":"Grouper-Skin Chestwrap","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":101,"11":101,"22":1319},"isBase":true}}}, +{"id":59725,"name":"Filet Knife","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,98,65,37,0,0,0,0,0,0,47,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":262,"weaponDamageMax":488,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":262,"weaponDamageMax":488,"stats":{"2":98,"3":65,"4":37,"11":47,"14":871},"isBase":true}}}, +{"id":59726,"name":"Sea Star Wristwraps","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[85,0,127,0,0,0,0,0,63,0,0,46,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":63,"11":46,"22":1070},"isBase":true}}}, +{"id":59727,"name":"Queen Conch Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,152,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"6":101,"11":101,"22":1319},"isBase":true}}}, +{"id":59728,"name":"Clam Shucker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,98,65,37,0,0,0,0,0,0,47,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":262,"weaponDamageMax":488,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":262,"weaponDamageMax":488,"stats":{"2":98,"3":65,"4":37,"11":47,"14":871},"isBase":true}}}, +{"id":59729,"name":"Pocket-Sized Mace","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[65,0,98,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"0":65,"2":98,"5":43,"6":43},"isBase":true}}}, +{"id":59730,"name":"Oddly Revealing Chestguard","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,91,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":91,"11":107,"22":2446},"isBase":true}}}, +{"id":59731,"name":"Part-Picker Wraps","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,78,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":78,"11":69,"22":657},"isBase":true}}}, +{"id":59732,"name":"Prototype Chemical Applicator","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[65,0,98,0,0,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"0":65,"2":98,"5":43,"6":43},"isBase":true}}}, +{"id":59733,"name":"Chestplate of Fragrant Desire","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,228,152,91,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":91,"11":107,"22":2446},"isBase":true}}}, +{"id":59734,"name":"Gloves of Piscine Attraction","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,169,113,78,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":78,"11":69,"22":657},"isBase":true}}}, +{"id":59735,"name":"Helm of the Crushed Overseer","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":104,"6":96,"22":1987},"isBase":true}}}, +{"id":59736,"name":"Gorgonian Belt","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":75,"6":75,"22":1018},"isBase":true}}}, +{"id":59737,"name":"Earthmender's Sawfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":84,"11":60,"22":742},"isBase":true}}}, +{"id":59738,"name":"Helm of the Crushed Overseer","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[152,0,228,0,0,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"5":104,"6":96,"22":1987},"isBase":true}}}, +{"id":59739,"name":"Gorgonian Belt","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,113,169,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":75,"6":75,"22":1018},"isBase":true}}}, +{"id":59740,"name":"Earthmender's Sawfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,169,113,84,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":84,"11":60,"22":742},"isBase":true}}}, +{"id":59741,"name":"Sand-Scoured Protector","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":61,"9":50,"22":7256},"isBase":true}}}, +{"id":59742,"name":"Dusky Pearl Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,127,85,0,57,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"5":57,"6":55},"isBase":true}}}, +{"id":59743,"name":"Beakless Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,152,228,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"1":152,"2":228,"6":96,"7":104},"isBase":true}}}, +{"id":59744,"name":"Sand-Scoured Protector","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[85,0,127,0,0,0,0,0,61,50,0,0,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"0":85,"2":127,"8":61,"9":50,"22":7256},"isBase":true}}}, +{"id":59745,"name":"Dusky Pearl Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,127,85,0,57,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"5":57,"6":55},"isBase":true}}}, +{"id":59746,"name":"Beakless Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,152,228,0,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"1":152,"2":228,"6":96,"7":104},"isBase":true}}}, +{"id":59747,"name":"Polychaete Footguards","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,69,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"5":69,"11":78,"22":1682},"isBase":true}}}, +{"id":59748,"name":"Kilt of Shamanic Dreams","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,228,152,0,0,0,101,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1583,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"7":101,"11":101,"22":1583},"isBase":true}}}, +{"id":59749,"name":"Stolen Idra'kess Drape","icon":"inv_misc_cape_14","type":4,"armorType":1,"stats":[0,85,127,0,0,51,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"5":51,"6":60,"22":525},"isBase":true}}}, +{"id":59750,"name":"Starfish Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,113,169,0,0,83,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1131,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":83,"7":62,"22":1131},"isBase":true}}}, +{"id":59751,"name":"Triggerfish Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,113,169,0,0,75,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,742,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":75,"11":75,"22":742},"isBase":true}}}, +{"id":59752,"name":"Tilefish Crown","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,109,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":109,"7":89,"22":854},"isBase":true}}}, +{"id":59753,"name":"Displaced Crown of Azrakir","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,228,152,86,0,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1470,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":86,"11":110,"22":1470},"isBase":true}}}, +{"id":59754,"name":"Sea-Bending Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,169,113,73,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":73,"6":76,"22":824},"isBase":true}}}, +{"id":59755,"name":"Priapulid Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,127,85,0,59,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"5":59,"11":52,"22":460},"isBase":true}}}, +{"id":59756,"name":"Drill-Guide Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[113,0,169,0,0,0,0,80,0,0,0,66,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"7":80,"11":66,"22":1376},"isBase":true}}}, +{"id":59757,"name":"Sambino's Old Hammer","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,98,65,0,41,0,45,0,0,0,0,0,0,871,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"weaponSpeed":1.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":233,"weaponDamageMax":434,"stats":{"2":98,"3":65,"5":41,"7":45,"14":871},"isBase":true}}}, +{"id":59758,"name":"Rockbite Slicer","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,65,98,0,0,45,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"weaponSpeed":1.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":525,"weaponDamageMax":977,"stats":{"1":65,"2":98,"5":45,"11":41},"isBase":true}}}, +{"id":59759,"name":"Super-Sized Stompers","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[113,0,169,0,0,0,0,0,69,78,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"8":69,"9":78,"22":1682},"isBase":true}}}, +{"id":59760,"name":"Crabcracker Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,152,228,0,0,109,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1809,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"5":109,"6":89,"22":1809},"isBase":true}}}, +{"id":59761,"name":"Leggings of the Albino Brachyura","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,228,152,0,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"5":101,"6":101,"22":919},"isBase":true}}}, +{"id":59762,"name":"Wentletrap Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[152,0,228,0,0,0,101,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,2140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"6":101,"11":101,"22":2140},"isBase":true}}}, +{"id":59763,"name":"Aquasear Waistguard","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,169,113,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":68,"6":79,"22":1018},"isBase":true}}}, +{"id":59764,"name":"Cowl of the Leptochelae","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,228,152,110,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":110,"6":86,"22":1072},"isBase":true}}}, +{"id":59765,"name":"Damplight Chestplate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[152,0,228,0,0,0,0,77,0,0,0,116,0,0,0,0,0,0,0,0,0,0,2446,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"0":152,"2":228,"7":77,"11":116,"22":2446},"isBase":true}}}, +{"id":59766,"name":"Shoulderguards of Caridean Might","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,113,169,0,0,71,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":71,"7":77,"22":989},"isBase":true}}}, +{"id":59767,"name":"Ostracod Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,169,113,78,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"4":78,"6":69,"22":722},"isBase":true}}}, +{"id":59768,"name":"Bracers of Burbling Freedom","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,127,85,54,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":54,"11":58,"22":1070},"isBase":true}}}, +{"id":59769,"name":"Pteropod Robes","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":111,"7":84,"22":1319},"isBase":true}}}, +{"id":59770,"name":"Cone-Snail Cinch","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"5":68,"7":79,"22":591},"isBase":true}}}, +{"id":59771,"name":"Breathstone-Infused Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,152,228,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"weaponSpeed":2.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"stats":{"1":152,"2":228,"5":96,"6":104},"isBase":true}}}, +{"id":59772,"name":"Bracers of Burbling Freedom","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,127,85,54,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,1070,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":54,"11":58,"22":1070},"isBase":true}}}, +{"id":59773,"name":"Pteropod Robes","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,228,152,111,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":111,"7":84,"22":1319},"isBase":true}}}, +{"id":59774,"name":"Cone-Snail Cinch","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,169,113,0,68,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"5":68,"7":79,"22":591},"isBase":true}}}, +{"id":59775,"name":"Breathstone-Infused Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,152,228,0,0,96,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"weaponSpeed":2.8,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1063,"weaponDamageMax":1975,"stats":{"1":152,"2":228,"5":96,"6":104},"isBase":true}}}, +{"id":59776,"name":"Pipefish Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,85,127,0,0,0,0,64,0,0,0,44,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"7":64,"11":44,"22":791},"isBase":true}}}, +{"id":59777,"name":"Conch-Inlaid Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,113,169,0,0,0,57,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,824,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":57,"7":86,"22":824},"isBase":true}}}, +{"id":59778,"name":"Medusoid Staff","icon":"inv_staff_55","type":13,"weaponType":8,"handType":4,"stats":[0,0,228,152,101,0,101,0,0,0,0,0,0,0,870,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":716,"weaponDamageMax":1074,"stats":{"2":228,"3":152,"4":101,"6":101,"14":870},"isBase":true}}}, +{"id":59779,"name":"Girdle of Calcified Blackfin","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,169,113,0,0,85,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1376,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":85,"7":59,"22":1376},"isBase":true}}}, +{"id":59780,"name":"Polychaete Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,152,228,0,0,0,0,106,94,0,0,0,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"7":106,"8":94,"22":1154},"isBase":true}}}, +{"id":59781,"name":"Calanoid Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,169,113,0,0,83,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"2":169,"3":113,"6":83,"7":62,"22":788},"isBase":true}}}, +{"id":59782,"name":"Prismatic Periwinkle Band","icon":"inv_jewelry_ring_64","type":11,"stats":[98,0,148,0,0,0,58,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"0":98,"2":148,"6":58,"11":70},"isBase":true}}}, +{"id":59783,"name":"Damselfish Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,196,131,85,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1437,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"4":85,"7":89,"22":1437},"isBase":true}}}, +{"id":59784,"name":"Dreamfrond Skirt","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,264,176,128,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,958,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":335,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":335,"stats":{"2":264,"3":176,"4":128,"11":100,"22":958},"isBase":true}}}, +{"id":59785,"name":"Pounded Pewter Links","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[131,0,196,0,0,0,0,0,0,77,94,0,0,0,0,0,0,0,0,0,0,0,1465,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"0":131,"2":196,"9":77,"10":94,"22":1465},"isBase":true}}}, +{"id":59786,"name":"Wristguards of Prophetic Perishing","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,98,148,0,0,0,0,64,0,0,0,67,0,0,0,0,0,0,0,0,0,0,606,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":187,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":187,"stats":{"1":98,"2":148,"7":64,"11":67,"22":606},"isBase":true}}}, +{"id":59787,"name":"God-Grinding Grips","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,196,131,0,0,92,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0,684,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":249,"ilvl":288,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"288":{"randPropPoints":249,"stats":{"2":196,"3":131,"6":92,"11":79,"22":684},"isBase":true}}}, +{"id":59788,"name":"Bioluminescent Buckler","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,127,85,0,0,0,54,0,0,0,58,0,0,0,0,0,0,0,0,0,0,7256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"7":54,"11":58,"22":7256},"isBase":true}}}, +{"id":59789,"name":"Sea-Snack Footguards","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,113,169,0,0,0,82,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"6":82,"11":64,"22":1244},"isBase":true}}}, +{"id":59790,"name":"Gnash-Crusher Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,152,228,0,0,84,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"1":152,"2":228,"5":84,"6":111,"22":1072},"isBase":true}}}, +{"id":59791,"name":"Giantslayer Cloak","icon":"inv_misc_cape_cataclysm_healer_b_01","type":4,"armorType":1,"stats":[0,0,127,85,57,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":57,"6":55,"22":525},"isBase":true}}}, +{"id":59792,"name":"Petrified Spider Crab","icon":"inv_jewelcrafting_emeraldcrab","type":12,"stats":[0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"6":143},"isBase":true}}}, +{"id":59793,"name":"Hippolyte's Glittering Necklace","icon":"inv_jewelry_necklace_28","type":2,"stats":[0,0,127,85,0,0,60,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"6":60,"7":51},"isBase":true}}}, +{"id":59794,"name":"Signet of Galathea","icon":"inv_misc_starring3","type":11,"stats":[0,85,127,0,0,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"1":85,"2":127,"5":56,"8":56},"isBase":true}}}, +{"id":59795,"name":"Harp Shell Shoulderplates","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[113,0,169,0,0,0,0,57,86,0,0,0,0,0,0,0,0,0,0,0,0,0,1834,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"7":57,"8":86,"22":1834},"isBase":true}}}, +{"id":59796,"name":"Treads of Decapod Death","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,113,169,0,0,78,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"5":78,"8":69,"22":907},"isBase":true}}}, +{"id":59797,"name":"Abalone-Linked Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,228,152,0,0,109,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"6":109,"11":89,"22":1051},"isBase":true}}}, +{"id":59798,"name":"Barnacle-Coated Greataxe","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[152,0,228,0,0,99,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"weaponSpeed":3.3,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"weaponDamageMin":1432,"weaponDamageMax":2149,"stats":{"0":152,"2":228,"5":99,"7":103},"isBase":true}}}, +{"id":59799,"name":"Schooner-Savior's Grips","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":64,"7":82,"22":1529},"isBase":true}}}, +{"id":59800,"name":"Bracers of Breached Integrity","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,63,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":63,"11":46,"22":791},"isBase":true}}}, +{"id":59801,"name":"Hood of the Shuffled Coil","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,96,0,0,0,104,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"7":96,"11":104,"22":854},"isBase":true}}}, +{"id":59802,"name":"Wheelman's Shattered Grasp","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[113,0,169,0,0,0,64,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"0":113,"2":169,"6":64,"7":82,"22":1529},"isBase":true}}}, +{"id":59803,"name":"Bracers of the Sunken Dream","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,127,85,63,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":161,"stats":{"2":127,"3":85,"4":63,"11":46,"22":791},"isBase":true}}}, +{"id":59804,"name":"Cowl of the Lost Cutter","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,228,152,0,0,0,96,0,0,0,104,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"7":96,"11":104,"22":854},"isBase":true}}}, +{"id":59805,"name":"Whelk Shell Shoulderguards","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,0,71,0,0,0,77,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":71,"11":77,"22":1357},"isBase":true}}}, +{"id":59806,"name":"Shipwrecked Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,107,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":107,"11":91,"22":1154},"isBase":true}}}, +{"id":59807,"name":"Legionnaire Nazgrim's Hacker","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"1":65,"2":98,"6":43,"8":43},"isBase":true}}}, +{"id":59808,"name":"Scavenged Stormwind Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,113,169,0,0,0,0,71,0,0,0,77,0,0,0,0,0,0,0,0,0,0,1357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":214,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":214,"stats":{"1":113,"2":169,"7":71,"11":77,"22":1357},"isBase":true}}}, +{"id":59809,"name":"Leftover Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,228,152,107,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":289,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":289,"stats":{"2":228,"3":152,"4":107,"11":91,"22":1154},"isBase":true}}}, +{"id":59810,"name":"Captain Taylor's Chopper","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[0,65,98,0,0,0,43,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"weaponSpeed":2.6,"ilvl":272,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"272":{"randPropPoints":124,"weaponDamageMin":759,"weaponDamageMax":1411,"stats":{"1":65,"2":98,"6":43,"8":43},"isBase":true}}}, +{"id":59901,"name":"Heaving Plates of Protection","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,129,169,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":129,"11":169,"22":2570},"isBase":true}}}, +{"id":60201,"name":"Phase-Twister Leggings","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"7":228,"22":2129},"isBase":true}}}, +{"id":60202,"name":"Tsanga's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,0,168,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"6":168,"11":228,"22":1356},"isBase":true}}}, +{"id":60210,"name":"Crossfire Carbine","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"stats":{"1":341,"2":512,"7":228,"11":228},"isBase":true}}}, +{"id":60211,"name":"Bracers of the Dark Pool","icon":"inv_bracer_04","type":6,"armorType":1,"stats":[0,0,286,190,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":127,"6":127,"22":547},"isBase":true}}}, +{"id":60243,"name":"Firelord's Hood","icon":"inv_helm_robe_raidmage_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"7":188,"11":208,"22":1016},"isBase":true}}}, +{"id":60244,"name":"Firelord's Robes","icon":"inv_chest_robe_raidmage_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":218,"7":198,"22":1251},"isBase":true}}}, +{"id":60245,"name":"Firelord's Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"5":188,"7":228,"22":1094},"isBase":true}}}, +{"id":60246,"name":"Firelord's Mantle","icon":"inv_shoulder_robe_raidmage_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"5":149,"7":169,"22":938},"isBase":true}}}, +{"id":60247,"name":"Firelord's Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[3],"setName":"Firelord's Vestments","setId":931,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":149,"11":169,"22":782},"isBase":true}}}, +{"id":60248,"name":"Shadowflame Handwraps","icon":"inv_gauntlets_cloth_raidwarlock_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":149,"11":169,"22":782},"isBase":true}}}, +{"id":60249,"name":"Shadowflame Hood","icon":"inv_helmet_cloth_raidwarlock_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"7":188,"11":208,"22":1016},"isBase":true}}}, +{"id":60250,"name":"Shadowflame Leggings","icon":"inv_pants_cloth_raidwarlock_i_01","type":9,"armorType":1,"stats":[0,0,512,301,0,188,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"5":188,"7":228,"22":1094},"isBase":true}}}, +{"id":60251,"name":"Shadowflame Robes","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":218,"7":198,"22":1251},"isBase":true}}}, +{"id":60252,"name":"Shadowflame Mantle","icon":"inv_shoulder_cloth_raidwarlock_i_01","type":3,"armorType":1,"stats":[0,0,380,233,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[8],"setName":"Shadowflame Regalia","setId":941,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"5":149,"7":169,"22":938},"isBase":true}}}, +{"id":60253,"name":"Mercurial Shoulderwraps","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":938},"isBase":true}}}, +{"id":60254,"name":"Mercurial Vestment","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,218,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":218,"7":198,"22":1251},"isBase":true}}}, +{"id":60255,"name":"Mercurial Leggings","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[4,2],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"7":228,"22":1094},"isBase":true}}}, +{"id":60256,"name":"Mercurial Hood","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,0,0,0,188,0,0,0,208,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"7":188,"11":208,"22":1016},"isBase":true}}}, +{"id":60257,"name":"Mercurial Gloves","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Regalia","setId":936,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":149,"11":169,"22":782},"isBase":true}}}, +{"id":60258,"name":"Mercurial Cowl","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":228,"6":168,"22":1016},"isBase":true}}}, +{"id":60259,"name":"Mercurial Robes","icon":"inv_chest_cloth_raidpriest_i_01","type":5,"armorType":1,"stats":[0,0,512,301,198,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":198,"6":218,"22":1251},"isBase":true}}}, +{"id":60261,"name":"Mercurial Legwraps","icon":"inv_pant_cloth_raidpriest_i_01","type":9,"armorType":1,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":228,"11":188,"22":1094},"isBase":true}}}, +{"id":60262,"name":"Mercurial Mantle","icon":"inv_shoulder_cloth_raidpriest_i_01","type":3,"armorType":1,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":938},"isBase":true}}}, +{"id":60275,"name":"Mercurial Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[5],"setName":"Mercurial Vestments","setId":935,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":782},"isBase":true}}}, +{"id":60276,"name":"Stormrider's Robes","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":188,"11":228,"22":1669},"isBase":true}}}, +{"id":60277,"name":"Stormrider's Helm","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,208,0,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":208,"7":188,"22":1356},"isBase":true}}}, +{"id":60278,"name":"Stormrider's Legwraps","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,208,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":208,"6":208,"22":1460},"isBase":true}}}, +{"id":60279,"name":"Stormrider's Mantle","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":1252},"isBase":true}}}, +{"id":60280,"name":"Stormrider's Handwraps","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Vestments","setId":928,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":1043},"isBase":true}}}, +{"id":60281,"name":"Stormrider's Vestment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,0,512,301,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":198,"11":218,"22":1669},"isBase":true}}}, +{"id":60282,"name":"Stormrider's Cover","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,0,512,281,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"6":228,"7":168,"22":1356},"isBase":true}}}, +{"id":60283,"name":"Stormrider's Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"7":228,"22":1460},"isBase":true}}}, +{"id":60284,"name":"Stormrider's Shoulderwraps","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,0,380,233,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"7":149,"11":169,"22":1252},"isBase":true}}}, +{"id":60285,"name":"Stormrider's Gloves","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Regalia","setId":929,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"7":149,"22":1043},"isBase":true}}}, +{"id":60286,"name":"Stormrider's Headpiece","icon":"inv_helmet_leather_raiddruid_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"5":168,"6":228,"22":1356},"isBase":true}}}, +{"id":60287,"name":"Stormrider's Raiment","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"7":228,"8":188,"22":1669},"isBase":true}}}, +{"id":60288,"name":"Stormrider's Legguards","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":188,"11":228,"22":1460},"isBase":true}}}, +{"id":60289,"name":"Stormrider's Spaulders","icon":"inv_shoulder_leather_raiddruid_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1252},"isBase":true}}}, +{"id":60290,"name":"Stormrider's Grips","icon":"inv_gauntlets_leather_raiddruid_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1],"setName":"Stormrider's Battlegarb","setId":927,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"7":169,"22":1043},"isBase":true}}}, +{"id":60298,"name":"Wind Dancer's Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"7":169,"22":1043},"isBase":true}}}, +{"id":60299,"name":"Wind Dancer's Helmet","icon":"inv_helmet_leatherraidrogue_i_01","type":1,"armorType":2,"stats":[0,281,512,0,0,168,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"5":168,"6":228,"22":1356},"isBase":true}}}, +{"id":60300,"name":"Wind Dancer's Legguards","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,301,512,0,0,0,188,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":188,"11":228,"22":1460},"isBase":true}}}, +{"id":60301,"name":"Wind Dancer's Tunic","icon":"inv_chest_leatherraidrogue_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"7":228,"8":188,"22":1669},"isBase":true}}}, +{"id":60302,"name":"Wind Dancer's Spaulders","icon":"inv_shoulder_leatherraidrogue_i_01","type":3,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[6],"setName":"Wind Dancer's Regalia","setId":937,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1252},"isBase":true}}}, +{"id":60303,"name":"Lightning-Charged Headguard","icon":"inv_helm_mail_raidhunter_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,0,228,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"6":228,"11":168,"22":1977},"isBase":true}}}, +{"id":60304,"name":"Lightning-Charged Tunic","icon":"inv_chest_mail_raidhunter_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,0,188,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"7":188,"11":228,"22":2433},"isBase":true}}}, +{"id":60305,"name":"Lightning-Charged Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":228,"7":188,"22":2129},"isBase":true}}}, +{"id":60306,"name":"Lightning-Charged Spaulders","icon":"inv_shoulder_mail_raidhunter_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"11":169,"22":1825},"isBase":true}}}, +{"id":60307,"name":"Lightning-Charged Gloves","icon":"inv_glove_mail_raidhunter_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[2],"setName":"Lightning-Charged Battlegear","setId":930,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":169,"7":149,"22":1521},"isBase":true}}}, +{"id":60308,"name":"Faceguard of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,208,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":208,"11":188,"22":1977},"isBase":true}}}, +{"id":60309,"name":"Tunic of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":188,"7":228,"22":2433},"isBase":true}}}, +{"id":60310,"name":"Legwraps of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,218,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":218,"6":198,"22":2129},"isBase":true}}}, +{"id":60311,"name":"Mantle of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":1825},"isBase":true}}}, +{"id":60312,"name":"Handwraps of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Vestments of the Raging Elements","setId":938,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":1521},"isBase":true}}}, +{"id":60313,"name":"Hauberk of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":188,"7":228,"22":2433},"isBase":true}}}, +{"id":60314,"name":"Gloves of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"7":149,"22":1521},"isBase":true}}}, +{"id":60315,"name":"Headpiece of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,0,512,281,0,0,0,168,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"7":168,"11":228,"22":1977},"isBase":true}}}, +{"id":60316,"name":"Kilt of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"7":228,"22":2129},"isBase":true}}}, +{"id":60317,"name":"Shoulderwraps of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,0,380,233,0,0,169,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Regalia of the Raging Elements","setId":940,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"11":149,"22":1825},"isBase":true}}}, +{"id":60318,"name":"Cuirass of the Raging Elements","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,301,512,0,0,0,0,188,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"7":188,"11":228,"22":2433},"isBase":true}}}, +{"id":60319,"name":"Grips of the Raging Elements","icon":"inv_glove_raidshaman_i_01","type":7,"armorType":3,"stats":[0,233,380,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"6":169,"22":1521},"isBase":true}}}, +{"id":60320,"name":"Helmet of the Raging Elements","icon":"inv_helmet_raidshaman_i_01","type":1,"armorType":3,"stats":[0,281,512,0,0,228,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":281,"2":512,"5":228,"11":168,"22":1977},"isBase":true}}}, +{"id":60321,"name":"Legguards of the Raging Elements","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"7":188,"8":228,"22":2129},"isBase":true}}}, +{"id":60322,"name":"Spaulders of the Raging Elements","icon":"inv_shoulder_mail_raidshaman_i_01","type":3,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[7],"setName":"Battlegear of the Raging Elements","setId":939,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"11":169,"22":1825},"isBase":true}}}, +{"id":60323,"name":"Earthen Battleplate","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"6":228,"7":188,"22":3426},"isBase":true}}}, +{"id":60324,"name":"Earthen Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"5":188,"11":228,"22":2998},"isBase":true}}}, +{"id":60325,"name":"Earthen Helmet","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":281,"2":512,"7":228,"8":168,"22":2784},"isBase":true}}}, +{"id":60326,"name":"Earthen Gauntlets","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"7":169,"11":149,"22":2141},"isBase":true}}}, +{"id":60327,"name":"Earthen Pauldrons","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Warplate","setId":942,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":149,"7":169,"22":2570},"isBase":true}}}, +{"id":60328,"name":"Earthen Faceguard","icon":"inv_helmet_plate_raidwarrior_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":259,"2":512,"5":113,"9":281,"22":2784},"isBase":true}}}, +{"id":60329,"name":"Earthen Chestguard","icon":"inv_chest_plate_raidwarrior_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"10":168,"11":208,"22":3426},"isBase":true}}}, +{"id":60330,"name":"Earthen Legguards","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"9":188,"10":228,"22":2998},"isBase":true}}}, +{"id":60331,"name":"Earthen Shoulderguards","icon":"inv_shoulder_plate_raidwarrior_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":193,"2":380,"5":128,"9":213,"22":2570},"isBase":true}}}, +{"id":60332,"name":"Earthen Handguards","icon":"inv_gauntlets_plate_raidwarrior_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[9],"setName":"Earthen Battleplate","setId":943,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":149,"11":149,"22":2141},"isBase":true}}}, +{"id":60339,"name":"Magma Plated Battleplate","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"6":228,"7":188,"22":3426},"isBase":true}}}, +{"id":60340,"name":"Magma Plated Gauntlets","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"7":169,"11":149,"22":2141},"isBase":true}}}, +{"id":60341,"name":"Magma Plated Helmet","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":281,"2":512,"7":228,"8":168,"22":2784},"isBase":true}}}, +{"id":60342,"name":"Magma Plated Legplates","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"5":188,"11":228,"22":2998},"isBase":true}}}, +{"id":60343,"name":"Magma Plated Pauldrons","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlegear","setId":925,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":149,"7":169,"22":2570},"isBase":true}}}, +{"id":60344,"name":"Reinforced Sapphirium Battleplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[301,0,512,0,0,0,228,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"6":228,"7":188,"22":3426},"isBase":true}}}, +{"id":60345,"name":"Reinforced Sapphirium Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[233,0,380,0,0,0,0,169,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"7":169,"11":149,"22":2141},"isBase":true}}}, +{"id":60346,"name":"Reinforced Sapphirium Helmet","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":281,"2":512,"7":228,"8":168,"22":2784},"isBase":true}}}, +{"id":60347,"name":"Reinforced Sapphirium Legplates","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,188,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"5":188,"11":228,"22":2998},"isBase":true}}}, +{"id":60348,"name":"Reinforced Sapphirium Pauldrons","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battleplate","setId":932,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":149,"7":169,"22":2570},"isBase":true}}}, +{"id":60349,"name":"Magma Plated Chestguard","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"10":168,"11":208,"22":3426},"isBase":true}}}, +{"id":60350,"name":"Magma Plated Handguards","icon":"inv_gauntlets_plate_raiddeathknight_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":149,"11":149,"22":2141},"isBase":true}}}, +{"id":60351,"name":"Magma Plated Faceguard","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":259,"2":512,"5":113,"9":281,"22":2784},"isBase":true}}}, +{"id":60352,"name":"Magma Plated Legguards","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"9":188,"10":228,"22":2998},"isBase":true}}}, +{"id":60353,"name":"Magma Plated Shoulderguards","icon":"inv_shoulder_plate_raiddeathknight_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[10],"setName":"Magma Plated Battlearmor","setId":926,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":193,"2":380,"5":128,"9":213,"22":2570},"isBase":true}}}, +{"id":60354,"name":"Reinforced Sapphirium Chestguard","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,168,208,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"10":168,"11":208,"22":3426},"isBase":true}}}, +{"id":60355,"name":"Reinforced Sapphirium Handguards","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,149,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":149,"11":149,"22":2141},"isBase":true}}}, +{"id":60356,"name":"Reinforced Sapphirium Faceguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[259,0,512,0,0,113,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":259,"2":512,"5":113,"9":281,"22":2784},"isBase":true}}}, +{"id":60357,"name":"Reinforced Sapphirium Legguards","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,0,0,0,0,188,228,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"9":188,"10":228,"22":2998},"isBase":true}}}, +{"id":60358,"name":"Reinforced Sapphirium Shoulderguards","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[193,0,380,0,0,128,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Battlearmor","setId":934,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":193,"2":380,"5":128,"9":213,"22":2570},"isBase":true}}}, +{"id":60359,"name":"Reinforced Sapphirium Headguard","icon":"inv_helmet_plate_raidpaladin_i_01","type":1,"armorType":4,"stats":[0,0,512,281,228,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":228,"6":168,"22":2784},"isBase":true}}}, +{"id":60360,"name":"Reinforced Sapphirium Breastplate","icon":"inv_chest_plate_raidpaladin_i_01","type":5,"armorType":4,"stats":[0,0,512,301,228,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":228,"11":188,"22":3426},"isBase":true}}}, +{"id":60361,"name":"Reinforced Sapphirium Greaves","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,512,301,213,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":213,"6":203,"22":2998},"isBase":true}}}, +{"id":60362,"name":"Reinforced Sapphirium Mantle","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[0,0,380,233,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"6":169,"22":2570},"isBase":true}}}, +{"id":60363,"name":"Reinforced Sapphirium Gloves","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[4],"setName":"Reinforced Sapphirium Regalia","setId":933,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":2141},"isBase":true}}}, +{"id":60403,"name":"Elementium Dragonling","icon":"inv_misc_head_dragon_bronze","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":60408,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":60409,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2098},"isBase":true}}}, +{"id":60410,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":60411,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":60412,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":60413,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":60414,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2098},"isBase":true}}}, +{"id":60415,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":60416,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":60417,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":60418,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":60419,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[218,0,357,0,158,138,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"4":158,"5":138,"16":95,"22":2098},"isBase":true}}}, +{"id":60420,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":60421,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":60422,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":60423,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":2373},"isBase":true}}}, +{"id":60424,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1483},"isBase":true}}}, +{"id":60425,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":60426,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":2076},"isBase":true}}}, +{"id":60427,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1779},"isBase":true}}}, +{"id":60428,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":2373},"isBase":true}}}, +{"id":60429,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":1483},"isBase":true}}}, +{"id":60430,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":60431,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2076},"isBase":true}}}, +{"id":60432,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1779},"isBase":true}}}, +{"id":60433,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":2373},"isBase":true}}}, +{"id":60434,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1483},"isBase":true}}}, +{"id":60435,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":60436,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":2076},"isBase":true}}}, +{"id":60437,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1779},"isBase":true}}}, +{"id":60438,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2373},"isBase":true}}}, +{"id":60439,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":1483},"isBase":true}}}, +{"id":60440,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":1928},"isBase":true}}}, +{"id":60441,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":2076},"isBase":true}}}, +{"id":60442,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":1779},"isBase":true}}}, +{"id":60443,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1010},"isBase":true}}}, +{"id":60444,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":60445,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":1414},"isBase":true}}}, +{"id":60446,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":1616},"isBase":true}}}, +{"id":60447,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1212},"isBase":true}}}, +{"id":60448,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":1010},"isBase":true}}}, +{"id":60449,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":60450,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1414},"isBase":true}}}, +{"id":60451,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":1616},"isBase":true}}}, +{"id":60452,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1212},"isBase":true}}}, +{"id":60453,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":1010},"isBase":true}}}, +{"id":60454,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":1313},"isBase":true}}}, +{"id":60455,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":1414},"isBase":true}}}, +{"id":60456,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1616},"isBase":true}}}, +{"id":60457,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":1212},"isBase":true}}}, +{"id":60458,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":1616},"isBase":true}}}, +{"id":60459,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1010},"isBase":true}}}, +{"id":60460,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":60461,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":1414},"isBase":true}}}, +{"id":60462,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1212},"isBase":true}}}, +{"id":60463,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"6":158,"16":95,"22":751},"isBase":true}}}, +{"id":60464,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":60465,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"11":213,"16":128,"22":1051},"isBase":true}}}, +{"id":60466,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":60467,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":901},"isBase":true}}}, +{"id":60468,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":751},"isBase":true}}}, +{"id":60469,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":60470,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1051},"isBase":true}}}, +{"id":60471,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":60472,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":901},"isBase":true}}}, +{"id":60473,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":751},"isBase":true}}}, +{"id":60474,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":976},"isBase":true}}}, +{"id":60475,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":1051},"isBase":true}}}, +{"id":60476,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":60477,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":901},"isBase":true}}}, +{"id":60478,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"6":158,"16":95,"22":751},"isBase":true}}}, +{"id":60479,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":60480,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"11":213,"16":128,"22":1051},"isBase":true}}}, +{"id":60481,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":60482,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":901},"isBase":true}}}, +{"id":60505,"name":"Vicious Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60506,"name":"Vicious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,357,218,0,0,138,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"7":158,"16":95,"22":2308},"isBase":true}}}, +{"id":60507,"name":"Vicious Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,267,178,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60508,"name":"Vicious Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[218,0,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":138,"11":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60509,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":138,"11":158,"16":95,"22":2308},"isBase":true}}}, +{"id":60510,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[178,0,267,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60512,"name":"Vicious Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[178,0,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"7":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60513,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":158,"7":138,"16":95,"22":2308},"isBase":true}}}, +{"id":60514,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[218,0,357,0,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":138,"11":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60515,"name":"Vicious Gladiator's Bracers of Salvation","icon":"inv_bracer_56","type":6,"armorType":4,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60516,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":2308},"isBase":true}}}, +{"id":60517,"name":"Vicious Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":1888},"isBase":true}}}, +{"id":60518,"name":"Vicious Gladiator's Girdle of Salvation","icon":"inv_belt_48b","type":8,"armorType":4,"stats":[0,0,357,218,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"11":138,"16":95,"22":1888},"isBase":true}}}, +{"id":60519,"name":"Vicious Gladiator's Greaves of Salvation","icon":"inv_boots_plate_11","type":10,"armorType":4,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":2308},"isBase":true}}}, +{"id":60520,"name":"Vicious Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60521,"name":"Vicious Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[218,0,357,0,0,138,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"7":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60522,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[218,0,357,0,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":158,"11":138,"16":95,"22":2308},"isBase":true}}}, +{"id":60523,"name":"Vicious Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[178,0,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"8":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60524,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[0,158,267,0,0,0,0,99,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":158,"2":267,"7":99,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60525,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2308},"isBase":true}}}, +{"id":60526,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"11":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60527,"name":"Vicious Gladiator's Girdle of Triumph","icon":"inv_belt_48c","type":8,"armorType":4,"stats":[218,0,357,0,0,0,158,0,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":158,"8":138,"16":95,"22":1888},"isBase":true}}}, +{"id":60528,"name":"Vicious Gladiator's Greaves of Triumph","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2308},"isBase":true}}}, +{"id":60529,"name":"Vicious Gladiator's Bracers of Triumph","icon":"inv_bracer_17","type":6,"armorType":4,"stats":[178,0,267,0,0,0,0,0,119,0,0,119,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"8":119,"11":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60533,"name":"Vicious Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,357,218,138,0,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"7":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60534,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1631},"isBase":true}}}, +{"id":60535,"name":"Vicious Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"6":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60536,"name":"Vicious Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60537,"name":"Vicious Gladiator's Sabatons of Dominance","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,357,218,0,0,138,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"7":158,"16":95,"22":1631},"isBase":true}}}, +{"id":60538,"name":"Vicious Gladiator's Wristguards of Dominance","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,267,178,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60539,"name":"Vicious Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,357,218,138,0,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1888,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"7":158,"16":95,"22":1888},"isBase":true}}}, +{"id":60540,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":2308},"isBase":true}}}, +{"id":60541,"name":"Vicious Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1469,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"6":119,"16":71,"22":1469},"isBase":true}}}, +{"id":60551,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,218,357,0,0,0,0,0,138,0,0,158,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"8":138,"11":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60552,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1631},"isBase":true}}}, +{"id":60553,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,178,267,0,0,0,0,0,119,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"8":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60554,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":1631},"isBase":true}}}, +{"id":60555,"name":"Vicious Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60556,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,178,267,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60557,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"7":138,"16":95,"22":1631},"isBase":true}}}, +{"id":60558,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,218,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"7":138,"16":95,"22":1335},"isBase":true}}}, +{"id":60559,"name":"Vicious Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,178,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"7":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60560,"name":"Vicious Gladiator's Wristguards of Triumph","icon":"inv_bracer_51","type":6,"armorType":3,"stats":[0,178,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60561,"name":"Vicious Gladiator's Waistguard of Triumph","icon":"inv_belt_72","type":8,"armorType":3,"stats":[0,218,357,0,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"11":138,"16":95,"22":1335},"isBase":true}}}, +{"id":60562,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,218,357,0,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"11":138,"16":95,"22":1631},"isBase":true}}}, +{"id":60563,"name":"Vicious Gladiator's Sabatons of Triumph","icon":"inv_boots_mail_08","type":10,"armorType":3,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1631},"isBase":true}}}, +{"id":60564,"name":"Vicious Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,218,357,0,0,138,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"7":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60565,"name":"Vicious Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,178,267,0,0,119,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"6":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60566,"name":"Vicious Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,357,218,138,0,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"7":158,"16":95,"22":1335},"isBase":true}}}, +{"id":60567,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":1631},"isBase":true}}}, +{"id":60568,"name":"Vicious Gladiator's Wristguards of Salvation","icon":"inv_bracer_32b","type":6,"armorType":3,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60569,"name":"Vicious Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":1038},"isBase":true}}}, +{"id":60570,"name":"Vicious Gladiator's Sabatons of Salvation","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,357,218,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"11":138,"16":95,"22":1631},"isBase":true}}}, +{"id":60571,"name":"Vicious Gladiator's Waistguard of Salvation","icon":"inv_belt_46","type":8,"armorType":3,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1335,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":1335},"isBase":true}}}, +{"id":60580,"name":"Vicious Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,357,218,138,0,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"7":158,"16":95,"22":909},"isBase":true}}}, +{"id":60581,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":60582,"name":"Vicious Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"6":119,"16":71,"22":707},"isBase":true}}}, +{"id":60583,"name":"Vicious Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":909},"isBase":true}}}, +{"id":60584,"name":"Vicious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":60585,"name":"Vicious Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,267,178,0,119,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"5":119,"6":119,"16":71,"22":707},"isBase":true}}}, +{"id":60586,"name":"Vicious Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":909},"isBase":true}}}, +{"id":60587,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":60588,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,178,254,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":254,"6":119,"7":119,"16":71,"22":707},"isBase":true}}}, +{"id":60589,"name":"Vicious Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":909},"isBase":true}}}, +{"id":60590,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,218,339,0,0,138,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"5":138,"7":158,"16":95,"22":1111},"isBase":true}}}, +{"id":60591,"name":"Vicious Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,178,267,0,0,119,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"6":119,"16":71,"22":707},"isBase":true}}}, +{"id":60592,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,218,339,0,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"7":138,"11":158,"16":95,"22":909},"isBase":true}}}, +{"id":60593,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"7":138,"16":95,"22":1111},"isBase":true}}}, +{"id":60594,"name":"Vicious Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,178,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"7":119,"11":119,"16":71,"22":707},"isBase":true}}}, +{"id":60595,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,218,339,0,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"6":158,"11":138,"16":95,"22":909},"isBase":true}}}, +{"id":60596,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,218,339,0,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"6":158,"11":138,"16":95,"22":1111},"isBase":true}}}, +{"id":60597,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,178,254,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":254,"6":119,"11":119,"16":71,"22":707},"isBase":true}}}, +{"id":60598,"name":"Vicious Gladiator's Armwraps of Triumph","icon":"inv_bracer_53","type":6,"armorType":2,"stats":[0,178,254,0,0,0,0,0,119,0,0,119,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":254,"8":119,"11":119,"16":71,"22":707},"isBase":true}}}, +{"id":60599,"name":"Vicious Gladiator's Boots of Triumph","icon":"inv_boots_cloth_29","type":10,"armorType":2,"stats":[0,218,339,0,0,0,0,0,138,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"8":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":60600,"name":"Vicious Gladiator's Belt of Triumph","icon":"inv_belt_74","type":8,"armorType":2,"stats":[0,218,339,0,0,0,158,0,138,0,0,0,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":339,"6":158,"8":138,"16":95,"22":909},"isBase":true}}}, +{"id":60601,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":60602,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":2098},"isBase":true}}}, +{"id":60603,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":60604,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2937},"isBase":true}}}, +{"id":60605,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":2517},"isBase":true}}}, +{"id":60606,"name":"Vicious Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":909},"isBase":true}}}, +{"id":60607,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":1111},"isBase":true}}}, +{"id":60608,"name":"Vicious Gladiator's Armwraps of Dominance","icon":"inv_bracer_57","type":6,"armorType":2,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":707},"isBase":true}}}, +{"id":60609,"name":"Vicious Gladiator's Belt of Dominance","icon":"inv_belt_46","type":8,"armorType":2,"stats":[0,0,357,218,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,909,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"11":138,"16":95,"22":909},"isBase":true}}}, +{"id":60610,"name":"Vicious Gladiator's Boots of Dominance","icon":"inv_boots_cloth_05","type":10,"armorType":2,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":1111},"isBase":true}}}, +{"id":60611,"name":"Vicious Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,707,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":707},"isBase":true}}}, +{"id":60612,"name":"Vicious Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":676},"isBase":true}}}, +{"id":60613,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":826},"isBase":true}}}, +{"id":60614,"name":"Vicious Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,267,178,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"11":119,"16":71,"22":526},"isBase":true}}}, +{"id":60626,"name":"Vicious Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,357,218,0,138,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"7":158,"16":95,"22":676},"isBase":true}}}, +{"id":60627,"name":"Vicious Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"11":158,"16":95,"22":826},"isBase":true}}}, +{"id":60628,"name":"Vicious Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,267,178,0,119,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"5":119,"6":119,"16":71,"22":526},"isBase":true}}}, +{"id":60629,"name":"Vicious Gladiator's Cuffs of Dominance","icon":"inv_bracer_50","type":6,"armorType":1,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":526},"isBase":true}}}, +{"id":60630,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":826},"isBase":true}}}, +{"id":60631,"name":"Vicious Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":676},"isBase":true}}}, +{"id":60632,"name":"Vicious Gladiator's Cord of Dominance","icon":"inv_belt_70","type":8,"armorType":1,"stats":[0,0,357,218,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"11":138,"16":95,"22":676},"isBase":true}}}, +{"id":60633,"name":"Vicious Gladiator's Treads of Dominance","icon":"inv_boots_cloth_28","type":10,"armorType":1,"stats":[0,0,357,218,0,0,158,0,0,0,0,138,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"11":138,"16":95,"22":826},"isBase":true}}}, +{"id":60634,"name":"Vicious Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":526},"isBase":true}}}, +{"id":60635,"name":"Vicious Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,526,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"6":119,"16":71,"22":526},"isBase":true}}}, +{"id":60636,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":826},"isBase":true}}}, +{"id":60637,"name":"Vicious Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,357,218,138,0,0,158,0,0,0,0,0,0,0,0,95,0,0,0,0,0,676,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"7":158,"16":95,"22":676},"isBase":true}}}, +{"id":60645,"name":"Vicious Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,267,178,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"11":119,"16":71},"isBase":true}}}, +{"id":60646,"name":"Vicious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,267,178,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60647,"name":"Vicious Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,267,178,0,119,0,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"5":119,"7":119,"16":71},"isBase":true}}}, +{"id":60648,"name":"Vicious Gladiator's Band of Dominance","icon":"inv_jewelry_ring_60","type":11,"stats":[0,0,267,178,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"11":119,"16":71},"isBase":true}}}, +{"id":60649,"name":"Vicious Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,267,178,119,0,0,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"7":119,"16":71},"isBase":true}}}, +{"id":60650,"name":"Vicious Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[178,0,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60651,"name":"Vicious Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[178,0,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"5":119,"11":119,"16":71},"isBase":true}}}, +{"id":60652,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[178,0,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60653,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[178,0,267,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"11":119,"16":71},"isBase":true}}}, +{"id":60654,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[178,0,267,0,0,0,0,119,119,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"7":119,"8":119,"16":71},"isBase":true}}}, +{"id":60655,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,178,267,0,0,0,0,0,119,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"8":119,"11":119,"16":71},"isBase":true}}}, +{"id":60656,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,178,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60657,"name":"Vicious Gladiator's Band of Triumph","icon":"inv_jewelry_ring_60","type":11,"stats":[0,178,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60658,"name":"Vicious Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,178,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"11":119,"16":71},"isBase":true}}}, +{"id":60659,"name":"Vicious Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,178,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60660,"name":"Vicious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,267,178,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60661,"name":"Vicious Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,267,178,0,0,178,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":178,"11":119,"16":71},"isBase":true}}}, +{"id":60662,"name":"Vicious Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60663,"name":"Vicious Gladiator's Pendant of Dominance","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60664,"name":"Vicious Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,267,178,119,0,0,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"7":119,"16":71},"isBase":true}}}, +{"id":60665,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,178,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"8":119,"16":71},"isBase":true}}}, +{"id":60666,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,178,267,0,0,119,0,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"7":119,"16":71},"isBase":true}}}, +{"id":60667,"name":"Vicious Gladiator's Pendant of Conquest","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,178,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60668,"name":"Vicious Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,178,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60669,"name":"Vicious Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,178,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"8":119,"16":71},"isBase":true}}}, +{"id":60670,"name":"Vicious Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[178,0,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"8":119,"16":71},"isBase":true}}}, +{"id":60671,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[178,0,267,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"11":119,"16":71},"isBase":true}}}, +{"id":60672,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[178,0,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60673,"name":"Vicious Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_45","type":2,"stats":[178,0,267,0,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"7":119,"11":119,"16":71},"isBase":true}}}, +{"id":60674,"name":"Vicious Gladiator's Pendant of Victory","icon":"inv_jewelry_necklace_45","type":2,"stats":[178,0,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"7":119,"16":71},"isBase":true}}}, +{"id":60774,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[178,0,267,0,0,0,119,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60775,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[178,0,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"5":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60776,"name":"Vicious Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[178,0,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60777,"name":"Vicious Gladiator's Cloak of Victory","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[178,0,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"6":119,"8":119,"16":71,"22":601},"isBase":true}}}, +{"id":60778,"name":"Vicious Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[178,0,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"0":178,"2":267,"5":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60779,"name":"Vicious Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,178,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60780,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,178,267,0,0,0,119,0,119,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"8":119,"16":71,"22":601},"isBase":true}}}, +{"id":60781,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,178,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60782,"name":"Vicious Gladiator's Cloak of Conquest","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,178,267,0,0,119,0,0,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"5":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60783,"name":"Vicious Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,178,267,0,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"1":178,"2":267,"6":119,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60784,"name":"Vicious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,267,178,0,0,119,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":119,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60785,"name":"Vicious Gladiator's Cloak of Dominance","icon":"inv_misc_cape_20","type":4,"armorType":1,"stats":[0,0,267,178,0,119,0,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"5":119,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60786,"name":"Vicious Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,267,178,0,0,178,119,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"6":178,"7":119,"16":71,"22":601},"isBase":true}}}, +{"id":60787,"name":"Vicious Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,267,178,0,0,0,119,0,0,0,119,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"7":119,"11":119,"16":71,"22":601},"isBase":true}}}, +{"id":60788,"name":"Vicious Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,601,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":339,"ilvl":352,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"352":{"randPropPoints":339,"stats":{"2":267,"3":178,"4":119,"6":119,"16":71,"22":601},"isBase":true}}}, +{"id":60794,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":60795,"name":"Vicious Gladiator's Medallion of Accuracy","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"5":301,"16":95},"isBase":true}}}, +{"id":60796,"name":"Vicious Gladiator's Medallion of Alacrity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"7":301,"16":95},"isBase":true}}}, +{"id":60797,"name":"Vicious Gladiator's Medallion of Prowess","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":60798,"name":"Vicious Gladiator's Medallion of Command","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"8":301,"16":95},"isBase":true}}}, +{"id":60799,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"4":301,"16":95},"isBase":true}}}, +{"id":60800,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":60801,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":60802,"name":"Vicious Gladiator's Medallion of Accuracy","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"5":301,"16":95},"isBase":true}}}, +{"id":60803,"name":"Vicious Gladiator's Medallion of Alacrity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"7":301,"16":95},"isBase":true}}}, +{"id":60804,"name":"Vicious Gladiator's Medallion of Prowess","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":60805,"name":"Vicious Gladiator's Medallion of Command","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"8":301,"16":95},"isBase":true}}}, +{"id":60806,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"4":301,"16":95},"isBase":true}}}, +{"id":60807,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":60993,"name":"Art Template Cloth Boot - Robe_Common_B_02 - Purple","icon":"inv_boots_cloth_35v4","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":377},"isBase":true}}}, +{"id":60994,"name":"Art Template Cloth Shoulder - Robe_Common_B_02 - Purple","icon":"inv_shoulder_146v4","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":411},"isBase":true}}}, +{"id":60995,"name":"Art Template Cloth Wrist - Robe_Common_B_02 - Purple","icon":"inv_bracer_76v4","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":240},"isBase":true}}}, +{"id":60996,"name":"Art Template Cloth Robe - Robe_Common_B_02 - Purple","icon":"inv_chest_cloth_88v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":60997,"name":"Art Template Cloth Hand - Robe_Common_B_02 - Purple","icon":"inv_gauntlets_118v4","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":342},"isBase":true}}}, +{"id":60998,"name":"Art Template Cloth Head - Robe_Common_B_02 - Purple","icon":"inv_helmet_186v4","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":445},"isBase":true}}}, +{"id":60999,"name":"Art Template Cloth Legs - Robe_Common_B_02 - Purple","icon":"inv_pants_cloth_42v4","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":479},"isBase":true}}}, +{"id":61000,"name":"Art Template Cloth Chest - Robe_Common_B_02 - Purple","icon":"inv_chest_cloth_88v4","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":61001,"name":"Art Template Cloth Belt - Robe_Common_B_02 - Purple","icon":"inv_belt_97v4","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":308},"isBase":true}}}, +{"id":61003,"name":"Art Template Cloth Boot - Robe_Common_B_02 - Red","icon":"inv_boots_cloth_35v2","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":377},"isBase":true}}}, +{"id":61004,"name":"Art Template Cloth Shoulder - Robe_Common_B_02 - Red","icon":"inv_shoulder_146v2","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":411},"isBase":true}}}, +{"id":61005,"name":"Art Template Cloth Wrist - Robe_Common_B_02 - Red","icon":"inv_bracer_76v2","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":240},"isBase":true}}}, +{"id":61006,"name":"Art Template Cloth Robe - Robe_Common_B_02 - Red","icon":"inv_chest_cloth_88v2","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":61007,"name":"Art Template Cloth Hand - Robe_Common_B_02 - Red","icon":"inv_gauntlets_118v2","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":342},"isBase":true}}}, +{"id":61008,"name":"Art Template Cloth Head - Robe_Common_B_02 - Red","icon":"inv_helmet_186v2","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":445},"isBase":true}}}, +{"id":61009,"name":"Art Template Cloth Legs - Robe_Common_B_02 - Red","icon":"inv_pants_cloth_42v2","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":479},"isBase":true}}}, +{"id":61010,"name":"Art Template Cloth Chest - Robe_Common_B_02 - Red","icon":"inv_chest_cloth_88v2","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":61011,"name":"Art Template Cloth Belt - Robe_Common_B_02 - Red","icon":"inv_belt_97v2","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":308},"isBase":true}}}, +{"id":61012,"name":"Art Template Cloth Belt - Robe_Common_B_02 - Teal","icon":"inv_belt_97v3","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":308},"isBase":true}}}, +{"id":61013,"name":"Art Template Cloth Chest - Robe_Common_B_02 - Teal","icon":"inv_chest_cloth_88v3","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":61014,"name":"Art Template Cloth Legs - Robe_Common_B_02 - Teal","icon":"inv_pants_cloth_42v3","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":479},"isBase":true}}}, +{"id":61015,"name":"Art Template Cloth Head - Robe_Common_B_02 - Teal","icon":"inv_helmet_186v3","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,445,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":445},"isBase":true}}}, +{"id":61016,"name":"Art Template Cloth Hand - Robe_Common_B_02 - Teal","icon":"inv_gauntlets_118v3","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,342,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":342},"isBase":true}}}, +{"id":61017,"name":"Art Template Cloth Robe - Robe_Common_B_02 - Teal","icon":"inv_chest_cloth_88v3","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":104,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":104,"stats":{"22":548},"isBase":true}}}, +{"id":61018,"name":"Art Template Cloth Wrist - Robe_Common_B_02 - Teal","icon":"inv_bracer_76v3","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":58,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":58,"stats":{"22":240},"isBase":true}}}, +{"id":61019,"name":"Art Template Cloth Shoulder - Robe_Common_B_02 - Teal","icon":"inv_shoulder_146v3","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,411,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":411},"isBase":true}}}, +{"id":61020,"name":"Art Template Cloth Boot - Robe_Common_B_02 - Teal","icon":"inv_boots_cloth_35v3","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,377,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":78,"ilvl":178,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"178":{"randPropPoints":78,"stats":{"22":377},"isBase":true}}}, +{"id":61026,"name":"Vicious Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":61027,"name":"Vicious Gladiator's Emblem of Accuracy","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"5":301,"16":95},"isBase":true}}}, +{"id":61028,"name":"Vicious Gladiator's Emblem of Alacrity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"7":301,"16":95},"isBase":true}}}, +{"id":61029,"name":"Vicious Gladiator's Emblem of Prowess","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":61030,"name":"Vicious Gladiator's Emblem of Proficiency","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,301,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"8":301,"16":95},"isBase":true}}}, +{"id":61031,"name":"Vicious Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"4":301,"16":95},"isBase":true}}}, +{"id":61032,"name":"Vicious Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":61033,"name":"Vicious Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":301,"16":95},"isBase":true}}}, +{"id":61034,"name":"Vicious Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":301,"16":95},"isBase":true}}}, +{"id":61035,"name":"Vicious Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"3":301,"16":95},"isBase":true}}}, +{"id":61045,"name":"Vicious Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"3":301,"16":95},"isBase":true}}}, +{"id":61046,"name":"Vicious Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":301,"16":95},"isBase":true}}}, +{"id":61047,"name":"Vicious Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":301,"16":95},"isBase":true}}}, +{"id":61324,"name":"Vicious Gladiator's Cleaver","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61325,"name":"Vicious Gladiator's Hacker","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61326,"name":"Vicious Gladiator's Decapitator","icon":"inv_axe_2h_pvp400_c_01","type":13,"weaponType":1,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61327,"name":"Vicious Gladiator's Shanker","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61328,"name":"Vicious Gladiator's Shiv","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":3,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61329,"name":"Vicious Gladiator's Spellblade","icon":"inv_knife_1h_pvp400_c_01","type":13,"weaponType":2,"handType":2,"stats":[0,0,219,146,0,0,97,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"stats":{"2":219,"3":146,"6":97,"14":1954,"16":97},"isBase":true}}}, +{"id":61330,"name":"Vicious Gladiator's Ripper","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61331,"name":"Vicious Gladiator's Fleshslicer","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61332,"name":"Vicious Gladiator's Slasher","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61333,"name":"Vicious Gladiator's Right Render","icon":"inv_hand_1h_pvp400_c_01","type":13,"weaponType":3,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61335,"name":"Vicious Gladiator's Pummeler","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61336,"name":"Vicious Gladiator's Bonecracker","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61338,"name":"Vicious Gladiator's Gavel","icon":"inv_mace_1h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,0,0,97,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"stats":{"2":219,"3":146,"6":97,"14":1954,"16":97},"isBase":true}}}, +{"id":61339,"name":"Vicious Gladiator's Bonegrinder","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61340,"name":"Vicious Gladiator's Pike","icon":"inv_polearm_2h_pvp400_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"1":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61341,"name":"Vicious Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,228,0,0,0,0,0,0,0,1955,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":997,"weaponDamageMax":1496,"weaponSpeed":2,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":997,"weaponDamageMax":1496,"stats":{"2":512,"3":341,"6":228,"14":1955,"16":228},"isBase":true}}}, +{"id":61342,"name":"Vicious Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,228,0,0,0,0,0,0,0,0,0,1955,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":997,"weaponDamageMax":1496,"weaponSpeed":2,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":997,"weaponDamageMax":1496,"stats":{"2":512,"3":341,"4":228,"14":1955,"16":228},"isBase":true}}}, +{"id":61343,"name":"Vicious Gladiator's Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1994,"weaponDamageMax":2992,"weaponSpeed":2,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1994,"weaponDamageMax":2992,"stats":{"1":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61344,"name":"Vicious Gladiator's Slicer","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1923,"weaponDamageMax":2885,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1923,"weaponDamageMax":2885,"stats":{"0":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61345,"name":"Vicious Gladiator's Quickblade","icon":"inv_sword_161","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"16":97},"isBase":true}}}, +{"id":61346,"name":"Vicious Gladiator's Greatsword","icon":"inv_sword_2h_pvp400_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61350,"name":"Vicious Gladiator's Touch of Defeat","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,0,0,97,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":614,"weaponDamageMax":1142,"weaponSpeed":1.9,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":614,"weaponDamageMax":1142,"stats":{"2":219,"3":146,"6":97,"14":1954,"16":97},"isBase":true}}}, +{"id":61351,"name":"Vicious Gladiator's Baton of Light","icon":"inv_wand_1h_pvp400_c_01","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,97,0,0,0,0,0,0,0,0,0,1954,0,97,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":614,"weaponDamageMax":1142,"weaponSpeed":1.9,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":614,"weaponDamageMax":1142,"stats":{"2":219,"3":146,"4":97,"14":1954,"16":97},"isBase":true}}}, +{"id":61353,"name":"Vicious Gladiator's Longbow","icon":"inv_bow_1h_pvp400_c_01","type":14,"rangedWeaponType":1,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61354,"name":"Vicious Gladiator's Rifle","icon":"firearm_2h_rifle_pvp400_c_01","type":14,"rangedWeaponType":3,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61355,"name":"Vicious Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_39","type":14,"rangedWeaponType":2,"stats":[0,341,512,0,0,0,228,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"16":228},"isBase":true}}}, +{"id":61357,"name":"Vicious Gladiator's Endgame","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"16":127},"isBase":true}}}, +{"id":61358,"name":"Vicious Gladiator's Reprieve","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"16":127},"isBase":true}}}, +{"id":61359,"name":"Vicious Gladiator's Shield Wall","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"16":127,"22":11896},"isBase":true}}}, +{"id":61360,"name":"Vicious Gladiator's Barrier","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,127,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"16":127,"22":11896},"isBase":true}}}, +{"id":61361,"name":"Vicious Gladiator's Redoubt","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"16":127,"22":11896},"isBase":true}}}, +{"id":61395,"name":"Shoulderpads of Reconstruction","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,173,260,0,0,0,0,124,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":124,"11":101,"22":1587},"isBase":true}}}, +{"id":61396,"name":"Leggings of Fragmented Hope","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,233,349,0,0,177,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":177,"11":118,"22":1294},"isBase":true}}}, +{"id":61397,"name":"Pillarbind Waistguard","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,260,173,0,0,0,115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"7":115,"11":115,"22":634},"isBase":true}}}, +{"id":61398,"name":"Axe of Earthly Sundering","icon":"inv_axe_2h_cataclysm_b_02","type":13,"weaponType":1,"handType":4,"stats":[233,0,349,0,0,0,160,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":2246,"weaponDamageMax":3369,"weaponSpeed":3.3,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":2246,"weaponDamageMax":3369,"stats":{"0":233,"2":349,"6":160,"11":148},"isBase":true}}}, +{"id":61400,"name":"Size-Cutting Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[0,0,173,115,77,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"2":173,"3":115,"4":77,"7":77,"22":1221},"isBase":true}}}, +{"id":61402,"name":"Riftrent Waraxe","icon":"inv_axe_1h_cataclysm_b_02","type":13,"weaponType":1,"handType":2,"stats":[100,0,150,0,0,67,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"stats":{"0":100,"2":150,"5":67,"11":67},"isBase":true}}}, +{"id":61403,"name":"Spire of Defiance","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,349,233,0,151,0,0,0,0,0,158,0,0,1334,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1123,"weaponDamageMax":1685,"weaponSpeed":3.3,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1123,"weaponDamageMax":1685,"stats":{"2":349,"3":233,"5":151,"11":158,"14":1334},"isBase":true}}}, +{"id":61404,"name":"Blacksoul Polearm","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,233,349,0,0,0,0,158,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1786,"weaponDamageMax":3318,"weaponSpeed":3,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1786,"weaponDamageMax":3318,"stats":{"1":233,"2":349,"7":158,"11":151},"isBase":true}}}, +{"id":61405,"name":"Dimension Spike","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,0,73,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"weaponSpeed":1.8,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"stats":{"1":100,"2":150,"6":73,"7":55},"isBase":true}}}, +{"id":61406,"name":"Stonerender Drape","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[115,0,173,0,0,0,0,0,0,78,0,75,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"0":115,"2":173,"9":78,"11":75,"22":557},"isBase":true}}}, +{"id":61407,"name":"Rune-Scribed Gauntlets","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[0,0,230,153,102,0,0,0,0,0,0,102,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"4":102,"11":102,"22":1744},"isBase":true}}}, +{"id":61408,"name":"Lorthuna's Broken Shackles","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,0,173,115,66,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,887,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"2":173,"3":115,"4":66,"6":83,"22":887},"isBase":true}}}, +{"id":61409,"name":"Therazane's Seal","icon":"inv_misc_moodring2","type":11,"stats":[115,0,173,0,0,0,79,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"0":115,"2":173,"6":79,"8":73},"isBase":true}}}, +{"id":61410,"name":"Clutch of the Stonemother","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,206,309,0,0,145,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1438,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"1":206,"2":309,"5":145,"6":124,"22":1438},"isBase":true}}}, +{"id":61411,"name":"Stonemother's Kiss","icon":"inv_misc_gem_ruby_01","type":12,"stats":[0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"3":194},"isBase":true}}}, +{"id":61412,"name":"Fungus-Stained Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,175,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"7":175,"11":122,"22":2575},"isBase":true}}}, +{"id":61413,"name":"Mushroom Stompers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,260,173,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":115,"7":115,"22":775},"isBase":true}}}, +{"id":61414,"name":"Sporeshot","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,233,349,0,0,0,175,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"weaponSpeed":2.8,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"stats":{"1":233,"2":349,"6":175,"11":122},"isBase":true}}}, +{"id":61415,"name":"Cloak of Fungal Growth","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[115,0,173,0,0,0,60,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,557,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"0":115,"2":173,"6":60,"11":87,"22":557},"isBase":true}}}, +{"id":61416,"name":"Girdle of Bolete Explosion","icon":"inv_belt_100","type":8,"armorType":4,"stats":[0,0,230,153,0,0,0,90,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"7":90,"11":109,"22":1570},"isBase":true}}}, +{"id":61417,"name":"Spore-Soaked Leggings","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,309,206,124,0,0,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1258,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":124,"11":145,"22":1258},"isBase":true}}}, +{"id":61418,"name":"Terrath's Rocky Spaulders","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[153,0,230,0,0,0,0,0,0,99,104,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"0":153,"2":230,"9":99,"10":104,"22":2093},"isBase":true}}}, +{"id":61419,"name":"Stonescale Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,309,206,149,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1113,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":149,"11":117,"22":1113},"isBase":true}}}, +{"id":61420,"name":"Dragonsaw Boneblade","icon":"inv_sword_1h_cataclysm_b_02","type":13,"weaponType":9,"handType":2,"stats":[0,88,133,0,0,0,52,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":168,"weaponDamageMin":1017,"weaponDamageMax":1890,"weaponSpeed":2.6,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":168,"weaponDamageMin":1017,"weaponDamageMax":1890,"stats":{"1":88,"2":133,"6":52,"11":63},"isBase":true}}}, +{"id":61421,"name":"Petrified Stone Bracers","icon":"inv_bracer_79","type":6,"armorType":4,"stats":[115,0,173,0,0,0,73,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,1221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"0":115,"2":173,"6":73,"8":79,"22":1221},"isBase":true}}}, +{"id":61422,"name":"Basilisk Eye Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,133,88,0,0,0,62,0,0,0,53,0,0,1181,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":168,"weaponDamageMin":313,"weaponDamageMax":581,"weaponSpeed":1.6,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":168,"weaponDamageMin":313,"weaponDamageMax":581,"stats":{"2":133,"3":88,"7":62,"11":53,"14":1181},"isBase":true}}}, +{"id":61423,"name":"Brightpolish Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,173,115,0,0,75,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"2":173,"3":115,"6":75,"7":78,"22":9564},"isBase":true}}}, +{"id":61424,"name":"Geodecrack Shoulderguards","icon":"inv_shoulder_149","type":3,"armorType":4,"stats":[153,0,230,0,0,102,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2093,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"0":153,"2":230,"5":102,"7":102,"22":2093},"isBase":true}}}, +{"id":61425,"name":"Bracers of the Energetic Elemental","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,173,115,60,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"2":173,"3":115,"4":60,"11":87,"22":487},"isBase":true}}}, +{"id":61426,"name":"Crystalmuncher Necklace","icon":"inv_misc_necklacea4","type":2,"stats":[0,115,173,0,0,0,0,88,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"1":115,"2":173,"7":88,"11":58},"isBase":true}}}, +{"id":61427,"name":"Gyreworm Waistguard","icon":"inv_belt_100","type":8,"armorType":4,"stats":[153,0,230,0,0,0,0,0,0,99,0,104,0,0,0,0,0,0,0,0,0,0,1570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"0":153,"2":230,"9":99,"11":104,"22":1570},"isBase":true}}}, +{"id":61428,"name":"Helm of the Wormslayer","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,206,309,0,0,147,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"1":206,"2":309,"5":147,"7":121,"22":1647},"isBase":true}}}, +{"id":61429,"name":"Insignia of the Earthen Lord","icon":"inv_stone_sharpeningstone_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"11":194},"isBase":true}}}, +{"id":61430,"name":"Stonebound Legplates","icon":"inv_pants_plate_26","type":9,"armorType":4,"stats":[0,0,309,206,145,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":145,"6":124,"22":2442},"isBase":true}}}, +{"id":61431,"name":"Giantbutcher's Discarded Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,0,230,153,85,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1520,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"4":85,"7":112,"22":1520},"isBase":true}}}, +{"id":61432,"name":"Bloodcult Handwraps","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,153,230,0,0,0,0,0,94,0,0,107,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"1":153,"2":230,"8":94,"11":107,"22":899},"isBase":true}}}, +{"id":61433,"name":"Insignia of Diplomacy","icon":"inv_misc_coin_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"10":194},"isBase":true}}}, +{"id":61434,"name":"Firm Grips","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,230,153,0,0,85,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,899,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"6":85,"11":112,"22":899},"isBase":true}}}, +{"id":61435,"name":"Trustworthy Cowl","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,309,206,117,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,904,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":117,"6":149,"22":904},"isBase":true}}}, +{"id":61436,"name":"Gateshattering Hauberk","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[233,0,349,0,0,0,0,0,0,0,155,155,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"10":155,"11":155,"22":2943},"isBase":true}}}, +{"id":61438,"name":"Starscraper Signet","icon":"inv_misc_starring3","type":11,"stats":[0,0,195,130,0,94,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":94,"7":74},"isBase":true}}}, +{"id":61439,"name":"Gateshattering Hauberk","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[233,0,349,0,0,0,0,0,0,0,155,155,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"10":155,"11":155,"22":2943},"isBase":true}}}, +{"id":61441,"name":"Starscraper Signet","icon":"inv_misc_starring3","type":11,"stats":[0,0,195,130,0,94,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":94,"7":74},"isBase":true}}}, +{"id":61442,"name":"Tonguecarver Greathelm","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,309,206,137,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":137,"7":137,"22":2268},"isBase":true}}}, +{"id":61443,"name":"Silencer's Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,153,230,0,0,0,112,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"1":153,"2":230,"6":112,"11":85,"22":1267},"isBase":true}}}, +{"id":61444,"name":"Bondshatter Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,230,153,0,0,99,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"6":99,"11":104,"22":835},"isBase":true}}}, +{"id":61445,"name":"Helm of Silenced Blathering","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[0,0,309,206,137,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"4":137,"7":137,"22":2268},"isBase":true}}}, +{"id":61446,"name":"Kaulslayer Grips","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,153,230,0,0,0,112,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1267,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"1":153,"2":230,"6":112,"11":85,"22":1267},"isBase":true}}}, +{"id":61447,"name":"Wardfire Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,230,153,0,0,99,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,835,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"6":99,"11":104,"22":835},"isBase":true}}}, +{"id":61448,"name":"Oremantle's Favor","icon":"inv_stone_weightstone_01","type":12,"stats":[194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"0":194},"isBase":true}}}, +{"id":61449,"name":"Liberator's Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,0,230,153,0,0,0,99,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1140,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"7":99,"11":104,"22":1140},"isBase":true}}}, +{"id":61450,"name":"Shattered Bond Treads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,230,153,82,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,988,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"4":82,"7":114,"22":988},"isBase":true}}}, +{"id":61451,"name":"Troggbane Chestguard","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,206,309,0,0,0,0,137,0,0,0,137,0,0,0,0,0,0,0,0,0,0,2027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"1":206,"2":309,"7":137,"11":137,"22":2027},"isBase":true}}}, +{"id":61452,"name":"Troggbreaker Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,153,230,0,0,0,107,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,1078,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"1":153,"2":230,"6":107,"11":94,"22":1078},"isBase":true}}}, +{"id":61453,"name":"Gloves of Troggslaying","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,230,153,0,78,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,696,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"2":230,"3":153,"5":78,"7":116,"22":696},"isBase":true}}}, +{"id":61454,"name":"Catapult Loader's Gloves","icon":"inv_gauntlets_122","type":7,"armorType":4,"stats":[153,0,230,0,0,116,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1744,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":291,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":291,"stats":{"0":153,"2":230,"5":116,"6":78,"22":1744},"isBase":true}}}, +{"id":61455,"name":"Earthen Embrace","icon":"inv_chest_mail_21","type":5,"armorType":3,"stats":[0,0,309,206,0,0,140,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2027,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"6":140,"7":134,"22":2027},"isBase":true}}}, +{"id":61456,"name":"Broken Emergency Brake","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,173,115,0,0,83,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":219,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":219,"stats":{"2":173,"3":115,"6":83,"7":66},"isBase":true}}}, +{"id":61457,"name":"Troggzor's Crystalline Plate","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[0,0,309,206,0,0,114,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,2791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"6":114,"11":151,"22":2791},"isBase":true}}}, +{"id":61458,"name":"Helm of Earthination","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,206,309,0,0,0,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1168,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"1":206,"2":309,"6":137,"7":137,"22":1168},"isBase":true}}}, +{"id":61459,"name":"Earthinating Peasant Leggings","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,309,206,0,114,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":392,"ilvl":305,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"305":{"randPropPoints":392,"stats":{"2":309,"3":206,"5":114,"6":151,"22":974},"isBase":true}}}, +{"id":61460,"name":"Catapult Loading Scoop","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[99,0,148,0,0,0,0,0,0,0,52,74,0,0,0,0,0,0,0,0,0,0,8736,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"0":99,"2":148,"10":52,"11":74,"22":8736},"isBase":true}}}, +{"id":61461,"name":"Re-Wound Cogspring","icon":"inv_misc_gear_03","type":2,"stats":[0,0,148,99,0,0,72,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"2":148,"3":99,"6":72,"7":56},"isBase":true}}}, +{"id":61462,"name":"Gear Detector","icon":"inv_gizmo_08","type":12,"stats":[0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":167},"isBase":true}}}, +{"id":61463,"name":"Earthswell Belt","icon":"inv_belt_100","type":8,"armorType":4,"stats":[132,0,198,0,0,0,100,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,1471,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"6":100,"11":67,"22":1471},"isBase":true}}}, +{"id":61464,"name":"Rockslide Treads","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,132,198,0,0,0,93,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":132,"2":198,"6":93,"7":79,"22":1322},"isBase":true}}}, +{"id":61465,"name":"Geomancer's Mace","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,114,76,0,0,50,52,0,0,0,0,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":145,"weaponDamageMin":274,"weaponDamageMax":509,"weaponSpeed":1.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":274,"weaponDamageMax":509,"stats":{"2":114,"3":76,"6":50,"7":52,"14":1019},"isBase":true}}}, +{"id":61466,"name":"Bell-Ringer's Skullcap","icon":"inv_helmet_189","type":1,"armorType":4,"stats":[178,0,267,0,0,0,107,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,2125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"0":178,"2":267,"6":107,"11":125,"22":2125},"isBase":true}}}, +{"id":61467,"name":"Flayer-Crush Boots","icon":"inv_boots_mail_16","type":10,"armorType":3,"stats":[0,0,198,132,0,0,67,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,1322,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"6":67,"11":100,"22":1322},"isBase":true}}}, +{"id":61468,"name":"Legs of Ringing Echoes","icon":"inv_pants_cloth_cataclysm_b_01","type":9,"armorType":1,"stats":[0,0,267,178,120,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,959,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"4":120,"6":116,"22":959},"isBase":true}}}, +{"id":61469,"name":"Flashburn Girdle","icon":"inv_belt_101","type":8,"armorType":3,"stats":[0,132,198,0,0,100,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":132,"2":198,"5":100,"7":67,"22":1081},"isBase":true}}}, +{"id":61470,"name":"Burning Bind Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,148,99,66,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"2":148,"3":99,"4":66,"11":66,"22":608},"isBase":true}}}, +{"id":61471,"name":"Wound-Cauterizing Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,198,132,97,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"4":97,"7":73,"22":822},"isBase":true}}}, +{"id":61472,"name":"Amulet of Reconstruction","icon":"inv_misc_necklacea7","type":2,"stats":[130,0,195,0,0,0,82,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"6":82,"7":89},"isBase":true}}}, +{"id":61473,"name":"Stonebinder's Cloak","icon":"inv_misc_cape_23","type":4,"armorType":1,"stats":[0,0,195,130,0,0,0,98,0,0,0,68,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"7":98,"11":68,"22":564},"isBase":true}}}, +{"id":61474,"name":"Worldbinder Signet","icon":"inv_misc_vinering","type":11,"stats":[0,130,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"6":72,"11":95},"isBase":true}}}, +{"id":61475,"name":"Soulbind Choker","icon":"inv_jewelry_necklace_47","type":2,"stats":[99,0,148,0,0,0,0,0,64,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"0":99,"2":148,"8":64,"9":67},"isBase":true}}}, +{"id":61476,"name":"Trapspring Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,0,267,178,120,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"4":120,"11":116,"22":1682},"isBase":true}}}, +{"id":61477,"name":"Bait-Stained Drape","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,99,148,0,0,56,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"1":99,"2":148,"5":56,"7":72,"22":548},"isBase":true}}}, +{"id":61478,"name":"Energon Greatmace","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[178,0,267,0,0,0,0,96,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponDamageMin":1714,"weaponDamageMax":2572,"weaponSpeed":3.3,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1714,"weaponDamageMax":2572,"stats":{"0":178,"2":267,"7":96,"8":132},"isBase":true}}}, +{"id":61479,"name":"Ballast-Laden Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,132,198,0,0,0,86,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":132,"2":198,"6":86,"11":89,"22":955},"isBase":true}}}, +{"id":61480,"name":"Sparklight Robes","icon":"inv_chest_cloth_cataclysm_b_01","type":5,"armorType":1,"stats":[0,0,267,178,0,124,0,0,0,0,0,110,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"5":124,"11":110,"22":1095},"isBase":true}}}, +{"id":61481,"name":"Mercury Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[132,0,198,0,0,98,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"5":98,"10":71,"22":1798},"isBase":true}}}, +{"id":61482,"name":"Rippling Ooze Chestguard","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,267,178,104,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"4":104,"7":127,"22":1389},"isBase":true}}}, +{"id":61483,"name":"Quicksilver Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_02","type":14,"rangedWeaponType":2,"stats":[0,178,267,0,0,122,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponDamageMin":1272,"weaponDamageMax":2364,"weaponSpeed":2.8,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":1272,"weaponDamageMax":2364,"stats":{"1":178,"2":267,"5":122,"7":113},"isBase":true}}}, +{"id":61484,"name":"Midnight Service Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[0,0,198,132,67,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"4":67,"6":100,"22":1798},"isBase":true}}}, +{"id":61485,"name":"Box-Frame Spaulders","icon":"inv_shoulder_150","type":3,"armorType":3,"stats":[0,132,198,0,0,0,88,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1442,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":132,"2":198,"6":88,"11":88,"22":1442},"isBase":true}}}, +{"id":61486,"name":"Breathpipe","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,267,178,0,0,124,110,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponDamageMin":857,"weaponDamageMax":1286,"weaponSpeed":3.3,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":857,"weaponDamageMax":1286,"stats":{"2":267,"3":178,"6":124,"7":110,"14":1018},"isBase":true}}}, +{"id":61487,"name":"Rough Stone Carapace","icon":"inv_chest_plate_31","type":5,"armorType":4,"stats":[178,0,267,0,0,0,125,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"0":178,"2":267,"6":125,"7":107,"22":2615},"isBase":true}}}, +{"id":61488,"name":"Bondbreaker Gauntlets","icon":"inv_gauntlets_123","type":7,"armorType":3,"stats":[0,0,198,132,91,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,1202,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"4":91,"11":84,"22":1202},"isBase":true}}}, +{"id":61489,"name":"Lockbreaker Shank","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,76,114,0,0,47,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":145,"weaponDamageMin":617,"weaponDamageMax":1146,"weaponSpeed":1.8,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":617,"weaponDamageMax":1146,"stats":{"1":76,"2":114,"5":47,"7":53},"isBase":true}}}, +{"id":61490,"name":"Sanguinary Bracers","icon":"inv_bracer_80","type":6,"armorType":3,"stats":[0,99,148,0,0,66,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"1":99,"2":148,"5":66,"6":66,"22":841},"isBase":true}}}, +{"id":61491,"name":"Redblood Belt","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,132,198,0,0,0,0,81,92,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"1":132,"2":198,"7":81,"8":92,"22":781},"isBase":true}}}, +{"id":61492,"name":"Blood-Collector Helm","icon":"inv_helmet_cloth_cataclysm_b_01","type":1,"armorType":1,"stats":[0,0,267,178,0,130,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,890,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"5":130,"7":98,"22":890},"isBase":true}}}, +{"id":61493,"name":"Questioning Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[76,0,114,0,0,0,0,0,43,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"stats":{"0":76,"2":114,"8":43,"9":55},"isBase":true}}}, +{"id":61494,"name":"Interrogator's Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,267,178,101,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"4":101,"6":129,"22":1128},"isBase":true}}}, +{"id":61495,"name":"Gloves of Idle Hands","icon":"inv_gauntlets_cloth_cataclysm_b_01","type":7,"armorType":1,"stats":[0,0,198,132,94,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,685,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"4":94,"6":77,"22":685},"isBase":true}}}, +{"id":61496,"name":"Groundshort Leggings","icon":"inv_pants_mail_41","type":9,"armorType":3,"stats":[0,178,267,0,0,90,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1682,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"1":178,"2":267,"5":90,"6":135,"22":1682},"isBase":true}}}, +{"id":61497,"name":"Skyrend Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,99,148,0,0,0,66,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,608,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"1":99,"2":148,"6":66,"11":66,"22":608},"isBase":true}}}, +{"id":61498,"name":"Inquisitor's Girdle","icon":"inv_belt_cloth_cataclysm_b_01","type":8,"armorType":1,"stats":[0,0,198,132,0,0,0,93,0,0,0,79,0,0,0,0,0,0,0,0,0,0,616,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"7":93,"11":79,"22":616},"isBase":true}}}, +{"id":61499,"name":"Totem-Caller Hood","icon":"inv_helmet_190","type":1,"armorType":3,"stats":[0,0,267,178,125,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"2":267,"3":178,"4":125,"6":107,"22":1562},"isBase":true}}}, +{"id":61500,"name":"Press Gang Girdle","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,198,132,0,0,92,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,781,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"6":92,"7":81,"22":781},"isBase":true}}}, +{"id":61501,"name":"Incorporeal Sandals","icon":"inv_boots_cloth_cataclysm_b_01","type":10,"armorType":1,"stats":[0,0,198,132,0,0,81,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,753,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"2":198,"3":132,"6":81,"11":92,"22":753},"isBase":true}}}, +{"id":61502,"name":"Deepstone Treads","icon":"inv_boots_plate_23","type":10,"armorType":4,"stats":[132,0,198,0,0,0,0,0,88,0,0,88,0,0,0,0,0,0,0,0,0,0,1798,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":251,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":251,"stats":{"0":132,"2":198,"8":88,"11":88,"22":1798},"isBase":true}}}, +{"id":61503,"name":"Stoneshatter Hauberk","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,178,267,0,0,0,0,104,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":338,"stats":{"1":178,"2":267,"7":104,"11":127,"22":1389},"isBase":true}}}, +{"id":61504,"name":"Furyquench Bracers","icon":"inv_bracer_cloth_cataclysm_b_01","type":6,"armorType":1,"stats":[0,0,148,99,0,0,67,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":188,"ilvl":289,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"289":{"randPropPoints":188,"stats":{"2":148,"3":99,"6":67,"7":64,"22":479},"isBase":true}}}, +{"id":62047,"name":"Darkmoon Card: Volcano","icon":"inv_inscription_tarot_volcanocard","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62048,"name":"Darkmoon Card: Earthquake","icon":"inv_inscription_tarot_earthquakecard","type":12,"stats":[0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"9":321},"isBase":true}}}, +{"id":62049,"name":"Darkmoon Card: Hurricane","icon":"inv_inscription_tarot_hurricanecard","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":321},"isBase":true}}}, +{"id":62050,"name":"Darkmoon Card: Tsunami","icon":"inv_inscription_tarot_tsunamicard","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":62051,"name":"Darkmoon Card: Hurricane","icon":"inv_inscription_tarot_hurricanecard","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":62231,"name":"Book of Blood","icon":"inv_misc_book_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,0,0,91,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"6":91,"7":74},"isBase":true}}}, +{"id":62233,"name":"Lord Rottington's Pressed Wisp Book","icon":"inv_misc_book_11","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,91,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":91,"11":74},"isBase":true}}}, +{"id":62234,"name":"Dungeoneering Guide","icon":"inv_misc_book_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,0,116,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":116,"11":107},"isBase":true}}}, +{"id":62235,"name":"Divine Companion","icon":"inv_misc_book_16","type":13,"weaponType":5,"handType":3,"stats":[0,0,252,168,120,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":120,"7":98},"isBase":true}}}, +{"id":62236,"name":"Battle Tome","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"11":105,"16":105},"isBase":true}}}, +{"id":62348,"name":"Terrath's Signet of Balance","icon":"inv_jewelry_ring_49naxxramas","type":11,"stats":[0,168,252,0,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1171,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"11":112},"isBase":true}}}, +{"id":62350,"name":"Gorsik's Band of Shattering","icon":"item_icecrownringd","type":11,"stats":[168,0,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1171,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"7":112},"isBase":true}}}, +{"id":62351,"name":"Felsen's Ring of Resolve","icon":"inv_jewelry_ring_26","type":11,"stats":[168,0,252,0,0,0,0,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1171,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"9":112,"11":112},"isBase":true}}}, +{"id":62352,"name":"Diamant's Ring of Temperance","icon":"inv_jewelry_ring_70","type":11,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1171,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"7":112},"isBase":true}}}, +{"id":62353,"name":"Mantle of Moss","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,179,298,0,0,0,133,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":179,"2":298,"6":133,"7":113,"22":1668},"isBase":true}}}, +{"id":62354,"name":"Pendant of Elemental Balance","icon":"inv_misc_necklacea11","type":2,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"11":100},"isBase":true}}}, +{"id":62355,"name":"Stone-Wrapped Greaves","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[248,0,401,0,0,0,0,0,0,138,158,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":248,"2":401,"9":138,"10":158,"22":2737},"isBase":true}}}, +{"id":62356,"name":"Helm of Temperance","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,401,208,0,138,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,930,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"5":138,"6":158,"22":930},"isBase":true}}}, +{"id":62357,"name":"Cloak of Ancient Wisdom","icon":"inv_misc_cape_13","type":4,"armorType":1,"stats":[0,0,252,168,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"7":112,"22":580},"isBase":true}}}, +{"id":62358,"name":"Leggings of Clutching Roots","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,454,262,202,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":202,"6":162,"22":1374},"isBase":true}}}, +{"id":62359,"name":"Peacemaker's Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,454,262,192,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"7":172,"22":3298},"isBase":true}}}, +{"id":62361,"name":"Softwind Cape","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"7":112,"22":580},"isBase":true}}}, +{"id":62362,"name":"Signet of the Elder Council","icon":"inv_misc_diamondring2","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":62363,"name":"Earthmender's Boots","icon":"inv_boots_raidshaman_i_01","type":10,"armorType":3,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"6":149,"22":1673},"isBase":true}}}, +{"id":62364,"name":"Flamebloom Gloves","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,0,149,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"7":149,"11":169,"22":782},"isBase":true}}}, +{"id":62365,"name":"World Keeper's Gauntlets","icon":"inv_gauntlets_plate_raidpaladin_i_01","type":7,"armorType":4,"stats":[0,0,380,233,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1135,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"6":149,"22":2141},"isBase":true}}}, +{"id":62374,"name":"Sly Fox Jerkin","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,228,401,0,0,0,178,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,1527,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":228,"2":401,"6":178,"11":138,"22":1527},"isBase":true}}}, +{"id":62375,"name":"Galrond's Band","icon":"inv_jewelry_ring_47","type":11,"stats":[149,0,224,0,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"6":100,"11":100},"isBase":true}}}, +{"id":62376,"name":"Mountain's Mouth","icon":"inv_misc_necklacea10","type":2,"stats":[149,0,224,0,0,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"10":100,"11":100},"isBase":true}}}, +{"id":62377,"name":"Cloak of the Dryads","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"11":100,"22":572},"isBase":true}}}, +{"id":62378,"name":"Acorn of the Daughter Tree","icon":"inv_misc_food_pinenut","type":2,"stats":[0,168,252,0,0,0,0,107,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"7":107,"11":116},"isBase":true}}}, +{"id":62380,"name":"Wilderness Legguards","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,454,262,192,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2032,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":192,"7":172,"22":2032},"isBase":true}}}, +{"id":62381,"name":"Aessina-Blessed Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,337,205,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"7":150,"11":130,"22":982},"isBase":true}}}, +{"id":62382,"name":"Waywatcher's Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":150,"7":130,"22":2268},"isBase":true}}}, +{"id":62383,"name":"Wrap of the Great Turtle","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"11":127,"22":625},"isBase":true}}}, +{"id":62384,"name":"Belt of the Ferocious Wolf","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[233,0,380,0,0,0,149,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"6":149,"11":169,"22":1927},"isBase":true}}}, +{"id":62385,"name":"Treads of Malorne","icon":"inv_boots_mail_raidhunter_i_01","type":10,"armorType":3,"stats":[0,233,380,0,0,149,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"5":149,"11":169,"22":1673},"isBase":true}}}, +{"id":62386,"name":"Cord of the Raven Queen","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1158,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":704},"isBase":true}}}, +{"id":62404,"name":"Spaulders of the Endless Plains","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,298,159,123,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":159,"4":123,"7":103,"22":1145},"isBase":true}}}, +{"id":62405,"name":"Leggings of the Impenitent","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,228,401,0,0,0,168,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":228,"2":401,"6":168,"7":148,"22":1336},"isBase":true}}}, +{"id":62406,"name":"Bone Fever Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,298,179,0,133,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":179,"5":133,"11":113,"22":715},"isBase":true}}}, +{"id":62407,"name":"Helm of the Brown Lands","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,401,208,171,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":6,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"4":171,"6":117,"22":1807},"isBase":true}}}, +{"id":62408,"name":"Gauntlets of Rattling Bones","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":150,"7":130,"22":2061},"isBase":true}}}, +{"id":62409,"name":"Snarling Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"6":182,"7":162,"22":1887},"isBase":true}}}, +{"id":62410,"name":"Grinning Fang Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[196,0,454,0,0,0,0,0,137,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":196,"2":454,"8":137,"9":242,"22":2680},"isBase":true}}}, +{"id":62415,"name":"Band of Lamentation","icon":"inv_misc_kingsring1","type":11,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"11":112},"isBase":true}}}, +{"id":62416,"name":"Yellow Smoke Pendant","icon":"inv_misc_necklacea9","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":62417,"name":"Liar's Handwraps","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1043},"isBase":true}}}, +{"id":62418,"name":"Boots of Sullen Rock","icon":"inv_boots_plate_raiddeathknight_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,139,159,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":139,"11":159,"22":2355},"isBase":true}}}, +{"id":62420,"name":"Withered Dream Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1172,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":939},"isBase":true}}}, +{"id":62423,"name":"Helm of the Skyborne","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,401,208,171,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"4":171,"6":117,"22":1807},"isBase":true}}}, +{"id":62424,"name":"Gloves of Aetherial Rumors","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,298,179,0,133,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":179,"5":133,"11":113,"22":715},"isBase":true}}}, +{"id":62425,"name":"Swiftflight Leggings","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,228,401,0,0,0,168,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":228,"2":401,"6":168,"7":148,"22":1336},"isBase":true}}}, +{"id":62426,"name":"Mantle of Wild Feathers","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,298,159,123,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":6,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":159,"4":123,"7":103,"22":1145},"isBase":true}}}, +{"id":62427,"name":"Band of Singing Grass","icon":"inv_jewelry_ring_69","type":11,"stats":[0,0,252,168,0,112,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"5":112,"11":112},"isBase":true}}}, +{"id":62428,"name":"Crown of Wings","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[196,0,454,0,0,0,0,0,137,242,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":196,"2":454,"8":137,"9":242,"22":2680},"isBase":true}}}, +{"id":62429,"name":"Windhome Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,242,454,0,0,0,182,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"6":182,"7":162,"22":1887},"isBase":true}}}, +{"id":62430,"name":"Gryphon Talon Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[205,0,337,0,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":150,"7":130,"22":2061},"isBase":true}}}, +{"id":62431,"name":"Belt of the Untamed","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":939},"isBase":true}}}, +{"id":62432,"name":"Gryphon Rider's Boots","icon":"inv_boots_raidwarrior_i_01","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,139,159,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":139,"11":159,"22":2355},"isBase":true}}}, +{"id":62433,"name":"Stormbolt Gloves","icon":"inv_glove_leatherraidrogue_i_01","type":7,"armorType":2,"stats":[0,233,380,0,0,0,149,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":233,"2":380,"6":149,"7":169,"22":1043},"isBase":true}}}, +{"id":62434,"name":"Lightning Flash Pendant","icon":"inv_misc_necklacea8","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1174,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":62436,"name":"Ammunae's Blessing","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,224,149,100,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":100,"11":100},"isBase":true}}}, +{"id":62437,"name":"Shroud of the Dead","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[149,0,224,0,0,0,100,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"6":100,"11":100,"22":572},"isBase":true}}}, +{"id":62438,"name":"Drystone Greaves","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,298,179,133,0,0,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":179,"4":133,"7":113,"22":2151},"isBase":true}}}, +{"id":62439,"name":"Belt of the Stargazer","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,179,298,0,0,0,113,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":6}}],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":179,"2":298,"6":113,"7":133,"22":1251},"isBase":true}}}, +{"id":62440,"name":"Red Rock Band","icon":"inv_misc_kingsring1","type":11,"stats":[120,0,252,0,0,0,0,0,98,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":120,"2":252,"8":98,"11":168},"isBase":true}}}, +{"id":62441,"name":"Robes of Orsis","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,454,262,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"5":192,"6":172,"22":1160},"isBase":true}}}, +{"id":62445,"name":"Sash of Prophecy","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1306,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":1306},"isBase":true}}}, +{"id":62446,"name":"Quicksand Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,205,337,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":7}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":150,"6":130,"22":884},"isBase":true}}}, +{"id":62447,"name":"Gift of Nadun","icon":"inv_misc_necklacea7","type":2,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"7":127},"isBase":true}}}, +{"id":62448,"name":"Sun King's Girdle","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,380,233,169,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"7":149,"22":1927},"isBase":true}}}, +{"id":62449,"name":"Sandguard Bracers","icon":"inv_bracer_plate_raidwarrior_i_01","type":6,"armorType":4,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":136,"2":286,"8":111,"9":190,"22":1499},"isBase":true}}}, +{"id":62450,"name":"Desert Walker Sandals","icon":"inv_boots_cloth_raidwarlock_i_01","type":10,"armorType":1,"stats":[0,0,380,233,0,169,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1173,"repLevel":8}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"5":169,"7":149,"22":860},"isBase":true}}}, +{"id":62454,"name":"Blade of the Fearless","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"weaponSpeed":3.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"stats":{"0":302,"2":454,"6":202,"8":202},"isBase":true}}}, +{"id":62455,"name":"Spear of Trailing Shadows","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"1":302,"2":454,"5":202,"7":202},"isBase":true}}}, +{"id":62456,"name":"Dagger of Restless Nights","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":62457,"name":"Ravening Slicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"7":86,"11":86},"isBase":true}}}, +{"id":62458,"name":"Insidious Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,0,202,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"stats":{"2":454,"3":302,"7":202,"11":202,"14":1732},"isBase":true}}}, +{"id":62459,"name":"Shimmering Morningstar","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,194,129,86,0,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"stats":{"2":194,"3":129,"4":86,"6":86,"14":1729},"isBase":true}}}, +{"id":62460,"name":"Sky Piercer","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,302,454,0,0,0,202,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2650,"weaponDamageMax":3976,"weaponSpeed":3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2650,"weaponDamageMax":3976,"stats":{"1":302,"2":454,"6":202,"11":202},"isBase":true}}}, +{"id":62463,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62464,"name":"Impatience of Youth","icon":"inv_misc_idol_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62465,"name":"Stump of Time","icon":"inv_misc_branch_01","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"5":321},"isBase":true}}}, +{"id":62466,"name":"Mirror of Broken Images","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62467,"name":"Mandala of Stirring Patterns","icon":"inv_misc_web_01","type":12,"stats":[0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":8,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"4":321},"isBase":true}}}, +{"id":62468,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62469,"name":"Impatience of Youth","icon":"inv_misc_idol_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62470,"name":"Stump of Time","icon":"inv_misc_branch_01","type":12,"stats":[0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"5":321},"isBase":true}}}, +{"id":62471,"name":"Mirror of Broken Images","icon":"inv_misc_platnumdisks","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":62472,"name":"Mandala of Stirring Patterns","icon":"inv_misc_web_01","type":12,"stats":[0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":8,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"359":{"randPropPoints":482,"stats":{"4":321},"isBase":true}}}, +{"id":62473,"name":"Blade of the Fearless","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"weaponSpeed":3.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3357,"weaponDamageMax":5036,"stats":{"0":302,"2":454,"6":202,"8":202},"isBase":true}}}, +{"id":62474,"name":"Spear of Trailing Shadows","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"1":302,"2":454,"5":202,"7":202},"isBase":true}}}, +{"id":62475,"name":"Dagger of Restless Nights","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1179,"weaponDamageMax":1769,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":62476,"name":"Ravening Slicer","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"7":86,"11":86},"isBase":true}}}, +{"id":62477,"name":"Insidious Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,0,202,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"weaponSpeed":2.1,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":927,"weaponDamageMax":1392,"stats":{"2":454,"3":302,"7":202,"11":202,"14":1732},"isBase":true}}}, +{"id":62478,"name":"Shimmering Morningstar","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[0,0,194,129,86,0,86,0,0,0,0,0,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"weaponSpeed":2.3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":659,"weaponDamageMax":1225,"stats":{"2":194,"3":129,"4":86,"6":86,"14":1729},"isBase":true}}}, +{"id":62479,"name":"Sky Piercer","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,302,454,0,0,0,202,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2650,"weaponDamageMax":3976,"weaponSpeed":3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2650,"weaponDamageMax":3976,"stats":{"1":302,"2":454,"6":202,"11":202},"isBase":true}}}, +{"id":63093,"name":"Twilight's Hammer Shoulders","icon":"inv_shoulder_92","type":3,"armorType":4,"stats":[233,0,380,0,0,149,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[9],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":233,"2":380,"5":149,"7":169,"22":2570},"isBase":true}}}, +{"id":63094,"name":"Twilight's Hammer Robe","icon":"inv_chest_cloth_63","type":5,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,808,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":59,"22":808},"isBase":true}}}, +{"id":63095,"name":"Twilight's Hammer Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,127,74,0,0,44,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,657,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"randPropPoints":170,"ilvl":200,"quality":4,"classAllowlist":[8],"scalingOptions":{"200":{"randPropPoints":170,"stats":{"2":127,"3":74,"6":44,"16":43,"22":657},"isBase":true}}}, +{"id":63433,"name":"Robes of Arugal","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,202,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":202,"11":162,"22":1160},"isBase":true}}}, +{"id":63434,"name":"Gloves of the Greymane Wall","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[151,0,337,0,0,0,0,0,114,0,205,0,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":151,"2":337,"8":114,"10":205,"22":2061},"isBase":true}}}, +{"id":63435,"name":"Boots of the Predator","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"5":130,"6":150,"22":1080},"isBase":true}}}, +{"id":63436,"name":"Traitor's Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":130,"11":150,"22":1451},"isBase":true}}}, +{"id":63437,"name":"Baron Ashbury's Cuffs","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,252,168,112,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Ashbury"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"11":112,"22":507},"isBase":true}}}, +{"id":63438,"name":"Baroness Silverlaine's Locket","icon":"inv_misc_necklacea11","type":2,"stats":[168,0,252,0,0,0,0,112,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"7":112,"11":112},"isBase":true}}}, +{"id":63439,"name":"Gloves of the Uplifted Cup","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,337,205,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"11":130,"22":982},"isBase":true}}}, +{"id":63440,"name":"Boots of Lingering Sorrow","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":797},"isBase":true}}}, +{"id":63441,"name":"Pendant of the Keep","icon":"inv_misc_necklacea10","type":2,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"11":112},"isBase":true}}}, +{"id":63444,"name":"Baron Silverlaine's Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[225,0,337,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Baron Silverlaine"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":225,"2":337,"9":130,"10":130,"22":2268},"isBase":true}}}, +{"id":63445,"name":"Arced War Axe","icon":"inv_axe_06","type":13,"weaponType":1,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3092,"weaponDamageMax":4639,"weaponSpeed":3.5,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3092,"weaponDamageMax":4639,"stats":{"0":302,"2":454,"6":202,"8":202},"isBase":true}}}, +{"id":63446,"name":"Haunting Footfalls","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,205,337,0,0,0,0,130,0,0,0,150,0,0,0,0,0,0,0,0,0,0,1596,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":130,"11":150,"22":1596},"isBase":true}}}, +{"id":63447,"name":"Breastplate of the Stilled Heart","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,454,262,0,0,0,172,0,0,0,192,0,0,0,0,0,0,0,0,0,0,2322,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"7":172,"11":192,"22":2322},"isBase":true}}}, +{"id":63448,"name":"Springvale's Cloak","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112,"22":580},"isBase":true}}}, +{"id":63449,"name":"Thieving Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,205,337,0,0,0,130,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1178,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Commander Springvale"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"6":130,"7":150,"22":1178},"isBase":true}}}, +{"id":63450,"name":"Phantom Armor","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[262,0,454,0,0,0,172,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"6":172,"11":192,"22":3298},"isBase":true}}}, +{"id":63452,"name":"Burden of Lost Humanity","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,337,205,150,0,0,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1741,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"11":130,"22":1741},"isBase":true}}}, +{"id":63453,"name":"Iron Will Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[171,0,337,0,0,114,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":171,"2":337,"5":114,"9":185,"22":1855},"isBase":true}}}, +{"id":63454,"name":"Double Dealing Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"11":112,"22":687},"isBase":true}}}, +{"id":63455,"name":"Blinders of the Follower","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,454,242,0,0,162,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,942,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Walden"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"6":162,"11":182,"22":942},"isBase":true}}}, +{"id":63456,"name":"Meteor Shard","icon":"inv_weapon_shortblade_25","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"weaponSpeed":1.8,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"stats":{"1":129,"2":194},"isBase":true}}}, +{"id":63457,"name":"Shackles of Undeath","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[168,0,252,0,0,0,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"9":112,"10":112,"22":1443},"isBase":true}}}, +{"id":63458,"name":"Lord Walden's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[262,0,454,0,0,0,0,162,0,0,0,202,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":262,"2":454,"7":162,"11":202,"22":3298},"isBase":true}}}, +{"id":63459,"name":"Worgen Hunter's Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,242,454,0,0,0,0,142,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1887,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":242,"2":454,"7":142,"11":202,"22":1887},"isBase":true}}}, +{"id":63461,"name":"Staff of Isolation","icon":"inv_staff_27","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,202,0,0,0,0,0,0,202,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1281,"weaponDamageMax":1922,"weaponSpeed":2.9,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":1281,"weaponDamageMax":1922,"stats":{"2":454,"3":302,"4":202,"11":202,"14":1732},"isBase":true}}}, +{"id":63462,"name":"Helm of Untold Stories","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,454,242,162,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":162,"11":182,"22":2680},"isBase":true}}}, +{"id":63463,"name":"Mantle of the Eastern Lords","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,0,130,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"5":130,"11":150,"22":870},"isBase":true}}}, +{"id":63464,"name":"Greaves of the Misguided","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,454,262,162,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2886,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":162,"7":202,"22":2886},"isBase":true}}}, +{"id":63465,"name":"Mantle of Loss","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,870,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":209,"otherName":"Lord Godfrey"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"11":150,"22":870},"isBase":true}}}, +{"id":63466,"name":"Girdle of Nobility","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"7":130,"22":652},"isBase":true}}}, +{"id":63467,"name":"Shadow of the Past","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[168,0,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":168,"2":252,"6":112,"7":112,"22":580},"isBase":true}}}, +{"id":63468,"name":"Defias Brotherhood Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,262,454,0,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"1":262,"2":454,"7":182,"11":182,"22":1571},"isBase":true}}}, +{"id":63470,"name":"Missing Diplomat's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[205,0,337,0,0,0,150,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2474,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"6":150,"11":130,"22":2474},"isBase":true}}}, +{"id":63471,"name":"Vest of the Curious Visitor","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,454,262,0,0,192,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1571,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":192,"7":172,"22":1571},"isBase":true}}}, +{"id":63472,"name":"Corpse Rompers","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,337,205,0,0,150,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,797,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":150,"7":130,"22":797},"isBase":true}}}, +{"id":63473,"name":"Cloak of Thredd","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"11":112,"22":580},"isBase":true}}}, +{"id":63474,"name":"Gear-Marked Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[205,0,337,0,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,2061,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":205,"2":337,"7":150,"11":130,"22":2061},"isBase":true}}}, +{"id":63475,"name":"Old Friend's Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,337,205,150,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"7":130,"22":1451},"isBase":true}}}, +{"id":63476,"name":"Gearbreaker's Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,252,168,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"6":112,"22":1443},"isBase":true}}}, +{"id":63477,"name":"Wicked Dagger","icon":"inv_weapon_shortblade_04","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"stats":{"1":129,"2":194,"6":86,"8":86},"isBase":true}}}, +{"id":63478,"name":"Stonemason's Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[242,0,454,0,0,0,142,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2680,0,0,0,0],"gemSockets":[1,3],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"0":242,"2":454,"6":142,"7":202,"22":2680},"isBase":true}}}, +{"id":63479,"name":"Bracers of Some Consequence","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,168,252,0,0,0,112,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"6":112,"7":112,"22":1016},"isBase":true}}}, +{"id":63482,"name":"Daughter's Hands","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,337,205,150,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,725,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":150,"6":130,"22":725},"isBase":true}}}, +{"id":63483,"name":"Guildmaster's Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,130,0,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":130,"11":150,"22":2268},"isBase":true}}}, +{"id":63484,"name":"Armbands of Exiled Architects","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,252,168,0,0,112,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,507,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"6":112,"11":112,"22":507},"isBase":true}}}, +{"id":63485,"name":"Cowl of Rebellion","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,454,242,202,0,0,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":242,"4":202,"11":142,"22":1276},"isBase":true}}}, +{"id":63486,"name":"Shackles of the Betrayed","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,252,168,112,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":168,"4":112,"7":112,"22":1016},"isBase":true}}}, +{"id":63488,"name":"Mistral Circle","icon":"inv_misc_rubystar","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":63489,"name":"Permafrost Signet","icon":"inv_jewelry_ring_86","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":63490,"name":"Sky Strider Belt","icon":"inv_belt_plate_raiddeathknight_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-169,-170,-171,-172],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":1927},"isBase":true}}}, +{"id":63491,"name":"Thunder Wall Belt","icon":"inv_belt_plate_raidwarrior_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-207,-208,-209],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":1927},"isBase":true}}}, +{"id":63492,"name":"Star Chaser Belt","icon":"inv_belt_mail_raidhunter_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-216,-217,-218,-219],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":1369},"isBase":true}}}, +{"id":63493,"name":"Wind Stalker Belt","icon":"inv_belt_leatherraidrogue_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-216,-217,-218,-219],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":939},"isBase":true}}}, +{"id":63494,"name":"Planetary Band","icon":"inv_jewelry_ring_87","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":63495,"name":"Tempest Keeper Belt","icon":"inv_belt_plate_raidpaladin_i_01","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-212,-213,-214,-215],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":1927},"isBase":true}}}, +{"id":63496,"name":"Lightning Well Belt","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-212,-213,-214,-215],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":1369},"isBase":true}}}, +{"id":63497,"name":"Gale Rouser Belt","icon":"inv_belt_leather_raiddruid_i_01","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-212,-213,-214,-215],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":939},"isBase":true}}}, +{"id":63498,"name":"Soul Breath Belt","icon":"inv_belt_cloth_raidpriest_i_01","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-212,-213,-214,-215],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"The Conclave of Wind"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"22":704},"isBase":true}}}, +{"id":63499,"name":"Cloudburst Ring","icon":"inv_misc_pearlring2","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":63500,"name":"Sky Strider Greaves","icon":"inv_pants_plate_raiddeathknight_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-169,-170,-171,-172],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":2998},"isBase":true}}}, +{"id":63501,"name":"Thunder Wall Greaves","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-177,-178,-179],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":2998},"isBase":true}}}, +{"id":63502,"name":"Star Chaser Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-195,-196,-197,-198],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":2129},"isBase":true}}}, +{"id":63503,"name":"Wind Stalker Leggings","icon":"inv_pant_leatherraidrogue_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-195,-196,-197,-198],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":1460},"isBase":true}}}, +{"id":63504,"name":"Tempest Keeper Leggings","icon":"inv_pants_plate_raidpaladin_i_01","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-191,-192,-193,-194],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":2998},"isBase":true}}}, +{"id":63505,"name":"Lightning Well Legguards","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-191,-192,-193,-194],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":2129},"isBase":true}}}, +{"id":63506,"name":"Gale Rouser Leggings","icon":"inv_pants_leather_raiddruid_i_01","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-191,-192,-193,-194],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":1460},"isBase":true}}}, +{"id":63507,"name":"Soul Breath Leggings","icon":"inv_pants_robe_raidmage_i_01","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-183,-184,-185,-186,-187,-188],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"22":1094},"isBase":true}}}, +{"id":63531,"name":"Daybreaker Helm","icon":"inv_helmet_plate_raiddeathknight_i_01","type":1,"armorType":4,"stats":[281,0,512,0,0,0,0,0,0,0,228,168,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":281,"2":512,"10":228,"11":168,"22":2784},"isBase":true}}}, +{"id":63532,"name":"Dragonheart Piercer","icon":"inv_bow_2h_crossbow_grimbatolraid_d_01","type":14,"rangedWeaponType":2,"stats":[0,341,512,0,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"7":228},"isBase":true}}}, +{"id":63533,"name":"Fang of Twilight","icon":"inv_sword_1h_bwdraid_d_01","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"11":97},"isBase":true}}}, +{"id":63534,"name":"Helm of Eldritch Authority","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,188,0,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":188,"7":208,"22":1016},"isBase":true}}}, +{"id":63535,"name":"Waistguard of Hatred","icon":"inv_belt_mail_raidshaman_i_01","type":8,"armorType":3,"stats":[0,0,380,233,169,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":169,"11":149,"22":1369},"isBase":true}}}, +{"id":63536,"name":"Blade of the Witching Hour","icon":"inv_knife_1h_bwdraid_d_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,219,146,0,0,97,0,0,0,0,97,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Theralion and Valiona"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":582,"weaponDamageMax":1082,"stats":{"2":219,"3":146,"6":97,"11":97,"14":1954},"isBase":true}}}, +{"id":63537,"name":"Claws of Torment","icon":"inv_hand_1h_bwdraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[0,146,219,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Agony and Torment","setId":951,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"7":97},"isBase":true}}}, +{"id":63538,"name":"Claws of Agony","icon":"inv_hand_1h_bwdraid_d_01","type":13,"weaponType":3,"handType":2,"stats":[146,0,219,0,0,0,0,97,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Agony and Torment","setId":951,"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"7":97,"11":97},"isBase":true}}}, +{"id":63540,"name":"Circuit Design Breastplate","icon":"inv_chest_raidshaman_i_01","type":5,"armorType":3,"stats":[0,0,512,301,188,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Omnotron Defense System"}}],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"11":228,"22":2433},"isBase":true}}}, +{"id":63679,"name":"Reclaimed Ashkandi, Greatsword of the Brotherhood","icon":"inv_sword_50","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3789,"weaponDamageMax":5685,"weaponSpeed":3.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Nefarian's End"}}],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3789,"weaponDamageMax":5685,"stats":{"0":341,"2":512,"5":228,"6":228},"isBase":true}}}, +{"id":63680,"name":"Twilight's Hammer","icon":"inv_mace_1h_hammeroftwilight_d_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"weaponSpeed":1.7,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5334,"otherName":"Cho'gall"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"stats":{"2":219,"3":146,"6":97,"7":97,"14":1954},"isBase":true}}}, +{"id":63701,"name":"Treads of Terror","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"5":129,"6":135,"22":2151},"isBase":true}}}, +{"id":63702,"name":"Coulton's Crushers","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":133,"7":133,"22":1390},"isBase":true}}}, +{"id":63703,"name":"Garona's Finest Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,268,402,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"6":191,"8":157,"22":1336},"isBase":true}}}, +{"id":63704,"name":"Overly Intelligent Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,402,268,0,0,0,184,0,0,0,170,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"7":184,"11":170,"22":1145},"isBase":true}}}, +{"id":63705,"name":"Treads of Terror","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[199,0,298,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"5":129,"6":135,"22":2151},"isBase":true}}}, +{"id":63706,"name":"Coulton's Crushers","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":133,"7":133,"22":1390},"isBase":true}}}, +{"id":63707,"name":"Shaw's Finest Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,268,402,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,1336,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"6":191,"8":157,"22":1336},"isBase":true}}}, +{"id":63708,"name":"Overly Intelligent Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,402,268,0,0,0,184,0,0,0,170,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"7":184,"11":170,"22":1145},"isBase":true}}}, +{"id":63709,"name":"Lava-Melted Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"5":175,"8":122,"22":2575},"isBase":true}}}, +{"id":63710,"name":"Widener's Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,0,0,80,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":80,"11":90,"22":926},"isBase":true}}}, +{"id":63711,"name":"Magma-Proof Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,122,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"5":122,"11":104,"22":775},"isBase":true}}}, +{"id":63712,"name":"Bracers of Gleaming Shards","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"6":87,"8":87,"22":1287},"isBase":true}}}, +{"id":63713,"name":"Shard-Keeper Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,0,0,125,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"6":125,"7":173,"22":1719},"isBase":true}}}, +{"id":63714,"name":"Giltstone Necklace","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,0,195,130,78,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":78,"7":92},"isBase":true}}}, +{"id":63715,"name":"Grips of the Damned Mind","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,117,0,112,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":117,"10":112,"22":1839},"isBase":true}}}, +{"id":63716,"name":"Soulgrowth Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,101,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":101,"7":124,"22":1109},"isBase":true}}}, +{"id":63717,"name":"Mindsear Shanker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,72,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"weaponSpeed":1.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"stats":{"1":100,"2":150,"5":72,"7":57},"isBase":true}}}, +{"id":63718,"name":"Grips of the Damned Mind","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,117,0,112,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":117,"10":112,"22":1839},"isBase":true}}}, +{"id":63719,"name":"Soulgrowth Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,101,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":101,"7":124,"22":1109},"isBase":true}}}, +{"id":63720,"name":"Mindsear Shanker","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,100,150,0,0,72,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"weaponSpeed":1.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":795,"weaponDamageMax":1477,"stats":{"1":100,"2":150,"5":72,"7":57},"isBase":true}}}, +{"id":63721,"name":"Lifecrusher Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,96,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":96,"6":127,"22":1455},"isBase":true}}}, +{"id":63722,"name":"Throat-Slitter Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,101,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":101,"6":124,"22":924},"isBase":true}}}, +{"id":63723,"name":"Redistributed Signet","icon":"inv_misc_moodring2","type":11,"stats":[0,0,195,130,82,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":82,"6":89},"isBase":true}}}, +{"id":63724,"name":"Lifecrusher Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,96,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":96,"6":127,"22":1455},"isBase":true}}}, +{"id":63725,"name":"Throat-Slitter Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,101,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":101,"6":124,"22":924},"isBase":true}}}, +{"id":63726,"name":"Redistributed Signet","icon":"inv_misc_moodring2","type":11,"stats":[0,0,195,130,82,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":82,"6":89},"isBase":true}}}, +{"id":63727,"name":"Klem's Rusted Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":115,"11":115,"22":1839},"isBase":true}}}, +{"id":63728,"name":"Dame's Scaled Greaves","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":177,"6":118,"22":1852},"isBase":true}}}, +{"id":63729,"name":"Rose-Scented Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,129,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":129,"7":171,"22":916},"isBase":true}}}, +{"id":63730,"name":"Klem's Rusted Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":115,"11":115,"22":1839},"isBase":true}}}, +{"id":63731,"name":"Dame's Scaled Greaves","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":177,"6":118,"22":1852},"isBase":true}}}, +{"id":63732,"name":"Rose-Scented Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,129,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":129,"7":171,"22":916},"isBase":true}}}, +{"id":63733,"name":"Deepdigger Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,0,0,129,0,0,0,171,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"7":129,"11":171,"22":1719},"isBase":true}}}, +{"id":63734,"name":"Portal-Sealer's Breastplate","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,155,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":155,"6":155,"22":1479},"isBase":true}}}, +{"id":63735,"name":"Darklight Torch","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,150,100,0,74,54,0,0,0,0,0,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":397,"weaponDamageMax":738,"weaponSpeed":1.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":397,"weaponDamageMax":738,"stats":{"2":150,"3":100,"5":74,"6":54,"14":1335},"isBase":true}}}, +{"id":63736,"name":"Muffled Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,233,349,0,0,125,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"weaponSpeed":2.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"stats":{"1":233,"2":349,"5":125,"11":173},"isBase":true}}}, +{"id":63737,"name":"Wound-Heart Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,0,0,90,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":90,"11":80,"22":1287},"isBase":true}}}, +{"id":63738,"name":"Needle-Threader Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,104,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":104,"11":122,"22":924},"isBase":true}}}, +{"id":63739,"name":"Silenced Blunderbuss","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,233,349,0,0,125,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"weaponSpeed":2.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"stats":{"1":233,"2":349,"5":125,"11":173},"isBase":true}}}, +{"id":63740,"name":"Muffled Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,0,0,90,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":90,"11":80,"22":1287},"isBase":true}}}, +{"id":63741,"name":"Fencer's Nimblefingers","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,104,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":104,"11":122,"22":924},"isBase":true}}}, +{"id":63742,"name":"Za'brox's Lucky Tooth","icon":"inv_misc_bone_08","type":12,"stats":[0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":329},"isBase":true}}}, +{"id":63743,"name":"Skull Carrier","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,195,130,87,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":87,"11":87,"22":10943},"isBase":true}}}, +{"id":63744,"name":"Spaulders of Gruesome Glory","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,0,130,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":130,"11":90,"22":846},"isBase":true}}}, +{"id":63745,"name":"Za'brox's Lucky Tooth","icon":"inv_misc_bone_08","type":12,"stats":[0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":329},"isBase":true}}}, +{"id":63746,"name":"Skull Carrier","icon":"inv_shield_cataclysm_b_02","type":13,"weaponType":7,"handType":3,"stats":[0,0,195,130,87,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,10943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":87,"11":87,"22":10943},"isBase":true}}}, +{"id":63747,"name":"Spaulders of Gruesome Accomplishment","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,0,130,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":130,"11":90,"22":846},"isBase":true}}}, +{"id":63748,"name":"Gatecrasher Shoulderguards","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,117,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"6":117,"7":112,"22":2207},"isBase":true}}}, +{"id":63749,"name":"Smokeflare Chestguard","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":173,"7":125,"22":2116},"isBase":true}}}, +{"id":63750,"name":"Buildingblast Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,76,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"6":76,"11":93,"22":647},"isBase":true}}}, +{"id":63751,"name":"Signal Smoke Shoulderpads","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,117,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"6":117,"7":112,"22":2207},"isBase":true}}}, +{"id":63752,"name":"Marker's Hauberk","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":173,"7":125,"22":2116},"isBase":true}}}, +{"id":63753,"name":"Flarefire Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,76,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"6":76,"11":93,"22":647},"isBase":true}}}, +{"id":63754,"name":"Waistguard of Twilight Finality","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"7":98,"11":125,"22":1190},"isBase":true}}}, +{"id":63755,"name":"Hood of Lost Solitude","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,0,0,0,164,0,0,0,140,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"7":164,"11":140,"22":1201},"isBase":true}}}, +{"id":63756,"name":"Bracers of Final Memories","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,0,0,99,0,0,0,66,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"7":99,"11":66,"22":493},"isBase":true}}}, +{"id":63757,"name":"Wyrmhunter Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,128,93,0,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"9":128,"10":93,"22":2207},"isBase":true}}}, +{"id":63758,"name":"Nightscale Girdle","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,0,98,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"6":98,"11":125,"22":1190},"isBase":true}}}, +{"id":63759,"name":"Dragonwing Leggings","icon":"inv_pants_cloth_cataclysm_b_02","type":9,"armorType":1,"stats":[0,0,349,233,0,158,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,987,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"5":158,"7":151,"22":987},"isBase":true}}}, +{"id":63760,"name":"Cloak of the Red Flight","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[149,0,224,0,0,110,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":110,"6":83,"22":572},"isBase":true}}}, +{"id":63761,"name":"Red Dragonheart Ring","icon":"inv_misc_kingsring1","type":11,"stats":[0,0,224,149,0,0,95,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":95,"11":103},"isBase":true}}}, +{"id":63762,"name":"Pendant of Victorious Fury","icon":"inv_misc_necklacea10","type":2,"stats":[0,149,224,0,0,0,0,105,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"7":105,"11":90},"isBase":true}}}, +{"id":63763,"name":"Gate-Breaker Treads","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,127,0,96,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"9":127,"11":96,"22":2023},"isBase":true}}}, +{"id":63764,"name":"Squadron Leader's Gloves","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,173,260,0,0,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":115,"11":115,"22":1323},"isBase":true}}}, +{"id":63765,"name":"Cloak of Valorous Direction","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,195,130,0,0,76,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":76,"7":93,"22":564},"isBase":true}}}, +{"id":63766,"name":"Commander's Stompers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[173,0,260,0,0,0,0,0,0,127,0,96,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"9":127,"11":96,"22":2023},"isBase":true}}}, +{"id":63767,"name":"Gatesmashing Gauntlets","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,173,260,0,0,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,1323,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":115,"11":115,"22":1323},"isBase":true}}}, +{"id":63768,"name":"Cloak of Grand Leadership","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,195,130,0,0,76,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":76,"7":93,"22":564},"isBase":true}}}, +{"id":63770,"name":"Helm of Durable Hatred","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,0,0,0,167,136,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"8":167,"9":136,"22":2391},"isBase":true}}}, +{"id":63771,"name":"Crushchest Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,233,349,0,0,0,0,177,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"7":177,"11":118,"22":1294},"isBase":true}}}, +{"id":63773,"name":"Gatekeeper's Helm","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,0,0,0,167,136,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"8":167,"9":136,"22":2391},"isBase":true}}}, +{"id":63774,"name":"Spear-Impaled Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,233,349,0,0,0,0,177,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"7":177,"11":118,"22":1294},"isBase":true}}}, +{"id":63775,"name":"Helm of Verdant Explosion","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[233,0,349,0,0,171,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"5":171,"7":129,"22":2391},"isBase":true}}}, +{"id":63777,"name":"Flashseal Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":107,"7":120,"22":775},"isBase":true}}}, +{"id":63778,"name":"Safeguard Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,173,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"6":120,"7":107,"22":1587},"isBase":true}}}, +{"id":63779,"name":"Vermillion Belt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,0,122,104,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":122,"8":104,"22":832},"isBase":true}}}, +{"id":63780,"name":"Dragonmender Waistguard","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,260,173,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,634,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":115,"6":115,"22":634},"isBase":true}}}, +{"id":63781,"name":"Nightmare Choker","icon":"inv_jewelry_necklace_46","type":2,"stats":[130,0,195,0,0,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"6":76,"8":93},"isBase":true}}}, +{"id":63782,"name":"Weeping Scar Cover","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[0,0,349,233,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2391,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":160,"6":148,"22":2391},"isBase":true}}}, +{"id":63783,"name":"Woundseal Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,0,349,233,167,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1294,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":167,"7":136,"22":1294},"isBase":true}}}, +{"id":63784,"name":"Heartsmoke Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[0,0,349,233,151,0,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":151,"7":158,"22":2575},"isBase":true}}}, +{"id":63785,"name":"Smoking Stride Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,260,173,0,0,132,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":132,"11":88,"22":1455},"isBase":true}}}, +{"id":63786,"name":"Fleshburned Robes","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,349,233,173,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":173,"6":125,"22":1128},"isBase":true}}}, +{"id":63787,"name":"Oversized Oblique Ogre Obliterator","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[268,0,402,0,0,0,170,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"weaponSpeed":3.3,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"stats":{"0":268,"2":402,"6":170,"7":184},"isBase":true}}}, +{"id":63788,"name":"Calder's Coated Carrion Carver","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,115,172,0,0,0,84,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"1":115,"2":172,"6":84,"7":63},"isBase":true}}}, +{"id":63789,"name":"Very Manly Staff","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,1533,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1291,"weaponDamageMax":1937,"weaponSpeed":3.3,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1291,"weaponDamageMax":1937,"stats":{"2":402,"3":268,"7":186,"11":165,"14":1533},"isBase":true}}}, +{"id":63790,"name":"Gurgthock's Garish Gorebat","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,172,115,62,0,85,0,0,0,0,0,0,0,1532,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":406,"weaponDamageMax":755,"weaponSpeed":1.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":406,"weaponDamageMax":755,"stats":{"2":172,"3":115,"4":62,"6":85,"14":1532},"isBase":true}}}, +{"id":63791,"name":"Big Bendy Blasting Bow","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,268,402,0,0,0,0,136,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1917,"weaponDamageMax":3562,"weaponSpeed":2.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1917,"weaponDamageMax":3562,"stats":{"1":268,"2":402,"7":136,"11":203},"isBase":true}}}, +{"id":63792,"name":"Laquered Lung-Leak Longknife","icon":"inv_knife_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,115,172,0,0,0,75,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":914,"weaponDamageMax":1698,"weaponSpeed":1.8,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":914,"weaponDamageMax":1698,"stats":{"1":115,"2":172,"6":75,"11":78},"isBase":true}}}, +{"id":63793,"name":"Shard-Heart Ring","icon":"inv_misc_moodring2","type":11,"stats":[130,0,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"6":72,"11":95},"isBase":true}}}, +{"id":63794,"name":"Eye of Reversal","icon":"inv_misc_eye_04","type":2,"stats":[0,0,195,130,0,92,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":92,"11":78},"isBase":true}}}, +{"id":63796,"name":"Dark-Eye Ring","icon":"inv_misc_moodring2","type":11,"stats":[130,0,195,0,0,0,72,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"6":72,"11":95},"isBase":true}}}, +{"id":63797,"name":"Eye of Despair","icon":"inv_misc_eye_04","type":2,"stats":[0,0,195,130,0,92,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":92,"11":78},"isBase":true}}}, +{"id":63799,"name":"Mace of the Gullet","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[115,0,172,0,0,0,0,0,82,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"0":115,"2":172,"8":82,"11":67},"isBase":true}}}, +{"id":63800,"name":"Clear-Eyed Waistguard","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,298,199,148,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":148,"11":107,"22":1760},"isBase":true}}}, +{"id":63801,"name":"Gauntlets of Dragonwrath","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":129,"7":135,"22":1390},"isBase":true}}}, +{"id":63802,"name":"Bastion-Clearing Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,402,268,0,0,152,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"6":152,"11":194,"22":1002},"isBase":true}}}, +{"id":63803,"name":"Torth-Slayer's Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,268,402,0,0,0,0,165,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"weaponSpeed":3.3,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"stats":{"1":268,"2":402,"7":165,"11":186},"isBase":true}}}, +{"id":63804,"name":"Dragonscorn Mace","icon":"inv_mace_1h_cataclysm_c_03","type":13,"weaponType":4,"handType":2,"stats":[115,0,172,0,0,0,0,0,82,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"0":115,"2":172,"8":82,"11":67},"isBase":true}}}, +{"id":63805,"name":"Furybound Waistplate","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,298,199,148,0,0,0,0,0,0,107,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":148,"11":107,"22":1760},"isBase":true}}}, +{"id":63806,"name":"Ale Soaked Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,298,199,0,0,129,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":129,"7":135,"22":1390},"isBase":true}}}, +{"id":63807,"name":"Narkrall's Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,402,268,0,0,152,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,1002,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"6":152,"11":194,"22":1002},"isBase":true}}}, +{"id":63808,"name":"Staff of Draconic Pacification","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,268,402,0,0,0,0,165,0,0,0,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"weaponSpeed":3.3,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2583,"weaponDamageMax":3875,"stats":{"1":268,"2":402,"7":165,"11":186},"isBase":true}}}, +{"id":63809,"name":"Legplates of Riven Futures","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,0,148,0,160,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"8":148,"10":160,"22":2575},"isBase":true}}}, +{"id":63810,"name":"Heartstone Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,173,260,0,0,88,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":88,"11":132,"22":1017},"isBase":true}}}, +{"id":63811,"name":"Diamond Clutching Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"5":98,"6":125,"22":705},"isBase":true}}}, +{"id":63812,"name":"Legplates of Cooled Magma","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,0,0,148,0,160,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"8":148,"10":160,"22":2575},"isBase":true}}}, +{"id":63813,"name":"Flameproof Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,173,260,0,0,88,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,1017,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":88,"11":132,"22":1017},"isBase":true}}}, +{"id":63814,"name":"Corruption Resistant Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"5":98,"6":125,"22":705},"isBase":true}}}, +{"id":63815,"name":"Wound-Binder Chestguard","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,349,233,175,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":175,"11":122,"22":2943},"isBase":true}}}, +{"id":63816,"name":"Alefire Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,195,130,0,0,70,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":70,"11":96,"22":647},"isBase":true}}}, +{"id":63817,"name":"Keg Smasher","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,100,150,0,0,69,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"stats":{"1":100,"2":150,"5":69,"8":63},"isBase":true}}}, +{"id":63818,"name":"Blundy's Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,349,233,175,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":175,"11":122,"22":2943},"isBase":true}}}, +{"id":63819,"name":"Keg-Stealer Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,195,130,0,0,70,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"6":70,"11":96,"22":647},"isBase":true}}}, +{"id":63820,"name":"Barrel Opener","icon":"inv_mace_1h_cataclysm_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,100,150,0,0,69,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"weaponSpeed":2.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":1148,"weaponDamageMax":2133,"stats":{"1":100,"2":150,"5":69,"8":63},"isBase":true}}}, +{"id":63821,"name":"Dead-Dwarf Shoulderpads","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,260,173,128,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":128,"6":93,"22":1587},"isBase":true}}}, +{"id":63822,"name":"Belt of Smashed Feathers","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,260,173,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":115,"7":115,"22":832},"isBase":true}}}, +{"id":63823,"name":"Hammered Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":76,"7":93,"22":493},"isBase":true}}}, +{"id":63824,"name":"Orc-Shock Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,260,173,128,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1587,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":128,"6":93,"22":1587},"isBase":true}}}, +{"id":63825,"name":"Belt of Bloody Dreams","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,260,173,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":115,"7":115,"22":832},"isBase":true}}}, +{"id":63826,"name":"Trophy-Taker Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,0,76,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"5":76,"7":93,"22":493},"isBase":true}}}, +{"id":63827,"name":"Skyshredder Battleplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,402,0,0,0,0,148,0,0,0,196,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":402,"7":148,"11":196,"22":3128},"isBase":true}}}, +{"id":63828,"name":"Aerial Assault Legguards","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,402,0,0,0,191,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"6":191,"11":157,"22":1946},"isBase":true}}}, +{"id":63829,"name":"Shocktrooper Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,268,402,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"7":178,"11":178,"22":1241},"isBase":true}}}, +{"id":63830,"name":"Air Raid Beacon","icon":"inv_misc_orb_05","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"7":100,"11":100},"isBase":true}}}, +{"id":63831,"name":"Flynn's Favorite Chestplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,402,0,0,0,0,148,0,0,0,196,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":402,"7":148,"11":196,"22":3128},"isBase":true}}}, +{"id":63832,"name":"Gryphon-Grip Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,268,402,0,0,0,191,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1946,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"6":191,"11":157,"22":1946},"isBase":true}}}, +{"id":63833,"name":"Dunwald Winged Helm","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,268,402,0,0,0,0,178,0,0,0,178,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":268,"2":402,"7":178,"11":178,"22":1241},"isBase":true}}}, +{"id":63834,"name":"Skyflight Beacon","icon":"inv_misc_orb_03","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,0,0,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"7":100,"11":100},"isBase":true}}}, +{"id":63835,"name":"Dunwald's Finest Bindings","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,76,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"5":76,"9":93,"22":1287},"isBase":true}}}, +{"id":63836,"name":"Barrel-Belly Gauntlets","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,260,173,107,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":107,"6":120,"22":924},"isBase":true}}}, +{"id":63837,"name":"Bubble-Brew Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,177,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":177,"6":118,"22":916},"isBase":true}}}, +{"id":63838,"name":"Shrine-Cleansing Purifier","icon":"inv_wand_01","type":12,"stats":[219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":219},"isBase":true}}}, +{"id":63839,"name":"Harmlight Token","icon":"inv_bijou_bronze","type":12,"stats":[0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"3":219},"isBase":true}}}, +{"id":63840,"name":"Juju of Nimbleness","icon":"inv_jewelry_necklace_25","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"11":219},"isBase":true}}}, +{"id":63841,"name":"Tank-Commander Insignia","icon":"inv_misc_token_argentdawn","type":12,"stats":[219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":219},"isBase":true}}}, +{"id":63842,"name":"World-Queller Focus","icon":"inv_misc_gem_pearl_06","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"11":219},"isBase":true}}}, +{"id":63843,"name":"Blood-Soaked Ale Mug","icon":"inv_drink_30_blackheartgrog","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"11":219},"isBase":true}}}, +{"id":63844,"name":"Ogre-Slayer Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[233,0,349,0,0,155,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"5":155,"10":155,"22":2943},"isBase":true}}}, +{"id":63845,"name":"Bracers of False Night","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,130,195,0,0,66,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"5":66,"6":99,"22":926},"isBase":true}}}, +{"id":63846,"name":"Cult-Hide Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,173,260,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":122,"8":104,"22":1109},"isBase":true}}}, +{"id":63847,"name":"Keg-Sized Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[233,0,349,0,0,155,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,2943,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"5":155,"10":155,"22":2943},"isBase":true}}}, +{"id":63848,"name":"Brewtaster Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,130,195,0,0,66,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"5":66,"6":99,"22":926},"isBase":true}}}, +{"id":63849,"name":"Aledrinker Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,173,260,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":122,"8":104,"22":1109},"isBase":true}}}, +{"id":63850,"name":"Krazzworks Climbing Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,0,0,125,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"7":125,"11":98,"22":1655},"isBase":true}}}, +{"id":63851,"name":"Repair Crew Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":98,"11":125,"22":1455},"isBase":true}}}, +{"id":63852,"name":"Sharkshield Cover","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"6":151,"7":158,"22":916},"isBase":true}}}, +{"id":63853,"name":"Gryphon-Seeker Waistplate","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,0,0,125,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"7":125,"11":98,"22":1655},"isBase":true}}}, +{"id":63854,"name":"Friendfinder Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,173,260,0,0,0,0,98,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1455,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":98,"11":125,"22":1455},"isBase":true}}}, +{"id":63855,"name":"Beak's Torn Feedbag","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,349,233,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,916,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"6":151,"7":158,"22":916},"isBase":true}}}, +{"id":63856,"name":"Crazed Pilot's Gloves","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":107,"7":120,"22":1839},"isBase":true}}}, +{"id":63857,"name":"Techie's Hard Hat","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":175,"7":122,"22":1719},"isBase":true}}}, +{"id":63858,"name":"Cartographer's Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,349,233,122,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":122,"6":175,"22":1479},"isBase":true}}}, +{"id":63859,"name":"Stormhammer Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,260,173,107,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":107,"7":120,"22":1839},"isBase":true}}}, +{"id":63860,"name":"Hammerhead Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,349,233,175,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":175,"7":122,"22":1719},"isBase":true}}}, +{"id":63861,"name":"Keegan's Windswept Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,349,233,122,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":122,"6":175,"22":1479},"isBase":true}}}, +{"id":63862,"name":"Tool-Bracing Armguards","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,92,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":92,"7":78,"22":1287},"isBase":true}}}, +{"id":63863,"name":"Rivetproof Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,0,148,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"6":148,"7":160,"22":1479},"isBase":true}}}, +{"id":63864,"name":"Gunnery Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,128,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":128,"11":93,"22":705},"isBase":true}}}, +{"id":63865,"name":"Weapon-Bearer Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,195,130,92,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":92,"7":78,"22":1287},"isBase":true}}}, +{"id":63866,"name":"Camp-Cleaner Chestguard","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,233,349,0,0,0,148,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1479,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"6":148,"7":160,"22":1479},"isBase":true}}}, +{"id":63867,"name":"Forge-Hold Gloves","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,260,173,128,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,705,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":128,"11":93,"22":705},"isBase":true}}}, +{"id":63868,"name":"Skyfallen Plate Belt","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,98,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"5":98,"11":125,"22":1655},"isBase":true}}}, +{"id":63869,"name":"Bracers of the Lost Leader","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,93,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":93,"7":76,"22":926},"isBase":true}}}, +{"id":63870,"name":"Hull-Shatter Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"5":115,"7":115,"22":846},"isBase":true}}}, +{"id":63871,"name":"Stoutwaist Girdle","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[173,0,260,0,0,98,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,1655,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"5":98,"11":125,"22":1655},"isBase":true}}}, +{"id":63872,"name":"Loyalty-Seeker Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,195,130,93,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,926,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":93,"7":76,"22":926},"isBase":true}}}, +{"id":63873,"name":"Clan-Heart Shoulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"5":115,"7":115,"22":846},"isBase":true}}}, +{"id":63874,"name":"Legguards of Samophlangination","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"6":151,"7":158,"22":2575},"isBase":true}}}, +{"id":63875,"name":"Waistguard of Calibrated Caliphracts","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,104,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":104,"7":122,"22":1190},"isBase":true}}}, +{"id":63876,"name":"Smoot-Smacking Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,127,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":127,"11":96,"22":1109},"isBase":true}}}, +{"id":63877,"name":"Smoot's Shredded Smock","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,130,195,0,0,0,0,88,0,0,0,84,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"7":88,"11":84,"22":564},"isBase":true}}}, +{"id":63878,"name":"Legplates of Remnants","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[233,0,349,0,0,0,151,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2575,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"0":233,"2":349,"6":151,"7":158,"22":2575},"isBase":true}}}, +{"id":63879,"name":"Waistguard of Salvaged Happiness","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,0,260,173,104,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":104,"7":122,"22":1190},"isBase":true}}}, +{"id":63880,"name":"Fire-Dodged Shoulderpads","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,260,173,127,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1109,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":127,"11":96,"22":1109},"isBase":true}}}, +{"id":63881,"name":"Drape of Lost Valuables","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,130,195,0,0,0,0,88,0,0,0,84,0,0,0,0,0,0,0,0,0,0,564,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"7":88,"11":84,"22":564},"isBase":true}}}, +{"id":63882,"name":"Treads of the Common Man","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,260,173,132,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":132,"6":88,"22":2023},"isBase":true}}}, +{"id":63883,"name":"Helm of Furious Uprising","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":160,"7":148,"22":1719},"isBase":true}}}, +{"id":63884,"name":"Merchant-Rise Shoulderguards","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,93,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":93,"11":128,"22":846},"isBase":true}}}, +{"id":63885,"name":"Tank-Defending Treads","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,260,173,132,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2023,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":132,"6":88,"22":2023},"isBase":true}}}, +{"id":63886,"name":"Nature-Crush Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,233,349,0,0,160,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"5":160,"7":148,"22":1719},"isBase":true}}}, +{"id":63887,"name":"Tread-Bind Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,260,173,93,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,846,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"4":93,"11":128,"22":846},"isBase":true}}}, +{"id":63889,"name":"Shackle-Shatter Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,150,100,0,0,0,71,0,0,0,58,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":353,"weaponDamageMax":656,"weaponSpeed":1.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":353,"weaponDamageMax":656,"stats":{"2":150,"3":100,"7":71,"11":58,"14":1335},"isBase":true}}}, +{"id":63890,"name":"Ring of Rebellion","icon":"inv_misc_moodring1","type":11,"stats":[0,130,195,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"5":87,"7":87},"isBase":true}}}, +{"id":63892,"name":"Beach-Sweeper Wand","icon":"inv_wand_1h_cataclysm_b_02","type":14,"rangedWeaponType":6,"stats":[0,0,150,100,0,0,0,71,0,0,0,58,0,0,1335,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":190,"weaponDamageMin":353,"weaponDamageMax":656,"weaponSpeed":1.6,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":190,"weaponDamageMin":353,"weaponDamageMax":656,"stats":{"2":150,"3":100,"7":71,"11":58,"14":1335},"isBase":true}}}, +{"id":63893,"name":"Signet of Bloody Sands","icon":"inv_misc_moodring1","type":11,"stats":[0,130,195,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"5":87,"7":87},"isBase":true}}}, +{"id":63894,"name":"Heartblood Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"6":120,"7":107,"22":1839},"isBase":true}}}, +{"id":63895,"name":"Dragonheart Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,0,89,82,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"7":89,"8":82,"22":647},"isBase":true}}}, +{"id":63896,"name":"Blood-Bind Sandals","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":98,"7":125,"22":775},"isBase":true}}}, +{"id":63897,"name":"Coregrip Gauntlets","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[173,0,260,0,0,0,120,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1839,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"6":120,"7":107,"22":1839},"isBase":true}}}, +{"id":63898,"name":"Whirlpool Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,130,195,0,0,0,0,89,82,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"1":130,"2":195,"7":89,"8":82,"22":647},"isBase":true}}}, +{"id":63899,"name":"Water-Drill Treads","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,260,173,0,0,98,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"2":260,"3":173,"6":98,"7":125,"22":775},"isBase":true}}}, +{"id":63900,"name":"Shredder-Salvage Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":122,"11":104,"22":2207},"isBase":true}}}, +{"id":63901,"name":"Leggings of Shredded Protection","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,155,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":155,"11":155,"22":1852},"isBase":true}}}, +{"id":63902,"name":"Mechano-Assembler Headguard","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,136,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":136,"6":167,"22":1201},"isBase":true}}}, +{"id":63903,"name":"Song-Reflecting Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[173,0,260,0,0,0,0,0,122,0,0,104,0,0,0,0,0,0,0,0,0,0,2207,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"0":173,"2":260,"8":122,"11":104,"22":2207},"isBase":true}}}, +{"id":63904,"name":"Mast-Bound Leggings","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,349,233,155,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,1852,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":155,"11":155,"22":1852},"isBase":true}}}, +{"id":63905,"name":"Wax-Filled Hood","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,349,233,136,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"2":349,"3":233,"4":136,"6":167,"22":1201},"isBase":true}}}, +{"id":63906,"name":"Conch-Sound Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,93,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":93,"11":128,"22":1190},"isBase":true}}}, +{"id":63907,"name":"Heth'Jatari Battlegloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,0,0,128,0,0,0,93,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":128,"11":93,"22":924},"isBase":true}}}, +{"id":63908,"name":"Bracers of the Fallen Fathom-Lord","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,87,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":87,"7":87,"22":493},"isBase":true}}}, +{"id":63909,"name":"Chill-Tail Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,173,260,0,0,93,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1190,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"5":93,"11":128,"22":1190},"isBase":true}}}, +{"id":63910,"name":"Blackscale Wraps","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,173,260,0,0,0,0,128,0,0,0,93,0,0,0,0,0,0,0,0,0,0,924,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"7":128,"11":93,"22":924},"isBase":true}}}, +{"id":63911,"name":"Myrmidon-Slaying Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,195,130,87,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,493,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"2":195,"3":130,"4":87,"7":87,"22":493},"isBase":true}}}, +{"id":63912,"name":"Twilight Mirrorshield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[149,0,224,0,0,97,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":97,"9":101,"22":11504},"isBase":true}}}, +{"id":63913,"name":"Twilight-Heart Shoulderplates","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,298,199,0,0,110,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":110,"7":146,"22":2346},"isBase":true}}}, +{"id":63914,"name":"Mindsliced Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"7":186,"11":165,"22":2224},"isBase":true}}}, +{"id":63915,"name":"Vision-Tainted Treads","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,298,199,0,0,0,116,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"7":116,"11":142,"22":1050},"isBase":true}}}, +{"id":63916,"name":"Belt of Mystical Betrayal","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,101,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":101,"11":151,"22":644},"isBase":true}}}, +{"id":63917,"name":"Truthbreaker Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[149,0,224,0,0,97,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"5":97,"9":101,"22":11504},"isBase":true}}}, +{"id":63918,"name":"Detective's Shoulderplates","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,298,199,0,0,110,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":110,"7":146,"22":2346},"isBase":true}}}, +{"id":63919,"name":"Corruption-Seeking Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,402,268,0,0,0,186,0,0,0,165,0,0,0,0,0,0,0,0,0,0,2224,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":402,"3":268,"7":186,"11":165,"22":2224},"isBase":true}}}, +{"id":63920,"name":"Treads of Revelation","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,298,199,0,0,0,116,0,0,0,142,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"7":116,"11":142,"22":1050},"isBase":true}}}, +{"id":63921,"name":"Truth-Seeker Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,101,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":101,"11":151,"22":644},"isBase":true}}}, +{"id":63922,"name":"Awestruck Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,72,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"5":72,"7":95,"22":1287},"isBase":true}}}, +{"id":63923,"name":"Hauberk of Shock","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,0,175,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"6":175,"11":122,"22":2116},"isBase":true}}}, +{"id":63924,"name":"Blade-Dodging Girdle","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,112,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"6":112,"11":117,"22":832},"isBase":true}}}, +{"id":63925,"name":"Scavenger Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[130,0,195,0,0,72,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":247,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":247,"stats":{"0":130,"2":195,"5":72,"7":95,"22":1287},"isBase":true}}}, +{"id":63926,"name":"Reconstructing Hauberk","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,233,349,0,0,0,175,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,2116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"stats":{"1":233,"2":349,"6":175,"11":122,"22":2116},"isBase":true}}}, +{"id":63927,"name":"Machine-Linker Girdle","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,173,260,0,0,0,112,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,832,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":329,"stats":{"1":173,"2":260,"6":112,"11":117,"22":832},"isBase":true}}}, +{"id":64377,"name":"Zin'rokh, Destroyer of Worlds","icon":"trade_archaeology_zinrokh-sword","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,216,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3789,"weaponDamageMax":5685,"weaponSpeed":3.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3789,"weaponDamageMax":5685,"stats":{"0":341,"2":512,"5":216,"6":238},"isBase":true}}}, +{"id":64460,"name":"Nifflevar Bearded Axe","icon":"inv_axe_97","type":13,"weaponType":1,"handType":2,"stats":[0,36,87,0,0,24,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":540,"weaponDamageMax":1004,"weaponSpeed":2.6,"ilvl":226,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"226":{"randPropPoints":93,"weaponDamageMin":540,"weaponDamageMax":1004,"stats":{"1":36,"2":87,"5":24,"6":37},"isBase":true}}}, +{"id":64489,"name":"Staff of Sorcerer-Thane Thaurissan","icon":"trade_archaeology_staffofsorcerer_than-thaurissan","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1047,"weaponDamageMax":1571,"weaponSpeed":2.1,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1047,"weaponDamageMax":1571,"stats":{"2":512,"3":341,"6":228,"7":228,"14":1955},"isBase":true}}}, +{"id":64644,"name":"Headdress of the First Shaman","icon":"trade_archaeology_ancientorcshamanheaddress","type":1,"armorType":3,"stats":[0,39,21,0,0,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,0,0,0,0],"gemSockets":[2,3,4],"socketBonus":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":70,"ilvl":105,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"105":{"randPropPoints":70,"stats":{"1":39,"2":21,"5":22,"6":22,"22":720},"isBase":true}}}, +{"id":64645,"name":"Tyrande's Favorite Doll","icon":"trade_archaeology_tyrandesfavoritedoll","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":64681,"name":"Bloodthirsty Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"16":63,"22":993},"isBase":true}}}, +{"id":64682,"name":"Bloodthirsty Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63,"22":993},"isBase":true}}}, +{"id":64683,"name":"Bloodthirsty Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[158,0,237,0,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"7":105,"11":105,"16":63,"22":1402},"isBase":true}}}, +{"id":64684,"name":"Bloodthirsty Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[158,0,237,0,0,0,105,0,105,0,0,0,0,0,0,0,63,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"8":105,"16":63,"22":1402},"isBase":true}}}, +{"id":64685,"name":"Bloodthirsty Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,158,225,0,0,105,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":225,"5":105,"6":105,"16":63,"22":677},"isBase":true}}}, +{"id":64686,"name":"Bloodthirsty Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,158,225,0,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":225,"7":105,"11":105,"16":63,"22":677},"isBase":true}}}, +{"id":64687,"name":"Bloodthirsty Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":267,"16":84},"isBase":true}}}, +{"id":64688,"name":"Bloodthirsty Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"3":267,"16":84},"isBase":true}}}, +{"id":64689,"name":"Bloodthirsty Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":267,"16":84},"isBase":true}}}, +{"id":64690,"name":"Bloodthirsty Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,237,158,0,105,0,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"5":105,"7":105,"16":63},"isBase":true}}}, +{"id":64691,"name":"Bloodthirsty Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,237,158,0,0,105,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":105,"11":105,"16":63},"isBase":true}}}, +{"id":64692,"name":"Bloodthirsty Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"7":105,"16":63},"isBase":true}}}, +{"id":64693,"name":"Bloodthirsty Gladiator's Barrier","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,270,180,0,0,120,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":120,"16":120,"22":11803},"isBase":true}}}, +{"id":64694,"name":"Bloodthirsty Gladiator's Baton of Light","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,207,138,92,0,0,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":581,"weaponDamageMax":1080,"weaponSpeed":1.9,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":581,"weaponDamageMax":1080,"stats":{"2":207,"3":138,"4":92,"14":1848,"16":92},"isBase":true}}}, +{"id":64695,"name":"Bloodthirsty Gladiator's Battle Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,0,0,215,0,0,0,0,0,0,0,1849,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":943,"weaponDamageMax":1415,"weaponSpeed":2,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":943,"weaponDamageMax":1415,"stats":{"2":484,"3":323,"6":215,"14":1849,"16":215},"isBase":true}}}, +{"id":64696,"name":"Bloodthirsty Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,316,190,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"11":140,"16":84,"22":870},"isBase":true}}}, +{"id":64697,"name":"Bloodthirsty Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,316,190,120,0,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"7":140,"16":84,"22":870},"isBase":true}}}, +{"id":64698,"name":"Bloodthirsty Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"16":63,"22":677},"isBase":true}}}, +{"id":64699,"name":"Bloodthirsty Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,677,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63,"22":677},"isBase":true}}}, +{"id":64700,"name":"Bloodthirsty Gladiator's Bonecracker","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64701,"name":"Bloodthirsty Gladiator's Bonegrinder","icon":"inv_mace_119","type":13,"weaponType":4,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"0":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64702,"name":"Bloodthirsty Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,190,300,0,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":300,"6":140,"7":120,"16":84,"22":1064},"isBase":true}}}, +{"id":64703,"name":"Bloodthirsty Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,190,300,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":300,"6":120,"11":140,"16":84,"22":1064},"isBase":true}}}, +{"id":64704,"name":"Bloodthirsty Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"16":63,"22":1402},"isBase":true}}}, +{"id":64705,"name":"Bloodthirsty Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,1402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63,"22":1402},"isBase":true}}}, +{"id":64706,"name":"Bloodthirsty Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,158,237,0,0,0,105,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":105,"7":105,"16":63,"22":576},"isBase":true}}}, +{"id":64707,"name":"Bloodthirsty Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,158,237,0,0,105,0,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"5":105,"11":105,"16":63,"22":576},"isBase":true}}}, +{"id":64708,"name":"Bloodthirsty Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":2269},"isBase":true}}}, +{"id":64709,"name":"Bloodthirsty Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,190,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"6":140,"16":84,"22":1418},"isBase":true}}}, +{"id":64710,"name":"Bloodthirsty Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":64711,"name":"Bloodthirsty Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1985},"isBase":true}}}, +{"id":64712,"name":"Bloodthirsty Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1702},"isBase":true}}}, +{"id":64713,"name":"Bloodthirsty Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[158,0,237,0,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"7":105,"11":105,"16":63},"isBase":true}}}, +{"id":64714,"name":"Bloodthirsty Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[158,0,237,0,0,0,105,0,105,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"8":105,"16":63},"isBase":true}}}, +{"id":64715,"name":"Bloodthirsty Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,316,190,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"11":140,"16":84,"22":1803},"isBase":true}}}, +{"id":64716,"name":"Bloodthirsty Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,316,190,120,0,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1803,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"7":140,"16":84,"22":1803},"isBase":true}}}, +{"id":64717,"name":"Bloodthirsty Gladiator's Cleaver","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64718,"name":"Bloodthirsty Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[158,0,237,0,0,0,105,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"7":105,"16":63,"22":576},"isBase":true}}}, +{"id":64719,"name":"Bloodthirsty Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[158,0,237,0,0,105,0,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"5":105,"11":105,"16":63,"22":576},"isBase":true}}}, +{"id":64720,"name":"Bloodthirsty Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,316,190,0,120,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"5":120,"7":140,"16":84,"22":648},"isBase":true}}}, +{"id":64721,"name":"Bloodthirsty Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,316,190,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"11":140,"16":84,"22":648},"isBase":true}}}, +{"id":64722,"name":"Bloodthirsty Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,316,190,120,0,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,648,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"7":140,"16":84,"22":648},"isBase":true}}}, +{"id":64723,"name":"Bloodthirsty Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,237,158,0,105,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"5":105,"6":105,"16":63,"22":504},"isBase":true}}}, +{"id":64724,"name":"Bloodthirsty Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"16":63,"22":504},"isBase":true}}}, +{"id":64725,"name":"Bloodthirsty Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63,"22":504},"isBase":true}}}, +{"id":64726,"name":"Bloodthirsty Gladiator's Decapitator","icon":"inv_axe_115","type":13,"weaponType":1,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"0":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64727,"name":"Bloodthirsty Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,190,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"6":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64728,"name":"Bloodthirsty Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64729,"name":"Bloodthirsty Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64730,"name":"Bloodthirsty Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64731,"name":"Bloodthirsty Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1160},"isBase":true}}}, +{"id":64732,"name":"Bloodthirsty Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,237,158,0,0,158,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":158,"7":105,"16":63,"22":576},"isBase":true}}}, +{"id":64733,"name":"Bloodthirsty Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"16":63,"22":576},"isBase":true}}}, +{"id":64734,"name":"Bloodthirsty Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63,"22":576},"isBase":true}}}, +{"id":64735,"name":"Bloodthirsty Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64736,"name":"Bloodthirsty Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64737,"name":"Bloodthirsty Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64738,"name":"Bloodthirsty Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64739,"name":"Bloodthirsty Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64740,"name":"Bloodthirsty Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":64741,"name":"Bloodthirsty Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"4":267,"16":84},"isBase":true}}}, +{"id":64742,"name":"Bloodthirsty Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"11":267,"16":84},"isBase":true}}}, +{"id":64743,"name":"Bloodthirsty Gladiator's Endgame","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,270,180,0,0,120,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":120,"16":120},"isBase":true}}}, +{"id":64744,"name":"Bloodthirsty Gladiator's Energy Staff","icon":"inv_stave_2h_pvp400_c_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,215,0,0,0,0,0,0,0,0,0,1849,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":943,"weaponDamageMax":1415,"weaponSpeed":2,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":943,"weaponDamageMax":1415,"stats":{"2":484,"3":323,"4":215,"14":1849,"16":215},"isBase":true}}}, +{"id":64745,"name":"Bloodthirsty Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,140,0,0,0,120,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":140,"11":120,"16":84,"22":864},"isBase":true}}}, +{"id":64746,"name":"Bloodthirsty Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64747,"name":"Bloodthirsty Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,316,190,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"5":120,"6":140,"16":84,"22":720},"isBase":true}}}, +{"id":64748,"name":"Bloodthirsty Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64749,"name":"Bloodthirsty Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,149,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":149,"11":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64750,"name":"Bloodthirsty Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,300,190,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":300,"3":190,"6":140,"7":120,"16":84,"22":1064},"isBase":true}}}, +{"id":64751,"name":"Bloodthirsty Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1064,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1064},"isBase":true}}}, +{"id":64752,"name":"Bloodthirsty Gladiator's Gavel","icon":"inv_mace_111","type":13,"weaponType":4,"handType":2,"stats":[0,0,207,138,0,0,92,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"stats":{"2":207,"3":138,"6":92,"14":1848,"16":92},"isBase":true}}}, +{"id":64753,"name":"Bloodthirsty Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[190,0,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1803,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"6":120,"11":140,"16":84,"22":1803},"isBase":true}}}, +{"id":64754,"name":"Bloodthirsty Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[190,0,316,0,0,120,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1803,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"7":140,"16":84,"22":1803},"isBase":true}}}, +{"id":64755,"name":"Bloodthirsty Gladiator's Greatsword","icon":"inv_sword_157","type":13,"weaponType":9,"handType":4,"stats":[323,0,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"0":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64756,"name":"Bloodthirsty Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,316,190,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2204,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":140,"7":120,"16":84,"22":2204},"isBase":true}}}, +{"id":64757,"name":"Bloodthirsty Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,2204,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":2204},"isBase":true}}}, +{"id":64758,"name":"Bloodthirsty Gladiator's Hacker","icon":"inv_axe_110","type":13,"weaponType":1,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64760,"name":"Bloodthirsty Gladiator's Heavy Crossbow","icon":"inv_weapon_crossbow_38","type":14,"rangedWeaponType":2,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"weaponSpeed":3,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"stats":{"1":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64761,"name":"Bloodthirsty Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":267,"16":84},"isBase":true}}}, +{"id":64762,"name":"Bloodthirsty Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"3":267,"16":84},"isBase":true}}}, +{"id":64763,"name":"Bloodthirsty Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":267,"16":84},"isBase":true}}}, +{"id":64764,"name":"Bloodthirsty Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64765,"name":"Bloodthirsty Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64766,"name":"Bloodthirsty Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1354},"isBase":true}}}, +{"id":64767,"name":"Bloodthirsty Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64768,"name":"Bloodthirsty Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1160},"isBase":true}}}, +{"id":64769,"name":"Bloodthirsty Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,190,316,0,0,120,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64770,"name":"Bloodthirsty Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64771,"name":"Bloodthirsty Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64772,"name":"Bloodthirsty Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1160},"isBase":true}}}, +{"id":64773,"name":"Bloodthirsty Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64774,"name":"Bloodthirsty Gladiator's Slasher","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64775,"name":"Bloodthirsty Gladiator's Fleshslicer","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64776,"name":"Bloodthirsty Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":2269},"isBase":true}}}, +{"id":64777,"name":"Bloodthirsty Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,190,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"6":140,"16":84,"22":1418},"isBase":true}}}, +{"id":64778,"name":"Bloodthirsty Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":64779,"name":"Bloodthirsty Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1985},"isBase":true}}}, +{"id":64780,"name":"Bloodthirsty Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1702},"isBase":true}}}, +{"id":64781,"name":"Bloodthirsty Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,190,316,0,0,120,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"7":140,"16":84,"22":1276},"isBase":true}}}, +{"id":64782,"name":"Bloodthirsty Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,190,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"6":120,"11":140,"16":84,"22":1276},"isBase":true}}}, +{"id":64783,"name":"Bloodthirsty Gladiator's Longbow","icon":"inv_weapon_bow_56","type":14,"rangedWeaponType":1,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"weaponSpeed":3,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"stats":{"1":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64784,"name":"Bloodthirsty Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":2269},"isBase":true}}}, +{"id":64785,"name":"Bloodthirsty Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,316,190,140,0,120,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"6":120,"16":84,"22":1418},"isBase":true}}}, +{"id":64786,"name":"Bloodthirsty Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":1843},"isBase":true}}}, +{"id":64787,"name":"Bloodthirsty Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1985},"isBase":true}}}, +{"id":64788,"name":"Bloodthirsty Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":1702},"isBase":true}}}, +{"id":64789,"name":"Bloodthirsty Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":64790,"name":"Bloodthirsty Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":64791,"name":"Bloodthirsty Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"4":267,"16":84},"isBase":true}}}, +{"id":64792,"name":"Bloodthirsty Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"4":267,"16":84},"isBase":true}}}, +{"id":64793,"name":"Bloodthirsty Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"11":267,"16":84},"isBase":true}}}, +{"id":64794,"name":"Bloodthirsty Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"11":267,"16":84},"isBase":true}}}, +{"id":64795,"name":"Bloodthirsty Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,316,190,140,0,0,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"7":120,"16":84,"22":720},"isBase":true}}}, +{"id":64796,"name":"Bloodthirsty Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64797,"name":"Bloodthirsty Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64798,"name":"Bloodthirsty Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":864},"isBase":true}}}, +{"id":64799,"name":"Bloodthirsty Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64800,"name":"Bloodthirsty Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,158,237,0,0,0,105,0,105,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":105,"8":105,"16":63},"isBase":true}}}, +{"id":64801,"name":"Bloodthirsty Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,158,237,0,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"7":105,"11":105,"16":63},"isBase":true}}}, +{"id":64802,"name":"Bloodthirsty Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64803,"name":"Bloodthirsty Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,316,190,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":140,"7":120,"16":84,"22":2003},"isBase":true}}}, +{"id":64804,"name":"Bloodthirsty Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64805,"name":"Bloodthirsty Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":2805},"isBase":true}}}, +{"id":64806,"name":"Bloodthirsty Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":2404},"isBase":true}}}, +{"id":64807,"name":"Bloodthirsty Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,237,158,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"11":105,"16":63},"isBase":true}}}, +{"id":64808,"name":"Bloodthirsty Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,237,158,0,0,158,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"6":158,"11":105,"16":63},"isBase":true}}}, +{"id":64809,"name":"Bloodthirsty Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"7":105,"16":63},"isBase":true}}}, +{"id":64810,"name":"Bloodthirsty Gladiator's Pike","icon":"inv_staff_110","type":13,"weaponType":6,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"1":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64811,"name":"Bloodthirsty Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64812,"name":"Bloodthirsty Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64813,"name":"Bloodthirsty Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64814,"name":"Bloodthirsty Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64815,"name":"Bloodthirsty Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64816,"name":"Bloodthirsty Gladiator's Pummeler","icon":"inv_mace_120","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64817,"name":"Bloodthirsty Gladiator's Quickblade","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64818,"name":"Bloodthirsty Gladiator's Redoubt","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,270,180,120,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":120,"16":120,"22":11803},"isBase":true}}}, +{"id":64823,"name":"Bloodthirsty Gladiator's Reprieve","icon":"inv_misc_book_18","type":13,"weaponType":5,"handType":3,"stats":[0,0,270,180,120,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":120,"16":120},"isBase":true}}}, +{"id":64824,"name":"Bloodthirsty Gladiator's Rifle","icon":"inv_weapon_rifle_39","type":14,"rangedWeaponType":3,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"weaponSpeed":3,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2829,"weaponDamageMax":4244,"stats":{"1":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64825,"name":"Bloodthirsty Gladiator's Right Render","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64826,"name":"Bloodthirsty Gladiator's Ripper","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64827,"name":"Bloodthirsty Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":2269},"isBase":true}}}, +{"id":64828,"name":"Bloodthirsty Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,316,190,140,0,0,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"7":120,"16":84,"22":1418},"isBase":true}}}, +{"id":64829,"name":"Bloodthirsty Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":64830,"name":"Bloodthirsty Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1985},"isBase":true}}}, +{"id":64831,"name":"Bloodthirsty Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1702},"isBase":true}}}, +{"id":64832,"name":"Bloodthirsty Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,158,237,0,0,105,0,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"5":105,"11":105,"16":63},"isBase":true}}}, +{"id":64833,"name":"Bloodthirsty Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,158,237,0,0,0,105,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":105,"7":105,"16":63},"isBase":true}}}, +{"id":64834,"name":"Bloodthirsty Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,190,316,0,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"6":140,"7":120,"16":84,"22":1560},"isBase":true}}}, +{"id":64835,"name":"Bloodthirsty Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,316,190,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":140,"7":120,"16":84,"22":1560},"isBase":true}}}, +{"id":64836,"name":"Bloodthirsty Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,190,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"6":120,"11":140,"16":84,"22":1560},"isBase":true}}}, +{"id":64837,"name":"Bloodthirsty Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1560,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1560},"isBase":true}}}, +{"id":64838,"name":"Bloodthirsty Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,316,190,140,0,120,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"6":120,"16":84,"22":720},"isBase":true}}}, +{"id":64839,"name":"Bloodthirsty Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":936},"isBase":true}}}, +{"id":64840,"name":"Bloodthirsty Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1008},"isBase":true}}}, +{"id":64841,"name":"Bloodthirsty Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":864},"isBase":true}}}, +{"id":64842,"name":"Bloodthirsty Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64843,"name":"Bloodthirsty Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64844,"name":"Bloodthirsty Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64845,"name":"Bloodthirsty Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64846,"name":"Bloodthirsty Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64847,"name":"Bloodthirsty Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64848,"name":"Bloodthirsty Gladiator's Shanker","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1259,"weaponDamageMax":1889,"weaponSpeed":1.8,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1259,"weaponDamageMax":1889,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64849,"name":"Bloodthirsty Gladiator's Shield Wall","icon":"inv_shield_pvp400_c_01","type":13,"weaponType":7,"handType":3,"stats":[180,0,270,0,0,0,120,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"6":120,"16":120,"22":11803},"isBase":true}}}, +{"id":64850,"name":"Bloodthirsty Gladiator's Shiv","icon":"inv_weapon_shortblade_106","type":13,"weaponType":2,"handType":3,"stats":[0,138,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"weaponSpeed":1.8,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"stats":{"1":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64851,"name":"Bloodthirsty Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[158,0,237,0,0,105,0,0,0,0,0,105,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"5":105,"11":105,"16":63},"isBase":true}}}, +{"id":64852,"name":"Bloodthirsty Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[158,0,237,0,0,0,105,105,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"7":105,"16":63},"isBase":true}}}, +{"id":64853,"name":"Bloodthirsty Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,140,0,0,0,120,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":140,"11":120,"16":84,"22":864},"isBase":true}}}, +{"id":64854,"name":"Bloodthirsty Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64855,"name":"Bloodthirsty Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,316,190,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"5":120,"6":140,"16":84,"22":720},"isBase":true}}}, +{"id":64856,"name":"Bloodthirsty Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64857,"name":"Bloodthirsty Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,149,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":149,"11":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64858,"name":"Bloodthirsty Gladiator's Slicer","icon":"inv_sword_156","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,92,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1818,"weaponDamageMax":2728,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1818,"weaponDamageMax":2728,"stats":{"0":138,"2":207,"6":92,"16":92},"isBase":true}}}, +{"id":64859,"name":"Bloodthirsty Gladiator's Spellblade","icon":"inv_weapon_shortblade_107","type":13,"weaponType":2,"handType":2,"stats":[0,0,207,138,0,0,92,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"stats":{"2":207,"3":138,"6":92,"14":1848,"16":92},"isBase":true}}}, +{"id":64860,"name":"Bloodthirsty Gladiator's Staff","icon":"inv_staff_111","type":13,"weaponType":8,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":1886,"weaponDamageMax":2829,"weaponSpeed":2,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":1886,"weaponDamageMax":2829,"stats":{"1":323,"2":484,"6":215,"16":215},"isBase":true}}}, +{"id":64861,"name":"Bloodthirsty Gladiator's Touch of Defeat","icon":"inv_wand_36","type":14,"rangedWeaponType":6,"stats":[0,0,207,138,0,0,92,0,0,0,0,0,0,0,1848,0,92,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":581,"weaponDamageMax":1080,"weaponSpeed":1.9,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":581,"weaponDamageMax":1080,"stats":{"2":207,"3":138,"6":92,"14":1848,"16":92},"isBase":true}}}, +{"id":64862,"name":"Bloodthirsty Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,316,190,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,792,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":140,"7":120,"16":84,"22":792},"isBase":true}}}, +{"id":64863,"name":"Bloodthirsty Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,316,190,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,792,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"11":140,"16":84,"22":792},"isBase":true}}}, +{"id":64864,"name":"Bloodthirsty Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,792,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3,5,8],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":792},"isBase":true}}}, +{"id":64865,"name":"Bloodthirsty Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,190,300,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":300,"6":120,"11":140,"16":84,"22":870},"isBase":true}}}, +{"id":64866,"name":"Bloodthirsty Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,190,300,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,870,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,6,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":300,"6":120,"11":140,"16":84,"22":870},"isBase":true}}}, +{"id":64867,"name":"Bloodthirsty Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,316,190,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"11":140,"16":84,"22":1276},"isBase":true}}}, +{"id":64868,"name":"Bloodthirsty Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,316,190,120,0,0,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1276,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"7":140,"16":84,"22":1276},"isBase":true}}}, +{"id":64869,"name":"Bloodthirsty Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[190,0,316,0,0,0,140,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2204,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"6":140,"7":120,"16":84,"22":2204},"isBase":true}}}, +{"id":64870,"name":"Bloodthirsty Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[190,0,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,2204,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4,9,10],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"6":120,"11":140,"16":84,"22":2204},"isBase":true}}}, +{"id":64872,"name":"Bloodthirsty Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,158,237,0,0,105,105,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"5":105,"6":105,"16":63,"22":993},"isBase":true}}}, +{"id":64873,"name":"Bloodthirsty Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,158,237,0,0,0,0,105,0,0,0,105,0,0,0,0,63,0,0,0,0,0,993,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[2,7],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"7":105,"11":105,"16":63,"22":993},"isBase":true}}}, +{"id":64874,"name":"Bloodthirsty Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,316,190,0,0,120,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"7":140,"16":84,"22":967},"isBase":true}}}, +{"id":64875,"name":"Bloodthirsty Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":1257},"isBase":true}}}, +{"id":64876,"name":"Bloodthirsty Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64877,"name":"Bloodthirsty Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64878,"name":"Bloodthirsty Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":1160},"isBase":true}}}, +{"id":64880,"name":"Staff of Ammunae","icon":"trade_archaeology_staff-of-ammunrae","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,247,0,194,0,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1196,"weaponDamageMax":1795,"weaponSpeed":2.4,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1196,"weaponDamageMax":1795,"stats":{"2":512,"3":341,"4":247,"6":194,"14":1955},"isBase":true}}}, +{"id":64885,"name":"Scimitar of the Sirocco","icon":"trade_archaeology_scimitar-of-the-sirocco","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,111,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":111,"7":74},"isBase":true}}}, +{"id":64904,"name":"Ring of the Boy Emperor","icon":"trade_archaeology_ring-of-the-boyemperor","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":64923,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":1160},"isBase":true}}}, +{"id":64924,"name":"Gladiator's Wyrmhide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64925,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64926,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":1257},"isBase":true}}}, +{"id":64927,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,316,190,0,0,120,140,0,0,0,0,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"6":120,"7":140,"16":84,"22":967},"isBase":true}}}, +{"id":64928,"name":"Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,149,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":149,"11":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64929,"name":"Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64930,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,316,190,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"5":120,"6":140,"16":84,"22":720},"isBase":true}}}, +{"id":64931,"name":"Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64932,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,140,0,0,0,120,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":140,"11":120,"16":84,"22":864},"isBase":true}}}, +{"id":64933,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64934,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64935,"name":"Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64936,"name":"Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64937,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64938,"name":"Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64939,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":864},"isBase":true}}}, +{"id":64940,"name":"Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1008},"isBase":true}}}, +{"id":64941,"name":"Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":936},"isBase":true}}}, +{"id":64942,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,316,190,140,0,120,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"6":120,"16":84,"22":720},"isBase":true}}}, +{"id":64943,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64944,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64945,"name":"Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64946,"name":"Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64947,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64948,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":2404},"isBase":true}}}, +{"id":64949,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":2805},"isBase":true}}}, +{"id":64950,"name":"Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64951,"name":"Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,316,190,140,0,0,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"7":120,"16":84,"22":2003},"isBase":true}}}, +{"id":64952,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64953,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64954,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":864},"isBase":true}}}, +{"id":64955,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64956,"name":"Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64957,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,316,190,140,0,0,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"7":120,"16":84,"22":720},"isBase":true}}}, +{"id":64958,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1702},"isBase":true}}}, +{"id":64959,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1985},"isBase":true}}}, +{"id":64960,"name":"Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":64961,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,190,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"6":140,"16":84,"22":1418},"isBase":true}}}, +{"id":64962,"name":"Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":2269},"isBase":true}}}, +{"id":64963,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64964,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1160},"isBase":true}}}, +{"id":64965,"name":"Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64966,"name":"Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64967,"name":"Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,190,316,0,0,120,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64968,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1160},"isBase":true}}}, +{"id":64969,"name":"Gladiator's Kodohide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64970,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1354},"isBase":true}}}, +{"id":64971,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64972,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64973,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,425,243,0,0,0,149,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1008,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":149,"11":189,"16":113,"22":1008},"isBase":true}}}, +{"id":64974,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1151,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1151},"isBase":true}}}, +{"id":64975,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,316,190,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,720,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"5":120,"6":140,"16":84,"22":720},"isBase":true}}}, +{"id":64976,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,936,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":936},"isBase":true}}}, +{"id":64977,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,316,190,0,0,0,140,0,0,0,120,0,0,0,0,84,0,0,0,0,0,864,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":140,"11":120,"16":84,"22":864},"isBase":true}}}, +{"id":64978,"name":"Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[190,0,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,2404,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"7":140,"8":120,"16":84,"22":2404},"isBase":true}}}, +{"id":64979,"name":"Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[243,0,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2805,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":189,"7":149,"16":113,"22":2805},"isBase":true}}}, +{"id":64980,"name":"Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[223,0,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,2605,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":223,"2":425,"8":189,"11":129,"16":113,"22":2605},"isBase":true}}}, +{"id":64981,"name":"Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[190,0,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,2003,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"0":190,"2":316,"5":120,"6":140,"16":84,"22":2003},"isBase":true}}}, +{"id":64982,"name":"Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[243,0,425,0,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,3206,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"0":243,"2":425,"6":149,"7":189,"16":113,"22":3206},"isBase":true}}}, +{"id":64983,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1160},"isBase":true}}}, +{"id":64984,"name":"Gladiator's Dragonhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1547,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":1547},"isBase":true}}}, +{"id":64985,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_mail_07","type":9,"armorType":2,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1354,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1354},"isBase":true}}}, +{"id":64986,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1257,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1257},"isBase":true}}}, +{"id":64987,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,190,316,0,0,0,120,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,967,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"6":120,"11":140,"16":84,"22":967},"isBase":true}}}, +{"id":64988,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,190,316,0,0,0,0,140,120,0,0,0,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"7":140,"8":120,"16":84,"22":1702},"isBase":true}}}, +{"id":64989,"name":"Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,243,425,0,0,0,189,149,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":189,"7":149,"16":113,"22":1985},"isBase":true}}}, +{"id":64990,"name":"Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,223,425,0,0,0,0,0,189,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":223,"2":425,"8":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":64991,"name":"Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,190,316,0,0,120,140,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"1":190,"2":316,"5":120,"6":140,"16":84,"22":1418},"isBase":true}}}, +{"id":64992,"name":"Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,243,425,0,0,0,149,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"1":243,"2":425,"6":149,"11":189,"16":113,"22":2269},"isBase":true}}}, +{"id":65147,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,316,190,120,0,0,0,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":120,"11":140,"16":84,"22":1702},"isBase":true}}}, +{"id":65148,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":1985},"isBase":true}}}, +{"id":65149,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,425,223,0,0,189,0,0,0,0,129,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"6":189,"11":129,"16":113,"22":1843},"isBase":true}}}, +{"id":65150,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,316,190,140,0,0,120,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"7":120,"16":84,"22":1418},"isBase":true}}}, +{"id":65151,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,425,243,149,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"4":149,"7":189,"16":113,"22":2269},"isBase":true}}}, +{"id":65152,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,316,190,0,0,0,120,0,0,0,140,0,0,0,0,84,0,0,0,0,0,1702,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"7":120,"11":140,"16":84,"22":1702},"isBase":true}}}, +{"id":65153,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,425,243,0,0,0,189,0,0,0,149,0,0,0,0,113,0,0,0,0,0,1985,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"7":189,"11":149,"16":113,"22":1985},"isBase":true}}}, +{"id":65154,"name":"Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,425,223,0,0,0,129,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1843,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":223,"7":129,"11":189,"16":113,"22":1843},"isBase":true}}}, +{"id":65155,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,316,190,140,0,120,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,1418,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":400,"stats":{"2":316,"3":190,"4":140,"6":120,"16":84,"22":1418},"isBase":true}}}, +{"id":65156,"name":"Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,425,243,0,0,149,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2269,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":339,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"339":{"randPropPoints":539,"stats":{"2":425,"3":243,"6":149,"7":189,"16":113,"22":2269},"isBase":true}}}, +{"id":65163,"name":"Buzzer Blade","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,129,194,0,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Glubtok"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1032,"weaponDamageMax":1917,"stats":{"1":129,"2":194,"6":86,"7":86},"isBase":true}}}, +{"id":65164,"name":"Cruel Barb","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,129,194,0,0,86,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1548,"weaponDamageMax":2875,"weaponSpeed":2.7,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Helix Gearbreaker"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1548,"weaponDamageMax":2875,"stats":{"1":129,"2":194,"5":86,"6":86},"isBase":true}}}, +{"id":65165,"name":"Foe Reaper","icon":"inv_hammer_09","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,202,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"0":302,"2":454,"5":202,"8":202},"isBase":true}}}, +{"id":65166,"name":"Buzz Saw","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[129,0,194,0,0,0,86,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"6":86,"11":86},"isBase":true}}}, +{"id":65167,"name":"Emberstone Staff","icon":"inv_staff_13","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,182,0,0,0,0,213,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":1325,"weaponDamageMax":1988,"weaponSpeed":3,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Foe Reaper 5000"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":1325,"weaponDamageMax":1988,"stats":{"2":454,"3":302,"6":182,"11":213,"14":1732},"isBase":true}}}, +{"id":65168,"name":"Rockslicer","icon":"inv_throwingaxe_01","type":13,"weaponType":1,"handType":4,"stats":[0,302,454,0,0,0,182,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3004,"weaponDamageMax":4506,"weaponSpeed":3.4,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3004,"weaponDamageMax":4506,"stats":{"1":302,"2":454,"6":182,"11":213},"isBase":true}}}, +{"id":65169,"name":"Lavishly Jeweled Ring","icon":"inv_jewelry_ring_76","type":11,"stats":[0,0,252,133,0,107,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"2":252,"3":133,"5":107,"11":112},"isBase":true}}}, +{"id":65170,"name":"Smite's Reaver","icon":"inv_axe_22","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,86,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Admiral Ripsnarl"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"5":86,"8":86},"isBase":true}}}, +{"id":65171,"name":"Cookie's Tenderizer","icon":"inv_fabric_silk_02","type":13,"weaponType":4,"handType":2,"stats":[129,0,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1605,"weaponDamageMax":2982,"weaponSpeed":2.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1605,"weaponDamageMax":2982,"stats":{"0":129,"2":194,"5":86,"11":86},"isBase":true}}}, +{"id":65172,"name":"Cookie's Stirring Rod","icon":"inv_staff_02","type":14,"rangedWeaponType":6,"stats":[0,0,194,129,0,0,86,0,0,0,0,86,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"6":86,"11":86,"14":1729},"isBase":true}}}, +{"id":65173,"name":"Thief's Blade","icon":"inv_sword_24","type":13,"weaponType":9,"handType":2,"stats":[0,129,194,0,0,0,0,86,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"unique":true,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"7":86,"11":86},"isBase":true}}}, +{"id":65174,"name":"Corsair's Overshirt","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,454,262,0,0,162,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1160,0,0,0,0],"gemSockets":[2,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"6":162,"11":202,"22":1160},"isBase":true}}}, +{"id":65175,"name":"Baradin Footman's Tags","icon":"inv_jewelry_necklace_37","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"weaponSpeed":0.5,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":6,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":65176,"name":"Baradin Grunt's Talisman","icon":"inv_jewelry_necklace_39","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"weaponSpeed":0.5,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":6,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"333":{"randPropPoints":378,"stats":{"11":252},"isBase":true}}}, +{"id":65177,"name":"Cape of the Brotherhood","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,168,252,0,0,112,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,580,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"\\\"Captain\\\" Cookie"}}],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"1":168,"2":252,"5":112,"7":112,"22":580},"isBase":true}}}, +{"id":65178,"name":"VanCleef's Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,205,337,0,0,0,0,150,0,0,0,130,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"heroic":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1581,"otherName":"Vanessa VanCleef"}}],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":205,"2":337,"7":150,"11":130,"22":1080},"isBase":true}}}, +{"id":65518,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":2517},"isBase":true}}}, +{"id":65519,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2937},"isBase":true}}}, +{"id":65520,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":65521,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":2098},"isBase":true}}}, +{"id":65522,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":65523,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":1779},"isBase":true}}}, +{"id":65524,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":2076},"isBase":true}}}, +{"id":65525,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":1928},"isBase":true}}}, +{"id":65526,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":1483},"isBase":true}}}, +{"id":65527,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2373},"isBase":true}}}, +{"id":65528,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":901},"isBase":true}}}, +{"id":65529,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":65530,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"11":213,"16":128,"22":1051},"isBase":true}}}, +{"id":65531,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":1313},"isBase":true}}}, +{"id":65532,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":1010},"isBase":true}}}, +{"id":65533,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1212},"isBase":true}}}, +{"id":65534,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":1616},"isBase":true}}}, +{"id":65535,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1414},"isBase":true}}}, +{"id":65536,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":2373},"isBase":true}}}, +{"id":65537,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1779},"isBase":true}}}, +{"id":65538,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":2076},"isBase":true}}}, +{"id":65539,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":65540,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":1010},"isBase":true}}}, +{"id":65541,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1212},"isBase":true}}}, +{"id":65542,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":1616},"isBase":true}}}, +{"id":65543,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":65544,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1483},"isBase":true}}}, +{"id":65545,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1212},"isBase":true}}}, +{"id":65546,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":1414},"isBase":true}}}, +{"id":65547,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":65548,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1010},"isBase":true}}}, +{"id":65549,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":1616},"isBase":true}}}, +{"id":65550,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":1212},"isBase":true}}}, +{"id":65551,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1616},"isBase":true}}}, +{"id":65552,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":1414},"isBase":true}}}, +{"id":65553,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,173,0,0,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":65554,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1051},"isBase":true}}}, +{"id":65555,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":65556,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":751},"isBase":true}}}, +{"id":65557,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,158,0,0,0,138,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":158,"11":138,"16":95,"22":901},"isBase":true}}}, +{"id":65558,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":65559,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":158,"8":138,"16":95,"22":1779},"isBase":true}}}, +{"id":65560,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":2076},"isBase":true}}}, +{"id":65561,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":65562,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1483},"isBase":true}}}, +{"id":65563,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":2373},"isBase":true}}}, +{"id":65564,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,213,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"11":213,"16":128,"22":1051},"isBase":true}}}, +{"id":65565,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":65566,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"6":158,"16":95,"22":751},"isBase":true}}}, +{"id":65567,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1779},"isBase":true}}}, +{"id":65568,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":2076},"isBase":true}}}, +{"id":65569,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":1928},"isBase":true}}}, +{"id":65570,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,158,0,0,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"7":138,"16":95,"22":1483},"isBase":true}}}, +{"id":65571,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,213,0,0,0,0,153,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"6":213,"11":153,"16":128,"22":976},"isBase":true}}}, +{"id":65572,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"6":158,"16":95,"22":751},"isBase":true}}}, +{"id":65573,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,158,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"11":158,"16":95,"22":901},"isBase":true}}}, +{"id":65574,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"7":213,"16":128,"22":1201},"isBase":true}}}, +{"id":65575,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,213,0,0,0,173,0,0,0,0,128,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":213,"11":173,"16":128,"22":1051},"isBase":true}}}, +{"id":65576,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,153,0,0,0,213,0,0,0,0,128,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"11":213,"16":128,"22":976},"isBase":true}}}, +{"id":65577,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,158,0,138,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":158,"6":138,"16":95,"22":751},"isBase":true}}}, +{"id":65578,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":901},"isBase":true}}}, +{"id":65579,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,213,0,0,0,0,128,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"11":213,"16":128,"22":2373},"isBase":true}}}, +{"id":65580,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":65581,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":65582,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":65583,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2098},"isBase":true}}}, +{"id":65584,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":65585,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":65586,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":65587,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":213,"7":173,"16":128,"22":1414},"isBase":true}}}, +{"id":65588,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"8":213,"11":153,"16":128,"22":1313},"isBase":true}}}, +{"id":65589,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"6":158,"16":95,"22":1010},"isBase":true}}}, +{"id":65590,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":65591,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2098},"isBase":true}}}, +{"id":65592,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":65593,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,158,138,0,0,0,0,0,0,0,95,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"7":158,"8":138,"16":95,"22":2517},"isBase":true}}}, +{"id":65594,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,213,173,0,0,0,0,0,0,0,0,128,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":213,"7":173,"16":128,"22":2937},"isBase":true}}}, +{"id":65595,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,213,0,0,153,0,0,0,0,128,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"8":213,"11":153,"16":128,"22":2727},"isBase":true}}}, +{"id":65596,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,158,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"6":158,"16":95,"22":2098},"isBase":true}}}, +{"id":65597,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,213,0,0,0,0,0,0,0,0,128,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"7":213,"16":128,"22":3357},"isBase":true}}}, +{"id":65598,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"11":158,"16":95,"22":826},"isBase":true}}}, +{"id":65599,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":826},"isBase":true}}}, +{"id":65600,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,826,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":826},"isBase":true}}}, +{"id":65601,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":65602,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":1111},"isBase":true}}}, +{"id":65603,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":1631},"isBase":true}}}, +{"id":65604,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,218,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"7":138,"16":95,"22":1631},"isBase":true}}}, +{"id":65605,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":2308},"isBase":true}}}, +{"id":65606,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":2308},"isBase":true}}}, +{"id":65607,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":138,"11":158,"16":95,"22":2308},"isBase":true}}}, +{"id":65608,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[218,0,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,2308,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"6":158,"7":138,"16":95,"22":2308},"isBase":true}}}, +{"id":65609,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"11":158,"16":95,"22":1111},"isBase":true}}}, +{"id":65610,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,218,357,0,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1111,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":158,"7":138,"16":95,"22":1111},"isBase":true}}}, +{"id":65611,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,0,0,158,138,0,0,0,0,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":158,"7":138,"16":95,"22":1631},"isBase":true}}}, +{"id":65612,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,158,0,0,0,0,95,0,0,0,0,0,1631,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[7],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"11":158,"16":95,"22":1631},"isBase":true}}}, +{"id":65654,"name":"Belt of a Thousand Deaths","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[158,0,237,0,0,0,105,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,1589,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"11":105,"22":1589},"isBase":true}}}, +{"id":65655,"name":"Leggings of Opportune Strikes","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1791,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":142,"7":142,"22":1791},"isBase":true}}}, +{"id":65656,"name":"Sea Witch Charm","icon":"inv_jewelry_necklace_27","type":2,"stats":[0,0,177,118,79,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":79,"6":79},"isBase":true}}}, +{"id":65657,"name":"Deepmist Robes","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,319,212,0,0,124,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"6":124,"7":152,"22":1116},"isBase":true}}}, +{"id":65658,"name":"Stonespeaker's Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"7":105,"22":1152},"isBase":true}}}, +{"id":65659,"name":"Kelp Forest Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,212,319,0,0,0,124,0,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":124,"11":152,"22":1447},"isBase":true}}}, +{"id":65739,"name":"Necklace of the Dead City","icon":"inv_jewelry_necklace_41","type":2,"stats":[138,0,207,0,0,0,0,101,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"0":138,"2":207,"7":101,"11":77},"isBase":true}}}, +{"id":65740,"name":"Fallen Brotherhood Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,277,185,123,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"4":123,"7":123,"22":1892},"isBase":true}}}, +{"id":65741,"name":"Wrap of the Fallen City","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,373,249,176,0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"4":176,"7":150,"22":1501},"isBase":true}}}, +{"id":65742,"name":"Drape of Neferset Destruction","icon":"inv_misc_cape_cataclysm_tank_b_01","type":4,"armorType":1,"stats":[0,138,207,0,0,0,83,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"1":138,"2":207,"6":83,"7":98,"22":568},"isBase":true}}}, +{"id":65743,"name":"Helm of Vicious Direction","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[249,0,373,0,0,0,158,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"0":249,"2":373,"6":158,"7":171,"22":2460},"isBase":true}}}, +{"id":65744,"name":"Nimble Command Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,185,277,0,0,130,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1624,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":185,"2":277,"5":130,"7":111,"22":1624},"isBase":true}}}, +{"id":65745,"name":"Martial Sandals","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,185,277,0,0,0,114,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1032,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":185,"2":277,"6":114,"7":129,"22":1032},"isBase":true}}}, +{"id":65746,"name":"Leggings of Valorous Defense","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,373,249,0,187,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"5":187,"6":130,"22":994},"isBase":true}}}, +{"id":65773,"name":"Gloves of Gnomebliteration","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,129,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":185,"2":277,"5":129,"10":114,"22":1892},"isBase":true}}}, +{"id":65774,"name":"Fireball Treads","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,277,185,129,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"4":129,"11":114,"22":1489},"isBase":true}}}, +{"id":65775,"name":"Spaulders of Rolling Incineration","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,277,185,0,0,105,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"6":105,"11":134,"22":1126},"isBase":true}}}, +{"id":65776,"name":"Kata-Mary Crown","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,373,249,0,0,178,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"6":178,"11":145,"22":923},"isBase":true}}}, +{"id":65786,"name":"Colossus Smasher Breastplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,125,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"5":125,"7":160,"22":2872},"isBase":true}}}, +{"id":65787,"name":"Harrison's Climbing Hook","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,141,94,0,52,0,0,0,0,0,69,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":396,"weaponDamageMax":737,"weaponSpeed":1.9,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":396,"weaponDamageMax":737,"stats":{"2":141,"3":94,"5":52,"11":69,"14":1258},"isBase":true}}}, +{"id":65788,"name":"Arrowspike Longbow","icon":"inv_bow_1h_cataclysm_b_01","type":14,"rangedWeaponType":1,"stats":[0,220,331,0,0,132,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"weaponSpeed":2.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"stats":{"1":220,"2":331,"5":132,"6":155},"isBase":true}}}, +{"id":65789,"name":"Caimas' Spaulders","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[164,0,245,0,0,0,114,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"6":114,"8":101,"22":2154},"isBase":true}}}, +{"id":65790,"name":"Pit Heart Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,123,184,0,0,0,72,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"6":72,"11":88,"22":908},"isBase":true}}}, +{"id":65791,"name":"Shield of the Returning Prince","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,184,123,82,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10231,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":82,"7":82,"22":10231},"isBase":true}}}, +{"id":65792,"name":"Girdle of the Rescuer","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,245,164,109,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":109,"11":109,"22":631},"isBase":true}}}, +{"id":65793,"name":"Hamatep Legguards","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,331,220,122,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":122,"11":162,"22":1815},"isBase":true}}}, +{"id":65794,"name":"Marshseeker Gloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,245,164,115,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":115,"7":98,"22":912},"isBase":true}}}, +{"id":65795,"name":"Vir'naal Guardsman's Axe","icon":"inv_axe_1h_cataclysm_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,94,141,0,0,0,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"stats":{"1":94,"2":141,"6":63,"7":63},"isBase":true}}}, +{"id":65796,"name":"Qebnet Greaves","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[164,0,245,0,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"5":118,"6":93,"22":1974},"isBase":true}}}, +{"id":65797,"name":"Heptu Headguard","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,220,331,0,0,153,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"1":220,"2":331,"5":153,"7":136,"22":1686},"isBase":true}}}, +{"id":65798,"name":"Bandit Scourge Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,123,184,0,0,0,0,91,0,0,0,66,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"7":91,"11":66,"22":639},"isBase":true}}}, +{"id":65799,"name":"Ihsenn's Staff of Terror","icon":"inv_stave_2h_cataclysm_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,331,220,0,160,125,0,0,0,0,0,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1062,"weaponDamageMax":1593,"stats":{"2":331,"3":220,"5":160,"6":125,"14":1262},"isBase":true}}}, +{"id":65800,"name":"Bracers of the Dark Pyramid","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[0,0,184,123,80,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":80,"7":83,"22":1256},"isBase":true}}}, +{"id":65801,"name":"Mar'at Belt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,164,245,0,0,0,0,93,0,0,0,118,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"7":93,"11":118,"22":821},"isBase":true}}}, +{"id":65802,"name":"Shining Scorpid Eye","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,184,123,0,92,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"5":92,"7":64},"isBase":true}}}, +{"id":65803,"name":"Harrison's Insignia of Panache","icon":"inv_jewelry_necklace_28","type":12,"stats":[234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":234},"isBase":true}}}, +{"id":65804,"name":"Talisman of Sinister Order","icon":"inv_jewelry_talisman_11","type":12,"stats":[0,0,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"3":234},"isBase":true}}}, +{"id":65805,"name":"Schnottz's Medallion of Command","icon":"inv_jewelry_amulet_01","type":12,"stats":[0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":234},"isBase":true}}}, +{"id":65806,"name":"Sunwatcher's Legplates","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[220,0,331,0,0,115,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"5":115,"11":166,"22":2513},"isBase":true}}}, +{"id":65807,"name":"Hood of the Scorpion","icon":"inv_helmet_leather_cataclysm_b_02","type":1,"armorType":2,"stats":[0,0,331,220,0,0,0,143,0,0,0,149,0,0,0,0,0,0,0,0,0,0,1186,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"7":143,"11":149,"22":1186},"isBase":true}}}, +{"id":65808,"name":"Orsis Polearm","icon":"inv_polearm_2h_cataclysm_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,220,331,0,0,129,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1689,"weaponDamageMax":3138,"weaponSpeed":3,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1689,"weaponDamageMax":3138,"stats":{"1":220,"2":331,"5":129,"7":158},"isBase":true}}}, +{"id":65809,"name":"Gloves of the Stela","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[0,0,245,164,115,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":115,"6":98,"22":1795},"isBase":true}}}, +{"id":65810,"name":"Asp-Clasp Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,184,123,88,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":88,"7":72,"22":908},"isBase":true}}}, +{"id":65811,"name":"Cenotaph Choker","icon":"inv_jewelry_necklace_29naxxramas","type":2,"stats":[0,123,184,0,0,0,0,78,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"7":78,"11":84},"isBase":true}}}, +{"id":65813,"name":"Scarab-Inlaid Crossbow","icon":"inv_bow_2h_crossbow_cataclysm_b_01","type":14,"rangedWeaponType":2,"stats":[0,220,331,0,0,149,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"weaponSpeed":2.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"stats":{"1":220,"2":331,"5":149,"8":143},"isBase":true}}}, +{"id":65814,"name":"Sekhemet's Seal","icon":"inv_misc_moodring1","type":11,"stats":[0,0,184,123,0,72,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"5":72,"6":88},"isBase":true}}}, +{"id":65815,"name":"Drape of the Mortal Guardians","icon":"inv_misc_cape_cataclysm_melee_b_01","type":4,"armorType":1,"stats":[0,123,184,0,0,0,89,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"6":89,"8":70,"22":560},"isBase":true}}}, +{"id":65816,"name":"Ramkahen Ceremonial Hammer","icon":"inv_mace_2h_cataclysm_b_02","type":13,"weaponType":4,"handType":4,"stats":[220,0,331,0,0,0,151,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":2124,"weaponDamageMax":3186,"weaponSpeed":3.3,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2124,"weaponDamageMax":3186,"stats":{"0":220,"2":331,"6":151,"7":140},"isBase":true}}}, +{"id":65817,"name":"Grave Protector Shoulderplates","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[0,0,245,164,121,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":121,"11":88,"22":2154},"isBase":true}}}, +{"id":65818,"name":"Leggings of the Unforgiving Tomb","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,220,331,0,0,0,125,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"1":220,"2":331,"6":125,"7":160,"22":1277},"isBase":true}}}, +{"id":65819,"name":"Kavem's Trimmed Chestguard","icon":"inv_chest_mail_22","type":5,"armorType":3,"stats":[0,0,331,220,0,0,153,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,2075,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"6":153,"11":136,"22":2075},"isBase":true}}}, +{"id":65820,"name":"Keythief Handwraps","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,245,164,98,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":98,"6":115,"22":701},"isBase":true}}}, +{"id":65821,"name":"Pearl-Handled Long Gun","icon":"inv_firearm_2h_rifle_cataclysm_b_02","type":14,"rangedWeaponType":3,"stats":[0,220,331,0,0,0,0,164,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"weaponSpeed":2.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1576,"weaponDamageMax":2929,"stats":{"1":220,"2":331,"7":164,"11":118},"isBase":true}}}, +{"id":65822,"name":"Hevna's Eye Socket","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[164,0,245,0,0,0,0,0,0,106,0,111,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"9":106,"11":111,"22":1615},"isBase":true}}}, +{"id":65823,"name":"Scales of the Scalemother","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,164,245,0,0,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"6":118,"7":93,"22":1556},"isBase":true}}}, +{"id":65824,"name":"Corrupted Eggshell Drape","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,184,123,74,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":74,"6":86,"22":560},"isBase":true}}}, +{"id":65825,"name":"Helm of the Siltwater Slayer","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[0,0,331,220,0,0,153,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"6":153,"7":136,"22":2333},"isBase":true}}}, +{"id":65826,"name":"Sandals of Corrupted Water","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,0,245,164,90,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":90,"7":120,"22":1003},"isBase":true}}}, +{"id":65827,"name":"Vir'naal Spaulders","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,245,164,0,114,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"5":114,"7":101,"22":841},"isBase":true}}}, +{"id":65828,"name":"Great General's Crown","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[220,0,331,0,0,153,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"5":153,"11":136,"22":2333},"isBase":true}}}, +{"id":65829,"name":"Leggings of Feline Command","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,220,331,0,0,0,129,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"1":220,"2":331,"6":129,"11":158,"22":1815},"isBase":true}}}, +{"id":65830,"name":"Salhet's Ornate Dagger","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,141,94,0,55,0,0,0,0,0,67,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":375,"weaponDamageMax":698,"weaponSpeed":1.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":375,"weaponDamageMax":698,"stats":{"2":141,"3":94,"5":55,"11":67,"14":1258},"isBase":true}}}, +{"id":65831,"name":"Pharoah's Burial Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[185,0,277,0,0,0,0,0,0,137,0,99,0,0,0,0,0,0,0,0,0,0,2271,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":185,"2":277,"9":137,"11":99,"22":2271},"isBase":true}}}, +{"id":65832,"name":"Girdle of the Ancient One","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,277,185,0,0,123,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1218,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"2":277,"3":185,"6":123,"7":123,"22":1218},"isBase":true}}}, +{"id":65833,"name":"Leggings of Promise","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,373,249,138,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,994,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"4":138,"6":182,"22":994},"isBase":true}}}, +{"id":65834,"name":"Weaponseeker Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[123,0,184,0,0,0,64,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"0":123,"2":184,"6":64,"7":92,"22":1256},"isBase":true}}}, +{"id":65835,"name":"Chestguard of the Bleak Scarab","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,0,331,220,136,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":136,"6":153,"22":1460},"isBase":true}}}, +{"id":65836,"name":"Stolen Neferset Waistguard","icon":"inv_belt_cloth_cataclysm_b_02","type":8,"armorType":1,"stats":[0,0,245,164,0,0,0,118,0,0,0,93,0,0,0,0,0,0,0,0,0,0,631,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"7":118,"11":93,"22":631},"isBase":true}}}, +{"id":65837,"name":"Legplates of Heilopolis","icon":"inv_pants_plate_cataclysm_b_02","type":9,"armorType":4,"stats":[0,0,331,220,149,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2513,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":149,"7":143,"22":2513},"isBase":true}}}, +{"id":65838,"name":"Cartouche-Inscribed Spaulders","icon":"inv_shoulder_151","type":3,"armorType":3,"stats":[0,0,245,164,90,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1556,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":90,"7":120,"22":1556},"isBase":true}}}, +{"id":65839,"name":"Sarcophagus Bracers","icon":"inv_bracer_cloth_cataclysm_b_02","type":6,"armorType":1,"stats":[0,0,184,123,70,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,490,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":70,"7":89,"22":490},"isBase":true}}}, +{"id":65840,"name":"Knife of the Venomous Asp","icon":"inv_knife_1h_cataclysm_b_01","type":13,"weaponType":2,"handType":2,"stats":[0,94,141,0,0,0,0,66,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":751,"weaponDamageMax":1396,"weaponSpeed":1.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":751,"weaponDamageMax":1396,"stats":{"1":94,"2":141,"7":66,"8":58},"isBase":true}}}, +{"id":65841,"name":"Tomb-Curse Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,0,0,0,129,0,158,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"8":129,"10":158,"22":2872},"isBase":true}}}, +{"id":65842,"name":"Treads of the Starry Obelisk","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,164,245,0,0,98,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"5":98,"6":115,"22":1426},"isBase":true}}}, +{"id":65843,"name":"Brainrot Grips","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,164,245,0,0,0,121,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"6":121,"11":88,"22":912},"isBase":true}}}, +{"id":65844,"name":"Tombbreaker Mace","icon":"inv_mace_1h_cataclysm_b_02","type":13,"weaponType":4,"handType":2,"stats":[94,0,141,0,0,0,68,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"weaponSpeed":2.6,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":1086,"weaponDamageMax":2017,"stats":{"0":94,"2":141,"6":68,"8":54},"isBase":true}}}, +{"id":65845,"name":"Misappropriated Girdle of Khartut","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[0,0,245,164,0,0,101,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"6":101,"7":114,"22":1615},"isBase":true}}}, +{"id":65846,"name":"Bracers of the Verdant Cradle","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,184,123,89,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"4":89,"7":70,"22":639},"isBase":true}}}, +{"id":65847,"name":"Robes of Khintaset","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,331,220,0,0,147,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"6":147,"7":147,"22":1121},"isBase":true}}}, +{"id":65848,"name":"False-Face Mask","icon":"inv_helmet_plate_cataclysm_b_02","type":1,"armorType":4,"stats":[220,0,331,0,0,167,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,2333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"5":167,"10":112,"22":2333},"isBase":true}}}, +{"id":65849,"name":"Gauntlets of the Obelisk","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,164,245,0,0,0,101,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"6":101,"7":114,"22":1297},"isBase":true}}}, +{"id":65850,"name":"Mirror-Polished Boots","icon":"inv_boots_leather_cataclysm_b_02","type":10,"armorType":2,"stats":[0,164,245,0,0,0,0,0,106,0,0,111,0,0,0,0,0,0,0,0,0,0,1003,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"8":106,"11":111,"22":1003},"isBase":true}}}, +{"id":65851,"name":"Officer's Formal Baton","icon":"inv_stave_2h_cataclysm_b_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,331,220,0,0,0,164,0,0,0,118,0,0,1262,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":1062,"weaponDamageMax":1593,"weaponSpeed":3.3,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":1062,"weaponDamageMax":1593,"stats":{"2":331,"3":220,"7":164,"11":118,"14":1262},"isBase":true}}}, +{"id":65852,"name":"Gauntlets of Delicate Aim","icon":"inv_gauntlets_plate_cataclysm_b_02","type":7,"armorType":4,"stats":[164,0,245,0,0,0,0,112,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1795,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"7":112,"11":104,"22":1795},"isBase":true}}}, +{"id":65853,"name":"Tank Director's Treads","icon":"inv_boots_mail_17","type":10,"armorType":3,"stats":[0,0,245,164,88,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":88,"6":121,"22":1426},"isBase":true}}}, +{"id":65854,"name":"Substitute Gunner's Leggings","icon":"inv_pants_leather_cataclysm_b_02","type":9,"armorType":2,"stats":[0,0,331,220,164,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":164,"11":118,"22":1277},"isBase":true}}}, +{"id":65855,"name":"Mongoose-Hide Waistguard","icon":"inv_belt_102","type":8,"armorType":3,"stats":[0,164,245,0,0,0,0,93,0,0,0,118,0,0,0,0,0,0,0,0,0,0,1167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"7":93,"11":118,"22":1167},"isBase":true}}}, +{"id":65856,"name":"Chestguard of Vigorous Motivation","icon":"inv_chest_leather_cataclysm_b_02","type":5,"armorType":2,"stats":[0,220,331,0,0,147,0,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"1":220,"2":331,"5":147,"11":147,"22":1460},"isBase":true}}}, +{"id":65857,"name":"Shoulders of the Obelisk","icon":"inv_shoulder_cloth_cataclysm_b_02","type":3,"armorType":1,"stats":[0,0,245,164,117,0,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,841,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":117,"11":96,"22":841},"isBase":true}}}, +{"id":65858,"name":"Bullet-Pierced Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[0,0,331,220,136,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":136,"6":153,"22":2872},"isBase":true}}}, +{"id":65859,"name":"Waistguard of Fallen Hearts","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,0,245,164,0,0,0,115,0,0,0,98,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"7":115,"11":98,"22":821},"isBase":true}}}, +{"id":65860,"name":"Impeccable Uniform Gauntlets","icon":"inv_gauntlets_cloth_cataclysm_b_02","type":7,"armorType":1,"stats":[0,0,245,164,0,118,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,701,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"5":118,"6":93,"22":701},"isBase":true}}}, +{"id":65861,"name":"Statue Climbers","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[185,0,277,0,0,0,0,120,125,0,0,0,0,0,0,0,0,0,0,0,0,0,2082,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":185,"2":277,"7":120,"8":125,"22":2082},"isBase":true}}}, +{"id":65862,"name":"Crashing Idol Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,249,373,0,0,0,0,138,0,0,0,182,0,0,0,0,0,0,0,0,0,0,2166,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"1":249,"2":373,"7":138,"11":182,"22":2166},"isBase":true}}}, +{"id":65863,"name":"Chain Reaction Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,249,373,0,0,0,178,0,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1220,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"1":249,"2":373,"6":178,"11":145,"22":1220},"isBase":true}}}, +{"id":65864,"name":"Eye of the Stars","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,207,138,83,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"2":207,"3":138,"4":83,"7":98},"isBase":true}}}, +{"id":65865,"name":"Ankh-Inscribed Bracers","icon":"inv_bracer_plate_cataclysm_b_02","type":6,"armorType":4,"stats":[123,0,184,0,0,0,0,0,90,68,0,0,0,0,0,0,0,0,0,0,0,0,1256,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"0":123,"2":184,"8":90,"9":68,"22":1256},"isBase":true}}}, +{"id":65866,"name":"Flenser's Leggings","icon":"inv_pants_mail_42","type":9,"armorType":3,"stats":[0,0,331,220,162,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1815,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":162,"7":122,"22":1815},"isBase":true}}}, +{"id":65867,"name":"Pristine Coyote Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,0,245,164,109,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":109,"6":109,"22":1095},"isBase":true}}}, +{"id":65868,"name":"Canopic Chestplate","icon":"inv_chest_plate_cataclysm_b_02","type":5,"armorType":4,"stats":[220,0,331,0,0,0,136,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,2872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"0":220,"2":331,"6":136,"11":153,"22":2872},"isBase":true}}}, +{"id":65869,"name":"Powderburned Spaulders","icon":"inv_shoulder_leather_cataclysm_b_02","type":3,"armorType":2,"stats":[0,164,245,0,0,0,0,115,0,0,0,98,0,0,0,0,0,0,0,0,0,0,1095,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"7":115,"11":98,"22":1095},"isBase":true}}}, +{"id":65870,"name":"Confiscated Dog Tags","icon":"inv_jewelry_necklace_39","type":2,"stats":[0,0,184,123,0,93,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"2":184,"3":123,"5":93,"7":62},"isBase":true}}}, +{"id":65871,"name":"Guardian-Killer Waistplate","icon":"inv_belt_plate_cataclysm_b_02","type":8,"armorType":4,"stats":[164,0,245,0,0,0,115,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,1615,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"6":115,"8":98,"22":1615},"isBase":true}}}, +{"id":65872,"name":"Helm of Broken Bones","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,0,331,220,151,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":151,"6":140,"22":1686},"isBase":true}}}, +{"id":65873,"name":"Titanic Treads","icon":"inv_boots_cloth_cataclysm_b_02","type":10,"armorType":1,"stats":[0,0,245,164,85,0,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":85,"11":123,"22":771},"isBase":true}}}, +{"id":65874,"name":"Rediscovered Delta Walkers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[0,0,245,164,109,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":109,"11":109,"22":1974},"isBase":true}}}, +{"id":65875,"name":"Powderkeg Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,123,184,0,0,62,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"5":62,"7":93,"22":908},"isBase":true}}}, +{"id":65876,"name":"Leggings of the Vir'naal","icon":"inv_pants_cloth_cataclysm_b_02","type":9,"armorType":1,"stats":[0,0,331,220,0,162,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,981,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"5":162,"11":122,"22":981},"isBase":true}}}, +{"id":65877,"name":"Wheelman's Choker","icon":"inv_misc_necklacea6","type":2,"stats":[123,0,184,0,0,86,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"0":123,"2":184,"5":86,"6":74},"isBase":true}}}, +{"id":65878,"name":"Charbelching Wand","icon":"inv_wand_1h_cataclysm_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,141,94,70,0,51,0,0,0,0,0,0,0,1258,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":179,"weaponDamageMin":375,"weaponDamageMax":698,"weaponSpeed":1.8,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":179,"weaponDamageMin":375,"weaponDamageMax":698,"stats":{"2":141,"3":94,"4":70,"6":51,"14":1258},"isBase":true}}}, +{"id":65880,"name":"Ring of Glimmering Water","icon":"inv_misc_starring2","type":11,"stats":[0,123,184,0,0,84,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"5":84,"11":78},"isBase":true}}}, +{"id":65881,"name":"Aeronaut's Helm","icon":"inv_helmet_191","type":1,"armorType":3,"stats":[0,220,331,0,0,0,136,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1686,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"1":220,"2":331,"6":136,"11":153,"22":1686},"isBase":true}}}, +{"id":65882,"name":"Reinforced Seatbelt","icon":"inv_belt_leather_cataclysm_b_02","type":8,"armorType":2,"stats":[0,164,245,0,0,121,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,821,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"1":164,"2":245,"5":121,"6":88,"22":821},"isBase":true}}}, +{"id":65883,"name":"Tailgunner's Flight Suit","icon":"inv_chest_cloth_cataclysm_b_02","type":5,"armorType":1,"stats":[0,0,331,220,158,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"4":158,"7":129,"22":1121},"isBase":true}}}, +{"id":65884,"name":"Femurbreak Stompers","icon":"inv_boots_plate_cataclysm_b_02","type":10,"armorType":4,"stats":[164,0,245,0,0,0,0,0,0,0,120,90,0,0,0,0,0,0,0,0,0,0,1974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"10":120,"11":90,"22":1974},"isBase":true}}}, +{"id":65885,"name":"Gauntlets of Ahmtul","icon":"inv_gauntlets_124","type":7,"armorType":3,"stats":[0,0,245,164,112,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,1297,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":112,"11":104,"22":1297},"isBase":true}}}, +{"id":65886,"name":"Rope-Grip Gloves","icon":"inv_gauntlets_leather_cataclysm_b_02","type":7,"armorType":2,"stats":[0,0,245,164,93,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,912,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"2":245,"3":164,"4":93,"11":118,"22":912},"isBase":true}}}, +{"id":65887,"name":"Staffseeker Shoulderplates","icon":"inv_shoulder_plate_cataclysm_b_02","type":3,"armorType":4,"stats":[164,0,245,0,0,0,0,124,0,0,0,83,0,0,0,0,0,0,0,0,0,0,2154,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":311,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":311,"stats":{"0":164,"2":245,"7":124,"11":83,"22":2154},"isBase":true}}}, +{"id":65888,"name":"Splinterproof Bracers","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,123,184,0,0,70,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,639,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":233,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":233,"stats":{"1":123,"2":184,"5":70,"8":89,"22":639},"isBase":true}}}, +{"id":65889,"name":"Shardfinder Hood","icon":"inv_helmet_cloth_cataclysm_b_02","type":1,"armorType":1,"stats":[0,0,331,220,0,0,158,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,911,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"ilvl":312,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"stats":{"2":331,"3":220,"6":158,"11":129,"22":911},"isBase":true}}}, +{"id":66641,"name":"Vonica's Gauntlets","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,204,136,0,0,96,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,687,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"2":204,"3":136,"6":96,"7":82,"22":687},"isBase":true}}}, +{"id":66879,"name":"Bottled Lightning","icon":"inv_gizmo_electrifiedether","type":12,"stats":[0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"3":172},"isBase":true}}}, +{"id":66880,"name":"Potentate's Letter Opener","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,118,78,0,0,40,0,0,0,0,60,0,0,1047,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":280,"weaponDamageMax":521,"weaponSpeed":1.6,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":149,"weaponDamageMin":280,"weaponDamageMax":521,"stats":{"2":118,"3":78,"6":40,"11":60,"14":1047},"isBase":true}}}, +{"id":66882,"name":"Skeletalized Shoulderpads","icon":"inv_shoulder_cloth_cataclysm_b_01","type":3,"armorType":1,"stats":[0,0,219,146,0,99,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"5":99,"6":95,"22":831},"isBase":true}}}, +{"id":66883,"name":"Vertigo Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,165,110,0,0,64,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"2":165,"3":110,"6":64,"7":79,"22":554},"isBase":true}}}, +{"id":66884,"name":"Raz's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,212,0,0,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":161,"2":319,"8":108,"9":212,"22":2825},"isBase":true}}}, +{"id":66885,"name":"Diamond-Studded Helm ","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,319,212,152,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,1663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":152,"11":124,"22":1663},"isBase":true}}}, +{"id":66886,"name":"Acid-Eaten Vest","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,319,212,152,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,1447,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":152,"11":124,"22":1447},"isBase":true}}}, +{"id":66887,"name":"Beauty Jr.'s Collar","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,158,237,0,0,0,92,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":92,"7":113,"22":1152},"isBase":true}}}, +{"id":66889,"name":"Beauty's Cootie-Ridden Blankie","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,177,118,85,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,558,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":85,"11":69,"22":558},"isBase":true}}}, +{"id":66890,"name":"Auto-Decoding Band","icon":"inv_jewelry_ring_42","type":11,"stats":[0,0,177,118,0,0,85,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"6":85,"7":69},"isBase":true}}}, +{"id":66891,"name":"Pauldrons of Unholy Rituals","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[170,0,255,0,0,0,99,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,2189,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"6":99,"11":121,"22":2189},"isBase":true}}}, +{"id":66892,"name":"Band of the One Hundred and One","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,255,170,0,0,121,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,633,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"6":121,"7":99,"22":633},"isBase":true}}}, +{"id":66893,"name":"High Priestess' Signet","icon":"inv_misc_stonering2","type":11,"stats":[0,0,191,127,91,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":91,"7":74},"isBase":true}}}, +{"id":66894,"name":"Leggings of the Lost Child","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,343,229,153,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1288,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"4":153,"6":153,"22":1288},"isBase":true}}}, +{"id":66895,"name":"Don Gonzales' Shiny Shield","icon":"inv_shield_28","type":13,"weaponType":7,"handType":3,"stats":[0,0,165,110,0,0,80,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9209,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"2":165,"3":110,"6":80,"7":63,"22":9209},"isBase":true}}}, +{"id":66896,"name":"Stonecore Belt","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,170,255,0,0,121,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,828,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"5":121,"6":99,"22":828},"isBase":true}}}, +{"id":66897,"name":"Crystal Shimmer Cloak","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[127,0,191,0,0,85,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"5":85,"7":85,"22":563},"isBase":true}}}, +{"id":66898,"name":"Cloak of Itesh","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,127,191,0,0,0,74,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"1":127,"2":191,"6":74,"11":91,"22":563},"isBase":true}}}, +{"id":66899,"name":"Leggings of the Vortex Pinnacle","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,343,229,134,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,1840,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"4":134,"11":164,"22":1840},"isBase":true}}}, +{"id":66900,"name":"Band of the Dead End","icon":"inv_jewelry_ring_68","type":11,"stats":[127,0,191,0,0,74,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"5":74,"11":91},"isBase":true}}}, +{"id":66901,"name":"Greaves of Orsis","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[174,0,343,0,0,116,0,0,0,229,0,0,0,0,0,0,0,0,0,0,0,0,2554,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"0":174,"2":343,"5":116,"9":229,"22":2554},"isBase":true}}}, +{"id":66902,"name":"Token of Gratitude","icon":"inv_jewelry_necklace_31","type":2,"stats":[0,0,191,127,0,74,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"5":74,"7":91},"isBase":true}}}, +{"id":66903,"name":"Caliph's Band","icon":"inv_misc_stonering1","type":11,"stats":[0,0,191,127,74,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":74,"6":91},"isBase":true}}}, +{"id":66904,"name":"Gartic's Resplendent Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,319,212,0,0,0,131,0,0,0,148,0,0,0,0,0,0,0,0,0,0,977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":131,"11":148,"22":977},"isBase":true}}}, +{"id":66905,"name":"Clandestine Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,199,298,0,0,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":142,"7":116,"22":1145},"isBase":true}}}, +{"id":66906,"name":"Bracers of the Lost City","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,0,224,149,107,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":107,"7":87,"22":973},"isBase":true}}}, +{"id":66907,"name":"Captain Hadan's Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2346,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":142,"6":116,"22":2346},"isBase":true}}}, +{"id":66908,"name":"Treads of the Neferset","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,199,298,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"5":116,"6":142,"22":1529},"isBase":true}}}, +{"id":66909,"name":"Ramkahen Front Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[151,0,298,0,0,101,0,0,0,199,0,0,0,0,0,0,0,0,0,0,0,0,2151,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":151,"2":298,"5":101,"9":199,"22":2151},"isBase":true}}}, +{"id":66910,"name":"Blight-Lifter's Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,298,199,0,0,0,142,0,0,0,116,0,0,0,0,0,0,0,0,0,0,858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"7":142,"11":116,"22":858},"isBase":true}}}, +{"id":66911,"name":"Offline Greaves","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[268,0,401,0,0,0,191,0,157,0,0,0,0,0,0,0,0,0,0,0,0,0,2737,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":401,"6":191,"8":157,"22":2737},"isBase":true}}}, +{"id":66913,"name":"Repository Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":142,"6":116,"22":1955},"isBase":true}}}, +{"id":66914,"name":"Boots of the Hard Way","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,199,298,0,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":116,"7":142,"22":1050},"isBase":true}}}, +{"id":66915,"name":"Treasure Hunter's Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,199,298,0,0,0,116,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":199,"2":298,"6":116,"7":142,"22":1390},"isBase":true}}}, +{"id":66916,"name":"Delicate Blade of Meaning","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,136,91,0,0,62,0,0,0,0,58,0,0,1216,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":382,"weaponDamageMax":710,"weaponSpeed":1.9,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":382,"weaponDamageMax":710,"stats":{"2":136,"3":91,"6":62,"11":58,"14":1216},"isBase":true}}}, +{"id":66917,"name":"True Archaeologist's Bracers","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,224,149,0,87,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"5":87,"7":107,"22":501},"isBase":true}}}, +{"id":66919,"name":"Robes of Whispering Sands","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,343,229,0,157,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1125,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"2":343,"3":229,"5":157,"7":145,"22":1125},"isBase":true}}}, +{"id":66920,"name":"Cyu's Ornate Wand","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,147,98,0,54,0,0,0,0,0,72,0,0,1307,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"weaponSpeed":1.8,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":390,"weaponDamageMax":725,"stats":{"2":147,"3":98,"5":54,"11":72,"14":1307},"isBase":true}}}, +{"id":66921,"name":"Helm of Reorigination","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,401,208,171,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":208,"4":171,"11":117,"22":1241},"isBase":true}}}, +{"id":66924,"name":"Petrified Camel Haunch","icon":"inv_misc_food_meat_raw_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,191,127,0,96,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"5":96,"6":66},"isBase":true}}}, +{"id":66931,"name":"Mercury-Coated Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,373,189,0,143,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,923,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":189,"5":143,"11":124,"22":923},"isBase":true}}}, +{"id":66932,"name":"Kuang's Locket of Secrets","icon":"inv_jewelry_necklace_50","type":2,"stats":[0,0,207,118,0,0,0,84,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"2":207,"3":118,"7":84,"11":80},"isBase":true}}}, +{"id":66933,"name":"Breastplate of the Witness","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,0,0,0,157,191,0,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":401,"9":157,"10":191,"22":3128},"isBase":true}}}, +{"id":66934,"name":"Gloves of Baleflame","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,298,199,142,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,955,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":142,"11":116,"22":955},"isBase":true}}}, +{"id":66935,"name":"Eradicator's Bracers","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,149,224,0,0,0,107,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,973,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"6":107,"7":87,"22":973},"isBase":true}}}, +{"id":66936,"name":"Helm of Secret Knowledge","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,208,401,0,0,0,117,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":208,"2":401,"6":117,"7":171,"22":1241},"isBase":true}}}, +{"id":66937,"name":"Sandals of the Courier","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,0,142,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"5":142,"6":116,"22":787},"isBase":true}}}, +{"id":66938,"name":"Tooranu's Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,298,199,142,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":142,"6":116,"22":1668},"isBase":true}}}, +{"id":66940,"name":"Staff of Solemn Secrecy","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,373,249,0,0,0,178,0,0,0,145,0,0,1425,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"weaponDamageMin":1198,"weaponDamageMax":1798,"weaponSpeed":3.3,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"weaponDamageMin":1198,"weaponDamageMax":1798,"stats":{"2":373,"3":249,"7":178,"11":145,"14":1425},"isBase":true}}}, +{"id":66941,"name":"Triple-Loop Belt","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,298,199,0,0,133,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,644,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":133,"7":133,"22":644},"isBase":true}}}, +{"id":66942,"name":"Immaculate Br'etc Signet","icon":"inv_misc_stonering1","type":11,"stats":[0,0,224,129,0,0,75,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":129,"6":75,"7":103},"isBase":true}}}, +{"id":66952,"name":"Belmont's Vampire Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,78,118,0,0,52,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":912,"weaponDamageMax":1694,"weaponSpeed":2.6,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":149,"weaponDamageMin":912,"weaponDamageMax":1694,"stats":{"1":78,"2":118,"5":52,"6":52},"isBase":true}}}, +{"id":66953,"name":"Snub-Nosed Pistol","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,183,275,0,0,0,139,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":1355,"weaponDamageMax":2518,"weaponSpeed":2.9,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"weaponDamageMin":1355,"weaponDamageMax":2518,"stats":{"1":183,"2":275,"6":139,"7":93},"isBase":true}}}, +{"id":66954,"name":"Knife-Concealing Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,102,153,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":194,"stats":{"1":102,"2":153,"5":68,"7":68,"22":612},"isBase":true}}}, +{"id":66955,"name":"Scentsniffer Hood","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,183,275,0,0,122,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,1578,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"stats":{"1":183,"2":275,"5":122,"11":122,"22":1578},"isBase":true}}}, +{"id":66956,"name":"Trek's Shiv","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,85,127,0,0,56,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"weaponDamageMin":768,"weaponDamageMax":1153,"weaponSpeed":1.8,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":768,"weaponDamageMax":1153,"stats":{"1":85,"2":127,"5":56,"8":56},"isBase":true}}}, +{"id":66957,"name":"Poison Vial Ring","icon":"inv_jewelry_ring_83","type":11,"stats":[0,110,165,0,0,0,73,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"1":110,"2":165,"6":73,"11":73},"isBase":true}}}, +{"id":66958,"name":"Bracers of Razor Fletching","icon":"inv_bracer_07","type":6,"armorType":3,"stats":[0,110,165,0,0,0,79,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"1":110,"2":165,"6":79,"7":64,"22":872},"isBase":true}}}, +{"id":66959,"name":"Toraelian Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,146,219,0,0,0,105,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"1":146,"2":219,"6":105,"7":86,"22":1067},"isBase":true}}}, +{"id":66960,"name":"Dirk's Command","icon":"inv_sword_1h_cataclysm_c_01","type":13,"weaponType":9,"handType":2,"stats":[91,0,136,0,0,61,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":1046,"weaponDamageMax":1943,"weaponSpeed":2.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":173,"weaponDamageMin":1046,"weaponDamageMax":1943,"stats":{"0":91,"2":136,"5":61,"7":61},"isBase":true}}}, +{"id":66962,"name":"Shadowskulk Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,212,319,0,0,150,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":150,"7":128,"22":1266},"isBase":true}}}, +{"id":66963,"name":"Treads of the Wyrmhunter","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,158,237,0,0,92,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"1":158,"2":237,"5":92,"6":113,"22":1408},"isBase":true}}}, +{"id":66964,"name":"Sand Tracker's Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,229,343,0,0,0,0,155,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":1753,"weaponDamageMax":3257,"weaponSpeed":3,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":1753,"weaponDamageMax":3257,"stats":{"1":229,"2":343,"7":155,"11":149},"isBase":true}}}, +{"id":66965,"name":"Drape of Fiery Dreams","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,127,191,0,0,0,81,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"1":127,"2":191,"6":81,"11":87,"22":563},"isBase":true}}}, +{"id":66966,"name":"Elekk-Horn Waistguard","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,170,255,0,0,0,102,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,1183,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"6":102,"11":120,"22":1183},"isBase":true}}}, +{"id":66967,"name":"Camelhide Treads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,170,255,0,0,0,0,113,0,0,0,113,0,0,0,0,0,0,0,0,0,0,1012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"1":170,"2":255,"7":113,"11":113,"22":1012},"isBase":true}}}, +{"id":66968,"name":"Lhakaz's Swiftblade","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,107,160,0,0,71,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"weaponDamageMin":969,"weaponDamageMax":1455,"weaponSpeed":1.8,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":203,"weaponDamageMin":969,"weaponDamageMax":1455,"stats":{"1":107,"2":160,"5":71,"8":71},"isBase":true}}}, +{"id":66969,"name":"Heart of the Vile","icon":"inv_misc_organ_02","type":12,"stats":[0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":234},"isBase":true}}}, +{"id":66970,"name":"Safecracker's Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,185,277,0,0,0,123,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":185,"2":277,"6":123,"11":123,"22":938},"isBase":true}}}, +{"id":66971,"name":"Highland Padded Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,249,373,0,0,0,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1895,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"1":249,"2":373,"6":166,"7":166,"22":1895},"isBase":true}}}, +{"id":66972,"name":"Crystalline Geoknife","icon":"inv_weapon_hand_35","type":13,"weaponType":3,"handType":2,"stats":[0,115,172,0,0,0,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"weaponSpeed":2.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":218,"weaponDamageMin":1320,"weaponDamageMax":2453,"stats":{"1":115,"2":172,"6":76,"7":76},"isBase":true}}}, +{"id":66973,"name":"Ravenheart Longbow","icon":"inv_bow_1h_cataclysm_c_01","type":14,"rangedWeaponType":1,"stats":[0,268,401,0,0,157,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1986,"weaponDamageMax":3689,"weaponSpeed":2.9,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1986,"weaponDamageMax":3689,"stats":{"1":268,"2":401,"5":157,"6":191},"isBase":true}}}, +{"id":66974,"name":"Nightrend Choker","icon":"inv_misc_necklacea11","type":2,"stats":[0,149,224,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"1":149,"2":224,"6":100,"7":100},"isBase":true}}}, +{"id":66975,"name":"Hood of the Crying Rogue","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,208,401,0,0,0,138,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1241,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"1":208,"2":401,"6":138,"7":158,"22":1241},"isBase":true}}}, +{"id":66976,"name":"Spaulders of the Savage Beast","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,179,298,0,0,0,140,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1668,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"1":179,"2":298,"6":140,"7":99,"22":1668},"isBase":true}}}, +{"id":66977,"name":"Pauldrons of Toil","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[136,0,204,0,0,0,79,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1985,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"0":136,"2":204,"6":79,"11":97,"22":1985},"isBase":true}}}, +{"id":66978,"name":"Rage-Possessed Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[183,0,275,0,0,0,0,122,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":2030,"weaponDamageMax":3045,"weaponSpeed":3.8,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"weaponDamageMin":2030,"weaponDamageMax":3045,"stats":{"0":183,"2":275,"7":122,"11":122},"isBase":true}}}, +{"id":66979,"name":"Bracers of Bloody Business","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[102,0,153,0,0,0,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,1158,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":194,"stats":{"0":102,"2":153,"6":68,"8":68,"22":1158},"isBase":true}}}, +{"id":66980,"name":"Girdle of Heated Deeds","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[126,0,219,0,0,0,77,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1538,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":126,"2":219,"6":77,"11":97,"22":1538},"isBase":true}}}, +{"id":66981,"name":"Axe of the Deadly Price","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[0,85,127,0,0,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"weaponSpeed":2.6,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":971,"weaponDamageMax":1804,"stats":{"1":85,"2":127,"5":56,"6":56},"isBase":true}}}, +{"id":66982,"name":"Greaves of the Outcast Knight","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[197,0,296,0,0,115,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"0":197,"2":296,"5":115,"6":141,"22":2393},"isBase":true}}}, +{"id":66983,"name":"Helm of Fatal Vision","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[212,0,319,0,0,0,128,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2296,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":128,"11":150,"22":2296},"isBase":true}}}, +{"id":66984,"name":"Eye of Heaven","icon":"inv_misc_necklacea10","type":2,"stats":[118,0,178,0,0,0,0,88,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":118,"2":178,"7":88,"8":64},"isBase":true}}}, +{"id":66985,"name":"Termination Axe","icon":"inv_axe_2h_cataclysm_c_01","type":13,"weaponType":1,"handType":4,"stats":[212,0,319,0,0,0,128,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":2232,"weaponDamageMax":3349,"weaponSpeed":3.6,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":2232,"weaponDamageMax":3349,"stats":{"0":212,"2":319,"6":128,"7":150},"isBase":true}}}, +{"id":66986,"name":"Troubled Steps","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[170,0,255,0,0,99,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2007,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"0":170,"2":255,"5":99,"6":121,"22":2007},"isBase":true}}}, +{"id":66987,"name":"Band of the Virtuous","icon":"inv_jewelry_ring_42","type":11,"stats":[127,0,191,0,0,0,74,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"6":74,"11":91},"isBase":true}}}, +{"id":66989,"name":"Endwyn's Flickering Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,0,108,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":185,"2":277,"6":108,"7":132,"22":1892},"isBase":true}}}, +{"id":66990,"name":"Downfall Hammer","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,107,160,0,0,71,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"weaponDamageMin":1225,"weaponDamageMax":2277,"weaponSpeed":2.6,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":203,"weaponDamageMin":1225,"weaponDamageMax":2277,"stats":{"1":107,"2":160,"5":71,"8":71},"isBase":true}}}, +{"id":66991,"name":"Cloak of Rich Anger","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[138,0,207,0,0,0,0,92,0,0,0,92,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"0":138,"2":207,"7":92,"11":92,"22":568},"isBase":true}}}, +{"id":66992,"name":"Harbinger's Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[268,0,401,0,0,0,178,0,0,0,0,178,0,0,0,0,0,0,0,0,0,0,3128,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"0":268,"2":401,"6":178,"11":178,"22":3128},"isBase":true}}}, +{"id":66993,"name":"Sorrow's End","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[268,0,401,0,0,0,0,161,0,0,0,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"weaponSpeed":3.6,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":2817,"weaponDamageMax":4227,"stats":{"0":268,"2":401,"7":161,"11":189},"isBase":true}}}, +{"id":66994,"name":"Soul's Anguish","icon":"spell_shadow_coneofsilence","type":12,"stats":[0,0,0,0,0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"5":252},"isBase":true}}}, +{"id":67024,"name":"Breastplate of Solemn Vows","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[183,0,275,0,0,0,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,2647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"stats":{"0":183,"2":275,"10":122,"11":122,"22":2647},"isBase":true}}}, +{"id":67027,"name":"Ring of Cursed Fate","icon":"inv_jewelry_ring_38","type":11,"stats":[78,0,153,0,0,52,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":292,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":194,"stats":{"0":78,"2":153,"5":52,"9":102},"isBase":true}}}, +{"id":67029,"name":"Death Pyre Mace","icon":"inv_mace_1h_cataclysm_c_02","type":13,"weaponType":4,"handType":2,"stats":[0,78,118,0,0,52,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":912,"weaponDamageMax":1694,"weaponSpeed":2.6,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":149,"weaponDamageMin":912,"weaponDamageMax":1694,"stats":{"1":78,"2":118,"5":52,"8":52},"isBase":true}}}, +{"id":67032,"name":"Firm-Set Treads","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[146,0,219,0,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,1880,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"0":146,"2":219,"10":97,"11":97,"22":1880},"isBase":true}}}, +{"id":67037,"name":"Binding Promise","icon":"spell_holy_greaterblessingoflight","type":12,"stats":[0,0,0,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"9":185},"isBase":true}}}, +{"id":67040,"name":"Amulet of the Howling Watch","icon":"inv_jewelry_necklace_40","type":2,"stats":[110,0,165,0,0,0,0,82,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":209,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":209,"stats":{"0":110,"2":165,"7":82,"8":59},"isBase":true}}}, +{"id":67043,"name":"Greaves of Sullen Earth","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[161,0,319,0,0,0,0,0,108,0,212,0,0,0,0,0,0,0,0,0,0,0,2472,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"stats":{"0":161,"2":319,"8":108,"10":212,"22":2472},"isBase":true}}}, +{"id":67045,"name":"Abatement Cannon","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,212,319,0,0,0,0,124,0,0,0,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"weaponDamageMin":1573,"weaponDamageMax":2922,"weaponSpeed":2.9,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":404,"weaponDamageMin":1573,"weaponDamageMax":2922,"stats":{"1":212,"2":319,"7":124,"11":152},"isBase":true}}}, +{"id":67047,"name":"Band of Pleasant Pain","icon":"inv_misc_vinering","type":11,"stats":[90,0,178,0,0,60,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"0":90,"2":178,"5":60,"9":118},"isBase":true}}}, +{"id":67050,"name":"Ben-Son's Royal Crown","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[229,0,343,0,0,116,0,0,0,0,174,0,0,0,0,0,0,0,0,0,0,0,2372,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"stats":{"0":229,"2":343,"5":116,"10":174,"22":2372},"isBase":true}}}, +{"id":67051,"name":"Blood Gout Amulet","icon":"inv_jewelry_necklace_17","type":2,"stats":[127,0,191,0,0,0,0,0,0,0,74,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"0":127,"2":191,"10":74,"11":91},"isBase":true}}}, +{"id":67052,"name":"Loyal Blade","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[98,0,147,0,0,65,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"weaponSpeed":2.6,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":186,"weaponDamageMin":1127,"weaponDamageMax":2094,"stats":{"0":98,"2":147,"5":65,"11":65},"isBase":true}}}, +{"id":67057,"name":"Oath-Bound Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[185,0,277,0,0,94,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,1892,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"0":185,"2":277,"5":94,"10":140,"22":1892},"isBase":true}}}, +{"id":67061,"name":"Bulwark of the Scorned Man","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[138,0,207,0,0,0,0,0,0,99,0,81,0,0,0,0,0,0,0,0,0,0,11389,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"0":138,"2":207,"9":99,"11":81,"22":11389},"isBase":true}}}, +{"id":67067,"name":"Belt of Guardianship","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[199,0,298,0,0,0,0,0,101,151,0,0,0,0,0,0,0,0,0,0,0,0,1760,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"0":199,"2":298,"8":101,"9":151,"22":1760},"isBase":true}}}, +{"id":67069,"name":"Shade of Death","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[149,0,224,0,0,0,0,0,76,114,0,0,0,0,0,0,0,0,0,0,0,0,572,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"0":149,"2":224,"8":76,"9":114,"22":572},"isBase":true}}}, +{"id":67071,"name":"Staff of Old Woes","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,268,401,0,0,0,178,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"weaponDamageMin":1878,"weaponDamageMax":2818,"weaponSpeed":2.4,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"weaponDamageMin":1878,"weaponDamageMax":2818,"stats":{"1":268,"2":401,"6":178,"7":178},"isBase":true}}}, +{"id":67088,"name":"Falling Snow Bracers","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,153,102,68,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":194,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":194,"stats":{"2":153,"3":102,"4":68,"6":68,"22":481},"isBase":true}}}, +{"id":67098,"name":"Sealing Heartstaff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,275,183,0,0,0,131,0,0,0,107,0,0,1048,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"weaponDamageMin":881,"weaponDamageMax":1322,"weaponSpeed":3.3,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"weaponDamageMin":881,"weaponDamageMax":1322,"stats":{"2":275,"3":183,"7":131,"11":107,"14":1048},"isBase":true}}}, +{"id":67099,"name":"Waistguard of New Days","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,204,136,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1489,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"2":204,"3":136,"4":90,"6":90,"22":1489},"isBase":true}}}, +{"id":67101,"name":"Unquenchable Flame","icon":"inv_summerfest_firespirit","type":12,"stats":[0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"4":172},"isBase":true}}}, +{"id":67102,"name":"Kilt of Elemental Mending","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,275,183,107,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1699,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":348,"ilvl":292,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":348,"stats":{"2":275,"3":183,"4":107,"6":131,"22":1699},"isBase":true}}}, +{"id":67103,"name":"Belt of Redeemed Fate","icon":"inv_belt_26","type":8,"armorType":2,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"4":97,"11":97,"22":800},"isBase":true}}}, +{"id":67104,"name":"Torchlight Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,127,85,56,0,0,56,0,0,0,0,0,0,1132,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":161,"weaponDamageMin":336,"weaponDamageMax":624,"weaponSpeed":1.8,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":161,"weaponDamageMin":336,"weaponDamageMax":624,"stats":{"2":127,"3":85,"4":56,"7":56,"14":1132},"isBase":true}}}, +{"id":67105,"name":"Elementbinder Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,219,146,97,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"4":97,"6":97,"22":1246},"isBase":true}}}, +{"id":67106,"name":"Robes of Broken Dreams","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,296,157,131,0,0,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,1108,0,0,0,0],"gemSockets":[3,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":375,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":375,"stats":{"2":296,"3":157,"4":131,"11":91,"22":1108},"isBase":true}}}, +{"id":67109,"name":"Gauntlets of Chattering Valves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,219,146,97,0,0,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"ilvl":300,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"300":{"randPropPoints":278,"stats":{"2":219,"3":146,"4":97,"11":97,"22":1709},"isBase":true}}}, +{"id":67111,"name":"Soulsurge Necklace","icon":"inv_misc_necklacea1","type":2,"stats":[0,0,177,118,83,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":225,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":225,"stats":{"2":177,"3":118,"4":83,"6":71},"isBase":true}}}, +{"id":67112,"name":"Brittany's Ceremonial Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,237,158,105,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1085,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"7":105,"22":1085},"isBase":true}}}, +{"id":67113,"name":"Medic's Bloodstained Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,237,158,92,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0,768,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":92,"11":113,"22":768},"isBase":true}}}, +{"id":67114,"name":"Girdle of Chained Thunder","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,105,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"6":105,"22":1152},"isBase":true}}}, +{"id":67115,"name":"Soulheart Bindings","icon":"inv_bracer_09","type":6,"armorType":4,"stats":[0,0,191,127,85,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,1277,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":85,"11":85,"22":1277},"isBase":true}}}, +{"id":67116,"name":"Heartbinder Ring","icon":"inv_misc_kingsring2","type":11,"stats":[0,0,191,127,91,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":242,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":242,"stats":{"2":191,"3":127,"4":91,"11":74},"isBase":true}}}, +{"id":67117,"name":"Woundsealer Spaulders","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,255,170,121,0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,844,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"2":255,"3":170,"4":121,"7":99,"22":844},"isBase":true}}}, +{"id":67118,"name":"Electrospark Heartstarter","icon":"inv_misc_enggizmos_02","type":12,"stats":[0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":323,"ilvl":316,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":323,"stats":{"4":215},"isBase":true}}}, +{"id":67119,"name":"Thousand Bandage Drape","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,207,138,99,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,568,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":263,"stats":{"2":207,"3":138,"4":99,"11":81,"22":568},"isBase":true}}}, +{"id":67120,"name":"Mace of Apotheosis","icon":"inv_mace_1h_cataclysm_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,160,107,54,0,0,0,0,0,0,81,0,0,1427,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":203,"weaponDamageMin":542,"weaponDamageMax":1007,"weaponSpeed":2.3,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":203,"weaponDamageMin":542,"weaponDamageMax":1007,"stats":{"2":160,"3":107,"4":54,"11":81,"14":1427},"isBase":true}}}, +{"id":67121,"name":"Chestguard of the Caring Ursine","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,373,249,166,0,0,0,0,0,0,166,0,0,0,0,0,0,0,0,0,0,1501,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"4":166,"11":166,"22":1501},"isBase":true}}}, +{"id":67122,"name":"Helm of Holy Visions","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,373,249,0,0,166,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":473,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":473,"stats":{"2":373,"3":249,"6":166,"7":166,"22":2460},"isBase":true}}}, +{"id":67123,"name":"Sinman's Helm of Succor","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,401,268,0,0,0,191,0,0,0,157,0,0,0,0,0,0,0,0,0,0,1807,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":509,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":509,"stats":{"2":401,"3":268,"7":191,"11":157,"22":1807},"isBase":true}}}, +{"id":67124,"name":"Zulian Swirling Shield","icon":"inv_shield_42","type":13,"weaponType":7,"handType":3,"stats":[0,0,224,149,0,0,108,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11504,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":108,"7":85,"22":11504},"isBase":true}}}, +{"id":67125,"name":"Bone-Inlaid Sarcophagus Key","icon":"inv_datacrystal01","type":13,"weaponType":5,"handType":3,"stats":[0,0,224,149,107,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"4":107,"6":87},"isBase":true}}}, +{"id":67126,"name":"Roffle's Ruffly Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,298,199,133,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"4":133,"7":133,"22":715},"isBase":true}}}, +{"id":67127,"name":"Bracers of Caustic Purification","icon":"inv_bracer_16","type":6,"armorType":2,"stats":[0,0,224,149,0,0,87,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,668,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":284,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":284,"stats":{"2":224,"3":149,"6":87,"7":107,"22":668},"isBase":true}}}, +{"id":67129,"name":"Signet of High Arcanist Savor","icon":"inv_misc_pearlring1","type":11,"stats":[0,0,286,190,0,121,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":121,"6":131},"isBase":true}}}, +{"id":67130,"name":"Dorian's Lost Necklace","icon":"inv_misc_forestnecklace","type":2,"stats":[0,0,286,190,0,0,0,134,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":134,"11":114},"isBase":true}}}, +{"id":67131,"name":"Ritssyn's Ruminous Drape","icon":"inv_misc_cape_cataclysm_caster_c_01","type":4,"armorType":1,"stats":[0,0,286,170,0,0,0,107,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":170,"7":107,"11":127,"22":625},"isBase":true}}}, +{"id":67132,"name":"Grips of the Failed Immortal","icon":"inv_glove_robe_raidmage_i_01","type":7,"armorType":1,"stats":[0,0,380,233,0,0,169,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"6":169,"7":149,"22":782},"isBase":true}}}, +{"id":67133,"name":"Dizze's Whirling Robe","icon":"inv_chest_cloth_raidwarlock_i_01","type":5,"armorType":1,"stats":[0,0,512,301,0,0,165,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"6":165,"11":244,"22":1251},"isBase":true}}}, +{"id":67134,"name":"Dory's Finery","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,190,286,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":127,"6":127,"22":625},"isBase":true}}}, +{"id":67135,"name":"Morrie's Waywalker Wrap","icon":"inv_chest_leather_raiddruid_i_01","type":5,"armorType":2,"stats":[0,301,512,0,0,0,198,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"6":198,"11":218,"22":1669},"isBase":true}}}, +{"id":67136,"name":"Gilnean Ring of Ruination","icon":"inv_misc_emeraldstonering","type":11,"stats":[0,190,286,0,0,108,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":108,"7":138},"isBase":true}}}, +{"id":67137,"name":"Don Rodrigo's Fabulous Necklace","icon":"inv_misc_necklacea9","type":2,"stats":[0,190,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":96,"11":145},"isBase":true}}}, +{"id":67138,"name":"Buc-Zakai Choker","icon":"inv_misc_necklacea8","type":2,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":67139,"name":"Blauvelt's Family Crest","icon":"inv_misc_diamondring1","type":11,"stats":[190,0,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":67140,"name":"Drape of Inimitable Fate","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":67141,"name":"Corefire Legplates","icon":"inv_pants_plate_raidwarrior_i_01","type":9,"armorType":4,"stats":[301,0,512,0,0,165,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":301,"2":512,"5":165,"7":241,"22":2998},"isBase":true}}}, +{"id":67142,"name":"Zom's Electrostatic Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[136,0,286,0,0,0,0,0,111,190,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":136,"2":286,"8":111,"9":190,"22":625},"isBase":true}}}, +{"id":67143,"name":"Icebone Hauberk","icon":"inv_chest_plate_raiddeathknight_i_01","type":5,"armorType":4,"stats":[239,0,512,0,0,173,0,0,0,0,281,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":239,"2":512,"5":173,"10":281,"22":3426},"isBase":true}}}, +{"id":67144,"name":"Pauldrons of Edward the Odd","icon":"inv_shoulder_plate_raidpaladin_i_01","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,112,179,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":112,"11":179,"22":2570},"isBase":true}}}, +{"id":67145,"name":"Blockade's Lost Shield","icon":"inv_shield_grimbatolraid_d_01","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,0,114,134,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"10":114,"11":134,"22":11896},"isBase":true}}}, +{"id":67146,"name":"Woundsplicer Handwraps","icon":"inv_gauntlets_cloth_raidpriest_i_01","type":7,"armorType":1,"stats":[0,0,380,233,149,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":233,"4":149,"7":169,"22":782},"isBase":true}}}, +{"id":67147,"name":"Je'Tze's Sparkling Tiara","icon":"inv_helmet_cloth_raidpriest_i_01","type":1,"armorType":1,"stats":[0,0,512,281,201,0,0,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":281,"4":201,"7":185,"22":1016},"isBase":true}}}, +{"id":67148,"name":"Kilt of Trollish Dreams","icon":"inv_pant_raidshaman_i_01","type":9,"armorType":3,"stats":[0,0,512,301,188,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":301,"4":188,"7":228,"22":2129},"isBase":true}}}, +{"id":67149,"name":"Heartbound Tome","icon":"inv_misc_book_17","type":13,"weaponType":5,"handType":3,"stats":[0,0,286,190,134,0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":134,"11":114},"isBase":true}}}, +{"id":67150,"name":"Arrowsinger Legguards","icon":"inv_pant_mail_raidhunter_i_01","type":9,"armorType":3,"stats":[0,301,512,0,0,165,0,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":301,"2":512,"5":165,"11":241,"22":2129},"isBase":true}}}, +{"id":67152,"name":"Lady La-La's Singing Shell","icon":"inv_misc_shell_03","type":12,"stats":[0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":258,"ilvl":292,"quality":3,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"292":{"randPropPoints":258,"stats":{"4":172},"isBase":true}}}, +{"id":67153,"name":"Mobus's Vile Halberd","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,302,454,0,0,0,0,205,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2319,"weaponDamageMax":4307,"weaponSpeed":3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2319,"weaponDamageMax":4307,"stats":{"1":302,"2":454,"7":205,"11":197},"isBase":true}}}, +{"id":67233,"name":"Sussurating Treads of Shok'sharak","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,337,205,0,0,135,0,0,0,0,138,0,0,0,0,0,0,0,0,0,0,2268,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"6":135,"11":138,"22":2268},"isBase":true}}}, +{"id":67234,"name":"Thartuk's Inimitable Gauntlets","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,185,277,0,0,0,94,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":351,"ilvl":325,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"325":{"randPropPoints":351,"stats":{"1":185,"2":277,"6":94,"11":140,"22":938},"isBase":true}}}, +{"id":67235,"name":"Garr's Girdle of Memories","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[225,0,337,0,0,0,121,0,0,0,0,167,0,0,0,0,0,0,0,0,0,0,1855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"0":225,"2":337,"6":121,"11":167,"22":1855},"isBase":true}}}, +{"id":67236,"name":"Blazewing's Furious Kilt","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,454,262,182,0,0,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1374,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":182,"11":173,"22":1374},"isBase":true}}}, +{"id":67237,"name":"Golgarok's Tenderized Treads","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,298,199,0,0,144,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,787,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":378,"ilvl":333,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"333":{"randPropPoints":378,"stats":{"2":298,"3":199,"6":144,"7":113,"22":787},"isBase":true}}}, +{"id":67238,"name":"Terborus's Rotating Bands","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[148,0,252,0,0,99,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,1443,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":148,"2":252,"5":99,"11":101,"22":1443},"isBase":true}}}, +{"id":67239,"name":"Xariona's Spectral Claws","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,225,337,0,0,0,131,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1451,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":225,"2":337,"6":131,"7":161,"22":1451},"isBase":true}}}, +{"id":67240,"name":"Belt of a Thousand Mouths","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,225,337,0,0,0,150,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,884,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"1":225,"2":337,"6":150,"7":150,"22":884},"isBase":true}}}, +{"id":67242,"name":"Tol'Vir Hereditary Girdle","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,237,158,120,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1152,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":308,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"308":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":120,"6":80,"22":1152},"isBase":true}}}, +{"id":67243,"name":"Armagedillo's Tail","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[220,0,331,0,0,0,112,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":419,"weaponDamageMin":2124,"weaponDamageMax":3186,"weaponSpeed":3.3,"ilvl":312,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"312":{"randPropPoints":419,"weaponDamageMin":2124,"weaponDamageMax":3186,"stats":{"0":220,"2":331,"6":112,"7":167},"isBase":true}}}, +{"id":67244,"name":"Sunderfury's Sundries","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,454,262,186,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"stats":{"2":454,"3":262,"4":186,"6":167,"22":1015},"isBase":true}}}, +{"id":67245,"name":"Tarvus's Poison-Scarred Boots","icon":"inv_boots_chain_03","type":10,"armorType":2,"stats":[0,0,337,205,114,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1080,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":427,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":427,"stats":{"2":337,"3":205,"4":114,"6":151,"22":1080},"isBase":true}}}, +{"id":67246,"name":"Beak of Julak-Doom","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,194,129,0,76,0,0,0,0,0,93,0,0,1729,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"weaponSpeed":1.8,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":516,"weaponDamageMax":958,"stats":{"2":194,"3":129,"5":76,"11":93,"14":1729},"isBase":true}}}, +{"id":67602,"name":"Elementium Gutslicer","icon":"inv_axe_1h_bwdraid_d_01","type":13,"weaponType":1,"handType":2,"stats":[0,129,194,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"1":129,"2":194,"5":86,"11":86},"isBase":true}}}, +{"id":67605,"name":"Forged Elementium Mindcrusher","icon":"inv_mace_46","type":13,"weaponType":4,"handType":4,"stats":[302,0,454,0,0,0,202,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"weaponSpeed":3.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":3180,"weaponDamageMax":4771,"stats":{"0":302,"2":454,"6":202,"8":202},"isBase":true}}}, +{"id":68014,"name":"Flintlocke's Chuckshooter","icon":"inv_firearm_2h_rifle_cataclysm_b_01","type":14,"rangedWeaponType":3,"stats":[0,233,349,0,0,0,162,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"weaponSpeed":2.8,"ilvl":318,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"318":{"randPropPoints":443,"weaponDamageMin":1667,"weaponDamageMax":3097,"stats":{"1":233,"2":349,"6":162,"7":144},"isBase":true}}}, +{"id":68050,"name":"Shatterscale Mightfish","icon":"inv_misc_fish_42","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1433,"weaponDamageMax":2662,"weaponSpeed":2.5,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1433,"weaponDamageMax":2662,"isBase":true}}}, +{"id":68127,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"stats":{"14":1954},"isBase":true}}}, +{"id":68128,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"isBase":true}}}, +{"id":68129,"name":"Stormwake, the Tempest's Reach","icon":"inv_sword_1h_bwdraid_d_02","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"isBase":true}}}, +{"id":68161,"name":"Krol Decapitator","icon":"inv_sword_18","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,86,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"5":86,"7":105},"isBase":true}}}, +{"id":68163,"name":"The Twilight Blade","icon":"inv_weapon_shortblade_26","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1331,"weaponDamageMax":1997,"isBase":true}}}, +{"id":68601,"name":"Scaleslicer","icon":"inv_knife_1h_bwdraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,97,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"weaponSpeed":1.8,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5094,"otherName":"Trash Mobs"}}],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"stats":{"1":146,"2":219,"5":97,"8":97},"isBase":true}}}, +{"id":68709,"name":"Unsolvable Riddle","icon":"inv_misc_stonetablet_11","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":68739,"name":"Darkheart Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,0,78,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1177,"repLevel":7,"factionId":1}}],"factionRestriction":1,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"8":78,"11":91},"isBase":true}}}, +{"id":68740,"name":"Darkheart Hacker","icon":"inv_axe_1h_cataclysm_c_01","type":13,"weaponType":1,"handType":2,"stats":[129,0,194,0,0,0,0,0,78,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"weaponSpeed":2.6,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"rep":{"repFactionId":1178,"repLevel":7,"factionId":2}}],"factionRestriction":2,"scalingOptions":{"346":{"randPropPoints":246,"weaponDamageMin":1490,"weaponDamageMax":2769,"stats":{"0":129,"2":194,"8":78,"11":91},"isBase":true}}}, +{"id":68775,"name":"Volatile Alchemist Stone","icon":"item_alchemiststoneb","type":12,"stats":[301,0,0,0,0,0,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":301,"11":194},"isBase":true}}}, +{"id":68776,"name":"Quicksilver Alchemist Stone","icon":"item_alchemiststone","type":12,"stats":[0,301,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":301,"6":194},"isBase":true}}}, +{"id":68777,"name":"Vibrant Alchemist Stone","icon":"item_alchemiststonec","type":12,"stats":[0,0,0,301,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":301,"7":194},"isBase":true}}}, +{"id":68812,"name":"Hornet-Sting Band","icon":"inv_jewelry_ring_82","type":11,"stats":[0,190,286,0,0,0,0,131,0,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":131,"11":121},"isBase":true}}}, +{"id":69549,"name":"Wristguards of the Predator","icon":"inv_bracer_22b","type":6,"armorType":3,"stats":[0,180,270,0,0,0,0,123,0,0,0,114,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"7":123,"11":114,"22":1042},"isBase":true}}}, +{"id":69550,"name":"Leggings of Ancient Magics","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,484,283,0,0,187,0,0,0,0,202,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"6":187,"11":202,"22":1057},"isBase":true}}}, +{"id":69551,"name":"Feathers of Akil'zon","icon":"inv_shoulder_83","type":3,"armorType":2,"stats":[0,0,360,220,129,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":129,"7":164,"22":1217},"isBase":true}}}, +{"id":69552,"name":"Bracers of Hidden Purpose","icon":"inv_bracer_05","type":6,"armorType":4,"stats":[0,0,270,180,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":120,"7":120,"22":1473},"isBase":true}}}, +{"id":69553,"name":"Talonguard Band","icon":"inv_jewelry_ring_14","type":11,"stats":[180,0,270,0,0,0,0,0,111,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Akil'zon"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"8":111,"10":125},"isBase":true}}}, +{"id":69554,"name":"Pauldrons of Nalorakk","icon":"inv_shoulder_85","type":3,"armorType":3,"stats":[0,220,360,0,0,152,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"5":152,"6":148,"22":1786},"isBase":true}}}, +{"id":69555,"name":"Boots of the Ursine","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":1,"stats":[0,0,360,220,0,0,138,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,831,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"6":138,"11":159,"22":831},"isBase":true}}}, +{"id":69556,"name":"Armbands of the Bear Spirit","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,270,180,130,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":130,"6":102,"22":710},"isBase":true}}}, +{"id":69557,"name":"Jungle Striders","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[283,0,484,0,0,0,0,199,190,0,0,0,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":283,"2":484,"7":199,"8":190,"22":2946},"isBase":true}}}, +{"id":69558,"name":"Spiritshield Mask","icon":"inv_helmet_115","type":1,"armorType":4,"stats":[263,0,484,0,0,0,0,0,0,201,159,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,3],"socketBonus":[0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Nalorakk"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":263,"2":484,"9":201,"10":159,"22":2735},"isBase":true}}}, +{"id":69559,"name":"Amani'shi Bracers","icon":"inv_bracer_02","type":6,"armorType":2,"stats":[0,180,270,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,710,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"7":120,"8":120,"22":710},"isBase":true}}}, +{"id":69560,"name":"Jan'alai's Spaulders","icon":"inv_shoulder_82","type":3,"armorType":1,"stats":[0,0,360,220,0,147,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"5":147,"6":151,"22":906},"isBase":true}}}, +{"id":69561,"name":"Hawkscale Waistguard","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":3,"stats":[0,0,360,220,0,0,0,155,0,0,0,143,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"7":155,"11":143,"22":1339},"isBase":true}}}, +{"id":69562,"name":"Boots of Bad Mojo","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[0,0,360,220,151,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2314,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":151,"7":146,"22":2314},"isBase":true}}}, +{"id":69563,"name":"Ring of the Numberless Brood","icon":"inv_jewelry_ring_zulgurub_01","type":11,"stats":[180,0,270,0,0,0,0,114,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Jan'alai"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"7":114,"11":123},"isBase":true}}}, +{"id":69564,"name":"The Savager's Mask","icon":"inv_helmet_110","type":1,"armorType":2,"stats":[0,263,484,0,0,0,175,0,192,0,0,0,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":263,"2":484,"6":175,"8":192,"22":1319},"isBase":true}}}, +{"id":69565,"name":"Breastplate of Primal Fury","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,283,484,0,0,0,195,0,0,0,0,192,0,0,0,0,0,0,0,0,0,0,2381,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":283,"2":484,"6":195,"11":192,"22":2381},"isBase":true}}}, +{"id":69566,"name":"Shimmerclaw Band","icon":"inv_jewelry_ring_20","type":11,"stats":[0,0,270,180,0,127,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"5":127,"7":108},"isBase":true}}}, +{"id":69567,"name":"Wristwraps of Departed Spirits","icon":"inv_bracer_12","type":6,"armorType":1,"stats":[0,0,270,180,125,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":125,"11":111,"22":529},"isBase":true}}}, +{"id":69568,"name":"Shadowmender Wristguards","icon":"inv_bracer_30b","type":6,"armorType":3,"stats":[0,0,270,180,0,0,111,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Halazzi"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":111,"7":125,"22":1042},"isBase":true}}}, +{"id":69569,"name":"Shadowtooth Trollskin Breastplate","icon":"inv_chest_leather_14","type":5,"armorType":2,"stats":[0,283,484,0,0,0,164,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":283,"2":484,"6":164,"7":216,"22":1623},"isBase":true}}}, +{"id":69570,"name":"Waistband of Hexes","icon":"inv_belt_24","type":8,"armorType":3,"stats":[0,220,360,0,0,0,0,141,0,0,0,152,0,0,0,0,0,0,0,0,0,0,1339,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"7":141,"11":152,"22":1339},"isBase":true}}}, +{"id":69571,"name":"Soul Drain Signet","icon":"inv_jewelry_ring_16","type":11,"stats":[0,0,270,180,114,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":114,"7":123},"isBase":true}}}, +{"id":69572,"name":"Hex Lord's Bloody Cloak","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[180,0,270,0,0,0,0,117,0,0,0,122,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"7":117,"11":122,"22":604},"isBase":true}}}, +{"id":69573,"name":"Pauldrons of Sacrifice","icon":"inv_shoulder_84","type":3,"armorType":4,"stats":[219,0,360,0,0,0,0,0,0,0,162,136,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":219,"2":360,"10":162,"11":136,"22":2525},"isBase":true}}}, +{"id":69574,"name":"Tusked Shoulderpads","icon":"inv_shoulder_58","type":3,"armorType":2,"stats":[0,220,360,0,0,0,153,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1217,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"6":153,"7":147,"22":1217},"isBase":true}}}, +{"id":69575,"name":"Mace of the Sacrificed","icon":"inv_mace_2h_pvp400_c_01","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,85,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"5":85,"7":96},"isBase":true}}}, +{"id":69576,"name":"Headdress of Sharpened Vision","icon":"inv_helmet_113","type":1,"armorType":3,"stats":[0,263,484,0,0,164,0,0,0,0,0,198,0,0,0,0,0,0,0,0,0,0,1935,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":263,"2":484,"5":164,"11":198,"22":1935},"isBase":true}}}, +{"id":69577,"name":"Collar of Bones","icon":"inv_helmet_102","type":1,"armorType":1,"stats":[0,0,484,263,0,198,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":263,"5":198,"6":164,"22":982},"isBase":true}}}, +{"id":69578,"name":"Hexing Robes","icon":"inv_kilt_cloth_04v4","type":5,"armorType":1,"stats":[0,0,484,283,204,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"4":204,"11":183,"22":1208},"isBase":true}}}, +{"id":69579,"name":"Amani Headdress","icon":"inv_helmet_112","type":1,"armorType":2,"stats":[0,0,484,263,185,0,0,0,0,0,0,185,0,0,0,0,0,0,0,0,0,0,1319,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":263,"4":185,"11":185,"22":1319},"isBase":true}}}, +{"id":69580,"name":"Mask of Restless Spirits","icon":"inv_helmet_116","type":1,"armorType":3,"stats":[0,0,484,263,195,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1935,0,0,0,0],"gemSockets":[1,4],"socketBonus":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":263,"4":195,"6":169,"22":1935},"isBase":true}}}, +{"id":69581,"name":"Amani Scepter of Rites","icon":"inv_mace_18","type":13,"weaponType":4,"handType":2,"stats":[0,0,207,138,92,0,0,0,0,0,0,92,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"stats":{"2":207,"3":138,"4":92,"11":92,"14":1848},"isBase":true}}}, +{"id":69582,"name":"Skullpiercer Pauldrons","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[220,0,360,0,0,0,152,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":220,"2":360,"6":152,"11":148,"22":2525},"isBase":true}}}, +{"id":69583,"name":"Legguards of the Unforgiving","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[283,0,484,0,0,0,0,0,0,0,197,192,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Daakara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":283,"2":484,"10":197,"11":192,"22":2946},"isBase":true}}}, +{"id":69584,"name":"Recovered Cloak of Frostheim","icon":"inv_misc_cape_17","type":4,"armorType":1,"stats":[0,180,270,0,0,117,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"5":117,"7":122,"22":604},"isBase":true}}}, +{"id":69585,"name":"Wristwraps of Madness","icon":"inv_bracer_08","type":6,"armorType":1,"stats":[0,0,270,180,0,0,122,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":122,"7":117,"22":529},"isBase":true}}}, +{"id":69586,"name":"Two-Toed Boots","icon":"inv_boots_leather_8","type":10,"armorType":2,"stats":[0,0,360,220,0,0,161,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"6":161,"7":136,"22":1116},"isBase":true}}}, +{"id":69587,"name":"Chestplate of Hubris","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[283,0,484,0,0,0,204,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[4,3],"socketBonus":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":283,"2":484,"6":204,"7":186,"22":3366},"isBase":true}}}, +{"id":69588,"name":"Skullcrusher Warboots","icon":"inv_boots_plate_10","type":10,"armorType":4,"stats":[220,0,360,0,0,148,0,0,0,0,0,150,0,0,0,0,0,0,0,0,0,0,2314,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":220,"2":360,"5":148,"11":150,"22":2314},"isBase":true}}}, +{"id":69589,"name":"Leggings of Dancing Blades","icon":"inv_pants_leather_26","type":9,"armorType":2,"stats":[0,283,484,0,0,0,174,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":283,"2":484,"6":174,"8":206,"22":1420},"isBase":true}}}, +{"id":69590,"name":"Mojo-Mender's Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":3,"stats":[0,0,360,220,162,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":162,"7":131,"22":1488},"isBase":true}}}, +{"id":69591,"name":"Voodoo Hexblade","icon":"inv_weapon_shortblade_64","type":13,"weaponType":2,"handType":2,"stats":[0,0,207,138,0,0,92,92,0,0,0,0,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":489,"weaponDamageMax":909,"stats":{"2":207,"3":138,"6":92,"7":92,"14":1848},"isBase":true}}}, +{"id":69592,"name":"Reforged Trollbane","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[323,0,484,0,0,189,0,0,0,0,0,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"0":323,"2":484,"5":189,"11":231},"isBase":true}}}, +{"id":69593,"name":"Battleplate of the Amani Empire","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[283,0,484,0,0,0,0,0,215,167,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Timed Reward Chest"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":283,"2":484,"8":215,"9":167,"22":3366},"isBase":true}}}, +{"id":69594,"name":"T'wansi's Handwraps","icon":"inv_gauntlets_robe_common_c_01v1","type":7,"armorType":2,"stats":[0,0,360,220,145,0,0,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":145,"11":153,"22":1015},"isBase":true}}}, +{"id":69595,"name":"Fetish Greaves","icon":"inv_pants_plate_28","type":9,"armorType":4,"stats":[0,0,484,283,0,0,209,0,0,0,0,171,0,0,0,0,0,0,0,0,0,0,2946,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"6":209,"11":171,"22":2946},"isBase":true}}}, +{"id":69596,"name":"Voodoo Hunting Bow","icon":"inv_waepon_bow_zulgrub_d_02","type":14,"rangedWeaponType":1,"stats":[0,323,484,0,0,219,0,0,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"weaponSpeed":2.9,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"stats":{"1":323,"2":484,"5":219,"8":210},"isBase":true}}}, +{"id":69598,"name":"Robes of Dissention","icon":"inv_kilt_cloth_04v2","type":5,"armorType":1,"stats":[0,0,484,283,0,0,182,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1208,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"6":182,"7":198,"22":1208},"isBase":true}}}, +{"id":69599,"name":"Pauldrons of Ambition","icon":"inv_shoulder_81","type":3,"armorType":4,"stats":[0,0,360,220,152,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2525,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":152,"6":148,"22":2525},"isBase":true}}}, +{"id":69600,"name":"Belt of Slithering Serpents","icon":"inv_belt_94v1","type":8,"armorType":2,"stats":[0,220,360,0,0,0,0,142,0,0,0,155,0,0,0,0,0,0,0,0,0,0,913,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"7":142,"11":155,"22":913},"isBase":true}}}, +{"id":69601,"name":"Serpentine Leggings","icon":"inv_pants_cloth_01","type":9,"armorType":1,"stats":[0,0,484,283,0,211,0,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1057,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"5":211,"7":176,"22":1057},"isBase":true}}}, +{"id":69602,"name":"Signet of Venoxis","icon":"inv_jewelry_ring_37","type":11,"stats":[0,0,270,180,0,0,0,120,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"7":120,"11":120},"isBase":true}}}, +{"id":69603,"name":"Breastplate of Serenity","icon":"inv_chest_mail_05","type":5,"armorType":3,"stats":[0,0,484,283,198,0,0,0,0,0,0,191,0,0,0,0,0,0,0,0,0,0,2381,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"4":198,"11":191,"22":2381},"isBase":true}}}, +{"id":69604,"name":"Coils of Hate","icon":"inv_belt_50","type":8,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,146,0,152,0,0,0,0,0,0,0,0,0,0,1894,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priest Venoxis"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":220,"2":360,"9":146,"11":152,"22":1894},"isBase":true}}}, +{"id":69605,"name":"Amulet of the Watcher","icon":"inv_jewelry_necklace_zulgurub_01","type":2,"stats":[0,180,270,0,0,0,125,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"6":125,"11":111},"isBase":true}}}, +{"id":69606,"name":"Hakkari Loa Drape","icon":"inv_misc_cape_19","type":4,"armorType":1,"stats":[0,0,270,180,0,127,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"5":127,"11":108,"22":604},"isBase":true}}}, +{"id":69607,"name":"Touch of Discord","icon":"inv_offhand_stratholme_a_02","type":14,"rangedWeaponType":6,"stats":[0,0,207,138,0,0,83,98,0,0,0,0,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":699,"weaponDamageMax":699,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":699,"weaponDamageMax":699,"stats":{"2":207,"3":138,"6":83,"7":98,"14":1848},"isBase":true}}}, +{"id":69608,"name":"Deathcharged Wristguards","icon":"inv_bracer_04","type":6,"armorType":4,"stats":[180,0,270,0,0,0,111,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"6":111,"8":125,"22":1473},"isBase":true}}}, +{"id":69609,"name":"Bloodlord's Protector","icon":"inv_sword_54","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Bloodlord Mandokir"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"9":92,"10":92},"isBase":true}}}, +{"id":69610,"name":"Arlokk's Signet","icon":"inv_jewelry_ring_zulgurub_02","type":11,"stats":[0,180,270,0,0,0,122,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"6":122,"11":117},"isBase":true}}}, +{"id":69611,"name":"Sash of Anguish","icon":"inv_belt_74","type":8,"armorType":1,"stats":[0,0,360,220,0,0,145,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,680,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"6":145,"7":153,"22":680},"isBase":true}}}, +{"id":69612,"name":"Claw-Fringe Mantle","icon":"inv_shoulder_102","type":3,"armorType":1,"stats":[0,0,360,220,128,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":128,"6":164,"22":906},"isBase":true}}}, +{"id":69613,"name":"Leggings of the Pride","icon":"inv_pants_leather_37","type":9,"armorType":2,"stats":[0,0,484,283,203,0,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1420,0,0,0,0],"gemSockets":[4,4],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"4":203,"6":177,"22":1420},"isBase":true}}}, +{"id":69614,"name":"Roaring Mask of Bethekk","icon":"inv_helmet_114","type":1,"armorType":4,"stats":[263,0,484,0,0,0,192,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"High Priestess Kilnara"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"0":263,"2":484,"6":192,"7":175,"22":2735},"isBase":true}}}, +{"id":69615,"name":"Zombie Walker Legguards","icon":"inv_pants_leather_35","type":9,"armorType":3,"stats":[0,283,484,0,0,0,193,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2084,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"1":283,"2":484,"6":193,"7":197,"22":2084},"isBase":true}}}, +{"id":69616,"name":"Spiritbinder Spaulders","icon":"inv_shoulder_86","type":3,"armorType":3,"stats":[0,0,360,220,137,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1786,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":220,"4":137,"7":160,"22":1786},"isBase":true}}}, +{"id":69617,"name":"Plumed Medicine Helm","icon":"inv_helmet_111","type":1,"armorType":4,"stats":[0,0,484,263,159,0,0,0,0,0,0,201,0,0,0,0,0,0,0,0,0,0,2735,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":263,"4":159,"11":201,"22":2735},"isBase":true}}}, +{"id":69618,"name":"Zulian Slasher","icon":"inv_sword_77","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,96,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"5":96,"6":85},"isBase":true}}}, +{"id":69619,"name":"Bone Plate Handguards","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[220,0,360,0,0,0,0,0,0,131,164,0,0,0,0,0,0,0,0,0,0,0,2104,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Zanzil"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":220,"2":360,"9":131,"10":164,"22":2104},"isBase":true}}}, +{"id":69620,"name":"Twinblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,92,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"weaponSpeed":1.8,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"stats":{"1":138,"2":207,"5":92,"8":92},"isBase":true}}}, +{"id":69621,"name":"Twinblade of the Hakkari","icon":"inv_sword_55","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,0,92,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"weaponSpeed":1.8,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1101,"weaponDamageMax":2046,"stats":{"1":138,"2":207,"6":92,"7":92},"isBase":true}}}, +{"id":69622,"name":"The Hexxer's Mask","icon":"inv_mask_02","type":1,"armorType":1,"stats":[0,0,484,263,164,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":263,"4":164,"7":198,"22":982},"isBase":true}}}, +{"id":69623,"name":"Vestments of the Soulflayer","icon":"inv_chest_leather_07","type":5,"armorType":2,"stats":[0,0,484,282,0,0,207,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,1623,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":282,"6":207,"11":175,"22":1623},"isBase":true}}}, +{"id":69624,"name":"Legacy of Arlokk","icon":"inv_staff_35","type":13,"weaponType":8,"handType":4,"stats":[0,0,484,323,0,0,0,215,0,0,0,215,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":1556,"weaponDamageMax":2334,"weaponSpeed":3.3,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":1556,"weaponDamageMax":2334,"stats":{"2":484,"3":323,"7":215,"11":215,"14":1849},"isBase":true}}}, +{"id":69625,"name":"Mandokir's Tribute","icon":"inv_waepon_bow_zulgrub_d_01","type":14,"rangedWeaponType":1,"stats":[0,323,484,0,0,0,222,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"weaponSpeed":2.9,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"stats":{"1":323,"2":484,"6":222,"7":205},"isBase":true}}}, +{"id":69626,"name":"Jin'do's Verdict","icon":"inv_staff_33","type":13,"weaponType":8,"handType":4,"stats":[0,323,484,0,0,0,215,0,0,0,0,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3112,"weaponDamageMax":4668,"weaponSpeed":3.3,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3112,"weaponDamageMax":4668,"stats":{"1":323,"2":484,"6":215,"11":215},"isBase":true}}}, +{"id":69627,"name":"Zulian Ward","icon":"inv_shield_22","type":13,"weaponType":7,"handType":3,"stats":[0,0,270,180,0,0,122,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"6":122,"7":117,"22":11803},"isBase":true}}}, +{"id":69628,"name":"Jeklik's Smasher","icon":"inv_mace_19","type":13,"weaponType":4,"handType":4,"stats":[323,0,484,0,0,0,205,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"weaponSpeed":3.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":3395,"weaponDamageMax":5093,"stats":{"0":323,"2":484,"6":205,"11":222},"isBase":true}}}, +{"id":69629,"name":"Shield of the Blood God","icon":"inv_shield_zulgurub_d_02","type":13,"weaponType":7,"handType":3,"stats":[180,0,270,0,0,0,0,0,0,122,0,117,0,0,0,0,0,0,0,0,0,0,11803,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Jin'do the Godbreaker"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"9":122,"11":117,"22":11803},"isBase":true}}}, +{"id":69630,"name":"Handguards of the Tormented","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,220,360,0,0,142,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1488,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"5":142,"6":155,"22":1488},"isBase":true}}}, +{"id":69631,"name":"Zulian Voodoo Stick","icon":"inv_wand_23","type":14,"rangedWeaponType":6,"stats":[0,0,207,138,0,90,0,0,0,0,0,94,0,0,1848,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":699,"weaponDamageMax":699,"weaponSpeed":1.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":699,"weaponDamageMax":699,"stats":{"2":207,"3":138,"5":90,"11":94,"14":1848},"isBase":true}}}, +{"id":69632,"name":"Lost Bag of Whammies","icon":"inv_misc_bag_10_black","type":13,"weaponType":5,"handType":3,"stats":[0,0,270,180,108,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":108,"6":127},"isBase":true}}}, +{"id":69633,"name":"Plunderer's Gauntlets","icon":"inv_gauntlets_67","type":7,"armorType":4,"stats":[220,0,360,0,0,0,0,137,158,0,0,0,0,0,0,0,0,0,0,0,0,0,2104,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"0":220,"2":360,"7":137,"8":158,"22":2104},"isBase":true}}}, +{"id":69634,"name":"Fasc's Preserved Boots","icon":"inv_boots_leather_14","type":10,"armorType":2,"stats":[0,220,360,0,0,0,0,0,157,0,0,135,0,0,0,0,0,0,0,0,0,0,1116,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":220,"2":360,"8":157,"11":135,"22":1116},"isBase":true}}}, +{"id":69635,"name":"Amulet of Protection","icon":"inv_jewelry_necklace_13","type":2,"stats":[180,0,270,0,0,0,0,0,0,130,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"9":130,"11":102},"isBase":true}}}, +{"id":69636,"name":"Thekal's Claws","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":2,"stats":[0,138,207,0,0,0,96,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":96,"11":85},"isBase":true}}}, +{"id":69637,"name":"Gurubashi Destroyer","icon":"inv_firearm_2h_rifle_zulgurub_d_01","type":14,"rangedWeaponType":3,"stats":[0,323,484,0,0,228,0,0,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"weaponSpeed":2.9,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":2393,"weaponDamageMax":4444,"stats":{"1":323,"2":484,"5":228,"11":194},"isBase":true}}}, +{"id":69638,"name":"Arlokk's Claws","icon":"inv_weapon_hand_01","type":13,"weaponType":3,"handType":2,"stats":[0,138,207,0,0,94,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"5":94,"7":90},"isBase":true}}}, +{"id":69639,"name":"Renataki's Soul Slicer","icon":"inv_sword_31","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,0,0,95,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"8":95,"11":88},"isBase":true}}}, +{"id":69640,"name":"Kilt of Forgotten Rites","icon":"inv_kilt_mail_01","type":9,"armorType":3,"stats":[0,0,484,283,171,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2084,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"4":171,"6":209,"22":2084},"isBase":true}}}, +{"id":69641,"name":"Troll Skull Chestplate","icon":"inv_chest_plate_24","type":5,"armorType":4,"stats":[0,0,484,283,189,0,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3366,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"stats":{"2":484,"3":283,"4":189,"6":201,"22":3366},"isBase":true}}}, +{"id":69762,"name":"Miniature Voodoo Mask","icon":"inv_helm_mask_zulgurub_d_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":456,"isBase":true}}}, +{"id":69764,"name":"Extinct Turtle Shell","icon":"inv_shield_18","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,114,0,134,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":114,"11":134,"22":11896},"isBase":true}}}, +{"id":69766,"name":"The Frost Lord's War Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,180,270,0,0,0,137,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"6":137,"7":91,"22":604},"isBase":true}}}, +{"id":69767,"name":"The Frost Lord's Battle Shroud","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[180,0,270,0,0,0,120,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"6":120,"8":120,"22":604},"isBase":true}}}, +{"id":69768,"name":"Shroud of Winter's Chill","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,256,180,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":256,"3":180,"6":120,"7":120,"22":604},"isBase":true}}}, +{"id":69769,"name":"Cloak of the Frigid Winds","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,256,180,120,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":256,"3":180,"4":120,"7":120,"22":604},"isBase":true}}}, +{"id":69770,"name":"Icebound Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[180,0,269,0,0,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,0,604,377,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":269,"9":143,"22":604,"23":377},"isBase":true}}}, +{"id":69771,"name":"Frostscythe of Lord Ahune","icon":"inv_staff_78","type":13,"weaponType":8,"handType":4,"stats":[0,0,700,0,0,0,207,207,0,0,0,0,0,0,1849,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":614,"weaponDamageMin":1508,"weaponDamageMax":2263,"weaponSpeed":3.2,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":614,"weaponDamageMin":1508,"weaponDamageMax":2263,"stats":{"2":700,"6":207,"7":207,"14":1849},"isBase":true}}}, +{"id":69781,"name":"Vicious Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":69782,"name":"Vicious Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,301,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"11":301,"16":95},"isBase":true}}}, +{"id":69783,"name":"Vicious Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"4":301,"16":95},"isBase":true}}}, +{"id":69784,"name":"Vicious Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":69785,"name":"Vicious Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,301,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"6":301,"16":95},"isBase":true}}}, +{"id":69786,"name":"Vicious Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,301,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"352":{"randPropPoints":452,"stats":{"4":301,"16":95},"isBase":true}}}, +{"id":69787,"name":"Bloodthirsty Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":69788,"name":"Bloodthirsty Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,267,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"11":267,"16":84},"isBase":true}}}, +{"id":69789,"name":"Bloodthirsty Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"4":267,"16":84},"isBase":true}}}, +{"id":69790,"name":"Bloodthirsty Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":69791,"name":"Bloodthirsty Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"6":267,"16":84},"isBase":true}}}, +{"id":69792,"name":"Bloodthirsty Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":400,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":400,"stats":{"4":267,"16":84},"isBase":true}}}, +{"id":69796,"name":"Spiritcaller Cloak","icon":"inv_misc_cape_15","type":4,"armorType":1,"stats":[0,0,270,180,91,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"2":270,"3":180,"4":91,"6":137,"22":604},"isBase":true}}}, +{"id":69797,"name":"Charmbinder Grips","icon":"inv_gauntlets_70","type":7,"armorType":1,"stats":[0,0,360,240,0,0,167,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,755,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":360,"3":240,"6":167,"11":148,"22":755},"isBase":true}}}, +{"id":69798,"name":"Knotted Handwraps","icon":"inv_gauntlets_54","type":7,"armorType":2,"stats":[0,240,360,0,0,0,0,182,121,0,0,0,0,0,0,0,0,0,0,0,0,0,1015,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"1":240,"2":360,"7":182,"8":121,"22":1015},"isBase":true}}}, +{"id":69799,"name":"Quickfinger Ring","icon":"inv_jewelry_ring_32","type":11,"stats":[0,180,270,0,0,0,0,135,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"1":180,"2":270,"7":135,"8":94},"isBase":true}}}, +{"id":69800,"name":"Spiritguard Drape","icon":"inv_misc_cape_02","type":4,"armorType":1,"stats":[180,0,270,0,0,0,0,0,0,129,105,0,0,0,0,0,0,0,0,0,0,0,604,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"9":129,"10":105,"22":604},"isBase":true}}}, +{"id":69801,"name":"Amani Armguards","icon":"inv_bracer_28","type":6,"armorType":4,"stats":[180,0,270,0,0,0,0,0,99,132,0,0,0,0,0,0,0,0,0,0,0,0,1473,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"8":99,"9":132,"22":1473},"isBase":true}}}, +{"id":69802,"name":"Band of the Gurubashi Berserker","icon":"inv_jewelry_ring_04","type":11,"stats":[180,0,270,0,0,94,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":342,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":342,"stats":{"0":180,"2":270,"5":94,"8":135},"isBase":true}}}, +{"id":69803,"name":"Gurubashi Punisher","icon":"inv_mace_17","type":13,"weaponType":4,"handType":2,"stats":[138,0,207,0,0,77,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":1977,"otherName":"Trash Mobs"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"5":77,"7":101},"isBase":true}}}, +{"id":69827,"name":"Mistral Pendant","icon":"item_icecrownnecklaceb","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":69828,"name":"Permafrost Choker","icon":"item_icecrownnecklacea","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":69829,"name":"Cloudburst Necklace","icon":"inv_misc_necklacea3","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":69830,"name":"Planetary Amulet","icon":"item_icecrownnecklaced","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"isBase":true}}}, +{"id":69831,"name":"Mistral Drape","icon":"inv_misc_cape_cataclysm_melee_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-133,-135,-136,-137],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"22":625},"isBase":true}}}, +{"id":69833,"name":"Permafrost Cape","icon":"item_icecrowncloak","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-125,-127,-128],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"22":625},"isBase":true}}}, +{"id":69834,"name":"Cloudburst Cloak","icon":"inv_misc_cape_cataclysm_tank_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-118,-120,-121,-122],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"22":625},"isBase":true}}}, +{"id":69835,"name":"Planetary Drape","icon":"inv_misc_cape_cataclysm_healer_d_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-114,-129,-130,-131,-132,-138],"randPropPoints":362,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":5,"zoneId":5638,"otherName":"Al'Akir"}}],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"22":625},"isBase":true}}}, +{"id":69842,"name":"Garr's Reinforced Girdle of Memories","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":169,"11":169,"22":1927},"isBase":true}}}, +{"id":69843,"name":"Mobus's Dripping Halberd","icon":"inv_polearm_2h_cataclysm_b_02","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,0,231,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"weaponSpeed":3,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"stats":{"1":341,"2":512,"7":231,"11":222},"isBase":true}}}, +{"id":69844,"name":"Vitreous Beak of Julak-Doom","icon":"inv_knife_1h_cataclysm_c_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,219,146,0,86,0,0,0,0,0,105,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"weaponSpeed":1.6,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":517,"weaponDamageMax":962,"stats":{"2":219,"3":146,"5":86,"11":105,"14":1954},"isBase":true}}}, +{"id":69852,"name":"Punisher's Band","icon":"inv_jewelry_ring_70","type":11,"stats":[148,0,252,0,0,0,109,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":320,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":320,"stats":{"0":148,"2":252,"6":109,"11":94},"isBase":true}}}, +{"id":69861,"name":"Medallion of the Alliance","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":69862,"name":"Medallion of the Horde","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":48,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"115":{"randPropPoints":48,"stats":{"16":20},"isBase":true}}}, +{"id":69876,"name":"Xariona's Spectral Gauntlets","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,253,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":148,"7":181,"22":1521},"isBase":true}}}, +{"id":69877,"name":"Belt of a Thousand Gaping Mouths","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":169,"7":169,"22":939},"isBase":true}}}, +{"id":69916,"name":"Trollbane (Daakara)","icon":"inv_axe_85","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":90,"weaponDamageMin":467,"weaponDamageMax":701,"weaponSpeed":3.6,"ilvl":132,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"132":{"randPropPoints":90,"weaponDamageMin":467,"weaponDamageMax":701,"isBase":true}}}, +{"id":70004,"name":"Bloodthirsty Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[338,0,507,0,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,3416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":338,"2":507,"11":225,"16":225,"22":3416},"isBase":true}}}, +{"id":70005,"name":"Bloodthirsty Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[251,0,377,0,0,168,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":251,"2":377,"5":168,"16":168,"22":2349},"isBase":true}}}, +{"id":70006,"name":"Bloodthirsty Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[251,0,377,0,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":251,"2":377,"7":168,"16":168,"22":2135},"isBase":true}}}, +{"id":70007,"name":"Bloodthirsty Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[338,0,507,0,0,0,0,0,225,0,0,0,0,0,0,0,225,0,0,0,0,0,2776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":338,"2":507,"8":225,"16":225,"22":2776},"isBase":true}}}, +{"id":70008,"name":"Bloodthirsty Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[338,0,507,0,0,225,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":338,"2":507,"5":225,"16":225,"22":2989},"isBase":true}}}, +{"id":70009,"name":"Bloodthirsty Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[251,0,377,0,0,0,0,0,168,0,0,0,0,0,0,0,168,0,0,0,0,0,2562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":251,"2":377,"8":168,"16":168,"22":2562},"isBase":true}}}, +{"id":70010,"name":"Bloodthirsty Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[251,0,377,0,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"weaponSpeed":1.8,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":251,"2":377,"7":168,"16":168,"22":1922},"isBase":true}}}, +{"id":70011,"name":"Bloodthirsty Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[188,0,282,0,0,126,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Pyrium","setId":963,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"5":126,"16":126,"22":1495},"isBase":true}}}, +{"id":70012,"name":"Bloodthirsty Ornate Pyrium Breastplate","icon":"inv_chest_plate_dungeonplate_c_04","type":5,"armorType":4,"stats":[0,0,507,338,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,3416,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"11":225,"16":225,"22":3416},"isBase":true}}}, +{"id":70013,"name":"Bloodthirsty Ornate Pyrium Boots","icon":"inv_boots_plate_dungeonplate_c_04","type":10,"armorType":4,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,2349,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"11":168,"16":168,"22":2349},"isBase":true}}}, +{"id":70014,"name":"Bloodthirsty Ornate Pyrium Gauntlets","icon":"inv_gauntlets_plate_dungeonplate_c_04","type":7,"armorType":4,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2135,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":168,"16":168,"22":2135},"isBase":true}}}, +{"id":70015,"name":"Bloodthirsty Ornate Pyrium Helm","icon":"inv_helmet_plate_dungeonplage_c_04","type":1,"armorType":4,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2776,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"7":225,"16":225,"22":2776},"isBase":true}}}, +{"id":70016,"name":"Bloodthirsty Ornate Pyrium Legguards","icon":"inv_pants_plate_dungeonplate_c_04","type":9,"armorType":4,"stats":[0,0,507,338,0,0,225,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,2989,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"6":225,"16":225,"22":2989},"isBase":true}}}, +{"id":70017,"name":"Bloodthirsty Ornate Pyrium Shoulders","icon":"inv_shoulder_plate_dungeonplate_c_04","type":3,"armorType":4,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,2562,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":168,"16":168,"22":2562},"isBase":true}}}, +{"id":70018,"name":"Bloodthirsty Ornate Pyrium Belt","icon":"inv_belt_plate_dungeonplate_c_04","type":8,"armorType":4,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1922,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"weaponSpeed":1.9,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"6":168,"16":168,"22":1922},"isBase":true}}}, +{"id":70019,"name":"Bloodthirsty Ornate Pyrium Bracers","icon":"inv_bracer_plate_dungeonplate_c_04","type":6,"armorType":4,"stats":[0,0,282,188,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Ornate Pyrium","setId":964,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"6":126,"16":126,"22":1495},"isBase":true}}}, +{"id":70020,"name":"Bloodthirsty Leather Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,251,377,0,0,0,0,0,151,0,0,0,0,0,0,0,177,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"8":151,"16":177,"22":935},"isBase":true}}}, +{"id":70021,"name":"Bloodthirsty Leather Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,251,377,0,0,0,0,0,0,0,0,182,0,0,0,0,143,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"11":182,"16":143,"22":1142},"isBase":true}}}, +{"id":70022,"name":"Bloodthirsty Leather Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,188,282,0,0,0,0,113,0,0,0,0,0,0,0,0,133,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"7":113,"16":133,"22":727},"isBase":true}}}, +{"id":70023,"name":"Bloodthirsty Leather Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,338,507,0,0,0,0,0,0,0,0,171,0,0,0,0,257,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"11":171,"16":257,"22":1661},"isBase":true}}}, +{"id":70024,"name":"Bloodthirsty Leather Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,251,377,0,0,0,127,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"6":127,"16":191,"22":1038},"isBase":true}}}, +{"id":70025,"name":"Bloodthirsty Leather Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,338,507,0,0,171,0,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,1350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"5":171,"16":257,"22":1350},"isBase":true}}}, +{"id":70026,"name":"Bloodthirsty Leather Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,338,507,0,0,0,182,0,0,0,0,0,0,0,0,0,251,0,0,0,0,0,1454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"6":182,"16":251,"22":1454},"isBase":true}}}, +{"id":70027,"name":"Bloodthirsty Leather Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,251,377,0,0,0,151,0,0,0,0,0,0,0,0,0,177,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Leather","setId":965,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"6":151,"16":177,"22":1246},"isBase":true}}}, +{"id":70028,"name":"Bloodthirsty Wyrmhide Belt","icon":"inv_belt_104","type":8,"armorType":2,"stats":[0,0,377,251,0,0,0,0,0,0,0,151,0,0,0,0,177,0,0,0,0,0,935,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"11":151,"16":177,"22":935},"isBase":true}}}, +{"id":70029,"name":"Bloodthirsty Wyrmhide Boots","icon":"inv_boots_leather_16","type":10,"armorType":2,"stats":[0,0,377,251,0,0,0,191,0,0,0,0,0,0,0,0,127,0,0,0,0,0,1142,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":191,"16":127,"22":1142},"isBase":true}}}, +{"id":70030,"name":"Bloodthirsty Wyrmhide Bracers","icon":"inv_bracer_83","type":6,"armorType":2,"stats":[0,0,282,188,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"6":126,"16":126,"22":727},"isBase":true}}}, +{"id":70031,"name":"Bloodthirsty Wyrmhide Chest","icon":"inv_chest_leather_32","type":5,"armorType":2,"stats":[0,0,507,338,0,0,0,0,0,0,0,257,0,0,0,0,171,0,0,0,0,0,1661,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"11":257,"16":171,"22":1661},"isBase":true}}}, +{"id":70032,"name":"Bloodthirsty Wyrmhide Gloves","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,0,377,251,187,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1038,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"4":187,"16":135,"22":1038},"isBase":true}}}, +{"id":70033,"name":"Bloodthirsty Wyrmhide Helm","icon":"inv_helmet_193","type":1,"armorType":2,"stats":[0,0,507,338,0,0,171,0,0,0,0,0,0,0,0,0,257,0,0,0,0,0,1350,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"6":171,"16":257,"22":1350},"isBase":true}}}, +{"id":70034,"name":"Bloodthirsty Wyrmhide Legs","icon":"inv_pants_leather_44","type":9,"armorType":2,"stats":[0,0,507,338,203,0,0,0,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1454,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"4":203,"16":239,"22":1454},"isBase":true}}}, +{"id":70035,"name":"Bloodthirsty Wyrmhide Shoulders","icon":"inv_shoulder_153","type":3,"armorType":2,"stats":[0,0,377,251,0,0,0,127,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1246,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Wyrmhide","setId":966,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":127,"16":191,"22":1246},"isBase":true}}}, +{"id":70036,"name":"Bloodthirsty Dragonscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,251,377,0,0,0,0,0,0,0,0,191,0,0,0,0,127,0,0,0,0,0,1364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"11":191,"16":127,"22":1364},"isBase":true}}}, +{"id":70037,"name":"Bloodthirsty Dragonscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,251,377,0,0,191,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,1667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"5":191,"16":127,"22":1667},"isBase":true}}}, +{"id":70038,"name":"Bloodthirsty Dragonscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,188,282,0,0,0,0,0,0,0,0,143,0,0,0,0,95,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"11":143,"16":95,"22":1061},"isBase":true}}}, +{"id":70039,"name":"Bloodthirsty Dragonscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,338,507,0,0,0,257,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,2424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"6":257,"16":171,"22":2424},"isBase":true}}}, +{"id":70040,"name":"Bloodthirsty Dragonscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,251,377,0,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"6":168,"16":168,"22":1515},"isBase":true}}}, +{"id":70041,"name":"Bloodthirsty Dragonscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,338,507,0,0,0,0,203,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"7":203,"16":239,"22":1970},"isBase":true}}}, +{"id":70042,"name":"Bloodthirsty Dragonscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,338,507,0,0,0,0,0,0,0,0,251,0,0,0,0,182,0,0,0,0,0,2121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":338,"2":507,"11":251,"16":182,"22":2121},"isBase":true}}}, +{"id":70043,"name":"Bloodthirsty Dragonscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,251,377,0,0,0,151,0,0,0,0,0,0,0,0,0,177,0,0,0,0,0,1818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Dragonscale","setId":967,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":251,"2":377,"6":151,"16":177,"22":1818},"isBase":true}}}, +{"id":70044,"name":"Bloodthirsty Charscale Belt","icon":"inv_belt_mail_dungeonmail_c_04","type":8,"armorType":3,"stats":[0,0,377,251,0,0,0,173,0,0,0,0,0,0,0,0,159,0,0,0,0,0,1364,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":173,"16":159,"22":1364},"isBase":true}}}, +{"id":70045,"name":"Bloodthirsty Charscale Boots","icon":"inv_boots_mail_dungeonmail_c_04","type":10,"armorType":3,"stats":[0,0,377,251,135,0,0,0,0,0,0,0,0,0,0,0,187,0,0,0,0,0,1667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"4":135,"16":187,"22":1667},"isBase":true}}}, +{"id":70046,"name":"Bloodthirsty Charscale Bracers","icon":"inv_bracer_mail_dungeonmail_c_04","type":6,"armorType":3,"stats":[0,0,282,188,0,95,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"5":95,"16":143,"22":1061},"isBase":true}}}, +{"id":70047,"name":"Bloodthirsty Charscale Chest","icon":"inv_chest_mail_dungeonmail_c_04","type":5,"armorType":3,"stats":[0,0,507,338,0,0,257,0,0,0,0,0,0,0,0,0,171,0,0,0,0,0,2424,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"6":257,"16":171,"22":2424},"isBase":true}}}, +{"id":70048,"name":"Bloodthirsty Charscale Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_04","type":7,"armorType":3,"stats":[0,0,377,251,0,0,0,135,0,0,0,0,0,0,0,0,187,0,0,0,0,0,1515,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":135,"16":187,"22":1515},"isBase":true}}}, +{"id":70049,"name":"Bloodthirsty Charscale Helm","icon":"inv_helmet_mail_dungeonmail_c_04","type":1,"armorType":3,"stats":[0,0,507,338,0,0,0,203,0,0,0,0,0,0,0,0,239,0,0,0,0,0,1970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"7":203,"16":239,"22":1970},"isBase":true}}}, +{"id":70050,"name":"Bloodthirsty Charscale Legs","icon":"inv_pants_mail_dungeonmail_c_04","type":9,"armorType":3,"stats":[0,0,507,338,0,0,182,0,0,0,0,0,0,0,0,0,251,0,0,0,0,0,2121,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"6":182,"16":251,"22":2121},"isBase":true}}}, +{"id":70051,"name":"Bloodthirsty Charscale Shoulders","icon":"inv_shoulder_mail_dungeonmail_c_04","type":3,"armorType":3,"stats":[0,0,377,251,0,127,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0,0,1818,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Charscale","setId":968,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"5":127,"16":191,"22":1818},"isBase":true}}}, +{"id":70052,"name":"Bloodthirsty Fireweave Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"6":168,"16":168,"22":700},"isBase":true}}}, +{"id":70053,"name":"Bloodthirsty Fireweave Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"11":168,"16":168,"22":855},"isBase":true}}}, +{"id":70054,"name":"Bloodthirsty Fireweave Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,282,188,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"11":126,"16":126,"22":544},"isBase":true}}}, +{"id":70055,"name":"Bloodthirsty Fireweave Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,507,338,0,0,225,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"6":225,"16":225,"22":1010},"isBase":true}}}, +{"id":70056,"name":"Bloodthirsty Fireweave Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"11":168,"16":168,"22":777},"isBase":true}}}, +{"id":70057,"name":"Bloodthirsty Fireweave Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"7":225,"16":225,"22":1088},"isBase":true}}}, +{"id":70058,"name":"Bloodthirsty Fireweave Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"7":225,"16":225,"22":1244},"isBase":true}}}, +{"id":70059,"name":"Bloodthirsty Fireweave Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,377,251,0,0,168,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Fireweave","setId":970,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"6":168,"16":168,"22":933},"isBase":true}}}, +{"id":70060,"name":"Bloodthirsty Embersilk Robe","icon":"inv_chest_robe_dungeonrobe_c_04","type":5,"armorType":1,"stats":[0,0,507,338,225,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1244,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"4":225,"16":225,"22":1244},"isBase":true}}}, +{"id":70061,"name":"Bloodthirsty Embersilk Boots","icon":"inv_boots_robe_dungeonrobe_c_04","type":10,"armorType":1,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,855,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":168,"16":168,"22":855},"isBase":true}}}, +{"id":70062,"name":"Bloodthirsty Embersilk Belt","icon":"inv_belt_robe_dungeonrobe_c_04","type":8,"armorType":1,"stats":[0,0,377,251,0,0,0,0,0,0,0,168,0,0,0,0,168,0,0,0,0,0,700,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"11":168,"16":168,"22":700},"isBase":true}}}, +{"id":70063,"name":"Bloodthirsty Embersilk Bracers","icon":"inv_bracer_robe_dungeonrobe_c_04","type":6,"armorType":1,"stats":[0,0,282,188,0,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"16":126,"22":544},"isBase":true}}}, +{"id":70064,"name":"Bloodthirsty Embersilk Shoulders","icon":"inv_shoulder_robe_dungeonrobe_c_04","type":3,"armorType":1,"stats":[0,0,377,251,168,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"4":168,"16":168,"22":933},"isBase":true}}}, +{"id":70065,"name":"Bloodthirsty Embersilk Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_04","type":7,"armorType":1,"stats":[0,0,377,251,0,0,0,168,0,0,0,0,0,0,0,0,168,0,0,0,0,0,777,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":251,"7":168,"16":168,"22":777},"isBase":true}}}, +{"id":70066,"name":"Bloodthirsty Embersilk Pants","icon":"inv_pants_robe_dungeonrobe_c_04","type":9,"armorType":1,"stats":[0,0,507,338,0,0,0,0,0,0,0,225,0,0,0,0,225,0,0,0,0,0,1088,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"11":225,"16":225,"22":1088},"isBase":true}}}, +{"id":70067,"name":"Bloodthirsty Embersilk Cowl","icon":"inv_helm_robe_dungeonrobe_c_04","type":1,"armorType":1,"stats":[0,0,507,338,0,0,0,225,0,0,0,0,0,0,0,0,225,0,0,0,0,0,1010,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":338,"7":225,"16":225,"22":1010},"isBase":true}}}, +{"id":70068,"name":"Bloodthirsty Fur Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,188,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"6":126,"16":126,"22":622},"isBase":true}}}, +{"id":70069,"name":"Bloodthirsty Hide Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[188,0,282,0,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"11":126,"16":126,"22":622},"isBase":true}}}, +{"id":70070,"name":"Bloodthirsty Embersilk Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,282,188,0,0,0,0,0,0,0,126,0,0,0,0,126,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"setName":"Bloodthirsty Embersilk","setId":969,"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"11":126,"16":126,"22":622},"isBase":true}}}, +{"id":70071,"name":"Bloodthirsty Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,188,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"6":126,"16":126},"isBase":true}}}, +{"id":70072,"name":"Bloodthirsty Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,282,188,126,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"16":126},"isBase":true}}}, +{"id":70073,"name":"Bloodthirsty Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[188,0,282,0,0,0,126,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"6":126,"16":126},"isBase":true}}}, +{"id":70074,"name":"Bloodthirsty Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,188,282,0,0,0,0,0,126,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"8":126,"16":126},"isBase":true}}}, +{"id":70075,"name":"Bloodthirsty Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,282,188,0,0,0,126,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"16":126},"isBase":true}}}, +{"id":70076,"name":"Bloodthirsty Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[188,0,282,0,0,0,0,0,126,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"8":126,"16":126},"isBase":true}}}, +{"id":70080,"name":"Reforged Heartless","icon":"inv_sword_107","type":13,"weaponType":9,"handType":2,"stats":[138,0,207,0,0,0,85,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":2,"zoneId":3805,"otherName":"Hex Lord Malacrass"}}],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"0":138,"2":207,"6":85,"7":96},"isBase":true}}}, +{"id":70105,"name":"Matoclaw's Band","icon":"inv_jewelry_ring_13","type":11,"stats":[0,201,301,0,0,121,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"1":201,"2":301,"5":121,"6":142},"isBase":true}}}, +{"id":70106,"name":"Nightweaver's Amulet","icon":"inv_neck_hyjaldaily_01","type":2,"stats":[0,0,301,201,0,0,0,102,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"7":102,"11":153},"isBase":true}}}, +{"id":70107,"name":"Fireheart Necklace","icon":"inv_neck_hyjaldaily_04","type":2,"stats":[201,0,301,0,0,0,0,0,136,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"8":136,"11":131},"isBase":true}}}, +{"id":70108,"name":"Pyrelord Greaves","icon":"inv_boots_mail_02","type":10,"armorType":4,"stats":[247,0,402,0,0,0,0,0,0,147,182,0,0,0,0,0,0,0,0,0,0,0,2397,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"0":247,"2":402,"9":147,"10":182,"22":2397},"isBase":true}}}, +{"id":70110,"name":"Band of Glittering Lights","icon":"inv_jewelry_ring_22","type":11,"stats":[0,201,301,0,0,0,131,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"1":201,"2":301,"6":131,"7":136},"isBase":true}}}, +{"id":70112,"name":"Globe of Moonlight","icon":"inv_misc_orb_01","type":13,"weaponType":5,"handType":3,"stats":[0,0,301,201,0,0,134,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"6":134,"11":134},"isBase":true}}}, +{"id":70113,"name":"Moon Blessed Band","icon":"inv_jewelry_ring_35","type":11,"stats":[201,0,301,0,0,114,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"5":114,"6":146},"isBase":true}}}, +{"id":70114,"name":"Fireplume Girdle","icon":"inv_belt_85v4","type":8,"armorType":2,"stats":[0,0,402,248,0,0,0,168,0,0,0,168,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":402,"3":248,"7":168,"11":168,"22":965},"isBase":true}}}, +{"id":70115,"name":"Fiery Treads","icon":"inv_boots_cloth_25black","type":10,"armorType":3,"stats":[0,0,402,248,0,0,0,171,0,0,0,163,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":402,"3":248,"7":171,"11":163,"22":1709},"isBase":true}}}, +{"id":70116,"name":"Gauntlets of Living Obsidium","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":4,"stats":[0,0,402,248,181,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2179,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":402,"3":248,"4":181,"7":142,"22":2179},"isBase":true}}}, +{"id":70117,"name":"Belt of Living Obsidium","icon":"inv_belt_57","type":8,"armorType":4,"stats":[0,0,402,247,0,0,172,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":402,"3":247,"6":172,"11":161,"22":1961},"isBase":true}}}, +{"id":70118,"name":"Widow's Clutches","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,402,247,0,0,184,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,809,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":402,"3":247,"6":184,"7":146,"22":809},"isBase":true}}}, +{"id":70119,"name":"Meteorite Ring","icon":"inv_ring_hyjaldaily_04","type":11,"stats":[201,0,301,0,0,0,151,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"6":151,"7":105},"isBase":true}}}, +{"id":70120,"name":"Rickety Belt","icon":"inv_belt_plate_raidpaladin_j_01","type":8,"armorType":4,"stats":[248,0,402,0,0,0,0,188,139,0,0,0,0,0,0,0,0,0,0,0,0,0,1961,0,0,0,0],"gemSockets":[2],"socketBonus":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"0":248,"2":402,"7":188,"8":139,"22":1961},"isBase":true}}}, +{"id":70121,"name":"Ricket's Gun Show","icon":"inv_bracer_53","type":6,"armorType":4,"stats":[201,0,301,0,0,0,0,0,0,0,147,111,0,0,0,0,0,0,0,0,0,0,1525,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"10":147,"11":111,"22":1525},"isBase":true}}}, +{"id":70122,"name":"Aviana's Grips","icon":"inv_gauntlets_126","type":7,"armorType":2,"stats":[0,248,402,0,0,0,0,203,0,0,0,117,0,0,0,0,0,0,0,0,0,0,1072,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"1":248,"2":402,"7":203,"11":117,"22":1072},"isBase":true}}}, +{"id":70123,"name":"Lancer's Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,247,402,0,0,134,0,188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1709,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"1":247,"2":402,"5":134,"7":188,"22":1709},"isBase":true}}}, +{"id":70124,"name":"Spirit Fragment Band","icon":"inv_jewelry_ring_29","type":11,"stats":[0,0,301,201,0,0,121,0,0,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"6":121,"11":142},"isBase":true}}}, +{"id":70126,"name":"Nemesis Shell Band","icon":"inv_misc_leather_shellfragment","type":11,"stats":[201,0,301,0,0,0,0,0,147,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"8":147,"9":111},"isBase":true}}}, +{"id":70127,"name":"Lylagar Horn Ring","icon":"inv_jewelry_ring_65","type":11,"stats":[201,0,301,0,0,0,0,0,0,0,124,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"10":124,"11":140},"isBase":true}}}, +{"id":70141,"name":"Dwyer's Caber","icon":"inv_misc_branch_01","type":12,"stats":[340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"0":340},"isBase":true}}}, +{"id":70142,"name":"Moonwell Chalice","icon":"inv_potion_01","type":12,"stats":[0,0,0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"3":340},"isBase":true}}}, +{"id":70143,"name":"Moonwell Phial","icon":"inv_alchemy_imbuedvial","type":12,"stats":[0,0,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"2":510},"isBase":true}}}, +{"id":70144,"name":"Ricket's Magnetic Fireball","icon":"inv_elemental_mote_nether","type":12,"stats":[0,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":510,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":510,"stats":{"1":340},"isBase":true}}}, +{"id":70155,"name":"Brainsplinter","icon":"inv_knife_1h_bwdraid_d_01","type":13,"weaponType":2,"handType":2,"stats":[0,155,232,0,0,103,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":1231,"weaponDamageMax":2288,"weaponSpeed":1.8,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":1231,"weaponDamageMax":2288,"stats":{"1":155,"2":232,"5":103,"7":103},"isBase":true}}}, +{"id":70156,"name":"Masterwork Elementium Spellblade","icon":"inv_knife_1h_cataclysm_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,232,155,0,103,103,0,0,0,0,0,0,0,2066,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":615,"weaponDamageMax":1144,"weaponSpeed":1.8,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":615,"weaponDamageMax":1144,"stats":{"2":232,"3":155,"5":103,"6":103,"14":2066},"isBase":true}}}, +{"id":70157,"name":"Lightforged Elementium Hammer","icon":"inv_mace_84","type":13,"weaponType":4,"handType":2,"stats":[0,0,232,155,103,0,0,0,0,0,0,103,0,0,2066,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":650,"weaponDamageMax":1208,"weaponSpeed":1.9,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":650,"weaponDamageMax":1208,"stats":{"2":232,"3":155,"4":103,"11":103,"14":2066},"isBase":true}}}, +{"id":70158,"name":"Elementium-Edged Scalper","icon":"inv_axe_1h_pvp400_c_01","type":13,"weaponType":1,"handType":2,"stats":[155,0,232,0,0,103,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"weaponSpeed":2.6,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"stats":{"0":155,"2":232,"5":103,"11":103},"isBase":true}}}, +{"id":70162,"name":"Pyrium Spellward","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[0,155,232,0,0,103,0,0,0,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"weaponSpeed":2.6,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"stats":{"1":155,"2":232,"5":103,"11":103},"isBase":true}}}, +{"id":70163,"name":"Unbreakable Guardian","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[155,0,232,0,0,0,0,0,0,0,103,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"weaponSpeed":2.6,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"stats":{"0":155,"2":232,"10":103,"11":103},"isBase":true}}}, +{"id":70164,"name":"Masterwork Elementium Deathblade","icon":"inv_sword_73","type":13,"weaponType":9,"handType":4,"stats":[361,0,541,0,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":686,"weaponDamageMin":3691,"weaponDamageMax":5537,"weaponSpeed":3.5,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":686,"weaponDamageMin":3691,"weaponDamageMax":5537,"stats":{"0":361,"2":541,"7":241,"11":241},"isBase":true}}}, +{"id":70165,"name":"Witch-Hunter's Harvester","icon":"inv_polearm_2h_bwdraid_d_01","type":13,"weaponType":6,"handType":4,"stats":[0,361,541,0,0,0,241,0,0,0,0,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":686,"weaponDamageMin":3229,"weaponDamageMax":5999,"weaponSpeed":3.5,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":686,"weaponDamageMin":3229,"weaponDamageMax":5999,"stats":{"1":361,"2":541,"6":241,"11":241},"isBase":true}}}, +{"id":70244,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70245,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70246,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70247,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70248,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70249,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70250,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70251,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70252,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70253,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70254,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70255,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70256,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70257,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70258,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70259,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70260,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1587},"isBase":true}}}, +{"id":70261,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70262,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70263,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1905},"isBase":true}}}, +{"id":70264,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70265,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":1587},"isBase":true}}}, +{"id":70266,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70267,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":2222},"isBase":true}}}, +{"id":70268,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1905},"isBase":true}}}, +{"id":70269,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70270,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1587},"isBase":true}}}, +{"id":70271,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70272,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70273,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1905},"isBase":true}}}, +{"id":70274,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70275,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":1587},"isBase":true}}}, +{"id":70276,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":2063},"isBase":true}}}, +{"id":70277,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70278,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1905},"isBase":true}}}, +{"id":70279,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1102},"isBase":true}}}, +{"id":70280,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70281,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70282,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70283,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1322},"isBase":true}}}, +{"id":70284,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":1102},"isBase":true}}}, +{"id":70285,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70286,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1543},"isBase":true}}}, +{"id":70287,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70288,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1322},"isBase":true}}}, +{"id":70289,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":1102},"isBase":true}}}, +{"id":70290,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":1433},"isBase":true}}}, +{"id":70291,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70292,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70293,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1322},"isBase":true}}}, +{"id":70294,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70295,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1102},"isBase":true}}}, +{"id":70296,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70297,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70298,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1322},"isBase":true}}}, +{"id":70299,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,425,263,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"5":169,"6":189,"16":113,"22":836},"isBase":true}}}, +{"id":70300,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70301,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":215,"11":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70302,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70303,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,189,0,0,0,169,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":189,"11":169,"16":113,"22":1004},"isBase":true}}}, +{"id":70304,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":836},"isBase":true}}}, +{"id":70305,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70306,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70307,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70308,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1004},"isBase":true}}}, +{"id":70309,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":836},"isBase":true}}}, +{"id":70310,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":1087},"isBase":true}}}, +{"id":70311,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":1171},"isBase":true}}}, +{"id":70312,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70313,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1004},"isBase":true}}}, +{"id":70314,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,425,263,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"5":169,"6":189,"16":113,"22":836},"isBase":true}}}, +{"id":70315,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70316,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":215,"11":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70317,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70318,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,189,0,0,0,169,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":189,"11":169,"16":113,"22":1004},"isBase":true}}}, +{"id":70319,"name":"Ruthless Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":1996},"isBase":true}}}, +{"id":70320,"name":"Ruthless Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_02","type":8,"armorType":4,"stats":[263,0,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"6":169,"11":189,"16":113,"22":1996},"isBase":true}}}, +{"id":70321,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[263,0,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"6":169,"11":189,"16":113,"22":2439},"isBase":true}}}, +{"id":70322,"name":"Ruthless Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_02","type":6,"armorType":4,"stats":[212,0,319,0,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"7":142,"11":142,"16":85,"22":1552},"isBase":true}}}, +{"id":70323,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[263,0,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"6":189,"7":169,"16":113,"22":2439},"isBase":true}}}, +{"id":70324,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":2439},"isBase":true}}}, +{"id":70325,"name":"Ruthless Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85,"22":1552},"isBase":true}}}, +{"id":70326,"name":"Ruthless Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_02","type":8,"armorType":4,"stats":[263,0,425,0,0,169,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"7":189,"16":113,"22":1996},"isBase":true}}}, +{"id":70327,"name":"Ruthless Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_02","type":6,"armorType":4,"stats":[212,0,319,0,0,0,142,0,142,0,0,0,0,0,0,0,85,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":142,"8":142,"16":85,"22":1552},"isBase":true}}}, +{"id":70328,"name":"Ruthless Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,425,263,169,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"7":189,"16":113,"22":1428},"isBase":true}}}, +{"id":70329,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1746},"isBase":true}}}, +{"id":70330,"name":"Ruthless Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,319,212,142,0,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"6":142,"16":85,"22":1111},"isBase":true}}}, +{"id":70331,"name":"Ruthless Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_02","type":8,"armorType":3,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":1428},"isBase":true}}}, +{"id":70332,"name":"Ruthless Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_02","type":8,"armorType":4,"stats":[0,0,425,263,169,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1996,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"7":189,"16":113,"22":1996},"isBase":true}}}, +{"id":70333,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":2439},"isBase":true}}}, +{"id":70334,"name":"Ruthless Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_02","type":6,"armorType":4,"stats":[0,0,319,212,142,0,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"6":142,"16":85,"22":1552},"isBase":true}}}, +{"id":70335,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":1746},"isBase":true}}}, +{"id":70336,"name":"Ruthless Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":1428},"isBase":true}}}, +{"id":70337,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,263,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":189,"7":169,"16":113,"22":1746},"isBase":true}}}, +{"id":70338,"name":"Ruthless Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,212,319,0,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"7":142,"11":142,"16":85,"22":1111},"isBase":true}}}, +{"id":70339,"name":"Ruthless Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_02","type":8,"armorType":3,"stats":[0,263,425,0,0,169,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1428,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"7":189,"16":113,"22":1428},"isBase":true}}}, +{"id":70340,"name":"Ruthless Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_02","type":6,"armorType":3,"stats":[0,212,319,0,0,142,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"6":142,"16":85,"22":1111},"isBase":true}}}, +{"id":70341,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":1746},"isBase":true}}}, +{"id":70342,"name":"Ruthless Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_02","type":6,"armorType":3,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,1111,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85,"22":1111},"isBase":true}}}, +{"id":70343,"name":"Ruthless Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,425,263,169,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"7":189,"16":113,"22":992},"isBase":true}}}, +{"id":70344,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1212},"isBase":true}}}, +{"id":70345,"name":"Ruthless Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,319,212,142,0,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"6":142,"16":85,"22":771},"isBase":true}}}, +{"id":70346,"name":"Ruthless Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_02","type":8,"armorType":2,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":992},"isBase":true}}}, +{"id":70347,"name":"Ruthless Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":992},"isBase":true}}}, +{"id":70348,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":1212},"isBase":true}}}, +{"id":70349,"name":"Ruthless Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_02","type":8,"armorType":2,"stats":[0,263,425,0,0,169,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,992,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"7":189,"16":113,"22":992},"isBase":true}}}, +{"id":70350,"name":"Ruthless Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,212,319,0,0,142,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"6":142,"16":85,"22":771},"isBase":true}}}, +{"id":70351,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,263,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":189,"7":169,"16":113,"22":1212},"isBase":true}}}, +{"id":70352,"name":"Ruthless Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_02","type":6,"armorType":2,"stats":[0,212,319,0,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"7":142,"11":142,"16":85,"22":771},"isBase":true}}}, +{"id":70353,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70354,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":2218},"isBase":true}}}, +{"id":70355,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70356,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":3105},"isBase":true}}}, +{"id":70357,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":2661},"isBase":true}}}, +{"id":70358,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":1212},"isBase":true}}}, +{"id":70359,"name":"Ruthless Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_02","type":6,"armorType":2,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,771,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85,"22":771},"isBase":true}}}, +{"id":70360,"name":"Ruthless Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_02","type":8,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":753},"isBase":true}}}, +{"id":70361,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":920},"isBase":true}}}, +{"id":70362,"name":"Ruthless Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_02","type":8,"armorType":1,"stats":[0,0,425,263,0,169,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"5":169,"7":189,"16":113,"22":753},"isBase":true}}}, +{"id":70363,"name":"Ruthless Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpwarlock_c_02","type":6,"armorType":1,"stats":[0,0,319,212,0,142,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"5":142,"6":142,"16":85,"22":585},"isBase":true}}}, +{"id":70364,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":920},"isBase":true}}}, +{"id":70365,"name":"Ruthless Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpmage_c_02","type":6,"armorType":1,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85,"22":585},"isBase":true}}}, +{"id":70366,"name":"Ruthless Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_02","type":6,"armorType":1,"stats":[0,0,319,212,142,0,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,585,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"6":142,"16":85,"22":585},"isBase":true}}}, +{"id":70367,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":920},"isBase":true}}}, +{"id":70368,"name":"Ruthless Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_02","type":8,"armorType":1,"stats":[0,0,425,263,169,0,0,189,0,0,0,0,0,0,0,0,113,0,0,0,0,0,753,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"7":189,"16":113,"22":753},"isBase":true}}}, +{"id":70369,"name":"Ruthless Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,319,212,0,0,142,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"6":142,"11":142,"16":85},"isBase":true}}}, +{"id":70370,"name":"Ruthless Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,319,212,0,142,0,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"5":142,"7":142,"16":85},"isBase":true}}}, +{"id":70371,"name":"Ruthless Gladiator's Band of Meditation","icon":"inv_jewelry_ring_80","type":11,"stats":[0,0,319,212,142,0,0,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"7":142,"16":85},"isBase":true}}}, +{"id":70372,"name":"Ruthless Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[212,0,319,0,0,0,142,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":142,"7":142,"16":85},"isBase":true}}}, +{"id":70373,"name":"Ruthless Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[212,0,319,0,0,142,0,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"5":142,"11":142,"16":85},"isBase":true}}}, +{"id":70374,"name":"Ruthless Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_80","type":11,"stats":[0,212,319,0,0,142,0,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"11":142,"16":85},"isBase":true}}}, +{"id":70375,"name":"Ruthless Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_80","type":11,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":142,"7":142,"16":85},"isBase":true}}}, +{"id":70376,"name":"Ruthless Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,319,212,0,0,212,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"6":212,"11":142,"16":85},"isBase":true}}}, +{"id":70377,"name":"Ruthless Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85},"isBase":true}}}, +{"id":70378,"name":"Ruthless Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,0,319,212,142,0,0,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"7":142,"16":85},"isBase":true}}}, +{"id":70379,"name":"Ruthless Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,212,319,0,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"7":142,"11":142,"16":85},"isBase":true}}}, +{"id":70380,"name":"Ruthless Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[0,212,319,0,0,0,142,0,142,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":142,"8":142,"16":85},"isBase":true}}}, +{"id":70381,"name":"Ruthless Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_45","type":2,"stats":[212,0,319,0,0,0,142,0,142,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":142,"8":142,"16":85},"isBase":true}}}, +{"id":70382,"name":"Ruthless Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_45","type":2,"stats":[212,0,319,0,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"7":142,"11":142,"16":85},"isBase":true}}}, +{"id":70383,"name":"Ruthless Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[212,0,319,0,0,0,142,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"6":142,"7":142,"16":85,"22":669},"isBase":true}}}, +{"id":70384,"name":"Ruthless Gladiator's Cloak of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[212,0,319,0,0,142,0,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"0":212,"2":319,"5":142,"11":142,"16":85,"22":669},"isBase":true}}}, +{"id":70385,"name":"Ruthless Gladiator's Cape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,212,319,0,0,142,0,0,0,0,0,142,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"5":142,"11":142,"16":85,"22":669},"isBase":true}}}, +{"id":70386,"name":"Ruthless Gladiator's Cape of Cruelty","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,212,319,0,0,0,142,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"1":212,"2":319,"6":142,"7":142,"16":85,"22":669},"isBase":true}}}, +{"id":70387,"name":"Ruthless Gladiator's Drape of Diffusion","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,319,212,0,0,212,142,0,0,0,0,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"6":212,"7":142,"16":85,"22":669},"isBase":true}}}, +{"id":70388,"name":"Ruthless Gladiator's Drape of Prowess","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,319,212,0,0,0,142,0,0,0,142,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"7":142,"11":142,"16":85,"22":669},"isBase":true}}}, +{"id":70389,"name":"Ruthless Gladiator's Drape of Meditation","icon":"inv_misc_cape_18","type":4,"armorType":1,"stats":[0,0,319,212,142,0,142,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":404,"ilvl":371,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"371":{"randPropPoints":404,"stats":{"2":319,"3":212,"4":142,"6":142,"16":85,"22":669},"isBase":true}}}, +{"id":70390,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70391,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"4":359,"16":113},"isBase":true}}}, +{"id":70392,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"11":359,"16":113},"isBase":true}}}, +{"id":70393,"name":"Ruthless Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70394,"name":"Ruthless Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"4":359,"16":113},"isBase":true}}}, +{"id":70395,"name":"Ruthless Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"11":359,"16":113},"isBase":true}}}, +{"id":70396,"name":"Ruthless Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70397,"name":"Ruthless Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"4":359,"16":113},"isBase":true}}}, +{"id":70398,"name":"Ruthless Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"11":359,"16":113},"isBase":true}}}, +{"id":70399,"name":"Ruthless Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":359,"16":113},"isBase":true}}}, +{"id":70400,"name":"Ruthless Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":359,"16":113},"isBase":true}}}, +{"id":70401,"name":"Ruthless Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"3":359,"16":113},"isBase":true}}}, +{"id":70402,"name":"Ruthless Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"3":359,"16":113},"isBase":true}}}, +{"id":70403,"name":"Ruthless Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":359,"16":113},"isBase":true}}}, +{"id":70404,"name":"Ruthless Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":359,"16":113},"isBase":true}}}, +{"id":70409,"name":"Ruthless Gladiator's Mark of Cruelty","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70410,"name":"Ruthless Gladiator's Mark of Tenacity","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"11":359,"16":113},"isBase":true}}}, +{"id":70411,"name":"Ruthless Gladiator's Mark of Meditation","icon":"spell_arcane_rune","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"4":359,"16":113},"isBase":true}}}, +{"id":70412,"name":"Ruthless Gladiator's Symbol of Cruelty","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70413,"name":"Ruthless Gladiator's Symbol of Tenacity","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"6":359,"16":113},"isBase":true}}}, +{"id":70414,"name":"Ruthless Gladiator's Symbol of Meditation","icon":"ability_warrior_strengthofarms","type":12,"stats":[0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"4":359,"16":113},"isBase":true}}}, +{"id":70415,"name":"Ruthless Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":2661},"isBase":true}}}, +{"id":70416,"name":"Ruthless Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":3105},"isBase":true}}}, +{"id":70417,"name":"Ruthless Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70418,"name":"Ruthless Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":2218},"isBase":true}}}, +{"id":70419,"name":"Ruthless Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70420,"name":"Ruthless Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1905},"isBase":true}}}, +{"id":70421,"name":"Ruthless Gladiator's Mail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70422,"name":"Ruthless Gladiator's Mail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":2063},"isBase":true}}}, +{"id":70423,"name":"Ruthless Gladiator's Mail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":1587},"isBase":true}}}, +{"id":70424,"name":"Ruthless Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70425,"name":"Ruthless Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,189,0,0,0,169,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":189,"11":169,"16":113,"22":1004},"isBase":true}}}, +{"id":70426,"name":"Ruthless Gladiator's Felweave Raiment","icon":"inv_robe_cloth_pvpwarlock_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70427,"name":"Ruthless Gladiator's Felweave Trousers","icon":"inv_robe_pants_pvpwarlock_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":215,"11":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70428,"name":"Ruthless Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":1433},"isBase":true}}}, +{"id":70429,"name":"Ruthless Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":1102},"isBase":true}}}, +{"id":70430,"name":"Ruthless Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1322},"isBase":true}}}, +{"id":70431,"name":"Ruthless Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70432,"name":"Ruthless Gladiator's Kodohide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1543},"isBase":true}}}, +{"id":70433,"name":"Ruthless Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70434,"name":"Ruthless Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_02","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1905},"isBase":true}}}, +{"id":70435,"name":"Ruthless Gladiator's Chain Leggings","icon":"inv_pants_mail_pvphunter_c_02","type":9,"armorType":3,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70436,"name":"Ruthless Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70437,"name":"Ruthless Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":1102},"isBase":true}}}, +{"id":70438,"name":"Ruthless Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1322},"isBase":true}}}, +{"id":70439,"name":"Ruthless Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70440,"name":"Ruthless Gladiator's Chain Helm","icon":"inv_helmet_mail_pvphunter_c_02","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70441,"name":"Ruthless Gladiator's Chain Gauntlets","icon":"inv_gauntlets_mail_pvphunter_c_02","type":7,"armorType":3,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1587},"isBase":true}}}, +{"id":70442,"name":"Ruthless Gladiator's Leather Spaulders","icon":"inv_shoulder_leather_pvprogue_c_02","type":3,"armorType":2,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1322},"isBase":true}}}, +{"id":70443,"name":"Ruthless Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_02","type":9,"armorType":2,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70444,"name":"Ruthless Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_02","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70445,"name":"Ruthless Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_02","type":7,"armorType":2,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1102},"isBase":true}}}, +{"id":70446,"name":"Ruthless Gladiator's Leather Tunic","icon":"inv_chest_leather_pvprogue_c_02","type":5,"armorType":2,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70447,"name":"Ruthless Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_02","type":3,"armorType":2,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1322,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1322},"isBase":true}}}, +{"id":70448,"name":"Ruthless Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_02","type":5,"armorType":2,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1763,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1763},"isBase":true}}}, +{"id":70449,"name":"Ruthless Gladiator's Wyrmhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70450,"name":"Ruthless Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,573,342,215,0,0,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"4":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70451,"name":"Ruthless Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70452,"name":"Ruthless Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70453,"name":"Ruthless Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":836},"isBase":true}}}, +{"id":70454,"name":"Ruthless Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,189,0,0,0,169,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":189,"11":169,"16":113,"22":1004},"isBase":true}}}, +{"id":70455,"name":"Ruthless Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70456,"name":"Ruthless Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,263,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"7":189,"8":169,"16":113,"22":1905},"isBase":true}}}, +{"id":70457,"name":"Ruthless Gladiator's Linked Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":2222},"isBase":true}}}, +{"id":70458,"name":"Ruthless Gladiator's Linked Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70459,"name":"Ruthless Gladiator's Linked Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1587},"isBase":true}}}, +{"id":70460,"name":"Ruthless Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_02","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70461,"name":"Ruthless Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,215,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":215,"11":255,"16":152,"22":1171},"isBase":true}}}, +{"id":70462,"name":"Ruthless Gladiator's Silk Cowl","icon":"inv_helmet_cloth_pvpmage_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70463,"name":"Ruthless Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_02","type":7,"armorType":1,"stats":[0,0,425,263,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"5":169,"6":189,"16":113,"22":836},"isBase":true}}}, +{"id":70464,"name":"Ruthless Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_02","type":3,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1905,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1905},"isBase":true}}}, +{"id":70465,"name":"Ruthless Gladiator's Ringmail Leggings","icon":"inv_robe_mail_pvpshaman_c_02","type":9,"armorType":3,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,2222,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":2222},"isBase":true}}}, +{"id":70466,"name":"Ruthless Gladiator's Ringmail Helm","icon":"inv_helm_mail_pvpshaman_c_02","type":1,"armorType":3,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,2063,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":2063},"isBase":true}}}, +{"id":70467,"name":"Ruthless Gladiator's Ringmail Gauntlets","icon":"inv_glove_mail_pvpshaman_c_02","type":7,"armorType":3,"stats":[0,0,425,263,189,0,0,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1587,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"7":169,"16":113,"22":1587},"isBase":true}}}, +{"id":70468,"name":"Ruthless Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,255,0,0,0,0,195,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"6":255,"11":195,"16":152,"22":1087},"isBase":true}}}, +{"id":70469,"name":"Ruthless Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_02","type":7,"armorType":1,"stats":[0,0,425,263,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"5":169,"6":189,"16":113,"22":836},"isBase":true}}}, +{"id":70470,"name":"Ruthless Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,425,263,0,0,0,169,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"7":169,"11":189,"16":113,"22":1004},"isBase":true}}}, +{"id":70471,"name":"Ruthless Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_02","type":5,"armorType":1,"stats":[0,0,573,342,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1338,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"6":215,"7":255,"16":152,"22":1338},"isBase":true}}}, +{"id":70472,"name":"Ruthless Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_02","type":9,"armorType":1,"stats":[0,0,573,342,0,0,0,255,0,0,0,215,0,0,0,0,152,0,0,0,0,0,1171,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":342,"7":255,"11":215,"16":152,"22":1171},"isBase":true}}}, +{"id":70473,"name":"Ruthless Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_02","type":1,"armorType":1,"stats":[0,0,573,322,0,0,0,195,0,0,0,255,0,0,0,0,152,0,0,0,0,0,1087,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"2":573,"3":322,"7":195,"11":255,"16":152,"22":1087},"isBase":true}}}, +{"id":70474,"name":"Ruthless Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_02","type":7,"armorType":1,"stats":[0,0,425,263,189,0,169,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,836,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":189,"6":169,"16":113,"22":836},"isBase":true}}}, +{"id":70475,"name":"Ruthless Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_02","type":3,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1004,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1004},"isBase":true}}}, +{"id":70476,"name":"Ruthless Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_02","type":5,"armorType":3,"stats":[0,342,573,0,0,0,215,0,0,0,0,255,0,0,0,0,152,0,0,0,0,0,2539,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":215,"11":255,"16":152,"22":2539},"isBase":true}}}, +{"id":70477,"name":"Ruthless Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70478,"name":"Ruthless Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70479,"name":"Ruthless Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70480,"name":"Ruthless Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70481,"name":"Ruthless Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70482,"name":"Ruthless Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70483,"name":"Ruthless Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70484,"name":"Ruthless Gladiator's Dragonhide Legguards","icon":"inv_pant_leather_pvpdruid_c_02","type":9,"armorType":2,"stats":[0,342,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,1543,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":342,"2":573,"6":255,"7":215,"16":152,"22":1543},"isBase":true}}}, +{"id":70485,"name":"Ruthless Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_02","type":1,"armorType":2,"stats":[0,322,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,1433,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"1":322,"2":573,"8":255,"11":195,"16":152,"22":1433},"isBase":true}}}, +{"id":70486,"name":"Ruthless Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_02","type":7,"armorType":2,"stats":[0,263,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1102,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"5":169,"6":189,"16":113,"22":1102},"isBase":true}}}, +{"id":70487,"name":"Ruthless Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70488,"name":"Ruthless Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70489,"name":"Ruthless Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70490,"name":"Ruthless Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_02","type":3,"armorType":4,"stats":[263,0,425,0,0,0,0,189,169,0,0,0,0,0,0,0,113,0,0,0,0,0,2661,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"7":189,"8":169,"16":113,"22":2661},"isBase":true}}}, +{"id":70491,"name":"Ruthless Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_02","type":9,"armorType":4,"stats":[342,0,573,0,0,0,255,215,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3105,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":255,"7":215,"16":152,"22":3105},"isBase":true}}}, +{"id":70492,"name":"Ruthless Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_02","type":1,"armorType":4,"stats":[322,0,573,0,0,0,0,0,255,0,0,195,0,0,0,0,152,0,0,0,0,0,2883,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":322,"2":573,"8":255,"11":195,"16":152,"22":2883},"isBase":true}}}, +{"id":70493,"name":"Ruthless Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlet_plate_pvpdeathknight_c_02","type":7,"armorType":4,"stats":[263,0,425,0,0,169,189,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2218,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"5":169,"6":189,"16":113,"22":2218},"isBase":true}}}, +{"id":70494,"name":"Ruthless Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_02","type":5,"armorType":4,"stats":[342,0,573,0,0,0,215,255,0,0,0,0,0,0,0,0,152,0,0,0,0,0,3548,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":726,"ilvl":371,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"371":{"randPropPoints":726,"stats":{"0":342,"2":573,"6":215,"7":255,"16":152,"22":3548},"isBase":true}}}, +{"id":70495,"name":"Ruthless Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_02","type":10,"armorType":1,"stats":[0,0,425,263,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":169,"11":189,"16":113,"22":920},"isBase":true}}}, +{"id":70496,"name":"Ruthless Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_02","type":10,"armorType":1,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":920},"isBase":true}}}, +{"id":70497,"name":"Ruthless Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_02","type":10,"armorType":1,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,920,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":920},"isBase":true}}}, +{"id":70498,"name":"Ruthless Gladiator's Footguards of Meditation","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1212},"isBase":true}}}, +{"id":70499,"name":"Ruthless Gladiator's Footguards of Alacrity","icon":"inv_boot_leather_pvpdruid_c_02","type":10,"armorType":2,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":1212},"isBase":true}}}, +{"id":70500,"name":"Ruthless Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":1746},"isBase":true}}}, +{"id":70501,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_02","type":10,"armorType":3,"stats":[0,263,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":189,"7":169,"16":113,"22":1746},"isBase":true}}}, +{"id":70502,"name":"Ruthless Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":2439},"isBase":true}}}, +{"id":70503,"name":"Ruthless Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_02","type":10,"armorType":4,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":2439},"isBase":true}}}, +{"id":70504,"name":"Ruthless Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_02","type":10,"armorType":4,"stats":[263,0,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"6":169,"11":189,"16":113,"22":2439},"isBase":true}}}, +{"id":70505,"name":"Ruthless Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_02","type":10,"armorType":4,"stats":[263,0,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,2439,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"0":263,"2":425,"6":189,"7":169,"16":113,"22":2439},"isBase":true}}}, +{"id":70506,"name":"Ruthless Gladiator's Boots of Cruelty","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,263,425,0,0,0,169,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":169,"11":189,"16":113,"22":1212},"isBase":true}}}, +{"id":70507,"name":"Ruthless Gladiator's Boots of Alacrity","icon":"inv_boot_leather_pvprogue_c_02","type":10,"armorType":2,"stats":[0,263,425,0,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"1":263,"2":425,"6":189,"7":169,"16":113,"22":1212},"isBase":true}}}, +{"id":70508,"name":"Ruthless Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,425,263,0,0,189,169,0,0,0,0,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"6":189,"7":169,"16":113,"22":1746},"isBase":true}}}, +{"id":70509,"name":"Ruthless Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_02","type":10,"armorType":3,"stats":[0,0,425,263,169,0,0,0,0,0,0,189,0,0,0,0,113,0,0,0,0,0,1746,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":539,"ilvl":371,"quality":4,"classAllowlist":[7],"scalingOptions":{"371":{"randPropPoints":539,"stats":{"2":425,"3":263,"4":169,"11":189,"16":113,"22":1746},"isBase":true}}}, +{"id":70511,"name":"Vicious Gladiator's Armbands of Meditation","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,282,188,126,0,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"6":126,"16":75,"22":1061},"isBase":true}}}, +{"id":70512,"name":"Vicious Gladiator's Armbands of Prowess","icon":"inv_bracer_mail_pvpshaman_c_01","type":6,"armorType":3,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75,"22":1061},"isBase":true}}}, +{"id":70513,"name":"Vicious Gladiator's Armplates of Alacrity","icon":"inv_bracer_plate_pvpwarrior_c_01","type":6,"armorType":4,"stats":[188,0,282,0,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"7":126,"11":126,"16":75,"22":1495},"isBase":true}}}, +{"id":70514,"name":"Vicious Gladiator's Armplates of Proficiency","icon":"inv_bracer_plate_pvpdeathknight_c_01","type":6,"armorType":4,"stats":[188,0,282,0,0,0,126,0,126,0,0,0,0,0,0,0,75,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"6":126,"8":126,"16":75,"22":1495},"isBase":true}}}, +{"id":70515,"name":"Vicious Gladiator's Armwraps of Accuracy","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,188,282,0,0,126,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"5":126,"6":126,"16":75,"22":727},"isBase":true}}}, +{"id":70516,"name":"Vicious Gladiator's Armwraps of Alacrity","icon":"inv_bracer_leather_pvprogue_c_01","type":6,"armorType":2,"stats":[0,188,282,0,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"7":126,"11":126,"16":75,"22":727},"isBase":true}}}, +{"id":70517,"name":"Vicious Gladiator's Badge of Conquest","icon":"spell_holy_championsbond","type":12,"stats":[0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":319,"16":100},"isBase":true}}}, +{"id":70518,"name":"Vicious Gladiator's Badge of Dominance","icon":"spell_holy_championsbond","type":12,"stats":[0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"3":319,"16":100},"isBase":true}}}, +{"id":70519,"name":"Vicious Gladiator's Badge of Victory","icon":"spell_holy_championsbond","type":12,"stats":[319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":319,"16":100},"isBase":true}}}, +{"id":70520,"name":"Vicious Gladiator's Band of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,282,188,0,126,0,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"5":126,"7":126,"16":75},"isBase":true}}}, +{"id":70521,"name":"Vicious Gladiator's Band of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,282,188,0,0,126,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"6":126,"11":126,"16":75},"isBase":true}}}, +{"id":70522,"name":"Vicious Gladiator's Band of Meditation","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,282,188,126,0,0,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"7":126,"16":75},"isBase":true}}}, +{"id":70523,"name":"Vicious Gladiator's Belt of Cruelty","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,377,231,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,935,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":148,"11":168,"16":100,"22":935},"isBase":true}}}, +{"id":70524,"name":"Vicious Gladiator's Belt of Meditation","icon":"inv_belt_leather_pvpdruid_c_01","type":8,"armorType":2,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,935,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":935},"isBase":true}}}, +{"id":70525,"name":"Vicious Gladiator's Bindings of Meditation","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,282,188,126,0,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"6":126,"16":75,"22":727},"isBase":true}}}, +{"id":70526,"name":"Vicious Gladiator's Bindings of Prowess","icon":"inv_bracer_leather_pvpdruid_c_01","type":6,"armorType":2,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,727,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75,"22":727},"isBase":true}}}, +{"id":70527,"name":"Vicious Gladiator's Boots of Alacrity","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,231,377,0,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":168,"7":148,"16":100,"22":1142},"isBase":true}}}, +{"id":70528,"name":"Vicious Gladiator's Boots of Cruelty","icon":"inv_boots_leather_pvprogue_c_01","type":10,"armorType":2,"stats":[0,231,377,0,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":148,"11":168,"16":100,"22":1142},"isBase":true}}}, +{"id":70529,"name":"Vicious Gladiator's Bracers of Meditation","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,282,188,126,0,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"6":126,"16":75,"22":1495},"isBase":true}}}, +{"id":70530,"name":"Vicious Gladiator's Bracers of Prowess","icon":"inv_bracer_plate_pvppaladin_c_01","type":6,"armorType":4,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,1495,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75,"22":1495},"isBase":true}}}, +{"id":70531,"name":"Vicious Gladiator's Cape of Cruelty","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,188,282,0,0,0,126,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"6":126,"7":126,"16":75,"22":622},"isBase":true}}}, +{"id":70532,"name":"Vicious Gladiator's Cape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,188,282,0,0,126,0,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"5":126,"11":126,"16":75,"22":622},"isBase":true}}}, +{"id":70533,"name":"Vicious Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,298,507,0,0,0,185,0,0,0,0,225,0,0,0,0,135,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":185,"11":225,"16":135,"22":2424},"isBase":true}}}, +{"id":70534,"name":"Vicious Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,231,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"6":168,"16":100,"22":1515},"isBase":true}}}, +{"id":70535,"name":"Vicious Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,278,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":278,"2":507,"8":225,"11":165,"16":135,"22":1970},"isBase":true}}}, +{"id":70536,"name":"Vicious Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,298,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":225,"7":185,"16":135,"22":2121},"isBase":true}}}, +{"id":70537,"name":"Vicious Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,231,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":920,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"7":168,"8":148,"16":100,"22":1818},"isBase":true}}}, +{"id":70538,"name":"Vicious Gladiator's Choker of Accuracy","icon":"inv_jewelry_necklace_44","type":2,"stats":[188,0,282,0,0,126,0,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"5":126,"7":126,"16":75},"isBase":true}}}, +{"id":70539,"name":"Vicious Gladiator's Choker of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[188,0,282,0,0,0,126,0,126,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"6":126,"8":126,"16":75},"isBase":true}}}, +{"id":70540,"name":"Vicious Gladiator's Clasp of Cruelty","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,377,231,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":148,"11":168,"16":100,"22":1922},"isBase":true}}}, +{"id":70541,"name":"Vicious Gladiator's Clasp of Meditation","icon":"inv_belt_plate_pvppaladin_c_01","type":8,"armorType":4,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1922,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":1922},"isBase":true}}}, +{"id":70542,"name":"Vicious Gladiator's Cloak of Alacrity","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[188,0,282,0,0,0,126,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"6":126,"7":126,"16":75,"22":622},"isBase":true}}}, +{"id":70543,"name":"Vicious Gladiator's Cloak of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[188,0,282,0,0,126,0,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"5":126,"11":126,"16":75,"22":622},"isBase":true}}}, +{"id":70544,"name":"Vicious Gladiator's Cord of Accuracy","icon":"inv_belt_cloth_pvpwarlock_c_01","type":8,"armorType":1,"stats":[0,0,377,231,0,148,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,700,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"5":148,"7":168,"16":100,"22":700},"isBase":true}}}, +{"id":70545,"name":"Vicious Gladiator's Cord of Cruelty","icon":"inv_belt_cloth_pvpmage_c_01","type":8,"armorType":1,"stats":[0,0,377,231,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,700,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":148,"11":168,"16":100,"22":700},"isBase":true}}}, +{"id":70546,"name":"Vicious Gladiator's Cord of Meditation","icon":"inv_belt_robe_pvppriest_c_01","type":8,"armorType":1,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,700,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":700},"isBase":true}}}, +{"id":70547,"name":"Vicious Gladiator's Cuffs of Accuracy","icon":"inv_bracer_cloth_pvpmage_c_01","type":6,"armorType":1,"stats":[0,0,282,188,0,126,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"5":126,"6":126,"16":75,"22":544},"isBase":true}}}, +{"id":70548,"name":"Vicious Gladiator's Cuffs of Meditation","icon":"inv_bracer_robe_pvppriest_c_01","type":6,"armorType":1,"stats":[0,0,282,188,126,0,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"6":126,"16":75,"22":544},"isBase":true}}}, +{"id":70549,"name":"Vicious Gladiator's Cuffs of Prowess","icon":"inv_bracer_cloth_pvpwarlock_c_01","type":6,"armorType":1,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,544,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75,"22":544},"isBase":true}}}, +{"id":70550,"name":"Vicious Gladiator's Dragonhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,231,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"6":168,"16":100,"22":1038},"isBase":true}}}, +{"id":70551,"name":"Vicious Gladiator's Dragonhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,278,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,1350,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":278,"2":507,"8":225,"11":165,"16":135,"22":1350},"isBase":true}}}, +{"id":70552,"name":"Vicious Gladiator's Dragonhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,298,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":225,"7":185,"16":135,"22":1454},"isBase":true}}}, +{"id":70553,"name":"Vicious Gladiator's Dragonhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,298,507,0,0,0,185,0,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":185,"11":225,"16":135,"22":1661},"isBase":true}}}, +{"id":70554,"name":"Vicious Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,231,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":922,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"7":168,"8":148,"16":100,"22":1246},"isBase":true}}}, +{"id":70555,"name":"Vicious Gladiator's Drape of Diffusion","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,282,188,0,0,188,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"6":188,"7":126,"16":75,"22":622},"isBase":true}}}, +{"id":70556,"name":"Vicious Gladiator's Drape of Meditation","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,282,188,126,0,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"6":126,"16":75,"22":622},"isBase":true}}}, +{"id":70557,"name":"Vicious Gladiator's Drape of Prowess","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,622,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75,"22":622},"isBase":true}}}, +{"id":70558,"name":"Vicious Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[298,0,507,0,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,3416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":185,"7":225,"16":135,"22":3416},"isBase":true}}}, +{"id":70559,"name":"Vicious Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[231,0,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2135,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"5":148,"6":168,"16":100,"22":2135},"isBase":true}}}, +{"id":70560,"name":"Vicious Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[278,0,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,2776,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":278,"2":507,"8":225,"11":165,"16":135,"22":2776},"isBase":true}}}, +{"id":70561,"name":"Vicious Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[298,0,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2989,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":225,"7":185,"16":135,"22":2989},"isBase":true}}}, +{"id":70562,"name":"Vicious Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[231,0,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,2562,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":924,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"7":168,"8":148,"16":100,"22":2562},"isBase":true}}}, +{"id":70563,"name":"Vicious Gladiator's Emblem of Cruelty","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"6":319,"16":100},"isBase":true}}}, +{"id":70564,"name":"Vicious Gladiator's Emblem of Meditation","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"4":319,"16":100},"isBase":true}}}, +{"id":70565,"name":"Vicious Gladiator's Emblem of Tenacity","icon":"ability_warrior_endlessrage","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"11":319,"16":100},"isBase":true}}}, +{"id":70566,"name":"Vicious Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,377,231,0,0,0,168,0,0,0,148,0,0,0,0,100,0,0,0,0,0,933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"7":168,"11":148,"16":100,"22":933},"isBase":true}}}, +{"id":70567,"name":"Vicious Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":1010},"isBase":true}}}, +{"id":70568,"name":"Vicious Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,377,231,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,777,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"5":148,"6":168,"16":100,"22":777},"isBase":true}}}, +{"id":70569,"name":"Vicious Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1244},"isBase":true}}}, +{"id":70570,"name":"Vicious Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,507,298,0,0,0,185,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":910,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"7":185,"11":225,"16":135,"22":1088},"isBase":true}}}, +{"id":70571,"name":"Vicious Gladiator's Footguards of Alacrity","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,377,231,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":168,"7":148,"16":100,"22":1142},"isBase":true}}}, +{"id":70572,"name":"Vicious Gladiator's Footguards of Meditation","icon":"inv_boots_leather_pvpdruid_c_01","type":10,"armorType":2,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1142,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":1142},"isBase":true}}}, +{"id":70573,"name":"Vicious Gladiator's Girdle of Cruelty","icon":"inv_belt_plate_pvpdeathknight_c_01","type":8,"armorType":4,"stats":[231,0,377,0,0,0,168,0,0,0,0,148,0,0,0,0,100,0,0,0,0,0,1922,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"6":168,"11":148,"16":100,"22":1922},"isBase":true}}}, +{"id":70574,"name":"Vicious Gladiator's Girdle of Prowess","icon":"inv_belt_plate_pvpwarrior_c_01","type":8,"armorType":4,"stats":[231,0,377,0,0,148,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1922,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"5":148,"7":168,"16":100,"22":1922},"isBase":true}}}, +{"id":70575,"name":"Vicious Gladiator's Greaves of Alacrity","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,377,231,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":168,"7":148,"16":100,"22":2349},"isBase":true}}}, +{"id":70576,"name":"Vicious Gladiator's Greaves of Meditation","icon":"inv_boots_plate_pvppaladin_c_01","type":10,"armorType":4,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,2349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":2349},"isBase":true}}}, +{"id":70577,"name":"Vicious Gladiator's Insignia of Conquest","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":319,"16":100},"isBase":true}}}, +{"id":70578,"name":"Vicious Gladiator's Insignia of Dominance","icon":"inv_misc_token_argentdawn3","type":12,"stats":[0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"3":319,"16":100},"isBase":true}}}, +{"id":70579,"name":"Vicious Gladiator's Insignia of Victory","icon":"inv_misc_token_argentdawn3","type":12,"stats":[319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":319,"16":100},"isBase":true}}}, +{"id":70580,"name":"Vicious Gladiator's Kodohide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":1038},"isBase":true}}}, +{"id":70581,"name":"Vicious Gladiator's Kodohide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,1350,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":1350},"isBase":true}}}, +{"id":70582,"name":"Vicious Gladiator's Kodohide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1454},"isBase":true}}}, +{"id":70583,"name":"Vicious Gladiator's Kodohide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,507,298,185,0,0,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"4":185,"7":225,"16":135,"22":1661},"isBase":true}}}, +{"id":70584,"name":"Vicious Gladiator's Kodohide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":923,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":1246},"isBase":true}}}, +{"id":70585,"name":"Vicious Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,231,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"6":168,"16":100,"22":1038},"isBase":true}}}, +{"id":70586,"name":"Vicious Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,278,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,1350,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":278,"2":507,"8":225,"11":165,"16":135,"22":1350},"isBase":true}}}, +{"id":70587,"name":"Vicious Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,298,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":225,"7":185,"16":135,"22":1454},"isBase":true}}}, +{"id":70588,"name":"Vicious Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,231,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"7":168,"8":148,"16":100,"22":1246},"isBase":true}}}, +{"id":70589,"name":"Vicious Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,298,507,0,0,0,185,0,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":914,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":185,"11":225,"16":135,"22":1661},"isBase":true}}}, +{"id":70590,"name":"Vicious Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,298,507,0,0,0,185,0,0,0,0,225,0,0,0,0,135,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":185,"11":225,"16":135,"22":2424},"isBase":true}}}, +{"id":70591,"name":"Vicious Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,231,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"6":168,"16":100,"22":1515},"isBase":true}}}, +{"id":70592,"name":"Vicious Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,278,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":278,"2":507,"8":225,"11":165,"16":135,"22":1970},"isBase":true}}}, +{"id":70593,"name":"Vicious Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,298,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"1":298,"2":507,"6":225,"7":185,"16":135,"22":2121},"isBase":true}}}, +{"id":70594,"name":"Vicious Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,231,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":912,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"7":168,"8":148,"16":100,"22":1818},"isBase":true}}}, +{"id":70595,"name":"Vicious Gladiator's Links of Accuracy","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,231,377,0,0,148,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"7":168,"16":100,"22":1364},"isBase":true}}}, +{"id":70596,"name":"Vicious Gladiator's Links of Cruelty","icon":"inv_belt_mail_pvphunter_c_01","type":8,"armorType":3,"stats":[0,231,377,0,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":148,"11":168,"16":100,"22":1364},"isBase":true}}}, +{"id":70597,"name":"Vicious Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":2424},"isBase":true}}}, +{"id":70598,"name":"Vicious Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,377,231,148,0,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"6":168,"16":100,"22":1515},"isBase":true}}}, +{"id":70599,"name":"Vicious Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,507,278,0,0,0,165,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"7":165,"11":225,"16":135,"22":1970},"isBase":true}}}, +{"id":70600,"name":"Vicious Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,507,298,0,0,0,225,0,0,0,185,0,0,0,0,135,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"7":225,"11":185,"16":135,"22":2121},"isBase":true}}}, +{"id":70601,"name":"Vicious Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,377,231,0,0,0,148,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":911,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"7":148,"11":168,"16":100,"22":1818},"isBase":true}}}, +{"id":70602,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"6":319,"16":100},"isBase":true}}}, +{"id":70603,"name":"Vicious Gladiator's Medallion of Cruelty","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,319,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"6":319,"16":100},"isBase":true}}}, +{"id":70604,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"4":319,"16":100},"isBase":true}}}, +{"id":70605,"name":"Vicious Gladiator's Medallion of Meditation","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,319,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"4":319,"16":100},"isBase":true}}}, +{"id":70606,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_01","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"11":319,"16":100},"isBase":true}}}, +{"id":70607,"name":"Vicious Gladiator's Medallion of Tenacity","icon":"inv_jewelry_trinketpvp_02","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,319,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":2,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"11":319,"16":100},"isBase":true}}}, +{"id":70608,"name":"Vicious Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,777,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":777},"isBase":true}}}, +{"id":70609,"name":"Vicious Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":1010},"isBase":true}}}, +{"id":70610,"name":"Vicious Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1088},"isBase":true}}}, +{"id":70611,"name":"Vicious Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":933},"isBase":true}}}, +{"id":70612,"name":"Vicious Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,507,298,185,0,0,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":916,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"4":185,"7":225,"16":135,"22":1244},"isBase":true}}}, +{"id":70613,"name":"Vicious Gladiator's Necklace of Proficiency","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,188,282,0,0,0,126,0,126,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"6":126,"8":126,"16":75},"isBase":true}}}, +{"id":70614,"name":"Vicious Gladiator's Necklace of Prowess","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,188,282,0,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"7":126,"11":126,"16":75},"isBase":true}}}, +{"id":70615,"name":"Vicious Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,507,298,185,0,0,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,3416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"4":185,"7":225,"16":135,"22":3416},"isBase":true}}}, +{"id":70616,"name":"Vicious Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2135,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":2135},"isBase":true}}}, +{"id":70617,"name":"Vicious Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,2776,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":2776},"isBase":true}}}, +{"id":70618,"name":"Vicious Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2989,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":2989},"isBase":true}}}, +{"id":70619,"name":"Vicious Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,2562,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":918,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":2562},"isBase":true}}}, +{"id":70620,"name":"Vicious Gladiator's Pendant of Alacrity","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,282,188,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"7":126,"11":126,"16":75},"isBase":true}}}, +{"id":70621,"name":"Vicious Gladiator's Pendant of Diffusion","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,282,188,0,0,188,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,3,4,5,7,8],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"6":188,"11":126,"16":75},"isBase":true}}}, +{"id":70622,"name":"Vicious Gladiator's Pendant of Meditation","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,282,188,126,0,0,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[1,4,5,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"2":282,"3":188,"4":126,"7":126,"16":75},"isBase":true}}}, +{"id":70623,"name":"Vicious Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[298,0,507,0,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,3416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":185,"7":225,"16":135,"22":3416},"isBase":true}}}, +{"id":70624,"name":"Vicious Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[231,0,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2135,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"5":148,"6":168,"16":100,"22":2135},"isBase":true}}}, +{"id":70625,"name":"Vicious Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[278,0,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,2776,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":278,"2":507,"8":225,"11":165,"16":135,"22":2776},"isBase":true}}}, +{"id":70626,"name":"Vicious Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[298,0,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2989,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":225,"7":185,"16":135,"22":2989},"isBase":true}}}, +{"id":70627,"name":"Vicious Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[231,0,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,2562,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":909,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"7":168,"8":148,"16":100,"22":2562},"isBase":true}}}, +{"id":70632,"name":"Vicious Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,507,298,185,0,0,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2424,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"4":185,"7":225,"16":135,"22":2424},"isBase":true}}}, +{"id":70633,"name":"Vicious Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1515,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":1515},"isBase":true}}}, +{"id":70634,"name":"Vicious Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,1970,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":1970},"isBase":true}}}, +{"id":70635,"name":"Vicious Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2121,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":2121},"isBase":true}}}, +{"id":70636,"name":"Vicious Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1818,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":913,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":1818},"isBase":true}}}, +{"id":70637,"name":"Vicious Gladiator's Ring of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[0,188,282,0,0,126,0,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"5":126,"11":126,"16":75},"isBase":true}}}, +{"id":70638,"name":"Vicious Gladiator's Ring of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[0,188,282,0,0,0,126,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[1,2,6,7,11],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"6":126,"7":126,"16":75},"isBase":true}}}, +{"id":70639,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,231,377,0,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":168,"7":148,"16":100,"22":1667},"isBase":true}}}, +{"id":70640,"name":"Vicious Gladiator's Sabatons of Alacrity","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,377,231,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":168,"7":148,"16":100,"22":1667},"isBase":true}}}, +{"id":70641,"name":"Vicious Gladiator's Sabatons of Cruelty","icon":"inv_boots_mail_pvphunter_c_01","type":10,"armorType":3,"stats":[0,231,377,0,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":148,"11":168,"16":100,"22":1667},"isBase":true}}}, +{"id":70642,"name":"Vicious Gladiator's Sabatons of Meditation","icon":"inv_boots_mail_pvpshaman_c_01","type":10,"armorType":3,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1667,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":1667},"isBase":true}}}, +{"id":70643,"name":"Vicious Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,377,231,148,0,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,777,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"6":168,"16":100,"22":777},"isBase":true}}}, +{"id":70644,"name":"Vicious Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,507,278,0,0,0,165,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"7":165,"11":225,"16":135,"22":1010},"isBase":true}}}, +{"id":70645,"name":"Vicious Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,507,298,0,0,0,225,0,0,0,185,0,0,0,0,135,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"7":225,"11":185,"16":135,"22":1088},"isBase":true}}}, +{"id":70646,"name":"Vicious Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,377,231,0,0,0,148,0,0,0,168,0,0,0,0,100,0,0,0,0,0,933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"7":148,"11":168,"16":100,"22":933},"isBase":true}}}, +{"id":70647,"name":"Vicious Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":915,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1244},"isBase":true}}}, +{"id":70648,"name":"Vicious Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[298,0,507,0,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,3416,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":185,"7":225,"16":135,"22":3416},"isBase":true}}}, +{"id":70649,"name":"Vicious Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[231,0,377,0,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2135,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"5":148,"6":168,"16":100,"22":2135},"isBase":true}}}, +{"id":70650,"name":"Vicious Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[278,0,507,0,0,0,0,0,225,0,0,165,0,0,0,0,135,0,0,0,0,0,2776,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":278,"2":507,"8":225,"11":165,"16":135,"22":2776},"isBase":true}}}, +{"id":70651,"name":"Vicious Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[298,0,507,0,0,0,225,185,0,0,0,0,0,0,0,0,135,0,0,0,0,0,2989,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"0":298,"2":507,"6":225,"7":185,"16":135,"22":2989},"isBase":true}}}, +{"id":70652,"name":"Vicious Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[231,0,377,0,0,0,0,168,148,0,0,0,0,0,0,0,100,0,0,0,0,0,2562,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":917,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"7":168,"8":148,"16":100,"22":2562},"isBase":true}}}, +{"id":70653,"name":"Vicious Gladiator's Signet of Accuracy","icon":"inv_jewelry_ring_79","type":11,"stats":[188,0,282,0,0,126,0,0,0,0,0,126,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"5":126,"11":126,"16":75},"isBase":true}}}, +{"id":70654,"name":"Vicious Gladiator's Signet of Cruelty","icon":"inv_jewelry_ring_79","type":11,"stats":[188,0,282,0,0,0,126,126,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"unique":true,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"0":188,"2":282,"6":126,"7":126,"16":75},"isBase":true}}}, +{"id":70655,"name":"Vicious Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,377,231,0,0,0,168,0,0,0,148,0,0,0,0,100,0,0,0,0,0,933,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"7":168,"11":148,"16":100,"22":933},"isBase":true}}}, +{"id":70656,"name":"Vicious Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,507,278,0,0,225,0,0,0,0,165,0,0,0,0,135,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"6":225,"11":165,"16":135,"22":1010},"isBase":true}}}, +{"id":70657,"name":"Vicious Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,377,231,0,148,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,777,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"5":148,"6":168,"16":100,"22":777},"isBase":true}}}, +{"id":70658,"name":"Vicious Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1244,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1244},"isBase":true}}}, +{"id":70659,"name":"Vicious Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,507,298,0,0,0,185,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1088,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":919,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"7":185,"11":225,"16":135,"22":1088},"isBase":true}}}, +{"id":70660,"name":"Vicious Gladiator's Treads of Alacrity","icon":"inv_boots_cloth_pvpwarlock_c_01","type":10,"armorType":1,"stats":[0,0,377,231,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":168,"7":148,"16":100,"22":855},"isBase":true}}}, +{"id":70661,"name":"Vicious Gladiator's Treads of Cruelty","icon":"inv_boots_cloth_pvpmage_c_01","type":10,"armorType":1,"stats":[0,0,377,231,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":148,"11":168,"16":100,"22":855},"isBase":true}}}, +{"id":70662,"name":"Vicious Gladiator's Treads of Meditation","icon":"inv_boots_robe_pvppriest_c_01","type":10,"armorType":1,"stats":[0,0,377,231,148,0,0,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,855,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[3,5,8],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"11":168,"16":100,"22":855},"isBase":true}}}, +{"id":70663,"name":"Vicious Gladiator's Waistband of Accuracy","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,231,377,0,0,148,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,935,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"5":148,"7":168,"16":100,"22":935},"isBase":true}}}, +{"id":70664,"name":"Vicious Gladiator's Waistband of Cruelty","icon":"inv_belt_leather_pvprogue_c_01","type":8,"armorType":2,"stats":[0,231,377,0,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,935,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1,6,11],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"1":231,"2":377,"6":148,"11":168,"16":100,"22":935},"isBase":true}}}, +{"id":70665,"name":"Vicious Gladiator's Waistguard of Cruelty","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,377,231,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"6":148,"11":168,"16":100,"22":1364},"isBase":true}}}, +{"id":70666,"name":"Vicious Gladiator's Waistguard of Meditation","icon":"inv_belt_mail_pvpshaman_c_01","type":8,"armorType":3,"stats":[0,0,377,231,148,0,0,168,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1364,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[7],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"7":168,"16":100,"22":1364},"isBase":true}}}, +{"id":70667,"name":"Vicious Gladiator's Warboots of Alacrity","icon":"inv_boots_plate_pvpwarrior_c_01","type":10,"armorType":4,"stats":[231,0,377,0,0,0,168,148,0,0,0,0,0,0,0,0,100,0,0,0,0,0,2349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"6":168,"7":148,"16":100,"22":2349},"isBase":true}}}, +{"id":70668,"name":"Vicious Gladiator's Warboots of Cruelty","icon":"inv_boots_plate_pvpdeathknight_c_01","type":10,"armorType":4,"stats":[231,0,377,0,0,0,148,0,0,0,0,168,0,0,0,0,100,0,0,0,0,0,2349,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[4,9,10],"scalingOptions":{"358":{"randPropPoints":478,"stats":{"0":231,"2":377,"6":148,"11":168,"16":100,"22":2349},"isBase":true}}}, +{"id":70669,"name":"Vicious Gladiator's Wristguards of Accuracy","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,188,282,0,0,126,126,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"5":126,"6":126,"16":75,"22":1061},"isBase":true}}}, +{"id":70670,"name":"Vicious Gladiator's Wristguards of Alacrity","icon":"inv_bracer_mail_pvphunter_c_01","type":6,"armorType":3,"stats":[0,188,282,0,0,0,0,126,0,0,0,126,0,0,0,0,75,0,0,0,0,0,1061,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":358,"ilvl":358,"quality":4,"classAllowlist":[2,7],"scalingOptions":{"358":{"randPropPoints":358,"stats":{"1":188,"2":282,"7":126,"11":126,"16":75,"22":1061},"isBase":true}}}, +{"id":70671,"name":"Vicious Gladiator's Wyrmhide Gloves","icon":"inv_glove_leather_pvpdruid_c_01","type":7,"armorType":2,"stats":[0,0,377,231,148,0,168,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,1038,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"4":148,"6":168,"16":100,"22":1038},"isBase":true}}}, +{"id":70672,"name":"Vicious Gladiator's Wyrmhide Helm","icon":"inv_helm_leather_pvpdruid_c_01","type":1,"armorType":2,"stats":[0,0,507,278,0,0,0,165,0,0,0,225,0,0,0,0,135,0,0,0,0,0,1350,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":278,"7":165,"11":225,"16":135,"22":1350},"isBase":true}}}, +{"id":70673,"name":"Vicious Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_pvpdruid_c_01","type":9,"armorType":2,"stats":[0,0,507,298,0,0,0,225,0,0,0,185,0,0,0,0,135,0,0,0,0,0,1454,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"7":225,"11":185,"16":135,"22":1454},"isBase":true}}}, +{"id":70674,"name":"Vicious Gladiator's Wyrmhide Robes","icon":"inv_chest_leather_pvpdruid_c_01","type":5,"armorType":2,"stats":[0,0,507,298,0,0,185,225,0,0,0,0,0,0,0,0,135,0,0,0,0,0,1661,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":643,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"358":{"randPropPoints":643,"stats":{"2":507,"3":298,"6":185,"7":225,"16":135,"22":1661},"isBase":true}}}, +{"id":70675,"name":"Vicious Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_leather_pvpdruid_c_01","type":3,"armorType":2,"stats":[0,0,377,231,0,0,0,148,0,0,0,168,0,0,0,0,100,0,0,0,0,0,1246,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":478,"ilvl":358,"quality":4,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":921,"scalingOptions":{"358":{"randPropPoints":478,"stats":{"2":377,"3":231,"7":148,"11":168,"16":100,"22":1246},"isBase":true}}}, +{"id":71077,"name":"Extreme-Impact Hole Puncher","icon":"inv_weapon_rifle_44","type":14,"rangedWeaponType":3,"stats":[0,321,541,0,0,0,227,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[4],"socketBonus":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":686,"weaponDamageMin":2583,"weaponDamageMax":4799,"weaponSpeed":2.8,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":686,"weaponDamageMin":2583,"weaponDamageMax":4799,"stats":{"1":321,"2":541,"6":227,"11":233},"isBase":true}}}, +{"id":71267,"name":"Mantle of Desire","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,0,301,201,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"7":134,"11":134,"22":647},"isBase":true}}}, +{"id":71268,"name":"Mantle of Doubt","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[0,201,301,0,0,134,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"1":201,"2":301,"5":134,"11":134,"22":647},"isBase":true}}}, +{"id":71269,"name":"Mantle of Fury","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[201,0,301,0,0,0,134,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"6":134,"7":134,"22":647},"isBase":true}}}, +{"id":71270,"name":"Mantle of Patience","icon":"inv_cape_firelands_fireset_d_01","type":4,"armorType":1,"stats":[201,0,301,0,0,0,0,0,0,134,0,134,0,0,0,0,0,0,0,0,0,0,647,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"9":134,"11":134,"22":647},"isBase":true}}}, +{"id":71325,"name":"The Horseman's Sinister Saber","icon":"inv_sword_07","type":13,"weaponType":9,"handType":2,"stats":[0,103,290,0,0,103,0,0,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"weaponSpeed":2.6,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":294,"weaponDamageMin":1779,"weaponDamageMax":3305,"stats":{"1":103,"2":290,"5":103,"8":103},"isBase":true}}}, +{"id":71326,"name":"The Horseman's Horrific Helmet","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[371,0,411,0,0,171,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2833,0,0,0,0],"gemSockets":[1,4],"socketBonus":[30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":686,"ilvl":365,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":686,"stats":{"0":371,"2":411,"5":171,"6":218,"22":2833},"isBase":true}}}, +{"id":71327,"name":"Band of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,201,301,0,0,118,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"1":201,"2":301,"5":118,"6":144},"isBase":true}}}, +{"id":71328,"name":"The Horseman's Signet","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,301,201,0,118,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"5":118,"7":144},"isBase":true}}}, +{"id":71329,"name":"Wicked Witch's Ring","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,301,201,134,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"2":301,"3":201,"4":134,"6":134},"isBase":true}}}, +{"id":71330,"name":"Seal of the Petrified Pumpkin","icon":"inv_misc_bag_28_halloween","type":11,"stats":[201,0,301,0,0,0,142,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":382,"ilvl":365,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"365":{"randPropPoints":382,"stats":{"0":201,"2":301,"6":142,"7":121},"isBase":true}}}, +{"id":72621,"name":"Magesoul Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"5":61,"6":61,"22":816},"isBase":true}}}, +{"id":72622,"name":"Magesoul Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"5":34,"7":51,"22":561},"isBase":true}}}, +{"id":72623,"name":"Magesoul Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"11":45,"22":510},"isBase":true}}}, +{"id":72624,"name":"Magesoul Hood","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,0,53,0,0,0,65,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":53,"11":65,"22":663},"isBase":true}}}, +{"id":72625,"name":"Magesoul Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":53,"7":65,"22":714},"isBase":true}}}, +{"id":72626,"name":"Magesoul Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":51,"11":34,"22":612},"isBase":true}}}, +{"id":72627,"name":"Magesoul Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"11":48,"22":459},"isBase":true}}}, +{"id":72628,"name":"Magesoul Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"7":34,"22":357},"isBase":true}}}, +{"id":72638,"name":"Dreadsoul Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"5":34,"7":51,"22":561},"isBase":true}}}, +{"id":72639,"name":"Dreadsoul Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"11":45,"22":510},"isBase":true}}}, +{"id":72640,"name":"Dreadsoul Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":61,"11":61,"22":663},"isBase":true}}}, +{"id":72641,"name":"Dreadsoul Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":53,"7":65,"22":714},"isBase":true}}}, +{"id":72642,"name":"Dreadsoul Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"5":61,"6":61,"22":816},"isBase":true}}}, +{"id":72643,"name":"Dreadsoul Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,0,34,0,0,0,51,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":34,"11":51,"22":612},"isBase":true}}}, +{"id":72644,"name":"Dreadsoul Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"7":48,"22":459},"isBase":true}}}, +{"id":72645,"name":"Dreadsoul Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"7":34,"22":357},"isBase":true}}}, +{"id":72646,"name":"Seraphic Boots","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"7":48,"22":561},"isBase":true}}}, +{"id":72647,"name":"Seraphic Gloves","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,48,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":48,"11":39,"22":510},"isBase":true}}}, +{"id":72648,"name":"Seraphic Cowl","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,46,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":46,"7":69,"22":663},"isBase":true}}}, +{"id":72649,"name":"Seraphic Pants","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":61,"11":61,"22":714},"isBase":true}}}, +{"id":72650,"name":"Seraphic Robe","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":61,"11":61,"22":816},"isBase":true}}}, +{"id":72651,"name":"Seraphic Mantle","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":51,"7":34,"22":612},"isBase":true}}}, +{"id":72652,"name":"Seraphic Sash","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,0,0,0,39,0,0,0,48,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":39,"11":48,"22":459},"isBase":true}}}, +{"id":72653,"name":"Seraphic Bindings","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"11":26,"22":357},"isBase":true}}}, +{"id":72655,"name":"Seraphic Sandals","icon":"inv_boots_cloth_23","type":10,"armorType":1,"stats":[0,0,101,67,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":48,"6":39,"22":561},"isBase":true}}}, +{"id":72656,"name":"Seraphic Handwraps","icon":"inv_gauntlets_40","type":7,"armorType":1,"stats":[0,0,101,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,510,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"7":45,"22":510},"isBase":true}}}, +{"id":72657,"name":"Seraphic Hood","icon":"inv_helmet_139","type":1,"armorType":1,"stats":[0,0,136,91,0,0,46,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,663,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":46,"11":69,"22":663},"isBase":true}}}, +{"id":72658,"name":"Seraphic Leggings","icon":"inv_pants_cloth_19","type":9,"armorType":1,"stats":[0,0,136,91,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,714,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":65,"11":53,"22":714},"isBase":true}}}, +{"id":72659,"name":"Seraphic Vestments","icon":"inv_chest_cloth_74","type":5,"armorType":1,"stats":[0,0,136,91,69,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":69,"7":46,"22":816},"isBase":true}}}, +{"id":72660,"name":"Seraphic Shoulderpads","icon":"inv_shoulder_25","type":3,"armorType":1,"stats":[0,0,101,67,51,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,612,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":51,"11":34,"22":612},"isBase":true}}}, +{"id":72661,"name":"Seraphic Cord","icon":"inv_belt_96","type":8,"armorType":1,"stats":[0,0,101,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":45,"7":45,"22":459},"isBase":true}}}, +{"id":72662,"name":"Seraphic Wristwraps","icon":"inv_bracer_13","type":6,"armorType":1,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,357,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":36,"11":30,"22":357},"isBase":true}}}, +{"id":72664,"name":"Shadowstalking Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"5":61,"6":61,"22":1067},"isBase":true}}}, +{"id":72665,"name":"Shadowstalking Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,67,101,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":51,"8":34,"22":733},"isBase":true}}}, +{"id":72666,"name":"Shadowstalking Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,67,101,0,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"7":48,"11":39,"22":667},"isBase":true}}}, +{"id":72667,"name":"Shadowstalking Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,91,136,0,0,0,0,0,46,0,0,69,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"8":46,"11":69,"22":867},"isBase":true}}}, +{"id":72668,"name":"Shadowstalking Britches","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,91,136,0,0,46,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"5":46,"7":69,"22":933},"isBase":true}}}, +{"id":72669,"name":"Shadowstalking Shoulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,67,101,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":45,"7":45,"22":800},"isBase":true}}}, +{"id":72670,"name":"Shadowstalking Waistband","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,67,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":34,"11":51,"22":600},"isBase":true}}}, +{"id":72671,"name":"Shadowstalking Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,50,76,0,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":38,"8":26,"22":467},"isBase":true}}}, +{"id":72672,"name":"Wildsoul Vest","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,91,136,0,0,0,53,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":53,"11":65,"22":1067},"isBase":true}}}, +{"id":72673,"name":"Wildsoul Footpads","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,67,101,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"5":34,"7":51,"22":733},"isBase":true}}}, +{"id":72674,"name":"Wildsoul Handguards","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,67,101,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"5":45,"6":45,"22":667},"isBase":true}}}, +{"id":72675,"name":"Wildsoul Helm","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,91,136,0,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"7":61,"11":61,"22":867},"isBase":true}}}, +{"id":72676,"name":"Wildsoul Legguards","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,91,136,0,0,0,69,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":69,"8":46,"22":933},"isBase":true}}}, +{"id":72677,"name":"Wildsoul Pauldrons","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,67,101,0,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"7":51,"8":34,"22":800},"isBase":true}}}, +{"id":72678,"name":"Wildsoul Cord","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,67,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":34,"11":51,"22":600},"isBase":true}}}, +{"id":72679,"name":"Wildsoul Cuffs","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,50,76,0,0,38,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"5":38,"8":26,"22":467},"isBase":true}}}, +{"id":72681,"name":"Wildsoul Jerkin","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,136,91,53,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":53,"7":53,"22":1067},"isBase":true}}}, +{"id":72682,"name":"Wildsoul Boots","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"11":48,"22":733},"isBase":true}}}, +{"id":72683,"name":"Wildsoul Gloves","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,101,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"7":45,"22":667},"isBase":true}}}, +{"id":72684,"name":"Wildsoul Hood","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,136,91,53,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":53,"11":65,"22":867},"isBase":true}}}, +{"id":72685,"name":"Wildsoul Britches","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,0,136,91,0,0,69,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":69,"11":46,"22":933},"isBase":true}}}, +{"id":72686,"name":"Wildsoul Shoulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,101,67,39,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":39,"7":48,"22":800},"isBase":true}}}, +{"id":72687,"name":"Wildsoul Waistband","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,101,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":45,"7":45,"22":600},"isBase":true}}}, +{"id":72688,"name":"Wildsoul Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":36,"11":30,"22":467},"isBase":true}}}, +{"id":72689,"name":"Wildsoul Tunic","icon":"inv_chest_leather_08","type":5,"armorType":2,"stats":[0,0,136,91,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":65,"11":53,"22":1067},"isBase":true}}}, +{"id":72690,"name":"Wildsoul Treads","icon":"inv_boots_09","type":10,"armorType":2,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"7":48,"22":733},"isBase":true}}}, +{"id":72691,"name":"Wildsoul Grips","icon":"inv_gauntlets_23","type":7,"armorType":2,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":48,"7":39,"22":667},"isBase":true}}}, +{"id":72692,"name":"Wildsoul Headpiece","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":61,"11":61,"22":867},"isBase":true}}}, +{"id":72693,"name":"Wildsoul Leggings","icon":"inv_pants_leather_19","type":9,"armorType":2,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":65,"7":53,"22":933},"isBase":true}}}, +{"id":72694,"name":"Wildsoul Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,101,67,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":48,"11":39,"22":800},"isBase":true}}}, +{"id":72695,"name":"Wildsoul Belt","icon":"inv_belt_23","type":8,"armorType":2,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"11":48,"22":600},"isBase":true}}}, +{"id":72696,"name":"Wildsoul Bracers","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,0,76,50,0,38,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"5":38,"11":26,"22":467},"isBase":true}}}, +{"id":72698,"name":"Stormbinder Chestguard","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,91,136,0,0,0,0,0,61,0,0,61,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"8":61,"11":61,"22":1524},"isBase":true}}}, +{"id":72699,"name":"Stormbinder Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,67,101,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"5":48,"7":39,"22":1048},"isBase":true}}}, +{"id":72700,"name":"Stormbinder Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,67,101,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":51,"8":34,"22":952},"isBase":true}}}, +{"id":72701,"name":"Stormbinder Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,91,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"5":61,"6":61,"22":1238},"isBase":true}}}, +{"id":72702,"name":"Stormbinder Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,91,136,0,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"7":65,"11":53,"22":1333},"isBase":true}}}, +{"id":72703,"name":"Stormbinder Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,67,101,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":45,"11":45,"22":1143},"isBase":true}}}, +{"id":72704,"name":"Stormbinder Waistguard","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,67,101,0,0,0,34,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":34,"7":51,"22":857},"isBase":true}}}, +{"id":72705,"name":"Stormbinder Armguard","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,50,76,0,0,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":26,"11":38,"22":667},"isBase":true}}}, +{"id":72889,"name":"Stormbinder Tunic","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":61,"11":61,"22":1524},"isBase":true}}}, +{"id":72890,"name":"Stormbinder Boots","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":48,"7":39,"22":1048},"isBase":true}}}, +{"id":72891,"name":"Stormbinder Gloves","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,101,67,0,0,48,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":48,"11":39,"22":952},"isBase":true}}}, +{"id":72892,"name":"Stormbinder Coif","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":65,"7":53,"22":1238},"isBase":true}}}, +{"id":72893,"name":"Stormbinder Legwraps","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,136,91,46,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":46,"11":69,"22":1333},"isBase":true}}}, +{"id":72894,"name":"Stormbinder Pauldrons","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,101,67,0,0,51,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":51,"11":34,"22":1143},"isBase":true}}}, +{"id":72895,"name":"Stormbinder Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,0,101,67,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":51,"11":34,"22":857},"isBase":true}}}, +{"id":72896,"name":"Stormbinder Armbands","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26,"22":667},"isBase":true}}}, +{"id":72902,"name":"Stormbinder Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,0,136,91,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":65,"6":53,"22":1524},"isBase":true}}}, +{"id":72903,"name":"Stormbinder Sabatons","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,0,101,67,0,0,0,45,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":45,"11":45,"22":1048},"isBase":true}}}, +{"id":72904,"name":"Stormbinder Grips","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,0,101,67,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"7":48,"22":952},"isBase":true}}}, +{"id":72905,"name":"Stormbinder Cowl","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,0,136,91,53,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":53,"11":65,"22":1238},"isBase":true}}}, +{"id":72906,"name":"Stormbinder Leggings","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,0,136,91,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":61,"7":61,"22":1333},"isBase":true}}}, +{"id":72907,"name":"Stormbinder Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"11":48,"22":1143},"isBase":true}}}, +{"id":72908,"name":"Stormbinder Girdle","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,0,101,67,48,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":48,"7":39,"22":857},"isBase":true}}}, +{"id":72909,"name":"Stormbinder Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":667},"isBase":true}}}, +{"id":72910,"name":"Beastsoul Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,91,136,0,0,0,61,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,1524,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":61,"8":61,"22":1524},"isBase":true}}}, +{"id":72911,"name":"Beastsoul Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,67,101,0,0,0,0,48,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1048,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"7":48,"11":39,"22":1048},"isBase":true}}}, +{"id":72912,"name":"Beastsoul Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,67,101,0,0,0,39,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,952,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":39,"8":48,"22":952},"isBase":true}}}, +{"id":72913,"name":"Beastsoul Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,91,136,0,0,53,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1238,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"5":53,"11":65,"22":1238},"isBase":true}}}, +{"id":72914,"name":"Beastsoul Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,91,136,0,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1333,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":65,"11":53,"22":1333},"isBase":true}}}, +{"id":72915,"name":"Beastsoul Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,67,101,0,0,0,0,51,0,0,0,34,0,0,0,0,0,0,0,0,0,0,1143,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"7":51,"11":34,"22":1143},"isBase":true}}}, +{"id":72916,"name":"Beastsoul Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,67,101,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,857,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":39,"7":48,"22":857},"isBase":true}}}, +{"id":72917,"name":"Beastsoul Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,50,76,0,0,0,30,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":30,"11":36,"22":667},"isBase":true}}}, +{"id":72918,"name":"Ebonsoul Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"6":61,"7":61,"22":2118},"isBase":true}}}, +{"id":72919,"name":"Ebonsoul Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"5":48,"6":39,"22":1456},"isBase":true}}}, +{"id":72920,"name":"Ebonsoul Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"7":39,"8":48,"22":1324},"isBase":true}}}, +{"id":72921,"name":"Ebonsoul Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,61,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":61,"11":61,"22":1721},"isBase":true}}}, +{"id":72922,"name":"Ebonsoul Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"7":46,"11":69,"22":1853},"isBase":true}}}, +{"id":72923,"name":"Ebonsoul Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,39,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"6":39,"8":48,"22":1588},"isBase":true}}}, +{"id":72924,"name":"Ebonsoul Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"6":39,"11":48,"22":1191},"isBase":true}}}, +{"id":72925,"name":"Ebonsoul Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"7":38,"11":26,"22":927},"isBase":true}}}, +{"id":72929,"name":"Ebonsoul Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,53,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":53,"9":65,"22":2118},"isBase":true}}}, +{"id":72930,"name":"Ebonsoul Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"10":45,"11":45,"22":1456},"isBase":true}}}, +{"id":72931,"name":"Ebonsoul Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,39,0,48,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":39,"10":48,"22":1324},"isBase":true}}}, +{"id":72932,"name":"Ebonsoul Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":61,"10":61,"22":1721},"isBase":true}}}, +{"id":72933,"name":"Ebonsoul Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,46,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"9":46,"11":69,"22":1853},"isBase":true}}}, +{"id":72934,"name":"Ebonsoul Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,39,0,0,48,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":39,"11":48,"22":1588},"isBase":true}}}, +{"id":72935,"name":"Ebonsoul Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,51,0,34,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"9":51,"11":34,"22":1191},"isBase":true}}}, +{"id":72936,"name":"Ebonsoul Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"8":26,"10":38,"22":927},"isBase":true}}}, +{"id":72937,"name":"Valiant Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,61,0,61,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"9":61,"11":61,"22":2118},"isBase":true}}}, +{"id":72938,"name":"Valiant Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"5":39,"10":48,"22":1456},"isBase":true}}}, +{"id":72939,"name":"Valiant Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":45,"9":45,"22":1324},"isBase":true}}}, +{"id":72940,"name":"Valiant Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,0,65,53,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"10":65,"11":53,"22":1721},"isBase":true}}}, +{"id":72941,"name":"Valiant Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,69,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":69,"10":46,"22":1853},"isBase":true}}}, +{"id":72942,"name":"Valiant Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":51,"9":34,"22":1588},"isBase":true}}}, +{"id":72943,"name":"Valiant Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"9":34,"11":51,"22":1191},"isBase":true}}}, +{"id":72944,"name":"Valiant Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"10":38,"11":26,"22":927},"isBase":true}}}, +{"id":72945,"name":"Valiant Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":61,"6":61,"22":2118},"isBase":true}}}, +{"id":72946,"name":"Valiant Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"5":48,"7":39,"22":1456},"isBase":true}}}, +{"id":72947,"name":"Valiant Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":45,"11":45,"22":1324},"isBase":true}}}, +{"id":72948,"name":"Valiant Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"6":65,"8":53,"22":1721},"isBase":true}}}, +{"id":72949,"name":"Valiant Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"7":65,"11":53,"22":1853},"isBase":true}}}, +{"id":72950,"name":"Valiant Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,39,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"6":39,"7":48,"22":1588},"isBase":true}}}, +{"id":72951,"name":"Valiant Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"6":34,"11":51,"22":1191},"isBase":true}}}, +{"id":72952,"name":"Valiant Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,26,0,0,0,38,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"7":26,"11":38,"22":927},"isBase":true}}}, +{"id":72955,"name":"Zealous Battleplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"6":61,"11":61,"22":2118},"isBase":true}}}, +{"id":72956,"name":"Zealous Sabatons","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"7":48,"8":39,"22":1456},"isBase":true}}}, +{"id":72957,"name":"Zealous Gauntlets","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"5":45,"6":45,"22":1324},"isBase":true}}}, +{"id":72958,"name":"Zealous Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,0,0,0,53,0,0,65,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"8":53,"11":65,"22":1721},"isBase":true}}}, +{"id":72959,"name":"Zealous Legplates","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":65,"7":53,"22":1853},"isBase":true}}}, +{"id":72960,"name":"Zealous Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,48,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"6":48,"7":39,"22":1588},"isBase":true}}}, +{"id":72961,"name":"Zealous Girdle","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,34,0,0,0,51,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"7":34,"11":51,"22":1191},"isBase":true}}}, +{"id":72962,"name":"Zealous Vambraces","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,38,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":38,"11":26,"22":927},"isBase":true}}}, +{"id":72963,"name":"Zealous Chestguard","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[91,0,136,0,0,0,0,0,0,61,61,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"9":61,"10":61,"22":2118},"isBase":true}}}, +{"id":72964,"name":"Zealous Greaves","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[67,0,101,0,0,48,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"5":48,"11":39,"22":1456},"isBase":true}}}, +{"id":72965,"name":"Zealous Handguards","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[67,0,101,0,0,0,0,0,45,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"8":45,"11":45,"22":1324},"isBase":true}}}, +{"id":72966,"name":"Zealous Faceguard","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[91,0,136,0,0,65,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"5":65,"9":53,"22":1721},"isBase":true}}}, +{"id":72967,"name":"Zealous Legguards","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[91,0,136,0,0,0,0,0,65,0,53,0,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"0":91,"2":136,"8":65,"10":53,"22":1853},"isBase":true}}}, +{"id":72968,"name":"Zealous Shoulderguards","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"9":34,"11":51,"22":1588},"isBase":true}}}, +{"id":72969,"name":"Zealous Waistband","icon":"inv_belt_35","type":8,"armorType":4,"stats":[67,0,101,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":67,"2":101,"9":45,"10":45,"22":1191},"isBase":true}}}, +{"id":72970,"name":"Zealous Armguards","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[50,0,76,0,0,0,0,0,0,0,36,30,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"10":36,"11":30,"22":927},"isBase":true}}}, +{"id":72971,"name":"Zealous Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,136,91,61,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2118,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":61,"7":61,"22":2118},"isBase":true}}}, +{"id":72972,"name":"Zealous Boots","icon":"inv_boots_plate_15","type":10,"armorType":4,"stats":[0,0,101,67,0,0,48,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,1456,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":48,"11":39,"22":1456},"isBase":true}}}, +{"id":72973,"name":"Zealous Gloves","icon":"inv_gauntlets_62","type":7,"armorType":4,"stats":[0,0,101,67,45,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1324,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":45,"11":45,"22":1324},"isBase":true}}}, +{"id":72974,"name":"Zealous Headpiece","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,136,91,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1721,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":53,"7":65,"22":1721},"isBase":true}}}, +{"id":72975,"name":"Zealous Leggings","icon":"inv_pants_plate_20","type":9,"armorType":4,"stats":[0,0,136,91,0,0,0,46,0,0,0,69,0,0,0,0,0,0,0,0,0,0,1853,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"7":46,"11":69,"22":1853},"isBase":true}}}, +{"id":72976,"name":"Zealous Spaulders","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,101,67,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,1588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"11":45,"22":1588},"isBase":true}}}, +{"id":72977,"name":"Zealous Belt","icon":"inv_belt_35","type":8,"armorType":4,"stats":[0,0,101,67,0,0,0,39,0,0,0,48,0,0,0,0,0,0,0,0,0,0,1191,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"7":39,"11":48,"22":1191},"isBase":true}}}, +{"id":72978,"name":"Zealous Armplates","icon":"inv_bracer_29","type":6,"armorType":4,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":36,"11":30,"22":927},"isBase":true}}}, +{"id":72980,"name":"Valiant Sword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":429,"weaponDamageMax":798,"weaponSpeed":2.4,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":429,"weaponDamageMax":798,"stats":{"0":39,"2":58,"9":26,"10":26},"isBase":true}}}, +{"id":72981,"name":"Zealous Sword","icon":"inv_sword_94","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":429,"weaponDamageMax":798,"weaponSpeed":2.4,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":429,"weaponDamageMax":798,"stats":{"0":39,"2":58,"9":26,"10":26},"isBase":true}}}, +{"id":72982,"name":"Valiant Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[50,0,76,0,0,0,0,0,0,30,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":30,"11":36,"22":6287},"isBase":true}}}, +{"id":72983,"name":"Zealous Bulwark","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[50,0,76,0,0,0,0,0,0,36,0,30,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":36,"11":30,"22":6287},"isBase":true}}}, +{"id":72984,"name":"Zealous Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,0,0,0,30,0,0,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":30,"11":36,"22":6287},"isBase":true}}}, +{"id":72989,"name":"Zealous Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,39,28,0,0,23,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":2.4,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"2":58,"3":39,"4":28,"7":23,"14":520},"isBase":true}}}, +{"id":72990,"name":"Ebonsoul Hammer","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"weaponSpeed":3.6,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"stats":{"0":91,"2":136,"7":61,"11":61},"isBase":true}}}, +{"id":72991,"name":"Ebonsoul Maul","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,0,0,0,53,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"weaponSpeed":3.6,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"stats":{"0":91,"2":136,"9":53,"11":65},"isBase":true}}}, +{"id":72992,"name":"Valiant Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[91,0,136,0,0,0,65,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"weaponSpeed":3.6,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"stats":{"0":91,"2":136,"6":65,"11":53},"isBase":true}}}, +{"id":72993,"name":"Zealous Greatsword","icon":"inv_sword_113","type":13,"weaponType":9,"handType":4,"stats":[91,0,136,0,0,0,53,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"weaponSpeed":3.6,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"stats":{"0":91,"2":136,"6":53,"11":65},"isBase":true}}}, +{"id":72994,"name":"Ebonsoul Blade","icon":"inv_sword_99","type":13,"weaponType":9,"handType":2,"stats":[39,0,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"weaponSpeed":2.6,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"stats":{"0":39,"2":58,"6":26,"11":26},"isBase":true}}}, +{"id":72995,"name":"Shadowstalking Dagger","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,39,58,0,0,0,0,28,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":322,"weaponDamageMax":599,"weaponSpeed":1.8,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":322,"weaponDamageMax":599,"stats":{"1":39,"2":58,"7":28,"11":23},"isBase":true}}}, +{"id":72996,"name":"Shadowstalking Shiv","icon":"inv_weapon_shortblade_68","type":13,"weaponType":2,"handType":3,"stats":[0,39,58,0,0,0,23,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":322,"weaponDamageMax":599,"weaponSpeed":1.8,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":322,"weaponDamageMax":599,"stats":{"1":39,"2":58,"6":23,"7":28},"isBase":true}}}, +{"id":72997,"name":"Shadowstalking Sword","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,39,58,0,0,0,0,26,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"weaponSpeed":2.6,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"stats":{"1":39,"2":58,"7":26,"11":26},"isBase":true}}}, +{"id":72998,"name":"Stormbinder Mace","icon":"inv_mace_69","type":13,"weaponType":4,"handType":2,"stats":[0,39,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"weaponSpeed":2.6,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"stats":{"1":39,"2":58,"6":26,"11":26},"isBase":true}}}, +{"id":72999,"name":"Valiant Maul","icon":"inv_mace_2h_cataclysm_b_01","type":13,"weaponType":4,"handType":4,"stats":[91,0,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"weaponSpeed":3.6,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":958,"weaponDamageMax":1437,"stats":{"0":91,"2":136,"6":61,"11":61},"isBase":true}}}, +{"id":73000,"name":"Beastsoul Rifle","icon":"inv_weapon_rifle_04","type":14,"rangedWeaponType":3,"stats":[0,91,136,0,0,0,65,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":698,"weaponDamageMax":1297,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":698,"weaponDamageMax":1297,"stats":{"1":91,"2":136,"6":65,"7":53},"isBase":true}}}, +{"id":73001,"name":"Beastsoul Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,91,136,0,0,0,53,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"stats":{"1":91,"2":136,"6":53,"7":65},"isBase":true}}}, +{"id":73002,"name":"Stormbinder Scepter","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,39,26,0,0,26,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":2.4,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"2":58,"3":39,"4":26,"7":26,"14":520},"isBase":true}}}, +{"id":73003,"name":"Stormbinder Gavel","icon":"inv_mace_67","type":13,"weaponType":4,"handType":2,"stats":[0,0,58,39,0,0,0,23,0,0,0,28,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"weaponSpeed":2.4,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":214,"weaponDamageMax":399,"stats":{"2":58,"3":39,"7":23,"11":28,"14":520},"isBase":true}}}, +{"id":73004,"name":"Stormbinder Shield","icon":"inv_shield_45","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,30,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":30,"11":36,"22":6287},"isBase":true}}}, +{"id":73005,"name":"Stormbinder Aegis","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,76,50,0,0,36,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":36,"7":30,"22":6287},"isBase":true}}}, +{"id":73006,"name":"Magesoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"7":61,"11":61,"14":521},"isBase":true}}}, +{"id":73007,"name":"Dreadsoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,65,53,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"6":65,"7":53,"14":521},"isBase":true}}}, +{"id":73008,"name":"Seraphic Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,65,0,0,53,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"4":65,"7":53,"14":521},"isBase":true}}}, +{"id":73009,"name":"Seraphic Stave","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,65,0,0,0,53,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"7":65,"11":53,"14":521},"isBase":true}}}, +{"id":73010,"name":"Wildsoul Stave","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,0,0,0,61,0,0,0,61,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"7":61,"11":61,"14":521},"isBase":true}}}, +{"id":73011,"name":"Wildsoul Staff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,53,0,0,65,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"4":53,"7":65,"14":521},"isBase":true}}}, +{"id":73012,"name":"Wildsoul Spear","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,91,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"stats":{"1":91,"2":136,"6":61,"11":61},"isBase":true}}}, +{"id":73013,"name":"Zealous Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73014,"name":"Zealous Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73015,"name":"Zealous Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73016,"name":"Wildsoul Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73017,"name":"Wildsoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"11":34},"isBase":true}}}, +{"id":73018,"name":"Zealous Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73019,"name":"Zealous Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"7":38,"11":26},"isBase":true}}}, +{"id":73020,"name":"Zealous Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73021,"name":"Zealous Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":26,"11":38},"isBase":true}}}, +{"id":73022,"name":"Zealous Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73023,"name":"Zealous Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73024,"name":"Wildsoul Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73025,"name":"Wildsoul Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":38,"7":26},"isBase":true}}}, +{"id":73026,"name":"Wildsoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34},"isBase":true}}}, +{"id":73027,"name":"Wildsoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73042,"name":"Zealous Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73060,"name":"Zealous Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73061,"name":"Zealous Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":85},"isBase":true}}}, +{"id":73062,"name":"Zealous Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"6":85},"isBase":true}}}, +{"id":73063,"name":"Zealous Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73064,"name":"Zealous Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73065,"name":"Wildsoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73066,"name":"Wildsoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73067,"name":"Wildsoul Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":85},"isBase":true}}}, +{"id":73068,"name":"Wildsoul Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73101,"name":"Magesoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73102,"name":"Magesoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73103,"name":"Magesoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34},"isBase":true}}}, +{"id":73104,"name":"Magesoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73105,"name":"Magesoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"11":34},"isBase":true}}}, +{"id":73106,"name":"Dreadsoul Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73107,"name":"Dreadsoul Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73108,"name":"Dreadsoul Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34},"isBase":true}}}, +{"id":73109,"name":"Dreadsoul Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73110,"name":"Dreadsoul Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"11":34},"isBase":true}}}, +{"id":73111,"name":"Seraphic Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73112,"name":"Seraphic Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73113,"name":"Seraphic Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73114,"name":"Seraphic Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73115,"name":"Seraphic Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73116,"name":"Seraphic Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73117,"name":"Seraphic Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73118,"name":"Seraphic Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34},"isBase":true}}}, +{"id":73119,"name":"Seraphic Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73120,"name":"Seraphic Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"11":34},"isBase":true}}}, +{"id":73121,"name":"Shadowstalking Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":85},"isBase":true}}}, +{"id":73122,"name":"Shadowstalking Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73123,"name":"Shadowstalking Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":38,"7":26},"isBase":true}}}, +{"id":73124,"name":"Shadowstalking Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73125,"name":"Shadowstalking Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73126,"name":"Wildsoul Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73127,"name":"Wildsoul Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73128,"name":"Wildsoul Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73129,"name":"Wildsoul Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73130,"name":"Wildsoul Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73131,"name":"Stormbinder Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73132,"name":"Stormbinder Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73133,"name":"Stormbinder Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73134,"name":"Stormbinder Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":38,"7":26},"isBase":true}}}, +{"id":73135,"name":"Stormbinder Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":85},"isBase":true}}}, +{"id":73136,"name":"Stormbinder Medallion","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":34,"11":34},"isBase":true}}}, +{"id":73137,"name":"Stormbinder Idol of Destruction","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73138,"name":"Stormbinder Ring of Destruction","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73139,"name":"Stormbinder Band of Destruction","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34},"isBase":true}}}, +{"id":73140,"name":"Stormbinder Stone of Destruction","icon":"inv_jewelcrafting_livingruby_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73141,"name":"Stormbinder Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73142,"name":"Stormbinder Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73143,"name":"Stormbinder Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":73144,"name":"Stormbinder Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":73145,"name":"Stormbinder Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":73146,"name":"Beastsoul Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73147,"name":"Beastsoul Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":73148,"name":"Beastsoul Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":73149,"name":"Beastsoul Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":38,"7":26},"isBase":true}}}, +{"id":73150,"name":"Beastsoul Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":85},"isBase":true}}}, +{"id":73151,"name":"Ebonsoul Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73152,"name":"Ebonsoul Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73153,"name":"Ebonsoul Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"7":38,"11":26},"isBase":true}}}, +{"id":73154,"name":"Ebonsoul Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":85},"isBase":true}}}, +{"id":73155,"name":"Ebonsoul Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"6":85},"isBase":true}}}, +{"id":73156,"name":"Ebonsoul Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73157,"name":"Ebonsoul Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73158,"name":"Ebonsoul Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":26,"11":38},"isBase":true}}}, +{"id":73159,"name":"Ebonsoul Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73160,"name":"Ebonsoul Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73161,"name":"Valiant Pendant","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73162,"name":"Valiant Band of Might","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34},"isBase":true}}}, +{"id":73163,"name":"Valiant Ring of Might","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,38,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"7":38,"11":26},"isBase":true}}}, +{"id":73164,"name":"Valiant Stone of Battle","icon":"inv_jewelcrafting_nightseye_03","type":12,"stats":[85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"0":85},"isBase":true}}}, +{"id":73165,"name":"Valiant Idol of Battle","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"6":85},"isBase":true}}}, +{"id":73166,"name":"Valiant Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73167,"name":"Valiant Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73168,"name":"Valiant Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[50,0,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":73169,"name":"Valiant Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[50,0,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":26,"11":38},"isBase":true}}}, +{"id":73170,"name":"Valiant Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":73306,"name":"Wildsoul Cloak of Rage","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":34,"7":34,"22":408},"isBase":true}}}, +{"id":73307,"name":"Wildsoul Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":408},"isBase":true}}}, +{"id":73308,"name":"Wildsoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[1],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34,"22":408},"isBase":true}}}, +{"id":73309,"name":"Valiant Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"11":34,"22":408},"isBase":true}}}, +{"id":73310,"name":"Valiant Cloak of Battle","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[9],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34,"22":408},"isBase":true}}}, +{"id":73311,"name":"Stormbinder Cloak of Rage","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":34,"7":34,"22":408},"isBase":true}}}, +{"id":73312,"name":"Stormbinder Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":408},"isBase":true}}}, +{"id":73313,"name":"Stormbinder Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[7],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34,"22":408},"isBase":true}}}, +{"id":73314,"name":"Beastsoul Cloak of Rage","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[2],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":34,"7":34,"22":408},"isBase":true}}}, +{"id":73315,"name":"Ebonsoul Cloak of Battle","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34,"22":408},"isBase":true}}}, +{"id":73316,"name":"Ebonsoul Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[10],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"11":34,"22":408},"isBase":true}}}, +{"id":73317,"name":"Zealous Cloak of Battle","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"6":34,"11":34,"22":408},"isBase":true}}}, +{"id":73318,"name":"Zealous Cloak of Stoicism","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[50,0,76,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"0":50,"2":76,"9":34,"11":34,"22":408},"isBase":true}}}, +{"id":73319,"name":"Zealous Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[4],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":408},"isBase":true}}}, +{"id":73320,"name":"Shadowstalking Cloak of Rage","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[6],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":34,"7":34,"22":408},"isBase":true}}}, +{"id":73321,"name":"Seraphic Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":408},"isBase":true}}}, +{"id":73322,"name":"Seraphic Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34,"22":408},"isBase":true}}}, +{"id":73323,"name":"Magesoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34,"22":408},"isBase":true}}}, +{"id":73324,"name":"Dreadsoul Cloak of Destruction","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"7":34,"11":34,"22":408},"isBase":true}}}, +{"id":73325,"name":"Magesoul Wand","icon":"inv_wand_05","type":14,"rangedWeaponType":6,"stats":[0,0,58,39,0,0,26,26,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":1.7,"ilvl":232,"quality":2,"classAllowlist":[3],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"stats":{"2":58,"3":39,"6":26,"7":26,"14":520},"isBase":true}}}, +{"id":73326,"name":"Dreadsoul Wand","icon":"inv_wand_06","type":14,"rangedWeaponType":6,"stats":[0,0,58,39,0,0,26,26,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":1.7,"ilvl":232,"quality":2,"classAllowlist":[8],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"stats":{"2":58,"3":39,"6":26,"7":26,"14":520},"isBase":true}}}, +{"id":73336,"name":"Seraphic Wand","icon":"inv_wand_04","type":14,"rangedWeaponType":6,"stats":[0,0,58,39,0,0,26,26,0,0,0,0,0,0,520,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"weaponSpeed":1.7,"ilvl":232,"quality":2,"classAllowlist":[5],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":152,"weaponDamageMax":283,"stats":{"2":58,"3":39,"6":26,"7":26,"14":520},"isBase":true}}}, +{"id":75065,"name":"Vicious Embersilk Cape","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,0,237,158,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"11":105,"16":105,"22":576},"isBase":true}}}, +{"id":75067,"name":"Vicious Sapphire Ring","icon":"inv_jewelry_ring_79","type":11,"stats":[0,158,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":105,"16":105},"isBase":true}}}, +{"id":75068,"name":"Vicious Amberjewel Band","icon":"inv_jewelry_ring_79","type":11,"stats":[0,0,237,158,105,0,0,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"4":105,"16":105},"isBase":true}}}, +{"id":75071,"name":"Vicious Ruby Signet","icon":"inv_jewelry_ring_79","type":11,"stats":[158,0,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"6":105,"16":105},"isBase":true}}}, +{"id":75074,"name":"Vicious Sapphire Necklace","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,158,237,0,0,0,0,0,105,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"8":105,"16":105},"isBase":true}}}, +{"id":75075,"name":"Vicious Amberjewel Pendant","icon":"inv_jewelry_necklace_44","type":2,"stats":[0,0,237,158,0,0,0,105,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"2":237,"3":158,"7":105,"16":105},"isBase":true}}}, +{"id":75076,"name":"Vicious Fur Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[0,158,237,0,0,0,105,0,0,0,0,0,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"1":158,"2":237,"6":105,"16":105,"22":576},"isBase":true}}}, +{"id":75077,"name":"Vicious Hide Cloak","icon":"inv_misc_cape_16","type":4,"armorType":1,"stats":[158,0,237,0,0,0,0,0,0,0,0,105,0,0,0,0,105,0,0,0,0,0,576,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"11":105,"16":105,"22":576},"isBase":true}}}, +{"id":75078,"name":"Vicious Ruby Choker","icon":"inv_jewelry_necklace_44","type":2,"stats":[158,0,237,0,0,0,0,0,105,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":300,"ilvl":339,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"339":{"randPropPoints":300,"stats":{"0":158,"2":237,"8":105,"16":105},"isBase":true}}}, +{"id":81703,"name":"Glorenzelg, High-Blade of the Silver Hand","icon":"inv_sword_153","type":13,"weaponType":9,"handType":4,"stats":[157,0,259,0,0,0,115,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[2,2],"socketBonus":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"weaponSpeed":3.6,"ilvl":271,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"271":{"randPropPoints":329,"weaponDamageMin":1734,"weaponDamageMax":2602,"stats":{"0":157,"2":259,"6":115,"8":99},"isBase":true}}}, +{"id":81709,"name":"Belt of Broken Bones","icon":"inv_belt_62","type":8,"armorType":4,"stats":[120,0,157,0,0,0,0,0,0,79,63,0,0,0,0,0,0,0,0,0,0,0,1484,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":120,"2":157,"9":79,"10":63,"22":1484},"isBase":true}}}, +{"id":81710,"name":"Grinning Skull Greatboots","icon":"inv_boots_plate_12","type":10,"armorType":4,"stats":[92,0,157,0,0,0,0,0,53,112,0,0,0,0,0,0,0,0,0,0,0,0,1814,0,0,0,0],"gemSockets":[4,3],"socketBonus":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":264,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"264":{"randPropPoints":229,"stats":{"0":92,"2":157,"8":53,"9":112,"22":1814},"isBase":true}}}, +{"id":81966,"name":"Stitched Cord","icon":"inv_belt_cloth_panda_b_02_white","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,724,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":724},"isBase":true}}}, +{"id":81967,"name":"Stitched Shoulderpads","icon":"inv_shoulder_cloth_panda_b_02_white","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,965,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":965},"isBase":true}}}, +{"id":81968,"name":"Stitched Leggings","icon":"inv_pants_cloth_panda_b_02_white","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1126,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1126},"isBase":true}}}, +{"id":81969,"name":"Stitched Cowl","icon":"inv_helmet_cloth_panda_b_02_white","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1046},"isBase":true}}}, +{"id":81970,"name":"Stitched Handwraps","icon":"inv_gauntlets_cloth_panda_b_02_white","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,804,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":804},"isBase":true}}}, +{"id":81971,"name":"Stitched Sandals","icon":"inv_boots_cloth_panda_b_02_white","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,885,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":885},"isBase":true}}}, +{"id":81972,"name":"Stitched Robe","icon":"inv_chest_cloth_panda_b_02_white","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1287},"isBase":true}}}, +{"id":81973,"name":"Stitched Wristwraps","icon":"inv_bracer_cloth_panda_b_02_white","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,563,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":563},"isBase":true}}}, +{"id":81974,"name":"Silent Waistband","icon":"inv_belt_leather_panda_b_02_brown","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":961},"isBase":true}}}, +{"id":81975,"name":"Silent Shoulders","icon":"inv_shoulder_leather_panda_b_02_brown","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1281,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1281},"isBase":true}}}, +{"id":81976,"name":"Silent Britches","icon":"inv_pants_leather_panda_b_02_brown","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1494},"isBase":true}}}, +{"id":81977,"name":"Silent Hood","icon":"inv_helm_leather_panda_b_02_brown","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1388},"isBase":true}}}, +{"id":81978,"name":"Silent Gloves","icon":"inv_glove_leather_panda_b_02_brown","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1067},"isBase":true}}}, +{"id":81979,"name":"Silent Boots","icon":"inv_boots_leather_panda_b_02_brown","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1174,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1174},"isBase":true}}}, +{"id":81980,"name":"Silent Jerkin","icon":"inv_chest_leather_panda_b_02_brown","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1708,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":1708},"isBase":true}}}, +{"id":81981,"name":"Silent Bindings","icon":"inv_bracer_leather_panda_b_02_brown","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":747},"isBase":true}}}, +{"id":81982,"name":"Saurok Belt","icon":"inv_belt_mail_panda_b_02","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1393,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1393},"isBase":true}}}, +{"id":81983,"name":"Saurok Spaulders","icon":"inv_shoulder_mail_panda_b_02","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1858,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1858},"isBase":true}}}, +{"id":81984,"name":"Saurok Legguards","icon":"inv_pants_mail_panda_b_02","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2167,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":2167},"isBase":true}}}, +{"id":81985,"name":"Saurok Helm","icon":"inv_helmet_mail_panda_b_02","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2012,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":2012},"isBase":true}}}, +{"id":81986,"name":"Saurok Gauntlets","icon":"inv_gloves_mail_panda_b_02","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1548,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1548},"isBase":true}}}, +{"id":81987,"name":"Saurok Greaves","icon":"inv_boots_mail_panda_b_02","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1703,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1703},"isBase":true}}}, +{"id":81988,"name":"Saurok Vest","icon":"inv_chest_mail_panda_b_02","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2477,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":2477},"isBase":true}}}, +{"id":81989,"name":"Saurok Bracers","icon":"inv_bracer_81","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1084,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-91,-131,-132,-133,-134,-135,-136,-137],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":1084},"isBase":true}}}, +{"id":81990,"name":"Wall Girdle","icon":"inv_belt_plate_panda_b_01gold","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1956,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":1956},"isBase":true}}}, +{"id":81991,"name":"Wall Pauldrons","icon":"inv_shoulder_plate_panda_b_01gold","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":2607},"isBase":true}}}, +{"id":81992,"name":"Wall Legplates","icon":"inv_pant_plate_panda_b_01gold","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3042,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":3042},"isBase":true}}}, +{"id":81993,"name":"Wall Helm","icon":"inv_helm_plate_panda_b_01gold","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":2825},"isBase":true}}}, +{"id":81994,"name":"Wall Gauntlets","icon":"inv_glove_plate_panda_b_01gold","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2173,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":2173},"isBase":true}}}, +{"id":81995,"name":"Wall Sabatons","icon":"inv_boot_plate_panda_b_01gold","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2390,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":505,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":505,"stats":{"22":2390},"isBase":true}}}, +{"id":81996,"name":"Wall Breastplate","icon":"inv_chest_plate_panda_b_01gold","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3476,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":680,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"stats":{"22":3476},"isBase":true}}}, +{"id":81997,"name":"Wall Vambraces","icon":"inv_bracer_plate_panda_b_01gold","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":1521},"isBase":true}}}, +{"id":81998,"name":"Intricate Wand","icon":"inv_wand_1h_pandariaquest_b_01","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"weaponSpeed":1.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"stats":{"14":2045},"isBase":true}}}, +{"id":82000,"name":"Polished Greatsword","icon":"inv_sword_2h_pandariaquest_b_01","type":13,"weaponType":9,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"isBase":true}}}, +{"id":82001,"name":"Polished Sword","icon":"inv_sword_1h_pandariaquest_b_04","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"weaponSpeed":2.6,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"isBase":true}}}, +{"id":82002,"name":"Polished Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2048,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":680,"weaponDamageMin":1828,"weaponDamageMax":2743,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":1828,"weaponDamageMax":2743,"stats":{"14":2048},"isBase":true}}}, +{"id":82003,"name":"Intricate Spellblade","icon":"inv_knife_1h_pandariaquest_b_03","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"weaponSpeed":1.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"stats":{"14":2045},"isBase":true}}}, +{"id":82004,"name":"Wall Shield","icon":"inv_shield_cataclysm_b_01","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11974,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-7,-8,-14,-36,-37,-39,-41,-42,-43,-45,-118,-120,-121,-122,-123,-124,-125,-127,-128,-131,-132,-139],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":11974},"isBase":true}}}, +{"id":82005,"name":"Intricate Ring","icon":"inv_misc_starring3","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"isBase":true}}}, +{"id":82006,"name":"Polished Spear","icon":"inv_polearm_2h_pandariaquest_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"isBase":true}}}, +{"id":82007,"name":"Intricate Amulet","icon":"inv_misc_necklacea6","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"isBase":true}}}, +{"id":82008,"name":"Polished Hammer","icon":"inv_mace_2h_pandariaquest_b_01","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"isBase":true}}}, +{"id":82009,"name":"Polished Mace","icon":"inv_mace_1h_pandariaquest_b_01","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"weaponSpeed":2.6,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"isBase":true}}}, +{"id":82010,"name":"Intricate Crystal","icon":"inv_datacrystal05","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-41,-42,-113,-129,-130,-131,-132,-138],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"isBase":true}}}, +{"id":82011,"name":"Intricate Scepter","icon":"inv_mace_1h_pandariaquest_b_02","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,2045,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-6,-8,-36,-37,-39,-42,-130,-131,-132,-138],"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"weaponSpeed":1.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":576,"weaponDamageMax":1070,"stats":{"14":2045},"isBase":true}}}, +{"id":82012,"name":"Polished Gun","icon":"inv_firearm_2h_rifle_pandariaquest_b_01","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"weaponSpeed":2.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"isBase":true}}}, +{"id":82013,"name":"Polished Knuckles","icon":"inv_hand_1h_pandariaquest_b_01","type":13,"weaponType":3,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"weaponSpeed":2.6,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"isBase":true}}}, +{"id":82014,"name":"Polished Staff","icon":"inv_staff_2h_pandariaquest_b_03","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"isBase":true}}}, +{"id":82015,"name":"Polished Dagger","icon":"inv_knife_1h_pandariaquest_b_02","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-40,-41,-91,-133,-134,-135,-136,-137],"randPropPoints":291,"weaponDamageMin":1152,"weaponDamageMax":2141,"weaponSpeed":1.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":1152,"weaponDamageMax":2141,"isBase":true}}}, +{"id":82016,"name":"Polished Crossbow","icon":"inv_bow_2h_crossbow_pandariaquest_b_01","type":14,"rangedWeaponType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"weaponSpeed":2.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"isBase":true}}}, +{"id":82017,"name":"Intricate Cloak","icon":"inv_misc_cape_cataclysm_caster_b_01","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,643,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-6,-7,-8,-14,-36,-37,-39,-40,-41,-42,-43,-45,-91,-113,-118,-120,-121,-122,-123,-124,-125,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139],"randPropPoints":379,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":379,"stats":{"22":643},"isBase":true}}}, +{"id":82018,"name":"Polished Bow","icon":"inv_bow_1h_pandariaquest_b_01","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"weaponSpeed":2.7,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":2468,"weaponDamageMax":4585,"isBase":true}}}, +{"id":82019,"name":"Polished Broadaxe","icon":"inv_axe_2h_pandariaquest_b_01","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"weaponSpeed":3.5,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":680,"weaponDamageMin":3657,"weaponDamageMax":5486,"isBase":true}}}, +{"id":82020,"name":"Polished Axe","icon":"inv_axe_1h_pandariaquest_b_01","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randomSuffixOptions":[-5,-7,-14,-40,-41,-43,-91,-118,-120,-121,-122,-123,-133,-134,-135,-136,-137,-139],"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"weaponSpeed":2.6,"ilvl":364,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"364":{"randPropPoints":291,"weaponDamageMin":1763,"weaponDamageMax":3274,"isBase":true}}}, +{"id":85428,"name":"Gold Ulduar Sword","icon":"inv_sword_136","type":13,"weaponType":9,"handType":4,"stats":[106,0,159,0,0,62,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":202,"weaponDamageMin":981,"weaponDamageMax":1473,"weaponSpeed":3.4,"ilvl":219,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"219":{"randPropPoints":202,"weaponDamageMin":981,"weaponDamageMax":1473,"stats":{"0":106,"2":159,"5":62,"6":76},"isBase":true}}}, +{"id":85588,"name":"Reflex Edges","icon":"inv_weapon_hand_08","type":13,"weaponType":3,"handType":3,"stats":[0,0,13,0,0,16,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"weaponSpeed":2.7,"ilvl":115,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"115":{"randPropPoints":27,"weaponDamageMin":166,"weaponDamageMax":309,"stats":{"2":13,"5":16,"12":32,"13":32},"isBase":true}}}, +{"id":86510,"name":"Robe Model","icon":"inv_chest_cloth_49","type":5,"armorType":1,"stats":[0,0,66,35,0,23,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,498,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":88,"ilvl":130,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"130":{"randPropPoints":88,"stats":{"2":66,"3":35,"5":23,"6":35,"22":498},"isBase":true}}}, +{"id":87561,"name":"Silver Inlaid Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,302,454,0,0,0,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2915,"weaponDamageMax":4374,"weaponSpeed":3.3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2915,"weaponDamageMax":4374,"stats":{"1":302,"2":454,"6":202,"7":202},"isBase":true}}}, +{"id":87562,"name":"Rosethorn Staff","icon":"inv_staff_113","type":13,"weaponType":8,"handType":4,"stats":[0,0,454,302,0,0,202,202,0,0,0,0,0,0,1732,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":575,"weaponDamageMin":2915,"weaponDamageMax":4374,"weaponSpeed":3.3,"ilvl":346,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"346":{"randPropPoints":575,"weaponDamageMin":2915,"weaponDamageMax":4374,"stats":{"2":454,"3":302,"6":202,"7":202,"14":1732},"isBase":true}}}, +{"id":87565,"name":"Key to the Planes","icon":"inv_misc_key_07","type":13,"weaponType":8,"handType":4,"stats":[0,0,343,229,0,153,0,153,0,0,0,0,0,0,1310,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":2204,"weaponDamageMax":3307,"weaponSpeed":3.3,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":2204,"weaponDamageMax":3307,"stats":{"2":343,"3":229,"5":153,"7":153,"14":1310},"isBase":true}}}, +{"id":87566,"name":"Runed Staff","icon":"inv_staff_goldfeathered_01","type":13,"weaponType":8,"handType":4,"stats":[0,229,343,0,0,153,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":435,"weaponDamageMin":2204,"weaponDamageMax":3307,"weaponSpeed":3.3,"ilvl":316,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"316":{"randPropPoints":435,"weaponDamageMin":2204,"weaponDamageMax":3307,"stats":{"1":229,"2":343,"5":153,"8":153},"isBase":true}}}, +{"id":88181,"name":"Gladiator's Chain Armor","icon":"inv_chest_mail_pvphunter_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"16":213,"22":2373},"isBase":true}}}, +{"id":88182,"name":"Gladiator's Chain Gauntlets","icon":"inv_glove_mail_pvphunter_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"16":158,"22":1483},"isBase":true}}}, +{"id":88183,"name":"Gladiator's Chain Helm","icon":"inv_helm_mail_pvphunter_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"11":153,"16":213,"22":1928},"isBase":true}}}, +{"id":88184,"name":"Gladiator's Chain Leggings","icon":"inv_pant_mail_pvphunter_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"7":173,"16":213,"22":2076},"isBase":true}}}, +{"id":88185,"name":"Gladiator's Chain Spaulders","icon":"inv_shoulder_mail_pvphunter_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[2],"setName":"Gladiator's Pursuit","setId":1108,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"7":138,"16":158,"22":1779},"isBase":true}}}, +{"id":88186,"name":"Gladiator's Dragonhide Gloves","icon":"inv_gauntlets_06","type":7,"armorType":2,"stats":[0,218,357,0,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"6":138,"16":158,"22":1010},"isBase":true}}}, +{"id":88187,"name":"Gladiator's Dragonhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"11":153,"16":213,"22":1313},"isBase":true}}}, +{"id":88188,"name":"Gladiator's Dragonhide Legguards","icon":"inv_pants_mail_07","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"7":173,"16":213,"22":1414},"isBase":true}}}, +{"id":88189,"name":"Gladiator's Dragonhide Robes","icon":"inv_chest_leather_03","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"16":213,"22":1616},"isBase":true}}}, +{"id":88190,"name":"Gladiator's Dragonhide Spaulders","icon":"inv_shoulder_78","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Sanctuary","setId":1106,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"8":138,"16":158,"22":1212},"isBase":true}}}, +{"id":88191,"name":"Gladiator's Dreadplate Chestpiece","icon":"inv_chest_plate_pvpdeathknight_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"16":213,"22":3357},"isBase":true}}}, +{"id":88192,"name":"Gladiator's Dreadplate Gauntlets","icon":"inv_gauntlets_plate_pvpdeathknight_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"16":158,"22":2098},"isBase":true}}}, +{"id":88193,"name":"Gladiator's Dreadplate Helm","icon":"inv_helm_plate_pvpdeathknight_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"11":153,"16":213,"22":2727},"isBase":true}}}, +{"id":88194,"name":"Gladiator's Dreadplate Legguards","icon":"inv_pants_plate_pvpdeathknight_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"7":173,"16":213,"22":2937},"isBase":true}}}, +{"id":88195,"name":"Gladiator's Dreadplate Shoulders","icon":"inv_shoulder_plate_pvpdeathknight_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[10],"setName":"Gladiator's Desecration","setId":1104,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"8":138,"16":158,"22":2517},"isBase":true}}}, +{"id":88196,"name":"Gladiator's Felweave Amice","icon":"inv_shoulder_cloth_pvpwarlock_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"11":138,"16":158,"22":901},"isBase":true}}}, +{"id":88197,"name":"Gladiator's Felweave Cowl","icon":"inv_helmet_cloth_pvpwarlock_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":976},"isBase":true}}}, +{"id":88198,"name":"Gladiator's Felweave Handguards","icon":"inv_gauntlets_cloth_pvpwarlock_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"16":158,"22":751},"isBase":true}}}, +{"id":88199,"name":"Gladiator's Felweave Raiment","icon":"inv_chest_cloth_pvpwarlock_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1201},"isBase":true}}}, +{"id":88200,"name":"Gladiator's Felweave Trousers","icon":"inv_pants_cloth_pvpwarlock_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[8],"setName":"Gladiator's Felshroud","setId":1117,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"16":213,"22":1051},"isBase":true}}}, +{"id":88201,"name":"Gladiator's Kodohide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":1010},"isBase":true}}}, +{"id":88202,"name":"Gladiator's Kodohide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":1313},"isBase":true}}}, +{"id":88203,"name":"Gladiator's Kodohide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1414},"isBase":true}}}, +{"id":88204,"name":"Gladiator's Kodohide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"16":213,"22":1616},"isBase":true}}}, +{"id":88205,"name":"Gladiator's Kodohide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,357,218,138,0,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Refuge","setId":1105,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"6":158,"22":1212},"isBase":true}}}, +{"id":88206,"name":"Gladiator's Leather Gloves","icon":"inv_glove_leather_pvprogue_c_01","type":7,"armorType":2,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"16":158,"22":1010},"isBase":true}}}, +{"id":88207,"name":"Gladiator's Leather Helm","icon":"inv_helmet_leather_pvprogue_c_01","type":1,"armorType":2,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"11":153,"16":213,"22":1313},"isBase":true}}}, +{"id":88208,"name":"Gladiator's Leather Legguards","icon":"inv_pants_leather_pvprogue_c_01","type":9,"armorType":2,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"7":173,"16":213,"22":1414},"isBase":true}}}, +{"id":88209,"name":"Gladiator's Leather Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"8":138,"16":158,"22":1212},"isBase":true}}}, +{"id":88210,"name":"Gladiator's Leather Tunic","icon":"inv_chest_leather_24","type":5,"armorType":2,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[6],"setName":"Gladiator's Vestments","setId":1113,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"16":213,"22":1616},"isBase":true}}}, +{"id":88211,"name":"Gladiator's Linked Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,280,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"6":173,"16":213,"22":2373},"isBase":true}}}, +{"id":88212,"name":"Gladiator's Linked Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,218,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"5":138,"16":158,"22":1483},"isBase":true}}}, +{"id":88213,"name":"Gladiator's Linked Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,260,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":260,"2":480,"11":153,"16":213,"22":1928},"isBase":true}}}, +{"id":88214,"name":"Gladiator's Linked Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,280,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"1":280,"2":480,"7":173,"16":213,"22":2076},"isBase":true}}}, +{"id":88215,"name":"Gladiator's Linked Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,218,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Earthshaker","setId":1115,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"1":218,"2":357,"8":138,"16":158,"22":1779},"isBase":true}}}, +{"id":88216,"name":"Gladiator's Mail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":2373},"isBase":true}}}, +{"id":88217,"name":"Gladiator's Mail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"16":158,"22":1483},"isBase":true}}}, +{"id":88218,"name":"Gladiator's Mail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"16":213,"22":1928},"isBase":true}}}, +{"id":88219,"name":"Gladiator's Mail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"11":173,"16":213,"22":2076},"isBase":true}}}, +{"id":88220,"name":"Gladiator's Mail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Thunderfist","setId":1116,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":1779},"isBase":true}}}, +{"id":88221,"name":"Gladiator's Mooncloth Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":751},"isBase":true}}}, +{"id":88222,"name":"Gladiator's Mooncloth Helm","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":976},"isBase":true}}}, +{"id":88223,"name":"Gladiator's Mooncloth Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1051},"isBase":true}}}, +{"id":88224,"name":"Gladiator's Mooncloth Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"16":158,"22":901},"isBase":true}}}, +{"id":88225,"name":"Gladiator's Mooncloth Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Investiture","setId":1112,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"16":213,"22":1201},"isBase":true}}}, +{"id":88226,"name":"Gladiator's Ornamented Chestguard","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"16":213,"22":3357},"isBase":true}}}, +{"id":88227,"name":"Gladiator's Ornamented Gloves","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":2098},"isBase":true}}}, +{"id":88228,"name":"Gladiator's Ornamented Headcover","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":2727},"isBase":true}}}, +{"id":88229,"name":"Gladiator's Ornamented Legplates","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":2937},"isBase":true}}}, +{"id":88230,"name":"Gladiator's Ornamented Spaulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Redemption","setId":1110,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"16":158,"22":2517},"isBase":true}}}, +{"id":88231,"name":"Gladiator's Plate Chestpiece","icon":"inv_chest_plate_pvpwarrior_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"16":213,"22":3357},"isBase":true}}}, +{"id":88232,"name":"Gladiator's Plate Gauntlets","icon":"inv_glove_plate_pvpwarrior_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"16":158,"22":2098},"isBase":true}}}, +{"id":88233,"name":"Gladiator's Plate Helm","icon":"inv_helm_plate_pvpwarrior_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"11":153,"16":213,"22":2727},"isBase":true}}}, +{"id":88234,"name":"Gladiator's Plate Legguards","icon":"inv_pants_plate_pvpwarrior_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"7":173,"16":213,"22":2937},"isBase":true}}}, +{"id":88235,"name":"Gladiator's Plate Shoulders","icon":"inv_shoulder_plate_pvpwarrior_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[9],"setName":"Gladiator's Battlegear","setId":1118,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"8":138,"16":158,"22":2517},"isBase":true}}}, +{"id":88236,"name":"Gladiator's Ringmail Armor","icon":"inv_chest_mail_pvpshaman_c_01","type":5,"armorType":3,"stats":[0,0,480,280,173,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2373,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"4":173,"16":213,"22":2373},"isBase":true}}}, +{"id":88237,"name":"Gladiator's Ringmail Gauntlets","icon":"inv_gauntlets_mail_pvpshaman_c_01","type":7,"armorType":3,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1483,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":1483},"isBase":true}}}, +{"id":88238,"name":"Gladiator's Ringmail Helm","icon":"inv_helmet_mail_pvpshaman_c_01","type":1,"armorType":3,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,1928,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":1928},"isBase":true}}}, +{"id":88239,"name":"Gladiator's Ringmail Leggings","icon":"inv_pants_mail_pvpshaman_c_01","type":9,"armorType":3,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2076,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":2076},"isBase":true}}}, +{"id":88240,"name":"Gladiator's Ringmail Spaulders","icon":"inv_shoulder_mail_pvpshaman_c_01","type":3,"armorType":3,"stats":[0,0,357,218,138,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1779,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[7],"setName":"Gladiator's Wartide","setId":1114,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"4":138,"16":158,"22":1779},"isBase":true}}}, +{"id":88241,"name":"Gladiator's Satin Gloves","icon":"inv_gauntlets_robe_pvppriest_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"16":158,"22":751},"isBase":true}}}, +{"id":88242,"name":"Gladiator's Satin Hood","icon":"inv_helm_robe_pvppriest_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"16":213,"22":976},"isBase":true}}}, +{"id":88243,"name":"Gladiator's Satin Leggings","icon":"inv_pants_robe_pvppriest_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"11":173,"16":213,"22":1051},"isBase":true}}}, +{"id":88244,"name":"Gladiator's Satin Mantle","icon":"inv_shoulder_robe_pvppriest_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":901},"isBase":true}}}, +{"id":88245,"name":"Gladiator's Satin Robe","icon":"inv_chest_robe_pvppriest_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[5],"setName":"Gladiator's Raiment","setId":1146,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1201},"isBase":true}}}, +{"id":88246,"name":"Gladiator's Scaled Chestpiece","icon":"inv_chest_plate_pvppaladin_c_01","type":5,"armorType":4,"stats":[280,0,480,0,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,3357,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"6":173,"16":213,"22":3357},"isBase":true}}}, +{"id":88247,"name":"Gladiator's Scaled Gauntlets","icon":"inv_glove_plate_pvppaladin_c_01","type":7,"armorType":4,"stats":[218,0,357,0,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,2098,0,0,0,0],"gemSockets":[3],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"5":138,"16":158,"22":2098},"isBase":true}}}, +{"id":88248,"name":"Gladiator's Scaled Helm","icon":"inv_helm_plate_pvppaladin_c_01","type":1,"armorType":4,"stats":[260,0,480,0,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,2727,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":260,"2":480,"11":153,"16":213,"22":2727},"isBase":true}}}, +{"id":88249,"name":"Gladiator's Scaled Legguards","icon":"inv_pants_plate_pvppaladin_c_01","type":9,"armorType":4,"stats":[280,0,480,0,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,2937,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"0":280,"2":480,"7":173,"16":213,"22":2937},"isBase":true}}}, +{"id":88250,"name":"Gladiator's Scaled Shoulders","icon":"inv_shoulder_plate_pvppaladin_c_01","type":3,"armorType":4,"stats":[218,0,357,0,0,0,0,0,138,0,0,0,0,0,0,0,158,0,0,0,0,0,2517,0,0,0,0],"gemSockets":[4],"socketBonus":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[4],"setName":"Gladiator's Vindication","setId":1111,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"0":218,"2":357,"8":138,"16":158,"22":2517},"isBase":true}}}, +{"id":88251,"name":"Gladiator's Silk Amice","icon":"inv_shoulder_cloth_pvpmage_c_01","type":3,"armorType":1,"stats":[0,0,357,218,0,0,0,0,0,0,0,138,0,0,0,0,158,0,0,0,0,0,901,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"11":138,"16":158,"22":901},"isBase":true}}}, +{"id":88252,"name":"Gladiator's Silk Cowl","icon":"inv_helm_cloth_pvpmage_c_01","type":1,"armorType":1,"stats":[0,0,480,260,0,0,0,0,0,0,0,153,0,0,0,0,213,0,0,0,0,0,976,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"11":153,"16":213,"22":976},"isBase":true}}}, +{"id":88253,"name":"Gladiator's Silk Handguards","icon":"inv_gauntlets_cloth_pvpmage_c_01","type":7,"armorType":1,"stats":[0,0,357,218,0,138,0,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,751,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"5":138,"16":158,"22":751},"isBase":true}}}, +{"id":88254,"name":"Gladiator's Silk Robe","icon":"inv_chest_cloth_pvpmage_c_01","type":5,"armorType":1,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1201,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1201},"isBase":true}}}, +{"id":88255,"name":"Gladiator's Silk Trousers","icon":"inv_pants_cloth_pvpmage_c_01","type":9,"armorType":1,"stats":[0,0,480,280,0,0,0,173,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1051,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[3],"setName":"Gladiator's Regalia","setId":1109,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"7":173,"16":213,"22":1051},"isBase":true}}}, +{"id":88256,"name":"Gladiator's Wyrmhide Gloves","icon":"inv_gauntlets_25","type":7,"armorType":2,"stats":[0,0,357,218,0,0,138,0,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1010,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"6":138,"16":158,"22":1010},"isBase":true}}}, +{"id":88257,"name":"Gladiator's Wyrmhide Helm","icon":"inv_helmet_104","type":1,"armorType":2,"stats":[0,0,480,260,0,0,0,153,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1313,0,0,0,0],"gemSockets":[1,2],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":260,"7":153,"16":213,"22":1313},"isBase":true}}}, +{"id":88258,"name":"Gladiator's Wyrmhide Legguards","icon":"inv_pants_leather_13","type":9,"armorType":2,"stats":[0,0,480,280,0,0,0,0,0,0,0,173,0,0,0,0,213,0,0,0,0,0,1414,0,0,0,0],"gemSockets":[2,3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"11":173,"16":213,"22":1414},"isBase":true}}}, +{"id":88259,"name":"Gladiator's Wyrmhide Robes","icon":"inv_chest_cloth_15","type":5,"armorType":2,"stats":[0,0,480,280,0,0,173,0,0,0,0,0,0,0,0,0,213,0,0,0,0,0,1616,0,0,0,0],"gemSockets":[2,4],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"randPropPoints":608,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"352":{"randPropPoints":608,"stats":{"2":480,"3":280,"6":173,"16":213,"22":1616},"isBase":true}}}, +{"id":88260,"name":"Gladiator's Wyrmhide Spaulders","icon":"inv_shoulder_87","type":3,"armorType":2,"stats":[0,0,357,218,0,0,0,138,0,0,0,0,0,0,0,0,158,0,0,0,0,0,1212,0,0,0,0],"gemSockets":[4],"socketBonus":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":452,"ilvl":352,"quality":3,"classAllowlist":[1],"setName":"Gladiator's Wildhide","setId":1107,"scalingOptions":{"352":{"randPropPoints":452,"stats":{"2":357,"3":218,"7":138,"16":158,"22":1212},"isBase":true}}}, +{"id":88614,"name":"Monastic Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,136,91,53,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":53,"7":53,"22":1067},"isBase":true}}}, +{"id":88615,"name":"Monastic Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,101,67,0,0,39,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":39,"11":48,"22":733},"isBase":true}}}, +{"id":88616,"name":"Monastic Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,101,67,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"6":45,"7":45,"22":667},"isBase":true}}}, +{"id":88617,"name":"Monastic Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,136,91,53,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"4":53,"11":65,"22":867},"isBase":true}}}, +{"id":88618,"name":"Monastic Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,136,91,0,0,69,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"2":136,"3":91,"6":69,"11":46,"22":933},"isBase":true}}}, +{"id":88619,"name":"Monastic Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,101,67,39,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":39,"7":48,"22":800},"isBase":true}}}, +{"id":88620,"name":"Monastic Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,101,67,45,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":101,"3":67,"4":45,"7":45,"22":600},"isBase":true}}}, +{"id":88621,"name":"Monastic Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,76,50,0,0,36,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":36,"11":30,"22":467},"isBase":true}}}, +{"id":88622,"name":"Monastic Staff","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,0,136,91,53,0,0,65,0,0,0,0,0,0,521,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":399,"weaponDamageMax":599,"stats":{"2":136,"3":91,"4":53,"7":65,"14":521},"isBase":true}}}, +{"id":88623,"name":"Monastic Vest","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,91,136,0,0,0,53,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":53,"11":65,"22":1067},"isBase":true}}}, +{"id":88624,"name":"Monastic Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,67,101,0,0,34,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,733,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"5":34,"7":51,"22":733},"isBase":true}}}, +{"id":88625,"name":"Monastic Handguards","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,67,101,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,667,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"5":45,"6":45,"22":667},"isBase":true}}}, +{"id":88626,"name":"Monastic Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,91,136,0,0,0,0,61,0,0,0,61,0,0,0,0,0,0,0,0,0,0,867,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"7":61,"11":61,"22":867},"isBase":true}}}, +{"id":88627,"name":"Monastic Legguards","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,91,136,0,0,0,69,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,933,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"stats":{"1":91,"2":136,"6":69,"8":46,"22":933},"isBase":true}}}, +{"id":88628,"name":"Monastic Pauldrons","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,67,101,0,0,0,0,51,34,0,0,0,0,0,0,0,0,0,0,0,0,0,800,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"7":51,"8":34,"22":800},"isBase":true}}}, +{"id":88629,"name":"Monastic Cord","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,67,101,0,0,0,34,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,600,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":67,"2":101,"6":34,"11":51,"22":600},"isBase":true}}}, +{"id":88630,"name":"Monastic Cuffs","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,50,76,0,0,38,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,467,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"5":38,"8":26,"22":467},"isBase":true}}}, +{"id":88631,"name":"Monastic Spear NOT USED","icon":"inv_spear_12","type":13,"weaponType":6,"handType":4,"stats":[0,91,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"stats":{"1":91,"2":136,"6":61,"11":61},"isBase":true}}}, +{"id":88632,"name":"Monastic Cloak of Wisdom","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,0,76,50,34,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"11":34,"22":408},"isBase":true}}}, +{"id":88633,"name":"Monastic Cloak of Rage","icon":"inv_misc_cape_10","type":4,"armorType":1,"stats":[0,50,76,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,408,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":34,"7":34,"22":408},"isBase":true}}}, +{"id":88634,"name":"Monastic Defender's Stone","icon":"inv_jewelcrafting_starofelune_03","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":88635,"name":"Monastic Amulet","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":88636,"name":"Monastic Defender's Idol","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"2":128},"isBase":true}}}, +{"id":88637,"name":"Monastic Band of Stoicism","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"9":34,"10":34},"isBase":true}}}, +{"id":88638,"name":"Monastic Ring of Stoicism","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,0,0,0,26,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"9":26,"11":38},"isBase":true}}}, +{"id":88639,"name":"Monastic Stone of Rage","icon":"inv_jewelcrafting_nobletopaz_03","type":12,"stats":[0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"1":85},"isBase":true}}}, +{"id":88640,"name":"Monastic Band of Onslaught","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":88641,"name":"Monastic Ring of Onslaught","icon":"inv_jewelry_ring_47","type":11,"stats":[0,50,76,0,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"6":38,"7":26},"isBase":true}}}, +{"id":88642,"name":"Monastic Idol of Rage","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":88643,"name":"Monastic Choker","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,50,76,0,0,0,0,34,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"1":50,"2":76,"7":34,"11":34},"isBase":true}}}, +{"id":88644,"name":"Monastic Stone of Wisdom","icon":"inv_jewelcrafting_talasite_03","type":12,"stats":[0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"3":85},"isBase":true}}}, +{"id":88645,"name":"Monastic Ring of Wisdom","icon":"inv_jewelry_ring_47","type":11,"stats":[0,0,76,50,0,0,38,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"6":38,"7":26},"isBase":true}}}, +{"id":88646,"name":"Monastic Band of Wisdom","icon":"inv_jewelry_ring_48naxxramas","type":11,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":88647,"name":"Monastic Idol of Wisdom","icon":"inv_qirajidol_sun","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":128,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":128,"stats":{"11":85},"isBase":true}}}, +{"id":88648,"name":"Monastic Spire","icon":"inv_staff_71","type":13,"weaponType":8,"handType":4,"stats":[0,91,136,0,0,0,61,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"weaponSpeed":3,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":173,"weaponDamageMin":798,"weaponDamageMax":1198,"stats":{"1":91,"2":136,"6":61,"11":61},"isBase":true}}}, +{"id":88649,"name":"Monastic Sword","icon":"inv_sword_41","type":13,"weaponType":9,"handType":2,"stats":[0,39,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"weaponSpeed":2.6,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"stats":{"1":39,"2":58,"6":26,"11":26},"isBase":true}}}, +{"id":88650,"name":"Monastic Sword NOT USED","icon":"inv_mace_69","type":13,"weaponType":9,"handType":2,"stats":[0,39,58,0,0,0,26,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"weaponSpeed":2.6,"ilvl":232,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"232":{"randPropPoints":74,"weaponDamageMin":465,"weaponDamageMax":865,"stats":{"1":39,"2":58,"6":26,"11":26},"isBase":true}}}, +{"id":88667,"name":"Monastic Necklace","icon":"inv_jewelry_amulet_02","type":2,"stats":[0,0,76,50,34,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":96,"ilvl":232,"quality":2,"classAllowlist":[11],"scalingOptions":{"232":{"randPropPoints":96,"stats":{"2":76,"3":50,"4":34,"7":34},"isBase":true}}}, +{"id":89567,"name":"Brown Belt of Precarious Balance","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,34,50,0,0,0,24,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":64,"stats":{"1":34,"2":50,"6":24,"7":20,"22":385},"isBase":true}}}, +{"id":89569,"name":"Brown Belt of Humbling Gravity","icon":"inv_belt_leather_panda_b_01","type":8,"armorType":2,"stats":[0,0,50,34,24,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":142,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"142":{"randPropPoints":64,"stats":{"2":50,"3":34,"4":24,"7":20,"22":385},"isBase":true}}}, +{"id":89574,"name":"Handwraps of Fallen Blossoms","icon":"inv_hand_1h_panstart_a_01","type":13,"weaponType":3,"handType":2,"stats":[0,17,25,0,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"weaponSpeed":2.6,"ilvl":142,"quality":2,"classAllowlist":[11],"scalingOptions":{"142":{"randPropPoints":32,"weaponDamageMin":212,"weaponDamageMax":394,"stats":{"1":17,"2":25,"6":11,"7":11},"isBase":true}}}, +{"id":89575,"name":"Handwraps of Serenity","icon":"inv_hand_1h_panstart_a_01","type":13,"weaponType":3,"handType":2,"stats":[0,76,114,0,0,0,51,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"weaponSpeed":2.6,"ilvl":289,"quality":2,"classAllowlist":[11],"scalingOptions":{"289":{"randPropPoints":145,"weaponDamageMin":891,"weaponDamageMax":1655,"stats":{"1":76,"2":114,"6":51,"7":51},"isBase":true}}}, +{"id":89576,"name":"Bladed Staff of the Frozen Mountain","icon":"inv_polearm_2h_pandaguard_a_01","type":13,"weaponType":6,"handType":4,"stats":[0,167,250,0,0,0,0,0,84,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"weaponSpeed":3.3,"ilvl":282,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"282":{"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"stats":{"1":167,"2":250,"8":84,"11":127},"isBase":true}}}, +{"id":89577,"name":"Bladed Staff of the Summit's Breeze","icon":"inv_polearm_2h_pandaguard_b_01","type":13,"weaponType":6,"handType":4,"stats":[0,0,250,167,90,0,0,0,0,0,0,124,0,0,955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"weaponSpeed":3.3,"ilvl":282,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"282":{"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"stats":{"2":250,"3":167,"4":90,"11":124,"14":955},"isBase":true}}}, +{"id":89578,"name":"Tiger Lord's Razor Claws","icon":"inv_weapon_hand_21","type":13,"weaponType":3,"handType":2,"stats":[0,72,107,0,0,0,0,0,37,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"weaponDamageMin":838,"weaponDamageMax":1558,"weaponSpeed":2.6,"ilvl":282,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"282":{"randPropPoints":136,"weaponDamageMin":838,"weaponDamageMax":1558,"stats":{"1":72,"2":107,"8":37,"11":54},"isBase":true}}}, +{"id":89579,"name":"Tiger Lord's Bladed Claws","icon":"inv_weapon_hand_21","type":13,"weaponType":3,"handType":2,"stats":[0,72,107,0,0,28,0,0,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":136,"weaponDamageMin":838,"weaponDamageMax":1558,"weaponSpeed":2.6,"ilvl":282,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"282":{"randPropPoints":136,"weaponDamageMin":838,"weaponDamageMax":1558,"stats":{"1":72,"2":107,"5":28,"11":52},"isBase":true}}}, +{"id":89585,"name":"Staff of Fallen Blossoms","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,59,39,26,0,26,0,0,0,0,0,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":75,"weaponDamageMin":200,"weaponDamageMax":300,"weaponSpeed":3.3,"ilvl":142,"quality":2,"classAllowlist":[11],"scalingOptions":{"142":{"randPropPoints":75,"weaponDamageMin":200,"weaponDamageMax":300,"stats":{"2":59,"3":39,"4":26,"6":26,"14":226},"isBase":true}}}, +{"id":89586,"name":"Staff of Serenity","icon":"inv_stave_2h_panprog_b_01","type":13,"weaponType":8,"handType":4,"stats":[0,0,267,178,119,0,119,0,0,0,0,0,0,0,1018,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":338,"weaponDamageMin":857,"weaponDamageMax":1286,"weaponSpeed":3.3,"ilvl":289,"quality":2,"classAllowlist":[11],"scalingOptions":{"289":{"randPropPoints":338,"weaponDamageMin":857,"weaponDamageMax":1286,"stats":{"2":267,"3":178,"4":119,"6":119,"14":1018},"isBase":true}}}, +{"id":89606,"name":"Bladed Staff of the Echoing Gong","icon":"inv_polearm_2h_pandaguard_a_01","type":13,"weaponType":6,"handType":4,"stats":[0,167,250,0,0,0,106,0,0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"weaponSpeed":3.3,"ilvl":282,"quality":3,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"282":{"randPropPoints":317,"weaponDamageMin":1595,"weaponDamageMax":2393,"stats":{"1":167,"2":250,"6":106,"11":114},"isBase":true}}}, +{"id":90188,"name":"Airship Gunner's Rifle","icon":"inv_weapon_crossbow_02","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2492,"weaponDamageMax":4629,"weaponSpeed":2.9,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":2492,"weaponDamageMax":4629,"isBase":true}}}, +{"id":90189,"name":"Parachute Cord Slicer","icon":"inv_mace_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1141,"weaponDamageMax":2119,"weaponSpeed":1.8,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1141,"weaponDamageMax":2119,"isBase":true}}}, +{"id":90190,"name":"Land Claimer's Cudgel","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90191,"name":"Staff of the Mist Navigator","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3241,"weaponDamageMax":4862,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3241,"weaponDamageMax":4862,"isBase":true}}}, +{"id":90192,"name":"Staff of Rolling Thunder","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1620,"weaponDamageMax":2431,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1620,"weaponDamageMax":2431,"isBase":true}}}, +{"id":90193,"name":"Stormcaller's Spellaxe","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":507,"weaponDamageMax":942,"weaponSpeed":1.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":507,"weaponDamageMax":942,"isBase":true}}}, +{"id":90194,"name":"Trench Medic's Staff","icon":"inv_staff_08","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1620,"weaponDamageMax":2431,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1620,"weaponDamageMax":2431,"isBase":true}}}, +{"id":90195,"name":"Shock Trooper's Battleaxe","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90196,"name":"Standard Bearer's War Cudgel","icon":"inv_staff_08","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3536,"weaponDamageMax":5304,"weaponSpeed":3.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3536,"weaponDamageMax":5304,"isBase":true}}}, +{"id":90197,"name":"Foe Flattening Warhammer","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90198,"name":"Axe of Aborted Deforestation","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90199,"name":"Scavenged Rotor Blade","icon":"inv_mace_10","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1141,"weaponDamageMax":2119,"weaponSpeed":1.8,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1141,"weaponDamageMax":2119,"isBase":true}}}, +{"id":90201,"name":"Extravagant Tree Chopper","icon":"inv_mace_10","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90202,"name":"Expropriator's Greataxe","icon":"inv_axe_106","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3536,"weaponDamageMax":5304,"weaponSpeed":3.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3536,"weaponDamageMax":5304,"isBase":true}}}, +{"id":90231,"name":"Peacebreaker's Leather Helm","icon":"inv_helmet_33","type":14,"rangedWeaponType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":2492,"weaponDamageMax":4629,"weaponSpeed":2.9,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":2492,"weaponDamageMax":4629,"isBase":true}}}, +{"id":90233,"name":"Peacebreaker's Silk Cowl","icon":"inv_helmet_33","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90236,"name":"Peacebreaker's Ringmail Helm","icon":"inv_helmet_33","type":13,"weaponType":1,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3536,"weaponDamageMax":5304,"weaponSpeed":3.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3536,"weaponDamageMax":5304,"isBase":true}}}, +{"id":90237,"name":"Peacebreaker's Burnished Headcover","icon":"inv_helmet_33","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90238,"name":"Peacebreaker's Armored Helm","icon":"inv_helmet_33","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90250,"name":"Axe of Aborted Deforestation","icon":"inv_mace_10","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90261,"name":"Ringmail Armor of Eminent Domain","icon":"inv_shirt_04","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1141,"weaponDamageMax":2119,"weaponSpeed":1.8,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1141,"weaponDamageMax":2119,"isBase":true}}}, +{"id":90273,"name":"Honorary Combat Engineer's Heavy Legplates","icon":"inv_pants_06","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1141,"weaponDamageMax":2119,"weaponSpeed":1.8,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"factionRestriction":1,"scalingOptions":{"372":{"weaponDamageMin":1141,"weaponDamageMax":2119,"isBase":true}}}, +{"id":90276,"name":"Landfall Silk Treads","icon":"inv_boots_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1648,"weaponDamageMax":3061,"weaponSpeed":2.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1648,"weaponDamageMax":3061,"isBase":true}}}, +{"id":90278,"name":"Landfall Moccasins","icon":"inv_boots_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1620,"weaponDamageMax":2431,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1620,"weaponDamageMax":2431,"isBase":true}}}, +{"id":90279,"name":"Landfall Sabatons","icon":"inv_boots_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3241,"weaponDamageMax":4862,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3241,"weaponDamageMax":4862,"isBase":true}}}, +{"id":90280,"name":"Landfall Burnished Greaves","icon":"inv_boots_09","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":3536,"weaponDamageMax":5304,"weaponSpeed":3.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":3536,"weaponDamageMax":5304,"isBase":true}}}, +{"id":90281,"name":"Landfall Warboots","icon":"inv_boots_09","type":13,"weaponType":1,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":507,"weaponDamageMax":942,"weaponSpeed":1.6,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":507,"weaponDamageMax":942,"isBase":true}}}, +{"id":90282,"name":"Landfall Plate Boots","icon":"inv_boots_09","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"weaponDamageMin":1620,"weaponDamageMax":2431,"weaponSpeed":3.3,"ilvl":372,"quality":1,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"372":{"weaponDamageMin":1620,"weaponDamageMax":2431,"isBase":true}}}, +{"id":92074,"name":"Martial Sword","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1553,"weaponDamageMax":2885,"weaponSpeed":2.4,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1553,"weaponDamageMax":2885,"stats":{"0":146,"2":219,"9":97,"10":97},"isBase":true}}}, +{"id":92075,"name":"Scourgeheart Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":145,"11":96,"22":1499},"isBase":true}}}, +{"id":92076,"name":"Scourgeheart Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"8":96,"10":145,"22":1499},"isBase":true}}}, +{"id":92077,"name":"Naturalist Bracers","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,0,286,190,0,145,0,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":145,"11":96,"22":730},"isBase":true}}}, +{"id":92078,"name":"Naturalist Cuffs","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,190,286,0,0,145,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":145,"8":96,"22":730},"isBase":true}}}, +{"id":92079,"name":"Forestwalker Bracers","icon":"inv_bracer_28b","type":6,"armorType":3,"stats":[0,190,286,0,0,136,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":136,"6":111,"22":1064},"isBase":true}}}, +{"id":92080,"name":"Naturalist Bindings","icon":"inv_bracer_82","type":6,"armorType":2,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":136,"11":111,"22":730},"isBase":true}}}, +{"id":92081,"name":"Enlightened Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":127,"6":127,"22":547},"isBase":true}}}, +{"id":92082,"name":"Partisan Armplates","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":136,"11":111,"22":1499},"isBase":true}}}, +{"id":92083,"name":"Partisan Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,145,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":145,"11":96,"22":1499},"isBase":true}}}, +{"id":92084,"name":"Partisan Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,136,111,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"10":136,"11":111,"22":1499},"isBase":true}}}, +{"id":92085,"name":"Deliverer Bindings","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,0,145,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"11":96,"22":547},"isBase":true}}}, +{"id":92086,"name":"Deliverer Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,136,0,0,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":136,"11":111,"22":547},"isBase":true}}}, +{"id":92087,"name":"Darkwalker Bindings","icon":"inv_bracer_13","type":6,"armorType":2,"stats":[0,190,286,0,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":145,"8":96,"22":730},"isBase":true}}}, +{"id":92088,"name":"Thundercaller Armbands","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96,"22":1064},"isBase":true}}}, +{"id":92089,"name":"Thundercaller Armguard","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,190,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":96,"11":145,"22":1064},"isBase":true}}}, +{"id":92090,"name":"Thundercaller Bracers","icon":"inv_bracer_mail_dungeonmail_c_03","type":6,"armorType":3,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,1064,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":1064},"isBase":true}}}, +{"id":92091,"name":"Martial Vambraces","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,96,0,0,0,145,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":96,"11":145,"22":1499},"isBase":true}}}, +{"id":92092,"name":"Soulseizer Wristwraps","icon":"inv_bracer_robe_dungeonrobe_c_03","type":6,"armorType":1,"stats":[0,0,286,190,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"7":127,"22":547},"isBase":true}}}, +{"id":92093,"name":"Martial Armguards","icon":"inv_bracer_plate_dungeonplate_c_03","type":6,"armorType":4,"stats":[190,0,286,0,0,0,0,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,1499,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"10":145,"11":96,"22":1499},"isBase":true}}}, +{"id":92094,"name":"Naturalist Cord","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":128,"11":193,"22":939},"isBase":true}}}, +{"id":92095,"name":"Forestwalker Belt","icon":"inv_belt_48c","type":8,"armorType":3,"stats":[0,253,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":148,"7":181,"22":1369},"isBase":true}}}, +{"id":92096,"name":"Naturalist Waistband","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":169,"7":169,"22":939},"isBase":true}}}, +{"id":92097,"name":"Enlightened Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"11":181,"22":704},"isBase":true}}}, +{"id":92098,"name":"Partisan Belt","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[0,0,380,253,0,0,0,148,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"7":148,"11":181,"22":1927},"isBase":true}}}, +{"id":92099,"name":"Partisan Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,128,0,0,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"7":128,"11":193,"22":1927},"isBase":true}}}, +{"id":92100,"name":"Partisan Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":169,"10":169,"22":1927},"isBase":true}}}, +{"id":92101,"name":"Deliverer Sash","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,0,0,148,0,0,0,181,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"7":148,"11":181,"22":704},"isBase":true}}}, +{"id":92102,"name":"Deliverer Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":169,"7":169,"22":704},"isBase":true}}}, +{"id":92103,"name":"Darkwalker Waistband","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":128,"11":193,"22":939},"isBase":true}}}, +{"id":92104,"name":"Thundercaller Belt","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,380,253,0,0,0,193,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"7":193,"11":128,"22":1369},"isBase":true}}}, +{"id":92105,"name":"Thundercaller Waistguard","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,253,380,0,0,0,128,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":128,"7":193,"22":1369},"isBase":true}}}, +{"id":92106,"name":"Thundercaller Girdle","icon":"inv_belt_mail_dungeonmail_c_03","type":8,"armorType":3,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1369,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":181,"7":148,"22":1369},"isBase":true}}}, +{"id":92107,"name":"Martial Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":128,"11":193,"22":1927},"isBase":true}}}, +{"id":92108,"name":"Soulseizer Cord","icon":"inv_belt_robe_dungeonrobe_c_03","type":8,"armorType":1,"stats":[0,0,380,253,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,704,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"5":181,"6":148,"22":704},"isBase":true}}}, +{"id":92109,"name":"Martial Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":128,"11":193,"22":1927},"isBase":true}}}, +{"id":92110,"name":"Scourgeheart Blade","icon":"inv_sword_1h_cataclysm_c_03","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"0":146,"2":219,"6":97,"11":97},"isBase":true}}}, +{"id":92111,"name":"Partisan Sword","icon":"inv_sword_1h_cataclysm_c_06","type":13,"weaponType":9,"handType":2,"stats":[146,0,219,0,0,0,0,0,0,97,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1553,"weaponDamageMax":2885,"weaponSpeed":2.4,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1553,"weaponDamageMax":2885,"stats":{"0":146,"2":219,"9":97,"10":97},"isBase":true}}}, +{"id":92112,"name":"Thundercaller Mace","icon":"inv_mace_1h_cataclysm_c_04","type":13,"weaponType":4,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"11":97},"isBase":true}}}, +{"id":92113,"name":"Deliverer Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92114,"name":"Partisan Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92115,"name":"Deliverer Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92116,"name":"Thundercaller Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92117,"name":"Darkwalker Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":92118,"name":"Darkwalker Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92119,"name":"Thundercaller Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92120,"name":"Thundercaller Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92121,"name":"Thundercaller Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":92122,"name":"Thundercaller Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92123,"name":"Thundercaller Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92124,"name":"Soulseizer Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92125,"name":"Soulseizer Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92126,"name":"Martial Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92127,"name":"Martial Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92128,"name":"Martial Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"6":321},"isBase":true}}}, +{"id":92129,"name":"Martial Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":321},"isBase":true}}}, +{"id":92130,"name":"Scourgeheart Girdle","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":148,"11":181,"22":1927},"isBase":true}}}, +{"id":92131,"name":"Scourgeheart Waistband","icon":"inv_belt_plate_dungeonplate_c_03","type":8,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,1927,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":193,"11":128,"22":1927},"isBase":true}}}, +{"id":92132,"name":"Naturalist Belt","icon":"inv_belt_103","type":8,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"11":181,"22":939},"isBase":true}}}, +{"id":92133,"name":"Naturalist Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92134,"name":"Scourgeheart Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92135,"name":"Scourgeheart Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92136,"name":"Naturalist Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92137,"name":"Naturalist Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92138,"name":"Naturalist Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":92139,"name":"Naturalist Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92140,"name":"Naturalist Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92141,"name":"Forestwalker Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":92142,"name":"Forestwalker Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92143,"name":"Enlightened Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92144,"name":"Enlightened Idol of Destruction","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92145,"name":"Partisan Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92146,"name":"Partisan Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92147,"name":"Partisan Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92148,"name":"Partisan Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"6":321},"isBase":true}}}, +{"id":92149,"name":"Partisan Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":321},"isBase":true}}}, +{"id":92150,"name":"Deliverer Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92151,"name":"Deliverer Stone of Destruction","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92152,"name":"Naturalist Pauldrons","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,253,380,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"7":193,"8":128,"22":1252},"isBase":true}}}, +{"id":92153,"name":"Forestwalker Spaulders","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,253,380,0,0,0,0,193,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"7":193,"11":128,"22":1825},"isBase":true}}}, +{"id":92154,"name":"Enlightened Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,193,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"5":193,"11":128,"22":938},"isBase":true}}}, +{"id":92155,"name":"Partisan Spaulders","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"11":169,"22":2570},"isBase":true}}}, +{"id":92156,"name":"Partisan Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":181,"7":148,"22":2570},"isBase":true}}}, +{"id":92157,"name":"Partisan Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"9":128,"11":193,"22":2570},"isBase":true}}}, +{"id":92158,"name":"Deliverer Mantle","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":193,"7":128,"22":938},"isBase":true}}}, +{"id":92159,"name":"Deliverer Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,193,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":193,"11":128,"22":938},"isBase":true}}}, +{"id":92160,"name":"Darkwalker Shoulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,253,380,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":169,"7":169,"22":1252},"isBase":true}}}, +{"id":92161,"name":"Thundercaller Pauldrons","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,380,253,0,0,193,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":193,"11":128,"22":1825},"isBase":true}}}, +{"id":92162,"name":"Thundercaller Shoulderguards","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,253,380,0,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":169,"11":169,"22":1825},"isBase":true}}}, +{"id":92163,"name":"Soulseizer Shoulderpads","icon":"inv_shoulder_robe_dungeonrobe_c_03","type":3,"armorType":1,"stats":[0,0,380,253,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,938,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":193,"7":128,"22":938},"isBase":true}}}, +{"id":92164,"name":"Thundercaller Spaulders","icon":"inv_shoulder_mail_dungeonmail_c_03","type":3,"armorType":3,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1825,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"11":181,"22":1825},"isBase":true}}}, +{"id":92165,"name":"Martial Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":148,"7":181,"22":2570},"isBase":true}}}, +{"id":92166,"name":"Martial Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":193,"9":128,"22":2570},"isBase":true}}}, +{"id":92167,"name":"Scourgeheart Idol of Battle","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"6":321},"isBase":true}}}, +{"id":92168,"name":"Scourgeheart Stone of Battle","icon":"inv_misc_cat_trinket01","type":12,"stats":[321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":321},"isBase":true}}}, +{"id":92169,"name":"Enlightened Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"5":228,"6":228,"22":1251},"isBase":true}}}, +{"id":92170,"name":"Deliverer Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":228,"11":228,"22":1251},"isBase":true}}}, +{"id":92171,"name":"Deliverer Vestments","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,259,0,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":259,"7":173,"22":1251},"isBase":true}}}, +{"id":92172,"name":"Soulseizer Robe","icon":"inv_chest_robe_dungeonrobe_c_03","type":5,"armorType":1,"stats":[0,0,512,341,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1251,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"5":228,"6":228,"22":1251},"isBase":true}}}, +{"id":92173,"name":"Partisan Bulwark","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,136,0,111,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":136,"11":111,"22":11896},"isBase":true}}}, +{"id":92174,"name":"Partisan Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,0,111,0,0,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":111,"11":136,"22":11896},"isBase":true}}}, +{"id":92175,"name":"Thundercaller Aegis","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,0,0,136,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":136,"7":111,"22":11896},"isBase":true}}}, +{"id":92176,"name":"Thundercaller Shield","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[0,0,286,190,111,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":111,"11":136,"22":11896},"isBase":true}}}, +{"id":92177,"name":"Martial Bulwark","icon":"inv_shield_cataclysm_c_01-","type":13,"weaponType":7,"handType":3,"stats":[190,0,286,0,0,0,0,0,0,111,0,136,0,0,0,0,0,0,0,0,0,0,11896,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":111,"11":136,"22":11896},"isBase":true}}}, +{"id":92178,"name":"Scourgeheart Pauldrons","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"6":148,"8":181,"22":2570},"isBase":true}}}, +{"id":92179,"name":"Scourgeheart Shoulderguards","icon":"inv_shoulder_plate_dungeonplate_c_03","type":3,"armorType":4,"stats":[253,0,380,0,0,0,0,0,148,0,0,181,0,0,0,0,0,0,0,0,0,0,2570,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":148,"11":181,"22":2570},"isBase":true}}}, +{"id":92180,"name":"Naturalist Spaulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,380,253,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"7":181,"11":148,"22":1252},"isBase":true}}}, +{"id":92181,"name":"Naturalist Shoulders","icon":"inv_shoulder_152","type":3,"armorType":2,"stats":[0,0,380,253,148,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":148,"7":181,"22":1252},"isBase":true}}}, +{"id":92182,"name":"Partisan Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92183,"name":"Deliverer Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92184,"name":"Deliverer Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":92185,"name":"Thundercaller Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92186,"name":"Darkwalker Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92187,"name":"Thundercaller Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":92188,"name":"Thundercaller Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92189,"name":"Soulseizer Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":92190,"name":"Martial Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92191,"name":"Martial Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92192,"name":"Darkwalker Shiv","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,86,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"weaponSpeed":1.8,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"stats":{"1":146,"2":219,"6":86,"7":105},"isBase":true}}}, +{"id":92193,"name":"Forestwalker Rifle","icon":"inv_firearm_2h_rifle_cataclysm_c_01","type":14,"rangedWeaponType":3,"stats":[0,341,512,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2618,"weaponDamageMax":4862,"stats":{"1":341,"2":512,"5":244,"7":200},"isBase":true}}}, +{"id":92194,"name":"Enlightened Wand","icon":"inv_wand_1h_cataclysm_c_01-","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"weaponSpeed":1.7,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"stats":{"2":219,"3":146,"6":97,"7":97,"14":1954},"isBase":true}}}, +{"id":92195,"name":"Deliverer Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"weaponSpeed":1.7,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"stats":{"2":219,"3":146,"6":97,"7":97,"14":1954},"isBase":true}}}, +{"id":92196,"name":"Soulseizer Wand","icon":"inv_wand_1h_cataclysm_c_02","type":14,"rangedWeaponType":6,"stats":[0,0,219,146,0,0,97,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"weaponSpeed":1.7,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":550,"weaponDamageMax":1022,"stats":{"2":219,"3":146,"6":97,"7":97,"14":1954},"isBase":true}}}, +{"id":92197,"name":"Thundercaller Legguards","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,341,512,0,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"7":244,"11":200,"22":2129},"isBase":true}}}, +{"id":92198,"name":"Soulseizer Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":200,"7":244,"22":1094},"isBase":true}}}, +{"id":92199,"name":"Thundercaller Leggings","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":228,"7":228,"22":2129},"isBase":true}}}, +{"id":92200,"name":"Martial Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"7":244,"11":200,"22":2998},"isBase":true}}}, +{"id":92201,"name":"Martial Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":259,"10":173,"22":2998},"isBase":true}}}, +{"id":92202,"name":"Partisan Scepter","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,105,0,0,86,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.4,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"2":219,"3":146,"4":105,"7":86,"14":1954},"isBase":true}}}, +{"id":92203,"name":"Darkwalker Sword","icon":"inv_sword_1h_cataclysm_c_04","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,0,97,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"7":97,"11":97},"isBase":true}}}, +{"id":92204,"name":"Darkwalker Dagger","icon":"inv_knife_1h_cataclysm_c_05","type":13,"weaponType":2,"handType":2,"stats":[0,146,219,0,0,0,0,105,0,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"weaponSpeed":1.8,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1165,"weaponDamageMax":2164,"stats":{"1":146,"2":219,"7":105,"11":86},"isBase":true}}}, +{"id":92205,"name":"Thundercaller Gavel","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,0,0,0,86,0,0,0,105,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.4,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"2":219,"3":146,"7":86,"11":105,"14":1954},"isBase":true}}}, +{"id":92206,"name":"Thundercaller Scepter","icon":"inv_mace_1h_cataclysm_c_05","type":13,"weaponType":4,"handType":2,"stats":[0,0,219,146,97,0,0,97,0,0,0,0,0,0,1954,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"weaponSpeed":2.4,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":776,"weaponDamageMax":1442,"stats":{"2":219,"3":146,"4":97,"7":97,"14":1954},"isBase":true}}}, +{"id":92207,"name":"Scourgeheart Pendant","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92208,"name":"Naturalist Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92209,"name":"Scourgeheart Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92210,"name":"Naturalist Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":92211,"name":"Naturalist Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92212,"name":"Enlightened Medallion","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":127,"11":127},"isBase":true}}}, +{"id":92213,"name":"Forestwalker Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92214,"name":"Partisan Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92215,"name":"Partisan Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92216,"name":"Thundercaller Coif","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":244,"7":200,"22":1977},"isBase":true}}}, +{"id":92217,"name":"Thundercaller Helm","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,341,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"5":228,"6":228,"22":1977},"isBase":true}}}, +{"id":92218,"name":"Soulseizer Cowl","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":228,"7":228,"22":1016},"isBase":true}}}, +{"id":92219,"name":"Thundercaller Cowl","icon":"inv_helmet_mail_dungeonmail_c_03","type":1,"armorType":3,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":200,"11":244,"22":1977},"isBase":true}}}, +{"id":92220,"name":"Martial Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"6":244,"8":200,"22":2784},"isBase":true}}}, +{"id":92221,"name":"Martial Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,0,244,200,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"10":244,"11":200,"22":2784},"isBase":true}}}, +{"id":92222,"name":"Scourgeheart Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,173,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"7":173,"11":259,"22":2998},"isBase":true}}}, +{"id":92223,"name":"Scourgeheart Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,173,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"9":173,"11":259,"22":2998},"isBase":true}}}, +{"id":92224,"name":"Naturalist Legguards","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,341,512,0,0,0,259,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":259,"8":173,"22":1460},"isBase":true}}}, +{"id":92225,"name":"Naturalist Leggings","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":244,"7":200,"22":1460},"isBase":true}}}, +{"id":92226,"name":"Naturalist Britches","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,0,512,341,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":259,"11":173,"22":1460},"isBase":true}}}, +{"id":92227,"name":"Forestwalker Legguards","icon":"inv_pants_mail_20","type":9,"armorType":3,"stats":[0,341,512,0,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":244,"11":200,"22":2129},"isBase":true}}}, +{"id":92228,"name":"Enlightened Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,200,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"5":200,"7":244,"22":1094},"isBase":true}}}, +{"id":92229,"name":"Partisan Leggings","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[0,0,512,341,0,0,0,173,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"7":173,"11":259,"22":2998},"isBase":true}}}, +{"id":92230,"name":"Partisan Legplates","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":244,"7":200,"22":2998},"isBase":true}}}, +{"id":92231,"name":"Partisan Legguards","icon":"inv_pants_plate_dungeonplate_c_03","type":9,"armorType":4,"stats":[341,0,512,0,0,0,0,0,244,0,200,0,0,0,0,0,0,0,0,0,0,0,2998,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"8":244,"10":200,"22":2998},"isBase":true}}}, +{"id":92232,"name":"Deliverer Leggings","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"7":244,"11":200,"22":1094},"isBase":true}}}, +{"id":92233,"name":"Deliverer Pants","icon":"inv_pants_robe_dungeonrobe_c_03","type":9,"armorType":1,"stats":[0,0,512,341,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1094,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":228,"11":228,"22":1094},"isBase":true}}}, +{"id":92234,"name":"Darkwalker Britches","icon":"inv_pants_leather_43","type":9,"armorType":2,"stats":[0,341,512,0,0,173,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"5":173,"7":259,"22":1460},"isBase":true}}}, +{"id":92235,"name":"Thundercaller Legwraps","icon":"inv_pants_mail_dungeonmail_c_03","type":9,"armorType":3,"stats":[0,0,512,341,173,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,2129,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":173,"11":259,"22":2129},"isBase":true}}}, +{"id":92236,"name":"Thundercaller Gloves","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,380,253,0,0,181,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":181,"11":148,"22":1521},"isBase":true}}}, +{"id":92237,"name":"Thundercaller Handguards","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,253,380,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":193,"8":128,"22":1521},"isBase":true}}}, +{"id":92238,"name":"Soulseizer Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"11":169,"22":782},"isBase":true}}}, +{"id":92239,"name":"Thundercaller Grips","icon":"inv_gauntlets_mail_dungeonmail_c_03","type":7,"armorType":3,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"7":181,"22":1521},"isBase":true}}}, +{"id":92240,"name":"Martial Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":169,"11":169,"22":2141},"isBase":true}}}, +{"id":92241,"name":"Martial Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":169,"9":169,"22":2141},"isBase":true}}}, +{"id":92242,"name":"Scourgeheart Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,228,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":228,"11":228,"22":2784},"isBase":true}}}, +{"id":92243,"name":"Scourgeheart Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":228,"10":228,"22":2784},"isBase":true}}}, +{"id":92244,"name":"Naturalist Helm","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"7":228,"11":228,"22":1356},"isBase":true}}}, +{"id":92245,"name":"Naturalist Headpiece","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"7":228,"11":228,"22":1356},"isBase":true}}}, +{"id":92246,"name":"Naturalist Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":200,"11":244,"22":1356},"isBase":true}}}, +{"id":92247,"name":"Forestwalker Helm","icon":"inv_helmet_123","type":1,"armorType":3,"stats":[0,341,512,0,0,200,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1977,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"5":200,"11":244,"22":1977},"isBase":true}}}, +{"id":92248,"name":"Partisan Helm","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,0,0,0,200,0,0,244,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"8":200,"11":244,"22":2784},"isBase":true}}}, +{"id":92249,"name":"Enlightened Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,0,200,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"7":200,"11":244,"22":1016},"isBase":true}}}, +{"id":92250,"name":"Partisan Headpiece","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[0,0,512,341,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":200,"7":244,"22":2784},"isBase":true}}}, +{"id":92251,"name":"Partisan Faceguard","icon":"inv_helmet_plate_dungeonplate_c_03","type":1,"armorType":4,"stats":[341,0,512,0,0,244,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,2784,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":244,"9":200,"22":2784},"isBase":true}}}, +{"id":92252,"name":"Deliverer Hood","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,0,0,173,0,0,0,0,259,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":173,"11":259,"22":1016},"isBase":true}}}, +{"id":92253,"name":"Deliverer Cowl","icon":"inv_helmet_robe_dungeonrobe_c_03","type":1,"armorType":1,"stats":[0,0,512,341,173,0,0,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1016,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":173,"7":259,"22":1016},"isBase":true}}}, +{"id":92254,"name":"Darkwalker Hood","icon":"inv_helmet_192","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,0,173,0,0,259,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"8":173,"11":259,"22":1356},"isBase":true}}}, +{"id":92255,"name":"Thundercaller Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92256,"name":"Soulseizer Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":92257,"name":"Soulseizer Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":145,"6":96},"isBase":true}}}, +{"id":92258,"name":"Martial Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92259,"name":"Martial Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":96,"11":145},"isBase":true}}}, +{"id":92260,"name":"Martial Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92261,"name":"Martial Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":145,"11":96},"isBase":true}}}, +{"id":92262,"name":"Scourgeheart Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"7":148,"8":181,"22":2141},"isBase":true}}}, +{"id":92263,"name":"Scourgeheart Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":148,"10":181,"22":2141},"isBase":true}}}, +{"id":92264,"name":"Naturalist Handguards","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,253,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"5":169,"6":169,"22":1043},"isBase":true}}}, +{"id":92265,"name":"Naturalist Grips","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":181,"7":148,"22":1043},"isBase":true}}}, +{"id":92266,"name":"Naturalist Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"7":169,"22":1043},"isBase":true}}}, +{"id":92267,"name":"Forestwalker Gauntlets","icon":"inv_gauntlets_49","type":7,"armorType":3,"stats":[0,253,380,0,0,0,148,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,1521,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":148,"8":181,"22":1521},"isBase":true}}}, +{"id":92268,"name":"Partisan Gauntlets","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"5":169,"6":169,"22":2141},"isBase":true}}}, +{"id":92269,"name":"Enlightened Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"11":169,"22":782},"isBase":true}}}, +{"id":92270,"name":"Partisan Gloves","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[0,0,380,253,169,0,0,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":169,"11":169,"22":2141},"isBase":true}}}, +{"id":92271,"name":"Partisan Handguards","icon":"inv_glove_plate_dungeonplate_c_03","type":7,"armorType":4,"stats":[253,0,380,0,0,0,0,0,169,0,0,169,0,0,0,0,0,0,0,0,0,0,2141,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"8":169,"11":169,"22":2141},"isBase":true}}}, +{"id":92272,"name":"Deliverer Handwraps","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"7":169,"22":782},"isBase":true}}}, +{"id":92273,"name":"Deliverer Gloves","icon":"inv_gauntlets_robe_dungeonrobe_c_03","type":7,"armorType":1,"stats":[0,0,380,253,181,0,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,782,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":181,"11":148,"22":782},"isBase":true}}}, +{"id":92274,"name":"Darkwalker Gloves","icon":"inv_gauntlets_125","type":7,"armorType":2,"stats":[0,253,380,0,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"7":181,"11":148,"22":1043},"isBase":true}}}, +{"id":92275,"name":"Enlightened Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":92276,"name":"Enlightened Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92277,"name":"Partisan Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92278,"name":"Partisan Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92279,"name":"Partisan Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":145,"11":96},"isBase":true}}}, +{"id":92280,"name":"Partisan Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92281,"name":"Deliverer Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":92282,"name":"Deliverer Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92283,"name":"Partisan Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":96,"11":145},"isBase":true}}}, +{"id":92284,"name":"Partisan Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92285,"name":"Deliverer Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92286,"name":"Deliverer Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92287,"name":"Darkwalker Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92288,"name":"Darkwalker Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":145,"7":96},"isBase":true}}}, +{"id":92289,"name":"Thundercaller Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":92290,"name":"Thundercaller Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92291,"name":"Thundercaller Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92292,"name":"Thundercaller Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":145,"7":96},"isBase":true}}}, +{"id":92293,"name":"Thundercaller Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92294,"name":"Deliverer Boots","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"7":181,"22":860},"isBase":true}}}, +{"id":92295,"name":"Darkwalker Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,253,380,0,0,0,193,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":193,"8":128,"22":1148},"isBase":true}}}, +{"id":92296,"name":"Thundercaller Boots","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,380,253,181,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":181,"7":148,"22":1673},"isBase":true}}}, +{"id":92297,"name":"Thundercaller Greaves","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,253,380,0,0,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"5":181,"7":148,"22":1673},"isBase":true}}}, +{"id":92298,"name":"Soulseizer Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"5":128,"7":193,"22":860},"isBase":true}}}, +{"id":92299,"name":"Thundercaller Sabatons","icon":"inv_boots_mail_dungeonmail_c_03","type":10,"armorType":3,"stats":[0,0,380,253,0,0,0,169,0,0,0,169,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"7":169,"11":169,"22":1673},"isBase":true}}}, +{"id":92300,"name":"Martial Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"5":181,"7":148,"22":2355},"isBase":true}}}, +{"id":92301,"name":"Martial Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"5":148,"10":181,"22":2355},"isBase":true}}}, +{"id":92302,"name":"Scourgeheart Ring of Might","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,145,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"7":145,"11":96},"isBase":true}}}, +{"id":92303,"name":"Scourgeheart Band of Might","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127},"isBase":true}}}, +{"id":92304,"name":"Naturalist Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":145,"7":96},"isBase":true}}}, +{"id":92305,"name":"Naturalist Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92306,"name":"Scourgeheart Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92307,"name":"Scourgeheart Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":96,"11":145},"isBase":true}}}, +{"id":92308,"name":"Naturalist Band of Destruction","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127},"isBase":true}}}, +{"id":92309,"name":"Naturalist Ring of Destruction","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92310,"name":"Naturalist Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92311,"name":"Naturalist Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92312,"name":"Forestwalker Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":145,"7":96},"isBase":true}}}, +{"id":92313,"name":"Forestwalker Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92314,"name":"Darkwalker Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":92315,"name":"Deliverer Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127,"22":625},"isBase":true}}}, +{"id":92316,"name":"Thundercaller Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":92317,"name":"Thundercaller Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127,"22":625},"isBase":true}}}, +{"id":92318,"name":"Thundercaller Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":92319,"name":"Martial Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127,"22":625},"isBase":true}}}, +{"id":92320,"name":"Soulseizer Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,127,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"5":127,"11":127,"22":625},"isBase":true}}}, +{"id":92321,"name":"Martial Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"11":127,"22":625},"isBase":true}}}, +{"id":92322,"name":"Scourgeheart Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,0,0,0,169,169,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"10":169,"11":169,"22":2355},"isBase":true}}}, +{"id":92323,"name":"Scourgeheart Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"5":181,"6":148,"22":2355},"isBase":true}}}, +{"id":92324,"name":"Naturalist Footpads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,253,380,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"5":128,"7":193,"22":1148},"isBase":true}}}, +{"id":92325,"name":"Naturalist Treads","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"7":181,"22":1148},"isBase":true}}}, +{"id":92326,"name":"Naturalist Boots","icon":"inv_boots_leather_15","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"11":181,"22":1148},"isBase":true}}}, +{"id":92327,"name":"Forestwalker Greaves","icon":"inv_boots_leather_8","type":10,"armorType":3,"stats":[0,253,380,0,0,0,0,181,0,0,0,148,0,0,0,0,0,0,0,0,0,0,1673,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"7":181,"11":148,"22":1673},"isBase":true}}}, +{"id":92328,"name":"Partisan Sabatons","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,0,0,181,148,0,0,0,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"7":181,"8":148,"22":2355},"isBase":true}}}, +{"id":92329,"name":"Enlightened Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"5":128,"7":193,"22":860},"isBase":true}}}, +{"id":92330,"name":"Partisan Boots","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[0,0,380,253,0,0,181,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":181,"11":148,"22":2355},"isBase":true}}}, +{"id":92331,"name":"Partisan Greaves","icon":"inv_boots_plate_dungeonplate_c_03","type":10,"armorType":4,"stats":[253,0,380,0,0,181,0,0,0,0,0,148,0,0,0,0,0,0,0,0,0,0,2355,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"0":253,"2":380,"5":181,"11":148,"22":2355},"isBase":true}}}, +{"id":92332,"name":"Deliverer Sandals","icon":"inv_boots_robe_dungeonrobe_c_03","type":10,"armorType":1,"stats":[0,0,380,253,181,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,860,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":181,"6":148,"22":860},"isBase":true}}}, +{"id":92333,"name":"Partisan Battleplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"6":228,"11":228,"22":3426},"isBase":true}}}, +{"id":92334,"name":"Partisan Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[0,0,512,341,228,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":228,"7":228,"22":3426},"isBase":true}}}, +{"id":92335,"name":"Partisan Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"9":228,"10":228,"22":3426},"isBase":true}}}, +{"id":92336,"name":"Darkwalker Jerkin","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,341,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"5":228,"6":228,"22":1669},"isBase":true}}}, +{"id":92337,"name":"Thundercaller Tunic","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"7":228,"11":228,"22":2433},"isBase":true}}}, +{"id":92338,"name":"Thundercaller Vest","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,0,512,341,244,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":244,"6":200,"22":2433},"isBase":true}}}, +{"id":92339,"name":"Thundercaller Chestguard","icon":"inv_chest_mail_dungeonmail_c_03","type":5,"armorType":3,"stats":[0,341,512,0,0,0,0,0,228,0,0,228,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"8":228,"11":228,"22":2433},"isBase":true}}}, +{"id":92340,"name":"Martial Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":228,"6":228,"22":3426},"isBase":true}}}, +{"id":92341,"name":"Martial Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"9":228,"11":228,"22":3426},"isBase":true}}}, +{"id":92342,"name":"Scourgeheart Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"11":127,"22":625},"isBase":true}}}, +{"id":92343,"name":"Scourgeheart Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127,"22":625},"isBase":true}}}, +{"id":92344,"name":"Naturalist Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":92345,"name":"Naturalist Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127,"22":625},"isBase":true}}}, +{"id":92346,"name":"Naturalist Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":92347,"name":"Forestwalker Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":92348,"name":"Enlightened Cloak of Destruction","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"7":127,"11":127,"22":625},"isBase":true}}}, +{"id":92349,"name":"Partisan Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":92350,"name":"Partisan Cloak of Stoicism","icon":"inv_misc_cape_cataclysm_tank_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,0,0,0,127,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"11":127,"22":625},"isBase":true}}}, +{"id":92351,"name":"Partisan Cloak of Battle","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[190,0,286,0,0,0,127,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"6":127,"11":127,"22":625},"isBase":true}}}, +{"id":92352,"name":"Deliverer Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":92353,"name":"Scourgeheart Maul","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,0,0,200,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"9":200,"11":244},"isBase":true}}}, +{"id":92354,"name":"Scourgeheart Hammer","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"7":228,"11":228},"isBase":true}}}, +{"id":92355,"name":"Naturalist Stave","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"7":228,"11":228,"14":1955},"isBase":true}}}, +{"id":92356,"name":"Naturalist Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"11":228},"isBase":true}}}, +{"id":92357,"name":"Forestwalker Spear","icon":"inv_polearm_2h_cataclysm_c_01","type":13,"weaponType":6,"handType":4,"stats":[0,341,512,0,0,0,200,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":200,"7":244},"isBase":true}}}, +{"id":92358,"name":"Naturalist Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,200,0,0,244,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"4":200,"7":244,"14":1955},"isBase":true}}}, +{"id":92359,"name":"Enlightened Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,228,0,0,0,228,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"7":228,"11":228,"14":1955},"isBase":true}}}, +{"id":92360,"name":"Partisan Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":200,"11":244},"isBase":true}}}, +{"id":92361,"name":"Deliverer Stave","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,0,244,0,0,0,200,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"7":244,"11":200,"14":1955},"isBase":true}}}, +{"id":92362,"name":"Deliverer Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,244,0,0,200,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"4":244,"7":200,"14":1955},"isBase":true}}}, +{"id":92363,"name":"Martial Maul","icon":"inv_mace_127","type":13,"weaponType":4,"handType":4,"stats":[341,0,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":228,"11":228},"isBase":true}}}, +{"id":92364,"name":"Martial Greatsword","icon":"inv_sword_2h_cataclysm_c_01","type":13,"weaponType":9,"handType":4,"stats":[341,0,512,0,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"weaponSpeed":3.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":3590,"weaponDamageMax":5386,"stats":{"0":341,"2":512,"6":244,"11":200},"isBase":true}}}, +{"id":92365,"name":"Soulseizer Staff","icon":"inv_stave_2h_cataclysm_c_02","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,0,0,244,200,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"6":244,"7":200,"14":1955},"isBase":true}}}, +{"id":92366,"name":"Scourgeheart Chestguard","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,200,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"5":200,"9":244,"22":3426},"isBase":true}}}, +{"id":92367,"name":"Scourgeheart Breastplate","icon":"inv_chest_plate_dungeonplate_c_03","type":5,"armorType":4,"stats":[341,0,512,0,0,0,228,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"0":341,"2":512,"6":228,"7":228,"22":3426},"isBase":true}}}, +{"id":92368,"name":"Naturalist Vest","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,341,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":200,"11":244,"22":1669},"isBase":true}}}, +{"id":92369,"name":"Naturalist Tunic","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,512,341,0,0,244,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":244,"11":200,"22":1669},"isBase":true}}}, +{"id":92370,"name":"Naturalist Jerkin","icon":"inv_chest_leather_31","type":5,"armorType":2,"stats":[0,0,512,341,198,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":198,"7":198,"22":1669},"isBase":true}}}, +{"id":92371,"name":"Forestwalker Vest","icon":"inv_chest_mail_07","type":5,"armorType":3,"stats":[0,341,512,0,0,0,228,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":228,"8":228,"22":2433},"isBase":true}}}, +{"id":92372,"name":"Waterdancer Spire","icon":"inv_stave_2h_cataclysm_c_03","type":13,"weaponType":8,"handType":4,"stats":[0,341,512,0,0,0,228,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":2992,"weaponDamageMax":4488,"stats":{"1":341,"2":512,"6":228,"11":228},"isBase":true}}}, +{"id":92373,"name":"Waterdancer Staff","icon":"inv_staff_116","type":13,"weaponType":8,"handType":4,"stats":[0,0,512,341,200,0,0,244,0,0,0,0,0,0,1955,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"weaponSpeed":3,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"weaponDamageMin":1496,"weaponDamageMax":2244,"stats":{"2":512,"3":341,"4":200,"7":244,"14":1955},"isBase":true}}}, +{"id":92374,"name":"Waterdancer Jerkin","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,0,512,341,198,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":198,"7":198,"22":1669},"isBase":true}}}, +{"id":92375,"name":"Waterdancer Vest","icon":"inv_chest_leather_cataclysm_b_01","type":5,"armorType":2,"stats":[0,341,512,0,0,0,200,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1669,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":200,"11":244,"22":1669},"isBase":true}}}, +{"id":92376,"name":"Waterdancer Cloak of Wisdom","icon":"inv_misc_cape_cataclysm_healer_c_01","type":4,"armorType":1,"stats":[0,0,286,190,127,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"11":127,"22":625},"isBase":true}}}, +{"id":92377,"name":"Waterdancer Cloak of Rage","icon":"inv_misc_cape_cataclysm_melee_c_01","type":4,"armorType":1,"stats":[0,190,286,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":127,"7":127,"22":625},"isBase":true}}}, +{"id":92378,"name":"Waterdancer Boots","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,0,380,253,0,0,148,0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":148,"11":181,"22":1148},"isBase":true}}}, +{"id":92379,"name":"Waterdancer Footpads","icon":"inv_boots_leather_cataclysm_b_01","type":10,"armorType":2,"stats":[0,253,380,0,0,128,0,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1148,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"5":128,"7":193,"22":1148},"isBase":true}}}, +{"id":92380,"name":"Waterdancer Band of Onslaught","icon":"inv_jewelry_ring_98","type":11,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92381,"name":"Waterdancer Ring of Onslaught","icon":"inv_jewelry_ring_95","type":11,"stats":[0,190,286,0,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"6":145,"7":96},"isBase":true}}}, +{"id":92382,"name":"Waterdancer Ring of Wisdom","icon":"inv_jewelry_ring_95","type":11,"stats":[0,0,286,190,0,0,145,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":145,"7":96},"isBase":true}}}, +{"id":92383,"name":"Waterdancer Band of Wisdom","icon":"inv_jewelry_ring_98","type":11,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92384,"name":"Waterdancer Band of Stoicism","icon":"inv_jewelry_ring_98","type":11,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92385,"name":"Waterdancer Ring of Stoicism","icon":"inv_jewelry_ring_95","type":11,"stats":[190,0,286,0,0,0,0,0,0,96,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":96,"11":145},"isBase":true}}}, +{"id":92386,"name":"Waterdancer Gloves","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,0,380,253,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"6":169,"7":169,"22":1043},"isBase":true}}}, +{"id":92387,"name":"Waterdancer Handguards","icon":"inv_gauntlets_leather_cataclysm_b_01","type":7,"armorType":2,"stats":[0,253,380,0,0,169,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1043,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"5":169,"6":169,"22":1043},"isBase":true}}}, +{"id":92388,"name":"Waterdancer Hood","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,0,512,341,200,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"4":200,"11":244,"22":1356},"isBase":true}}}, +{"id":92389,"name":"Waterdancer Helm","icon":"inv_helmet_leather_cataclysm_b_01","type":1,"armorType":2,"stats":[0,341,512,0,0,0,0,228,0,0,0,228,0,0,0,0,0,0,0,0,0,0,1356,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"7":228,"11":228,"22":1356},"isBase":true}}}, +{"id":92390,"name":"Waterdancer Britches","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,0,512,341,0,0,259,0,0,0,0,173,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"2":512,"3":341,"6":259,"11":173,"22":1460},"isBase":true}}}, +{"id":92391,"name":"Waterdancer Legguards","icon":"inv_pants_leather_cataclysm_b_01","type":9,"armorType":2,"stats":[0,341,512,0,0,0,259,0,173,0,0,0,0,0,0,0,0,0,0,0,0,0,1460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":649,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":649,"stats":{"1":341,"2":512,"6":259,"8":173,"22":1460},"isBase":true}}}, +{"id":92392,"name":"Waterdancer Choker","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,190,286,0,0,0,0,127,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"7":127,"11":127},"isBase":true}}}, +{"id":92393,"name":"Waterdancer Necklace","icon":"inv_jewelry_necklace_54","type":2,"stats":[0,0,286,190,127,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"4":127,"7":127},"isBase":true}}}, +{"id":92394,"name":"Waterdancer Amulet","icon":"inv_jewelry_necklace_54","type":2,"stats":[190,0,286,0,0,0,0,0,0,127,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"0":190,"2":286,"9":127,"10":127},"isBase":true}}}, +{"id":92395,"name":"Waterdancer Shoulders","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,0,380,253,148,0,0,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":148,"7":181,"22":1252},"isBase":true}}}, +{"id":92396,"name":"Waterdancer Pauldrons","icon":"inv_shoulder_leather_cataclysm_b_01","type":3,"armorType":2,"stats":[0,253,380,0,0,0,0,193,128,0,0,0,0,0,0,0,0,0,0,0,0,0,1252,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"7":193,"8":128,"22":1252},"isBase":true}}}, +{"id":92397,"name":"Waterdancer Idol of Wisdom","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92398,"name":"Waterdancer Defender Stone","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92399,"name":"Waterdancer Defender Idol","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":482},"isBase":true}}}, +{"id":92400,"name":"Waterdancer Stone of Rage","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":321},"isBase":true}}}, +{"id":92401,"name":"Waterdancer Idol of Rage","icon":"inv_misc_cat_trinket04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"11":321},"isBase":true}}}, +{"id":92402,"name":"Waterdancer Stone of Wisdom","icon":"inv_misc_cat_trinket01","type":12,"stats":[0,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"3":321},"isBase":true}}}, +{"id":92403,"name":"Waterdancer Waistband","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,0,380,253,169,0,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"2":380,"3":253,"4":169,"7":169,"22":939},"isBase":true}}}, +{"id":92404,"name":"Waterdancer Cord","icon":"inv_belt_leather_cataclysm_b_01","type":8,"armorType":2,"stats":[0,253,380,0,0,0,128,0,0,0,0,193,0,0,0,0,0,0,0,0,0,0,939,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":482,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":482,"stats":{"1":253,"2":380,"6":128,"11":193,"22":939},"isBase":true}}}, +{"id":92405,"name":"Waterdancer Sword","icon":"inv_sword_1h_cataclysm_c_01","type":13,"weaponType":9,"handType":2,"stats":[0,146,219,0,0,0,97,0,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"weaponSpeed":2.6,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":278,"weaponDamageMin":1682,"weaponDamageMax":3125,"stats":{"1":146,"2":219,"6":97,"11":97},"isBase":true}}}, +{"id":92406,"name":"Waterdancer Bindings","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,0,286,190,0,0,136,0,0,0,0,111,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"2":286,"3":190,"6":136,"11":111,"22":730},"isBase":true}}}, +{"id":92407,"name":"Waterdancer Cuffs","icon":"inv_bracer_leather_cataclysm_b_01","type":6,"armorType":2,"stats":[0,190,286,0,0,145,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,730,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":362,"ilvl":359,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"359":{"randPropPoints":362,"stats":{"1":190,"2":286,"5":145,"8":96,"22":730},"isBase":true}}}, +{"id":103667,"name":"Raid D01 1H","icon":"inv_weapon_hand_09","type":13,"weaponType":3,"handType":2,"stats":[0,0,75,0,0,0,31,43,0,0,0,0,0,0,576,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":82,"weaponDamageMin":272,"weaponDamageMax":409,"weaponSpeed":2.6,"ilvl":213,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"213":{"randPropPoints":82,"weaponDamageMin":272,"weaponDamageMax":409,"stats":{"2":75,"6":31,"7":43,"14":576},"isBase":true}}}, +{"id":105955,"name":"Wrathful Gladiator's Razor","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":3,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":105956,"name":"Wrathful Gladiator's Razor","icon":"inv_weapon_hand_34","type":13,"weaponType":3,"handType":1,"stats":[0,0,118,0,0,0,44,0,0,0,0,0,141,141,0,0,52,0,0,0,0,0,0,0,0,0,0],"gemSockets":[3],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"weaponSpeed":1.8,"ilvl":277,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"277":{"randPropPoints":149,"weaponDamageMin":620,"weaponDamageMax":1152,"stats":{"2":118,"6":44,"12":141,"13":141,"16":52},"isBase":true}}}, +{"id":199327,"name":"Collective Cowl","icon":"inv_helmet_29","type":1,"armorType":1,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,287,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"3":49,"4":11,"22":287},"isBase":true}}}, +{"id":199328,"name":"Collective Mantle","icon":"inv_shoulder_02","type":3,"armorType":1,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"6":8,"22":265},"isBase":true}}}, +{"id":199329,"name":"Collective Armor","icon":"inv_chest_cloth_29","type":5,"armorType":1,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":353},"isBase":true}}}, +{"id":199330,"name":"Collective Sash","icon":"inv_belt_07","type":8,"armorType":1,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"7":8,"22":199},"isBase":true}}}, +{"id":199331,"name":"Collective Pants","icon":"inv_pants_08","type":9,"armorType":1,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":309},"isBase":true}}}, +{"id":199332,"name":"Collective Boots","icon":"inv_boots_05","type":10,"armorType":1,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":12,"3":37,"4":20,"22":243},"isBase":true}}}, +{"id":199333,"name":"Collective Bracers","icon":"inv_bracer_07","type":6,"armorType":1,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":28,"5":16,"22":155},"isBase":true}}}, +{"id":199334,"name":"Collective Gloves","icon":"inv_gauntlets_17","type":7,"armorType":1,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"5":8,"22":221},"isBase":true}}}, +{"id":199463,"name":"Collective Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"3":49,"4":11,"22":396},"isBase":true}}}, +{"id":199464,"name":"Collective Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"6":8,"22":366},"isBase":true}}}, +{"id":199465,"name":"Collective Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":487},"isBase":true}}}, +{"id":199466,"name":"Collective Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"7":8,"22":274},"isBase":true}}}, +{"id":199467,"name":"Collective Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":426},"isBase":true}}}, +{"id":199468,"name":"Collective Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":12,"3":37,"4":20,"22":335},"isBase":true}}}, +{"id":199469,"name":"Collective Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"5":8,"22":305},"isBase":true}}}, +{"id":199470,"name":"Collective Cloak","icon":"inv_misc_cape_06","type":4,"armorType":1,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"6":16,"22":177},"isBase":true}}}, +{"id":199471,"name":"Collective Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":28,"5":16,"22":213},"isBase":true}}}, +{"id":199478,"name":"Collective Crown","icon":"inv_helmet_15","type":1,"armorType":2,"stats":[0,49,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,396,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"6":27,"22":396},"isBase":true}}}, +{"id":199479,"name":"Collective Pads","icon":"inv_shoulder_08","type":3,"armorType":2,"stats":[0,37,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,366,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"6":8,"22":366},"isBase":true}}}, +{"id":199480,"name":"Collective Tunic","icon":"inv_chest_fur","type":5,"armorType":2,"stats":[0,49,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"2":17,"6":27,"22":487},"isBase":true}}}, +{"id":199481,"name":"Collective Belt","icon":"inv_belt_04","type":8,"armorType":2,"stats":[0,37,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"7":8,"22":274},"isBase":true}}}, +{"id":199482,"name":"Collective Legguards","icon":"inv_pants_wolf","type":9,"armorType":2,"stats":[0,49,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"2":17,"7":27,"22":426},"isBase":true}}}, +{"id":199483,"name":"Collective Boots","icon":"inv_boots_wolf","type":10,"armorType":2,"stats":[0,37,12,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"2":12,"7":20,"22":335},"isBase":true}}}, +{"id":199484,"name":"Collective Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"5":8,"22":305},"isBase":true}}}, +{"id":199485,"name":"Collective Bindings","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,28,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"1":28,"5":16,"22":213},"isBase":true}}}, +{"id":199486,"name":"Collective Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,0,0,49,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"3":49,"4":11,"22":595},"isBase":true}}}, +{"id":199487,"name":"Collective Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"6":8,"22":549},"isBase":true}}}, +{"id":199488,"name":"Collective Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":732},"isBase":true}}}, +{"id":199489,"name":"Collective Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"7":8,"22":412},"isBase":true}}}, +{"id":199490,"name":"Collective Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":641},"isBase":true}}}, +{"id":199491,"name":"Collective Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":12,"3":37,"4":20,"22":503},"isBase":true}}}, +{"id":199492,"name":"Collective Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":28,"5":16,"22":320},"isBase":true}}}, +{"id":199493,"name":"Collective Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"5":8,"22":458},"isBase":true}}}, +{"id":199494,"name":"Collective Headguard","icon":"inv_crown_02","type":1,"armorType":3,"stats":[0,49,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,595,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"3":27,"22":595},"isBase":true}}}, +{"id":199495,"name":"Collective Spaulders","icon":"inv_shoulder_07","type":3,"armorType":3,"stats":[0,37,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"6":8,"22":549},"isBase":true}}}, +{"id":199496,"name":"Collective Armor","icon":"inv_chest_chain_13","type":5,"armorType":3,"stats":[0,49,17,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,732,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"2":17,"3":27,"22":732},"isBase":true}}}, +{"id":199497,"name":"Collective Belt","icon":"inv_belt_09","type":8,"armorType":3,"stats":[0,37,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,412,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"7":8,"22":412},"isBase":true}}}, +{"id":199498,"name":"Collective Leggings","icon":"inv_pants_09","type":9,"armorType":3,"stats":[0,49,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"1":49,"2":17,"7":27,"22":641},"isBase":true}}}, +{"id":199499,"name":"Collective Boots","icon":"inv_boots_07","type":10,"armorType":3,"stats":[0,37,12,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,503,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"2":12,"3":20,"22":503},"isBase":true}}}, +{"id":199500,"name":"Collective Armguards","icon":"inv_bracer_04","type":6,"armorType":3,"stats":[0,28,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"1":28,"5":16,"22":320},"isBase":true}}}, +{"id":199501,"name":"Collective Gauntlets","icon":"inv_gauntlets_25","type":7,"armorType":3,"stats":[0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"1":37,"5":8,"22":458},"isBase":true}}}, +{"id":199503,"name":"Collective Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[49,0,0,0,0,0,11,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"0":49,"6":11,"8":27,"22":854},"isBase":true}}}, +{"id":199504,"name":"Collective Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[37,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":37,"2":12,"6":8,"22":788},"isBase":true}}}, +{"id":199505,"name":"Collective Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[49,0,17,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"0":49,"2":17,"6":27,"22":1051},"isBase":true}}}, +{"id":199506,"name":"Collective Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[28,0,9,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"0":28,"2":9,"5":16,"22":460},"isBase":true}}}, +{"id":199507,"name":"Collective Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[37,0,0,0,0,8,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":37,"5":8,"6":20,"22":657},"isBase":true}}}, +{"id":199508,"name":"Collective Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[37,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":37,"7":8,"22":591},"isBase":true}}}, +{"id":199509,"name":"Collective Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[49,0,17,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"0":49,"2":17,"7":27,"22":919},"isBase":true}}}, +{"id":199510,"name":"Collective Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[37,0,12,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"0":37,"2":12,"8":20,"22":722},"isBase":true}}}, +{"id":199511,"name":"Collective Faceguard","icon":"inv_helmet_16","type":1,"armorType":4,"stats":[49,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"0":49,"4":11,"22":854},"isBase":true}}}, +{"id":199512,"name":"Collective Pauldrons","icon":"inv_shoulder_29","type":3,"armorType":4,"stats":[0,0,0,37,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,788,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"6":8,"22":788},"isBase":true}}}, +{"id":199513,"name":"Collective Chestguard","icon":"inv_chest_chain_05","type":5,"armorType":4,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":1051},"isBase":true}}}, +{"id":199514,"name":"Collective Plate Vambraces","icon":"inv_bracer_16","type":6,"armorType":4,"stats":[0,0,0,28,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,460,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":28,"5":16,"22":460},"isBase":true}}}, +{"id":199516,"name":"Collective Plate Girdle","icon":"inv_belt_18","type":8,"armorType":4,"stats":[0,0,0,37,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,591,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"7":8,"22":591},"isBase":true}}}, +{"id":199517,"name":"Collective Plate Leggings","icon":"inv_pants_01","type":9,"armorType":4,"stats":[0,0,17,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"stats":{"2":17,"3":49,"22":919},"isBase":true}}}, +{"id":199518,"name":"Collective Plate Greaves","icon":"inv_boots_plate_06","type":10,"armorType":4,"stats":[0,0,12,37,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,722,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"2":12,"3":37,"4":20,"22":722},"isBase":true}}}, +{"id":199519,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,6,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"7":16},"isBase":true}}}, +{"id":199520,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,0,0,0,6,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"6":28},"isBase":true}}}, +{"id":199521,"name":"Collective Necklace","icon":"inv_jewelry_amulet_01","type":2,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"2":24,"5":6},"isBase":true}}}, +{"id":199522,"name":"Collective Band of Wisdom","icon":"inv_jewelry_ring_09","type":11,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"6":16},"isBase":true}}}, +{"id":199523,"name":"Collective Band of Devastation","icon":"inv_jewelry_ring_08","type":11,"stats":[0,0,0,0,0,6,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"6":16},"isBase":true}}}, +{"id":199524,"name":"Collective Band of Defense","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"2":24,"5":6},"isBase":true}}}, +{"id":199525,"name":"Collective Cloak","icon":"inv_misc_cape_01","type":4,"armorType":1,"stats":[0,0,0,0,0,6,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"5":6,"8":16,"22":177},"isBase":true}}}, +{"id":199526,"name":"Collective Cloak","icon":"inv_misc_cape_03","type":4,"armorType":1,"stats":[0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"2":24,"5":6,"22":177},"isBase":true}}}, +{"id":199527,"name":"Collective Stone of Onslaught","icon":"inv_misc_stonetablet_06","type":12,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"6":32},"isBase":true}}}, +{"id":199528,"name":"Collective Stone of Durability","icon":"inv_stone_sharpeningstone_05","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"isBase":true}}}, +{"id":199529,"name":"Collective Stone of Wisdom","icon":"inv_misc_stonetablet_04","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"26":32},"isBase":true}}}, +{"id":199530,"name":"Collective Stone of Stoicism","icon":"inv_misc_stonetablet_03","type":12,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"isBase":true}}}, +{"id":199635,"name":"Collective Book of Healing","icon":"inv_relics_libramofhope","type":14,"stats":[23,0,0,15,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"0":23,"3":15,"4":10,"6":10},"isBase":true}}}, +{"id":199636,"name":"Collective Book of Protection","icon":"inv_relics_libramoftruth","type":14,"stats":[15,0,23,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"0":15,"2":23,"6":10,"10":10},"isBase":true}}}, +{"id":199637,"name":"Collective Book of Righteousness","icon":"inv_misc_book_13","type":14,"stats":[15,0,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"0":15,"2":23,"6":10,"7":10},"isBase":true}}}, +{"id":199638,"name":"Collective Idol of Wrath","icon":"inv_misc_rune_10","type":14,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"2":23,"3":15,"6":10,"7":10},"isBase":true}}}, +{"id":199639,"name":"Collective Idol of the Wild","icon":"spell_nature_spiritwolf","type":14,"stats":[0,15,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"1":15,"2":23,"6":10,"7":10},"isBase":true}}}, +{"id":199640,"name":"Collective Idol of Life","icon":"spell_nature_natureresistancetotem","type":14,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"2":23,"3":15,"4":10,"7":10},"isBase":true}}}, +{"id":199642,"name":"Collective Totem of Lightning","icon":"spell_arcane_blast","type":14,"stats":[0,0,23,15,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"2":23,"3":15,"6":10,"7":10},"isBase":true}}}, +{"id":199643,"name":"Collective Totem of Restoration","icon":"inv_relics_totemoflife","type":14,"stats":[0,0,23,15,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"2":23,"3":15,"4":10,"7":10},"isBase":true}}}, +{"id":199644,"name":"Collective Totem of the Storm","icon":"spell_nature_manaregentotem","type":14,"stats":[0,15,23,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"gemSockets":[8],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ilvl":136,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"136":{"stats":{"1":15,"2":23,"6":10,"7":10},"isBase":true}}}, +{"id":199699,"name":"Collective Band of Durability","icon":"inv_jewelry_ring_21","type":11,"stats":[0,0,24,0,0,6,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"2":24,"5":6,"7":28},"isBase":true}}}, +{"id":199709,"name":"Collective Dagger","icon":"inv_weapon_shortblade_15","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,21,12,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":48,"weaponDamageMax":128,"weaponSpeed":1.3,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":48,"weaponDamageMax":128,"stats":{"3":21,"4":12,"7":4},"isBase":true}}}, +{"id":199710,"name":"Collective Rose","icon":"inv_misc_flower_04","type":13,"weaponType":5,"handType":3,"stats":[0,0,0,18,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"weaponSpeed":2,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":18,"7":6},"isBase":true}}}, +{"id":199711,"name":"Collective Wand","icon":"inv_wand_02","type":14,"rangedWeaponType":6,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"weaponSpeed":1.4,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":49,"weaponDamageMax":92,"stats":{"3":15},"isBase":true}}}, +{"id":199712,"name":"Collective Staff","icon":"inv_staff_23","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,49,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"weaponDamageMin":216,"weaponDamageMax":375,"weaponSpeed":3,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"weaponDamageMin":216,"weaponDamageMax":375,"stats":{"3":49,"6":11,"7":27},"isBase":true}}}, +{"id":199713,"name":"Collective Stave","icon":"inv_spear_07","type":13,"weaponType":8,"handType":4,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"weaponDamageMin":317,"weaponDamageMax":476,"weaponSpeed":3,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"weaponDamageMin":317,"weaponDamageMax":476,"stats":{"1":12,"8":4},"isBase":true}}}, +{"id":199714,"name":"Collective Bow","icon":"inv_weapon_bow_02","type":14,"rangedWeaponType":1,"stats":[0,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"weaponDamageMin":249,"weaponDamageMax":464,"weaponSpeed":2.7,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"weaponDamageMin":249,"weaponDamageMax":464,"stats":{"1":3,"6":9},"isBase":true}}}, +{"id":199715,"name":"Collective Warmaul","icon":"inv_hammer_04","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,11,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":64,"weaponDamageMin":369,"weaponDamageMax":555,"weaponSpeed":3.5,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":64,"weaponDamageMin":369,"weaponDamageMax":555,"stats":{"7":11,"8":27},"isBase":true}}}, +{"id":199716,"name":"Collective Sword","icon":"inv_sword_06","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,4,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"weaponSpeed":2.6,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"stats":{"6":4,"8":12},"isBase":true}}}, +{"id":199717,"name":"Collective Blade","icon":"inv_sword_47","type":13,"weaponType":9,"handType":2,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"weaponSpeed":2.6,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"stats":{"1":12,"8":4},"isBase":true}}}, +{"id":199718,"name":"Collective Smasher","icon":"inv_hammer_17","type":13,"weaponType":4,"handType":1,"stats":[0,0,0,21,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":93,"weaponDamageMax":246,"weaponSpeed":2.5,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":93,"weaponDamageMax":246,"stats":{"3":21,"4":12},"isBase":true}}}, +{"id":199719,"name":"Collective Shield","icon":"inv_shield_10","type":13,"weaponType":7,"handType":3,"stats":[37,0,12,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"0":37,"2":12,"6":20,"22":2654},"isBase":true}}}, +{"id":199720,"name":"Collective Buckler","icon":"inv_shield_09","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":37,"22":2654},"isBase":true}}}, +{"id":199721,"name":"Collective Shiv","icon":"inv_weapon_shortblade_03","type":13,"weaponType":2,"handType":2,"stats":[0,12,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":120,"weaponDamageMax":225,"weaponSpeed":1.7,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":120,"weaponDamageMax":225,"stats":{"1":12,"8":4},"isBase":true}}}, +{"id":199722,"name":"Collective Knives","icon":"ability_upgrademoonglaive","type":14,"rangedWeaponType":5,"stats":[15,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":20,"weaponDamageMin":147,"weaponDamageMax":275,"weaponSpeed":1.6,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":20,"weaponDamageMin":147,"weaponDamageMax":275,"stats":{"0":15,"6":10},"isBase":true}}}, +{"id":199723,"name":"Collective Right Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":1,"stats":[0,12,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"weaponSpeed":2.6,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"stats":{"1":12,"7":4},"isBase":true}}}, +{"id":199724,"name":"Collective Guardian","icon":"inv_sword_40","type":13,"weaponType":9,"handType":2,"stats":[0,0,18,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"weaponSpeed":2.6,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":184,"weaponDamageMax":344,"stats":{"2":18,"8":4},"isBase":true}}}, +{"id":199725,"name":"Collective Left Claw","icon":"inv_misc_monsterclaw_03","type":13,"weaponType":3,"handType":3,"stats":[0,12,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":27,"weaponDamageMin":170,"weaponDamageMax":317,"weaponSpeed":2.4,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":27,"weaponDamageMin":170,"weaponDamageMax":317,"stats":{"1":12,"7":4},"isBase":true}}}, +{"id":199747,"name":"Collective Plate Gauntlets","icon":"inv_gauntlets_26","type":7,"armorType":4,"stats":[0,0,0,37,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":47,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":47,"stats":{"3":37,"5":8,"22":657},"isBase":true}}}, +{"id":200235,"name":"Collective Cloak","icon":"inv_misc_cape_01","type":4,"armorType":1,"stats":[0,0,0,16,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":36,"ilvl":125,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"125":{"randPropPoints":36,"stats":{"3":16,"5":6,"22":177},"isBase":true}}}, +{"id":206684,"name":"Runed Talon","icon":"inv_weapon_shortblade_67","type":13,"weaponType":2,"handType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":99,"weaponDamageMax":245,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":99,"weaponDamageMax":245,"stats":{"14":225},"isBase":true}}}, +{"id":206685,"name":"Tenacious Vine Staff","icon":"inv_staff_66","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":206686,"name":"Lumbering Bludgeon","icon":"inv_mace_70","type":13,"weaponType":4,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":206687,"name":"Acute Shortbow","icon":"inv_weapon_bow_33","type":14,"rangedWeaponType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"weaponSpeed":2.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":350,"weaponDamageMax":651,"isBase":true}}}, +{"id":206688,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":206689,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":206690,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":4018},"isBase":true}}}, +{"id":206691,"name":"Embossed Brazen Shield","icon":"inv_shield_46","type":13,"weaponType":7,"handType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":50,"ilvl":162,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"162":{"randPropPoints":50,"stats":{"22":4018},"isBase":true}}}, +{"id":206692,"name":"Parrying Dagger","icon":"inv_weapon_shortblade_05","type":13,"weaponType":2,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":169,"weaponDamageMax":315,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":169,"weaponDamageMax":315,"isBase":true}}}, +{"id":206693,"name":"Flying Knives","icon":"inv_weapon_shortblade_05","type":14,"rangedWeaponType":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":29,"weaponDamageMin":220,"weaponDamageMax":410,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":29,"weaponDamageMin":220,"weaponDamageMax":410,"isBase":true}}}, +{"id":206694,"name":"Primitive Scimitar","icon":"inv_sword_110","type":13,"weaponType":9,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":206697,"name":"Chilled Wand","icon":"inv_wand_07","type":14,"rangedWeaponType":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"weaponSpeed":1.7,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":84,"weaponDamageMax":158,"isBase":true}}}, +{"id":206698,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206699,"name":"Oracle Bracelets","icon":"inv_bracer_10","type":6,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":216},"isBase":true}}}, +{"id":206700,"name":"Oracle Belt","icon":"inv_belt_02","type":8,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":278},"isBase":true}}}, +{"id":206701,"name":"Oracle Mantle","icon":"inv_shoulder_80","type":3,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,371,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":371},"isBase":true}}}, +{"id":206702,"name":"Oracle Leggings","icon":"inv_pants_cloth_10","type":9,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,433,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":433},"isBase":true}}}, +{"id":206703,"name":"Oracle Circlet","icon":"inv_helmet_125","type":1,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,402,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":402},"isBase":true}}}, +{"id":206704,"name":"Oracle Gloves","icon":"inv_gauntlets_23","type":7,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":309},"isBase":true}}}, +{"id":206705,"name":"Oracle Slippers","icon":"inv_boots_cloth_19","type":10,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,340,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":340},"isBase":true}}}, +{"id":206706,"name":"Oracle Robe","icon":"inv_chest_cloth_26","type":5,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,494,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":494},"isBase":true}}}, +{"id":206707,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":247},"isBase":true}}}, +{"id":206708,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206709,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":690},"isBase":true}}}, +{"id":206710,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":302},"isBase":true}}}, +{"id":206711,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":388},"isBase":true}}}, +{"id":206712,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":517},"isBase":true}}}, +{"id":206713,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":603},"isBase":true}}}, +{"id":206714,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":560},"isBase":true}}}, +{"id":206715,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":431},"isBase":true}}}, +{"id":206716,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":474},"isBase":true}}}, +{"id":206717,"name":"Brass-Bound Cudgel","icon":"inv_mace_62","type":13,"weaponType":4,"handType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"weaponSpeed":2.6,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":40,"weaponDamageMin":259,"weaponDamageMax":482,"isBase":true}}}, +{"id":206718,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":458},"isBase":true}}}, +{"id":206719,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":588},"isBase":true}}}, +{"id":206720,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":785},"isBase":true}}}, +{"id":206721,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":915},"isBase":true}}}, +{"id":206722,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":850},"isBase":true}}}, +{"id":206723,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":654},"isBase":true}}}, +{"id":206724,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":719},"isBase":true}}}, +{"id":206725,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1046},"isBase":true}}}, +{"id":206726,"name":"Spiked Greatstaff","icon":"inv_staff_75","type":13,"weaponType":8,"handType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"weaponSpeed":3.5,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"weaponDamageMin":518,"weaponDamageMax":778,"isBase":true}}}, +{"id":206727,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206728,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":247},"isBase":true}}}, +{"id":206729,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206730,"name":"Wolvar Bindings","icon":"inv_bracer_06","type":6,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,458,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":458},"isBase":true}}}, +{"id":206731,"name":"Wolvar Shoulderguards","icon":"inv_shoulder_77","type":3,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,785,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":785},"isBase":true}}}, +{"id":206732,"name":"Wolvar Legguards","icon":"inv_pants_mail_21","type":9,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,915,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":915},"isBase":true}}}, +{"id":206733,"name":"Wolvar Helmet","icon":"inv_helmet_121","type":1,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,850,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":850},"isBase":true}}}, +{"id":206734,"name":"Wolvar Fists","icon":"inv_gauntlets_50","type":7,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":654},"isBase":true}}}, +{"id":206735,"name":"Wolvar Armor","icon":"inv_chest_chain_17","type":5,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1046,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1046},"isBase":true}}}, +{"id":206736,"name":"Wolvar Greaves","icon":"inv_boots_chain_07","type":10,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,719,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":719},"isBase":true}}}, +{"id":206737,"name":"Wolvar Belt","icon":"inv_belt_26","type":8,"armorType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,588,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":588},"isBase":true}}}, +{"id":206738,"name":"Stirrup Ring","icon":"inv_jewelry_ring_35","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206739,"name":"Gold Clasped Chain","icon":"inv_jewelry_necklace_02","type":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"isBase":true}}}, +{"id":206740,"name":"Fleece Cloak","icon":"inv_misc_cape_04","type":4,"armorType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":247},"isBase":true}}}, +{"id":206741,"name":"Magnataur Girdle","icon":"inv_belt_22","type":8,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,873,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":873},"isBase":true}}}, +{"id":206742,"name":"Magnataur Sabatons","icon":"inv_boots_plate_02","type":10,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1067,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":1067},"isBase":true}}}, +{"id":206743,"name":"Magnataur Breastplate","icon":"inv_chest_plate_23","type":5,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1552,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1552},"isBase":true}}}, +{"id":206744,"name":"Magnataur Gauntlets","icon":"inv_gauntlets_28","type":7,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,970,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":970},"isBase":true}}}, +{"id":206745,"name":"Magnataur Helm","icon":"inv_helmet_105","type":1,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1261,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1261},"isBase":true}}}, +{"id":206746,"name":"Magnataur Legplates","icon":"inv_pants_plate_27","type":9,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1358,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":1358},"isBase":true}}}, +{"id":206747,"name":"Magnataur Pauldrons","icon":"inv_shoulder_71","type":3,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":1164},"isBase":true}}}, +{"id":206748,"name":"Magnataur Bracers","icon":"inv_bracer_07","type":6,"armorType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":679},"isBase":true}}}, +{"id":206750,"name":"Ghrino Belt","icon":"inv_belt_03","type":8,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,388,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":388},"isBase":true}}}, +{"id":206751,"name":"Ghrino Boots","icon":"inv_boots_08","type":10,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,474,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":474},"isBase":true}}}, +{"id":206752,"name":"Ghrino Vest","icon":"inv_chest_leather_01","type":5,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,690,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":690},"isBase":true}}}, +{"id":206753,"name":"Ghrino Gloves","icon":"inv_gauntlets_05","type":7,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,431,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":431},"isBase":true}}}, +{"id":206754,"name":"Ghrino Cover","icon":"inv_helmet_109","type":1,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":560},"isBase":true}}}, +{"id":206755,"name":"Ghrino Britches","icon":"inv_pants_leather_09","type":9,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,603,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":93,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":93,"stats":{"22":603},"isBase":true}}}, +{"id":206756,"name":"Ghrino Pauldrons","icon":"inv_shoulder_74","type":3,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":69,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":69,"stats":{"22":517},"isBase":true}}}, +{"id":206757,"name":"Ghrino Bracers","icon":"inv_bracer_08","type":6,"armorType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,302,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":52,"ilvl":166,"quality":2,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"166":{"randPropPoints":52,"stats":{"22":302},"isBase":true}}}, +{"id":211817,"name":"Ring of Ghoulish Glee","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,45,68,0,0,39,48,0,0,0,0,0,134,134,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"1":45,"2":68,"5":39,"6":48,"12":134,"13":134},"isBase":true}}}, +{"id":211844,"name":"The Horseman's Seal","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,50,51,0,39,0,48,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":50,"3":51,"5":39,"7":48,"14":78},"isBase":true}}}, +{"id":211847,"name":"Wicked Witch's Band","icon":"inv_misc_bag_28_halloween","type":11,"stats":[0,0,50,51,0,0,45,0,0,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,23],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":127,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"scalingOptions":{"232":{"randPropPoints":127,"stats":{"2":50,"3":51,"6":45,"14":78,"26":23},"isBase":true}}}, +{"id":211850,"name":"The Horseman's Horrific Helm","icon":"inv_helmet_21","type":1,"armorType":4,"stats":[120,0,137,0,0,50,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1944,0,0,0,0],"gemSockets":[1,4],"socketBonus":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":229,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"expansion":1,"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"scalingOptions":{"232":{"randPropPoints":229,"stats":{"0":120,"2":137,"5":50,"6":63,"22":1944},"isBase":true}}}, +{"id":211851,"name":"The Horseman's Baleful Blade","icon":"inv_sword_07","type":13,"weaponType":9,"handType":1,"stats":[0,35,52,0,0,34,0,0,34,0,0,0,102,102,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":98,"weaponDamageMin":595,"weaponDamageMax":1105,"weaponSpeed":2.7,"ilvl":232,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"sources":[{"drop":{"difficulty":1,"npcId":23682,"zoneId":796}}],"scalingOptions":{"232":{"randPropPoints":98,"weaponDamageMin":595,"weaponDamageMax":1105,"stats":{"1":35,"2":52,"5":34,"8":34,"12":102,"13":102},"isBase":true}}}, +{"id":232012,"name":"Coren's Chilled Chromium Coaster","icon":"inv_jewelry_talisman_08","type":12,"stats":[0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"6":304},"isBase":true}}}, +{"id":232013,"name":"Mithril Stopwatch","icon":"inv_misc_pocketwatch_02","type":12,"stats":[0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"6":304},"isBase":true}}}, +{"id":232014,"name":"Petrified Pickled Egg","icon":"inv_egg_02","type":12,"stats":[0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"3":304},"isBase":true}}}, +{"id":232015,"name":"Brawler's Trophy","icon":"inv_misc_bone_08","type":12,"stats":[0,0,0,0,0,0,0,0,0,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"9":304},"isBase":true}}}, +{"id":232016,"name":"Bubblier Brightbrew Charm","icon":"inv_drink_08","type":12,"stats":[0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":456},"isBase":true}}}, +{"id":232017,"name":"Bitterer Balebrew Charm","icon":"inv_drink_04","type":12,"stats":[0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":456,"ilvl":353,"quality":4,"unique":true,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":456,"stats":{"2":456},"isBase":true}}}, +{"id":232030,"name":"Direbrew's Bloodied Shanker","icon":"inv_drink_10","type":13,"weaponType":2,"handType":2,"stats":[0,138,207,0,0,80,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1224,"weaponDamageMax":2273,"weaponSpeed":2,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1224,"weaponDamageMax":2273,"stats":{"1":138,"2":207,"5":80,"6":99},"isBase":true}}}, +{"id":232031,"name":"Tremendous Tankard O' Terror","icon":"inv_drink_03","type":13,"weaponType":4,"handType":2,"stats":[0,138,207,0,0,0,94,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"socketBonus":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"weaponSpeed":2.6,"ilvl":353,"quality":4,"classAllowlist":[1,2,3,4,5,6,7,8,9,10,11],"scalingOptions":{"353":{"randPropPoints":263,"weaponDamageMin":1591,"weaponDamageMax":2955,"stats":{"1":138,"2":207,"6":94,"7":89},"isBase":true}}} ], "randomSuffixes":[ ], "enchants":[ -{"effectId":983,"spellId":44500,"name":"Superior Agility","type":4,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":983,"spellId":44589,"name":"Superior Agility","type":10,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1075,"spellId":44528,"name":"Greater Fortitude","type":10,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1099,"spellId":60663,"name":"Major Agility","type":4,"stats":[0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1103,"spellId":44633,"name":"Exceptional Agility","type":13,"stats":[0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1119,"spellId":44555,"name":"Exceptional Intellect","type":6,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1128,"spellId":60653,"name":"Greater Intellect","type":13,"enchantType":2,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1147,"spellId":44593,"name":"Major Spirit","type":6,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1147,"spellId":44508,"name":"Greater Spirit","type":10,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1262,"itemId":37330,"spellId":44596,"name":"Superior Arcane Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1354,"itemId":37331,"spellId":44556,"name":"Superior Fire Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1400,"spellId":44494,"name":"Superior Nature Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0],"quality":1}, -{"effectId":1446,"spellId":44590,"name":"Superior Shadow Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0],"quality":1}, -{"effectId":1597,"itemId":44490,"spellId":60763,"name":"Greater Assault","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1600,"spellId":60616,"name":"Striking","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1603,"spellId":60668,"name":"Crusher","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1606,"spellId":60621,"name":"Greater Potency","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1951,"itemId":37347,"spellId":44591,"name":"Superior Dodge","type":4,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":1952,"spellId":44489,"name":"Dodge","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":1953,"spellId":47766,"name":"Greater Dodge","type":5,"stats":[0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2326,"spellId":44635,"name":"Greater Spellpower","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2332,"itemId":44498,"spellId":60767,"name":"Superior Spellpower","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":2381,"spellId":44509,"name":"Greater Mana Restoration","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10],"quality":1}, -{"effectId":2661,"spellId":44616,"name":"Greater Stats","type":6,"stats":[6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":2988,"itemId":29487,"spellId":35419,"name":"Nature Armor Kit","type":5,"extraTypes":[9,7,10],"enchantType":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0],"quality":2}, -{"effectId":2998,"itemId":29187,"spellId":35441,"name":"Inscription of Endurance","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,0,0,0,0,0],"quality":2}, -{"effectId":3222,"spellId":44529,"name":"Major Agility","type":7,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3230,"spellId":44483,"name":"Superior Frost Resistance","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3231,"spellId":44598,"name":"Expertise","type":6,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3231,"spellId":44484,"name":"Expertise","type":7,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3232,"itemId":44491,"spellId":47901,"name":"Tuskarr's Vitality","type":10,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3233,"spellId":27958,"name":"Exceptional Mana","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0],"quality":1}, -{"effectId":3234,"spellId":44488,"name":"Precision","type":7,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3236,"spellId":44492,"name":"Mighty Health","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0],"quality":1}, -{"effectId":3238,"spellId":44506,"name":"Gatherer","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3239,"itemId":37344,"spellId":44524,"name":"Icebreaker","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3241,"itemId":44494,"spellId":44576,"name":"Lifeward","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3243,"spellId":44582,"name":"Spell Piercing","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3244,"spellId":44584,"name":"Greater Vitality","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7],"quality":1}, -{"effectId":3245,"itemId":37340,"spellId":44588,"name":"Exceptional Resilience","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3246,"spellId":44592,"name":"Exceptional Spellpower","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3247,"itemId":44473,"spellId":44595,"name":"Scourgebane","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3251,"itemId":37339,"spellId":44621,"name":"Giant Slayer","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3252,"spellId":44623,"name":"Super Stats","type":5,"stats":[8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3253,"itemId":44485,"spellId":44625,"name":"Armsman","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3256,"itemId":37349,"spellId":44631,"name":"Shadow Armor","type":4,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3260,"spellId":44769,"name":"Glove Reinforcements","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0],"quality":2}, -{"effectId":3294,"itemId":44471,"spellId":47672,"name":"Mighty Armor","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0],"quality":2}, -{"effectId":3296,"itemId":44488,"spellId":47899,"name":"Wisdom","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3297,"spellId":47900,"name":"Super Health","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0],"quality":1}, -{"effectId":3325,"itemId":38371,"spellId":50901,"name":"Jormungar Leg Armor","type":9,"stats":[0,15,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3326,"itemId":38372,"spellId":50902,"name":"Nerubian Leg Armor","type":9,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3327,"spellId":60583,"name":"Jormungar Leg Reinforcements","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3328,"spellId":60584,"name":"Nerubian Leg Reinforcements","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3329,"itemId":38375,"spellId":50906,"name":"Borean Armor Kit","type":1,"extraTypes":[5,3,9,7,10],"enchantType":3,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3330,"itemId":38376,"spellId":50909,"name":"Heavy Borean Armor Kit","type":1,"extraTypes":[5,3,9,7,10],"enchantType":3,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3365,"spellId":53323,"name":"Rune of Swordshattering","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3366,"spellId":53331,"name":"Rune of Lichbane","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3367,"spellId":53342,"name":"Rune of Spellshattering","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3368,"spellId":53344,"name":"Rune of the Fallen Crusader","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3369,"spellId":53341,"name":"Rune of Cinderglacier","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3370,"spellId":53343,"name":"Rune of Razorice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3594,"spellId":54446,"name":"Rune of Swordbreaking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3595,"spellId":54447,"name":"Rune of Spellbreaking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3607,"itemId":41146,"spellId":55076,"name":"Sun Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3608,"itemId":41167,"spellId":55135,"name":"Heartseeker Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3718,"itemId":41601,"spellId":55630,"name":"Shining Spellthread","type":9,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3719,"itemId":41602,"spellId":55631,"name":"Brilliant Spellthread","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3720,"itemId":41603,"spellId":55632,"name":"Azure Spellthread","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3721,"itemId":41604,"spellId":55634,"name":"Sapphire Spellthread","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3722,"spellId":55642,"name":"Lightweave Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3728,"spellId":55769,"name":"Darkglow Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3730,"spellId":55777,"name":"Swordguard Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3731,"itemId":41976,"spellId":55836,"name":"Titanium Weapon Chain","type":13,"stats":[0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3748,"itemId":42500,"spellId":56353,"name":"Titanium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3756,"spellId":57683,"name":"Fur Lining - Attack Power","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,130,130,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3757,"spellId":57690,"name":"Fur Lining - Stamina","type":6,"stats":[0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3758,"spellId":57691,"name":"Fur Lining - Spell Power","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3759,"spellId":57692,"name":"Fur Lining - Fire Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3760,"spellId":57694,"name":"Fur Lining - Frost Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3761,"spellId":57696,"name":"Fur Lining - Shadow Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3762,"spellId":57699,"name":"Fur Lining - Nature Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3763,"spellId":57701,"name":"Fur Lining - Arcane Resist","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":3788,"itemId":44496,"spellId":59619,"name":"Accuracy","type":13,"stats":[0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3789,"itemId":44492,"spellId":59621,"name":"Berserking","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3790,"itemId":44495,"spellId":59625,"name":"Black Magic","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3791,"spellId":59636,"name":"Stamina","type":11,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3793,"itemId":44067,"spellId":59771,"name":"Inscription of Triumph","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3794,"itemId":44068,"spellId":59773,"name":"Inscription of Dominance","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3795,"itemId":44069,"spellId":59777,"name":"Arcanum of Triumph","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3796,"itemId":44075,"spellId":59784,"name":"Arcanum of Dominance","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3806,"itemId":44129,"spellId":59927,"name":"Lesser Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3807,"itemId":44130,"spellId":59928,"name":"Lesser Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,5],"quality":3}, -{"effectId":3808,"itemId":44871,"spellId":59934,"name":"Greater Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3809,"itemId":44872,"spellId":59936,"name":"Greater Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,8],"quality":4}, -{"effectId":3810,"itemId":44874,"spellId":59937,"name":"Greater Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3811,"itemId":44873,"spellId":59941,"name":"Greater Inscription of the Pinnacle","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3812,"itemId":44137,"spellId":59944,"name":"Arcanum of the Frosty Soul","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3813,"itemId":44138,"spellId":59945,"name":"Arcanum of Toxic Warding","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0],"quality":3}, -{"effectId":3814,"itemId":44139,"spellId":59946,"name":"Arcanum of the Fleeing Shadow","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0],"quality":3}, -{"effectId":3815,"itemId":44140,"spellId":59947,"name":"Arcanum of the Eclipsed Moon","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3816,"itemId":44141,"spellId":59948,"name":"Arcanum of the Flame's Soul","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3817,"itemId":44879,"spellId":59954,"name":"Arcanum of Torment","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3818,"itemId":44878,"spellId":59955,"name":"Arcanum of the Stalwart Protector","type":1,"stats":[0,0,37,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3819,"itemId":44876,"spellId":59960,"name":"Arcanum of Blissful Mending","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,10],"quality":3}, -{"effectId":3820,"itemId":44877,"spellId":59970,"name":"Arcanum of Burning Mysteries","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3822,"itemId":38373,"spellId":60581,"name":"Frosthide Leg Armor","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3823,"itemId":38374,"spellId":60582,"name":"Icescale Leg Armor","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3824,"spellId":60606,"name":"Assault","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3825,"spellId":60609,"name":"Speed","type":4,"stats":[0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3826,"spellId":60623,"name":"Icewalker","type":10,"stats":[0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3827,"itemId":44483,"spellId":60691,"name":"Massacre","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3828,"spellId":44630,"name":"Greater Savagery","type":13,"enchantType":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3829,"spellId":44513,"name":"Greater Assult","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3830,"spellId":44629,"name":"Exceptional Spellpower","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3831,"itemId":44472,"spellId":47898,"name":"Greater Speed","type":4,"stats":[0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3832,"itemId":44489,"spellId":60692,"name":"Powerful Stats","type":5,"stats":[10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3833,"itemId":44486,"spellId":60707,"name":"Superior Potency","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3834,"itemId":44487,"spellId":60714,"name":"Mighty Spellpower","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3835,"spellId":61117,"name":"Master's Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3836,"spellId":61118,"name":"Master's Inscription of the Crag","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,8],"quality":1,"requiredProfession":6}, -{"effectId":3837,"spellId":61119,"name":"Master's Inscription of the Pinnacle","type":3,"stats":[0,0,0,0,0,0,0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3838,"spellId":61120,"name":"Master's Inscription of the Storm","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":3839,"spellId":44645,"name":"Assault","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3840,"spellId":44636,"name":"Greater Spellpower","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":3842,"itemId":44875,"spellId":61271,"name":"Arcanum of the Savage Gladiator","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3843,"itemId":44739,"spellId":61468,"name":"Diamond-cut Refractor Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3844,"spellId":44510,"name":"Exceptional Spirit","type":13,"stats":[0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":3845,"itemId":44484,"spellId":44575,"name":"Greater Assault","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3847,"spellId":62158,"name":"Rune of the Stoneskin Gargoyle","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":3849,"itemId":44936,"spellId":62201,"name":"Titanium Plating","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3850,"itemId":44944,"spellId":62256,"name":"Major Stamina","type":6,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":3852,"itemId":44957,"spellId":62384,"name":"Greater Inscription of the Gladiator","type":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3853,"itemId":44963,"spellId":62447,"name":"Earthen Leg Armor","type":9,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3854,"itemId":45059,"spellId":62948,"name":"Staff - Greater Spellpower","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3870,"itemId":46348,"spellId":64579,"name":"Blood Draining","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":3872,"spellId":56039,"name":"Sanctified Spellthread","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3873,"spellId":56034,"name":"Master's Spellthread","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":3875,"itemId":44131,"spellId":59929,"name":"Lesser Inscription of the Axe","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3876,"itemId":44132,"spellId":59932,"name":"Lesser Inscription of the Pinnacle","type":3,"stats":[0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":3883,"spellId":70164,"name":"Rune of the Nerubian Carapace","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"phase":1,"classAllowlist":[10]}, -{"effectId":4061,"spellId":74132,"name":"Enchant Gloves - Mastery","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4062,"spellId":74189,"name":"Enchant Boots - Earthen Vitality","type":10,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4063,"spellId":74191,"name":"Enchant Chest - Mighty Stats","type":5,"stats":[15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4064,"spellId":74192,"name":"Enchant Cloak - Greater Spell Piercing","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4065,"spellId":74193,"name":"Enchant Bracer - Speed","type":6,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4066,"spellId":74195,"name":"Enchant Weapon - Mending","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4067,"spellId":74197,"name":"Enchant Weapon - Avalanche","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4068,"spellId":74198,"name":"Enchant Gloves - Haste","type":7,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4069,"spellId":74199,"name":"Enchant Boots - Haste","type":10,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4070,"spellId":74200,"name":"Enchant Chest - Stamina","type":5,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4071,"spellId":74201,"name":"Enchant Bracer - Critical Strike","type":6,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4072,"spellId":74202,"name":"Enchant Cloak - Intellect","type":4,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4073,"spellId":74207,"name":"Enchant Shield - Protection","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,0,0,0],"quality":1}, -{"effectId":4074,"spellId":74211,"name":"Enchant Weapon - Elemental Slayer","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4075,"spellId":74212,"name":"Enchant Gloves - Exceptional Strength","type":7,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4076,"spellId":74213,"name":"Enchant Boots - Major Agility","type":10,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4077,"spellId":74214,"name":"Enchant Chest - Mighty Resilience","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4078,"spellId":74215,"name":"Enchant Ring - Strength","type":11,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4079,"spellId":74216,"name":"Enchant Ring - Agility","type":11,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4080,"spellId":74217,"name":"Enchant Ring - Intellect","type":11,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4081,"spellId":74218,"name":"Enchant Ring - Greater Stamina","type":11,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, -{"effectId":4082,"spellId":74220,"name":"Enchant Gloves - Greater Expertise","type":7,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4083,"spellId":74223,"name":"Enchant Weapon - Hurricane","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4084,"spellId":74225,"name":"Enchant Weapon - Heartsong","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4085,"spellId":74226,"name":"Enchant Shield - Mastery","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4086,"spellId":74229,"name":"Enchant Bracer - Superior Dodge","type":6,"stats":[0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4087,"spellId":74230,"name":"Enchant Cloak - Critical Strike","type":4,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4088,"spellId":74231,"name":"Enchant Chest - Exceptional Spirit","type":5,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4089,"spellId":74232,"name":"Enchant Bracer - Precision","type":6,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4090,"spellId":74234,"name":"Enchant Cloak - Protection","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0,0,0],"quality":1}, -{"effectId":4091,"spellId":74235,"name":"Enchant Off-Hand - Superior Intellect","type":13,"enchantType":5,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4092,"spellId":74236,"name":"Enchant Boots - Precision","type":10,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4093,"spellId":74237,"name":"Enchant Bracer - Exceptional Spirit","type":6,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4094,"spellId":74238,"name":"Enchant Boots - Mastery","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4095,"spellId":74239,"name":"Enchant Bracer - Greater Expertise","type":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4096,"spellId":74240,"name":"Enchant Cloak - Greater Intellect","type":4,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4097,"spellId":74242,"name":"Enchant Weapon - Power Torrent","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4098,"spellId":74244,"name":"Enchant Weapon - Windwalk","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4099,"spellId":74246,"name":"Enchant Weapon - Landslide","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4100,"spellId":74247,"name":"Enchant Cloak - Greater Critical Strike","type":4,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4101,"spellId":74248,"name":"Enchant Bracer - Greater Critical Strike","type":6,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4102,"spellId":74250,"name":"Enchant Chest - Peerless Stats","type":5,"stats":[20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4103,"spellId":74251,"name":"Enchant Chest - Greater Stamina","type":5,"stats":[0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4104,"spellId":74253,"name":"Enchant Boots - Lavawalker","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4105,"spellId":74252,"name":"Enchant Boots - Assassin's Step","type":10,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4106,"spellId":74254,"name":"Enchant Gloves - Mighty Strength","type":7,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4107,"spellId":74255,"name":"Enchant Gloves - Greater Mastery","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4108,"spellId":74256,"name":"Enchant Bracer - Greater Speed","type":6,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4109,"itemId":54449,"spellId":75149,"name":"Ghostly Spellthread","type":9,"stats":[0,0,0,55,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4110,"itemId":54450,"spellId":75150,"name":"Powerful Ghostly Spellthread","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4111,"itemId":54447,"spellId":75151,"name":"Enchanted Spellthread","type":9,"stats":[0,0,65,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4112,"itemId":54448,"spellId":75152,"name":"Powerful Enchanted Spellthread","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4113,"spellId":75154,"name":"Master's Spellthread","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4114,"spellId":75155,"name":"Sanctified Spellthread","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4115,"spellId":75172,"name":"Lightweave Embroidery","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4116,"spellId":75175,"name":"Darkglow Embroidery","type":4,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4118,"spellId":75178,"name":"Swordguard Embroidery","type":4,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, -{"effectId":4120,"itemId":56477,"spellId":78165,"name":"Savage Armor Kit","type":1,"extraTypes":[3,5,9,10,7],"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4121,"itemId":56517,"spellId":78166,"name":"Heavy Savage Armor Kit","type":1,"extraTypes":[3,5,9,10,7],"stats":[0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4122,"itemId":56502,"spellId":78169,"name":"Scorched Leg Armor","type":9,"stats":[0,0,0,0,0,0,45,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4124,"itemId":56503,"spellId":78170,"name":"Twilight Leg Armor","type":9,"stats":[0,45,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4126,"itemId":56550,"spellId":78171,"name":"Dragonscale Leg Armor","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4127,"itemId":56551,"spellId":78172,"name":"Charscale Leg Armor","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4175,"itemId":59594,"spellId":81932,"name":"Gnomish X-Ray Scope","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4176,"itemId":59595,"spellId":81933,"name":"R19 Threatfinder","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4177,"itemId":59596,"spellId":81934,"name":"Safety Catch Removal Kit","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4189,"spellId":85007,"name":"Draconic Embossment - Stamina","type":6,"stats":[0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4190,"spellId":85008,"name":"Draconic Embossment - Agility","type":6,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4191,"spellId":85009,"name":"Draconic Embossment - Strength","type":6,"stats":[130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4192,"spellId":85010,"name":"Draconic Embossment - Intellect","type":6,"stats":[0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4193,"spellId":86375,"name":"Swiftsteel Inscription","type":3,"stats":[0,130,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4194,"spellId":86401,"name":"Lionsmane Inscription","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4195,"spellId":86402,"name":"Inscription of the Earth Prince","type":3,"stats":[0,0,195,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4196,"spellId":86403,"name":"Felfire Inscription","type":3,"stats":[0,0,0,130,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, -{"effectId":4197,"itemId":62321,"spellId":86847,"name":"Inscription of Unbreakable Quartz","type":3,"stats":[0,0,45,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4198,"itemId":68717,"spellId":86854,"name":"Greater Inscription of Unbreakable Quartz","type":3,"stats":[0,0,75,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4199,"itemId":62342,"spellId":86898,"name":"Inscription of Charged Lodestone","type":3,"stats":[0,0,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4200,"itemId":68715,"spellId":86899,"name":"Greater Inscription of Charged Lodestone","type":3,"stats":[0,0,0,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4201,"itemId":62344,"spellId":86900,"name":"Inscription of Jagged Stone","type":3,"stats":[30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4202,"itemId":68716,"spellId":86901,"name":"Greater Inscription of Jagged Stone","type":3,"stats":[50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4203,"spellId":86906,"name":"Inscription of Shattered Crystal","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4204,"itemId":68714,"spellId":86907,"name":"Greater Inscription of Shattered Crystal","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4205,"itemId":62347,"spellId":86909,"name":"Inscription of Shattered Crystal","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4206,"itemId":68764,"spellId":86931,"name":"Arcanum of the Earthern Ring","type":1,"stats":[0,0,90,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4207,"itemId":68765,"spellId":86932,"name":"Arcanum of Hyjal","type":1,"stats":[0,0,0,60,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4208,"itemId":68767,"spellId":86933,"name":"Arcanum of the Highlands","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4209,"itemId":68766,"spellId":86934,"name":"Arcanum of Ramkahen","type":1,"stats":[0,60,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4215,"itemId":55055,"spellId":92433,"name":"Elementium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4216,"itemId":55056,"spellId":92437,"name":"Pyrium Shield Spike","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4217,"itemId":55057,"spellId":93448,"name":"Pyrium Weapon Chain","type":13,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"effectId":4227,"spellId":95471,"name":"Enchant 2H Weapon - Mighty Agility","type":13,"enchantType":1,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"effectId":4245,"itemId":68770,"spellId":96245,"name":"Arcanum of Vicious Intellect","type":1,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4246,"itemId":68769,"spellId":96246,"name":"Arcanum of Vicious Agility","type":1,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4247,"itemId":68768,"spellId":96247,"name":"Arcanum of Vicious Strength","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4248,"itemId":68772,"spellId":96249,"name":"Greater Inscription of Vicious Intellect","type":3,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4249,"itemId":68773,"spellId":96250,"name":"Greater Inscription of Vicious Strength","type":3,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4250,"itemId":68815,"spellId":96251,"name":"Greater Inscription of Vicious Agility","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4256,"spellId":96261,"name":"Enchant Bracer - Major Strength","type":6,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4257,"spellId":96262,"name":"Enchant Bracer - Mighty Intellect","type":6,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4258,"spellId":96264,"name":"Enchant Bracer - Agility","type":6,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"effectId":4267,"itemId":70139,"spellId":99623,"name":"Flintlocke's Woodchucker","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"classAllowlist":[2]}, -{"effectId":4270,"itemId":71720,"spellId":101598,"name":"Drakehide Leg Armor","type":9,"stats":[0,0,145,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"effectId":4439,"spellId":85068,"name":"Charscale Leg Reinforcements","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, -{"effectId":4440,"spellId":85067,"name":"Dragonbone Leg Reinforcements","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8} +{"effectId":15,"itemId":2304,"spellId":2831,"name":"Light Armor Kit","icon":"inv_misc_armorkit_17","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0],"quality":1}, +{"effectId":16,"itemId":2313,"spellId":2832,"name":"Medium Armor Kit","icon":"inv_misc_armorkit_15","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0],"quality":1}, +{"effectId":17,"itemId":4265,"spellId":2833,"name":"Heavy Armor Kit","icon":"inv_misc_armorkit_16","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0],"quality":1}, +{"effectId":18,"itemId":8173,"spellId":10344,"name":"Thick Armor Kit","icon":"inv_misc_armorkit_07","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0],"quality":1}, +{"effectId":24,"itemId":6342,"spellId":7443,"name":"Enchant Chest - Minor Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0],"quality":2}, +{"effectId":30,"itemId":4405,"spellId":3974,"name":"Crude Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":32,"itemId":4406,"spellId":3975,"name":"Standard Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":33,"itemId":4407,"spellId":3976,"name":"Accurate Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":34,"itemId":6043,"spellId":7218,"name":"Weapon Counterweight","icon":"inv_misc_orb_01","type":13,"stats":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":36,"itemId":5421,"spellId":6296,"name":"Enchant: Fiery Blaze","icon":"inv_jewelry_talisman_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":37,"itemId":6041,"spellId":7220,"name":"Weapon Chain","icon":"spell_frost_chainsofice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":41,"itemId":38766,"spellId":7420,"name":"Enchant Chest - Minor Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0],"quality":1}, +{"effectId":43,"itemId":6042,"spellId":7216,"name":"Iron Shield Spike","icon":"inv_misc_armorkit_01","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":44,"itemId":38767,"spellId":7426,"name":"Enchant Chest - Minor Absorption","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":63,"itemId":38798,"spellId":13538,"name":"Enchant Chest - Lesser Absorption","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":66,"itemId":6376,"spellId":7863,"name":"Enchant Boots - Minor Stamina","icon":"inv_misc_note_01","type":10,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":241,"itemId":38794,"spellId":13503,"name":"Enchant Weapon - Lesser Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":242,"itemId":38773,"spellId":7748,"name":"Enchant Chest - Lesser Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0],"quality":1}, +{"effectId":243,"itemId":6344,"spellId":7766,"name":"Enchant Bracer - Minor Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":246,"itemId":6346,"spellId":7776,"name":"Enchant Chest - Lesser Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0],"quality":2}, +{"effectId":247,"itemId":6377,"spellId":7867,"name":"Enchant Boots - Minor Agility","icon":"inv_misc_note_01","type":10,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":248,"itemId":6347,"spellId":7782,"name":"Enchant Bracer - Minor Strength","icon":"inv_misc_note_01","type":6,"stats":[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":249,"itemId":6348,"spellId":7786,"name":"Enchant Weapon - Minor Beastslayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":250,"itemId":38780,"spellId":7788,"name":"Enchant Weapon - Minor Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":254,"itemId":38782,"spellId":7857,"name":"Enchant Chest - Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0],"quality":1}, +{"effectId":255,"itemId":11038,"spellId":13380,"name":"Enchant 2H Weapon - Lesser Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":369,"itemId":35423,"spellId":34001,"name":"Enchant Bracer - Major Intellect","icon":"inv_bracer_09","type":6,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":463,"itemId":7967,"spellId":9781,"name":"Mithril Shield Spike","icon":"inv_misc_armorkit_02","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":464,"itemId":7969,"spellId":9783,"name":"Mithril Spurs","icon":"ability_rogue_sprint","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":663,"itemId":10546,"spellId":12459,"name":"Deadly Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":664,"itemId":10548,"spellId":12460,"name":"Sniper Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":723,"itemId":6349,"spellId":7793,"name":"Enchant 2H Weapon - Lesser Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":724,"itemId":38810,"spellId":13644,"name":"Enchant Boots - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":744,"itemId":38790,"spellId":13421,"name":"Enchant Cloak - Lesser Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0],"quality":1}, +{"effectId":783,"itemId":6345,"spellId":7771,"name":"Enchant Cloak - Minor Protection","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0],"quality":2}, +{"effectId":803,"itemId":11207,"spellId":13898,"name":"Enchant Weapon - Fiery Weapon","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":805,"itemId":38848,"spellId":13943,"name":"Enchant Weapon - Greater Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":823,"itemId":11101,"spellId":13536,"name":"Enchant Bracer - Lesser Strength","icon":"inv_misc_note_01","type":6,"stats":[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":843,"itemId":38799,"spellId":13607,"name":"Enchant Chest - Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0],"quality":1}, +{"effectId":844,"itemId":11150,"spellId":13612,"name":"Enchant Gloves - Mining","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":845,"itemId":11151,"spellId":13617,"name":"Enchant Gloves - Herbalism","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":846,"itemId":19971,"spellId":24302,"name":"Eternium Fishing Line","icon":"inv_fabric_mageweave_02","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":847,"itemId":38804,"spellId":13626,"name":"Enchant Chest - Minor Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":848,"itemId":38806,"spellId":13635,"name":"Enchant Cloak - Defense","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0],"quality":1}, +{"effectId":849,"itemId":38807,"spellId":13637,"name":"Enchant Boots - Lesser Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":850,"itemId":38808,"spellId":13640,"name":"Enchant Chest - Greater Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0],"quality":1}, +{"effectId":851,"itemId":16220,"spellId":20024,"name":"Enchant Boots - Spirit","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":852,"itemId":38830,"spellId":13836,"name":"Enchant Boots - Stamina","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":853,"itemId":11164,"spellId":13653,"name":"Enchant Weapon - Lesser Beastslayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":854,"itemId":11165,"spellId":13655,"name":"Enchant Weapon - Lesser Elemental Slayer","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":856,"itemId":38817,"spellId":13661,"name":"Enchant Bracer - Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":857,"itemId":38818,"spellId":13663,"name":"Enchant Chest - Greater Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0],"quality":1}, +{"effectId":863,"itemId":11168,"spellId":13689,"name":"Enchant Shield - Lesser Parry","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":865,"itemId":11166,"spellId":13698,"name":"Enchant Gloves - Skinning","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":866,"itemId":38824,"spellId":13700,"name":"Enchant Chest - Lesser Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":884,"itemId":38825,"spellId":13746,"name":"Enchant Cloak - Greater Defense","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0],"quality":1}, +{"effectId":904,"itemId":38844,"spellId":13935,"name":"Enchant Boots - Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":905,"itemId":38829,"spellId":13822,"name":"Enchant Bracer - Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":906,"itemId":11203,"spellId":13841,"name":"Enchant Gloves - Advanced Mining","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":907,"itemId":11204,"spellId":13846,"name":"Enchant Bracer - Greater Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":908,"itemId":38833,"spellId":13858,"name":"Enchant Chest - Superior Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0],"quality":1}, +{"effectId":909,"itemId":11205,"spellId":13868,"name":"Enchant Gloves - Advanced Herbalism","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":910,"itemId":33149,"spellId":25083,"name":"Enchant Cloak - Stealth","icon":"inv_misc_note_01","type":4,"stats":[0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":911,"itemId":38837,"spellId":13890,"name":"Enchant Boots - Minor Speed","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":912,"itemId":11208,"spellId":13915,"name":"Enchant Weapon - Demonslaying","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":913,"itemId":38841,"spellId":13917,"name":"Enchant Chest - Superior Mana","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0],"quality":1}, +{"effectId":923,"itemId":11223,"spellId":13931,"name":"Enchant Bracer - Dodge","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":924,"itemId":38768,"spellId":7428,"name":"Enchant Bracer - Minor Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":925,"itemId":11163,"spellId":13646,"name":"Enchant Bracer - Lesser Dodge","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":926,"itemId":187814,"spellId":359895,"name":"Enchant Shield - Frost Resistance","icon":"spell_frost_frostward","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0],"quality":1}, +{"effectId":927,"itemId":38846,"spellId":13939,"name":"Enchant Bracer - Greater Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":928,"itemId":38847,"spellId":13941,"name":"Enchant Chest - Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":929,"itemId":16215,"spellId":20020,"name":"Enchant Boots - Greater Stamina","icon":"inv_misc_note_01","type":10,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":930,"itemId":11226,"spellId":13947,"name":"Enchant Gloves - Riding Skill","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":931,"itemId":38851,"spellId":13948,"name":"Enchant Gloves - Minor Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":943,"itemId":38796,"spellId":13529,"name":"Enchant 2H Weapon - Lesser Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":963,"itemId":38845,"spellId":13937,"name":"Enchant 2H Weapon - Greater Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1071,"itemId":28282,"spellId":34009,"name":"Enchant Shield - Major Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1075,"itemId":38966,"spellId":44528,"name":"Enchant Boots - Greater Fortitude","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1099,"itemId":44457,"spellId":60663,"name":"Enchant Cloak - Major Agility","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1103,"itemId":38995,"spellId":44633,"name":"Enchant Weapon - Exceptional Agility","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1128,"itemId":44455,"spellId":60653,"name":"Enchant Shield - Greater Intellect","icon":"inv_scroll_03","type":13,"enchantType":2,"stats":[0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1147,"itemId":38980,"spellId":44593,"name":"Enchant Bracer - Major Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1593,"itemId":187737,"spellId":359639,"name":"Enchant Bracer - Assault","icon":"inv_misc_desecrated_clothbracer","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1597,"itemId":44469,"spellId":60763,"name":"Enchant Boots - Greater Assault","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1600,"itemId":38971,"spellId":60616,"name":"Enchant Bracer - Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1603,"itemId":44458,"spellId":60668,"name":"Enchant Gloves - Crusher","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1606,"itemId":44453,"spellId":60621,"name":"Enchant Weapon - Greater Potency","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1704,"itemId":12645,"spellId":16623,"name":"Thorium Shield Spike","icon":"inv_misc_armorkit_20","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1843,"itemId":15564,"spellId":19057,"name":"Rugged Armor Kit","icon":"inv_misc_armorkit_09","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"quality":1}, +{"effectId":1883,"itemId":16214,"spellId":20008,"name":"Enchant Bracer - Greater Intellect","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1884,"itemId":16218,"spellId":20009,"name":"Enchant Bracer - Superior Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1885,"itemId":16246,"spellId":20010,"name":"Enchant Bracer - Superior Strength","icon":"inv_misc_note_01","type":6,"stats":[9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1886,"itemId":16251,"spellId":20011,"name":"Enchant Bracer - Superior Stamina","icon":"inv_misc_note_01","type":6,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1887,"itemId":16219,"spellId":20012,"name":"Enchant Gloves - Greater Agility","icon":"inv_misc_note_01","type":7,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1889,"itemId":16224,"spellId":20015,"name":"Enchant Cloak - Superior Defense","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0],"quality":1}, +{"effectId":1890,"itemId":16222,"spellId":20016,"name":"Enchant Shield - Vitality","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1891,"itemId":16253,"spellId":20025,"name":"Enchant Chest - Greater Stats","icon":"inv_misc_note_01","type":5,"stats":[4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1892,"itemId":16221,"spellId":20026,"name":"Enchant Chest - Major Health","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1893,"itemId":16242,"spellId":20028,"name":"Enchant Chest - Major Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0],"quality":2}, +{"effectId":1894,"itemId":16223,"spellId":20029,"name":"Enchant Weapon - Icy Chill","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1896,"itemId":16247,"spellId":20030,"name":"Enchant 2H Weapon - Superior Impact","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1897,"itemId":16250,"spellId":20031,"name":"Enchant Weapon - Superior Striking","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1898,"itemId":16254,"spellId":20032,"name":"Enchant Weapon - Lifestealing","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":1899,"itemId":16248,"spellId":20033,"name":"Enchant Weapon - Unholy Weapon","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1900,"itemId":16252,"spellId":20034,"name":"Enchant Weapon - Crusader","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1903,"itemId":16255,"spellId":20035,"name":"Enchant 2H Weapon - Major Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1904,"itemId":16249,"spellId":20036,"name":"Enchant 2H Weapon - Major Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":1951,"itemId":38978,"spellId":44591,"name":"Enchant Cloak - Superior Dodge","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1952,"itemId":38954,"spellId":44489,"name":"Enchant Shield - Dodge","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":1953,"itemId":39002,"spellId":47766,"name":"Enchant Chest - Greater Dodge","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2322,"itemId":28273,"spellId":33999,"name":"Enchant Gloves - Major Healing","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2326,"itemId":38997,"spellId":44635,"name":"Enchant Bracer - Greater Spellpower","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2332,"itemId":44470,"spellId":60767,"name":"Enchant Bracer - Superior Spellpower","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2381,"itemId":38962,"spellId":44509,"name":"Enchant Chest - Greater Mana Restoration","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2443,"itemId":17725,"spellId":21931,"name":"Enchant Weapon - Winter's Might","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2483,"itemId":18169,"spellId":22593,"name":"Flame Mantle of the Dawn","icon":"spell_fire_flameshock","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2484,"itemId":18170,"spellId":22594,"name":"Frost Mantle of the Dawn","icon":"spell_frost_frostshock","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2485,"itemId":18171,"spellId":22598,"name":"Arcane Mantle of the Dawn","icon":"spell_holy_wordfortitude","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2486,"itemId":18172,"spellId":22597,"name":"Nature Mantle of the Dawn","icon":"spell_nature_protectionformnature","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0],"quality":2}, +{"effectId":2487,"itemId":18173,"spellId":22596,"name":"Shadow Mantle of the Dawn","icon":"spell_shadow_ragingscream","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0],"quality":2}, +{"effectId":2488,"itemId":18182,"spellId":22599,"name":"Chromatic Mantle of the Dawn","icon":"inv_misc_gem_variety_02","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,0,0,0,0,0],"quality":2}, +{"effectId":2503,"itemId":18251,"spellId":22725,"name":"Core Armor Kit","icon":"inv_misc_armorkit_05","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2504,"itemId":18259,"spellId":22749,"name":"Enchant Weapon - Spellpower","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2505,"itemId":18260,"spellId":22750,"name":"Enchant Weapon - Healing Power","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2523,"itemId":18283,"spellId":22779,"name":"Biznicks 247x128 Accurascope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2543,"itemId":18329,"spellId":22840,"name":"Arcanum of Rapidity","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2544,"itemId":18330,"spellId":22844,"name":"Arcanum of Focus","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2545,"itemId":18331,"spellId":22846,"name":"Arcanum of Protection","icon":"inv_misc_gem_02","type":9,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2563,"itemId":19444,"spellId":23799,"name":"Enchant Weapon - Strength","icon":"inv_misc_note_01","type":13,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2564,"itemId":19445,"spellId":23800,"name":"Enchant Weapon - Agility","icon":"inv_misc_note_01","type":13,"stats":[0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2565,"itemId":19446,"spellId":23801,"name":"Enchant Bracer - Mana Regeneration","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2567,"itemId":19448,"spellId":23803,"name":"Enchant Weapon - Mighty Spirit","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2568,"itemId":19449,"spellId":23804,"name":"Enchant Weapon - Mighty Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2583,"itemId":19782,"spellId":24149,"name":"Presence of Might","icon":"spell_holy_sealofwrath","type":9,"stats":[0,0,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2584,"itemId":19783,"spellId":24160,"name":"Syncretist's Sigil","icon":"spell_holy_prayerofhealing","type":9,"stats":[0,0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2587,"itemId":19786,"spellId":24163,"name":"Vodouisant's Vigilant Embrace","icon":"spell_nature_purge","type":9,"stats":[0,0,0,15,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2588,"itemId":19787,"spellId":24164,"name":"Presence of Sight","icon":"spell_shadow_detectlesserinvisibility","type":9,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2589,"itemId":19788,"spellId":24165,"name":"Hoodoo Hex","icon":"spell_shadow_impphaseshift","type":9,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2590,"itemId":19789,"spellId":24167,"name":"Prophetic Aura","icon":"spell_holy_holyprotection","type":9,"stats":[0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2591,"itemId":19790,"spellId":24168,"name":"Animist's Caress","icon":"spell_nature_reincarnation","type":9,"stats":[0,0,10,10,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2603,"spellId":144736,"name":"Enchant Gloves - Fishing","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2604,"itemId":20078,"spellId":24420,"name":"Zandalar Signet of Serenity","icon":"spell_holy_powerwordshield","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2605,"itemId":20076,"spellId":24421,"name":"Zandalar Signet of Mojo","icon":"inv_jewelry_ring_46","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2606,"itemId":20077,"spellId":24422,"name":"Zandalar Signet of Might","icon":"inv_misc_armorkit_08","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2613,"itemId":33153,"spellId":25072,"name":"Enchant Gloves - Threat","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2614,"itemId":20727,"spellId":25073,"name":"Enchant Gloves - Shadow Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2615,"itemId":20728,"spellId":25074,"name":"Enchant Gloves - Frost Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2616,"itemId":20729,"spellId":25078,"name":"Enchant Gloves - Fire Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2617,"itemId":20730,"spellId":25079,"name":"Enchant Gloves - Healing Power","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2619,"itemId":187815,"spellId":359950,"name":"Enchant Cloak - Greater Fire Resistance","icon":"spell_fire_sealoffire","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2620,"itemId":187807,"spellId":359949,"name":"Enchant Cloak - Greater Nature Resistance","icon":"spell_nature_elementalshields","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0],"quality":1}, +{"effectId":2621,"itemId":33150,"spellId":25084,"name":"Enchant Cloak - Subtlety","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2622,"itemId":33148,"spellId":25086,"name":"Enchant Cloak - Dodge","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2646,"itemId":22392,"spellId":27837,"name":"Enchant 2H Weapon - Agility","icon":"inv_misc_note_01","type":13,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2647,"itemId":35420,"spellId":27899,"name":"Enchant Bracer - Brawn","icon":"inv_bracer_08","type":6,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2648,"itemId":35756,"spellId":47051,"name":"Enchant Cloak - Greater Dodge","icon":"inv_misc_note_01","type":4,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2649,"itemId":22533,"spellId":27914,"name":"Enchant Bracer - Fortitude","icon":"inv_misc_note_01","type":6,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2650,"itemId":19447,"spellId":23802,"name":"Enchant Bracer - Healing Power","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2653,"itemId":38904,"spellId":27944,"name":"Enchant Shield - Lesser Dodge","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2654,"itemId":22539,"spellId":27945,"name":"Enchant Shield - Intellect","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2655,"itemId":22540,"spellId":27946,"name":"Enchant Shield - Parry","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2656,"itemId":22542,"spellId":27948,"name":"Enchant Boots - Vitality","icon":"inv_misc_note_01","type":10,"stats":[0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2657,"itemId":22544,"spellId":27951,"name":"Enchant Boots - Dexterity","icon":"inv_misc_note_01","type":10,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2658,"itemId":22545,"spellId":27954,"name":"Enchant Boots - Surefooted","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2659,"itemId":35428,"spellId":27957,"name":"Enchant Chest - Exceptional Health","icon":"inv_chest_leather_04","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,0,0],"quality":1}, +{"effectId":2661,"itemId":24003,"spellId":27960,"name":"Enchant Chest - Exceptional Stats","icon":"inv_misc_note_01","type":5,"stats":[6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2662,"itemId":35437,"spellId":27961,"name":"Enchant Cloak - Major Armor","icon":"inv_misc_cape_12","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0],"quality":1}, +{"effectId":2666,"itemId":22551,"spellId":27968,"name":"Enchant Weapon - Major Intellect","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2667,"itemId":22554,"spellId":27971,"name":"Enchant 2H Weapon - Savagery","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,70,70,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2668,"itemId":22553,"spellId":27972,"name":"Enchant Weapon - Potency","icon":"inv_misc_note_01","type":13,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2669,"itemId":22555,"spellId":27975,"name":"Enchant Weapon - Major Spellpower","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2670,"itemId":22556,"spellId":27977,"name":"Enchant 2H Weapon - Major Agility","icon":"inv_misc_note_01","type":13,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2671,"itemId":22560,"spellId":27981,"name":"Enchant Weapon - Sunfire","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2672,"itemId":22561,"spellId":27982,"name":"Enchant Weapon - Soulfrost","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2673,"itemId":22559,"spellId":27984,"name":"Enchant Weapon - Mongoose","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2674,"itemId":22558,"spellId":28003,"name":"Enchant Weapon - Spellsurge","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2675,"itemId":22557,"spellId":28004,"name":"Enchant Weapon - Battlemaster","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2679,"itemId":22532,"spellId":27913,"name":"Enchant Bracer - Restore Mana Prime","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2681,"itemId":22635,"spellId":28161,"name":"Savage Guard","icon":"spell_nature_spiritarmor","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0],"quality":3}, +{"effectId":2682,"itemId":22636,"spellId":28163,"name":"Ice Guard","icon":"spell_frost_frostshock","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2683,"itemId":22638,"spellId":28165,"name":"Shadow Guard","icon":"spell_shadow_antishadow","type":9,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0],"quality":3}, +{"effectId":2714,"itemId":23530,"spellId":29454,"name":"Felsteel Shield Spike","icon":"inv_misc_armorkit_27","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2715,"itemId":23547,"spellId":29475,"name":"Resilience of the Scourge","icon":"spell_shadow_deadofnight","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,6],"quality":4}, +{"effectId":2716,"itemId":23549,"spellId":29480,"name":"Fortitude of the Scourge","icon":"spell_shadow_antishadow","type":3,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"quality":4}, +{"effectId":2717,"itemId":23548,"spellId":29483,"name":"Might of the Scourge","icon":"spell_shadow_deathpact","type":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2721,"itemId":23545,"spellId":29467,"name":"Power of the Scourge","icon":"spell_shadow_darkritual","type":3,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2722,"itemId":23764,"spellId":30250,"name":"Adamantite Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2723,"itemId":23765,"spellId":30252,"name":"Khorium Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2724,"itemId":23766,"spellId":30260,"name":"Stabilized Eternium Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2745,"itemId":24275,"spellId":31369,"name":"Silver Spellthread","icon":"spell_nature_lightning","type":9,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2746,"itemId":24276,"spellId":31370,"name":"Golden Spellthread","icon":"spell_holy_restoration","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2747,"itemId":24273,"spellId":31371,"name":"Mystic Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2748,"itemId":24274,"spellId":31372,"name":"Runic Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":2792,"itemId":25650,"spellId":32397,"name":"Knothide Armor Kit","icon":"inv_misc_armorkit_24","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2793,"itemId":25651,"spellId":32398,"name":"Vindicator's Armor Kit","icon":"inv_misc_armorkit_26","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2794,"itemId":25652,"spellId":32399,"name":"Magister's Armor Kit","icon":"inv_misc_armorkit_22","type":5,"extraTypes":[7,9,10],"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2841,"itemId":34330,"spellId":44968,"name":"Heavy Knothide Armor Kit","icon":"inv_misc_armorkit_25","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2928,"itemId":22536,"spellId":27924,"name":"Enchant Ring - Minor Intellect","icon":"inv_misc_note_01","type":11,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2929,"itemId":22535,"spellId":27920,"name":"Enchant Ring - Striking","icon":"inv_misc_note_01","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2931,"itemId":22538,"spellId":27927,"name":"Enchant Ring - Stats","icon":"inv_misc_note_01","type":11,"stats":[3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":2933,"itemId":28270,"spellId":33992,"name":"Enchant Chest - Major Resilience","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2934,"itemId":35439,"spellId":33993,"name":"Enchant Gloves - Blasting","icon":"inv_gauntlets_03","type":7,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2935,"itemId":28271,"spellId":33994,"name":"Enchant Gloves - Precise Strikes","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2937,"itemId":28272,"spellId":33997,"name":"Enchant Gloves - Major Spellpower","icon":"inv_misc_note_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2938,"spellId":134871,"name":"Enchant Cloak - PvP Power","icon":"trade_engraving","type":4,"stats":[16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2939,"itemId":28279,"spellId":34007,"name":"Enchant Boots - Cat's Swiftness","icon":"inv_misc_note_01","type":10,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2940,"itemId":28280,"spellId":34008,"name":"Enchant Boots - Boar's Speed","icon":"inv_misc_note_01","type":10,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2977,"itemId":28882,"spellId":35355,"name":"Inscription of Warding","icon":"spell_holy_greaterblessingofsanctuary","type":3,"stats":[0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2978,"itemId":28889,"spellId":35402,"name":"Greater Inscription of Warding","icon":"spell_holy_blessingofprotection","type":3,"stats":[0,0,15,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2979,"itemId":28878,"spellId":35403,"name":"Inscription of Faith","icon":"spell_holy_sealofsalvation","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2980,"itemId":28887,"spellId":35404,"name":"Greater Inscription of Faith","icon":"spell_holy_greaterblessingofsalvation","type":3,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2981,"itemId":28881,"spellId":35405,"name":"Inscription of Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2982,"itemId":28886,"spellId":35406,"name":"Greater Inscription of Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2983,"itemId":28885,"spellId":35407,"name":"Inscription of Vengeance","icon":"spell_holy_fistofjustice","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2984,"spellId":35415,"name":"Shadow Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2985,"spellId":35416,"name":"Flame Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2986,"itemId":28888,"spellId":35417,"name":"Greater Inscription of Vengeance","icon":"spell_holy_greaterblessingofkings","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2987,"spellId":35418,"name":"Frost Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2988,"spellId":35419,"name":"Nature Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2989,"spellId":35420,"name":"Arcane Armor Kit","icon":"trade_engraving","type":5,"extraTypes":[7,9,10],"stats":[0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":2990,"itemId":28908,"spellId":35432,"name":"Inscription of the Knight","icon":"spell_holy_championsbond","type":3,"stats":[0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2991,"itemId":28911,"spellId":35433,"name":"Greater Inscription of the Knight","icon":"spell_holy_championsgrace","type":3,"stats":[0,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2992,"itemId":28904,"spellId":35434,"name":"Inscription of the Oracle","icon":"spell_holy_spiritualguidence","type":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2993,"itemId":28912,"spellId":35435,"name":"Greater Inscription of the Oracle","icon":"spell_holy_powerinfusion","type":3,"stats":[0,0,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2994,"itemId":28903,"spellId":35436,"name":"Inscription of the Orb","icon":"inv_misc_orb_04","type":3,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2995,"itemId":28909,"spellId":35437,"name":"Greater Inscription of the Orb","icon":"inv_misc_orb_03","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2996,"itemId":28907,"spellId":35438,"name":"Inscription of the Blade","icon":"ability_dualwield","type":3,"stats":[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":2997,"itemId":28910,"spellId":35439,"name":"Greater Inscription of the Blade","icon":"spell_holy_weaponmastery","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":2998,"itemId":29187,"spellId":35441,"name":"Inscription of Endurance","icon":"ability_warrior_shieldmastery","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,7,0,0,0,0,0],"quality":2}, +{"effectId":2999,"spellId":35443,"name":"Arcanum of the Defender","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,17,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3001,"spellId":35445,"name":"Arcanum of Renewal","icon":"trade_engraving","type":1,"stats":[0,0,0,16,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3002,"spellId":35447,"name":"Arcanum of Power","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,14,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3003,"spellId":35452,"name":"Arcanum of Ferocity","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3004,"spellId":35453,"name":"Arcanum of the Gladiator","icon":"trade_engraving","type":1,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3005,"spellId":35454,"name":"Arcanum of Nature Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0],"quality":1}, +{"effectId":3006,"spellId":35455,"name":"Arcanum of Arcane Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3007,"spellId":35456,"name":"Arcanum of Fire Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3008,"spellId":35457,"name":"Arcanum of Frost Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3009,"spellId":35458,"name":"Arcanum of Shadow Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0],"quality":1}, +{"effectId":3010,"itemId":29533,"spellId":35488,"name":"Cobrahide Leg Armor","icon":"inv_misc_armorkit_21","type":9,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3011,"itemId":29534,"spellId":35489,"name":"Clefthide Leg Armor","icon":"inv_misc_armorkit_23","type":9,"stats":[0,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3012,"itemId":29535,"spellId":35490,"name":"Nethercobra Leg Armor","icon":"inv_misc_armorkit_25","type":9,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3013,"itemId":29536,"spellId":35495,"name":"Nethercleft Leg Armor","icon":"inv_misc_armorkit_25","type":9,"stats":[0,12,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3095,"spellId":37889,"name":"Arcanum of Chromatic Warding","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,0,0,0,0,0],"quality":1}, +{"effectId":3096,"spellId":37891,"name":"Arcanum of the Outcast","icon":"trade_engraving","type":1,"stats":[17,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3150,"itemId":38929,"spellId":33991,"name":"Enchant Chest - Restore Mana Prime","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3222,"itemId":33165,"spellId":42620,"name":"Enchant Weapon - Greater Agility","icon":"inv_misc_note_01","type":13,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3223,"itemId":33185,"spellId":42687,"name":"Adamantite Weapon Chain","icon":"spell_frost_chainsofice","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3225,"itemId":33307,"spellId":42974,"name":"Enchant Weapon - Executioner","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3228,"spellId":44119,"name":"Enchant Bracer - Template","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3229,"itemId":187783,"spellId":359685,"name":"Enchant Shield - Resistance","icon":"spell_holy_avengersshield","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3231,"itemId":38951,"spellId":44484,"name":"Enchant Gloves - Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3232,"itemId":39006,"spellId":47901,"name":"Enchant Boots - Tuskarr's Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3233,"itemId":22546,"spellId":27958,"name":"Enchant Chest - Exceptional Mana","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,0],"quality":1}, +{"effectId":3234,"itemId":38953,"spellId":44488,"name":"Enchant Gloves - Precision","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3236,"itemId":38955,"spellId":44492,"name":"Enchant Chest - Mighty Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0],"quality":1}, +{"effectId":3238,"itemId":38960,"spellId":44506,"name":"Enchant Gloves - Gatherer","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3239,"itemId":38965,"spellId":44524,"name":"Enchant Weapon - Icebreaker","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3241,"itemId":38972,"spellId":44576,"name":"Enchant Weapon - Lifeward","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3243,"itemId":38973,"spellId":44582,"name":"Enchant Cloak - Minor Power","icon":"inv_misc_enchantedscroll","type":4,"stats":[28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3244,"itemId":38974,"spellId":44584,"name":"Enchant Boots - Greater Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3245,"itemId":38975,"spellId":44588,"name":"Enchant Chest - Exceptional Resilience","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3246,"itemId":38979,"spellId":44592,"name":"Enchant Gloves - Exceptional Spellpower","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3247,"itemId":38981,"spellId":44595,"name":"Enchant 2H Weapon - Scourgebane","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3249,"itemId":38985,"spellId":44612,"name":"Enchant Gloves - Greater Blasting","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3251,"itemId":38988,"spellId":44621,"name":"Enchant Weapon - Giant Slayer","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3252,"itemId":38989,"spellId":44623,"name":"Enchant Chest - Super Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3253,"itemId":38990,"spellId":44625,"name":"Enchant Gloves - Armsman","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3256,"itemId":38993,"spellId":44631,"name":"Enchant Cloak - Shadow Armor","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0],"quality":1}, +{"effectId":3260,"itemId":34207,"spellId":44769,"name":"Glove Reinforcements","icon":"inv_misc_armorkit_08","type":7,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3269,"itemId":34836,"spellId":45697,"name":"Truesilver Fishing Line","icon":"inv_misc_thread_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3273,"itemId":35498,"spellId":46578,"name":"Enchant Weapon - Deathfrost","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3289,"spellId":48555,"name":"Skybreaker Whip","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3294,"itemId":39001,"spellId":47672,"name":"Enchant Cloak - Mighty Stamina","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3296,"itemId":39004,"spellId":47899,"name":"Enchant Cloak - Wisdom","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3297,"itemId":39005,"spellId":47900,"name":"Enchant Chest - Super Health","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,0,0],"quality":1}, +{"effectId":3315,"itemId":37312,"spellId":48401,"name":"Carrot on a Stick","icon":"inv_misc_food_54","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3325,"itemId":38371,"spellId":50901,"name":"Jormungar Leg Armor","icon":"inv_misc_armorkit_31","type":9,"stats":[0,15,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3326,"itemId":38372,"spellId":50902,"name":"Nerubian Leg Armor","icon":"inv_misc_armorkit_29","type":9,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,55,55,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3329,"itemId":38375,"spellId":50906,"name":"Borean Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3330,"itemId":38376,"spellId":50909,"name":"Heavy Borean Armor Kit","icon":"inv_misc_armorkit_30","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3332,"itemId":38378,"spellId":50913,"name":"Wyrmscale Leg Armor","icon":"inv_misc_monsterscales_18","type":9,"stats":[0,0,0,0,0,0,36,0,0,0,0,0,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3365,"spellId":53323,"name":"Rune of Swordshattering","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3366,"spellId":53331,"name":"Rune of Lichbane","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3367,"spellId":53342,"name":"Rune of Spellshattering","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3368,"spellId":53344,"name":"Rune of the Fallen Crusader","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3369,"spellId":53341,"name":"Rune of Cinderglacier","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3370,"spellId":53343,"name":"Rune of Razorice","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3594,"spellId":54446,"name":"Rune of Swordbreaking","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3595,"spellId":54447,"name":"Rune of Spellbreaking","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3599,"itemId":40776,"spellId":54736,"name":"EMP Generator","icon":"inv_misc_enggizmos_02","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3601,"itemId":40800,"spellId":54793,"name":"Frag Belt","icon":"inv_misc_enggizmos_02","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3603,"itemId":41091,"spellId":54998,"name":"Hand-Mounted Pyro Rocket","icon":"inv_misc_enggizmos_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3604,"spellId":54999,"name":"Hyperspeed Accelerators","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3605,"itemId":41111,"spellId":55002,"name":"Flexweave Underlay","icon":"inv_misc_cape_22","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3607,"itemId":41146,"spellId":55076,"name":"Sun Scope","icon":"inv_misc_spyglass_03","type":14,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3608,"itemId":41167,"spellId":55135,"name":"Heartseeker Scope","icon":"inv_misc_spyglass_02","type":14,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3718,"itemId":41601,"spellId":55630,"name":"Shining Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3719,"itemId":41602,"spellId":55631,"name":"Brilliant Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3720,"itemId":41603,"spellId":55632,"name":"Azure Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,20,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3721,"itemId":41604,"spellId":55634,"name":"Sapphire Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3722,"spellId":55642,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3728,"spellId":55769,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3730,"spellId":55777,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3731,"itemId":41976,"spellId":55836,"name":"Titanium Weapon Chain","icon":"inv_belt_18","type":13,"stats":[0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3748,"itemId":42500,"spellId":56353,"name":"Titanium Shield Spike","icon":"inv_titanium_shield_spike","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3754,"itemId":19785,"spellId":24162,"name":"Falcon's Call","icon":"spell_nature_forceofnature","type":9,"stats":[0,0,10,0,0,10,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3755,"itemId":19784,"spellId":24161,"name":"Death's Embrace","icon":"spell_shadow_scourgebuild","type":9,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3757,"spellId":57690,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":3758,"spellId":57691,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":3775,"itemId":43302,"spellId":58126,"name":"Inscription of High Discipline","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3776,"itemId":43303,"spellId":58128,"name":"Inscription of the Frostblade","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3777,"itemId":43304,"spellId":58129,"name":"Inscription of Kings","icon":"spell_holy_sealofwisdom","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3788,"itemId":44497,"spellId":59619,"name":"Enchant Weapon - Accuracy","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3789,"itemId":44493,"spellId":59621,"name":"Enchant Weapon - Berserking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3790,"itemId":43987,"spellId":59625,"name":"Enchant Weapon - Black Magic","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3791,"spellId":59636,"name":"Enchant Ring - Lesser Stamina","icon":"trade_engraving","type":11,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3793,"itemId":44125,"spellId":59771,"name":"Inscription of Triumph","icon":"spell_holy_weaponmastery","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3794,"itemId":44068,"spellId":59773,"name":"Inscription of Dominance","icon":"spell_holy_powerinfusion","type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,15,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3795,"spellId":59777,"name":"Arcanum of Triumph","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3796,"spellId":59778,"name":"Arcanum of Dominance","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3797,"spellId":59784,"name":"Arcanum of Dominance","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,20,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3806,"itemId":44129,"spellId":59927,"name":"Inscription of the Storm","icon":"spell_nature_lightning","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3807,"itemId":44130,"spellId":59928,"name":"Inscription of the Crag","icon":"spell_nature_farsight","type":3,"stats":[0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3808,"itemId":44133,"spellId":59934,"name":"Greater Inscription of the Axe","icon":"inv_axe_85","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3809,"itemId":44134,"spellId":59936,"name":"Greater Inscription of the Crag","icon":"spell_arcane_teleportorgrimmar","type":3,"stats":[0,0,0,21,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3810,"itemId":44135,"spellId":59937,"name":"Greater Inscription of the Storm","icon":"spell_nature_lightningoverload","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3811,"itemId":44136,"spellId":59941,"name":"Greater Inscription of the Pinnacle","icon":"spell_holy_divinepurpose","type":3,"stats":[0,0,22,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":3812,"spellId":59944,"name":"Arcanum of the Frosty Soul","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3813,"spellId":59945,"name":"Arcanum of Toxic Warding","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0],"quality":1}, +{"effectId":3814,"spellId":59946,"name":"Arcanum of the Fleeing Shadow","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0],"quality":1}, +{"effectId":3815,"spellId":59947,"name":"Arcanum of the Eclipsed Moon","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3816,"spellId":59948,"name":"Arcanum of the Flame's Soul","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3817,"spellId":59954,"name":"Arcanum of Torment","icon":"trade_engraving","type":1,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3818,"spellId":59955,"name":"Arcanum of the Stalwart Protector","icon":"trade_engraving","type":1,"stats":[0,0,37,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3819,"spellId":59960,"name":"Arcanum of Blissful Mending","icon":"trade_engraving","type":1,"stats":[0,0,0,26,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3820,"spellId":59970,"name":"Arcanum of Burning Mysteries","icon":"trade_engraving","type":1,"stats":[0,0,0,26,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3822,"itemId":38373,"spellId":60581,"name":"Frosthide Leg Armor","icon":"inv_misc_armorkit_32","type":9,"stats":[0,22,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3823,"itemId":38374,"spellId":60582,"name":"Icescale Leg Armor","icon":"inv_misc_armorkit_33","type":9,"stats":[0,0,0,0,0,0,22,0,0,0,0,0,75,75,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3824,"itemId":44449,"spellId":60606,"name":"Enchant Boots - Assault","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3825,"itemId":44456,"spellId":60609,"name":"Enchant Cloak - Speed","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3826,"itemId":38986,"spellId":60623,"name":"Enchant Boots - Icewalker","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3827,"itemId":44463,"spellId":60691,"name":"Enchant 2H Weapon - Massacre","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3828,"itemId":38992,"spellId":44630,"name":"Enchant 2H Weapon - Greater Savagery","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3829,"itemId":38964,"spellId":44513,"name":"Enchant Gloves - Greater Assault","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3830,"itemId":38991,"spellId":44629,"name":"Enchant Weapon - Exceptional Spellpower","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3831,"itemId":39003,"spellId":47898,"name":"Enchant Cloak - Greater Speed","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3833,"itemId":44466,"spellId":60707,"name":"Enchant Weapon - Superior Potency","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,65,65,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3834,"itemId":44467,"spellId":60714,"name":"Enchant Weapon - Mighty Spellpower","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3835,"spellId":61117,"name":"Master's Inscription of the Axe","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3836,"spellId":61118,"name":"Master's Inscription of the Crag","icon":"trade_engraving","type":3,"stats":[0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3837,"spellId":61119,"name":"Master's Inscription of the Pinnacle","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,0,0,0,60,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3838,"spellId":61120,"name":"Master's Inscription of the Storm","icon":"trade_engraving","type":3,"stats":[0,0,0,0,0,0,15,0,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":3839,"spellId":44645,"name":"Enchant Ring - Assault","icon":"trade_engraving","type":11,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3840,"spellId":44636,"name":"Enchant Ring - Lesser Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":3842,"spellId":61271,"name":"Arcanum of the Savage Gladiator","icon":"trade_engraving","type":1,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3843,"itemId":44739,"spellId":61468,"name":"Diamond-cut Refractor Scope","icon":"ability_hunter_rapidregeneration","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3844,"itemId":38963,"spellId":44510,"name":"Enchant Weapon - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3845,"itemId":44815,"spellId":44575,"name":"Enchant Bracer - Greater Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3846,"itemId":28281,"spellId":34010,"name":"Enchant Weapon - Major Healing","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":3847,"spellId":62158,"name":"Rune of the Stoneskin Gargoyle","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":3849,"itemId":44936,"spellId":62201,"name":"Titanium Plating","icon":"inv_shield_19","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3850,"itemId":44947,"spellId":62256,"name":"Enchant Bracer - Major Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3851,"itemId":44945,"spellId":62257,"name":"Enchant Weapon - Titanguard","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3852,"itemId":44957,"spellId":62384,"name":"Greater Inscription of the Gladiator","icon":"inv_shoulder_61","type":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3853,"itemId":44963,"spellId":62447,"name":"Earthen Leg Armor","icon":"inv_misc_armorkit_18","type":9,"stats":[0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":3854,"itemId":45056,"spellId":62948,"name":"Enchant Staff - Greater Spellpower","icon":"inv_misc_enchantedscroll","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3855,"itemId":45060,"spellId":62959,"name":"Enchant Staff - Spellpower","icon":"inv_misc_enchantedscroll","type":13,"enchantType":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3858,"itemId":45628,"spellId":63746,"name":"Enchant Boots - Lesser Accuracy","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":3860,"spellId":63770,"name":"Reticulated Armor Webbing","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":3869,"itemId":46026,"spellId":64441,"name":"Enchant Weapon - Blade Ward","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3870,"itemId":46098,"spellId":64579,"name":"Enchant Weapon - Blood Draining","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3872,"spellId":56039,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3873,"spellId":56034,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":3875,"itemId":44131,"spellId":59929,"name":"Inscription of the Axe","icon":"inv_axe_82","type":3,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3876,"itemId":44132,"spellId":59932,"name":"Inscription of the Pinnacle","icon":"spell_holy_divinepurpose","type":3,"stats":[0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":3883,"spellId":70164,"name":"Rune of the Nerubian Carapace","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"classAllowlist":[10]}, +{"effectId":4061,"itemId":52687,"spellId":74132,"name":"Enchant Gloves - Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4062,"itemId":52743,"spellId":74189,"name":"Enchant Boots - Earthen Vitality","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4063,"itemId":52744,"spellId":74191,"name":"Enchant Chest - Mighty Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4064,"itemId":52745,"spellId":74192,"name":"Enchant Cloak - Lesser Power","icon":"inv_misc_enchantedscroll","type":4,"stats":[56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4065,"itemId":52746,"spellId":74193,"name":"Enchant Bracer - Speed","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4066,"itemId":52747,"spellId":74195,"name":"Enchant Weapon - Mending","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4067,"itemId":52748,"spellId":74197,"name":"Enchant Weapon - Avalanche","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4068,"itemId":52749,"spellId":74198,"name":"Enchant Gloves - Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4069,"itemId":52750,"spellId":74199,"name":"Enchant Boots - Haste","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4070,"itemId":52751,"spellId":74200,"name":"Enchant Chest - Stamina","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4071,"itemId":52752,"spellId":74201,"name":"Enchant Bracer - Critical Strike","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4072,"itemId":52753,"spellId":74202,"name":"Enchant Cloak - Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4073,"itemId":52754,"spellId":74207,"name":"Enchant Shield - Protection","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4074,"itemId":52755,"spellId":74211,"name":"Enchant Weapon - Elemental Slayer","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4075,"itemId":52756,"spellId":74212,"name":"Enchant Gloves - Exceptional Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4076,"itemId":52757,"spellId":74213,"name":"Enchant Boots - Major Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4078,"spellId":74215,"name":"Enchant Ring - Strength","icon":"trade_engraving","type":11,"stats":[40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4079,"spellId":74216,"name":"Enchant Ring - Agility","icon":"trade_engraving","type":11,"stats":[0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4080,"spellId":74217,"name":"Enchant Ring - Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4081,"spellId":74218,"name":"Enchant Ring - Stamina","icon":"trade_engraving","type":11,"stats":[0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4082,"itemId":52759,"spellId":74220,"name":"Enchant Gloves - Greater Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4083,"itemId":52760,"spellId":74223,"name":"Enchant Weapon - Hurricane","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4084,"itemId":52761,"spellId":74225,"name":"Enchant Weapon - Heartsong","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4085,"itemId":52762,"spellId":74226,"name":"Enchant Shield - Mastery","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4086,"itemId":52763,"spellId":74229,"name":"Enchant Bracer - Superior Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4087,"itemId":52764,"spellId":74230,"name":"Enchant Cloak - Critical Strike","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4088,"itemId":52765,"spellId":74231,"name":"Enchant Chest - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4089,"itemId":52766,"spellId":74232,"name":"Enchant Bracer - Precision","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4090,"itemId":52767,"spellId":74234,"name":"Enchant Cloak - Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4091,"itemId":52768,"spellId":74235,"name":"Enchant Off-Hand - Superior Intellect","icon":"inv_misc_enchantedscroll","type":13,"enchantType":5,"stats":[0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4092,"itemId":52769,"spellId":74236,"name":"Enchant Boots - Precision","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4093,"itemId":52770,"spellId":74237,"name":"Enchant Bracer - Exceptional Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4094,"itemId":52771,"spellId":74238,"name":"Enchant Boots - Mastery","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4095,"itemId":52772,"spellId":74239,"name":"Enchant Bracer - Greater Expertise","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4096,"itemId":52773,"spellId":74240,"name":"Enchant Cloak - Greater Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4097,"itemId":52733,"spellId":74242,"name":"Enchant Weapon - Power Torrent","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4098,"itemId":52735,"spellId":74244,"name":"Enchant Weapon - Windwalk","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4099,"itemId":52736,"spellId":74246,"name":"Enchant Weapon - Landslide","icon":"inv_enchant_formulasuperior_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4100,"itemId":52737,"spellId":74247,"name":"Enchant Cloak - Greater Critical Strike","icon":"inv_enchant_formulagood_01","type":4,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4101,"itemId":52738,"spellId":74248,"name":"Enchant Bracer - Greater Critical Strike","icon":"inv_enchant_formulagood_01","type":6,"stats":[0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4102,"itemId":52739,"spellId":74250,"name":"Enchant Chest - Peerless Stats","icon":"inv_enchant_formulagood_01","type":5,"stats":[20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4103,"itemId":52740,"spellId":74251,"name":"Enchant Chest - Greater Stamina","icon":"inv_enchant_formulagood_01","type":5,"stats":[0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4104,"itemId":52782,"spellId":74253,"name":"Enchant Boots - Lavawalker","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4105,"itemId":52781,"spellId":74252,"name":"Enchant Boots - Assassin's Step","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4106,"itemId":52783,"spellId":74254,"name":"Enchant Gloves - Mighty Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4107,"itemId":52784,"spellId":74255,"name":"Enchant Gloves - Greater Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4108,"itemId":52785,"spellId":74256,"name":"Enchant Bracer - Greater Speed","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4109,"itemId":54449,"spellId":75149,"name":"Ghostly Spellthread","icon":"spell_nature_astralrecal","type":9,"stats":[0,0,0,55,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4110,"itemId":54450,"spellId":75150,"name":"Powerful Ghostly Spellthread","icon":"spell_nature_astralrecalgroup","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4111,"itemId":54447,"spellId":75151,"name":"Enchanted Spellthread","icon":"item_spellcloththread","type":9,"stats":[0,0,65,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4112,"itemId":54448,"spellId":75152,"name":"Powerful Enchanted Spellthread","icon":"inv_misc_thread_eternium","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4113,"spellId":75154,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,80,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4114,"spellId":75155,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,95,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4115,"spellId":75172,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4116,"spellId":75175,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4118,"spellId":75178,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4120,"itemId":56477,"spellId":78165,"name":"Savage Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4121,"itemId":56517,"spellId":78166,"name":"Heavy Savage Armor Kit","icon":"inv_misc_armorkit_30","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4122,"itemId":56502,"spellId":78169,"name":"Scorched Leg Armor","icon":"inv_misc_armorkit_26","type":9,"stats":[0,0,0,0,0,0,45,0,0,0,0,0,110,110,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4124,"itemId":56503,"spellId":78170,"name":"Twilight Leg Armor","icon":"inv_misc_armorkit_29","type":9,"stats":[0,45,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4126,"itemId":56550,"spellId":78171,"name":"Dragonscale Leg Armor","icon":"inv_misc_monsterscales_14","type":9,"stats":[0,0,0,0,0,0,55,0,0,0,0,0,190,190,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4127,"itemId":56551,"spellId":78172,"name":"Charscale Leg Armor","icon":"inv_misc_monsterscales_20","type":9,"stats":[0,55,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4175,"itemId":59594,"spellId":81932,"name":"Gnomish X-Ray Scope","icon":"inv_misc_scopea","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4176,"itemId":59595,"spellId":81933,"name":"R19 Threatfinder","icon":"inv_misc_scopec","type":14,"stats":[0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4177,"itemId":59596,"spellId":81934,"name":"Safety Catch Removal Kit","icon":"inv_misc_enggizmos_37","type":14,"stats":[88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4179,"spellId":82175,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4180,"spellId":82177,"name":"Quickflip Deflection Plates","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4181,"spellId":82180,"name":"Tazik Shocker","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4187,"spellId":84424,"name":"Invisibility Field","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4188,"spellId":84427,"name":"Grounded Plasma Shield","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4189,"spellId":85007,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4190,"spellId":85008,"name":"Fur Lining - Agility","icon":"trade_engraving","type":6,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4191,"spellId":85009,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4192,"spellId":85010,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4193,"spellId":86375,"name":"Swiftsteel Inscription","icon":"trade_engraving","type":3,"stats":[0,130,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4194,"spellId":86401,"name":"Lionsmane Inscription","icon":"trade_engraving","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4195,"spellId":86402,"name":"Inscription of the Earth Prince","icon":"trade_engraving","type":3,"stats":[0,0,195,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4196,"spellId":86403,"name":"Felfire Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,130,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4197,"itemId":62321,"spellId":86847,"name":"Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01","type":3,"stats":[0,0,45,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4198,"itemId":62333,"spellId":86854,"name":"Greater Inscription of Unbreakable Quartz","icon":"inv_misc_gem_crystal_01","type":3,"stats":[0,0,75,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4199,"itemId":62342,"spellId":86898,"name":"Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4200,"itemId":62343,"spellId":86899,"name":"Greater Inscription of Charged Lodestone","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,50,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4201,"itemId":62344,"spellId":86900,"name":"Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4202,"itemId":62345,"spellId":86901,"name":"Greater Inscription of Jagged Stone","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[50,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4203,"spellId":86906,"name":"Inscription of Shattered Crystal","icon":"trade_engraving","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4204,"itemId":62346,"spellId":86907,"name":"Greater Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":7}, +{"effectId":4205,"itemId":62347,"spellId":86909,"name":"Inscription of Shattered Crystal","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,30,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4206,"spellId":86931,"name":"Arcanum of the Earthern Ring","icon":"trade_engraving","type":1,"stats":[0,0,90,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4207,"spellId":86932,"name":"Arcanum of Hyjal","icon":"trade_engraving","type":1,"stats":[0,0,0,60,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4208,"spellId":86933,"name":"Arcanum of the Highlands","icon":"trade_engraving","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4209,"spellId":86934,"name":"Arcanum of Ramkahen","icon":"trade_engraving","type":1,"stats":[0,60,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4214,"spellId":84425,"name":"Cardboard Assassin","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4215,"itemId":55055,"spellId":92433,"name":"Elementium Shield Spike","icon":"inv_qiraj_hiltspiked","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4216,"itemId":55056,"spellId":92437,"name":"Pyrium Shield Spike","icon":"inv_shield_08","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4217,"itemId":55057,"spellId":93448,"name":"Pyrium Weapon Chain","icon":"inv_misc_steelweaponchain","type":13,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4222,"spellId":67839,"name":"Mind Amplification Dish","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4223,"itemId":41118,"spellId":55016,"name":"Nitro Boosts","icon":"inv_gizmo_rocketbootextreme","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4227,"itemId":68134,"spellId":95471,"name":"Enchant 2H Weapon - Mighty Agility","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4245,"spellId":96245,"name":"Arcanum of Vicious Intellect","icon":"trade_engraving","type":1,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4246,"spellId":96246,"name":"Arcanum of Vicious Agility","icon":"trade_engraving","type":1,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4247,"spellId":96247,"name":"Arcanum of Vicious Strength","icon":"trade_engraving","type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4248,"itemId":68772,"spellId":96249,"name":"Greater Inscription of Vicious Intellect","icon":"inv_misc_gem_bloodstone_02","type":3,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4249,"itemId":68773,"spellId":96250,"name":"Greater Inscription of Vicious Strength","icon":"inv_misc_gem_emeraldrough_02","type":3,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4250,"itemId":68774,"spellId":96251,"name":"Greater Inscription of Vicious Agility","icon":"inv_misc_gem_goldendraenite_01","type":3,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4256,"itemId":68785,"spellId":96261,"name":"Enchant Bracer - Major Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4257,"itemId":68786,"spellId":96262,"name":"Enchant Bracer - Mighty Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4258,"itemId":68784,"spellId":96264,"name":"Enchant Bracer - Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4259,"itemId":68796,"spellId":96286,"name":"Reinforced Fishing Line","icon":"inv_fabric_mageweave_02","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4267,"itemId":70139,"spellId":99623,"name":"Flintlocke's Woodchucker","icon":"inv_misc_scopeb","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4270,"itemId":71720,"spellId":101598,"name":"Drakehide Leg Armor","icon":"inv_misc_cataclysmarmorkit_08","type":9,"stats":[0,0,145,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4359,"itemId":84575,"spellId":103461,"name":"Enchant Ring - Greater Agility","icon":"inv_scroll_03","type":11,"stats":[0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4360,"itemId":84576,"spellId":103462,"name":"Enchant Ring - Greater Intellect","icon":"inv_scroll_03","type":11,"stats":[0,0,0,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4361,"itemId":84577,"spellId":103463,"name":"Enchant Ring - Greater Stamina","icon":"inv_scroll_03","type":11,"stats":[0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4411,"itemId":74700,"spellId":104338,"name":"Enchant Bracer - Mastery","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4412,"itemId":74701,"spellId":104385,"name":"Enchant Bracer - Major Dodge","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4414,"itemId":74703,"spellId":104389,"name":"Enchant Bracer - Super Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4415,"itemId":74704,"spellId":104390,"name":"Enchant Bracer - Exceptional Strength","icon":"inv_misc_enchantedscroll","type":6,"stats":[180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4416,"itemId":74705,"spellId":104391,"name":"Enchant Bracer - Greater Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4417,"itemId":74706,"spellId":104392,"name":"Enchant Chest - Super Resilience","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4418,"itemId":74707,"spellId":104393,"name":"Enchant Chest - Mighty Spirit","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4419,"itemId":74708,"spellId":104395,"name":"Enchant Chest - Glorious Stats","icon":"inv_misc_enchantedscroll","type":5,"stats":[80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4420,"itemId":74709,"spellId":104397,"name":"Enchant Chest - Superior Stamina","icon":"inv_misc_enchantedscroll","type":5,"stats":[0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4421,"itemId":74710,"spellId":104398,"name":"Enchant Cloak - Accuracy","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4422,"itemId":74711,"spellId":104401,"name":"Enchant Cloak - Greater Protection","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4423,"itemId":74712,"spellId":104403,"name":"Enchant Cloak - Superior Intellect","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4424,"itemId":74713,"spellId":104404,"name":"Enchant Cloak - Superior Critical Strike","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4426,"itemId":74715,"spellId":104407,"name":"Enchant Boots - Greater Haste","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4427,"itemId":74716,"spellId":104408,"name":"Enchant Boots - Greater Precision","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4428,"itemId":74717,"spellId":104409,"name":"Enchant Boots - Blurred Speed","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4429,"itemId":74718,"spellId":104414,"name":"Enchant Boots - Pandaren's Step","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4430,"itemId":74719,"spellId":104416,"name":"Enchant Gloves - Greater Haste","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4431,"itemId":74720,"spellId":104417,"name":"Enchant Gloves - Superior Expertise","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4432,"itemId":74721,"spellId":104419,"name":"Enchant Gloves - Super Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4433,"itemId":74722,"spellId":104420,"name":"Enchant Gloves - Superior Mastery","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4434,"itemId":74729,"spellId":104445,"name":"Enchant Off-Hand - Major Intellect","icon":"inv_misc_enchantedscroll","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4441,"itemId":74723,"spellId":104425,"name":"Enchant Weapon - Windsong","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4442,"itemId":74724,"spellId":104427,"name":"Enchant Weapon - Jade Spirit","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4443,"itemId":74725,"spellId":104430,"name":"Enchant Weapon - Elemental Force","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4444,"itemId":74726,"spellId":104434,"name":"Enchant Weapon - Dancing Steel","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4445,"itemId":74727,"spellId":104440,"name":"Enchant Weapon - Colossus","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4446,"itemId":74728,"spellId":104442,"name":"Enchant Weapon - River's Song","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4697,"spellId":108789,"name":"Phase Fingers","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4698,"spellId":109077,"name":"Incendiary Fireworks Launcher","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4699,"itemId":77529,"spellId":109086,"name":"Lord Blastington's Scope of Doom","icon":"inv_misc_scopeb","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4700,"itemId":77531,"spellId":109093,"name":"Mirror Scope","icon":"inv_misc_scopea","type":14,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4717,"itemId":79061,"spellId":110764,"name":"Enchant Weapon - Pandamonium (DNT)","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4719,"spellId":113011,"name":"Inscription","icon":"trade_engraving","type":3,"stats":[130,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":6}, +{"effectId":4720,"itemId":38679,"spellId":7418,"name":"Enchant Bracer - Minor Health","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0],"quality":1}, +{"effectId":4721,"itemId":38771,"spellId":7457,"name":"Enchant Bracer - Minor Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4722,"itemId":38787,"spellId":13378,"name":"Enchant Shield - Minor Stamina","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4723,"itemId":38772,"spellId":7745,"name":"Enchant 2H Weapon - Minor Impact","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4724,"itemId":11039,"spellId":13419,"name":"Enchant Cloak - Minor Agility","icon":"inv_misc_note_01","type":4,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4725,"itemId":38777,"spellId":7779,"name":"Enchant Bracer - Minor Agility","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4726,"itemId":11167,"spellId":13687,"name":"Enchant Boots - Lesser Spirit","icon":"inv_misc_note_01","type":10,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4727,"itemId":6375,"spellId":7859,"name":"Enchant Bracer - Lesser Spirit","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4728,"itemId":38792,"spellId":13485,"name":"Enchant Shield - Lesser Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4729,"itemId":38803,"spellId":13622,"name":"Enchant Bracer - Lesser Intellect","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4730,"itemId":38793,"spellId":13501,"name":"Enchant Bracer - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4731,"itemId":38805,"spellId":13631,"name":"Enchant Shield - Lesser Stamina","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4732,"itemId":50406,"spellId":71692,"name":"Enchant Gloves - Angler","icon":"inv_enchant_formulagood_01","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4733,"itemId":11081,"spellId":13464,"name":"Enchant Shield - Lesser Protection","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0],"quality":2}, +{"effectId":4734,"itemId":11206,"spellId":13882,"name":"Enchant Cloak - Lesser Agility","icon":"inv_misc_note_01","type":4,"stats":[0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4735,"itemId":38809,"spellId":13642,"name":"Enchant Bracer - Spirit","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4736,"itemId":38816,"spellId":13659,"name":"Enchant Shield - Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4737,"itemId":38812,"spellId":13648,"name":"Enchant Bracer - Stamina","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4738,"itemId":11202,"spellId":13817,"name":"Enchant Shield - Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4739,"itemId":38836,"spellId":13887,"name":"Enchant Gloves - Strength","icon":"inv_misc_enchantedscroll","type":7,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4740,"itemId":38827,"spellId":13815,"name":"Enchant Gloves - Agility","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4741,"itemId":38839,"spellId":13905,"name":"Enchant Shield - Greater Spirit","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4742,"itemId":16244,"spellId":20013,"name":"Enchant Gloves - Greater Strength","icon":"inv_misc_note_01","type":7,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4743,"itemId":11225,"spellId":13945,"name":"Enchant Bracer - Greater Stamina","icon":"inv_misc_note_01","type":6,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4744,"itemId":16217,"spellId":20017,"name":"Enchant Shield - Greater Stamina","icon":"inv_misc_note_01","type":13,"enchantType":2,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4745,"itemId":38821,"spellId":13693,"name":"Enchant Weapon - Striking","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4746,"itemId":22552,"spellId":27967,"name":"Enchant Weapon - Major Striking","icon":"inv_misc_note_01","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4747,"itemId":38959,"spellId":44500,"name":"Enchant Cloak - Superior Agility","icon":"inv_misc_enchantedscroll","type":4,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4748,"itemId":38976,"spellId":44589,"name":"Enchant Boots - Superior Agility","icon":"inv_misc_enchantedscroll","type":10,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4750,"spellId":82200,"name":"Spinal Healing Injector","icon":"trade_engraving","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4803,"itemId":83006,"spellId":121192,"name":"Greater Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[200,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4804,"itemId":83007,"spellId":121193,"name":"Greater Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,200,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4805,"itemId":87560,"spellId":121194,"name":"Greater Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,0,300,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4806,"itemId":87559,"spellId":121195,"name":"Greater Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_yellow","type":3,"stats":[0,0,0,200,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"effectId":4807,"itemId":84578,"spellId":103465,"name":"Enchant Ring - Greater Strength","icon":"inv_scroll_03","type":11,"stats":[160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":4808,"spellId":121988,"name":"Enchant Weapon - Magic Weapon","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4822,"itemId":83764,"spellId":122387,"name":"Shadowleather Leg Armor","icon":"inv_misc_cataclysmarmorkit_02","type":9,"stats":[0,285,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4823,"itemId":83765,"spellId":122388,"name":"Angerhide Leg Armor","icon":"inv_misc_armorkit_mop_04","type":9,"stats":[285,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4824,"itemId":83763,"spellId":122386,"name":"Ironscale Leg Armor","icon":"inv_misc_armorkit_mop_01","type":9,"stats":[0,0,430,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4825,"itemId":82445,"spellId":122392,"name":"Greater Cerulean Spellthread","icon":"inv_belt_42","type":9,"stats":[0,0,0,285,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4826,"itemId":82444,"spellId":122393,"name":"Greater Pearlescent Spellthread","icon":"inv_belt_42c","type":9,"stats":[0,0,0,285,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4869,"itemId":85559,"spellId":124091,"name":"Sha Armor Kit","icon":"inv_misc_armorkit_28","type":3,"extraTypes":[5,7,9,10],"stats":[0,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4870,"itemId":85570,"spellId":124116,"name":"Toughened Leg Armor","icon":"inv_misc_armorkit_mop_00","type":9,"stats":[0,0,250,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4871,"itemId":85569,"spellId":124118,"name":"Sha-Touched Leg Armor","icon":"inv_misc_cataclysmarmorkit_01","type":9,"stats":[0,170,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4872,"itemId":85568,"spellId":124119,"name":"Brutal Leg Armor","icon":"inv_misc_armorkit_mop_02","type":9,"stats":[170,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4873,"itemId":43097,"spellId":57683,"name":"Fur Lining - Agility","icon":"inv_bracer_08","type":6,"stats":[0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4874,"spellId":124549,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4875,"spellId":124551,"name":"Fur Lining - Agility","icon":"trade_engraving","type":6,"stats":[0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4877,"spellId":124552,"name":"Fur Lining - Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4878,"spellId":124553,"name":"Fur Lining - Stamina","icon":"trade_engraving","type":6,"stats":[0,0,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4879,"spellId":124554,"name":"Fur Lining - Strength","icon":"trade_engraving","type":6,"stats":[500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":8}, +{"effectId":4880,"spellId":124559,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,285,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4881,"spellId":124561,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[285,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4882,"spellId":124563,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,430,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4883,"spellId":124564,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,95,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4884,"spellId":124565,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,143,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4885,"spellId":124566,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[95,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4886,"spellId":124567,"name":"Primal Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,37,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4887,"spellId":124568,"name":"Heavy Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[0,0,55,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4888,"spellId":124569,"name":"Draconic Leg Reinforcements","icon":"trade_engraving","type":9,"stats":[37,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4892,"spellId":125481,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4893,"spellId":125482,"name":"Darkglow Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4894,"spellId":125483,"name":"Swordguard Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4895,"spellId":125496,"name":"Master's Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,285,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4896,"spellId":125497,"name":"Sanctified Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,285,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":4897,"spellId":126392,"name":"Goblin Glider","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4898,"spellId":126731,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":4907,"itemId":87580,"spellId":127015,"name":"Tiger Fang Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[120,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4908,"itemId":87579,"spellId":127014,"name":"Tiger Claw Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,120,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4909,"itemId":87578,"spellId":127013,"name":"Crane Wing Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,0,0,120,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4910,"itemId":87577,"spellId":127012,"name":"Ox Horn Inscription","icon":"inv_inscription_runescrolloffortitude_blue","type":3,"stats":[0,0,180,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":4912,"itemId":87581,"spellId":113048,"name":"Secret Ox Horn Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,780,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4913,"itemId":87585,"spellId":113047,"name":"Secret Tiger Fang Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[520,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4914,"itemId":87584,"spellId":113046,"name":"Secret Tiger Claw Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,520,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4915,"itemId":87582,"spellId":113045,"name":"Secret Crane Wing Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,0,520,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4916,"itemId":87583,"spellId":113044,"name":"Secret Serpent Pearl Inscription","icon":"inv_misc_mastersinscription","type":3,"stats":[0,0,0,0,520,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":6}, +{"effectId":4918,"itemId":86597,"spellId":128286,"name":"Living Steel Weapon Chain","icon":"inv_misc_steelweaponchain","type":13,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":4992,"itemId":89717,"spellId":130749,"name":"Enchant Bracer - Exceptional Strength (Scaling)","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":4993,"itemId":89737,"spellId":130758,"name":"Enchant Shield - Greater Parry","icon":"inv_misc_enchantedscroll","type":13,"enchantType":2,"stats":[0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5000,"itemId":87748,"spellId":109099,"name":"Watergliding Jets","icon":"inv_scroll_03","type":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"requiredProfession":4}, +{"effectId":5001,"itemId":86599,"spellId":131464,"name":"Ghost Iron Shield Spike","icon":"inv_shield_63","stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5003,"itemId":82443,"spellId":131862,"name":"Cerulean Spellthread","icon":"inv_misc_thread_eternium","type":9,"stats":[0,0,0,170,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5004,"itemId":82442,"spellId":131863,"name":"Pearlescent Spellthread","icon":"inv_bracer_69","type":9,"stats":[0,0,0,170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5029,"spellId":139038,"name":"Custom - Jaina - Crackling Lightning","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5035,"itemId":95349,"spellId":139631,"name":"Enchant Weapon - Glorious Tyranny","icon":"inv_misc_enchantedscroll","type":13,"stats":[600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5055,"spellId":141167,"name":"Greater Crane Wing Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,15,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5056,"spellId":141168,"name":"Enchant Cloak - Superior Intellect","icon":"trade_engraving","type":4,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5057,"spellId":141170,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5058,"spellId":141173,"name":"Enchant Gloves - Greater Haste","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5059,"spellId":141174,"name":"Greater Cerulean Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,22,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5060,"spellId":141175,"name":"Enchant Boots - Pandaren's Step","icon":"trade_engraving","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5061,"spellId":141176,"name":"Enchant Off-Hand - Major Intellect","icon":"trade_engraving","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5062,"spellId":141177,"name":"Enchant Weapon - Jade Spirit","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5063,"spellId":141330,"name":"Synapse Springs","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":4}, +{"effectId":5076,"spellId":141445,"name":"Enchant Chest - Super Resilience","icon":"trade_engraving","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5080,"spellId":141862,"name":"Enchant Gloves - Superior Mastery","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5081,"spellId":141868,"name":"Enchant Bracer - Mastery","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5091,"spellId":141971,"name":"Greater Crane Wing Inscription","icon":"trade_engraving","type":3,"stats":[0,0,0,11,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5092,"spellId":141973,"name":"Enchant Cloak - Superior Intellect","icon":"trade_engraving","type":4,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5093,"spellId":141974,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5094,"spellId":141975,"name":"Enchant Gloves - Greater Haste","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5095,"spellId":141976,"name":"Greater Cerulean Spellthread","icon":"trade_engraving","type":9,"stats":[0,0,0,13,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5096,"spellId":141977,"name":"Enchant Boots - Pandaren's Step","icon":"trade_engraving","type":10,"stats":[0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5097,"spellId":141978,"name":"Enchant Off-Hand - Major Intellect","icon":"trade_engraving","type":13,"extraTypes":[13],"enchantType":5,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5098,"spellId":141981,"name":"Enchant Weapon - Jade Spirit","icon":"trade_engraving","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5099,"spellId":141982,"name":"Enchant Chest - Super Resilience","icon":"trade_engraving","type":5,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5100,"spellId":141983,"name":"Enchant Gloves - Superior Mastery","icon":"trade_engraving","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5101,"spellId":141984,"name":"Enchant Bracer - Mastery","icon":"trade_engraving","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5110,"spellId":142173,"name":"Lightweave Embroidery","icon":"trade_engraving","type":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":11}, +{"effectId":5111,"spellId":142175,"name":"Enchant Chest - Glorious Stats","icon":"trade_engraving","type":5,"stats":[80,80,80,80,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5112,"spellId":142177,"name":"Enchant Bracer - Super Intellect","icon":"trade_engraving","type":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5113,"spellId":142178,"name":"Enchant Ring - Greater Intellect","icon":"trade_engraving","type":11,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1,"requiredProfession":3}, +{"effectId":5124,"itemId":98164,"spellId":142469,"name":"Enchant Weapon - Spirit of Conquest","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5125,"itemId":98163,"spellId":142468,"name":"Enchant Weapon - Bloody Dancing Steel","icon":"inv_misc_enchantedscroll","type":13,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"effectId":5183,"itemId":22531,"spellId":27911,"name":"Enchant Bracer - Superior Healing","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5184,"itemId":22534,"spellId":27917,"name":"Enchant Bracer - Spellpower","icon":"inv_misc_note_01","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"effectId":5237,"itemId":35431,"spellId":33990,"name":"Enchant Chest - Major Spirit","icon":"inv_chest_cloth_29","type":5,"stats":[0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5250,"itemId":35442,"spellId":33995,"name":"Enchant Gloves - Major Strength","icon":"inv_gauntlets_26","type":7,"stats":[15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5255,"itemId":35438,"spellId":33996,"name":"Enchant Gloves - Assault","icon":"inv_gauntlets_31","type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,26,26,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5257,"itemId":38938,"spellId":34002,"name":"Enchant Bracer - Lesser Assault","icon":"inv_misc_enchantedscroll","type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5258,"itemId":35432,"spellId":34004,"name":"Enchant Cloak - Greater Agility","icon":"inv_misc_cape_18","type":4,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5259,"itemId":38967,"spellId":44529,"name":"Enchant Gloves - Major Agility","icon":"inv_misc_enchantedscroll","type":7,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"effectId":5260,"itemId":35500,"spellId":46594,"name":"Enchant Chest - Dodge","icon":"inv_misc_note_01","type":5,"stats":[0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1} ], "gems":[ {"id":22459,"name":"Void Sphere","icon":"inv_enchant_voidsphere","color":8,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,0,0,0,0,0],"quality":4}, @@ -28746,62 +18765,62 @@ {"id":23095,"name":"Bold Blood Garnet","icon":"inv_misc_gem_bloodgem_02","color":2,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23096,"name":"Brilliant Blood Garnet","icon":"inv_misc_gem_bloodgem_02","color":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23097,"name":"Delicate Blood Garnet","icon":"inv_misc_gem_bloodgem_02","color":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23098,"name":"Inscribed Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23099,"name":"Reckless Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23100,"name":"Glinting Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23101,"name":"Potent Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23103,"name":"Radiant Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23104,"name":"Jagged Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23105,"name":"Regal Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23106,"name":"Purified Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23098,"name":"Inscribed Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23099,"name":"Reckless Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23100,"name":"Glinting Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,3,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23101,"name":"Potent Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23103,"name":"Radiant Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[3,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23104,"name":"Jagged Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[0,0,4,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23105,"name":"Regal Deep Peridot","icon":"inv_misc_gem_deepperidot_02","color":5,"stats":[0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23106,"name":"Purified Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23108,"name":"Timeless Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23109,"name":"Purified Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23109,"name":"Purified Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23110,"name":"Shifting Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23111,"name":"Sovereign Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23113,"name":"Brilliant Blood Garnet","icon":"inv_misc_gem_bloodgem_02","color":2,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23114,"name":"Smooth Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23115,"name":"Subtle Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23116,"name":"Rigid Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23114,"name":"Smooth Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23115,"name":"Subtle Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23116,"name":"Rigid Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":23118,"name":"Solid Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23119,"name":"Sparkling Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23120,"name":"Stormy Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":23121,"name":"Sparkling Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23119,"name":"Sparkling Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23120,"name":"Stormy Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":23121,"name":"Sparkling Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":24027,"name":"Bold Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24028,"name":"Delicate Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24029,"name":"Brilliant Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24030,"name":"Brilliant Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24031,"name":"Delicate Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24032,"name":"Subtle Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24032,"name":"Subtle Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24033,"name":"Solid Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24035,"name":"Sparkling Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24036,"name":"Flashing Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24037,"name":"Sparkling Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24039,"name":"Stormy Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24035,"name":"Sparkling Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24036,"name":"Flashing Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24037,"name":"Sparkling Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24039,"name":"Stormy Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24047,"name":"Brilliant Living Ruby","icon":"inv_jewelcrafting_livingruby_03","color":2,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24048,"name":"Smooth Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24050,"name":"Smooth Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24051,"name":"Rigid Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24052,"name":"Subtle Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24048,"name":"Smooth Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24050,"name":"Smooth Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24051,"name":"Rigid Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24052,"name":"Subtle Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24053,"name":"Mystic Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24054,"name":"Sovereign Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24055,"name":"Shifting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":24056,"name":"Timeless Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24057,"name":"Purified Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24058,"name":"Inscribed Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24059,"name":"Potent Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24060,"name":"Reckless Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24061,"name":"Glinting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24062,"name":"Regal Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24065,"name":"Purified Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24066,"name":"Radiant Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":24067,"name":"Jagged Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":25890,"name":"Destructive Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24057,"name":"Purified Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24058,"name":"Inscribed Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24059,"name":"Potent Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24060,"name":"Reckless Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24061,"name":"Glinting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24062,"name":"Regal Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24065,"name":"Purified Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24066,"name":"Radiant Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":24067,"name":"Jagged Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":25890,"name":"Destructive Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":25893,"name":"Mystical Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":25894,"name":"Swift Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":25895,"name":"Enigmatic Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":25894,"name":"Swift Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":25895,"name":"Enigmatic Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":25896,"name":"Powerful Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":25897,"name":"Bracing Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":25898,"name":"Tenacious Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":25898,"name":"Tenacious Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":25899,"name":"Brutal Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":25901,"name":"Insightful Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":27679,"name":"Mystic Dawnstone","icon":"inv_misc_gem_topaz_01","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, @@ -28811,11 +18830,12 @@ {"id":27809,"name":"Jagged Deep Peridot","icon":"inv_misc_gem_deepperidot_01","color":5,"stats":[0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":27812,"name":"Brilliant Blood Garnet","icon":"inv_misc_gem_ruby_01","color":2,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":27820,"name":"Jagged Deep Peridot","icon":"inv_misc_gem_deepperidot_03","color":5,"stats":[0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":27864,"name":"Extended Cost Copying Bryanite","icon":"inv_misc_gem_crystalcut_01","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,0,0,0],"quality":2}, {"id":28118,"name":"Brilliant Ornate Ruby","icon":"inv_misc_gem_bloodstone_01","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":28119,"name":"Smooth Ornate Dawnstone","icon":"inv_misc_gem_topaz_01","color":4,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":28120,"name":"Smooth Ornate Dawnstone","icon":"inv_misc_gem_topaz_02","color":4,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":28123,"name":"Potent Ornate Topaz","icon":"inv_misc_gem_opal_02","color":6,"stats":[0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":28290,"name":"Smooth Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":28290,"name":"Smooth Golden Draenite","icon":"inv_misc_gem_goldendraenite_02","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":28360,"name":"Delicate Blood Garnet","icon":"inv_misc_gem_bloodstone_02","color":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":28361,"name":"Delicate Blood Garnet","icon":"inv_misc_gem_bloodstone_02","color":2,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":28362,"name":"Delicate Ornate Ruby","icon":"inv_misc_gem_ruby_02","color":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, @@ -28826,479 +18846,480 @@ {"id":28461,"name":"Brilliant Tourmaline","icon":"inv_misc_gem_ruby_03","color":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, {"id":28462,"name":"Delicate Tourmaline","icon":"inv_misc_gem_ruby_03","color":2,"stats":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, {"id":28463,"name":"Solid Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28464,"name":"Sparkling Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28465,"name":"Sparkling Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28464,"name":"Sparkling Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28465,"name":"Sparkling Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, {"id":28466,"name":"Brilliant Tourmaline","icon":"inv_misc_gem_ruby_03","color":2,"stats":[0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28467,"name":"Smooth Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28468,"name":"Rigid Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28469,"name":"Smooth Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28470,"name":"Subtle Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, -{"id":28556,"name":"Swift Windfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":28557,"name":"Quickened Starfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":28467,"name":"Smooth Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28468,"name":"Rigid Zircon","icon":"inv_misc_gem_crystal_03","color":3,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28469,"name":"Smooth Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28470,"name":"Subtle Amber","icon":"inv_misc_gem_topaz_03","color":4,"stats":[0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":1}, +{"id":28556,"name":"Swift Windfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":28557,"name":"Quickened Starfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":28595,"name":"Delicate Blood Garnet","icon":"inv_misc_gem_bloodgem_02","color":2,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":30546,"name":"Sovereign Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30547,"name":"Reckless Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30548,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30549,"name":"Shifting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30550,"name":"Misty Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30551,"name":"Reckless Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30552,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30553,"name":"Glinting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30554,"name":"Stalwart Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30555,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30556,"name":"Glinting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30558,"name":"Stalwart Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30559,"name":"Etched Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30560,"name":"Misty Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30563,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30564,"name":"Veiled Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30565,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30566,"name":"Defender's Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":30546,"name":"Sovereign Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30547,"name":"Reckless Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30548,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30549,"name":"Shifting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30550,"name":"Misty Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,8,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30551,"name":"Reckless Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30552,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30553,"name":"Glinting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30554,"name":"Stalwart Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30555,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30556,"name":"Glinting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30558,"name":"Stalwart Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30559,"name":"Etched Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30560,"name":"Misty Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30563,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30564,"name":"Veiled Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30565,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30566,"name":"Defender's Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":30571,"name":"Don Rodrigo's Heart","icon":"inv_misc_gem_ruby_01","color":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":30572,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30573,"name":"Mysterious Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30574,"name":"Shifting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30575,"name":"Nimble Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30581,"name":"Willful Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30582,"name":"Deadly Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30583,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30584,"name":"Inscribed Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30585,"name":"Polished Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,4,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30586,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30587,"name":"Champion's Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30588,"name":"Potent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30589,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30590,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30591,"name":"Lucent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30592,"name":"Steady Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30593,"name":"Potent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30594,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":30572,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30573,"name":"Mysterious Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30574,"name":"Shifting Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30575,"name":"Nimble Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30581,"name":"Willful Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30582,"name":"Deadly Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30583,"name":"Timeless Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30584,"name":"Inscribed Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30585,"name":"Polished Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,4,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30586,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30587,"name":"Champion's Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30588,"name":"Potent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30589,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30590,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30591,"name":"Lucent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30592,"name":"Steady Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30593,"name":"Potent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30594,"name":"Regal Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":30598,"name":"Don Amancio's Heart","icon":"inv_misc_gem_ruby_01","color":2,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":30600,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30601,"name":"Steady Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30602,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30603,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30604,"name":"Resplendent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30605,"name":"Nimble Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30606,"name":"Lightning Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30607,"name":"Splendid Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":30608,"name":"Radiant Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":30600,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30601,"name":"Steady Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30602,"name":"Jagged Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30603,"name":"Purified Tanzanite","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30604,"name":"Resplendent Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30605,"name":"Nimble Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,10,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30606,"name":"Lightning Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,0,0,0,10,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30607,"name":"Splendid Fire Opal","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":30608,"name":"Radiant Chrysoprase","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":31116,"name":"Timeless Amethyst","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":31117,"name":"Tireless Soothing Amethyst","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":31118,"name":"Sovereign Amethyst","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":31860,"name":"Rigid Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":31861,"name":"Rigid Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":31860,"name":"Rigid Azure Moonstone","icon":"inv_misc_gem_azuredraenite_02","color":3,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":31861,"name":"Rigid Star of Elune","icon":"inv_jewelcrafting_starofelune_03","color":3,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":31862,"name":"Shifting Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":31863,"name":"Shifting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":31864,"name":"Shifting Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":31865,"name":"Glinting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":31866,"name":"Veiled Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":31867,"name":"Veiled Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":31868,"name":"Deadly Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":31869,"name":"Deadly Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":31865,"name":"Glinting Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":31866,"name":"Veiled Shadow Draenite","icon":"inv_misc_gem_ebondraenite_02","color":7,"stats":[0,0,0,3,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":31867,"name":"Veiled Nightseye","icon":"inv_jewelcrafting_nightseye_03","color":7,"stats":[0,0,0,4,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":31868,"name":"Deadly Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,4,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":31869,"name":"Deadly Flame Spessarite","icon":"inv_misc_gem_flamespessarite_02","color":6,"stats":[0,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":32193,"name":"Bold Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32194,"name":"Delicate Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32195,"name":"Brilliant Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32196,"name":"Brilliant Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32197,"name":"Delicate Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32198,"name":"Subtle Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32199,"name":"Flashing Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32197,"name":"Delicate Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32198,"name":"Subtle Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32199,"name":"Flashing Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32200,"name":"Solid Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32201,"name":"Sparkling Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32202,"name":"Sparkling Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32203,"name":"Stormy Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32201,"name":"Sparkling Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32202,"name":"Sparkling Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32203,"name":"Stormy Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32204,"name":"Brilliant Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32205,"name":"Smooth Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32206,"name":"Rigid Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32207,"name":"Smooth Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32208,"name":"Subtle Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32205,"name":"Smooth Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32206,"name":"Rigid Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32207,"name":"Smooth Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32208,"name":"Subtle Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32209,"name":"Mystic Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32210,"name":"Rigid Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32210,"name":"Rigid Empyrean Sapphire","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32211,"name":"Sovereign Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[5,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32212,"name":"Shifting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32213,"name":"Shifting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32214,"name":"Glinting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32214,"name":"Glinting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32215,"name":"Timeless Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32216,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32217,"name":"Inscribed Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32218,"name":"Potent Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32219,"name":"Reckless Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32220,"name":"Glinting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32221,"name":"Veiled Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32222,"name":"Deadly Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32223,"name":"Regal Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32224,"name":"Radiant Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32225,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":32226,"name":"Jagged Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32216,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32217,"name":"Inscribed Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32218,"name":"Potent Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32219,"name":"Reckless Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32220,"name":"Glinting Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32221,"name":"Veiled Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32222,"name":"Deadly Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32223,"name":"Regal Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32224,"name":"Radiant Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32225,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":32226,"name":"Jagged Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":32409,"name":"Relentless Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":32410,"name":"Thundering Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":32634,"name":"Shifting Amethyst","icon":"inv_misc_gem_ebondraenite_03","color":7,"stats":[0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":32635,"name":"Timeless Amethyst","icon":"inv_misc_gem_ebondraenite_03","color":7,"stats":[0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":32636,"name":"Purified Amethyst","icon":"inv_misc_gem_ebondraenite_03","color":7,"stats":[0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":32637,"name":"Deadly Citrine","icon":"inv_misc_gem_opal_01","color":6,"stats":[0,5,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, +{"id":32637,"name":"Deadly Citrine","icon":"inv_misc_gem_opal_01","color":6,"stats":[0,5,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":32638,"name":"Reckless Citrine","icon":"inv_misc_gem_opal_01","color":6,"stats":[0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":32639,"name":"Jagged Mossjewel","icon":"inv_jewelcrafting_talasite_01","color":5,"stats":[0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, {"id":32640,"name":"Tense Unstable Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":32641,"name":"Imbued Unstable Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":32833,"name":"Purified Jaggal Pearl","icon":"inv_misc_gem_pearl_08","color":7,"stats":[0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":32836,"name":"Purified Shadow Pearl","icon":"inv_misc_gem_pearl_07","color":7,"stats":[0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":33131,"name":"Crimson Sun","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33132,"name":"Delicate Fire Ruby","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33133,"name":"Don Julio's Heart","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33134,"name":"Kailee's Rose","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33135,"name":"Falling Star","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33137,"name":"Sparkling Falling Star","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33138,"name":"Mystic Bladestone","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33139,"name":"Brilliant Bladestone","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33140,"name":"Blood of Amber","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33141,"name":"Rigid Bladestone","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33142,"name":"Rigid Bladestone","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33143,"name":"Stone of Blades","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33144,"name":"Facet of Eternity","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, -{"id":33633,"name":"Forceful Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":32833,"name":"Purified Jaggal Pearl","icon":"inv_misc_gem_pearl_08","color":7,"stats":[0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":32836,"name":"Purified Shadow Pearl","icon":"inv_misc_gem_pearl_07","color":7,"stats":[0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":33131,"name":"Crimson Sun","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33132,"name":"Delicate Fire Ruby","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33133,"name":"Don Julio's Heart","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33134,"name":"Kailee's Rose","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33135,"name":"Falling Star","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33137,"name":"Sparkling Falling Star","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33138,"name":"Mystic Bladestone","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33139,"name":"Brilliant Bladestone","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33140,"name":"Blood of Amber","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33141,"name":"Rigid Bladestone","icon":"inv_jewelcrafting_empyreansapphire_02","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33142,"name":"Rigid Bladestone","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33143,"name":"Stone of Blades","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, +{"id":33144,"name":"Facet of Eternity","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true,"requiredProfession":7}, {"id":33782,"name":"Steady Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":34220,"name":"Chaotic Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":34220,"name":"Chaotic Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":34256,"name":"Charmed Amani Jewel","icon":"inv_misc_gem_pearl_07","color":3,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"unique":true}, +{"id":34627,"name":"Heavy Tonk Armor","icon":"inv_stone_weightstone_05","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":34831,"name":"Eye of the Sea","icon":"inv_jewelcrafting_starofelune_01","color":3,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, -{"id":35315,"name":"Quick Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":35316,"name":"Reckless Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":35318,"name":"Forceful Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":35315,"name":"Quick Dawnstone","icon":"inv_jewelcrafting_dawnstone_03","color":4,"stats":[0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":35316,"name":"Reckless Noble Topaz","icon":"inv_jewelcrafting_nobletopaz_03","color":6,"stats":[0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":35318,"name":"Forceful Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":35487,"name":"Delicate Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":35488,"name":"Brilliant Crimson Spinel","icon":"inv_jewelcrafting_crimsonspinel_02","color":2,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":35501,"name":"Eternal Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":35501,"name":"Eternal Earthstorm Diamond","icon":"inv_misc_gem_diamond_06","color":1,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":35503,"name":"Ember Skyfire Diamond","icon":"inv_misc_gem_diamond_07","color":1,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":35707,"name":"Regal Talasite","icon":"inv_jewelcrafting_talasite_03","color":5,"stats":[0,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":35758,"name":"Steady Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":35759,"name":"Forceful Seaspray Emerald","icon":"inv_jewelcrafting_seasprayemerald_02","color":5,"stats":[0,0,7,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":35760,"name":"Reckless Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":35761,"name":"Quick Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":35760,"name":"Reckless Pyrestone","icon":"inv_jewelcrafting_pyrestone_02","color":6,"stats":[0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":35761,"name":"Quick Lionseye","icon":"inv_jewelcrafting_lionseye_02","color":4,"stats":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":36766,"name":"Delicate Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":36767,"name":"Solid Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":37503,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":37503,"name":"Purified Shadowsong Amethyst","icon":"inv_jewelcrafting_shadowsongamethyst_02","color":7,"stats":[0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":38538,"name":"Riding Crop","icon":"inv_misc_crop_02","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":39900,"name":"Bold Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39905,"name":"Delicate Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39906,"name":"Delicate Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39907,"name":"Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39908,"name":"Flashing Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39909,"name":"Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39910,"name":"Precise Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39907,"name":"Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39908,"name":"Flashing Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39909,"name":"Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39910,"name":"Precise Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39911,"name":"Brilliant Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39912,"name":"Brilliant Bloodstone","icon":"inv_jewelcrafting_gem_22","color":2,"stats":[0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39914,"name":"Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39915,"name":"Rigid Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39916,"name":"Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39914,"name":"Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39915,"name":"Rigid Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39916,"name":"Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39917,"name":"Mystic Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39918,"name":"Quick Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39918,"name":"Quick Sun Crystal","icon":"inv_jewelcrafting_gem_21","color":4,"stats":[0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39919,"name":"Solid Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39920,"name":"Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39927,"name":"Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39932,"name":"Stormy Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39933,"name":"Jagged Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39920,"name":"Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39927,"name":"Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39932,"name":"Stormy Chalcedony","icon":"inv_jewelcrafting_gem_24","color":3,"stats":[12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39933,"name":"Jagged Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39934,"name":"Sovereign Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[6,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39935,"name":"Shifting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39936,"name":"Timeless Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39937,"name":"Shifting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39938,"name":"Regal Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39939,"name":"Defender's Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39940,"name":"Guardian's Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39941,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39942,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39943,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39944,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39945,"name":"Mysterious Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39946,"name":"Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39947,"name":"Inscribed Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39948,"name":"Etched Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39949,"name":"Champion's Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39938,"name":"Regal Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39939,"name":"Defender's Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39940,"name":"Guardian's Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39941,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39942,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39943,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39944,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39945,"name":"Mysterious Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39946,"name":"Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39947,"name":"Inscribed Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39948,"name":"Etched Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[6,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39949,"name":"Champion's Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39950,"name":"Resplendent Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39951,"name":"Fierce Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39952,"name":"Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39953,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39951,"name":"Fierce Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39952,"name":"Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39953,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39954,"name":"Lucent Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39955,"name":"Deft Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39956,"name":"Potent Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39957,"name":"Veiled Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39955,"name":"Deft Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39956,"name":"Potent Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39957,"name":"Veiled Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39958,"name":"Willful Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39959,"name":"Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39960,"name":"Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39961,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39959,"name":"Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39960,"name":"Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39961,"name":"Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,6,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39962,"name":"Lucent Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39963,"name":"Deft Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39964,"name":"Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39965,"name":"Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39966,"name":"Accurate Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39967,"name":"Resolute Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39963,"name":"Deft Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39964,"name":"Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39965,"name":"Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39966,"name":"Accurate Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39967,"name":"Resolute Huge Citrine","icon":"inv_jewelcrafting_gem_20","color":6,"stats":[0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39968,"name":"Timeless Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39974,"name":"Jagged Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39975,"name":"Nimble Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39976,"name":"Regal Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39974,"name":"Jagged Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39975,"name":"Nimble Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,12,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39976,"name":"Regal Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39977,"name":"Steady Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39978,"name":"Forceful Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39979,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39980,"name":"Misty Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39981,"name":"Lightning Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39982,"name":"Turbid Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39983,"name":"Energized Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39984,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39985,"name":"Misty Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39986,"name":"Lightning Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39988,"name":"Turbid Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39989,"name":"Energized Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39990,"name":"Radiant Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39991,"name":"Radiant Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":39992,"name":"Shattered Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39978,"name":"Forceful Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,9,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39979,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39980,"name":"Misty Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39981,"name":"Lightning Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39982,"name":"Turbid Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39983,"name":"Energized Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39984,"name":"Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_23","color":7,"stats":[0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39985,"name":"Misty Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39986,"name":"Lightning Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,0,12,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39988,"name":"Turbid Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39989,"name":"Energized Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[0,0,0,0,12,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39990,"name":"Radiant Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39991,"name":"Radiant Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[6,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":39992,"name":"Shattered Dark Jade","icon":"inv_jewelcrafting_gem_19","color":5,"stats":[6,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":39996,"name":"Bold Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":39997,"name":"Delicate Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":39998,"name":"Brilliant Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":39999,"name":"Delicate Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40000,"name":"Subtle Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40001,"name":"Flashing Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40002,"name":"Smooth Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40003,"name":"Precise Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40000,"name":"Subtle Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40001,"name":"Flashing Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40002,"name":"Smooth Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40003,"name":"Precise Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40008,"name":"Solid Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40009,"name":"Sparkling Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40010,"name":"Sparkling Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40011,"name":"Stormy Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40009,"name":"Sparkling Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40010,"name":"Sparkling Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40011,"name":"Stormy Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40012,"name":"Brilliant Scarlet Ruby","icon":"inv_jewelcrafting_gem_28","color":2,"stats":[0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40013,"name":"Smooth Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40014,"name":"Rigid Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40015,"name":"Subtle Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40013,"name":"Smooth Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40014,"name":"Rigid Sky Sapphire","icon":"inv_jewelcrafting_gem_27","color":3,"stats":[0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40015,"name":"Subtle Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40016,"name":"Mystic Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40017,"name":"Quick Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40017,"name":"Quick Autumn's Glow","icon":"inv_jewelcrafting_gem_26","color":4,"stats":[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40022,"name":"Sovereign Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[8,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40023,"name":"Shifting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40024,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40024,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40025,"name":"Timeless Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40026,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40027,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40028,"name":"Mysterious Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40026,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40027,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40028,"name":"Mysterious Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40029,"name":"Shifting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40030,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40031,"name":"Regal Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40032,"name":"Defender's Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40033,"name":"Jagged Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40034,"name":"Guardian's Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40037,"name":"Inscribed Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40038,"name":"Etched Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40039,"name":"Champion's Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40030,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40031,"name":"Regal Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40032,"name":"Defender's Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40033,"name":"Jagged Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40034,"name":"Guardian's Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40037,"name":"Inscribed Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40038,"name":"Etched Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[8,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40039,"name":"Champion's Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40040,"name":"Resplendent Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40041,"name":"Fierce Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40043,"name":"Deadly Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40044,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40041,"name":"Fierce Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[8,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40043,"name":"Deadly Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40044,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40045,"name":"Lucent Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40046,"name":"Deft Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40047,"name":"Reckless Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40048,"name":"Potent Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40049,"name":"Veiled Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40046,"name":"Deft Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40047,"name":"Reckless Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40048,"name":"Potent Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40049,"name":"Veiled Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40050,"name":"Willful Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40051,"name":"Reckless Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40052,"name":"Deadly Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40053,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40051,"name":"Reckless Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40052,"name":"Deadly Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40053,"name":"Glinting Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,8,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40054,"name":"Lucent Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40055,"name":"Deft Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40056,"name":"Stalwart Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40057,"name":"Stalwart Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40058,"name":"Accurate Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40059,"name":"Resolute Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40055,"name":"Deft Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,8,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40056,"name":"Stalwart Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40057,"name":"Stalwart Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40058,"name":"Accurate Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40059,"name":"Resolute Monarch Topaz","icon":"inv_jewelcrafting_gem_30","color":6,"stats":[0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40085,"name":"Timeless Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40086,"name":"Jagged Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40088,"name":"Nimble Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,8,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40089,"name":"Regal Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40086,"name":"Jagged Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40088,"name":"Nimble Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,16,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40089,"name":"Regal Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40090,"name":"Steady Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40091,"name":"Forceful Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40092,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40094,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40095,"name":"Misty Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40096,"name":"Misty Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40098,"name":"Radiant Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40099,"name":"Lightning Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40100,"name":"Lightning Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40101,"name":"Radiant Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40102,"name":"Turbid Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40103,"name":"Turbid Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40104,"name":"Energized Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40105,"name":"Energized Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":40106,"name":"Shattered Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40091,"name":"Forceful Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,12,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40092,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40094,"name":"Purified Twilight Opal","icon":"inv_jewelcrafting_gem_29","color":7,"stats":[0,0,0,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40095,"name":"Misty Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40096,"name":"Misty Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40098,"name":"Radiant Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[8,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40099,"name":"Lightning Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40100,"name":"Lightning Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40101,"name":"Radiant Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[8,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40102,"name":"Turbid Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40103,"name":"Turbid Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40104,"name":"Energized Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40105,"name":"Energized Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[0,0,0,0,16,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40106,"name":"Shattered Forest Emerald","icon":"inv_jewelcrafting_gem_25","color":5,"stats":[8,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":40111,"name":"Bold Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40112,"name":"Delicate Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40113,"name":"Brilliant Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40114,"name":"Delicate Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40115,"name":"Subtle King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40116,"name":"Flashing Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40117,"name":"Smooth King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40118,"name":"Precise Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40115,"name":"Subtle King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40116,"name":"Flashing Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40117,"name":"Smooth King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40118,"name":"Precise Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40119,"name":"Solid Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40120,"name":"Sparkling Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40121,"name":"Sparkling Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40122,"name":"Stormy Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40120,"name":"Sparkling Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40121,"name":"Sparkling Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40122,"name":"Stormy Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40123,"name":"Brilliant Cardinal Ruby","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40124,"name":"Smooth King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40125,"name":"Rigid Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40126,"name":"Subtle King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40124,"name":"Smooth King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40125,"name":"Rigid Majestic Zircon","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40126,"name":"Subtle King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40127,"name":"Mystic King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40128,"name":"Quick King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40128,"name":"Quick King's Amber","icon":"inv_jewelcrafting_gem_38","color":4,"stats":[0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40129,"name":"Sovereign Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40130,"name":"Shifting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40131,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40131,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40132,"name":"Timeless Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40133,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40134,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40135,"name":"Mysterious Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40133,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40134,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40135,"name":"Mysterious Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40136,"name":"Shifting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40137,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40138,"name":"Regal Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40139,"name":"Defender's Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40140,"name":"Jagged Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40141,"name":"Guardian's Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40142,"name":"Inscribed Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40143,"name":"Etched Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40144,"name":"Champion's Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40137,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40138,"name":"Regal Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40139,"name":"Defender's Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40140,"name":"Jagged Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40141,"name":"Guardian's Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40142,"name":"Inscribed Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40143,"name":"Etched Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[10,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40144,"name":"Champion's Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40145,"name":"Resplendent Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40146,"name":"Fierce Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40147,"name":"Deadly Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40148,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40146,"name":"Fierce Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40147,"name":"Deadly Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40148,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40149,"name":"Lucent Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40150,"name":"Deft Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40151,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40152,"name":"Potent Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40153,"name":"Veiled Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40150,"name":"Deft Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40151,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40152,"name":"Potent Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40153,"name":"Veiled Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40154,"name":"Willful Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40155,"name":"Reckless Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40156,"name":"Deadly Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40157,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40156,"name":"Deadly Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40157,"name":"Glinting Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40158,"name":"Lucent Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40159,"name":"Deft Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40160,"name":"Stalwart Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40161,"name":"Stalwart Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40162,"name":"Accurate Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40163,"name":"Resolute Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40159,"name":"Deft Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40160,"name":"Stalwart Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40161,"name":"Stalwart Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40162,"name":"Accurate Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40163,"name":"Resolute Ametrine","icon":"inv_jewelcrafting_gem_39","color":6,"stats":[0,0,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40164,"name":"Timeless Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40165,"name":"Jagged Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40166,"name":"Nimble Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40167,"name":"Regal Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40165,"name":"Jagged Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40166,"name":"Nimble Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40167,"name":"Regal Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":40168,"name":"Steady Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40169,"name":"Forceful Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40170,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40171,"name":"Misty Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40172,"name":"Lightning Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40173,"name":"Turbid Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40174,"name":"Energized Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40175,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40176,"name":"Misty Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40177,"name":"Lightning Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40178,"name":"Turbid Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40179,"name":"Energized Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40180,"name":"Radiant Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40181,"name":"Radiant Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":40182,"name":"Shattered Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":41285,"name":"Chaotic Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41307,"name":"Destructive Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":40169,"name":"Forceful Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,15,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40170,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40171,"name":"Misty Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40172,"name":"Lightning Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40173,"name":"Turbid Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40174,"name":"Energized Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40175,"name":"Purified Dreadstone","icon":"inv_jewelcrafting_gem_40","color":7,"stats":[0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40176,"name":"Misty Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40177,"name":"Lightning Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40178,"name":"Turbid Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40179,"name":"Energized Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[0,0,0,0,20,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40180,"name":"Radiant Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40181,"name":"Radiant Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":40182,"name":"Shattered Eye of Zul","icon":"inv_jewelcrafting_gem_41","color":5,"stats":[10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":41285,"name":"Chaotic Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41307,"name":"Destructive Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41333,"name":"Ember Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41335,"name":"Enigmatic Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41339,"name":"Swift Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41335,"name":"Enigmatic Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41339,"name":"Swift Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41375,"name":"Tireless Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41376,"name":"Revitalizing Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41376,"name":"Revitalizing Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41377,"name":"Shielded Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41378,"name":"Forlorn Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41379,"name":"Impassive Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41379,"name":"Impassive Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41380,"name":"Austere Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41381,"name":"Persistent Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41381,"name":"Persistent Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41382,"name":"Trenchant Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41385,"name":"Invigorating Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41389,"name":"Beaming Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41385,"name":"Invigorating Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41389,"name":"Beaming Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41395,"name":"Bracing Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41396,"name":"Eternal Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, +{"id":41396,"name":"Eternal Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41397,"name":"Powerful Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41398,"name":"Relentless Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41400,"name":"Thundering Skyflare Diamond","icon":"inv_jewelcrafting_icediamond_02","color":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, {"id":41401,"name":"Insightful Earthsiege Diamond","icon":"inv_jewelcrafting_shadowspirit_02","color":1,"stats":[0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3}, -{"id":41429,"name":"Perfect Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41429,"name":"Perfect Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41432,"name":"Perfect Bold Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41433,"name":"Perfect Delicate Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41434,"name":"Perfect Delicate Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41435,"name":"Perfect Flashing Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41436,"name":"Perfect Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41437,"name":"Perfect Precise Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41435,"name":"Perfect Flashing Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41436,"name":"Perfect Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41437,"name":"Perfect Precise Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41438,"name":"Perfect Brilliant Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41439,"name":"Perfect Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41440,"name":"Perfect Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41439,"name":"Perfect Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41440,"name":"Perfect Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41441,"name":"Perfect Solid Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41442,"name":"Perfect Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41443,"name":"Perfect Stormy Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41442,"name":"Perfect Sparkling Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41443,"name":"Perfect Stormy Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41444,"name":"Perfect Brilliant Bloodstone","icon":"inv_jewelcrafting_gem_16","color":2,"stats":[0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41445,"name":"Perfect Mystic Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41446,"name":"Perfect Quick Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41447,"name":"Perfect Rigid Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41448,"name":"Perfect Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41449,"name":"Perfect Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41446,"name":"Perfect Quick Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41447,"name":"Perfect Rigid Chalcedony","icon":"inv_jewelcrafting_gem_17","color":3,"stats":[0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41448,"name":"Perfect Smooth Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41449,"name":"Perfect Subtle Sun Crystal","icon":"inv_jewelcrafting_gem_15","color":4,"stats":[0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41450,"name":"Perfect Shifting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41451,"name":"Perfect Defender's Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41451,"name":"Perfect Defender's Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41452,"name":"Perfect Timeless Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41453,"name":"Perfect Guardian's Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41454,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41455,"name":"Perfect Mysterious Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41456,"name":"Perfect Jagged Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41457,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41458,"name":"Perfect Regal Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41459,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41453,"name":"Perfect Guardian's Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41454,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41455,"name":"Perfect Mysterious Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41456,"name":"Perfect Jagged Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41457,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41458,"name":"Perfect Regal Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41459,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41460,"name":"Perfect Shifting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41461,"name":"Perfect Sovereign Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[7,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41462,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41463,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41464,"name":"Perfect Regal Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41465,"name":"Perfect Energized Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41466,"name":"Perfect Forceful Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41467,"name":"Perfect Energized Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41468,"name":"Perfect Jagged Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41469,"name":"Perfect Lightning Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41470,"name":"Perfect Misty Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41471,"name":"Perfect Turbid Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41472,"name":"Perfect Radiant Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41473,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41474,"name":"Perfect Shattered Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41475,"name":"Perfect Lightning Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41462,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41463,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41464,"name":"Perfect Regal Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41465,"name":"Perfect Energized Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41466,"name":"Perfect Forceful Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41467,"name":"Perfect Energized Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41468,"name":"Perfect Jagged Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41469,"name":"Perfect Lightning Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41470,"name":"Perfect Misty Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41471,"name":"Perfect Turbid Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41472,"name":"Perfect Radiant Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41473,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41474,"name":"Perfect Shattered Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41475,"name":"Perfect Lightning Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41476,"name":"Perfect Steady Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41477,"name":"Perfect Misty Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41478,"name":"Perfect Radiant Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41477,"name":"Perfect Misty Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41478,"name":"Perfect Radiant Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41479,"name":"Perfect Timeless Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,10,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41480,"name":"Perfect Turbid Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41481,"name":"Perfect Nimble Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41482,"name":"Perfect Accurate Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41480,"name":"Perfect Turbid Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41481,"name":"Perfect Nimble Dark Jade","icon":"inv_jewelcrafting_gem_13","color":5,"stats":[0,0,0,0,0,14,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41482,"name":"Perfect Accurate Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,0,0,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41483,"name":"Perfect Champion's Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41484,"name":"Perfect Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41485,"name":"Perfect Deft Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41484,"name":"Perfect Deadly Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41485,"name":"Perfect Deft Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41486,"name":"Perfect Willful Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41487,"name":"Perfect Lucent Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41488,"name":"Perfect Etched Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[7,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41489,"name":"Perfect Fierce Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41490,"name":"Perfect Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41491,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41492,"name":"Perfect Inscribed Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41488,"name":"Perfect Etched Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[7,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41489,"name":"Perfect Fierce Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41490,"name":"Perfect Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41491,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41492,"name":"Perfect Inscribed Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41493,"name":"Perfect Lucent Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41494,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41495,"name":"Perfect Potent Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41496,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41497,"name":"Perfect Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41498,"name":"Perfect Resolute Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41494,"name":"Perfect Purified Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41495,"name":"Perfect Potent Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,7,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41496,"name":"Perfect Glinting Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41497,"name":"Perfect Reckless Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,7,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41498,"name":"Perfect Resolute Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":41499,"name":"Perfect Resplendent Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41500,"name":"Perfect Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41501,"name":"Perfect Deft Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, -{"id":41502,"name":"Perfect Veiled Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41500,"name":"Perfect Stalwart Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41501,"name":"Perfect Deft Huge Citrine","icon":"inv_jewelcrafting_gem_14","color":6,"stats":[0,7,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, +{"id":41502,"name":"Perfect Veiled Shadow Crystal","icon":"inv_jewelcrafting_gem_18","color":7,"stats":[0,0,0,7,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2}, {"id":42142,"name":"Bold Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":42143,"name":"Delicate Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":42144,"name":"Brilliant Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42145,"name":"Sparkling Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42146,"name":"Sparkling Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42145,"name":"Sparkling Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42146,"name":"Sparkling Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":42148,"name":"Brilliant Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42149,"name":"Smooth Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42150,"name":"Quick Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42151,"name":"Subtle Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42152,"name":"Flashing Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42153,"name":"Smooth Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42154,"name":"Precise Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42155,"name":"Stormy Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42156,"name":"Rigid Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, -{"id":42157,"name":"Subtle Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42149,"name":"Smooth Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42150,"name":"Quick Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42151,"name":"Subtle Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42152,"name":"Flashing Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42153,"name":"Smooth Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42154,"name":"Precise Dragon's Eye","icon":"inv_jewelcrafting_dragonseye05","color":2,"stats":[0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42155,"name":"Stormy Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42156,"name":"Rigid Dragon's Eye","icon":"inv_jewelcrafting_dragonseye04","color":3,"stats":[0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, +{"id":42157,"name":"Subtle Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":42158,"name":"Mystic Dragon's Eye","icon":"inv_jewelcrafting_dragonseye03","color":4,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0],"quality":4,"requiredProfession":7}, {"id":42701,"name":"Enchanted Pearl","icon":"inv_misc_gem_pearl_10","color":8,"stats":[4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":2,"unique":true}, {"id":42702,"name":"Enchanted Tear","icon":"inv_misc_gem_pearl_12","color":8,"stats":[6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":3,"unique":true}, @@ -29314,10 +19335,10 @@ {"id":45862,"name":"Bold Stormjewel","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":45879,"name":"Delicate Stormjewel","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":45880,"name":"Solid Stormjewel","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":45881,"name":"Sparkling Stormjewel","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, +{"id":45881,"name":"Sparkling Stormjewel","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":45882,"name":"Brilliant Stormjewel","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, {"id":45883,"name":"Brilliant Stormjewel","icon":"inv_jewelcrafting_gem_37","color":2,"stats":[0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4}, -{"id":45987,"name":"Rigid Stormjewel","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4} +{"id":45987,"name":"Rigid Stormjewel","icon":"inv_jewelcrafting_gem_42","color":3,"stats":[0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"quality":4} ], "zones":[ ], @@ -29388,5 +19409,158 @@ "encounters":[ ], "glyphIds":[ +], +"consumables":[ +{"id":13442,"type":1,"stats":[60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mighty Rage Potion","icon":"inv_potion_41","buffDuration":20,"effectIds":[696085]}, +{"id":54641,"type":1,"stats":[0,0,0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Pure Genius","icon":"inv_alchemy_elixir_06","buffDuration":20}, +{"id":54642,"type":1,"stats":[600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Ogre Rage","icon":"inv_alchemy_elixir_01","buffDuration":20}, +{"id":54643,"type":1,"stats":[0,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Cobra","icon":"inv_alchemy_elixir_03","buffDuration":20}, +{"id":57191,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mythical Healing Potion","icon":"inv_misc_potionsetf","effectIds":[78550]}, +{"id":57192,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mythical Mana Potion","icon":"inv_misc_potionsetc","effectIds":[78551]}, +{"id":57193,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mighty Rejuvenation Potion","icon":"inv_misc_potionsetd","effectIds":[78553,78552]}, +{"id":57194,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Concentration","icon":"inv_potionc_3","buffDuration":10}, +{"id":58084,"type":6,"stats":[0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Ghost Elixir","icon":"inv_potiond_5","buffDuration":3600}, +{"id":58085,"type":2,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Steelskin","icon":"inv_potione_1","buffDuration":3600}, +{"id":58086,"type":2,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Draconic Mind","icon":"inv_potione_5","buffDuration":3600}, +{"id":58087,"type":2,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Winds","icon":"inv_potione_2","buffDuration":3600}, +{"id":58088,"type":2,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Titanic Strength","icon":"inv_potione_6","buffDuration":3600}, +{"id":58089,"type":6,"stats":[0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Naga","icon":"inv_potion_164","buffDuration":3600}, +{"id":58090,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4800,0,0,0,0],"name":"Earthen Potion","icon":"inv_alchemy_elixir_empty","buffDuration":25}, +{"id":58091,"type":1,"stats":[0,0,0,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Volcanic Potion","icon":"inv_potiond_3","buffDuration":25}, +{"id":58092,"type":6,"stats":[0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Cobra","icon":"inv_misc_potiona3","buffDuration":3600}, +{"id":58093,"type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,675,0,0,0,0],"name":"Elixir of Deep Earth","icon":"inv_potionf_5","buffDuration":3600}, +{"id":58094,"type":6,"stats":[0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of Impossible Accuracy","icon":"inv_potionf_6","buffDuration":3600}, +{"id":58143,"type":7,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0],"name":"Prismatic Elixir","icon":"inv_potionf_4","buffDuration":3600}, +{"id":58144,"type":6,"stats":[0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of Mighty Speed","icon":"inv_potionf_2","buffDuration":3600}, +{"id":58145,"type":1,"stats":[0,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Tol'vir","icon":"inv_potiond_4","buffDuration":25}, +{"id":58146,"type":1,"stats":[1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Golemblood Potion","icon":"inv_potiond_1","buffDuration":25}, +{"id":58148,"type":6,"stats":[0,0,0,0,0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Elixir of the Master","icon":"inv_potiond_2","buffDuration":3600}, +{"id":58487,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Deepholm","icon":"inv_potionc_1"}, +{"id":58488,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Treasure Finding","icon":"inv_misc_potionsete","buffDuration":3600}, +{"id":58489,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Illusion","icon":"inv_potionc_5"}, +{"id":62290,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"buffsMainStat":true,"name":"Seafood Magnifique Feast","icon":"inv_misc_food_meat_cooked_02","buffDuration":180}, +{"id":62649,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"buffsMainStat":true,"name":"Fortune Cookie","icon":"inv_misc_fortunecookie","buffDuration":30}, +{"id":62651,"type":3,"stats":[0,0,60,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lightly Fried Lurker","icon":"inv_misc_food_157_fish_80","buffDuration":30}, +{"id":62652,"type":3,"stats":[0,0,60,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Seasoned Crab","icon":"inv_misc_birdbeck_02","buffDuration":30}, +{"id":62653,"type":3,"stats":[0,0,60,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Salted Eye","icon":"inv_misc_eye_04","buffDuration":30}, +{"id":62654,"type":3,"stats":[0,0,60,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lavascale Fillet","icon":"inv_misc_food_156_fish_79","buffDuration":30}, +{"id":62655,"type":3,"stats":[0,0,60,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Broiled Mountain Trout","icon":"inv_misc_food_159_fish_82","buffDuration":30}, +{"id":62656,"type":3,"stats":[0,0,60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Whitecrest Gumbo","icon":"inv_misc_food_meat_cooked_02","buffDuration":30}, +{"id":62657,"type":3,"stats":[0,0,60,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lurker Lunch","icon":"inv_misc_food_meat_cooked_05","buffDuration":30}, +{"id":62658,"type":3,"stats":[0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tender Baked Turtle","icon":"inv_misc_food_meat_cooked_05","buffDuration":30}, +{"id":62659,"type":3,"stats":[60,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Hearty Seafood Soup","icon":"inv_misc_food_meat_cooked_03","buffDuration":30}, +{"id":62660,"type":3,"stats":[0,0,60,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pickled Guppy","icon":"inv_misc_food_162_fish_90","buffDuration":30}, +{"id":62661,"type":3,"stats":[0,0,90,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Baked Rockfish","icon":"inv_misc_food_155_fish_78","buffDuration":30}, +{"id":62662,"type":3,"stats":[0,0,90,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Grilled Dragon","icon":"inv_misc_food_122_steak","buffDuration":30}, +{"id":62663,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lavascale Minestrone","icon":"inv_misc_food_154_fish_77","buffDuration":30}, +{"id":62664,"type":3,"stats":[0,0,90,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crocolisk Au Gratin","icon":"inv_misc_food_meat_cooked_10","buffDuration":30}, +{"id":62665,"type":3,"stats":[0,0,90,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Basilisk Liverdog","icon":"inv_misc_food_17","buffDuration":30}, +{"id":62666,"type":3,"stats":[0,0,90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Delicious Sagefish Tail","icon":"inv_misc_food_158_fish_81","buffDuration":30}, +{"id":62667,"type":3,"stats":[0,0,90,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mushroom Sauce Mudfish","icon":"inv_misc_food_meat_cooked_01","buffDuration":30}, +{"id":62668,"type":3,"stats":[0,0,90,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Blackbelly Sushi","icon":"inv_misc_food_161_fish_89","buffDuration":30}, +{"id":62669,"type":3,"stats":[0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Skewered Eel","icon":"inv_misc_food_163_fish_91","buffDuration":30}, +{"id":62670,"type":3,"stats":[90,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Beer-Basted Crocolisk","icon":"inv_misc_food_meat_cooked_08","buffDuration":30}, +{"id":62671,"type":3,"stats":[0,0,90,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Severed Sagefish Head","icon":"inv_misc_food_160_fish_87","buffDuration":30}, +{"id":63300,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rogue's Draught","icon":"inv_potion_24","effectIds":[78550]}, +{"id":67415,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Draught of War","icon":"inv_misc_potiona4","effectIds":[98601,98597]}, +{"id":67438,"type":2,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Flowing Water","icon":"inv_potione_4","buffDuration":3600}, +{"id":67944,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Firelord's Draught","icon":"inv_misc_potiona5"}, +{"id":74642,"type":3,"stats":[250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Charbroiled Tiger Steak","icon":"inv_misc_food_cooked_tigersteak","buffDuration":10}, +{"id":74643,"type":3,"stats":[0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Sauteed Carrots","icon":"inv_misc_food_cooked_sauteedcarrots","buffDuration":10}, +{"id":74644,"type":3,"stats":[0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Swirling Mist Soup","icon":"inv_misc_food_cooked_swirlingmistsoup","buffDuration":10}, +{"id":74645,"type":3,"stats":[275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Eternal Blossom Fish","icon":"inv_misc_food_cooked_eternalblossomfish","buffDuration":10}, +{"id":74646,"type":3,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Black Pepper Ribs and Shrimp","icon":"inv_misc_food_cooked_golden_black_pepper_ribs_and_shrimp","buffDuration":10}, +{"id":74647,"type":3,"stats":[0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Valley Stir Fry","icon":"inv_misc_food_cooked_valleystirfry","buffDuration":10}, +{"id":74648,"type":3,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Sea Mist Rice Noodles","icon":"inv_misc_food_cooked_seamistricenoodles","buffDuration":10}, +{"id":74649,"type":3,"stats":[0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Braised Turtle","icon":"inv_misc_food_cooked_braisedturtle","buffDuration":10}, +{"id":74650,"type":3,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mogu Fish Stew","icon":"inv_misc_food_cooked_mogufishstew","buffDuration":10}, +{"id":74651,"type":3,"stats":[0,0,0,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Shrimp Dumplings","icon":"inv_misc_food_cooked_shrimpdumplings","buffDuration":10}, +{"id":74652,"type":3,"stats":[0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fire Spirit Salmon","icon":"inv_misc_food_cooked_firespiritsalmon","buffDuration":10}, +{"id":74653,"type":3,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Steamed Crab Surprise","icon":"inv_misc_food_cooked_steamcrabsurprise","buffDuration":10}, +{"id":74654,"type":3,"stats":[0,0,375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Wildfowl Roast","icon":"inv_misc_food_cooked_wildfowlroast","buffDuration":10}, +{"id":74655,"type":3,"stats":[0,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Twin Fish Platter","icon":"inv_misc_food_cooked_twinfishplatter","buffDuration":10}, +{"id":74656,"type":3,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Chun Tian Spring Rolls","icon":"inv_misc_food_cooked_springrolls","buffDuration":10}, +{"id":76086,"type":2,"stats":[0,0,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of Falling Leaves","icon":"trade_alchemy_potione2","buffDuration":3600}, +{"id":76087,"type":2,"stats":[0,0,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Flask of the Earth","icon":"trade_alchemy_potione6","buffDuration":3600}, +{"id":76089,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Virmen's Bite","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":76090,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Mountains","icon":"trade_alchemy_potiond1","buffDuration":25}, +{"id":76091,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Greater Potion of Luck","icon":"trade_alchemy_potiona4","buffDuration":3600}, +{"id":76092,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Focus","icon":"trade_alchemy_potiond2","buffDuration":10}, +{"id":76093,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of the Jade Serpent","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":76094,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Alchemist's Rejuvenation","icon":"trade_alchemy_potiona3","effectIds":[115646,115645]}, +{"id":76095,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Mogu Power","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":76096,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Darkwater Potion","icon":"trade_alchemy_potionc6","buffDuration":15}, +{"id":76097,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Master Healing Potion","icon":"trade_alchemy_potiona2","effectIds":[115650]}, +{"id":76098,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Master Mana Potion","icon":"trade_alchemy_potiona5","effectIds":[115651]}, +{"id":79320,"type":3,"stats":[0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Half a Lovely Apple","icon":"inv_misc_food_19","buffDuration":10}, +{"id":80040,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Endless Master Healing Potion","icon":"inv_alchemy_potion_02","effectIds":[115650]}, +{"id":81400,"type":3,"stats":[0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pounded Rice Cake","icon":"inv_misc_food_168_ricecake01","buffDuration":10}, +{"id":81401,"type":3,"stats":[0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Yak Cheese Curds","icon":"inv_misc_food_vendor_yakcheesecurds","buffDuration":10}, +{"id":81402,"type":3,"stats":[0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Toasted Fish Jerky","icon":"inv_misc_food_vendor_toastedfishjerky","buffDuration":10}, +{"id":81403,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dried Peaches","icon":"inv_misc_leatherscrap_06","buffDuration":10}, +{"id":81404,"type":3,"stats":[0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dried Needle Mushrooms","icon":"inv_misc_food_vendor_needlemushroom","buffDuration":10}, +{"id":81405,"type":3,"stats":[0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Boiled Silkworm Pupa","icon":"inv_misc_food_vendor_boiledsilkwormpupa","buffDuration":10}, +{"id":81406,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Roasted Barley Tea","icon":"inv_misc_food_vendor_roastedbarlytea","buffDuration":10}, +{"id":81408,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Red Bean Bun","icon":"inv_misc_food_vendor_redbeanbun","buffDuration":10}, +{"id":81409,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tangy Yogurt","icon":"inv_misc_food_vendor_tangypeachyogurt","buffDuration":10}, +{"id":81410,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Green Curry Fish","icon":"inv_misc_food_vendor_greenfishbonescurry","buffDuration":10}, +{"id":81411,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Peach Pie","icon":"inv_misc_food_vendor_peachpie","buffDuration":10}, +{"id":81412,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Blanched Needle Mushrooms","icon":"inv_misc_food_vendor_blanchedneedlemushroom","buffDuration":10}, +{"id":81413,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Skewered Peanut Chicken","icon":"inv_misc_skeweredpeanutchicken","buffDuration":10}, +{"id":81414,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Pearl Milk Tea","icon":"inv_drink_milk_01","buffDuration":10}, +{"id":86069,"type":3,"stats":[0,0,0,0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rice Pudding","icon":"inv_misc_food_vendor_poundedricecake_1","buffDuration":10}, +{"id":86070,"type":3,"stats":[0,0,0,0,0,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Wildfowl Ginseng Soup","icon":"inv_misc_food_vendor_needlemushroomsoup","buffDuration":10}, +{"id":86073,"type":3,"stats":[0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Salmon","icon":"inv_misc_food_meat_cooked_06","buffDuration":10}, +{"id":86074,"type":3,"stats":[0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Vegetable Chips","icon":"inv_misc_food_vendor_poundedricecakes","buffDuration":10}, +{"id":86569,"type":1,"stats":[500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crystal of Insanity","icon":"inv_enchant_voidcrystal","buffDuration":3600}, +{"id":88416,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Adrenaline Shot","icon":"inv_gizmo_runichealthinjector","effectIds":[115650]}, +{"id":89594,"type":3,"stats":[0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Serpent Brew of Serenity","icon":"inv_misc_food_cooked_jadewitchbrew","buffDuration":20}, +{"id":89601,"type":3,"stats":[0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Tiger Brew of Serenity","icon":"inv_misc_food_cooked_madbrewbreakfast","buffDuration":20}, +{"id":90457,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mah's Warm Yak-Tail Stew","icon":"inv_misc_food_cooked_mogufishstew","buffDuration":10}, +{"id":91803,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Snap Root Tuber","icon":"inv_misc_food_55","buffDuration":25}, +{"id":92941,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Might","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":92942,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Cunning","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":92943,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Brawler's Deftness","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":92954,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Brawler's Healing Potion","icon":"trade_alchemy_potiona2","effectIds":[176074]}, +{"id":92964,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Helix's Acceleration Chemical Kafa Solution","icon":"inv_potion_95","buffDuration":60}, +{"id":92979,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mega-Potent Healing Potion","icon":"trade_alchemy_potiona3","effectIds":[176194]}, +{"id":93351,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Luck","icon":"trade_alchemy_potiona4","buffDuration":1200}, +{"id":94535,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Grilled Dinosaur Haunch","icon":"inv_misc_food_137_meat","buffDuration":10}, +{"id":95054,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Light Steps","icon":"trade_alchemy_potiona5","buffDuration":120}, +{"id":95055,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Frost Rune Trap","icon":"spell_mage_runeofpower","buffDuration":20}, +{"id":97156,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Frost Rune Trap","icon":"spell_mage_runeofpower","buffDuration":20}, +{"id":97157,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Light Steps","icon":"trade_alchemy_potiona5","buffDuration":120}, +{"id":98061,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Deftness","icon":"trade_alchemy_potiond6","buffDuration":25}, +{"id":98062,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Cunning","icon":"trade_alchemy_potiond4","buffDuration":25}, +{"id":98063,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bottomless Potion of Brawler's Might","icon":"trade_alchemy_potiond5","buffDuration":25}, +{"id":98121,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Amberseed Bun","icon":"inv_misc_food_vendor_redbeanbun","buffDuration":10}, +{"id":98122,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Camembert du Clefthoof","icon":"inv_misc_food_vendor_tangypeachyogurt","buffDuration":10}, +{"id":98123,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Whale Shark Caviar","icon":"inv_misc_food_vendor_greenfishbonescurry","buffDuration":10}, +{"id":98124,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Bloodberry Tart","icon":"inv_misc_food_vendor_peachpie","buffDuration":10}, +{"id":98125,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Shaved Zangar Truffles","icon":"inv_misc_food_vendor_blanchedneedlemushroom","buffDuration":10}, +{"id":98126,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mechanopeep Foie Gras","icon":"inv_misc_skeweredpeanutchicken","buffDuration":10}, +{"id":98127,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Dented Can of Kaja'Cola","icon":"inv_drink_21","buffDuration":10}, +{"id":101745,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Mango Ice","icon":"inv_misc_food_mango_ice","buffDuration":10}, +{"id":101746,"type":3,"stats":[0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Seasoned Pomfruit Slices","icon":"inv_misc_food_vendor_slicedpeaches","buffDuration":10}, +{"id":101747,"type":3,"stats":[0,0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Farmer's Delight","icon":"inv_misc_food_117_heartysoup","buffDuration":10}, +{"id":101748,"type":3,"stats":[0,0,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spiced Blossom Soup","icon":"inv_misc_herb_frostlotus","buffDuration":10}, +{"id":101749,"type":3,"stats":[0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Stuffed Lushrooms","icon":"spell_druid_wildmushroom","buffDuration":10}, +{"id":101750,"type":3,"stats":[300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fluffy Silkfeather Omelet","icon":"inv_misc_food_06","buffDuration":10}, +{"id":104277,"type":1,"stats":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Potion of Illusion ","icon":"inv_potionc_5"}, +{"id":104339,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Harmonious River Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104340,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Crazy Snake Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104341,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Steaming Goat Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104342,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Spicy Mushan Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104343,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Golden Dragon Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":104344,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Lucky Mushroom Noodles","icon":"inv_misc_cookednoodles","buffDuration":10}, +{"id":105717,"type":3,"stats":[0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Rice-Wine Mushrooms","icon":"spell_druid_wildmushroom","buffDuration":10}, +{"id":105719,"type":3,"stats":[0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Brew-Curried Whitefish","icon":"inv_misc_food_159_fish_white","buffDuration":10}, +{"id":105720,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Candied Apple","icon":"inv_misc_food_20","buffDuration":10}, +{"id":105721,"type":3,"stats":[0,0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Hot Papaya Milk","icon":"inv_drink_17","buffDuration":10}, +{"id":105722,"type":3,"stats":[0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Nutty Brew-Bun","icon":"inv_misc_food_103_potatobread","buffDuration":10}, +{"id":105723,"type":3,"stats":[0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Peanut Pork Chops","icon":"inv_misc_food_47","buffDuration":10}, +{"id":105724,"type":3,"stats":[0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"name":"Fried Cheese Dumplings","icon":"inv_misc_food_cooked_shrimpdumplings","buffDuration":10} +], +"spellEffects":[ ] } \ No newline at end of file diff --git a/assets/database/loader.go b/assets/database/loader.go index e3f8d983f7..b298758a58 100644 --- a/assets/database/loader.go +++ b/assets/database/loader.go @@ -3,7 +3,7 @@ package database import ( _ "embed" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/assets/db_inputs/basestats/chancetomeleecrit.txt b/assets/db_inputs/basestats/chancetomeleecrit.txt index 0f7e515c47..9b18dabb6e 100644 --- a/assets/db_inputs/basestats/chancetomeleecrit.txt +++ b/assets/db_inputs/basestats/chancetomeleecrit.txt @@ -1,101 +1,101 @@ Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid -1 0.002500 0.002174 0.002840 0.004476 0.000912 0.002500 0.001039 0.000773 0.001189 0.000000 0.001262 -2 0.002381 0.002070 0.002834 0.004290 0.000912 0.002381 0.001039 0.000773 0.001189 0.000000 0.001262 -3 0.002381 0.002070 0.002711 0.004118 0.000912 0.002381 0.000990 0.000773 0.001132 0.000000 0.001202 -4 0.002273 0.001976 0.002530 0.003813 0.000868 0.002273 0.000990 0.000736 0.001132 0.000000 0.001202 -5 0.002174 0.001976 0.002430 0.003677 0.000868 0.002174 0.000945 0.000736 0.001132 0.000000 0.001148 -6 0.002083 0.001890 0.002337 0.003550 0.000868 0.002083 0.000945 0.000736 0.001081 0.000000 0.001148 -7 0.002083 0.001890 0.002251 0.003321 0.000868 0.002083 0.000945 0.000736 0.001081 0.000000 0.001098 -8 0.002000 0.001812 0.002171 0.003217 0.000829 0.002000 0.000903 0.000736 0.001081 0.000000 0.001098 -9 0.001923 0.001812 0.002051 0.003120 0.000829 0.001923 0.000903 0.000736 0.001034 0.000000 0.001052 -10 0.001923 0.001739 0.001984 0.002941 0.000829 0.001923 0.000866 0.000703 0.001034 0.000000 0.000971 -11 0.001852 0.001739 0.001848 0.002640 0.000829 0.001852 0.000866 0.000703 0.000991 0.000000 0.000935 -12 0.001786 0.001672 0.001670 0.002394 0.000793 0.001786 0.000831 0.000703 0.000991 0.000000 0.000935 -13 0.001667 0.001553 0.001547 0.002145 0.000793 0.001667 0.000831 0.000703 0.000991 0.000000 0.000902 -14 0.001613 0.001553 0.001441 0.001980 0.000793 0.001613 0.000799 0.000703 0.000959 0.000000 0.000902 -15 0.001563 0.001449 0.001330 0.001775 0.000793 0.001563 0.000770 0.000672 0.000944 0.000000 0.000842 -16 0.001515 0.001449 0.001267 0.001660 0.000760 0.001515 0.000742 0.000672 0.000928 0.000000 0.000842 -17 0.001471 0.001403 0.001194 0.001560 0.000760 0.001471 0.000742 0.000672 0.000914 0.000000 0.000814 -18 0.001389 0.001318 0.001117 0.001450 0.000760 0.001389 0.000717 0.000672 0.000899 0.000000 0.000789 -19 0.001351 0.001318 0.001060 0.001355 0.000729 0.001351 0.000717 0.000672 0.000885 0.000000 0.000789 -20 0.001282 0.001242 0.000998 0.001271 0.000729 0.001282 0.000670 0.000644 0.000871 0.000000 0.000701 -21 0.001282 0.001208 0.000962 0.001197 0.000729 0.001282 0.000670 0.000644 0.000857 0.000000 0.000701 -22 0.001250 0.001208 0.000910 0.001144 0.000729 0.001250 0.000649 0.000644 0.000844 0.000000 0.000682 -23 0.001190 0.001144 0.000872 0.001084 0.000701 0.001190 0.000649 0.000644 0.000831 0.000000 0.000664 -24 0.001163 0.001115 0.000829 0.001040 0.000701 0.001163 0.000630 0.000618 0.000818 0.000000 0.000664 -25 0.001111 0.001087 0.000797 0.000980 0.000701 0.001111 0.000611 0.000618 0.000805 0.000000 0.000631 -26 0.001087 0.001060 0.000767 0.000936 0.000675 0.001087 0.000594 0.000618 0.000792 0.000000 0.000631 -27 0.001064 0.001035 0.000734 0.000903 0.000675 0.001064 0.000594 0.000618 0.000780 0.000000 0.000616 -28 0.001020 0.001011 0.000709 0.000865 0.000675 0.001020 0.000577 0.000618 0.000768 0.000000 0.000601 -29 0.001000 0.000988 0.000680 0.000830 0.000651 0.001000 0.000577 0.000595 0.000756 0.000000 0.000601 -30 0.000962 0.000945 0.000654 0.000792 0.000651 0.000962 0.000547 0.000595 0.000745 0.000000 0.000549 -31 0.000943 0.000925 0.000637 0.000768 0.000651 0.000943 0.000547 0.000595 0.000733 0.000000 0.000537 -32 0.000926 0.000925 0.000614 0.000741 0.000629 0.000926 0.000533 0.000595 0.000722 0.000000 0.000537 -33 0.000893 0.000887 0.000592 0.000715 0.000629 0.000893 0.000519 0.000573 0.000711 0.000000 0.000526 -34 0.000877 0.000870 0.000575 0.000691 0.000629 0.000877 0.000519 0.000573 0.000700 0.000000 0.000515 -35 0.000847 0.000836 0.000556 0.000664 0.000608 0.000847 0.000495 0.000573 0.000690 0.000000 0.000505 -36 0.000833 0.000820 0.000541 0.000643 0.000608 0.000833 0.000483 0.000552 0.000679 0.000000 0.000495 -37 0.000820 0.000820 0.000524 0.000628 0.000608 0.000820 0.000483 0.000552 0.000669 0.000000 0.000485 -38 0.000794 0.000791 0.000508 0.000609 0.000588 0.000794 0.000472 0.000552 0.000659 0.000000 0.000485 -39 0.000781 0.000776 0.000493 0.000592 0.000588 0.000781 0.000472 0.000552 0.000649 0.000000 0.000476 -40 0.000758 0.000750 0.000481 0.000572 0.000588 0.000758 0.000452 0.000533 0.000639 0.000000 0.000443 -41 0.000735 0.000737 0.000470 0.000556 0.000570 0.000735 0.000442 0.000533 0.000630 0.000000 0.000435 -42 0.000725 0.000737 0.000457 0.000542 0.000570 0.000725 0.000442 0.000533 0.000620 0.000000 0.000435 -43 0.000704 0.000713 0.000444 0.000528 0.000553 0.000704 0.000433 0.000533 0.000611 0.000000 0.000428 -44 0.000694 0.000701 0.000433 0.000512 0.000553 0.000694 0.000424 0.000515 0.000602 0.000000 0.000421 -45 0.000676 0.000679 0.000421 0.000497 0.000553 0.000676 0.000416 0.000515 0.000593 0.000000 0.000407 -46 0.000667 0.000669 0.000413 0.000486 0.000536 0.000667 0.000407 0.000515 0.000584 0.000000 0.000401 -47 0.000649 0.000659 0.000402 0.000474 0.000536 0.000649 0.000400 0.000499 0.000576 0.000000 0.000401 -48 0.000633 0.000639 0.000391 0.000464 0.000521 0.000633 0.000392 0.000499 0.000567 0.000000 0.000394 -49 0.000625 0.000630 0.000382 0.000454 0.000521 0.000625 0.000392 0.000499 0.000559 0.000000 0.000388 -50 0.000610 0.000612 0.000373 0.000440 0.000521 0.000610 0.000378 0.000483 0.000551 0.000000 0.000366 -51 0.000595 0.000604 0.000366 0.000431 0.000507 0.000595 0.000371 0.000483 0.000543 0.000000 0.000361 -52 0.000588 0.000596 0.000358 0.000422 0.000507 0.000588 0.000365 0.000483 0.000535 0.000000 0.000356 -53 0.000575 0.000580 0.000350 0.000412 0.000493 0.000575 0.000365 0.000468 0.000527 0.000000 0.000351 -54 0.000562 0.000572 0.000341 0.000404 0.000493 0.000562 0.000358 0.000468 0.000519 0.000000 0.000351 -55 0.000549 0.000557 0.000334 0.000394 0.000480 0.000549 0.000346 0.000468 0.000512 0.000000 0.000341 -56 0.000543 0.000550 0.000328 0.000386 0.000480 0.000543 0.000341 0.000455 0.000504 0.000000 0.000337 -57 0.000532 0.000544 0.000321 0.000378 0.000468 0.000532 0.000335 0.000455 0.000497 0.000000 0.000332 -58 0.000521 0.000530 0.000314 0.000370 0.000468 0.000521 0.000335 0.000455 0.000490 0.000000 0.000328 -59 0.000510 0.000524 0.000307 0.000364 0.000456 0.000510 0.000330 0.000442 0.000483 0.000000 0.000324 -60 0.000500 0.000512 0.000301 0.000355 0.000456 0.000500 0.000320 0.000442 0.000476 0.000000 0.000308 -61 0.000476 0.000494 0.000297 0.000334 0.000445 0.000476 0.000310 0.000442 0.000469 0.000000 0.000299 -62 0.000455 0.000483 0.000290 0.000322 0.000446 0.000455 0.000304 0.000442 0.000462 0.000000 0.000295 -63 0.000435 0.000473 0.000284 0.000306 0.000443 0.000435 0.000294 0.000429 0.000455 0.000000 0.000285 -64 0.000417 0.000458 0.000279 0.000296 0.000434 0.000417 0.000285 0.000429 0.000449 0.000000 0.000279 -65 0.000400 0.000448 0.000273 0.000286 0.000427 0.000400 0.000281 0.000429 0.000442 0.000000 0.000274 -66 0.000385 0.000439 0.000270 0.000277 0.000421 0.000385 0.000273 0.000418 0.000436 0.000000 0.000269 -67 0.000370 0.000426 0.000264 0.000268 0.000415 0.000370 0.000267 0.000418 0.000430 0.000000 0.000265 -68 0.000357 0.000418 0.000259 0.000262 0.000413 0.000357 0.000261 0.000418 0.000424 0.000000 0.000258 -69 0.000345 0.000410 0.000254 0.000256 0.000412 0.000345 0.000255 0.000407 0.000418 0.000000 0.000254 -70 0.000333 0.000403 0.000250 0.000250 0.000401 0.000333 0.000250 0.000407 0.000412 0.000000 0.000250 -71 0.000311 0.000372 0.000232 0.000232 0.000372 0.000311 0.000232 0.000377 0.000384 0.000000 0.000232 -72 0.000287 0.000345 0.000216 0.000216 0.000344 0.000287 0.000216 0.000351 0.000355 0.000000 0.000216 -73 0.000267 0.000322 0.000201 0.000201 0.000320 0.000267 0.000201 0.000329 0.000330 0.000000 0.000201 -74 0.000249 0.000298 0.000187 0.000187 0.000299 0.000249 0.000187 0.000303 0.000309 0.000000 0.000187 -75 0.000231 0.000277 0.000173 0.000173 0.000276 0.000231 0.000173 0.000281 0.000287 0.000000 0.000173 -76 0.000215 0.000257 0.000161 0.000161 0.000257 0.000215 0.000161 0.000262 0.000264 0.000000 0.000161 -77 0.000199 0.000239 0.000150 0.000150 0.000240 0.000199 0.000150 0.000242 0.000245 0.000000 0.000150 -78 0.000185 0.000223 0.000139 0.000139 0.000222 0.000185 0.000139 0.000227 0.000229 0.000000 0.000139 -79 0.000172 0.000207 0.000129 0.000129 0.000207 0.000172 0.000129 0.000209 0.000212 0.000000 0.000129 -80 0.000160 0.000192 0.000120 0.000120 0.000192 0.000160 0.000120 0.000196 0.000198 0.000000 0.000120 -81 0.000122 0.000146 0.000092 0.000092 0.000146 0.000122 0.000092 0.000149 0.000151 0.000000 0.000092 -82 0.000093 0.000111 0.000070 0.000070 0.000111 0.000093 0.000070 0.000114 0.000115 0.000000 0.000070 -83 0.000071 0.000085 0.000053 0.000053 0.000085 0.000071 0.000053 0.000086 0.000087 0.000000 0.000053 -84 0.000054 0.000065 0.000040 0.000040 0.000065 0.000054 0.000040 0.000066 0.000067 0.000000 0.000040 -85 0.000041 0.000049 0.000031 0.000031 0.000049 0.000041 0.000031 0.000050 0.000051 0.000000 0.000031 -86 0.000019 0.000023 0.000014 0.000014 0.000023 0.000019 0.000014 0.000023 0.000024 0.000000 0.000014 -87 0.000013 0.000016 0.000010 0.000010 0.000016 0.000013 0.000010 0.000016 0.000017 0.000000 0.000010 -88 0.000009 0.000011 0.000007 0.000007 0.000011 0.000009 0.000007 0.000012 0.000012 0.000000 0.000007 -89 0.000007 0.000008 0.000115 0.000005 0.000351 0.000007 0.000330 0.000008 0.000330 0.000000 0.000339 -90 0.000005 0.000006 0.000114 0.000004 0.000345 0.000005 0.000324 0.000006 0.000323 0.000000 0.000333 -91 0.000003 0.000004 0.000112 0.000002 0.000345 0.000003 0.000320 0.000004 0.000319 0.000000 0.000328 -92 0.000002 0.000003 0.000111 0.000002 0.000339 0.000002 0.000314 0.000003 0.000316 0.000000 0.000325 -93 0.000002 0.000002 0.000109 0.000001 0.000333 0.000002 0.000311 0.000002 0.000313 0.000000 0.000320 -94 0.000001 0.000001 0.000108 0.000001 0.000328 0.000001 0.000308 0.000001 0.000309 0.000000 0.000318 -95 0.000001 0.000001 0.000106 0.000001 0.000328 0.000001 0.000300 0.000001 0.000303 0.000000 0.000311 -96 0.000001 0.000001 0.000105 0.000000 0.000323 0.000001 0.000297 0.000001 0.000300 0.000000 0.000308 -97 0.000000 0.000000 0.000103 0.000000 0.000317 0.000000 0.000295 0.000000 0.000297 0.000000 0.000304 -98 0.000000 0.000000 0.000102 0.000000 0.000313 0.000000 0.000289 0.000000 0.000291 0.000000 0.000299 -99 0.000000 0.000000 0.000100 0.000000 0.000308 0.000000 0.000287 0.000000 0.000288 0.000000 0.000297 -100 0.000000 0.000000 0.000099 0.000000 0.000308 0.000000 0.000282 0.000000 0.000283 0.000000 0.000291 +1 10000.000000 10000.000000 3.521127 2.234094 10.967918 10000.000000 9.624640 12.936610 8.410429 7.922361 7.922361 +2 10000.000000 10000.000000 3.528152 2.331229 10.967918 10000.000000 9.624640 12.936610 8.410429 7.922361 7.922361 +3 10000.000000 10000.000000 3.689025 2.428363 10.967918 10000.000000 10.105869 12.936610 8.830950 8.318478 8.318478 +4 10000.000000 10000.000000 3.952724 2.622632 11.516319 10000.000000 10.105869 13.583431 8.830950 8.318478 8.318478 +5 10000.000000 10000.000000 4.115137 2.719767 11.516319 10000.000000 10.587097 13.583431 8.830950 8.714597 8.714597 +6 10000.000000 10000.000000 4.278333 2.816901 11.516319 10000.000000 10.587097 13.583431 9.251473 8.714597 8.714597 +7 10000.000000 10000.000000 4.442324 3.011170 11.516319 10000.000000 10.587097 13.583431 9.251473 9.110712 9.110712 +8 10000.000000 10000.000000 4.607121 3.108305 12.064706 10000.000000 11.068338 13.583431 9.251473 9.110712 9.110712 +9 10000.000000 10000.000000 4.874794 3.205440 12.064706 10000.000000 11.068338 13.583431 9.671993 9.506833 9.506833 +10 10000.000000 10000.000000 5.041232 3.399708 12.064706 10000.000000 11.549571 14.230277 9.671993 10.299065 10.299065 +11 10000.000000 10000.000000 5.412629 3.788246 12.064706 10000.000000 11.549571 14.230277 10.092518 10.695188 10.695188 +12 10000.000000 10000.000000 5.988999 4.176785 12.613108 10000.000000 12.030799 14.230277 10.092518 10.695188 10.695188 +13 10000.000000 10000.000000 6.464166 4.662457 12.613108 10000.000000 12.030799 14.230277 10.092518 11.091307 11.091307 +14 10000.000000 10000.000000 6.940203 5.050995 12.613108 10000.000000 12.512027 14.230277 10.428953 11.091307 11.091307 +15 10000.000000 10000.000000 7.519181 5.633803 12.613108 10000.000000 12.993257 14.877100 10.598722 11.883541 11.883541 +16 10000.000000 10000.000000 7.894928 6.022340 13.161497 10000.000000 13.474492 14.877100 10.770698 11.883541 11.883541 +17 10000.000000 10000.000000 8.373646 6.410877 13.161497 10000.000000 13.474492 14.877100 10.944906 12.279657 12.279657 +18 10000.000000 10000.000000 8.955334 6.896552 13.161497 10000.000000 13.955721 14.877100 11.121380 12.675781 12.675781 +19 10000.000000 10000.000000 9.435894 7.382226 13.709899 10000.000000 13.955721 14.877100 11.300150 12.675781 12.675781 +20 10000.000000 10000.000000 10.019458 7.867895 13.709899 10000.000000 14.918181 15.523925 11.481241 14.260249 14.260249 +21 10000.000000 10000.000000 10.399843 8.353570 13.709899 10000.000000 14.918181 15.523925 11.664678 14.260249 14.260249 +22 10000.000000 10000.000000 10.985329 8.742107 13.709899 10000.000000 15.399423 15.523925 11.850517 14.656374 14.656374 +23 10000.000000 10000.000000 11.469718 9.227782 14.258298 10000.000000 15.399423 15.523925 12.038765 15.052488 15.052488 +24 10000.000000 10000.000000 12.057156 9.616319 14.258298 10000.000000 15.880653 16.170763 12.229454 15.052488 15.052488 +25 10000.000000 10000.000000 12.543542 10.199128 14.258298 10000.000000 16.361872 16.170763 12.422623 15.844722 15.844722 +26 10000.000000 10000.000000 13.030946 10.684799 14.806699 10000.000000 16.843126 16.170763 12.618313 15.844722 15.844722 +27 10000.000000 10000.000000 13.621436 11.073339 14.806699 10000.000000 16.843126 16.170763 12.816536 16.240831 16.240831 +28 10000.000000 10000.000000 14.110920 11.559010 14.806699 10000.000000 17.324356 16.170763 13.017342 16.636971 16.636971 +29 10000.000000 10000.000000 14.703504 12.044681 15.355086 10000.000000 17.324356 16.817604 13.220763 16.636971 16.636971 +30 10000.000000 10000.000000 15.297163 12.627490 15.355086 10000.000000 18.286818 16.817604 13.426820 18.221441 18.221441 +31 10000.000000 10000.000000 15.687776 13.016020 15.355086 10000.000000 18.286818 16.817604 13.635551 18.617537 18.617537 +32 10000.000000 10000.000000 16.283621 13.501691 15.903485 10000.000000 18.768028 16.817604 13.847002 18.617537 18.617537 +33 10000.000000 10000.000000 16.880571 13.987364 15.903485 10000.000000 19.249279 17.464413 14.061197 19.013647 19.013647 +34 10000.000000 10000.000000 17.376587 14.473037 15.903485 10000.000000 19.249279 17.464413 14.278188 19.409788 19.409788 +35 10000.000000 10000.000000 17.975815 15.055842 16.451887 10000.000000 20.211739 17.464413 14.498007 19.805902 19.805902 +36 10000.000000 10000.000000 18.474146 15.541512 16.451887 10000.000000 20.692966 18.111250 14.720668 20.202021 20.202021 +37 10000.000000 10000.000000 19.075670 15.930060 16.451887 10000.000000 20.692966 18.111250 14.946209 20.598129 20.598129 +38 10000.000000 10000.000000 19.678415 16.415726 17.000269 10000.000000 21.174194 18.111250 15.174714 20.598129 20.598129 +39 10000.000000 10000.000000 20.282330 16.901400 17.000269 10000.000000 21.174194 18.111250 15.406160 20.994246 20.994246 +40 10000.000000 10000.000000 20.785440 17.484230 17.000269 10000.000000 22.136677 18.758101 15.640640 22.578714 22.578714 +41 10000.000000 10000.000000 21.289778 17.969872 17.548662 10000.000000 22.617884 18.758101 15.878158 22.974827 22.974827 +42 10000.000000 10000.000000 21.897411 18.455564 17.548662 10000.000000 22.617884 18.758101 16.118763 22.974827 22.974827 +43 10000.000000 10000.000000 22.506302 18.941223 18.097057 10000.000000 23.099115 18.758101 16.362488 23.370983 23.370983 +44 10000.000000 10000.000000 23.116470 19.524042 18.097057 10000.000000 23.580345 19.404928 16.609392 23.767082 23.767082 +45 10000.000000 10000.000000 23.727945 20.106848 18.097057 10000.000000 24.061598 19.404928 16.859512 24.559343 24.559343 +46 10000.000000 10000.000000 24.238663 20.592529 18.645445 10000.000000 24.542828 19.404928 17.112885 24.955454 24.955454 +47 10000.000000 10000.000000 24.852810 21.078192 18.645445 10000.000000 25.024086 20.051733 17.369524 24.955454 24.955454 +48 10000.000000 10000.000000 25.570347 21.563854 19.193857 10000.000000 25.505259 20.051733 17.629534 25.351563 25.351563 +49 10000.000000 10000.000000 26.187197 22.049549 19.193857 10000.000000 25.505259 20.051733 17.892897 25.747648 25.747648 +50 10000.000000 10000.000000 26.805412 22.729494 19.193857 10000.000000 26.467770 20.698578 18.159697 27.332113 27.332113 +51 10000.000000 10000.000000 27.323002 23.215160 19.742245 10000.000000 26.949020 20.698578 18.429953 27.728252 27.728252 +52 10000.000000 10000.000000 27.944044 23.700838 19.742245 10000.000000 27.430252 20.698578 18.703754 28.124411 28.124411 +53 10000.000000 10000.000000 28.566532 24.283632 20.290644 10000.000000 27.430252 21.345400 18.981094 28.520498 28.520498 +54 10000.000000 10000.000000 29.292526 24.769274 20.290644 10000.000000 27.911442 21.345400 19.262033 28.520498 28.520498 +55 10000.000000 10000.000000 29.917995 25.352140 20.839064 10000.000000 28.873945 21.345400 19.546635 29.312704 29.312704 +56 10000.000000 10000.000000 30.442883 25.934887 20.839064 10000.000000 29.355127 21.992233 19.834894 29.708853 29.708853 +57 10000.000000 10000.000000 31.173332 26.420568 21.387447 10000.000000 29.836407 21.992233 20.126961 30.104977 30.104977 +58 10000.000000 10000.000000 31.803278 27.003382 21.387447 10000.000000 29.836407 21.992233 20.422792 30.501102 30.501102 +59 10000.000000 10000.000000 32.536938 27.489067 21.935837 10000.000000 30.317638 22.639084 20.722467 30.897192 30.897192 +60 10000.000000 10000.000000 33.170025 28.169014 21.935837 10000.000000 31.280107 22.639084 21.026072 32.481663 32.481663 +61 10000.000000 10000.000000 33.702717 29.917458 22.476355 10000.000000 32.232174 22.639084 21.333607 33.462051 33.462051 +62 10000.000000 10000.000000 34.441074 31.083025 22.428816 10000.000000 32.891491 22.639084 21.645115 33.897041 33.897041 +63 10000.000000 10000.000000 35.181042 32.637184 22.590803 10000.000000 34.067139 23.285923 21.960695 35.092152 35.092152 +64 10000.000000 10000.000000 35.820724 33.802856 23.016708 10000.000000 35.109032 23.285923 22.280350 35.828552 35.828552 +65 10000.000000 10000.000000 36.564007 34.968460 23.408787 10000.000000 35.625095 23.285923 22.604183 36.522209 36.522209 +66 10000.000000 10000.000000 37.105064 36.134087 23.765558 10000.000000 36.575909 23.932720 22.932257 37.171268 37.171268 +67 10000.000000 10000.000000 37.851833 37.299656 24.085474 10000.000000 37.478310 23.932720 23.264578 37.773766 37.773766 +68 10000.000000 10000.000000 38.600349 38.173912 24.192749 10000.000000 38.341354 23.932720 23.601215 38.800594 38.800594 +69 10000.000000 10000.000000 39.350559 39.048008 24.284636 10000.000000 39.184032 24.579567 23.942175 39.411819 39.411819 +70 10000.000000 10000.000000 40.003040 40.019371 24.909019 10000.000000 40.005920 24.579567 24.287643 40.003040 40.003040 +71 10000.000000 10000.000000 43.041485 43.030556 26.871391 10000.000000 43.044632 26.520063 26.072355 43.041485 43.041485 +72 10000.000000 10000.000000 46.310448 46.333191 29.064951 10000.000000 46.313877 28.460514 28.174967 46.310448 46.310448 +73 10000.000000 10000.000000 49.827847 49.830078 31.258596 10000.000000 49.831570 30.401051 30.277523 49.827847 49.827847 +74 10000.000000 10000.000000 53.612404 53.618153 33.452202 10000.000000 53.616428 32.988384 32.380169 53.612404 53.612404 +75 10000.000000 10000.000000 57.684433 57.697746 36.194115 10000.000000 57.688759 35.575668 34.903282 57.684433 57.684433 +76 10000.000000 10000.000000 62.065926 62.069008 38.936111 10000.000000 62.070164 38.162987 37.846962 62.065926 62.065926 +77 10000.000000 10000.000000 66.779747 66.828392 41.678127 10000.000000 66.784653 41.397068 40.790520 66.779747 66.779747 +78 10000.000000 10000.000000 71.851982 71.879356 44.968475 10000.000000 71.857147 43.984467 43.734200 71.851982 71.851982 +79 10000.000000 10000.000000 77.309029 77.319191 48.258823 10000.000000 77.315002 47.865440 47.098495 77.309029 77.309029 +80 10000.000000 10000.000000 83.180832 83.146942 52.097713 10000.000000 83.187065 51.099667 50.462490 83.180832 83.180832 +81 10000.000000 10000.000000 108.695660 108.695660 68.493149 10000.000000 108.695660 67.114098 66.225166 108.695660 108.695660 +82 10000.000000 10000.000000 142.857150 142.857150 90.090088 10000.000000 142.857150 87.719299 86.956520 142.857150 142.857150 +83 10000.000000 10000.000000 188.679250 188.679250 117.647060 10000.000000 188.679250 116.279070 114.942530 188.679250 188.679250 +84 10000.000000 10000.000000 250.000000 250.000000 153.846160 10000.000000 250.000000 151.515150 149.253740 250.000000 250.000000 +85 10000.000000 10000.000000 322.580660 322.580660 204.081630 10000.000000 322.580660 200.000000 196.078430 322.580660 322.580660 +86 10000.000000 10000.000000 422.838230 422.838230 267.509890 10000.000000 422.838230 262.159700 257.019320 422.838230 422.838230 +87 10000.000000 10000.000000 555.987240 555.987240 351.747040 10000.000000 555.987240 344.712100 337.953030 555.987240 555.987240 +88 10000.000000 10000.000000 730.520510 730.520510 462.166020 10000.000000 730.520510 452.922700 444.041870 730.520510 730.520510 +89 10000.000000 10000.000000 959.033020 959.033020 606.735170 10000.000000 959.033020 594.600460 582.941650 959.033020 959.033020 +90 10000.000000 10000.000000 1259.518100 1259.518100 796.837950 10000.000000 1259.518100 780.901180 765.589420 1259.518100 1259.518100 +91 10000.000000 10000.000000 184.798950 184.798950 116.913620 10000.000000 184.798950 114.575350 112.328770 184.798950 184.798950 +92 10000.000000 10000.000000 198.834880 198.834880 125.793500 10000.000000 198.834880 123.277630 120.860420 198.834880 198.834880 +93 10000.000000 10000.000000 213.936890 213.936890 135.347820 10000.000000 213.936890 132.640870 130.040070 213.936890 213.936890 +94 10000.000000 10000.000000 230.185910 230.185910 145.627820 10000.000000 230.185910 142.715270 139.916930 230.185910 230.185910 +95 10000.000000 10000.000000 247.669050 247.669050 156.688580 10000.000000 247.669050 153.554810 150.543930 247.669050 247.669050 +96 10000.000000 10000.000000 266.480160 266.480160 168.589490 10000.000000 266.480160 165.217700 161.978130 266.480160 266.480160 +97 10000.000000 10000.000000 286.719970 286.719970 181.394270 10000.000000 286.719970 177.766390 174.280760 286.719970 286.719970 +98 10000.000000 10000.000000 308.497040 308.497040 195.171600 10000.000000 308.497040 191.268160 187.517810 308.497040 308.497040 +99 10000.000000 10000.000000 331.928130 331.928130 209.995360 10000.000000 331.928130 205.795460 201.760240 331.928130 331.928130 +100 10000.000000 10000.000000 357.138920 357.138920 225.945020 10000.000000 357.138920 221.426120 217.084430 357.138920 357.138920 diff --git a/assets/db_inputs/basestats/chancetomeleecritbase.txt b/assets/db_inputs/basestats/chancetomeleecritbase.txt index cda7b63b66..d75ad801f9 100644 --- a/assets/db_inputs/basestats/chancetomeleecritbase.txt +++ b/assets/db_inputs/basestats/chancetomeleecritbase.txt @@ -1,2 +1,101 @@ -X Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid -1 0.000000 0.006520 -0.015320 -0.002950 0.031765 0.000000 0.029220 0.034540 0.026220 0.000000 0.074755 +Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid +1 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +2 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +3 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +4 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +5 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +6 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +7 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +8 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +9 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +10 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +11 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +12 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +13 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +14 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +15 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +16 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +17 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +18 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +19 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +20 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +21 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +22 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +23 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +24 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +25 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +26 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +27 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +28 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +29 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +30 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +31 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +32 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +33 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +34 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +35 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +36 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +37 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +38 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +39 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +40 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +41 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +42 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +43 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +44 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +45 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +46 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +47 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +48 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +49 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +50 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +51 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +52 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +53 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +54 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +55 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +56 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +57 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +58 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +59 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +60 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +61 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +62 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +63 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +64 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +65 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +66 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +67 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +68 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +69 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +70 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +71 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +72 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +73 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +74 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +75 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +76 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +77 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +78 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +79 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +80 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +81 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +82 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +83 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +84 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +85 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +86 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +87 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +88 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +89 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +90 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +91 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +92 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +93 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +94 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +95 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +96 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +97 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +98 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +99 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 +100 0.050000 0.050000 -0.015300 -0.003000 0.031800 0.050000 0.029200 0.034500 0.026200 0.074800 0.074800 diff --git a/assets/db_inputs/basestats/chancetospellcrit.txt b/assets/db_inputs/basestats/chancetospellcrit.txt index f86947da62..b97c20ad39 100644 --- a/assets/db_inputs/basestats/chancetospellcrit.txt +++ b/assets/db_inputs/basestats/chancetospellcrit.txt @@ -1,101 +1,101 @@ Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid -1 0.000000 0.000832 0.000000 0.000000 0.001710 0.000000 0.001333 0.001637 0.001500 1000000.000000 0.001431 -2 0.000000 0.000793 0.000000 0.000000 0.001636 0.000000 0.001272 0.001574 0.001435 1000000.000000 0.001369 -3 0.000000 0.000793 0.000000 0.000000 0.001568 0.000000 0.001217 0.001516 0.001375 1000000.000000 0.001312 -4 0.000000 0.000757 0.000000 0.000000 0.001505 0.000000 0.001217 0.001411 0.001320 1000000.000000 0.001259 -5 0.000000 0.000757 0.000000 0.000000 0.001394 0.000000 0.001166 0.001364 0.001269 1000000.000000 0.001211 -6 0.000000 0.000724 0.000000 0.000000 0.001344 0.000000 0.001120 0.001320 0.001222 1000000.000000 0.001166 -7 0.000000 0.000694 0.000000 0.000000 0.001297 0.000000 0.001077 0.001279 0.001179 1000000.000000 0.001124 -8 0.000000 0.000694 0.000000 0.000000 0.001254 0.000000 0.001037 0.001240 0.001138 1000000.000000 0.001124 -9 0.000000 0.000666 0.000000 0.000000 0.001214 0.000000 0.001000 0.001169 0.001100 1000000.000000 0.001086 -10 0.000000 0.000666 0.000000 0.000000 0.001140 0.000000 0.001000 0.001137 0.001065 1000000.000000 0.000984 -11 0.000000 0.000640 0.000000 0.000000 0.001045 0.000000 0.000933 0.001049 0.000971 1000000.000000 0.000926 -12 0.000000 0.000616 0.000000 0.000000 0.000941 0.000000 0.000875 0.000930 0.000892 1000000.000000 0.000851 -13 0.000000 0.000594 0.000000 0.000000 0.000875 0.000000 0.000800 0.000871 0.000825 1000000.000000 0.000807 -14 0.000000 0.000574 0.000000 0.000000 0.000784 0.000000 0.000756 0.000731 0.000767 1000000.000000 0.000750 -15 0.000000 0.000537 0.000000 0.000000 0.000724 0.000000 0.000700 0.000671 0.000717 1000000.000000 0.000684 -16 0.000000 0.000537 0.000000 0.000000 0.000684 0.000000 0.000666 0.000639 0.000687 1000000.000000 0.000656 -17 0.000000 0.000520 0.000000 0.000000 0.000627 0.000000 0.000636 0.000602 0.000635 1000000.000000 0.000617 -18 0.000000 0.000490 0.000000 0.000000 0.000597 0.000000 0.000596 0.000568 0.000600 1000000.000000 0.000594 -19 0.000000 0.000490 0.000000 0.000000 0.000562 0.000000 0.000571 0.000538 0.000569 1000000.000000 0.000562 -20 0.000000 0.000462 0.000000 0.000000 0.000523 0.000000 0.000538 0.000505 0.000541 1000000.000000 0.000516 -21 0.000000 0.000450 0.000000 0.000000 0.000502 0.000000 0.000518 0.000487 0.000516 1000000.000000 0.000500 -22 0.000000 0.000438 0.000000 0.000000 0.000470 0.000000 0.000500 0.000460 0.000493 1000000.000000 0.000477 -23 0.000000 0.000427 0.000000 0.000000 0.000453 0.000000 0.000474 0.000445 0.000471 1000000.000000 0.000463 -24 0.000000 0.000416 0.000000 0.000000 0.000428 0.000000 0.000459 0.000422 0.000446 1000000.000000 0.000437 -25 0.000000 0.000396 0.000000 0.000000 0.000409 0.000000 0.000437 0.000405 0.000429 1000000.000000 0.000420 -26 0.000000 0.000387 0.000000 0.000000 0.000392 0.000000 0.000424 0.000390 0.000418 1000000.000000 0.000409 -27 0.000000 0.000387 0.000000 0.000000 0.000376 0.000000 0.000412 0.000372 0.000398 1000000.000000 0.000394 -28 0.000000 0.000370 0.000000 0.000000 0.000362 0.000000 0.000394 0.000338 0.000384 1000000.000000 0.000384 -29 0.000000 0.000362 0.000000 0.000000 0.000348 0.000000 0.000383 0.000325 0.000367 1000000.000000 0.000366 -30 0.000000 0.000347 0.000000 0.000000 0.000333 0.000000 0.000368 0.000312 0.000355 1000000.000000 0.000346 -31 0.000000 0.000340 0.000000 0.000000 0.000322 0.000000 0.000354 0.000305 0.000347 1000000.000000 0.000339 -32 0.000000 0.000333 0.000000 0.000000 0.000311 0.000000 0.000346 0.000294 0.000333 1000000.000000 0.000325 -33 0.000000 0.000326 0.000000 0.000000 0.000301 0.000000 0.000333 0.000286 0.000324 1000000.000000 0.000318 -34 0.000000 0.000320 0.000000 0.000000 0.000289 0.000000 0.000325 0.000278 0.000311 1000000.000000 0.000309 -35 0.000000 0.000308 0.000000 0.000000 0.000281 0.000000 0.000314 0.000269 0.000303 1000000.000000 0.000297 -36 0.000000 0.000303 0.000000 0.000000 0.000273 0.000000 0.000304 0.000262 0.000295 1000000.000000 0.000292 -37 0.000000 0.000297 0.000000 0.000000 0.000263 0.000000 0.000298 0.000254 0.000284 1000000.000000 0.000284 -38 0.000000 0.000287 0.000000 0.000000 0.000256 0.000000 0.000289 0.000248 0.000277 1000000.000000 0.000276 -39 0.000000 0.000282 0.000000 0.000000 0.000249 0.000000 0.000283 0.000241 0.000268 1000000.000000 0.000269 -40 0.000000 0.000273 0.000000 0.000000 0.000241 0.000000 0.000272 0.000235 0.000262 1000000.000000 0.000256 -41 0.000000 0.000268 0.000000 0.000000 0.000235 0.000000 0.000267 0.000230 0.000256 1000000.000000 0.000252 -42 0.000000 0.000264 0.000000 0.000000 0.000228 0.000000 0.000262 0.000215 0.000248 1000000.000000 0.000244 -43 0.000000 0.000256 0.000000 0.000000 0.000223 0.000000 0.000254 0.000211 0.000243 1000000.000000 0.000240 -44 0.000000 0.000256 0.000000 0.000000 0.000216 0.000000 0.000248 0.000206 0.000236 1000000.000000 0.000233 -45 0.000000 0.000248 0.000000 0.000000 0.000210 0.000000 0.000241 0.000201 0.000229 1000000.000000 0.000228 -46 0.000000 0.000245 0.000000 0.000000 0.000206 0.000000 0.000235 0.000197 0.000224 1000000.000000 0.000223 -47 0.000000 0.000238 0.000000 0.000000 0.000200 0.000000 0.000231 0.000192 0.000220 1000000.000000 0.000219 -48 0.000000 0.000231 0.000000 0.000000 0.000196 0.000000 0.000226 0.000188 0.000214 1000000.000000 0.000214 -49 0.000000 0.000228 0.000000 0.000000 0.000191 0.000000 0.000220 0.000184 0.000209 1000000.000000 0.000209 -50 0.000000 0.000222 0.000000 0.000000 0.000186 0.000000 0.000215 0.000179 0.000204 1000000.000000 0.000202 -51 0.000000 0.000219 0.000000 0.000000 0.000183 0.000000 0.000210 0.000176 0.000200 1000000.000000 0.000198 -52 0.000000 0.000216 0.000000 0.000000 0.000178 0.000000 0.000207 0.000173 0.000195 1000000.000000 0.000193 -53 0.000000 0.000211 0.000000 0.000000 0.000175 0.000000 0.000201 0.000170 0.000191 1000000.000000 0.000191 -54 0.000000 0.000208 0.000000 0.000000 0.000171 0.000000 0.000199 0.000166 0.000186 1000000.000000 0.000186 -55 0.000000 0.000203 0.000000 0.000000 0.000166 0.000000 0.000193 0.000162 0.000182 1000000.000000 0.000182 -56 0.000000 0.000201 0.000000 0.000000 0.000164 0.000000 0.000190 0.000154 0.000179 1000000.000000 0.000179 -57 0.000000 0.000198 0.000000 0.000000 0.000160 0.000000 0.000187 0.000151 0.000176 1000000.000000 0.000176 -58 0.000000 0.000191 0.000000 0.000000 0.000157 0.000000 0.000182 0.000149 0.000172 1000000.000000 0.000173 -59 0.000000 0.000189 0.000000 0.000000 0.000154 0.000000 0.000179 0.000146 0.000168 1000000.000000 0.000169 -60 0.000000 0.000185 0.000000 0.000000 0.000150 0.000000 0.000175 0.000143 0.000165 1000000.000000 0.000164 -61 0.000000 0.000159 0.000000 0.000000 0.000148 0.000000 0.000164 0.000143 0.000159 1000000.000000 0.000162 -62 0.000000 0.000154 0.000000 0.000000 0.000145 0.000000 0.000159 0.000143 0.000154 1000000.000000 0.000157 -63 0.000000 0.000149 0.000000 0.000000 0.000143 0.000000 0.000152 0.000143 0.000148 1000000.000000 0.000150 -64 0.000000 0.000145 0.000000 0.000000 0.000139 0.000000 0.000147 0.000143 0.000143 1000000.000000 0.000146 -65 0.000000 0.000140 0.000000 0.000000 0.000137 0.000000 0.000142 0.000142 0.000138 1000000.000000 0.000142 -66 0.000000 0.000136 0.000000 0.000000 0.000134 0.000000 0.000138 0.000138 0.000135 1000000.000000 0.000137 -67 0.000000 0.000134 0.000000 0.000000 0.000132 0.000000 0.000134 0.000134 0.000130 1000000.000000 0.000133 -68 0.000000 0.000131 0.000000 0.000000 0.000130 0.000000 0.000131 0.000131 0.000127 1000000.000000 0.000131 -69 0.000000 0.000128 0.000000 0.000000 0.000127 0.000000 0.000128 0.000128 0.000126 1000000.000000 0.000128 -70 0.000000 0.000125 0.000000 0.000000 0.000125 0.000000 0.000125 0.000125 0.000125 1000000.000000 0.000125 -71 0.000000 0.000116 0.000000 0.000000 0.000116 0.000000 0.000116 0.000116 0.000116 1000000.000000 0.000116 -72 0.000000 0.000108 0.000000 0.000000 0.000108 0.000000 0.000108 0.000108 0.000108 1000000.000000 0.000108 -73 0.000000 0.000101 0.000000 0.000000 0.000101 0.000000 0.000101 0.000101 0.000101 1000000.000000 0.000101 -74 0.000000 0.000093 0.000000 0.000000 0.000093 0.000000 0.000093 0.000093 0.000093 1000000.000000 0.000093 -75 0.000000 0.000087 0.000000 0.000000 0.000087 0.000000 0.000087 0.000087 0.000087 1000000.000000 0.000087 -76 0.000000 0.000081 0.000000 0.000000 0.000081 0.000000 0.000081 0.000081 0.000081 1000000.000000 0.000081 -77 0.000000 0.000075 0.000000 0.000000 0.000075 0.000000 0.000075 0.000075 0.000075 1000000.000000 0.000075 -78 0.000000 0.000070 0.000000 0.000000 0.000070 0.000000 0.000070 0.000070 0.000070 1000000.000000 0.000070 -79 0.000000 0.000065 0.000000 0.000000 0.000065 0.000000 0.000065 0.000065 0.000065 1000000.000000 0.000065 -80 0.000000 0.000060 0.000000 0.000000 0.000060 0.000000 0.000060 0.000060 0.000060 1000000.000000 0.000060 -81 0.000000 0.000046 0.000000 0.000000 0.000046 0.000000 0.000046 0.000046 0.000046 1000000.000000 0.000046 -82 0.000000 0.000035 0.000000 0.000000 0.000035 0.000000 0.000035 0.000035 0.000035 1000000.000000 0.000035 -83 0.000000 0.000027 0.000000 0.000000 0.000027 0.000000 0.000027 0.000027 0.000027 1000000.000000 0.000027 -84 0.000000 0.000020 0.000000 0.000000 0.000020 0.000000 0.000020 0.000020 0.000020 1000000.000000 0.000020 -85 0.000000 0.000015 0.000000 0.000000 0.000015 0.000000 0.000015 0.000015 0.000015 1000000.000000 0.000015 -86 0.000000 0.000007 0.000000 0.000000 0.000007 0.000000 0.000007 0.000007 0.000007 1000000.000000 0.000007 -87 0.000000 0.000005 0.000000 0.000000 0.000005 0.000000 0.000005 0.000005 0.000005 1000000.000000 0.000005 -88 0.000000 0.000004 0.000000 0.000000 0.000004 0.000000 0.000004 0.000004 0.000004 1000000.000000 0.000004 -89 0.000000 0.000002 0.000000 0.000000 0.000002 0.000000 0.000002 0.000002 0.000002 1000000.000000 0.000002 -90 0.000000 0.000002 0.000000 0.000000 0.000002 0.000000 0.000002 0.000002 0.000002 1000000.000000 0.000002 -91 0.000000 0.000001 0.000000 0.000000 0.000001 0.000000 0.000001 0.000001 0.000001 1000000.000000 0.000001 -92 0.000000 0.000001 0.000000 0.000000 0.000001 0.000000 0.000001 0.000001 0.000001 1000000.000000 0.000001 -93 0.000000 0.000001 0.000000 0.000000 0.000001 0.000000 0.000001 0.000001 0.000001 1000000.000000 0.000001 -94 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -95 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -96 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -97 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -98 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -99 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 -100 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1000000.000000 0.000000 +1 10000.000000 12.015620 10000.000000 10000.000000 5.847176 10000.000000 7.502679 6.108736 6.666666 6.987454 6.987454 +2 10000.000000 12.616402 10000.000000 10000.000000 6.112957 10000.000000 7.859950 6.353085 6.969697 7.305066 7.305066 +3 10000.000000 12.616402 10000.000000 10000.000000 6.378737 10000.000000 8.217220 6.597435 7.272728 7.622677 7.622677 +4 10000.000000 13.217182 10000.000000 10000.000000 6.644518 10000.000000 8.217220 7.086133 7.575757 7.940289 7.940289 +5 10000.000000 13.217182 10000.000000 10000.000000 7.176080 10000.000000 8.574490 7.330482 7.878788 8.257900 8.257900 +6 10000.000000 13.817964 10000.000000 10000.000000 7.441861 10000.000000 8.931762 7.574832 8.181818 8.575512 8.575512 +7 10000.000000 14.418744 10000.000000 10000.000000 7.707641 10000.000000 9.289032 7.819181 8.484848 8.893124 8.893124 +8 10000.000000 14.418744 10000.000000 10000.000000 7.973422 10000.000000 9.646302 8.063531 8.787879 8.893124 8.893124 +9 10000.000000 15.019526 10000.000000 10000.000000 8.239202 10000.000000 10.003572 8.552230 9.090909 9.210735 9.210735 +10 10000.000000 15.019526 10000.000000 10000.000000 8.770764 10000.000000 10.003572 8.796579 9.393939 10.163570 10.163570 +11 10000.000000 15.620306 10000.000000 10000.000000 9.568107 10000.000000 10.718114 9.529628 10.303030 10.798793 10.798793 +12 10000.000000 16.221087 10000.000000 10000.000000 10.631229 10000.000000 11.432654 10.751374 11.212121 11.751628 11.751628 +13 10000.000000 16.821869 10000.000000 10000.000000 11.428572 10000.000000 12.504466 11.484423 12.121212 12.386851 12.386851 +14 10000.000000 17.422649 10000.000000 10000.000000 12.757475 10000.000000 13.219007 13.683567 13.030303 13.339685 13.339685 +15 10000.000000 18.624212 10000.000000 10000.000000 13.820598 10000.000000 14.290818 14.905314 13.939394 14.610132 14.610132 +16 10000.000000 18.624212 10000.000000 10000.000000 14.617940 10000.000000 15.005359 15.638363 14.545455 15.245355 15.245355 +17 10000.000000 19.224993 10000.000000 10000.000000 15.946844 10000.000000 15.719900 16.615761 15.757576 16.198189 16.198189 +18 10000.000000 20.426554 10000.000000 10000.000000 16.744186 10000.000000 16.791712 17.593159 16.666666 16.833412 16.833412 +19 10000.000000 20.426554 10000.000000 10000.000000 17.807308 10000.000000 17.506252 18.570557 17.575758 17.786247 17.786247 +20 10000.000000 21.628117 10000.000000 10000.000000 19.136213 10000.000000 18.578064 19.792303 18.484848 19.374306 19.374306 +21 10000.000000 22.228897 10000.000000 10000.000000 19.933556 10000.000000 19.292604 20.525351 19.393940 20.009529 20.009529 +22 10000.000000 22.829679 10000.000000 10000.000000 21.262459 10000.000000 20.007145 21.747099 20.303030 20.962362 20.962362 +23 10000.000000 23.430460 10000.000000 10000.000000 22.059801 10000.000000 21.078957 22.480146 21.212122 21.597586 21.597586 +24 10000.000000 24.031240 10000.000000 10000.000000 23.388704 10000.000000 21.793497 23.701893 22.424242 22.868032 22.868032 +25 10000.000000 25.232803 10000.000000 10000.000000 24.451828 10000.000000 22.865309 24.679291 23.333334 23.820868 23.820868 +26 10000.000000 25.833584 10000.000000 10000.000000 25.514950 10000.000000 23.579849 25.656689 23.939394 24.456091 24.456091 +27 10000.000000 25.833584 10000.000000 10000.000000 26.578074 10000.000000 24.294392 26.878437 25.151516 25.408924 25.408924 +28 10000.000000 27.035145 10000.000000 10000.000000 27.641195 10000.000000 25.366201 29.566280 26.060606 26.044147 26.044147 +29 10000.000000 27.635927 10000.000000 10000.000000 28.704319 10000.000000 26.080744 30.788027 27.272728 27.314594 27.314594 +30 10000.000000 28.837488 10000.000000 10000.000000 30.033222 10000.000000 27.152554 32.009773 28.181818 28.902653 28.902653 +31 10000.000000 29.438271 10000.000000 10000.000000 31.096346 10000.000000 28.224365 32.742821 28.787878 29.537876 29.537876 +32 10000.000000 30.039051 10000.000000 10000.000000 32.159470 10000.000000 28.938908 33.964569 30.000000 30.808321 30.808321 +33 10000.000000 30.639832 10000.000000 10000.000000 33.222591 10000.000000 30.010717 34.941967 30.909090 31.443544 31.443544 +34 10000.000000 31.240612 10000.000000 10000.000000 34.551495 10000.000000 30.725260 35.919365 32.121212 32.396378 32.396378 +35 10000.000000 32.442173 10000.000000 10000.000000 35.614616 10000.000000 31.797070 37.141113 33.030304 33.666824 33.666824 +36 10000.000000 33.042957 10000.000000 10000.000000 36.677742 10000.000000 32.868881 38.118511 33.939392 34.302048 34.302048 +37 10000.000000 33.643738 10000.000000 10000.000000 38.006645 10000.000000 33.583424 39.340256 35.151516 35.254883 35.254883 +38 10000.000000 34.845299 10000.000000 10000.000000 39.069767 10000.000000 34.655235 40.317654 36.060608 36.207718 36.207718 +39 10000.000000 35.446079 10000.000000 10000.000000 40.132889 10000.000000 35.369774 41.539402 37.272728 37.160553 37.160553 +40 10000.000000 36.647640 10000.000000 10000.000000 41.461796 10000.000000 36.798855 42.516800 38.181820 39.066223 39.066223 +41 10000.000000 37.248425 10000.000000 10000.000000 42.524918 10000.000000 37.513397 43.494198 39.090908 39.701447 39.701447 +42 10000.000000 37.849205 10000.000000 10000.000000 43.853821 10000.000000 38.227940 46.426392 40.303032 40.971889 40.971889 +43 10000.000000 39.050766 10000.000000 10000.000000 44.916943 10000.000000 39.299751 47.403786 41.212120 41.607113 41.607113 +44 10000.000000 39.050766 10000.000000 10000.000000 46.245846 10000.000000 40.371563 48.625534 42.424244 42.877560 42.877560 +45 10000.000000 40.252327 10000.000000 10000.000000 47.574749 10000.000000 41.443371 49.847282 43.636364 43.830395 43.830395 +46 10000.000000 40.853107 10000.000000 10000.000000 48.637875 10000.000000 42.515182 50.824680 44.545456 44.783230 44.783230 +47 10000.000000 42.054672 10000.000000 10000.000000 49.966778 10000.000000 43.229725 52.046425 45.454544 45.736065 45.736065 +48 10000.000000 43.256233 10000.000000 10000.000000 51.029900 10000.000000 44.301537 53.268173 46.666668 46.688900 46.688900 +49 10000.000000 43.857014 10000.000000 10000.000000 52.358803 10000.000000 45.373348 54.489922 47.878788 47.959347 47.959347 +50 10000.000000 45.058575 10000.000000 10000.000000 53.687706 10000.000000 46.445160 55.711666 49.090908 49.547405 49.547405 +51 10000.000000 45.659359 10000.000000 10000.000000 54.750832 10000.000000 47.516972 56.689064 50.000000 50.500237 50.500237 +52 10000.000000 46.260139 10000.000000 10000.000000 56.079735 10000.000000 48.231510 57.910812 51.212120 51.770683 51.770683 +53 10000.000000 47.461700 10000.000000 10000.000000 57.142857 10000.000000 49.660595 58.888210 52.424244 52.405907 52.405907 +54 10000.000000 48.062481 10000.000000 10000.000000 58.471760 10000.000000 50.375134 60.354305 53.636364 53.676353 53.676353 +55 10000.000000 49.264042 10000.000000 10000.000000 60.066444 10000.000000 51.804214 61.576054 54.848484 54.946800 54.946800 +56 10000.000000 49.864822 10000.000000 10000.000000 61.129570 10000.000000 52.518757 64.752594 55.757576 55.899635 55.899635 +57 10000.000000 50.465607 10000.000000 10000.000000 62.458473 10000.000000 53.590569 66.218689 56.969696 56.852470 56.852470 +58 10000.000000 52.267948 10000.000000 10000.000000 63.521595 10000.000000 55.019650 67.196091 58.181820 57.805305 57.805305 +59 10000.000000 52.868729 10000.000000 10000.000000 65.116280 10000.000000 55.734192 68.662186 59.393940 59.075752 59.075752 +60 10000.000000 54.070290 10000.000000 10000.000000 66.445183 10000.000000 57.163273 69.883934 60.606060 60.981419 60.981419 +61 10000.000000 63.082008 10000.000000 10000.000000 67.508308 10000.000000 61.013687 69.883934 62.870487 61.905556 61.905556 +62 10000.000000 64.884346 10000.000000 10000.000000 69.102989 10000.000000 63.081818 69.883934 64.923058 63.863041 63.863041 +63 10000.000000 67.287476 10000.000000 10000.000000 70.166115 10000.000000 65.794640 69.883934 67.740944 66.558823 66.558823 +64 10000.000000 69.089813 10000.000000 10000.000000 71.760796 10000.000000 68.148849 70.128281 70.006989 68.627411 68.627411 +65 10000.000000 71.492943 10000.000000 10000.000000 73.089699 10000.000000 70.301384 70.372635 72.208092 70.633392 70.633392 +66 10000.000000 73.295280 10000.000000 10000.000000 74.418602 10000.000000 72.530678 72.571777 74.341438 72.823944 72.823944 +67 10000.000000 74.496849 10000.000000 10000.000000 75.747505 10000.000000 74.693489 74.770920 76.761703 74.946419 74.946419 +68 10000.000000 76.299187 10000.000000 10000.000000 77.076408 10000.000000 76.488655 76.237022 78.532944 76.576591 76.576591 +69 10000.000000 78.101532 10000.000000 10000.000000 78.671097 10000.000000 78.256569 77.947464 79.263077 78.303856 78.303856 +70 10000.000000 79.903877 10000.000000 10000.000000 80.000000 10000.000000 80.000000 79.902260 80.000000 80.000000 80.000000 +71 10000.000000 86.010994 10000.000000 10000.000000 86.010994 10000.000000 86.010994 86.010994 86.010994 86.010994 86.010994 +72 10000.000000 92.608429 10000.000000 10000.000000 92.608429 10000.000000 92.608429 92.608429 92.608429 92.608429 92.608429 +73 10000.000000 99.450211 10000.000000 10000.000000 99.450211 10000.000000 99.450211 99.450211 99.450211 99.450211 99.450211 +74 10000.000000 107.025050 10000.000000 10000.000000 107.025050 10000.000000 107.025050 107.025050 107.025050 107.025050 107.025050 +75 10000.000000 115.088580 10000.000000 10000.000000 115.088580 10000.000000 115.088580 115.088580 115.088580 115.088580 115.088580 +76 10000.000000 123.885150 10000.000000 10000.000000 123.885150 10000.000000 123.885150 123.885150 123.885150 123.885150 123.885150 +77 10000.000000 133.414780 10000.000000 10000.000000 133.414780 10000.000000 133.414780 133.414780 133.414780 133.414780 133.414780 +78 10000.000000 143.433110 10000.000000 10000.000000 143.433110 10000.000000 143.433110 143.433110 143.433110 143.433110 143.433110 +79 10000.000000 154.428830 10000.000000 10000.000000 154.428830 10000.000000 154.428830 154.428830 154.428830 154.428830 154.428830 +80 10000.000000 166.157610 10000.000000 10000.000000 166.157610 10000.000000 166.157610 166.157610 166.157610 166.157610 166.157610 +81 10000.000000 218.178910 10000.000000 10000.000000 218.178910 10000.000000 218.178910 218.178910 218.178910 218.178910 218.178910 +82 10000.000000 286.505400 10000.000000 10000.000000 286.505400 10000.000000 286.505400 286.505400 286.505400 286.505400 286.505400 +83 10000.000000 376.378020 10000.000000 10000.000000 376.378020 10000.000000 376.378020 376.378020 376.378020 376.378020 376.378020 +84 10000.000000 494.202420 10000.000000 10000.000000 494.202420 10000.000000 494.202420 494.202420 494.202420 494.202420 494.202420 +85 10000.000000 648.907590 10000.000000 10000.000000 648.907590 10000.000000 648.907590 648.907590 648.907590 648.907590 648.907590 +86 10000.000000 850.587040 10000.000000 10000.000000 850.587040 10000.000000 850.587040 850.587040 850.587040 850.587040 850.587040 +87 10000.000000 1118.431500 10000.000000 10000.000000 1118.431500 10000.000000 1118.431500 1118.431500 1118.431500 1118.431500 1118.431500 +88 10000.000000 1469.524800 10000.000000 10000.000000 1469.524800 10000.000000 1469.524800 1469.524800 1469.524800 1469.524800 1469.524800 +89 10000.000000 1929.203700 10000.000000 10000.000000 1929.203700 10000.000000 1929.203700 1929.203700 1929.203700 1929.203700 1929.203700 +90 10000.000000 2533.663600 10000.000000 10000.000000 2533.663600 10000.000000 2533.663600 2533.663600 2533.663600 2533.663600 2533.663600 +91 10000.000000 371.744050 10000.000000 10000.000000 371.744050 10000.000000 371.744050 371.744050 371.744050 371.744050 371.744050 +92 10000.000000 399.978910 10000.000000 10000.000000 399.978910 10000.000000 399.978910 399.978910 399.978910 399.978910 399.978910 +93 10000.000000 430.358310 10000.000000 10000.000000 430.358310 10000.000000 430.358310 430.358310 430.358310 430.358310 430.358310 +94 10000.000000 463.045070 10000.000000 10000.000000 463.045070 10000.000000 463.045070 463.045070 463.045070 463.045070 463.045070 +95 10000.000000 498.214390 10000.000000 10000.000000 498.214390 10000.000000 498.214390 498.214390 498.214390 498.214390 498.214390 +96 10000.000000 536.055050 10000.000000 10000.000000 536.055050 10000.000000 536.055050 536.055050 536.055050 536.055050 536.055050 +97 10000.000000 576.769780 10000.000000 10000.000000 576.769780 10000.000000 576.769780 576.769780 576.769780 576.769780 576.769780 +98 10000.000000 620.576780 10000.000000 10000.000000 620.576780 10000.000000 620.576780 620.576780 620.576780 620.576780 620.576780 +99 10000.000000 667.711120 10000.000000 10000.000000 667.711120 10000.000000 667.711120 667.711120 667.711120 667.711120 667.711120 +100 10000.000000 718.425420 10000.000000 10000.000000 718.425420 10000.000000 718.425420 718.425420 718.425420 718.425420 718.425420 diff --git a/assets/db_inputs/basestats/chancetospellcritbase.txt b/assets/db_inputs/basestats/chancetospellcritbase.txt index 91c36a9916..6de13a13c3 100644 --- a/assets/db_inputs/basestats/chancetospellcritbase.txt +++ b/assets/db_inputs/basestats/chancetospellcritbase.txt @@ -1,2 +1,101 @@ -X Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid -1 0.000000 0.033355 0.000000 0.000000 0.012375 0.000000 0.022010 0.009075 0.017000 0.000000 0.018515 \ No newline at end of file +Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid +1 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +2 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +3 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +4 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +5 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +6 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +7 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +8 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +9 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +10 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +11 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +12 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +13 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +14 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +15 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +16 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +17 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +18 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +19 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +20 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +21 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +22 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +23 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +24 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +25 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +26 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +27 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +28 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +29 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +30 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +31 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +32 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +33 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +34 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +35 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +36 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +37 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +38 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +39 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +40 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +41 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +42 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +43 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +44 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +45 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +46 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +47 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +48 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +49 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +50 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +51 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +52 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +53 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +54 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +55 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +56 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +57 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +58 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +59 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +60 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +61 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +62 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +63 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +64 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +65 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +66 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +67 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +68 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +69 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +70 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +71 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +72 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +73 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +74 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +75 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +76 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +77 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +78 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +79 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +80 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +81 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +82 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +83 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +84 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +85 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +86 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +87 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +88 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +89 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +90 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +91 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +92 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +93 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +94 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +95 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +96 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +97 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +98 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +99 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 +100 0.000000 0.033400 0.000000 0.000000 0.012400 0.000000 0.022000 0.009100 0.017000 0.018500 0.018500 diff --git a/assets/db_inputs/basestats/combatratings.txt b/assets/db_inputs/basestats/combatratings.txt index f3f0bab413..a078c4344f 100644 --- a/assets/db_inputs/basestats/combatratings.txt +++ b/assets/db_inputs/basestats/combatratings.txt @@ -1,101 +1,101 @@ -Level weapon skill defense skill dodge parry block hit melee hit ranged hit spell crit melee crit ranged crit spell hit taken melee hit taken ranged hit taken spell crit taken melee crit taken ranged crit taken spell haste melee haste ranged haste spell Unknown Unknown Unknown expertise Unknown mastery Unknown Unknown Unknown Unknown Unknown Unknown -1 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -2 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -3 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -4 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -5 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -6 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -7 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -8 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -9 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -10 0.096154 0.057692 0.530769 0.530769 0.265384 0.360742 0.360742 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.306314 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.090186 0.180582 0.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -11 0.144231 0.086538 0.796154 0.796154 0.398077 0.541114 0.541114 0.461538 0.807692 0.807692 0.807692 0.000000 0.000000 0.000000 0.000000 0.459472 0.000000 0.576923 0.576923 0.576923 0.000000 0.000000 0.000000 0.135279 0.270872 0.807692 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -12 0.192308 0.115385 1.061539 1.061539 0.530769 0.721486 0.721486 0.615385 1.076923 1.076923 1.076923 0.000000 0.000000 0.000000 0.000000 0.612629 0.000000 0.769231 0.769231 0.769231 0.000000 0.000000 0.000000 0.180372 0.361163 1.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -13 0.240385 0.144231 1.326923 1.326923 0.663461 0.901856 0.901856 0.769231 1.346154 1.346154 1.346154 0.000000 0.000000 0.000000 0.000000 0.765786 0.000000 0.961538 0.961538 0.961538 0.000000 0.000000 0.000000 0.225465 0.451454 1.346154 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -14 0.288462 0.173077 1.592307 1.592307 0.796154 1.082228 1.082228 0.923077 1.615385 1.615385 1.615385 0.000000 0.000000 0.000000 0.000000 0.918944 0.000000 1.153846 1.153846 1.153846 0.000000 0.000000 0.000000 0.270557 0.541745 1.615385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -15 0.336538 0.201923 1.857693 1.857693 0.928846 1.262600 1.262600 1.076923 1.884615 1.884615 1.884615 0.000000 0.000000 0.000000 0.000000 1.072101 0.000000 1.346154 1.346154 1.346154 0.000000 0.000000 0.000000 0.315649 0.632036 1.884615 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -16 0.384615 0.230769 2.123078 2.123078 1.061539 1.442972 1.442972 1.230769 2.153846 2.153846 2.153846 0.000000 0.000000 0.000000 0.000000 1.225259 0.000000 1.538462 1.538462 1.538462 0.000000 0.000000 0.000000 0.360742 0.722326 2.153846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -17 0.432692 0.259615 2.388461 2.388461 1.194231 1.623342 1.623342 1.384615 2.423077 2.423077 2.423077 0.000000 0.000000 0.000000 0.000000 1.378415 0.000000 1.730769 1.730769 1.730769 0.000000 0.000000 0.000000 0.405835 0.812617 2.423077 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -18 0.480769 0.288462 2.653847 2.653847 1.326923 1.803714 1.803714 1.538462 2.692308 2.692308 2.692308 0.000000 0.000000 0.000000 0.000000 1.531573 0.000000 1.923077 1.923077 1.923077 0.000000 0.000000 0.000000 0.450928 0.902908 2.692308 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -19 0.528846 0.317308 2.919232 2.919232 1.459616 1.984086 1.984086 1.692308 2.961538 2.961538 2.961538 0.000000 0.000000 0.000000 0.000000 1.684730 0.000000 2.115385 2.115385 2.115385 0.000000 0.000000 0.000000 0.496021 0.993199 2.961538 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -20 0.576923 0.346154 3.184615 3.184615 1.592308 2.164456 2.164456 1.846154 3.230769 3.230769 3.230769 0.000000 0.000000 0.000000 0.000000 1.837887 0.000000 2.307692 2.307692 2.307692 0.000000 0.000000 0.000000 0.541114 1.083490 3.230769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -21 0.625000 0.375000 3.450000 3.450000 1.725000 2.344828 2.344828 2.000000 3.500000 3.500000 3.500000 0.000000 0.000000 0.000000 0.000000 1.991044 0.000000 2.500000 2.500000 2.500000 0.000000 0.000000 0.000000 0.586207 1.173781 3.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -22 0.673077 0.403846 3.715385 3.715385 1.857692 2.525200 2.525200 2.153846 3.769231 3.769231 3.769231 0.000000 0.000000 0.000000 0.000000 2.144202 0.000000 2.692308 2.692308 2.692308 0.000000 0.000000 0.000000 0.631300 1.264071 3.769231 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -23 0.721154 0.432692 3.980769 3.980769 1.990385 2.705570 2.705570 2.307692 4.038462 4.038462 4.038462 0.000000 0.000000 0.000000 0.000000 2.297359 0.000000 2.884615 2.884615 2.884615 0.000000 0.000000 0.000000 0.676393 1.354362 4.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -24 0.769231 0.461538 4.246154 4.246154 2.123077 2.885942 2.885942 2.461539 4.307692 4.307692 4.307692 0.000000 0.000000 0.000000 0.000000 2.450516 0.000000 3.076923 3.076923 3.076923 0.000000 0.000000 0.000000 0.721486 1.444653 4.307692 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -25 0.817308 0.490385 4.511539 4.511539 2.255769 3.066314 3.066314 2.615385 4.576923 4.576923 4.576923 0.000000 0.000000 0.000000 0.000000 2.603674 0.000000 3.269231 3.269231 3.269231 0.000000 0.000000 0.000000 0.766579 1.534944 4.576923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -26 0.865385 0.519231 4.776922 4.776922 2.388461 3.246684 3.246684 2.769231 4.846154 4.846154 4.846154 0.000000 0.000000 0.000000 0.000000 2.756830 0.000000 3.461538 3.461538 3.461538 0.000000 0.000000 0.000000 0.811672 1.625234 4.846154 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -27 0.913462 0.548077 5.042308 5.042308 2.521154 3.427056 3.427056 2.923077 5.115385 5.115385 5.115385 0.000000 0.000000 0.000000 0.000000 2.909988 0.000000 3.653846 3.653846 3.653846 0.000000 0.000000 0.000000 0.856765 1.715525 5.115385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -28 0.961538 0.576923 5.307692 5.307692 2.653846 3.607428 3.607428 3.076923 5.384615 5.384615 5.384615 0.000000 0.000000 0.000000 0.000000 3.063145 0.000000 3.846154 3.846154 3.846154 0.000000 0.000000 0.000000 0.901856 1.805816 5.384615 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -29 1.009615 0.605769 5.573078 5.573078 2.786539 3.787799 3.787799 3.230769 5.653846 5.653846 5.653846 0.000000 0.000000 0.000000 0.000000 3.216303 0.000000 4.038462 4.038462 4.038462 0.000000 0.000000 0.000000 0.946949 1.896107 5.653846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -30 1.057692 0.634615 5.838461 5.838461 2.919230 3.968170 3.968170 3.384615 5.923077 5.923077 5.923077 0.000000 0.000000 0.000000 0.000000 3.369459 0.000000 4.230769 4.230769 4.230769 0.000000 0.000000 0.000000 0.992042 1.986398 5.923077 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -31 1.105769 0.663462 6.103846 6.103846 3.051923 4.148542 4.148542 3.538462 6.192307 6.192307 6.192307 0.000000 0.000000 0.000000 0.000000 3.522617 0.000000 4.423077 4.423077 4.423077 0.000000 0.000000 0.000000 1.037135 2.076689 6.192307 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -32 1.153846 0.692308 6.369231 6.369231 3.184615 4.328913 4.328913 3.692308 6.461538 6.461538 6.461538 0.000000 0.000000 0.000000 0.000000 3.675774 0.000000 4.615385 4.615385 4.615385 0.000000 0.000000 0.000000 1.082228 2.166979 6.461538 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -33 1.201923 0.721154 6.634617 6.634617 3.317308 4.509285 4.509285 3.846154 6.730769 6.730769 6.730769 0.000000 0.000000 0.000000 0.000000 3.828933 0.000000 4.807693 4.807693 4.807693 0.000000 0.000000 0.000000 1.127321 2.257270 6.730769 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -34 1.250000 0.750000 6.900001 6.900001 3.450000 4.689656 4.689656 4.000000 7.000000 7.000000 7.000000 0.000000 0.000000 0.000000 0.000000 3.982089 0.000000 5.000000 5.000000 5.000000 0.000000 0.000000 0.000000 1.172414 2.347561 7.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -35 1.298077 0.778846 7.165385 7.165385 3.582692 4.870027 4.870027 4.153846 7.269231 7.269231 7.269231 0.000000 0.000000 0.000000 0.000000 4.135246 0.000000 5.192308 5.192308 5.192308 0.000000 0.000000 0.000000 1.217507 2.437852 7.269231 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -36 1.346154 0.807692 7.430769 7.430769 3.715384 5.050398 5.050398 4.307692 7.538462 7.538462 7.538462 0.000000 0.000000 0.000000 0.000000 4.288404 0.000000 5.384615 5.384615 5.384615 0.000000 0.000000 0.000000 1.262600 2.528143 7.538462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -37 1.394231 0.836538 7.696154 7.696154 3.848077 5.230770 5.230770 4.461538 7.807693 7.807693 7.807693 0.000000 0.000000 0.000000 0.000000 4.441560 0.000000 5.576923 5.576923 5.576923 0.000000 0.000000 0.000000 1.307693 2.618433 7.807693 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -38 1.442308 0.865385 7.961538 7.961538 3.980769 5.411141 5.411141 4.615385 8.076923 8.076923 8.076923 0.000000 0.000000 0.000000 0.000000 4.594717 0.000000 5.769231 5.769231 5.769231 0.000000 0.000000 0.000000 1.352786 2.708724 8.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -39 1.490385 0.894231 8.226923 8.226923 4.113461 5.591512 5.591512 4.769231 8.346154 8.346154 8.346154 0.000000 0.000000 0.000000 0.000000 4.747875 0.000000 5.961538 5.961538 5.961538 0.000000 0.000000 0.000000 1.397879 2.799015 8.346154 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -40 1.538462 0.923077 8.492308 8.492308 4.246154 5.771884 5.771884 4.923077 8.615384 8.615384 8.615384 0.000000 0.000000 0.000000 0.000000 4.901032 0.000000 6.153846 6.153846 6.153846 0.000000 0.000000 0.000000 1.442972 2.889306 8.615384 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -41 1.586538 0.951923 8.757692 8.757692 4.378846 5.952256 5.952256 5.076923 8.884615 8.884615 8.884615 0.000000 0.000000 0.000000 0.000000 5.054189 0.000000 6.346154 6.346154 6.346154 0.000000 0.000000 0.000000 1.488063 2.979597 8.884615 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -42 1.634615 0.980769 9.023077 9.023077 4.511539 6.132627 6.132627 5.230769 9.153846 9.153846 9.153846 0.000000 0.000000 0.000000 0.000000 5.207346 0.000000 6.538462 6.538462 6.538462 0.000000 0.000000 0.000000 1.533156 3.069887 9.153846 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -43 1.682692 1.009615 9.288462 9.288462 4.644231 6.312998 6.312998 5.384615 9.423077 9.423077 9.423077 0.000000 0.000000 0.000000 0.000000 5.360504 0.000000 6.730769 6.730769 6.730769 0.000000 0.000000 0.000000 1.578249 3.160178 9.423077 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -44 1.730769 1.038462 9.553846 9.553846 4.776923 6.493370 6.493370 5.538462 9.692308 9.692308 9.692308 0.000000 0.000000 0.000000 0.000000 5.513661 0.000000 6.923077 6.923077 6.923077 0.000000 0.000000 0.000000 1.623342 3.250469 9.692308 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -45 1.778846 1.067308 9.819231 9.819231 4.909616 6.673741 6.673741 5.692307 9.961538 9.961538 9.961538 0.000000 0.000000 0.000000 0.000000 5.666819 0.000000 7.115385 7.115385 7.115385 0.000000 0.000000 0.000000 1.668435 3.340760 9.961538 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -46 1.826923 1.096154 10.084617 10.084617 5.042308 6.854113 6.854113 5.846154 10.230770 10.230770 10.230770 0.000000 0.000000 0.000000 0.000000 5.819976 0.000000 7.307693 7.307693 7.307693 0.000000 0.000000 0.000000 1.713528 3.431051 10.230770 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -47 1.875000 1.125000 10.350000 10.350000 5.175000 7.034484 7.034484 6.000000 10.500000 10.500000 10.500000 0.000000 0.000000 0.000000 0.000000 5.973134 0.000000 7.500000 7.500000 7.500000 0.000000 0.000000 0.000000 1.758621 3.521342 10.500000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -48 1.923077 1.153846 10.615385 10.615385 5.307693 7.214854 7.214854 6.153846 10.769232 10.769232 10.769232 0.000000 0.000000 0.000000 0.000000 6.126291 0.000000 7.692307 7.692307 7.692307 0.000000 0.000000 0.000000 1.803714 3.611632 10.769232 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -49 1.971154 1.182692 10.880770 10.880770 5.440384 7.395226 7.395226 6.307693 11.038462 11.038462 11.038462 0.000000 0.000000 0.000000 0.000000 6.279448 0.000000 7.884615 7.884615 7.884615 0.000000 0.000000 0.000000 1.848807 3.701923 11.038462 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -50 2.019231 1.211538 11.146154 11.146154 5.573077 7.575598 7.575598 6.461538 11.307693 11.307693 11.307693 0.000000 0.000000 0.000000 0.000000 6.432606 0.000000 8.076923 8.076923 8.076923 0.000000 0.000000 0.000000 1.893900 3.792214 11.307693 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -51 2.067308 1.240385 11.411540 11.411540 5.705769 7.755969 7.755969 6.615385 11.576923 11.576923 11.576923 0.000000 0.000000 0.000000 0.000000 6.585763 0.000000 8.269231 8.269231 8.269231 0.000000 0.000000 0.000000 1.938993 3.882505 11.576923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -52 2.115385 1.269231 11.676924 11.676924 5.838462 7.936340 7.936340 6.769231 11.846155 11.846155 11.846155 0.000000 0.000000 0.000000 0.000000 6.738920 0.000000 8.461538 8.461538 8.461538 0.000000 0.000000 0.000000 1.984086 3.972795 11.846155 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -53 2.163461 1.298077 11.942308 11.942308 5.971154 8.116712 8.116712 6.923077 12.115385 12.115385 12.115385 0.000000 0.000000 0.000000 0.000000 6.892076 0.000000 8.653846 8.653846 8.653846 0.000000 0.000000 0.000000 2.029177 4.063086 12.115385 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -54 2.211539 1.326923 12.207693 12.207693 6.103846 8.297084 8.297084 7.076923 12.384617 12.384617 12.384617 0.000000 0.000000 0.000000 0.000000 7.045234 0.000000 8.846154 8.846154 8.846154 0.000000 0.000000 0.000000 2.074271 4.153377 12.384617 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -55 2.259615 1.355769 12.473078 12.473078 6.236538 8.477455 8.477455 7.230769 12.653847 12.653847 12.653847 0.000000 0.000000 0.000000 0.000000 7.198391 0.000000 9.038462 9.038462 9.038462 0.000000 0.000000 0.000000 2.119363 4.243668 12.653847 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -56 2.307692 1.384615 12.738462 12.738462 6.369231 8.657825 8.657825 7.384615 12.923079 12.923079 12.923079 0.000000 0.000000 0.000000 0.000000 7.351549 0.000000 9.230769 9.230769 9.230769 0.000000 0.000000 0.000000 2.164456 4.333959 12.923079 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -57 2.355769 1.413461 13.003847 13.003847 6.501923 8.838198 8.838198 7.538462 13.192308 13.192308 13.192308 0.000000 0.000000 0.000000 0.000000 7.504705 0.000000 9.423077 9.423077 9.423077 0.000000 0.000000 0.000000 2.209549 4.424249 13.192308 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -58 2.403846 1.442308 13.269232 13.269232 6.634615 9.018569 9.018569 7.692307 13.461539 13.461539 13.461539 0.000000 0.000000 0.000000 0.000000 7.657864 0.000000 9.615385 9.615385 9.615385 0.000000 0.000000 0.000000 2.254642 4.514540 13.461539 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -59 2.451923 1.471154 13.534616 13.534616 6.767308 9.198941 9.198941 7.846154 13.730770 13.730770 13.730770 0.000000 0.000000 0.000000 0.000000 7.811020 0.000000 9.807692 9.807692 9.807692 0.000000 0.000000 0.000000 2.299735 4.604831 13.730770 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -60 2.500000 1.500000 13.800001 13.800001 6.900001 9.379312 9.379312 8.000000 14.000000 14.000000 14.000000 0.000000 0.000000 0.000000 0.000000 7.964177 0.000000 10.000000 10.000000 10.000000 0.000000 0.000000 0.000000 2.344828 4.695122 14.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 2.594937 1.556962 14.324051 14.324051 7.162025 9.735488 9.735488 8.303798 14.531647 14.531647 14.531647 0.000000 0.000000 0.000000 0.000000 8.266615 0.000000 10.379747 10.379747 10.379747 0.000000 0.000000 0.000000 2.433872 4.873418 14.531647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -62 2.697368 1.618421 14.889476 14.889476 7.444737 10.119784 10.119784 8.631579 15.105265 15.105265 15.105265 0.000000 0.000000 0.000000 0.000000 8.592929 0.000000 10.789474 10.789474 10.789474 0.000000 0.000000 0.000000 2.529946 5.065790 15.105265 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -63 2.808219 1.684931 15.501371 15.501371 7.750685 10.535666 10.535666 8.986301 15.726029 15.726029 15.726029 0.000000 0.000000 0.000000 0.000000 8.946062 0.000000 11.232877 11.232877 11.232877 0.000000 0.000000 0.000000 2.633916 5.273973 15.726029 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -64 2.928571 1.757143 16.165714 16.165714 8.082857 10.987195 10.987195 9.371427 16.400000 16.400000 16.400000 0.000000 0.000000 0.000000 0.000000 9.329466 0.000000 11.714287 11.714287 11.714287 0.000000 0.000000 0.000000 2.746798 5.500000 16.400000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -65 3.059702 1.835821 16.889553 16.889553 8.444776 11.479158 11.479158 9.791045 17.134329 17.134329 17.134329 0.000000 0.000000 0.000000 0.000000 9.747203 0.000000 12.238807 12.238807 12.238807 0.000000 0.000000 0.000000 2.869790 5.746268 17.134329 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -66 3.203125 1.921875 17.681252 17.681252 8.840626 12.017243 12.017243 10.250000 17.937500 17.937500 17.937500 0.000000 0.000000 0.000000 0.000000 10.204103 0.000000 12.812500 12.812500 12.812500 0.000000 0.000000 0.000000 3.004311 6.015625 17.937500 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -67 3.360656 2.016393 18.550821 18.550821 9.275410 12.608256 12.608256 10.754099 18.819674 18.819674 18.819674 0.000000 0.000000 0.000000 0.000000 10.705944 0.000000 13.442624 13.442624 13.442624 0.000000 0.000000 0.000000 3.152064 6.311475 18.819674 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -68 3.534483 2.120690 19.510345 19.510345 9.755172 13.260406 13.260406 11.310346 19.793104 19.793104 19.793104 0.000000 0.000000 0.000000 0.000000 11.259700 0.000000 14.137931 14.137931 14.137931 0.000000 0.000000 0.000000 3.315102 6.637931 19.793104 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -69 3.727273 2.236364 20.574547 20.574547 10.287273 13.983701 13.983701 11.927274 20.872728 20.872728 20.872728 0.000000 0.000000 0.000000 0.000000 11.873865 0.000000 14.909091 14.909091 14.909091 0.000000 0.000000 0.000000 3.495925 7.000000 20.872728 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -70 3.942308 2.365385 21.761539 21.761539 10.880770 14.790455 14.790455 12.615385 22.076923 22.076923 22.076923 0.000000 0.000000 0.000000 0.000000 12.558896 0.000000 15.769233 15.769233 15.769233 0.000000 0.000000 0.000000 3.697614 7.403846 22.076923 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -71 4.241735 2.545041 23.414381 23.414381 11.707191 15.913824 15.913824 13.573555 23.753721 23.753721 23.753721 0.000000 0.000000 0.000000 0.000000 13.512775 0.000000 16.966942 16.966942 16.966942 0.000000 0.000000 0.000000 3.978455 7.966187 23.753721 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -72 4.563906 2.738343 25.192760 25.192760 12.596380 17.122520 17.122520 14.604500 25.557875 25.557875 25.557875 0.000000 0.000000 0.000000 0.000000 14.539103 0.000000 18.255625 18.255625 18.255625 0.000000 0.000000 0.000000 4.280630 8.571238 25.557875 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -73 4.910545 2.946327 27.106215 27.106215 13.553107 18.423016 18.423016 15.713748 27.499056 27.499056 27.499056 0.000000 0.000000 0.000000 0.000000 15.643383 0.000000 19.642183 19.642183 19.642183 0.000000 0.000000 0.000000 4.605753 9.222244 27.499056 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -74 5.283514 3.170108 29.164995 29.164995 14.582498 19.822289 19.822289 16.907244 29.587677 29.587677 29.587677 0.000000 0.000000 0.000000 0.000000 16.831537 0.000000 21.134054 21.134054 21.134054 0.000000 0.000000 0.000000 4.955573 9.922696 29.587677 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -75 5.684809 3.410886 31.380148 31.380148 15.690074 21.327839 21.327839 18.191391 31.834934 31.834934 31.834934 0.000000 0.000000 0.000000 0.000000 18.109932 0.000000 22.739237 22.739237 22.739237 0.000000 0.000000 0.000000 5.331960 10.676350 31.834934 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -76 6.116584 3.669950 33.763546 33.763546 16.881773 22.947742 22.947742 19.573071 34.252872 34.252872 34.252872 0.000000 0.000000 0.000000 0.000000 19.485426 0.000000 24.466339 24.466339 24.466339 0.000000 0.000000 0.000000 5.736935 11.487245 34.252872 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -77 6.581153 3.948692 36.327972 36.327972 18.163986 24.690680 24.690680 21.059694 36.854465 36.854465 36.854465 0.000000 0.000000 0.000000 0.000000 20.965391 0.000000 26.324617 26.324617 26.324617 0.000000 0.000000 0.000000 6.172669 12.359729 36.854465 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -78 7.081008 4.248605 39.087170 39.087170 19.543585 26.565996 26.565996 22.659227 39.653648 39.653648 39.653648 0.000000 0.000000 0.000000 0.000000 22.557764 0.000000 28.324036 28.324036 28.324036 0.000000 0.000000 0.000000 6.641498 13.298481 39.653648 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -79 7.618829 4.571297 42.055935 42.055935 21.027967 28.583748 28.583748 24.380253 42.665440 42.665440 42.665440 0.000000 0.000000 0.000000 0.000000 24.271082 0.000000 30.475315 30.475315 30.475315 0.000000 0.000000 0.000000 7.145937 14.308533 42.665440 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -80 8.197496 4.918498 45.250187 45.250187 22.625093 30.754753 30.754753 26.231993 45.905987 45.905987 45.905987 0.000000 0.000000 0.000000 0.000000 26.114531 0.000000 32.789989 32.789989 32.789989 0.000000 0.000000 0.000000 7.688687 15.395300 45.905987 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -81 10.764002 6.458402 59.417301 59.417301 29.708651 40.383575 40.383575 34.444813 60.278423 60.278423 60.278423 0.000000 0.000000 0.000000 0.000000 32.596550 0.000000 43.056015 43.056015 43.056015 0.000000 0.000000 0.000000 10.095893 20.215324 60.278423 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -82 14.134934 8.480962 78.024857 78.024857 39.012428 53.030392 53.030392 45.231800 79.155647 79.155647 79.155647 0.000000 0.000000 0.000000 0.000000 40.687508 0.000000 56.539749 56.539749 56.539749 0.000000 0.000000 0.000000 13.257596 26.546101 79.155647 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -83 18.568861 11.141317 102.500130 102.500130 51.250065 69.665260 69.665260 59.420368 103.985640 103.985640 103.985640 0.000000 0.000000 0.000000 0.000000 50.786758 0.000000 74.275452 74.275452 74.275452 0.000000 0.000000 0.000000 17.416313 34.873234 103.985640 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -84 24.381805 14.629084 134.587590 134.587590 67.293793 91.473831 91.473831 78.021790 136.538130 136.538130 136.538130 0.000000 0.000000 0.000000 0.000000 63.392799 0.000000 97.527237 97.527237 97.527237 0.000000 0.000000 0.000000 22.868454 45.790226 136.538130 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -85 32.014286 19.208574 176.718900 176.718900 88.359444 120.108800 120.108800 102.445740 179.280040 179.280040 179.280040 0.000000 0.000000 0.000000 0.000000 79.127846 0.000000 128.057160 128.057160 128.057160 0.000000 0.000000 0.000000 30.027197 60.124401 179.280040 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -86 12.718613 7.631167 70.206741 70.206741 35.103371 47.716732 47.716732 40.699558 71.224228 71.224228 71.224228 0.000000 0.000000 0.000000 0.000000 45.581978 0.000000 50.874451 50.874451 50.874451 0.000000 0.000000 0.000000 11.929183 23.886175 71.224228 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -87 13.684623 8.210774 75.539108 75.539108 37.769554 51.340935 51.340935 43.790791 76.633881 76.633881 76.633881 0.000000 0.000000 0.000000 0.000000 49.044044 0.000000 54.738491 54.738491 54.738491 0.000000 0.000000 0.000000 12.835235 25.700388 76.633881 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -88 14.724004 8.834401 81.276497 81.276497 40.638248 55.240406 55.240406 47.116810 82.454414 82.454414 82.454414 0.000000 0.000000 0.000000 0.000000 52.769058 0.000000 58.896015 58.896015 58.896015 0.000000 0.000000 0.000000 13.810102 27.652393 82.454414 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -89 15.842327 9.505396 87.449638 87.449638 43.724819 59.436050 59.436050 50.695446 88.717026 88.717026 88.717026 0.000000 0.000000 0.000000 0.000000 56.776993 0.000000 63.369308 63.369308 63.369308 0.000000 0.000000 0.000000 14.859013 29.752663 88.717026 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -90 17.045591 10.227354 94.091660 94.091660 47.045830 63.950363 63.950363 54.545887 95.455307 95.455307 95.455307 0.000000 0.000000 0.000000 0.000000 61.089348 0.000000 68.182365 68.182365 68.182365 0.000000 0.000000 0.000000 15.987591 32.012447 95.455307 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -91 18.340244 11.004147 101.238140 101.238140 50.619076 68.807549 68.807549 58.688782 102.705370 102.705370 102.705370 0.000000 0.000000 0.000000 0.000000 65.729225 0.000000 73.360977 73.360977 73.360977 0.000000 0.000000 0.000000 17.201887 34.443871 102.705370 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -92 19.733231 11.839938 108.927430 108.927430 54.463718 74.033646 74.033646 63.146336 110.506090 110.506090 110.506090 0.000000 0.000000 0.000000 0.000000 70.721527 0.000000 78.932922 78.932922 78.932922 0.000000 0.000000 0.000000 18.508411 37.059967 110.506090 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -93 21.232018 12.739211 117.200740 117.200740 58.600365 79.656685 79.656685 67.942459 118.899300 118.899300 118.899300 0.000000 0.000000 0.000000 0.000000 76.092995 0.000000 84.928070 84.928070 84.928070 0.000000 0.000000 0.000000 19.914171 39.874767 118.899300 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -94 22.844641 13.706784 126.102420 126.102420 63.051208 85.706802 85.706802 73.102852 127.929990 127.929990 127.929990 0.000000 0.000000 0.000000 0.000000 81.872437 0.000000 91.378563 91.378563 91.378563 0.000000 0.000000 0.000000 21.426701 42.903351 127.929990 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -95 24.579746 14.747849 135.680210 135.680210 67.840103 92.216438 92.216438 78.655190 137.646560 137.646560 137.646560 0.000000 0.000000 0.000000 0.000000 88.090858 0.000000 98.318985 98.318985 98.318985 0.000000 0.000000 0.000000 23.054110 46.161964 137.646560 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -96 26.446640 15.867983 145.985430 145.985430 72.992722 99.220505 99.220505 84.629242 148.101180 148.101180 148.101180 0.000000 0.000000 0.000000 0.000000 94.781578 0.000000 105.786550 105.786550 105.786550 0.000000 0.000000 0.000000 24.805128 49.668079 148.101180 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -97 28.455324 17.073195 157.073380 157.073380 78.536697 106.756540 106.756540 91.057037 159.349820 159.349820 159.349820 0.000000 0.000000 0.000000 0.000000 101.980450 0.000000 113.821300 113.821300 113.821300 0.000000 0.000000 0.000000 26.689135 53.440491 159.349820 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -98 30.616577 18.369946 169.003490 169.003490 84.501755 114.864970 114.864970 97.973045 171.452820 171.452820 171.452820 0.000000 0.000000 0.000000 0.000000 109.726120 0.000000 122.466310 122.466310 122.466310 0.000000 0.000000 0.000000 28.716242 57.499424 171.452820 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -99 32.941982 19.765188 181.839720 181.839720 90.919868 123.589230 123.589230 105.414340 184.475080 184.475080 184.475080 0.000000 0.000000 0.000000 0.000000 118.060100 0.000000 131.767910 131.767910 131.767910 0.000000 0.000000 0.000000 30.897312 61.866646 184.475080 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -100 35.444004 21.266403 195.650890 195.650890 97.825455 132.976140 132.976140 113.420810 198.486420 198.486420 198.486420 0.000000 0.000000 0.000000 0.000000 127.027050 0.000000 141.776000 141.776000 141.776000 0.000000 0.000000 0.000000 33.244038 66.565567 198.486420 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +Level weapon skill defense skill dodge parry block hit melee hit ranged hit spell crit melee crit ranged crit spell hit taken melee hit taken ranged hit taken spell crit taken melee crit taken ranged crit taken spell haste melee haste ranged haste spell obsolete obsolete obsolete expertise mastery pvppower Unknown Unknown Unknown Unknown Unknown Unknown +1 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +2 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +3 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +4 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +5 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +6 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +7 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +8 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +9 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +10 0.000000 0.057692 0.796153 0.796153 0.265384 0.307692 0.307692 0.307692 0.538462 0.538462 0.538462 0.000000 0.000000 0.000000 0.000000 0.357367 0.000000 0.384615 0.384615 0.384615 0.000000 0.000000 0.000000 0.307692 0.000000 0.538462 0.462361 0.000000 0.000000 0.000000 0.000000 0.000000 +11 0.000000 0.086538 1.194231 1.194231 0.398077 0.461538 0.461538 0.461538 0.807692 0.807692 0.807692 0.000000 0.000000 0.000000 0.000000 0.536050 0.000000 0.576923 0.576923 0.576923 0.000000 0.000000 0.000000 0.461538 0.000000 0.807692 0.693542 0.000000 0.000000 0.000000 0.000000 0.000000 +12 0.000000 0.115385 1.592308 1.592308 0.530769 0.615385 0.615385 0.615385 1.076923 1.076923 1.076923 0.000000 0.000000 0.000000 0.000000 0.714734 0.000000 0.769231 0.769231 0.769231 0.000000 0.000000 0.000000 0.615385 0.000000 1.076923 0.924723 0.000000 0.000000 0.000000 0.000000 0.000000 +13 0.000000 0.144231 1.990384 1.990384 0.663461 0.769231 0.769231 0.769231 1.346154 1.346154 1.346154 0.000000 0.000000 0.000000 0.000000 0.893417 0.000000 0.961538 0.961538 0.961538 0.000000 0.000000 0.000000 0.769231 0.000000 1.346154 1.155903 0.000000 0.000000 0.000000 0.000000 0.000000 +14 0.000000 0.173077 2.388461 2.388461 0.796154 0.923077 0.923077 0.923077 1.615385 1.615385 1.615385 0.000000 0.000000 0.000000 0.000000 1.072101 0.000000 1.153846 1.153846 1.153846 0.000000 0.000000 0.000000 0.923077 0.000000 1.615385 1.387085 0.000000 0.000000 0.000000 0.000000 0.000000 +15 0.000000 0.201923 2.786539 2.786539 0.928846 1.076923 1.076923 1.076923 1.884615 1.884615 1.884615 0.000000 0.000000 0.000000 0.000000 1.250785 0.000000 1.346154 1.346154 1.346154 0.000000 0.000000 0.000000 1.076923 0.000000 1.884615 1.618266 0.000000 0.000000 0.000000 0.000000 0.000000 +16 0.000000 0.230769 3.184617 3.184617 1.061539 1.230769 1.230769 1.230769 2.153846 2.153846 2.153846 0.000000 0.000000 0.000000 0.000000 1.429468 0.000000 1.538462 1.538462 1.538462 0.000000 0.000000 0.000000 1.230769 0.000000 2.153846 1.849447 0.000000 0.000000 0.000000 0.000000 0.000000 +17 0.000000 0.259615 3.582692 3.582692 1.194231 1.384615 1.384615 1.384615 2.423077 2.423077 2.423077 0.000000 0.000000 0.000000 0.000000 1.608151 0.000000 1.730769 1.730769 1.730769 0.000000 0.000000 0.000000 1.384615 0.000000 2.423077 2.080627 0.000000 0.000000 0.000000 0.000000 0.000000 +18 0.000000 0.288462 3.980770 3.980770 1.326923 1.538462 1.538462 1.538462 2.692308 2.692308 2.692308 0.000000 0.000000 0.000000 0.000000 1.786835 0.000000 1.923077 1.923077 1.923077 0.000000 0.000000 0.000000 1.538462 0.000000 2.692308 2.311808 0.000000 0.000000 0.000000 0.000000 0.000000 +19 0.000000 0.317308 4.378848 4.378848 1.459616 1.692308 1.692308 1.692308 2.961538 2.961538 2.961538 0.000000 0.000000 0.000000 0.000000 1.965519 0.000000 2.115385 2.115385 2.115385 0.000000 0.000000 0.000000 1.692308 0.000000 2.961538 2.542989 0.000000 0.000000 0.000000 0.000000 0.000000 +20 0.000000 0.346154 4.776923 4.776923 1.592308 1.846154 1.846154 1.846154 3.230769 3.230769 3.230769 0.000000 0.000000 0.000000 0.000000 2.144201 0.000000 2.307692 2.307692 2.307692 0.000000 0.000000 0.000000 1.846154 0.000000 3.230769 2.774169 0.000000 0.000000 0.000000 0.000000 0.000000 +21 0.000000 0.375000 5.175000 5.175000 1.725000 2.000000 2.000000 2.000000 3.500000 3.500000 3.500000 0.000000 0.000000 0.000000 0.000000 2.322885 0.000000 2.500000 2.500000 2.500000 0.000000 0.000000 0.000000 2.000000 0.000000 3.500000 3.005350 0.000000 0.000000 0.000000 0.000000 0.000000 +22 0.000000 0.403846 5.573078 5.573078 1.857692 2.153846 2.153846 2.153846 3.769231 3.769231 3.769231 0.000000 0.000000 0.000000 0.000000 2.501569 0.000000 2.692308 2.692308 2.692308 0.000000 0.000000 0.000000 2.153846 0.000000 3.769231 3.236531 0.000000 0.000000 0.000000 0.000000 0.000000 +23 0.000000 0.432692 5.971153 5.971153 1.990385 2.307692 2.307692 2.307692 4.038462 4.038462 4.038462 0.000000 0.000000 0.000000 0.000000 2.680252 0.000000 2.884615 2.884615 2.884615 0.000000 0.000000 0.000000 2.307692 0.000000 4.038462 3.467711 0.000000 0.000000 0.000000 0.000000 0.000000 +24 0.000000 0.461538 6.369231 6.369231 2.123077 2.461539 2.461539 2.461539 4.307692 4.307692 4.307692 0.000000 0.000000 0.000000 0.000000 2.858935 0.000000 3.076923 3.076923 3.076923 0.000000 0.000000 0.000000 2.461539 0.000000 4.307692 3.698892 0.000000 0.000000 0.000000 0.000000 0.000000 +25 0.000000 0.490385 6.767309 6.767309 2.255769 2.615385 2.615385 2.615385 4.576923 4.576923 4.576923 0.000000 0.000000 0.000000 0.000000 3.037619 0.000000 3.269231 3.269231 3.269231 0.000000 0.000000 0.000000 2.615385 0.000000 4.576923 3.930074 0.000000 0.000000 0.000000 0.000000 0.000000 +26 0.000000 0.519231 7.165383 7.165383 2.388461 2.769231 2.769231 2.769231 4.846154 4.846154 4.846154 0.000000 0.000000 0.000000 0.000000 3.216302 0.000000 3.461538 3.461538 3.461538 0.000000 0.000000 0.000000 2.769231 0.000000 4.846154 4.161253 0.000000 0.000000 0.000000 0.000000 0.000000 +27 0.000000 0.548077 7.563462 7.563462 2.521154 2.923077 2.923077 2.923077 5.115385 5.115385 5.115385 0.000000 0.000000 0.000000 0.000000 3.394986 0.000000 3.653846 3.653846 3.653846 0.000000 0.000000 0.000000 2.923077 0.000000 5.115385 4.392434 0.000000 0.000000 0.000000 0.000000 0.000000 +28 0.000000 0.576923 7.961539 7.961539 2.653846 3.076923 3.076923 3.076923 5.384615 5.384615 5.384615 0.000000 0.000000 0.000000 0.000000 3.573670 0.000000 3.846154 3.846154 3.846154 0.000000 0.000000 0.000000 3.076923 0.000000 5.384615 4.623616 0.000000 0.000000 0.000000 0.000000 0.000000 +29 0.000000 0.605769 8.359617 8.359617 2.786539 3.230769 3.230769 3.230769 5.653846 5.653846 5.653846 0.000000 0.000000 0.000000 0.000000 3.752353 0.000000 4.038462 4.038462 4.038462 0.000000 0.000000 0.000000 3.230769 0.000000 5.653846 4.854797 0.000000 0.000000 0.000000 0.000000 0.000000 +30 0.000000 0.634615 8.757692 8.757692 2.919230 3.384615 3.384615 3.384615 5.923077 5.923077 5.923077 0.000000 0.000000 0.000000 0.000000 3.931036 0.000000 4.230769 4.230769 4.230769 0.000000 0.000000 0.000000 3.384615 0.000000 5.923077 5.085977 0.000000 0.000000 0.000000 0.000000 0.000000 +31 0.000000 0.663462 9.155768 9.155768 3.051923 3.538462 3.538462 3.538462 6.192307 6.192307 6.192307 0.000000 0.000000 0.000000 0.000000 4.109720 0.000000 4.423077 4.423077 4.423077 0.000000 0.000000 0.000000 3.538462 0.000000 6.192307 5.317157 0.000000 0.000000 0.000000 0.000000 0.000000 +32 0.000000 0.692308 9.553846 9.553846 3.184615 3.692308 3.692308 3.692308 6.461538 6.461538 6.461538 0.000000 0.000000 0.000000 0.000000 4.288404 0.000000 4.615385 4.615385 4.615385 0.000000 0.000000 0.000000 3.692308 0.000000 6.461538 5.548339 0.000000 0.000000 0.000000 0.000000 0.000000 +33 0.000000 0.721154 9.951925 9.951925 3.317308 3.846154 3.846154 3.846154 6.730769 6.730769 6.730769 0.000000 0.000000 0.000000 0.000000 4.467088 0.000000 4.807693 4.807693 4.807693 0.000000 0.000000 0.000000 3.846154 0.000000 6.730769 5.779521 0.000000 0.000000 0.000000 0.000000 0.000000 +34 0.000000 0.750000 10.350001 10.350001 3.450000 4.000000 4.000000 4.000000 7.000000 7.000000 7.000000 0.000000 0.000000 0.000000 0.000000 4.645770 0.000000 5.000000 5.000000 5.000000 0.000000 0.000000 0.000000 4.000000 0.000000 7.000000 6.010700 0.000000 0.000000 0.000000 0.000000 0.000000 +35 0.000000 0.778846 10.748077 10.748077 3.582692 4.153846 4.153846 4.153846 7.269231 7.269231 7.269231 0.000000 0.000000 0.000000 0.000000 4.824453 0.000000 5.192308 5.192308 5.192308 0.000000 0.000000 0.000000 4.153846 0.000000 7.269231 6.241880 0.000000 0.000000 0.000000 0.000000 0.000000 +36 0.000000 0.807692 11.146153 11.146153 3.715384 4.307692 4.307692 4.307692 7.538462 7.538462 7.538462 0.000000 0.000000 0.000000 0.000000 5.003137 0.000000 5.384615 5.384615 5.384615 0.000000 0.000000 0.000000 4.307692 0.000000 7.538462 6.473062 0.000000 0.000000 0.000000 0.000000 0.000000 +37 0.000000 0.836538 11.544231 11.544231 3.848077 4.461538 4.461538 4.461538 7.807693 7.807693 7.807693 0.000000 0.000000 0.000000 0.000000 5.181820 0.000000 5.576923 5.576923 5.576923 0.000000 0.000000 0.000000 4.461538 0.000000 7.807693 6.704242 0.000000 0.000000 0.000000 0.000000 0.000000 +38 0.000000 0.865385 11.942307 11.942307 3.980769 4.615385 4.615385 4.615385 8.076923 8.076923 8.076923 0.000000 0.000000 0.000000 0.000000 5.360504 0.000000 5.769231 5.769231 5.769231 0.000000 0.000000 0.000000 4.615385 0.000000 8.076923 6.935423 0.000000 0.000000 0.000000 0.000000 0.000000 +39 0.000000 0.894231 12.340384 12.340384 4.113461 4.769231 4.769231 4.769231 8.346154 8.346154 8.346154 0.000000 0.000000 0.000000 0.000000 5.539188 0.000000 5.961538 5.961538 5.961538 0.000000 0.000000 0.000000 4.769231 0.000000 8.346154 7.166604 0.000000 0.000000 0.000000 0.000000 0.000000 +40 0.000000 0.923077 12.738462 12.738462 4.246154 4.923077 4.923077 4.923077 8.615384 8.615384 8.615384 0.000000 0.000000 0.000000 0.000000 5.717871 0.000000 6.153846 6.153846 6.153846 0.000000 0.000000 0.000000 4.923077 0.000000 8.615384 7.397785 0.000000 0.000000 0.000000 0.000000 0.000000 +41 0.000000 0.951923 13.136538 13.136538 4.378846 5.076923 5.076923 5.076923 8.884615 8.884615 8.884615 0.000000 0.000000 0.000000 0.000000 5.896554 0.000000 6.346154 6.346154 6.346154 0.000000 0.000000 0.000000 5.076923 0.000000 8.884615 7.628965 0.000000 0.000000 0.000000 0.000000 0.000000 +42 0.000000 0.980769 13.534616 13.534616 4.511539 5.230769 5.230769 5.230769 9.153846 9.153846 9.153846 0.000000 0.000000 0.000000 0.000000 6.075237 0.000000 6.538462 6.538462 6.538462 0.000000 0.000000 0.000000 5.230769 0.000000 9.153846 7.860146 0.000000 0.000000 0.000000 0.000000 0.000000 +43 0.000000 1.009615 13.932693 13.932693 4.644231 5.384615 5.384615 5.384615 9.423077 9.423077 9.423077 0.000000 0.000000 0.000000 0.000000 6.253921 0.000000 6.730769 6.730769 6.730769 0.000000 0.000000 0.000000 5.384615 0.000000 9.423077 8.091327 0.000000 0.000000 0.000000 0.000000 0.000000 +44 0.000000 1.038462 14.330769 14.330769 4.776923 5.538462 5.538462 5.538462 9.692308 9.692308 9.692308 0.000000 0.000000 0.000000 0.000000 6.432605 0.000000 6.923077 6.923077 6.923077 0.000000 0.000000 0.000000 5.538462 0.000000 9.692308 8.322508 0.000000 0.000000 0.000000 0.000000 0.000000 +45 0.000000 1.067308 14.728847 14.728847 4.909616 5.692307 5.692307 5.692307 9.961538 9.961538 9.961538 0.000000 0.000000 0.000000 0.000000 6.611288 0.000000 7.115385 7.115385 7.115385 0.000000 0.000000 0.000000 5.692307 0.000000 9.961538 8.553689 0.000000 0.000000 0.000000 0.000000 0.000000 +46 0.000000 1.096154 15.126925 15.126925 5.042308 5.846154 5.846154 5.846154 10.230770 10.230770 10.230770 0.000000 0.000000 0.000000 0.000000 6.789972 0.000000 7.307693 7.307693 7.307693 0.000000 0.000000 0.000000 5.846154 0.000000 10.230770 8.784869 0.000000 0.000000 0.000000 0.000000 0.000000 +47 0.000000 1.125000 15.525000 15.525000 5.175000 6.000000 6.000000 6.000000 10.500000 10.500000 10.500000 0.000000 0.000000 0.000000 0.000000 6.968656 0.000000 7.500000 7.500000 7.500000 0.000000 0.000000 0.000000 6.000000 0.000000 10.500000 9.016050 0.000000 0.000000 0.000000 0.000000 0.000000 +48 0.000000 1.153846 15.923078 15.923078 5.307693 6.153846 6.153846 6.153846 10.769232 10.769232 10.769232 0.000000 0.000000 0.000000 0.000000 7.147339 0.000000 7.692307 7.692307 7.692307 0.000000 0.000000 0.000000 6.153846 0.000000 10.769232 9.247231 0.000000 0.000000 0.000000 0.000000 0.000000 +49 0.000000 1.182692 16.321156 16.321156 5.440384 6.307693 6.307693 6.307693 11.038462 11.038462 11.038462 0.000000 0.000000 0.000000 0.000000 7.326023 0.000000 7.884615 7.884615 7.884615 0.000000 0.000000 0.000000 6.307693 0.000000 11.038462 9.478413 0.000000 0.000000 0.000000 0.000000 0.000000 +50 0.000000 1.211538 16.719231 16.719231 5.573077 6.461538 6.461538 6.461538 11.307693 11.307693 11.307693 0.000000 0.000000 0.000000 0.000000 7.504707 0.000000 8.076923 8.076923 8.076923 0.000000 0.000000 0.000000 6.461538 0.000000 11.307693 9.709594 0.000000 0.000000 0.000000 0.000000 0.000000 +51 0.000000 1.240385 17.117310 17.117310 5.705769 6.615385 6.615385 6.615385 11.576923 11.576923 11.576923 0.000000 0.000000 0.000000 0.000000 7.683390 0.000000 8.269231 8.269231 8.269231 0.000000 0.000000 0.000000 6.615385 0.000000 11.576923 9.940773 0.000000 0.000000 0.000000 0.000000 0.000000 +52 0.000000 1.269231 17.515387 17.515387 5.838462 6.769231 6.769231 6.769231 11.846155 11.846155 11.846155 0.000000 0.000000 0.000000 0.000000 7.862073 0.000000 8.461538 8.461538 8.461538 0.000000 0.000000 0.000000 6.769231 0.000000 11.846155 10.171955 0.000000 0.000000 0.000000 0.000000 0.000000 +53 0.000000 1.298077 17.913462 17.913462 5.971154 6.923077 6.923077 6.923077 12.115385 12.115385 12.115385 0.000000 0.000000 0.000000 0.000000 8.040756 0.000000 8.653846 8.653846 8.653846 0.000000 0.000000 0.000000 6.923077 0.000000 12.115385 10.403134 0.000000 0.000000 0.000000 0.000000 0.000000 +54 0.000000 1.326923 18.311539 18.311539 6.103846 7.076923 7.076923 7.076923 12.384617 12.384617 12.384617 0.000000 0.000000 0.000000 0.000000 8.219440 0.000000 8.846154 8.846154 8.846154 0.000000 0.000000 0.000000 7.076923 0.000000 12.384617 10.634315 0.000000 0.000000 0.000000 0.000000 0.000000 +55 0.000000 1.355769 18.709618 18.709618 6.236538 7.230769 7.230769 7.230769 12.653847 12.653847 12.653847 0.000000 0.000000 0.000000 0.000000 8.398123 0.000000 9.038462 9.038462 9.038462 0.000000 0.000000 0.000000 7.230769 0.000000 12.653847 10.865497 0.000000 0.000000 0.000000 0.000000 0.000000 +56 0.000000 1.384615 19.107693 19.107693 6.369231 7.384615 7.384615 7.384615 12.923079 12.923079 12.923079 0.000000 0.000000 0.000000 0.000000 8.576807 0.000000 9.230769 9.230769 9.230769 0.000000 0.000000 0.000000 7.384615 0.000000 12.923079 11.096678 0.000000 0.000000 0.000000 0.000000 0.000000 +57 0.000000 1.413461 19.505770 19.505770 6.501923 7.538462 7.538462 7.538462 13.192308 13.192308 13.192308 0.000000 0.000000 0.000000 0.000000 8.755489 0.000000 9.423077 9.423077 9.423077 0.000000 0.000000 0.000000 7.538462 0.000000 13.192308 11.327857 0.000000 0.000000 0.000000 0.000000 0.000000 +58 0.000000 1.442308 19.903849 19.903849 6.634615 7.692307 7.692307 7.692307 13.461539 13.461539 13.461539 0.000000 0.000000 0.000000 0.000000 8.934174 0.000000 9.615385 9.615385 9.615385 0.000000 0.000000 0.000000 7.692307 0.000000 13.461539 11.559039 0.000000 0.000000 0.000000 0.000000 0.000000 +59 0.000000 1.471154 20.301924 20.301924 6.767308 7.846154 7.846154 7.846154 13.730770 13.730770 13.730770 0.000000 0.000000 0.000000 0.000000 9.112857 0.000000 9.807692 9.807692 9.807692 0.000000 0.000000 0.000000 7.846154 0.000000 13.730770 11.790219 0.000000 0.000000 0.000000 0.000000 0.000000 +60 0.000000 1.500000 20.700001 20.700001 6.900001 8.000000 8.000000 8.000000 14.000000 14.000000 14.000000 0.000000 0.000000 0.000000 0.000000 9.291540 0.000000 10.000000 10.000000 10.000000 0.000000 0.000000 0.000000 8.000000 0.929154 14.000000 12.021399 0.000000 0.000000 0.000000 0.000000 0.000000 +61 0.000000 1.556962 21.486076 21.486076 7.162025 8.303798 8.303798 8.303798 14.531647 14.531647 14.531647 0.000000 0.000000 0.000000 0.000000 9.644384 0.000000 10.379747 10.379747 10.379747 0.000000 0.000000 0.000000 8.303798 0.000000 14.531647 12.477909 0.000000 0.000000 0.000000 0.000000 0.000000 +62 0.000000 1.618421 22.334213 22.334213 7.444737 8.631579 8.631579 8.631579 15.105265 15.105265 15.105265 0.000000 0.000000 0.000000 0.000000 10.025084 0.000000 10.789474 10.789474 10.789474 0.000000 0.000000 0.000000 8.631579 0.000000 15.105265 12.970459 0.000000 0.000000 0.000000 0.000000 0.000000 +63 0.000000 1.684931 23.252056 23.252056 7.750685 8.986301 8.986301 8.986301 15.726029 15.726029 15.726029 0.000000 0.000000 0.000000 0.000000 10.437073 0.000000 11.232877 11.232877 11.232877 0.000000 0.000000 0.000000 8.986301 0.000000 15.726029 13.503490 0.000000 0.000000 0.000000 0.000000 0.000000 +64 0.000000 1.757143 24.248571 24.248571 8.082857 9.371427 9.371427 9.371427 16.400000 16.400000 16.400000 0.000000 0.000000 0.000000 0.000000 10.884377 0.000000 11.714287 11.714287 11.714287 0.000000 0.000000 0.000000 9.371427 0.000000 16.400000 14.082212 0.000000 0.000000 0.000000 0.000000 0.000000 +65 0.000000 1.835821 25.334330 25.334330 8.444776 9.791045 9.791045 9.791045 17.134329 17.134329 17.134329 0.000000 0.000000 0.000000 0.000000 11.371737 0.000000 12.238807 12.238807 12.238807 0.000000 0.000000 0.000000 9.791045 0.000000 17.134329 14.712759 0.000000 0.000000 0.000000 0.000000 0.000000 +66 0.000000 1.921875 26.521877 26.521877 8.840626 10.250000 10.250000 10.250000 17.937500 17.937500 17.937500 0.000000 0.000000 0.000000 0.000000 11.904787 0.000000 12.812500 12.812500 12.812500 0.000000 0.000000 0.000000 10.250000 0.000000 17.937500 15.402420 0.000000 0.000000 0.000000 0.000000 0.000000 +67 0.000000 2.016393 27.826231 27.826231 9.275410 10.754099 10.754099 10.754099 18.819674 18.819674 18.819674 0.000000 0.000000 0.000000 0.000000 12.490268 0.000000 13.442624 13.442624 13.442624 0.000000 0.000000 0.000000 10.754099 0.000000 18.819674 16.159916 0.000000 0.000000 0.000000 0.000000 0.000000 +68 0.000000 2.120690 29.265518 29.265518 9.755172 11.310346 11.310346 11.310346 19.793104 19.793104 19.793104 0.000000 0.000000 0.000000 0.000000 13.136316 0.000000 14.137931 14.137931 14.137931 0.000000 0.000000 0.000000 11.310346 0.000000 19.793104 16.995773 0.000000 0.000000 0.000000 0.000000 0.000000 +69 0.000000 2.236364 30.861820 30.861820 10.287273 11.927274 11.927274 11.927274 20.872728 20.872728 20.872728 0.000000 0.000000 0.000000 0.000000 13.852843 0.000000 14.909091 14.909091 14.909091 0.000000 0.000000 0.000000 11.927274 0.000000 20.872728 17.922815 0.000000 0.000000 0.000000 0.000000 0.000000 +70 0.000000 2.365385 32.642307 32.642307 10.880770 12.615385 12.615385 12.615385 22.076923 22.076923 22.076923 0.000000 0.000000 0.000000 0.000000 14.652046 0.000000 15.769233 15.769233 15.769233 0.000000 0.000000 0.000000 12.615385 0.000000 22.076923 18.956825 0.000000 0.000000 0.000000 0.000000 0.000000 +71 0.000000 2.545041 35.121571 35.121571 11.707191 13.573555 13.573555 13.573555 23.753721 23.753721 23.753721 0.000000 0.000000 0.000000 0.000000 15.764904 0.000000 16.966942 16.966942 16.966942 0.000000 0.000000 0.000000 13.573555 0.000000 23.753721 20.396641 0.000000 0.000000 0.000000 0.000000 0.000000 +72 0.000000 2.738343 37.789139 37.789139 12.596380 14.604500 14.604500 14.604500 25.557875 25.557875 25.557875 0.000000 0.000000 0.000000 0.000000 16.962286 0.000000 18.255625 18.255625 18.255625 0.000000 0.000000 0.000000 14.604500 0.000000 25.557875 21.945816 0.000000 0.000000 0.000000 0.000000 0.000000 +73 0.000000 2.946327 40.659321 40.659321 13.553107 15.713748 15.713748 15.713748 27.499056 27.499056 27.499056 0.000000 0.000000 0.000000 0.000000 18.250612 0.000000 19.642183 19.642183 19.642183 0.000000 0.000000 0.000000 15.713748 0.000000 27.499056 23.612654 0.000000 0.000000 0.000000 0.000000 0.000000 +74 0.000000 3.170108 43.747494 43.747494 14.582498 16.907244 16.907244 16.907244 29.587677 29.587677 29.587677 0.000000 0.000000 0.000000 0.000000 19.636793 0.000000 21.134054 21.134054 21.134054 0.000000 0.000000 0.000000 16.907244 0.000000 29.587677 25.406094 0.000000 0.000000 0.000000 0.000000 0.000000 +75 0.000000 3.410886 47.070221 47.070221 15.690074 18.191391 18.191391 18.191391 31.834934 31.834934 31.834934 0.000000 0.000000 0.000000 0.000000 21.128254 0.000000 22.739237 22.739237 22.739237 0.000000 0.000000 0.000000 18.191391 0.000000 31.834934 27.335745 0.000000 0.000000 0.000000 0.000000 0.000000 +76 0.000000 3.669950 50.645321 50.645321 16.881773 19.573071 19.573071 19.573071 34.252872 34.252872 34.252872 0.000000 0.000000 0.000000 0.000000 22.732996 0.000000 24.466339 24.466339 24.466339 0.000000 0.000000 0.000000 19.573071 0.000000 34.252872 29.411963 0.000000 0.000000 0.000000 0.000000 0.000000 +77 0.000000 3.948692 54.491959 54.491959 18.163986 21.059694 21.059694 21.059694 36.854465 36.854465 36.854465 0.000000 0.000000 0.000000 0.000000 24.459623 0.000000 26.324617 26.324617 26.324617 0.000000 0.000000 0.000000 21.059694 0.000000 36.854465 31.645874 0.000000 0.000000 0.000000 0.000000 0.000000 +78 0.000000 4.248605 58.630756 58.630756 19.543585 22.659227 22.659227 22.659227 39.653648 39.653648 39.653648 0.000000 0.000000 0.000000 0.000000 26.317390 0.000000 28.324036 28.324036 28.324036 0.000000 0.000000 0.000000 22.659227 0.000000 39.653648 34.049454 0.000000 0.000000 0.000000 0.000000 0.000000 +79 0.000000 4.571297 63.083904 63.083904 21.027967 24.380253 24.380253 24.380253 42.665440 42.665440 42.665440 0.000000 0.000000 0.000000 0.000000 28.316261 0.000000 30.475315 30.475315 30.475315 0.000000 0.000000 0.000000 24.380253 0.000000 42.665440 36.635593 0.000000 0.000000 0.000000 0.000000 0.000000 +80 0.000000 4.918498 67.875282 67.875282 22.625093 26.231993 26.231993 26.231993 45.905987 45.905987 45.905987 0.000000 0.000000 0.000000 0.000000 30.466951 0.000000 32.789989 32.789989 32.789989 0.000000 0.000000 0.000000 26.231993 0.000000 45.905987 39.418159 0.000000 0.000000 0.000000 0.000000 0.000000 +81 0.000000 6.458402 89.125954 89.125954 29.708651 34.444813 34.444813 34.444813 60.278423 60.278423 60.278423 0.000000 0.000000 0.000000 0.000000 38.029308 0.000000 43.056015 43.056015 43.056015 0.000000 0.000000 0.000000 34.444813 0.000000 60.278423 49.202339 0.000000 0.000000 0.000000 0.000000 0.000000 +82 0.000000 8.480962 117.037280 117.037280 39.012428 45.231800 45.231800 45.231800 79.155647 79.155647 79.155647 0.000000 0.000000 0.000000 0.000000 47.468758 0.000000 56.539749 56.539749 56.539749 0.000000 0.000000 0.000000 45.231800 0.000000 79.155647 61.415104 0.000000 0.000000 0.000000 0.000000 0.000000 +83 0.000000 11.141317 153.750200 153.750200 51.250065 59.420368 59.420368 59.420368 103.985640 103.985640 103.985640 0.000000 0.000000 0.000000 0.000000 59.251217 0.000000 74.275452 74.275452 74.275452 0.000000 0.000000 0.000000 59.420368 0.000000 103.985640 76.659256 0.000000 0.000000 0.000000 0.000000 0.000000 +84 0.000000 14.629084 201.881380 201.881380 67.293793 78.021790 78.021790 78.021790 136.538130 136.538130 136.538130 0.000000 0.000000 0.000000 0.000000 73.958267 0.000000 97.527237 97.527237 97.527237 0.000000 0.000000 0.000000 78.021790 0.000000 136.538130 95.687241 0.000000 0.000000 0.000000 0.000000 0.000000 +85 0.000000 19.208574 265.078340 265.078340 88.359444 102.445740 102.445740 102.445740 179.280040 179.280040 179.280040 0.000000 0.000000 0.000000 0.000000 92.315819 0.000000 128.057160 128.057160 128.057160 0.000000 0.000000 0.000000 102.445740 0.000000 179.280040 119.438260 0.000000 0.000000 0.000000 0.000000 0.000000 +86 0.000000 24.000000 335.000000 335.000000 112.000000 130.000000 130.000000 130.000000 228.000000 228.000000 228.000000 0.000000 0.000000 0.000000 0.000000 115.000000 0.000000 162.000000 162.000000 162.000000 0.000000 0.000000 0.000000 130.000000 0.000000 228.000000 150.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +87 0.000000 31.000000 430.000000 430.000000 143.000000 166.000000 166.000000 166.000000 290.000000 290.000000 290.000000 0.000000 0.000000 0.000000 0.000000 150.000000 0.000000 208.000000 208.000000 208.000000 0.000000 0.000000 0.000000 166.000000 0.000000 290.000000 195.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +88 0.000000 40.000000 545.000000 545.000000 182.000000 211.000000 211.000000 211.000000 370.000000 370.000000 370.000000 0.000000 0.000000 0.000000 0.000000 190.000000 0.000000 264.000000 264.000000 264.000000 0.000000 0.000000 0.000000 211.000000 0.000000 370.000000 245.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +89 0.000000 50.000000 700.000000 700.000000 233.000000 269.000000 269.000000 269.000000 470.000000 470.000000 470.000000 0.000000 0.000000 0.000000 0.000000 245.000000 0.000000 336.000000 336.000000 336.000000 0.000000 0.000000 0.000000 269.000000 0.000000 470.000000 315.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +90 0.000000 65.000000 885.000000 885.000000 295.000000 340.000000 340.000000 340.000000 600.000000 600.000000 600.000000 0.000000 0.000000 0.000000 0.000000 310.000000 0.000000 425.000000 425.000000 425.000000 0.000000 0.000000 0.000000 340.000000 0.000000 600.000000 400.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +91 0.000000 11.004147 151.857210 151.857210 50.619076 58.688782 58.688782 58.688782 102.705370 102.705370 102.705370 0.000000 0.000000 0.000000 0.000000 76.684097 0.000000 73.360977 73.360977 73.360977 0.000000 0.000000 0.000000 58.688782 0.000000 102.705370 99.213928 0.000000 0.000000 0.000000 0.000000 0.000000 +92 0.000000 11.839938 163.391140 163.391140 54.463718 63.146336 63.146336 63.146336 110.506090 110.506090 110.506090 0.000000 0.000000 0.000000 0.000000 82.508446 0.000000 78.932922 78.932922 78.932922 0.000000 0.000000 0.000000 63.146336 0.000000 110.506090 106.749470 0.000000 0.000000 0.000000 0.000000 0.000000 +93 0.000000 12.739211 175.801100 175.801100 58.600365 67.942459 67.942459 67.942459 118.899300 118.899300 118.899300 0.000000 0.000000 0.000000 0.000000 88.775162 0.000000 84.928070 84.928070 84.928070 0.000000 0.000000 0.000000 67.942459 0.000000 118.899300 114.857350 0.000000 0.000000 0.000000 0.000000 0.000000 +94 0.000000 13.706784 189.153630 189.153630 63.051208 73.102852 73.102852 73.102852 127.929990 127.929990 127.929990 0.000000 0.000000 0.000000 0.000000 95.517845 0.000000 91.378563 91.378563 91.378563 0.000000 0.000000 0.000000 73.102852 0.000000 127.929990 123.581040 0.000000 0.000000 0.000000 0.000000 0.000000 +95 0.000000 14.747849 203.520310 203.520310 67.840103 78.655190 78.655190 78.655190 137.646560 137.646560 137.646560 0.000000 0.000000 0.000000 0.000000 102.772670 0.000000 98.318985 98.318985 98.318985 0.000000 0.000000 0.000000 78.655190 0.000000 137.646560 132.967330 0.000000 0.000000 0.000000 0.000000 0.000000 +96 0.000000 15.867983 218.978150 218.978150 72.992722 84.629242 84.629242 84.629242 148.101180 148.101180 148.101180 0.000000 0.000000 0.000000 0.000000 110.578510 0.000000 105.786550 105.786550 105.786550 0.000000 0.000000 0.000000 84.629242 0.000000 148.101180 143.066530 0.000000 0.000000 0.000000 0.000000 0.000000 +97 0.000000 17.073195 235.610080 235.610080 78.536697 91.057037 91.057037 91.057037 159.349820 159.349820 159.349820 0.000000 0.000000 0.000000 0.000000 118.977200 0.000000 113.821300 113.821300 113.821300 0.000000 0.000000 0.000000 91.057037 0.000000 159.349820 153.932750 0.000000 0.000000 0.000000 0.000000 0.000000 +98 0.000000 18.369946 253.505230 253.505230 84.501755 97.973045 97.973045 97.973045 171.452820 171.452820 171.452820 0.000000 0.000000 0.000000 0.000000 128.013810 0.000000 122.466310 122.466310 122.466310 0.000000 0.000000 0.000000 97.973045 0.000000 171.452820 165.624330 0.000000 0.000000 0.000000 0.000000 0.000000 +99 0.000000 19.765188 272.759580 272.759580 90.919868 105.414340 105.414340 105.414340 184.475080 184.475080 184.475080 0.000000 0.000000 0.000000 0.000000 137.736770 0.000000 131.767910 131.767910 131.767910 0.000000 0.000000 0.000000 105.414340 0.000000 184.475080 178.203920 0.000000 0.000000 0.000000 0.000000 0.000000 +100 0.000000 21.266403 293.476350 293.476350 97.825455 113.420810 113.420810 113.420810 198.486420 198.486420 198.486420 0.000000 0.000000 0.000000 0.000000 148.198230 0.000000 141.776000 141.776000 141.776000 0.000000 0.000000 0.000000 113.420810 0.000000 198.486420 191.738940 0.000000 0.000000 0.000000 0.000000 0.000000 diff --git a/assets/db_inputs/basestats/octbasempbyclass.txt b/assets/db_inputs/basestats/octbasempbyclass.txt index 010b8a83ed..db61b4bf86 100644 --- a/assets/db_inputs/basestats/octbasempbyclass.txt +++ b/assets/db_inputs/basestats/octbasempbyclass.txt @@ -1,101 +1,101 @@ Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid -1 0.000000 60.000000 0.000000 0.000000 110.000000 0.000000 55.000000 100.000000 90.000000 0.000000 50.000000 -2 0.000000 64.000000 0.000000 0.000000 119.000000 0.000000 61.000000 110.000000 98.000000 0.000000 57.000000 -3 0.000000 84.000000 0.000000 0.000000 129.000000 0.000000 68.000000 121.000000 107.000000 0.000000 65.000000 -4 0.000000 90.000000 0.000000 0.000000 140.000000 0.000000 91.000000 118.000000 117.000000 0.000000 74.000000 -5 0.000000 112.000000 0.000000 0.000000 145.000000 0.000000 100.000000 131.000000 128.000000 0.000000 84.000000 -6 0.000000 120.000000 0.000000 0.000000 150.000000 0.000000 110.000000 145.000000 140.000000 0.000000 95.000000 -7 0.000000 129.000000 0.000000 0.000000 164.000000 0.000000 121.000000 160.000000 153.000000 0.000000 107.000000 -8 0.000000 154.000000 0.000000 0.000000 179.000000 0.000000 133.000000 161.000000 167.000000 0.000000 120.000000 -9 0.000000 165.000000 0.000000 0.000000 195.000000 0.000000 161.000000 178.000000 182.000000 0.000000 134.000000 -10 0.000000 192.000000 0.000000 0.000000 212.000000 0.000000 175.000000 196.000000 198.000000 0.000000 149.000000 -11 0.000000 205.000000 0.000000 0.000000 215.000000 0.000000 190.000000 215.000000 200.000000 0.000000 165.000000 -12 0.000000 219.000000 0.000000 0.000000 234.000000 0.000000 206.000000 220.000000 218.000000 0.000000 182.000000 -13 0.000000 249.000000 0.000000 0.000000 254.000000 0.000000 223.000000 241.000000 237.000000 0.000000 200.000000 -14 0.000000 265.000000 0.000000 0.000000 260.000000 0.000000 241.000000 263.000000 257.000000 0.000000 219.000000 -15 0.000000 282.000000 0.000000 0.000000 282.000000 0.000000 260.000000 271.000000 278.000000 0.000000 239.000000 -16 0.000000 315.000000 0.000000 0.000000 305.000000 0.000000 280.000000 295.000000 300.000000 0.000000 260.000000 -17 0.000000 334.000000 0.000000 0.000000 329.000000 0.000000 301.000000 305.000000 308.000000 0.000000 282.000000 -18 0.000000 354.000000 0.000000 0.000000 339.000000 0.000000 323.000000 331.000000 332.000000 0.000000 305.000000 -19 0.000000 390.000000 0.000000 0.000000 365.000000 0.000000 346.000000 343.000000 357.000000 0.000000 329.000000 -20 0.000000 412.000000 0.000000 0.000000 377.000000 0.000000 370.000000 371.000000 383.000000 0.000000 354.000000 -21 0.000000 435.000000 0.000000 0.000000 405.000000 0.000000 395.000000 385.000000 395.000000 0.000000 380.000000 -22 0.000000 459.000000 0.000000 0.000000 434.000000 0.000000 421.000000 415.000000 423.000000 0.000000 392.000000 -23 0.000000 499.000000 0.000000 0.000000 449.000000 0.000000 448.000000 431.000000 452.000000 0.000000 420.000000 -24 0.000000 525.000000 0.000000 0.000000 480.000000 0.000000 476.000000 463.000000 467.000000 0.000000 449.000000 -25 0.000000 552.000000 0.000000 0.000000 497.000000 0.000000 505.000000 481.000000 498.000000 0.000000 479.000000 -26 0.000000 579.000000 0.000000 0.000000 530.000000 0.000000 535.000000 515.000000 530.000000 0.000000 509.000000 -27 0.000000 621.000000 0.000000 0.000000 549.000000 0.000000 566.000000 535.000000 548.000000 0.000000 524.000000 -28 0.000000 648.000000 0.000000 0.000000 584.000000 0.000000 598.000000 556.000000 582.000000 0.000000 554.000000 -29 0.000000 675.000000 0.000000 0.000000 605.000000 0.000000 631.000000 592.000000 602.000000 0.000000 584.000000 -30 0.000000 702.000000 0.000000 0.000000 627.000000 0.000000 665.000000 613.000000 638.000000 0.000000 614.000000 -31 0.000000 729.000000 0.000000 0.000000 665.000000 0.000000 699.000000 634.000000 674.000000 0.000000 629.000000 -32 0.000000 756.000000 0.000000 0.000000 689.000000 0.000000 733.000000 670.000000 695.000000 0.000000 659.000000 -33 0.000000 798.000000 0.000000 0.000000 728.000000 0.000000 767.000000 691.000000 731.000000 0.000000 689.000000 -34 0.000000 825.000000 0.000000 0.000000 752.000000 0.000000 786.000000 712.000000 752.000000 0.000000 704.000000 -35 0.000000 852.000000 0.000000 0.000000 776.000000 0.000000 820.000000 733.000000 788.000000 0.000000 734.000000 -36 0.000000 879.000000 0.000000 0.000000 800.000000 0.000000 854.000000 754.000000 809.000000 0.000000 749.000000 -37 0.000000 906.000000 0.000000 0.000000 839.000000 0.000000 888.000000 790.000000 830.000000 0.000000 779.000000 -38 0.000000 933.000000 0.000000 0.000000 863.000000 0.000000 922.000000 811.000000 866.000000 0.000000 809.000000 -39 0.000000 960.000000 0.000000 0.000000 887.000000 0.000000 941.000000 832.000000 887.000000 0.000000 824.000000 -40 0.000000 987.000000 0.000000 0.000000 911.000000 0.000000 975.000000 853.000000 923.000000 0.000000 854.000000 -41 0.000000 1014.000000 0.000000 0.000000 950.000000 0.000000 1009.000000 874.000000 944.000000 0.000000 869.000000 -42 0.000000 1041.000000 0.000000 0.000000 974.000000 0.000000 1028.000000 895.000000 965.000000 0.000000 899.000000 -43 0.000000 1068.000000 0.000000 0.000000 998.000000 0.000000 1062.000000 916.000000 1001.000000 0.000000 914.000000 -44 0.000000 1110.000000 0.000000 0.000000 1022.000000 0.000000 1096.000000 937.000000 1022.000000 0.000000 944.000000 -45 0.000000 1137.000000 0.000000 0.000000 1046.000000 0.000000 1115.000000 958.000000 1043.000000 0.000000 959.000000 -46 0.000000 1164.000000 0.000000 0.000000 1070.000000 0.000000 1149.000000 979.000000 1064.000000 0.000000 989.000000 -47 0.000000 1176.000000 0.000000 0.000000 1094.000000 0.000000 1183.000000 1000.000000 1100.000000 0.000000 1004.000000 -48 0.000000 1203.000000 0.000000 0.000000 1118.000000 0.000000 1202.000000 1021.000000 1121.000000 0.000000 1019.000000 -49 0.000000 1230.000000 0.000000 0.000000 1142.000000 0.000000 1236.000000 1042.000000 1142.000000 0.000000 1049.000000 -50 0.000000 1257.000000 0.000000 0.000000 1166.000000 0.000000 1255.000000 1048.000000 1163.000000 0.000000 1064.000000 -51 0.000000 1284.000000 0.000000 0.000000 1190.000000 0.000000 1289.000000 1069.000000 1184.000000 0.000000 1079.000000 -52 0.000000 1311.000000 0.000000 0.000000 1214.000000 0.000000 1323.000000 1090.000000 1205.000000 0.000000 1109.000000 -53 0.000000 1338.000000 0.000000 0.000000 1238.000000 0.000000 1342.000000 1111.000000 1226.000000 0.000000 1124.000000 -54 0.000000 1365.000000 0.000000 0.000000 1262.000000 0.000000 1376.000000 1117.000000 1247.000000 0.000000 1139.000000 -55 0.000000 1392.000000 0.000000 0.000000 1271.000000 0.000000 1395.000000 1138.000000 1268.000000 0.000000 1154.000000 -56 0.000000 1419.000000 0.000000 0.000000 1295.000000 0.000000 1414.000000 1159.000000 1289.000000 0.000000 1169.000000 -57 0.000000 1446.000000 0.000000 0.000000 1319.000000 0.000000 1448.000000 1165.000000 1310.000000 0.000000 1199.000000 -58 0.000000 1458.000000 0.000000 0.000000 1343.000000 0.000000 1467.000000 1186.000000 1331.000000 0.000000 1214.000000 -59 0.000000 1485.000000 0.000000 0.000000 1352.000000 0.000000 1501.000000 1192.000000 1352.000000 0.000000 1229.000000 -60 0.000000 1512.000000 0.000000 0.000000 1376.000000 0.000000 1520.000000 1213.000000 1373.000000 0.000000 1244.000000 -61 0.000000 1656.000000 0.000000 0.000000 1500.000000 0.000000 1664.000000 1316.000000 1497.000000 0.000000 1357.000000 -62 0.000000 1800.000000 0.000000 0.000000 1625.000000 0.000000 1808.000000 1419.000000 1621.000000 0.000000 1469.000000 -63 0.000000 1944.000000 0.000000 0.000000 1749.000000 0.000000 1951.000000 1521.000000 1745.000000 0.000000 1582.000000 -64 0.000000 2088.000000 0.000000 0.000000 1873.000000 0.000000 2095.000000 1624.000000 1870.000000 0.000000 1694.000000 -65 0.000000 2232.000000 0.000000 0.000000 1998.000000 0.000000 2239.000000 1727.000000 1994.000000 0.000000 1807.000000 -66 0.000000 2377.000000 0.000000 0.000000 2122.000000 0.000000 2383.000000 1830.000000 2118.000000 0.000000 1919.000000 -67 0.000000 2521.000000 0.000000 0.000000 2247.000000 0.000000 2527.000000 1932.000000 2242.000000 0.000000 2032.000000 -68 0.000000 2665.000000 0.000000 0.000000 2371.000000 0.000000 2670.000000 2035.000000 2366.000000 0.000000 2145.000000 -69 0.000000 2809.000000 0.000000 0.000000 2495.000000 0.000000 2814.000000 2138.000000 2490.000000 0.000000 2257.000000 -70 0.000000 2953.000000 0.000000 0.000000 2620.000000 0.000000 2958.000000 2241.000000 2615.000000 0.000000 2370.000000 -71 0.000000 3097.000000 0.000000 0.000000 2744.000000 0.000000 3102.000000 2343.000000 2739.000000 0.000000 2482.000000 -72 0.000000 3241.000000 0.000000 0.000000 2868.000000 0.000000 3246.000000 2446.000000 2863.000000 0.000000 2595.000000 -73 0.000000 3385.000000 0.000000 0.000000 2993.000000 0.000000 3389.000000 2549.000000 2987.000000 0.000000 2708.000000 -74 0.000000 3529.000000 0.000000 0.000000 3117.000000 0.000000 3533.000000 2652.000000 3111.000000 0.000000 2820.000000 -75 0.000000 3673.000000 0.000000 0.000000 3242.000000 0.000000 3677.000000 2754.000000 3235.000000 0.000000 2933.000000 -76 0.000000 3817.000000 0.000000 0.000000 3366.000000 0.000000 3821.000000 2857.000000 3360.000000 0.000000 3045.000000 -77 0.000000 3962.000000 0.000000 0.000000 3490.000000 0.000000 3965.000000 2960.000000 3484.000000 0.000000 3158.000000 -78 0.000000 4106.000000 0.000000 0.000000 3615.000000 0.000000 4108.000000 3063.000000 3608.000000 0.000000 3270.000000 -79 0.000000 4250.000000 0.000000 0.000000 3739.000000 0.000000 4252.000000 3165.000000 3732.000000 0.000000 3383.000000 -80 0.000000 4394.000000 0.000000 0.000000 3863.000000 0.000000 4396.000000 3268.000000 3856.000000 0.000000 3496.000000 -81 0.000000 6141.000000 0.000000 0.000000 5398.000000 0.000000 6143.000000 4567.000000 5389.000000 0.000000 4886.000000 -82 0.000000 8582.000000 0.000000 0.000000 7544.000000 0.000000 8585.000000 6382.000000 7531.000000 0.000000 6828.000000 -83 0.000000 11993.000000 0.000000 0.000000 10543.000000 0.000000 11997.000000 8919.000000 10524.000000 0.000000 9542.000000 -84 0.000000 16760.000000 0.000000 0.000000 14734.000000 0.000000 16766.000000 12464.000000 14707.000000 0.000000 13335.000000 -85 0.000000 23422.000000 0.000000 0.000000 20590.000000 0.000000 23430.000000 17418.000000 20553.000000 0.000000 18635.000000 -86 0.000000 5258.000000 0.000000 0.000000 4610.000000 0.000000 5259.000000 3885.000000 4601.000000 0.000000 4171.000000 -87 0.000000 5402.000000 0.000000 0.000000 4734.000000 0.000000 5403.000000 3988.000000 4725.000000 0.000000 4284.000000 -88 0.000000 5547.000000 0.000000 0.000000 4858.000000 0.000000 5546.000000 4090.000000 4849.000000 0.000000 4396.000000 -89 0.000000 5691.000000 0.000000 0.000000 4983.000000 0.000000 5690.000000 4193.000000 4974.000000 0.000000 4509.000000 -90 0.000000 5835.000000 0.000000 0.000000 5107.000000 0.000000 5834.000000 4296.000000 5098.000000 0.000000 4621.000000 -91 0.000000 5979.000000 0.000000 0.000000 5231.000000 0.000000 5978.000000 4399.000000 5222.000000 0.000000 4734.000000 -92 0.000000 6123.000000 0.000000 0.000000 5356.000000 0.000000 6122.000000 4501.000000 5346.000000 0.000000 4847.000000 -93 0.000000 6267.000000 0.000000 0.000000 5480.000000 0.000000 6265.000000 4604.000000 5470.000000 0.000000 4959.000000 -94 0.000000 6411.000000 0.000000 0.000000 5605.000000 0.000000 6409.000000 4707.000000 5594.000000 0.000000 5072.000000 -95 0.000000 6555.000000 0.000000 0.000000 5729.000000 0.000000 6553.000000 4810.000000 5719.000000 0.000000 5184.000000 -96 0.000000 6699.000000 0.000000 0.000000 5853.000000 0.000000 6697.000000 4912.000000 5843.000000 0.000000 5297.000000 -97 0.000000 6843.000000 0.000000 0.000000 5978.000000 0.000000 6841.000000 5015.000000 5967.000000 0.000000 5409.000000 -98 0.000000 6987.000000 0.000000 0.000000 6102.000000 0.000000 6984.000000 5118.000000 6091.000000 0.000000 5522.000000 -99 0.000000 7132.000000 0.000000 0.000000 6226.000000 0.000000 7128.000000 5221.000000 6215.000000 0.000000 5635.000000 -100 0.000000 7276.000000 0.000000 0.000000 6351.000000 0.000000 7272.000000 5323.000000 6339.000000 0.000000 5747.000000 +1 0.000000 40.000000 0.000000 0.000000 50.000000 0.000000 40.000000 50.000000 50.000000 50.000000 40.000000 +2 0.000000 40.000000 0.000000 0.000000 65.000000 0.000000 40.000000 65.000000 65.000000 65.000000 40.000000 +3 0.000000 40.000000 0.000000 0.000000 80.000000 0.000000 40.000000 80.000000 80.000000 80.000000 40.000000 +4 0.000000 40.000000 0.000000 0.000000 95.000000 0.000000 40.000000 95.000000 95.000000 95.000000 40.000000 +5 0.000000 40.000000 0.000000 0.000000 110.000000 0.000000 40.000000 110.000000 110.000000 110.000000 40.000000 +6 0.000000 40.000000 0.000000 0.000000 125.000000 0.000000 40.000000 125.000000 125.000000 125.000000 40.000000 +7 0.000000 40.000000 0.000000 0.000000 140.000000 0.000000 40.000000 140.000000 140.000000 140.000000 40.000000 +8 0.000000 40.000000 0.000000 0.000000 155.000000 0.000000 40.000000 155.000000 155.000000 155.000000 40.000000 +9 0.000000 40.000000 0.000000 0.000000 170.000000 0.000000 40.000000 170.000000 170.000000 170.000000 40.000000 +10 0.000000 40.000000 0.000000 0.000000 200.000000 0.000000 40.000000 200.000000 200.000000 200.000000 40.000000 +11 0.000000 46.000000 0.000000 0.000000 230.000000 0.000000 46.000000 230.000000 230.000000 230.000000 46.000000 +12 0.000000 52.000000 0.000000 0.000000 260.000000 0.000000 52.000000 260.000000 260.000000 260.000000 52.000000 +13 0.000000 58.000000 0.000000 0.000000 290.000000 0.000000 58.000000 290.000000 290.000000 290.000000 58.000000 +14 0.000000 64.000000 0.000000 0.000000 320.000000 0.000000 64.000000 320.000000 320.000000 320.000000 64.000000 +15 0.000000 70.000000 0.000000 0.000000 350.000000 0.000000 70.000000 350.000000 350.000000 350.000000 70.000000 +16 0.000000 80.000000 0.000000 0.000000 400.000000 0.000000 80.000000 400.000000 400.000000 400.000000 80.000000 +17 0.000000 90.000000 0.000000 0.000000 450.000000 0.000000 90.000000 450.000000 450.000000 450.000000 90.000000 +18 0.000000 100.000000 0.000000 0.000000 500.000000 0.000000 100.000000 500.000000 500.000000 500.000000 100.000000 +19 0.000000 110.000000 0.000000 0.000000 550.000000 0.000000 110.000000 550.000000 550.000000 550.000000 110.000000 +20 0.000000 120.000000 0.000000 0.000000 600.000000 0.000000 120.000000 600.000000 600.000000 600.000000 120.000000 +21 0.000000 130.000000 0.000000 0.000000 650.000000 0.000000 130.000000 650.000000 650.000000 650.000000 130.000000 +22 0.000000 140.000000 0.000000 0.000000 700.000000 0.000000 140.000000 700.000000 700.000000 700.000000 140.000000 +23 0.000000 150.000000 0.000000 0.000000 750.000000 0.000000 150.000000 750.000000 750.000000 750.000000 150.000000 +24 0.000000 160.000000 0.000000 0.000000 800.000000 0.000000 160.000000 800.000000 800.000000 800.000000 160.000000 +25 0.000000 170.000000 0.000000 0.000000 850.000000 0.000000 170.000000 850.000000 850.000000 850.000000 170.000000 +26 0.000000 180.000000 0.000000 0.000000 900.000000 0.000000 180.000000 900.000000 900.000000 900.000000 180.000000 +27 0.000000 200.000000 0.000000 0.000000 1000.000000 0.000000 200.000000 1000.000000 1000.000000 1000.000000 200.000000 +28 0.000000 220.000000 0.000000 0.000000 1100.000000 0.000000 220.000000 1100.000000 1100.000000 1100.000000 220.000000 +29 0.000000 240.000000 0.000000 0.000000 1200.000000 0.000000 240.000000 1200.000000 1200.000000 1200.000000 240.000000 +30 0.000000 260.000000 0.000000 0.000000 1300.000000 0.000000 260.000000 1300.000000 1300.000000 1300.000000 260.000000 +31 0.000000 280.000000 0.000000 0.000000 1400.000000 0.000000 280.000000 1400.000000 1400.000000 1400.000000 280.000000 +32 0.000000 300.000000 0.000000 0.000000 1500.000000 0.000000 300.000000 1500.000000 1500.000000 1500.000000 300.000000 +33 0.000000 320.000000 0.000000 0.000000 1600.000000 0.000000 320.000000 1600.000000 1600.000000 1600.000000 320.000000 +34 0.000000 340.000000 0.000000 0.000000 1700.000000 0.000000 340.000000 1700.000000 1700.000000 1700.000000 340.000000 +35 0.000000 360.000000 0.000000 0.000000 1800.000000 0.000000 360.000000 1800.000000 1800.000000 1800.000000 360.000000 +36 0.000000 380.000000 0.000000 0.000000 1900.000000 0.000000 380.000000 1900.000000 1900.000000 1900.000000 380.000000 +37 0.000000 400.000000 0.000000 0.000000 2000.000000 0.000000 400.000000 2000.000000 2000.000000 2000.000000 400.000000 +38 0.000000 420.000000 0.000000 0.000000 2100.000000 0.000000 420.000000 2100.000000 2100.000000 2100.000000 420.000000 +39 0.000000 440.000000 0.000000 0.000000 2200.000000 0.000000 440.000000 2200.000000 2200.000000 2200.000000 440.000000 +40 0.000000 460.000000 0.000000 0.000000 2300.000000 0.000000 460.000000 2300.000000 2300.000000 2300.000000 460.000000 +41 0.000000 480.000000 0.000000 0.000000 2400.000000 0.000000 480.000000 2400.000000 2400.000000 2400.000000 480.000000 +42 0.000000 500.000000 0.000000 0.000000 2500.000000 0.000000 500.000000 2500.000000 2500.000000 2500.000000 500.000000 +43 0.000000 520.000000 0.000000 0.000000 2600.000000 0.000000 520.000000 2600.000000 2600.000000 2600.000000 520.000000 +44 0.000000 540.000000 0.000000 0.000000 2700.000000 0.000000 540.000000 2700.000000 2700.000000 2700.000000 540.000000 +45 0.000000 560.000000 0.000000 0.000000 2800.000000 0.000000 560.000000 2800.000000 2800.000000 2800.000000 560.000000 +46 0.000000 580.000000 0.000000 0.000000 2900.000000 0.000000 580.000000 2900.000000 2900.000000 2900.000000 580.000000 +47 0.000000 600.000000 0.000000 0.000000 3000.000000 0.000000 600.000000 3000.000000 3000.000000 3000.000000 600.000000 +48 0.000000 620.000000 0.000000 0.000000 3100.000000 0.000000 620.000000 3100.000000 3100.000000 3100.000000 620.000000 +49 0.000000 640.000000 0.000000 0.000000 3200.000000 0.000000 640.000000 3200.000000 3200.000000 3200.000000 640.000000 +50 0.000000 660.000000 0.000000 0.000000 3300.000000 0.000000 660.000000 3300.000000 3300.000000 3300.000000 660.000000 +51 0.000000 680.000000 0.000000 0.000000 3400.000000 0.000000 680.000000 3400.000000 3400.000000 3400.000000 680.000000 +52 0.000000 700.000000 0.000000 0.000000 3500.000000 0.000000 700.000000 3500.000000 3500.000000 3500.000000 700.000000 +53 0.000000 720.000000 0.000000 0.000000 3600.000000 0.000000 720.000000 3600.000000 3600.000000 3600.000000 720.000000 +54 0.000000 740.000000 0.000000 0.000000 3700.000000 0.000000 740.000000 3700.000000 3700.000000 3700.000000 740.000000 +55 0.000000 760.000000 0.000000 0.000000 3800.000000 0.000000 760.000000 3800.000000 3800.000000 3800.000000 760.000000 +56 0.000000 780.000000 0.000000 0.000000 3900.000000 0.000000 780.000000 3900.000000 3900.000000 3900.000000 780.000000 +57 0.000000 800.000000 0.000000 0.000000 4000.000000 0.000000 800.000000 4000.000000 4000.000000 4000.000000 800.000000 +58 0.000000 820.000000 0.000000 0.000000 4100.000000 0.000000 820.000000 4100.000000 4100.000000 4100.000000 820.000000 +59 0.000000 840.000000 0.000000 0.000000 4200.000000 0.000000 840.000000 4200.000000 4200.000000 4200.000000 840.000000 +60 0.000000 880.000000 0.000000 0.000000 4400.000000 0.000000 880.000000 4400.000000 4400.000000 4400.000000 880.000000 +61 0.000000 920.000000 0.000000 0.000000 4600.000000 0.000000 920.000000 4600.000000 4600.000000 4600.000000 920.000000 +62 0.000000 980.000000 0.000000 0.000000 4900.000000 0.000000 980.000000 4900.000000 4900.000000 4900.000000 980.000000 +63 0.000000 1040.000000 0.000000 0.000000 5200.000000 0.000000 1040.000000 5200.000000 5200.000000 5200.000000 1040.000000 +64 0.000000 1120.000000 0.000000 0.000000 5600.000000 0.000000 1120.000000 5600.000000 5600.000000 5600.000000 1120.000000 +65 0.000000 1200.000000 0.000000 0.000000 6000.000000 0.000000 1200.000000 6000.000000 6000.000000 6000.000000 1200.000000 +66 0.000000 1280.000000 0.000000 0.000000 6400.000000 0.000000 1280.000000 6400.000000 6400.000000 6400.000000 1280.000000 +67 0.000000 1400.000000 0.000000 0.000000 7000.000000 0.000000 1400.000000 7000.000000 7000.000000 7000.000000 1400.000000 +68 0.000000 1520.000000 0.000000 0.000000 7600.000000 0.000000 1520.000000 7600.000000 7600.000000 7600.000000 1520.000000 +69 0.000000 1640.000000 0.000000 0.000000 8200.000000 0.000000 1640.000000 8200.000000 8200.000000 8200.000000 1640.000000 +70 0.000000 1760.000000 0.000000 0.000000 8800.000000 0.000000 1760.000000 8800.000000 8800.000000 8800.000000 1760.000000 +71 0.000000 1880.000000 0.000000 0.000000 9400.000000 0.000000 1880.000000 9400.000000 9400.000000 9400.000000 1880.000000 +72 0.000000 2000.000000 0.000000 0.000000 10000.000000 0.000000 2000.000000 10000.000000 10000.000000 10000.000000 2000.000000 +73 0.000000 2200.000000 0.000000 0.000000 11000.000000 0.000000 2200.000000 11000.000000 11000.000000 11000.000000 2200.000000 +74 0.000000 2400.000000 0.000000 0.000000 12000.000000 0.000000 2400.000000 12000.000000 12000.000000 12000.000000 2400.000000 +75 0.000000 2600.000000 0.000000 0.000000 13000.000000 0.000000 2600.000000 13000.000000 13000.000000 13000.000000 2600.000000 +76 0.000000 2800.000000 0.000000 0.000000 14000.000000 0.000000 2800.000000 14000.000000 14000.000000 14000.000000 2800.000000 +77 0.000000 3000.000000 0.000000 0.000000 15000.000000 0.000000 3000.000000 15000.000000 15000.000000 15000.000000 3000.000000 +78 0.000000 3200.000000 0.000000 0.000000 16000.000000 0.000000 3200.000000 16000.000000 16000.000000 16000.000000 3200.000000 +79 0.000000 3400.000000 0.000000 0.000000 17000.000000 0.000000 3400.000000 17000.000000 17000.000000 17000.000000 3400.000000 +80 0.000000 3600.000000 0.000000 0.000000 18000.000000 0.000000 3600.000000 18000.000000 18000.000000 18000.000000 3600.000000 +81 0.000000 5000.000000 0.000000 0.000000 25000.000000 0.000000 5000.000000 25000.000000 25000.000000 25000.000000 5000.000000 +82 0.000000 8000.000000 0.000000 0.000000 40000.000000 0.000000 8000.000000 40000.000000 40000.000000 40000.000000 8000.000000 +83 0.000000 12000.000000 0.000000 0.000000 60000.000000 0.000000 12000.000000 60000.000000 60000.000000 60000.000000 12000.000000 +84 0.000000 16000.000000 0.000000 0.000000 80000.000000 0.000000 16000.000000 80000.000000 80000.000000 80000.000000 16000.000000 +85 0.000000 20000.000000 0.000000 0.000000 100000.000000 0.000000 20000.000000 100000.000000 100000.000000 100000.000000 20000.000000 +86 0.000000 24000.000000 0.000000 0.000000 120000.000000 0.000000 24000.000000 120000.000000 120000.000000 120000.000000 24000.000000 +87 0.000000 32000.000000 0.000000 0.000000 160000.000000 0.000000 32000.000000 160000.000000 160000.000000 160000.000000 32000.000000 +88 0.000000 40000.000000 0.000000 0.000000 200000.000000 0.000000 40000.000000 200000.000000 200000.000000 200000.000000 40000.000000 +89 0.000000 50000.000000 0.000000 0.000000 250000.000000 0.000000 50000.000000 250000.000000 250000.000000 250000.000000 50000.000000 +90 0.000000 60000.000000 0.000000 0.000000 300000.000000 0.000000 60000.000000 300000.000000 300000.000000 300000.000000 60000.000000 +91 0.000000 70000.000000 0.000000 0.000000 350000.000000 0.000000 70000.000000 350000.000000 350000.000000 350000.000000 70000.000000 +92 0.000000 80000.000000 0.000000 0.000000 400000.000000 0.000000 80000.000000 400000.000000 400000.000000 400000.000000 80000.000000 +93 0.000000 90000.000000 0.000000 0.000000 450000.000000 0.000000 90000.000000 450000.000000 450000.000000 450000.000000 90000.000000 +94 0.000000 100000.000000 0.000000 0.000000 500000.000000 0.000000 100000.000000 500000.000000 500000.000000 500000.000000 100000.000000 +95 0.000000 110000.000000 0.000000 0.000000 550000.000000 0.000000 110000.000000 550000.000000 550000.000000 550000.000000 110000.000000 +96 0.000000 120000.000000 0.000000 0.000000 600000.000000 0.000000 120000.000000 600000.000000 600000.000000 600000.000000 120000.000000 +97 0.000000 130000.000000 0.000000 0.000000 650000.000000 0.000000 130000.000000 650000.000000 650000.000000 650000.000000 130000.000000 +98 0.000000 140000.000000 0.000000 0.000000 700000.000000 0.000000 140000.000000 700000.000000 700000.000000 700000.000000 140000.000000 +99 0.000000 150000.000000 0.000000 0.000000 750000.000000 0.000000 150000.000000 750000.000000 750000.000000 750000.000000 150000.000000 +100 0.000000 160000.000000 0.000000 0.000000 800000.000000 0.000000 160000.000000 800000.000000 800000.000000 800000.000000 160000.000000 diff --git a/assets/enchants/descriptions.json b/assets/enchants/descriptions.json index a9db168207..c1338d6eb9 100644 --- a/assets/enchants/descriptions.json +++ b/assets/enchants/descriptions.json @@ -1,261 +1,650 @@ { - "846": "+5 Fishing", - "983": "+16 Agility", - "1075": "+22 Stamina", - "1099": "+22 Agility", - "1103": "+26 Agility", - "1119": "+16 Intellect", - "1128": "+25 Intellect", - "1147": "+18 Spirit", - "1262": "+20 Arcane Resistance", - "1354": "+20 Fire Resistance", - "1400": "+20 Nature Resistance", - "1446": "+20 Shadow Resistance", - "1597": "+32 Attack Power", - "1600": "+38 Attack Power", - "1603": "+44 Attack Power", - "1606": "+50 Attack Power", - "1951": "+18 Dodge Rating", - "1952": "+20 Dodge Rating", - "1953": "+22 Dodge Rating", - "2326": "+23 Spell Power", - "2332": "+30 Spell Power", - "2381": "+20 Spirit", - "2661": "+6 All Stats", - "2988": "+8 Nature Resist", - "2998": "+7 All Resistances", - "3222": "+20 Agility", - "3230": "+20 Frost Resistance", - "3231": "+15 Expertise Rating", - "3232": "+15 Stamina and Minor Speed Increase", - "3233": "+250 Mana", - "3234": "+20 Hit Rating", - "3236": "+200 Health", - "3238": "Gatherer", - "3239": "Icebreaker Weapon", - "3241": "Lifeward", - "3243": "+35 Spell Penetration", - "3244": "+14 Spirit and +14 Stamina", - "3245": "+20 Resilience Rating", - "3246": "+28 Spell Power", - "3247": "+140 Attack Power versus Undead", - "3251": "Giantslaying", - "3252": "+8 All Stats", - "3253": "+2% Threat and 10 Parry Rating", - "3256": "+10 Agility and +40 Armor", - "3294": "+225 Armor", - "3296": "+10 Spirit and 2% Reduced Threat", - "3297": "+275 Health", - "3325": "+45 Stamina and +15 Agility", - "3326": "+55 Attack Power and +15 Critical Strike Rating", - "3327": "+55 Stamina and +22 Agility", - "3328": "+75 Attack Power and +22 Critical Strike Rating", - "3329": "+12 Stamina", - "3330": "+18 Stamina", - "3365": "Rune of Swordshattering", - "3366": "Rune of Lichbane", - "3367": "Rune of Spellshattering", - "3368": "Rune of the Fallen Crusader", - "3369": "Rune of Cinderglacier", - "3370": "Rune of Razorice", - "3594": "Rune of Swordbreaking", - "3595": "Rune of Spellbreaking", - "3599": "Electromagnetic Pulse Generator", - "3601": "Frag Belt", - "3603": "Hand-Mounted Pyro Rocket", - "3604": "Hyperspeed Accelerators", - "3605": "Flexweave Underlay", - "3607": "+40 Ranged Haste Rating", - "3608": "+40 Ranged Critical Strike", - "3718": "+35 Spell Power and +12 Spirit", - "3719": "+50 Spell Power and +20 Spirit", - "3720": "+35 Spell Power and +20 Stamina", - "3721": "+50 Spell Power and +30 Stamina", - "3722": "Lightweave Embroidery", - "3728": "Darkglow Embroidery", - "3730": "Swordguard Embroidery", - "3731": "Titanium Weapon Chain", - "3748": "Titanium Spike (45-67)", - "3756": "+130 Attack Power", - "3757": "+102 Stamina", - "3758": "+76 Spell Power", - "3759": "+70 Fire Resistance", - "3760": "+70 Frost Resistance", - "3761": "+70 Shadow Resistance", - "3762": "+70 Nature Resistance", - "3763": "+70 Arcane Resistance", - "3788": "+25 Hit Rating and +25 Critical Strike Rating", - "3789": "Berserking", - "3790": "Black Magic", - "3791": "+30 Stamina", - "3793": "+40 Attack Power and +15 Resilience Rating", - "3794": "+23 Spell Power and +15 Resilience Rating", - "3795": "+50 Attack Power and +20 Resilience Rating", - "3796": "+29 Spell Power and +20 Resilience Rating", - "3806": "+18 Spell Power and +10 Critical Strike Rating", - "3807": "+15 Intellect and +10 Spirit", - "3808": "+40 Attack Power and +15 Crit Rating", - "3809": "+21 Intellect and +16 Spirit", - "3810": "+24 Spell Power and +15 Critical Strike Rating", - "3811": "+20 Dodge Rating and +22 Stamina", - "3812": "+25 Frost Resistance and +30 Stamina", - "3813": "+25 Nature Resistance and +30 Stamina", - "3814": "+25 Shadow Resistance and +30 Stamina", - "3815": "+25 Arcane Resistance and +30 Stamina", - "3816": "+25 Fire Resistance and +30 Stamina", - "3817": "+50 Attack Power and +20 Critical Strike Rating", - "3818": "+37 Stamina and +20 Dodge Rating", - "3819": "+26 Intellect and +20 Spirit", - "3820": "+26 Intellect and 20 Critical strike rating", - "3822": "+55 Stamina and +22 Agility", - "3823": "+75 Attack Power and +22 Critical Strike Rating", - "3824": "+24 Attack Power", - "3825": "+15 Haste Rating", - "3826": "+12 Hit Rating and +12 Critical Strike Rating", - "3827": "+110 Attack Power", - "3828": "+85 Attack Power", - "3829": "+35 Attack Power", - "3830": "+50 Spell Power", - "3831": "+23 Haste Rating", - "3832": "+10 All Stats", - "3833": "+65 Attack Power", - "3834": "+63 Spell Power", - "3835": "+120 Attack Power and +15 Crit Rating", - "3836": "+60 Intellect and +15 Spirit", - "3837": "+60 Dodge Rating and +15 Parry Rating", - "3838": "+70 Spell Power and +15 Crit Rating", - "3839": "+40 Attack Power", - "3840": "+23 Spell Power", - "3842": "+30 Stamina and +25 Resilience Rating", - "3843": "Scope (+15 Damage)", - "3844": "+45 Spirit", - "3845": "+50 Attack Power", - "3847": "Rune of the Stoneskin Gargoyle", - "3849": "Titanium Plating", - "3850": "+40 Stamina", - "3852": "+30 Stamina and +15 Resilience Rating", - "3853": "+40 Resilience Rating and +28 Stamina", - "3854": "+81 Spell Power", - "3859": "Springy Arachnoweave", - "3860": "Reticulated Armor Webbing", - "3870": "Blood Draining", - "3872": "+50 Spell Power and +20 Spirit", - "3873": "+50 Spell Power and +30 Stamina", - "3875": "+30 Attack Power and +10 Critical Strike Rating", - "3876": "+15 Dodge Rating and +10 Parry Rating", - "3883": "Rune of the Nerubian Carapace", - "4061": "+50 Mastery Rating", - "4062": "+30 Stamina and Minor Movement Speed", - "4063": "+15 All Stats", - "4064": "+70 Spell Penetration", - "4065": "+50 Haste Rating", - "4066": "Mending", - "4067": "Avalanche", - "4068": "+50 Haste Rating", - "4069": "+50 Haste Rating", - "4070": "+55 Stamina", - "4071": "+50 Critical Strike Rating", - "4072": "+30 Intellect", - "4073": "+160 Armor", - "4074": "Elemental Slayer", - "4075": "+35 Strength", - "4076": "+35 Agility", - "4077": "+40 Resilience Rating", - "4078": "+40 Strength", - "4079": "+40 Agility", - "4080": "+40 Intellect", - "4081": "+60 Stamina", - "4082": "+50 Expertise Rating", - "4083": "Hurricane", - "4084": "Heartsong", - "4085": "+50 Mastery Rating", - "4086": "+50 Dodge Rating", - "4087": "+50 Critical Strike Rating", - "4088": "+40 Spirit", - "4089": "+50 Hit Rating", - "4090": "+250 Armor", - "4091": "+40 Intellect", - "4092": "+50 Hit Rating", - "4093": "+50 Spirit", - "4094": "+50 Mastery Rating", - "4095": "+50 Expertise Rating", - "4096": "+50 Intellect", - "4097": "Power Torrent", - "4098": "Windwalk", - "4099": "Landslide", - "4100": "+65 Critical Strike Rating", - "4101": "+65 Critical Strike Rating", - "4102": "+20 All Stats", - "4103": "+75 Stamina", - "4104": "+35 Mastery Rating and Minor Movement Speed", - "4105": "+25 Agility and Minor Movement Speed", - "4106": "+50 Strength", - "4107": "+65 Mastery Rating", - "4108": "+65 Haste Rating", - "4109": "+55 Intellect and +45 Spirit", - "4110": "+95 Intellect and +55 Spirit", - "4111": "+55 Intellect and +65 Stamina", - "4112": "+95 Intellect and +80 Stamina", - "4113": "+95 Intellect and +80 Stamina", - "4114": "+95 Intellect and +55 Spirit", - "4115": "Lightweave Embroidery", - "4116": "Darkglow Embroidery", - "4118": "Swordguard Embroidery", - "4120": "+36 Stamina", - "4121": "+44 Stamina", - "4122": "+110 Attack Power and +45 Critical Strike Rating", - "4124": "+85 Stamina and +45 Agility", - "4126": "+190 Attack Power and +55 Critical Strike Rating", - "4127": "+145 Stamina and +55 Agility", - "4175": "Gnomish X-Ray Scope", - "4176": "+88 Ranged Hit Rating", - "4177": "+88 Ranged Haste Rating", - "4179": "Synapse Springs", - "4180": "Quickflip Deflection Plates", - "4181": "Tazik Shocker", - "4182": "Spinal Healing Injector", - "4183": "Z50 Mana Gulper", - "4187": "Invisibility Field", - "4188": "Grounded Plasma Shield", - "4189": "+195 Stamina", - "4190": "+130 Agility", - "4191": "+130 Strength", - "4192": "+130 Intellect", - "4193": "+130 Agility and +25 Mastery Rating", - "4194": "+130 Strength and +25 Critical Strike Rating", - "4195": "+195 Stamina and +25 Dodge Rating", - "4196": "+130 Intellect and +25 Haste Rating", - "4197": "+45 Stamina and +20 Dodge Rating", - "4198": "+75 Stamina and +25 Dodge Rating", - "4199": "+30 Intellect and +20 Haste Rating", - "4200": "+50 Intellect and +25 Haste Rating", - "4201": "+30 Strength and +20 Critical Strike Rating", - "4202": "+50 Strength and +25 Critical Strike Rating", - "4203": "+30 Agility and +20 Mastery Rating", - "4204": "+50 Agility and +25 Mastery Rating", - "4205": "+30 Agility and +20 Mastery Rating", - "4206": "+90 Stamina and 35 Dodge rating", - "4207": "+60 Intellect and 35 Critical Strike rating", - "4208": "+60 Strength and 35 mastery rating", - "4209": "+60 Agility and 35 Haste rating", - "4214": "Cardboard Assassin", - "4215": "Elementium Spike (90-133)", - "4216": "Pyrium Spike (210-350)", - "4217": "Pyrium Weapon Chain", - "4222": "Mind Amplification Dish", - "4223": "Nitro Boosts", - "4227": "+130 Agility", - "4245": "+60 Intellect and 35 Resilience rating", - "4246": "+60 Agility and 35 Resilience rating", - "4247": "+60 Strength and 35 Resilience rating", - "4248": "+50 Intellect and +25 Resilience Rating", - "4249": "+50 Strength and +25 Resilience Rating", - "4250": "+50 Agility and +25 Resilience Rating", - "4256": "+50 Strength", - "4257": "+50 Intellect", - "4258": "+50 Agility", - "4259": "+1 Fishing", - "4267": "Flintlocke's Woodchucker", - "4439": "+145 Stamina and +55 Agility", - "4440": "+190 Attack Power and +55 Critical Strike Rating" -} \ No newline at end of file + "1071": "+$k1 Stamina", + "1075": "+$k1 Stamina", + "1099": "+$k1 Agility", + "1103": "+$k1 Agility", + "1128": "+$k1 Intellect", + "1147": "+$k1 Spirit", + "15": "Reinforced (+$k1 Armor)", + "1593": "+$k1 Attack Power", + "1597": "+$k1 Attack Power", + "16": "Reinforced (+$k1 Armor)", + "1600": "+$k1 Attack Power", + "1603": "+$k1 Attack Power", + "1606": "+$k1 Attack Power", + "17": "Reinforced (+$k1 Armor)", + "1704": "Thorium Spike (20-30)", + "18": "Reinforced (+$k1 Armor)", + "1843": "Reinforced (+$k1 Armor)", + "1883": "+$k1 Intellect", + "1884": "+$k1 Spirit", + "1885": "+$k1 Strength", + "1886": "+$k1 Stamina", + "1887": "+$k1 Agility", + "1889": "+$k1 Armor", + "1890": "+$k1 Spirit and +$k2 Stamina", + "1891": "+$19988s1 All Stats", + "1892": "+$19990s1 Health", + "1893": "+$k1 Mana", + "1894": "Icy Chill", + "1896": "+$k1 Weapon Damage", + "1897": "+$k1 Weapon Damage", + "1898": "Lifestealing", + "1899": "Unholy Weapon", + "1900": "Crusader", + "1903": "+$k1 Spirit", + "1904": "+$k1 Intellect", + "1951": "+$k1 Dodge", + "1952": "+$k1 Dodge", + "1953": "+$k1 Dodge", + "2322": "+$k1 Spell Power", + "2326": "+$k1 Spell Power", + "2332": "+$k1 Spell Power", + "2381": "+$k1 Spirit", + "24": "+$k1 Mana", + "241": "+$k1 Weapon Damage", + "242": "+$k1 Health", + "243": "+$k1 Spirit", + "2443": "+$21930s1 Frost Spell Damage", + "246": "+$k1 Mana", + "247": "+$k1 Agility", + "248": "+$k1 Strength", + "2483": "+$k1 Fire Resistance", + "2484": "+$k1 Frost Resistance", + "2485": "+$k1 Arcane Resistance", + "2486": "+$k1 Nature Resistance", + "2487": "+$k1 Shadow Resistance", + "2488": "+$18676s1 All Resistances", + "249": "+$7784s1 Beastslaying", + "250": "+$k1 Weapon Damage", + "2503": "+$k1 Dodge", + "2504": "+$k1 Spell Power", + "2505": "+$k1 Spell Power", + "2523": "+$k1 Ranged Hit", + "254": "+$k1 Health", + "2543": "+$k1 Haste", + "2544": "+$k1 Spell Power", + "2545": "+$k1 Dodge", + "255": "+$k1 Spirit", + "2563": "+$k1 Strength", + "2564": "+$k1 Agility", + "2565": "+$k1 Spirit", + "2567": "+$k1 Spirit", + "2568": "+$k1 Intellect", + "2583": "+$k1 Dodge +$k2 Stamina +$k3 Parry", + "2584": "+$k1 Dodge +$k2 Stamina and +$k3 Intellect", + "2587": "+$k1 Spell Power and +$k2 Intellect", + "2588": "+$k1 Spell Power and +$k2 Hit", + "2589": "+$k1 Spell Power and +$k2 Stamina", + "2590": "+$k1 Intellect +$k2 Stamina and +$k3 Spirit", + "2591": "+$k2 Intellect +$k3 Stamina +$k1 Spell Power", + "2603": "+$24303s1 Fishing", + "2604": "+$k1 Spell Power", + "2605": "+$k1 Spell Power", + "2606": "+$k1 Attack Power", + "2613": "+$25063s1% Threat", + "2614": "+$25064s1 Shadow Spell Power", + "2615": "+$25066s1 Frost Spell Power", + "2616": "+$25065s1 Fire Spell Power", + "2617": "+$k1 Spell Power", + "2619": "+$k1 Fire Resistance", + "2620": "+$k1 Nature Resistance", + "2621": "2% Reduced Threat", + "2622": "+$k1 Dodge", + "2646": "+$k1 Agility", + "2647": "+$k1 Strength", + "2648": "+$k1 Dodge", + "2649": "+$k1 Stamina", + "2650": "+$k1 Spell Power", + "2653": "+$k1 Dodge", + "2654": "+$k1 Intellect", + "2655": "+$k1 Parry", + "2656": "+$k1 Spirit and +$k2 Stamina", + "2657": "+$k1 Agility", + "2658": "+$k1 Hit and +$k2 Critical Strike", + "2659": "+$k1 Health", + "2661": "+$27959s1 All Stats", + "2662": "+$k1 Armor", + "2666": "+$k1 Intellect", + "2667": "+$k1 Attack Power", + "2668": "+$k1 Strength", + "2669": "+$k1 Spell Power", + "2670": "+$k1 Agility", + "2671": "+$27979s1 Arcane and Fire Spell Power", + "2672": "+$27980s1 Shadow and Frost Spell Power", + "2673": "Mongoose", + "2674": "Spellsurge", + "2675": "Battlemaster", + "2679": "+$k1 Spirit", + "2681": "+$k1 Nature Resistance", + "2682": "+$k1 Frost Resistance", + "2683": "+$k1 Shadow Resistance", + "2714": "Felsteel Spike (26-38)", + "2715": "+$k1 Spell Power and $k2 Mana every 5 seconds", + "2716": "+$k1 Stamina and +$k2 Armor", + "2717": "+$k1 Attack Power and +$k2 Critical Strike", + "2721": "+$k1 Spell Power and +$k2 Critical Strike", + "2722": "Scope (+$k1 Damage)", + "2723": "Scope (+$k1 Damage)", + "2724": "Scope (+$k1 Critical Strike)", + "2745": "+$k1 Spell Power and +$k2 Stamina", + "2746": "+$k1 Spell Power and +$k2 Stamina", + "2747": "+$k1 Spell Power and +$k2 Stamina", + "2748": "+$k1 Spell Power and +$k2 Stamina", + "2792": "+$k1 Stamina", + "2793": "+$k1 Dodge", + "2794": "+$k1 Spirit", + "2841": "+$k1 Stamina", + "2928": "+$k1 Intellect", + "2929": "+$k1 Weapon Damage", + "2931": "+$19988s1 All Stats", + "2933": "+$k1 PvP Resilience", + "2934": "+$k1 Critical Strike", + "2935": "+$k1 Hit", + "2937": "+$k1 Spell Power", + "2938": "+$k1 PvP Power", + "2939": "Minor Speed and +$k2 Agility", + "2940": "Minor Speed and +$k2 Stamina", + "2977": "+$k1 Dodge", + "2978": "+$k1 Dodge and +$k2 Stamina", + "2979": "+$k1 Spell Power", + "2980": "+$k1 Intellect and +$k2 Spirit", + "2981": "+$k1 Spell Power", + "2982": "+$k1 Spell Power and +$k2 Critical Strike", + "2983": "+$k1 Attack Power", + "2984": "+$k1 Stamina", + "2985": "+$k1 Stamina", + "2986": "+$k1 Attack Power and +$k2 Critical Strike", + "2987": "+$k1 Stamina", + "2988": "+$k1 Stamina", + "2989": "+$k1 Stamina", + "2990": "+$k1 Dodge", + "2991": "+$k2 Parry and +$k1 Dodge", + "2992": "+$k1 Spirit", + "2993": "+$k1 Intellect and +$k2 Spirit", + "2994": "+$k1 Critical Strike", + "2995": "+$k2 Critical Strike and +$k1 Spell Power", + "2996": "+$k1 Critical Strike", + "2997": "+$k2 Critical Strike and +$k1 Attack Power", + "2998": "+$35442s1 All Resistances", + "2999": "+$k2 Parry and +$k1 Dodge", + "30": "Scope (+$k1 Damage)", + "3001": "+$k1 Intellect and +$k2 Spirit", + "3002": "+$k1 Spell Power and +$k2 Hit", + "3003": "+$k1 Attack Power and +$k2 Hit", + "3004": "+$k2 Stamina and +$k1 PvP Resilience", + "3005": "+$k1 Nature Resistance", + "3006": "+$k1 Arcane Resistance", + "3007": "+$k1 Fire Resistance", + "3008": "+$k1 Frost Resistance", + "3009": "+$k1 Shadow Resistance", + "3010": "+$k2 Attack Power and +$k1 Critical Strike", + "3011": "+$k1 Stamina and +$k2 Agility", + "3012": "+$k2 Attack Power and +$k1 Critical Strike", + "3013": "+$k1 Stamina and +$k2 Agility", + "3095": "+$37890s1 Resist All", + "3096": "+$k1 Strength and +$k2 Intellect", + "3150": "+$k1 Spirit", + "32": "Scope (+$k1 Damage)", + "3222": "+$k1 Agility", + "3223": "Adamantite Weapon Chain", + "3225": "Executioner", + "3228": "+$k1 Attack Power", + "3229": "+$k1 PvP Resilience", + "3231": "+$k1 Expertise", + "3232": "+$k2 Stamina and Minor Speed Increase", + "3233": "+$k1 Mana", + "3234": "+$k1 Hit", + "3236": "+$k1 Health", + "3238": "Gatherer", + "3239": "Icebreaker Weapon", + "3241": "Lifeward", + "3243": "+$k1 PvP Power", + "3244": "+$k1 Spirit and +$k2 Stamina", + "3245": "+$k1 PvP Resilience", + "3246": "+$k1 Spell Power", + "3247": "+$44594s1 Attack Power versus Undead", + "3249": "+$k1 Critical Strike", + "3251": "Giantslaying", + "3252": "+$44624s1 All Stats", + "3253": "+$25063s1% Threat and +$k2 Parry", + "3256": "+$k2 Agility and +$k1 Armor", + "3260": "+$k1 Stamina", + "3269": "+$45698s1 Fishing", + "3273": "Deathfrost", + "3289": "+10% Mount Speed", + "3294": "+$k1 Stamina", + "3296": "+$k2 Spirit and 2% Reduced Threat", + "3297": "+$k1 Health", + "33": "Scope (+$k1 Damage)", + "3315": "+3% Mount Speed", + "3325": "+$k1 Stamina and +$k2 Agility", + "3326": "+$k2 Attack Power and +$k1 Critical Strike", + "3329": "+$k1 Stamina", + "3330": "+$k1 Stamina", + "3332": "+$k2 Attack Power and +$k1 Critical Strike", + "3365": "Rune of Swordshattering", + "3366": "Rune of Lichbane", + "3367": "Rune of Spellshattering", + "3368": "Rune of the Fallen Crusader", + "3369": "Rune of Cinderglacier", + "3370": "Rune of Razorice", + "34": "Counterweight (+$k1 Haste)", + "3594": "Rune of Swordbreaking", + "3595": "Rune of Spellbreaking", + "3599": "Electromagnetic Pulse Generator", + "36": "Enchant: Fiery Blaze", + "3601": "Frag Belt", + "3603": "Hand-Mounted Pyro Rocket", + "3604": "Hyperspeed Accelerators", + "3605": "Flexweave Underlay", + "3607": "+$k1 Ranged Haste", + "3608": "+$k1 Ranged Critical Strike", + "369": "+$k1 Intellect", + "37": "Steel Weapon Chain", + "3718": "+$k1 Spell Power and +$k2 Spirit", + "3719": "+$k1 Spell Power and +$k2 Spirit", + "3720": "+$k1 Spell Power and +$k2 Stamina", + "3721": "+$k1 Spell Power and +$k2 Stamina", + "3722": "Lightweave Embroidery", + "3728": "Darkglow Embroidery", + "3730": "Swordguard Embroidery", + "3731": "Titanium Weapon Chain", + "3748": "Titanium Spike (45-67)", + "3754": "+$k1 Attack Power +$k2 Stamina +$k3 Hit", + "3755": "+$k1 Attack Power +$k2 Dodge", + "3757": "+$k1 Stamina", + "3758": "+$k1 Intellect", + "3775": "+$k1 Spell Power and +$k2 Critical Strike", + "3776": "+$k1 Attack Power and +$k2 Critical Strike", + "3777": "+$k2 Dodge and +$k1 Stamina", + "3788": "+$k1 Hit and +$k2 Critical Strike", + "3789": "Berserking", + "3790": "Black Magic", + "3791": "+$k1 Stamina", + "3793": "+$k1 Attack Power and +$k2 PvP Resilience", + "3794": "+$k1 Spell Power and +$k2 PvP Resilience", + "3795": "+$k1 Attack Power and +$k2 PvP Resilience", + "3796": "+$k1 Spell Power and +$k2 PvP Resilience", + "3797": "+$k1 Spell Power and +$k2 PvP Resilience", + "3806": "+$k1 Spell Power and +$k2 Critical Strike", + "3807": "+$k1 Intellect and +$k2 Spirit", + "3808": "+$k1 Attack Power and +$k2 Critical Strike", + "3809": "+$k1 Intellect and +$k2 Spirit", + "3810": "+$k1 Spell Power and +$k2 Critical Strike", + "3811": "+$k1 Dodge and +$k2 Stamina", + "3812": "+$k1 Frost Resistance and +$k2 Stamina", + "3813": "+$k1 Nature Resistance and +$k2 Stamina", + "3814": "+$k1 Shadow Resistance and +$k2 Stamina", + "3815": "+$k1 Arcane Resistance and +$k2 Stamina", + "3816": "+$k1 Fire Resistance and +$k2 Stamina", + "3817": "+$k1 Attack Power and +$k2 Critical Strike", + "3818": "+$k1 Stamina and +$k2 Dodge", + "3819": "+$k1 Intellect and +$k2 Spirit", + "3820": "+$k1 Intellect and +$k2 Critical Strike", + "3822": "+$k1 Stamina and +$k2 Agility", + "3823": "+$k2 Attack Power and +$k1 Critical Strike", + "3824": "+$k1 Attack Power", + "3825": "+$k1 Haste", + "3826": "+$k1 Hit and +$k2 Critical Strike", + "3827": "+$k1 Attack Power", + "3828": "+$k1 Attack Power", + "3829": "+$k1 Attack Power", + "3830": "+$k1 Spell Power", + "3831": "+$k1 Haste", + "3833": "+$k1 Attack Power", + "3834": "+$k1 Spell Power", + "3835": "+$k1 Attack Power and +$k2 Critical Strike", + "3836": "+$k1 Intellect and +$k2 Spirit", + "3837": "+$k1 Dodge and +$k2 Parry", + "3838": "+$k1 Spell Power and +$k2 Critical Strike", + "3839": "+$k1 Attack Power", + "3840": "+$k1 Intellect", + "3842": "+$k1 Stamina and +$k2 PvP Resilience", + "3843": "Scope (+$k1 Damage)", + "3844": "+$k1 Spirit", + "3845": "+$k1 Attack Power", + "3846": "+$k1 Spell Power", + "3847": "Rune of the Stoneskin Gargoyle", + "3849": "Titanium Plating", + "3850": "+$k1 Stamina", + "3851": "+$k1 Stamina", + "3852": "+$k1 Stamina and +$k2 PvP Resilience", + "3853": "+$k1 PvP Resilience and +$k2 Stamina", + "3854": "+$k1 Spell Power", + "3855": "+$k1 Spell Power", + "3858": "+$k1 Hit", + "3860": "Reticulated Armor Webbing", + "3869": "Blade Ward", + "3870": "Blood Draining", + "3872": "+$k1 Spell Power and +$k2 Spirit", + "3873": "+$k1 Spell Power and +$k2 Stamina", + "3875": "+$k1 Attack Power and +$k2 Critical Strike", + "3876": "+$k1 Dodge and +$k2 Parry", + "3883": "Rune of the Nerubian Carapace", + "4061": "+$k1 Mastery", + "4062": "+$k1 Stamina and Minor Movement Speed", + "4063": "+$74190s1 All Stats", + "4064": "+$k1 PvP Power", + "4065": "+$k1 Haste", + "4066": "Mending", + "4067": "Avalanche", + "4068": "+$k1 Haste", + "4069": "+$k1 Haste", + "4070": "+$k1 Stamina", + "4071": "+$k1 Critical Strike", + "4072": "+$k1 Intellect", + "4073": "+$k1 Stamina", + "4074": "Elemental Slayer", + "4075": "+$k1 Strength", + "4076": "+$k1 Agility", + "4078": "+$k1 Strength", + "4079": "+$k1 Agility", + "4080": "+$k1 Intellect", + "4081": "+$k1 Stamina", + "4082": "+$k1 Expertise", + "4083": "Hurricane", + "4084": "Heartsong", + "4085": "+$k1 Mastery", + "4086": "+$k1 Dodge", + "4087": "+$k1 Critical Strike", + "4088": "+$k1 Spirit", + "4089": "+$k1 Hit", + "4090": "+$k1 Stamina", + "4091": "+$k1 Intellect", + "4092": "+$k1 Hit", + "4093": "+$k1 Spirit", + "4094": "+$k1 Mastery", + "4095": "+$k1 Expertise", + "4096": "+$k1 Intellect", + "4097": "Power Torrent", + "4098": "Windwalk", + "4099": "Landslide", + "41": "+$k1 Health", + "4100": "+$k1 Critical Strike", + "4101": "+$k1 Critical Strike", + "4102": "+$74249s1 All Stats", + "4103": "+$k1 Stamina", + "4104": "+$k1 Mastery and Minor Movement Speed", + "4105": "+$k1 Agility and Minor Movement Speed", + "4106": "+$k1 Strength", + "4107": "+$k1 Mastery", + "4108": "+$k1 Haste", + "4109": "+$k1 Intellect and +$k2 Spirit", + "4110": "+$k1 Intellect and +$k2 Spirit", + "4111": "+$k1 Intellect and +$k2 Stamina", + "4112": "+$k1 Intellect and +$k2 Stamina", + "4113": "+$k1 Intellect and +$k2 Stamina", + "4114": "+$k1 Intellect and +$k2 Spirit", + "4115": "Lightweave Embroidery", + "4116": "Darkglow Embroidery", + "4118": "Swordguard Embroidery", + "4120": "+$k1 Stamina", + "4121": "+$k1 Stamina", + "4122": "+$k2 Attack Power and +$k1 Critical Strike", + "4124": "+$k1 Stamina and +$k2 Agility", + "4126": "+$k2 Attack Power and +$k1 Critical Strike", + "4127": "+$k1 Stamina and +$k2 Agility", + "4175": "Gnomish X-Ray Scope", + "4176": "+$k1 Ranged Hit", + "4177": "+$k1 Ranged Haste", + "4179": "Synapse Springs", + "4180": "Quickflip Deflection Plates", + "4181": "Tazik Shocker", + "4187": "Invisibility Field", + "4188": "Grounded Plasma Shield", + "4189": "+$k1 Stamina", + "4190": "+$k1 Agility", + "4191": "+$k1 Strength", + "4192": "+$k1 Intellect", + "4193": "+$k1 Agility and +$k2 Mastery", + "4194": "+$k1 Strength and +$k2 Critical Strike", + "4195": "+$k1 Stamina and +$k2 Dodge", + "4196": "+$k1 Intellect and +$k2 Haste", + "4197": "+$k1 Stamina and +$k2 Dodge", + "4198": "+$k1 Stamina and +$k2 Dodge", + "4199": "+$k1 Intellect and +$k2 Haste", + "4200": "+$k1 Intellect and +$k2 Haste", + "4201": "+$k1 Strength and +$k2 Critical Strike", + "4202": "+$k1 Strength and +$k2 Critical Strike", + "4203": "+$k1 Agility and +$k2 Mastery", + "4204": "+$k1 Agility and +$k2 Mastery", + "4205": "+$k1 Agility and +$k2 Mastery", + "4206": "+$k1 Stamina and +$k2 Dodge", + "4207": "+$k1 Intellect and +$k2 Critical Strike", + "4208": "+$k1 Strength and +$k2 Mastery", + "4209": "+$k1 Agility and +$k2 Haste", + "4214": "Cardboard Assassin", + "4215": "Elementium Spike (90-133)", + "4216": "Pyrium Spike (210-350)", + "4217": "Pyrium Weapon Chain", + "4222": "Mind Amplification Dish", + "4223": "Nitro Boosts", + "4227": "+$k1 Agility", + "4245": "+$k1 Intellect and +$k2 PvP Resilience", + "4246": "+$k1 Agility and +$k2 PvP Resilience", + "4247": "+$k1 Strength and +$k2 PvP Resilience", + "4248": "+$k1 Intellect and +$k2 PvP Resilience", + "4249": "+$k1 Strength and +$k2 PvP Resilience", + "4250": "+$k1 Agility and +$k2 PvP Resilience", + "4256": "+$k1 Strength", + "4257": "+$k1 Intellect", + "4258": "+$k1 Agility", + "4259": "+$96285s1 Fishing", + "4267": "Flintlocke's Woodchucker", + "4270": "+$k1 Stamina and +$k2 Dodge", + "43": "Iron Spike (8-12)", + "4359": "+$k1 Agility", + "4360": "+$k1 Intellect", + "4361": "+$k1 Stamina", + "44": "Absorption ($7423s1)", + "4411": "+$k1 Mastery", + "4412": "+$k1 Dodge", + "4414": "+$k1 Intellect", + "4415": "+$k1 Strength", + "4416": "+$k1 Agility", + "4417": "+$k1 PvP Resilience", + "4418": "+$k1 Spirit", + "4419": "+$k1 All Stats", + "4420": "+$k1 Stamina", + "4421": "+$k1 Hit", + "4422": "+$k1 Stamina", + "4423": "+$k1 Intellect", + "4424": "+$k1 Critical Strike", + "4426": "+$k1 Haste", + "4427": "+$k1 Hit", + "4428": "+$k1 Agility \u0026 Minor Speed Increase", + "4429": "+$k1 Mastery \u0026 Minor Speed Increase", + "4430": "+$k1 Haste", + "4431": "+$k1 Expertise", + "4432": "+$k1 Strength", + "4433": "+$k1 Mastery", + "4434": "+$k1 Intellect", + "4441": "Windsong", + "4442": "Jade Spirit", + "4443": "Elemental Force", + "4444": "Dancing Steel", + "4445": "Colossus", + "4446": "River's Song", + "463": "Mithril Spike (16-20)", + "464": "+$7215s1% Mount Speed", + "4697": "Phase Fingers", + "4698": "Incindiary Fireworks Launcher", + "4699": "Lord Blastington's Scope of Doom", + "4700": "Mirror Scope", + "4717": "Pandamonium", + "4719": "Placeholder Shoulder Enchant", + "4720": "+$k1 Health", + "4721": "+$k1 Stamina", + "4722": "+$k1 Stamina", + "4723": "+$k1 Weapon Damage", + "4724": "+$k1 Agility", + "4725": "+$k1 Agility", + "4726": "+$k1 Spirit", + "4727": "+$k1 Spirit", + "4728": "+$k1 Spirit", + "4729": "+$k1 Intellect", + "4730": "+$k1 Stamina", + "4731": "+$k1 Stamina", + "4732": "+$71691s1 Fishing", + "4733": "+$k1 Armor", + "4734": "+$k1 Agility", + "4735": "+$k1 Spirit", + "4736": "+$k1 Spirit", + "4737": "+$k1 Stamina", + "4738": "+$k1 Stamina", + "4739": "+$k1 Strength", + "4740": "+$k1 Agility", + "4741": "+$k1 Spirit", + "4742": "+$k1 Strength", + "4743": "+$k1 Stamina", + "4744": "+$k1 Stamina", + "4745": "+$k1 Weapon Damage", + "4746": "+$k1 Weapon Damage", + "4747": "+$k1 Agility", + "4748": "+$k1 Agility", + "4750": "Spinal Healing Injector", + "4803": "+$k1 Strength and +$k2 Critical Strike", + "4804": "+$k1 Agility and +$k2 Critical Strike", + "4805": "+$k1 Stamina and +$k2 Dodge", + "4806": "+$k1 Intellect and +$k2 Critical Strike", + "4807": "+$k1 Strength", + "4808": "Magic Weapon", + "4822": "+$k1 Agility and +$k2 Critical Strike", + "4823": "+$k1 Strength and +$k2 Critical Strike", + "4824": "+$k1 Stamina and +$k2 Dodge", + "4825": "+$k1 Intellect and +$k2 Critical Strike", + "4826": "+$k1 Intellect and +$k2 Spirit", + "4869": "+$k1 Stamina", + "4870": "+$k1 Stamina and +$k2 Dodge", + "4871": "+$k1 Agility and +$k2 Critical Strike", + "4872": "+$k1 Strength and +$k2 Critical Strike", + "4873": "+$k1 Agility", + "4874": "+$k1 Strength", + "4875": "+$k1 Agility", + "4877": "+$k1 Intellect", + "4878": "+$k1 Stamina", + "4879": "+$k1 Strength", + "4880": "+$k1 Agility and +$k2 Critical Strike", + "4881": "+$k1 Strength and +$k2 Critical Strike", + "4882": "+$k1 Stamina and +$k2 Dodge", + "4883": "+$k1 Agility and +$k2 Critical Strike", + "4884": "+$k1 Stamina and +$k2 Dodge", + "4885": "+$k1 Strength and +$k2 Critical Strike", + "4886": "+$k1 Agility and +$k2 Critical Strike", + "4887": "+$k1 Stamina and +$k2 Dodge", + "4888": "+$k1 Strength and +$k2 Critical Strike", + "4892": "Lightweave Embroidery", + "4893": "Darkglow Embroidery", + "4894": "Swordguard Embroidery", + "4895": "+$k1 Intellect and +$k2 Critical Strike", + "4896": "+$k1 Intellect and +$k2 Spirit", + "4897": "Goblin Glider", + "4898": "Synapse Springs", + "4907": "+$k1 Strength and +$k2 Critical Strike", + "4908": "+$k1 Agility and +$k2 Critical Strike", + "4909": "+$k1 Intellect and +$k2 Critical Strike", + "4910": "+$k1 Stamina and +$k2 Dodge", + "4912": "+$k1 Stamina and +$k2 Dodge", + "4913": "+$k1 Strength and +$k2 Critical Strike", + "4914": "+$k1 Agility and +$k2 Critical Strike", + "4915": "+$k1 Intellect and +$k2 Critical Strike", + "4916": "+$k1 Spirit and +$k2 Critical Strike", + "4918": "Living Steel Weapon Chain", + "4992": "+$k1 Strength (Scaling)", + "4993": "+$k1 Parry", + "5000": "Watergliding Jets", + "5001": "Ghost Iron Spike (600-1000)", + "5003": "+$k1 Intellect and +$k2 Critical Strike", + "5004": "+$k1 Intellect and +$k2 Spirit", + "5029": "Custom - Jaina - Crackling Lightning", + "5035": "+$k1 PvP Power, Disarm Duration Reduction", + "5055": "+$k1 Intellect and +$k2 Critical Strike", + "5056": "+$k1 Intellect", + "5057": "+$k1 Intellect", + "5058": "+$k1 Haste", + "5059": "+$k1 Intellect and +$k2 Critical Strike", + "5060": "+$k1 Mastery \u0026 Minor Speed Increase", + "5061": "+$k1 Intellect", + "5062": "Jade Spirit", + "5063": "Synapse Springs", + "5076": "+$k1 PvP Resilience", + "5080": "+$k1 Mastery", + "5081": "+$k1 Mastery", + "5091": "+$k1 Intellect and +$k2 Critical Strike", + "5092": "+$k1 Intellect", + "5093": "+$k1 Intellect", + "5094": "+$k1 Haste", + "5095": "+$k1 Intellect and +$k2 Critical Strike", + "5096": "+$k1 Mastery \u0026 Minor Speed Increase", + "5097": "+$k1 Intellect", + "5098": "Jade Spirit", + "5099": "+$k1 PvP Resilience", + "5100": "+$k1 Mastery", + "5101": "+$k1 Mastery", + "5110": "Lightweave Embroidery", + "5111": "+$k1 All Stats", + "5112": "+$k1 Intellect", + "5113": "+$k1 Intellect", + "5124": "Spirit of Conquest", + "5125": "Bloody Dancing Steel", + "5183": "+$k1 Spell Power", + "5184": "+$k1 Spell Power", + "5237": "+$k1 Spirit", + "5250": "+$k1 Strength", + "5255": "+$k1 Attack Power", + "5257": "+$k1 Attack Power", + "5258": "+$k1 Agility", + "5259": "+$k1 Agility", + "5260": "+$k1 Dodge", + "63": "Absorption ($7447s1)", + "66": "+$k1 Stamina", + "663": "Scope (+$k1 Damage)", + "664": "Scope (+$k1 Damage)", + "723": "+$k1 Intellect", + "724": "+$k1 Stamina", + "744": "+$k1 Armor", + "783": "+$k1 Armor", + "803": "Fiery Weapon", + "805": "+$k1 Weapon Damage", + "823": "+$k1 Strength", + "843": "+$k1 Mana", + "844": "+$13611s1 Mining", + "845": "+$13614s1 Herbalism", + "846": "+$71691s1 Fishing", + "847": "+$13624s1 All Stats", + "848": "+$k1 Armor", + "849": "+$k1 Agility", + "850": "+$k1 Health", + "851": "+$k1 Spirit", + "852": "+$k1 Stamina", + "853": "+$13650s1 Beastslaying", + "854": "+$13651s1 Elemental Slayer", + "856": "+$k1 Strength", + "857": "+$k1 Mana", + "863": "+$k1 Parry", + "865": "+$13697s1 Skinning", + "866": "+$13625s1 All Stats", + "884": "+$k1 Armor", + "904": "+$k1 Agility", + "905": "+$k1 Intellect", + "906": "+$13838s1 Mining", + "907": "+$k1 Spirit", + "908": "+$k1 Health", + "909": "+$13839s1 Herbalism", + "910": "+$k1 Agility and +$k2 Dodge", + "911": "Minor Speed Increase", + "912": "Demonslaying", + "913": "+$k1 Mana", + "923": "+$k1 Dodge", + "924": "+$k1 Dodge", + "925": "+$k1 Dodge", + "926": "+$k1 Frost Resistance", + "927": "+$k1 Strength", + "928": "+$13824s1 All Stats", + "929": "+$k1 Stamina", + "930": "+$13927s1% Mount Speed", + "931": "+$k1 Haste", + "943": "+$k1 Weapon Damage", + "963": "+$k1 Weapon Damage" +} diff --git a/assets/img/monk_background.jpg b/assets/img/monk_background.jpg new file mode 100644 index 0000000000..baaa3d4a2d Binary files /dev/null and b/assets/img/monk_background.jpg differ diff --git a/cmd/wowsimcli/cli_main.go b/cmd/wowsimcli/cli_main.go index 4891d97f48..274abd6eaf 100644 --- a/cmd/wowsimcli/cli_main.go +++ b/cmd/wowsimcli/cli_main.go @@ -1,8 +1,8 @@ package main import ( - "github.com/wowsims/cata/cmd/wowsimcli/cmd" - "github.com/wowsims/cata/sim" + "github.com/wowsims/mop/cmd/wowsimcli/cmd" + "github.com/wowsims/mop/sim" ) func init() { diff --git a/cmd/wowsimcli/cmd/basic_sim.go b/cmd/wowsimcli/cmd/basic_sim.go index 95913831d9..64e3715253 100644 --- a/cmd/wowsimcli/cmd/basic_sim.go +++ b/cmd/wowsimcli/cmd/basic_sim.go @@ -6,8 +6,8 @@ import ( "os" "github.com/spf13/cobra" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/cmd/wowsimcli/cmd/bulk_replace.go b/cmd/wowsimcli/cmd/bulk_replace.go index 4227cea8ee..d4a46cc7d0 100644 --- a/cmd/wowsimcli/cmd/bulk_replace.go +++ b/cmd/wowsimcli/cmd/bulk_replace.go @@ -9,8 +9,8 @@ import ( "time" "github.com/spf13/cobra" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/cmd/wowsimcli/cmd/decode_link.go b/cmd/wowsimcli/cmd/decode_link.go index a9c5ae6b0d..e23cf285eb 100644 --- a/cmd/wowsimcli/cmd/decode_link.go +++ b/cmd/wowsimcli/cmd/decode_link.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/spf13/cobra" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" goproto "google.golang.org/protobuf/proto" ) diff --git a/go.mod b/go.mod index 54d7d8774d..a8178e40dd 100644 --- a/go.mod +++ b/go.mod @@ -1,20 +1,31 @@ -module github.com/wowsims/cata +module github.com/wowsims/mop -go 1.23 +go 1.23.0 + +toolchain go1.23.4 require ( github.com/golang/protobuf v1.5.4 - github.com/google/go-cmp v0.5.8 - github.com/google/uuid v1.3.1 + github.com/google/go-cmp v0.6.0 + github.com/google/uuid v1.6.0 github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 github.com/spf13/cobra v1.7.0 github.com/tailscale/hujson v0.0.0-20221223112325-20486734a56a - golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f + golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 + golang.org/x/text v0.24.0 google.golang.org/protobuf v1.34.2 + modernc.org/sqlite v1.37.0 ) require ( + github.com/dustin/go-humanize v1.0.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/ncruces/go-strftime v0.1.9 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect github.com/spf13/pflag v1.0.5 // indirect - golang.org/x/sys v0.1.0 // indirect + golang.org/x/sys v0.31.0 // indirect + modernc.org/libc v1.62.1 // indirect + modernc.org/mathutil v1.7.1 // indirect + modernc.org/memory v1.9.1 // indirect ) diff --git a/go.sum b/go.sum index 32c4df6de4..52ad8238ec 100644 --- a/go.sum +++ b/go.sum @@ -1,17 +1,24 @@ github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= -github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e h1:ijClszYn+mADRFY17kjQEVQ1XRhq2/JR1M3sGqeJoxs= +github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e/go.mod h1:boTsfXsheKC2y+lKOCMpSfarhxDeIzfZG1jqGcPl3cA= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/ncruces/go-strftime v0.1.9 h1:bY0MQC28UADQmHmaF5dgpLmImcShSi2kHU9XLdhx/f4= +github.com/ncruces/go-strftime v0.1.9/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls= github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 h1:KoWmjvw+nsYOo29YJK9vDA65RGE3NrOnUtO7a+RF9HU= github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= @@ -19,18 +26,45 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/tailscale/hujson v0.0.0-20221223112325-20486734a56a h1:SJy1Pu0eH1C29XwJucQo73FrleVK6t4kYz4NVhp34Yw= github.com/tailscale/hujson v0.0.0-20221223112325-20486734a56a/go.mod h1:DFSS3NAGHthKo1gTlmEcSBiZrRJXi28rLNd/1udP1c8= -golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f h1:Al51T6tzvuh3oiwX11vex3QgJ2XTedFPGmbEVh8cdoc= -golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 h1:nDVHiLt8aIbd/VzvPWN6kSOPE7+F/fNFDSXLVYkE/Iw= +golang.org/x/exp v0.0.0-20250305212735-054e65f0b394/go.mod h1:sIifuuw/Yco/y6yb6+bDNfyeQ/MdPUy/hKEMYQV17cM= +golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU= +golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww= +golang.org/x/sync v0.13.0 h1:AauUjRAJ9OSnvULf/ARrrVywoJDy0YS2AwQ98I37610= +golang.org/x/sync v0.13.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik= +golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0= +golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU= +golang.org/x/tools v0.31.0 h1:0EedkvKDbh+qistFTd0Bcwe/YLh4vHwWEkiI0toFIBU= +golang.org/x/tools v0.31.0/go.mod h1:naFTU+Cev749tSJRXJlna0T3WxKvb1kWEx15xA4SdmQ= google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +modernc.org/cc/v4 v4.25.2 h1:T2oH7sZdGvTaie0BRNFbIYsabzCxUQg8nLqCdQ2i0ic= +modernc.org/cc/v4 v4.25.2/go.mod h1:uVtb5OGqUKpoLWhqwNQo/8LwvoiEBLvZXIQ/SmO6mL0= +modernc.org/ccgo/v4 v4.25.1 h1:TFSzPrAGmDsdnhT9X2UrcPMI3N/mJ9/X9ykKXwLhDsU= +modernc.org/ccgo/v4 v4.25.1/go.mod h1:njjuAYiPflywOOrm3B7kCB444ONP5pAVr8PIEoE0uDw= +modernc.org/fileutil v1.3.0 h1:gQ5SIzK3H9kdfai/5x41oQiKValumqNTDXMvKo62HvE= +modernc.org/fileutil v1.3.0/go.mod h1:XatxS8fZi3pS8/hKG2GH/ArUogfxjpEKs3Ku3aK4JyQ= +modernc.org/gc/v2 v2.6.5 h1:nyqdV8q46KvTpZlsw66kWqwXRHdjIlJOhG6kxiV/9xI= +modernc.org/gc/v2 v2.6.5/go.mod h1:YgIahr1ypgfe7chRuJi2gD7DBQiKSLMPgBQe9oIiito= +modernc.org/libc v1.62.1 h1:s0+fv5E3FymN8eJVmnk0llBe6rOxCu/DEU+XygRbS8s= +modernc.org/libc v1.62.1/go.mod h1:iXhATfJQLjG3NWy56a6WVU73lWOcdYVxsvwCgoPljuo= +modernc.org/mathutil v1.7.1 h1:GCZVGXdaN8gTqB1Mf/usp1Y/hSqgI2vAGGP4jZMCxOU= +modernc.org/mathutil v1.7.1/go.mod h1:4p5IwJITfppl0G4sUEDtCr4DthTaT47/N3aT6MhfgJg= +modernc.org/memory v1.9.1 h1:V/Z1solwAVmMW1yttq3nDdZPJqV1rM05Ccq6KMSZ34g= +modernc.org/memory v1.9.1/go.mod h1:/JP4VbVC+K5sU2wZi9bHoq2MAkCnrt2r98UGeSK7Mjw= +modernc.org/opt v0.1.4 h1:2kNGMRiUjrp4LcaPuLY2PzUfqM/w9N23quVwhKt5Qm8= +modernc.org/opt v0.1.4/go.mod h1:03fq9lsNfvkYSfxrfUhZCWPk1lm4cq4N+Bh//bEtgns= +modernc.org/sortutil v1.2.1 h1:+xyoGf15mM3NMlPDnFqrteY07klSFxLElE2PVuWIJ7w= +modernc.org/sortutil v1.2.1/go.mod h1:7ZI3a3REbai7gzCLcotuw9AC4VZVpYMjDzETGsSMqJE= +modernc.org/sqlite v1.37.0 h1:s1TMe7T3Q3ovQiK2Ouz4Jwh7dw4ZDqbebSDTlSJdfjI= +modernc.org/sqlite v1.37.0/go.mod h1:5YiWv+YviqGMuGw4V+PNplcyaJ5v+vQd7TQOgkACoJM= +modernc.org/strutil v1.2.1 h1:UneZBkQA+DX2Rp35KcM69cSsNES9ly8mQWD71HKlOA0= +modernc.org/strutil v1.2.1/go.mod h1:EHkiggD70koQxjVdSBM3JKM7k6L0FbGE5eymy9i3B9A= +modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= diff --git a/makefile b/makefile index 9abb8cbf64..de87fa3a83 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -OUT_DIR := dist/cata +OUT_DIR := dist/mop TS_CORE_SRC := $(shell find ui/core -name '*.ts' -type f) ASSETS_INPUT := $(shell find assets/ -type f) ASSETS := $(patsubst assets/%,$(OUT_DIR)/assets/%,$(ASSETS_INPUT)) @@ -19,6 +19,9 @@ PAGE_INDECES := ui/death_knight/blood/index.html \ ui/mage/arcane/index.html \ ui/mage/fire/index.html \ ui/mage/frost/index.html \ + ui/monk/brewmaster/index.html \ + ui/monk/mistweaver/index.html \ + ui/monk/windwalker/index.html \ ui/paladin/holy/index.html \ ui/paladin/protection/index.html \ ui/paladin/retribution/index.html \ @@ -71,11 +74,11 @@ ui/core/index.ts: $(TS_CORE_SRC) clean: rm -rf ui/core/proto/*.ts \ sim/core/proto/*.pb.go \ - wowsimcata \ - wowsimcata-windows.exe \ - wowsimcata-amd64-darwin \ - wowsimcata-arm64-darwin \ - wowsimcata-amd64-linux \ + wowsimmop \ + wowsimmop-windows.exe \ + wowsimmop-amd64-darwin \ + wowsimmop-arm64-darwin \ + wowsimmop-amd64-linux \ dist \ binary_dist \ ui/core/index.ts \ @@ -147,31 +150,31 @@ $(OUT_DIR)/assets/%: assets/% cp $< $@ binary_dist/dist.go: sim/web/dist.go.tmpl - mkdir -p binary_dist/cata - touch binary_dist/cata/embedded + mkdir -p binary_dist/mop + touch binary_dist/mop/embedded cp sim/web/dist.go.tmpl binary_dist/dist.go binary_dist: $(OUT_DIR)/.dirstamp rm -rf binary_dist mkdir -p binary_dist cp -r $(OUT_DIR) binary_dist/ - rm binary_dist/cata/lib.wasm - rm -rf binary_dist/cata/assets/db_inputs - rm binary_dist/cata/assets/database/db.bin - rm binary_dist/cata/assets/database/leftover_db.bin + rm binary_dist/mop/lib.wasm + rm -rf binary_dist/mop/assets/db_inputs + rm binary_dist/mop/assets/database/db.bin + rm binary_dist/mop/assets/database/leftover_db.bin # Rebuild the protobuf generated code. .PHONY: proto proto: sim/core/proto/api.pb.go ui/core/proto/api.ts # Builds the web server with the compiled client. -.PHONY: wowsimcata -wowsimcata: binary_dist devserver +.PHONY: wowsimmop +wowsimmop: binary_dist devserver .PHONY: devserver devserver: sim/core/proto/api.pb.go sim/web/main.go binary_dist/dist.go @echo "Starting server compile now..." - @if go build -o wowsimcata ./sim/web/main.go; then \ + @if go build -o wowsimmop ./sim/web/main.go ; then \ printf "\033[1;32mBuild Completed Successfully\033[0m\n"; \ else \ printf "\033[1;31mBUILD FAILED\033[0m\n"; \ @@ -190,30 +193,30 @@ endif rundevserver: air devserver ifeq ($(WATCH), 1) npx tsx vite.build-workers.ts & npx vite build -m development --watch & - ulimit -n 10240 && air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false" -build.bin "./wowsimcata" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" + ulimit -n 10240 && air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false" -build.bin "./wowsimmop" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" else - ./wowsimcata --usefs=true --launch=false --host=":3333" + ./wowsimmop --usefs=true --launch=false --host=":3333" endif -wowsimcata-windows.exe: wowsimcata +wowsimmop-windows.exe: wowsimmop # go build only considers syso files when invoked without specifying .go files: https://github.com/golang/go/issues/16090 cp ./assets/favicon_io/icon-windows_amd64.syso ./sim/web/icon-windows_amd64.syso - cd ./sim/web/ && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimcata-windows.exe -ldflags="-X 'main.Version=$(VERSION)' -s -w" + cd ./sim/web/ && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimmop-windows.exe -ldflags="-X 'main.Version=$(VERSION)' -s -w" cd ./cmd/wowsimcli && GOOS=windows GOARCH=amd64 GOAMD64=v2 go build -o wowsimcli-windows.exe --tags=with_db -ldflags="-X 'main.Version=$(VERSION)' -s -w" rm ./sim/web/icon-windows_amd64.syso - mv ./sim/web/wowsimcata-windows.exe ./wowsimcata-windows.exe + mv ./sim/web/wowsimmop-windows.exe ./wowsimmop-windows.exe mv ./cmd/wowsimcli/wowsimcli-windows.exe ./wowsimcli-windows.exe -release: wowsimcata wowsimcata-windows.exe - GOOS=darwin GOARCH=amd64 GOAMD64=v2 go build -o wowsimcata-amd64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go - GOOS=darwin GOARCH=arm64 go build -o wowsimcata-arm64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go - GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimcata-amd64-linux -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go +release: wowsimmop wowsimmop-windows.exe + GOOS=darwin GOARCH=amd64 GOAMD64=v2 go build -o wowsimmop-amd64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go + GOOS=darwin GOARCH=arm64 go build -o wowsimmop-arm64-darwin -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go + GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimmop-amd64-linux -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./sim/web/main.go GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -o wowsimcli-amd64-linux --tags=with_db -ldflags="-X 'main.Version=$(VERSION)' -s -w" ./cmd/wowsimcli/cli_main.go # Now compress into a zip because the files are getting large. - zip wowsimcata-windows.exe.zip wowsimcata-windows.exe - zip wowsimcata-amd64-darwin.zip wowsimcata-amd64-darwin - zip wowsimcata-arm64-darwin.zip wowsimcata-arm64-darwin - zip wowsimcata-amd64-linux.zip wowsimcata-amd64-linux + zip wowsimmop-windows.exe.zip wowsimmop-windows.exe + zip wowsimmop-amd64-darwin.zip wowsimmop-amd64-darwin + zip wowsimmop-arm64-darwin.zip wowsimmop-arm64-darwin + zip wowsimmop-amd64-linux.zip wowsimmop-amd64-linux zip wowsimcli-amd64-linux.zip wowsimcli-amd64-linux zip wowsimcli-windows.exe.zip wowsimcli-windows.exe @@ -223,18 +226,36 @@ sim/core/proto/api.pb.go: proto/*.proto # Only useful for building the lib on a host platform that matches the target platform .PHONY: locallib locallib: sim/core/proto/api.pb.go - go build -buildmode=c-shared -o wowsimcata.so --tags=with_db ./sim/lib/library.go + go build -buildmode=c-shared -o wowsimmop.so --tags=with_db ./sim/lib/library.go .PHONY: nixlib nixlib: sim/core/proto/api.pb.go - GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -buildmode=c-shared -o wowsimcata-linux.so --tags=with_db ./sim/lib/library.go + GOOS=linux GOARCH=amd64 GOAMD64=v2 go build -buildmode=c-shared -o wowsimmop-linux.so --tags=with_db ./sim/lib/library.go .PHONY: winlib winlib: sim/core/proto/api.pb.go - GOOS=windows GOARCH=amd64 GOAMD64=v2 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -buildmode=c-shared -o wowsimcata-windows.dll --tags=with_db ./sim/lib/library.go + GOOS=windows GOARCH=amd64 GOAMD64=v2 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -buildmode=c-shared -o wowsimmop-windows.dll --tags=with_db ./sim/lib/library.go -.PHONY: items -items: sim/core/items/all_items.go sim/core/proto/api.pb.go +.PHONY: simdb +simdb: sim/core/items/all_items.go sim/core/proto/api.pb.go + +CLIENTDATA_SETTINGS := $(shell realpath ./tools/database/generator-settings.json) +CLIENTDATAPTR_SETTINGS := $(shell realpath ./tools/database/ptr-generator-settings.json) +CLIENTDATA_OUTPUT := $(shell realpath ./tools/database/wowsims.db) + +.PHONY: db +db: + @echo "Running DB2ToSqlite for clientdata" + cd tools/DB2ToSqlite && dotnet run -- -s $(CLIENTDATA_SETTINGS) --output $(CLIENTDATA_OUTPUT) + @echo "Running DBC generation tool" + go run tools/database/gen_db/*.go -outDir=./assets -gen=db + +.PHONY: ptrdb +ptrdb: + @echo "Running DB2ToSqlite for clientdata" + cd tools/DB2ToSqlite && dotnet run -- -s $(CLIENTDATAPTR_SETTINGS) --output $(CLIENTDATA_OUTPUT) + @echo "Running DBC generation tool" + go run tools/database/gen_db/*.go -outDir=./assets -gen=db sim/core/items/all_items.go: $(call rwildcard,tools/database,*.go) $(call rwildcard,sim/core/proto,*.go) go run tools/database/gen_db/*.go -outDir=./assets -gen=db @@ -272,7 +293,7 @@ host: air $(OUT_DIR)/.dirstamp node_modules ifeq ($(WATCH), 1) ulimit -n 10240 && air -tmp_dir "/tmp" -build.include_ext "go,ts,js,html" -build.bin "npx" -build.args_bin "http-server $(OUT_DIR)/.." -build.cmd "make" -build.exclude_dir "dist,node_modules,tools" else - # Intentionally serve one level up, so the local site has 'cata' as the first + # Intentionally serve one level up, so the local site has 'mop' as the first # directory just like github pages. npx http-server $(OUT_DIR)/.. endif @@ -280,9 +301,9 @@ endif devmode: air devserver ifeq ($(WATCH), 1) npx tsx vite.build-workers.ts & npx vite serve --host & - air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false --wasm=false" -build.bin "./wowsimcata" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" + air -tmp_dir "/tmp" -build.include_ext "go,proto" -build.args_bin "--usefs=true --launch=false --wasm=false" -build.bin "./wowsimmop" -build.cmd "make devserver" -build.exclude_dir "assets,dist,node_modules,ui,tools" else - ./wowsimcata --usefs=true --launch=false --host=":3333" + ./wowsimmop --usefs=true --launch=false --host=":3333" endif webworkers: diff --git a/package-lock.json b/package-lock.json index 08f006bea0..a45cefe70c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "cata", + "name": "mop", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "cata", + "name": "mop", "version": "0.1.0", "dependencies": { "@popperjs/core": "^2.11.6", diff --git a/package.json b/package.json index b6a8eb99b6..0a428c5b61 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "cata", + "name": "mop", "version": "0.1.0", "private": true, "engines": { diff --git a/proto/api.proto b/proto/api.proto index 57ff4828fa..9735bfd9e9 100644 --- a/proto/api.proto +++ b/proto/api.proto @@ -5,10 +5,13 @@ option go_package = "./proto"; import "common.proto"; import "apl.proto"; +import "db.proto"; +import "spell.proto"; import "death_knight.proto"; import "druid.proto"; import "hunter.proto"; import "mage.proto"; +import "monk.proto"; import "paladin.proto"; import "priest.proto"; import "rogue.proto"; @@ -16,8 +19,14 @@ import "shaman.proto"; import "warlock.proto"; import "warrior.proto"; -// NextIndex: 54 +// NextIndex: 58 message Player { + // Proto version at the time Player were saved. + // A "breaking change" here is defined as anything that will break saved + // browser data or old sim links; the version need not be incremented if + // you simply append a new rarely-used PseudoStat to the end of the + // array, for example. + int32 api_version = 54; // Label used for logging. string name = 51; @@ -25,7 +34,9 @@ message Player { Class class = 2; EquipmentSpec equipment = 3; - Consumes consumes = 4; + + ConsumesSpec consumables = 4; + UnitStats bonus_stats = 5; bool enable_item_swap = 6; @@ -51,6 +62,10 @@ message Player { FireMage fire_mage = 19; FrostMage frost_mage = 20; + BrewmasterMonk brewmaster_monk = 55; + MistweaverMonk mistweaver_monk = 56; + WindwalkerMonk windwalker_monk = 57; + HolyPaladin holy_paladin = 21; ProtectionPaladin protection_paladin = 22; RetributionPaladin retribution_paladin = 23; @@ -76,7 +91,7 @@ message Player { ProtectionWarrior protection_warrior = 38; } - // Talents in wowhead format, e.g. '01102123133-12312312-' + // Talents in wowhead format, e.g. '000000' string talents_string = 39; Glyphs glyphs = 40; Profession profession1 = 41; @@ -252,24 +267,6 @@ message AuraMetrics { AggregatorData aggregator_data = 5; } -enum ResourceType { - ResourceTypeNone = 0; - ResourceTypeMana = 1; - ResourceTypeEnergy = 2; - ResourceTypeRage = 3; - ResourceTypeComboPoints = 4; - ResourceTypeFocus = 5; - ResourceTypeHealth = 6; - ResourceTypeRunicPower = 7; - ResourceTypeBloodRune = 8; - ResourceTypeFrostRune = 9; - ResourceTypeUnholyRune = 10; - ResourceTypeDeathRune = 11; - ResourceTypeSolarEnergy = 12; - ResourceTypeLunarEnergy = 13; - ResourceTypeHolyPower = 14; -} - message ResourceMetrics { ActionID id = 1; @@ -438,8 +435,7 @@ message APLValidation { string validation = 2; } message APLActionStats { - repeated string warnings = 1 [deprecated=true]; - repeated APLValidation validations = 2; + repeated APLValidation validations = 1; } message UUIDValidations { UUID uuid = 1; @@ -639,3 +635,4 @@ message BulkSimCombosResult { int32 num_iterations = 2; string error_result = 3; // only set if sim failed. } + diff --git a/proto/apl.proto b/proto/apl.proto index 5b138a7bb4..760fe3e4ac 100644 --- a/proto/apl.proto +++ b/proto/apl.proto @@ -85,7 +85,7 @@ message APLAction { } } -// NextIndex: 94 +// NextIndex: 98 message APLValue { UUID uuid = 87; @@ -125,6 +125,7 @@ message APLValue { APLValueCurrentSolarEnergy current_solar_energy = 68; APLValueCurrentLunarEnergy current_lunar_energy = 69; APLValueCurrentHolyPower current_holy_power = 75; + APLValueMaxComboPoints max_combo_points = 94; APLValueMaxEnergy max_energy = 88; APLValueMaxFocus max_focus = 89; APLValueMaxRunicPower max_runic_power = 86; @@ -208,6 +209,9 @@ message APLValue { APLValueMageCurrentCombustionDotEstimate mage_current_combustion_dot_estimate = 77; APLValueShamanCanSnapshotStrongerFireElemental shaman_can_snapshot_stronger_fire_elemental = 82; APLValueShamanFireElementalDuration shaman_fire_elemental_duration = 83; + APLValueMonkCurrentChi monk_current_chi = 95; + APLValueMonkMaxChi monk_max_chi = 96; + APLValueMonkNextChiBrewRecharge monk_next_chi_brew_recharge = 97; } } @@ -467,6 +471,7 @@ message APLValueCurrentRunicPower {} message APLValueCurrentSolarEnergy {} message APLValueCurrentLunarEnergy {} message APLValueCurrentHolyPower {} +message APLValueMaxComboPoints {} message APLValueMaxEnergy {} message APLValueMaxFocus {} message APLValueMaxRunicPower {} @@ -614,36 +619,31 @@ message APLValueAllTrinketStatProcsActive { int32 stat_type1 = 1; int32 stat_type2 = 2; int32 stat_type3 = 3; - bool exclude_stacking_procs = 4 [deprecated=true]; - double min_icd_seconds = 5; + double min_icd_seconds = 4; } message APLValueAnyTrinketStatProcsActive { int32 stat_type1 = 1; int32 stat_type2 = 2; int32 stat_type3 = 3; - bool exclude_stacking_procs = 4 [deprecated=true]; - double min_icd_seconds = 5; + double min_icd_seconds = 4; } message APLValueTrinketProcsMinRemainingTime { int32 stat_type1 = 1; int32 stat_type2 = 2; int32 stat_type3 = 3; - bool exclude_stacking_procs = 4 [deprecated=true]; - double min_icd_seconds = 5; + double min_icd_seconds = 4; } message APLValueTrinketProcsMaxRemainingICD { int32 stat_type1 = 1; int32 stat_type2 = 2; int32 stat_type3 = 3; - bool exclude_stacking_procs = 4 [deprecated=true]; - double min_icd_seconds = 5; + double min_icd_seconds = 4; } message APLValueNumEquippedStatProcTrinkets { int32 stat_type1 = 1; int32 stat_type2 = 2; int32 stat_type3 = 3; - bool exclude_stacking_procs = 4 [deprecated=true]; - double min_icd_seconds = 5; + double min_icd_seconds = 4; } message APLValueNumStatBuffCooldowns { int32 stat_type1 = 1; @@ -692,3 +692,7 @@ message APLValueShamanCanSnapshotStrongerFireElemental { } message APLValueShamanFireElementalDuration { } + +message APLValueMonkCurrentChi {} +message APLValueMonkMaxChi {} +message APLValueMonkNextChiBrewRecharge {} \ No newline at end of file diff --git a/proto/common.proto b/proto/common.proto index 8f7ce05838..261e503f74 100644 --- a/proto/common.proto +++ b/proto/common.proto @@ -25,12 +25,19 @@ message ProtoVersion { // protos need to define an api_version field so that the UI code knows // to up-convert these protos to the new format whenever api_version is // missing (0) or lower than current_version_number. - option (current_version_number) = 3; + option (current_version_number) = 1; // The actual field value is only used within unit tests. int32 saved_version_number = 1; } - +message ScalingItemProperties { + int32 rand_prop_points = 1; + double weapon_damage_min = 2; + double weapon_damage_max = 3; + map stats = 4; // for compactness + bool is_base = 5; // Is this the base itemlevel for the item + int32 upgrade_step = 6; // If upgrade which upgrade step does this represent, null if not +} enum Spec { SpecUnknown = 0; @@ -74,6 +81,10 @@ enum Spec { SpecArmsWarrior = 28; SpecFuryWarrior = 29; SpecProtectionWarrior = 30; + + SpecBrewmasterMonk = 32; + SpecMistweaverMonk = 33; + SpecWindwalkerMonk = 34; } enum Race { @@ -90,6 +101,8 @@ enum Race { RaceUndead = 10; RaceWorgen = 11; RaceGoblin = 12; + RaceAlliancePandaren = 13; + RaceHordePandaren = 14; } enum Faction { @@ -110,6 +123,7 @@ enum Class { ClassWarlock = 8; ClassWarrior = 9; ClassDeathKnight = 10; + ClassMonk = 11; } enum Profession { @@ -410,12 +424,14 @@ enum TristateEffect { } enum Explosive { + option deprecated = true; ExplosiveUnknown = 0; ExplosiveSaroniteBomb = 1; ExplosiveCobaltFragBomb = 2; } enum TinkerHands { + option deprecated = true; TinkerHandsNone = 0; TinkerHandsSynapseSprings = 1; TinkerHandsTazikShocker = 2; @@ -425,6 +441,7 @@ enum TinkerHands { } enum Potions { + option deprecated = true; UnknownPotion = 0; GolembloodPotion = 1; //58146 PotionOfTheTolvir = 2; //58145 @@ -443,6 +460,7 @@ enum Potions { } enum Conjured { + option deprecated = true; ConjuredUnknown = 0; ConjuredDarkRune = 1; ConjuredHealthstone = 5; @@ -450,6 +468,7 @@ enum Conjured { } enum Flask { + option deprecated = true; FlaskUnknown = 0; FlaskOfTitanicStrength = 1; FlaskOfTheWinds = 2; @@ -467,6 +486,7 @@ enum Flask { } enum BattleElixir { + option deprecated = true; BattleElixirUnknown = 0; ElixirOfTheMaster = 1; ElixirOfMightySpeed = 2; @@ -492,6 +512,7 @@ enum BattleElixir { } enum GuardianElixir { + option deprecated = true; GuardianElixirUnknown = 0; ElixirOfDeepEarth = 1; PrismaticElixir = 2; @@ -506,6 +527,7 @@ enum GuardianElixir { } enum Food { + option deprecated = true; FoodUnknown = 0; FoodFishFeast = 1; FoodGreatFeast = 2; @@ -548,12 +570,13 @@ enum Food { // Buffs that affect the entire raid. // TODO: Reindex -// next index: 46 +// next index: 48 message RaidBuffs { // +5% Base Stats and Spell Resistances bool mark_of_the_wild = 1; bool blessing_of_kings = 2; bool drums_of_the_burning_wild = 3; + bool legacy_of_the_emperor = 47; // +Spell Resistances bool elemental_resistance_totem = 4; @@ -611,6 +634,7 @@ message RaidBuffs { bool rampage = 36; bool terrifying_roar = 37; bool furious_howl = 45; + bool legacy_of_the_white_tiger = 46; // Major Haste bool bloodlust = 38; @@ -661,11 +685,6 @@ message IndividualBuffs { int32 shattering_throw_count = 103; bool focus_magic = 22; bool dark_intent = 27; - - // Deprecated Fields: leave these in the message to avoid breaking user - // data in live sims. Next expansion launches are a convenient time to - // clear out these fields. - int32 tricks_of_the_trade_count = 19 [deprecated=true]; } message Debuffs { @@ -705,6 +724,7 @@ message Debuffs { bool vindication = 23; bool scarlet_fever = 24; bool demoralizing_screech = 25; + bool keg_smask = 32; // -attack speed bool thunder_clap = 26; @@ -715,26 +735,40 @@ message Debuffs { bool earth_shock = 31; } +// Deprecate this entirely with time message Consumes { - Flask flask = 1; - BattleElixir battle_elixir = 2; - GuardianElixir guardian_elixir = 3; + option deprecated = true; + Flask flask = 1 [deprecated = true]; + BattleElixir battle_elixir = 2 [deprecated = true]; + GuardianElixir guardian_elixir = 3 [deprecated = true]; Food food = 6; - reserved 7; // deprecated petfood - int32 pet_scroll_of_agility = 8; - int32 pet_scroll_of_strength = 9; + int32 pet_scroll_of_agility = 7; + int32 pet_scroll_of_strength = 8; + + Potions default_potion = 9; + Potions prepop_potion = 10; + Conjured default_conjured = 11; + + bool explosive_big_daddy = 12; + bool highpowered_bolt_gun = 13; + + TinkerHands tinker_hands = 14; +} - Potions default_potion = 10; - Potions prepop_potion = 11; - Conjured default_conjured = 12; - bool explosive_big_daddy = 15; - bool highpowered_bolt_gun = 16; - reserved 17; // deprecated old explosive +message ConsumesSpec { + int32 prepot_id = 1; + int32 pot_id = 2; + int32 flask_id = 3; + int32 battle_elixir_id = 4; + int32 guardian_elixir_id = 5; + int32 food_id = 6; + int32 explosive_id = 7; + int32 conjured_id = 9; - TinkerHands tinker_hands = 18; + int32 tinker_id = 10; } enum MobType { @@ -854,43 +888,27 @@ message ItemSpec { int32 enchant = 3; repeated int32 gems = 4; int32 reforging = 5; //reforging id + int32 scaled_ilvl = 7; // If this is set it means we select something other than the base item in ScalingOptions } + message EquipmentSpec { repeated ItemSpec items = 1; } -message SimDatabase { - repeated SimItem items = 1; - repeated ItemRandomSuffix random_suffixes = 5; - repeated SimEnchant enchants = 2; - repeated SimGem gems = 3; - repeated ReforgeStat reforge_stats = 6; +enum ConsumableType { + ConsumableTypeUnknown = 0; + ConsumableTypePotion = 1; + ConsumableTypeFlask = 2; + ConsumableTypeFood = 3; + ConsumableTypeScroll = 4; + ConsumableTypeExplosive = 5; + ConsumableTypeBattleElixir = 6; + ConsumableTypeGuardianElixir = 7; } -// Contains only the Item info needed by the sim. -message SimItem { - int32 id = 1; - string name = 2; - - ItemType type = 3; - ArmorType armor_type = 4; - WeaponType weapon_type = 5; - HandType hand_type = 6; - RangedWeaponType ranged_weapon_type = 7; - repeated double stats = 8; - repeated GemColor gem_sockets = 9; - repeated double socketBonus = 10; - double weapon_damage_min = 11; - double weapon_damage_max = 12; - double weapon_speed = 13; - - string set_name = 14; - int32 rand_prop_points = 15; - int32 set_id = 16; -} // Extra enum for describing which items are eligible for an enchant, when // ItemType alone is not enough. @@ -979,15 +997,12 @@ message ActionID { } message Glyphs { - int32 prime1 = 1; - int32 prime2 = 2; - int32 prime3 = 3; - int32 major1 = 4; - int32 major2 = 5; - int32 major3 = 6; - int32 minor1 = 7; - int32 minor2 = 8; - int32 minor3 = 9; + int32 major1 = 1; + int32 major2 = 2; + int32 major3 = 3; + int32 minor1 = 4; + int32 minor2 = 5; + int32 minor3 = 6; } // Custom options for a particular cooldown. @@ -1038,11 +1053,8 @@ message CustomSpell { } message ItemSwap { - ItemSpec mh_item = 1 [deprecated=true]; - ItemSpec oh_item = 2 [deprecated=true]; - ItemSpec ranged_item = 3 [deprecated=true]; - repeated ItemSpec items = 4; - UnitStats prepull_bonus_stats = 5; + repeated ItemSpec items = 1; + UnitStats prepull_bonus_stats = 2; } message Duration { @@ -1068,3 +1080,4 @@ enum LogLevel { Undefined = -1; } + diff --git a/proto/db.proto b/proto/db.proto new file mode 100644 index 0000000000..4129adba16 --- /dev/null +++ b/proto/db.proto @@ -0,0 +1,52 @@ +syntax = "proto3"; +package proto; + +option go_package = "./proto"; +import "common.proto"; +import "spell.proto"; + +message SimDatabase { + repeated SimItem items = 1; + repeated ItemRandomSuffix random_suffixes = 5; + repeated SimEnchant enchants = 2; + repeated SimGem gems = 3; + repeated ReforgeStat reforge_stats = 6; + + repeated Consumable consumables = 7; + repeated SpellEffect spell_effects = 8; + +} + +// Contains only the Item info needed by the sim. +message SimItem { + int32 id = 1; + string name = 2; + + ItemType type = 3; + ArmorType armor_type = 4; + WeaponType weapon_type = 5; + HandType hand_type = 6; + RangedWeaponType ranged_weapon_type = 7; + + repeated GemColor gem_sockets = 8; + repeated double socketBonus = 9; + + double weapon_speed = 10; + + string set_name = 11; + int32 set_id = 12; + + map scaling_options = 13; // keys are the other ilvl variants that this item could potentially have +} + +message Consumable { + int32 id = 1; + ConsumableType type = 2; + repeated double stats = 3; + bool buffs_main_stat = 4; + string name = 5; + string icon = 6; + //In seconds + int32 buff_duration = 7; + repeated int32 effect_ids = 8; +} diff --git a/proto/death_knight.proto b/proto/death_knight.proto index 24eff60e0c..29f645489d 100644 --- a/proto/death_knight.proto +++ b/proto/death_knight.proto @@ -5,114 +5,75 @@ option go_package = "./proto"; import "common.proto"; +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// DeathKnightTalents message. message DeathKnightTalents { - // Blood - int32 butchery = 1; - int32 blade_barrier = 2; - int32 bladed_armor = 3; - int32 improved_blood_tap = 4; - int32 scent_of_blood = 5; - int32 scarlet_fever = 6; - int32 hand_of_doom = 7; - int32 blood_caked_blade = 8; - bool bone_shield = 9; - int32 toughness = 10; - int32 abominations_might = 11; - int32 sanguine_fortitude = 12; - int32 blood_parasite = 13; - int32 improved_blood_presence = 14; - int32 will_of_the_necropolis = 15; - bool rune_tap = 16; - bool vampiric_blood = 17; - int32 improved_death_strike = 18; - int32 crimson_scourge = 19; - bool dancing_rune_weapon = 20; - - // Frost - int32 runic_power_mastery = 21; - int32 icy_reach = 22; - int32 nerves_of_cold_steel = 23; - int32 annihilation = 24; - bool lichborne = 25; - int32 on_a_pale_horse = 26; - int32 endless_winter = 27; - int32 merciless_combat = 28; - int32 chill_of_the_grave = 29; - int32 killing_machine = 30; - int32 rime = 31; - bool pillar_of_frost = 32; - bool improved_icy_talons = 33; - int32 brittle_bones = 34; - int32 chilblains = 35; - bool hungering_cold = 36; - int32 improved_frost_presence = 37; - int32 threat_of_thassarian = 38; - int32 might_of_the_frozen_wastes = 39; - bool howling_blast = 40; - - // Unholy - int32 unholy_command = 41; - int32 virulence = 42; - int32 epidemic = 43; - int32 desecration = 44; - int32 resilient_infection = 45; - int32 morbidity = 46; - int32 runic_corruption = 47; - bool unholy_frenzy = 48; - int32 contagion = 49; - int32 shadow_infusion = 50; - int32 deaths_advance = 51; - int32 magic_suppression = 52; - int32 rage_of_rivendare = 53; - bool unholy_blight = 54; - bool anti_magic_zone = 55; - int32 improved_unholy_presence = 56; - bool dark_transformation = 57; - int32 ebon_plaguebringer = 58; - int32 sudden_doom = 59; - bool summon_gargoyle = 60; + bool roiling_blood = 1; + bool plague_leech = 2; + bool unholy_blight = 3; + bool lichborne = 4; + bool anti_magic_zone = 5; + bool purgatory = 6; + bool deaths_advance = 7; + bool chilblains = 8; + bool asphyxiate = 9; + bool death_pact = 10; + bool death_siphon = 11; + bool conversion = 12; + bool blood_tap = 13; + bool runic_empowerment = 14; + bool runic_corruption = 15; + bool gorefiends_grasp = 16; + bool remorseless_winter = 17; + bool desecrated_ground = 18; } -enum DeathKnightPrimeGlyph { - DeathKnightPrimeGlyphNone = 0; - GlyphOfDeathAndDecay = 43542; - GlyphOfDeathCoil = 45804; - GlyphOfDeathStrike = 43827; - GlyphOfFrostStrike = 43543; - GlyphOfHeartStrike = 43534; - GlyphOfHowlingBlast = 45806; - GlyphOfIcyTouch = 43546; - GlyphOfObliterate = 43547; - GlyphOfRaiseDead = 43549; - GlyphOfRuneStrike = 43550; - GlyphOfScourgeStrike = 43551; -} enum DeathKnightMajorGlyph { - DeathKnightMajorGlyphNone = 0; - GlyphOfAntiMagicShell = 43533; - GlyphOfBloodBoil = 43826; - GlyphOfBoneShield = 43536; - GlyphOfChainsOfIce = 43537; - GlyphOfDancingRuneWeapon = 45799; - GlyphOfDarkSuccor = 68793; - GlyphOfDeathGrip = 43541; - GlyphOfHungeringCold = 45800; - GlyphOfPestilence = 43548; - GlyphOfPillarOfFrost = 43553; - GlyphOfRuneTap = 43825; - GlyphOfStrangulate = 43552; - GlyphOfVampiricBlood = 43554; + DeathKnightMajorGlyphNone = 0; + GlyphOfAntiMagicShell = 43533; + GlyphOfUnholyFrenzy = 43534; + GlyphOfIceboundFortitude = 43536; + GlyphOfChainsOfIce = 43537; + GlyphOfDeathGrip = 43541; + GlyphOfDeathAndDecay = 43542; + GlyphOfShiftingPresences = 43543; + GlyphOfIcyTouch = 43546; + GlyphOfEnduringInfection = 43547; + GlyphOfPestilence = 43548; + GlyphOfMindFreeze = 43549; + GlyphOfStrangulate = 43552; + GlyphOfPillarOfFrost = 43553; + GlyphOfVampiricBlood = 43554; + GlyphOfUnholyCommand = 43825; + GlyphOfOutbreak = 43826; + GlyphOfDancingRuneWeapon = 45799; + GlyphOfDarkSimulacrum = 45800; + GlyphOfDeathCoil = 45804; + GlyphOfDarkSuccor = 68793; + GlyphOfSwiftDeath = 104046; + GlyphOfLoudHorn = 104047; + GlyphOfRegenerativeMagic = 104048; + GlyphOfFesteringBlood = 104049; } + enum DeathKnightMinorGlyph { - DeathKnightMinorGlyphNone = 0; - GlyphOfBloodTap = 43535; - GlyphOfDeathGate = 43673; - GlyphOfDeathSEmbrace = 43539; - GlyphOfHornOfWinter = 43544; - GlyphOfPathOfFrost = 43671; - GlyphOfResilientGrip = 43672; + DeathKnightMinorGlyphNone = 0; + GlyphOfTheGeist = 43535; + GlyphOfDeathsEmbrace = 43539; + GlyphOfHornOfWinter = 43544; + GlyphOfArmyOfTheDead = 43550; + GlyphOfFoulMenagerie = 43551; + GlyphOfPathOfFrost = 43671; + GlyphOfResilientGrip = 43672; + GlyphOfDeathGate = 43673; + GlyphOfCorpseExplosion = 43827; + GlyphOfTranquilGrip = 45806; + GlyphOfTheSkeleton = 104099; + GlyphOfTheLongWinter = 104101; } +// END GENERATED message DeathKnightOptions { double starting_runic_power = 1; double pet_uptime = 2; diff --git a/proto/druid.proto b/proto/druid.proto index 9941f16f02..9ecaa6b72f 100644 --- a/proto/druid.proto +++ b/proto/druid.proto @@ -4,130 +4,86 @@ package proto; option go_package = "./proto"; import "common.proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// DruidTalents message. message DruidTalents { - // Balance - int32 natures_grace = 1; - int32 starlight_wrath = 2; - int32 natures_majesty = 3; - int32 genesis = 4; - int32 moonglow = 5; - int32 balance_of_power = 6; - int32 euphoria = 7; - bool moonkin_form = 8; - bool typhoon = 9; - int32 shooting_stars = 10; - int32 owlkin_frenzy = 11; - int32 gale_winds = 12; - bool solar_beam = 13; - int32 dreamstate = 14; - bool force_of_nature = 15; - bool sunfire = 16; - bool earth_and_moon = 17; - int32 fungal_growth = 18; - int32 lunar_shower = 19; - bool starfall = 20; - - // Feral Combat - int32 feral_swiftness = 21; - int32 furor = 22; - int32 predatory_strikes = 23; - int32 infected_wounds = 24; - int32 fury_swipes = 25; - int32 primal_fury = 26; - int32 feral_aggression = 27; - int32 king_of_the_jungle = 28; - bool feral_charge = 29; - int32 stampede = 30; - int32 thick_hide = 31; - bool leader_of_the_pack = 32; - int32 brutal_impact = 33; - int32 nurturing_instinct = 34; - int32 primal_madness = 35; - bool survival_instincts = 36; - int32 endless_carnage = 37; - int32 natural_reaction = 38; - int32 blood_in_the_water = 39; - int32 rend_and_tear = 40; - bool pulverize = 41; - bool berserk = 42; - - // Restoration - int32 blessing_of_the_grove = 43; - int32 natural_shapeshifter = 44; - int32 naturalist = 45; - int32 heart_of_the_wild = 46; - int32 perseverance = 47; - bool master_shapeshifter = 48; - int32 improved_rejuvenation = 49; - int32 living_seed = 50; - int32 revitalize = 51; - bool natures_swiftness = 52; - int32 fury_of_stormrage = 53; - int32 natures_bounty = 54; - int32 empowered_touch = 55; - int32 malfurions_gift = 56; - int32 efflorescence = 57; - bool wild_growth = 58; - bool natures_cure = 59; - int32 natures_ward = 60; - int32 gift_of_the_earthmother = 61; - bool swift_rejuvenation = 62; - bool tree_of_life = 63; + bool feline_swiftness = 1; + bool displacer_beast = 2; + bool wild_charge = 3; + bool yseras_gift = 4; + bool renewal = 5; + bool cenarion_ward = 6; + bool faerie_swarm = 7; + bool mass_entanglement = 8; + bool typhoon = 9; + bool soul_of_the_forest = 10; + bool incarnation = 11; + bool force_of_nature = 12; + bool disorienting_roar = 13; + bool ursols_vortex = 14; + bool mighty_bash = 15; + bool heart_of_the_wild = 16; + bool dream_of_cenarius = 17; + bool natures_vigil = 18; } -enum DruidPrimeGlyph { - DruidPrimeGlyphNone = 0; - GlyphOfBerserk = 45601; - GlyphOfBloodletting = 40901; - GlyphOfInsectSwarm = 40919; - GlyphOfLacerate = 67484; - GlyphOfLifebloom = 40915; - GlyphOfMangle = 40900; - GlyphOfMoonfire = 40923; - GlyphOfRegrowth = 40912; - GlyphOfRejuvenation = 40913; - GlyphOfRip = 40902; - GlyphOfSavageRoar = 45604; - GlyphOfStarfire = 40916; - GlyphOfStarsurge = 45603; - GlyphOfSwiftmend = 40906; - GlyphOfTigersFury = 67487; - GlyphOfWrath = 40922; -} enum DruidMajorGlyph { - DruidMajorGlyphNone = 0; - GlyphOfBarkskin = 45623; - GlyphOfEntanglingRoots = 40924; - GlyphOfFaerieFire = 67485; - GlyphOfFeralCharge = 67486; - GlyphOfFerociousBite = 48720; - GlyphOfFocus = 44928; - GlyphOfFrenziedRegeneration = 40896; - GlyphOfHealingTouch = 40914; - GlyphOfHurricane = 40920; - GlyphOfInnervate = 40908; - GlyphOfMaul = 40897; - GlyphOfMonsoon = 45622; - GlyphOfOmenOfClarity = 206580; - GlyphOfPounce = 40903; - GlyphOfRebirth = 40909; - GlyphOfSolarBeam = 40899; - GlyphOfStarfall = 40921; - GlyphOfThorns = 43332; - GlyphOfWildGrowth = 45602; + DruidMajorGlyphNone = 0; + GlyphOfFrenziedRegeneration = 40896; + GlyphOfMaul = 40897; + GlyphOfOmens = 40899; + GlyphOfShred = 40901; + GlyphOfProwl = 40902; + GlyphOfPounce = 40903; + GlyphOfStampede = 40906; + GlyphOfInnervate = 40908; + GlyphOfRebirth = 40909; + GlyphOfRegrowth = 40912; + GlyphOfRejuvenation = 40913; + GlyphOfHealingTouch = 40914; + GlyphOfEfflorescence = 40915; + GlyphOfGuidedStars = 40916; + GlyphOfHurricane = 40920; + GlyphOfSkullBash = 40921; + GlyphOfNaturesGrasp = 40922; + GlyphOfSavagery = 40923; + GlyphOfEntanglingRoots = 40924; + GlyphOfBlooming = 43331; + GlyphOfDash = 43674; + GlyphOfMasterShapeshifter = 44928; + GlyphOfSurvivalInstincts = 45601; + GlyphOfWildGrowth = 45602; + GlyphOfMightOfUrsoc = 45603; + GlyphOfStampedingRoar = 45604; + GlyphOfCyclone = 45622; + GlyphOfBarkskin = 45623; + GlyphOfFerociousBite = 48720; + GlyphOfFaeSilence = 67484; + GlyphOfFaerieFire = 67485; + GlyphOfCatForm = 67487; } + enum DruidMinorGlyph { - DruidMinorGlyphNone = 0; - GlyphOfAquaticForm = 43316; - GlyphOfChallengingRoar = 43334; - GlyphOfDash = 43674; - GlyphOfMarkOfTheWild = 43335; - GlyphOfTheTreant = 68039; - GlyphOfTyphoon = 44922; - GlyphOfUnburdenedRebirth = 43331; + DruidMinorGlyphNone = 0; + GlyphOfTheStag = 40900; + GlyphOfTheOrca = 40919; + GlyphOfAquaticForm = 43316; + GlyphOfGrace = 43332; + GlyphOfTheChameleon = 43334; + GlyphOfCharmWoodlandCreature = 43335; + GlyphOfStars = 44922; + GlyphOfThePredator = 67486; + GlyphOfTheTreant = 68039; + ZzoldGlyphOfTheChameleon = 76729; + GlyphOfTheCheetah = 89868; + GlyphOfFocus = 93203; + GlyphOfTheSproutingMushroom = 104102; + GlyphOfOneWithNature = 104103; } +// END GENERATED + message DruidOptions { UnitReference innervate_target = 1; } @@ -138,10 +94,6 @@ message BalanceDruid { message Options { DruidOptions class_options = 1; float okf_uptime = 2; - - // deprecated fields - bool start_in_solar = 3 [deprecated=true]; - int32 mastery_snapshot = 4 [deprecated=true]; } Options options = 3; } diff --git a/proto/hunter.proto b/proto/hunter.proto index e51d03e159..c8bb20aeae 100644 --- a/proto/hunter.proto +++ b/proto/hunter.proto @@ -4,157 +4,84 @@ package proto; option go_package = "./proto"; import "common.proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// HunterTalents message. message HunterTalents { - // Beast Mastery - int32 improved_kill_command = 1; - int32 one_with_nature = 2; - int32 bestial_discipline = 3; - int32 pathfinding = 4; - int32 spirit_bond = 5; - int32 frenzy = 6; - int32 improved_mend_pet = 7; - int32 cobra_strikes = 8; - bool fervor = 9; - bool focus_fire = 10; - int32 longevity = 11; - int32 killing_streak = 12; - int32 crouching_tiger_hidden_chimera = 13; - bool bestial_wrath = 14; - bool ferocious_inspiration = 15; - int32 kindred_spirits = 16; - bool the_beast_within = 17; - int32 invigoration = 18; - bool beast_mastery = 19; - - // Marksmanship - int32 go_for_the_throat = 20; - int32 efficiency = 21; - int32 rapid_killing = 22; - int32 sic_em = 23; - int32 improved_steady_shot = 24; - int32 careful_aim = 25; - bool silencing_shot = 26; - int32 concussive_barrage = 27; - int32 piercing_shots = 28; - int32 bombardment = 29; - bool trueshot_aura = 30; - int32 termination = 31; - int32 resistance_is_futile = 32; - int32 rapid_recuperation = 33; - int32 master_marksman = 34; - bool readiness = 35; - int32 posthaste = 36; - int32 marked_for_death = 37; - bool chimera_shot = 38; - - // Survival - int32 hunter_vs_wild = 39; - int32 pathing = 40; - int32 improved_serpent_sting = 41; - int32 survival_tactics = 42; - int32 trap_mastery = 43; - int32 entrapment = 44; - int32 point_of_no_escape = 45; - int32 thrill_of_the_hunt = 46; - bool counterattack = 47; - int32 lock_and_load = 48; - int32 resourcefulness = 49; - int32 mirrored_blades = 50; - int32 t_n_t = 51; - int32 toxicology = 52; - bool wyvern_sting = 53; - int32 noxious_stings = 54; - bool hunting_party = 55; - int32 sniper_training = 56; - int32 serpent_spread = 57; - bool black_arrow = 58; -} -enum HunterPrimeGlyph { - HunterPrimeGlyphNone = 0; - GlyphOfAimedShot = 42897; - GlyphOfArcaneShot = 42898; - GlyphOfChimeraShot = 45625; - GlyphOfDazzledPrey = 42909; - GlyphOfExplosiveShot = 45731; - GlyphOfKillCommand = 42915; - GlyphOfKillShot = 45732; - GlyphOfRapidFire = 42911; - GlyphOfSerpentSting = 42912; - GlyphOfSteadyShot = 42914; + bool posthaste = 1; + bool narrow_escape = 2; + bool crouching_tiger_hidden_chimera = 3; + bool binding_shot = 4; + bool wyvern_sting = 5; + bool intimidation = 6; + bool exhilaration = 7; + bool aspect_of_the_iron_hawk = 8; + bool spirit_bond = 9; + bool fervor = 10; + bool dire_beast = 11; + bool thrill_of_the_hunt = 12; + bool a_murder_of_crows = 13; + bool blink_strikes = 14; + bool lynx_rush = 15; + bool glaive_toss = 16; + bool powershot = 17; + bool barrage = 18; } + enum HunterMajorGlyph { - HunterMajorGlyphNone = 0; - GlyphOfBestialWrath = 42902; - GlyphOfConcussiveShot = 42901; - GlyphOfDeterrence = 42903; - GlyphOfDisengage = 42904; - GlyphOfFreezingTrap = 42905; - GlyphOfIceTrap = 42906; - GlyphOfImmolationTrap = 42908; - GlyphOfMasterSCall = 45733; - GlyphOfMending = 42900; - GlyphOfMisdirection = 42907; - GlyphOfRaptorStrike = 45735; - GlyphOfScatterShot = 45734; - GlyphOfSilencingShot = 42910; - GlyphOfSnakeTrap = 42913; - GlyphOfTrapLauncher = 42899; - GlyphOfWyvernSting = 42917; + HunterMajorGlyphNone = 0; + GlyphOfCamouflage = 42898; + GlyphOfLiberation = 42899; + GlyphOfMending = 42900; + GlyphOfDistractingShot = 42901; + GlyphOfEndlessWrath = 42902; + GlyphOfDeterrence = 42903; + GlyphOfDisengage = 42904; + GlyphOfFreezingTrap = 42905; + GlyphOfIceTrap = 42906; + GlyphOfMisdirection = 42907; + GlyphOfExplosiveTrap = 42908; + GlyphOfAnimalBond = 42909; + GlyphOfNoEscape = 42910; + GlyphOfPathfinding = 42911; + GlyphOfSnakeTrap = 42913; + GlyphOfAimedShot = 42914; + GlyphOfMendPet = 42915; + GlyphOfSolace = 42917; + GlyphOfChimeraShot = 45625; + GlyphOfTranquilizingShot = 45731; + GlyphOfMastersCall = 45733; + GlyphOfScatterShot = 45734; + GlyphOfMirroredBlades = 45735; + GlyphOfBlackIce = 85684; + GlyphOfTheLeanPack = 104270; + GlyphOfEnduringDeceit = 104276; } + enum HunterMinorGlyph { - HunterMinorGlyphNone = 0; - GlyphOfAspectOfThePack = 43355; - GlyphOfFeignDeath = 43351; - GlyphOfLesserProportion = 43350; - GlyphOfRevivePet = 43338; - GlyphOfScareBeast = 43356; + HunterMinorGlyphNone = 0; + GlyphOfAspects = 42897; + GlyphOfTameBeast = 42912; + GlyphOfRevivePet = 43338; + GlyphOfLesserProportion = 43350; + GlyphOfFireworks = 43351; + GlyphOfAspectOfThePack = 43355; + GlyphOfStampedeHunter = 43356; + GlyphOfAspectOfTheCheetah = 45732; + GlyphOfAspectOfTheBeast = 85683; + GlyphOfDirection = 87278; + GlyphOfMarking = 87279; + GlyphOfFetch = 87393; + GlyphOfFocusedFire = 104274; + GlyphOfChameleon = 104278; } -message HunterPetTalents { - // Ferocity - int32 serpent_swiftness = 1; - bool dash = 2; - int32 great_stamina = 3; - int32 natural_armor = 4; - int32 improved_cower = 5; - int32 bloodthirsty = 6; - int32 spiked_collar = 7; - bool boars_speed = 8; - int32 culling_the_herd = 9; - int32 lionhearted = 10; - bool charge = 11; - bool heart_of_the_phoenix = 12; - int32 spiders_bite = 13; - int32 great_resistance = 14; - bool rabid = 15; - bool lick_your_wounds = 16; - bool call_of_the_wild = 17; - int32 shark_attack = 18; - int32 wild_hunt = 19; - - // Tenacity - int32 blood_of_the_rhino = 20; - int32 pet_barding = 21; - int32 guard_dog = 22; - bool thunderstomp = 23; - int32 grace_of_the_mantis = 24; - bool last_stand = 25; - bool taunt = 26; - bool roar_of_sacrifice = 27; - bool intervene = 28; - int32 silverback = 29; +// END GENERATED - // Cunning - bool dive = 30; - int32 mobility = 31; - int32 owls_focus = 32; - bool carrion_feeder = 33; - int32 cornered = 34; - int32 feeding_frenzy = 35; - bool wolverine_bite = 36; - bool roar_of_recovery = 37; - bool bullheaded = 38; +enum PetSpec { + Ferocity = 0; + Tenacity = 1; + Cunning = 2; } enum HunterStingType { @@ -215,7 +142,7 @@ message HunterOptions { } PetType pet_type = 2; - HunterPetTalents pet_talents = 3; + PetSpec pet_spec = 3; double pet_uptime = 4; double time_to_trap_weave_ms = 5; bool use_hunters_mark = 6; diff --git a/proto/mage.proto b/proto/mage.proto index 6831a6b80e..384559eeca 100644 --- a/proto/mage.proto +++ b/proto/mage.proto @@ -4,119 +4,78 @@ package proto; option go_package = "./proto"; import "common.proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// MageTalents message. message MageTalents { - // Arcane - int32 arcane_concentration = 1; - int32 improved_counterspell = 2; - int32 netherwind_presence = 3; - int32 torment_the_weak = 4; - int32 invocation = 5; - int32 improved_arcane_missiles = 6; - int32 improved_blink = 7; - int32 arcane_flows = 8; - bool presence_of_mind = 9; - int32 missile_barrage = 10; - int32 prismatic_cloak = 11; - int32 improved_polymorph = 12; - bool arcane_tactics = 13; - int32 incanters_absorption = 14; - int32 improved_arcane_explosion = 15; - int32 arcane_potency = 16; - bool slow = 17; - int32 nether_vortex = 18; - bool focus_magic = 19; - int32 improved_mana_gem = 20; - bool arcane_power = 21; - - // Fire - int32 master_of_elements = 22; - int32 burning_soul = 23; - int32 improved_fire_blast = 24; - int32 ignite = 25; - int32 fire_power = 26; - int32 blazing_speed = 27; - int32 impact = 28; - int32 cauterize = 29; - bool blast_wave = 30; - bool hot_streak = 31; - int32 improved_scorch = 32; - bool molten_shields = 33; - bool combustion = 34; - int32 improved_hot_streak = 35; - bool firestarter = 36; - int32 improved_flamestrike = 37; - bool dragons_breath = 38; - int32 molten_fury = 39; - int32 pyromaniac = 40; - int32 critical_mass = 41; - bool living_bomb = 42; - - // Frost - int32 early_frost = 43; - int32 piercing_ice = 44; - int32 shatter = 45; - int32 ice_floes = 46; - int32 improved_cone_of_cold = 47; - int32 piercing_chill = 48; - int32 permafrost = 49; - int32 ice_shards = 50; - bool icy_veins = 51; - int32 fingers_of_frost = 52; - int32 improved_freeze = 53; - int32 enduring_winter = 54; - bool cold_snap = 55; - int32 brain_freeze = 56; - int32 shattered_barrier = 57; - bool ice_barrier = 58; - int32 reactive_barrier = 59; - int32 frostfire_orb = 60; - bool deep_freeze = 61; -} -enum MagePrimeGlyph { - MagePrimeGlyphNone = 0; - GlyphOfArcaneBarrage = 45738; - GlyphOfArcaneBlast = 44955; - GlyphOfArcaneMissiles = 42735; - GlyphOfConeOfCold = 42753; - GlyphOfDeepFreeze = 45736; - GlyphOfFireball = 42739; - GlyphOfFrostbolt = 42742; - GlyphOfFrostfire = 44684; - GlyphOfIceLance = 42745; - GlyphOfLivingBomb = 63539; - GlyphOfMageArmor = 42749; - GlyphOfMoltenArmor = 42751; - GlyphOfPyroblast = 42743; + bool presence_of_mind = 1; + bool blazing_speed = 2; + bool ice_floes = 3; + bool temporal_shield = 4; + bool flameglow = 5; + bool ice_barrier = 6; + bool ring_of_frost = 7; + bool ice_ward = 8; + bool frostjaw = 9; + bool greater_invisibility = 10; + bool cauterize = 11; + bool cold_snap = 12; + bool nether_tempest = 13; + bool living_bomb = 14; + bool frost_bomb = 15; + bool invocation = 16; + bool rune_of_power = 17; + bool incanters_ward = 18; } + enum MageMajorGlyph { - MageMajorGlyphNone = 0; - GlyphOfArcanePower = 42736; - GlyphOfBlastWave = 44920; - GlyphOfBlink = 42737; - GlyphOfDragonSBreath = 42754; - GlyphOfEvocation = 42738; - GlyphOfFrostArmor = 69773; - GlyphOfFrostNova = 42741; - GlyphOfIceBarrier = 45740; - GlyphOfIceBlock = 42744; - GlyphOfIcyVeins = 42746; - GlyphOfInvisibility = 42748; - GlyphOfManaShield = 50045; - GlyphOfPolymorph = 42752; - GlyphOfSlow = 45737; + MageMajorGlyphNone = 0; + GlyphOfArcaneExplosion = 42736; + GlyphOfBlink = 42737; + GlyphOfEvocation = 42738; + GlyphOfCombustion = 42739; + GlyphOfFrostNova = 42741; + GlyphOfIceBlock = 42744; + GlyphOfSplittingIce = 42745; + GlyphOfConeOfCold = 42746; + GlyphOfRapidDisplacement = 42748; + GlyphOfManaGem = 42749; + GlyphOfPolymorph = 42752; + GlyphOfIcyVeins = 42753; + GlyphOfSpellsteal = 42754; + GlyphOfFrostfireBolt = 44684; + GlyphOfRemoveCurse = 44920; + GlyphOfArcanePower = 44955; + GlyphOfWaterElemental = 45736; + GlyphOfSlow = 45737; + GlyphOfDeepFreeze = 45740; + GlyphOfCounterspell = 50045; + GlyphOfInfernoBlast = 63539; + GlyphOfArmors = 69773; } + enum MageMinorGlyph { - MageMinorGlyphNone = 0; - GlyphOfArcaneBrilliance = 43339; - GlyphOfArmors = 63416; - GlyphOfConjuring = 43359; - GlyphOfMirrorImage = 45739; - GlyphOfSlowFall = 43364; - GlyphOfTheMonkey = 43360; - GlyphOfThePenguin = 43361; + MageMinorGlyphNone = 0; + GlyphOfLooseMana = 42735; + GlyphOfMomentum = 42743; + GlyphOfCrittermorph = 42751; + GlyphOfThePorcupine = 43339; + GlyphOfConjureFamiliar = 43359; + GlyphOfTheMonkey = 43360; + GlyphOfThePenguin = 43361; + GlyphOfTheBearCub = 43362; + GlyphOfArcaneLanguage = 43364; + GlyphOfIllusion = 45738; + GlyphOfMirrorImage = 45739; + GlyphOfRapidTeleportation = 63416; + GlyphOfDiscreetMagic = 92727; + GlyphOfTheUnboundElemental = 104104; + GlyphOfEvaporation = 104105; + GlyphOfCondensation = 104106; } +// END GENERATED + message MageOptions { } @@ -135,14 +94,9 @@ message ArcaneMage { message FireMage { message Rotation { // Minimum Combustion threshold to cast Combustion at during lust - int32 combust_threshold = 4; - double combust_last_moment_lust_percentage = 5; - double combust_no_lust_percentage = 6; - - // deprecated fields - int32 ignite_combust_threshold = 1 [deprecated=true]; - double ignite_last_moment_lust_percentage = 2 [deprecated=true]; - double ignite_no_lust_percentage = 3 [deprecated=true]; + int32 combust_threshold = 1; + double combust_last_moment_lust_percentage = 2; + double combust_no_lust_percentage = 3; } message Options { diff --git a/proto/monk.proto b/proto/monk.proto new file mode 100644 index 0000000000..012c800dda --- /dev/null +++ b/proto/monk.proto @@ -0,0 +1,114 @@ +syntax = "proto3"; +package proto; + +option go_package = "./proto"; + +import "common.proto"; +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// MonkTalents message. +message MonkTalents { + bool celerity = 1; + bool tigers_lust = 2; + bool momentum = 3; + bool chi_wave = 4; + bool zen_sphere = 5; + bool chi_burst = 6; + bool power_strikes = 7; + bool ascension = 8; + bool chi_brew = 9; + bool ring_of_peace = 10; + bool charging_ox_wave = 11; + bool leg_sweep = 12; + bool healing_elixirs = 13; + bool dampen_harm = 14; + bool diffuse_magic = 15; + bool rushing_jade_wind = 16; + bool invoke_xuen_the_white_tiger = 17; + bool chi_torpedo = 18; +} + +enum MonkMajorGlyph { + MonkMajorGlyphNone = 0; + GlyphOfRapidRolling = 82345; + GlyphOfTranscendence = 84652; + GlyphOfBreathOfFire = 85685; + GlyphOfClash = 85687; + GlyphOfEnduringHealingSphere = 85689; + GlyphOfGuard = 85691; + GlyphOfManaTea = 85692; + GlyphOfZenMeditation = 85695; + GlyphOfRenewingMists = 85696; + GlyphOfSpinningCraneKick = 85697; + GlyphOfSurgingMist = 85699; + GlyphOfTouchOfDeath = 85700; + GlyphOfNimbleBrew = 87880; + GlyphOfAfterlife = 87891; + GlyphOfFistsOfFury = 87892; + GlyphOfFortifyingBrew = 87893; + GlyphOfLeerOfTheOx = 87894; + GlyphOfLifeCocoon = 87895; + GlyphOfFortuitousSpheres = 87896; + GlyphOfParalysis = 87897; + GlyphOfSparring = 87898; + GlyphOfDetox = 87899; + GlyphOfTouchOfKarma = 87900; + GlyphOfTargetedExpulsion = 87901; +} + +enum MonkMinorGlyph { + MonkMinorGlyphNone = 0; + GlyphOfSpinningFireBlossom = 85698; + ZzoldGlyphOfFlyingSerpentKick = 85712; + GlyphOfCracklingTigerLightning = 87881; + GlyphOfFlyingSerpentKick = 87882; + GlyphOfHonor = 87883; + GlyphOfJab = 87884; + GlyphOfRisingTigerKick = 87885; + ZzoldGlyphOfSpinningFireBlossom = 87886; + GlyphOfSpiritRoll = 87887; + GlyphOfFightingPose = 87888; + GlyphOfWaterRoll = 87889; + GlyphOfZenFlight = 87890; + GlyphOfBlackoutKick = 90715; +} + +// END GENERATED + +enum MonkStance { + None = 0; + SturdyOx = 1; + WiseSerpent = 2; + FierceTiger = 3; +} + +message MonkOptions {} + +message BrewmasterMonk { + message Rotation {} + + message Options { + MonkOptions class_options = 1; + MonkStance stance = 2; + } + Options options = 1; +} + +message MistweaverMonk { + message Rotation {} + + message Options { + MonkOptions class_options = 1; + MonkStance stance = 2; + } + Options options = 1; +} + +message WindwalkerMonk { + message Rotation {} + + message Options { + MonkOptions class_options = 1; + } + Options options = 1; +} diff --git a/proto/paladin.proto b/proto/paladin.proto index 40b52ecd51..2ad7903b5b 100644 --- a/proto/paladin.proto +++ b/proto/paladin.proto @@ -2,120 +2,86 @@ syntax = "proto3"; package proto; option go_package = "./proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// PaladinTalents message. message PaladinTalents { - // Holy - int32 arbiter_of_the_light = 1; - int32 protector_of_the_innocent = 2; - int32 judgements_of_the_pure = 3; - int32 clarity_of_purpose = 4; - int32 last_word = 5; - int32 blazing_light = 6; - int32 denounce = 7; - bool divine_favor = 8; - int32 infusion_of_light = 9; - int32 daybreak = 10; - int32 enlightened_judgements = 11; - bool beacon_of_light = 12; - int32 speed_of_light = 13; - bool sacred_cleansing = 14; - int32 conviction = 15; - bool aura_mastery = 16; - int32 paragon_of_virtue = 17; - int32 tower_of_radiance = 18; - int32 blessed_life = 19; - bool light_of_dawn = 20; - - // Protection - int32 divinity = 21; - int32 seals_of_the_pure = 22; - int32 eternal_glory = 23; - int32 judgements_of_the_just = 24; - int32 toughness = 25; - int32 improved_hammer_of_justice = 26; - int32 hallowed_ground = 27; - int32 sanctuary = 28; - bool hammer_of_the_righteous = 29; - int32 wrath_of_the_lightbringer = 30; - int32 reckoning = 31; - bool shield_of_the_righteous = 32; - int32 grand_crusader = 33; - bool vindication = 34; - bool holy_shield = 35; - int32 guarded_by_the_light = 36; - bool divine_guardian = 37; - int32 sacred_duty = 38; - int32 shield_of_the_templar = 39; - bool ardent_defender = 40; - - // Retribution - int32 eye_for_an_eye = 41; - int32 crusade = 42; - int32 improved_judgement = 43; - int32 guardians_favor = 44; - int32 rule_of_law = 45; - int32 pursuit_of_justice = 46; - bool communion = 47; - int32 the_art_of_war = 48; - int32 long_arm_of_the_law = 49; - bool divine_storm = 50; - bool sacred_shield = 51; - bool sanctity_of_battle = 52; - bool seals_of_command = 53; - int32 sanctified_wrath = 54; - int32 selfless_healer = 55; - bool repentance = 56; - int32 divine_purpose = 57; - int32 inquiry_of_faith = 58; - int32 acts_of_sacrifice = 59; - bool zealotry = 60; -} -enum PaladinPrimeGlyph { - PaladinPrimeGlyphNone = 0; - GlyphOfCrusaderStrike = 41098; - GlyphOfDivineFavor = 41106; - GlyphOfExorcism = 41103; - GlyphOfHammerOfTheRighteous = 45742; - GlyphOfHolyShock = 45746; - GlyphOfJudgement = 41092; - GlyphOfSealOfInsight = 41110; - GlyphOfSealOfTruth = 43869; - GlyphOfShieldOfTheRighteous = 45744; - GlyphOfTemplarSVerdict = 45743; - GlyphOfWordOfGlory = 41105; + bool speed_of_light = 1; + bool long_arm_of_the_law = 2; + bool pursuit_of_justice = 3; + bool fist_of_justice = 4; + bool repentance = 5; + bool evil_is_a_point_of_view = 6; + bool selfless_healer = 7; + bool eternal_flame = 8; + bool sacred_shield = 9; + bool hand_of_purity = 10; + bool unbreakable_spirit = 11; + bool clemency = 12; + bool holy_avenger = 13; + bool sanctified_wrath = 14; + bool divine_purpose = 15; + bool holy_prism = 16; + bool lights_hammer = 17; + bool execution_sentence = 18; } + enum PaladinMajorGlyph { - PaladinMajorGlyphNone = 0; - GlyphOfBeaconOfLight = 45741; - GlyphOfCleansing = 41104; - GlyphOfConsecration = 41099; - GlyphOfDazingShield = 43868; - GlyphOfDivinePlea = 45745; - GlyphOfDivineProtection = 41096; - GlyphOfDivinity = 41108; - GlyphOfFocusedShield = 41101; - GlyphOfHammerOfJustice = 41095; - GlyphOfHammerOfWrath = 41097; - GlyphOfHolyWrath = 43867; - GlyphOfLayOnHands = 43367; - GlyphOfLightOfDawn = 41109; - GlyphOfRebuke = 41094; - GlyphOfReckoning = 204385; - GlyphOfSalvation = 45747; - GlyphOfTheAsceticCrusader = 41107; - GlyphOfTheLongWord = 66918; - GlyphOfTurnEvil = 41102; + PaladinMajorGlyphNone = 0; + GlyphOfDoubleJeopardy = 41092; + GlyphOfDevotionAura = 41094; + GlyphOfHolyWrath = 41095; + GlyphOfDivineProtection = 41096; + GlyphOfTemplarsVerdict = 41097; + GlyphOfAvengingWrath = 41098; + GlyphOfConsecration = 41099; + GlyphOfFocusedShield = 41101; + GlyphOfBurdenOfGuilt = 41102; + GlyphOfBlindingLight = 41103; + GlyphOfFinalWrath = 41104; + GlyphOfWordOfGlory = 41105; + GlyphOfIllumination = 41106; + GlyphOfHarshWords = 41107; + GlyphOfDivinity = 41108; + GlyphOfLightOfDawn = 41109; + GlyphOfBlessedLife = 41110; + GlyphOfFlashOfLight = 43367; + GlyphOfDenounce = 43867; + GlyphOfDazingShield = 43868; + GlyphOfImmediateTruth = 43869; + GlyphOfBeaconOfLight = 45741; + GlyphOfHammerOfTheRighteous = 45742; + GlyphOfDivineStorm = 45743; + GlyphOfTheAlabasterShield = 45744; + GlyphOfDivinePlea = 45745; + GlyphOfHolyShock = 45746; + GlyphOfInquisition = 45747; + GlyphOfProtectorOfTheInnocent = 66918; + GlyphOfTheBattleHealer = 81956; + GlyphOfMassExorcism = 83107; + GlyphOfDivineShield = 104050; + GlyphOfHandOfSacrifice = 104051; } + enum PaladinMinorGlyph { - PaladinMinorGlyphNone = 0; - GlyphOfBlessingOfKings = 43365; - GlyphOfBlessingOfMight = 43340; - GlyphOfInsight = 43366; - GlyphOfJustice = 43369; - GlyphOfRighteousness = 41100; - GlyphOfTruth = 43368; + PaladinMinorGlyphNone = 0; + GlyphOfTheLuminousCharger = 41100; + GlyphOfTheMountedKing = 43340; + GlyphOfContemplation = 43365; + GlyphOfWingedVengeance = 43366; + GlyphOfSealOfBlood = 43368; + GlyphOfFireFromTheHeavens = 43369; + GlyphOfFocusedWrath = 80581; + GlyphOfTheFallingAvenger = 80584; + GlyphOfTheRighteousRetreat = 80585; + GlyphOfBladedJudgment = 80586; + GlyphOfRighteousRetreat = 85716; + GlyphOfTheExorcist = 104107; + GlyphOfPillarOfLight = 104108; } +// END GENERATED + enum Blessings { BlessingUnknown = 0; BlessingOfKings = 1; diff --git a/proto/priest.proto b/proto/priest.proto index 2e2725e1ae..a293e3943b 100644 --- a/proto/priest.proto +++ b/proto/priest.proto @@ -4,122 +4,89 @@ package proto; option go_package = "./proto"; import "common.proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// PriestTalents message. message PriestTalents { - // Discipline - int32 improved_power_word_shield = 1; - int32 twin_disciplines = 2; - int32 mental_agility = 3; - int32 evangelism = 4; - bool archangel = 5; - int32 inner_sanctum = 6; - int32 soul_warding = 7; - int32 renewed_hope = 8; - bool power_infusion = 9; - int32 atonement = 10; - bool inner_focus = 11; - int32 rapture = 12; - int32 borrowed_time = 13; - int32 reflective_shield = 14; - int32 strength_of_soul = 15; - int32 divine_aegis = 16; - bool pain_suppression = 17; - int32 train_of_thought = 18; - int32 focused_will = 19; - int32 grace = 20; - bool power_word_barrier = 21; - - // Holy - int32 improved_renew = 22; - int32 empowered_healing = 23; - int32 divine_fury = 24; - bool desperate_prayer = 25; - int32 surge_of_light = 26; - int32 inspiration = 27; - int32 divine_touch = 28; - int32 holy_concentration = 29; - bool lightwell = 30; - int32 tome_of_light = 31; - bool rapid_renewal = 32; - bool spirit_of_redemption = 33; - int32 serendipity = 34; - int32 body_and_soul = 35; - bool chakra = 36; - bool revelations = 37; - int32 blessed_resilience = 38; - int32 test_of_faith = 39; - int32 heavenly_voice = 40; - bool circle_of_healing = 41; - bool guardian_spirit = 42; - - // Shadow - int32 darkness = 43; - int32 improved_shadow_word_pain = 44; - int32 veiled_shadows = 45; - int32 improved_psychic_scream = 46; - int32 improved_mind_blast = 47; - int32 improved_devouring_plague = 48; - int32 twisted_faith = 49; - bool shadowform = 50; - int32 phantasm = 51; - int32 harnessed_shadows = 52; - bool silence = 53; - bool vampiric_embrace = 54; - int32 masochism = 55; - int32 mind_melt = 56; - int32 pain_and_suffering = 57; - bool vampiric_touch = 58; - int32 paralysis = 59; - bool psychic_horror = 60; - int32 sin_and_punishment = 61; - int32 shadowy_apparition = 62; - bool dispersion = 63; + bool void_tendrils = 1; + bool psyfiend = 2; + bool dominate_mind = 3; + bool body_and_soul = 4; + bool angelic_feather = 5; + bool phantasm = 6; + bool from_darkness_comes_light = 7; + bool mindbender = 8; + bool solace_and_insanity = 9; + bool desperate_prayer = 10; + bool spectral_guise = 11; + bool angelic_bulwark = 12; + bool twist_of_fate = 13; + bool power_infusion = 14; + bool divine_insight = 15; + bool cascade = 16; + bool divine_star = 17; + bool halo = 18; } -enum PriestPrimeGlyph { - PriestPrimeGlyphNone = 0; - GlyphOfDispersion = 45753; - GlyphOfFlashHeal = 42400; - GlyphOfGuardianSpirit = 45755; - GlyphOfLightwell = 42403; - GlyphOfMindFlay = 42415; - GlyphOfPenance = 45756; - GlyphOfPowerWordBarrier = 42407; - GlyphOfPowerWordShield = 42408; - GlyphOfPrayerOfHealing = 42409; - GlyphOfRenew = 42411; - GlyphOfShadowWordDeath = 42414; - GlyphOfShadowWordPain = 42406; -} enum PriestMajorGlyph { - PriestMajorGlyphNone = 0; - GlyphOfCircleOfHealing = 42396; - GlyphOfDesperation = 45760; - GlyphOfDispelMagic = 42397; - GlyphOfDivineAccuracy = 45758; - GlyphOfFade = 42398; - GlyphOfFearWard = 42399; - GlyphOfHolyNova = 42401; - GlyphOfInnerFire = 42402; - GlyphOfMassDispel = 42404; - GlyphOfPrayerOfMending = 42417; - GlyphOfPsychicHorror = 42405; - GlyphOfPsychicScream = 42410; - GlyphOfScourgeImprisonment = 42412; - GlyphOfSmite = 42416; - GlyphOfSpiritTap = 45757; + PriestMajorGlyphNone = 0; + GlyphOfCircleOfHealing = 42396; + GlyphOfPurify = 42397; + GlyphOfFade = 42398; + GlyphOfFearWard = 42399; + GlyphOfInnerSanctum = 42400; + GlyphOfHolyNova = 42401; + GlyphOfInnerFire = 42402; + GlyphOfDeepWells = 42403; + GlyphOfMassDispel = 42404; + GlyphOfPsychicHorror = 42405; + GlyphOfHolyFire = 42406; + GlyphOfWeakenedSoul = 42407; + GlyphOfPowerWordShield = 42408; + GlyphOfSpiritOfRedemption = 42409; + GlyphOfPsychicScream = 42410; + GlyphOfRenew = 42411; + GlyphOfScourgeImprisonment = 42412; + GlyphOfMindBlast = 42414; + GlyphOfDispelMagic = 42415; + GlyphOfSmite = 42416; + GlyphOfPrayerOfMending = 42417; + GlyphOfLevitate = 43370; + GlyphOfReflectiveShield = 43372; + GlyphOfDispersion = 45753; + GlyphOfLeapOfFaith = 45755; + GlyphOfPenance = 45756; + GlyphOfFocusedMending = 45757; + GlyphOfMindSpike = 45758; + GlyphOfBindingHeal = 45760; + GlyphOfMindFlay = 79513; + GlyphOfShadowWordDeath = 79514; + GlyphOfVampiricEmbrace = 79515; + ZzoldGlyphOfVampiricTouch = 85708; + GlyphOfLightspring = 87875; + GlyphOfLightwell = 87902; } + enum PriestMinorGlyph { - PriestMinorGlyphNone = 0; - GlyphOfFading = 43342; - GlyphOfFortitude = 43371; - GlyphOfLevitate = 43370; - GlyphOfShackleUndead = 43373; - GlyphOfShadow = 77101; - GlyphOfShadowProtection = 43372; - GlyphOfShadowfiend = 43374; + PriestMinorGlyphNone = 0; + GlyphOfShadowRavens = 43342; + GlyphOfBorrowedTime = 43371; + GlyphOfShackleUndead = 43373; + GlyphOfDarkArchangel = 43374; + GlyphOfShadow = 77101; + GlyphOfTheHeavens = 79538; + GlyphOfConfession = 86541; + GlyphOfHolyResurrection = 87276; + GlyphOfTheValkyr = 87277; + GlyphOfShadowyFriends = 87392; + GlyphOfAngels = 104109; + GlyphOfTheSha = 104120; + GlyphOfShiftedAppearances = 104121; + GlyphOfInspiredHymns = 104122; } +// END GENERATED + message PriestOptions { enum Armor { NoArmor = 0; diff --git a/proto/rogue.proto b/proto/rogue.proto index 36119b3f86..802e652aae 100644 --- a/proto/rogue.proto +++ b/proto/rogue.proto @@ -4,118 +4,79 @@ package proto; option go_package = "./proto"; import "common.proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// RogueTalents message. message RogueTalents { - // Assassination - int32 deadly_momentum = 1; - int32 coup_de_grace = 2; - int32 lethality = 3; - int32 ruthlessness = 4; - int32 quickening = 5; - int32 puncturing_wounds = 6; - int32 blackjack = 7; - int32 deadly_brew = 8; - bool cold_blood = 9; - int32 vile_poisons = 10; - int32 deadened_nerves = 11; - int32 seal_fate = 12; - int32 murderous_intent = 13; - bool overkill = 14; - bool master_poisoner = 15; - int32 improved_expose_armor = 16; - int32 cut_to_the_chase = 17; - int32 venomous_wounds = 18; - bool vendetta = 19; - - // Combat - int32 improved_recuperate = 20; - int32 improved_sinister_strike = 21; - int32 precision = 22; - int32 improved_slice_and_dice = 23; - int32 improved_sprint = 24; - int32 aggression = 25; - int32 improved_kick = 26; - int32 lightning_reflexes = 27; - bool revealing_strike = 28; - int32 reinforced_leather = 29; - int32 improved_gouge = 30; - int32 combat_potency = 31; - int32 blade_twisting = 32; - int32 throwing_specialization = 33; - bool adrenaline_rush = 34; - int32 savage_combat = 35; - int32 bandits_guile = 36; - int32 restless_blades = 37; - bool killing_spree = 38; - - // Subtlety - int32 nightstalker = 39; - int32 improved_ambush = 40; - int32 relentless_strikes = 41; - int32 elusiveness = 42; - int32 waylay = 43; - int32 opportunity = 44; - int32 initiative = 45; - int32 energetic_recovery = 46; - int32 find_weakness = 47; - bool hemorrhage = 48; - int32 honor_among_thieves = 49; - bool premeditation = 50; - int32 enveloping_shadows = 51; - int32 cheat_death = 52; - bool preparation = 53; - int32 sanguinary_vein = 54; - int32 slaughter_from_the_shadows = 55; - int32 serrated_blades = 56; - bool shadow_dance = 57; + bool nightstalker = 1; + bool subterfuge = 2; + bool shadow_focus = 3; + bool deadly_throw = 4; + bool nerve_strike = 5; + bool combat_readiness = 6; + bool cheat_death = 7; + bool leeching_poison = 8; + bool elusiveness = 9; + bool cloak_and_dagger = 10; + bool shadowstep = 11; + bool burst_of_speed = 12; + bool prey_on_the_weak = 13; + bool paralytic_poison = 14; + bool dirty_tricks = 15; + bool shuriken_toss = 16; + bool marked_for_death = 17; + bool anticipation = 18; } -enum RoguePrimeGlyph { - RoguePrimeGlyphNone = 0; - GlyphOfAdrenalineRush = 42954; - GlyphOfBackstab = 42956; - GlyphOfEviscerate = 42961; - GlyphOfHemorrhage = 42967; - GlyphOfKillingSpree = 45762; - GlyphOfMutilate = 45768; - GlyphOfRevealingStrike = 42965; - GlyphOfRupture = 42969; - GlyphOfShadowDance = 45764; - GlyphOfSinisterStrike = 42972; - GlyphOfSliceAndDice = 42973; - GlyphOfVendetta = 45761; -} enum RogueMajorGlyph { - RogueMajorGlyphNone = 0; - GlyphOfAmbush = 42955; - GlyphOfBladeFlurry = 42957; - GlyphOfBlind = 64493; - GlyphOfCloakOfShadows = 45769; - GlyphOfCripplingPoison = 42958; - GlyphOfDeadlyThrow = 42959; - GlyphOfEvasion = 42960; - GlyphOfExposeArmor = 42962; - GlyphOfFanOfKnives = 45766; - GlyphOfFeint = 42963; - GlyphOfGarrote = 42964; - GlyphOfGouge = 42966; - GlyphOfKick = 42971; - GlyphOfPreparation = 42968; - GlyphOfSap = 42970; - GlyphOfSprint = 42974; - GlyphOfTricksOfTheTrade = 45767; - GlyphOfVanish = 63420; + RogueMajorGlyphNone = 0; + GlyphOfShadowWalk = 42954; + GlyphOfAmbush = 42955; + GlyphOfBladeFlurry = 42957; + GlyphOfSharpKnives = 42958; + GlyphOfRecuperate = 42959; + GlyphOfEvasion = 42960; + GlyphOfRecovery = 42961; + GlyphOfExposeArmor = 42962; + GlyphOfFeint = 42963; + GlyphOfGarrote = 42964; + GlyphOfGouge = 42966; + GlyphOfSmokeBomb = 42968; + GlyphOfCheapShot = 42969; + GlyphOfHemorraghingVeins = 42970; + GlyphOfKick = 42971; + GlyphOfRedirect = 42972; + GlyphOfShiv = 42973; + GlyphOfSprint = 42974; + GlyphOfVendetta = 45761; + GlyphOfStealth = 45764; + GlyphOfDeadlyMomentum = 45766; + GlyphOfCloakOfShadows = 45769; + GlyphOfVanish = 63420; + GlyphOfBlind = 64493; } + enum RogueMinorGlyph { - RogueMinorGlyphNone = 0; - GlyphOfBlurredSpeed = 43379; - GlyphOfDistract = 43376; - GlyphOfPickLock = 43377; - GlyphOfPickPocket = 43343; - GlyphOfPoisons = 43380; - GlyphOfSafeFall = 43378; + RogueMinorGlyphNone = 0; + GlyphOfDecoy = 42956; + GlyphOfDetection = 42965; + GlyphOfHemorrhage = 42967; + GlyphOfPickPocket = 43343; + GlyphOfDistract = 43376; + GlyphOfPickLock = 43377; + GlyphOfSafeFall = 43378; + GlyphOfBlurredSpeed = 43379; + GlyphOfPoisons = 43380; + GlyphOfKillingSpree = 45762; + GlyphOfTricksOfTheTrade = 45767; + GlyphOfDisguise = 45768; + ZzoldGlyphOfStabbing = 71799; + GlyphOfHeadhunting = 104123; + GlyphOfImprovedDistraction = 104124; } +// END GENERATED + message RogueOptions { UnitReference tricks_of_the_trade_target = 1; enum PoisonImbue { diff --git a/proto/shaman.proto b/proto/shaman.proto index 2927fc8bf4..3bb5f8d658 100644 --- a/proto/shaman.proto +++ b/proto/shaman.proto @@ -2,117 +2,85 @@ syntax = "proto3"; package proto; option go_package = "./proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// ShamanTalents message. message ShamanTalents { - // Elemental - int32 acuity = 1; - int32 convection = 2; - int32 concussion = 3; - int32 call_of_flame = 4; - int32 elemental_warding = 5; - int32 reverberation = 6; - int32 elemental_precision = 7; - int32 rolling_thunder = 8; - bool elemental_focus = 9; - int32 elemental_reach = 10; - int32 elemental_oath = 11; - int32 lava_flows = 12; - bool fulmination = 13; - bool elemental_mastery = 14; - int32 earths_grasp = 15; - bool totemic_wrath = 16; - int32 feedback = 17; - int32 lava_surge = 18; - bool earthquake = 19; - - // Enhancement - int32 elemental_weapons = 20; - int32 focused_strikes = 21; - int32 improved_shields = 22; - int32 elemental_devastation = 23; - int32 flurry = 24; - int32 ancestral_swiftness = 25; - int32 totemic_reach = 26; - int32 toughness = 27; - bool stormstrike = 28; - int32 static_shock = 29; - int32 frozen_power = 30; - int32 seasoned_winds = 31; - int32 searing_flames = 32; - int32 earthen_power = 33; - bool shamanistic_rage = 34; - int32 unleashed_rage = 35; - int32 maelstrom_weapon = 36; - int32 improved_lava_lash = 37; - bool feral_spirit = 38; - - // Restoration - int32 ancestral_resolve = 39; - int32 tidal_focus = 40; - int32 spark_of_life = 41; - int32 resurgence = 42; - int32 totemic_focus = 43; - int32 focused_insight = 44; - int32 natures_guardian = 45; - int32 ancestral_healing = 46; - bool natures_swiftness = 47; - int32 natures_blessing = 48; - int32 soothing_rains = 49; - bool improved_cleanse_spirit = 50; - int32 cleansing_waters = 51; - int32 ancestral_awakening = 52; - bool mana_tide_totem = 53; - int32 telluric_currents = 54; - bool spirit_link_totem = 55; - int32 tidal_waves = 56; - int32 blessing_of_the_eternals = 57; - bool riptide = 58; -} -enum ShamanPrimeGlyph { - ShamanPrimeGlyphNone = 0; - GlyphOfEarthShield = 45775; - GlyphOfEarthlivingWeapon = 41527; - GlyphOfFeralSpirit = 45771; - GlyphOfFireElementalTotem = 41529; - GlyphOfFlameShock = 41531; - GlyphOfFlametongueWeapon = 41532; - GlyphOfLavaBurst = 41524; - GlyphOfLavaLash = 41540; - GlyphOfLightningBolt = 41536; - GlyphOfRiptide = 45772; - GlyphOfShocking = 41526; - GlyphOfStormstrike = 41539; - GlyphOfUnleashedLightning = 71155; - GlyphOfWaterShield = 41541; - GlyphOfWindfuryWeapon = 41542; + bool natures_guardian = 1; + bool stone_bulwark_totem = 2; + bool astral_shift = 3; + bool frozen_power = 4; + bool earthgrab_totem = 5; + bool windwalk_totem = 6; + bool call_of_the_elements = 7; + bool totemic_persistence = 8; + bool totemic_projection = 9; + bool elemental_mastery = 10; + bool ancestral_swiftness = 11; + bool echo_of_the_elements = 12; + bool rushing_streams = 13; + bool ancestral_guidance = 14; + bool conductivity = 15; + bool unleashed_fury = 16; + bool primal_elementalist = 17; + bool elemental_blast = 18; } + enum ShamanMajorGlyph { - ShamanMajorGlyphNone = 0; - GlyphOfChainHeal = 41517; - GlyphOfChainLightning = 41518; - GlyphOfElementalMastery = 41552; - GlyphOfFireNova = 41530; - GlyphOfFrostShock = 41547; - GlyphOfGhostWolf = 43725; - GlyphOfGroundingTotem = 41538; - GlyphOfHealingStreamTotem = 41533; - GlyphOfHealingWave = 41534; - GlyphOfHex = 45777; - GlyphOfLightningShield = 41537; - GlyphOfShamanisticRage = 45776; - GlyphOfStoneclawTotem = 45778; - GlyphOfThunder = 45770; - GlyphOfTotemicRecall = 41535; + ShamanMajorGlyphNone = 0; + GlyphOfUnstableEarth = 41517; + GlyphOfChainLightning = 41518; + GlyphOfSpiritWalk = 41524; + GlyphOfCapacitorTotem = 41526; + GlyphOfPurge = 41527; + GlyphOfFireElementalTotem = 41529; + GlyphOfFireNova = 41530; + GlyphOfFlameShock = 41531; + GlyphOfWindShear = 41532; + GlyphOfHealingStreamTotem = 41533; + GlyphOfHealingWave = 41534; + GlyphOfTotemicRecall = 41535; + GlyphOfTelluricCurrents = 41536; + GlyphOfGroundingTotem = 41538; + GlyphOfSpiritwalkersGrace = 41539; + GlyphOfWaterShield = 41541; + GlyphOfCleansingWaters = 41542; + GlyphOfFrostShock = 41547; + GlyphOfChaining = 41552; + GlyphOfHealingStorm = 43344; + GlyphOfGhostWolf = 43725; + GlyphOfThunder = 45770; + GlyphOfFeralSpirit = 45771; + GlyphOfRiptide = 45772; + GlyphOfShamanisticRage = 45776; + GlyphOfHex = 45777; + GlyphOfTotemicVigor = 45778; + GlyphOfLightningShield = 71155; + GlyphOfPurging = 104052; + GlyphOfEternalEarth = 104053; } + enum ShamanMinorGlyph { - ShamanMinorGlyphNone = 0; - GlyphOfAstralRecall = 43381; - GlyphOfRenewedLife = 43385; - GlyphOfTheArcticWolf = 43386; - GlyphOfThunderstorm = 44923; - GlyphOfWaterBreathing = 43344; - GlyphOfWaterWalking = 43388; -} + ShamanMinorGlyphNone = 0; + GlyphOfTheLakestrider = 41537; + GlyphOfLavaLash = 41540; + GlyphOfAstralRecall = 43381; + GlyphOfFarSight = 43385; + GlyphOfTheSpectralWolf = 43386; + GlyphOfTotemicEncirclement = 43388; + GlyphOfThunderstorm = 44923; + GlyphOfDeluge = 45775; + GlyphOfSpiritRaptors = 104126; + GlyphOfLingeringAncestors = 104127; + GlyphOfSpiritWolf = 104128; + GlyphOfFlamingSerpent = 104129; + GlyphOfTheCompy = 104130; + GlyphOfElementalFamiliars = 104131; + GlyphOfAstralFixation = 104133; + GlyphOfRainOfFrogs = 104134; +} + +// END GENERATED enum EarthTotem { NoEarthTotem = 0; @@ -176,16 +144,6 @@ message ShamanTotems { AirTotem air = 9; FireTotem fire = 10; WaterTotem water = 11; - - bool use_fire_elemental = 12 [deprecated=true]; - - // Bonus spell power for fire elemental snapshotting. - int32 bonus_spellpower = 13 [deprecated=true]; // No longer used in favor of Item Swapping - // Bonus intellect for fire elemental snapshotting. - int32 bonus_intellect = 15 [deprecated=true]; // No longer used in favor of Item Swapping - - // Snapshot fire elemental using Tier 10 4 set bonus. - bool enh_tier_ten_bonus = 14 [deprecated=true]; // No longer used in favor of Item Swapping } enum ShamanShield { @@ -214,11 +172,6 @@ message ShamanOptions { ShamanTotems totems = 2; CallTotem call = 3; ShamanImbue imbue_mh = 4; - - bool use_dragon_soul_2PT12 = 5 [deprecated=true]; // No longer used because Phase 4 is live - - // There's currently no way to swap two different set bonuses during prepull - bool use_prepull_enh_2PT10 = 6; } message ElementalShaman { diff --git a/proto/spell.proto b/proto/spell.proto new file mode 100644 index 0000000000..a53ae8e6e1 --- /dev/null +++ b/proto/spell.proto @@ -0,0 +1,45 @@ +syntax = "proto3"; +package proto; + +option go_package = "./proto"; + +import "common.proto"; + +message SpellEffect { + int32 id = 1; + int32 spell_id = 2; + int32 index = 3; + EffectType type = 4; + double min_effect_size = 5; + double effect_spread = 6; + oneof misc_value0 { + ResourceType resource_type = 7; + SpellSchool school = 8; + Stat stat = 9; + } +} + +enum EffectType { + EffectTypeUnknown = 0; + EffectTypeHeal = 10; + EffectTypeResourceGain = 30; +} + +enum ResourceType { + ResourceTypeNone = 0; + ResourceTypeMana = 1; + ResourceTypeEnergy = 2; + ResourceTypeRage = 3; + ResourceTypeComboPoints = 4; + ResourceTypeFocus = 5; + ResourceTypeHealth = 6; + ResourceTypeRunicPower = 7; + ResourceTypeBloodRune = 8; + ResourceTypeFrostRune = 9; + ResourceTypeUnholyRune = 10; + ResourceTypeDeathRune = 11; + ResourceTypeSolarEnergy = 12; + ResourceTypeLunarEnergy = 13; + ResourceTypeHolyPower = 14; + ResourceTypeChi = 15; +} diff --git a/proto/ui.proto b/proto/ui.proto index a13129356e..b50a664a26 100644 --- a/proto/ui.proto +++ b/proto/ui.proto @@ -6,6 +6,8 @@ option go_package = "./proto"; import "api.proto"; import "apl.proto"; import "common.proto"; +import "db.proto"; +import "spell.proto"; import "paladin.proto"; // Holds all WoW data for the UI. @@ -25,6 +27,9 @@ message UIDatabase { repeated GlyphID glyph_ids = 7; repeated ReforgeStat reforge_stats = 12; + + repeated Consumable consumables = 13; + repeated SpellEffect spell_effects = 14; } message UIZone { @@ -41,7 +46,7 @@ message UINPC { // Contains all information about an Item needed by the UI. // Generally this will include everything needed by the sim, plus some // additional data for displaying / filtering. -// Next tag: 29. +// Next tag: 35. message UIItem { int32 id = 1; string name = 2; @@ -57,6 +62,8 @@ message UIItem { repeated GemColor gem_sockets = 10; repeated double socketBonus = 11; repeated int32 random_suffix_options = 26; + int32 rand_prop_points = 27; + // Weapon stats, needed for computing proper EP for melee weapons double weapon_damage_min = 12; @@ -68,7 +75,6 @@ message UIItem { ItemQuality quality = 17; bool unique = 18; bool heroic = 19; - int32 rand_prop_points = 27; // Classes that are allowed to use the item. Empty indicates no special class restrictions. repeated Class class_allowlist = 20; @@ -89,6 +95,7 @@ message UIItem { } FactionRestriction faction_restriction = 25; + map scaling_options = 29; // keys are the other ilvl variants that this item could potentially have } enum Expansion { @@ -97,6 +104,7 @@ enum Expansion { ExpansionTbc = 2; ExpansionWotlk = 3; ExpansionCata = 4; + ExpansionMop = 5; } enum DungeonDifficulty { @@ -382,7 +390,7 @@ message SavedSettings { PartyBuffs party_buffs = 2; Debuffs debuffs = 7; IndividualBuffs player_buffs = 3; - Consumes consumes = 4; + ConsumesSpec consumables = 4; Race race = 5; repeated Profession professions = 9; bool enable_item_swap = 18; diff --git a/proto/warlock.proto b/proto/warlock.proto index fc238a13a9..11bcfb2eff 100644 --- a/proto/warlock.proto +++ b/proto/warlock.proto @@ -2,115 +2,74 @@ syntax = "proto3"; package proto; option go_package = "./proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// WarlockTalents message. message WarlockTalents { - // Affliction - int32 doom_and_gloom = 1; - int32 improved_life_tap = 2; - int32 improved_corruption = 3; - int32 jinx = 4; - int32 soul_siphon = 5; - int32 siphon_life = 6; - bool curse_of_exhaustion = 7; - int32 improved_fear = 8; - int32 eradication = 9; - int32 improved_howl_of_terror = 10; - bool soul_swap = 11; - int32 shadow_embrace = 12; - int32 deaths_embrace = 13; - int32 nightfall = 14; - bool soulburn_seed_of_corruption = 15; - int32 everlasting_affliction = 16; - int32 pandemic = 17; - bool haunt = 18; - - // Demonology - int32 demonic_embrace = 19; - int32 dark_arts = 20; - int32 fel_synergy = 21; - int32 demonic_rebirth = 22; - int32 mana_feed = 23; - int32 demonic_aegis = 24; - int32 master_summoner = 25; - int32 impending_doom = 26; - bool demonic_empowerment = 27; - int32 improved_health_funnel = 28; - int32 molten_core = 29; - bool hand_of_guldan = 30; - int32 aura_of_foreboding = 31; - int32 ancient_grimoire = 32; - bool inferno = 33; - int32 decimation = 34; - int32 cremation = 35; - bool demonic_pact = 36; - bool metamorphosis = 37; - - // Destruction - int32 bane = 38; - int32 shadow_and_flame = 39; - int32 improved_immolate = 40; - int32 aftermath = 41; - int32 emberstorm = 42; - int32 improved_searing_pain = 43; - int32 improved_soul_fire = 44; - int32 backdraft = 45; - bool shadowburn = 46; - int32 burning_embers = 47; - int32 soul_leech = 48; - int32 backlash = 49; - bool nether_ward = 50; - int32 fire_and_brimstone = 51; - bool shadowfury = 52; - int32 nether_protection = 53; - int32 empowered_imp = 54; - bool bane_of_havoc = 55; - bool chaos_bolt = 56; + bool dark_regeneration = 1; + bool soul_leech = 2; + bool harvest_life = 3; + bool demonic_breath = 4; + bool mortal_coil = 5; + bool shadowfury = 6; + bool soul_link = 7; + bool sacrificial_pact = 8; + bool dark_bargain = 9; + bool blood_horror = 10; + bool burning_rush = 11; + bool unbound_will = 12; + bool grimoire_of_supremacy = 13; + bool grimoire_of_service = 14; + bool grimoire_of_sacrifice = 15; + bool archimondes_darkness = 16; + bool kiljaedens_cunning = 17; + bool mannoroths_fury = 18; } -enum WarlockPrimeGlyph { - WarlockPrimeGlyphNone = 0; - GlyphOfBaneOfAgony = 42456; - GlyphOfChaosBolt = 45781; - GlyphOfConflagrate = 42454; - GlyphOfCorruption = 42455; - GlyphOfFelguard = 42459; - GlyphOfHaunt = 45779; - GlyphOfImmolate = 42464; - GlyphOfImp = 42465; - GlyphOfIncinerate = 42453; - GlyphOfLashOfPain = 50077; - GlyphOfMetamorphosis = 45780; - GlyphOfShadowburn = 42468; - GlyphOfUnstableAffliction = 42472; -} enum WarlockMajorGlyph { - WarlockMajorGlyphNone = 0; - GlyphOfDeathCoilWl = 42457; - GlyphOfDemonicCircle = 45782; - GlyphOfFear = 42458; - GlyphOfFelhunter = 42460; - GlyphOfHealthstone = 42462; - GlyphOfHowlOfTerror = 42463; - GlyphOfLifeTap = 45785; - GlyphOfSeduction = 42471; - GlyphOfShadowBolt = 42467; - GlyphOfShadowflame = 45783; - GlyphOfSoulLink = 45789; - GlyphOfSoulSwap = 42466; - GlyphOfSoulstone = 42470; - GlyphOfVoidwalker = 42473; + WarlockMajorGlyphNone = 0; + GlyphOfConflagrate = 42454; + GlyphOfSiphonLife = 42455; + GlyphOfFear = 42458; + GlyphOfDemonTraining = 42460; + GlyphOfHealthstone = 42462; + GlyphOfCurseOfTheElements = 42464; + GlyphOfImpSwarm = 42465; + GlyphOfHavoc = 42466; + GlyphOfSoulstone = 42470; + GlyphOfUnstableAffliction = 42472; + GlyphOfSoulConsumption = 43390; + GlyphOfCurseOfExhaustion = 43392; + GlyphOfDrainLife = 45779; + GlyphOfDemonHunting = 45780; + GlyphOfEmberTap = 45781; + GlyphOfDemonicCircle = 45782; + GlyphOfUnendingResolve = 45783; + GlyphOfLifeTap = 45785; + GlyphOfEternalResolve = 50077; + GlyphOfSupernova = 93197; } + enum WarlockMinorGlyph { - WarlockMinorGlyphNone = 0; - GlyphOfCurseOfExhaustion = 43392; - GlyphOfDrainSoul = 43390; - GlyphOfEyeOfKilrogg = 43391; - GlyphOfHealthFunnel = 42461; - GlyphOfRitualOfSouls = 43394; - GlyphOfSubjugateDemon = 43393; - GlyphOfUnendingBreath = 43389; + WarlockMinorGlyphNone = 0; + GlyphOfHandOfGuldan = 42453; + GlyphOfVerdantSpheres = 42456; + GlyphOfNightmares = 42457; + GlyphOfFelguard = 42459; + GlyphOfHealthFunnel = 42461; + GlyphOfSubtlety = 42463; + GlyphOfShadowBolt = 42467; + GlyphOfCarrionSwarm = 42471; + GlyphOfFallingMeteor = 42473; + GlyphOfUnendingBreath = 43389; + GlyphOfEyeOfKilrogg = 43391; + GlyphOfSubjugateDemon = 43393; + GlyphOfSoulwell = 43394; + GlyphOfCrimsonBanish = 45789; + GlyphOfGatewayAttunement = 93202; } +// END GENERATED message WarlockOptions { enum Summon { @@ -124,9 +83,7 @@ message WarlockOptions { Summon summon = 1; bool detonate_seed = 2; - int32 prepull_mastery = 3; // Used for static Mastery Item Swap sets - int32 prepull_post_snapshot_mana = 4 [deprecated=true]; // Use Item Swap sets instead - bool use_item_swap_bonus_stats = 5; + bool use_item_swap_bonus_stats = 3; } message AfflictionWarlock { diff --git a/proto/warrior.proto b/proto/warrior.proto index 231b48e94a..2ad316705f 100644 --- a/proto/warrior.proto +++ b/proto/warrior.proto @@ -2,120 +2,84 @@ syntax = "proto3"; package proto; option go_package = "./proto"; - +// DO NOT REMOVE THE COMMENTS +// BEGIN GENERATED +// WarriorTalents message. message WarriorTalents { - // Arms - int32 war_academy = 1; - int32 field_dressing = 2; - int32 blitz = 3; - int32 tactical_mastery = 4; - int32 second_wind = 5; - int32 deep_wounds = 6; - int32 drums_of_war = 7; - int32 taste_for_blood = 8; - bool sweeping_strikes = 9; - int32 impale = 10; - int32 improved_hamstring = 11; - int32 improved_slam = 12; - bool deadly_calm = 13; - int32 blood_frenzy = 14; - int32 lambs_to_the_slaughter = 15; - bool juggernaut = 16; - int32 sudden_death = 17; - int32 wrecking_crew = 18; - bool throwdown = 19; - bool bladestorm = 20; - - // Fury - int32 blood_craze = 21; - int32 battle_trance = 22; - int32 cruelty = 23; - int32 executioner = 24; - int32 booming_voice = 25; - int32 rude_interruption = 26; - bool piercing_howl = 27; - int32 flurry = 28; - bool death_wish = 29; - int32 enrage = 30; - int32 die_by_the_sword = 31; - bool raging_blow = 32; - bool rampage = 33; - bool heroic_fury = 34; - bool furious_attacks = 35; - int32 meat_cleaver = 36; - int32 intensify_rage = 37; - int32 bloodsurge = 38; - int32 skirmisher = 39; - bool titans_grip = 40; - bool single_minded_fury = 41; - - // Protection - int32 incite = 42; - int32 toughness = 43; - int32 blood_and_thunder = 44; - int32 shield_specialization = 45; - int32 shield_mastery = 46; - int32 hold_the_line = 47; - int32 gag_order = 48; - bool last_stand = 49; - bool concussion_blow = 50; - int32 bastion_of_defense = 51; - bool warbringer = 52; - int32 improved_revenge = 53; - bool devastate = 54; - int32 impending_victory = 55; - int32 thunderstruck = 56; - bool vigilance = 57; - int32 heavy_repercussions = 58; - int32 safeguard = 59; - int32 sword_and_board = 60; - bool shockwave = 61; -} -enum WarriorPrimeGlyph { - WarriorPrimeGlyphNone = 0; - GlyphOfBladestorm = 45790; - GlyphOfBloodthirst = 43416; - GlyphOfDevastate = 43415; - GlyphOfMortalStrike = 43421; - GlyphOfOverpower = 43422; - GlyphOfRagingBlow = 43432; - GlyphOfRevenge = 43424; - GlyphOfShieldSlam = 43425; - GlyphOfSlam = 43423; + bool juggernaut = 1; + bool double_time = 2; + bool warbringer = 3; + bool enraged_regeneration = 4; + bool second_wind = 5; + bool impending_victory = 6; + bool staggering_shout = 7; + bool piercing_howl = 8; + bool disrupting_shout = 9; + bool bladestorm = 10; + bool shockwave = 11; + bool dragon_roar = 12; + bool mass_spell_reflection = 13; + bool safeguard = 14; + bool vigilance = 15; + bool avatar = 16; + bool bloodbath = 17; + bool storm_bolt = 18; } + enum WarriorMajorGlyph { - WarriorMajorGlyphNone = 0; - GlyphOfCleaving = 43414; - GlyphOfColossusSmash = 63481; - GlyphOfDeathWish = 67483; - GlyphOfHeroicThrow = 43418; - GlyphOfIntercept = 67482; - GlyphOfIntervene = 43419; - GlyphOfLongCharge = 43397; - GlyphOfPiercingHowl = 43417; - GlyphOfRapidCharge = 43413; - GlyphOfResonatingPower = 43430; - GlyphOfShieldWall = 45797; - GlyphOfShockwave = 45792; - GlyphOfSpellReflection = 45795; - GlyphOfSunderArmor = 43427; - GlyphOfSweepingStrikes = 43428; - GlyphOfThunderClap = 43399; - GlyphOfVictoryRush = 43431; + WarriorMajorGlyphNone = 0; + GlyphOfLongCharge = 43397; + GlyphOfUnendingRage = 43399; + GlyphOfEnragedSpeed = 43413; + GlyphOfHinderingStrikes = 43414; + GlyphOfHeavyRepercussions = 43415; + GlyphOfBloodthirst = 43416; + GlyphOfRudeInterruption = 43417; + GlyphOfGagOrder = 43418; + GlyphOfBlitz = 43419; + GlyphOfMortalStrike = 43421; + GlyphOfDieByTheSword = 43422; + GlyphOfHamstring = 43423; + GlyphOfHoldTheLine = 43424; + GlyphOfShieldSlam = 43425; + GlyphOfHoarseVoice = 43427; + GlyphOfSweepingStrikes = 43428; + GlyphOfResonatingPower = 43430; + GlyphOfVictoryRush = 43431; + GlyphOfRagingWind = 43432; + GlyphOfWhirlwind = 45790; + GlyphOfDeathFromAbove = 45792; + GlyphOfVictoriousThrow = 45793; + GlyphOfSpellReflection = 45795; + GlyphOfShieldWall = 45797; + GlyphOfColossusSmash = 63481; + GlyphOfBullRush = 67482; + GlyphOfRecklessness = 67483; + GlyphOfIncite = 83096; + GlyphOfImpalingThrows = 104055; + GlyphOfTheExecutor = 104056; } + enum WarriorMinorGlyph { - WarriorMinorGlyphNone = 0; - GlyphOfBattle = 43395; - GlyphOfBerserkerRage = 43396; - GlyphOfBloodyHealing = 43412; - GlyphOfCommand = 49084; - GlyphOfDemoralizingShout = 43398; - GlyphOfEnduringVictory = 43400; - GlyphOfFuriousSundering = 45793; - GlyphOfIntimidatingShout = 45794; - GlyphOfShatteringThrow = 206953; + WarriorMinorGlyphNone = 0; + GlyphOfMysticShout = 43395; + GlyphOfBloodcurdlingShout = 43396; + GlyphOfGushingWound = 43398; + GlyphOfMightyVictory = 43400; + GlyphOfBloodyHealing = 43412; + GlyphOfIntimidatingShout = 45794; + GlyphOfThunderStrike = 49084; + GlyphOfCrowFeast = 80587; + GlyphOfBurningAnger = 80588; + GlyphOfTheBlazingTrail = 85221; + GlyphOfTheRagingWhirlwind = 104135; + GlyphOfTheSubtleDefender = 104136; + GlyphOfTheWatchfulEye = 104137; + GlyphOfTheWeaponmaster = 104138; } +// END GENERATED + message WarriorOptions { double starting_rage = 1; } @@ -137,8 +101,7 @@ message FuryWarrior { WarriorOptions class_options = 1; bool stance_snapshot = 2; WarriorSyncType sync_type = 3; - int32 prepull_mastery = 4 [deprecated=true]; // Use Item Swap sets instead - bool use_item_swap_bonus_stats = 5; + bool use_item_swap_bonus_stats = 4; } Options options = 1; } diff --git a/sim/common/cata/damage_procs.go b/sim/common/cata/damage_procs.go index 1fae0c054a..ce7eab8f2e 100644 --- a/sim/common/cata/damage_procs.go +++ b/sim/common/cata/damage_procs.go @@ -3,8 +3,8 @@ package cata import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" ) func init() { @@ -45,7 +45,7 @@ func init() { core.NewItemEffect(68925, func(agent core.Agent) { character := agent.GetCharacter() // Proc chance determined to be p=.48 by video research - Researched by InDebt & Frostbitten - // Research: https://github.com/wowsims/cata/pull/1009#issuecomment-2348700653 + // Research: https://github.com/wowsims/mop/pull/1009#issuecomment-2348700653 procChance := 0.5 dummyAura := character.GetOrRegisterAura(core.Aura{ Label: "Electrical Charge", @@ -99,7 +99,7 @@ func init() { core.NewItemEffect(69110, func(agent core.Agent) { character := agent.GetCharacter() // Proc chance determined to be p=.48 by video research - Researched by InDebt & Frostbitten - // Research: https://github.com/wowsims/cata/pull/1009#issuecomment-2348700653 + // Research: https://github.com/wowsims/mop/pull/1009#issuecomment-2348700653 procChance := 0.5 dummyAura := character.GetOrRegisterAura(core.Aura{ Label: "Electrical Charge", diff --git a/sim/common/cata/dragonwrath.go b/sim/common/cata/dragonwrath.go index 6bd90ccb83..cb590c4c27 100644 --- a/sim/common/cata/dragonwrath.go +++ b/sim/common/cata/dragonwrath.go @@ -4,14 +4,14 @@ import ( "log" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) /* Base classes for Dragonwrath, Tarecgosa's Rest support All relevant mechanics should be tracked and documented at: -https://github.com/wowsims/cata/issues/946 +https://github.com/wowsims/mop/issues/946 */ const ( supressNone int8 = 0 diff --git a/sim/common/cata/enchant_effects.go b/sim/common/cata/enchant_effects.go index e07790bb39..7cf50af9a3 100644 --- a/sim/common/cata/enchant_effects.go +++ b/sim/common/cata/enchant_effects.go @@ -3,10 +3,10 @@ package cata import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func init() { @@ -49,7 +49,7 @@ func init() { }) // Enchant: 4067, Spell: 74197 - Enchant Weapon - Avalanche - // http://elitistjerks.com/f79/t110302-enhsim_cataclysm/p4/#post1832162 + // http://elitistjerks.com/f79/t110302-enhsim_mopclysm/p4/#post1832162 // Research indicates that the proc itself does not behave as game tables suggest <.< core.NewEnchantEffect(4067, func(agent core.Agent) { character := agent.GetCharacter() diff --git a/sim/common/cata/gurthalak.go b/sim/common/cata/gurthalak.go index 497d013b86..3e4d76dac1 100644 --- a/sim/common/cata/gurthalak.go +++ b/sim/common/cata/gurthalak.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Gurthalak, Voice of the Deeps diff --git a/sim/common/cata/metagems.go b/sim/common/cata/metagems.go index 4ae0645d67..91e5cc2c37 100644 --- a/sim/common/cata/metagems.go +++ b/sim/common/cata/metagems.go @@ -1,8 +1,8 @@ package cata import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/common/cata/other_effects.go b/sim/common/cata/other_effects.go index 253146afca..143e9e2893 100644 --- a/sim/common/cata/other_effects.go +++ b/sim/common/cata/other_effects.go @@ -5,9 +5,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type ItemVersion int32 @@ -1098,7 +1098,7 @@ func init() { // (Proc chance: 15%, 55s cooldown) // TODO: Verify if the aura is cancelled when swapping druid forms // Video from 4.3.0 showing that it doesn't: https://www.youtube.com/watch?v=A6PYbDRaH6E - // Comment from 4.3.3 stating that it does: https://www.wowhead.com/cata/item=77194/kiril-fury-of-beasts#comments:id=1639024 + // Comment from 4.3.3 stating that it does: https://www.wowhead.com/mop-classic/item=77194/kiril-fury-of-beasts#comments:id=1639024 kirilItemID := []int32{78482, 77194, 78473}[version] core.NewItemEffect(kirilItemID, func(agent core.Agent) { character := agent.GetCharacter() @@ -1483,6 +1483,9 @@ type IgniteConfig struct { ProcTrigger core.ProcTrigger // Ignores the Handler field and creates a custom one, but uses all others. DamageCalculator IgniteDamageCalculator IncludeAuraDelay bool // "munching" and "free roll-over" interactions + SpellSchool core.SpellSchool + NumberOfTicks int32 + TickLength time.Duration SetBonusAura *core.Aura } @@ -1493,9 +1496,21 @@ func RegisterIgniteEffect(unit *core.Unit, config IgniteConfig) *core.Spell { spellFlags |= core.SpellFlagPassiveSpell } + if config.SpellSchool == 0 { + config.SpellSchool = core.SpellSchoolFire + } + + if config.NumberOfTicks == 0 { + config.NumberOfTicks = 2 + } + + if config.TickLength == 0 { + config.TickLength = time.Second * 2 + } + igniteSpell := unit.RegisterSpell(core.SpellConfig{ ActionID: config.ActionID, - SpellSchool: core.SpellSchoolFire, + SpellSchool: config.SpellSchool, ProcMask: core.ProcMaskSpellProc, ClassSpellMask: config.ClassSpellMask, Flags: spellFlags, @@ -1509,8 +1524,8 @@ func RegisterIgniteEffect(unit *core.Unit, config IgniteConfig) *core.Spell { MaxStacks: math.MaxInt32, }, - NumberOfTicks: 2, - TickLength: time.Second * 2, + NumberOfTicks: config.NumberOfTicks, + TickLength: config.TickLength, AffectedByCastSpeed: false, OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { diff --git a/sim/common/cata/stat_bonus_cds.go b/sim/common/cata/stat_bonus_cds.go index 8d56849393..18648af75e 100644 --- a/sim/common/cata/stat_bonus_cds.go +++ b/sim/common/cata/stat_bonus_cds.go @@ -3,10 +3,10 @@ package cata import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/common/cata/stat_bonus_procs.go b/sim/common/cata/stat_bonus_procs.go index 3043431f94..aae49d5ed0 100644 --- a/sim/common/cata/stat_bonus_procs.go +++ b/sim/common/cata/stat_bonus_procs.go @@ -3,9 +3,9 @@ package cata import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/common/cata/stat_bonus_stacking.go b/sim/common/cata/stat_bonus_stacking.go index 9cef0f507c..b9b9fdbce5 100644 --- a/sim/common/cata/stat_bonus_stacking.go +++ b/sim/common/cata/stat_bonus_stacking.go @@ -3,9 +3,9 @@ package cata import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/common/includes.go b/sim/common/includes.go index 6c3e163a85..58075721f8 100644 --- a/sim/common/includes.go +++ b/sim/common/includes.go @@ -2,7 +2,6 @@ package common // Just import other directories, so importing common from elsewhere is enough. import ( - _ "github.com/wowsims/cata/sim/common/cata" - _ "github.com/wowsims/cata/sim/common/tbc" - _ "github.com/wowsims/cata/sim/common/wotlk" + _ "github.com/wowsims/mop/sim/common/cata" + _ "github.com/wowsims/mop/sim/common/wotlk" ) diff --git a/sim/common/shared/shared_utils.go b/sim/common/shared/shared_utils.go index 931f511bbd..85aea600c8 100644 --- a/sim/common/shared/shared_utils.go +++ b/sim/common/shared/shared_utils.go @@ -3,9 +3,9 @@ package shared import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type ProcStatBonusEffect struct { diff --git a/sim/common/tbc/_caster_items.go b/sim/common/tbc/_caster_items.go deleted file mode 100644 index 478beb68b4..0000000000 --- a/sim/common/tbc/_caster_items.go +++ /dev/null @@ -1,42 +0,0 @@ -package tbc - -// Keep these (and their functions) in alphabetical order. -// func init() { -// // Proc effects. Keep these in order by item ID. -// core.AddEffectsToTest = false - -// core.NewItemEffect(29305, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Band of the Eternal Sage Proc", core.ActionID{ItemID: 29305}, stats.Stats{stats.SpellPower: 95}, time.Second*10) - -// // Your offensive spells have a chance on hit to increase your spell damage by 95 for 10 secs. -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 60, -// } -// const proc = 0.1 - -// character.RegisterAura(core.Aura{ -// Label: "Band of the Eternal Sage", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { -// return -// } -// if !result.Landed() { -// return -// } -// if !icd.IsReady(sim) || sim.RandomFloat("Band of the Eternal Sage") > proc { // can't activate if on CD or didn't proc -// return -// } -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_caster_trinkets.go b/sim/common/tbc/_caster_trinkets.go deleted file mode 100644 index 8c6982c721..0000000000 --- a/sim/common/tbc/_caster_trinkets.go +++ /dev/null @@ -1,72 +0,0 @@ -package tbc - -// func init() { -// core.AddEffectsToTest = false -// // Offensive trinkets. Keep these in order by item ID. -// core.NewSimpleStatOffensiveTrinketEffect(32483, stats.Stats{stats.HasteRating: 175}, time.Second*20, time.Minute*2) // Skull of Gul'dan -// core.NewSimpleStatOffensiveTrinketEffect(33829, stats.Stats{stats.SpellPower: 211}, time.Second*20, time.Minute*2) // Hex Shrunken Head -// core.NewSimpleStatOffensiveTrinketEffect(34429, stats.Stats{stats.SpellPower: 320}, time.Second*15, time.Second*90) // Shifting Naaru Sliver - -// // Even though these item effects are handled elsewhere, add them so they are -// // detected for automatic testing. -// for _, itemID := range core.AlchStoneItemIDs { -// core.NewItemEffect(itemID, func(core.Agent) {}) -// } - -// core.NewItemEffect(21625, func(agent core.Agent) { // Scarab Brooch -// character := agent.GetCharacter() -// actionID := core.ActionID{ItemID: 21625} - -// shieldSpell := character.GetOrRegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 26470}, -// SpellSchool: core.SpellSchoolNature, -// ProcMask: core.ProcMaskSpellHealing, -// Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - -// DamageMultiplier: 1, -// ThreatMultiplier: 1, - -// Shield: core.ShieldConfig{ -// Aura: core.Aura{ -// Label: "Scarab Brooch Shield", -// Duration: time.Second * 30, -// }, -// }, -// }) - -// activeAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ -// Name: "Persistent Shield", -// ActionID: core.ActionID{SpellID: 26467}, -// Callback: core.CallbackOnHealDealt, -// Duration: time.Second * 30, -// Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { -// shieldSpell.Shield(result.Target).Apply(sim, result.Damage*0.15) -// }, -// }) - -// spell := character.RegisterSpell(core.SpellConfig{ -// ActionID: actionID, -// SpellSchool: core.SpellSchoolPhysical, -// ProcMask: core.ProcMaskEmpty, -// Flags: core.SpellFlagNoOnCastComplete, - -// Cast: core.CastConfig{ -// CD: core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Minute * 3, -// }, -// }, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// activeAura.Activate(sim) -// }, -// }) - -// character.AddMajorCooldown(core.MajorCooldown{ -// Type: core.CooldownTypeDPS, -// Spell: spell, -// }) -// }) - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_enchant_effects.go b/sim/common/tbc/_enchant_effects.go deleted file mode 100644 index b2c8785fdd..0000000000 --- a/sim/common/tbc/_enchant_effects.go +++ /dev/null @@ -1,247 +0,0 @@ -package tbc - -// func init() { -// core.AddEffectsToTest = false -// // Keep these in order by item ID. - -// // TODO: Crusader, Mongoose, and Executioner could also be modelled as AddWeaponEffect instead -// core.AddWeaponEffect(1897, func(agent core.Agent, slot proto.ItemSlot) { -// w := agent.GetCharacter().AutoAttacks.MH() -// if slot == proto.ItemSlot_ItemSlotOffHand { -// w = agent.GetCharacter().AutoAttacks.OH() -// } -// w.BaseDamageMin += 5 -// w.BaseDamageMax += 5 -// }) - -// core.NewEnchantEffect(2523, func(agent core.Agent) { -// agent.GetCharacter().AddBonusRangedHitPercent(30 / core.PhysicalHitRatingPerHitPercent) -// }) -// core.NewEnchantEffect(2724, func(agent core.Agent) { -// agent.GetCharacter().AddBonusRangedCritPercent(28 / core.CritRatingPerCritPercent) -// }) - -// core.NewEnchantEffect(2671, func(agent core.Agent) { -// // Sunfire -// agent.GetCharacter().OnSpellRegistered(func(spell *core.Spell) { -// if spell.SpellSchool.Matches(core.SpellSchoolArcane | core.SpellSchoolFire) { -// spell.BonusSpellPower += 50 -// } -// }) -// }) -// core.NewEnchantEffect(2672, func(agent core.Agent) { -// // Soulfrost -// agent.GetCharacter().OnSpellRegistered(func(spell *core.Spell) { -// if spell.SpellSchool.Matches(core.SpellSchoolFrost | core.SpellSchoolShadow) { -// spell.BonusSpellPower += 54 -// } -// }) -// }) - -// core.AddWeaponEffect(963, func(agent core.Agent, slot proto.ItemSlot) { -// w := agent.GetCharacter().AutoAttacks.MH() -// if slot == proto.ItemSlot_ItemSlotOffHand { -// w = agent.GetCharacter().AutoAttacks.OH() -// } -// w.BaseDamageMin += 7 -// w.BaseDamageMax += 7 -// }) - -// // ApplyCrusaderEffect will be applied twice if there is two weapons with this enchant. -// // However, it will automatically overwrite one of them, so it should be ok. -// // A single application of the aura will handle both mh and oh procs. -// core.NewEnchantEffect(1900, func(agent core.Agent) { -// character := agent.GetCharacter() - -// // -4 str per level over 60 -// const strBonus = 100.0 - 4.0*float64(core.CharacterLevel-60) -// mhAura := character.NewTemporaryStatsAura("Crusader Enchant MH", core.ActionID{SpellID: 20007, Tag: 1}, stats.Stats{stats.Strength: strBonus}, time.Second*15) -// ohAura := character.NewTemporaryStatsAura("Crusader Enchant OH", core.ActionID{SpellID: 20007, Tag: 2}, stats.Stats{stats.Strength: strBonus}, time.Second*15) - -// aura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ -// Name: "Crusader Enchant", -// Duration: core.NeverExpires, -// Callback: core.CallbackOnSpellHitDealt, -// Outcome: core.OutcomeLanded, -// DPM: character.AutoAttacks.NewDynamicProcManagerForEnchant(1900, 1.0, 0), -// Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if spell.IsMH() { -// mhAura.Activate(sim) -// } else { -// ohAura.Activate(sim) -// } -// }, -// }) - -// character.ItemSwap.RegisterEnchantProc(1900, aura) -// }) - -// core.NewEnchantEffect(2929, func(agent core.Agent) { -// agent.GetCharacter().PseudoStats.BonusDamage += 2 -// }) - -// // ApplyMongooseEffect will be applied twice if there is two weapons with this enchant. -// // However, it will automatically overwrite one of them, so it should be ok. -// // A single application of the aura will handle both mh and oh procs. -// core.NewEnchantEffect(2673, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForEnchant(2673, 0.73, 0) - -// mhAura := character.NewTemporaryStatsAura("Lightning Speed MH", core.ActionID{SpellID: 28093, Tag: 1}, stats.Stats{stats.HasteRating: 30.0, stats.Agility: 120}, time.Second*15) -// ohAura := character.NewTemporaryStatsAura("Lightning Speed OH", core.ActionID{SpellID: 28093, Tag: 2}, stats.Stats{stats.HasteRating: 30.0, stats.Agility: 120}, time.Second*15) - -// aura := character.GetOrRegisterAura(core.Aura{ -// Label: "Mongoose Enchant", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "mongoose") { -// if spell.IsMH() { -// mhAura.Activate(sim) -// } else { -// ohAura.Activate(sim) -// } -// } -// }, -// }) - -// character.ItemSwap.RegisterEnchantProc(2673, aura) -// }) - -// core.AddWeaponEffect(2723, func(agent core.Agent, _ proto.ItemSlot) { -// w := agent.GetCharacter().AutoAttacks.Ranged() -// w.BaseDamageMin += 12 -// w.BaseDamageMax += 12 -// }) - -// core.NewEnchantEffect(2621, func(agent core.Agent) { -// character := agent.GetCharacter() -// character.PseudoStats.ThreatMultiplier *= 0.98 -// }) -// core.NewEnchantEffect(2613, func(agent core.Agent) { -// character := agent.GetCharacter() -// character.PseudoStats.ThreatMultiplier *= 1.02 -// }) - -// core.NewEnchantEffect(3225, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForEnchant(3225, 1.0, 0) - -// procAura := character.NewTemporaryStatsAura("Executioner Proc", core.ActionID{SpellID: 42976}, stats.Stats{stats.CritRating: 120}, time.Second*15) - -// aura := character.GetOrRegisterAura(core.Aura{ -// Label: "Executioner", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Executioner") { -// procAura.Activate(sim) -// } -// }, -// }) - -// character.ItemSwap.RegisterEnchantProc(3225, aura) -// }) - -// // https://web.archive.org/web/20100702102132/http://elitistjerks.com/f15/t27347-deathfrost_its_mechanics/p2/#post789470 -// applyDeathfrostForWeapon := func(character *core.Character, procSpell *core.Spell, isMH bool) { -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 25, -// } - -// label := "Deathfrost-" -// if isMH { -// label += "MH" -// } else { -// label += "OH" -// } -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(3273, 2.15, 0) - -// aura := character.GetOrRegisterAura(core.Aura{ -// Label: label, -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if result.Damage == 0 { -// return -// } - -// if spell.ProcMask.Matches(core.Ternary(isMH, core.ProcMaskMeleeMH, core.ProcMaskMeleeOH)) { -// if dpm.Proc(sim, spell.ProcMask, "Deathfrost") { -// procSpell.Cast(sim, result.Target) -// } -// } else if spell.ProcMask.Matches(core.ProcMaskSpellDamage) { -// if icd.IsReady(sim) && sim.RandomFloat("Deathfrost") < 0.5 { -// icd.Use(sim) -// procSpell.Cast(sim, result.Target) -// } -// } -// }, -// }) - -// meleeWeaponSlots := core.MeleeWeaponSlots() -// character.ItemSwap.RegisterEnchantProcWithSlots(3273, aura, core.Ternary(isMH, meleeWeaponSlots[:1], meleeWeaponSlots[1:])) -// } - -// core.NewEnchantEffect(3273, func(agent core.Agent) { -// character := agent.GetCharacter() - -// actionID := core.ActionID{SpellID: 46579} -// if spell := character.GetSpell(actionID); spell != nil { -// // This function gets called twice when dual wielding this enchant, but we -// // handle both in one call. -// return -// } - -// debuffs := make([]*core.Aura, len(character.Env.Encounter.TargetUnits)) -// for i, target := range character.Env.Encounter.TargetUnits { -// aura := target.GetOrRegisterAura(core.Aura{ -// Label: "Deathfrost", -// ActionID: actionID, -// Duration: time.Second * 8, -// }) -// core.AtkSpeedReductionEffect(aura, 1.15) -// debuffs[i] = aura -// } - -// procSpell := character.RegisterSpell(core.SpellConfig{ -// ActionID: actionID, -// SpellSchool: core.SpellSchoolFrost, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: character.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 1, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// result := spell.CalcDamage(sim, target, 150, spell.OutcomeMagicCrit) -// if result.Landed() { -// debuffs[target.Index].Activate(sim) -// } -// spell.DealDamage(sim, result) -// }, -// }) - -// applyDeathfrostForWeapon(character, procSpell, true) -// applyDeathfrostForWeapon(character, procSpell, false) -// }) - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_melee_items.go b/sim/common/tbc/_melee_items.go deleted file mode 100644 index de2c3bdde5..0000000000 --- a/sim/common/tbc/_melee_items.go +++ /dev/null @@ -1,370 +0,0 @@ -package tbc - -// func init() { -// core.AddEffectsToTest = false - -// // Proc effects. Keep these in order by item ID. - -// core.NewItemEffect(9449, func(agent core.Agent) { -// character := agent.GetCharacter() - -// // Assumes that the user will swap pummelers to have the buff for the whole fight. -// character.AddStat(stats.HasteRating, 500) -// }) - -// core.NewItemEffect(19019, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(19019, 6.0, 0) - -// procActionID := core.ActionID{SpellID: 21992} - -// singleTargetSpell := character.RegisterSpell(core.SpellConfig{ -// ActionID: procActionID.WithTag(1), -// SpellSchool: core.SpellSchoolNature, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: character.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 0.5, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// spell.CalcAndDealDamage(sim, target, 300, spell.OutcomeMagicHitAndCrit) -// }, -// }) - -// makeDebuffAura := func(target *core.Unit) *core.Aura { -// return target.GetOrRegisterAura(core.Aura{ -// Label: "Thunderfury", -// ActionID: procActionID, -// Duration: time.Second * 12, -// OnGain: func(aura *core.Aura, sim *core.Simulation) { -// target.AddStatDynamic(sim, stats.NatureResistance, -25) -// }, -// OnExpire: func(aura *core.Aura, sim *core.Simulation) { -// target.AddStatDynamic(sim, stats.NatureResistance, 25) -// }, -// }) -// } - -// numHits := min(5, character.Env.GetNumTargets()) -// debuffAuras := make([]*core.Aura, len(character.Env.Encounter.TargetUnits)) -// for i, target := range character.Env.Encounter.TargetUnits { -// debuffAuras[i] = makeDebuffAura(target) -// } - -// bounceSpell := character.RegisterSpell(core.SpellConfig{ -// ActionID: procActionID.WithTag(2), -// SpellSchool: core.SpellSchoolNature, -// ProcMask: core.ProcMaskEmpty, - -// ThreatMultiplier: 1, -// FlatThreatBonus: 63, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// curTarget := target -// for hitIndex := int32(0); hitIndex < numHits; hitIndex++ { -// result := spell.CalcDamage(sim, curTarget, 0, spell.OutcomeMagicHit) -// if result.Landed() { -// debuffAuras[target.Index].Activate(sim) -// } -// spell.DealDamage(sim, result) -// curTarget = sim.Environment.NextTargetUnit(curTarget) -// } -// }, -// }) - -// character.RegisterAura(core.Aura{ -// Label: "Thunderfury", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Thunderfury") { -// singleTargetSpell.Cast(sim, result.Target) -// bounceSpell.Cast(sim, result.Target) -// } -// }, -// }) -// }) - -// core.NewItemEffect(24114, func(agent core.Agent) { -// agent.GetCharacter().PseudoStats.BonusDamage += 5 -// }) - -// core.NewItemEffect(29297, func(agent core.Agent) { -// character := agent.GetCharacter() - -// const procChance = 0.03 -// procAura := character.NewTemporaryStatsAura("Band of the Eternal Defender Proc", core.ActionID{ItemID: 29297}, stats.Stats{stats.Armor: 800}, time.Second*10) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 60, -// } - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Band of the Eternal Defender", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.SpellSchool.Matches(core.SpellSchoolPhysical) { -// return -// } -// if !icd.IsReady(sim) { -// return -// } -// if sim.RandomFloat("Band of the Eternal Defender") < procChance { -// icd.Use(sim) -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(29301, func(agent core.Agent) { -// character := agent.GetCharacter() - -// procAura := character.NewTemporaryStatsAura("Band of the Eternal Champion Proc", core.ActionID{ItemID: 29301}, stats.Stats{stats.AttackPower: 160, stats.RangedAttackPower: 160}, time.Second*10) -// dpm := character.AutoAttacks.NewPPMManager(1.0, core.ProcMaskMeleeOrRanged) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 60, -// } - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Band of the Eternal Champion", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Band of the Eternal Champion") { -// icd.Use(sim) -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(29996, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(29996, 1.0, 0) - -// actionID := core.ActionID{ItemID: 29996} - -// var resourceMetricsRage *core.ResourceMetrics -// var resourceMetricsEnergy *core.ResourceMetrics -// if character.HasRageBar() { -// resourceMetricsRage = character.NewRageMetrics(actionID) -// } -// if character.HasEnergyBar() { -// resourceMetricsEnergy = character.NewEnergyMetrics(actionID) -// } - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Rod of the Sun King", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Rod of the Sun King") { -// switch spell.Unit.GetCurrentPowerBar() { -// case core.RageBar: -// spell.Unit.AddRage(sim, 5, resourceMetricsRage) -// case core.EnergyBar: -// spell.Unit.AddEnergy(sim, 10, resourceMetricsEnergy) -// } -// } -// }, -// }) -// }) - -// core.NewItemEffect(31193, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(31193, 0, 0.02) - -// procSpell := character.GetOrRegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 24585}, -// SpellSchool: core.SpellSchoolShadow, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: character.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 1, - -// BonusCoefficient: 1, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// baseDamage := sim.Roll(48, 54) -// spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMagicHitAndCrit) -// }, -// }) - -// core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ -// Name: "Blade of Unquenched Thirst Trigger", -// ActionID: core.ActionID{ItemID: 31193}, -// Callback: core.CallbackOnSpellHitDealt, -// Outcome: core.OutcomeLanded, -// DPM: dpm, -// Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { -// procSpell.Cast(sim, result.Target) -// }, -// }) -// }) - -// core.NewItemEffect(32262, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(12590, 1.0, 0) - -// procSpell := character.GetOrRegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 40291}, -// SpellSchool: core.SpellSchoolShadow, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: character.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 1, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// spell.CalcAndDealDamage(sim, target, 20, spell.OutcomeMagicHitAndCrit) -// }, -// }) - -// procAura := character.GetOrRegisterAura(core.Aura{ -// Label: "Siphon Essence", -// ActionID: core.ActionID{SpellID: 40291}, -// Duration: time.Second * 6, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMelee) { -// return -// } - -// procSpell.Cast(sim, result.Target) -// }, -// }) - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Syphon of the Nathrezim", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Syphon Of The Nathrezim") { -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(32375, func(agent core.Agent) { -// character := agent.GetCharacter() - -// const procChance = 0.02 -// procAura := character.NewTemporaryStatsAura("Bulwark Of Azzinoth Proc", core.ActionID{ItemID: 32375}, stats.Stats{stats.Armor: 2000}, time.Second*10) - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Bulwark Of Azzinoth", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if result.Landed() && spell.SpellSchool.Matches(core.SpellSchoolPhysical) && sim.RandomFloat("Bulwark of Azzinoth") < procChance { -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(34473, func(agent core.Agent) { -// character := agent.GetCharacter() - -// procAura := character.NewTemporaryStatsAura("Commendation of Kael'Thas Proc", core.ActionID{ItemID: 34473}, stats.Stats{stats.DodgeRating: 152}, time.Second*10) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 30, -// } - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Commendation of Kael'Thas", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMelee) { -// return -// } - -// if aura.Unit.CurrentHealthPercent() >= 0.35 { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.NewItemEffect(12590, func(agent core.Agent) { -// character := agent.GetCharacter() - -// dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(12590, 1.0, 0) - -// effectAura := character.NewTemporaryStatsAura("Felstriker Proc", core.ActionID{SpellID: 16551}, stats.Stats{stats.PhysicalCritPercent: 100}, time.Second*3) - -// character.GetOrRegisterAura(core.Aura{ -// Label: "Felstriker", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Felstriker") { -// effectAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_melee_sets.go b/sim/common/tbc/_melee_sets.go deleted file mode 100644 index a87f00f81b..0000000000 --- a/sim/common/tbc/_melee_sets.go +++ /dev/null @@ -1,159 +0,0 @@ -package tbc - -// Keep these in alphabetical order. - -// var ItemSetFistsOfFury = core.NewItemSet(core.ItemSet{ -// Name: "The Fists of Fury", -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(agent core.Agent, setBonusAura *core.Aura) { -// character := agent.GetCharacter() - -// procSpell := character.RegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 41989}, -// SpellSchool: core.SpellSchoolFire, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: character.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 1, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// spell.CalcAndDealDamage(sim, target, sim.Roll(100, 150), spell.OutcomeMagicHitAndCrit) -// }, -// }) - -// dpm := character.AutoAttacks.NewPPMManager(2.0, core.ProcMaskMelee) - -// character.RegisterAura(core.Aura{ -// Label: "Fists of Fury", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "The Fists of Fury") { -// procSpell.Cast(sim, result.Target) -// } -// }, -// }) -// }, -// }, -// }) - -// var ItemSetStormshroud = core.NewItemSet(core.ItemSet{ -// Name: "Stormshroud Armor", -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(a core.Agent, _ *core.Aura) { -// char := a.GetCharacter() -// proc := char.RegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 18980}, -// SpellSchool: core.SpellSchoolNature, -// ProcMask: core.ProcMaskEmpty, - -// DamageMultiplier: 1, -// CritMultiplier: char.DefaultSpellCritMultiplier(), -// ThreatMultiplier: 1, - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// spell.CalcAndDealDamage(sim, target, sim.Roll(15, 25), spell.OutcomeMagicHitAndCrit) -// }, -// }) -// char.RegisterAura(core.Aura{ -// Label: "Stormshround Armor 2pc", -// ActionID: core.ActionID{SpellID: 18979}, -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMelee) { -// return -// } -// if sim.RandomFloat("Stormshroud Armor 2pc") < 0.05 { -// proc.Cast(sim, result.Target) -// } -// }, -// }) -// }, -// 3: func(a core.Agent, _ *core.Aura) { -// char := a.GetCharacter() -// if !char.HasEnergyBar() { -// return -// } -// metrics := char.NewEnergyMetrics(core.ActionID{SpellID: 23863}) -// proc := char.RegisterSpell(core.SpellConfig{ -// ActionID: core.ActionID{SpellID: 23864}, -// SpellSchool: core.SpellSchoolNature, -// ApplyEffects: func(sim *core.Simulation, u *core.Unit, spell *core.Spell) { -// char.AddEnergy(sim, 30, metrics) -// }, -// }) -// char.RegisterAura(core.Aura{ -// Label: "Stormshround Armor 3pc", -// ActionID: core.ActionID{SpellID: 18979}, -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMelee) { -// return -// } -// if sim.RandomFloat("Stormshroud Armor 3pc") < 0.02 { -// proc.Cast(sim, result.Target) -// } -// }, -// }) - -// }, -// 4: func(a core.Agent, _ *core.Aura) { -// a.GetCharacter().AddStat(stats.AttackPower, 14) -// }, -// }, -// }) - -// var ItemSetTwinBladesOfAzzinoth = core.NewItemSet(core.ItemSet{ -// Name: "The Twin Blades of Azzinoth", -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(agent core.Agent, setBonusAura *core.Aura) { -// character := agent.GetCharacter() - -// if character.CurrentTarget.MobType == proto.MobType_MobTypeDemon { -// character.PseudoStats.MobTypeAttackPower += 200 -// } -// procAura := character.NewTemporaryStatsAura("Twin Blade of Azzinoth Proc", core.ActionID{SpellID: 41435}, stats.Stats{stats.HasteRating: 450}, time.Second*10) - -// dpm := character.AutoAttacks.NewPPMManager(1.0, core.ProcMaskMelee) -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 45, -// } - -// character.RegisterAura(core.Aura{ -// Label: "Twin Blades of Azzinoth", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Twin Blades of Azzinoth") { -// icd.Use(sim) -// procAura.Activate(sim) -// } -// }, -// }) -// }, -// }, -// }) diff --git a/sim/common/tbc/_melee_trinkets.go b/sim/common/tbc/_melee_trinkets.go deleted file mode 100644 index 420a0e46fc..0000000000 --- a/sim/common/tbc/_melee_trinkets.go +++ /dev/null @@ -1,243 +0,0 @@ -package tbc - -// func init() { -// core.AddEffectsToTest = false - -// // Offensive trinkets. Keep these in order by item ID. -// core.NewSimpleStatOffensiveTrinketEffect(29383, stats.Stats{stats.AttackPower: 278, stats.RangedAttackPower: 278}, time.Second*20, time.Minute*2) // Bloodlust Brooch -// core.NewSimpleStatOffensiveTrinketEffect(32658, stats.Stats{stats.Agility: 150}, time.Second*20, time.Minute*2) // Badge of Tenacity -// core.NewSimpleStatOffensiveTrinketEffect(33831, stats.Stats{stats.AttackPower: 360, stats.RangedAttackPower: 360}, time.Second*20, time.Minute*2) // Berserkers Call -// core.NewSimpleStatOffensiveTrinketEffect(38287, stats.Stats{stats.AttackPower: 278, stats.RangedAttackPower: 278}, time.Second*20, time.Minute*2) // Empty Direbrew Mug - -// // Defensive trinkets. Keep these in order by item ID. -// core.NewSimpleStatDefensiveTrinketEffect(29387, stats.Stats{stats.DodgeRating: 200}, time.Second*40, time.Minute*2) // Gnomeregan Auto-Blocker 600 (Cata Became Auto-Dodger) -// core.NewSimpleStatDefensiveTrinketEffect(32501, stats.Stats{stats.Health: 1750}, time.Second*20, time.Minute*3) // Shadowmoon Insignia -// core.NewSimpleStatDefensiveTrinketEffect(38289, stats.Stats{stats.DodgeRating: 66}, time.Second*40, time.Minute*2) // Coren's Lucky Coin - -// // Proc effects. Keep these in order by item ID. - -// core.NewItemEffect(11815, func(agent core.Agent) { -// character := agent.GetCharacter() -// if !character.AutoAttacks.AutoSwingMelee { -// return -// } - -// var handOfJusticeSpell *core.Spell -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 2, -// } -// procChance := 0.013333 - -// character.RegisterAura(core.Aura{ -// Label: "Hand of Justice", -// Duration: core.NeverExpires, -// OnInit: func(aura *core.Aura, sim *core.Simulation) { -// config := *character.AutoAttacks.MHConfig() -// config.ActionID = core.ActionID{ItemID: 11815} -// handOfJusticeSpell = character.GetOrRegisterSpell(config) -// }, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// // https://wotlk.wowhead.com/spell=15600/hand-of-justice, proc mask = 20. -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMelee) { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// if sim.RandomFloat("HandOfJustice") > procChance { -// return -// } -// icd.Use(sim) - -// aura.Unit.AutoAttacks.MaybeReplaceMHSwing(sim, handOfJusticeSpell).Cast(sim, result.Target) -// }, -// }) -// }) - -// core.NewItemEffect(28830, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Dragonspine Trophy Proc", core.ActionID{ItemID: 28830}, stats.Stats{stats.HasteRating: 325}, time.Second*10) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 20, -// } -// dpm := character.AutoAttacks.NewPPMManager(1.0, core.ProcMaskMeleeOrRanged) - -// character.RegisterAura(core.Aura{ -// Label: "Dragonspine Trophy", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "dragonspine") { -// icd.Use(sim) -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(30627, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Tsunami Talisman Proc", core.ActionID{ItemID: 30627}, stats.Stats{stats.AttackPower: 340, stats.RangedAttackPower: 340}, time.Second*10) -// const procChance = 0.1 - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 45, -// } - -// character.RegisterAura(core.Aura{ -// Label: "Tsunami Talisman", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Outcome.Matches(core.OutcomeCrit) { -// return -// } -// if !spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { -// return -// } -// if !icd.IsReady(sim) { -// return -// } -// if sim.RandomFloat("Tsunami Talisman") > procChance { -// return -// } - -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.NewItemEffect(32505, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Madness of the Betrayer Proc", core.ActionID{ItemID: 32505}, stats.Stats{stats.CritRating: 42}, time.Second*10) - -// dpm := character.AutoAttacks.NewPPMManager(1.0, core.ProcMaskMeleeOrRanged) - -// character.RegisterAura(core.Aura{ -// Label: "Madness of the Betrayer", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Madness of the Betrayer") { -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// core.NewItemEffect(34427, func(agent core.Agent) { -// character := agent.GetCharacter() - -// var bonusPerStack stats.Stats -// procAura := character.RegisterAura(core.Aura{ -// Label: "Blackened Naaru Sliver Proc", -// ActionID: core.ActionID{ItemID: 34427}, -// Duration: time.Second * 20, -// MaxStacks: 10, -// OnInit: func(aura *core.Aura, sim *core.Simulation) { -// bonusPerStack = stats.Stats{stats.AttackPower: 44, stats.RangedAttackPower: 44} -// }, -// OnStacksChange: func(aura *core.Aura, sim *core.Simulation, oldStacks int32, newStacks int32) { -// character.AddStatsDynamic(sim, bonusPerStack.Multiply(float64(newStacks-oldStacks))) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if result.Landed() && spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { -// aura.AddStack(sim) -// } -// }, -// }) - -// const procChance = 0.1 - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 45, -// } - -// character.RegisterAura(core.Aura{ -// Label: "Blackened Naaru Sliver", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// // mask 340 -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { -// return -// } -// if !icd.IsReady(sim) { -// return -// } -// if sim.RandomFloat("Blackened Naaru Sliver") > procChance { -// return -// } - -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.NewItemEffect(34472, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Shard of Contempt Proc", core.ActionID{ItemID: 34472}, stats.Stats{stats.AttackPower: 230, stats.RangedAttackPower: 230}, time.Second*20) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 45, -// } -// const procChance = 0.1 - -// character.RegisterAura(core.Aura{ -// Label: "Shard of Contempt", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() || !spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { -// return -// } -// if !icd.IsReady(sim) { -// return -// } -// if sim.RandomFloat("Shard of Contempt") > procChance { -// return -// } - -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_metagems.go b/sim/common/tbc/_metagems.go deleted file mode 100644 index aa56c6a68c..0000000000 --- a/sim/common/tbc/_metagems.go +++ /dev/null @@ -1,107 +0,0 @@ -package tbc - -// func init() { -// core.AddEffectsToTest = false -// // Keep these in order by item ID. - -// core.NewItemEffect(25893, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Mystic Focus Proc", core.ActionID{ItemID: 25893}, stats.Stats{stats.HasteRating: 320}, time.Second*4) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 35, -// } - -// character.RegisterAura(core.Aura{ -// Label: "Mystical Skyfire Diamond", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { -// if !icd.IsReady(sim) || sim.RandomFloat("Mystical Skyfire Diamond") > 0.15 { -// return -// } -// icd.Use(sim) -// procAura.Activate(sim) -// }, -// }) -// }) - -// core.NewItemEffect(25899, func(agent core.Agent) { -// agent.GetCharacter().PseudoStats.BonusDamage += 3 -// }) - -// core.NewItemEffect(25901, func(agent core.Agent) { -// character := agent.GetCharacter() -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 15, -// } -// manaMetrics := character.NewManaMetrics(core.ActionID{ItemID: 25901}) - -// character.RegisterAura(core.Aura{ -// Label: "Insightful Earthstorm Diamond", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { -// if !icd.IsReady(sim) || sim.RandomFloat("Insightful Earthstorm Diamond") > 0.04 { -// return -// } -// icd.Use(sim) -// character.AddMana(sim, 300, manaMetrics) -// }, -// }) -// }) - -// core.NewItemEffect(32410, func(agent core.Agent) { -// character := agent.GetCharacter() -// procAura := character.NewTemporaryStatsAura("Thundering Skyfire Diamond Proc", core.ActionID{ItemID: 32410}, stats.Stats{stats.HasteRating: 240}, time.Second*6) - -// icd := core.Cooldown{ -// Timer: character.NewTimer(), -// Duration: time.Second * 40, -// } -// dpm := character.AutoAttacks.NewPPMManager(1.5, core.ProcMaskWhiteHit) // Mask 68, melee or ranged auto attacks. - -// character.RegisterAura(core.Aura{ -// Label: "Thundering Skyfire Diamond", -// Duration: core.NeverExpires, -// OnReset: func(aura *core.Aura, sim *core.Simulation) { -// aura.Activate(sim) -// }, -// OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { -// if !result.Landed() { -// return -// } - -// if !icd.IsReady(sim) { -// return -// } - -// if dpm.Proc(sim, spell.ProcMask, "Thundering Skyfire Diamond") { -// icd.Use(sim) -// procAura.Activate(sim) -// } -// }, -// }) -// }) - -// // Eternal Earthstorm -// core.NewItemEffect(35501, func(agent core.Agent) { -// agent.GetCharacter().PseudoStats.BlockDamageReduction += 0.01 -// }) - -// core.NewItemEffect(35503, func(agent core.Agent) { -// agent.GetCharacter().MultiplyStat(stats.Intellect, 1.02) -// }) - -// // These are handled in character.go, but create empty effects, so they are included in tests. -// core.NewItemEffect(34220, func(_ core.Agent) {}) // Chaotic Skyfire Diamond -// core.NewItemEffect(32409, func(_ core.Agent) {}) // Relentless Earthstorm Diamond - -// core.AddEffectsToTest = true -// } diff --git a/sim/common/tbc/_other_items.go b/sim/common/tbc/_other_items.go deleted file mode 100644 index eda89463fe..0000000000 --- a/sim/common/tbc/_other_items.go +++ /dev/null @@ -1,13 +0,0 @@ -package tbc - -// func init() { -// core.NewItemEffect(30892, func(agent core.Agent) { -// for _, pet := range agent.GetCharacter().Pets { -// if pet.IsGuardian() { -// continue // not sure if this applies to guardians. -// } -// pet.PseudoStats.DamageDealtMultiplier *= 1.03 -// pet.AddStat(stats.PhysicalCritPercent, 2) -// } -// }) -// } diff --git a/sim/common/tbc/stat_bonus_procs.go b/sim/common/tbc/stat_bonus_procs.go deleted file mode 100644 index 86f06b33b2..0000000000 --- a/sim/common/tbc/stat_bonus_procs.go +++ /dev/null @@ -1,40 +0,0 @@ -package tbc - -import ( - "time" - - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -func init() { - core.AddEffectsToTest = false - - // Band of the Eternal Restorer - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - Name: "Band of the Eternal Restorer", - ItemID: 29309, - AuraID: 35087, - Bonus: stats.Stats{stats.SpellPower: 93}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskSpellDamage | core.ProcMaskSpellHealing, - ProcChance: 0.15, - ICD: time.Second * 45, - }) - - // Shattered Sun Pendant of Restoration - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - Name: "Light's Salvation", - ItemID: 34677, - AuraID: 45478, - Bonus: stats.Stats{stats.SpellPower: 117}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskSpellHealing, - ProcChance: 0.15, - ICD: time.Second * 45, - }) - -} diff --git a/sim/common/wotlk/_damage_procs.go b/sim/common/wotlk/_damage_procs.go deleted file mode 100644 index 53905e2a2d..0000000000 --- a/sim/common/wotlk/_damage_procs.go +++ /dev/null @@ -1,144 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" -) - -type ProcDamageEffect struct { - ID int32 - Trigger core.ProcTrigger - - School core.SpellSchool - MinDmg float64 - MaxDmg float64 -} - -func newProcDamageEffect(config ProcDamageEffect) { - core.NewItemEffect(config.ID, func(agent core.Agent) { - character := agent.GetCharacter() - - minDmg := config.MinDmg - maxDmg := config.MaxDmg - damageSpell := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{ItemID: config.ID}, - SpellSchool: config.School, - ProcMask: core.ProcMaskEmpty, - - DamageMultiplier: 1, - CritMultiplier: character.GetSpellCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - spell.CalcAndDealDamage(sim, target, sim.Roll(minDmg, maxDmg), spell.OutcomeMagicHitAndCrit) - }, - }) - - triggerConfig := config.Trigger - triggerConfig.Handler = func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - damageSpell.Cast(sim, character.CurrentTarget) - } - core.MakeProcTriggerAura(&character.Unit, triggerConfig) - }) -} - -func init() { - core.AddEffectsToTest = false - - newProcDamageEffect(ProcDamageEffect{ - ID: 37064, - Trigger: core.ProcTrigger{ - Name: "Vestige of Haldor", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - ProcChance: 0.15, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: 37064}, - }, - School: core.SpellSchoolFire, - MinDmg: 1024, - MaxDmg: 1536, - }) - - newProcDamageEffect(ProcDamageEffect{ - ID: 37264, - Trigger: core.ProcTrigger{ - Name: "Pendulum of Telluric Currents", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskSpellOrProc, - Outcome: core.OutcomeLanded, - ProcChance: 0.15, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: 37264}, - }, - School: core.SpellSchoolShadow, - MinDmg: 1168, - MaxDmg: 1752, - }) - - newProcDamageEffect(ProcDamageEffect{ - ID: 39889, - Trigger: core.ProcTrigger{ - Name: "Horn of Agent Fury", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - ProcChance: 0.15, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: 39889}, - }, - School: core.SpellSchoolHoly, - MinDmg: 1024, - MaxDmg: 1536, - }) - - core.AddEffectsToTest = true - - newProcDamageEffect(ProcDamageEffect{ - ID: 40371, - Trigger: core.ProcTrigger{ - Name: "Bandit's Insignia", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - ProcChance: 0.15, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: 40371}, - }, - School: core.SpellSchoolArcane, - MinDmg: 1504, - MaxDmg: 2256, - }) - - newProcDamageEffect(ProcDamageEffect{ - ID: 40373, - Trigger: core.ProcTrigger{ - Name: "Extract of Necromantic Power", - Callback: core.CallbackOnPeriodicDamageDealt, - Harmful: true, - ProcChance: 0.10, - ICD: time.Second * 15, - ActionID: core.ActionID{ItemID: 40373}, - }, - School: core.SpellSchoolShadow, - MinDmg: 788, - MaxDmg: 1312, - }) - - newProcDamageEffect(ProcDamageEffect{ - ID: 42990, - Trigger: core.ProcTrigger{ - Name: "DMC Death", - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - Harmful: true, - ProcChance: 0.15, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: 42990}, - }, - School: core.SpellSchoolShadow, - MinDmg: 1750, - MaxDmg: 2250, - }) -} diff --git a/sim/common/wotlk/_highest_stat_effects.go b/sim/common/wotlk/_highest_stat_effects.go deleted file mode 100644 index eb9b3849cb..0000000000 --- a/sim/common/wotlk/_highest_stat_effects.go +++ /dev/null @@ -1,149 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -type HighestStatAura struct { - statOptions []stats.Stat - auras []*core.Aura - factory func(stat stats.Stat) *core.Aura -} - -func (hsa HighestStatAura) Init(character *core.Character) { - for i, stat := range hsa.statOptions { - hsa.auras[i] = hsa.factory(stat) - } -} - -func (hsa HighestStatAura) Get(character *core.Character) *core.Aura { - bestValue := 0.0 - bestIdx := 0 - - for i, stat := range hsa.statOptions { - value := character.GetStat(stat) - if value > bestValue { - bestValue = value - bestIdx = i - } - } - - a := hsa.auras[bestIdx] - if a == nil { - a = hsa.factory(hsa.statOptions[bestIdx]) - hsa.auras[bestIdx] = a - } - return a -} - -func NewHighestStatAura(statOptions []stats.Stat, auraFactory func(stat stats.Stat) *core.Aura) HighestStatAura { - return HighestStatAura{ - statOptions: statOptions, - factory: auraFactory, - auras: make([]*core.Aura, len(statOptions)), - } -} - -func init() { - newDMCGreatnessEffect := func(itemID int32) { - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - auraIDs := map[stats.Stat]core.ActionID{ - stats.Strength: core.ActionID{SpellID: 60229}, - stats.Agility: core.ActionID{SpellID: 60233}, - stats.Intellect: core.ActionID{SpellID: 60234}, - stats.Spirit: core.ActionID{SpellID: 60235}, - } - - hsa := NewHighestStatAura( - []stats.Stat{ - stats.Strength, - stats.Agility, - stats.Intellect, - stats.Spirit, - }, - func(stat stats.Stat) *core.Aura { - bonus := stats.Stats{} - bonus[stat] = 300 - actionId := auraIDs[stat] - return character.NewTemporaryStatsAura("DMC Greatness "+stat.StatName()+" Proc", actionId, bonus, time.Second*15) - }) - - hsa.Init(character) - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "DMC Greatness", - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt | core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - ProcMask: core.ProcMaskDirect | core.ProcMaskSpellHealing | core.ProcMaskProc, - Harmful: true, - ProcChance: 0.35, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: itemID}, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - hsa.Get(character).Activate(sim) - }, - }) - hsa.Get(character).Icd = triggerAura.Icd - }) - } - core.AddEffectsToTest = false - newDMCGreatnessEffect(42987) - newDMCGreatnessEffect(44253) - newDMCGreatnessEffect(44254) - core.AddEffectsToTest = true - newDMCGreatnessEffect(44255) - - newDeathsChoiceEffect := func(itemID int32, auraIDs map[stats.Stat]core.ActionID, name string, amount float64) { - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - hsa := NewHighestStatAura( - []stats.Stat{ - stats.Strength, - stats.Agility, - }, - func(stat stats.Stat) *core.Aura { - bonus := stats.Stats{} - bonus[stat] = amount - actionId := auraIDs[stat] - return character.NewTemporaryStatsAura(name+" "+stat.StatName()+" Proc", actionId, bonus, time.Second*15) - }) - - hsa.Init(character) - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - ProcMask: core.ProcMaskDirect | core.ProcMaskMeleeProc, - Harmful: true, - ProcChance: 0.35, - ActionID: core.ActionID{ItemID: itemID}, - ICD: time.Second * 45, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - hsa.Get(character).Activate(sim) - }, - }) - hsa.Get(character).Icd = triggerAura.Icd - }) - } - core.AddEffectsToTest = false - - normalAuraIDs := map[stats.Stat]core.ActionID{ - stats.Strength: core.ActionID{SpellID: 67708}, - stats.Agility: core.ActionID{SpellID: 67703}, - } - - heroicAuraIDs := map[stats.Stat]core.ActionID{ - stats.Strength: core.ActionID{SpellID: 67773}, - stats.Agility: core.ActionID{SpellID: 67772}, - } - - newDeathsChoiceEffect(47115, normalAuraIDs, "Deaths Verdict", 450) - newDeathsChoiceEffect(47131, heroicAuraIDs, "Deaths Verdict H", 510) - - newDeathsChoiceEffect(47303, normalAuraIDs, "Deaths Choice", 450) - core.AddEffectsToTest = true - newDeathsChoiceEffect(47464, heroicAuraIDs, "Deaths Choice H", 510) -} diff --git a/sim/common/wotlk/_item_sets.go b/sim/common/wotlk/_item_sets.go deleted file mode 100644 index 25b9761c00..0000000000 --- a/sim/common/wotlk/_item_sets.go +++ /dev/null @@ -1,142 +0,0 @@ -package wotlk - -// Keep these in alphabetical order. - -// var ItemSetPurifiedShardOfTheGods = core.NewItemSet(core.ItemSet{ -// Name: "Purified Shard of the Gods", -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(agent core.Agent, setBonusAura *core.Aura) { -// agent.GetCharacter().AddStats(stats.Stats{stats.SpellPower: 222}) -// applyShardOfTheGodsDamageProc(agent.GetCharacter(), false) -// applyShardOfTheGodsHealingProc(agent.GetCharacter(), false) -// }, -// }, -// }) - -// var ItemSetShinyShardOfTheGods = core.NewItemSet(core.ItemSet{ -// Name: "Shiny Shard of the Gods", -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(agent core.Agent, setBonusAura *core.Aura) { -// agent.GetCharacter().AddStats(stats.Stats{stats.SpellPower: 250}) -// applyShardOfTheGodsDamageProc(agent.GetCharacter(), true) -// applyShardOfTheGodsHealingProc(agent.GetCharacter(), true) -// }, -// }, -// }) - -// func applyShardOfTheGodsDamageProc(character *core.Character, isHeroic bool) { -// name := "Searing Flames" -// actionID := core.ActionID{SpellID: 69729} -// tickAmount := 477.0 -// if isHeroic { -// name += " H" -// actionID = core.ActionID{SpellID: 69730} -// tickAmount = 532.0 -// } - -// dotSpell := character.RegisterSpell(core.SpellConfig{ -// ActionID: actionID, -// SpellSchool: core.SpellSchoolFire, -// ProcMask: core.ProcMaskSpellDamage, - -// DamageMultiplier: 1, -// ThreatMultiplier: 1, - -// Dot: core.DotConfig{ -// Aura: core.Aura{ -// Label: name, -// }, -// NumberOfTicks: 6, -// TickLength: time.Second * 2, -// OnSnapshot: func(sim *core.Simulation, target *core.Unit, dot *core.Dot, isRollover bool) { -// dot.SnapshotBaseDamage = tickAmount -// dot.SnapshotAttackerMultiplier = dot.Spell.AttackerDamageMultiplier(dot.Spell.Unit.AttackTables[target.UnitIndex], true) -// }, -// OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { -// dot.CalcAndDealPeriodicSnapshotDamage(sim, target, dot.OutcomeTick) -// }, -// }, -// }) - -// core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ -// Name: name + " Trigger", -// Callback: core.CallbackOnSpellHitDealt, -// ProcMask: core.ProcMaskSpellDamage, -// Outcome: core.OutcomeLanded, -// ProcChance: 0.25, -// ICD: time.Second * 50, -// Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { -// dotSpell.Dot(result.Target).Apply(sim) -// }, -// }) -// } - -// func applyShardOfTheGodsHealingProc(character *core.Character, isHeroic bool) { -// name := "Cauterizing Heal" -// actionID := core.ActionID{SpellID: 69733} -// minHeal := 2269.0 -// maxHeal := 2773.0 -// if isHeroic { -// name += " H" -// actionID = core.ActionID{SpellID: 69734} -// minHeal = 2530.0 -// maxHeal = 3092.0 -// } - -// spell := character.RegisterSpell(core.SpellConfig{ -// ActionID: actionID, -// SpellSchool: core.SpellSchoolHoly, -// ProcMask: core.ProcMaskSpellHealing, -// Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - -// DamageMultiplier: 1, -// ThreatMultiplier: 1, -// CritMultiplier: character.DefaultHealingCritMultiplier(), - -// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { -// baseHealing := sim.Roll(minHeal, maxHeal) -// spell.CalcAndDealHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) -// }, -// }) - -// core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ -// Name: name + " Trigger", -// Callback: core.CallbackOnHealDealt, -// ProcChance: 0.25, -// ICD: time.Second * 50, -// Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { -// spell.Cast(sim, result.Target) -// }, -// }) -// } - -// func makeUndeadSet(setName string) *core.ItemSet { -// return core.NewItemSet(core.ItemSet{ -// Name: setName, -// Bonuses: map[int32]core.ApplySetBonus{ -// 2: func(agent core.Agent, setBonusAura *core.Aura) { -// character := agent.GetCharacter() -// if character.CurrentTarget.MobType == proto.MobType_MobTypeUndead { -// character.PseudoStats.DamageDealtMultiplier *= 1.01 -// } -// }, -// 3: func(agent core.Agent) { -// character := agent.GetCharacter() -// if character.CurrentTarget.MobType == proto.MobType_MobTypeUndead { -// character.PseudoStats.DamageDealtMultiplier *= 1.02 / 1.01 -// } -// }, -// 4: func(agent core.Agent, setBonusAura *core.Aura) { -// character := agent.GetCharacter() -// if character.CurrentTarget.MobType == proto.MobType_MobTypeUndead { -// character.PseudoStats.DamageDealtMultiplier *= 1.03 / 1.02 -// } -// }, -// }, -// }) -// } - -// var ItemSetBlessedBattlegearOfUndeadSlaying = makeUndeadSet("Blessed Battlegear of Undead Slaying") -// var ItemSetBlessedRegaliaOfUndeadCleansing = makeUndeadSet("Blessed Regalia of Undead Cleansing") -// var ItemSetBlessedGarbOfTheUndeadSlayer = makeUndeadSet("Blessed Garb of the Undead Slayer") -// var ItemSetUndeadSlayersBlessedArmor = makeUndeadSet("Undead Slayer's Blessed Armor") diff --git a/sim/common/wotlk/_metagems.go b/sim/common/wotlk/_metagems.go deleted file mode 100644 index e40fede15e..0000000000 --- a/sim/common/wotlk/_metagems.go +++ /dev/null @@ -1,114 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -func init() { - // Keep these in order by item ID. - - // TODO: Destructive Skyflare (1% spell reflect) - - core.NewItemEffect(41333, func(agent core.Agent) { - agent.GetCharacter().MultiplyStat(stats.Intellect, 1.02) - }) - - core.NewItemEffect(41377, func(agent core.Agent) { - character := agent.GetCharacter() - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexArcane] *= 0.98 - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexFire] *= 0.98 - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexFrost] *= 0.98 - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexHoly] *= 0.98 - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexNature] *= 0.98 - character.PseudoStats.SchoolDamageTakenMultiplier[stats.SchoolIndexShadow] *= 0.98 - }) - - core.NewItemEffect(41380, func(agent core.Agent) { - character := agent.GetCharacter() - character.ApplyEquipScaling(stats.Armor, 1.02) - }) - - core.NewItemEffect(41385, func(agent core.Agent) { - character := agent.GetCharacter() - - healSpell := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 55341}, - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskSpellHealing, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - DamageMultiplier: 1, - CritMultiplier: character.DefaultHealingCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseHealing := 0.02 * target.MaxHealth() - spell.CalcAndDealHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) - }, - }) - - core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Invigorating Earthsiege Diamond", - ProcMask: core.ProcMaskMeleeOrRanged, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt | core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - Outcome: core.OutcomeCrit, - ProcChance: 0.5, - ICD: time.Second * 45, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - healSpell.Cast(sim, &character.Unit) - }, - }) - }) - - core.NewItemEffect(41389, func(agent core.Agent) { - agent.GetCharacter().MultiplyStat(stats.Mana, 1.02) - }) - - core.NewItemEffect(41395, func(agent core.Agent) { - character := agent.GetCharacter() - character.PseudoStats.ThreatMultiplier *= 0.98 - }) - - // Eternal Earthsiege - core.NewItemEffect(41396, func(agent core.Agent) { - agent.GetCharacter().PseudoStats.BlockDamageReduction += 0.01 - }) - - core.NewItemEffect(41400, func(agent core.Agent) { - character := agent.GetCharacter() - procAura := character.NewTemporaryStatsAura("Thundering Skyflare Diamond Proc", core.ActionID{SpellID: 55379}, stats.Stats{stats.MeleeHaste: 480}, time.Second*6) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Thundering Skyflare Diamond", - Callback: core.CallbackOnSpellHitDealt, - // Mask 68, melee or ranged auto attacks. - ProcMask: core.ProcMaskWhiteHit, - Outcome: core.OutcomeLanded, - PPM: 1, - ICD: time.Second * 40, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - }, - }) - procAura.Icd = triggerAura.Icd - }) - - core.NewItemEffect(41401, func(agent core.Agent) { - character := agent.GetCharacter() - manaMetrics := character.NewManaMetrics(core.ActionID{SpellID: 55382}) - - core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Insightful Earthsiege Diamond", - Callback: core.CallbackOnCastComplete, - ProcChance: 0.05, - ICD: time.Second * 15, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - character.AddMana(sim, 600, manaMetrics) - }, - ProcMask: core.ProcMaskDirect | core.ProcMaskSpecial, - }) - }) -} diff --git a/sim/common/wotlk/_stat_bonus_stacking.go b/sim/common/wotlk/_stat_bonus_stacking.go deleted file mode 100644 index fdeaf4ff77..0000000000 --- a/sim/common/wotlk/_stat_bonus_stacking.go +++ /dev/null @@ -1,522 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -type StackingStatBonusEffect struct { - Name string - ID int32 - AuraID int32 - Bonus stats.Stats - Duration time.Duration - MaxStacks int32 - Callback core.AuraCallback - ProcMask core.ProcMask - SpellFlags core.SpellFlag - Outcome core.HitOutcome - Harmful bool - ProcChance float64 -} - -func newStackingStatBonusEffect(config StackingStatBonusEffect) { - core.NewItemEffect(config.ID, func(agent core.Agent) { - character := agent.GetCharacter() - - auraID := core.ActionID{SpellID: config.AuraID} - if auraID.IsEmptyAction() { - auraID = core.ActionID{ItemID: config.ID} - } - procAura := core.MakeStackingAura(character, core.StackingStatAura{ - Aura: core.Aura{ - Label: config.Name + " Proc", - ActionID: auraID, - Duration: config.Duration, - MaxStacks: config.MaxStacks, - }, - BonusPerStack: config.Bonus, - }) - - core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - ActionID: core.ActionID{ItemID: config.ID}, - Name: config.Name, - Callback: config.Callback, - ProcMask: config.ProcMask, - SpellFlags: config.SpellFlags, - Outcome: config.Outcome, - Harmful: config.Harmful, - ProcChance: config.ProcChance, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - procAura.AddStack(sim) - }, - }) - }) -} - -type StackingStatBonusCD struct { - Name string - ID int32 - AuraID int32 - Bonus stats.Stats - Duration time.Duration - MaxStacks int32 - CD time.Duration - Callback core.AuraCallback - ProcMask core.ProcMask - SpellFlags core.SpellFlag - Outcome core.HitOutcome - Harmful bool - ProcChance float64 - IsDefensive bool -} - -func newStackingStatBonusCD(config StackingStatBonusCD) { - core.NewItemEffect(config.ID, func(agent core.Agent) { - character := agent.GetCharacter() - - auraID := core.ActionID{SpellID: config.AuraID} - if auraID.IsEmptyAction() { - auraID = core.ActionID{ItemID: config.ID} - } - buffAura := core.MakeStackingAura(character, core.StackingStatAura{ - Aura: core.Aura{ - Label: config.Name + " Aura", - ActionID: auraID, - Duration: config.Duration, - MaxStacks: config.MaxStacks, - }, - BonusPerStack: config.Bonus, - }) - - core.ApplyProcTriggerCallback(&character.Unit, buffAura, core.ProcTrigger{ - Name: config.Name, - Callback: config.Callback, - ProcMask: config.ProcMask, - SpellFlags: config.SpellFlags, - Outcome: config.Outcome, - Harmful: config.Harmful, - ProcChance: config.ProcChance, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - buffAura.AddStack(sim) - }, - }) - - var sharedTimer *core.Timer - if config.IsDefensive { - sharedTimer = character.GetDefensiveTrinketCD() - } else { - sharedTimer = character.GetOffensiveTrinketCD() - } - - spell := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{ItemID: config.ID}, - Flags: core.SpellFlagNoOnCastComplete, - - Cast: core.CastConfig{ - CD: core.Cooldown{ - Timer: character.NewTimer(), - Duration: config.CD, - }, - SharedCD: core.Cooldown{ - Timer: sharedTimer, - Duration: config.Duration, - }, - }, - - ApplyEffects: func(sim *core.Simulation, _ *core.Unit, spell *core.Spell) { - buffAura.Activate(sim) - }, - }) - - character.AddMajorCooldown(core.MajorCooldown{ - Spell: spell, - Type: core.CooldownTypeDPS, - }) - }) -} - -func init() { - core.NewItemEffect(38212, func(agent core.Agent) { - character := agent.GetCharacter() - - procAura := core.MakeStackingAura(character, core.StackingStatAura{ - Aura: core.Aura{ - Label: "Death Knight's Anguish Proc", - ActionID: core.ActionID{SpellID: 54697}, - Duration: time.Second * 20, - MaxStacks: 10, - OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - if result.Landed() && spell.ProcMask.Matches(core.ProcMaskMeleeOrRanged) { - aura.AddStack(sim) - } - }, - }, - BonusPerStack: stats.Stats{stats.MeleeCrit: 15, stats.SpellCrit: 15}, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Death Knight's Anguish", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - ProcChance: 0.1, - ActionID: core.ActionID{SpellID: 54696}, - ICD: time.Second * 45, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - }, - }) - procAura.Icd = triggerAura.Icd - }) - - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Majestic Dragon Figurine", - ID: 40430, - AuraID: 60525, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.Spirit: 18}, - Callback: core.CallbackOnCastComplete, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Fury of the Five Fights", - ID: 40431, - AuraID: 60314, - Duration: time.Second * 10, - MaxStacks: 20, - Bonus: stats.Stats{stats.AttackPower: 16, stats.RangedAttackPower: 16}, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Harmful: true, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Illustration of the Dragon Soul", - ID: 40432, - AuraID: 60486, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.SpellPower: 20}, - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellHealing | core.ProcMaskSpellDamage, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "DMC Berserker", - ID: 42989, - AuraID: 60196, - Duration: time.Second * 12, - MaxStacks: 3, - Bonus: stats.Stats{stats.MeleeCrit: 35, stats.SpellCrit: 35}, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnSpellHitTaken, - Harmful: true, - ProcChance: 0.5, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Eye of the Broodmother", - ID: 45308, - AuraID: 65006, - Duration: time.Second * 10, - MaxStacks: 5, - Bonus: stats.Stats{stats.SpellPower: 26}, - Callback: core.CallbackOnHealDealt | core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicHealDealt | core.CallbackOnPeriodicDamageDealt, - }) - - core.AddEffectsToTest = false - - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Solance of the Defeated", - ID: 47041, - AuraID: 67696, - Duration: time.Second * 10, - MaxStacks: 8, - Bonus: stats.Stats{stats.MP5: 16}, - Callback: core.CallbackOnCastComplete, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Solace of the Defeated H", - ID: 47059, - AuraID: 67750, - Duration: time.Second * 10, - MaxStacks: 8, - Bonus: stats.Stats{stats.MP5: 18}, - Callback: core.CallbackOnCastComplete, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Solace of the Fallen", - ID: 47271, - AuraID: 67696, - Duration: time.Second * 10, - MaxStacks: 8, - Bonus: stats.Stats{stats.MP5: 16}, - Callback: core.CallbackOnCastComplete, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Solace of the Fallen H", - ID: 47432, - AuraID: 67750, - Duration: time.Second * 10, - MaxStacks: 8, - Bonus: stats.Stats{stats.MP5: 18}, - Callback: core.CallbackOnCastComplete, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Muradin's Spyglass", - ID: 50340, - AuraID: 71570, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.SpellPower: 18}, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - Harmful: true, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Muradin's Spyglass H", - ID: 50345, - AuraID: 71572, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.SpellPower: 20}, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - Harmful: true, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Unidentifiable Organ", - ID: 50341, - AuraID: 71575, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.Stamina: 24}, - Callback: core.CallbackOnSpellHitTaken, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - ProcChance: 0.6, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Unidentifiable Organ H", - ID: 50344, - AuraID: 71577, - Duration: time.Second * 10, - MaxStacks: 10, - Bonus: stats.Stats{stats.Stamina: 27}, - Callback: core.CallbackOnSpellHitTaken, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - ProcChance: 0.6, - }) - newStackingStatBonusEffect(StackingStatBonusEffect{ - Name: "Herkuml War Token", - ID: 50355, - AuraID: 71396, - Duration: time.Second * 10, - MaxStacks: 20, - Bonus: stats.Stats{stats.AttackPower: 17, stats.RangedAttackPower: 17}, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Harmful: true, - }) - - // Stacking CD effects - - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Meteorite Crystal", - ID: 46051, - AuraID: 65000, - Duration: time.Second * 20, - MaxStacks: 20, - Bonus: stats.Stats{stats.MP5: 85}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - IsDefensive: true, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Victor's Call", - ID: 47725, - AuraID: 67737, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.AttackPower: 215, stats.RangedAttackPower: 215}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Victor's Call H", - ID: 47948, - AuraID: 67746, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.AttackPower: 250, stats.RangedAttackPower: 250}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Talisman of Volatile Power", - ID: 47726, - AuraID: 67735, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.MeleeHaste: 57, stats.SpellHaste: 57}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Talisman of Volatile Power H", - ID: 47946, - AuraID: 67743, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.MeleeHaste: 64, stats.SpellHaste: 64}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Fervor of the Frostborn", - ID: 47727, - AuraID: 67727, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.Armor: 1265}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitTaken, - Outcome: core.OutcomeLanded, - IsDefensive: true, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Ferver of the Frostborn H", - ID: 47949, - AuraID: 67741, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.Armor: 1422}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitTaken, - Outcome: core.OutcomeLanded, - IsDefensive: true, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Binding Light", - ID: 47728, - AuraID: 67723, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.SpellPower: 66}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - SpellFlags: core.SpellFlagHelpful, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Binding Light H", - ID: 47947, - AuraID: 67739, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.SpellPower: 74}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - SpellFlags: core.SpellFlagHelpful, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Fetish of Volatile Power", - ID: 47879, - AuraID: 67735, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.MeleeHaste: 57, stats.SpellHaste: 57}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Fetish of Volatile Power H", - ID: 48018, - AuraID: 67743, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.MeleeHaste: 64, stats.SpellHaste: 64}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskSpellDamageProc | core.ProcMaskSuppressedProc, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Binding Stone", - ID: 47880, - AuraID: 67723, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.SpellPower: 66}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - SpellFlags: core.SpellFlagHelpful, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Binding Stone H", - ID: 48019, - AuraID: 67739, - Duration: time.Second * 20, - MaxStacks: 8, - Bonus: stats.Stats{stats.SpellPower: 74}, - CD: time.Minute * 2, - Callback: core.CallbackOnCastComplete, - SpellFlags: core.SpellFlagHelpful, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Vengeance of the Forsaken", - ID: 47881, - AuraID: 67737, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.AttackPower: 215, stats.RangedAttackPower: 215}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Vengeance of the Forsaken H", - ID: 48020, - AuraID: 67746, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.AttackPower: 250, stats.RangedAttackPower: 250}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Eitrigg's Oath", - ID: 47882, - AuraID: 67727, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.Armor: 1265}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitTaken, - Outcome: core.OutcomeLanded, - IsDefensive: true, - }) - newStackingStatBonusCD(StackingStatBonusCD{ - Name: "Eitrigg's Oath H", - ID: 48021, - AuraID: 67741, - Duration: time.Second * 20, - MaxStacks: 5, - Bonus: stats.Stats{stats.Armor: 1422}, - CD: time.Minute * 2, - Callback: core.CallbackOnSpellHitTaken, - Outcome: core.OutcomeLanded, - IsDefensive: true, - }) - - core.AddEffectsToTest = true -} diff --git a/sim/common/wotlk/capacitors.go b/sim/common/wotlk/capacitors.go deleted file mode 100644 index 65252dd168..0000000000 --- a/sim/common/wotlk/capacitors.go +++ /dev/null @@ -1,251 +0,0 @@ -package wotlk - -import ( - "github.com/wowsims/cata/sim/core" -) - -type CapacitorHandler func(*core.Simulation) - -type CapacitorAura struct { - Aura core.Aura - Handler CapacitorHandler -} - -// Creates an aura which activates a handler function upon reaching a certain number of stacks. -func makeCapacitorAura(unit *core.Unit, config CapacitorAura) *core.Aura { - handler := config.Handler - config.Aura.OnStacksChange = func(aura *core.Aura, sim *core.Simulation, oldStacks int32, newStacks int32) { - if newStacks == aura.MaxStacks { - handler(sim) - aura.SetStacks(sim, 0) - } - } - return unit.RegisterAura(config.Aura) -} - -type CapacitorDamageEffect struct { - Name string - ID int32 - MaxStacks int32 - Trigger core.ProcTrigger - - School core.SpellSchool - MinDmg float64 - MaxDmg float64 -} - -func newCapacitorDamageEffect(config CapacitorDamageEffect) { - core.NewItemEffect(config.ID, func(agent core.Agent) { - character := agent.GetCharacter() - - minDmg := config.MinDmg - maxDmg := config.MaxDmg - damageSpell := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{ItemID: config.ID}, - SpellSchool: config.School, - ProcMask: core.ProcMaskEmpty, - - DamageMultiplier: 1, - CritMultiplier: character.DefaultSpellCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - spell.CalcAndDealDamage(sim, target, sim.Roll(minDmg, maxDmg), spell.OutcomeMagicHitAndCrit) - }, - }) - - capacitorAura := makeCapacitorAura(&character.Unit, CapacitorAura{ - Aura: core.Aura{ - Label: config.Name, - ActionID: core.ActionID{ItemID: config.ID}, - Duration: core.NeverExpires, - MaxStacks: config.MaxStacks, - }, - Handler: func(sim *core.Simulation) { - damageSpell.Cast(sim, character.CurrentTarget) - }, - }) - - config.Trigger.Name = config.Name + " Trigger" - config.Trigger.Handler = func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - capacitorAura.Activate(sim) - capacitorAura.AddStack(sim) - } - triggerAura := core.MakeProcTriggerAura(&character.Unit, config.Trigger) - - character.ItemSwap.RegisterProc(config.ID, triggerAura) - }) -} - -func init() { - core.AddEffectsToTest = false - - // newCapacitorDamageEffect(CapacitorDamageEffect{ - // Name: "Thunder Capacitor", - // ID: 38072, - // MaxStacks: 4, - // Trigger: core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc, - // Outcome: core.OutcomeCrit, - // ICD: time.Millisecond * 2500, - // ActionID: core.ActionID{ItemID: 38072}, - // }, - // School: core.SpellSchoolNature, - // MinDmg: 1181, - // MaxDmg: 1371, - // }) - // newCapacitorDamageEffect(CapacitorDamageEffect{ - // Name: "Reign of the Unliving", - // ID: 47182, - // MaxStacks: 3, - // Trigger: core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc, - // Outcome: core.OutcomeCrit, - // ICD: time.Millisecond * 2000, - // ActionID: core.ActionID{ItemID: 47182}, - // }, - // School: core.SpellSchoolFire, - // MinDmg: 1741, - // MaxDmg: 2023, - // }) - // newCapacitorDamageEffect(CapacitorDamageEffect{ - // Name: "Reign of the Unliving H", - // ID: 47188, - // MaxStacks: 3, - // Trigger: core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc, - // Outcome: core.OutcomeCrit, - // ICD: time.Millisecond * 2000, - // ActionID: core.ActionID{ItemID: 47188}, - // }, - // School: core.SpellSchoolFire, - // MinDmg: 1959, - // MaxDmg: 2275, - // }) - - core.AddEffectsToTest = true - - // newCapacitorDamageEffect(CapacitorDamageEffect{ - // Name: "Reign of the Dead", - // ID: 47316, - // MaxStacks: 3, - // Trigger: core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc, - // Outcome: core.OutcomeCrit, - // ICD: time.Millisecond * 2000, - // ActionID: core.ActionID{ItemID: 47316}, - // }, - // School: core.SpellSchoolFire, - // MinDmg: 1741, - // MaxDmg: 2023, - // }) - // newCapacitorDamageEffect(CapacitorDamageEffect{ - // Name: "Reign of the Dead H", - // ID: 47477, - // MaxStacks: 3, - // Trigger: core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc, - // Outcome: core.OutcomeCrit, - // ICD: time.Millisecond * 2000, - // ActionID: core.ActionID{ItemID: 47477}, - // }, - // School: core.SpellSchoolFire, - // MinDmg: 1959, - // MaxDmg: 2275, - // }) - - // see various posts around https://web.archive.org/web/20100530203708/http://elitistjerks.com/f78/t39136-combat_mutilate_spreadsheets_updated_3_3_a/p96/#post1518212 - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Tiny Abomination in a Jar" - itemID := int32(50351) - maxStacks := int32(8) - if isHeroic { - name += " H" - itemID = 50706 - maxStacks = 7 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - if !character.AutoAttacks.AutoSwingMelee { - return - } - - registerSpell := func(spellID int32, procMask core.ProcMask, autoAttackConfig *core.SpellConfig, weaponDamagefn func(sim *core.Simulation, ap float64) float64) *core.Spell { - return character.GetOrRegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: spellID}, // "Manifest Anger" - SpellSchool: core.SpellSchoolPhysical, - ProcMask: procMask, - Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagNoOnCastComplete, - DamageMultiplier: autoAttackConfig.DamageMultiplier * 0.5, - CritMultiplier: autoAttackConfig.CritMultiplier, - ThreatMultiplier: autoAttackConfig.ThreatMultiplier, - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := weaponDamagefn(sim, spell.MeleeAttackPower()) - spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeWeaponSpecialHitAndCrit) - }, - }) - } - - var mhSpell *core.Spell - var ohSpell *core.Spell - - firstProc := core.MainHand - - capacitorAura := makeCapacitorAura(&character.Unit, CapacitorAura{ - Aura: core.Aura{ - Label: name, - ActionID: core.ActionID{SpellID: 71432}, // "Motes of Anger", the aura is either 71406 or 71545 (H) ("Anger Capacitor") - Duration: core.NeverExpires, - MaxStacks: maxStacks, - OnInit: func(aura *core.Aura, sim *core.Simulation) { - mhSpell = registerSpell(71433, core.ProcMaskMeleeMHSpecial, character.AutoAttacks.MHConfig(), character.MHWeaponDamage) - ohSpell = registerSpell(71434, core.ProcMaskMeleeOHSpecial, character.AutoAttacks.OHConfig(), character.OHWeaponDamage) - }, - }, - Handler: func(sim *core.Simulation) { - if firstProc == core.MainHand { - mhSpell.Cast(sim, character.CurrentTarget) - } else { - ohSpell.Cast(sim, character.CurrentTarget) - } - }, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrMeleeProc, - Outcome: core.OutcomeLanded, - ActionID: core.ActionID{ItemID: itemID}, - ProcChance: 0.5, - Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - if spell == mhSpell || spell == ohSpell { // can't proc itself - return - } - hasOffHand := character.OffHand().ID != 0 - if !capacitorAura.IsActive() { - if spell.ProcMask.Matches(core.ProcMaskMeleeMH | core.ProcMaskMeleeProc) { - firstProc = core.MainHand - } else if hasOffHand { - firstProc = core.OffHand - } - } - if firstProc == core.OffHand && !hasOffHand { - return - } - - capacitorAura.Activate(sim) - capacitorAura.AddStack(sim) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) -} diff --git a/sim/common/wotlk/enchant_effects.go b/sim/common/wotlk/enchant_effects.go index 201d2ac020..65bffe934b 100644 --- a/sim/common/wotlk/enchant_effects.go +++ b/sim/common/wotlk/enchant_effects.go @@ -3,10 +3,10 @@ package wotlk import ( "time" - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/common/shared" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func init() { @@ -248,81 +248,6 @@ func init() { w.BaseDamageMax += 15 }) - //core.NewEnchantEffect(3603, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{SpellID: 54757} - - // spell := character.GetOrRegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // SpellSchool: core.SpellSchoolFire, - // ProcMask: core.ProcMaskEmpty, - // Flags: core.SpellFlagNoOnCastComplete, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Second * 45, - // }, - // SharedCD: core.Cooldown{ - // Timer: character.GetOffensiveTrinketCD(), - // Duration: time.Second * 10, - // }, - // }, - - // DamageMultiplier: 1, - // CritMultiplier: character.GetSpellCritMultiplier(), - // ThreatMultiplier: 1, - - // ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - // spell.CalcAndDealDamage(sim, target, sim.Roll(1654, 2020), spell.OutcomeMagicCrit) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Spell: spell, - // Priority: core.CooldownPriorityLow, // Use low prio so other actives get used first. - // Type: core.CooldownTypeDPS, - // }) - //}) - - //core.NewEnchantEffect(3604, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{SpellID: 54758} - - // procAura := character.NewTemporaryStatsAura("Hyperspeed Acceleration", actionID, stats.Stats{stats.HasteRating: 340}, time.Second*12) - - // spell := character.GetOrRegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // SpellSchool: core.SpellSchoolPhysical, - // Flags: core.SpellFlagNoOnCastComplete, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Second * 60, - // }, - // // Shared CD with Offensive trinkets has been removed. - // // https://twitter.com/AggrendWoW/status/1579664462843633664 - // // Change possibly temporary, but developers have confirmed it was intended. - - // // SharedCD: core.Cooldown{ - // // Timer: character.GetOffensiveTrinketCD(), - // // Duration: time.Second * 12, - // // }, - // }, - - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - // procAura.Activate(sim) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Spell: spell, - // Priority: core.CooldownPriorityLow, // Use low prio so other actives get used first. - // Type: core.CooldownTypeDPS, - // }) - //}) - // Enchant: 3722, Spell: 55642 - Lightweave Embroidery shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ Name: "Lightweave Embroidery", diff --git a/sim/common/wotlk/other_effects.go b/sim/common/wotlk/other_effects.go deleted file mode 100644 index c75db768d7..0000000000 --- a/sim/common/wotlk/other_effects.go +++ /dev/null @@ -1,1145 +0,0 @@ -package wotlk - -import ( - "math" - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" -) - -func init() { - // core.NewItemEffect(37220, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 37220} - - // procAura := character.RegisterAura(core.Aura{ - // Label: "Essence of Gossamer", - // ActionID: actionID, - // Duration: time.Second * 10, - // }) - - // character.AddDynamicDamageTakenModifier(func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - // if procAura.IsActive() { - // result.Damage = max(0, result.Damage-140) - // } - // }) - - // triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Essence of Gossamer Trigger", - // Callback: core.CallbackOnSpellHitTaken, - // ProcMask: core.ProcMaskMelee, - // Harmful: true, - // ProcChance: 0.05, - // ICD: time.Second * 50, - // ActionID: actionID, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // procAura.Activate(sim) - // }, - // }) - // procAura.Icd = triggerAura.Icd - // }) - // core.NewItemEffect(45507, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 45507} - - // procAura := character.RegisterAura(core.Aura{ - // Label: "The General's Heart", - // ActionID: actionID, - // Duration: time.Second * 10, - // }) - - // character.AddDynamicDamageTakenModifier(func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - // if procAura.IsActive() { - // result.Damage = max(0, result.Damage-205) - // } - // }) - - // triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "The General's Heart Trigger", - // Callback: core.CallbackOnSpellHitTaken, - // ProcMask: core.ProcMaskMelee, - // Harmful: true, - // ProcChance: 0.05, - // ICD: time.Second * 50, - // ActionID: actionID, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // procAura.Activate(sim) - // }, - // }) - // procAura.Icd = triggerAura.Icd - // }) - - // core.NewItemEffect(37734, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 37734} - - // procAuras := make([]*core.Aura, len(character.Env.AllUnits)) - // for _, target := range character.Env.AllUnits { - // if !character.IsOpponent(target) { - // procAuras[target.UnitIndex] = target.GetOrRegisterAura(core.Aura{ - // Label: "Touched by a Troll", - // ActionID: core.ActionID{SpellID: 60518}, - // Duration: time.Second * 10, - // MaxStacks: 5, - // OnStacksChange: func(aura *core.Aura, sim *core.Simulation, oldStacks, newStacks int32) { - // aura.Unit.PseudoStats.BonusHealingTaken += 58 * float64(newStacks-oldStacks) - // }, - // }) - // } - // } - - // activeAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Talisman of Troll Divinity", - // ActionID: actionID, - // Duration: time.Second * 20, - // Callback: core.CallbackOnHealDealt, - // Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - // procAuras[result.Target.UnitIndex].Activate(sim) - // }, - // }) - - // spell := character.RegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // SpellSchool: core.SpellSchoolPhysical, - // ProcMask: core.ProcMaskEmpty, - // Flags: core.SpellFlagNoOnCastComplete, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 2, - // }, - // }, - - // ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - // activeAura.Activate(sim) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Type: core.CooldownTypeDPS, - // Spell: spell, - // }) - // }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Deathbringer's Will" - itemID := int32(50362) - amount := 600.0 - auraIDs := []int32{ - 71484, - 71485, - 71486, - 71491, - 71492, - } - if isHeroic { - name += " H" - itemID = 50363 - amount = 700 - auraIDs = []int32{ - 71561, - 71556, - 71558, - 71559, - 71560, - } - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - strAura := character.NewTemporaryStatsAura(name+" Strength Proc", core.ActionID{SpellID: auraIDs[0]}, stats.Stats{stats.Strength: amount}, time.Second*30) - agiAura := character.NewTemporaryStatsAura(name+" Agility Proc", core.ActionID{SpellID: auraIDs[1]}, stats.Stats{stats.Agility: amount}, time.Second*30) - apAura := character.NewTemporaryStatsAura(name+" AP Proc", core.ActionID{SpellID: auraIDs[2]}, stats.Stats{stats.AttackPower: amount * 2, stats.RangedAttackPower: amount * 2}, time.Second*30) - critAura := character.NewTemporaryStatsAura(name+" Crit Proc", core.ActionID{SpellID: auraIDs[3]}, stats.Stats{stats.CritRating: amount}, time.Second*30) - hasteAura := character.NewTemporaryStatsAura(name+" Haste Proc", core.ActionID{SpellID: auraIDs[4]}, stats.Stats{stats.HasteRating: amount}, time.Second*30) - - var auras [3]*core.StatBuffAura - switch character.Class { - case proto.Class_ClassDeathKnight: - auras = [3]*core.StatBuffAura{strAura, critAura, hasteAura} - case proto.Class_ClassDruid: - auras = [3]*core.StatBuffAura{strAura, agiAura, hasteAura} - case proto.Class_ClassHunter: - auras = [3]*core.StatBuffAura{agiAura, critAura, apAura} - case proto.Class_ClassPaladin: - auras = [3]*core.StatBuffAura{strAura, critAura, hasteAura} - case proto.Class_ClassRogue: - auras = [3]*core.StatBuffAura{agiAura, apAura, hasteAura} - case proto.Class_ClassShaman: - auras = [3]*core.StatBuffAura{agiAura, apAura, hasteAura} - case proto.Class_ClassWarrior: - auras = [3]*core.StatBuffAura{strAura, critAura, hasteAura} - default: - return - } - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged | core.ProcMaskMeleeProc, - Outcome: core.OutcomeLanded, - ProcChance: 0.35, - ActionID: core.ActionID{ItemID: itemID}, - ICD: time.Second * 105, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - rand := sim.RandomFloat("Deathbringer's Will") - if rand < 1.0/3.0 { - auras[0].Activate(sim) - } else if rand < 2.0/3.0 { - auras[1].Activate(sim) - } else { - auras[2].Activate(sim) - } - }, - }) - - for _, aura := range auras { - aura.Icd = triggerAura.Icd - } - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - // core.NewItemEffect(40258, func(agent core.Agent) { - // character := agent.GetCharacter() - - // healSpell := character.GetOrRegisterSpell(core.SpellConfig{ - // ActionID: core.ActionID{ItemID: 40258}, - // SpellSchool: core.SpellSchoolPhysical, - // ProcMask: core.ProcMaskSpellHealing, - // Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - // DamageMultiplier: 1, - // ThreatMultiplier: 1, - - // Hot: core.DotConfig{ - // Aura: core.Aura{ - // Label: "Forethought Talisman", - // }, - // NumberOfTicks: 4, - // TickLength: time.Second * 3, - // OnSnapshot: func(sim *core.Simulation, target *core.Unit, dot *core.Dot, _ bool) { - // dot.SnapshotBaseDamage = 3752.0 / 4 - // dot.SnapshotAttackerMultiplier = dot.Spell.CasterHealingMultiplier() - // }, - // OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { - // dot.CalcAndDealPeriodicSnapshotHealing(sim, target, dot.OutcomeTick) - // }, - // }, - // }) - - // core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Forethought Talisman", - // Callback: core.CallbackOnHealDealt, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.2, - // ICD: time.Second * 45, - // ActionID: core.ActionID{ItemID: 40258}, - // Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - // healSpell.Hot(result.Target).Apply(sim) - // }, - // }) - // }) - - // core.NewItemEffect(40382, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 40382} - // manaMetrics := character.NewManaMetrics(actionID) - - // core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Soul of the Dead", - // Callback: core.CallbackOnSpellHitDealt | core.CallbackOnHealDealt, - // ProcMask: core.ProcMaskSpellDamage | core.ProcMaskSpellHealing, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.25, - // ICD: time.Second * 45, - // ActionID: core.ActionID{ItemID: 40382}, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // character.AddMana(sim, 900, manaMetrics) - // }, - // }) - // }) - - // core.NewItemEffect(41121, func(agent core.Agent) { // Gnomish Lightning Generator - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 41121} - - // spell := character.GetOrRegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // SpellSchool: core.SpellSchoolNature, - // ProcMask: core.ProcMaskEmpty, - // Flags: core.SpellFlagNoOnCastComplete, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 1, - // }, - // SharedCD: core.Cooldown{ - // Timer: character.GetOffensiveTrinketCD(), - // Duration: time.Second * 10, - // }, - // }, - - // DamageMultiplier: 1, - // CritMultiplier: character.GetSpellCritMultiplier(), - // ThreatMultiplier: 1, - - // ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - // spell.CalcAndDealDamage(sim, target, sim.Roll(1530, 1870), spell.OutcomeMagicHitAndCrit) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Spell: spell, - // Priority: core.CooldownPriorityLow, // Use low prio so other actives get used first. - // Type: core.CooldownTypeDPS, - // }) - // }) - - core.NewItemEffect(46017, func(agent core.Agent) { // Val'anyr - character := agent.GetCharacter() - - shieldSpell := character.GetOrRegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 64413}, - SpellSchool: core.SpellSchoolNature, - ProcMask: core.ProcMaskSpellHealing, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - DamageMultiplier: 1, - ThreatMultiplier: 1, - - Shield: core.ShieldConfig{ - Aura: core.Aura{ - Label: "Val'anyr Shield", - Duration: time.Second * 30, - }, - }, - }) - - activeAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Blessing of Ancient Kings", - ActionID: core.ActionID{SpellID: 64411}, - Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - Duration: time.Second * 15, - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - // TODO: Shield needs to stack with itself up to 20k. - shieldSpell.Shield(result.Target).Apply(sim, result.Damage*0.15) - }, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Val'anyr, Hammer of Ancient Kings Trigger", - Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - Harmful: true, // Better name for this would be, 'nonzero' - ProcChance: 0.1, - ActionID: core.ActionID{ItemID: 46017}, - ICD: time.Second * 45, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - activeAura.Activate(sim) - }, - }) - - character.ItemSwap.RegisterProc(46017, triggerAura) - }) - - // core.NewItemEffect(50259, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 50259} - - // activeAura := core.MakeStackingAura(character, core.StackingStatAura{ - // Aura: core.Aura{ - // Label: "Nevermelting Ice Crystal", - // ActionID: actionID, - // Duration: time.Second * 20, - // MaxStacks: 5, - // }, - // BonusPerStack: stats.Stats{stats.MeleeCrit: 184, stats.SpellCrit: 184}, - // }) - - // core.ApplyProcTriggerCallback(&character.Unit, activeAura, core.ProcTrigger{ - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc, - // Outcome: core.OutcomeCrit, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // activeAura.RemoveStack(sim) - // }, - // }) - - // spell := character.GetOrRegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // Flags: core.SpellFlagNoOnCastComplete, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 3, - // }, - // SharedCD: core.Cooldown{ - // Timer: character.GetOffensiveTrinketCD(), - // Duration: time.Second * 20, - // }, - // }, - - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - // activeAura.Activate(sim) - // activeAura.SetStacks(sim, 5) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Spell: spell, - // Type: core.CooldownTypeDPS, - // }) - // }) - - // NewItemEffectWithHeroic(func(isHeroic bool) { // Sliver of Pure Ice - // itemID := int32(50339) - // amount := 1625.0 - // if isHeroic { - // itemID = 50346 - // amount = 1830.0 - // } - - // core.NewItemEffect(itemID, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: itemID} - // manaMetrics := character.NewManaMetrics(actionID) - - // spell := character.RegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // Flags: core.SpellFlagNoOnCastComplete, - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 2, - // }, - // }, - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - // character.AddMana(sim, amount, manaMetrics) - // }, - // }) - // character.AddMajorCooldown(core.MajorCooldown{ - // Type: core.CooldownTypeMana, - // Spell: spell, - // }) - // }) - // }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Corpse Tongue Coin" - itemID := int32(50352) - amount := 5712.0 - if isHeroic { - name += " H" - itemID = 50349 - amount = 6426.0 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - procAura := character.NewTemporaryStatsAura(name+" Proc", actionID, stats.Stats{stats.Armor: amount}, time.Second*10) - - // Handle ICD ourselves since we use a custom check. - icd := core.Cooldown{ - Timer: character.NewTimer(), - Duration: time.Second * 30, - } - procAura.Icd = &icd - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitTaken, - ProcMask: core.ProcMaskMelee, - ActionID: core.ActionID{ItemID: itemID}, - Harmful: true, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - if icd.IsReady(sim) && character.CurrentHealthPercent() < 0.35 { - icd.Use(sim) - procAura.Activate(sim) - } - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - - }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Dislodged Foreign Object" - itemID := int32(50353) - amount := 105.0 - if isHeroic { - name += " H" - itemID = 50348 - amount = 121.0 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - procAura := core.MakeStackingAura(character, core.StackingStatAura{ - Aura: core.Aura{ - Label: name, - ActionID: actionID, - Duration: time.Second * 20, - MaxStacks: 10, - }, - BonusPerStack: stats.Stats{stats.SpellPower: amount}, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnCastComplete, - ProcMask: core.ProcMaskSpellOrSpellProc, - Harmful: true, - ProcChance: 0.10, - ActionID: core.ActionID{ItemID: itemID}, - ICD: time.Second * 45, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - core.StartPeriodicAction(sim, core.PeriodicActionOptions{ - NumTicks: 10, - Period: time.Second * 2, - TickImmediately: true, - OnAction: func(sim *core.Simulation) { - if procAura.IsActive() { - procAura.AddStack(sim) - } - }, - }) - }, - }) - procAura.Icd = triggerAura.Icd - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - // core.NewItemEffect(42413, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{SpellID: 56186} - // manaMetrics := character.NewManaMetrics(actionID) - - // spell := character.RegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // Flags: core.SpellFlagNoOnCastComplete, - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 5, - // }, - // }, - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - // core.StartPeriodicAction(sim, core.PeriodicActionOptions{ - // NumTicks: 12, - // Period: time.Second * 1, - // OnAction: func(sim *core.Simulation) { - // character.AddMana(sim, 195, manaMetrics) - // }, - // }) - // }, - // }) - // character.AddMajorCooldown(core.MajorCooldown{ - // Type: core.CooldownTypeMana, - // Spell: spell, - // }) - // }) - - // core.NewItemEffect(47215, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{SpellID: 67667} - // manaMetrics := character.NewManaMetrics(actionID) - - // core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Tears of the Vanquished Trigger", - // Callback: core.CallbackOnCastComplete, - // SpellFlags: core.SpellFlagHelpful, - // ProcChance: 0.25, - // ICD: time.Second * 45, - // ActionID: core.ActionID{ItemID: 47215}, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // character.AddMana(sim, 500, manaMetrics) - // }, - // }) - // }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Heartpierce" - itemID := int32(49982) - numTicks := 5 - if isHeroic { - name += " H" - itemID = 50641 - numTicks = 6 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - var resourceMetricsMana *core.ResourceMetrics - var resourceMetricsRage *core.ResourceMetrics - var resourceMetricsEnergy *core.ResourceMetrics - if character.HasManaBar() { - resourceMetricsMana = character.NewManaMetrics(actionID) - } - if character.HasRageBar() { - resourceMetricsRage = character.NewRageMetrics(actionID) - } - if character.HasEnergyBar() { - resourceMetricsEnergy = character.NewEnergyMetrics(actionID) - } - - var pa *core.PendingAction - procAura := character.GetOrRegisterAura(core.Aura{ - Label: name, - ActionID: actionID, - Duration: time.Second * 2 * time.Duration(numTicks), - OnGain: func(aura *core.Aura, sim *core.Simulation) { - pa = core.StartPeriodicAction(sim, core.PeriodicActionOptions{ - NumTicks: numTicks, - Period: time.Second * 2, - OnAction: func(sim *core.Simulation) { - cpb := character.GetCurrentPowerBar() - if cpb == core.ManaBar { - character.AddMana(sim, 120, resourceMetricsMana) - } else if cpb == core.RageBar { - character.AddRage(sim, 2, resourceMetricsRage) - } else if cpb == core.EnergyBar { - character.AddEnergy(sim, 4, resourceMetricsEnergy) - } - }, - }) - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - pa.Cancel(sim) - }, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - PPM: 1, - ActionID: core.ActionID{ItemID: itemID}, - - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - if !result.Landed() { - return - } - // Deactivate first, to cancel old PA. - procAura.Deactivate(sim) - procAura.Activate(sim) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - // core.NewSimpleStatOffensiveTrinketEffectWithOtherEffects(50260, stats.Stats{stats.MeleeHaste: 464, stats.SpellHaste: 464}, time.Second*20, time.Minute*2, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 50260} - // manaMetrics := character.NewManaMetrics(actionID) - - // core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Ephemeral Snowflake", - // Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - // ICD: time.Millisecond * 250, - // ActionID: actionID, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // character.AddMana(sim, 11, manaMetrics) - // }, - // }) - // }) - - // core.NewItemEffect(50356, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{SpellID: 71586} - - // spell := character.RegisterSpell(core.SpellConfig{ - // ActionID: actionID, - // SpellSchool: core.SpellSchoolHoly, - // ProcMask: core.ProcMaskSpellHealing, - // Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Minute * 2, - // }, - // }, - - // DamageMultiplier: 1, - // ThreatMultiplier: 1, - - // Shield: core.ShieldConfig{ - // SelfOnly: true, - // Aura: core.Aura{ - // Label: "Hardened Skin", - // Duration: time.Second * 10, - // }, - // }, - - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, spell *core.Spell) { - // spell.SelfShield().Apply(sim, 6400) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Type: core.CooldownTypeSurvival, - // Spell: spell, - // }) - // }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Bauble of True Blood" - itemID := int32(50354) - if isHeroic { - name += " H" - itemID = 50726 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - spell := character.RegisterSpell(core.SpellConfig{ - ActionID: actionID, - SpellSchool: core.SpellSchoolHoly, - ProcMask: core.ProcMaskSpellHealing, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - Cast: core.CastConfig{ - CD: core.Cooldown{ - Timer: character.NewTimer(), - Duration: time.Minute * 2, - }, - }, - DamageMultiplier: 1, - ThreatMultiplier: 1, - CritMultiplier: character.DefaultHealingCritMultiplier(), - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseHealing := sim.Roll(7400, 8600) - spell.CalcAndDealHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) - }, - }) - - character.AddMajorCooldown(core.MajorCooldown{ - Type: core.CooldownTypeDPS, - Spell: spell, - }) - }) - }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Althor's Abacus" - itemID := int32(50359) - minHeal := 5550.0 - maxHeal := 6450.0 - if isHeroic { - name += " H" - itemID = 50366 - minHeal = 6280.0 - maxHeal = 7298.0 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - spell := character.RegisterSpell(core.SpellConfig{ - ActionID: actionID, - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskSpellHealing, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - DamageMultiplier: 1, - ThreatMultiplier: 1, - CritMultiplier: character.DefaultHealingCritMultiplier(), - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseHealing := sim.Roll(minHeal, maxHeal) - spell.CalcAndDealHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) - }, - }) - - eligibleUnits := character.Env.Raid.AllUnits - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: "Althor's Abacus Trigger", - Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - ProcChance: 0.3, - ICD: time.Second * 45, - ActionID: core.ActionID{ItemID: itemID}, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - randIndex := int(math.Floor(sim.RandomFloat("Althor's Abacus") * float64(len(eligibleUnits)))) - healTarget := eligibleUnits[randIndex] - spell.Cast(sim, healTarget) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Glowing Twilight Scale" - itemID := int32(54573) - healingPerTick := 356.0 - if isHeroic { - name += " H" - itemID = 54589 - healingPerTick = 402.0 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - healSpell := character.GetOrRegisterSpell(core.SpellConfig{ - ActionID: actionID, - SpellSchool: core.SpellSchoolHoly, - ProcMask: core.ProcMaskSpellHealing, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagHelpful, - - DamageMultiplier: 1, - ThreatMultiplier: 1, - - Hot: core.DotConfig{ - Aura: core.Aura{ - Label: "Glowing Twilight Scale", - }, - NumberOfTicks: 6, - TickLength: time.Second * 1, - OnSnapshot: func(sim *core.Simulation, target *core.Unit, dot *core.Dot, _ bool) { - dot.SnapshotBaseDamage = healingPerTick - dot.SnapshotAttackerMultiplier = dot.Spell.CasterHealingMultiplier() - }, - OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { - dot.CalcAndDealPeriodicSnapshotHealing(sim, target, dot.OutcomeTick) - }, - }, - }) - - activeAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - ActionID: actionID, - Callback: core.CallbackOnHealDealt, - Duration: time.Second * 15, - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - healSpell.Hot(result.Target).Apply(sim) - }, - }) - - spell := character.RegisterSpell(core.SpellConfig{ - ActionID: actionID, - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskEmpty, - Flags: core.SpellFlagNoOnCastComplete, - - Cast: core.CastConfig{ - CD: core.Cooldown{ - Timer: character.NewTimer(), - Duration: time.Minute * 2, - }, - }, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - activeAura.Activate(sim) - }, - }) - - character.AddMajorCooldown(core.MajorCooldown{ - Type: core.CooldownTypeDPS, - Spell: spell, - }) - }) - }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Petrified Twilight Scale" - itemID := int32(54571) - amount := 733.0 - if isHeroic { - name += " H" - itemID = 54591 - amount = 828.0 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - actionID := core.ActionID{ItemID: itemID} - - procAura := character.NewTemporaryStatsAura(name+" Proc", actionID, stats.Stats{stats.DodgeRating: amount}, time.Second*10) - - // Handle ICD ourselves since we use a custom check. - icd := core.Cooldown{ - Timer: character.NewTimer(), - Duration: time.Second * 45, - } - procAura.Icd = &icd - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitTaken, - ProcMask: core.ProcMaskMelee, - Harmful: true, - ActionID: core.ActionID{ItemID: itemID}, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - if icd.IsReady(sim) && character.CurrentHealthPercent() < 0.35 { - icd.Use(sim) - procAura.Activate(sim) - } - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - // https://web.archive.org/web/20100127195814/http://elitistjerks.com/f76/t68951-retribution_updated_3_3_a/p75/ - // suggests 2 ppm; there's a test with ~1k auto attacks on this page, and mention of a previous test - // with ~10k auto attacks. - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Bryntroll, the Bone Arbiter" - itemID := int32(50415) - minDmg := float64(2138) - maxDmg := float64(2362) - if isHeroic { - name += " H" - itemID = 50709 - minDmg = float64(2412) - maxDmg = float64(2664) - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - dpm := character.AutoAttacks.NewDynamicProcManagerForWeaponEffect(itemID, 2.0, 0) - - procActionID := core.ActionID{ItemID: itemID} - - proc := character.RegisterSpell(core.SpellConfig{ - ActionID: procActionID.WithTag(1), - SpellSchool: core.SpellSchoolShadow, - ProcMask: core.ProcMaskEmpty, - - DamageMultiplier: 1, - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - spell.CalcAndDealDamage(sim, target, sim.Roll(minDmg, maxDmg), spell.OutcomeMagicHit) - }, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name, - DPM: dpm, - Callback: core.CallbackOnSpellHitDealt, - Outcome: core.OutcomeLanded, - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - proc.Cast(sim, result.Target) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Black Bruise" - itemID := int32(50035) - amount := 0.09 - spellID := int32(71875) - if isHeroic { - name += " H" - itemID = 50692 - spellID = 71877 - amount = 0.10 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - var curDmg float64 - necrosisHit := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 51460}, - SpellSchool: core.SpellSchoolShadow, - ProcMask: core.ProcMaskEmpty, - Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagIgnoreModifiers, - DamageMultiplier: 1, - ThreatMultiplier: 1, - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - spell.CalcAndDealDamage(sim, target, curDmg*amount, spell.OutcomeAlwaysHit) - }, - }) - - procAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Proc", - ActionID: core.ActionID{SpellID: spellID}, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - Duration: time.Second * 10, - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - curDmg = result.Damage - necrosisHit.Cast(sim, result.Target) - }, - }) - - triggerAura := core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMelee, - ProcChance: 0.03, - ActionID: core.ActionID{ItemID: itemID}, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) - - // core.NewItemEffect(37111, func(agent core.Agent) { - // character := agent.GetCharacter() - // actionID := core.ActionID{ItemID: 37111} - - // if !character.HasManaBar() { - // return - // } - // resourceMetricsMana := character.NewManaMetrics(actionID) - - // procAura := character.GetOrRegisterAura(core.Aura{ - // Label: "Soul Preserver", - // ActionID: actionID, - // Duration: time.Second * 15, - // OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { - // if !spell.ProcMask.Matches(core.ProcMaskSpellHealing) || spell.CurCast.Cost == 0 { - // return - // } - // amount := spell.CurCast.Cost - // if spell.CurCast.Cost > 800 { - // amount = 800 - // } - // spell.Unit.AddMana(sim, amount, resourceMetricsMana) - // aura.Deactivate(sim) - // }, - // }) - - // core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{ - // Name: "Soul Preserver Trigger", - // Callback: core.CallbackOnHealDealt, - // ProcMask: core.ProcMaskSpellHealing, - // ProcChance: 0.02, - // ActionID: actionID, - // Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - // procAura.Activate(sim) - // }, - // }) - // }) - - // core.NewItemEffect(21685, func(agent core.Agent) { - // character := agent.GetCharacter() - // statBonusPerStack := stats.Stats{stats.ArcaneResistance: 10, stats.FireResistance: 10, stats.FrostResistance: 10, stats.NatureResistance: 10, stats.ShadowResistance: 10} - - // mercurialShieldAura := character.GetOrRegisterAura(core.Aura{ - // Label: "Mercurial Shield", - // ActionID: core.ActionID{SpellID: 26464}, - // Duration: time.Second * 60, - // MaxStacks: 10, - // OnGain: func(aura *core.Aura, sim *core.Simulation) { - // aura.SetStacks(sim, 10) - // }, - // OnStacksChange: func(aura *core.Aura, sim *core.Simulation, oldStacks int32, newStacks int32) { - // character.AddStatsDynamic(sim, statBonusPerStack.Multiply(float64(newStacks-oldStacks))) - // }, - // OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - // if result.Damage > 0 && !spell.SpellSchool.Matches(core.SpellSchoolPhysical) { - // aura.RemoveStack(sim) - // } - // }, - // }) - - // petrifiedScarabActivation := character.RegisterSpell(core.SpellConfig{ - // ActionID: core.ActionID{ItemID: 21685}, - // Cast: core.CastConfig{ - // CD: core.Cooldown{ - // Timer: character.NewTimer(), - // Duration: time.Second * 180, - // }, - // }, - // ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - // mercurialShieldAura.Activate(sim) - // }, - // }) - - // character.AddMajorCooldown(core.MajorCooldown{ - // Spell: petrifiedScarabActivation, - // Type: core.CooldownTypeSurvival, - // }) - // }) - - NewItemEffectWithHeroic(func(isHeroic bool) { - itemID := int32(50179) - spellID := int32(71870) - triggerSpellID := int32(71871) - strengthGain := float64(100) - healingReceived := float64(300) - procName := "Last Word" - triggerName := "Last Word Proc Trigger" - - if isHeroic { - itemID = 50708 - spellID = 71872 - triggerSpellID = 71873 - strengthGain = 115 - healingReceived = 340 - triggerName += " H" - procName += " H" - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - character := agent.GetCharacter() - - procAura := character.GetOrRegisterAura(core.Aura{ - Label: procName, - ActionID: core.ActionID{SpellID: spellID}, - Duration: time.Second * 10, - OnGain: func(aura *core.Aura, sim *core.Simulation) { - aura.Unit.AddStatsDynamic(sim, stats.Stats{stats.Strength: strengthGain}) - aura.Unit.PseudoStats.BonusHealingTaken += healingReceived - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - aura.Unit.AddStatsDynamic(sim, stats.Stats{stats.Strength: -strengthGain}) - aura.Unit.PseudoStats.BonusHealingTaken -= healingReceived - }, - }) - - triggerAura := core.MakeProcTriggerAura(&agent.GetCharacter().Unit, core.ProcTrigger{ - Name: triggerName, - ActionID: core.ActionID{SpellID: triggerSpellID}, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrMeleeProc, - ProcChance: 0.37, - Outcome: core.OutcomeLanded, - Handler: func(sim *core.Simulation, _ *core.Spell, _ *core.SpellResult) { - procAura.Activate(sim) - }, - }) - - character.ItemSwap.RegisterProc(itemID, triggerAura) - }) - }) -} diff --git a/sim/common/wotlk/proc_helpers.go b/sim/common/wotlk/proc_helpers.go deleted file mode 100644 index a2ce32a4ae..0000000000 --- a/sim/common/wotlk/proc_helpers.go +++ /dev/null @@ -1,6 +0,0 @@ -package wotlk - -func NewItemEffectWithHeroic(f func(isHeroic bool)) { - f(true) - //f(false) -} diff --git a/sim/common/wotlk/shadowmourne.go b/sim/common/wotlk/shadowmourne.go deleted file mode 100644 index b401d89d2e..0000000000 --- a/sim/common/wotlk/shadowmourne.go +++ /dev/null @@ -1,78 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -// https://www.wowhead.com/cata/item=49623/shadowmourne - -// Your melee attacks have a chance to drain a Soul Fragment granting you 30 Strength. -// When you have acquired 10 Soul Fragments you will unleash Chaos Bane, -// dealing 1900 to 2100 Shadow damage split between all enemies within 15 yards and -// granting you 270 Strength for 10 sec. - -func init() { - // https://web.archive.org/web/20120509024819/http://elitistjerks.com/f81/t37680-depth_fury_dps_discussion/p129/ - // has some testing, and arrives at ~12 ppm (~75% for 3.7 speed) - // https://web.archive.org/web/20100508065259/http://elitistjerks.com/f81/t37462-warrior_dps_calculation_spreadsheet/p109/ - // arrives at ~80% with "2000 white swings" on a dummy. - core.NewItemEffect(49623, func(agent core.Agent) { - character := agent.GetCharacter() - - dpm := character.AutoAttacks.NewPPMManager(12, core.ProcMaskMeleeOrMeleeProc) - - chaosBaneAura := character.NewTemporaryStatsAura("Chaos Bane", core.ActionID{SpellID: 73422}, stats.Stats{stats.Strength: 270}, time.Second*10) - - choasBaneSpell := character.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 71904}, - SpellSchool: core.SpellSchoolShadow, - ProcMask: core.ProcMaskEmpty, // not sure if this can proc things. - - DamageMultiplier: 1, - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := sim.Roll(1900, 2100) / float64(sim.GetNumTargets()) - for _, target := range sim.Encounter.TargetUnits { - spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMagicHit) // probably has a very low crit rate - } - }, - }) - - stackingAura := character.GetOrRegisterAura(core.Aura{ - Label: "Soul Fragment", - Duration: time.Minute, - ActionID: core.ActionID{SpellID: 71905}, - MaxStacks: 10, - OnStacksChange: func(aura *core.Aura, sim *core.Simulation, oldStacks, newStacks int32) { - character.AddStatDynamic(sim, stats.Strength, float64(newStacks-oldStacks)*30) - - if newStacks == aura.MaxStacks { - choasBaneSpell.Cast(sim, nil) - chaosBaneAura.Activate(sim) - aura.SetStacks(sim, 0) - return - } - }, - }) - - aura := core.MakePermanent(character.GetOrRegisterAura(core.Aura{ - Label: "Shadowmourne", - OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - if chaosBaneAura.IsActive() { - return - } - - if dpm.Proc(sim, spell.ProcMask, "Shadowmourne") { - stackingAura.Activate(sim) - stackingAura.AddStack(sim) - } - }, - })) - - character.ItemSwap.RegisterProc(49623, aura) - }) -} diff --git a/sim/common/wotlk/stat_bonus_cds.go b/sim/common/wotlk/stat_bonus_cds.go deleted file mode 100644 index f96e9116a1..0000000000 --- a/sim/common/wotlk/stat_bonus_cds.go +++ /dev/null @@ -1,151 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -type StatCDFactory func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) - -func init() { - // Keep these separated by stat, ordered by item ID within each group. - - // Wraps factory functions so that only the first item is included in tests. - testFirstOnly := func(factory StatCDFactory) StatCDFactory { - first := true - return func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - if first { - first = false - factory(itemID, bonus, duration, cooldown) - } else { - core.AddEffectsToTest = false - factory(itemID, bonus, duration, cooldown) - core.AddEffectsToTest = true - } - } - } - - // newHasteActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatOffensiveTrinketEffect(itemID, stats.Stats{stats.MeleeHaste: bonus, stats.SpellHaste: bonus}, duration, cooldown) - // }) - //newHasteActive(36972, 256, time.Second*20, time.Minute*2) // Tome of Arcane Phenomena - //newHasteActive(37558, 122, time.Second*20, time.Minute*2) // Tidal Boon - //newHasteActive(37560, 124, time.Second*20, time.Minute*2) // Vial of Renewal - //newHasteActive(37562, 140, time.Second*20, time.Minute*2) // Fury of the Crimson Drake - //newHasteActive(38070, 148, time.Second*20, time.Minute*2) // Foresight's Anticipation - //newHasteActive(38258, 140, time.Second*20, time.Minute*2) // Sailor's Knotted Charm - //newHasteActive(38259, 140, time.Second*20, time.Minute*2) // First Mate's Pocketwatch - // newHasteActive(38764, 208, time.Second*20, time.Minute*2) // Rune of Finite Variation - // newHasteActive(40531, 491, time.Second*20, time.Minute*2) // Mark of Norgannon - // newHasteActive(43836, 212, time.Second*20, time.Minute*2) // Thorny Rose Brooch - // newHasteActive(45466, 457, time.Second*20, time.Minute*2) // Scale of Fates - // newHasteActive(46088, 375, time.Second*20, time.Minute*2) // Platinum Disks of Swiftness - // newHasteActive(48722, 512, time.Second*20, time.Minute*2) // Shard of the Crystal Heart - - // newAttackPowerActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatOffensiveTrinketEffect(itemID, stats.Stats{stats.AttackPower: bonus, stats.RangedAttackPower: bonus}, duration, cooldown) - // }) - //newAttackPowerActive(35937, 328, time.Second*20, time.Minute*2) // Braxley's Backyard Moonshine - //newAttackPowerActive(36871, 280, time.Second*20, time.Minute*2) // Fury of the Encroaching Storm - //newAttackPowerActive(37166, 670, time.Second*20, time.Minute*2) // Sphere of Red Dragon's Blood - //newAttackPowerActive(37556, 248, time.Second*20, time.Minute*2) // Talisman of the Tundra - //newAttackPowerActive(37557, 304, time.Second*20, time.Minute*2) // Warsong's Fervor - //newAttackPowerActive(38080, 264, time.Second*20, time.Minute*2) // Automated Weapon Coater - //newAttackPowerActive(38081, 280, time.Second*20, time.Minute*2) // Scarab of Isanoth - // newAttackPowerActive(38761, 248, time.Second*20, time.Minute*2) // Talon of Hatred - // newAttackPowerActive(39257, 670, time.Second*20, time.Minute*2) // Loatheb's Shadow - // newAttackPowerActive(44014, 432, time.Second*15, time.Minute*2) // Fezzik's Pocketwatch - // newAttackPowerActive(45263, 905, time.Second*20, time.Minute*2) // Wrathstone - // newAttackPowerActive(46086, 752, time.Second*20, time.Minute*2) // Platinum Disks of Battle - // newAttackPowerActive(47734, 1024, time.Second*20, time.Minute*2) // Mark of Supremacy - - // newSpellPowerActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatOffensiveTrinketEffect(itemID, stats.Stats{stats.SpellPower: bonus}, duration, cooldown) - // }) - //newSpellPowerActive(35935, 178, time.Second*20, time.Minute*2) // Infused Coldstone Rune - //newSpellPowerActive(36872, 173, time.Second*20, time.Minute*2) // Mender of the Oncoming Dawn - //newSpellPowerActive(36874, 183, time.Second*20, time.Minute*2) // Horn of the Herald - //newSpellPowerActive(37555, 149, time.Second*20, time.Minute*2) // Warsong's Wrath - // newSpellPowerActive(37844, 346, time.Second*20, time.Minute*2) // Winged Talisman - // newSpellPowerActive(37873, 346, time.Second*20, time.Minute*2) // Mark of the War Prisoner - //newSpellPowerActive(38073, 120, time.Second*15, time.Minute*2) // Will of the Red Dragonflight - //newSpellPowerActive(38213, 149, time.Second*20, time.Minute*2) // Harbringer's Wrath - //newSpellPowerActive(38527, 183, time.Second*20, time.Minute*2) // Strike of the Seas - // newSpellPowerActive(38760, 145, time.Second*20, time.Minute*2) // Mendicant's Charm - // newSpellPowerActive(38762, 145, time.Second*20, time.Minute*2) // Insignia of Bloody Fire - // newSpellPowerActive(38765, 202, time.Second*20, time.Minute*2) // Rune of Infinite Power - // newSpellPowerActive(39811, 183, time.Second*20, time.Minute*2) // Badge of the Infiltrator - // newSpellPowerActive(39819, 145, time.Second*20, time.Minute*2) // Bloodbinder's Runestone - // newSpellPowerActive(39821, 145, time.Second*20, time.Minute*2) // Spiritist's Focus - // newSpellPowerActive(42395, 292, time.Second*20, time.Minute*2) // Figurine - Twilight Serpent - // newSpellPowerActive(43837, 281, time.Second*20, time.Minute*2) // Soflty Glowing Orb - // newSpellPowerActive(44013, 281, time.Second*20, time.Minute*2) // Cannoneer's Fuselighter - // newSpellPowerActive(44015, 281, time.Second*20, time.Minute*2) // Cannoneer's Morale - // newSpellPowerActive(45148, 534, time.Second*20, time.Minute*2) // Living Flame - // newSpellPowerActive(45292, 431, time.Second*20, time.Minute*2) // Energy Siphon - // newSpellPowerActive(46087, 440, time.Second*20, time.Minute*2) // Platinum Disks of Sorcery - // newSpellPowerActive(48724, 599, time.Second*20, time.Minute*2) // Talisman of Resurgence - // newSpellPowerActive(50357, 716, time.Second*20, time.Minute*2) // Maghia's Misguided Quill - - // newCritActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatOffensiveTrinketEffect(itemID, stats.Stats{stats.MeleeCrit: bonus, stats.SpellCrit: bonus}, duration, cooldown) - // }) - // newCritActive(37723, 291, time.Second*20, time.Minute*2) // Incisor Fragment - - // newHealthActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.Health: bonus}, duration, cooldown) - // }) - // newHealthActive(37638, 3025, time.Second*15, time.Minute*3) // Offering of Sacrifice - // newHealthActive(39292, 3025, time.Second*15, time.Minute*3) // Repelling Charge - // newHealthActive(42128, 3385, time.Second*15, time.Minute*3) // Battlemaster's Hostility - // newHealthActive(42129, 3385, time.Second*15, time.Minute*3) // Battlemaster's Accuracy - // newHealthActive(42130, 3385, time.Second*15, time.Minute*3) // Battlemaster's Avidity - // newHealthActive(42131, 3385, time.Second*15, time.Minute*3) // Battlemaster's Conviction - // newHealthActive(42132, 3385, time.Second*15, time.Minute*3) // Battlemaster's Bravery - // newHealthActive(42133, 4608, time.Second*15, time.Minute*3) // Battlemaster's Fury - // newHealthActive(42134, 4608, time.Second*15, time.Minute*3) // Battlemaster's Precision - // newHealthActive(42135, 4608, time.Second*15, time.Minute*3) // Battlemaster's Vivacity - // newHealthActive(42136, 4608, time.Second*15, time.Minute*3) // Battlemaster's Rage - // newHealthActive(42137, 4608, time.Second*15, time.Minute*3) // Battlemaster's Ruination - // newHealthActive(47080, 4610, time.Second*15, time.Minute*3) // Satrina's Impeding Scarab - // newHealthActive(47088, 5186, time.Second*15, time.Minute*3) // Satrina's Impeding Scarab H - // newHealthActive(47290, 4610, time.Second*15, time.Minute*3) // Juggernaut's Vitality - // newHealthActive(47451, 5186, time.Second*15, time.Minute*3) // Juggernaut's Vitality H - // newHealthActive(50235, 4104, time.Second*15, time.Minute*3) // Ick's Rotting Thumb - - // newArmorActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.Armor: bonus}, duration, cooldown) - // }) - // newArmorActive(36993, 3570, time.Second*20, time.Minute*2) // Seal of the Pantheon - // newArmorActive(45313, 5448, time.Second*20, time.Minute*2) // Furnace Stone - - // newDodgeActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.Dodge: bonus}, duration, cooldown) - // }) - // newDodgeActive(40257, 455, time.Second*20, time.Minute*2) // Defender's Code - // newDodgeActive(40683, 335, time.Second*20, time.Minute*2) // Valor Medal of the First War - // newDodgeActive(44063, 300, time.Second*10, time.Minute*1) // Figurine - Monarch Crab - // newDodgeActive(45158, 457, time.Second*20, time.Minute*2) // Heart of Iron - // newDodgeActive(49080, 335, time.Second*20, time.Minute*2) // Brawler's Souvenir - // newDodgeActive(47735, 512, time.Second*20, time.Minute*2) // Glyph of Indomitability - - // newParryActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.Parry: bonus}, duration, cooldown) - // }) - // newParryActive(40372, 375, time.Second*20, time.Minute*2) // Rune of Repulsion - // newParryActive(46021, 402, time.Second*20, time.Minute*2) // Royal Seal of King Llane - - // newSpiritActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - // core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.Spirit: bonus}, duration, cooldown) - // }) - // newSpiritActive(38763, 184, time.Second*20, time.Minute*2) // Futuresight Rune - // newSpiritActive(39388, 336, time.Second*20, time.Minute*2) // Spirit-World Glass - - newResistsActive := testFirstOnly(func(itemID int32, bonus float64, duration time.Duration, cooldown time.Duration) { - core.NewSimpleStatDefensiveTrinketEffect(itemID, stats.Stats{stats.ArcaneResistance: bonus, stats.FireResistance: bonus, stats.FrostResistance: bonus, stats.NatureResistance: bonus, stats.ShadowResistance: bonus}, duration, cooldown) - }) - // newResistsActive(50361, 239, time.Second*10, time.Minute*1) // Sindragona's Flawless Fang - newResistsActive(50364, 268, time.Second*10, time.Minute*1) // Sindragona's Flawless Fang H -} diff --git a/sim/common/wotlk/stat_bonus_procs.go b/sim/common/wotlk/stat_bonus_procs.go deleted file mode 100644 index c9171c665c..0000000000 --- a/sim/common/wotlk/stat_bonus_procs.go +++ /dev/null @@ -1,675 +0,0 @@ -package wotlk - -import ( - "time" - - "github.com/wowsims/cata/sim/common/shared" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" -) - -func init() { - // Keep these separated by stat, ordered by item ID within each group. - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Meteorite Whetstone", - // ID: 37390, - // AuraID: 60302, - // Bonus: stats.Stats{stats.MeleeHaste: 444, stats.SpellHaste: 444}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - //shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Serrah's Star", - // ID: 37559, - // Bonus: stats.Stats{stats.MeleeCrit: 167, stats.SpellCrit: 167}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.45, - // ICD: time.Second * 45, - //}) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Spark of Life", - // ID: 37657, - // AuraID: 60520, - // Bonus: stats.Stats{stats.MP5: 220}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Forge Ember", - // ID: 37660, - // AuraID: 60479, - // Bonus: stats.Stats{stats.SpellPower: 512}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage, - // Harmful: true, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - - // core.AddEffectsToTest = false - - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Je'Tze's Bell", - // ID: 37835, - // AuraID: 49623, - // Bonus: stats.Stats{stats.MP5: 125}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - //shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Valonforth's Remembrance", - // ID: 38071, - // Bonus: stats.Stats{stats.Spirit: 222}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - //}) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Embrace of the Spider", - // ID: 39229, - // AuraID: 60492, - // Bonus: stats.Stats{stats.MeleeHaste: 505, stats.SpellHaste: 505}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnCastComplete, - // ProcMask: core.ProcMaskSpellDamage, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Dying Curse", - // ID: 40255, - // AuraID: 60494, - // Bonus: stats.Stats{stats.SpellPower: 765}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnCastComplete, - // ProcMask: core.ProcMaskSpellOrProc, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Grim Toll", - // ID: 40256, - // AuraID: 60437, - // Bonus: stats.Stats{stats.MeleeCrit: 612, stats.SpellCrit: 612}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Sundial of the Exiled", - // ID: 40682, - // AuraID: 60064, - // Bonus: stats.Stats{stats.SpellPower: 590}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnCastComplete, - // ProcMask: core.ProcMaskSpellOrProc, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Mirror of Truth", - // ID: 40684, - // AuraID: 60065, - // Bonus: stats.Stats{stats.AttackPower: 1000, stats.RangedAttackPower: 1000}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // Harmful: true, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "The Egg of Mortal Essence", - // ID: 40685, - // AuraID: 60062, - // Bonus: stats.Stats{stats.MeleeHaste: 505, stats.SpellHaste: 505}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Sonic Booster", - // ID: 40767, - // AuraID: 55018, - // Bonus: stats.Stats{stats.AttackPower: 430, stats.RangedAttackPower: 430}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt | core.CallbackOnSpellHitTaken, - // ProcMask: core.ProcMaskMelee, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.35, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Tears of Bitter Anguish", - // ID: 43573, - // AuraID: 58904, - // Bonus: stats.Stats{stats.MeleeHaste: 410, stats.SpellHaste: 410}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Crusader's Locket", - // ID: 43829, - // AuraID: 61671, - // Bonus: stats.Stats{stats.Expertise: 258}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Chuchu's Tiny Box of Horrors", - // ID: 43838, - // AuraID: 61619, - // Bonus: stats.Stats{stats.MeleeCrit: 258, stats.SpellCrit: 258}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Signet of Edward the Odd", - // ID: 44308, - // AuraID: 60318, - // Bonus: stats.Stats{stats.MeleeHaste: 125, stats.SpellHaste: 125}, - // Duration: time.Second * 13, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Flow of Knowledge", - // ID: 44912, - // AuraID: 60064, - // Bonus: stats.Stats{stats.SpellPower: 590}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Anvil of Titans", - // ID: 44914, - // AuraID: 60065, - // Bonus: stats.Stats{stats.AttackPower: 1000, stats.RangedAttackPower: 1000}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Jouster's Fury Alliance", - // ID: 45131, - // AuraID: 63250, - // Bonus: stats.Stats{stats.MeleeCrit: 328, stats.SpellCrit: 328}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskDirect, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Jouster's Fury Horde", - // ID: 45219, - // AuraID: 63250, - // Bonus: stats.Stats{stats.MeleeCrit: 328, stats.SpellCrit: 328}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskDirect, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Pyrite Infuser", - // ID: 45286, - // AuraID: 65014, - // Bonus: stats.Stats{stats.AttackPower: 1305, stats.RangedAttackPower: 1305}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.1, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Pandora's Plea", - // ID: 45490, - // AuraID: 64741, - // Bonus: stats.Stats{stats.SpellPower: 794}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnHealDealt | core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage | core.ProcMaskSpellHealing, - // ProcChance: 0.1, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Blood of the Old God", - // ID: 45522, - // AuraID: 64790, - // Bonus: stats.Stats{stats.AttackPower: 1358, stats.RangedAttackPower: 1358}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.1, // wowhead shows proc chance: 10% but a comment says 1.12PPM? TODO: validate. - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Flare of the Heavens", - // ID: 45518, - // AuraID: 64713, - // Bonus: stats.Stats{stats.SpellPower: 959}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnCastComplete, - // ProcMask: core.ProcMaskSpellDamage, - // ProcChance: 0.1, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Show of Faith", - // ID: 45535, - // AuraID: 64739, - // Bonus: stats.Stats{stats.MP5: 272}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Comet's Trail", - // ID: 45609, - // AuraID: 64772, - // Bonus: stats.Stats{stats.SpellHaste: 819, stats.MeleeHaste: 819}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Elemental Focus Stone", - // ID: 45866, - // AuraID: 65004, - // Bonus: stats.Stats{stats.MeleeHaste: 552, stats.SpellHaste: 552}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage, - // Outcome: core.OutcomeLanded, - // Harmful: true, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Sif's Remembrance", - // ID: 45929, - // AuraID: 65003, - // Bonus: stats.Stats{stats.MP5: 220}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Mjolnir Runestone", - // ID: 45931, - // AuraID: 65019, - // Bonus: stats.Stats{stats.MeleeCrit: 751, stats.SpellCrit: 751}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Dark Matter", - // ID: 46038, - // AuraID: 65024, - // Bonus: stats.Stats{stats.MeleeCrit: 692, stats.SpellCrit: 692}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.15, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Abyssal Rune", - // ID: 47213, - // AuraID: 67669, - // Bonus: stats.Stats{stats.SpellPower: 590}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc, - // Harmful: true, - // ProcChance: 0.25, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Banner of Victory", - // ID: 47214, - // AuraID: 67671, - // Bonus: stats.Stats{stats.AttackPower: 1008, stats.RangedAttackPower: 1008}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.20, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "The Black Heart", - // ID: 47216, - // AuraID: 67631, - // Bonus: stats.Stats{stats.Armor: 7056}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitTaken, - // ProcMask: core.ProcMaskMelee, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.25, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Coren's Chromium Coaster", - // ID: 49074, - // AuraID: 60065, - // Bonus: stats.Stats{stats.AttackPower: 1000, stats.RangedAttackPower: 1000}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Mithril Pocketwatch", - // ID: 49076, - // AuraID: 60064, - // Bonus: stats.Stats{stats.SpellPower: 590}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellOrProc, - // Harmful: true, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Ancient Pickled Egg", - // ID: 49078, - // AuraID: 60062, - // Bonus: stats.Stats{stats.MeleeHaste: 505, stats.SpellHaste: 505}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnHealDealt | core.CallbackOnPeriodicHealDealt, - // ProcChance: 0.10, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Needle-Encrusted Scorpion", - // ID: 50198, - // AuraID: 71403, - // Bonus: stats.Stats{stats.MeleeCrit: 678, stats.SpellCrit: 678}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeCrit, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Whispering Fanged Skull", - // ID: 50342, - // AuraID: 71401, - // Bonus: stats.Stats{stats.AttackPower: 1100, stats.RangedAttackPower: 1100}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskDirect | core.ProcMaskProc, - // Harmful: true, - // ProcChance: 0.35, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Whispering Fanged Skull H", - // ID: 50343, - // AuraID: 71541, - // Bonus: stats.Stats{stats.AttackPower: 1250, stats.RangedAttackPower: 1250}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskDirect | core.ProcMaskProc, - // Harmful: true, - // ProcChance: 0.35, - // ICD: time.Second * 45, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Purified Lunar Dust", - // ID: 50358, - // AuraID: 71584, - // Bonus: stats.Stats{stats.MP5: 304}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnCastComplete, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Phylactery of the Nameless Lich", - // ID: 50360, - // AuraID: 71605, - // Bonus: stats.Stats{stats.SpellPower: 1074}, - // Duration: time.Second * 20, - // Callback: core.CallbackOnPeriodicDamageDealt, - // ProcMask: core.ProcMaskSpellDamage, - // ProcChance: 0.30, - // ICD: time.Second * 100, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - Name: "Phylactery of the Nameless Lich H", - ItemID: 50365, - AuraID: 71636, - Bonus: stats.Stats{stats.SpellPower: 1207}, - Duration: time.Second * 20, - Callback: core.CallbackOnPeriodicDamageDealt, - ProcMask: core.ProcMaskSpellDamage, - ProcChance: 0.30, - ICD: time.Second * 100, - }) - - core.AddEffectsToTest = false - - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // // Ashen Band of Unmatched Destruction - // Name: "Frostforged Sage", - // ID: 50397, - // AuraID: 72416, - // Bonus: stats.Stats{stats.SpellPower: 285}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskSpellDamage, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.10, - // ICD: time.Second * 60, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Ashen Band of Endless Wisdom - Name: "Chilling Knowledge", - ItemID: 50400, - AuraID: 72418, - Bonus: stats.Stats{stats.SpellPower: 285}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskSpellHealing, - ProcChance: 0.10, - ICD: time.Second * 60, - }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Ashen Band of Endless Destruction - Name: "Frostforged Sage", - ItemID: 50398, - AuraID: 72416, - Bonus: stats.Stats{stats.SpellPower: 285}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskSpellDamage, - Outcome: core.OutcomeLanded, - ProcChance: 0.10, - ICD: time.Second * 60, - }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // // Ashen Band of Unmatched Vengeance - // Name: "Frostforged Champion", - // ID: 50401, - // AuraID: 72412, - // Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // PPM: 1, - // ICD: time.Second * 60, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Ashen Band of Endless Vengeance - Name: "Frostforged Champion", - ItemID: 50402, - AuraID: 72412, - Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - PPM: 1, - ICD: time.Second * 60, - }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // // Ashen Band of Unmatched Courage - // Name: "Frostforged Defender", - // ID: 50403, - // AuraID: 72414, - // Bonus: stats.Stats{stats.Armor: 2400}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitTaken, - // ProcMask: core.ProcMaskMelee, - // Outcome: core.OutcomeLanded, - // ProcChance: 0.03, - // ICD: time.Second * 60, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Ashen Band of Endless Courage - Name: "Frostforged Defender", - ItemID: 50404, - AuraID: 72414, - Bonus: stats.Stats{stats.Armor: 2400}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitTaken, - ProcMask: core.ProcMaskMelee, - Outcome: core.OutcomeLanded, - ProcChance: 0.03, - ICD: time.Second * 60, - }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // // Ashen Band of Unmatched Might - // Name: "Frostforged Champion", - // ID: 52571, - // AuraID: 72412, - // Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480}, - // Duration: time.Second * 10, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskMeleeOrRanged, - // Outcome: core.OutcomeLanded, - // PPM: 1, - // ICD: time.Second * 60, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Ashen Band of Endless Might - Name: "Frostforged Champion", - ItemID: 52572, - AuraID: 72412, - Bonus: stats.Stats{stats.AttackPower: 480, stats.RangedAttackPower: 480}, - Duration: time.Second * 10, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskMeleeOrRanged, - Outcome: core.OutcomeLanded, - PPM: 1, - ICD: time.Second * 60, - }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Sharpened Twilight Scale", - // ID: 54569, - // AuraID: 75458, - // Bonus: stats.Stats{stats.AttackPower: 1304, stats.RangedAttackPower: 1304}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnSpellHitDealt, - // ProcMask: core.ProcMaskDirect | core.ProcMaskProc, - // Harmful: true, // doesn't matter what, just that 'when you deal damage' - // ProcChance: 0.35, - // ICD: time.Second * 45, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - Name: "Sharpened Twilight Scale H", - ItemID: 54590, - AuraID: 75456, - Bonus: stats.Stats{stats.AttackPower: 1472, stats.RangedAttackPower: 1472}, - Duration: time.Second * 15, - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskDirect | core.ProcMaskProc, - Harmful: true, // doesn't matter what, just that 'when you deal damage' - ProcChance: 0.35, - ICD: time.Second * 45, - }) - // shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - // Name: "Charred Twilight Scale", - // ID: 54572, - // AuraID: 75466, - // Bonus: stats.Stats{stats.SpellPower: 763}, - // Duration: time.Second * 15, - // Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - // ProcMask: core.ProcMaskSpellOrProc, - // ProcChance: 0.10, - // ICD: time.Second * 50, - // }) - shared.NewProcStatBonusEffect(shared.ProcStatBonusEffect{ - Name: "Charred Twilight Scale H", - ItemID: 54588, - AuraID: 75473, - Bonus: stats.Stats{stats.SpellPower: 861}, - Duration: time.Second * 15, - Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt, - ProcMask: core.ProcMaskSpellOrSpellProc, - ProcChance: 0.10, - ICD: time.Second * 50, - }) - - core.AddEffectsToTest = true -} diff --git a/sim/core/TestProtoVersioning.results b/sim/core/TestProtoVersioning.results index e7ee4a6935..7010cbee66 100644 --- a/sim/core/TestProtoVersioning.results +++ b/sim/core/TestProtoVersioning.results @@ -1 +1 @@ -saved_version_number: 3 +saved_version_number: 4 diff --git a/sim/core/sim_concurrent_test.go b/sim/core/_sim_concurrent_test.go similarity index 86% rename from sim/core/sim_concurrent_test.go rename to sim/core/_sim_concurrent_test.go index 9a3b776b8a..a9a5488034 100644 --- a/sim/core/sim_concurrent_test.go +++ b/sim/core/_sim_concurrent_test.go @@ -4,11 +4,11 @@ import ( "strconv" "testing" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/death_knight/blood" - "github.com/wowsims/cata/sim/druid/feral" - "github.com/wowsims/cata/sim/hunter/marksmanship" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/death_knight/blood" + "github.com/wowsims/mop/sim/druid/feral" + "github.com/wowsims/mop/sim/hunter/marksmanship" ) func getTestPlayerMM() *proto.Player { @@ -18,11 +18,7 @@ func getTestPlayerMM() *proto.Player { } var MMTalents = "032002-2302320032120231221-03" - var MMGlyphs = &proto.Glyphs{ - Prime1: int32(proto.HunterPrimeGlyph_GlyphOfArcaneShot), - Prime2: int32(proto.HunterPrimeGlyph_GlyphOfRapidFire), - Prime3: int32(proto.HunterPrimeGlyph_HunterPrimeGlyphNone), - } + var MMGlyphs = &proto.Glyphs{} var FerocityTalents = &proto.HunterPetTalents{ SerpentSwiftness: 2, Dive: true, @@ -67,9 +63,6 @@ func getTestPlayerMM() *proto.Player { func getTestPlayerBloodDk() *proto.Player { var BloodTalents = "03323203132212311321--003" var BloodDefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DeathKnightPrimeGlyph_GlyphOfDeathStrike), - Prime2: int32(proto.DeathKnightPrimeGlyph_GlyphOfHeartStrike), - Prime3: int32(proto.DeathKnightPrimeGlyph_GlyphOfRuneStrike), Major1: int32(proto.DeathKnightMajorGlyph_GlyphOfVampiricBlood), Major2: int32(proto.DeathKnightMajorGlyph_GlyphOfDancingRuneWeapon), Major3: int32(proto.DeathKnightMajorGlyph_GlyphOfBoneShield), @@ -109,9 +102,6 @@ func getTestPlayerBloodDk() *proto.Player { func getTestPlayerFeralCat() *proto.Player { var StandardTalents = "-2320322312012121202301-020301" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DruidPrimeGlyph_GlyphOfRip), - Prime2: int32(proto.DruidPrimeGlyph_GlyphOfBloodletting), - Prime3: int32(proto.DruidPrimeGlyph_GlyphOfBerserk), Major1: int32(proto.DruidMajorGlyph_GlyphOfThorns), Major2: int32(proto.DruidMajorGlyph_GlyphOfFeralCharge), Major3: int32(proto.DruidMajorGlyph_GlyphOfRebirth), diff --git a/sim/core/agent.go b/sim/core/agent.go index bde764642e..faaa112004 100644 --- a/sim/core/agent.go +++ b/sim/core/agent.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) // Agent can be thought of as the 'Player', i.e. the thing controlling the Character. diff --git a/sim/core/api.go b/sim/core/api.go index 7c637e4e26..f382e48bbf 100644 --- a/sim/core/api.go +++ b/sim/core/api.go @@ -2,8 +2,8 @@ package core import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" ) /** diff --git a/sim/core/apl.go b/sim/core/apl.go index 11677e4366..fa36b70f03 100644 --- a/sim/core/apl.go +++ b/sim/core/apl.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/sim/core/apl_action.go b/sim/core/apl_action.go index fc731467b7..a495046c85 100644 --- a/sim/core/apl_action.go +++ b/sim/core/apl_action.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLAction struct { diff --git a/sim/core/apl_actions_casting.go b/sim/core/apl_actions_casting.go index c147f0e97d..eb5caa9251 100644 --- a/sim/core/apl_actions_casting.go +++ b/sim/core/apl_actions_casting.go @@ -3,8 +3,8 @@ package core import ( "fmt" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type APLActionCastSpell struct { diff --git a/sim/core/apl_actions_misc.go b/sim/core/apl_actions_misc.go index db4f22b617..12f91bb205 100644 --- a/sim/core/apl_actions_misc.go +++ b/sim/core/apl_actions_misc.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type APLActionChangeTarget struct { diff --git a/sim/core/apl_actions_sequences.go b/sim/core/apl_actions_sequences.go index 4c7123b153..7aa452e00e 100644 --- a/sim/core/apl_actions_sequences.go +++ b/sim/core/apl_actions_sequences.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLActionSequence struct { diff --git a/sim/core/apl_actions_timing.go b/sim/core/apl_actions_timing.go index 9788592a62..e3275767a6 100644 --- a/sim/core/apl_actions_timing.go +++ b/sim/core/apl_actions_timing.go @@ -5,7 +5,7 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLActionWait struct { diff --git a/sim/core/apl_helpers.go b/sim/core/apl_helpers.go index e395c3dfa5..4729df3977 100644 --- a/sim/core/apl_helpers.go +++ b/sim/core/apl_helpers.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Struct for handling unit references, to account for values that can diff --git a/sim/core/apl_value.go b/sim/core/apl_value.go index 2cdc34c875..106e2a7c42 100644 --- a/sim/core/apl_value.go +++ b/sim/core/apl_value.go @@ -4,7 +4,7 @@ import ( "reflect" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValue interface { @@ -122,6 +122,8 @@ func (rot *APLRotation) newAPLValue(config *proto.APLValue) APLValue { value = rot.newValueCurrentComboPoints(config.GetCurrentComboPoints(), config.Uuid) case *proto.APLValue_CurrentRunicPower: value = rot.newValueCurrentRunicPower(config.GetCurrentRunicPower(), config.Uuid) + case *proto.APLValue_MaxComboPoints: + value = rot.newValueMaxComboPoints(config.GetMaxComboPoints(), config.Uuid) case *proto.APLValue_MaxEnergy: value = rot.newValueMaxEnergy(config.GetMaxEnergy(), config.Uuid) case *proto.APLValue_MaxFocus: diff --git a/sim/core/apl_values_aura.go b/sim/core/apl_values_aura.go index 0d3aff654a..b9336b0e5b 100644 --- a/sim/core/apl_values_aura.go +++ b/sim/core/apl_values_aura.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueAuraIsKnown struct { diff --git a/sim/core/apl_values_aura_sets.go b/sim/core/apl_values_aura_sets.go index f7839fffa7..113d93cac3 100644 --- a/sim/core/apl_values_aura_sets.go +++ b/sim/core/apl_values_aura_sets.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Parent struct for all APL values that perform checks on the set of buff auras diff --git a/sim/core/apl_values_auto_attacks.go b/sim/core/apl_values_auto_attacks.go index 4f68c60ebf..bcd1a35508 100644 --- a/sim/core/apl_values_auto_attacks.go +++ b/sim/core/apl_values_auto_attacks.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueAutoTimeToNext struct { diff --git a/sim/core/apl_values_boss.go b/sim/core/apl_values_boss.go index 6337bda056..e8b12f2bd9 100644 --- a/sim/core/apl_values_boss.go +++ b/sim/core/apl_values_boss.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueBossSpellIsCasting struct { diff --git a/sim/core/apl_values_core.go b/sim/core/apl_values_core.go index e124d135b6..15c26957d7 100644 --- a/sim/core/apl_values_core.go +++ b/sim/core/apl_values_core.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueDotIsActive struct { diff --git a/sim/core/apl_values_encounter.go b/sim/core/apl_values_encounter.go index 6c772bf2d9..c1314ba64f 100644 --- a/sim/core/apl_values_encounter.go +++ b/sim/core/apl_values_encounter.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueCurrentTime struct { diff --git a/sim/core/apl_values_gcd.go b/sim/core/apl_values_gcd.go index 086e8a7ba9..9044cb520f 100644 --- a/sim/core/apl_values_gcd.go +++ b/sim/core/apl_values_gcd.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueGCDIsReady struct { diff --git a/sim/core/apl_values_operators.go b/sim/core/apl_values_operators.go index e035feb24d..e66040e7aa 100644 --- a/sim/core/apl_values_operators.go +++ b/sim/core/apl_values_operators.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueConst struct { diff --git a/sim/core/apl_values_properties.go b/sim/core/apl_values_properties.go index 9c4dd58b8a..1dade92743 100644 --- a/sim/core/apl_values_properties.go +++ b/sim/core/apl_values_properties.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueChannelClipDelay struct { diff --git a/sim/core/apl_values_resources.go b/sim/core/apl_values_resources.go index 7333f54998..be4483d793 100644 --- a/sim/core/apl_values_resources.go +++ b/sim/core/apl_values_resources.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueCurrentHealth struct { @@ -388,6 +388,31 @@ func (value *APLValueCurrentComboPoints) String() string { return "Current Combo Points" } +type APLValueMaxComboPoints struct { + DefaultAPLValueImpl + maxComboPoints int32 +} + +func (rot *APLRotation) newValueMaxComboPoints(_ *proto.APLValueMaxComboPoints, uuid *proto.UUID) APLValue { + unit := rot.unit + if !unit.HasEnergyBar() { + rot.ValidationMessageByUUID(uuid, proto.LogLevel_Error, "%s does not use Combo Points", unit.Label) + return nil + } + return &APLValueMaxComboPoints{ + maxComboPoints: unit.MaxComboPoints(), + } +} +func (value *APLValueMaxComboPoints) Type() proto.APLValueType { + return proto.APLValueType_ValueTypeInt +} +func (value *APLValueMaxComboPoints) GetInt(sim *Simulation) int32 { + return value.maxComboPoints +} +func (value *APLValueMaxComboPoints) String() string { + return fmt.Sprintf("Max Combo Points(%d)", value.maxComboPoints) +} + type APLValueCurrentRunicPower struct { DefaultAPLValueImpl unit *Unit diff --git a/sim/core/apl_values_runes.go b/sim/core/apl_values_runes.go index af5aa2cbba..8c0623bd6e 100644 --- a/sim/core/apl_values_runes.go +++ b/sim/core/apl_values_runes.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueCurrentRuneCount struct { diff --git a/sim/core/apl_values_sequences.go b/sim/core/apl_values_sequences.go index e316e8a71b..20a5ac3617 100644 --- a/sim/core/apl_values_sequences.go +++ b/sim/core/apl_values_sequences.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueSequenceIsComplete struct { diff --git a/sim/core/apl_values_spell.go b/sim/core/apl_values_spell.go index 0f629c2f74..32072d0e1a 100644 --- a/sim/core/apl_values_spell.go +++ b/sim/core/apl_values_spell.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueSpellIsKnown struct { @@ -96,6 +96,9 @@ func (value *APLValueSpellTimeToReady) Type() proto.APLValueType { func (value *APLValueSpellTimeToReady) GetDuration(sim *Simulation) time.Duration { return value.spell.TimeToReady(sim) } +func (value *APLValueSpellTimeToReady) GetFloat(sim *Simulation) float64 { + return value.spell.TimeToReady(sim).Seconds() +} func (value *APLValueSpellTimeToReady) String() string { return fmt.Sprintf("Time To Ready(%s)", value.spell.ActionID) } diff --git a/sim/core/apl_values_test.go b/sim/core/apl_values_test.go index 09d88ea8ab..4a010838af 100644 --- a/sim/core/apl_values_test.go +++ b/sim/core/apl_values_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) func TestValueConst(t *testing.T) { diff --git a/sim/core/apl_values_unit.go b/sim/core/apl_values_unit.go index c81e37c6e5..8e0269dd80 100644 --- a/sim/core/apl_values_unit.go +++ b/sim/core/apl_values_unit.go @@ -1,7 +1,7 @@ package core import ( - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type APLValueUnitIsMoving struct { diff --git a/sim/core/armor_test.go b/sim/core/armor_test.go index 8d6e5b3804..bdb794eaeb 100644 --- a/sim/core/armor_test.go +++ b/sim/core/armor_test.go @@ -3,7 +3,7 @@ package core import ( "testing" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) func TestSunderArmorStacks(t *testing.T) { @@ -142,7 +142,7 @@ func TestDamageReductionFromArmor(t *testing.T) { } attacker := Unit{ Type: PlayerUnit, - Level: 85, + Level: 90, } spell := &Spell{} target.stats = target.initialStats diff --git a/sim/core/attack.go b/sim/core/attack.go index 5b2a1773f1..bad23bbb99 100644 --- a/sim/core/attack.go +++ b/sim/core/attack.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // ReplaceMHSwing is called right before a main hand auto attack fires. diff --git a/sim/core/aura.go b/sim/core/aura.go index e58cbcb778..0f1e69504e 100644 --- a/sim/core/aura.go +++ b/sim/core/aura.go @@ -8,7 +8,7 @@ import ( "golang.org/x/exp/constraints" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) const NeverExpires = time.Duration(math.MaxInt64) diff --git a/sim/core/aura_helpers.go b/sim/core/aura_helpers.go index 5f8682df9e..e362a70d32 100644 --- a/sim/core/aura_helpers.go +++ b/sim/core/aura_helpers.go @@ -5,7 +5,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) type AuraCallback uint16 @@ -235,6 +235,18 @@ func (aura *StatBuffAura) CanProc(sim *Simulation) bool { return !aura.IsSwapped && ((aura.CustomProcCondition == nil) || aura.CustomProcCondition(sim, aura.Aura)) } +func (aura *StatBuffAura) InferCDType() CooldownType { + cdType := CooldownTypeUnknown + + if aura.BuffsMatchingStat([]stats.Stat{stats.Armor, stats.BlockPercent, stats.DodgeRating, stats.ParryRating, stats.Health, stats.ArcaneResistance, stats.FireResistance, stats.FrostResistance, stats.NatureResistance, stats.ShadowResistance}) { + cdType |= CooldownTypeSurvival + } else { + cdType |= CooldownTypeDPS + } + + return cdType +} + type StackingStatAura struct { Aura Aura BonusPerStack stats.Stats diff --git a/sim/core/avoid_dr.go b/sim/core/avoid_dr.go index 21ec6bbac2..813dac3e96 100644 --- a/sim/core/avoid_dr.go +++ b/sim/core/avoid_dr.go @@ -1,11 +1,12 @@ package core import ( - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) // Could be in constants.go, but they won't be used anywhere else // C values are divided by 100 so that we are working with 1% = 0.01 +// TODO: UPDATE FOR MOP // Reference for Cata values: https://web.archive.org/web/20130127084642/http://elitistjerks.com/f15/t29453-combat_ratings_level_85_cataclysm/ const Diminish_k_Druid = 0.972 const Diminish_k_Nondruid = 0.956 diff --git a/sim/core/base_stats.go b/sim/core/base_stats.go index 0b624ca189..c4edac44de 100644 --- a/sim/core/base_stats.go +++ b/sim/core/base_stats.go @@ -1,8 +1,8 @@ package core import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type BaseStatsKey struct { @@ -106,6 +106,20 @@ var RaceOffsets = map[proto.Race]stats.Stats{ stats.Spirit: -1, stats.Stamina: 0, }, + proto.Race_RaceAlliancePandaren: { + stats.Agility: -2, + stats.Strength: 0, + stats.Intellect: -1, + stats.Spirit: 2, + stats.Stamina: 1, + }, + proto.Race_RaceHordePandaren: { + stats.Agility: -2, + stats.Strength: 0, + stats.Intellect: -1, + stats.Spirit: 2, + stats.Stamina: 1, + }, } var ClassBaseStats = map[proto.Class]stats.Stats{ @@ -199,19 +213,29 @@ var ClassBaseStats = map[proto.Class]stats.Stats{ stats.Stamina: 106, stats.AttackPower: float64(CharacterLevel)*3.0 - 10, }, + proto.Class_ClassMonk: { + stats.Health: 43285, + stats.Agility: 105, + stats.Strength: 88, + stats.Intellect: 156, + stats.Spirit: 173, + stats.Stamina: 105, + stats.AttackPower: float64(CharacterLevel)*2.0 - 30, + }, } var ClassBaseScaling = map[proto.Class]float64{ - proto.Class_ClassDeathKnight: 1125.227400, - proto.Class_ClassDruid: 986.626460, - proto.Class_ClassHunter: 1125.227400, - proto.Class_ClassMage: 937.330080, - proto.Class_ClassPaladin: 1029.493400, - proto.Class_ClassPriest: 945.188840, - proto.Class_ClassRogue: 1125.227400, - proto.Class_ClassShaman: 1004.487900, - proto.Class_ClassWarlock: 962.335630, - proto.Class_ClassWarrior: 1125.227400, + proto.Class_ClassDeathKnight: 1507.454300, + proto.Class_ClassDruid: 1327.328600, + proto.Class_ClassHunter: 1507.454300, + proto.Class_ClassMage: 1263.083400, + proto.Class_ClassMonk: 1327.328600, + proto.Class_ClassPaladin: 1384.037200, + proto.Class_ClassPriest: 1273.156700, + proto.Class_ClassRogue: 1507.454300, + proto.Class_ClassShaman: 1351.280400, + proto.Class_ClassWarlock: 1295.840200, + proto.Class_ClassWarrior: 1507.454300, } func AddBaseStatsCombo(r proto.Race, c proto.Class) { @@ -319,4 +343,19 @@ func init() { AddBaseStatsCombo(proto.Race_RaceGoblin, proto.Class_ClassWarrior) AddBaseStatsCombo(proto.Race_RaceWorgen, proto.Class_ClassWarrior) AddBaseStatsCombo(proto.Race_RaceBloodElf, proto.Class_ClassWarrior) + + AddBaseStatsCombo(proto.Race_RaceDraenei, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceDwarf, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceGnome, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceHuman, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceNightElf, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceWorgen, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceAlliancePandaren, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceBloodElf, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceOrc, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceTauren, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceTroll, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceUndead, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceGoblin, proto.Class_ClassMonk) + AddBaseStatsCombo(proto.Race_RaceHordePandaren, proto.Class_ClassMonk) } diff --git a/sim/core/base_stats_auto_gen.go b/sim/core/base_stats_auto_gen.go index 1b3b8fcccc..d0d984e8a6 100644 --- a/sim/core/base_stats_auto_gen.go +++ b/sim/core/base_stats_auto_gen.go @@ -5,95 +5,102 @@ package core // ************************************** import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -const ExpertisePerQuarterPercentReduction = 30.027197 -const HasteRatingPerHastePercent = 128.057160 -const CritRatingPerCritPercent = 179.280040 -const PhysicalHitRatingPerHitPercent = 120.108800 -const SpellHitRatingPerHitPercent = 102.445740 -const DodgeRatingPerDodgePercent = 176.718900 -const ParryRatingPerParryPercent = 176.718900 -const MasteryRatingPerMasteryPoint = 179.280040 +const ExpertisePerQuarterPercentReduction = 340.000000 +const HasteRatingPerHastePercent = 425.000000 +const CritRatingPerCritPercent = 600.000000 +const PhysicalHitRatingPerHitPercent = 340.000000 +const SpellHitRatingPerHitPercent = 340.000000 +const DodgeRatingPerDodgePercent = 885.000000 +const ParryRatingPerParryPercent = 885.000000 +const MasteryRatingPerMasteryPoint = 600.000000 var CritPerAgiMaxLevel = map[proto.Class]float64{ proto.Class_ClassUnknown: 0.0, - proto.Class_ClassWarrior: 0.0041, - proto.Class_ClassPaladin: 0.0049, - proto.Class_ClassHunter: 0.0031, - proto.Class_ClassRogue: 0.0031, - proto.Class_ClassPriest: 0.0049, - proto.Class_ClassDeathKnight: 0.0041, - proto.Class_ClassShaman: 0.0031, - proto.Class_ClassMage: 0.0050, - proto.Class_ClassWarlock: 0.0051, - proto.Class_ClassDruid: 0.0031, + proto.Class_ClassWarrior: 0.00010000, + proto.Class_ClassPaladin: 0.00010000, + proto.Class_ClassHunter: 0.00079395, + proto.Class_ClassRogue: 0.00079395, + proto.Class_ClassPriest: 0.00125496, + proto.Class_ClassDeathKnight: 0.00010000, + proto.Class_ClassShaman: 0.00079395, + proto.Class_ClassMage: 0.00128057, + proto.Class_ClassWarlock: 0.00130618, + proto.Class_ClassMonk: 0.00079395, + proto.Class_ClassDruid: 0.00079395, } var CritPerIntMaxLevel = map[proto.Class]float64{ proto.Class_ClassUnknown: 0.0, - proto.Class_ClassWarrior: 0.0000, - proto.Class_ClassPaladin: 0.0015, - proto.Class_ClassHunter: 0.0000, - proto.Class_ClassRogue: 0.0000, - proto.Class_ClassPriest: 0.0015, - proto.Class_ClassDeathKnight: 0.0000, - proto.Class_ClassShaman: 0.0015, - proto.Class_ClassMage: 0.0015, - proto.Class_ClassWarlock: 0.0015, - proto.Class_ClassDruid: 0.0015, + proto.Class_ClassWarrior: 0.00010000, + proto.Class_ClassPaladin: 0.00039469, + proto.Class_ClassHunter: 0.00010000, + proto.Class_ClassRogue: 0.00010000, + proto.Class_ClassPriest: 0.00039469, + proto.Class_ClassDeathKnight: 0.00010000, + proto.Class_ClassShaman: 0.00039469, + proto.Class_ClassMage: 0.00039469, + proto.Class_ClassWarlock: 0.00039469, + proto.Class_ClassMonk: 0.00039469, + proto.Class_ClassDruid: 0.00039469, } var ExtraClassBaseStats = map[proto.Class]stats.Stats{ proto.Class_ClassUnknown: {}, proto.Class_ClassWarrior: { stats.Mana: 0.0000, stats.SpellCritPercent: 0.0000, - stats.PhysicalCritPercent: 0.0000, + stats.PhysicalCritPercent: 5.0000, }, proto.Class_ClassPaladin: { - stats.Mana: 23422.0000, - stats.SpellCritPercent: 3.3355, - stats.PhysicalCritPercent: 0.6520, + stats.Mana: 60000.0000, + stats.SpellCritPercent: 3.3400, + stats.PhysicalCritPercent: 5.0000, }, proto.Class_ClassHunter: { stats.Mana: 0.0000, stats.SpellCritPercent: 0.0000, - stats.PhysicalCritPercent: -1.5320, + stats.PhysicalCritPercent: -1.5300, }, proto.Class_ClassRogue: { stats.Mana: 0.0000, stats.SpellCritPercent: 0.0000, - stats.PhysicalCritPercent: -0.2950, + stats.PhysicalCritPercent: -0.3000, }, proto.Class_ClassPriest: { - stats.Mana: 20590.0000, - stats.SpellCritPercent: 1.2375, - stats.PhysicalCritPercent: 3.1765, + stats.Mana: 300000.0000, + stats.SpellCritPercent: 1.2400, + stats.PhysicalCritPercent: 3.1800, }, proto.Class_ClassDeathKnight: { stats.Mana: 0.0000, stats.SpellCritPercent: 0.0000, - stats.PhysicalCritPercent: 0.0000, + stats.PhysicalCritPercent: 5.0000, }, proto.Class_ClassShaman: { - stats.Mana: 23430.0000, - stats.SpellCritPercent: 2.2010, - stats.PhysicalCritPercent: 2.9220, + stats.Mana: 60000.0000, + stats.SpellCritPercent: 2.2000, + stats.PhysicalCritPercent: 2.9200, }, proto.Class_ClassMage: { - stats.Mana: 17418.0000, - stats.SpellCritPercent: 0.9075, - stats.PhysicalCritPercent: 3.4540, + stats.Mana: 300000.0000, + stats.SpellCritPercent: 0.9100, + stats.PhysicalCritPercent: 3.4500, }, proto.Class_ClassWarlock: { - stats.Mana: 20553.0000, + stats.Mana: 300000.0000, stats.SpellCritPercent: 1.7000, - stats.PhysicalCritPercent: 2.6220, + stats.PhysicalCritPercent: 2.6200, + }, + proto.Class_ClassMonk: { + stats.Mana: 300000.0000, + stats.SpellCritPercent: 1.8500, + stats.PhysicalCritPercent: 7.4800, }, proto.Class_ClassDruid: { - stats.Mana: 18635.0000, - stats.SpellCritPercent: 1.8515, - stats.PhysicalCritPercent: 7.4755, + stats.Mana: 60000.0000, + stats.SpellCritPercent: 1.8500, + stats.PhysicalCritPercent: 7.4800, }, } diff --git a/sim/core/buffs.go b/sim/core/buffs.go index 02ec32cef7..0c121f47e7 100644 --- a/sim/core/buffs.go +++ b/sim/core/buffs.go @@ -8,8 +8,8 @@ import ( googleProto "google.golang.org/protobuf/proto" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type BuffConfig struct { @@ -95,9 +95,9 @@ func applyBuffEffects(agent Agent, raidBuffs *proto.RaidBuffs, _ *proto.PartyBuf character := agent.GetCharacter() // % Stats Buffs - // https://www.wowhead.com/cata/spell=1126/mark-of-the-wild - // https://www.wowhead.com/cata/spell=20217/blessing-of-kings - // https://www.wowhead.com/cata/item=63140/drums-of-the-burning-wild + // https://www.wowhead.com/mop-classic/spell=1126/mark-of-the-wild + // https://www.wowhead.com/mop-classic/spell=20217/blessing-of-kings + // https://www.wowhead.com/mop-classic/item=63140/drums-of-the-burning-wild if raidBuffs.BlessingOfKings { BlessingOfKingsAura(&character.Unit) } @@ -110,6 +110,10 @@ func applyBuffEffects(agent Agent, raidBuffs *proto.RaidBuffs, _ *proto.PartyBuf MarkOfTheWildAura(&character.Unit) } + if raidBuffs.LegacyOfTheEmperor { + LegacyOfTheEmperorAura(&character.Unit) + } + // Resistances if raidBuffs.ResistanceAura { ResistanceAura(&character.Unit) @@ -180,6 +184,10 @@ func applyBuffEffects(agent Agent, raidBuffs *proto.RaidBuffs, _ *proto.PartyBuf FuriousHowl(&character.Unit) } + if raidBuffs.LegacyOfTheWhiteTiger { + LegacyOfTheWhiteTiger(&character.Unit) + } + // +% Attackpower if raidBuffs.AbominationsMight { AbominationsMightAura(&character.Unit) @@ -408,17 +416,21 @@ func DrumsOfTheBurningWildAura(unit *Unit) *Aura { return aura } +func LegacyOfTheEmperorAura(unit *Unit) *Aura { + return makeExclusiveAllStatPercentBuff(unit, "Legacy of the Emperor", ActionID{SpellID: 115921}, 1.05) +} + /////////////////////////////////////////////////////////////////////////// // Resistances /////////////////////////////////////////////////////////////////////////// -// https://www.wowhead.com/cata/item=63140/drums-of-the-burning-wild -// https://www.wowhead.com/cata/spell=1126/mark-of-the-wild -// https://www.wowhead.com/cata/spell=20217/blessing-of-kings -// https://www.wowhead.com/cata/spell=8184/elemental-resistance-totem -// https://www.wowhead.com/cata/spell=19891/resistance-aura -// https://www.wowhead.com/cata/spell=20043/aspect-of-the-wild -// https://www.wowhead.com/cata/spell=27683/shadow-protection +// https://www.wowhead.com/mop-classic/item=63140/drums-of-the-burning-wild +// https://www.wowhead.com/mop-classic/spell=1126/mark-of-the-wild +// https://www.wowhead.com/mop-classic/spell=20217/blessing-of-kings +// https://www.wowhead.com/mop-classic/spell=8184/elemental-resistance-totem +// https://www.wowhead.com/mop-classic/spell=19891/resistance-aura +// https://www.wowhead.com/mop-classic/spell=20043/aspect-of-the-wild +// https://www.wowhead.com/mop-classic/spell=27683/shadow-protection func ElementalResistanceTotemAura(unit *Unit) *Aura { return makeExclusiveBuff(unit, BuffConfig{ @@ -468,7 +480,7 @@ func AspectOfTheWildAura(unit *Unit) *Aura { // Stamina /////////////////////////////////////////////////////////////////////////// -// https://www.wowhead.com/cata/spell=21562/power-word-fortitude +// https://www.wowhead.com/mop-classic/spell=21562/power-word-fortitude func PowerWordFortitudeAura(unit *Unit) *Aura { return makeExclusiveBuff(unit, BuffConfig{ "Power Word: Fortitude", @@ -479,7 +491,7 @@ func PowerWordFortitudeAura(unit *Unit) *Aura { }) } -// https://www.wowhead.com/cata/spell=6307/blood-pact +// https://www.wowhead.com/mop-classic/spell=6307/blood-pact func BloodPactAura(unit *Unit) *Aura { return makeExclusiveBuff(unit, BuffConfig{ "Blood Pact", @@ -490,7 +502,7 @@ func BloodPactAura(unit *Unit) *Aura { }) } -// https://www.wowhead.com/cata/spell=469/commanding-shout +// https://www.wowhead.com/mop-classic/spell=469/commanding-shout func CommandingShoutAura(unit *Unit, asExternal bool, withGlyph bool) *Aura { baseAura := makeExclusiveBuff(unit, BuffConfig{ "Commanding Shout", @@ -527,7 +539,7 @@ func applyStaminaBuffs(unit *Unit, raidBuffs *proto.RaidBuffs) { // Strength and Agility /////////////////////////////////////////////////////////////////////////// -// https://www.wowhead.com/cata/spell=8075/strength-of-earth-totem +// https://www.wowhead.com/mop-classic/spell=8075/strength-of-earth-totem func StrengthOfEarthTotemAura(unit *Unit) *Aura { return makeExclusiveBuff(unit, BuffConfig{ "Strength of Earth Totem", @@ -547,7 +559,7 @@ func RoarOfCourageAura(unit *Unit) *Aura { }}) } -// https://www.wowhead.com/cata/spell=57330/horn-of-winter +// https://www.wowhead.com/mop-classic/spell=57330/horn-of-winter func HornOfWinterAura(unit *Unit, asExternal bool, withGlyph bool) *Aura { baseAura := makeExclusiveBuff(unit, BuffConfig{ "Horn of Winter", @@ -566,7 +578,7 @@ func HornOfWinterAura(unit *Unit, asExternal bool, withGlyph bool) *Aura { return baseAura } -// https://www.wowhead.com/cata/spell=6673/battle-shout +// https://www.wowhead.com/mop-classic/spell=6673/battle-shout func BattleShoutAura(unit *Unit, asExternal bool, withGlyph bool) *Aura { baseAura := makeExclusiveBuff(unit, BuffConfig{ "Battle Shout", @@ -603,10 +615,10 @@ func applyStrengthAgilityBuffs(unit *Unit, raidBuffs *proto.RaidBuffs) { // Attack Power /////////////////////////////////////////////////////////////////////////// -// https://www.wowhead.com/cata/spell=30808/unleashed-rage -// https://www.wowhead.com/cata/spell=19506/trueshot-aura -// https://www.wowhead.com/cata/spell=53138/abominations-might -// https://www.wowhead.com/cata/spell=19740/blessing-of-might +// https://www.wowhead.com/mop-classic/spell=30808/unleashed-rage +// https://www.wowhead.com/mop-classic/spell=19506/trueshot-aura +// https://www.wowhead.com/mop-classic/spell=53138/abominations-might +// https://www.wowhead.com/mop-classic/spell=19740/blessing-of-might func UnleashedRageAura(unit *Unit) *Aura { return makeExclusiveBuff(unit, BuffConfig{ @@ -812,6 +824,18 @@ func FuriousHowl(unit *Unit) *Aura { return baseAura } +func LegacyOfTheWhiteTiger(unit *Unit) *Aura { + baseAura := makeExclusiveBuff(unit, BuffConfig{ + "Legacy of the White Tiger", + ActionID{SpellID: 116781}, + []StatConfig{ + {stats.PhysicalCritPercent, 5, false}, + {stats.SpellCritPercent, 5, false}, + }}) + + return baseAura +} + // ///////////////////////////////////////////////////////////////////////// // // Spell Haste @@ -963,6 +987,7 @@ func applyPetBuffEffects(petAgent PetAgent, raidBuffs *proto.RaidBuffs, partyBuf raidBuffs.Rampage = false raidBuffs.TerrifyingRoar = false raidBuffs.FuriousHowl = false + raidBuffs.LegacyOfTheWhiteTiger = false // AP% raidBuffs.TrueshotAura = false raidBuffs.UnleashedRage = false @@ -999,6 +1024,7 @@ func applyPetBuffEffects(petAgent PetAgent, raidBuffs *proto.RaidBuffs, partyBuf raidBuffs.MarkOfTheWild = false raidBuffs.BlessingOfKings = false raidBuffs.DrumsOfTheBurningWild = false + raidBuffs.LegacyOfTheEmperor = false individualBuffs.HymnOfHopeCount = 0 individualBuffs.InnervateCount = 0 diff --git a/sim/core/bulksim.go b/sim/core/bulksim.go index fd33da0692..9928169492 100644 --- a/sim/core/bulksim.go +++ b/sim/core/bulksim.go @@ -12,8 +12,8 @@ import ( goproto "google.golang.org/protobuf/proto" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" ) const ( diff --git a/sim/core/bulksim_test.go b/sim/core/bulksim_test.go index 36af9a4f59..a2cba66d71 100644 --- a/sim/core/bulksim_test.go +++ b/sim/core/bulksim_test.go @@ -4,8 +4,8 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/sim/core/cast.go b/sim/core/cast.go index e256916856..cef67bfaba 100644 --- a/sim/core/cast.go +++ b/sim/core/cast.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) // A cast corresponds to any action which causes the in-game castbar to be diff --git a/sim/core/character.go b/sim/core/character.go index f94cb84f1f..408e54a27a 100644 --- a/sim/core/character.go +++ b/sim/core/character.go @@ -4,11 +4,10 @@ import ( "fmt" "slices" "strconv" - "strings" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" "google.golang.org/protobuf/encoding/protowire" "google.golang.org/protobuf/reflect/protoreflect" ) @@ -51,7 +50,7 @@ type Character struct { ItemSwap ItemSwap // Consumables this Character will be using. - Consumes *proto.Consumes + Consumables *proto.ConsumesSpec // Base stats for this Character. baseStats stats.Stats @@ -67,8 +66,7 @@ type Character struct { professions [2]proto.Profession - glyphs [9]int32 - PrimaryTalentTree uint8 + glyphs [6]int32 // Used for effects like "Increased Armor Value from Items" *EquipScalingManager @@ -136,10 +134,7 @@ func NewCharacter(party *Party, partyIndex int, player *proto.Player) Character character.Label = fmt.Sprintf("%s (#%d)", character.Name, character.Index+1) if player.Glyphs != nil { - character.glyphs = [9]int32{ - player.Glyphs.Prime1, - player.Glyphs.Prime2, - player.Glyphs.Prime3, + character.glyphs = [6]int32{ player.Glyphs.Major1, player.Glyphs.Major2, player.Glyphs.Major3, @@ -148,11 +143,10 @@ func NewCharacter(party *Party, partyIndex int, player *proto.Player) Character player.Glyphs.Minor3, } } - character.PrimaryTalentTree = GetPrimaryTalentTreeIndex(player.TalentsString) - character.Consumes = &proto.Consumes{} - if player.Consumes != nil { - character.Consumes = player.Consumes + character.Consumables = &proto.ConsumesSpec{} + if player.Consumables != nil { + character.Consumables = player.Consumables } character.baseStats = BaseStats[BaseStatsKey{Race: character.Race, Class: character.Class}] @@ -749,56 +743,24 @@ func (character *Character) GetMatchingItemProcAuras(statTypesToMatch []stats.St }) } -// Returns the talent tree (0, 1, or 2) of the tree with the most points. -// -// talentStr is expected to be a wowhead-formatted talent string, e.g. -// "12123131-123123123-123123213" -func GetPrimaryTalentTreeIndex(talentStr string) uint8 { - trees := strings.Split(talentStr, "-") - bestTree := 0 - bestTreePoints := 0 - - for treeIdx, treeStr := range trees { - points := 0 - for talentIdx := 0; talentIdx < len(treeStr); talentIdx++ { - v, _ := strconv.Atoi(string(treeStr[talentIdx])) - points += v - } - - if points > bestTreePoints { - bestTreePoints = points - bestTree = treeIdx - } - } - - return uint8(bestTree) -} - // Uses proto reflection to set fields in a talents proto (e.g. MageTalents, // WarriorTalents) based on a talentsStr. treeSizes should contain the number // of talents in each tree, usually around 30. This is needed because talent // strings truncate 0's at the end of each tree, so we can't infer the start index // of the tree from the string. -func FillTalentsProto(data protoreflect.Message, talentsStr string, treeSizes [3]int) { - treeStrs := strings.Split(talentsStr, "-") +func FillTalentsProto(data protoreflect.Message, talentsStr string) { fieldDescriptors := data.Descriptor().Fields() - var offset int - for treeIdx, treeStr := range treeStrs { - for talentIdx, talentValStr := range treeStr { - talentVal, _ := strconv.Atoi(string(talentValStr)) - talentOffset := offset + talentIdx + 1 + for talentIdx, talentValStr := range talentsStr { + talentVal, _ := strconv.Atoi(string(talentValStr)) + if talentVal != 0 { + talentOffset := talentIdx*3 + talentVal fd := fieldDescriptors.ByNumber(protowire.Number(talentOffset)) if fd == nil { panic(fmt.Sprintf("Couldn't find proto field for talent #%d, full string: %s", talentOffset, talentsStr)) } - if fd.Kind() == protoreflect.BoolKind { - data.Set(fd, protoreflect.ValueOfBool(talentVal == 1)) - } else { // Int32Kind - data.Set(fd, protoreflect.ValueOfInt32(int32(talentVal))) - } + data.Set(fd, protoreflect.ValueOfBool(true)) } - offset += treeSizes[treeIdx] } } diff --git a/sim/core/constants.go b/sim/core/constants.go index cce0aa3a67..9157092751 100644 --- a/sim/core/constants.go +++ b/sim/core/constants.go @@ -3,10 +3,10 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) -const CharacterLevel = 85 +const CharacterLevel = 90 const GCDMin = time.Second * 1 const GCDDefault = time.Millisecond * 1500 @@ -22,15 +22,7 @@ const EnemyAutoAttackAPCoefficient = 1.0 / (14.0 * 177.0) const AverageMagicPartialResistMultiplier = 0.94 // IDs for items used in core -const ( - ItemIDAtieshMage = 22589 - ItemIDAtieshWarlock = 22630 - ItemIDBraidedEterniumChain = 24114 - ItemIDChainOfTheTwilightOwl = 24121 - ItemIDEyeOfTheNight = 24116 - ItemIDJadePendantOfBlasting = 20966 - ItemIDTheLightningCapacitor = 28785 -) +// const () type Hand bool diff --git a/sim/core/consumes.go b/sim/core/consumes.go index b2f57a8019..29ba12ef87 100644 --- a/sim/core/consumes.go +++ b/sim/core/consumes.go @@ -3,435 +3,113 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Registers all consume-related effects to the Agent. func applyConsumeEffects(agent Agent) { character := agent.GetCharacter() - consumes := character.Consumes - if consumes == nil { + consumables := character.Consumables + if consumables == nil { return } alchemyFlaskBonus := TernaryFloat64(character.HasProfession(proto.Profession_Alchemy), 80, 0) alchemyBattleElixirBonus := TernaryFloat64(character.HasProfession(proto.Profession_Alchemy), 40, 0) - if consumes.Flask != proto.Flask_FlaskUnknown { - switch consumes.Flask { - case proto.Flask_FlaskOfTitanicStrength: - character.AddStats(stats.Stats{ - stats.Strength: 300 + alchemyFlaskBonus, - }) - case proto.Flask_FlaskOfTheWinds: - character.AddStats(stats.Stats{ - stats.Agility: 300 + alchemyFlaskBonus, - }) - case proto.Flask_FlaskOfSteelskin: - character.AddStats(stats.Stats{ - stats.Stamina: 450 + alchemyFlaskBonus*1.5, - }) - case proto.Flask_FlaskOfFlowingWater: - character.AddStats(stats.Stats{ - stats.Spirit: 300 + alchemyFlaskBonus, - }) - case proto.Flask_FlaskOfTheDraconicMind: - character.AddStats(stats.Stats{ - stats.Intellect: 300 + alchemyFlaskBonus, - }) - case proto.Flask_FlaskOfTheFrostWyrm: - character.AddStats(stats.Stats{ - stats.SpellPower: 125, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.SpellPower: 47, - }) - } - case proto.Flask_FlaskOfEndlessRage: - character.AddStats(stats.Stats{ - stats.AttackPower: 180, - stats.RangedAttackPower: 180, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.AttackPower: 80, - stats.RangedAttackPower: 80, - }) - } - case proto.Flask_FlaskOfPureMojo: - character.AddStats(stats.Stats{ - stats.MP5: 45, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.MP5: 20, - }) - } - case proto.Flask_FlaskOfStoneblood: - character.AddStats(stats.Stats{ - stats.Health: 1300, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.Health: 650, - }) - } - case proto.Flask_LesserFlaskOfToughness: - character.AddStats(stats.Stats{ - stats.ResilienceRating: 50, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.ResilienceRating: 82, - }) - } - case proto.Flask_LesserFlaskOfResistance: - character.AddStats(stats.Stats{ - stats.ArcaneResistance: 50, - stats.FireResistance: 50, - stats.FrostResistance: 50, - stats.NatureResistance: 50, - stats.ShadowResistance: 50, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.ArcaneResistance: 40, - stats.FireResistance: 40, - stats.FrostResistance: 40, - stats.NatureResistance: 40, - stats.ShadowResistance: 40, - }) - } + if consumables.FlaskId != 0 { + flask := ConsumablesByID[consumables.FlaskId] + if flask.Stats[stats.Strength] > 0 { + flask.Stats[stats.Strength] += alchemyFlaskBonus + } else if flask.Stats[stats.Agility] > 0 { + flask.Stats[stats.Agility] += alchemyFlaskBonus + } else if flask.Stats[stats.Intellect] > 0 { + flask.Stats[stats.Intellect] += alchemyFlaskBonus + } else if flask.Stats[stats.Spirit] > 0 { + flask.Stats[stats.Spirit] += alchemyFlaskBonus + } else if flask.Stats[stats.Stamina] > 0 { + flask.Stats[stats.Stamina] += alchemyFlaskBonus * 1.5 } - } else { - switch consumes.BattleElixir { - case proto.BattleElixir_ElixirOfTheMaster: - character.AddStats(stats.Stats{ - stats.MasteryRating: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_ElixirOfMightySpeed: - character.AddStats(stats.Stats{ - stats.HasteRating: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_ElixirOfImpossibleAccuracy: - character.AddStats(stats.Stats{ - stats.HitRating: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_ElixirOfTheCobra: - character.AddStats(stats.Stats{ - stats.CritRating: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_ElixirOfTheNaga: - character.AddStats(stats.Stats{ - stats.ExpertiseRating: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_GhostElixir: - character.AddStats(stats.Stats{ - stats.Spirit: 225 + alchemyBattleElixirBonus, - }) - case proto.BattleElixir_ElixirOfAccuracy: - character.AddStats(stats.Stats{ - stats.HitRating: 45, - }) - case proto.BattleElixir_ElixirOfArmorPiercing: - character.AddStats(stats.Stats{ - stats.Agility: 25, - stats.CritRating: 25, - }) - case proto.BattleElixir_ElixirOfDeadlyStrikes: - character.AddStats(stats.Stats{ - stats.CritRating: 45, - }) - case proto.BattleElixir_ElixirOfExpertise: - character.AddStats(stats.Stats{ - stats.ExpertiseRating: 45, - }) - case proto.BattleElixir_ElixirOfLightningSpeed: - character.AddStats(stats.Stats{ - stats.HasteRating: 45, - }) - case proto.BattleElixir_ElixirOfMightyAgility: - character.AddStats(stats.Stats{ - stats.Agility: 45, - }) - case proto.BattleElixir_ElixirOfMightyStrength: - character.AddStats(stats.Stats{ - stats.Strength: 45, - }) - case proto.BattleElixir_GurusElixir: - character.AddStats(stats.Stats{ - stats.Agility: 20, - stats.Strength: 20, - stats.Stamina: 20, - stats.Intellect: 20, - stats.Spirit: 20, - }) - case proto.BattleElixir_SpellpowerElixir: - character.AddStats(stats.Stats{ - stats.SpellPower: 58, - }) - case proto.BattleElixir_WrathElixir: - character.AddStats(stats.Stats{ - stats.AttackPower: 90, - stats.RangedAttackPower: 90, - }) - case proto.BattleElixir_ElixirOfDemonslaying: + character.AddStats(flask.Stats) + } + + if consumables.BattleElixirId != 0 { + elixir := ConsumablesByID[consumables.BattleElixirId] + switch consumables.BattleElixirId { + case 9224: if character.CurrentTarget.MobType == proto.MobType_MobTypeDemon { - character.PseudoStats.MobTypeAttackPower += 265 + character.PseudoStats.MobTypeAttackPower += 105 } - } - - switch consumes.GuardianElixir { - case proto.GuardianElixir_ElixirOfDeepEarth: - character.AddStats(stats.Stats{ - stats.Armor: 900, - }) - case proto.GuardianElixir_PrismaticElixir: - character.AddStats(stats.Stats{ - stats.ArcaneResistance: 90, - stats.FireResistance: 90, - stats.FrostResistance: 90, - stats.NatureResistance: 90, - stats.ShadowResistance: 90, - }) - case proto.GuardianElixir_ElixirOfMightyDefense: - character.AddStats(stats.Stats{ - stats.Armor: 180, - }) - case proto.GuardianElixir_ElixirOfMightyFortitude: - character.AddStats(stats.Stats{ - stats.Health: 350, - }) - case proto.GuardianElixir_ElixirOfMightyMageblood: - character.AddStats(stats.Stats{ - stats.MP5: 30, - }) - case proto.GuardianElixir_ElixirOfMightyThoughts: - character.AddStats(stats.Stats{ - stats.Intellect: 45, - }) - case proto.GuardianElixir_ElixirOfProtection: - character.AddStats(stats.Stats{ - stats.Armor: 800, - }) - if character.HasProfession(proto.Profession_Alchemy) { - character.AddStats(stats.Stats{ - stats.Armor: 280, - }) + default: + if elixir.Stats[stats.MasteryRating] > 0 { + elixir.Stats[stats.MasteryRating] += alchemyBattleElixirBonus + } else if elixir.Stats[stats.HasteRating] > 0 { + elixir.Stats[stats.HasteRating] += alchemyBattleElixirBonus + } else if elixir.Stats[stats.CritRating] > 0 { + elixir.Stats[stats.CritRating] += alchemyBattleElixirBonus + } else if elixir.Stats[stats.ExpertiseRating] > 0 { + elixir.Stats[stats.ExpertiseRating] += alchemyBattleElixirBonus + } else if elixir.Stats[stats.Spirit] > 0 { + elixir.Stats[stats.Spirit] += alchemyBattleElixirBonus } - case proto.GuardianElixir_ElixirOfSpirit: - character.AddStats(stats.Stats{ - stats.Spirit: 50, - }) + character.AddStats(elixir.Stats) } + } - switch consumes.Food { - case proto.Food_FoodFishFeast: - character.AddStats(stats.Stats{ - stats.AttackPower: 80, - stats.RangedAttackPower: 80, - stats.SpellPower: 46, - stats.Stamina: 40, - }) - case proto.Food_FoodGreatFeast: - character.AddStats(stats.Stats{ - stats.AttackPower: 60, - stats.RangedAttackPower: 60, - stats.SpellPower: 35, - stats.Stamina: 30, - }) - case proto.Food_FoodBlackenedDragonfin: - character.AddStats(stats.Stats{ - stats.Agility: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodHeartyRhino: - character.AddStats(stats.Stats{ - stats.CritRating: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodMegaMammothMeal: - character.AddStats(stats.Stats{ - stats.AttackPower: 80, - stats.RangedAttackPower: 80, - stats.Stamina: 40, - }) - case proto.Food_FoodSpicedWormBurger: - character.AddStats(stats.Stats{ - stats.CritRating: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodRhinoliciousWormsteak: - character.AddStats(stats.Stats{ - stats.ExpertiseRating: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodImperialMantaSteak: - character.AddStats(stats.Stats{ - stats.HasteRating: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodSnapperExtreme: - character.AddStats(stats.Stats{ - stats.HitRating: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodMightyRhinoDogs: - character.AddStats(stats.Stats{ - stats.MP5: 16, - stats.Stamina: 40, - }) - case proto.Food_FoodFirecrackerSalmon: - character.AddStats(stats.Stats{ - stats.SpellPower: 46, - stats.Stamina: 40, - }) - case proto.Food_FoodCuttlesteak: - character.AddStats(stats.Stats{ - stats.Spirit: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodDragonfinFilet: - character.AddStats(stats.Stats{ - stats.Strength: 40, - stats.Stamina: 40, - }) - case proto.Food_FoodBlackenedBasilisk: - character.AddStats(stats.Stats{ - stats.SpellPower: 23, - stats.Spirit: 20, - }) - case proto.Food_FoodGrilledMudfish: - character.AddStats(stats.Stats{ - stats.Agility: 20, - stats.Spirit: 20, - }) - case proto.Food_FoodRavagerDog: - character.AddStats(stats.Stats{ - stats.AttackPower: 40, - stats.RangedAttackPower: 40, - stats.Spirit: 20, - }) - case proto.Food_FoodRoastedClefthoof: - character.AddStats(stats.Stats{ - stats.Strength: 20, - stats.Spirit: 20, - }) - case proto.Food_FoodSkullfishSoup: - character.AddStats(stats.Stats{ - stats.CritRating: 20, - stats.Spirit: 20, - }) - case proto.Food_FoodSpicyHotTalbuk: - character.AddStats(stats.Stats{ - stats.HitRating: 20, - stats.Spirit: 20, - }) - case proto.Food_FoodFishermansFeast: - character.AddStats(stats.Stats{ - stats.Stamina: 30, - stats.Spirit: 20, - }) - case proto.Food_FoodSeafoodFeast: - character.AddStat(stats.Stamina, 90) - character.AddStat(character.GetHighestStatType([]stats.Stat{stats.Strength, stats.Agility, stats.Intellect}), 90) - case proto.Food_FoodFortuneCookie: - character.AddStat(stats.Stamina, 90) - character.AddStat(character.GetHighestStatType([]stats.Stat{stats.Strength, stats.Agility, stats.Intellect}), 90) - case proto.Food_FoodSeveredSagefish: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.Intellect: 90, - }) - case proto.Food_FoodBeerBasedCrocolisk: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.Strength: 90, - }) - case proto.Food_FoodSkeweredEel: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.Agility: 90, - }) - case proto.Food_FoodDeliciousSagefishTail: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.Spirit: 90, - }) - case proto.Food_FoodBasiliskLiverdog: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.HasteRating: 90, - }) - case proto.Food_FoodBakedRockfish: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.CritRating: 90, - }) - case proto.Food_FoodCrocoliskAuGratin: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.ExpertiseRating: 90, - }) - case proto.Food_FoodGrilledDragon: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.HitRating: 90, - }) - case proto.Food_FoodLavascaleMinestrone: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.MasteryRating: 90, - }) - case proto.Food_FoodBlackbellySushi: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.ParryRating: 90, - }) - case proto.Food_FoodMushroomSauceMudfish: - character.AddStats(stats.Stats{ - stats.Stamina: 90, - stats.DodgeRating: 90, - }) + if consumables.GuardianElixirId != 0 { + elixir := ConsumablesByID[consumables.GuardianElixirId] + if character.HasProfession(proto.Profession_Alchemy) && elixir.Stats[stats.Armor] > 0 { + elixir.Stats[stats.Armor] += 280 + } + character.AddStats(elixir.Stats) + } + if consumables.FoodId != 0 { + food := ConsumablesByID[consumables.FoodId] + + var foodBuffStats stats.Stats + if food.BuffsMainStat { + buffAmount := food.Stats[stats.Stamina] + foodBuffStats[stats.Stamina] = buffAmount + foodBuffStats[character.GetHighestStatType([]stats.Stat{stats.Strength, stats.Agility, stats.Intellect})] = buffAmount + } else { + foodBuffStats = food.Stats + } + character.AddStats(foodBuffStats) } - registerPotionCD(agent, consumes) - registerConjuredCD(agent, consumes) - registerExplosivesCD(agent, consumes) - registerTinkerHandsCD(agent, consumes) + registerPotionCD(agent, consumables) + registerConjuredCD(agent, consumables) + registerExplosivesCD(agent, consumables) + registerTinkerHandsCD(agent, consumables) } var PotionAuraTag = "Potion" -func registerPotionCD(agent Agent, consumes *proto.Consumes) { +func registerPotionCD(agent Agent, consumes *proto.ConsumesSpec) { character := agent.GetCharacter() - defaultPotion := consumes.DefaultPotion - startingPotion := consumes.PrepopPotion + potion := consumes.PotId + prepot := consumes.PrepotId potionCD := character.GetPotionCD() - // if character.Spec == proto.Spec_SpecBalanceDruid { - // // Create both pots spells so they will be selectable in APL UI regardless of settings. - // speedMCD := makePotionActivation(proto.Potions_PotionOfSpeed, character, potionCD) - // wildMagicMCD := makePotionActivation(proto.Potions_PotionOfWildMagic, character, potionCD) - // speedMCD.Spell.Flags |= SpellFlagAPL | SpellFlagMCD - // wildMagicMCD.Spell.Flags |= SpellFlagAPL | SpellFlagMCD - // } - - if defaultPotion == proto.Potions_UnknownPotion && startingPotion == proto.Potions_UnknownPotion { + + if potion == 0 && prepot == 0 { return } - - startingMCD := makePotionActivation(startingPotion, character, potionCD) - if startingMCD.Spell != nil { - startingMCD.Spell.Flags |= SpellFlagPrepullPotion + var mcd MajorCooldown + if prepot != 0 { + mcd = makePotionActivationSpell(prepot, character, potionCD) + if mcd.Spell != nil { + mcd.Spell.Flags |= SpellFlagPrepullPotion + } } var defaultMCD MajorCooldown - if defaultPotion == startingPotion { - defaultMCD = startingMCD + if potion == prepot { + defaultMCD = mcd } else { - defaultMCD = makePotionActivation(defaultPotion, character, potionCD) + if potion != 0 { + defaultMCD = makePotionActivationSpell(potion, character, potionCD) + } } if defaultMCD.Spell != nil { defaultMCD.Spell.Flags |= SpellFlagCombatPotion @@ -449,8 +127,9 @@ func (character *Character) HasAlchStone() bool { return character.HasProfession(proto.Profession_Alchemy) && alchStoneEquipped } -func makePotionActivation(potionType proto.Potions, character *Character, potionCD *Timer) MajorCooldown { - mcd := makePotionActivationInternal(potionType, character, potionCD) +func makePotionActivationSpell(potionId int32, character *Character, potionCD *Timer) MajorCooldown { + potion := ConsumablesByID[potionId] + mcd := makePotionActivationSpellInternal(potion, character, potionCD) if mcd.Spell != nil { // Mark as 'Encounter Only' so that users are forced to select the generic Potion // placeholder action instead of specific potion spells, in APL prepull. This @@ -467,10 +146,17 @@ func makePotionActivation(potionType proto.Potions, character *Character, potion } } return mcd + +} + +type resourceGainConfig struct { + resType proto.ResourceType + min float64 + spread float64 } -func makePotionActivationInternal(potionType proto.Potions, character *Character, potionCD *Timer) MajorCooldown { - alchStoneEquipped := character.HasAlchStone() +func makePotionActivationSpellInternal(potion Consumable, character *Character, potionCD *Timer) MajorCooldown { + stoneMul := TernaryFloat64(character.HasAlchStone(), 1.4, 1.0) potionCast := CastConfig{ CD: Cooldown{ @@ -483,272 +169,89 @@ func makePotionActivationInternal(potionType proto.Potions, character *Character }, } - if potionType == proto.Potions_MythicalHealingPotion { - actionID := ActionID{ItemID: 57191} - healthMetrics := character.NewHealthMetrics(actionID) - return MajorCooldown{ - Type: CooldownTypeSurvival, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - healthGain := sim.RollWithLabel(22500, 27500, "MythicalHealingPotion") - - if alchStoneEquipped && potionType == proto.Potions_MythicalHealingPotion { - healthGain *= 1.40 - } - character.GainHealth(sim, healthGain*character.PseudoStats.HealingTakenMultiplier, healthMetrics) - }, - }), - } - } else if potionType == proto.Potions_MythicalManaPotion { - actionID := ActionID{ItemID: 57192} - manaMetrics := character.NewManaMetrics(actionID) - return MajorCooldown{ - Type: CooldownTypeMana, - ShouldActivate: func(sim *Simulation, character *Character) bool { - // Only pop if we have less than the max mana provided by the potion minus 1mp5 tick. - totalRegen := character.ManaRegenPerSecondWhileCombat() * 5 - manaGain := 10750.0 - if alchStoneEquipped && potionType == proto.Potions_MythicalManaPotion { - manaGain *= 1.4 - } - return character.MaxMana()-(character.CurrentMana()+totalRegen) >= manaGain - }, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - manaGain := sim.RollWithLabel(9250, 10750, "MythicalManaPotion") - if alchStoneEquipped && potionType == proto.Potions_MythicalManaPotion { - manaGain *= 1.4 - } - character.AddMana(sim, manaGain, manaMetrics) - }, - }), - } - } else if potionType == proto.Potions_GolembloodPotion { - actionID := ActionID{ItemID: 58146} - aura := character.NewTemporaryStatsAura("Golemblood Potion", actionID, stats.Stats{stats.Strength: 1200}, time.Second*25) - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), - } - } else if potionType == proto.Potions_PotionOfTheTolvir { - actionID := ActionID{ItemID: 58145} - aura := character.NewTemporaryStatsAura("Potion of the Tol'vir", actionID, stats.Stats{stats.Agility: 1200}, time.Second*25) - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), - } - } else if potionType == proto.Potions_PotionOfConcentration { - //actionID := ActionID{ItemID: 57194} - // Todo: Implement. Has a cast time of 10seconds and you regain mana while casting it - // Not sure about exact functionality - } else if potionType == proto.Potions_VolcanicPotion { - actionID := ActionID{ItemID: 58091} - aura := character.NewTemporaryStatsAura("Volcanic Potion", actionID, stats.Stats{stats.Intellect: 1200}, time.Second*25) - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), - } - } else if potionType == proto.Potions_EarthenPotion { - actionID := ActionID{ItemID: 58090} - aura := character.NewTemporaryStatsAura("Earthen Potion", actionID, stats.Stats{stats.Armor: 4800}, time.Second*25) // Adjust stats as necessary - return MajorCooldown{ - Type: CooldownTypeSurvival, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), - } - } else if potionType == proto.Potions_MightyRejuvenationPotion { - actionID := ActionID{ItemID: 57193} - // No specific aura stats provided; adjust as needed - manaMetrics := character.NewManaMetrics(actionID) - healthMetrics := character.NewHealthMetrics(actionID) - return MajorCooldown{ - Type: CooldownTypeSurvival, - ShouldActivate: func(sim *Simulation, character *Character) bool { - // Only pop if we have less than the max mana provided by the potion minus 1mp5 tick. - totalRegen := character.ManaRegenPerSecondWhileCombat() * 5 - manaGain := 11000.0 - if alchStoneEquipped && potionType == proto.Potions_MythicalManaPotion { - manaGain *= 1.4 - } - return character.MaxMana()-(character.CurrentMana()+totalRegen) >= manaGain - }, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - resourceGain := sim.RollWithLabel(9000, 11000, "MightyRejuvPotion") // Todo: Does it roll once or twice? - - if alchStoneEquipped && potionType == proto.Potions_MightyRejuvenationPotion { - resourceGain *= 1.40 - } - character.GainHealth(sim, resourceGain*character.PseudoStats.HealingTakenMultiplier, healthMetrics) - character.AddMana(sim, resourceGain, manaMetrics) - }, - }), - } - } else if potionType == proto.Potions_PotionOfSpeed { - actionID := ActionID{ItemID: 40211} - aura := character.NewTemporaryStatsAura("Potion of Speed", actionID, stats.Stats{stats.HasteRating: 500}, time.Second*15) - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), + actionID := ActionID{ItemID: potion.Id} + var aura *StatBuffAura + mcd := MajorCooldown{ + Spell: character.GetOrRegisterSpell(SpellConfig{ + ActionID: actionID, + Flags: SpellFlagNoOnCastComplete, + Cast: potionCast, + }), + } + if potion.BuffDuration > 0 { + // Add stat buff aura if applicable + aura = character.NewTemporaryStatsAura(potion.Name, actionID, potion.Stats, potion.BuffDuration) + mcd.Type = aura.InferCDType() + } + var gains []resourceGainConfig + resourceMetrics := make(map[proto.ResourceType]*ResourceMetrics) + + for _, effectID := range potion.EffectIds { + e := SpellEffectsById[effectID] + resourceType := e.GetResourceType() + if e.Type == proto.EffectType_EffectTypeResourceGain && resourceType != 0 { + if resourceType == proto.ResourceType_ResourceTypeMana && mcd.Type != CooldownTypeSurvival { + mcd.Type = CooldownTypeMana + } else if resourceType == proto.ResourceType_ResourceTypeHealth { + mcd.Type = CooldownTypeSurvival + } else { + mcd.Type = CooldownTypeDPS + } + gains = append(gains, resourceGainConfig{ + resType: resourceType, + min: e.MinEffectSize, + spread: e.EffectSpread, + }) + if _, exists := resourceMetrics[resourceType]; !exists { + resourceMetrics[resourceType] = character.Metrics.NewResourceMetrics(actionID, resourceType) + } + // Preload resource types that are found on this item + if resourceMetrics[resourceType] == nil { + resourceMetrics[resourceType] = character.Metrics.NewResourceMetrics(actionID, resourceType) + } } - } else if potionType == proto.Potions_HastePotion { - actionID := ActionID{ItemID: 22838} - aura := character.NewTemporaryStatsAura("Haste Potion", actionID, stats.Stats{stats.HasteRating: 400}, time.Second*15) - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - }, - }), + } + + mcd.Spell.ApplyEffects = func(sim *Simulation, _ *Unit, _ *Spell) { + if aura != nil { + aura.Activate(sim) } - } else if potionType == proto.Potions_MightyRagePotion { - actionID := ActionID{ItemID: 13442} - aura := character.NewTemporaryStatsAura("Mighty Rage Potion", actionID, stats.Stats{stats.Strength: 60}, time.Second*15) - rageMetrics := character.NewRageMetrics(actionID) - return MajorCooldown{ - Type: CooldownTypeDPS, - ShouldActivate: func(sim *Simulation, character *Character) bool { - if character.Class == proto.Class_ClassWarrior { - return character.CurrentRage() < 25 - } - return true - }, - Spell: character.GetOrRegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - aura.Activate(sim) - if character.Class == proto.Class_ClassWarrior { - bonusRage := sim.RollWithLabel(45, 75, "Mighty Rage Potion") - character.AddRage(sim, bonusRage, rageMetrics) - } - }, - }), + for _, config := range gains { + gain := config.min + sim.RandomFloat(potion.Name)*config.spread + gain *= stoneMul + if config.resType == proto.ResourceType_ResourceTypeHealth { + gain *= character.PseudoStats.HealingTakenMultiplier + } + character.ExecuteResourceGain(sim, config.resType, gain, resourceMetrics[config.resType]) } - } else if potionType == proto.Potions_FlameCap { - actionID := ActionID{ItemID: 22788} - - flameCapProc := character.RegisterSpell(SpellConfig{ - ActionID: actionID, - ProcMask: ProcMaskEmpty, - SpellSchool: SpellSchoolFire, - - DamageMultiplier: 1, - CritMultiplier: character.DefaultSpellCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *Simulation, target *Unit, spell *Spell) { - spell.CalcAndDealDamage(sim, target, 40, spell.OutcomeMagicHitAndCrit) - }, - }) + } - const procChance = 0.185 - var fireSpells []*Spell - character.OnSpellRegistered(func(spell *Spell) { - if spell.SpellSchool.Matches(SpellSchoolFire) { - fireSpells = append(fireSpells, spell) + mcd.ShouldActivate = func(sim *Simulation, character *Character) bool { + shouldActivate := true + for _, config := range gains { + switch config.resType { + case proto.ResourceType_ResourceTypeMana: + totalRegen := character.ManaRegenPerSecondWhileCombat() * 5 + manaGain := config.min + config.spread + manaGain *= stoneMul + shouldActivate = character.MaxMana()-(character.CurrentMana()+totalRegen) >= manaGain } - }) - - flameCapAura := character.RegisterAura(Aura{ - Label: "Flame Cap", - ActionID: actionID, - Duration: time.Minute, - OnGain: func(aura *Aura, sim *Simulation) { - for _, spell := range fireSpells { - spell.BonusSpellPower += 80 - } - }, - OnExpire: func(aura *Aura, sim *Simulation) { - for _, spell := range fireSpells { - spell.BonusSpellPower -= 80 - } - }, - OnSpellHitDealt: func(aura *Aura, sim *Simulation, spell *Spell, result *SpellResult) { - if !result.Landed() || !spell.ProcMask.Matches(ProcMaskMeleeOrRanged) { - return - } - if sim.RandomFloat("Flame Cap Melee") > procChance { - return - } - - flameCapProc.Cast(sim, result.Target) - }, - }) - - return MajorCooldown{ - Type: CooldownTypeDPS, - Spell: character.RegisterSpell(SpellConfig{ - ActionID: actionID, - Flags: SpellFlagNoOnCastComplete, - Cast: potionCast, - ApplyEffects: func(sim *Simulation, _ *Unit, _ *Spell) { - flameCapAura.Activate(sim) - }, - }), } - } else { - return MajorCooldown{} + return shouldActivate } - return MajorCooldown{} + + return mcd + } var ConjuredAuraTag = "Conjured" -func registerConjuredCD(agent Agent, consumes *proto.Consumes) { +func registerConjuredCD(agent Agent, consumes *proto.ConsumesSpec) { character := agent.GetCharacter() - conjuredType := consumes.DefaultConjured - if conjuredType == proto.Conjured_ConjuredDarkRune { + //Todo: Implement dynamic handling like pots etc. + switch consumes.ConjuredId { + case 20520: actionID := ActionID{ItemID: 20520} manaMetrics := character.NewManaMetrics(actionID) // damageTakenManaMetrics := character.NewManaMetrics(ActionID{SpellID: 33776}) @@ -784,7 +287,7 @@ func registerConjuredCD(agent Agent, consumes *proto.Consumes) { return character.MaxMana()-(character.CurrentMana()+totalRegen) >= 1500 }, }) - } else if conjuredType == proto.Conjured_ConjuredHealthstone { + case 5512: actionID := ActionID{ItemID: 5512} healthMetrics := character.NewHealthMetrics(actionID) @@ -817,13 +320,14 @@ func registerConjuredCD(agent Agent, consumes *proto.Consumes) { var BigDaddyActionID = ActionID{SpellID: 89637} var HighpoweredBoltGunActionID = ActionID{ItemID: 40771} -func registerExplosivesCD(agent Agent, consumes *proto.Consumes) { +func registerExplosivesCD(agent Agent, consumes *proto.ConsumesSpec) { + //Todo: Get them dynamically from dbc data character := agent.GetCharacter() if !character.HasProfession(proto.Profession_Engineering) { return } - - if consumes.ExplosiveBigDaddy { + switch consumes.ExplosiveId { + case 89637: bomb := character.GetOrRegisterSpell(SpellConfig{ ActionID: BigDaddyActionID, SpellSchool: SpellSchoolFire, @@ -864,9 +368,7 @@ func registerExplosivesCD(agent Agent, consumes *proto.Consumes) { Type: CooldownTypeDPS | CooldownTypeExplosive, Priority: CooldownPriorityLow + 10, }) - } - - if consumes.HighpoweredBoltGun { + case 40771: boltGun := character.GetOrRegisterSpell(SpellConfig{ ActionID: ActionID{SpellID: 82207}, SpellSchool: SpellSchoolFire, @@ -911,17 +413,18 @@ func registerExplosivesCD(agent Agent, consumes *proto.Consumes) { } } -func registerTinkerHandsCD(agent Agent, consumes *proto.Consumes) { - if consumes.TinkerHands == proto.TinkerHands_TinkerHandsNone { +func registerTinkerHandsCD(agent Agent, consumes *proto.ConsumesSpec) { + if consumes.TinkerId == 0 { return } character := agent.GetCharacter() if !character.HasProfession(proto.Profession_Engineering) { return } - - switch consumes.TinkerHands { - case proto.TinkerHands_TinkerHandsSynapseSprings: + //Todo: Get them dynamically from dbc data + // We switch on spell id apparently + switch consumes.TinkerId { + case 82174: // Enchant: 4179, Spell: 82174 - Synapse Springs statType := character.GetHighestStatType([]stats.Stat{stats.Intellect, stats.Strength, stats.Agility}) @@ -979,7 +482,7 @@ func registerTinkerHandsCD(agent Agent, consumes *proto.Consumes) { Type: CooldownTypeDPS, }) character.ItemSwap.ProcessTinker(spell, []proto.ItemSlot{proto.ItemSlot_ItemSlotHands}) - case proto.TinkerHands_TinkerHandsQuickflipDeflectionPlates: + case 82176: // Enchant: 4180, Spell: 82176 - Quickflip Deflection Plates actionID := ActionID{SpellID: 82176} statAura := character.NewTemporaryStatsAura( @@ -1012,7 +515,7 @@ func registerTinkerHandsCD(agent Agent, consumes *proto.Consumes) { Type: CooldownTypeSurvival, }) character.ItemSwap.ProcessTinker(spell, []proto.ItemSlot{proto.ItemSlot_ItemSlotHands}) - case proto.TinkerHands_TinkerHandsTazikShocker: + case 82180: // Enchant: 4181, Spell: 82180 - Tazik Shocker actionID := ActionID{SpellID: 82179} spell := character.GetOrRegisterSpell(SpellConfig{ @@ -1045,7 +548,7 @@ func registerTinkerHandsCD(agent Agent, consumes *proto.Consumes) { Priority: CooldownPriorityLow, Type: CooldownTypeDPS, }) - case proto.TinkerHands_TinkerHandsSpinalHealingInjector: + case 82184: // Enchant: 4182, Spell: 82184 - Spinal Healing Injector actionID := ActionID{SpellID: 82184} healthMetric := character.NewHealthMetrics(actionID) @@ -1081,7 +584,7 @@ func registerTinkerHandsCD(agent Agent, consumes *proto.Consumes) { Type: CooldownTypeSurvival, }) character.ItemSwap.ProcessTinker(spell, []proto.ItemSlot{proto.ItemSlot_ItemSlotHands}) - case proto.TinkerHands_TinkerHandsZ50ManaGulper: + case 4183: // Enchant: 4183, Spell: 82186 - Z50 Mana Gulper actionId := ActionID{SpellID: 82186} manaMetric := character.NewManaMetrics(actionId) diff --git a/sim/core/database.go b/sim/core/database.go index cda041d688..7b0bc9a760 100644 --- a/sim/core/database.go +++ b/sim/core/database.go @@ -5,9 +5,10 @@ import ( "math" "slices" "sync" + "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" "google.golang.org/protobuf/encoding/protojson" ) @@ -18,6 +19,9 @@ var GemsByID = map[int32]Gem{} var RandomSuffixesByID = map[int32]RandomSuffix{} var EnchantsByEffectID = map[int32]Enchant{} var ReforgeStatsByID = map[int32]ReforgeStat{} +var ConsumablesByID = map[int32]Consumable{} +var SpellEffectsById = map[int32]*proto.SpellEffect{} + var mutex = &sync.Mutex{} func addToDatabase(newDB *proto.SimDatabase) { @@ -55,6 +59,16 @@ func addToDatabase(newDB *proto.SimDatabase) { ReforgeStatsByID[v.Id] = ReforgeStatFromProto(v) } } + for _, v := range newDB.Consumables { + if _, ok := ConsumablesByID[v.Id]; !ok { + ConsumablesByID[v.Id] = ConsumableFromProto(v) + } + } + for _, v := range newDB.SpellEffects { + if _, ok := SpellEffectsById[v.Id]; !ok { + SpellEffectsById[v.Id] = v + } + } } type ReforgeStat struct { @@ -84,6 +98,28 @@ func ReforgeStatToProto(stat ReforgeStat) *proto.ReforgeStat { } } +type Consumable struct { + Id int32 + Type proto.ConsumableType + Stats stats.Stats + BuffsMainStat bool + Name string + BuffDuration time.Duration + EffectIds []int32 +} + +func ConsumableFromProto(consumable *proto.Consumable) Consumable { + return Consumable{ + Id: consumable.Id, + Type: consumable.Type, + Stats: stats.FromProtoArray(consumable.Stats), + BuffsMainStat: consumable.BuffsMainStat, + Name: consumable.Name, + BuffDuration: time.Second * time.Duration(consumable.BuffDuration), + EffectIds: consumable.EffectIds, + } +} + type Item struct { ID int32 Type proto.ItemType @@ -96,12 +132,11 @@ type Item struct { WeaponDamageMax float64 SwingSpeed float64 - Name string - Stats stats.Stats // Stats applied to wearer - Quality proto.ItemQuality - SetName string // Empty string if not part of a set. - SetID int32 // 0 if not part of a set. - RandomPropPoints int32 // Used to rescale random suffix stats + Name string + Stats stats.Stats // Stats applied to wearer + Quality proto.ItemQuality + SetName string // Empty string if not part of a set. + SetID int32 // 0 if not part of a set. GemSockets []proto.GemColor SocketBonus stats.Stats @@ -113,7 +148,23 @@ type Item struct { Reforging *ReforgeStat //Internal use - TempEnchant int32 + TempEnchant int32 + ScalingOptions map[int32]*proto.ScalingItemProperties + Ilvl int32 + RandPropPoints int32 +} + +func (item *Item) UpgradeItemLevelBy(upgradeLevel int) int { + if item.Quality == proto.ItemQuality_ItemQualityUncommon { + return upgradeLevel * 8 + } + if item.Quality == proto.ItemQuality_ItemQualityRare { + return upgradeLevel * 4 + } + if item.Quality == proto.ItemQuality_ItemQualityEpic { + return upgradeLevel * 4 + } + return 0 } func ItemFromProto(pData *proto.SimItem) Item { @@ -125,15 +176,12 @@ func ItemFromProto(pData *proto.SimItem) Item { WeaponType: pData.WeaponType, HandType: pData.HandType, RangedWeaponType: pData.RangedWeaponType, - WeaponDamageMin: pData.WeaponDamageMin, - WeaponDamageMax: pData.WeaponDamageMax, SwingSpeed: pData.WeaponSpeed, - Stats: stats.FromProtoArray(pData.Stats), GemSockets: pData.GemSockets, SocketBonus: stats.FromProtoArray(pData.SocketBonus), SetName: pData.SetName, SetID: pData.SetId, - RandomPropPoints: pData.RandPropPoints, + ScalingOptions: pData.ScalingOptions, } } @@ -143,6 +191,7 @@ func (item *Item) ToItemSpecProto() *proto.ItemSpec { RandomSuffix: item.RandomSuffix.ID, Enchant: item.Enchant.EffectID, Gems: MapSlice(item.Gems, func(gem Gem) int32 { return gem.ID }), + ScaledIlvl: item.Ilvl, } // Check if Reforging is not nil before accessing ID @@ -204,6 +253,7 @@ type ItemSpec struct { Enchant int32 Gems []int32 Reforging int32 + ScaledIlvl int32 } type Equipment [proto.ItemSlot_ItemSlotRanged + 1]Item @@ -344,6 +394,7 @@ func ProtoToEquipmentSpec(es *proto.EquipmentSpec) EquipmentSpec { Enchant: item.Enchant, Gems: item.Gems, Reforging: item.Reforging, + ScaledIlvl: item.ScaledIlvl, } } return coreEquip @@ -356,6 +407,24 @@ func NewItem(itemSpec ItemSpec) Item { } else { panic(fmt.Sprintf("No item with id: %d", itemSpec.ID)) } + scalingOptions := item.ScalingOptions[itemSpec.ScaledIlvl] + if scalingOptions == nil { + for ilvl, scaling := range item.ScalingOptions { + if scaling.IsBase { + scalingOptions = scaling + item.Ilvl = ilvl // ScaledIlvl should always be set + break + } + } + } else { + item.Ilvl = itemSpec.ScaledIlvl + } + // Set the itemlevel again because it could be scaled + + item.Stats = stats.Stats(MapToFixedStatsArray(scalingOptions.GetStats())) + item.WeaponDamageMax = scalingOptions.WeaponDamageMax + item.WeaponDamageMin = scalingOptions.WeaponDamageMin + item.RandPropPoints = scalingOptions.RandPropPoints if itemSpec.RandomSuffix != 0 { if randomSuffix, ok := RandomSuffixesByID[itemSpec.RandomSuffix]; ok { @@ -409,7 +478,7 @@ func validateReforging(item *Item, reforging ReforgeStat) bool { // Validate that the item can reforge these to stats reforgeableStats := stats.Stats{} if item.RandomSuffix.ID != 0 { - reforgeableStats = reforgeableStats.Add(item.RandomSuffix.Stats.Multiply(float64(item.RandomPropPoints) / 10000.).Floor()) + reforgeableStats = reforgeableStats.Add(item.RandomSuffix.Stats.Multiply(float64(item.ScalingOptions[item.Ilvl].RandPropPoints) / 10000.).Floor()) } else { reforgeableStats = reforgeableStats.Add(item.Stats) } @@ -478,11 +547,11 @@ func ItemEquipmentStats(item Item) stats.Stats { // Random suffix stats can be Reforged, so apply those prior to any Reforges rawSuffixStats := item.RandomSuffix.Stats - equipStats = equipStats.Add(rawSuffixStats.Multiply(float64(item.RandomPropPoints) / 10000.).Floor()) + equipStats = equipStats.Add(rawSuffixStats.Multiply(float64(item.RandPropPoints) / 10000.).Floor()) // Apply reforging if item.Reforging != nil { - itemStats := item.Stats.Add(rawSuffixStats.Multiply(float64(item.RandomPropPoints) / 10000.).Floor()) + itemStats := item.Stats.Add(rawSuffixStats.Multiply(float64(item.RandPropPoints) / 10000.).Floor()) reforgingChanges := stats.Stats{} fromStat := item.Reforging.FromStat diff --git a/sim/core/database_load.go b/sim/core/database_load.go index 90a6481754..fbc80ef708 100644 --- a/sim/core/database_load.go +++ b/sim/core/database_load.go @@ -1,12 +1,12 @@ -// Only include this file in the build when we specify the 'with_db' tag. -// Without the tag, the database will start out completely empty. //go:build with_db +// Only include this file in the build when we specify the 'with_db' tag. +// Without the tag, the database will start out completely empty. package core import ( - "github.com/wowsims/cata/assets/database" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/assets/database" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -19,6 +19,8 @@ func init() { Gems: make([]*proto.SimGem, len(db.Gems)), ReforgeStats: make([]*proto.ReforgeStat, len(db.ReforgeStats)), RandomSuffixes: make([]*proto.ItemRandomSuffix, len(db.RandomSuffixes)), + Consumables: make([]*proto.Consumable, len(db.Consumables)), + SpellEffects: make([]*proto.SpellEffect, len(db.SpellEffects)), } for i, item := range db.Items { @@ -30,15 +32,12 @@ func init() { WeaponType: item.WeaponType, HandType: item.HandType, RangedWeaponType: item.RangedWeaponType, - Stats: item.Stats, GemSockets: item.GemSockets, SocketBonus: item.SocketBonus, - WeaponDamageMin: item.WeaponDamageMin, - WeaponDamageMax: item.WeaponDamageMax, WeaponSpeed: item.WeaponSpeed, SetName: item.SetName, SetId: item.SetId, - RandPropPoints: item.RandPropPoints, + ScalingOptions: item.ScalingOptions, } } @@ -75,5 +74,13 @@ func init() { } } + for i, consumable := range db.Consumables { + simDB.Consumables[i] = consumable + } + + for i, effect := range db.SpellEffects { + simDB.SpellEffects[i] = effect + } + addToDatabase(simDB) } diff --git a/sim/core/debuffs.go b/sim/core/debuffs.go index b37605ab4e..5b47cf2c5b 100644 --- a/sim/core/debuffs.go +++ b/sim/core/debuffs.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func applyDebuffEffects(target *Unit, targetIdx int, debuffs *proto.Debuffs, raid *proto.Raid) { diff --git a/sim/core/dot.go b/sim/core/dot.go index 6a6d6e8f20..4e8981a00a 100644 --- a/sim/core/dot.go +++ b/sim/core/dot.go @@ -113,7 +113,7 @@ func (dot *Dot) recomputeAuraDuration(sim *Simulation) { // we a have running dot tick // the next tick never gets clipped and is added onto the dot's time for hasted dots - // see: https://github.com/wowsims/cata/issues/50 + // see: https://github.com/wowsims/mop/issues/50 if dot.IsActive() { dot.Duration += nextTick dot.remainingTicks++ diff --git a/sim/core/dot_test.go b/sim/core/dot_test.go index a9a41f30ec..a463244b91 100644 --- a/sim/core/dot_test.go +++ b/sim/core/dot_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/core/energy.go b/sim/core/energy.go index 670cde87ee..6eb094000f 100644 --- a/sim/core/energy.go +++ b/sim/core/energy.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type energyBar struct { @@ -14,6 +14,7 @@ type energyBar struct { maxEnergy float64 currentEnergy float64 startingComboPoints int32 + maxComboPoints int32 comboPoints int32 nextEnergyTick time.Duration @@ -27,25 +28,33 @@ type energyBar struct { regenMetrics *ResourceMetrics EnergyRefundMetrics *ResourceMetrics + + ownerClass proto.Class + comboPointsResourceName string // "chi" or "combo points" } type EnergyBarOptions struct { StartingComboPoints int32 + MaxComboPoints int32 MaxEnergy float64 + UnitClass proto.Class } func (unit *Unit) EnableEnergyBar(options EnergyBarOptions) { unit.SetCurrentPowerBar(EnergyBar) unit.energyBar = energyBar{ - unit: unit, - maxEnergy: max(100, options.MaxEnergy), - EnergyTickDuration: unit.ReactionTime, - EnergyPerTick: 10.0 * unit.ReactionTime.Seconds(), - energyRegenMultiplier: 1, - hasteRatingMultiplier: 1, - regenMetrics: unit.NewEnergyMetrics(ActionID{OtherID: proto.OtherAction_OtherActionEnergyRegen}), - EnergyRefundMetrics: unit.NewEnergyMetrics(ActionID{OtherID: proto.OtherAction_OtherActionRefund}), - startingComboPoints: max(0, min(int32(options.StartingComboPoints), 5)), + unit: unit, + maxEnergy: max(100, options.MaxEnergy), + maxComboPoints: options.MaxComboPoints, + EnergyTickDuration: unit.ReactionTime, + EnergyPerTick: 10.0 * unit.ReactionTime.Seconds(), + energyRegenMultiplier: 1, + hasteRatingMultiplier: 1, + regenMetrics: unit.NewEnergyMetrics(ActionID{OtherID: proto.OtherAction_OtherActionEnergyRegen}), + EnergyRefundMetrics: unit.NewEnergyMetrics(ActionID{OtherID: proto.OtherAction_OtherActionRefund}), + startingComboPoints: max(0, min(int32(options.StartingComboPoints), 5)), + ownerClass: options.UnitClass, + comboPointsResourceName: Ternary(options.UnitClass == proto.Class_ClassMonk, "chi", "combo points"), } } @@ -82,6 +91,10 @@ func (eb *energyBar) TimeToTargetEnergy(targetEnergy float64) time.Duration { return DurationFromSeconds((targetEnergy - eb.currentEnergy) / eb.EnergyRegenPerSecond()) } +func (eb *energyBar) CurrentEnergyRegenMultiplier() float64 { + return eb.energyRegenMultiplier +} + func (eb *energyBar) AddEnergy(sim *Simulation, amount float64, metrics *ResourceMetrics) { if amount < 0 { panic("Trying to add negative energy!") @@ -116,6 +129,17 @@ func (eb *energyBar) ComboPoints() int32 { return eb.comboPoints } +func (eb *energyBar) SetMaxComboPoints(maxComboPoints int32) { + eb.maxComboPoints = maxComboPoints + if eb.maxComboPoints < eb.comboPoints { + eb.comboPoints = eb.maxComboPoints + } +} + +func (eb *energyBar) MaxComboPoints() int32 { + return eb.maxComboPoints +} + func (eb *energyBar) IsReset(sim *Simulation) bool { return (eb.nextEnergyTick != 0) && (eb.nextEnergyTick-sim.CurrentTime <= eb.EnergyTickDuration) } @@ -170,22 +194,32 @@ func (eb *energyBar) updateMaxEnergyInternal(sim *Simulation, bonusEnergy float6 } func (eb *energyBar) AddComboPoints(sim *Simulation, pointsToAdd int32, metrics *ResourceMetrics) { - newComboPoints := min(eb.comboPoints+pointsToAdd, 5) + newComboPoints := min(eb.comboPoints+pointsToAdd, eb.maxComboPoints) metrics.AddEvent(float64(pointsToAdd), float64(newComboPoints-eb.comboPoints)) if sim.Log != nil { - eb.unit.Log(sim, "Gained %d combo points from %s (%d --> %d) of %0.0f total.", pointsToAdd, metrics.ActionID, eb.comboPoints, newComboPoints, 5.0) + eb.unit.Log(sim, "Gained %d %s from %s (%d --> %d) of %0.0f total.", pointsToAdd, eb.comboPointsResourceName, metrics.ActionID, eb.comboPoints, newComboPoints, eb.maxComboPoints) } eb.comboPoints = newComboPoints } +func (eb *energyBar) SpendPartialComboPoints(sim *Simulation, pointsToSpend int32, metrics *ResourceMetrics) { + eb.spendComboPointsInternal(sim, pointsToSpend, metrics) +} + func (eb *energyBar) SpendComboPoints(sim *Simulation, metrics *ResourceMetrics) { + eb.spendComboPointsInternal(sim, eb.comboPoints, metrics) +} + +func (eb *energyBar) spendComboPointsInternal(sim *Simulation, pointsToSpend int32, metrics *ResourceMetrics) { + pointsToSpend = min(pointsToSpend, eb.comboPoints) + newComboPoints := eb.comboPoints - pointsToSpend if sim.Log != nil { - eb.unit.Log(sim, "Spent %d combo points from %s (%d --> %d) of %0.0f total.", eb.comboPoints, metrics.ActionID, eb.comboPoints, 0, 5.0) + eb.unit.Log(sim, "Spent %d %s from %s (%d --> %d) of %0.0f total.", pointsToSpend, eb.comboPointsResourceName, metrics.ActionID, eb.comboPoints, newComboPoints, eb.maxComboPoints) } - metrics.AddEvent(float64(-eb.comboPoints), float64(-eb.comboPoints)) - eb.comboPoints = 0 + metrics.AddEvent(float64(-pointsToSpend), float64(-pointsToSpend)) + eb.comboPoints = newComboPoints } func (eb *energyBar) RunTask(sim *Simulation) time.Duration { @@ -238,7 +272,7 @@ type EnergyCost struct { ComboPointMetrics *ResourceMetrics } -func newEnergyCost(spell *Spell, options EnergyCostOptions) *SpellCost { +func newEnergyCost(spell *Spell, options EnergyCostOptions, energyBar *energyBar) *SpellCost { if options.Refund > 0 && options.RefundMetrics == nil { options.RefundMetrics = spell.Unit.EnergyRefundMetrics } @@ -251,7 +285,7 @@ func newEnergyCost(spell *Spell, options EnergyCostOptions) *SpellCost { Refund: options.Refund, RefundMetrics: options.RefundMetrics, ResourceMetrics: spell.Unit.NewEnergyMetrics(spell.ActionID), - ComboPointMetrics: spell.Unit.NewComboPointMetrics(spell.ActionID), + ComboPointMetrics: Ternary(energyBar.ownerClass == proto.Class_ClassMonk, spell.Unit.NewChiMetrics(spell.ActionID), spell.Unit.NewComboPointMetrics(spell.ActionID)), }, } } diff --git a/sim/core/environment.go b/sim/core/environment.go index 628d6f7b44..9c6ab12b8d 100644 --- a/sim/core/environment.go +++ b/sim/core/environment.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" ) type EnvironmentState int diff --git a/sim/core/flags.go b/sim/core/flags.go index f33742327e..581158428f 100644 --- a/sim/core/flags.go +++ b/sim/core/flags.go @@ -3,8 +3,8 @@ package core import ( "math/bits" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type ProcMask uint32 diff --git a/sim/core/focus.go b/sim/core/focus.go index 8bb27af0d6..47c04ee862 100644 --- a/sim/core/focus.go +++ b/sim/core/focus.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type OnFocusGain func(*Simulation, float64) diff --git a/sim/core/health.go b/sim/core/health.go index 2b1c91f276..da24469f7c 100644 --- a/sim/core/health.go +++ b/sim/core/health.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type healthBar struct { @@ -194,7 +194,7 @@ func (character *Character) applyHealingModel(healingModel *proto.HealingModel) if absorbFrac > 0 { absorbShield = character.NewDamageAbsorptionAura("Healing Model Absorb Shield", healingModelActionID, NeverExpires, func(_ *Unit) float64 { - return max(absorbShield.ShieldStrength, healPerTick * absorbFrac) + return max(absorbShield.ShieldStrength, healPerTick*absorbFrac) }) } @@ -216,7 +216,7 @@ func (character *Character) applyHealingModel(healingModel *proto.HealingModel) if healPerTick > 0 { // Execute the direct portion of the heal - character.GainHealth(sim, healPerTick * (1.0 - absorbFrac), healthMetrics) + character.GainHealth(sim, healPerTick*(1.0-absorbFrac), healthMetrics) // Turn the remainder into an absorb shield if absorbShield != nil { diff --git a/sim/core/item_effects.go b/sim/core/item_effects.go index e2a7d1e1af..04d3a8e94b 100644 --- a/sim/core/item_effects.go +++ b/sim/core/item_effects.go @@ -6,8 +6,8 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Function for applying permanent effects to an Agent. diff --git a/sim/core/item_sets.go b/sim/core/item_sets.go index a4ed2d1051..2b80fdae2a 100644 --- a/sim/core/item_sets.go +++ b/sim/core/item_sets.go @@ -4,7 +4,7 @@ import ( "fmt" "slices" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type ApplySetBonus func(agent Agent, setBonusAura *Aura) diff --git a/sim/core/item_swaps.go b/sim/core/item_swaps.go index fa06f34803..b803d19bda 100644 --- a/sim/core/item_swaps.go +++ b/sim/core/item_swaps.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type OnItemSwap func(*Simulation, proto.ItemSlot) diff --git a/sim/core/major_cooldown.go b/sim/core/major_cooldown.go index 3e7a13fe42..90005b5829 100644 --- a/sim/core/major_cooldown.go +++ b/sim/core/major_cooldown.go @@ -4,8 +4,8 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ( @@ -373,12 +373,7 @@ func (mcdm *majorCooldownManager) sort() { func RegisterTemporaryStatsOnUseCD(character *Character, auraLabel string, tempStats stats.Stats, duration time.Duration, config SpellConfig) { aura := character.NewTemporaryStatsAura(auraLabel, config.ActionID, tempStats, duration) - cdType := CooldownTypeUnknown - if tempStats.DotProduct(stats.Stats{stats.Armor: 1, stats.BlockPercent: 1, stats.DodgeRating: 1, stats.ParryRating: 1, stats.Health: 1, stats.ArcaneResistance: 1, stats.FireResistance: 1, stats.FrostResistance: 1, stats.NatureResistance: 1, stats.ShadowResistance: 1}).Equals(stats.Stats{}) { - cdType |= CooldownTypeDPS - } else { - cdType |= CooldownTypeSurvival - } + cdType := aura.InferCDType() config.Flags |= SpellFlagNoOnCastComplete config.ApplyEffects = func(sim *Simulation, _ *Unit, _ *Spell) { diff --git a/sim/core/mana.go b/sim/core/mana.go index 05ac45447b..f413f573dd 100644 --- a/sim/core/mana.go +++ b/sim/core/mana.go @@ -5,8 +5,8 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ThreatPerManaGained = 0.5 diff --git a/sim/core/metrics_aggregator.go b/sim/core/metrics_aggregator.go index b8e701ac40..70fcd3a97f 100644 --- a/sim/core/metrics_aggregator.go +++ b/sim/core/metrics_aggregator.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type ResourceKey struct { @@ -326,6 +326,9 @@ func (unit *Unit) NewDeathRuneMetrics(actionID ActionID) *ResourceMetrics { func (unit *Unit) NewComboPointMetrics(actionID ActionID) *ResourceMetrics { return unit.Metrics.NewResourceMetrics(actionID, proto.ResourceType_ResourceTypeComboPoints) } +func (unit *Unit) NewChiMetrics(actionID ActionID) *ResourceMetrics { + return unit.Metrics.NewResourceMetrics(actionID, proto.ResourceType_ResourceTypeChi) +} func (unit *Unit) NewFocusMetrics(actionID ActionID) *ResourceMetrics { return unit.Metrics.NewResourceMetrics(actionID, proto.ResourceType_ResourceTypeFocus) } diff --git a/sim/core/movement.go b/sim/core/movement.go index e6c6949685..b96cd2e2a5 100644 --- a/sim/core/movement.go +++ b/sim/core/movement.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type MovementAction struct { diff --git a/sim/core/pending_action.go b/sim/core/pending_action.go index 2e38265a7f..ca5d02de72 100644 --- a/sim/core/pending_action.go +++ b/sim/core/pending_action.go @@ -38,6 +38,10 @@ type PendingAction struct { consumed bool } +func (pa *PendingAction) IsConsumed() bool { + return pa == nil || pa.consumed +} + func (pa *PendingAction) Cancel(sim *Simulation) { if pa.cancelled { return diff --git a/sim/core/pet.go b/sim/core/pet.go index 668d6ec85a..d7a86c7a40 100644 --- a/sim/core/pet.go +++ b/sim/core/pet.go @@ -5,8 +5,8 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Extension of Agent interface, for Pets. diff --git a/sim/core/presim.go b/sim/core/presim.go index 95f3da3dd6..ccae14ccc9 100644 --- a/sim/core/presim.go +++ b/sim/core/presim.go @@ -3,7 +3,7 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/professions.go b/sim/core/professions.go index 91e7b0dae1..d3a50a68ba 100644 --- a/sim/core/professions.go +++ b/sim/core/professions.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // This is just the static bonuses. Most professions are handled elsewhere. diff --git a/sim/core/proto_test.go b/sim/core/proto_test.go index 859686c227..ca66d4904f 100644 --- a/sim/core/proto_test.go +++ b/sim/core/proto_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" "google.golang.org/protobuf/encoding/prototext" ) @@ -34,7 +34,7 @@ func readExpectedProtoVersion(fileName string, allowMissingFile bool) (int32, er func TestProtoVersioning(t *testing.T) { // First run the "buf breaking" utility to determine whether any breaking proto changes have been made compared to the // remote master. - cmd := exec.Command("npx", "buf", "breaking", "--against", "https://github.com/wowsims/cata.git#branch=master,subdir=proto") + cmd := exec.Command("npx", "buf", "breaking", "--against", "https://github.com/wowsims/mop.git#branch=master,subdir=proto") cmd.Dir = "../../" out, err := cmd.CombinedOutput() diff --git a/sim/core/racials.go b/sim/core/racials.go index 98d0839e68..5338b5df9c 100644 --- a/sim/core/racials.go +++ b/sim/core/racials.go @@ -3,8 +3,8 @@ package core import ( "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func applyRaceEffects(agent Agent) { diff --git a/sim/core/rage.go b/sim/core/rage.go index 4bc93d22e4..999cd0aab9 100644 --- a/sim/core/rage.go +++ b/sim/core/rage.go @@ -3,7 +3,7 @@ package core import ( "fmt" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) const MaxRage = 100.0 @@ -78,7 +78,7 @@ func (unit *Unit) EnableRageBar(options RageBarOptions) { // damage = result.PreOutcomeDamage // } - // rage in cata is normalized so it only depends on weapon swing speed and some multipliers + // rage in mop is normalized so it only depends on weapon swing speed and some multipliers generatedRage := hitFactor * speed generatedRage *= options.RageMultiplier diff --git a/sim/core/raid.go b/sim/core/raid.go index 31c381672a..81eaa46f4a 100644 --- a/sim/core/raid.go +++ b/sim/core/raid.go @@ -3,8 +3,8 @@ package core import ( "slices" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/runic_power.go b/sim/core/runic_power.go index 750800979a..9185825d96 100644 --- a/sim/core/runic_power.go +++ b/sim/core/runic_power.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type RuneChangeType int32 diff --git a/sim/core/sim.go b/sim/core/sim.go index 9b82e3338b..ab51e951f3 100644 --- a/sim/core/sim.go +++ b/sim/core/sim.go @@ -12,8 +12,8 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" ) type Task interface { diff --git a/sim/core/sim_concurrent.go b/sim/core/sim_concurrent.go index 33f211a8f5..8814f72c88 100644 --- a/sim/core/sim_concurrent.go +++ b/sim/core/sim_concurrent.go @@ -8,8 +8,8 @@ import ( "runtime" "runtime/debug" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/simsignals/api_test.go b/sim/core/simsignals/_api_test.go similarity index 96% rename from sim/core/simsignals/api_test.go rename to sim/core/simsignals/_api_test.go index e2bce24dd4..22ed0f1849 100644 --- a/sim/core/simsignals/api_test.go +++ b/sim/core/simsignals/_api_test.go @@ -4,10 +4,10 @@ import ( "testing" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/warrior/arms" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/warrior/arms" ) func TestAbort(t *testing.T) { @@ -30,7 +30,7 @@ func TestAbort(t *testing.T) { }, }, Glyphs: &proto.Glyphs{}, - TalentsString: "", + TalentsString: "000000", Buffs: &proto.IndividualBuffs{}, } diff --git a/sim/core/spell.go b/sim/core/spell.go index dbd3d42929..659fe15ae9 100644 --- a/sim/core/spell.go +++ b/sim/core/spell.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) type OnApplyEffects func(aura *Aura, sim *Simulation, target *Unit, spell *Spell) @@ -264,7 +264,7 @@ func (unit *Unit) RegisterSpell(config SpellConfig) *Spell { if config.ManaCost.BaseCostPercent != 0 || config.ManaCost.FlatCost != 0 { spell.Cost = newManaCost(spell, config.ManaCost) } else if config.EnergyCost.Cost != 0 { - spell.Cost = newEnergyCost(spell, config.EnergyCost) + spell.Cost = newEnergyCost(spell, config.EnergyCost, &unit.energyBar) } else if config.RageCost.Cost != 0 { spell.Cost = newRageCost(spell, config.RageCost) } else if config.RuneCost.BloodRuneCost != 0 || config.RuneCost.FrostRuneCost != 0 || config.RuneCost.UnholyRuneCost != 0 || config.RuneCost.RunicPowerCost != 0 || config.RuneCost.RunicPowerGain != 0 { diff --git a/sim/core/spell_mod.go b/sim/core/spell_mod.go index 545dda8ec6..a3b51d58a7 100644 --- a/sim/core/spell_mod.go +++ b/sim/core/spell_mod.go @@ -6,7 +6,7 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) /* diff --git a/sim/core/spell_outcome.go b/sim/core/spell_outcome.go index 15c944f5b6..286894bb6b 100644 --- a/sim/core/spell_outcome.go +++ b/sim/core/spell_outcome.go @@ -1,7 +1,7 @@ package core import ( - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) // This function should do 3 things: @@ -42,6 +42,28 @@ func (dot *Dot) OutcomeTickPhysicalCrit(sim *Simulation, result *SpellResult, at } } +func (dot *Dot) OutcomeTickMagicCrit(sim *Simulation, result *SpellResult, attackTable *AttackTable) { + if dot.Spell.MagicCritCheck(sim, result.Target) { + result.Outcome = OutcomeCrit + result.Damage *= dot.Spell.CritDamageMultiplier() + dot.Spell.SpellMetrics[result.Target.UnitIndex].CritTicks++ + } else { + result.Outcome = OutcomeHit + dot.Spell.SpellMetrics[result.Target.UnitIndex].Ticks++ + } +} + +func (dot *Dot) OutcomeTickHealingCrit(sim *Simulation, result *SpellResult, attackTable *AttackTable) { + if dot.Spell.HealingCritCheck(sim) { + result.Outcome = OutcomeCrit + result.Damage *= dot.Spell.CritDamageMultiplier() + dot.Spell.SpellMetrics[result.Target.UnitIndex].CritTicks++ + } else { + result.Outcome = OutcomeHit + dot.Spell.SpellMetrics[result.Target.UnitIndex].Ticks++ + } +} + func (dot *Dot) OutcomeSnapshotCrit(sim *Simulation, result *SpellResult, _ *AttackTable) { if dot.Spell.CritMultiplier == 0 { panic("Spell " + dot.Spell.ActionID.String() + " missing CritMultiplier") @@ -225,6 +247,28 @@ func (spell *Spell) outcomeMeleeWhite(sim *Simulation, result *SpellResult, atta } } +func (spell *Spell) OutcomeMeleeWhiteNoGlance(sim *Simulation, result *SpellResult, attackTable *AttackTable) { + unit := spell.Unit + roll := sim.RandomFloat("White Hit Table") + chance := 0.0 + + if unit.PseudoStats.InFrontOfTarget { + if !result.applyAttackTableMiss(spell, attackTable, roll, &chance) && + !result.applyAttackTableDodge(spell, attackTable, roll, &chance) && + !result.applyAttackTableParry(spell, attackTable, roll, &chance) && + !result.applyAttackTableBlock(spell, attackTable, roll, &chance) && + !result.applyAttackTableCrit(spell, attackTable, roll, &chance, true) { + result.applyAttackTableHit(spell, true) + } + } else { + if !result.applyAttackTableMiss(spell, attackTable, roll, &chance) && + !result.applyAttackTableDodge(spell, attackTable, roll, &chance) && + !result.applyAttackTableCrit(spell, attackTable, roll, &chance, true) { + result.applyAttackTableHit(spell, true) + } + } +} + func (spell *Spell) OutcomeMeleeSpecialHit(sim *Simulation, result *SpellResult, attackTable *AttackTable) { spell.outcomeMeleeSpecialHit(sim, result, attackTable, true) } diff --git a/sim/core/spell_resistances.go b/sim/core/spell_resistances.go index 707c27490a..f9dcfb0391 100644 --- a/sim/core/spell_resistances.go +++ b/sim/core/spell_resistances.go @@ -5,7 +5,7 @@ import ( "math" "strings" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) func (result *SpellResult) applyResistances(sim *Simulation, spell *Spell, isPeriodic bool, attackTable *AttackTable) { diff --git a/sim/core/spell_resistances_test.go b/sim/core/spell_resistances_test.go index 275d5086ab..8f3309b992 100644 --- a/sim/core/spell_resistances_test.go +++ b/sim/core/spell_resistances_test.go @@ -4,9 +4,9 @@ import ( "math" "testing" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" ) func Test_PartialResistsVsPlayer(t *testing.T) { @@ -17,7 +17,7 @@ func Test_PartialResistsVsPlayer(t *testing.T) { } defender := &Unit{ Type: PlayerUnit, - Level: 85, + Level: 90, stats: stats.Stats{}, } @@ -82,7 +82,7 @@ func Test_PartialResistsVsPlayer(t *testing.T) { func Test_PartialResistsVsBoss(t *testing.T) { attacker := &Unit{ Type: PlayerUnit, - Level: 85, + Level: 90, stats: stats.Stats{}, } defender := &Unit{ diff --git a/sim/core/spell_result.go b/sim/core/spell_result.go index 2b7845f998..ec91a80c94 100644 --- a/sim/core/spell_result.go +++ b/sim/core/spell_result.go @@ -4,7 +4,7 @@ import ( "fmt" "math" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) type SpellResult struct { diff --git a/sim/core/stats/deps.go b/sim/core/stats/deps.go index eed6b5ebe1..ff4a563e03 100644 --- a/sim/core/stats/deps.go +++ b/sim/core/stats/deps.go @@ -23,12 +23,14 @@ var safeDepsOrder = []Stat{ Health, Mana, MP5, + HasteRating, CritRating, SpellCritPercent, PhysicalCritPercent, BlockPercent, DodgeRating, ParryRating, + ExpertiseRating, HitRating, SpellHitPercent, PhysicalHitPercent, diff --git a/sim/core/stats/stats.go b/sim/core/stats/stats.go index 0b69e2c4f8..635a82da21 100644 --- a/sim/core/stats/stats.go +++ b/sim/core/stats/stats.go @@ -5,7 +5,7 @@ import ( "math" "strings" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type Stats [SimStatsLen]float64 @@ -358,6 +358,26 @@ func (stats Stats) ToProtoArray() []float64 { return stats[:ProtoStatsLen] } +func (stats Stats) ToProtoMap() map[int32]float64 { + m := make(map[int32]float64, SimStatsLen) + for i := 0; i < int(SimStatsLen); i++ { + if stats[i] != 0 { + m[int32(i)] = stats[i] + } + } + return m +} + +func FromProtoMap(m map[int32]float64) Stats { + var stats Stats + for k, v := range m { + if k >= 0 && k < int32(SimStatsLen) { + stats[k] = v + } + } + return stats +} + type PseudoStats struct { /////////////////////////////////////////////////// // Effects that apply when this unit is the attacker. diff --git a/sim/core/stats/stats_test.go b/sim/core/stats/stats_test.go index 431ff4fa33..6233e5c0e9 100644 --- a/sim/core/stats/stats_test.go +++ b/sim/core/stats/stats_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) func TestStatsAdd(t *testing.T) { diff --git a/sim/core/statweight.go b/sim/core/statweight.go index 088c2ca0d2..a9aa5b8b13 100644 --- a/sim/core/statweight.go +++ b/sim/core/statweight.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/core/target.go b/sim/core/target.go index bab3407269..ed974db4b8 100644 --- a/sim/core/target.go +++ b/sim/core/target.go @@ -4,8 +4,8 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type Encounter struct { diff --git a/sim/core/target_ai.go b/sim/core/target_ai.go index b38d3ef73b..e5a50d2479 100644 --- a/sim/core/target_ai.go +++ b/sim/core/target_ai.go @@ -3,7 +3,7 @@ package core import ( "log" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) type TargetAI interface { diff --git a/sim/core/target_dummy.go b/sim/core/target_dummy.go index 7cadc43c82..f84d6a5bfc 100644 --- a/sim/core/target_dummy.go +++ b/sim/core/target_dummy.go @@ -3,8 +3,8 @@ package core import ( "fmt" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type TargetDummy struct { diff --git a/sim/core/test_generators.go b/sim/core/test_generators.go index 0c6f979c1e..f9c3b568f4 100644 --- a/sim/core/test_generators.go +++ b/sim/core/test_generators.go @@ -5,7 +5,7 @@ import ( "slices" "strings" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) @@ -95,12 +95,12 @@ type RotationCombo struct { Rotation *proto.APLRotation } type BuffsCombo struct { - Label string - Raid *proto.RaidBuffs - Party *proto.PartyBuffs - Debuffs *proto.Debuffs - Player *proto.IndividualBuffs - Consumes *proto.Consumes + Label string + Raid *proto.RaidBuffs + Party *proto.PartyBuffs + Debuffs *proto.Debuffs + Player *proto.IndividualBuffs + Consumables *proto.ConsumesSpec } type EncounterCombo struct { Label string @@ -194,7 +194,7 @@ func (combos *SettingsCombos) GetTest(testIdx int) (string, *proto.ComputeStatsR Equipment: gearSetCombo.GearSet, TalentsString: talentSetCombo.Talents, Glyphs: talentSetCombo.Glyphs, - Consumes: buffsCombo.Consumes, + Consumables: buffsCombo.Consumables, Buffs: buffsCombo.Player, Profession1: proto.Profession_Engineering, Cooldowns: combos.Cooldowns, @@ -459,7 +459,8 @@ type CharacterSuiteConfig struct { ItemSwapSet ItemSwapSetCombo StartingDistance float64 - Consumes *proto.Consumes + //Consumes *proto.Consumes + Consumables *proto.ConsumesSpec IsHealer bool IsTank bool @@ -500,7 +501,7 @@ func FullCharacterTestSuiteGenerator(config CharacterSuiteConfig) TestGenerator Class: config.Class, Race: config.Race, Equipment: config.GearSet.GearSet, - Consumes: config.Consumes, + Consumables: config.Consumables, Buffs: FullIndividualBuffs, TalentsString: config.Talents, Glyphs: config.Glyphs, @@ -550,12 +551,12 @@ func FullCharacterTestSuiteGenerator(config CharacterSuiteConfig) TestGenerator Label: "NoBuffs", }, { - Label: "FullBuffs", - Raid: FullRaidBuffs, - Party: FullPartyBuffs, - Debuffs: FullDebuffs, - Player: FullIndividualBuffs, - Consumes: config.Consumes, + Label: "FullBuffs", + Raid: FullRaidBuffs, + Party: FullPartyBuffs, + Debuffs: FullDebuffs, + Player: FullIndividualBuffs, + Consumables: config.Consumables, }, }, IsHealer: config.IsHealer, diff --git a/sim/core/test_result_compare.go b/sim/core/test_result_compare.go index 197c83314d..8c4e875ba2 100644 --- a/sim/core/test_result_compare.go +++ b/sim/core/test_result_compare.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) func compareValue(t *testing.T, loc string, vst reflect.Value, vmt reflect.Value, baseFloatTolerance float64) { diff --git a/sim/core/test_suite.go b/sim/core/test_suite.go index d7f8f3dd2a..12dce41f10 100644 --- a/sim/core/test_suite.go +++ b/sim/core/test_suite.go @@ -9,8 +9,8 @@ import ( "strings" "testing" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" "google.golang.org/protobuf/encoding/prototext" ) diff --git a/sim/core/test_utils.go b/sim/core/test_utils.go index 6995075f93..4dc81dd419 100644 --- a/sim/core/test_utils.go +++ b/sim/core/test_utils.go @@ -5,8 +5,8 @@ import ( "os" "testing" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) var DefaultSimTestOptions = &proto.SimOptions{ diff --git a/sim/core/unit.go b/sim/core/unit.go index 27423f35f6..518a07baef 100644 --- a/sim/core/unit.go +++ b/sim/core/unit.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type UnitType int diff --git a/sim/core/utils.go b/sim/core/utils.go index 038dde506d..cfce5b2611 100644 --- a/sim/core/utils.go +++ b/sim/core/utils.go @@ -8,14 +8,45 @@ import ( "strings" "time" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" googleproto "google.golang.org/protobuf/proto" ) func DurationFromSeconds(numSeconds float64) time.Duration { return time.Duration(float64(time.Second) * numSeconds) } +func MapToFixedStatsArray(statsArr map[int32]float64) []float64 { + arr := make([]float64, stats.UnitStatsLen) + for k, v := range statsArr { + if int(k) >= stats.UnitStatsLen || k < 0 { + continue // skip out-of-range keys + } + arr[k] = v + } + return arr +} + +func FirstMapEntry[K comparable, V any](m map[K]V) (K, V, bool) { + for k, v := range m { + return k, v, true + } + var zeroK K + var zeroV V + return zeroK, zeroV, false +} + +func LastMapEntry[K comparable, V any](m map[K]V) (K, V, bool) { + var lastK K + var lastV V + found := false + for k, v := range m { + lastK = k + lastV = v + found = true + } + return lastK, lastV, found +} func StringFromStatTypes(statTypes []stats.Stat) string { statNames := MapSlice(statTypes, func(statType stats.Stat) string { @@ -32,7 +63,24 @@ func StringFromActionIDs(actionIDs []ActionID) string { return strings.Join(names, ", ") } - +func (unit *Unit) ExecuteResourceGain(sim *Simulation, resource proto.ResourceType, amount float64, metrics *ResourceMetrics) { + switch { + case resource == proto.ResourceType_ResourceTypeMana && amount > 0: + unit.AddMana(sim, amount, metrics) + case resource == proto.ResourceType_ResourceTypeMana && amount < 0: + unit.SpendMana(sim, -amount, metrics) + case resource == proto.ResourceType_ResourceTypeHealth && amount > 0: + unit.GainHealth(sim, amount, metrics) + case resource == proto.ResourceType_ResourceTypeHealth && amount < 0: + unit.RemoveHealth(sim, -amount) + case resource == proto.ResourceType_ResourceTypeRage && amount < 0: + unit.SpendRage(sim, -amount/10, metrics) + case resource == proto.ResourceType_ResourceTypeRage && amount > 0: + unit.AddRage(sim, amount/10, metrics) + default: + panic("Unsupported Resource Type in ExecuteResourceGain") + } +} func GetTristateValueInt32(effect proto.TristateEffect, regularValue int32, impValue int32) int32 { if effect == proto.TristateEffect_TristateEffectRegular { return regularValue diff --git a/sim/core/vengeance.go b/sim/core/vengeance.go index ebf0663838..992f9f8a1e 100644 --- a/sim/core/vengeance.go +++ b/sim/core/vengeance.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/stats" ) type VengeanceTracker struct { diff --git a/sim/death_knight/anti_magic_shell.go b/sim/death_knight/_anti_magic_shell.go similarity index 95% rename from sim/death_knight/anti_magic_shell.go rename to sim/death_knight/_anti_magic_shell.go index b9e5797762..59b30d740c 100644 --- a/sim/death_knight/anti_magic_shell.go +++ b/sim/death_knight/_anti_magic_shell.go @@ -3,9 +3,9 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerAntiMagicShellSpell() { diff --git a/sim/death_knight/army_of_the_dead.go b/sim/death_knight/_army_of_the_dead.go similarity index 98% rename from sim/death_knight/army_of_the_dead.go rename to sim/death_knight/_army_of_the_dead.go index decefc8d05..4311d91752 100644 --- a/sim/death_knight/army_of_the_dead.go +++ b/sim/death_knight/_army_of_the_dead.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerArmyOfTheDeadSpell() { diff --git a/sim/death_knight/blood_boil.go b/sim/death_knight/_blood_boil.go similarity index 98% rename from sim/death_knight/blood_boil.go rename to sim/death_knight/_blood_boil.go index cadfce2a51..fd4dff5ac4 100644 --- a/sim/death_knight/blood_boil.go +++ b/sim/death_knight/_blood_boil.go @@ -1,7 +1,7 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var BloodBoilActionID = core.ActionID{SpellID: 48721} diff --git a/sim/death_knight/_blood_strike.go b/sim/death_knight/_blood_strike.go index de3b07538b..dfe041a4f9 100644 --- a/sim/death_knight/_blood_strike.go +++ b/sim/death_knight/_blood_strike.go @@ -1,21 +1,43 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) -var BloodStrikeActionID = core.ActionID{SpellID: 49930} +var BloodStrikeActionID = core.ActionID{SpellID: 45902} -func (dk *DeathKnight) newBloodStrikeSpell(isMH bool) *core.Spell { - bonusBaseDamage := dk.sigilOfTheDarkRiderBonus() - diseaseMulti := dk.dkDiseaseMultiplier(0.125) - deathConvertChance := float64(dk.Talents.BloodOfTheNorth+dk.Talents.Reaping) / 3 +func (dk *DeathKnight) registerBloodStrikeSpell() { + ohSpell := dk.GetOrRegisterSpell(core.SpellConfig{ + ActionID: BloodStrikeActionID.WithTag(2), + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeOHSpecial, + Flags: core.SpellFlagMeleeMetrics, + ClassSpellMask: DeathKnightSpellBloodStrike, + + DamageMultiplier: 0.8, + DamageMultiplierAdditive: 1, + CritMultiplier: dk.DefaultMeleeCritMultiplier(), + ThreatMultiplier: 1, - conf := core.SpellConfig{ - ActionID: BloodStrikeActionID.WithTag(core.TernaryInt32(isMH, 1, 2)), - SpellSchool: core.SpellSchoolPhysical, - ProcMask: dk.threatOfThassarianProcMask(isMH), - Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage, + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := dk.ClassSpellScaling*0.37799999118 + + spell.Unit.OHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) + + baseDamage *= dk.GetDiseaseMulti(target, 1.0, 0.025) + + spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialCritOnly) + }, + }) + + hasReaping := dk.Inputs.Spec == proto.Spec_SpecUnholyDeathKnight + + dk.GetOrRegisterSpell(core.SpellConfig{ + ActionID: BloodStrikeActionID.WithTag(1), + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagAPL, + ClassSpellMask: DeathKnightSpellBloodStrike, RuneCost: core.RuneCostOptions{ BloodRuneCost: 1, @@ -29,88 +51,40 @@ func (dk *DeathKnight) newBloodStrikeSpell(isMH bool) *core.Spell { IgnoreHaste: true, }, - BonusCritRating: (dk.subversionCritBonus() + dk.annihilationCritBonus()) * core.CritRatingPerCritChance, - DamageMultiplier: 0.4 * - core.TernaryFloat64(isMH, 1, dk.nervesOfColdSteelBonus()) * - dk.bloodOfTheNorthCoeff() * - dk.thassariansPlateDamageBonus() * - dk.bloodyStrikesBonus(BloodyStrikesBS), - CritMultiplier: dk.bonusCritMultiplier(dk.Talents.MightOfMograine + dk.Talents.GuileOfGorefiend), + DamageMultiplier: 0.8, + CritMultiplier: dk.DefaultMeleeCritMultiplier(), ThreatMultiplier: 1, ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - var baseDamage float64 - if isMH { - baseDamage = 764 + - bonusBaseDamage + - spell.Unit.MHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) + - spell.BonusWeaponDamage() - } else { - // SpellID 66979 - baseDamage = 382 + - bonusBaseDamage + - spell.Unit.OHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) + - spell.BonusWeaponDamage() - } - baseDamage *= dk.RoRTSBonus(target) * - (1.0 + dk.dkCountActiveDiseases(target)*diseaseMulti) + baseDamage := dk.ClassSpellScaling*0.75599998236 + + spell.Unit.MHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) - result := spell.CalcDamage(sim, target, baseDamage, dk.threatOfThassarianOutcomeApplier(spell)) + baseDamage *= dk.GetDiseaseMulti(target, 1.0, 0.125) - if isMH { - spell.SpendRefundableCostAndConvertBloodRune(sim, result, deathConvertChance) - dk.threatOfThassarianProc(sim, result, dk.BloodStrikeOhHit) + result := spell.CalcDamage(sim, target, baseDamage, spell.OutcomeMeleeWeaponSpecialHitAndCrit) - if result.Landed() { - if dk.DesolationAura != nil { - dk.DesolationAura.Activate(sim) - } - } + if hasReaping { + spell.SpendRefundableCostAndConvertBloodRune(sim, result, 1) + } else { + spell.SpendRefundableCost(sim, result) } + dk.ThreatOfThassarianProc(sim, result, ohSpell) spell.DealDamage(sim, result) }, - } - - if !isMH { // offhand doesn't need GCD - conf.RuneCost = core.RuneCostOptions{} - conf.Cast = core.CastConfig{} - } else { - conf.Flags |= core.SpellFlagAPL - } - - return dk.RegisterSpell(conf) -} - -func (dk *DeathKnight) registerBloodStrikeSpell() { - dk.BloodStrikeMhHit = dk.newBloodStrikeSpell(true) - dk.BloodStrikeOhHit = dk.newBloodStrikeSpell(false) - dk.BloodStrike = dk.BloodStrikeMhHit + }) } -func (dk *DeathKnight) registerDrwBloodStrikeSpell() { - bonusBaseDamage := dk.sigilOfTheDarkRiderBonus() - diseaseMulti := dk.dkDiseaseMultiplier(0.125) - - dk.RuneWeapon.BloodStrike = dk.RuneWeapon.RegisterSpell(core.SpellConfig{ +func (dk *DeathKnight) registerDrwBloodStrikeSpell() *core.Spell { + return dk.RuneWeapon.RegisterSpell(core.SpellConfig{ ActionID: BloodStrikeActionID.WithTag(1), SpellSchool: core.SpellSchoolPhysical, ProcMask: core.ProcMaskMeleeMHSpecial, - Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage, - - BonusCritRating: (dk.subversionCritBonus() + dk.annihilationCritBonus()) * core.CritRatingPerCritChance, - DamageMultiplier: 0.4 * - dk.bloodOfTheNorthCoeff() * - dk.thassariansPlateDamageBonus() * - dk.bloodyStrikesBonus(BloodyStrikesBS), - CritMultiplier: dk.bonusCritMultiplier(dk.Talents.MightOfMograine + dk.Talents.GuileOfGorefiend), - ThreatMultiplier: 1, + Flags: core.SpellFlagMeleeMetrics, ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := 764 + bonusBaseDamage + dk.DrwWeaponDamage(sim, spell) - - baseDamage *= dk.RoRTSBonus(target) * - (1.0 + dk.drwCountActiveDiseases(target)*diseaseMulti) + baseDamage := dk.ClassSpellScaling*0.75599998236 + + spell.Unit.MHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeWeaponSpecialHitAndCrit) }, diff --git a/sim/death_knight/bone_shield.go b/sim/death_knight/_bone_shield.go similarity index 98% rename from sim/death_knight/bone_shield.go rename to sim/death_knight/_bone_shield.go index 746ddfcb60..94e49443c9 100644 --- a/sim/death_knight/bone_shield.go +++ b/sim/death_knight/_bone_shield.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerBoneShieldSpell() { diff --git a/sim/death_knight/dancing_rune_weapon.go b/sim/death_knight/_dancing_rune_weapon.go similarity index 98% rename from sim/death_knight/dancing_rune_weapon.go rename to sim/death_knight/_dancing_rune_weapon.go index 92d6c28015..cab4d4a3a0 100644 --- a/sim/death_knight/dancing_rune_weapon.go +++ b/sim/death_knight/_dancing_rune_weapon.go @@ -3,9 +3,9 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func CopySpellMultipliers(sourceSpell *core.Spell, targetSpell *core.Spell, target *core.Unit) { diff --git a/sim/death_knight/death_coil.go b/sim/death_knight/_death_coil.go similarity index 96% rename from sim/death_knight/death_coil.go rename to sim/death_knight/_death_coil.go index d6a73fc505..e7c18616b5 100644 --- a/sim/death_knight/death_coil.go +++ b/sim/death_knight/_death_coil.go @@ -1,15 +1,15 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) var DeathCoilActionID = core.ActionID{SpellID: 47541} func (dk *DeathKnight) registerDeathCoilSpell() { rpMetrics := dk.NewRunicPowerMetrics(core.ActionID{SpellID: 58679}) - hasGlyphOfDeathsEmbrace := dk.HasMinorGlyph(proto.DeathKnightMinorGlyph_GlyphOfDeathSEmbrace) + hasGlyphOfDeathsEmbrace := dk.HasMinorGlyph(proto.DeathKnightMinorGlyph_GlyphOfDeathsEmbrace) // Death Coil Heal dk.RegisterSpell(core.SpellConfig{ diff --git a/sim/death_knight/death_pact.go b/sim/death_knight/_death_pact.go similarity index 97% rename from sim/death_knight/death_pact.go rename to sim/death_knight/_death_pact.go index e5c707b7b2..1540d7741f 100644 --- a/sim/death_knight/death_pact.go +++ b/sim/death_knight/_death_pact.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerDeathPactSpell() { diff --git a/sim/death_knight/death_strike.go b/sim/death_knight/_death_strike.go similarity index 98% rename from sim/death_knight/death_strike.go rename to sim/death_knight/_death_strike.go index 409613d839..bdf9477cea 100644 --- a/sim/death_knight/death_strike.go +++ b/sim/death_knight/_death_strike.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) // TODO: Cleanup death strike the same way we did for plague strike diff --git a/sim/death_knight/diseases.go b/sim/death_knight/_diseases.go similarity index 99% rename from sim/death_knight/diseases.go rename to sim/death_knight/_diseases.go index a689357eb0..b7fbd5adf5 100644 --- a/sim/death_knight/diseases.go +++ b/sim/death_knight/_diseases.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) DiseasesAreActive(target *core.Unit) bool { diff --git a/sim/death_knight/festering_strike.go b/sim/death_knight/_festering_strike.go similarity index 97% rename from sim/death_knight/festering_strike.go rename to sim/death_knight/_festering_strike.go index b6e94a792d..b4c62f7a1b 100644 --- a/sim/death_knight/festering_strike.go +++ b/sim/death_knight/_festering_strike.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) var FesteringStrikeActionID = core.ActionID{SpellID: 85948} diff --git a/sim/death_knight/ghoul_pet.go b/sim/death_knight/_ghoul_pet.go similarity index 98% rename from sim/death_knight/ghoul_pet.go rename to sim/death_knight/_ghoul_pet.go index b29fcd65b1..fc2dd2a71a 100644 --- a/sim/death_knight/ghoul_pet.go +++ b/sim/death_knight/_ghoul_pet.go @@ -3,9 +3,9 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type GhoulPet struct { diff --git a/sim/death_knight/glyphs.go b/sim/death_knight/_glyphs.go similarity index 97% rename from sim/death_knight/glyphs.go rename to sim/death_knight/_glyphs.go index 281833d7e8..815fe5cce9 100644 --- a/sim/death_knight/glyphs.go +++ b/sim/death_knight/_glyphs.go @@ -1,8 +1,8 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (dk *DeathKnight) ApplyGlyphs() { diff --git a/sim/death_knight/howling_blast.go b/sim/death_knight/_howling_blast.go similarity index 97% rename from sim/death_knight/howling_blast.go rename to sim/death_knight/_howling_blast.go index 4c569bd53c..1141a47744 100644 --- a/sim/death_knight/howling_blast.go +++ b/sim/death_knight/_howling_blast.go @@ -1,7 +1,7 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var HowlingBlastActionID = core.ActionID{SpellID: 49184} diff --git a/sim/death_knight/icebound_fortitude.go b/sim/death_knight/_icebound_fortitude.go similarity index 97% rename from sim/death_knight/icebound_fortitude.go rename to sim/death_knight/_icebound_fortitude.go index 6da220fa0e..4bc66253f1 100644 --- a/sim/death_knight/icebound_fortitude.go +++ b/sim/death_knight/_icebound_fortitude.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerIceboundFortitudeSpell() { diff --git a/sim/death_knight/icy_touch.go b/sim/death_knight/_icy_touch.go similarity index 97% rename from sim/death_knight/icy_touch.go rename to sim/death_knight/_icy_touch.go index f3ec2c8221..d8e8110cfa 100644 --- a/sim/death_knight/icy_touch.go +++ b/sim/death_knight/_icy_touch.go @@ -1,7 +1,7 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var IcyTouchActionID = core.ActionID{SpellID: 45477} diff --git a/sim/death_knight/obliterate.go b/sim/death_knight/_obliterate.go similarity index 96% rename from sim/death_knight/obliterate.go rename to sim/death_knight/_obliterate.go index e0ddef5014..a39597a877 100644 --- a/sim/death_knight/obliterate.go +++ b/sim/death_knight/_obliterate.go @@ -1,8 +1,8 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) var obliterateActionID = core.ActionID{SpellID: 49020} diff --git a/sim/death_knight/pillar_of_frost.go b/sim/death_knight/_pillar_of_frost.go similarity index 94% rename from sim/death_knight/pillar_of_frost.go rename to sim/death_knight/_pillar_of_frost.go index cff87178b6..c2fe4e285f 100644 --- a/sim/death_knight/pillar_of_frost.go +++ b/sim/death_knight/_pillar_of_frost.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (dk *DeathKnight) registerPillarOfFrostSpell() { diff --git a/sim/death_knight/plague_strike.go b/sim/death_knight/_plague_strike.go similarity index 98% rename from sim/death_knight/plague_strike.go rename to sim/death_knight/_plague_strike.go index b6356da1bf..311a8fb46e 100644 --- a/sim/death_knight/plague_strike.go +++ b/sim/death_knight/_plague_strike.go @@ -1,7 +1,7 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var PlagueStrikeActionID = core.ActionID{SpellID: 45462} diff --git a/sim/death_knight/presences.go b/sim/death_knight/_presences.go similarity index 97% rename from sim/death_knight/presences.go rename to sim/death_knight/_presences.go index 2085999dff..6d949056fc 100644 --- a/sim/death_knight/presences.go +++ b/sim/death_knight/_presences.go @@ -3,9 +3,9 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const presenceEffectCategory = "Presence" diff --git a/sim/death_knight/raise_dead.go b/sim/death_knight/_raise_dead.go similarity index 94% rename from sim/death_knight/raise_dead.go rename to sim/death_knight/_raise_dead.go index 73bfdd3cec..595228f10f 100644 --- a/sim/death_knight/raise_dead.go +++ b/sim/death_knight/_raise_dead.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (dk *DeathKnight) registerRaiseDeadSpell() { diff --git a/sim/death_knight/rune_strike.go b/sim/death_knight/_rune_strike.go similarity index 98% rename from sim/death_knight/rune_strike.go rename to sim/death_knight/_rune_strike.go index 229e45b0a8..1f456fbbe5 100644 --- a/sim/death_knight/rune_strike.go +++ b/sim/death_knight/_rune_strike.go @@ -1,7 +1,7 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var RuneStrikeActionID = core.ActionID{SpellID: 56815} diff --git a/sim/death_knight/rune_tap.go b/sim/death_knight/_rune_tap.go similarity index 96% rename from sim/death_knight/rune_tap.go rename to sim/death_knight/_rune_tap.go index 213038c78d..519aa63bd1 100644 --- a/sim/death_knight/rune_tap.go +++ b/sim/death_knight/_rune_tap.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) var RuneTapActionID = core.ActionID{SpellID: 48982} diff --git a/sim/death_knight/summon_gargoyle.go b/sim/death_knight/_summon_gargoyle.go similarity index 98% rename from sim/death_knight/summon_gargoyle.go rename to sim/death_knight/_summon_gargoyle.go index 42c06f6957..f67656b54c 100644 --- a/sim/death_knight/summon_gargoyle.go +++ b/sim/death_knight/_summon_gargoyle.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (dk *DeathKnight) registerSummonGargoyleSpell() { diff --git a/sim/death_knight/talents_blood.go b/sim/death_knight/_talents_blood.go similarity index 98% rename from sim/death_knight/talents_blood.go rename to sim/death_knight/_talents_blood.go index 4ca00e60fd..64173501a6 100644 --- a/sim/death_knight/talents_blood.go +++ b/sim/death_knight/_talents_blood.go @@ -1,14 +1,14 @@ package death_knight import ( - //"github.com/wowsims/cata/sim/core/proto" + //"github.com/wowsims/mop/sim/core/proto" //"time" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (dk *DeathKnight) ApplyBloodTalents() { diff --git a/sim/death_knight/talents_frost.go b/sim/death_knight/_talents_frost.go similarity index 97% rename from sim/death_knight/talents_frost.go rename to sim/death_knight/_talents_frost.go index c5c15ecf79..67887983e0 100644 --- a/sim/death_knight/talents_frost.go +++ b/sim/death_knight/_talents_frost.go @@ -1,13 +1,13 @@ package death_knight import ( - //"github.com/wowsims/cata/sim/core/proto" + //"github.com/wowsims/mop/sim/core/proto" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (dk *DeathKnight) ApplyFrostTalents() { diff --git a/sim/death_knight/talents_unholy.go b/sim/death_knight/_talents_unholy.go similarity index 99% rename from sim/death_knight/talents_unholy.go rename to sim/death_knight/_talents_unholy.go index 999de12a0b..85d230e6b5 100644 --- a/sim/death_knight/talents_unholy.go +++ b/sim/death_knight/_talents_unholy.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (dk *DeathKnight) ApplyUnholyTalents() { diff --git a/sim/death_knight/unholy_frenzy.go b/sim/death_knight/_unholy_frenzy.go similarity index 97% rename from sim/death_knight/unholy_frenzy.go rename to sim/death_knight/_unholy_frenzy.go index 2432771c47..cd4405fc81 100644 --- a/sim/death_knight/unholy_frenzy.go +++ b/sim/death_knight/_unholy_frenzy.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerUnholyFrenzySpell() { diff --git a/sim/death_knight/vampiric_blood.go b/sim/death_knight/_vampiric_blood.go similarity index 95% rename from sim/death_knight/vampiric_blood.go rename to sim/death_knight/_vampiric_blood.go index dcc347c12a..21075c2ffd 100644 --- a/sim/death_knight/vampiric_blood.go +++ b/sim/death_knight/_vampiric_blood.go @@ -3,8 +3,8 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (dk *DeathKnight) registerVampiricBloodSpell() { diff --git a/sim/death_knight/blood/TestBlood.results b/sim/death_knight/blood/TestBlood.results index 4919003e49..0c7f26e1d6 100644 --- a/sim/death_knight/blood/TestBlood.results +++ b/sim/death_knight/blood/TestBlood.results @@ -200,7 +200,7 @@ dps_results: { value: { dps: 22281.74425 tps: 112210.03546 - hps: 5404.25156 + hps: 5404.17498 } } dps_results: { @@ -208,7 +208,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5395.73686 + hps: 5395.66029 } } dps_results: { @@ -216,7 +216,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5395.73686 + hps: 5395.66029 } } dps_results: { @@ -464,7 +464,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5396.88972 + hps: 5396.81222 } } dps_results: { @@ -952,7 +952,7 @@ dps_results: { value: { dps: 21992.20876 tps: 110662.49535 - hps: 5341.94009 + hps: 5342.03039 } } dps_results: { @@ -960,7 +960,7 @@ dps_results: { value: { dps: 21998.97681 tps: 110701.08727 - hps: 5355.49769 + hps: 5355.61739 } } dps_results: { @@ -1040,7 +1040,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5337.87819 + hps: 5337.95968 } } dps_results: { @@ -2400,7 +2400,7 @@ dps_results: { value: { dps: 21770.95753 tps: 109060.03619 - hps: 5441.71354 + hps: 5441.98347 } } dps_results: { @@ -2408,7 +2408,7 @@ dps_results: { value: { dps: 21867.37387 tps: 109918.82309 - hps: 5533.03577 + hps: 5533.25172 } } dps_results: { @@ -2416,7 +2416,7 @@ dps_results: { value: { dps: 22332.07157 tps: 112492.08978 - hps: 5410.8818 + hps: 5410.80082 } } dps_results: { @@ -2424,7 +2424,7 @@ dps_results: { value: { dps: 22037.95997 tps: 111016.06675 - hps: 5463.68731 + hps: 5464.49711 } } dps_results: { @@ -2432,7 +2432,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5401.22696 + hps: 5401.14598 } } dps_results: { @@ -2440,7 +2440,7 @@ dps_results: { value: { dps: 21971.2473 tps: 110542.97145 - hps: 5401.22696 + hps: 5401.14598 } } dps_results: { diff --git a/sim/death_knight/blood/blood_test.go b/sim/death_knight/blood/_blood_test.go similarity index 74% rename from sim/death_knight/blood/blood_test.go rename to sim/death_knight/blood/_blood_test.go index 0f831c824f..5e5cbcf9ec 100644 --- a/sim/death_knight/blood/blood_test.go +++ b/sim/death_knight/blood/_blood_test.go @@ -3,9 +3,9 @@ package blood import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -25,7 +25,7 @@ func TestBlood(t *testing.T) { Talents: BloodTalents, Glyphs: BloodDefaultGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBlood}, Rotation: core.GetAplRotation("../../../ui/death_knight/blood/apls", "simple"), @@ -38,9 +38,6 @@ func TestBlood(t *testing.T) { var BloodTalents = "02323203102122111321-3-033" var BloodDefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DeathKnightPrimeGlyph_GlyphOfDeathStrike), - Prime2: int32(proto.DeathKnightPrimeGlyph_GlyphOfHeartStrike), - Prime3: int32(proto.DeathKnightPrimeGlyph_GlyphOfRuneStrike), Major1: int32(proto.DeathKnightMajorGlyph_GlyphOfAntiMagicShell), Major2: int32(proto.DeathKnightMajorGlyph_GlyphOfDancingRuneWeapon), Major3: int32(proto.DeathKnightMajorGlyph_GlyphOfBoneShield), @@ -57,12 +54,12 @@ var PlayerOptionsBlood = &proto.Player_BloodDeathKnight{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfSteelskin, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58085, // Flask of Steelskin + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } var ItemFilter = core.ItemFilter{ diff --git a/sim/death_knight/blood/heart_strike.go b/sim/death_knight/blood/_heart_strike.go similarity index 97% rename from sim/death_knight/blood/heart_strike.go rename to sim/death_knight/blood/_heart_strike.go index 7d0492f234..4456885aed 100644 --- a/sim/death_knight/blood/heart_strike.go +++ b/sim/death_knight/blood/_heart_strike.go @@ -1,8 +1,8 @@ package blood import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/death_knight" ) var HeartStrikeActionID = core.ActionID{SpellID: 55050} diff --git a/sim/death_knight/blood/blood.go b/sim/death_knight/blood/blood.go index c61722c1a0..4748c8c8ee 100644 --- a/sim/death_knight/blood/blood.go +++ b/sim/death_knight/blood/blood.go @@ -3,10 +3,10 @@ package blood import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/death_knight" ) func RegisterBloodDeathKnight() { @@ -61,11 +61,12 @@ func (bdk *BloodDeathKnight) GetDeathKnight() *death_knight.DeathKnight { func (bdk *BloodDeathKnight) Initialize() { bdk.DeathKnight.Initialize() - bdk.registerHeartStrikeSpell() + // bdk.registerHeartStrikeSpell() - if bdk.Talents.DancingRuneWeapon { - bdk.RuneWeapon.AddCopySpell(HeartStrikeActionID, bdk.registerDrwHeartStrikeSpell()) - } + // TODO: Fix this to work with the new talent system. + // if bdk.Talents.DancingRuneWeapon { + // bdk.RuneWeapon.AddCopySpell(HeartStrikeActionID, bdk.registerDrwHeartStrikeSpell()) + // } } func (bdk BloodDeathKnight) getBloodShieldMasteryBonus() float64 { diff --git a/sim/death_knight/blood_strike.go b/sim/death_knight/blood_strike.go deleted file mode 100644 index 8e4a5d2b82..0000000000 --- a/sim/death_knight/blood_strike.go +++ /dev/null @@ -1,92 +0,0 @@ -package death_knight - -import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" -) - -var BloodStrikeActionID = core.ActionID{SpellID: 45902} - -func (dk *DeathKnight) registerBloodStrikeSpell() { - ohSpell := dk.GetOrRegisterSpell(core.SpellConfig{ - ActionID: BloodStrikeActionID.WithTag(2), - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskMeleeOHSpecial, - Flags: core.SpellFlagMeleeMetrics, - ClassSpellMask: DeathKnightSpellBloodStrike, - - DamageMultiplier: 0.8, - DamageMultiplierAdditive: 1, - CritMultiplier: dk.DefaultMeleeCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := dk.ClassSpellScaling*0.37799999118 + - spell.Unit.OHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) - - baseDamage *= dk.GetDiseaseMulti(target, 1.0, 0.025) - - spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialCritOnly) - }, - }) - - hasReaping := dk.Inputs.Spec == proto.Spec_SpecUnholyDeathKnight - - dk.GetOrRegisterSpell(core.SpellConfig{ - ActionID: BloodStrikeActionID.WithTag(1), - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskMeleeMHSpecial, - Flags: core.SpellFlagMeleeMetrics | core.SpellFlagAPL, - ClassSpellMask: DeathKnightSpellBloodStrike, - - RuneCost: core.RuneCostOptions{ - BloodRuneCost: 1, - RunicPowerGain: 10, - Refundable: true, - }, - Cast: core.CastConfig{ - DefaultCast: core.Cast{ - GCD: core.GCDDefault, - }, - IgnoreHaste: true, - }, - - DamageMultiplier: 0.8, - CritMultiplier: dk.DefaultMeleeCritMultiplier(), - ThreatMultiplier: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := dk.ClassSpellScaling*0.75599998236 + - spell.Unit.MHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) - - baseDamage *= dk.GetDiseaseMulti(target, 1.0, 0.125) - - result := spell.CalcDamage(sim, target, baseDamage, spell.OutcomeMeleeWeaponSpecialHitAndCrit) - - if hasReaping { - spell.SpendRefundableCostAndConvertBloodRune(sim, result, 1) - } else { - spell.SpendRefundableCost(sim, result) - } - dk.ThreatOfThassarianProc(sim, result, ohSpell) - - spell.DealDamage(sim, result) - }, - }) -} - -func (dk *DeathKnight) registerDrwBloodStrikeSpell() *core.Spell { - return dk.RuneWeapon.RegisterSpell(core.SpellConfig{ - ActionID: BloodStrikeActionID.WithTag(1), - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskMeleeMHSpecial, - Flags: core.SpellFlagMeleeMetrics, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := dk.ClassSpellScaling*0.75599998236 + - spell.Unit.MHNormalizedWeaponDamage(sim, spell.MeleeAttackPower()) - - spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeWeaponSpecialHitAndCrit) - }, - }) -} diff --git a/sim/death_knight/blood_tap.go b/sim/death_knight/blood_tap.go index f671fc37e8..06e6d76741 100644 --- a/sim/death_knight/blood_tap.go +++ b/sim/death_knight/blood_tap.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerBloodTapSpell() { diff --git a/sim/death_knight/bloodworm_pet.go b/sim/death_knight/bloodworm_pet.go index ceb41186de..94a1fee8b6 100644 --- a/sim/death_knight/bloodworm_pet.go +++ b/sim/death_knight/bloodworm_pet.go @@ -1,8 +1,8 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) type BloodwormPet struct { diff --git a/sim/death_knight/death_and_decay.go b/sim/death_knight/death_and_decay.go index 1abb32cd2c..895eda6e6e 100644 --- a/sim/death_knight/death_and_decay.go +++ b/sim/death_knight/death_and_decay.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerDeathAndDecaySpell() { diff --git a/sim/death_knight/death_knight.go b/sim/death_knight/death_knight.go index 8199379ab8..758ec82b02 100644 --- a/sim/death_knight/death_knight.go +++ b/sim/death_knight/death_knight.go @@ -4,10 +4,10 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ( @@ -16,8 +16,6 @@ const ( PetExpertiseRatingScale = ExpertiseCapRatio * (4 * core.ExpertisePerQuarterPercentReduction) ) -var TalentTreeSizes = [3]int{20, 20, 20} - // Damage Done By Caster setup const ( DDBC_MercilessCombat int = 0 @@ -53,11 +51,11 @@ type DeathKnight struct { Inputs DeathKnightInputs // Pets - Ghoul *GhoulPet - Gargoyle *GargoylePet - ArmyGhoul []*GhoulPet - RuneWeapon *RuneWeaponPet - Bloodworm []*BloodwormPet + // Ghoul *GhoulPet + // Gargoyle *GargoylePet + // ArmyGhoul []*GhoulPet + // RuneWeapon *RuneWeaponPet + Bloodworm []*BloodwormPet // Diseases FrostFeverSpell *core.Spell @@ -97,68 +95,65 @@ func (dk *DeathKnight) GetCharacter() *core.Character { func (dk *DeathKnight) AddPartyBuffs(partyBuffs *proto.PartyBuffs) { } -func (dk *DeathKnight) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if dk.Talents.AbominationsMight > 0 { - raidBuffs.AbominationsMight = true - } +// func (dk *DeathKnight) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// if dk.Talents.AbominationsMight > 0 { +// raidBuffs.AbominationsMight = true +// } - if dk.Talents.ImprovedIcyTalons { - raidBuffs.IcyTalons = true - } +// if dk.Talents.ImprovedIcyTalons { +// raidBuffs.IcyTalons = true +// } - // TODO: Make horn of winter dynamic - raidBuffs.HornOfWinter = true -} +// // TODO: Make horn of winter dynamic +// raidBuffs.HornOfWinter = true +// } func (dk *DeathKnight) ApplyTalents() { - dk.ApplyBloodTalents() - dk.ApplyFrostTalents() - dk.ApplyUnholyTalents() + // dk.ApplyBloodTalents() + // dk.ApplyFrostTalents() + // dk.ApplyUnholyTalents() - dk.ApplyGlyphs() + // dk.ApplyGlyphs() } func (dk *DeathKnight) Initialize() { - dk.registerPresences() - dk.registerFrostFever() - dk.registerBloodPlague() - dk.registerOutbreak() - dk.registerHornOfWinterSpell() - dk.registerIcyTouchSpell() - dk.registerPlagueStrikeSpell() - dk.registerDeathCoilSpell() - dk.registerDeathAndDecaySpell() - dk.registerFesteringStrikeSpell() - dk.registerEmpowerRuneWeaponSpell() - dk.registerUnholyFrenzySpell() - dk.registerSummonGargoyleSpell() - dk.registerArmyOfTheDeadSpell() - dk.registerRaiseDeadSpell() - dk.registerBloodTapSpell() - dk.registerObliterateSpell() - dk.registerHowlingBlastSpell() - dk.registerPillarOfFrostSpell() - dk.registerPestilenceSpell() - dk.registerBloodBoilSpell() - dk.registerRuneStrikeSpell() - dk.registerDeathStrikeSpell() - dk.registerRuneTapSpell() - dk.registerVampiricBloodSpell() - dk.registerIceboundFortitudeSpell() - dk.registerBoneShieldSpell() - dk.registerDancingRuneWeaponSpell() - dk.registerDeathPactSpell() - dk.registerAntiMagicShellSpell() - dk.registerRunicPowerDecay() - dk.registerBloodStrikeSpell() + // dk.registerPresences() + // dk.registerFrostFever() + // dk.registerBloodPlague() + // dk.registerOutbreak() + // dk.registerHornOfWinterSpell() + // dk.registerIcyTouchSpell() + // dk.registerPlagueStrikeSpell() + // dk.registerDeathCoilSpell() + // dk.registerDeathAndDecaySpell() + // dk.registerFesteringStrikeSpell() + // dk.registerEmpowerRuneWeaponSpell() + // dk.registerUnholyFrenzySpell() + // dk.registerSummonGargoyleSpell() + // dk.registerArmyOfTheDeadSpell() + // dk.registerRaiseDeadSpell() + // dk.registerBloodTapSpell() + // dk.registerObliterateSpell() + // dk.registerHowlingBlastSpell() + // dk.registerPillarOfFrostSpell() + // dk.registerPestilenceSpell() + // dk.registerBloodBoilSpell() + // dk.registerRuneStrikeSpell() + // dk.registerDeathStrikeSpell() + // dk.registerRuneTapSpell() + // dk.registerVampiricBloodSpell() + // dk.registerIceboundFortitudeSpell() + // dk.registerBoneShieldSpell() + // dk.registerDancingRuneWeaponSpell() + // dk.registerDeathPactSpell() + // dk.registerAntiMagicShellSpell() + // dk.registerRunicPowerDecay() + // dk.registerBloodStrikeSpell() } func (dk *DeathKnight) Reset(sim *core.Simulation) { } -func (dk *DeathKnight) HasPrimeGlyph(glyph proto.DeathKnightPrimeGlyph) bool { - return dk.HasGlyph(int32(glyph)) -} func (dk *DeathKnight) HasMajorGlyph(glyph proto.DeathKnightMajorGlyph) bool { return dk.HasGlyph(int32(glyph)) } @@ -173,9 +168,11 @@ func NewDeathKnight(character *core.Character, inputs DeathKnightInputs, talents Inputs: inputs, ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassDeathKnight), } - core.FillTalentsProto(dk.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(dk.Talents.ProtoReflect(), talents) - maxRunicPower := 100.0 + 10.0*float64(dk.Talents.RunicPowerMastery) + // TODO: Fix this to work with the new talent system. + // maxRunicPower := 100.0 + 10.0*float64(dk.Talents.RunicPowerMastery) + maxRunicPower := 100.0 currentRunicPower := math.Min(maxRunicPower, dk.Inputs.StartingRunicPower) dk.EnableRunicPowerBar( @@ -221,27 +218,27 @@ func NewDeathKnight(character *core.Character, inputs DeathKnightInputs, talents dk.PseudoStats.BaseDodgeChance += 0.05 dk.PseudoStats.BaseParryChance += 0.05 - if dk.Talents.SummonGargoyle { - dk.Gargoyle = dk.NewGargoyle() - } + // if dk.Talents.SummonGargoyle { + // dk.Gargoyle = dk.NewGargoyle() + // } - dk.Ghoul = dk.NewGhoulPet(dk.Inputs.Spec == proto.Spec_SpecUnholyDeathKnight) + // dk.Ghoul = dk.NewGhoulPet(dk.Inputs.Spec == proto.Spec_SpecUnholyDeathKnight) - dk.ArmyGhoul = make([]*GhoulPet, 8) - for i := 0; i < 8; i++ { - dk.ArmyGhoul[i] = dk.NewArmyGhoulPet(i) - } + // dk.ArmyGhoul = make([]*GhoulPet, 8) + // for i := 0; i < 8; i++ { + // dk.ArmyGhoul[i] = dk.NewArmyGhoulPet(i) + // } - if dk.Talents.BloodParasite > 0 { - dk.Bloodworm = make([]*BloodwormPet, 5) - for i := 0; i < 5; i++ { - dk.Bloodworm[i] = dk.NewBloodwormPet(i) - } - } + // if dk.Talents.BloodParasite > 0 { + // dk.Bloodworm = make([]*BloodwormPet, 5) + // for i := 0; i < 5; i++ { + // dk.Bloodworm[i] = dk.NewBloodwormPet(i) + // } + // } - if dk.Talents.DancingRuneWeapon { - dk.RuneWeapon = dk.NewRuneWeapon() - } + // if dk.Talents.DancingRuneWeapon { + // dk.RuneWeapon = dk.NewRuneWeapon() + // } dk.EnableAutoAttacks(dk, core.AutoAttackOptions{ MainHand: dk.WeaponFromMainHand(dk.DefaultMeleeCritMultiplier()), @@ -263,9 +260,11 @@ func NewDeathKnight(character *core.Character, inputs DeathKnightInputs, talents func (dk *DeathKnight) registerRunicPowerDecay() { decayMetrics := dk.NewRunicPowerMetrics(core.ActionID{OtherID: proto.OtherAction_OtherActionPrepull}) + // TODO: Fix this to work with the new talent system. // Base decay rate is about 1.25/s // For some reason Butchery works out of combat which reduces this by 1/5 or 2/5 respectively - decayRate := []float64{1.25, 1.05, 0.85}[dk.Talents.Butchery] + // decayRate := []float64{1.25, 1.05, 0.85}[dk.Talents.Butchery] + decayRate := 1.25 var decay *core.PendingAction dk.RunicPowerDecayAura = dk.GetOrRegisterAura(core.Aura{ diff --git a/sim/death_knight/empower_rune_weapon.go b/sim/death_knight/empower_rune_weapon.go index d38f90d098..195305d9a7 100644 --- a/sim/death_knight/empower_rune_weapon.go +++ b/sim/death_knight/empower_rune_weapon.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerEmpowerRuneWeaponSpell() { diff --git a/sim/death_knight/frost/TestFrost.results b/sim/death_knight/frost/TestFrost.results index 580b33362e..c906d176e8 100644 --- a/sim/death_knight/frost/TestFrost.results +++ b/sim/death_knight/frost/TestFrost.results @@ -942,17 +942,17 @@ dps_results: { dps_results: { key: "TestFrost-AllItems-HeartofThunder-55845" value: { - dps: 48475.47043 - tps: 45889.45747 - hps: 1671.96289 + dps: 48475.51922 + tps: 45889.50626 + hps: 1672.06047 } } dps_results: { key: "TestFrost-AllItems-HeartofThunder-56370" value: { - dps: 48488.65583 - tps: 45902.64287 - hps: 1673.9842 + dps: 48488.72051 + tps: 45902.70755 + hps: 1674.11355 } } dps_results: { @@ -1030,9 +1030,9 @@ dps_results: { dps_results: { key: "TestFrost-AllItems-InsigniaofDiplomacy-61433" value: { - dps: 48436.5445 - tps: 45850.53154 - hps: 1671.35729 + dps: 48436.58853 + tps: 45850.57557 + hps: 1671.44535 } } dps_results: { @@ -2310,8 +2310,8 @@ dps_results: { dps_results: { key: "TestFrost-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 43427.13291 - tps: 40589.69677 + dps: 42936.90395 + tps: 40099.46781 hps: 616.48011 } } @@ -2454,17 +2454,17 @@ dps_results: { dps_results: { key: "TestFrost-AllItems-ViciousGladiator'sEmblemofAccuracy-61027" value: { - dps: 48983.13655 - tps: 46374.06573 - hps: 1735.1709 + dps: 48983.03446 + tps: 46373.96363 + hps: 1734.96671 } } dps_results: { key: "TestFrost-AllItems-ViciousGladiator'sEmblemofAlacrity-61028" value: { - dps: 48935.1046 - tps: 46297.07941 - hps: 1705.94445 + dps: 48935.00251 + tps: 46296.97732 + hps: 1705.90223 } } dps_results: { @@ -2478,9 +2478,9 @@ dps_results: { dps_results: { key: "TestFrost-AllItems-ViciousGladiator'sEmblemofProficiency-61030" value: { - dps: 49085.17488 - tps: 46478.75541 - hps: 1720.77136 + dps: 49085.27697 + tps: 46478.8575 + hps: 1720.97555 } } dps_results: { diff --git a/sim/death_knight/frost/frost_strike.go b/sim/death_knight/frost/_frost_strike.go similarity index 96% rename from sim/death_knight/frost/frost_strike.go rename to sim/death_knight/frost/_frost_strike.go index 84e61ac3e9..387bdede57 100644 --- a/sim/death_knight/frost/frost_strike.go +++ b/sim/death_knight/frost/_frost_strike.go @@ -1,8 +1,8 @@ package frost import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/death_knight" ) var frostStrikeActionID = core.ActionID{SpellID: 49143} diff --git a/sim/death_knight/frost/frost_test.go b/sim/death_knight/frost/_frost_test.go similarity index 75% rename from sim/death_knight/frost/frost_test.go rename to sim/death_knight/frost/_frost_test.go index 1324c1f8ba..012d9565b0 100644 --- a/sim/death_knight/frost/frost_test.go +++ b/sim/death_knight/frost/_frost_test.go @@ -3,9 +3,9 @@ package frost import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -33,7 +33,7 @@ func TestFrost(t *testing.T) { }, }, Glyphs: FrostDefaultGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsFrost}, Rotation: core.GetAplRotation("../../../ui/death_knight/frost/apls", "masterfrost"), @@ -46,9 +46,6 @@ var TwoHandTalents = "103-32030022233112012031-033" var MasterfrostTalents = "2032-30330012233112012301-03" var FrostDefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DeathKnightPrimeGlyph_GlyphOfFrostStrike), - Prime2: int32(proto.DeathKnightPrimeGlyph_GlyphOfObliterate), - Prime3: int32(proto.DeathKnightPrimeGlyph_GlyphOfHowlingBlast), Major1: int32(proto.DeathKnightMajorGlyph_GlyphOfPestilence), Major2: int32(proto.DeathKnightMajorGlyph_GlyphOfBloodBoil), Major3: int32(proto.DeathKnightMajorGlyph_GlyphOfDarkSuccor), @@ -65,12 +62,12 @@ var PlayerOptionsFrost = &proto.Player_FrostDeathKnight{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTitanicStrength, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58088, // Flask of Titanic Strength + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } var ItemFilter = core.ItemFilter{ diff --git a/sim/death_knight/frost/frost.go b/sim/death_knight/frost/frost.go index 37c8dd5bc8..8c0eef05a0 100644 --- a/sim/death_knight/frost/frost.go +++ b/sim/death_knight/frost/frost.go @@ -1,10 +1,10 @@ package frost import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/death_knight" ) func RegisterFrostDeathKnight() { @@ -54,7 +54,7 @@ func (fdk FrostDeathKnight) getMasteryFrostBonus() float64 { func (fdk *FrostDeathKnight) Initialize() { fdk.DeathKnight.Initialize() - fdk.registerFrostStrikeSpell() + // fdk.registerFrostStrikeSpell() } func (fdk *FrostDeathKnight) ApplyTalents() { diff --git a/sim/death_knight/horn_of_winter.go b/sim/death_knight/horn_of_winter.go index cc80c76261..2e252ac999 100644 --- a/sim/death_knight/horn_of_winter.go +++ b/sim/death_knight/horn_of_winter.go @@ -3,7 +3,7 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (dk *DeathKnight) registerHornOfWinterSpell() { diff --git a/sim/death_knight/items.go b/sim/death_knight/items.go index 6f768d8628..192bc9487e 100644 --- a/sim/death_knight/items.go +++ b/sim/death_knight/items.go @@ -3,9 +3,9 @@ package death_knight import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // TODO: T13 tank diff --git a/sim/death_knight/pestilence.go b/sim/death_knight/pestilence.go index 276f1b146f..d1149b1d46 100644 --- a/sim/death_knight/pestilence.go +++ b/sim/death_knight/pestilence.go @@ -1,8 +1,8 @@ package death_knight import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) var PestilenceActionID = core.ActionID{SpellID: 50842} diff --git a/sim/death_knight/runeforging.go b/sim/death_knight/runeforging.go index 8b1a4e212f..733e659fce 100644 --- a/sim/death_knight/runeforging.go +++ b/sim/death_knight/runeforging.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/death_knight/unholy/scourge_strike.go b/sim/death_knight/unholy/_scourge_strike.go similarity index 96% rename from sim/death_knight/unholy/scourge_strike.go rename to sim/death_knight/unholy/_scourge_strike.go index 2967f06e0e..7488d687af 100644 --- a/sim/death_knight/unholy/scourge_strike.go +++ b/sim/death_knight/unholy/_scourge_strike.go @@ -1,8 +1,8 @@ package unholy import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/death_knight" ) var scourgeStrikeActionID = core.ActionID{SpellID: 55090} diff --git a/sim/death_knight/unholy/unholy_test.go b/sim/death_knight/unholy/_unholy_test.go similarity index 69% rename from sim/death_knight/unholy/unholy_test.go rename to sim/death_knight/unholy/_unholy_test.go index 67d0512a2b..a705581ea4 100644 --- a/sim/death_knight/unholy/unholy_test.go +++ b/sim/death_knight/unholy/_unholy_test.go @@ -3,9 +3,9 @@ package unholy import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -21,7 +21,7 @@ func TestUnholy(t *testing.T) { GearSet: core.GetGearSet("../../../ui/death_knight/unholy/gear_sets", "p4.bis"), Talents: UnholyTalents, Glyphs: UnholyDefaultGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsUnholy}, Rotation: core.GetAplRotation("../../../ui/death_knight/unholy/apls", "default"), @@ -31,13 +31,10 @@ func TestUnholy(t *testing.T) { var UnholyTalents = "2032-1-13300321230231021231" var UnholyDefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DeathKnightPrimeGlyph_GlyphOfDeathCoil), - Prime2: int32(proto.DeathKnightPrimeGlyph_GlyphOfScourgeStrike), - Prime3: int32(proto.DeathKnightPrimeGlyph_GlyphOfRaiseDead), Major1: int32(proto.DeathKnightMajorGlyph_GlyphOfPestilence), Major2: int32(proto.DeathKnightMajorGlyph_GlyphOfBloodBoil), Major3: int32(proto.DeathKnightMajorGlyph_GlyphOfAntiMagicShell), - Minor1: int32(proto.DeathKnightMinorGlyph_GlyphOfDeathSEmbrace), + Minor1: int32(proto.DeathKnightMinorGlyph_GlyphOfDeathsEmbrace), Minor2: int32(proto.DeathKnightMinorGlyph_GlyphOfHornOfWinter), } @@ -52,12 +49,12 @@ var PlayerOptionsUnholy = &proto.Player_UnholyDeathKnight{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTitanicStrength, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58088, // Flask of Titanic Strength + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } var ItemFilter = core.ItemFilter{ diff --git a/sim/death_knight/unholy/unholy.go b/sim/death_knight/unholy/unholy.go index 323f3d1768..7c5df6bda5 100644 --- a/sim/death_knight/unholy/unholy.go +++ b/sim/death_knight/unholy/unholy.go @@ -1,10 +1,10 @@ package unholy import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/death_knight" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/death_knight" ) func RegisterUnholyDeathKnight() { @@ -63,7 +63,7 @@ func (uhdk *UnholyDeathKnight) GetDeathKnight() *death_knight.DeathKnight { func (uhdk *UnholyDeathKnight) Initialize() { uhdk.DeathKnight.Initialize() - uhdk.registerScourgeStrikeSpell() + // uhdk.registerScourgeStrikeSpell() } func (uhdk *UnholyDeathKnight) ApplyTalents() { diff --git a/sim/druid/apl_values.go b/sim/druid/_apl_values.go similarity index 97% rename from sim/druid/apl_values.go rename to sim/druid/_apl_values.go index a8f0aba059..e0979832f0 100644 --- a/sim/druid/apl_values.go +++ b/sim/druid/_apl_values.go @@ -1,8 +1,8 @@ package druid import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/druid/berserk.go b/sim/druid/_berserk.go similarity index 97% rename from sim/druid/berserk.go rename to sim/druid/_berserk.go index 9e80b04a19..5d775335a9 100644 --- a/sim/druid/berserk.go +++ b/sim/druid/_berserk.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerBerserkCD() { diff --git a/sim/druid/eclipse.go b/sim/druid/_eclipse.go similarity index 99% rename from sim/druid/eclipse.go rename to sim/druid/_eclipse.go index c69c2e7669..713cc23e20 100644 --- a/sim/druid/eclipse.go +++ b/sim/druid/_eclipse.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) /* diff --git a/sim/druid/enrage.go b/sim/druid/_enrage.go similarity index 95% rename from sim/druid/enrage.go rename to sim/druid/_enrage.go index 48d9256eab..6312375f58 100644 --- a/sim/druid/enrage.go +++ b/sim/druid/_enrage.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerEnrageSpell() { diff --git a/sim/druid/faerie_fire.go b/sim/druid/_faerie_fire.go similarity index 98% rename from sim/druid/faerie_fire.go rename to sim/druid/_faerie_fire.go index c6286c12e1..706f79efd1 100644 --- a/sim/druid/faerie_fire.go +++ b/sim/druid/_faerie_fire.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerFaerieFireSpell() { diff --git a/sim/druid/feral_charge.go b/sim/druid/_feral_charge.go similarity index 96% rename from sim/druid/feral_charge.go rename to sim/druid/_feral_charge.go index f0b3fc5a84..0eefe514ca 100644 --- a/sim/druid/feral_charge.go +++ b/sim/druid/_feral_charge.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerCatCharge() { diff --git a/sim/druid/ferocious_bite.go b/sim/druid/_ferocious_bite.go similarity index 98% rename from sim/druid/ferocious_bite.go rename to sim/druid/_ferocious_bite.go index 23c805ca1a..e3e7484952 100644 --- a/sim/druid/ferocious_bite.go +++ b/sim/druid/_ferocious_bite.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerFerociousBiteSpell() { diff --git a/sim/druid/force_of_nature.go b/sim/druid/_force_of_nature.go similarity index 96% rename from sim/druid/force_of_nature.go rename to sim/druid/_force_of_nature.go index 9fac08279e..effee88544 100644 --- a/sim/druid/force_of_nature.go +++ b/sim/druid/_force_of_nature.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerForceOfNature() { diff --git a/sim/druid/glyphs.go b/sim/druid/_glyphs.go similarity index 95% rename from sim/druid/glyphs.go rename to sim/druid/_glyphs.go index fd94db44cd..73972c25a0 100644 --- a/sim/druid/glyphs.go +++ b/sim/druid/_glyphs.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) ApplyGlyphs() { diff --git a/sim/druid/innervate.go b/sim/druid/_innervate.go similarity index 98% rename from sim/druid/innervate.go rename to sim/druid/_innervate.go index fc976319e7..705c788245 100644 --- a/sim/druid/innervate.go +++ b/sim/druid/_innervate.go @@ -1,7 +1,7 @@ package druid import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) // Returns the time to wait before the next action, or 0 if innervate is on CD diff --git a/sim/druid/items.go b/sim/druid/_items.go similarity index 98% rename from sim/druid/items.go rename to sim/druid/_items.go index a148f5ecc0..eb861c7478 100644 --- a/sim/druid/items.go +++ b/sim/druid/_items.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // T11 Feral diff --git a/sim/druid/lacerate.go b/sim/druid/_lacerate.go similarity index 97% rename from sim/druid/lacerate.go rename to sim/druid/_lacerate.go index 3b06df0008..a1c38cd431 100644 --- a/sim/druid/lacerate.go +++ b/sim/druid/_lacerate.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerLacerateSpell() { diff --git a/sim/druid/mangle.go b/sim/druid/_mangle.go similarity index 98% rename from sim/druid/mangle.go rename to sim/druid/_mangle.go index fc4652f46d..c3976bce99 100644 --- a/sim/druid/mangle.go +++ b/sim/druid/_mangle.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerMangleBearSpell() { diff --git a/sim/druid/maul.go b/sim/druid/_maul.go similarity index 95% rename from sim/druid/maul.go rename to sim/druid/_maul.go index f4d7162c5f..488a8eff6a 100644 --- a/sim/druid/maul.go +++ b/sim/druid/_maul.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerMaulSpell() { diff --git a/sim/druid/pulverize.go b/sim/druid/_pulverize.go similarity index 96% rename from sim/druid/pulverize.go rename to sim/druid/_pulverize.go index f8e0718d71..541bec4bef 100644 --- a/sim/druid/pulverize.go +++ b/sim/druid/_pulverize.go @@ -1,8 +1,8 @@ package druid import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerPulverizeSpell() { diff --git a/sim/druid/rake.go b/sim/druid/_rake.go similarity index 98% rename from sim/druid/rake.go rename to sim/druid/_rake.go index 537df827b6..37ff9ec617 100644 --- a/sim/druid/rake.go +++ b/sim/druid/_rake.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerRakeSpell() { diff --git a/sim/druid/ravage.go b/sim/druid/_ravage.go similarity index 98% rename from sim/druid/ravage.go rename to sim/druid/_ravage.go index 2dd20a1048..a862cf2c00 100644 --- a/sim/druid/ravage.go +++ b/sim/druid/_ravage.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerRavageSpell() { diff --git a/sim/druid/_rebirth.go b/sim/druid/_rebirth.go index f7fcb83cb8..82d433beb6 100644 --- a/sim/druid/_rebirth.go +++ b/sim/druid/_rebirth.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) // Right now, add the additional GCD + mana cost for shifting back to Moonkin form as a hack diff --git a/sim/druid/rip.go b/sim/druid/_rip.go similarity index 97% rename from sim/druid/rip.go rename to sim/druid/_rip.go index 9c51c4c967..170b82f73a 100644 --- a/sim/druid/rip.go +++ b/sim/druid/_rip.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const RipBaseNumTicks = int32(8) diff --git a/sim/druid/savage_roar.go b/sim/druid/_savage_roar.go similarity index 96% rename from sim/druid/savage_roar.go rename to sim/druid/_savage_roar.go index 269aa95261..7efd1a8af2 100644 --- a/sim/druid/savage_roar.go +++ b/sim/druid/_savage_roar.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) GetSavageRoarMultiplier() float64 { diff --git a/sim/druid/shred.go b/sim/druid/_shred.go similarity index 97% rename from sim/druid/shred.go rename to sim/druid/_shred.go index ee76ce26f8..3d1c7506b2 100644 --- a/sim/druid/shred.go +++ b/sim/druid/_shred.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerShredSpell() { diff --git a/sim/druid/starfall.go b/sim/druid/_starfall.go similarity index 96% rename from sim/druid/starfall.go rename to sim/druid/_starfall.go index 8e45aeb7c9..96cc25332c 100644 --- a/sim/druid/starfall.go +++ b/sim/druid/_starfall.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerStarfallSpell() { diff --git a/sim/druid/starfire.go b/sim/druid/_starfire.go similarity index 96% rename from sim/druid/starfire.go rename to sim/druid/_starfire.go index a8d8916f62..66dbfc3f95 100644 --- a/sim/druid/starfire.go +++ b/sim/druid/_starfire.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerStarfireSpell() { diff --git a/sim/druid/survival_instincts.go b/sim/druid/_survival_instincts.go similarity index 97% rename from sim/druid/survival_instincts.go rename to sim/druid/_survival_instincts.go index a043457709..e9ebe06b28 100644 --- a/sim/druid/survival_instincts.go +++ b/sim/druid/_survival_instincts.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerSurvivalInstinctsCD() { diff --git a/sim/druid/talents.go b/sim/druid/_talents.go similarity index 99% rename from sim/druid/talents.go rename to sim/druid/_talents.go index 8cd9a941b9..0368a74ac5 100644 --- a/sim/druid/talents.go +++ b/sim/druid/_talents.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) RazorClawsMultiplier(masteryRating float64) float64 { diff --git a/sim/druid/thrash.go b/sim/druid/_thrash.go similarity index 98% rename from sim/druid/thrash.go rename to sim/druid/_thrash.go index 71aada6573..361cc75d1d 100644 --- a/sim/druid/thrash.go +++ b/sim/druid/_thrash.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerThrashBearSpell() { diff --git a/sim/druid/tigers_fury.go b/sim/druid/_tigers_fury.go similarity index 93% rename from sim/druid/tigers_fury.go rename to sim/druid/_tigers_fury.go index 1da14d946f..33b3cd2510 100644 --- a/sim/druid/tigers_fury.go +++ b/sim/druid/_tigers_fury.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerTigersFurySpell() { diff --git a/sim/druid/typhoon.go b/sim/druid/_typhoon.go similarity index 95% rename from sim/druid/typhoon.go rename to sim/druid/_typhoon.go index 72f17aa89b..6e09f1dc95 100644 --- a/sim/druid/typhoon.go +++ b/sim/druid/_typhoon.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerTyphoonSpell() { diff --git a/sim/druid/balance/TestBalance.results b/sim/druid/balance/TestBalance.results index dbeeef3614..5b2510d907 100644 --- a/sim/druid/balance/TestBalance.results +++ b/sim/druid/balance/TestBalance.results @@ -739,8 +739,8 @@ dps_results: { dps_results: { key: "TestBalance-AllItems-Gladiator'sSanctuary" value: { - dps: 27412.6458 - tps: 25693.85721 + dps: 27708.25573 + tps: 26019.14463 } } dps_results: { diff --git a/sim/druid/balance/balance_test.go b/sim/druid/balance/_balance_test.go similarity index 75% rename from sim/druid/balance/balance_test.go rename to sim/druid/balance/_balance_test.go index 7cfb6d2959..2a81fb5d87 100644 --- a/sim/druid/balance/balance_test.go +++ b/sim/druid/balance/_balance_test.go @@ -3,9 +3,9 @@ package balance import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get caster sets included. (we use spellfire here) - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get caster sets included. (we use spellfire here) + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -23,7 +23,7 @@ func TestBalance(t *testing.T) { }, Talents: StandardTalents, Glyphs: StandardGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Default", SpecOptions: PlayerOptionsBalance}, Rotation: core.GetAplRotation("../../../ui/druid/balance/apls", "t13"), OtherRotations: []core.RotationCombo{ @@ -35,9 +35,6 @@ func TestBalance(t *testing.T) { var StandardTalents = "33230221123212111001-01-020331" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DruidPrimeGlyph_GlyphOfInsectSwarm), - Prime2: int32(proto.DruidPrimeGlyph_GlyphOfMoonfire), - Prime3: int32(proto.DruidPrimeGlyph_GlyphOfWrath), Major1: int32(proto.DruidMajorGlyph_GlyphOfStarfall), Major2: int32(proto.DruidMajorGlyph_GlyphOfRebirth), Major3: int32(proto.DruidMajorGlyph_GlyphOfMonsoon), @@ -54,13 +51,12 @@ var PlayerOptionsBalance = &proto.Player_BalanceDruid{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeveredSagefish, - DefaultPotion: proto.Potions_VolcanicPotion, - PrepopPotion: proto.Potions_VolcanicPotion, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62671, // Severed Sagefish Head + PotId: 58091, // Volcanic Potion + PrepotId: 58091, // Volcanic Potion } - var ItemFilter = core.ItemFilter{ WeaponTypes: []proto.WeaponType{ proto.WeaponType_WeaponTypeDagger, diff --git a/sim/druid/balance/balance.go b/sim/druid/balance/balance.go index 2d2163066c..ded3f8b82c 100644 --- a/sim/druid/balance/balance.go +++ b/sim/druid/balance/balance.go @@ -1,10 +1,10 @@ package balance import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/druid" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/druid" ) func RegisterBalanceDruid() { @@ -69,9 +69,9 @@ func (moonkin *BalanceDruid) Initialize() { func (moonkin *BalanceDruid) ApplyTalents() { - moonkin.EnableEclipseBar() - moonkin.RegisterEclipseAuras() - moonkin.RegisterEclipseEnergyGainAura() + // moonkin.EnableEclipseBar() + // moonkin.RegisterEclipseAuras() + // moonkin.RegisterEclipseEnergyGainAura() // Moonfury passive moonkin.RegisterAura( @@ -101,7 +101,7 @@ func (moonkin *BalanceDruid) ApplyTalents() { }) // Apply druid talents - moonkin.Druid.ApplyTalents() + // moonkin.Druid.ApplyTalents() } func (moonkin *BalanceDruid) Reset(sim *core.Simulation) { diff --git a/sim/druid/balance/dragonwrath.go b/sim/druid/balance/dragonwrath.go index 9fc01c7b81..65363b8a35 100644 --- a/sim/druid/balance/dragonwrath.go +++ b/sim/druid/balance/dragonwrath.go @@ -1,8 +1,8 @@ package balance import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/druid/barkskin.go b/sim/druid/barkskin.go index f445532f7d..4d6b3ac85f 100644 --- a/sim/druid/barkskin.go +++ b/sim/druid/barkskin.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerBarkskinCD() { diff --git a/sim/druid/burning_treant.go b/sim/druid/burning_treant.go index 5ddf4d40bc..34086cd6c4 100644 --- a/sim/druid/burning_treant.go +++ b/sim/druid/burning_treant.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) type BurningTreant struct { diff --git a/sim/druid/demoralizing_roar.go b/sim/druid/demoralizing_roar.go index fa64204cc4..6ec89af522 100644 --- a/sim/druid/demoralizing_roar.go +++ b/sim/druid/demoralizing_roar.go @@ -1,7 +1,7 @@ package druid import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerDemoralizingRoarSpell() { diff --git a/sim/druid/druid.go b/sim/druid/druid.go index ac993f7dd3..743c23e7bb 100644 --- a/sim/druid/druid.go +++ b/sim/druid/druid.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ( @@ -13,12 +13,10 @@ const ( SpellFlagOmenTrigger = core.SpellFlagAgentReserved2 ) -var TalentTreeSizes = [3]int{20, 22, 21} - type Druid struct { core.Character SelfBuffs - eclipseEnergyBar + // eclipseEnergyBar Talents *proto.DruidTalents ClassSpellScaling float64 @@ -109,7 +107,7 @@ type Druid struct { StampedeBearAura *core.Aura StrengthOfThePantherAura *core.Aura SurvivalInstinctsAura *core.Aura - TigersFuryAura *core.Aura + // TigersFuryAura *core.Aura BleedCategories core.ExclusiveCategoryArray @@ -210,26 +208,22 @@ func (druid *Druid) GetCharacter() *core.Character { return &druid.Character } -func (druid *Druid) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if druid.InForm(Cat|Bear) && druid.Talents.LeaderOfThePack { - raidBuffs.LeaderOfThePack = true - } +// func (druid *Druid) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// if druid.InForm(Cat|Bear) && druid.Talents.LeaderOfThePack { +// raidBuffs.LeaderOfThePack = true +// } - if druid.InForm(Moonkin) { - raidBuffs.MoonkinForm = true - } +// if druid.InForm(Moonkin) { +// raidBuffs.MoonkinForm = true +// } - raidBuffs.MarkOfTheWild = true -} +// raidBuffs.MarkOfTheWild = true +// } func (druid *Druid) BalanceCritMultiplier() float64 { return druid.SpellCritMultiplier(1, 0) } -func (druid *Druid) HasPrimeGlyph(glyph proto.DruidPrimeGlyph) bool { - return druid.HasGlyph(int32(glyph)) -} - func (druid *Druid) HasMajorGlyph(glyph proto.DruidMajorGlyph) bool { return druid.HasGlyph(int32(glyph)) } @@ -290,9 +284,9 @@ func (druid *Druid) Initialize() { } }) - druid.registerFaerieFireSpell() + // druid.registerFaerieFireSpell() // druid.registerRebirthSpell() - druid.registerInnervateCD() + // druid.registerInnervateCD() druid.registerTranquilityCD() druid.applyOmenOfClarity() } @@ -302,54 +296,54 @@ func (druid *Druid) RegisterBalanceSpells() { druid.registerInsectSwarmSpell() druid.registerMoonfireSpell() druid.registerSunfireSpell() - druid.registerStarfireSpell() + // druid.registerStarfireSpell() druid.registerWrathSpell() - druid.registerStarfallSpell() - druid.registerTyphoonSpell() - druid.registerForceOfNature() + // druid.registerStarfallSpell() + // druid.registerTyphoonSpell() + // druid.registerForceOfNature() druid.registerStarsurgeSpell() druid.registerWildMushrooms() } func (druid *Druid) RegisterFeralCatSpells() { druid.registerBearFormSpell() - druid.registerBerserkCD() - druid.registerCatCharge() + // druid.registerBerserkCD() + // druid.registerCatCharge() druid.registerCatFormSpell() - druid.registerEnrageSpell() - druid.registerFerociousBiteSpell() - druid.registerLacerateSpell() - druid.registerMangleBearSpell() - druid.registerMangleCatSpell() - druid.registerMaulSpell() - druid.registerRakeSpell() - druid.registerRavageSpell() - druid.registerRipSpell() - druid.registerSavageRoarSpell() - druid.registerShredSpell() + // druid.registerEnrageSpell() + // druid.registerFerociousBiteSpell() + // druid.registerLacerateSpell() + // druid.registerMangleBearSpell() + // druid.registerMangleCatSpell() + // druid.registerMaulSpell() + // druid.registerRakeSpell() + // druid.registerRavageSpell() + // druid.registerRipSpell() + // druid.registerSavageRoarSpell() + // druid.registerShredSpell() druid.registerSwipeBearSpell() druid.registerSwipeCatSpell() - druid.registerThrashBearSpell() - druid.registerTigersFurySpell() + // druid.registerThrashBearSpell() + // druid.registerTigersFurySpell() } func (druid *Druid) RegisterFeralTankSpells() { druid.registerBarkskinCD() druid.registerBearFormSpell() - druid.registerBerserkCD() + // druid.registerBerserkCD() druid.registerDemoralizingRoarSpell() - druid.registerEnrageSpell() + // druid.registerEnrageSpell() druid.registerFrenziedRegenerationCD() - druid.registerMangleBearSpell() - druid.registerMaulSpell() - druid.registerLacerateSpell() - druid.registerPulverizeSpell() - druid.registerRakeSpell() - druid.registerRipSpell() + // druid.registerMangleBearSpell() + // druid.registerMaulSpell() + // druid.registerLacerateSpell() + // druid.registerPulverizeSpell() + // druid.registerRakeSpell() + // druid.registerRipSpell() druid.registerSavageDefensePassive() - druid.registerSurvivalInstinctsCD() + // druid.registerSurvivalInstinctsCD() druid.registerSwipeBearSpell() - druid.registerThrashBearSpell() + // druid.registerThrashBearSpell() } func (druid *Druid) RegisterLeatherSpecialization() { @@ -365,7 +359,7 @@ func (druid *Druid) RegisterLeatherSpecialization() { } func (druid *Druid) Reset(_ *core.Simulation) { - druid.eclipseEnergyBar.reset() + // druid.eclipseEnergyBar.reset() druid.BleedsActive = 0 druid.form = druid.StartingForm druid.disabledMCDs = []*core.MajorCooldown{} @@ -383,7 +377,7 @@ func New(char *core.Character, form DruidForm, selfBuffs SelfBuffs, talents stri EclipseEnergyMap: make(EclipseEnergyMap), } - core.FillTalentsProto(druid.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(druid.Talents.ProtoReflect(), talents) druid.EnableManaBar() druid.AddStatDependency(stats.Strength, stats.AttackPower, 1) @@ -397,17 +391,17 @@ func New(char *core.Character, form DruidForm, selfBuffs SelfBuffs, talents stri druid.RegisterLeatherSpecialization() - if druid.Talents.ForceOfNature { - druid.Treants = &Treants{ - Treant1: druid.NewTreant(), - Treant2: druid.NewTreant(), - Treant3: druid.NewTreant(), - } - } - - if druid.CouldHaveSetBonus(ItemSetObsidianArborweaveRegalia, 2) { - druid.BurningTreant = druid.NewBurningTreant() - } + // if druid.Talents.ForceOfNature { + // druid.Treants = &Treants{ + // Treant1: druid.NewTreant(), + // Treant2: druid.NewTreant(), + // Treant3: druid.NewTreant(), + // } + // } + + // if druid.CouldHaveSetBonus(ItemSetObsidianArborweaveRegalia, 2) { + // druid.BurningTreant = druid.NewBurningTreant() + // } return druid } diff --git a/sim/druid/feral/TestFeral.results b/sim/druid/feral/TestFeral.results index 607592219c..955302d86b 100644 --- a/sim/druid/feral/TestFeral.results +++ b/sim/druid/feral/TestFeral.results @@ -198,24 +198,24 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-BloodthirstyGladiator'sEmblemofCruelty-64740" value: { - dps: 48778.20182 - tps: 67573.47843 + dps: 48794.0783 + tps: 67235.97729 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-BloodthirstyGladiator'sEmblemofMeditation-64741" value: { - dps: 48169.97392 - tps: 66946.71547 + dps: 48147.86322 + tps: 66676.22966 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-BloodthirstyGladiator'sEmblemofTenacity-64742" value: { - dps: 48169.97392 - tps: 66946.80642 + dps: 48147.86322 + tps: 66676.32061 hps: 26.77086 } } @@ -454,8 +454,8 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-DarkmoonCard:Earthquake-62048" value: { - dps: 48169.97392 - tps: 66946.80642 + dps: 48147.86322 + tps: 66676.32061 hps: 26.77086 } } @@ -846,8 +846,8 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-Gladiator'sSanctuary" value: { - dps: 37563.56547 - tps: 53567.86795 + dps: 42436.19403 + tps: 60471.19934 hps: 26.66185 } } @@ -942,16 +942,16 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-HeartofThunder-55845" value: { - dps: 48043.1617 - tps: 65687.3835 + dps: 48028.93973 + tps: 65709.11912 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-HeartofThunder-56370" value: { - dps: 48043.1617 - tps: 65687.3835 + dps: 48028.93973 + tps: 65709.11912 hps: 26.77086 } } @@ -1038,8 +1038,8 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-InsigniaofDiplomacy-61433" value: { - dps: 48043.1617 - tps: 65687.3835 + dps: 48028.93973 + tps: 65709.11912 hps: 26.77086 } } @@ -1582,24 +1582,24 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 45250.47408 - tps: 63312.72857 + dps: 42859.22887 + tps: 60419.6289 hps: 41.70547 } } dps_results: { key: "TestFeral-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 45856.38209 - tps: 64104.07141 + dps: 43171.81359 + tps: 60797.51805 hps: 43.63119 } } dps_results: { key: "TestFeral-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 44704.99597 - tps: 62652.10305 + dps: 42588.34241 + tps: 60091.22552 hps: 39.99277 } } @@ -2342,8 +2342,8 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 42028.29565 - tps: 58337.54479 + dps: 41281.26964 + tps: 57448.42718 hps: 30.79918 } } @@ -2478,48 +2478,48 @@ dps_results: { dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofAccuracy-61027" value: { - dps: 48169.97392 - tps: 66946.80642 + dps: 48147.86322 + tps: 66676.32061 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofAlacrity-61028" value: { - dps: 48454.06931 - tps: 64971.36978 + dps: 48460.64196 + tps: 64629.67887 hps: 40.08485 } } dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofCruelty-61026" value: { - dps: 48853.55406 - tps: 67301.76369 + dps: 48893.97995 + tps: 67106.28688 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofProficiency-61030" value: { - dps: 48169.97392 - tps: 66946.80642 + dps: 48147.86322 + tps: 66676.32061 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofProwess-61029" value: { - dps: 48819.13828 - tps: 68074.9884 + dps: 48797.10175 + tps: 67800.84635 hps: 26.77086 } } dps_results: { key: "TestFeral-AllItems-ViciousGladiator'sEmblemofTenacity-61032" value: { - dps: 48169.97392 - tps: 66946.80642 + dps: 48147.86322 + tps: 66676.32061 hps: 26.77086 } } diff --git a/sim/druid/feral/apl_values.go b/sim/druid/feral/_apl_values.go similarity index 99% rename from sim/druid/feral/apl_values.go rename to sim/druid/feral/_apl_values.go index d40f0ce093..1a2c798bdd 100644 --- a/sim/druid/feral/apl_values.go +++ b/sim/druid/feral/_apl_values.go @@ -3,8 +3,8 @@ package feral import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (cat *FeralDruid) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/druid/feral/feral_test.go b/sim/druid/feral/_feral_test.go similarity index 86% rename from sim/druid/feral/feral_test.go rename to sim/druid/feral/_feral_test.go index 71a125e70b..c3eea2fc18 100644 --- a/sim/druid/feral/feral_test.go +++ b/sim/druid/feral/_feral_test.go @@ -3,9 +3,9 @@ package feral import ( "testing" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -45,7 +45,7 @@ func TestFeral(t *testing.T) { Talents: StandardTalents, Glyphs: StandardGlyphs, OtherTalentSets: []core.TalentsCombo{{Label: "HybridTalents", Talents: HybridTalents, Glyphs: HybridGlyphs}}, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "ExternalBleed", SpecOptions: PlayerOptionsMonoCat}, Rotation: core.GetAplRotation("../../../ui/druid/feral/apls", "default"), @@ -105,9 +105,6 @@ func TestFeral(t *testing.T) { var StandardTalents = "-2320322312012121202301-020301" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DruidPrimeGlyph_GlyphOfRip), - Prime2: int32(proto.DruidPrimeGlyph_GlyphOfBloodletting), - Prime3: int32(proto.DruidPrimeGlyph_GlyphOfBerserk), Major1: int32(proto.DruidMajorGlyph_GlyphOfThorns), Major2: int32(proto.DruidMajorGlyph_GlyphOfFeralCharge), Major3: int32(proto.DruidMajorGlyph_GlyphOfRebirth), @@ -115,9 +112,6 @@ var StandardGlyphs = &proto.Glyphs{ var HybridTalents = "-2300322312310001220311-020331" var HybridGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DruidPrimeGlyph_GlyphOfRip), - Prime2: int32(proto.DruidPrimeGlyph_GlyphOfBloodletting), - Prime3: int32(proto.DruidPrimeGlyph_GlyphOfBerserk), Major1: int32(proto.DruidMajorGlyph_GlyphOfFrenziedRegeneration), Major2: int32(proto.DruidMajorGlyph_GlyphOfMaul), Major3: int32(proto.DruidMajorGlyph_GlyphOfRebirth), @@ -167,10 +161,10 @@ var PlayerOptionsMonoCatNoBleed = &proto.Player_FeralDruid{ // }, // } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - Food: proto.Food_FoodSkeweredEel, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - PrepopPotion: proto.Potions_PotionOfTheTolvir, - ExplosiveBigDaddy: true, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, // Flask of the Winds + FoodId: 62669, // Skewered Eel + PotId: 58145, // Potion of the Tol'vir + PrepotId: 58145, // Potion of the Tol'vir + ExplosiveId: 89637, // Big Daddy Explosive } diff --git a/sim/druid/feral/pooling_actions.go b/sim/druid/feral/_pooling_actions.go similarity index 97% rename from sim/druid/feral/pooling_actions.go rename to sim/druid/feral/_pooling_actions.go index 4e0263a532..b88e0ab05a 100644 --- a/sim/druid/feral/pooling_actions.go +++ b/sim/druid/feral/_pooling_actions.go @@ -4,7 +4,7 @@ import ( "slices" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) type PoolingAction struct { diff --git a/sim/druid/feral/rotation.go b/sim/druid/feral/_rotation.go similarity index 99% rename from sim/druid/feral/rotation.go rename to sim/druid/feral/_rotation.go index c2cbdd3acf..c522492dee 100644 --- a/sim/druid/feral/rotation.go +++ b/sim/druid/feral/_rotation.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/druid" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/druid" ) func (cat *FeralDruid) OnGCDReady(sim *core.Simulation) { diff --git a/sim/druid/feral/rotation_aoe.go b/sim/druid/feral/_rotation_aoe.go similarity index 99% rename from sim/druid/feral/rotation_aoe.go rename to sim/druid/feral/_rotation_aoe.go index 1296670c4a..7253888ca3 100644 --- a/sim/druid/feral/rotation_aoe.go +++ b/sim/druid/feral/_rotation_aoe.go @@ -3,7 +3,7 @@ package feral import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (cat *FeralDruid) calcExpectedSwipeDamage(sim *core.Simulation) (float64, float64) { diff --git a/sim/druid/feral/feral.go b/sim/druid/feral/feral.go index d6a8733ab5..316ebad4fb 100644 --- a/sim/druid/feral/feral.go +++ b/sim/druid/feral/feral.go @@ -3,10 +3,10 @@ package feral import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/druid" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/druid" ) func RegisterFeralDruid() { @@ -41,11 +41,16 @@ func NewFeralDruid(character *core.Character, options *proto.Player) *FeralDruid cat.AssumeBleedActive = feralOptions.Options.AssumeBleedActive cat.CannotShredTarget = feralOptions.Options.CannotShredTarget - cat.maxRipTicks = cat.MaxRipTicks() - cat.primalMadnessBonus = 10.0 * float64(cat.Talents.PrimalMadness) + // TODO: Fix this to work with the new talent system. + // cat.maxRipTicks = cat.MaxRipTicks() + // cat.primalMadnessBonus = 10.0 * float64(cat.Talents.PrimalMadness) + cat.maxRipTicks = 0 + cat.primalMadnessBonus = 0 cat.EnableEnergyBar(core.EnergyBarOptions{ - MaxEnergy: 100.0, + MaxComboPoints: 5, + MaxEnergy: 100.0, + UnitClass: proto.Class_ClassDruid, }) cat.EnableRageBar(core.RageBarOptions{RageMultiplier: 1, MHSwingSpeed: 2.5}) @@ -64,7 +69,7 @@ func NewFeralDruid(character *core.Character, options *proto.Player) *FeralDruid type FeralDruid struct { *druid.Druid - Rotation FeralDruidRotation + // Rotation FeralDruidRotation readyToShift bool readyToGift bool @@ -78,8 +83,8 @@ type FeralDruid struct { cachedRipEndThresh time.Duration nextActionAt time.Duration usingHardcodedAPL bool - pendingPool *PoolingActions - pendingPoolWeaves *PoolingActions + // pendingPool *PoolingActions + // pendingPoolWeaves *PoolingActions } func (cat *FeralDruid) GetDruid() *druid.Druid { @@ -112,15 +117,15 @@ func (cat *FeralDruid) Initialize() { } } - cat.TigersFuryAura.ApplyOnGain(snapshotHandler) - cat.TigersFuryAura.ApplyOnExpire(snapshotHandler) + // cat.TigersFuryAura.ApplyOnGain(snapshotHandler) + // cat.TigersFuryAura.ApplyOnExpire(snapshotHandler) cat.AddOnTemporaryStatsChange(func(sim *core.Simulation, buffAura *core.Aura, _ stats.Stats) { snapshotHandler(buffAura, sim) }) } func (cat *FeralDruid) ApplyTalents() { - cat.Druid.ApplyTalents() + // cat.Druid.ApplyTalents() cat.MultiplyStat(stats.AttackPower, 1.25) // Aggression passive } diff --git a/sim/druid/forms.go b/sim/druid/forms.go index 554249de85..4815e271ad 100644 --- a/sim/druid/forms.go +++ b/sim/druid/forms.go @@ -3,9 +3,9 @@ package druid import ( //"math" - "github.com/wowsims/cata/sim/core" - //"github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + //"github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type DruidForm uint8 @@ -75,7 +75,9 @@ func (druid *Druid) GetBearWeapon() core.Weapon { func (druid *Druid) RegisterCatFormAura() { actionID := core.ActionID{SpellID: 768} - srm := druid.GetSavageRoarMultiplier() + // TODO: Fix this to work with the new talent system. + // srm := druid.GetSavageRoarMultiplier() + srm := 1.8 statBonus := stats.Stats{ stats.AttackPower: -20, // This offset is needed because the first 10 points of Agility do not contribute any Attack Power. @@ -160,7 +162,7 @@ func (druid *Druid) RegisterCatFormAura() { druid.AutoAttacks.EnableAutoSwing(sim) druid.UpdateManaRegenRates() - druid.TigersFuryAura.Deactivate(sim) + // druid.TigersFuryAura.Deactivate(sim) // These buffs stay up, but corresponding changes don't if druid.SavageRoarAura.IsActive() { @@ -178,9 +180,9 @@ func (druid *Druid) RegisterCatFormAura() { }, }) - if druid.Talents.FeralSwiftness > 0 { - druid.CatFormAura.NewMovementSpeedEffect(0.15 * float64(druid.Talents.FeralSwiftness)) - } + // if druid.Talents.FeralSwiftness > 0 { + // druid.CatFormAura.NewMovementSpeedEffect(0.15 * float64(druid.Talents.FeralSwiftness)) + // } } func (druid *Druid) registerCatFormSpell() { @@ -193,7 +195,9 @@ func (druid *Druid) registerCatFormSpell() { ManaCost: core.ManaCostOptions{ BaseCostPercent: 5, - PercentModifier: 100 - (10 * druid.Talents.NaturalShapeshifter), + // TODO: Fix this to work with the new talent system. + // PercentModifier: 100 - (10 * druid.Talents.NaturalShapeshifter), + PercentModifier: 100, }, Cast: core.CastConfig{ DefaultCast: core.Cast{ @@ -203,7 +207,9 @@ func (druid *Druid) registerCatFormSpell() { }, ApplyEffects: func(sim *core.Simulation, _ *core.Unit, spell *core.Spell) { - maxShiftEnergy := float64(100*druid.Talents.Furor) / 3.0 + // TODO: Fix this to work with the new talent system. + // maxShiftEnergy := float64(100*druid.Talents.Furor) / 3.0 + maxShiftEnergy := 100 / 3.0 energyDelta := maxShiftEnergy - druid.CurrentEnergy() @@ -319,7 +325,9 @@ func (druid *Druid) registerBearFormSpell() { actionID := core.ActionID{SpellID: 5487} rageMetrics := druid.NewRageMetrics(actionID) - furorProcChance := float64(druid.Talents.Furor) / 3.0 + // TODO: Fix this to work with the new talent system. + // furorProcChance := float64(druid.Talents.Furor) / 3.0 + furorProcChance := 0 / 3.0 druid.BearForm = druid.RegisterSpell(Any, core.SpellConfig{ ActionID: actionID, @@ -327,7 +335,9 @@ func (druid *Druid) registerBearFormSpell() { ManaCost: core.ManaCostOptions{ BaseCostPercent: 5, - PercentModifier: 100 - (10 * druid.Talents.NaturalShapeshifter), + // TODO: Fix this to work with the new talent system. + // PercentModifier: 100 - (10 * druid.Talents.NaturalShapeshifter), + PercentModifier: 100, }, Cast: core.CastConfig{ DefaultCast: core.Cast{ diff --git a/sim/druid/frenzied_regeneration.go b/sim/druid/frenzied_regeneration.go index af40042404..34ce04c392 100644 --- a/sim/druid/frenzied_regeneration.go +++ b/sim/druid/frenzied_regeneration.go @@ -3,9 +3,9 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerFrenziedRegenerationCD() { diff --git a/sim/druid/guardian/TestGuardian.results b/sim/druid/guardian/TestGuardian.results index 1bf9f0e1b5..517a1ad936 100644 --- a/sim/druid/guardian/TestGuardian.results +++ b/sim/druid/guardian/TestGuardian.results @@ -846,9 +846,9 @@ dps_results: { dps_results: { key: "TestGuardian-AllItems-Gladiator'sSanctuary" value: { - dps: 9477.79105 - tps: 47453.48398 - hps: 356.7355 + dps: 10834.01771 + tps: 54237.09209 + hps: 358.34242 } } dps_results: { @@ -1582,24 +1582,24 @@ dps_results: { dps_results: { key: "TestGuardian-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 9633.05534 - tps: 48230.52213 + dps: 8767.69062 + tps: 43903.69852 hps: 351.91475 } } dps_results: { key: "TestGuardian-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 9912.82208 - tps: 49629.46624 + dps: 8925.73664 + tps: 44694.03904 hps: 351.91475 } } dps_results: { key: "TestGuardian-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 9498.82846 - tps: 47559.24001 + dps: 8726.38327 + tps: 43697.01404 hps: 348.70092 } } @@ -2334,8 +2334,8 @@ dps_results: { dps_results: { key: "TestGuardian-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 8343.13061 - tps: 41781.26785 + dps: 8073.01173 + tps: 40430.67345 hps: 348.70092 } } diff --git a/sim/druid/guardian/tank_test.go b/sim/druid/guardian/_tank_test.go similarity index 80% rename from sim/druid/guardian/tank_test.go rename to sim/druid/guardian/_tank_test.go index 6a76a06972..9a03692ab0 100644 --- a/sim/druid/guardian/tank_test.go +++ b/sim/druid/guardian/_tank_test.go @@ -3,9 +3,9 @@ package guardian import ( "testing" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -25,7 +25,7 @@ func TestGuardian(t *testing.T) { Talents: StandardTalents, Glyphs: StandardGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Default", SpecOptions: PlayerOptionsDefault}, Rotation: core.GetAplRotation("../../../ui/druid/guardian/apls", "default"), @@ -78,9 +78,6 @@ func TestGuardian(t *testing.T) { var StandardTalents = "-2300322312310001220311-020331" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.DruidPrimeGlyph_GlyphOfMangle), - Prime2: int32(proto.DruidPrimeGlyph_GlyphOfLacerate), - Prime3: int32(proto.DruidPrimeGlyph_GlyphOfBerserk), Major1: int32(proto.DruidMajorGlyph_GlyphOfFrenziedRegeneration), Major2: int32(proto.DruidMajorGlyph_GlyphOfMaul), Major3: int32(proto.DruidMajorGlyph_GlyphOfRebirth), @@ -93,11 +90,10 @@ var PlayerOptionsDefault = &proto.Player_GuardianDruid{ }, }, } - -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfSteelskin, - Food: proto.Food_FoodSkeweredEel, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - PrepopPotion: proto.Potions_PotionOfTheTolvir, - DefaultConjured: proto.Conjured_ConjuredHealthstone, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58085, // Flask of Steelskin + FoodId: 62669, // Skewered Eel + PotId: 58145, // Potion of the Tol'vir + PrepotId: 58145, // Potion of the Tol'vir + ConjuredId: 5512, // Conjured Healthstone } diff --git a/sim/druid/guardian/tank.go b/sim/druid/guardian/tank.go index 1f0d127765..e1d11e74cb 100644 --- a/sim/druid/guardian/tank.go +++ b/sim/druid/guardian/tank.go @@ -1,10 +1,10 @@ package guardian import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/druid" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/druid" ) func RegisterGuardianDruid() { @@ -74,7 +74,7 @@ func (bear *GuardianDruid) Initialize() { } func (bear *GuardianDruid) ApplyTalents() { - bear.Druid.ApplyTalents() + // bear.Druid.ApplyTalents() bear.MultiplyStat(stats.AttackPower, 1.25) // Aggression passive core.ApplyVengeanceEffect(&bear.Character, bear.vengeance, 84840) } diff --git a/sim/druid/hurricane.go b/sim/druid/hurricane.go index 84f57174bb..6992ebbe99 100644 --- a/sim/druid/hurricane.go +++ b/sim/druid/hurricane.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerHurricaneSpell() { diff --git a/sim/druid/insect_swarm.go b/sim/druid/insect_swarm.go index eef8b4410a..2088dd583a 100644 --- a/sim/druid/insect_swarm.go +++ b/sim/druid/insect_swarm.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerInsectSwarmSpell() { diff --git a/sim/druid/moonfire.go b/sim/druid/moonfire.go index 8303549e26..0d539e6505 100644 --- a/sim/druid/moonfire.go +++ b/sim/druid/moonfire.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerMoonfireSpell() { diff --git a/sim/druid/omen_of_clarity.go b/sim/druid/omen_of_clarity.go index 15d1370782..d81bc673de 100644 --- a/sim/druid/omen_of_clarity.go +++ b/sim/druid/omen_of_clarity.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) applyOmenOfClarity() { diff --git a/sim/druid/restoration/restoration_test.go b/sim/druid/restoration/_restoration_test.go similarity index 95% rename from sim/druid/restoration/restoration_test.go rename to sim/druid/restoration/_restoration_test.go index f45ef9152d..57dec3a06c 100644 --- a/sim/druid/restoration/restoration_test.go +++ b/sim/druid/restoration/_restoration_test.go @@ -1,7 +1,7 @@ package restoration import ( - _ "github.com/wowsims/cata/sim/common" // imported to get caster sets included. (we use spellfire here) + _ "github.com/wowsims/mop/sim/common" // imported to get caster sets included. (we use spellfire here) ) func init() { diff --git a/sim/druid/restoration/restoration.go b/sim/druid/restoration/restoration.go index 215371efc2..bf49e100fe 100644 --- a/sim/druid/restoration/restoration.go +++ b/sim/druid/restoration/restoration.go @@ -1,9 +1,9 @@ package restoration import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/druid" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/druid" ) func RegisterRestorationDruid() { @@ -51,6 +51,8 @@ func (resto *RestorationDruid) Initialize() { resto.Druid.Initialize() } +func (resto *RestorationDruid) ApplyTalents() {} + func (resto *RestorationDruid) Reset(sim *core.Simulation) { resto.Druid.Reset(sim) } diff --git a/sim/druid/savage_defense.go b/sim/druid/savage_defense.go index b95449cd38..db3353834a 100644 --- a/sim/druid/savage_defense.go +++ b/sim/druid/savage_defense.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (druid *Druid) registerSavageDefensePassive() { diff --git a/sim/druid/starsurge.go b/sim/druid/starsurge.go index e99ab0813c..d632318811 100644 --- a/sim/druid/starsurge.go +++ b/sim/druid/starsurge.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerStarsurgeSpell() { diff --git a/sim/druid/sunfire.go b/sim/druid/sunfire.go index 35ee8ad9ef..ce06ec9c11 100644 --- a/sim/druid/sunfire.go +++ b/sim/druid/sunfire.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerSunfireSpell() { diff --git a/sim/druid/swipe.go b/sim/druid/swipe.go index e14479bc76..8b3fc6dd34 100644 --- a/sim/druid/swipe.go +++ b/sim/druid/swipe.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerSwipeBearSpell() { diff --git a/sim/druid/tranquility.go b/sim/druid/tranquility.go index 645debc399..f25163acc4 100644 --- a/sim/druid/tranquility.go +++ b/sim/druid/tranquility.go @@ -3,7 +3,7 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (druid *Druid) registerTranquilityCD() { diff --git a/sim/druid/treants.go b/sim/druid/treants.go index f920bc0e01..fd8e1b0c43 100644 --- a/sim/druid/treants.go +++ b/sim/druid/treants.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type Treant struct { diff --git a/sim/druid/wild_mushrooms.go b/sim/druid/wild_mushrooms.go index 1c3324c06c..aa5acaa20c 100644 --- a/sim/druid/wild_mushrooms.go +++ b/sim/druid/wild_mushrooms.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerWildMushrooms() { diff --git a/sim/druid/wrath.go b/sim/druid/wrath.go index 79483617d0..3f14001272 100644 --- a/sim/druid/wrath.go +++ b/sim/druid/wrath.go @@ -3,8 +3,8 @@ package druid import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (druid *Druid) registerWrathSpell() { diff --git a/sim/encounters/_icc/lichking25h_ai.go b/sim/encounters/_icc/lichking25h_ai.go index 110d5e198a..3be1222eed 100644 --- a/sim/encounters/_icc/lichking25h_ai.go +++ b/sim/encounters/_icc/lichking25h_ai.go @@ -3,9 +3,9 @@ package icc import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addLichKing25H(bossPrefix string) { diff --git a/sim/encounters/_icc/sindragosa25h_ai.go b/sim/encounters/_icc/sindragosa25h_ai.go index 44ed4f3209..2ba792a6a0 100644 --- a/sim/encounters/_icc/sindragosa25h_ai.go +++ b/sim/encounters/_icc/sindragosa25h_ai.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addSindragosa25H(bossPrefix string) { diff --git a/sim/encounters/_naxxramas/kelthuzad25_ai.go b/sim/encounters/_naxxramas/kelthuzad25_ai.go index e18d682478..fb1ccc1eaa 100644 --- a/sim/encounters/_naxxramas/kelthuzad25_ai.go +++ b/sim/encounters/_naxxramas/kelthuzad25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addKelThuzad25(bossPrefix string) { diff --git a/sim/encounters/_naxxramas/loatheb25_ai.go b/sim/encounters/_naxxramas/loatheb25_ai.go index b24b87a002..0b4043fbbc 100644 --- a/sim/encounters/_naxxramas/loatheb25_ai.go +++ b/sim/encounters/_naxxramas/loatheb25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addLoatheb25(bossPrefix string) { diff --git a/sim/encounters/_naxxramas/patchwerk10_ai.go b/sim/encounters/_naxxramas/patchwerk10_ai.go index 1412d34cad..9d89ae7666 100644 --- a/sim/encounters/_naxxramas/patchwerk10_ai.go +++ b/sim/encounters/_naxxramas/patchwerk10_ai.go @@ -3,9 +3,9 @@ package naxxramas import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addPatchwerk10(bossPrefix string) { diff --git a/sim/encounters/_naxxramas/patchwerk25_ai.go b/sim/encounters/_naxxramas/patchwerk25_ai.go index 3cbac349b0..a8691f9f01 100644 --- a/sim/encounters/_naxxramas/patchwerk25_ai.go +++ b/sim/encounters/_naxxramas/patchwerk25_ai.go @@ -3,9 +3,9 @@ package naxxramas import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addPatchwerk25(bossPrefix string) { diff --git a/sim/encounters/_naxxramas/thaddius25_ai.go b/sim/encounters/_naxxramas/thaddius25_ai.go index 2e7213ea85..c9becfa90b 100644 --- a/sim/encounters/_naxxramas/thaddius25_ai.go +++ b/sim/encounters/_naxxramas/thaddius25_ai.go @@ -1,9 +1,9 @@ package naxxramas import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addThaddius25(bossPrefix string) { diff --git a/sim/encounters/_toc/anub25h_ai.go b/sim/encounters/_toc/anub25h_ai.go index bf25c47400..91fb1f0487 100644 --- a/sim/encounters/_toc/anub25h_ai.go +++ b/sim/encounters/_toc/anub25h_ai.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addAnub25H(bossPrefix string) { diff --git a/sim/encounters/_toc/gormok25h_ai.go b/sim/encounters/_toc/gormok25h_ai.go index 40f80c33a0..9c97d8bfa9 100644 --- a/sim/encounters/_toc/gormok25h_ai.go +++ b/sim/encounters/_toc/gormok25h_ai.go @@ -3,9 +3,9 @@ package toc import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addGormok25H(bossPrefix string) { diff --git a/sim/encounters/_ulduar/algalon25_ai.go b/sim/encounters/_ulduar/algalon25_ai.go index d5bd09ddbd..45d5eb936a 100644 --- a/sim/encounters/_ulduar/algalon25_ai.go +++ b/sim/encounters/_ulduar/algalon25_ai.go @@ -3,9 +3,9 @@ package ulduar import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addAlgalon25(bossPrefix string) { diff --git a/sim/encounters/_ulduar/hodir_ai.go b/sim/encounters/_ulduar/hodir_ai.go index f12939e7e3..a6d71a1fd3 100644 --- a/sim/encounters/_ulduar/hodir_ai.go +++ b/sim/encounters/_ulduar/hodir_ai.go @@ -4,9 +4,9 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addHodir10(bossPrefix string) { diff --git a/sim/encounters/bwd/magmaw_ai.go b/sim/encounters/bwd/magmaw_ai.go index 1543760d61..9e31921f10 100644 --- a/sim/encounters/bwd/magmaw_ai.go +++ b/sim/encounters/bwd/magmaw_ai.go @@ -4,10 +4,10 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/encounters/default_ai" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/encounters/default_ai" ) func createMagmawPreset(bossPrefix string, raidSize int, isHeroic bool, diff --git a/sim/encounters/bwd/nefarian_ai.go b/sim/encounters/bwd/nefarian_ai.go index 16e5af2069..5feafcfb7f 100644 --- a/sim/encounters/bwd/nefarian_ai.go +++ b/sim/encounters/bwd/nefarian_ai.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Log used for fitting damage parameters: https://classic.warcraftlogs.com/reports/NTgLfqc2atyFh8BX#fight=26&type=damage-taken&target=325&view=events&pins=0%24Off%24%23244F4B%24auras-gained%241%240.0.0.Any%240.0.0.Any%24true%240.0.0.Any%24true%2479330%2463%5E2%24Off%24%23909049%24auras-gained%241%240.0.0.Any%240.0.0.Any%24true%240.0.0.Any%24true%241160%24true%24true%2495%24and%24auras-gained%241%240.0.0.Any%240.0.0.Any%24true%240.0.0.Any%24true%246343%24true%24true%2495 diff --git a/sim/encounters/default_ai/default_ai.go b/sim/encounters/default_ai/default_ai.go index b4e1339db1..4132feacb9 100644 --- a/sim/encounters/default_ai/default_ai.go +++ b/sim/encounters/default_ai/default_ai.go @@ -3,8 +3,8 @@ package default_ai import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) // Default implementation of TargetAI which takes a list of abilities as input diff --git a/sim/encounters/dragonsoul/blackhorn_ai.go b/sim/encounters/dragonsoul/blackhorn_ai.go index c64e2db568..e06ba68510 100644 --- a/sim/encounters/dragonsoul/blackhorn_ai.go +++ b/sim/encounters/dragonsoul/blackhorn_ai.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const blackhornMeleeDamageSpread = 0.1 diff --git a/sim/encounters/firelands/baleroc_ai.go b/sim/encounters/firelands/baleroc_ai.go index 7520793227..560aecc867 100644 --- a/sim/encounters/firelands/baleroc_ai.go +++ b/sim/encounters/firelands/baleroc_ai.go @@ -5,9 +5,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addBaleroc(raidPrefix string) { @@ -152,7 +152,7 @@ func (ai *BalerocAI) randomizeAutoTiming(sim *core.Simulation) { // synchronizing with damage events. swingDur := ai.Target.AutoAttacks.MainhandSwingSpeed() randomAutoOffset := core.DurationFromSeconds(sim.RandomFloat("Melee Timing") * swingDur.Seconds() / 2) - ai.Target.AutoAttacks.StopMeleeUntil(sim, sim.CurrentTime - swingDur + randomAutoOffset, true) + ai.Target.AutoAttacks.StopMeleeUntil(sim, sim.CurrentTime-swingDur+randomAutoOffset, true) } func (ai *BalerocAI) Reset(sim *core.Simulation) { @@ -162,7 +162,7 @@ func (ai *BalerocAI) Reset(sim *core.Simulation) { // Randomize melee and cast timings to prevent fake APL-Haste couplings. ai.randomizeAutoTiming(sim) - ai.Target.ExtendGCDUntil(sim, sim.CurrentTime + core.DurationFromSeconds(sim.RandomFloat("Specials Timing") * core.BossGCD.Seconds())) + ai.Target.ExtendGCDUntil(sim, sim.CurrentTime+core.DurationFromSeconds(sim.RandomFloat("Specials Timing")*core.BossGCD.Seconds())) } func (ai *BalerocAI) swapTargets(sim *core.Simulation, newTankTarget *core.Unit) { @@ -203,7 +203,7 @@ func (ai *BalerocAI) registerBlazeOfGlory() { hpDepByStackCount := map[int32]*stats.StatDependency{} for i := int32(1); i <= maxPossibleStacks; i++ { - hpDepByStackCount[i] = tankUnit.NewDynamicMultiplyStat(stats.Health, 1.0 + 0.2*float64(i)) + hpDepByStackCount[i] = tankUnit.NewDynamicMultiplyStat(stats.Health, 1.0+0.2*float64(i)) } // Blaze of Glory applications also heal the player, just like @@ -275,13 +275,13 @@ func (ai *BalerocAI) registerBlades() { sharedBladeCastHandler := func(sim *core.Simulation) { // First, schedule a swing timer reset to fire on cast completion. - ai.Target.AutoAttacks.StopMeleeUntil(sim, sim.CurrentTime + bladeCastTime, true) + ai.Target.AutoAttacks.StopMeleeUntil(sim, sim.CurrentTime+bladeCastTime, true) // Then delay the off-hand until the aura expires. swingDur := ai.Target.AutoAttacks.MainhandSwingSpeed() first2hSwing := ai.Target.AutoAttacks.NextAttackAt() num2hSwings := bladeDuration / swingDur - ai.Target.AutoAttacks.SetOffhandSwingAt(first2hSwing + num2hSwings * swingDur + swingDur / 2) + ai.Target.AutoAttacks.SetOffhandSwingAt(first2hSwing + num2hSwings*swingDur + swingDur/2) // Finally, reset the CD on Blaze of Glory at start of cast. ai.blazeOfGlory.CD.Set(sim.CurrentTime + ai.blazeOfGlory.CD.Duration) @@ -417,7 +417,7 @@ func (ai *BalerocAI) registerBlades() { DamageMultiplier: 1, ApplyEffects: func(sim *core.Simulation, tankTarget *core.Unit, spell *core.Spell) { - result := spell.CalcAndDealDamage(sim, tankTarget, max(0.9 * tankTarget.MaxHealth(), 250000), spell.OutcomeEnemyMeleeWhite) + result := spell.CalcAndDealDamage(sim, tankTarget, max(0.9*tankTarget.MaxHealth(), 250000), spell.OutcomeEnemyMeleeWhite) if result.Landed() { debuffAura := tankTarget.GetAuraByID(decimatingStrikeActionID) @@ -459,15 +459,15 @@ func (ai *BalerocAI) registerVitalSpark() { var avgGain float64 - if sim.CurrentTime <= vitalFlameDuration * 2 { + if sim.CurrentTime <= vitalFlameDuration*2 { avgGain = ai.initialHealerStackGain * 2 - } else if sim.CurrentTime <= vitalFlameDuration * 4 { + } else if sim.CurrentTime <= vitalFlameDuration*4 { avgGain = ai.initialHealerStackGain } else { avgGain = ai.steadyHealerStackGain } - return int32(math.Round(sim.Roll(avgGain - 1, avgGain + 1))) + return int32(math.Round(sim.Roll(avgGain-1, avgGain+1))) } vitalFlameConfig := core.Aura{ @@ -495,7 +495,7 @@ func (ai *BalerocAI) registerVitalSpark() { OnAction: func(sim *core.Simulation) { aura.Refresh(sim) - aura.SetStacks(sim, aura.GetStacks() + calcStackGain(sim)) + aura.SetStacks(sim, aura.GetStacks()+calcStackGain(sim)) }, }) }, diff --git a/sim/encounters/firelands/bethtilac_ai.go b/sim/encounters/firelands/bethtilac_ai.go index ab692f1678..3279dde874 100644 --- a/sim/encounters/firelands/bethtilac_ai.go +++ b/sim/encounters/firelands/bethtilac_ai.go @@ -5,9 +5,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addBethtilac(raidPrefix string) { diff --git a/sim/encounters/movement_ai.go b/sim/encounters/movement_ai.go index 63e9a0c0b5..9d3d117d5d 100644 --- a/sim/encounters/movement_ai.go +++ b/sim/encounters/movement_ai.go @@ -3,9 +3,9 @@ package encounters import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func addMovementAI() { diff --git a/sim/encounters/register_all.go b/sim/encounters/register_all.go index 54424ba14d..a67d362b7a 100644 --- a/sim/encounters/register_all.go +++ b/sim/encounters/register_all.go @@ -1,12 +1,12 @@ package encounters import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/encounters/bwd" - "github.com/wowsims/cata/sim/encounters/dragonsoul" - "github.com/wowsims/cata/sim/encounters/firelands" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/encounters/bwd" + "github.com/wowsims/mop/sim/encounters/dragonsoul" + "github.com/wowsims/mop/sim/encounters/firelands" ) func init() { diff --git a/sim/hunter/aspects.go b/sim/hunter/_aspects.go similarity index 95% rename from sim/hunter/aspects.go rename to sim/hunter/_aspects.go index 1d438d8c44..21de28db09 100644 --- a/sim/hunter/aspects.go +++ b/sim/hunter/_aspects.go @@ -1,8 +1,8 @@ package hunter import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (hunter *Hunter) registerAspectOfTheHawkSpell() { diff --git a/sim/hunter/bm_talents.go b/sim/hunter/_bm_talents.go similarity index 99% rename from sim/hunter/bm_talents.go rename to sim/hunter/_bm_talents.go index be0cb8b8e0..3a75c17271 100644 --- a/sim/hunter/bm_talents.go +++ b/sim/hunter/_bm_talents.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) ApplyBMTalents() { diff --git a/sim/hunter/cata_items.go b/sim/hunter/_cata_items.go similarity index 98% rename from sim/hunter/cata_items.go rename to sim/hunter/_cata_items.go index b68b0efbb5..dce4ccd261 100644 --- a/sim/hunter/cata_items.go +++ b/sim/hunter/_cata_items.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (hunter *Hunter) newFlamingArrowSpell(spellID int32) core.SpellConfig { diff --git a/sim/hunter/cobra_shot.go b/sim/hunter/_cobra_shot.go similarity index 98% rename from sim/hunter/cobra_shot.go rename to sim/hunter/_cobra_shot.go index ab6133fa7a..6967282091 100644 --- a/sim/hunter/cobra_shot.go +++ b/sim/hunter/_cobra_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerCobraShotSpell() { diff --git a/sim/hunter/explosive_trap.go b/sim/hunter/_explosive_trap.go similarity index 99% rename from sim/hunter/explosive_trap.go rename to sim/hunter/_explosive_trap.go index c211f4e5db..dc299b2517 100644 --- a/sim/hunter/explosive_trap.go +++ b/sim/hunter/_explosive_trap.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerExplosiveTrapSpell(timer *core.Timer) { diff --git a/sim/hunter/glyphs.go b/sim/hunter/_glyphs.go similarity index 96% rename from sim/hunter/glyphs.go rename to sim/hunter/_glyphs.go index 7c75909dec..4683b13c0e 100644 --- a/sim/hunter/glyphs.go +++ b/sim/hunter/_glyphs.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (hunter *Hunter) ApplyGlyphs() { diff --git a/sim/hunter/kill_command.go b/sim/hunter/_kill_command.go similarity index 96% rename from sim/hunter/kill_command.go rename to sim/hunter/_kill_command.go index bdbb7aad51..254ef087c0 100644 --- a/sim/hunter/kill_command.go +++ b/sim/hunter/_kill_command.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerKillCommandSpell() { diff --git a/sim/hunter/mm_talents.go b/sim/hunter/_mm_talents.go similarity index 99% rename from sim/hunter/mm_talents.go rename to sim/hunter/_mm_talents.go index a4605a5a3f..83e79404c5 100644 --- a/sim/hunter/mm_talents.go +++ b/sim/hunter/_mm_talents.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) ApplyMMTalents() { diff --git a/sim/hunter/multi_shot.go b/sim/hunter/_multi_shot.go similarity index 98% rename from sim/hunter/multi_shot.go rename to sim/hunter/_multi_shot.go index 05d6b0c932..9a8b3d88e8 100644 --- a/sim/hunter/multi_shot.go +++ b/sim/hunter/_multi_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerMultiShotSpell() { diff --git a/sim/hunter/pet.go b/sim/hunter/_pet.go similarity index 98% rename from sim/hunter/pet.go rename to sim/hunter/_pet.go index b918f4aa0e..a32236b1f7 100644 --- a/sim/hunter/pet.go +++ b/sim/hunter/_pet.go @@ -1,9 +1,9 @@ package hunter import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type HunterPet struct { diff --git a/sim/hunter/pet_abilities.go b/sim/hunter/_pet_abilities.go similarity index 99% rename from sim/hunter/pet_abilities.go rename to sim/hunter/_pet_abilities.go index e9a933ba52..92f29e635e 100644 --- a/sim/hunter/pet_abilities.go +++ b/sim/hunter/_pet_abilities.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) type PetAbilityType int diff --git a/sim/hunter/pet_talents.go b/sim/hunter/_pet_talents.go similarity index 98% rename from sim/hunter/pet_talents.go rename to sim/hunter/_pet_talents.go index 2fb6d9750c..af9666c90a 100644 --- a/sim/hunter/pet_talents.go +++ b/sim/hunter/_pet_talents.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (hp *HunterPet) ApplyTalents() { @@ -392,7 +392,7 @@ func (hp *HunterPet) registerWolverineBite() { ThreatMultiplier: 1, ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := 1 + (spell.MeleeAttackPower()*0.40)*0.10 // https://www.wowhead.com/cata/spell=53508/wolverine-bite ? Reading this right? + baseDamage := 1 + (spell.MeleeAttackPower()*0.40)*0.10 // https://www.wowhead.com/mop-classic/spell=53508/wolverine-bite ? Reading this right? //baseDamage *= hp.killCommandMult() spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialNoBlockDodgeParry) diff --git a/sim/hunter/rapid_fire.go b/sim/hunter/_rapid_fire.go similarity index 96% rename from sim/hunter/rapid_fire.go rename to sim/hunter/_rapid_fire.go index c311eb9008..49b9765039 100644 --- a/sim/hunter/rapid_fire.go +++ b/sim/hunter/_rapid_fire.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (hunter *Hunter) registerRapidFireCD() { diff --git a/sim/hunter/serpent_sting.go b/sim/hunter/_serpent_sting.go similarity index 98% rename from sim/hunter/serpent_sting.go rename to sim/hunter/_serpent_sting.go index 5bca791aa0..0112c0a800 100644 --- a/sim/hunter/serpent_sting.go +++ b/sim/hunter/_serpent_sting.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerSerpentStingSpell() { diff --git a/sim/hunter/silencing_shot.go b/sim/hunter/_silencing_shot.go similarity index 93% rename from sim/hunter/silencing_shot.go rename to sim/hunter/_silencing_shot.go index 0ef4a54156..b998957939 100644 --- a/sim/hunter/silencing_shot.go +++ b/sim/hunter/_silencing_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (hunter *Hunter) registerSilencingShotSpell() { diff --git a/sim/hunter/steady_shot.go b/sim/hunter/_steady_shot.go similarity index 96% rename from sim/hunter/steady_shot.go rename to sim/hunter/_steady_shot.go index a091e7ba36..66b7271796 100644 --- a/sim/hunter/steady_shot.go +++ b/sim/hunter/_steady_shot.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (hunter *Hunter) registerSteadyShotSpell() { diff --git a/sim/hunter/survival_talents.go b/sim/hunter/_survival_talents.go similarity index 98% rename from sim/hunter/survival_talents.go rename to sim/hunter/_survival_talents.go index 9534e6b8f2..70cfc301a7 100644 --- a/sim/hunter/survival_talents.go +++ b/sim/hunter/_survival_talents.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (hunter *Hunter) ApplySurvivalTalents() { diff --git a/sim/hunter/talents.go b/sim/hunter/_talents.go similarity index 84% rename from sim/hunter/talents.go rename to sim/hunter/_talents.go index 2f9225eafb..87ca0895fe 100644 --- a/sim/hunter/talents.go +++ b/sim/hunter/_talents.go @@ -1,8 +1,8 @@ package hunter import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (hunter *Hunter) ApplyTalents() { diff --git a/sim/hunter/trap_launcher.go b/sim/hunter/_trap_launcher.go similarity index 92% rename from sim/hunter/trap_launcher.go rename to sim/hunter/_trap_launcher.go index fc7795ff5c..0cc52fa329 100644 --- a/sim/hunter/trap_launcher.go +++ b/sim/hunter/_trap_launcher.go @@ -3,8 +3,8 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (hunter *Hunter) registerTrapLauncher() { diff --git a/sim/hunter/arcane_shot.go b/sim/hunter/arcane_shot.go index 6bfb042ee2..5ccab77995 100644 --- a/sim/hunter/arcane_shot.go +++ b/sim/hunter/arcane_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerArcaneShotSpell() { diff --git a/sim/hunter/beast_mastery/TestBM.results b/sim/hunter/beast_mastery/TestBM.results index aa06784cd8..eff1140601 100644 --- a/sim/hunter/beast_mastery/TestBM.results +++ b/sim/hunter/beast_mastery/TestBM.results @@ -767,8 +767,8 @@ dps_results: { dps_results: { key: "TestBM-AllItems-Gladiator'sPursuit" value: { - dps: 22939.77405 - tps: 14216.77748 + dps: 26334.72993 + tps: 16208.78094 } } dps_results: { diff --git a/sim/hunter/beast_mastery/beast_mastery_test.go b/sim/hunter/beast_mastery/_beast_mastery_test.go similarity index 82% rename from sim/hunter/beast_mastery/beast_mastery_test.go rename to sim/hunter/beast_mastery/_beast_mastery_test.go index 256030e1d2..d6539598cb 100644 --- a/sim/hunter/beast_mastery/beast_mastery_test.go +++ b/sim/hunter/beast_mastery/_beast_mastery_test.go @@ -3,9 +3,9 @@ package beast_mastery import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -21,15 +21,15 @@ func TestBM(t *testing.T) { GearSet: core.GetGearSet("../../../ui/hunter/beast_mastery/gear_sets", "preraid_bm"), Talents: BMTalents, Glyphs: BMGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumes, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBasic}, Rotation: core.GetAplRotation("../../../ui/hunter/beast_mastery/apls", "bm"), OtherRotations: []core.RotationCombo{ core.GetAplRotation("../../../ui/hunter/beast_mastery/apls", "bm_advanced"), }, - ItemFilter: ItemFilter, - StartingDistance: 5.1, + ItemFilter: ItemFilter, + StartingDistance: 5.1, })) } @@ -59,7 +59,7 @@ func BenchmarkSimulate(b *testing.B) { Race: proto.Race_RaceOrc, Class: proto.Class_ClassHunter, Equipment: core.GetGearSet("../../../ui/hunter/beast_mastery/gear_sets", "preraid_bm").GearSet, - Consumes: FullConsumes, + Consumables: FullConsumes, Spec: PlayerOptionsBasic, Glyphs: BMGlyphs, TalentsString: BMTalents, @@ -81,17 +81,13 @@ func BenchmarkSimulate(b *testing.B) { core.RaidBenchmark(b, rsr) } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, +var FullConsumes = &proto.ConsumesSpec{ + FlaskId: 58087, + PotId: 58145, } - var BMTalents = "2330230311320112121-2302-03" var BMGlyphs = &proto.Glyphs{ Major1: int32(proto.HunterMajorGlyph_GlyphOfBestialWrath), - Prime1: int32(proto.HunterPrimeGlyph_GlyphOfKillCommand), - Prime2: int32(proto.HunterPrimeGlyph_GlyphOfKillShot), - Prime3: int32(proto.HunterPrimeGlyph_GlyphOfArcaneShot), } var FerocityTalents = &proto.HunterPetTalents{ SerpentSwiftness: 2, diff --git a/sim/hunter/beast_mastery/beast_mastery.go b/sim/hunter/beast_mastery/beast_mastery.go index 781174bda7..8a56a2119a 100644 --- a/sim/hunter/beast_mastery/beast_mastery.go +++ b/sim/hunter/beast_mastery/beast_mastery.go @@ -1,10 +1,10 @@ package beast_mastery import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/hunter" ) func RegisterBeastMasteryHunter() { @@ -41,29 +41,31 @@ func (bmHunter *BeastMasteryHunter) Initialize() { bmHunter.Hunter.Initialize() // Apply BM Hunter mastery - baseMasteryRating := bmHunter.GetStat(stats.MasteryRating) - kcMod := bmHunter.AddDynamicMod(core.SpellModConfig{ - Kind: core.SpellMod_DamageDone_Pct, - ClassMask: hunter.HunterSpellKillCommand, - FloatValue: bmHunter.getMasteryBonus(baseMasteryRating), - }) + // baseMasteryRating := bmHunter.GetStat(stats.MasteryRating) + // kcMod := bmHunter.AddDynamicMod(core.SpellModConfig{ + // Kind: core.SpellMod_DamageDone_Pct, + // ClassMask: hunter.HunterSpellKillCommand, + // FloatValue: bmHunter.getMasteryBonus(baseMasteryRating), + // }) - if bmHunter.Pet != nil { - bmHunter.Pet.PseudoStats.DamageDealtMultiplier *= bmHunter.getMasteryBonus(baseMasteryRating) - kcMod.Activate() - } + // if bmHunter.Pet != nil { + // bmHunter.Pet.PseudoStats.DamageDealtMultiplier *= bmHunter.getMasteryBonus(baseMasteryRating) + // kcMod.Activate() + // } - bmHunter.AddOnMasteryStatChanged(func(sim *core.Simulation, oldMasteryRating float64, newMasteryRating float64) { - if bmHunter.Pet != nil { - bmHunter.Pet.PseudoStats.DamageDealtMultiplier /= bmHunter.getMasteryBonus(oldMasteryRating) - bmHunter.Pet.PseudoStats.DamageDealtMultiplier *= bmHunter.getMasteryBonus(newMasteryRating) - kcMod.UpdateFloatValue(bmHunter.getMasteryBonus(newMasteryRating)) - } - }) + // bmHunter.AddOnMasteryStatChanged(func(sim *core.Simulation, oldMasteryRating float64, newMasteryRating float64) { + // if bmHunter.Pet != nil { + // bmHunter.Pet.PseudoStats.DamageDealtMultiplier /= bmHunter.getMasteryBonus(oldMasteryRating) + // bmHunter.Pet.PseudoStats.DamageDealtMultiplier *= bmHunter.getMasteryBonus(newMasteryRating) + // kcMod.UpdateFloatValue(bmHunter.getMasteryBonus(newMasteryRating)) + // } + // }) // BM Hunter Spec Bonus bmHunter.MultiplyStat(stats.RangedAttackPower, 1.30) } +func (hunter *BeastMasteryHunter) ApplyTalents() {} + func (hunter *BeastMasteryHunter) getMasteryBonus(masteryRating float64) float64 { return 1.134 + ((masteryRating / core.MasteryRatingPerMasteryPoint) * 0.0167) } diff --git a/sim/hunter/hunter.go b/sim/hunter/hunter.go index 54835d2873..fe47b54ccb 100644 --- a/sim/hunter/hunter.go +++ b/sim/hunter/hunter.go @@ -3,13 +3,11 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -var TalentTreeSizes = [3]int{19, 19, 20} - const ThoridalTheStarsFuryItemID = 34334 type Hunter struct { @@ -23,7 +21,7 @@ type Hunter struct { MarksmanshipOptions *proto.MarksmanshipHunter_Options SurvivalOptions *proto.SurvivalHunter_Options - Pet *HunterPet + // Pet *HunterPet // The most recent time at which moving could have started, for trap weaving. mayMoveAt time.Duration @@ -94,10 +92,12 @@ func NewHunter(character *core.Character, options *proto.Player, hunterOptions * ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassHunter), } - core.FillTalentsProto(hunter.Talents.ProtoReflect(), options.TalentsString, TalentTreeSizes) + core.FillTalentsProto(hunter.Talents.ProtoReflect(), options.TalentsString) focusPerSecond := 4.0 - hunter.EnableFocusBar(100+(float64(hunter.Talents.KindredSpirits)*5), focusPerSecond, true, nil) + // TODO: Fix this to work with the new talent system. + // hunter.EnableFocusBar(100+(float64(hunter.Talents.KindredSpirits)*5), focusPerSecond, true, nil) + hunter.EnableFocusBar(100, focusPerSecond, true, nil) hunter.PseudoStats.CanParry = true @@ -127,7 +127,7 @@ func NewHunter(character *core.Character, options *proto.Player, hunterOptions * } hunter.AddStatDependencies() - hunter.Pet = hunter.NewHunterPet() + // hunter.Pet = hunter.NewHunterPet() return hunter } @@ -138,28 +138,30 @@ func (hunter *Hunter) Initialize() { hunter.FireTrapTimer = hunter.NewTimer() - hunter.ApplyGlyphs() + // hunter.ApplyGlyphs() hunter.RegisterSpells() - hunter.addBloodthirstyGloves() + // hunter.addBloodthirstyGloves() } +func (hunter *Hunter) ApplyTalents() {} + func (hunter *Hunter) RegisterSpells() { - hunter.registerSteadyShotSpell() + // hunter.registerSteadyShotSpell() hunter.registerArcaneShotSpell() hunter.registerKillShotSpell() - hunter.registerAspectOfTheHawkSpell() - hunter.registerSerpentStingSpell() - hunter.registerMultiShotSpell() - hunter.registerKillCommandSpell() - hunter.registerExplosiveTrapSpell(hunter.FireTrapTimer) - hunter.registerCobraShotSpell() - hunter.registerRapidFireCD() - hunter.registerSilencingShotSpell() + // hunter.registerAspectOfTheHawkSpell() + // hunter.registerSerpentStingSpell() + // hunter.registerMultiShotSpell() + // hunter.registerKillCommandSpell() + // hunter.registerExplosiveTrapSpell(hunter.FireTrapTimer) + // hunter.registerCobraShotSpell() + // hunter.registerRapidFireCD() + // hunter.registerSilencingShotSpell() hunter.registerRaptorStrikeSpell() - hunter.registerTrapLauncher() + // hunter.registerTrapLauncher() hunter.registerHuntersMarkSpell() - hunter.registerAspectOfTheFoxSpell() + // hunter.registerAspectOfTheFoxSpell() } func (hunter *Hunter) AddStatDependencies() { @@ -169,12 +171,13 @@ func (hunter *Hunter) AddStatDependencies() { } func (hunter *Hunter) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if hunter.Talents.TrueshotAura { - raidBuffs.TrueshotAura = true - } - if hunter.Talents.FerociousInspiration && hunter.Options.PetType != proto.HunterOptions_PetNone { - raidBuffs.FerociousInspiration = true - } + // TODO: Fix this to work with the new talent system. + // if hunter.Talents.TrueshotAura { + // raidBuffs.TrueshotAura = true + // } + // if hunter.Talents.FerociousInspiration && hunter.Options.PetType != proto.HunterOptions_PetNone { + // raidBuffs.FerociousInspiration = true + // } if hunter.Options.PetType == proto.HunterOptions_CoreHound { raidBuffs.Bloodlust = true @@ -195,9 +198,11 @@ func (hunter *Hunter) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { raidBuffs.FuriousHowl = true } - if hunter.Talents.HuntingParty { - raidBuffs.HuntingParty = true - } + // TODO: Fix this to work with the new talent system. + // + // if hunter.Talents.HuntingParty { + // raidBuffs.HuntingParty = true + // } } func (hunter *Hunter) AddPartyBuffs(_ *proto.PartyBuffs) { @@ -210,9 +215,6 @@ func (hunter *Hunter) CritMultiplier(isRanged bool, isMFDSpell bool, doubleDipMS return hunter.MeleeCritMultiplier(primaryModifier, secondaryModifier) } -func (hunter *Hunter) HasPrimeGlyph(glyph proto.HunterPrimeGlyph) bool { - return hunter.HasGlyph(int32(glyph)) -} func (hunter *Hunter) HasMajorGlyph(glyph proto.HunterMajorGlyph) bool { return hunter.HasGlyph(int32(glyph)) } diff --git a/sim/hunter/hunters_mark.go b/sim/hunter/hunters_mark.go index 3b53a3d4f7..c7a986472d 100644 --- a/sim/hunter/hunters_mark.go +++ b/sim/hunter/hunters_mark.go @@ -1,7 +1,7 @@ package hunter import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerHuntersMarkSpell() { diff --git a/sim/hunter/kill_shot.go b/sim/hunter/kill_shot.go index 5851bd046a..b7905e8cac 100644 --- a/sim/hunter/kill_shot.go +++ b/sim/hunter/kill_shot.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerKillShotSpell() { diff --git a/sim/hunter/marksmanship/TestMM.results b/sim/hunter/marksmanship/TestMM.results index 70a653e9a5..e915fff6ee 100644 --- a/sim/hunter/marksmanship/TestMM.results +++ b/sim/hunter/marksmanship/TestMM.results @@ -767,8 +767,8 @@ dps_results: { dps_results: { key: "TestMM-AllItems-Gladiator'sPursuit" value: { - dps: 21219.20754 - tps: 19056.04908 + dps: 24313.49968 + tps: 21835.57328 } } dps_results: { diff --git a/sim/hunter/marksmanship/aimed_shot.go b/sim/hunter/marksmanship/_aimed_shot.go similarity index 95% rename from sim/hunter/marksmanship/aimed_shot.go rename to sim/hunter/marksmanship/_aimed_shot.go index fe2ef2985f..67d0661c9f 100644 --- a/sim/hunter/marksmanship/aimed_shot.go +++ b/sim/hunter/marksmanship/_aimed_shot.go @@ -3,8 +3,8 @@ package marksmanship import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/hunter" ) func (mmHunter *MarksmanshipHunter) registerAimedShotSpell() { diff --git a/sim/hunter/marksmanship/chimera_shot.go b/sim/hunter/marksmanship/_chimera_shot.go similarity index 95% rename from sim/hunter/marksmanship/chimera_shot.go rename to sim/hunter/marksmanship/_chimera_shot.go index 3cec6f916c..03a336776b 100644 --- a/sim/hunter/marksmanship/chimera_shot.go +++ b/sim/hunter/marksmanship/_chimera_shot.go @@ -3,8 +3,8 @@ package marksmanship import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/hunter" ) func (mmHunter *MarksmanshipHunter) registerChimeraShotSpell() { diff --git a/sim/hunter/marksmanship/marksmanship_test.go b/sim/hunter/marksmanship/_marksmanship_test.go similarity index 83% rename from sim/hunter/marksmanship/marksmanship_test.go rename to sim/hunter/marksmanship/_marksmanship_test.go index ac22176995..ad1c863350 100644 --- a/sim/hunter/marksmanship/marksmanship_test.go +++ b/sim/hunter/marksmanship/_marksmanship_test.go @@ -3,9 +3,9 @@ package marksmanship import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -21,7 +21,7 @@ func TestMM(t *testing.T) { GearSet: core.GetGearSet("../../../ui/hunter/marksmanship/gear_sets", "preraid_mm"), Talents: MMTalents, Glyphs: MMGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumes, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBasic}, Rotation: core.GetAplRotation("../../../ui/hunter/marksmanship/apls", "mm"), OtherRotations: []core.RotationCombo{ @@ -59,7 +59,7 @@ func BenchmarkSimulate(b *testing.B) { Race: proto.Race_RaceOrc, Class: proto.Class_ClassHunter, Equipment: core.GetGearSet("../../../ui/hunter/marksmanship/gear_sets", "preraid_mm").GearSet, - Consumes: FullConsumes, + Consumables: FullConsumes, Spec: PlayerOptionsBasic, Glyphs: MMGlyphs, TalentsString: MMTalents, @@ -81,17 +81,13 @@ func BenchmarkSimulate(b *testing.B) { core.RaidBenchmark(b, rsr) } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, +var FullConsumes = &proto.ConsumesSpec{ + FlaskId: 58087, + PotId: 58145, } var MMTalents = "032002-2302320032120231221-03" -var MMGlyphs = &proto.Glyphs{ - Prime1: int32(proto.HunterPrimeGlyph_GlyphOfArcaneShot), - Prime2: int32(proto.HunterPrimeGlyph_GlyphOfRapidFire), - Prime3: int32(proto.HunterPrimeGlyph_HunterPrimeGlyphNone), -} +var MMGlyphs = &proto.Glyphs{} var FerocityTalents = &proto.HunterPetTalents{ SerpentSwiftness: 2, Dive: true, diff --git a/sim/hunter/marksmanship/marksmanship.go b/sim/hunter/marksmanship/marksmanship.go index cfb6eaf08f..55e6ad468c 100644 --- a/sim/hunter/marksmanship/marksmanship.go +++ b/sim/hunter/marksmanship/marksmanship.go @@ -1,9 +1,9 @@ package marksmanship import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/hunter" ) func RegisterMarksmanshipHunter() { @@ -78,8 +78,8 @@ func (mmHunter *MarksmanshipHunter) Initialize() { FloatValue: 0.15, }) - mmHunter.registerAimedShotSpell() - mmHunter.registerChimeraShotSpell() + // mmHunter.registerAimedShotSpell() + // mmHunter.registerChimeraShotSpell() mmHunter.applyMastery() } diff --git a/sim/hunter/raptor_strike.go b/sim/hunter/raptor_strike.go index 57813a2fe2..f318110f8c 100644 --- a/sim/hunter/raptor_strike.go +++ b/sim/hunter/raptor_strike.go @@ -3,7 +3,7 @@ package hunter import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (hunter *Hunter) registerRaptorStrikeSpell() { diff --git a/sim/hunter/survival/TestSV.results b/sim/hunter/survival/TestSV.results index 079b2ff354..f52cb4a465 100644 --- a/sim/hunter/survival/TestSV.results +++ b/sim/hunter/survival/TestSV.results @@ -767,8 +767,8 @@ dps_results: { dps_results: { key: "TestSV-AllItems-Gladiator'sPursuit" value: { - dps: 36291.73887 - tps: 32998.23327 + dps: 40833.38297 + tps: 37108.11473 } } dps_results: { diff --git a/sim/hunter/survival/black_arrow.go b/sim/hunter/survival/_black_arrow.go similarity index 96% rename from sim/hunter/survival/black_arrow.go rename to sim/hunter/survival/_black_arrow.go index 4cbb113d4a..20d581b513 100644 --- a/sim/hunter/survival/black_arrow.go +++ b/sim/hunter/survival/_black_arrow.go @@ -3,8 +3,8 @@ package survival import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/hunter" ) func (svHunter *SurvivalHunter) registerBlackArrowSpell(timer *core.Timer) { diff --git a/sim/hunter/survival/explosive_shot.go b/sim/hunter/survival/_explosive_shot.go similarity index 97% rename from sim/hunter/survival/explosive_shot.go rename to sim/hunter/survival/_explosive_shot.go index 089d9f489b..55ab78715f 100644 --- a/sim/hunter/survival/explosive_shot.go +++ b/sim/hunter/survival/_explosive_shot.go @@ -3,8 +3,8 @@ package survival import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/hunter" ) func (svHunter *SurvivalHunter) registerExplosiveShotSpell() { diff --git a/sim/hunter/survival/survival_test.go b/sim/hunter/survival/_survival_test.go similarity index 80% rename from sim/hunter/survival/survival_test.go rename to sim/hunter/survival/_survival_test.go index 61d50175dc..0188e7f188 100644 --- a/sim/hunter/survival/survival_test.go +++ b/sim/hunter/survival/_survival_test.go @@ -3,9 +3,9 @@ package survival import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -21,7 +21,7 @@ func TestSV(t *testing.T) { GearSet: core.GetGearSet("../../../ui/hunter/survival/gear_sets", "p4_sv"), Talents: SVTalents, Glyphs: SVGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBasic}, Rotation: core.GetAplRotation("../../../ui/hunter/survival/apls", "sv"), OtherRotations: []core.RotationCombo{ @@ -58,7 +58,7 @@ func BenchmarkSimulate(b *testing.B) { Race: proto.Race_RaceOrc, Class: proto.Class_ClassHunter, Equipment: core.GetGearSet("../../ui/hunter/survival/gear_sets", "preraid_sv").GearSet, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, Spec: PlayerOptionsBasic, Glyphs: SVGlyphs, TalentsString: SVTalents, @@ -80,16 +80,20 @@ func BenchmarkSimulate(b *testing.B) { core.RaidBenchmark(b, rsr) } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, +// export const DefaultConsumables = ConsumesSpec.create({ +// flaskId: 58087, // Flask of the Winds +// foodId: 62290, // Seafood Magnifique Feast +// potId: 58145, // Potion of the Tol'vir +// prepotId: 58145, // Potion of the Tol'vir +// conjuredId: 5512, // Conjured Healthstone +// tinkerId: 82174, // Synapse Springs +// }); +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, + PotId: 58145, } var SVTalents = "03-2302-23203003023022121311" -var SVGlyphs = &proto.Glyphs{ - Prime1: int32(proto.HunterPrimeGlyph_GlyphOfExplosiveShot), - Prime2: int32(proto.HunterPrimeGlyph_GlyphOfKillShot), - Prime3: int32(proto.HunterPrimeGlyph_GlyphOfSerpentSting), -} +var SVGlyphs = &proto.Glyphs{} var FerocityTalents = &proto.HunterPetTalents{ SerpentSwiftness: 2, diff --git a/sim/hunter/survival/survival.go b/sim/hunter/survival/survival.go index 0195206200..30e6c6f482 100644 --- a/sim/hunter/survival/survival.go +++ b/sim/hunter/survival/survival.go @@ -1,10 +1,10 @@ package survival import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/hunter" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/hunter" ) func RegisterSurvivalHunter() { @@ -28,8 +28,8 @@ func (hunter *SurvivalHunter) Initialize() { // Initialize global Hunter spells hunter.Hunter.Initialize() - hunter.registerExplosiveShotSpell() - hunter.registerBlackArrowSpell(hunter.FireTrapTimer) + // hunter.registerExplosiveShotSpell() + // hunter.registerBlackArrowSpell(hunter.FireTrapTimer) // Apply SV Hunter mastery schoolsAffectedBySurvivalMastery := []stats.SchoolIndex{ stats.SchoolIndexNature, diff --git a/sim/hunter/wotlk_items.go b/sim/hunter/wotlk_items.go deleted file mode 100644 index 99cc68c75d..0000000000 --- a/sim/hunter/wotlk_items.go +++ /dev/null @@ -1,133 +0,0 @@ -package hunter - -import ( - "time" - - "github.com/wowsims/cata/sim/common/wotlk" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" -) - -var ItemSetAhnKaharBloodHuntersBattlegear = core.NewItemSet(core.ItemSet{ - Name: "Ahn'Kahar Blood Hunter's Battlegear", - Bonuses: map[int32]core.ApplySetBonus{ - 2: func(agent core.Agent, setBonusAura *core.Aura) { - hunter := agent.(HunterAgent).GetHunter() - - procAura := hunter.RegisterAura(core.Aura{ - Label: "AhnKahar 2pc Proc", - ActionID: core.ActionID{SpellID: 70727}, - Duration: time.Second * 10, - OnGain: func(aura *core.Aura, sim *core.Simulation) { - aura.Unit.PseudoStats.DamageDealtMultiplier *= 1.15 - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - aura.Unit.PseudoStats.DamageDealtMultiplier /= 1.15 - }, - }) - - setBonusAura.AttachProcTrigger(core.ProcTrigger{ - Name: "AhnKahar 2pc", - ProcChance: 0.05, - ProcMask: core.ProcMaskRangedAuto, - Callback: core.CallbackOnSpellHitDealt, - Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - procAura.Activate(sim) - }, - }) - }, - 4: func(agent core.Agent, setBonusAura *core.Aura) { - hunter := agent.(HunterAgent).GetHunter() - - var curBonus stats.Stats - procAura := hunter.RegisterAura(core.Aura{ - Label: "AhnKahar 4pc Proc", - ActionID: core.ActionID{SpellID: 70730}, - Duration: time.Second * 10, - OnGain: func(aura *core.Aura, sim *core.Simulation) { - curBonus = stats.Stats{ - stats.AttackPower: aura.Unit.GetStat(stats.AttackPower) * 0.1, - stats.RangedAttackPower: aura.Unit.GetStat(stats.RangedAttackPower) * 0.1, - } - - aura.Unit.AddStatsDynamic(sim, curBonus) - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - aura.Unit.AddStatsDynamic(sim, curBonus.Invert()) - }, - }) - - setBonusAura.AttachProcTrigger(core.ProcTrigger{ - Name: "AhnKahar 4pc", - ProcChance: 0.05, - ClassSpellMask: HunterSpellSerpentSting, - Callback: core.CallbackOnPeriodicDamageDealt, - Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - procAura.Activate(sim) - }, - }) - }, - }, -}) - -func init() { - - wotlk.NewItemEffectWithHeroic(func(isHeroic bool) { - name := "Zod's Repeating Longbow" - itemID := int32(50034) - procChance := 0.04 - if isHeroic { - name += " H" - itemID = 50638 - procChance = 0.05 - } - - core.NewItemEffect(itemID, func(agent core.Agent) { - if agent.GetCharacter().Class != proto.Class_ClassHunter { - return - } - - hunter := agent.(HunterAgent).GetHunter() - - var rangedSpell *core.Spell - initSpell := func() { - rangedSpell = hunter.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{ItemID: itemID}, - SpellSchool: core.SpellSchoolPhysical, - ProcMask: core.ProcMaskRangedAuto, - Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagNoOnCastComplete, - - DamageMultiplier: 0.5, - CritMultiplier: hunter.AutoAttacks.RangedConfig().CritMultiplier, - ThreatMultiplier: 1, - - BonusCoefficient: 1, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - baseDamage := hunter.RangedWeaponDamage(sim, spell.RangedAttackPower(target)) - - spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeRangedHitAndCrit) - }, - }) - } - - triggerAura := core.MakeProcTriggerAura(&hunter.Unit, core.ProcTrigger{ - Name: name + " Trigger", - Callback: core.CallbackOnSpellHitDealt, - ProcMask: core.ProcMaskRanged, - Outcome: core.OutcomeLanded, - ProcChance: procChance, - ActionID: core.ActionID{ItemID: itemID}, - Handler: func(sim *core.Simulation, _ *core.Spell, result *core.SpellResult) { - rangedSpell.Cast(sim, result.Target) - }, - }) - triggerAura.OnInit = func(aura *core.Aura, sim *core.Simulation) { - initSpell() - } - - }) - }) - -} diff --git a/sim/lib/library.go b/sim/lib/library.go index 64dc095ee6..416c5ca188 100644 --- a/sim/lib/library.go +++ b/sim/lib/library.go @@ -10,10 +10,10 @@ import ( "log" "unsafe" - "github.com/wowsims/cata/sim" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" "google.golang.org/protobuf/encoding/protojson" goproto "google.golang.org/protobuf/proto" ) @@ -113,11 +113,8 @@ func getDatabase(itemIds *int32, numItems int32, enchantIds *int32, numEnchants WeaponType: item.WeaponType, HandType: item.HandType, RangedWeaponType: item.RangedWeaponType, - Stats: item.Stats[:], GemSockets: item.GemSockets, SocketBonus: item.SocketBonus[:], - WeaponDamageMin: item.WeaponDamageMin, - WeaponDamageMax: item.WeaponDamageMax, WeaponSpeed: item.SwingSpeed, SetName: item.SetName, SetId: item.SetID, diff --git a/sim/mage/apl_values.go b/sim/mage/_apl_values.go similarity index 94% rename from sim/mage/apl_values.go rename to sim/mage/_apl_values.go index 32bb0bf984..b105bac394 100644 --- a/sim/mage/apl_values.go +++ b/sim/mage/_apl_values.go @@ -1,8 +1,8 @@ package mage import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (mage *Mage) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/mage/arcane_blast.go b/sim/mage/_arcane_blast.go similarity index 97% rename from sim/mage/arcane_blast.go rename to sim/mage/_arcane_blast.go index 7f522d2f6b..8514efc61e 100644 --- a/sim/mage/arcane_blast.go +++ b/sim/mage/_arcane_blast.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (mage *Mage) registerArcaneBlastSpell() { diff --git a/sim/mage/arcane_explosion.go b/sim/mage/_arcane_explosion.go similarity index 96% rename from sim/mage/arcane_explosion.go rename to sim/mage/_arcane_explosion.go index 3f7b25aec0..ba77841819 100644 --- a/sim/mage/arcane_explosion.go +++ b/sim/mage/_arcane_explosion.go @@ -1,7 +1,7 @@ package mage import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerArcaneExplosionSpell() { diff --git a/sim/mage/blast_wave.go b/sim/mage/_blast_wave.go similarity index 97% rename from sim/mage/blast_wave.go rename to sim/mage/_blast_wave.go index c4e328fc8e..1aa05cc8ab 100644 --- a/sim/mage/blast_wave.go +++ b/sim/mage/_blast_wave.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerBlastWaveSpell() { diff --git a/sim/mage/blizzard.go b/sim/mage/_blizzard.go similarity index 98% rename from sim/mage/blizzard.go rename to sim/mage/_blizzard.go index 7fa08df38f..b45f339b0d 100644 --- a/sim/mage/blizzard.go +++ b/sim/mage/_blizzard.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerBlizzardSpell() { diff --git a/sim/mage/combustion.go b/sim/mage/_combustion.go similarity index 98% rename from sim/mage/combustion.go rename to sim/mage/_combustion.go index fdaff14af4..6c6c1db0f9 100644 --- a/sim/mage/combustion.go +++ b/sim/mage/_combustion.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (mage *Mage) registerCombustionSpell() { diff --git a/sim/mage/flame_orb.go b/sim/mage/_flame_orb.go similarity index 98% rename from sim/mage/flame_orb.go rename to sim/mage/_flame_orb.go index b2db9b5dbe..b6b2799059 100644 --- a/sim/mage/flame_orb.go +++ b/sim/mage/_flame_orb.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (mage *Mage) registerFlameOrbSpell() { diff --git a/sim/mage/focus_magic.go b/sim/mage/_focus_magic.go similarity index 95% rename from sim/mage/focus_magic.go rename to sim/mage/_focus_magic.go index 45bbe0f8e1..44c425fa9c 100644 --- a/sim/mage/focus_magic.go +++ b/sim/mage/_focus_magic.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) applyFocusMagic() { diff --git a/sim/mage/frostbolt.go b/sim/mage/_frostbolt.go similarity index 97% rename from sim/mage/frostbolt.go rename to sim/mage/_frostbolt.go index c21e61aaa3..4795efe248 100644 --- a/sim/mage/frostbolt.go +++ b/sim/mage/_frostbolt.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerFrostboltSpell() { diff --git a/sim/mage/frostfire_bolt.go b/sim/mage/_frostfire_bolt.go similarity index 96% rename from sim/mage/frostfire_bolt.go rename to sim/mage/_frostfire_bolt.go index 9e8c3969b0..3a04c31906 100644 --- a/sim/mage/frostfire_bolt.go +++ b/sim/mage/_frostfire_bolt.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (mage *Mage) registerFrostfireBoltSpell() { diff --git a/sim/mage/frostfire_orb.go b/sim/mage/_frostfire_orb.go similarity index 97% rename from sim/mage/frostfire_orb.go rename to sim/mage/_frostfire_orb.go index bbfde416fe..dbc562b85a 100644 --- a/sim/mage/frostfire_orb.go +++ b/sim/mage/_frostfire_orb.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (mage *Mage) registerFrostfireOrbSpell() { diff --git a/sim/mage/glyphs.go b/sim/mage/_glyphs.go similarity index 95% rename from sim/mage/glyphs.go rename to sim/mage/_glyphs.go index b28082545e..fa948db37c 100644 --- a/sim/mage/glyphs.go +++ b/sim/mage/_glyphs.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (mage *Mage) applyGlyphs() { @@ -107,7 +107,7 @@ func (mage *Mage) applyGlyphs() { }) } - if mage.HasMajorGlyph(proto.MageMajorGlyph_GlyphOfDragonSBreath) { + if mage.HasMajorGlyph(proto.MageMajorGlyph_GlyphOfDragonsBreath) { mage.AddStaticMod(core.SpellModConfig{ Kind: core.SpellMod_Cooldown_Flat, ClassMask: MageSpellDragonsBreath, diff --git a/sim/mage/mana_gems.go b/sim/mage/_mana_gems.go similarity index 98% rename from sim/mage/mana_gems.go rename to sim/mage/_mana_gems.go index f48f8fe25d..253d47f1df 100644 --- a/sim/mage/mana_gems.go +++ b/sim/mage/_mana_gems.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerManaGemsCD() { diff --git a/sim/mage/talents_arcane.go b/sim/mage/_talents_arcane.go similarity index 99% rename from sim/mage/talents_arcane.go rename to sim/mage/_talents_arcane.go index 4515e268f5..e6d2829461 100644 --- a/sim/mage/talents_arcane.go +++ b/sim/mage/_talents_arcane.go @@ -1,11 +1,11 @@ package mage import ( - //"github.com/wowsims/cata/sim/core/proto" + //"github.com/wowsims/mop/sim/core/proto" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) ApplyArcaneTalents() { diff --git a/sim/mage/talents_fire.go b/sim/mage/_talents_fire.go similarity index 98% rename from sim/mage/talents_fire.go rename to sim/mage/_talents_fire.go index b86c8be06d..59d66cbe78 100644 --- a/sim/mage/talents_fire.go +++ b/sim/mage/_talents_fire.go @@ -3,12 +3,12 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) -//"github.com/wowsims/cata/sim/core/proto" +//"github.com/wowsims/mop/sim/core/proto" func (mage *Mage) ApplyFireTalents() { // Cooldowns/Special Implementations diff --git a/sim/mage/talents_frost.go b/sim/mage/_talents_frost.go similarity index 98% rename from sim/mage/talents_frost.go rename to sim/mage/_talents_frost.go index 5517d52bab..e715e40653 100644 --- a/sim/mage/talents_frost.go +++ b/sim/mage/_talents_frost.go @@ -1,12 +1,12 @@ package mage import ( - //"github.com/wowsims/cata/sim/core/proto" + //"github.com/wowsims/mop/sim/core/proto" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (mage *Mage) ApplyFrostTalents() { diff --git a/sim/mage/arcane/arcane_test.go b/sim/mage/arcane/_arcane_test.go similarity index 65% rename from sim/mage/arcane/arcane_test.go rename to sim/mage/arcane/_arcane_test.go index 390569fc80..076069f4dd 100644 --- a/sim/mage/arcane/arcane_test.go +++ b/sim/mage/arcane/_arcane_test.go @@ -3,9 +3,9 @@ package arcane import ( "testing" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -17,10 +17,10 @@ func TestArcane(t *testing.T) { Class: proto.Class_ClassMage, Race: proto.Race_RaceTroll, - GearSet: core.GetGearSet("../../../ui/mage/arcane/gear_sets", "p3"), - Talents: ArcaneTalents, - Glyphs: ArcaneGlyphs, - Consumes: FullArcaneConsumes, + GearSet: core.GetGearSet("../../../ui/mage/arcane/gear_sets", "p3"), + Talents: ArcaneTalents, + Glyphs: ArcaneGlyphs, + Consumables: FullArcaneConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Arcane", SpecOptions: PlayerOptionsArcane}, Rotation: core.GetAplRotation("../../../ui/mage/arcane/apls", "arcane"), @@ -47,9 +47,6 @@ var ItemFilter = core.ItemFilter{ var ArcaneTalents = "303322021230122210121-23-03" var ArcaneGlyphs = &proto.Glyphs{ - Prime1: int32(proto.MagePrimeGlyph_GlyphOfArcaneMissiles), - Prime2: int32(proto.MagePrimeGlyph_GlyphOfArcaneBlast), - Prime3: int32(proto.MagePrimeGlyph_GlyphOfMageArmor), Major1: int32(proto.MageMajorGlyph_GlyphOfEvocation), Major2: int32(proto.MageMajorGlyph_GlyphOfArcanePower), Major3: int32(proto.MageMajorGlyph_GlyphOfManaShield), @@ -64,10 +61,10 @@ var PlayerOptionsArcane = &proto.Player_ArcaneMage{ }, } -var FullArcaneConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeafoodFeast, - DefaultPotion: proto.Potions_VolcanicPotion, - PrepopPotion: proto.Potions_VolcanicPotion, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullArcaneConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62290, // Seafood Magnifique Feast + PotId: 58091, // Volcanic Potion + PrepotId: 58091, // Volcanic Potion + TinkerId: 82174, // Synapse Springs } diff --git a/sim/mage/arcane/arcane.go b/sim/mage/arcane/arcane.go index a0eb59274e..3a3464bb93 100644 --- a/sim/mage/arcane/arcane.go +++ b/sim/mage/arcane/arcane.go @@ -1,9 +1,9 @@ package arcane import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/mage" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/mage" ) func RegisterArcaneMage() { diff --git a/sim/mage/arcane/arcane_barrage.go b/sim/mage/arcane/arcane_barrage.go index af8572d052..9cab856292 100644 --- a/sim/mage/arcane/arcane_barrage.go +++ b/sim/mage/arcane/arcane_barrage.go @@ -3,8 +3,8 @@ package arcane import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/mage" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/mage" ) func (arcane *ArcaneMage) registerArcaneBarrageSpell() { diff --git a/sim/mage/arcane/dragonwrath.go b/sim/mage/arcane/dragonwrath.go index 600f29b906..9f8b80ebc0 100644 --- a/sim/mage/arcane/dragonwrath.go +++ b/sim/mage/arcane/dragonwrath.go @@ -1,8 +1,8 @@ package arcane import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/mage/arcane_missiles.go b/sim/mage/arcane_missiles.go index 20a21a6a3a..8c4f039cb0 100644 --- a/sim/mage/arcane_missiles.go +++ b/sim/mage/arcane_missiles.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) OutcomeArcaneMissiles(sim *core.Simulation, result *core.SpellResult, attackTable *core.AttackTable) { diff --git a/sim/mage/deep_freeze.go b/sim/mage/deep_freeze.go index 5c0312aef0..7022424c5a 100644 --- a/sim/mage/deep_freeze.go +++ b/sim/mage/deep_freeze.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerDeepFreezeSpell() { diff --git a/sim/mage/dragons_breath.go b/sim/mage/dragons_breath.go index dd05bba34d..af30da17a2 100644 --- a/sim/mage/dragons_breath.go +++ b/sim/mage/dragons_breath.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerDragonsBreathSpell() { diff --git a/sim/mage/evocation.go b/sim/mage/evocation.go index e8b387dc41..bef56ba0d7 100644 --- a/sim/mage/evocation.go +++ b/sim/mage/evocation.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerEvocation() { diff --git a/sim/mage/fire/TestFire.results b/sim/mage/fire/TestFire.results index 1ed6b83930..c97a48b53e 100644 --- a/sim/mage/fire/TestFire.results +++ b/sim/mage/fire/TestFire.results @@ -3,8 +3,8 @@ character_stats_results: { value: { final_stats: 637.35 final_stats: 647.85 - final_stats: 9279.9 - final_stats: 8070.3 + final_stats: 9332.4 + final_stats: 8500.275 final_stats: 266 final_stats: 1742 final_stats: 2176 @@ -15,7 +15,7 @@ character_stats_results: { final_stats: 796 final_stats: 0 final_stats: 0 - final_stats: 12119.03 + final_stats: 12403.9025 final_stats: 0 final_stats: 0 final_stats: 0 @@ -25,2348 +25,2348 @@ character_stats_results: { final_stats: 0 final_stats: 10254 final_stats: 0 - final_stats: 166771.6 - final_stats: 140318.5 + final_stats: 167506.6 + final_stats: 146768.125 final_stats: 1196.9 final_stats: 14.50352 final_stats: 17.00412 final_stats: 20.59144 - final_stats: 33.15039 + final_stats: 33.79535 final_stats: 5 } } dps_results: { key: "TestFire-AllItems-AgileShadowspiritDiamond" value: { - dps: 49959.72518 - tps: 45098.62048 + dps: 52873.34901 + tps: 47706.39613 } } dps_results: { key: "TestFire-AllItems-Althor'sAbacus-50366" value: { - dps: 45698.10269 - tps: 41206.00732 + dps: 48757.61546 + tps: 44006.71243 } } dps_results: { key: "TestFire-AllItems-AncientPetrifiedSeed-69001" value: { - dps: 45912.84054 - tps: 41401.53291 + dps: 48432.48408 + tps: 43753.05312 } } dps_results: { key: "TestFire-AllItems-Anhuur'sHymnal-55889" value: { - dps: 45798.95261 - tps: 41279.78833 + dps: 48852.73199 + tps: 44097.35048 } } dps_results: { key: "TestFire-AllItems-Anhuur'sHymnal-56407" value: { - dps: 45731.94945 - tps: 41192.3089 + dps: 48919.20098 + tps: 44169.01465 } } dps_results: { key: "TestFire-AllItems-ApparatusofKhaz'goroth-68972" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ApparatusofKhaz'goroth-69113" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ArrowofTime-72897" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-AustereShadowspiritDiamond" value: { - dps: 48978.39829 - tps: 44206.54638 + dps: 51815.23833 + tps: 46727.51749 } } dps_results: { key: "TestFire-AllItems-BaubleofTrueBlood-50726" value: { - dps: 44869.59494 - tps: 40433.61992 - hps: 116.56355 + dps: 47910.41948 + tps: 43217.50429 + hps: 119.51907 } } dps_results: { key: "TestFire-AllItems-BedrockTalisman-58182" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BellofEnragingResonance-59326" value: { - dps: 47718.30371 - tps: 43021.76447 + dps: 50498.05925 + tps: 45497.02147 } } dps_results: { key: "TestFire-AllItems-BellofEnragingResonance-65053" value: { - dps: 48079.2604 - tps: 43348.9649 + dps: 50673.95597 + tps: 45698.21345 } } dps_results: { key: "TestFire-AllItems-BindingPromise-67037" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Blood-SoakedAleMug-63843" value: { - dps: 45337.77514 - tps: 40854.61814 + dps: 48559.57071 + tps: 43826.73374 } } dps_results: { key: "TestFire-AllItems-BloodofIsiset-55995" value: { - dps: 45408.01111 - tps: 40919.94047 + dps: 48617.51474 + tps: 43903.1486 } } dps_results: { key: "TestFire-AllItems-BloodofIsiset-56414" value: { - dps: 45502.04383 - tps: 41003.6539 + dps: 48698.66189 + tps: 43978.7249 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sBadgeofConquest-64687" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47342.64941 + tps: 42740.87991 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sBadgeofDominance-64688" value: { - dps: 46297.85056 - tps: 41676.35397 + dps: 48681.53265 + tps: 43941.66488 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sBadgeofVictory-64689" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sEmblemofCruelty-64740" value: { - dps: 45842.0816 - tps: 41395.32572 + dps: 48678.66953 + tps: 43943.01634 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sEmblemofMeditation-64741" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sEmblemofTenacity-64742" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sInsigniaofConquest-64761" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sInsigniaofDominance-64762" value: { - dps: 46217.22327 - tps: 41614.6299 + dps: 48919.63313 + tps: 44168.58404 } } dps_results: { key: "TestFire-AllItems-BloodthirstyGladiator'sInsigniaofVictory-64763" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Bone-LinkFetish-77210" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Bone-LinkFetish-77982" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Bone-LinkFetish-78002" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BottledLightning-66879" value: { - dps: 46310.1686 - tps: 41844.14341 + dps: 48774.62785 + tps: 43984.39854 } } dps_results: { key: "TestFire-AllItems-BottledWishes-77114" value: { - dps: 48176.01051 - tps: 43499.57264 + dps: 50681.86097 + tps: 45758.99521 } } dps_results: { key: "TestFire-AllItems-BracingShadowspiritDiamond" value: { - dps: 49214.8131 - tps: 43552.21724 + dps: 52228.52256 + tps: 46184.07561 } } dps_results: { key: "TestFire-AllItems-Brawler'sTrophy-232015" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-BurningShadowspiritDiamond" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sBadgeofConquest-73648" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sBadgeofDominance-73498" value: { - dps: 46974.4431 - tps: 42292.85831 + dps: 49481.75463 + tps: 44627.88363 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sBadgeofVictory-73496" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sInsigniaofConquest-73643" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sInsigniaofDominance-73497" value: { - dps: 46915.43012 - tps: 42203.7872 + dps: 49672.02771 + tps: 44824.08029 } } dps_results: { key: "TestFire-AllItems-CataclysmicGladiator'sInsigniaofVictory-73491" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ChaoticShadowspiritDiamond" value: { - dps: 50189.89738 - tps: 45320.11671 + dps: 52902.06703 + tps: 47698.94817 } } dps_results: { key: "TestFire-AllItems-Coren'sChilledChromiumCoaster-232012" value: { - dps: 45858.63361 - tps: 41400.64696 + dps: 48612.44503 + tps: 43854.20931 } } dps_results: { key: "TestFire-AllItems-CoreofRipeness-58184" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 48963.46091 + tps: 44273.67484 } } dps_results: { key: "TestFire-AllItems-CorpseTongueCoin-50349" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CrecheoftheFinalDragon-77205" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CrecheoftheFinalDragon-77972" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CrecheoftheFinalDragon-77992" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CrushingWeight-59506" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CrushingWeight-65118" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-CunningoftheCruel-77208" value: { - dps: 48725.05581 - tps: 44103.76431 + dps: 51694.2078 + tps: 46703.74325 } } dps_results: { key: "TestFire-AllItems-CunningoftheCruel-77980" value: { - dps: 48386.06474 - tps: 43728.62388 + dps: 51253.19571 + tps: 46327.2339 } } dps_results: { key: "TestFire-AllItems-CunningoftheCruel-78000" value: { - dps: 49101.83313 - tps: 44419.5351 + dps: 52171.21196 + tps: 47104.71272 } } dps_results: { key: "TestFire-AllItems-DarkmoonCard:Earthquake-62048" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-DarkmoonCard:Hurricane-62049" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-DarkmoonCard:Hurricane-62051" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-DarkmoonCard:Tsunami-62050" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-DarkmoonCard:Volcano-62047" value: { - dps: 48100.24103 - tps: 43467.36265 + dps: 51356.69409 + tps: 46405.23246 } } dps_results: { key: "TestFire-AllItems-DarkwalkerIdolofRage-92118" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-DarkwalkerStoneofRage-92117" value: { - dps: 46035.41943 - tps: 41492.98748 + dps: 49204.45723 + tps: 44512.00287 } } dps_results: { key: "TestFire-AllItems-Deathbringer'sWill-50363" value: { - dps: 45394.52772 - tps: 40904.6112 + dps: 48577.47383 + tps: 43789.6614 } } dps_results: { key: "TestFire-AllItems-DelivererIdolofDestruction-92113" value: { - dps: 46779.66473 - tps: 42310.93185 + dps: 49261.09221 + tps: 44589.12572 } } dps_results: { key: "TestFire-AllItems-DelivererStoneofDestruction-92151" value: { - dps: 47941.85169 - tps: 43209.16831 + dps: 50585.4254 + tps: 45710.48836 } } dps_results: { key: "TestFire-AllItems-DelivererStoneofWisdom-92115" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-DestructiveShadowspiritDiamond" value: { - dps: 49317.35639 - tps: 44540.35954 + dps: 51882.60055 + tps: 46816.61009 } } dps_results: { key: "TestFire-AllItems-DislodgedForeignObject-50348" value: { - dps: 46350.88207 - tps: 41828.21457 + dps: 48953.30219 + tps: 44162.78148 } } dps_results: { key: "TestFire-AllItems-Dwyer'sCaber-70141" value: { - dps: 46115.39068 - tps: 41609.01425 + dps: 48783.38844 + tps: 44119.76054 } } dps_results: { key: "TestFire-AllItems-EffulgentShadowspiritDiamond" value: { - dps: 48978.39829 - tps: 44206.54638 + dps: 51815.23833 + tps: 46727.51749 } } dps_results: { key: "TestFire-AllItems-ElectrosparkHeartstarter-67118" value: { - dps: 45595.81041 - tps: 41082.25929 + dps: 48164.27788 + tps: 43442.17503 } } dps_results: { key: "TestFire-AllItems-EmberShadowspiritDiamond" value: { - dps: 49214.8131 - tps: 44438.75272 + dps: 52228.52256 + tps: 47124.30232 } } dps_results: { key: "TestFire-AllItems-EnigmaticShadowspiritDiamond" value: { - dps: 49317.35639 - tps: 44540.35954 + dps: 51882.60055 + tps: 46816.61009 } } dps_results: { key: "TestFire-AllItems-EnlightenedIdolofDestruction-92144" value: { - dps: 46336.72487 - tps: 41849.8312 + dps: 49638.4323 + tps: 44773.00454 } } dps_results: { key: "TestFire-AllItems-EnlightenedStoneofDestruction-92143" value: { - dps: 47985.67391 - tps: 43207.66394 + dps: 50398.65278 + tps: 45561.47977 } } dps_results: { key: "TestFire-AllItems-EssenceoftheCyclone-59473" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-EssenceoftheCyclone-65140" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-EssenceoftheEternalFlame-69002" value: { - dps: 45912.84054 - tps: 41401.53291 + dps: 48432.48408 + tps: 43753.05312 } } dps_results: { key: "TestFire-AllItems-EternalShadowspiritDiamond" value: { - dps: 48978.39829 - tps: 44206.54638 + dps: 51815.23833 + tps: 46727.51749 } } dps_results: { key: "TestFire-AllItems-EyeofUnmaking-77200" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-EyeofUnmaking-77977" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-EyeofUnmaking-77997" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-FallofMortality-59500" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-FallofMortality-65124" value: { - dps: 46725.99745 - tps: 42049.67516 + dps: 49565.24792 + tps: 44709.37909 } } dps_results: { key: "TestFire-AllItems-FieryQuintessence-69000" value: { - dps: 47125.66415 - tps: 42533.6629 + dps: 49839.64209 + tps: 45071.08481 } } dps_results: { key: "TestFire-AllItems-Figurine-DemonPanther-52199" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-Figurine-DreamOwl-52354" value: { - dps: 46403.67772 - tps: 41778.62756 + dps: 48772.78775 + tps: 44119.6803 } } dps_results: { key: "TestFire-AllItems-Figurine-EarthenGuardian-52352" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Figurine-JeweledSerpent-52353" value: { - dps: 47839.56804 - tps: 43064.17318 + dps: 49911.11534 + tps: 45045.88082 } } dps_results: { key: "TestFire-AllItems-Figurine-KingofBoars-52351" value: { - dps: 45502.04383 - tps: 41003.6539 + dps: 48049.18398 + tps: 43383.27613 } } dps_results: { key: "TestFire-AllItems-FirehawkRobesofConflagration" value: { - dps: 40698.84529 - tps: 36316.54605 + dps: 43885.88368 + tps: 39150.11384 } } dps_results: { key: "TestFire-AllItems-Firelord'sVestments" value: { - dps: 37979.85894 - tps: 34439.52753 + dps: 41398.07652 + tps: 37483.83922 } } dps_results: { key: "TestFire-AllItems-FireoftheDeep-77117" value: { - dps: 46082.88224 - tps: 41559.5469 + dps: 48855.26693 + tps: 44193.41872 } } dps_results: { key: "TestFire-AllItems-FleetShadowspiritDiamond" value: { - dps: 49063.06276 - tps: 44252.29683 + dps: 51949.0125 + tps: 46858.18777 } } dps_results: { key: "TestFire-AllItems-FluidDeath-58181" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ForestwalkerIdolofRage-92142" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-ForestwalkerStoneofRage-92141" value: { - dps: 45907.81995 - tps: 41404.52255 + dps: 48783.76129 + tps: 44040.8706 } } dps_results: { key: "TestFire-AllItems-ForlornShadowspiritDiamond" value: { - dps: 49214.8131 - tps: 44438.75272 + dps: 52228.52256 + tps: 47124.30232 } } dps_results: { key: "TestFire-AllItems-FoulGiftoftheDemonLord-72898" value: { - dps: 48150.21211 - tps: 43396.80911 + dps: 51090.86372 + tps: 46104.56293 } } dps_results: { key: "TestFire-AllItems-FuryofAngerforge-59461" value: { - dps: 46048.84546 - tps: 41544.48518 + dps: 48540.11348 + tps: 43774.31964 } } dps_results: { key: "TestFire-AllItems-GaleofShadows-56138" value: { - dps: 46432.67714 - tps: 41959.28147 + dps: 49815.54965 + tps: 44933.98104 } } dps_results: { key: "TestFire-AllItems-GaleofShadows-56462" value: { - dps: 46717.89446 - tps: 42105.53618 + dps: 49844.28338 + tps: 45118.44318 } } dps_results: { key: "TestFire-AllItems-GearDetector-61462" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-GlowingTwilightScale-54589" value: { - dps: 45747.683 - tps: 41250.35441 + dps: 48824.41173 + tps: 44074.8949 } } dps_results: { key: "TestFire-AllItems-GraceoftheHerald-55266" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-GraceoftheHerald-56295" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Gurthalak,VoiceoftheDeeps-77191" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-Gurthalak,VoiceoftheDeeps-78478" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-Gurthalak,VoiceoftheDeeps-78487" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-HarmlightToken-63839" value: { - dps: 46404.02179 - tps: 41899.9144 + dps: 48805.04573 + tps: 44006.33943 } } dps_results: { key: "TestFire-AllItems-Harrison'sInsigniaofPanache-65803" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-HeartofIgnacious-59514" value: { - dps: 47210.72962 - tps: 42664.40931 + dps: 50223.04133 + tps: 45287.01988 } } dps_results: { key: "TestFire-AllItems-HeartofIgnacious-65110" value: { - dps: 47322.45422 - tps: 42749.893 + dps: 50574.35759 + tps: 45622.33971 } } dps_results: { key: "TestFire-AllItems-HeartofRage-59224" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-HeartofRage-65072" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-HeartofSolace-55868" value: { - dps: 45607.42293 - tps: 41163.07297 + dps: 48691.09376 + tps: 43984.70387 } } dps_results: { key: "TestFire-AllItems-HeartofSolace-56393" value: { - dps: 45538.48878 - tps: 41066.80657 + dps: 48613.81102 + tps: 43965.60395 } } dps_results: { key: "TestFire-AllItems-HeartofThunder-55845" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-HeartofThunder-56370" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-HeartoftheVile-66969" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Heartpierce-50641" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-ImpassiveShadowspiritDiamond" value: { - dps: 49317.35639 - tps: 44540.35954 + dps: 51882.60055 + tps: 46816.61009 } } dps_results: { key: "TestFire-AllItems-ImpatienceofYouth-62464" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48096.23875 + tps: 43455.7929 } } dps_results: { key: "TestFire-AllItems-ImpatienceofYouth-62469" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48096.23875 + tps: 43455.7929 } } dps_results: { key: "TestFire-AllItems-ImpetuousQuery-55881" value: { - dps: 45408.01111 - tps: 40919.94047 + dps: 48617.51474 + tps: 43903.1486 } } dps_results: { key: "TestFire-AllItems-ImpetuousQuery-56406" value: { - dps: 45502.04383 - tps: 41003.6539 + dps: 48698.66189 + tps: 43978.7249 } } dps_results: { key: "TestFire-AllItems-IndomitablePride-77211" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-IndomitablePride-77983" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-IndomitablePride-78003" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-InsigniaofDiplomacy-61433" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-InsigniaoftheCorruptedMind-77203" value: { - dps: 49160.16454 - tps: 44557.07604 + dps: 52625.65203 + tps: 47615.83557 } } dps_results: { key: "TestFire-AllItems-InsigniaoftheCorruptedMind-77971" value: { - dps: 48601.34766 - tps: 43901.34571 + dps: 51952.52866 + tps: 46870.11591 } } dps_results: { key: "TestFire-AllItems-InsigniaoftheEarthenLord-61429" value: { - dps: 46277.64145 - tps: 41714.97624 + dps: 49058.97334 + tps: 44327.61752 } } dps_results: { key: "TestFire-AllItems-JarofAncientRemedies-59354" value: { - dps: 44782.88236 - tps: 40374.69382 + dps: 48015.18282 + tps: 43356.98557 } } dps_results: { key: "TestFire-AllItems-JarofAncientRemedies-65029" value: { - dps: 44782.88236 - tps: 40377.49382 + dps: 48015.18282 + tps: 43361.18557 } } dps_results: { key: "TestFire-AllItems-JawsofDefeat-68926" value: { - dps: 47062.46685 - tps: 42379.64196 + dps: 49346.43306 + tps: 44614.25918 } } dps_results: { key: "TestFire-AllItems-JawsofDefeat-69111" value: { - dps: 47163.28334 - tps: 42491.65055 + dps: 49675.5744 + tps: 44948.07672 } } dps_results: { key: "TestFire-AllItems-JujuofNimbleness-63840" value: { - dps: 45337.77514 - tps: 40854.61814 + dps: 48559.57071 + tps: 43826.73374 } } dps_results: { key: "TestFire-AllItems-KeytotheEndlessChamber-55795" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-KeytotheEndlessChamber-56328" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-KiroptyricSigil-77113" value: { - dps: 46549.54734 - tps: 42014.72296 + dps: 48874.68394 + tps: 44132.80527 } } dps_results: { key: "TestFire-AllItems-KvaldirBattleStandard-59685" value: { - dps: 45395.69094 - tps: 41000.06432 + dps: 48190.02047 + tps: 43580.29531 } } dps_results: { key: "TestFire-AllItems-KvaldirBattleStandard-59689" value: { - dps: 45395.69094 - tps: 41000.06432 + dps: 48190.02047 + tps: 43580.29531 } } dps_results: { key: "TestFire-AllItems-LadyLa-La'sSingingShell-67152" value: { - dps: 45767.17821 - tps: 41345.56708 + dps: 48613.94504 + tps: 43836.7225 } } dps_results: { key: "TestFire-AllItems-LeadenDespair-55816" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-LeadenDespair-56347" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-LeftEyeofRajh-56102" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-LeftEyeofRajh-56427" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-LicensetoSlay-58180" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MagnetiteMirror-55814" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47965.29077 + tps: 43312.42117 } } dps_results: { key: "TestFire-AllItems-MagnetiteMirror-56345" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47965.29077 + tps: 43312.42117 } } dps_results: { key: "TestFire-AllItems-MandalaofStirringPatterns-62467" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MandalaofStirringPatterns-62472" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MarkofKhardros-56132" value: { - dps: 45655.84873 - tps: 41201.58255 + dps: 48783.23831 + tps: 44110.39244 } } dps_results: { key: "TestFire-AllItems-MarkofKhardros-56458" value: { - dps: 45622.79207 - tps: 41183.48841 + dps: 48845.69073 + tps: 44126.42803 } } dps_results: { key: "TestFire-AllItems-MartialDefenderIdol-92127" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MartialDefenderStone-92126" value: { - dps: 45957.99381 - tps: 41423.61596 + dps: 49123.41185 + tps: 44384.28656 } } dps_results: { key: "TestFire-AllItems-MartialIdolofBattle-92128" value: { - dps: 46048.84546 - tps: 41544.48518 + dps: 48540.11348 + tps: 43774.31964 } } dps_results: { key: "TestFire-AllItems-MartialStoneofBattle-92129" value: { - dps: 46123.45622 - tps: 41605.60707 + dps: 49056.75301 + tps: 44281.25832 } } dps_results: { key: "TestFire-AllItems-MatrixRestabilizer-68994" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MatrixRestabilizer-69150" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-MightoftheOcean-55251" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47965.29077 + tps: 43312.42117 } } dps_results: { key: "TestFire-AllItems-MightoftheOcean-56285" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47965.29077 + tps: 43312.42117 } } dps_results: { key: "TestFire-AllItems-MirrorofBrokenImages-62466" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-MirrorofBrokenImages-62471" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-MithrilStopwatch-232013" value: { - dps: 47361.79695 - tps: 42702.6675 + dps: 50217.18955 + tps: 45258.11451 } } dps_results: { key: "TestFire-AllItems-MoonwellChalice-70142" value: { - dps: 47805.71473 - tps: 43097.6957 + dps: 50842.9661 + tps: 45840.79619 } } dps_results: { key: "TestFire-AllItems-MoonwellPhial-70143" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-NaturalistIdolofDestruction-92137" value: { - dps: 46668.8124 - tps: 42143.26498 + dps: 49452.45619 + tps: 44721.78755 } } dps_results: { key: "TestFire-AllItems-NaturalistIdolofRage-92133" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-NaturalistStoneofDestruction-92136" value: { - dps: 47508.87822 - tps: 42765.46329 + dps: 50414.15955 + tps: 45524.75804 } } dps_results: { key: "TestFire-AllItems-NaturalistStoneofRage-92138" value: { - dps: 45902.07589 - tps: 41347.8746 + dps: 49239.72825 + tps: 44514.41973 } } dps_results: { key: "TestFire-AllItems-NaturalistStoneofWisdom-92139" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-NecromanticFocus-68982" value: { - dps: 47969.66205 - tps: 43238.56184 + dps: 50565.80668 + tps: 45660.70474 } } dps_results: { key: "TestFire-AllItems-NecromanticFocus-69139" value: { - dps: 48240.48375 - tps: 43542.73062 + dps: 51165.23087 + tps: 46280.89432 } } dps_results: { key: "TestFire-AllItems-Oremantle'sFavor-61448" value: { - dps: 45863.1685 - tps: 41326.47384 + dps: 48223.15133 + tps: 43517.89075 } } dps_results: { key: "TestFire-AllItems-PartisanDefenderIdol-92147" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-PartisanDefenderStone-92114" value: { - dps: 45833.98572 - tps: 41342.31837 + dps: 49026.23489 + tps: 44296.83177 } } dps_results: { key: "TestFire-AllItems-PartisanIdolofBattle-92148" value: { - dps: 46048.84546 - tps: 41544.48518 + dps: 48540.11348 + tps: 43774.31964 } } dps_results: { key: "TestFire-AllItems-PartisanStoneofBattle-92149" value: { - dps: 46047.74556 - tps: 41574.38206 + dps: 48687.35156 + tps: 44009.69175 } } dps_results: { key: "TestFire-AllItems-PartisanStoneofWisdom-92145" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-PetrifiedPickledEgg-232014" value: { - dps: 46487.95983 - tps: 41841.845 + dps: 49293.59063 + tps: 44482.14392 } } dps_results: { key: "TestFire-AllItems-PetrifiedTwilightScale-54591" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-PhylacteryoftheNamelessLich-50365" value: { - dps: 46545.01937 - tps: 41943.69938 + dps: 49777.89549 + tps: 44918.51457 } } dps_results: { key: "TestFire-AllItems-PorcelainCrab-55237" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-PorcelainCrab-56280" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-PowerfulShadowspiritDiamond" value: { - dps: 48978.39829 - tps: 44206.54638 + dps: 51815.23833 + tps: 46727.51749 } } dps_results: { key: "TestFire-AllItems-Prestor'sTalismanofMachination-59441" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Prestor'sTalismanofMachination-65026" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Rainsong-55854" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Rainsong-56377" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 42039.19447 - tps: 40734.3345 + dps: 45190.36544 + tps: 43773.92811 } } dps_results: { key: "TestFire-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 44087.97195 - tps: 42753.37824 + dps: 46378.19216 + tps: 44931.44192 } } dps_results: { key: "TestFire-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 41033.09551 - tps: 39789.99156 + dps: 43893.66652 + tps: 42513.90272 } } dps_results: { key: "TestFire-AllItems-ReflectionoftheLight-77115" value: { - dps: 46640.54525 - tps: 42008.15985 + dps: 49865.4054 + tps: 45033.28563 } } dps_results: { key: "TestFire-AllItems-ResolveofUndying-77201" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ResolveofUndying-77978" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ResolveofUndying-77998" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ReverberatingShadowspiritDiamond" value: { - dps: 49959.72518 - tps: 45098.62048 + dps: 52873.34901 + tps: 47706.39613 } } dps_results: { key: "TestFire-AllItems-RevitalizingShadowspiritDiamond" value: { - dps: 49959.72518 - tps: 45098.62048 + dps: 52873.34901 + tps: 47706.39613 } } dps_results: { key: "TestFire-AllItems-Ricket'sMagneticFireball-70144" value: { - dps: 46500.12318 - tps: 42000.48686 + dps: 49140.52483 + tps: 44326.81316 } } dps_results: { key: "TestFire-AllItems-RightEyeofRajh-56100" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RightEyeofRajh-56431" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RosaryofLight-72901" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RottingSkull-77116" value: { - dps: 47090.99549 - tps: 42503.18506 + dps: 49023.71071 + tps: 44247.18445 } } dps_results: { key: "TestFire-AllItems-RuneofZeth-68998" value: { - dps: 48085.10719 - tps: 43313.97618 + dps: 50679.19163 + tps: 45738.87798 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofConquest-70399" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofConquest-72304" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofDominance-70401" value: { - dps: 46684.16701 - tps: 42041.10554 + dps: 49126.13877 + tps: 44323.45473 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofDominance-72448" value: { - dps: 46749.69748 - tps: 42097.28662 + dps: 49227.69437 + tps: 44412.48156 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofVictory-70400" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sBadgeofVictory-72450" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofConquest-70404" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofConquest-72309" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofDominance-70402" value: { - dps: 46588.25531 - tps: 41984.2732 + dps: 49282.65559 + tps: 44448.61656 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofDominance-72449" value: { - dps: 46772.95926 - tps: 42107.3737 + dps: 49410.15411 + tps: 44524.24303 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofVictory-70403" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-RuthlessGladiator'sInsigniaofVictory-72455" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ScalesofLife-68915" value: { - dps: 44869.64844 - tps: 40433.66144 - hps: 411.14529 + dps: 47910.50652 + tps: 43217.54581 + hps: 414.15074 } } dps_results: { key: "TestFire-AllItems-ScalesofLife-69109" value: { - dps: 44869.64844 - tps: 40433.66144 - hps: 463.76804 + dps: 47910.50652 + tps: 43217.54581 + hps: 467.15815 } } dps_results: { key: "TestFire-AllItems-Schnottz'sMedallionofCommand-65805" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ScourgeheartDefenderIdol-92135" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ScourgeheartDefenderStone-92134" value: { - dps: 45939.58495 - tps: 41441.55073 + dps: 49134.55934 + tps: 44419.0263 } } dps_results: { key: "TestFire-AllItems-ScourgeheartIdolofBattle-92167" value: { - dps: 46048.84546 - tps: 41544.48518 + dps: 48540.11348 + tps: 43774.31964 } } dps_results: { key: "TestFire-AllItems-ScourgeheartStoneofBattle-92168" value: { - dps: 46092.25696 - tps: 41571.49299 + dps: 48966.83624 + tps: 44259.71385 } } dps_results: { key: "TestFire-AllItems-SeaStar-55256" value: { - dps: 45628.97867 - tps: 41079.89333 + dps: 48153.74131 + tps: 43453.07622 } } dps_results: { key: "TestFire-AllItems-SeaStar-56290" value: { - dps: 46098.17348 - tps: 41478.79104 + dps: 48597.85458 + tps: 43868.38931 } } dps_results: { key: "TestFire-AllItems-SealoftheSevenSigns-77204" value: { - dps: 47244.57507 - tps: 42544.16404 + dps: 50284.38556 + tps: 45397.74174 } } dps_results: { key: "TestFire-AllItems-SealoftheSevenSigns-77969" value: { - dps: 47053.16632 - tps: 42392.76334 + dps: 49874.44269 + tps: 45019.74002 } } dps_results: { key: "TestFire-AllItems-SealoftheSevenSigns-77989" value: { - dps: 47346.49043 - tps: 42637.251 + dps: 50572.91456 + tps: 45630.31723 } } dps_results: { key: "TestFire-AllItems-ShardofWoe-60233" value: { - dps: 46378.21029 - tps: 41688.255 + dps: 49209.31169 + tps: 44429.38343 } } dps_results: { key: "TestFire-AllItems-Shrine-CleansingPurifier-63838" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Sindragosa'sFlawlessFang-50364" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Skardyn'sGrace-56115" value: { - dps: 45803.10694 - tps: 41293.65691 + dps: 48326.68435 + tps: 43664.6341 } } dps_results: { key: "TestFire-AllItems-Skardyn'sGrace-56440" value: { - dps: 45810.70822 - tps: 41315.02011 + dps: 48458.58035 + tps: 43779.30543 } } dps_results: { key: "TestFire-AllItems-Sorrowsong-55879" value: { - dps: 46272.84175 - tps: 41732.42305 + dps: 49274.6019 + tps: 44492.26375 } } dps_results: { key: "TestFire-AllItems-Sorrowsong-56400" value: { - dps: 46469.15808 - tps: 41913.22857 + dps: 49481.59697 + tps: 44684.52541 } } dps_results: { key: "TestFire-AllItems-Soul'sAnguish-66994" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47965.29077 + tps: 43312.42117 } } dps_results: { key: "TestFire-AllItems-SoulCasket-58183" value: { - dps: 47373.07351 - tps: 42704.93001 + dps: 49802.97456 + tps: 44912.03727 } } dps_results: { key: "TestFire-AllItems-Souldrinker-77193" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-Souldrinker-78479" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-Souldrinker-78488" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-AllItems-SoulseizerIdolofDestruction-92125" value: { - dps: 46738.54805 - tps: 42207.624 + dps: 49721.64986 + tps: 44915.31051 } } dps_results: { key: "TestFire-AllItems-SoulseizerStoneofDestruction-92124" value: { - dps: 47882.25147 - tps: 43162.3799 + dps: 50586.43846 + tps: 45747.81403 } } dps_results: { key: "TestFire-AllItems-SoulshifterVortex-77206" value: { - dps: 46734.80532 - tps: 42206.57102 + dps: 49559.08584 + tps: 44820.65572 } } dps_results: { key: "TestFire-AllItems-SoulshifterVortex-77970" value: { - dps: 46180.45772 - tps: 41686.5462 + dps: 49641.66443 + tps: 44791.53645 } } dps_results: { key: "TestFire-AllItems-SoulshifterVortex-77990" value: { - dps: 46800.86821 - tps: 42239.62298 + dps: 49749.92284 + tps: 44937.30111 } } dps_results: { key: "TestFire-AllItems-SpidersilkSpindle-68981" value: { - dps: 45912.84054 - tps: 41401.53291 + dps: 48700.09383 + tps: 44045.29483 } } dps_results: { key: "TestFire-AllItems-SpidersilkSpindle-69138" value: { - dps: 46026.20167 - tps: 41506.87557 + dps: 48822.14459 + tps: 44158.81578 } } dps_results: { key: "TestFire-AllItems-StarcatcherCompass-77202" value: { - dps: 47000.72291 - tps: 42498.66272 + dps: 49961.42741 + tps: 45077.3808 } } dps_results: { key: "TestFire-AllItems-StarcatcherCompass-77973" value: { - dps: 46869.32788 - tps: 42231.70654 + dps: 50022.0916 + tps: 45181.20726 } } dps_results: { key: "TestFire-AllItems-StarcatcherCompass-77993" value: { - dps: 47617.39623 - tps: 42946.67013 + dps: 50919.43571 + tps: 45954.99481 } } dps_results: { key: "TestFire-AllItems-StayofExecution-68996" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-Stonemother'sKiss-61411" value: { - dps: 47109.9436 - tps: 42512.94153 + dps: 50111.1734 + tps: 45204.62215 } } dps_results: { key: "TestFire-AllItems-StumpofTime-62465" value: { - dps: 46638.35175 - tps: 41999.01617 + dps: 49557.52605 + tps: 44683.05282 } } dps_results: { key: "TestFire-AllItems-StumpofTime-62470" value: { - dps: 46560.1745 - tps: 41934.10783 + dps: 49291.82965 + tps: 44484.26185 } } dps_results: { key: "TestFire-AllItems-SymbioticWorm-59332" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-SymbioticWorm-65048" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-TalismanofSinisterOrder-65804" value: { - dps: 46785.12837 - tps: 42225.84418 + dps: 49364.99251 + tps: 44571.94966 } } dps_results: { key: "TestFire-AllItems-Tank-CommanderInsignia-63841" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-TearofBlood-55819" value: { - dps: 45963.83126 - tps: 41454.73879 + dps: 48821.44732 + tps: 44066.97534 } } dps_results: { key: "TestFire-AllItems-TearofBlood-56351" value: { - dps: 46403.67772 - tps: 41778.62756 + dps: 49295.57784 + tps: 44497.89056 } } dps_results: { key: "TestFire-AllItems-TendrilsofBurrowingDark-55810" value: { - dps: 46151.37111 - tps: 41592.45129 + dps: 49154.37517 + tps: 44394.66821 } } dps_results: { key: "TestFire-AllItems-TendrilsofBurrowingDark-56339" value: { - dps: 46772.99466 - tps: 42181.75627 + dps: 49654.95067 + tps: 44855.13788 } } dps_results: { key: "TestFire-AllItems-TheHungerer-68927" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-TheHungerer-69112" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Theralion'sMirror-59519" value: { - dps: 47678.44404 - tps: 42967.43985 + dps: 50253.89 + tps: 45370.07973 } } dps_results: { key: "TestFire-AllItems-Theralion'sMirror-65105" value: { - dps: 47820.83213 - tps: 43098.17578 + dps: 50611.22554 + tps: 45744.40926 } } dps_results: { key: "TestFire-AllItems-Throngus'sFinger-56121" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Throngus'sFinger-56449" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ThundercallerIdolofDestruction-92120" value: { - dps: 46678.986 - tps: 42167.20217 + dps: 49479.21795 + tps: 44696.5143 } } dps_results: { key: "TestFire-AllItems-ThundercallerIdolofRage-92116" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-ThundercallerStoneofDestruction-92119" value: { - dps: 47776.91071 - tps: 43126.40535 + dps: 50592.52827 + tps: 45736.62457 } } dps_results: { key: "TestFire-AllItems-ThundercallerStoneofRage-92121" value: { - dps: 45723.76933 - tps: 41205.37006 + dps: 49102.17634 + tps: 44377.43373 } } dps_results: { key: "TestFire-AllItems-ThundercallerStoneofWisdom-92122" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-Ti'tahk,theStepsofTime-77190" value: { - dps: 62959.69606 - tps: 56844.06095 + dps: 66457.63678 + tps: 59890.50692 } } dps_results: { key: "TestFire-AllItems-Ti'tahk,theStepsofTime-78477" value: { - dps: 64993.91086 - tps: 58658.08166 + dps: 68148.22408 + tps: 61441.03733 } } dps_results: { key: "TestFire-AllItems-Ti'tahk,theStepsofTime-78486" value: { - dps: 61390.53647 - tps: 55469.3337 + dps: 64813.51769 + tps: 58491.01242 } } dps_results: { key: "TestFire-AllItems-Tia'sGrace-55874" value: { - dps: 45408.01111 - tps: 40919.94047 + dps: 48617.51474 + tps: 43903.1486 } } dps_results: { key: "TestFire-AllItems-Tia'sGrace-56394" value: { - dps: 45502.04383 - tps: 41003.6539 + dps: 48698.66189 + tps: 43978.7249 } } dps_results: { key: "TestFire-AllItems-TimeLord'sRegalia" value: { - dps: 37645.21799 - tps: 34096.736 + dps: 41446.2553 + tps: 37490.71905 } } dps_results: { key: "TestFire-AllItems-TinyAbominationinaJar-50706" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Tyrande'sFavoriteDoll-64645" value: { - dps: 46899.28899 - tps: 42318.7649 + dps: 49369.4838 + tps: 44601.15673 } } dps_results: { key: "TestFire-AllItems-UnheededWarning-59520" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-UnquenchableFlame-67101" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-UnsolvableRiddle-62463" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48096.23875 + tps: 43455.7929 } } dps_results: { key: "TestFire-AllItems-UnsolvableRiddle-62468" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48096.23875 + tps: 43455.7929 } } dps_results: { key: "TestFire-AllItems-UnsolvableRiddle-68709" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48096.23875 + tps: 43455.7929 } } dps_results: { key: "TestFire-AllItems-VariablePulseLightningCapacitor-68925" value: { - dps: 48781.18437 - tps: 44207.00089 + dps: 51229.43196 + tps: 46343.00108 } } dps_results: { key: "TestFire-AllItems-VariablePulseLightningCapacitor-69110" value: { - dps: 47946.62573 - tps: 43366.35733 + dps: 51297.31106 + tps: 46384.09952 } } dps_results: { key: "TestFire-AllItems-Varo'then'sBrooch-72899" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VeilofLies-72900" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VesselofAcceleration-68995" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VesselofAcceleration-69167" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VialofShadows-77207" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VialofShadows-77979" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VialofShadows-77999" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VialofStolenMemories-59515" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-VialofStolenMemories-65109" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofConquest-61033" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofConquest-70517" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofDominance-61035" value: { - dps: 46368.18856 - tps: 41737.63078 + dps: 48783.48928 + tps: 44021.65302 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofDominance-70518" value: { - dps: 46524.58718 - tps: 41873.88158 + dps: 48924.52458 + tps: 44137.01722 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofVictory-61034" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sBadgeofVictory-70519" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 47240.16076 + tps: 42666.63817 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofAccuracy-61027" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofAlacrity-61028" value: { - dps: 45982.11268 - tps: 41538.31666 + dps: 48601.39647 + tps: 43956.08958 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofCruelty-61026" value: { - dps: 46259.08339 - tps: 41714.97672 + dps: 48508.6593 + tps: 43719.65373 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofProficiency-61030" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofProwess-61029" value: { - dps: 45815.34997 - tps: 41310.93822 + dps: 48775.13777 + tps: 44104.91988 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sEmblemofTenacity-61032" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofConquest-61047" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofConquest-70577" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofDominance-61045" value: { - dps: 46293.00622 - tps: 41686.14002 + dps: 49035.93442 + tps: 44255.58846 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofDominance-70578" value: { - dps: 46435.96216 - tps: 41816.53256 + dps: 49347.8296 + tps: 44534.00325 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofVictory-61046" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-ViciousGladiator'sInsigniaofVictory-70579" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-WaterdancerDefenderIdol-92399" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-WaterdancerDefenderStone-92398" value: { - dps: 46021.51656 - tps: 41499.4402 + dps: 49222.71622 + tps: 44465.74169 } } dps_results: { key: "TestFire-AllItems-WaterdancerIdolofRage-92401" value: { - dps: 45772.27274 - tps: 41270.90801 + dps: 48787.18605 + tps: 44061.17177 } } dps_results: { key: "TestFire-AllItems-WaterdancerStoneofRage-92400" value: { - dps: 45891.40548 - tps: 41376.1068 + dps: 49009.46541 + tps: 44303.74666 } } dps_results: { key: "TestFire-AllItems-WaterdancerStoneofWisdom-92402" value: { - dps: 46532.8777 - tps: 41868.35047 + dps: 49376.39198 + tps: 44557.7264 } } dps_results: { key: "TestFire-AllItems-WillofUnbinding-77198" value: { - dps: 49262.81688 - tps: 44414.6922 + dps: 52213.31655 + tps: 47182.30816 } } dps_results: { key: "TestFire-AllItems-WillofUnbinding-77975" value: { - dps: 48648.43077 - tps: 43829.64533 + dps: 51628.04043 + tps: 46650.00141 } } dps_results: { key: "TestFire-AllItems-WitchingHourglass-55787" value: { - dps: 46779.08788 - tps: 42349.82453 + dps: 49366.54288 + tps: 44574.66218 } } dps_results: { key: "TestFire-AllItems-WitchingHourglass-56320" value: { - dps: 47985.67047 - tps: 43347.31967 + dps: 51028.74246 + tps: 46088.32022 } } dps_results: { key: "TestFire-AllItems-World-QuellerFocus-63842" value: { - dps: 45337.77514 - tps: 40854.61814 + dps: 47889.96768 + tps: 43235.58338 } } dps_results: { key: "TestFire-AllItems-WrathofUnchaining-77197" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-WrathofUnchaining-77974" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-WrathofUnchaining-77994" value: { - dps: 44782.88236 - tps: 40348.35882 + dps: 48015.18282 + tps: 43324.88557 } } dps_results: { key: "TestFire-AllItems-Za'brox'sLuckyTooth-63742" value: { - dps: 45522.22124 - tps: 41072.66971 + dps: 48681.12595 + tps: 44030.63277 } } dps_results: { key: "TestFire-AllItems-Za'brox'sLuckyTooth-63745" value: { - dps: 45522.22124 - tps: 41072.66971 + dps: 48681.12595 + tps: 44030.63277 } } dps_results: { key: "TestFire-Average-Default" value: { - dps: 51086.80377 - tps: 45998.02428 + dps: 54291.54009 + tps: 48880.20713 } } dps_results: { key: "TestFire-Settings-Troll-p4_fire-Fire-fire-FullBuffs-0.0yards-LongMultiTarget" value: { - dps: 121748.66773 - tps: 78353.01705 + dps: 127547.75189 + tps: 81863.35313 } } dps_results: { key: "TestFire-Settings-Troll-p4_fire-Fire-fire-FullBuffs-0.0yards-LongSingleTarget" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } dps_results: { key: "TestFire-Settings-Troll-p4_fire-Fire-fire-FullBuffs-0.0yards-ShortSingleTarget" value: { - dps: 65409.98227 - tps: 59680.64346 + dps: 72461.50643 + tps: 66048.83134 } } dps_results: { @@ -2393,22 +2393,22 @@ dps_results: { dps_results: { key: "TestFire-Settings-Worgen-p4_fire-Fire-fire-FullBuffs-0.0yards-LongMultiTarget" value: { - dps: 121020.69696 - tps: 77271.11788 + dps: 127313.86431 + tps: 82363.14917 } } dps_results: { key: "TestFire-Settings-Worgen-p4_fire-Fire-fire-FullBuffs-0.0yards-LongSingleTarget" value: { - dps: 49722.33696 - tps: 45031.48925 + dps: 52981.17075 + tps: 47813.30444 } } dps_results: { key: "TestFire-Settings-Worgen-p4_fire-Fire-fire-FullBuffs-0.0yards-ShortSingleTarget" value: { - dps: 63469.71769 - tps: 57405.34693 + dps: 68725.07917 + tps: 62179.48569 } } dps_results: { @@ -2435,7 +2435,7 @@ dps_results: { dps_results: { key: "TestFire-SwitchInFrontOfTarget-Default" value: { - dps: 50168.00689 - tps: 45309.05332 + dps: 53297.12876 + tps: 48109.78879 } } diff --git a/sim/mage/fire/fire_test.go b/sim/mage/fire/_fire_test.go similarity index 57% rename from sim/mage/fire/fire_test.go rename to sim/mage/fire/_fire_test.go index 0fa1b47429..05a2d0a9a9 100644 --- a/sim/mage/fire/fire_test.go +++ b/sim/mage/fire/_fire_test.go @@ -3,9 +3,9 @@ package fire import ( "testing" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -14,13 +14,13 @@ func init() { func TestFire(t *testing.T) { core.RunTestSuite(t, t.Name(), core.FullCharacterTestSuiteGenerator(core.CharacterSuiteConfig{ - Class: proto.Class_ClassMage, - Race: proto.Race_RaceTroll, - OtherRaces: []proto.Race{proto.Race_RaceWorgen}, - GearSet: core.GetGearSet("../../../ui/mage/fire/gear_sets", "p4_fire"), - Talents: FireTalents, - Glyphs: FireGlyphs, - Consumes: FullFireConsumes, + Class: proto.Class_ClassMage, + Race: proto.Race_RaceTroll, + OtherRaces: []proto.Race{proto.Race_RaceWorgen}, + GearSet: core.GetGearSet("../../../ui/mage/fire/gear_sets", "p4_fire"), + Talents: FireTalents, + Glyphs: FireGlyphs, + Consumables: FullArcaneConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Fire", SpecOptions: PlayerOptionsFire}, Rotation: core.GetAplRotation("../../../ui/mage/fire/apls", "fire"), @@ -44,11 +44,8 @@ var ItemFilter = core.ItemFilter{ var FireTalents = "203-230330221120121213031-03" var FireGlyphs = &proto.Glyphs{ - Prime1: int32(proto.MagePrimeGlyph_GlyphOfFireball), - Prime2: int32(proto.MagePrimeGlyph_GlyphOfPyroblast), - Prime3: int32(proto.MagePrimeGlyph_GlyphOfMoltenArmor), Major1: int32(proto.MageMajorGlyph_GlyphOfEvocation), - Major2: int32(proto.MageMajorGlyph_GlyphOfDragonSBreath), + Major2: int32(proto.MageMajorGlyph_GlyphOfDragonsBreath), Major3: int32(proto.MageMajorGlyph_GlyphOfInvisibility), } @@ -59,9 +56,10 @@ var PlayerOptionsFire = &proto.Player_FireMage{ }, }, } - -var FullFireConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheFrostWyrm, - Food: proto.Food_FoodFirecrackerSalmon, - DefaultPotion: proto.Potions_PotionOfSpeed, +var FullArcaneConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62290, // Seafood Magnifique Feast + PotId: 58091, // Volcanic Potion + PrepotId: 58091, // Volcanic Potion + TinkerId: 82174, // Synapse Springs } diff --git a/sim/mage/fire/dragonwrath.go b/sim/mage/fire/dragonwrath.go index 217550d7df..1f0ab6cba2 100644 --- a/sim/mage/fire/dragonwrath.go +++ b/sim/mage/fire/dragonwrath.go @@ -1,8 +1,8 @@ package fire import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/mage/fire/fire.go b/sim/mage/fire/fire.go index 443c44554c..aae32d0b62 100644 --- a/sim/mage/fire/fire.go +++ b/sim/mage/fire/fire.go @@ -1,10 +1,10 @@ package fire import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/mage" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/mage" ) func RegisterFireMage() { diff --git a/sim/mage/fire/pyroblast.go b/sim/mage/fire/pyroblast.go index e6d3cf9b44..15152f4b21 100644 --- a/sim/mage/fire/pyroblast.go +++ b/sim/mage/fire/pyroblast.go @@ -3,8 +3,8 @@ package fire import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/mage" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/mage" ) func (fire *FireMage) registerPyroblastSpell() { diff --git a/sim/mage/fire_blast.go b/sim/mage/fire_blast.go index a92788f086..39d241261c 100644 --- a/sim/mage/fire_blast.go +++ b/sim/mage/fire_blast.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerFireBlastSpell() { diff --git a/sim/mage/fireball.go b/sim/mage/fireball.go index cc951999cd..6c3cc92081 100644 --- a/sim/mage/fireball.go +++ b/sim/mage/fireball.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerFireballSpell() { diff --git a/sim/mage/flamestrike.go b/sim/mage/flamestrike.go index ef87df9c79..d6d0a9a84f 100644 --- a/sim/mage/flamestrike.go +++ b/sim/mage/flamestrike.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) GetFlameStrikeConfig(spellId int32, isProc bool) core.SpellConfig { diff --git a/sim/mage/freeze.go b/sim/mage/freeze.go index 1ec41b2636..aedc84a472 100644 --- a/sim/mage/freeze.go +++ b/sim/mage/freeze.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerFreezeSpell() { diff --git a/sim/mage/frost/frost_test.go b/sim/mage/frost/_frost_test.go similarity index 99% rename from sim/mage/frost/frost_test.go rename to sim/mage/frost/_frost_test.go index 18ccfbd8d2..d7063c39ba 100644 --- a/sim/mage/frost/frost_test.go +++ b/sim/mage/frost/_frost_test.go @@ -1,7 +1,7 @@ package frost import ( - _ "github.com/wowsims/cata/sim/common" + _ "github.com/wowsims/mop/sim/common" ) func init() { diff --git a/sim/mage/frost/frost.go b/sim/mage/frost/frost.go index e91cde0d56..e2676c4d13 100644 --- a/sim/mage/frost/frost.go +++ b/sim/mage/frost/frost.go @@ -1,9 +1,9 @@ package frost import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/mage" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/mage" ) func RegisterFrostMage() { diff --git a/sim/mage/frost/water_elemental.go b/sim/mage/frost/water_elemental.go index ec9061499f..0b16fd8e1b 100644 --- a/sim/mage/frost/water_elemental.go +++ b/sim/mage/frost/water_elemental.go @@ -3,8 +3,8 @@ package frost import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // The numbers in this file are VERY rough approximations based on logs. diff --git a/sim/mage/ice_lance.go b/sim/mage/ice_lance.go index ccf01e167a..cf969b27b2 100644 --- a/sim/mage/ice_lance.go +++ b/sim/mage/ice_lance.go @@ -1,7 +1,7 @@ package mage import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerIceLanceSpell() { diff --git a/sim/mage/items.go b/sim/mage/items.go index 6c1fe19f81..a5e9fef7fa 100644 --- a/sim/mage/items.go +++ b/sim/mage/items.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // T11 diff --git a/sim/mage/living_bomb.go b/sim/mage/living_bomb.go index 378fd16e7e..b590e23e0d 100644 --- a/sim/mage/living_bomb.go +++ b/sim/mage/living_bomb.go @@ -4,7 +4,7 @@ import ( "sort" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerLivingBombSpell() { diff --git a/sim/mage/mage.go b/sim/mage/mage.go index 7135220cae..fdfe3cf6e5 100644 --- a/sim/mage/mage.go +++ b/sim/mage/mage.go @@ -1,15 +1,11 @@ package mage import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -var TalentTreeSizes = [3]int{21, 21, 19} - type Mage struct { core.Character @@ -19,9 +15,9 @@ type Mage struct { FireOptions *proto.FireMage_Options FrostOptions *proto.FrostMage_Options - mirrorImage *MirrorImage - flameOrb *FlameOrb - frostfireOrb *FrostfireOrb + mirrorImage *MirrorImage + // flameOrb *FlameOrb + // frostfireOrb *FrostfireOrb t12MirrorImage *T12MirrorImage t13ProcAura *core.StatBuffAura @@ -68,10 +64,6 @@ func (mage *Mage) GetMage() *Mage { return mage } -func (mage *Mage) HasPrimeGlyph(glyph proto.MagePrimeGlyph) bool { - return mage.HasGlyph(int32(glyph)) -} - func (mage *Mage) HasMajorGlyph(glyph proto.MageMajorGlyph) bool { return mage.HasGlyph(int32(glyph)) } @@ -89,78 +81,79 @@ func (mage *Mage) AddPartyBuffs(partyBuffs *proto.PartyBuffs) { func (mage *Mage) ApplyTalents() { mage.ApplyArmorSpecializationEffect(stats.Intellect, proto.ArmorType_ArmorTypeCloth, 89744) - mage.ApplyArcaneTalents() - mage.ApplyFireTalents() - mage.ApplyFrostTalents() + // mage.ApplyArcaneTalents() + // mage.ApplyFireTalents() + // mage.ApplyFrostTalents() - mage.applyGlyphs() + // mage.applyGlyphs() } func (mage *Mage) Initialize() { - mage.applyArmorSpells() - mage.registerArcaneBlastSpell() - mage.registerArcaneExplosionSpell() + // mage.applyArmorSpells() + // mage.registerArcaneBlastSpell() + // mage.registerArcaneExplosionSpell() mage.registerArcaneMissilesSpell() - mage.registerBlizzardSpell() + // mage.registerBlizzardSpell() mage.registerDeepFreezeSpell() mage.registerFireballSpell() mage.registerFireBlastSpell() - mage.registerFlameOrbSpell() - mage.registerFlameOrbExplodeSpell() + // mage.registerFlameOrbSpell() + // mage.registerFlameOrbExplodeSpell() mage.registerFlamestrikeSpell() mage.registerFreezeSpell() - mage.registerFrostboltSpell() - mage.registerFrostfireOrbSpell() + // mage.registerFrostboltSpell() + // mage.registerFrostfireOrbSpell() mage.registerIceLanceSpell() mage.registerScorchSpell() mage.registerLivingBombSpell() - mage.registerFrostfireBoltSpell() + // mage.registerFrostfireBoltSpell() mage.registerEvocation() - mage.registerManaGemsCD() + // mage.registerManaGemsCD() mage.registerMirrorImageCD() - mage.registerCombustionSpell() - mage.registerBlastWaveSpell() + // mage.registerCombustionSpell() + // mage.registerBlastWaveSpell() mage.registerDragonsBreathSpell() // mage.registerSummonWaterElementalCD() - mage.applyArcaneMissileProc() + // mage.applyArcaneMissileProc() } -func (mage *Mage) applyArcaneMissileProc() { - if mage.Talents.HotStreak || mage.Talents.BrainFreeze > 0 { - return - } - - // Aura for when proc is successful - mage.arcaneMissilesProcAura = mage.RegisterAura(core.Aura{ - Label: "Arcane Missiles Proc", - ActionID: core.ActionID{SpellID: 79683}, - Duration: time.Second * 20, - OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { - if spell.ClassSpellMask == MageSpellArcaneMissilesCast { - aura.Deactivate(sim) - } - }, - }) - - procChance := 0.4 - - const MageSpellsArcaneMissilesNow = MageSpellArcaneBarrage | MageSpellArcaneBlast | - MageSpellFireball | MageSpellFrostbolt | MageSpellFrostfireBolt | MageSpellFrostfireOrb - - // Listener for procs - core.MakePermanent(mage.RegisterAura(core.Aura{ - Label: "Arcane Missiles Activation", - OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { - if spell.ClassSpellMask&MageSpellsArcaneMissilesNow == 0 { - return - } - if sim.Proc(procChance, "Arcane Missiles") { - mage.arcaneMissilesProcAura.Activate(sim) - } - }, - })) -} +// TODO: Fix this to work with the new talent system. +// func (mage *Mage) applyArcaneMissileProc() { +// if mage.Talents.HotStreak || mage.Talents.BrainFreeze > 0 { +// return +// } + +// // Aura for when proc is successful +// mage.arcaneMissilesProcAura = mage.RegisterAura(core.Aura{ +// Label: "Arcane Missiles Proc", +// ActionID: core.ActionID{SpellID: 79683}, +// Duration: time.Second * 20, +// OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { +// if spell.ClassSpellMask == MageSpellArcaneMissilesCast { +// aura.Deactivate(sim) +// } +// }, +// }) + +// procChance := 0.4 + +// const MageSpellsArcaneMissilesNow = MageSpellArcaneBarrage | MageSpellArcaneBlast | +// MageSpellFireball | MageSpellFrostbolt | MageSpellFrostfireBolt | MageSpellFrostfireOrb + +// // Listener for procs +// core.MakePermanent(mage.RegisterAura(core.Aura{ +// Label: "Arcane Missiles Activation", +// OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { +// if spell.ClassSpellMask&MageSpellsArcaneMissilesNow == 0 { +// return +// } +// if sim.Proc(procChance, "Arcane Missiles") { +// mage.arcaneMissilesProcAura.Activate(sim) +// } +// }, +// })) +// } func (mage *Mage) Reset(sim *core.Simulation) { mage.arcaneMissileCritSnapshot = 0.0 @@ -174,14 +167,14 @@ func NewMage(character *core.Character, options *proto.Player, mageOptions *prot ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassMage), } - core.FillTalentsProto(mage.Talents.ProtoReflect(), options.TalentsString, TalentTreeSizes) + core.FillTalentsProto(mage.Talents.ProtoReflect(), options.TalentsString) mage.EnableManaBar() mage.SetDefaultSpellCritMultiplier(mage.SpellCritMultiplier(1.33, 0.0)) mage.mirrorImage = mage.NewMirrorImage() - mage.flameOrb = mage.NewFlameOrb() - mage.frostfireOrb = mage.NewFrostfireOrb() + // mage.flameOrb = mage.NewFlameOrb() + // mage.frostfireOrb = mage.NewFrostfireOrb() if mage.CouldHaveSetBonus(ItemSetFirehawkRobesOfConflagration, 2) { mage.t12MirrorImage = mage.NewT12MirrorImage() @@ -190,108 +183,108 @@ func NewMage(character *core.Character, options *proto.Player, mageOptions *prot return mage } -func (mage *Mage) applyArmorSpells() { - // Molten Armor - // +3% spell crit, +5% with glyph - critPercentToAdd := 3.0 - if mage.HasPrimeGlyph(proto.MagePrimeGlyph_GlyphOfMoltenArmor) { - critPercentToAdd = 5.0 - } - - mageArmorEffectCategory := "MageArmors" - - moltenArmor := mage.RegisterAura(core.Aura{ - Label: "Molten Armor", - ActionID: core.ActionID{SpellID: 30482}, - Duration: core.NeverExpires, - OnGain: func(aura *core.Aura, sim *core.Simulation) { - mage.AddStatDynamic(sim, stats.SpellCritPercent, critPercentToAdd) - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - mage.AddStatDynamic(sim, stats.SpellCritPercent, -critPercentToAdd) - }, - }) - - moltenArmor.NewExclusiveEffect(mageArmorEffectCategory, true, core.ExclusiveEffect{}) - - mage.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 30482}, - SpellSchool: core.SpellSchoolFire, - Flags: core.SpellFlagAPL, - ClassSpellMask: MageSpellMoltenArmor, - - Cast: core.CastConfig{ - DefaultCast: core.Cast{ - GCD: core.GCDDefault, - }, - }, - ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { - return !moltenArmor.IsActive() - }, - - ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - moltenArmor.Activate(sim) - }, - }) - - // Mage Armor - // Restores 3% of your max mana every 5 seconds (+20% affect with glyph) - mageArmorManaMetric := mage.NewManaMetrics(core.ActionID{SpellID: 6117}) - hasGlyph := mage.HasPrimeGlyph(proto.MagePrimeGlyph_GlyphOfMageArmor) - manaRegenPer5Second := core.TernaryFloat64(hasGlyph, .036, 0.03) - - var pa *core.PendingAction - mageArmor := mage.RegisterAura(core.Aura{ - ActionID: core.ActionID{SpellID: 6117}, - Label: "Mage Armor", - Duration: core.NeverExpires, - OnGain: func(aura *core.Aura, sim *core.Simulation) { - pa = core.StartPeriodicAction(sim, core.PeriodicActionOptions{ - Period: time.Second * 5, - OnAction: func(sim *core.Simulation) { - mage.AddMana(sim, mage.MaxMana()*manaRegenPer5Second, mageArmorManaMetric) - }, - }) - }, - OnExpire: func(aura *core.Aura, sim *core.Simulation) { - pa.Cancel(sim) - }, - }) - - mageArmor.NewExclusiveEffect(mageArmorEffectCategory, true, core.ExclusiveEffect{}) - - mage.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 6117}, - SpellSchool: core.SpellSchoolArcane, - Flags: core.SpellFlagAPL, - ClassSpellMask: MageSpellMageArmor, - - Cast: core.CastConfig{ - DefaultCast: core.Cast{ - GCD: core.GCDDefault, - }, - }, - ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { - return !mageArmor.IsActive() - }, - - ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - mageArmor.Activate(sim) - }, - }) - - // Frost Armor - // TODO: -} +// func (mage *Mage) applyArmorSpells() { +// // Molten Armor +// // +3% spell crit, +5% with glyph +// critPercentToAdd := 3.0 +// if mage.HasPrimeGlyph(proto.MagePrimeGlyph_GlyphOfMoltenArmor) { +// critPercentToAdd = 5.0 +// } + +// mageArmorEffectCategory := "MageArmors" + +// moltenArmor := mage.RegisterAura(core.Aura{ +// Label: "Molten Armor", +// ActionID: core.ActionID{SpellID: 30482}, +// Duration: core.NeverExpires, +// OnGain: func(aura *core.Aura, sim *core.Simulation) { +// mage.AddStatDynamic(sim, stats.SpellCritPercent, critPercentToAdd) +// }, +// OnExpire: func(aura *core.Aura, sim *core.Simulation) { +// mage.AddStatDynamic(sim, stats.SpellCritPercent, -critPercentToAdd) +// }, +// }) + +// moltenArmor.NewExclusiveEffect(mageArmorEffectCategory, true, core.ExclusiveEffect{}) + +// mage.RegisterSpell(core.SpellConfig{ +// ActionID: core.ActionID{SpellID: 30482}, +// SpellSchool: core.SpellSchoolFire, +// Flags: core.SpellFlagAPL, +// ClassSpellMask: MageSpellMoltenArmor, + +// Cast: core.CastConfig{ +// DefaultCast: core.Cast{ +// GCD: core.GCDDefault, +// }, +// }, +// ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { +// return !moltenArmor.IsActive() +// }, + +// ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { +// moltenArmor.Activate(sim) +// }, +// }) + +// // Mage Armor +// // Restores 3% of your max mana every 5 seconds (+20% affect with glyph) +// mageArmorManaMetric := mage.NewManaMetrics(core.ActionID{SpellID: 6117}) +// hasGlyph := mage.HasPrimeGlyph(proto.MagePrimeGlyph_GlyphOfMageArmor) +// manaRegenPer5Second := core.TernaryFloat64(hasGlyph, .036, 0.03) + +// var pa *core.PendingAction +// mageArmor := mage.RegisterAura(core.Aura{ +// ActionID: core.ActionID{SpellID: 6117}, +// Label: "Mage Armor", +// Duration: core.NeverExpires, +// OnGain: func(aura *core.Aura, sim *core.Simulation) { +// pa = core.StartPeriodicAction(sim, core.PeriodicActionOptions{ +// Period: time.Second * 5, +// OnAction: func(sim *core.Simulation) { +// mage.AddMana(sim, mage.MaxMana()*manaRegenPer5Second, mageArmorManaMetric) +// }, +// }) +// }, +// OnExpire: func(aura *core.Aura, sim *core.Simulation) { +// pa.Cancel(sim) +// }, +// }) + +// mageArmor.NewExclusiveEffect(mageArmorEffectCategory, true, core.ExclusiveEffect{}) + +// mage.RegisterSpell(core.SpellConfig{ +// ActionID: core.ActionID{SpellID: 6117}, +// SpellSchool: core.SpellSchoolArcane, +// Flags: core.SpellFlagAPL, +// ClassSpellMask: MageSpellMageArmor, + +// Cast: core.CastConfig{ +// DefaultCast: core.Cast{ +// GCD: core.GCDDefault, +// }, +// }, +// ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { +// return !mageArmor.IsActive() +// }, + +// ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { +// mageArmor.Activate(sim) +// }, +// }) + +// // Frost Armor +// // TODO: +// } // Agent is a generic way to access underlying mage on any of the agents. type MageAgent interface { GetMage() *Mage } -func (mage *Mage) hasChillEffect(spell *core.Spell) bool { - return spell.ClassSpellMask&MageSpellChill > 0 || (spell.ClassSpellMask == MageSpellBlizzard && mage.Talents.IceShards > 0) -} +// func (mage *Mage) hasChillEffect(spell *core.Spell) bool { +// return spell.ClassSpellMask&MageSpellChill > 0 || (spell.ClassSpellMask == MageSpellBlizzard && mage.Talents.IceShards > 0) +// } const ( MageSpellFlagNone int64 = 0 diff --git a/sim/mage/mirror_image.go b/sim/mage/mirror_image.go index c0034d2768..32278ba049 100644 --- a/sim/mage/mirror_image.go +++ b/sim/mage/mirror_image.go @@ -3,9 +3,9 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) /* Cata dummy testing diff --git a/sim/mage/mirror_image_t12.go b/sim/mage/mirror_image_t12.go index 2acf810d3d..7baf12307d 100644 --- a/sim/mage/mirror_image_t12.go +++ b/sim/mage/mirror_image_t12.go @@ -3,8 +3,8 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) /* diff --git a/sim/mage/scorch.go b/sim/mage/scorch.go index e5bc61be97..d9374e51c2 100644 --- a/sim/mage/scorch.go +++ b/sim/mage/scorch.go @@ -3,7 +3,7 @@ package mage import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (mage *Mage) registerScorchSpell() { diff --git a/sim/monk/apl_values.go b/sim/monk/apl_values.go new file mode 100644 index 0000000000..2c5fd9f7fc --- /dev/null +++ b/sim/monk/apl_values.go @@ -0,0 +1,86 @@ +package monk + +import ( + "fmt" + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +func (monk *Monk) NewAPLValue(_ *core.APLRotation, config *proto.APLValue) core.APLValue { + switch config.Value.(type) { + case *proto.APLValue_MonkCurrentChi: + return monk.newValueCurrentChi(config.GetMonkCurrentChi(), config.Uuid) + case *proto.APLValue_MonkMaxChi: + return monk.newValueMaxChi(config.GetMonkMaxChi(), config.Uuid) + case *proto.APLValue_MonkNextChiBrewRecharge: + return monk.newValueNextChiBrewRecharge(config.GetMonkNextChiBrewRecharge(), config.Uuid) + default: + return nil + } +} + +type APLValueCurrentChi struct { + core.DefaultAPLValueImpl + monk *Monk +} + +func (monk *Monk) newValueCurrentChi(_ *proto.APLValueMonkCurrentChi, _ *proto.UUID) core.APLValue { + return &APLValueCurrentChi{ + monk: monk, + } +} +func (value *APLValueCurrentChi) Type() proto.APLValueType { + return proto.APLValueType_ValueTypeInt +} +func (value *APLValueCurrentChi) GetInt(_ *core.Simulation) int32 { + return value.monk.ComboPoints() +} +func (value *APLValueCurrentChi) String() string { + return "Current Chi" +} + +type APLValueMaxChi struct { + core.DefaultAPLValueImpl + maxChi int32 +} + +func (monk *Monk) newValueMaxChi(_ *proto.APLValueMonkMaxChi, _ *proto.UUID) core.APLValue { + return &APLValueMaxChi{ + maxChi: monk.MaxComboPoints(), + } +} +func (value *APLValueMaxChi) Type() proto.APLValueType { + return proto.APLValueType_ValueTypeInt +} +func (value *APLValueMaxChi) GetInt(_ *core.Simulation) int32 { + return value.maxChi +} +func (value *APLValueMaxChi) String() string { + return fmt.Sprintf("Max Chi(%d)", value.maxChi) +} + +type APLValueNextChiBrewRecharge struct { + core.DefaultAPLValueImpl + monk *Monk +} + +func (monk *Monk) newValueNextChiBrewRecharge(_ *proto.APLValueMonkNextChiBrewRecharge, _ *proto.UUID) core.APLValue { + return &APLValueNextChiBrewRecharge{ + monk: monk, + } +} +func (value *APLValueNextChiBrewRecharge) Type() proto.APLValueType { + return proto.APLValueType_ValueTypeDuration +} +func (value *APLValueNextChiBrewRecharge) GetDuration(sim *core.Simulation) time.Duration { + if value.monk.chiBrewRecharge != nil && value.monk.chiBrewRecharge.NextActionAt > sim.CurrentTime { + return value.monk.chiBrewRecharge.NextActionAt - sim.CurrentTime + } + + return 0 +} +func (value *APLValueNextChiBrewRecharge) String() string { + return "Time To Next Chi Brew Recharge" +} diff --git a/sim/monk/attack.go b/sim/monk/attack.go new file mode 100644 index 0000000000..1e2deb49c1 --- /dev/null +++ b/sim/monk/attack.go @@ -0,0 +1,89 @@ +package monk + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +/* +// 103985 - Stance of the Fierce Tiger +// 108561 - 2H Staff equipped +// 115697 - Polearm equipped +// 120267 - Vengeance +// 124146 - Dual Wield + +Monk weapon damage is calculated by combining main hand and off hand damage. +The following formula is embedded into all the tooltips for monk strikes: + +$stnc= +$dwm1=$?a108561[${1}][${0.898882275}] +$dwm=$?a115697[${1}][${$}] +$bm=$?s120267[${0.4}][${1}] +$offm1=$?a108561[${0}][${1}] +$offm=$?a115697[${0}][${$}] +$apc=$?s120267[${$AP/11}][${$AP/14}] +$offlow=$?!s124146[${$mwb/2/$mws}][${$owb/2/$ows}] +$offhigh=$?!s124146[${$MWB/2/$mws}][${$OWB/2/$ows}] +$low=${$*($*$*(($mwb)/($MWS)+$*$)+$-1)} +$high=${$*($*$*(($MWB)/($MWS)+$*$)+$+1)} +*/ +func (monk *Monk) CalculateMonkStrikeDamage(sim *core.Simulation, spell *core.Spell) float64 { + totalDamage := 0.0 + ap := spell.MeleeAttackPower() + + staffOrPolearm := false + hasMainHand := false + mh := monk.MainHand() + mhw := monk.WeaponFromMainHand(monk.MeleeCritMultiplier()) + if mh != nil && mh.WeaponType != proto.WeaponType_WeaponTypeUnknown { + staffOrPolearm = mh.WeaponType == proto.WeaponType_WeaponTypeStaff || mh.WeaponType == proto.WeaponType_WeaponTypePolearm + dmg := mhw.BaseDamage(sim) / mhw.SwingSpeed + totalDamage += dmg + hasMainHand = true + + if sim.Log != nil { + monk.Log(sim, "[DEBUG] main hand weapon damage portion for %s: td=%0.3f, wd=%0.3f, ws=%0.3f", + spell.ActionID, totalDamage, dmg, mhw.SwingSpeed, ap) + } + } + + hasOffHand := false + oh := monk.OffHand() + if oh != nil && oh.WeaponType != proto.WeaponType_WeaponTypeUnknown { + ohw := monk.WeaponFromOffHand(monk.MeleeCritMultiplier()) + dmg := ohw.BaseDamage(sim) / ohw.SwingSpeed * 0.5 + totalDamage += dmg + hasOffHand = true + + if sim.Log != nil { + monk.Log(sim, "[DEBUG] off hand weapon damage portion for %s: td=%0.3f, wd=%0.3f, ws=%0.3f", + spell.ActionID, totalDamage, dmg, ohw.SwingSpeed, ap) + } + } + + // When not wielding a staff or polearm, total damage is multiplied by 0.898882275. + if !staffOrPolearm { + totalDamage *= 0.898882275 + } + + apMod := 1.0 / core.DefaultAttackPowerPerDPS + if monk.Spec == proto.Spec_SpecBrewmasterMonk { + // Brewmaster monks does a flat 40% of total damage as well as AP per DPS being 11 instead of 14 + totalDamage *= 0.4 + apMod = 1.0 / 11.0 + } + + if !hasMainHand && !hasOffHand { + // Unarmed + totalDamage += mhw.CalculateWeaponDamage(sim, ap) + } else { + totalDamage += apMod * ap + } + + if sim.Log != nil { + monk.Log(sim, "[DEBUG] total weapon damage for %s: td=%0.3f, apmod=%0.3f, ap=%0.3f", + spell.ActionID, totalDamage, apMod, ap) + } + + return totalDamage +} diff --git a/sim/monk/blackout_kick.go b/sim/monk/blackout_kick.go new file mode 100644 index 0000000000..8ce8187a06 --- /dev/null +++ b/sim/monk/blackout_kick.go @@ -0,0 +1,81 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" +) + +/* +Tooltip: +Kick with a blast of Chi energy, dealing ${7.12*$} to ${7.12*$} Physical damage + +-- Teachings of the Monastery && Stance of the Wise Serpent -- + + to your target and ${3.56*$} to ${3.56*$} to up to 4 additional nearby targets for 50% damage + +-- Teachings of the Monastery && Stance of the Wise Serpent -- +. + +-- Combat Conditioning -- + + If behind the target, you deal an additional 20% damage over 4 sec. If in front of the target, you are instantly healed for 20% of the damage done. + +-- Combat Conditioning -- + +-- Brewmaster Training -- + + Also causes you to gain Shuffle, increasing your parry chance by 20% and your Stagger amount by an additional 20% for 6 sec. + +-- Brewmaster Training -- + +-- Teachings of the Monastery -- + + Also empowers you with Serpent's Zeal, causing you and your summoned Jade Serpent Statue to heal nearby injured targets equal to 25% of your auto-attack damage. + +-- Teachings of the Monastery -- +*/ +func (monk *Monk) registerBlackoutKick() { + actionID := core.ActionID{SpellID: 100784}.WithTag(1) + chiMetrics := monk.NewChiMetrics(actionID) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | SpellFlagSpender | core.SpellFlagAPL, + ClassSpellMask: MonkSpellBlackoutKick, + MaxRange: core.MaxMeleeRange, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + DamageMultiplier: 7.12, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return monk.ComboPoints() >= 2 || monk.ComboBreakerBlackoutKickAura.IsActive() + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + + result := spell.CalcDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + + if result.Landed() { + if monk.ComboBreakerBlackoutKickAura.IsActive() { + monk.SpendChi(sim, 0, chiMetrics) + } else { + monk.SpendChi(sim, 2, chiMetrics) + } + } + + spell.DealOutcome(sim, result) + }, + }) +} diff --git a/sim/monk/brewmaster/brewmaster.go b/sim/monk/brewmaster/brewmaster.go new file mode 100644 index 0000000000..a73de13e28 --- /dev/null +++ b/sim/monk/brewmaster/brewmaster.go @@ -0,0 +1,80 @@ +package brewmaster + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/monk" +) + +func RegisterBrewmasterMonk() { + core.RegisterAgentFactory( + proto.Player_BrewmasterMonk{}, + proto.Spec_SpecBrewmasterMonk, + func(character *core.Character, options *proto.Player) core.Agent { + return NewBrewmasterMonk(character, options) + }, + func(player *proto.Player, spec interface{}) { + playerSpec, ok := spec.(*proto.Player_BrewmasterMonk) + if !ok { + panic("Invalid spec value for Brewmaster Monk!") + } + player.Spec = playerSpec + }, + ) +} + +func NewBrewmasterMonk(character *core.Character, options *proto.Player) *BrewmasterMonk { + monkOptions := options.GetBrewmasterMonk() + + bm := &BrewmasterMonk{ + Monk: monk.NewMonk(character, monkOptions.Options.ClassOptions, options.TalentsString), + StartingStance: monkOptions.Options.Stance, + } + bm.SetStartingStance() + + bm.AddStatDependency(stats.Strength, stats.AttackPower, 1) + bm.AddStatDependency(stats.Agility, stats.AttackPower, 2) + + return bm +} + +func (bm *BrewmasterMonk) SetStartingStance() { + switch bm.StartingStance { + case proto.MonkStance_SturdyOx: + bm.Stance = monk.SturdyOx + case proto.MonkStance_FierceTiger: + bm.Stance = monk.FierceTiger + } +} + +type BrewmasterMonk struct { + *monk.Monk + StartingStance proto.MonkStance +} + +func (bm *BrewmasterMonk) GetMonk() *monk.Monk { + return bm.Monk +} + +func (bm *BrewmasterMonk) Initialize() { + bm.Monk.Initialize() + bm.RegisterSpecializationEffects() +} + +func (bm *BrewmasterMonk) ApplyTalents() { + bm.Monk.ApplyTalents() + bm.ApplyArmorSpecializationEffect(stats.Stamina, proto.ArmorType_ArmorTypeLeather, 120225) +} + +func (bm *BrewmasterMonk) Reset(sim *core.Simulation) { + bm.SetStartingStance() + bm.Monk.Reset(sim) +} + +func (bm *BrewmasterMonk) RegisterSpecializationEffects() { + bm.RegisterMastery() +} + +func (bm *BrewmasterMonk) RegisterMastery() { +} diff --git a/sim/monk/crackling_jade_lightning.go b/sim/monk/crackling_jade_lightning.go new file mode 100644 index 0000000000..02a68ce6ff --- /dev/null +++ b/sim/monk/crackling_jade_lightning.go @@ -0,0 +1,105 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" +) + +/* +Tooltip: +Channels Jade lightning at the target, causing ${6*($m1+*$ap*0.386)} Nature damage over 6 sec. When dealing damage, you have a 30% chance to generate 1 Chi. + +If the enemy attacks you within melee range while victim to Crackling Jade Lightning, they are knocked back a short distance. This effect has an 8 sec cooldown. + +TODO: Check if it does a one-time hit check or per tick +TODO: Spell or melee hit / crit +TODO: Courageous Primal Diamond should make all ticks ignore mana cost +*/ +func (monk *Monk) registerCracklingJadeLightning() { + actionID := core.ActionID{SpellID: 117952} + energyMetrics := monk.NewEnergyMetrics(actionID) + manaMetrics := monk.NewManaMetrics(actionID) + chiMetrics := monk.NewChiMetrics(core.ActionID{SpellID: 123333}) + avgScaling := monk.ClassSpellScaling * 0.1800000072 + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolNature, + Flags: core.SpellFlagChanneled | core.SpellFlagAPL, + ProcMask: core.ProcMaskSpellDamage, + ClassSpellMask: MonkSpellCracklingJadeLightning, + MaxRange: 40, + + ManaCost: core.ManaCostOptions{ + BaseCostPercent: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 157, 0), + PercentModifier: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 1, 0), // 1% of 157 = 1.57% + }, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + Dot: core.DotConfig{ + Aura: core.Aura{ + Label: "Crackling Jade Lightning" + monk.Label, + }, + NumberOfTicks: 6, + TickLength: time.Second, + AffectedByCastSpeed: false, + + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + isWiseSerpent := monk.StanceMatches(WiseSerpent) + currentResource := core.TernaryFloat64(isWiseSerpent, monk.CurrentMana(), monk.CurrentEnergy()) + cost := core.TernaryFloat64(isWiseSerpent, dot.Spell.Cost.GetCurrentCost(), 20.0) + + if currentResource >= cost { + if isWiseSerpent { + monk.SpendMana(sim, cost, manaMetrics) + } else { + monk.SpendEnergy(sim, cost, energyMetrics) + } + + baseDamage := avgScaling + dot.Spell.MeleeAttackPower()*0.386 + dot.Spell.CalcAndDealPeriodicDamage(sim, target, baseDamage, dot.Spell.OutcomeMagicCrit) + + if sim.Proc(0.3, "Crackling Jade Lightning") { + monk.AddChi(sim, dot.Spell, 1, chiMetrics) + } + } else { + monk.AutoAttacks.EnableMeleeSwing(sim) + monk.ExtendGCDUntil(sim, sim.CurrentTime+monk.ChannelClipDelay) + + // Deactivating within OnTick causes a panic since tickAction gets set to nil in the default OnExpire + sim.AddPendingAction(&core.PendingAction{ + NextActionAt: sim.CurrentTime, + OnAction: func(sim *core.Simulation) { + dot.Deactivate(sim) + }, + }) + } + }, + }, + + DamageMultiplier: 1, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + result := spell.CalcOutcome(sim, target, spell.OutcomeMagicHitNoHitCounter) + + if result.Landed() { + dot := spell.Dot(target) + dot.Apply(sim) + expiresAt := dot.ExpiresAt() + monk.AutoAttacks.StopMeleeUntil(sim, expiresAt, false) + monk.ExtendGCDUntil(sim, expiresAt+monk.ReactionTime) + } + + spell.DealOutcome(sim, result) + }, + }) +} diff --git a/sim/monk/expel_harm.go b/sim/monk/expel_harm.go new file mode 100644 index 0000000000..fb94122d78 --- /dev/null +++ b/sim/monk/expel_harm.go @@ -0,0 +1,81 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" +) + +func (monk *Monk) registerExpelHarm() { + actionID := core.ActionID{SpellID: 115072} + chiMetrics := monk.NewChiMetrics(actionID) + healingDone := 0.0 + + expelHarmDamageSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 115129}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagPassiveSpell, + MissileSpeed: 20, + MaxRange: 10, + + DamageMultiplier: 0.5, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + spell.CalcAndDealDamage(sim, target, healingDone, spell.OutcomeMagicHitAndCrit) + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagHelpful | SpellFlagBuilder | core.SpellFlagAPL, + ClassSpellMask: MonkSpellExpelHarm, + + EnergyCost: core.EnergyCostOptions{ + Cost: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 0, 40), + Refund: 0.8, + }, + ManaCost: core.ManaCostOptions{ + BaseCostPercent: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 250, 0), + PercentModifier: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 1, 0), // 1% of 250 = 2.5% + }, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: time.Second * 15, + }, + }, + + DamageMultiplier: 7, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + + hpBefore := target.GetStat(stats.Health) + // Can only target ourselves for now + result := spell.CalcHealing(sim, &monk.Unit, baseDamage, spell.OutcomeHealing) + hpAfter := target.GetStat(stats.Health) + healingDone = hpAfter - hpBefore + + if result.Landed() && healingDone > 0 { + // Should be the closest target + expelHarmDamageSpell.Cast(sim, monk.CurrentTarget) + } + + chiGain := core.TernaryInt32(monk.StanceMatches(FierceTiger), 2, 1) + monk.AddChi(sim, spell, chiGain, chiMetrics) + }, + }) +} diff --git a/sim/monk/fortifying_brew.go b/sim/monk/fortifying_brew.go new file mode 100644 index 0000000000..75160bcd34 --- /dev/null +++ b/sim/monk/fortifying_brew.go @@ -0,0 +1,54 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +func (monk *Monk) registerFortifyingBrew() { + actionID := core.ActionID{SpellID: 126456} + healthMetrics := monk.NewHealthMetrics(actionID) + + hasGlyphOfFortifyingBrew := monk.HasMajorGlyph(proto.MonkMajorGlyph_GlyphOfFortifyingBrew) + healthModifier := core.TernaryFloat64(hasGlyphOfFortifyingBrew, 0.10, 0.20) + damageTakenModifier := core.TernaryFloat64(hasGlyphOfFortifyingBrew, 0.75, 0.8) + + var bonusHealth float64 + fortifyingBrewAura := monk.RegisterAura(core.Aura{ + Label: "Fortifying Brew" + monk.Label, + ActionID: actionID, + Duration: time.Second * 20, + + OnGain: func(aura *core.Aura, sim *core.Simulation) { + bonusHealth = monk.MaxHealth() * healthModifier + monk.PseudoStats.DamageTakenMultiplier *= damageTakenModifier + monk.UpdateMaxHealth(sim, bonusHealth, healthMetrics) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.UpdateMaxHealth(sim, -bonusHealth, healthMetrics) + monk.PseudoStats.DamageTakenMultiplier /= damageTakenModifier + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagAPL, + ClassSpellMask: MonkSpellFortifyingBrew, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + NonEmpty: true, + }, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: time.Minute * 3, + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + fortifyingBrewAura.Activate(sim) + }, + }) +} diff --git a/sim/monk/glyphs.go b/sim/monk/glyphs.go new file mode 100644 index 0000000000..f043d4ebf4 --- /dev/null +++ b/sim/monk/glyphs.go @@ -0,0 +1,47 @@ +package monk + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +func (monk *Monk) applyGlyphs() { + if monk.HasMajorGlyph(proto.MonkMajorGlyph_GlyphOfFistsOfFury) { + monk.registerGlyphOfFistsOfFury() + } + + if monk.HasMajorGlyph(proto.MonkMajorGlyph_GlyphOfTargetedExpulsion) { + monk.AddStaticMod(core.SpellModConfig{ + Kind: core.SpellMod_DamageDone_Pct, + ClassMask: MonkSpellExpelHarm, + FloatValue: -0.5, + }) + } +} + +func (monk *Monk) registerGlyphOfFistsOfFury() { + actionID := core.ActionID{SpellID: 125671} + parryBuff := monk.RegisterAura(core.Aura{ + Label: "Glyph of Fists of Fury" + monk.Label, + ActionID: actionID, + + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.PseudoStats.BaseParryChance += 1 + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.PseudoStats.BaseParryChance -= 1 + }, + }) + + core.MakeProcTriggerAura(&monk.Unit, core.ProcTrigger{ + Name: "Glyph of Fists of Fury Trigger" + monk.Label, + ClassSpellMask: MonkSpellFistsOfFury, + Callback: core.CallbackOnCastComplete, + SpellFlags: SpellFlagSpender, + + Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + parryBuff.Duration = spell.AOEDot().RemainingDuration(sim) + parryBuff.Activate(sim) + }, + }) +} diff --git a/sim/monk/items.go b/sim/monk/items.go new file mode 100644 index 0000000000..a412fcfee9 --- /dev/null +++ b/sim/monk/items.go @@ -0,0 +1,4 @@ +package monk + +func init() { +} diff --git a/sim/monk/jab.go b/sim/monk/jab.go new file mode 100644 index 0000000000..315c9fcf35 --- /dev/null +++ b/sim/monk/jab.go @@ -0,0 +1,68 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" +) + +/* +Tooltip: + +You Jab the target, dealing ${1.5*$} to ${1.5*$} damage and generating + +-- Stance of the Fierce Tiger -- + + 2 + +-- else -- + + 1 + +-- + + Chi. +*/ +func (monk *Monk) registerJab() { + actionID := core.ActionID{SpellID: 100780} + chiMetrics := monk.NewChiMetrics(actionID) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | SpellFlagBuilder | core.SpellFlagAPL, + ClassSpellMask: MonkSpellJab, + MaxRange: core.MaxMeleeRange, + + EnergyCost: core.EnergyCostOptions{ + Cost: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 0, 40), + Refund: 0.8, + }, + ManaCost: core.ManaCostOptions{ + BaseCostPercent: core.TernaryInt32(monk.StanceMatches(WiseSerpent), 8, 0), + }, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + DamageMultiplier: 1.5, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + + result := spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + + if result.Landed() { + chiGain := core.TernaryInt32(monk.StanceMatches(FierceTiger), 2, 1) + monk.AddChi(sim, spell, chiGain, chiMetrics) + } + }, + }) +} diff --git a/sim/monk/mistweaver/mistweaver.go b/sim/monk/mistweaver/mistweaver.go new file mode 100644 index 0000000000..b30d45e2e6 --- /dev/null +++ b/sim/monk/mistweaver/mistweaver.go @@ -0,0 +1,91 @@ +package mistweaver + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/monk" +) + +func RegisterMistweaverMonk() { + core.RegisterAgentFactory( + proto.Player_MistweaverMonk{}, + proto.Spec_SpecMistweaverMonk, + func(character *core.Character, options *proto.Player) core.Agent { + return NewMistweaverMonk(character, options) + }, + func(player *proto.Player, spec interface{}) { + playerSpec, ok := spec.(*proto.Player_MistweaverMonk) + if !ok { + panic("Invalid spec value for Mistweaver Monk!") + } + player.Spec = playerSpec + }, + ) +} + +func NewMistweaverMonk(character *core.Character, options *proto.Player) *MistweaverMonk { + monkOptions := options.GetMistweaverMonk() + + mw := &MistweaverMonk{ + Monk: monk.NewMonk(character, monkOptions.Options.ClassOptions, options.TalentsString), + StartingStance: monkOptions.Options.Stance, + } + mw.SetStartingStance() + mw.EnableManaBar() + + strAPDep := mw.NewDynamicStatDependency(stats.Strength, stats.AttackPower, 1) + agiAPDep := mw.NewDynamicStatDependency(stats.Agility, stats.AttackPower, 2) + + mw.RegisterOnStanceChanged(func(sim *core.Simulation, newStance monk.Stance) { + if newStance == monk.FierceTiger { + mw.EnableDynamicStatDep(sim, strAPDep) + mw.EnableDynamicStatDep(sim, agiAPDep) + } else { + mw.DisableDynamicStatDep(sim, strAPDep) + mw.DisableDynamicStatDep(sim, agiAPDep) + } + }) + + return mw +} + +func (mw *MistweaverMonk) SetStartingStance() { + switch mw.StartingStance { + case proto.MonkStance_WiseSerpent: + mw.Stance = monk.WiseSerpent + case proto.MonkStance_FierceTiger: + mw.Stance = monk.FierceTiger + } +} + +type MistweaverMonk struct { + *monk.Monk + StartingStance proto.MonkStance +} + +func (mw *MistweaverMonk) GetMonk() *monk.Monk { + return mw.Monk +} + +func (mw *MistweaverMonk) Initialize() { + mw.Monk.Initialize() + mw.RegisterSpecializationEffects() +} + +func (mw *MistweaverMonk) ApplyTalents() { + mw.Monk.ApplyTalents() + mw.ApplyArmorSpecializationEffect(stats.Intellect, proto.ArmorType_ArmorTypeLeather, 120224) +} + +func (mw *MistweaverMonk) Reset(sim *core.Simulation) { + mw.SetStartingStance() + mw.Monk.Reset(sim) +} + +func (mw *MistweaverMonk) RegisterSpecializationEffects() { + mw.RegisterMastery() +} + +func (mw *MistweaverMonk) RegisterMastery() { +} diff --git a/sim/monk/monk.go b/sim/monk/monk.go new file mode 100644 index 0000000000..3f0253b34f --- /dev/null +++ b/sim/monk/monk.go @@ -0,0 +1,233 @@ +package monk + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +const ( + SpellFlagBuilder = core.SpellFlagAgentReserved2 + SpellFlagSpender = core.SpellFlagAgentReserved3 +) + +type OnStanceChanged func(sim *core.Simulation, newStance Stance) +type OnChiSpent func(sim *core.Simulation, chiSpent int32) +type OnNewBrewStacks func(sim *core.Simulation, stacksToAdd int32) + +type Monk struct { + core.Character + + ClassSpellScaling float64 + + Talents *proto.MonkTalents + Options *proto.MonkOptions + BrewmasterOptions *proto.BrewmasterMonk_Options + MistweaverOptions *proto.MistweaverMonk_Options + WindwalkerOptions *proto.WindwalkerMonk_Options + + Stance Stance + + StanceOfTheSturdyOx *core.Spell + StanceOfTheWiseSerpent *core.Spell + StanceOfTheFierceTiger *core.Spell + + StanceOfTheFierceTigerAura *core.Aura + StanceOfTheSturdyOxAura *core.Aura + StanceOfTheWiseSerpentAura *core.Aura + + ComboBreakerBlackoutKickAura *core.Aura + ComboBreakerTigerPalmAura *core.Aura + + ChiSphereAura *core.Aura + PowerStrikesAura *core.Aura + PowerStrikesChiMetrics *core.ResourceMetrics + + onStanceChanged OnStanceChanged + onChiSpent OnChiSpent + onNewBrewStacks OnNewBrewStacks + chiBrewRecharge *core.PendingAction +} + +func (monk *Monk) ChangeStance(sim *core.Simulation, newStance Stance) { + switch monk.Stance { + case SturdyOx: + monk.StanceOfTheSturdyOx.Cast(sim, &monk.Unit) + case WiseSerpent: + monk.StanceOfTheWiseSerpent.Cast(sim, &monk.Unit) + case FierceTiger: + if monk.Spec == proto.Spec_SpecWindwalkerMonk { + monk.StanceOfTheFierceTigerAura.Activate(sim) + } else { + monk.StanceOfTheFierceTiger.Cast(sim, &monk.Unit) + } + } + + if monk.onStanceChanged != nil { + monk.onStanceChanged(sim, newStance) + } +} + +func (monk *Monk) RegisterOnStanceChanged(onStanceChanged OnStanceChanged) { + monk.onStanceChanged = onStanceChanged +} + +func (monk *Monk) AddChi(sim *core.Simulation, spell *core.Spell, pointsToAdd int32, metrics *core.ResourceMetrics) { + monk.AddComboPoints(sim, pointsToAdd, metrics) + + if spell != nil && spell.Flags.Matches(SpellFlagBuilder) { + // TODO: Verify that RJW can trigger Power Strikes + monk.TriggerPowerStrikes(sim) + } +} + +func (monk *Monk) SpendChi(sim *core.Simulation, chiToSpend int32, metrics *core.ResourceMetrics) { + monk.SpendPartialComboPoints(sim, chiToSpend, metrics) + if monk.onChiSpent != nil { + monk.onChiSpent(sim, chiToSpend) + } +} + +func (monk *Monk) RegisterOnChiSpent(onChiSpent OnChiSpent) { + monk.onChiSpent = onChiSpent +} + +func (monk *Monk) AddBrewStacks(sim *core.Simulation, stacksToAdd int32) { + if monk.onNewBrewStacks != nil { + monk.onNewBrewStacks(sim, stacksToAdd) + } +} +func (monk *Monk) RegisterOnNewBrewStacks(onNewBrewStacks OnNewBrewStacks) { + monk.onNewBrewStacks = onNewBrewStacks +} + +func (monk *Monk) GetCharacter() *core.Character { + return &monk.Character +} + +func (monk *Monk) GetMonk() *Monk { + return monk +} + +func (monk *Monk) AddRaidBuffs(_ *proto.RaidBuffs) {} +func (monk *Monk) AddPartyBuffs(_ *proto.PartyBuffs) {} + +func (monk *Monk) HasMajorGlyph(glyph proto.MonkMajorGlyph) bool { + return monk.HasGlyph(int32(glyph)) +} +func (monk *Monk) HasMinorGlyph(glyph proto.MonkMinorGlyph) bool { + return monk.HasGlyph(int32(glyph)) +} + +func (monk *Monk) Initialize() { + monk.AutoAttacks.MHConfig().CritMultiplier = monk.MeleeCritMultiplier() + monk.AutoAttacks.OHConfig().CritMultiplier = monk.MeleeCritMultiplier() + + monk.registerStances() + monk.applyGlyphs() + monk.registerSpells() + monk.registerWayOfTheMonk() + monk.registerSwiftReflexes() +} + +func (monk *Monk) registerSpells() { + monk.registerBlackoutKick() + monk.registerExpelHarm() + monk.registerJab() + monk.registerSpinningCraneKick() + monk.registerTigerPalm() + monk.registerCracklingJadeLightning() + monk.registerFortifyingBrew() +} + +func (monk *Monk) Reset(sim *core.Simulation) { + monk.ChangeStance(sim, monk.Stance) +} + +func (monk *Monk) MeleeCritMultiplier() float64 { + return monk.Character.MeleeCritMultiplier(1, 0) +} +func (monk *Monk) SpellCritMultiplier() float64 { + return monk.Character.SpellCritMultiplier(1, 0) +} + +func NewMonk(character *core.Character, options *proto.MonkOptions, talents string) *Monk { + monk := &Monk{ + Character: *character, + Talents: &proto.MonkTalents{}, + Options: options, + ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassMonk), + } + + core.FillTalentsProto(monk.Talents.ProtoReflect(), talents) + + monk.PseudoStats.CanParry = true + + monk.EnableEnergyBar(core.EnergyBarOptions{ + MaxComboPoints: 4, + MaxEnergy: 100.0, + UnitClass: proto.Class_ClassMonk, + }) + + monk.EnableAutoAttacks(monk, core.AutoAttackOptions{ + MainHand: monk.WeaponFromMainHand(0), + OffHand: monk.WeaponFromOffHand(0), + AutoSwingMelee: true, + }) + + monk.AddStatDependency(stats.Agility, stats.PhysicalCritPercent, core.CritPerAgiMaxLevel[character.Class]) + + return monk +} + +type MonkAgent interface { + GetMonk() *Monk +} + +const ( + MonkSpellFlagNone int64 = 0 + MonkSpellBlackoutKick int64 = 1 << iota + MonkSpellExpelHarm + MonkSpellJab + MonkSpellSpinningCraneKick + MonkSpellTigerPalm + MonkSpellCracklingJadeLightning + MonkSpellFortifyingBrew + + // -- Talents + // Level 15 + MonkSpellCelerity + MonkSpellTigersLust + MonkSpellMomentum + + // Level 30 + MonkSpellChiWave + MonkSpellZenSphere + MonkSpellChiBurst + + // Level 45 + MonkSpellChiSphere + MonkSpellChiBrew + + // Level 75 + MonkSpellHealingElixirs + MonkSpellDampenHarm + MonkSpellDiffuseMagic + + //Level 90 + MonkSpellRushingJadeWind + MonkSpellInvokeXuenTheWhiteTiger + MonkSpellChiTorpedo + // -- Talents + + // Windwalker + MonkSpellEnergizingBrew + MonkSpellFistsOfFury + MonkSpellRisingSunKick + MonkSpellTigereyeBrew + MonkSpellTigerStrikes + MonkSpellSpinningFireBlossom + + MonkSpellLast + MonkSpellsAll = MonkSpellLast<<1 - 1 +) diff --git a/sim/monk/passives.go b/sim/monk/passives.go new file mode 100644 index 0000000000..38fe40db79 --- /dev/null +++ b/sim/monk/passives.go @@ -0,0 +1,90 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +/* +Tooltip: +The Monk attunes $G himself:herself; differently depending on the weapon type. + +One-handed weapons / Dual-wield one-handed weapons: +Autoattack damage increased by 40%. + +Two-handed weapons: +Melee attack speed increased by 40%. +*/ +func (monk *Monk) registerWayOfTheMonk() { + mh := monk.GetMHWeapon() + auraConfig := core.Aura{ + Label: "Way of the Monk" + monk.Label, + ActionID: core.ActionID{SpellID: 120277}, + } + + if mh != nil && (mh.WeaponType == proto.WeaponType_WeaponTypeStaff || mh.WeaponType == proto.WeaponType_WeaponTypePolearm) { + auraConfig.OnGain = func(aura *core.Aura, sim *core.Simulation) { + monk.MultiplyMeleeSpeed(sim, 1.4) + } + auraConfig.OnExpire = func(aura *core.Aura, sim *core.Simulation) { + monk.MultiplyMeleeSpeed(sim, 1/1.4) + } + } else { + monk.AutoAttacks.MHConfig().DamageMultiplier *= 1.4 + monk.AutoAttacks.OHConfig().DamageMultiplier *= 1.4 + } + + core.MakePermanent(monk.RegisterAura(auraConfig)) +} + +/* +Tooltip: +Increases your chance to parry by 5%. + +Whenever you parry an attack, you reflexively strike back at the enemy for ${0.3*$} to ${0.3*$} damage. This strike has a 1 sec cooldown. + +$stnc=$?a103985[${1.2*7.5}][${1.0*7.5}] +*/ +func (monk *Monk) registerSwiftReflexes() { + swiftReflexesAttack := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 124335}, + ProcMask: core.ProcMaskMeleeMHSpecial, + SpellSchool: core.SpellSchoolPhysical, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagPassiveSpell, + MaxRange: core.MaxMeleeRange, + + DamageMultiplier: 0.3 * 7.5, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + + spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + }, + }) + + icd := &core.Cooldown{ + Duration: time.Second, + Timer: monk.NewTimer(), + } + + core.MakePermanent(monk.RegisterAura(core.Aura{ + Label: "Swift Reflexes" + monk.Label, + ActionID: core.ActionID{SpellID: 124334}, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.PseudoStats.BaseParryChance += 0.05 + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.PseudoStats.BaseParryChance -= 0.05 + }, + OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if icd.IsReady(sim) && result.Outcome.Matches(core.OutcomeParry) { + icd.Use(sim) + swiftReflexesAttack.Cast(sim, result.Target) + } + }, + })) +} diff --git a/sim/monk/spinning_crane_kick.go b/sim/monk/spinning_crane_kick.go new file mode 100644 index 0000000000..edf2c3889a --- /dev/null +++ b/sim/monk/spinning_crane_kick.go @@ -0,0 +1,139 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +/* +Tooltip: +You spin while kicking in the air, dealing ${1.59*(1.75/1.59)*$} to ${1.59*(1.75/1.59)*$} damage to all nearby enemies + +-- Teachings of the Monastery -- + + and $117640m1 healing to nearby allies + +-- Teachings of the Monastery -- + + every 0.75 sec, within 8 yards. + +-- NOT Glyph of Spinning Crane Kick -- +Movement speed is reduced by 30%. +-- NOT Glyph of Spinning Crane Kick -- + +Generates 1 Chi, if it hits at least 3 targets. Lasts 2 sec. +During Spinning Crane Kick, you can continue to dodge and parry. +*/ +func (monk *Monk) registerSpinningCraneKick() { + // Rushing Jade Wind replaces Spinning Crane Kick + if monk.Talents.RushingJadeWind && monk.Level >= 90 { + return + } + + actionID := core.ActionID{SpellID: 101546} + debuffActionID := core.ActionID{SpellID: 107270} + chiMetrics := monk.NewChiMetrics(actionID) + numTargets := monk.Env.GetNumTargets() + + spinningCraneKickTickSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: debuffActionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellSpinningCraneKick, + MaxRange: 8, + + DamageMultiplier: 1.75, // 1.59 * (1.75 / 1.59), + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + results := make([]*core.SpellResult, numTargets) + + for idx := int32(0); idx < numTargets; idx++ { + currentTarget := sim.Environment.GetTargetUnit(idx) + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + results[idx] = spell.CalcDamage(sim, currentTarget, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + } + + for idx := int32(0); idx < numTargets; idx++ { + spell.DealDamage(sim, results[idx]) + } + }, + }) + + glyphOfSpinningCraneKick := monk.HasMajorGlyph(proto.MonkMajorGlyph_GlyphOfSpinningCraneKick) + spinningCraneKickAura := monk.RegisterAura(core.Aura{ + Label: "Spinning Crane Kick" + monk.Label, + ActionID: actionID, + Duration: time.Millisecond * 750 * 3, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + if !glyphOfSpinningCraneKick { + monk.MultiplyMovementSpeed(sim, 0.7) + } + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + if !glyphOfSpinningCraneKick { + monk.MultiplyMovementSpeed(sim, 1.0/0.7) + } + }, + }) + + isWiseSerpent := monk.StanceMatches(WiseSerpent) + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: core.SpellFlagChanneled | SpellFlagBuilder | core.SpellFlagAPL, + ClassSpellMask: MonkSpellSpinningCraneKick, + + EnergyCost: core.EnergyCostOptions{ + Cost: core.TernaryInt32(isWiseSerpent, 0, 40), + }, + ManaCost: core.ManaCostOptions{ + BaseCostPercent: core.TernaryInt32(isWiseSerpent, 715, 0), + PercentModifier: core.TernaryInt32(isWiseSerpent, 1, 0), // 1% of 715 = 7.15% + }, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + Dot: core.DotConfig{ + IsAOE: true, + Aura: core.Aura{ + Label: "Spinning Crane Kick" + monk.Label, + ActionID: debuffActionID, + }, + NumberOfTicks: 3, + TickLength: time.Millisecond * 750, + AffectedByCastSpeed: true, + HasteReducesDuration: true, + + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + spinningCraneKickTickSpell.Cast(sim, target) + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + dot := spell.AOEDot() + dot.Apply(sim) + dot.TickOnce(sim) + + expiresAt := dot.ExpiresAt() + monk.AutoAttacks.DelayMeleeBy(sim, expiresAt-sim.CurrentTime) + monk.ExtendGCDUntil(sim, expiresAt+monk.ReactionTime) + + remainingDuration := dot.RemainingDuration(sim) + spinningCraneKickAura.Duration = remainingDuration + spinningCraneKickAura.Activate(sim) + + if numTargets >= 3 { + monk.AddChi(sim, spell, 1, chiMetrics) + } + }, + }) +} diff --git a/sim/monk/stances.go b/sim/monk/stances.go new file mode 100644 index 0000000000..d7d86438cf --- /dev/null +++ b/sim/monk/stances.go @@ -0,0 +1,180 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +type Stance uint8 + +const ( + StanceNone = 0 + FierceTiger Stance = 1 << iota + SturdyOx + WiseSerpent +) + +const stanceEffectCategory = "Stance" + +func (monk *Monk) StanceMatches(other Stance) bool { + return (monk.Stance & other) != 0 +} + +func (monk *Monk) makeStanceSpell(aura *core.Aura, stanceCD *core.Timer) *core.Spell { + return monk.RegisterSpell(core.SpellConfig{ + ActionID: aura.ActionID, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagAPL, + + Cast: core.CastConfig{ + CD: core.Cooldown{ + Timer: stanceCD, + Duration: time.Second, + }, + }, + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return !aura.IsActive() + }, + + ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { + aura.Activate(sim) + }, + }) +} + +func (monk *Monk) registerStanceOfTheSturdyOx(stanceCD *core.Timer) { + if monk.Spec != proto.Spec_SpecBrewmasterMonk { + return + } + + monk.StanceOfTheSturdyOxAura = monk.GetOrRegisterAura(core.Aura{ + Label: "Stance of the Sturdy Ox" + monk.Label, + ActionID: core.ActionID{SpellID: 115069}, + Duration: core.NeverExpires, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.Stance = SturdyOx + monk.PseudoStats.DamageTakenMultiplier *= 0.75 + monk.PseudoStats.ReducedCritTakenChance += 0.06 + monk.MultiplyEnergyRegenSpeed(sim, 1.1) + monk.SetCurrentPowerBar(core.EnergyBar) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.Stance = StanceNone + monk.PseudoStats.DamageTakenMultiplier /= 0.75 + monk.PseudoStats.ReducedCritTakenChance -= 0.06 + monk.MultiplyEnergyRegenSpeed(sim, 1.0/1.1) + }, + }) + + monk.StanceOfTheSturdyOxAura.NewExclusiveEffect(stanceEffectCategory, true, core.ExclusiveEffect{}) + monk.StanceOfTheSturdyOx = monk.makeStanceSpell(monk.StanceOfTheSturdyOxAura, stanceCD) +} + +func (monk *Monk) registerStanceOfTheWiseSerpent(stanceCD *core.Timer) { + if monk.Spec != proto.Spec_SpecMistweaverMonk { + return + } + + hitDep := monk.NewDynamicStatDependency(stats.Spirit, stats.HitRating, 0.5) + expDep := monk.NewDynamicStatDependency(stats.Spirit, stats.ExpertiseRating, 0.5) + hasteDep := monk.NewDynamicMultiplyStat(stats.HasteRating, 1.5) + // TODO: This should be a replacement not a dependency. + // apDep := monk.NewDynamicStatDependency(stats.SpellPower, stats.AttackPower, 2) + + dmgDone := 0.0 + + eminenceHeal := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 117895}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagPassiveSpell, + + DamageMultiplier: 0.25, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + spell.CalcAndDealHealing(sim, target, dmgDone, spell.OutcomeHealing) + }, + }) + + // When the Monk deals non-autoattack damage, he/she will heal the lowest health nearby target within 20 yards equal to 25% of the damage done. + eminenceAura := monk.RegisterAura(core.Aura{ + Label: "Eminence" + monk.Label, + ActionID: core.ActionID{SpellID: 126890}, + Duration: core.NeverExpires, + OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if result == nil || !result.Landed() || result.Damage == 0 || spell.ProcMask.Matches(core.ProcMaskWhiteHit) { + return + } + + dmgDone = result.Damage + // Should be a smart heal + eminenceHeal.Cast(sim, &monk.Unit) + }, + }) + + monk.StanceOfTheWiseSerpentAura = monk.GetOrRegisterAura(core.Aura{ + Label: "Stance of the Wise Serpent" + monk.Label, + ActionID: core.ActionID{SpellID: 136336}, + Duration: core.NeverExpires, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.Stance = WiseSerpent + monk.PseudoStats.HealingDealtMultiplier *= 1.2 + monk.EnableDynamicStatDep(sim, hitDep) + monk.EnableDynamicStatDep(sim, expDep) + monk.EnableDynamicStatDep(sim, hasteDep) + // monk.EnableDynamicStatDep(sim, apDep) + monk.SetCurrentPowerBar(core.ManaBar) + eminenceAura.Activate(sim) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + eminenceAura.Deactivate(sim) + monk.SetCurrentPowerBar(core.EnergyBar) + // monk.DisableDynamicStatDep(sim, apDep) + monk.DisableDynamicStatDep(sim, hasteDep) + monk.DisableDynamicStatDep(sim, expDep) + monk.DisableDynamicStatDep(sim, hitDep) + monk.PseudoStats.HealingDealtMultiplier /= 1.2 + monk.Stance = StanceNone + }, + }) + + monk.StanceOfTheWiseSerpentAura.NewExclusiveEffect(stanceEffectCategory, true, core.ExclusiveEffect{}) + monk.StanceOfTheWiseSerpent = monk.makeStanceSpell(monk.StanceOfTheWiseSerpentAura, stanceCD) +} + +/* +Increases your movement speed by 10%, increases damage done by 10% and increases the amount of Chi generated by your Jab and Expel Harm abilities by 1. +*/ +func (monk *Monk) registerStanceOfTheFierceTiger(stanceCD *core.Timer) { + monk.StanceOfTheFierceTigerAura = monk.GetOrRegisterAura(core.Aura{ + Label: "Stance of the Fierce Tiger" + monk.Label, + ActionID: core.ActionID{SpellID: 103985}, + Duration: core.NeverExpires, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.Stance = FierceTiger + monk.PseudoStats.DamageDealtMultiplier *= 1.1 + // This **does** stack with other movement speed buffs. + monk.PseudoStats.MovementSpeedMultiplier *= 1.1 + monk.SetCurrentPowerBar(core.EnergyBar) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.Stance = StanceNone + monk.PseudoStats.DamageDealtMultiplier /= 1.1 + monk.PseudoStats.MovementSpeedMultiplier /= 1.1 + }, + }) + + monk.StanceOfTheFierceTigerAura.NewExclusiveEffect(stanceEffectCategory, true, core.ExclusiveEffect{}) + monk.StanceOfTheFierceTiger = monk.makeStanceSpell(monk.StanceOfTheFierceTigerAura, stanceCD) +} + +func (monk *Monk) registerStances() { + stanceCD := monk.NewTimer() + monk.registerStanceOfTheSturdyOx(stanceCD) + monk.registerStanceOfTheWiseSerpent(stanceCD) + monk.registerStanceOfTheFierceTiger(stanceCD) +} diff --git a/sim/monk/talents.go b/sim/monk/talents.go new file mode 100644 index 0000000000..d172c00a5e --- /dev/null +++ b/sim/monk/talents.go @@ -0,0 +1,775 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" +) + +func (monk *Monk) ApplyTalents() { + if monk.Level >= 15 { + monk.registerCelerity() + monk.registerTigersLust() + monk.registerMomentum() + } + + if monk.Level >= 30 { + monk.registerChiWave() + monk.registerZenSphere() + monk.registerChiBurst() + } + + if monk.Level >= 45 { + monk.registerPowerStrikes() + monk.registerAscension() + monk.registerChiBrew() + } + + if monk.Level >= 75 { + monk.registerHealingElixirs() + monk.registerDampenHarm() + monk.registerDiffuseMagic() + } + + if monk.Level >= 90 { + monk.registerRushingJadeWind() + monk.registerInvokeXuenTheWhiteTiger() + monk.registerChiTorpedo() + } +} + +func (monk *Monk) registerCelerity() { +} + +func (monk *Monk) registerTigersLust() { +} + +func (monk *Monk) registerMomentum() { +} + +/* +Tooltip: +You cause a wave of Chi energy to flow through friend and foe, dealing $ Nature damage or $ healing. Bounces up to 7 times to the nearest targets within 25 yards. + +When bouncing to allies, Chi Wave will prefer those injured over full health. + +$damage=${+$ap*0.45} +$healing=${+$ap*0.45} +*/ +func (monk *Monk) registerChiWave() { + if !monk.Talents.ChiWave { + return + } + + avgScaling := monk.ClassSpellScaling * 0.4499999881 + var nextTarget *core.Unit + tickIndex := 0 + + var chiWaveDamageSpell *core.Spell + var chiWaveHealingSpell *core.Spell + chiWaveDamageSpell = monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 132467}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellChiWave, + MissileSpeed: 8, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := avgScaling + spell.MeleeAttackPower()*0.45 + + result := spell.CalcDamage(sim, target, baseDamage, spell.OutcomeMagicHitAndCrit) + + spell.WaitTravelTime(sim, func(sim *core.Simulation) { + spell.DealDamage(sim, result) + + if tickIndex < 7 { + tickIndex++ + + nextTarget = nextTarget.Env.NextTargetUnit(nextTarget) + chiWaveHealingSpell.Cast(sim, &monk.Unit) + } + }) + }, + }) + + chiWaveHealingSpell = monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 132463}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagHelpful | core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellChiWave, + MissileSpeed: 8, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseHealing := avgScaling + spell.MeleeAttackPower()*0.45 + + result := spell.CalcHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) + + spell.WaitTravelTime(sim, func(sim *core.Simulation) { + spell.DealHealing(sim, result) + + if tickIndex < 7 { + tickIndex++ + chiWaveDamageSpell.Cast(sim, nextTarget) + } + }) + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 115098}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagAPL, + ClassSpellMask: MonkSpellChiWave, + MaxRange: 40, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: time.Second * 15, + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + tickIndex = 0 + if monk.IsOpponent(target) { + nextTarget = target.Env.NextTargetUnit(target) + chiWaveDamageSpell.Cast(sim, target) + } else { + nextTarget = target.CurrentTarget + chiWaveHealingSpell.Cast(sim, target) + } + }, + }) +} + +/* +Tooltip: +Forms a Zen Sphere above the target, healing the target for $ and dealing $ Nature damage to the nearest enemy within 10 yards of the target every 2 sec for 16 sec. Only two Zen Spheres can be summoned at any one time. + +If the target of the Zen Sphere reaches 35% or lower health or if the Zen Sphere is dispelled or expires it will detonate, dealing $ Nature damage and $ healing to all targets within 10 yards. + +$damageperiodic=${(+$ap*0.09)} +$healingperiodic=${(+$ap*0.09)} +$damagedetonate=${(+$ap*0.368)} +$healingdetonate=${(+$ap*0.234)} +*/ + +func (monk *Monk) registerZenSphere() { + if !monk.Talents.ZenSphere { + return + } + + numTargets := monk.Env.GetNumTargets() + // The 15% extra is from a hotfix not represented in the tooltip. + avgTickScaling := monk.ClassSpellScaling * 0.1040000021 * 1.15 + avgDetonateHealScaling := monk.ClassSpellScaling * 0.2689999938 * 1.15 + avgDetonateDmgScaling := monk.ClassSpellScaling * 0.4230000079 * 1.15 + + detonateDamageSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 125033}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellZenSphere, + MaxRange: 10, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := avgDetonateDmgScaling + spell.MeleeAttackPower()*0.368 + + results := make([]*core.SpellResult, numTargets) + + for idx := int32(0); idx < numTargets; idx++ { + currentTarget := sim.Environment.GetTargetUnit(idx) + results[idx] = spell.CalcDamage(sim, currentTarget, baseDamage, spell.OutcomeMagicHitAndCrit) + } + + for idx := int32(0); idx < numTargets; idx++ { + spell.DealDamage(sim, results[idx]) + } + }, + }) + + detonateHealingSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 124101}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagHelpful | core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellZenSphere, + MaxRange: 10, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseHealing := avgDetonateHealScaling + spell.MeleeAttackPower()*0.234 + spell.CalcAndDealHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) + }, + }) + + var currentTargetIndex int32 + zenSphereDotSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 124098}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellZenSphere, + MaxRange: 10, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + Dot: core.DotConfig{ + Aura: core.Aura{ + Label: "Zen Sphere (Damage)" + monk.Label, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + detonateDamageSpell.Cast(sim, aura.Unit) + }, + }, + NumberOfTicks: 8, + TickLength: time.Second * 2, + AffectedByCastSpeed: false, + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + healValue := avgTickScaling + dot.Spell.MeleeAttackPower()*0.09 + target = sim.GetTargetUnit(currentTargetIndex) + dot.Spell.CalcAndDealPeriodicDamage(sim, target, healValue, dot.OutcomeTickMagicCrit) + currentTargetIndex = sim.NextTargetUnit(target).UnitIndex + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + currentTargetIndex = target.UnitIndex + spell.Dot(target).Activate(sim) + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 124081}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagAPL | core.SpellFlagHelpful, + ClassSpellMask: MonkSpellZenSphere, + MaxRange: 40, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: time.Second * 10, + }, + }, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + Hot: core.DotConfig{ + Aura: core.Aura{ + Label: "Zen Sphere (Heal)" + monk.Label, + OnSpellHitTaken: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if aura.Unit.CurrentHealthPercent() <= 0.35 { + aura.Deactivate(sim) + zenSphereDotSpell.Dot(aura.Unit.CurrentTarget).Deactivate(sim) + } + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + detonateHealingSpell.Cast(sim, aura.Unit) + }, + }, + NumberOfTicks: 8, + TickLength: time.Second * 2, + AffectedByCastSpeed: false, + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + healValue := avgTickScaling + dot.Spell.MeleeAttackPower()*0.09 + dot.Spell.CalcAndDealPeriodicHealing(sim, target, healValue, dot.OutcomeTickHealingCrit) + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + target = spell.Unit + + if target.CurrentHealthPercent() <= 0.35 { + detonateHealingSpell.Cast(sim, target) + detonateDamageSpell.Cast(sim, target.CurrentTarget) + return + } + + spell.Hot(target).Activate(sim) + zenSphereDotSpell.Cast(sim, target.CurrentTarget) + }, + }) +} + +/* +Tooltip: +You summon a torrent of Chi energy and hurl it forward, up to 40 yds, dealing $ Nature damage to all enemies, and $ healing to all allies in its path. Chi Burst will always heal the Monk. + +While casting Chi Burst, you continue to dodge, parry, and auto-attack. + +$damage=${+$ap*1.21} +$healing=${+$ap} +*/ +func (monk *Monk) registerChiBurst() { + if !monk.Talents.ChiBurst { + return + } + + numTargets := monk.Env.GetNumTargets() + avgDmgScaling := monk.ClassSpellScaling * 1.2100000381 + + chiBurstDamageSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 148135}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellChiBurst, + MissileSpeed: 30, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := avgDmgScaling + spell.MeleeAttackPower()*1.21 + + results := make([]*core.SpellResult, numTargets) + + for idx := int32(0); idx < numTargets; idx++ { + currentTarget := sim.Environment.GetTargetUnit(idx) + results[idx] = spell.CalcDamage(sim, currentTarget, baseDamage, spell.OutcomeMagicHitAndCrit) + } + + spell.WaitTravelTime(sim, func(simulation *core.Simulation) { + for idx := int32(0); idx < numTargets; idx++ { + spell.DealDamage(sim, results[idx]) + } + }) + }, + }) + + chiBurstHealingSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: core.ActionID{SpellID: 130654}, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellHealing, + Flags: core.SpellFlagHelpful | core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellChiBurst, + MissileSpeed: 30, + + DamageMultiplier: 1.0, + ThreatMultiplier: 1.0, + CritMultiplier: monk.DefaultSpellCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseHealing := monk.ClassSpellScaling + spell.MeleeAttackPower() + + result := spell.CalcHealing(sim, target, baseHealing, spell.OutcomeHealingCrit) + + spell.WaitTravelTime(sim, func(sim *core.Simulation) { + spell.DealHealing(sim, result) + }) + }, + }) + + actionID := core.ActionID{SpellID: 123986} + chiBurstFakeCastAura := monk.RegisterAura(core.Aura{ + Label: "Chi Burst" + monk.Label, + ActionID: actionID, + Duration: time.Second, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + chiBurstDamageSpell.Cast(sim, monk.CurrentTarget) + chiBurstHealingSpell.Cast(sim, &monk.Unit) + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolNature, + ProcMask: core.ProcMaskSpellDamage, + Flags: core.SpellFlagAPL, + ClassSpellMask: MonkSpellChiBurst, + MaxRange: 40, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: time.Second * 30, + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + chiBurstFakeCastAura.Activate(sim) + }, + }) +} + +func (monk *Monk) registerPowerStrikes() { + if !monk.Talents.PowerStrikes { + return + } + + chiSphereSpellActionID := core.ActionID{SpellID: 121283} + chiSphereChiMetrics := monk.NewChiMetrics(chiSphereSpellActionID) + + monk.ChiSphereAura = monk.RegisterAura(core.Aura{ + Label: "Chi Sphere" + monk.Label, + ActionID: core.ActionID{SpellID: 121286}, + Duration: time.Minute * 2, + MaxStacks: 10, + }) + + chiSphereUseAura := monk.RegisterAura(core.Aura{ + Label: "Chi Sphere (Use)" + monk.Label, + ActionID: chiSphereSpellActionID, + Duration: core.NeverExpires, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: chiSphereSpellActionID, + SpellSchool: core.SpellSchoolPhysical, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagPassiveSpell | core.SpellFlagAPL, + ClassSpellMask: MonkSpellChiSphere, + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return !chiSphereUseAura.IsActive() && monk.ChiSphereAura.IsActive() && monk.ChiSphereAura.GetStacks() > 0 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + chiSphereUseAura.Activate(sim) + + // Orbs spawn ~4 yards away, simulate movement to grab the sphere. + moveDuration := core.DurationFromSeconds(4.0 / monk.GetMovementSpeed()) + monk.MoveDuration(moveDuration, sim) + sim.AddPendingAction(&core.PendingAction{ + NextActionAt: sim.CurrentTime + moveDuration, + OnAction: func(sim *core.Simulation) { + monk.ChiSphereAura.RemoveStack(sim) + chiSphereUseAura.Deactivate(sim) + monk.AddChi(sim, spell, 1, chiSphereChiMetrics) + }, + }) + }, + }) + + powerStrikesAuraActionID := core.ActionID{SpellID: 129914} + monk.PowerStrikesChiMetrics = monk.NewChiMetrics(powerStrikesAuraActionID) + + monk.PowerStrikesAura = monk.RegisterAura(core.Aura{ + Label: "Power Strikes" + monk.Label, + ActionID: powerStrikesAuraActionID, + Duration: core.NeverExpires, + }) + + monk.RegisterResetEffect(func(sim *core.Simulation) { + // Start at a random time + startAt := sim.RandomFloat("Power Strikes Start") * 20.0 + sim.AddPendingAction(&core.PendingAction{ + NextActionAt: core.DurationFromSeconds(startAt), + OnAction: func(sim *core.Simulation) { + core.StartPeriodicAction(sim, core.PeriodicActionOptions{ + Period: time.Second * 20, + Priority: core.ActionPriorityLow, + TickImmediately: true, + OnAction: func(sim *core.Simulation) { + monk.PowerStrikesAura.Activate(sim) + }, + }) + }, + }) + }) +} + +func (monk *Monk) TriggerPowerStrikes(sim *core.Simulation) { + if !monk.PowerStrikesAura.IsActive() { + return + } + + if monk.ComboPoints() == monk.MaxComboPoints() { + monk.ChiSphereAura.Activate(sim) + monk.ChiSphereAura.AddStack(sim) + } else { + monk.AddChi(sim, nil, 1, monk.PowerStrikesChiMetrics) + } + + monk.PowerStrikesAura.Deactivate(sim) +} + +func (monk *Monk) registerAscension() { + if !monk.Talents.Ascension { + return + } + + core.MakePermanent(monk.GetOrRegisterAura(core.Aura{ + Label: "Ascension" + monk.Label, + ActionID: core.ActionID{SpellID: 115396}, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + monk.MultiplyEnergyRegenSpeed(sim, 1.15) + monk.SetMaxComboPoints(5) + + if monk.HasManaBar() { + monk.MultiplyStat(stats.Mana, 1.15) + } + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + monk.MultiplyEnergyRegenSpeed(sim, 1.0/1.15) + monk.SetMaxComboPoints(4) + + if monk.HasManaBar() { + monk.MultiplyStat(stats.Mana, 1.0/1.15) + } + }, + })) +} + +func (monk *Monk) registerChiBrew() { + if !monk.Talents.ChiBrew { + return + } + + actionID := core.ActionID{SpellID: 115399} + chiMetrics := monk.NewChiMetrics(actionID) + + var chiBrewAura *core.Aura + chiBrewAura = monk.RegisterAura(core.Aura{ + Label: "Chi Brew" + monk.Label, + ActionID: actionID, + Duration: core.NeverExpires, + MaxStacks: 2, + + OnReset: func(aura *core.Aura, sim *core.Simulation) { + if monk.chiBrewRecharge != nil { + monk.chiBrewRecharge.Cancel(sim) + } + + aura.Activate(sim) + aura.SetStacks(sim, 2) + }, + + OnStacksChange: func(aura *core.Aura, sim *core.Simulation, oldStacks, newStacks int32) { + if !aura.IsActive() { + return + } + + if newStacks < oldStacks { + nextRecharge := &core.PendingAction{ + NextActionAt: sim.CurrentTime + time.Second*45, + OnAction: func(sim *core.Simulation) { + aura.Activate(sim) + aura.AddStack(sim) + }, + } + + if monk.chiBrewRecharge != nil { + // If we have an existing stack recharging, set this new one as current when it's done. + // This way we can always check next recharge time from the APL. + oldAction := monk.chiBrewRecharge.OnAction + monk.chiBrewRecharge.OnAction = func(sim *core.Simulation) { + monk.chiBrewRecharge = nextRecharge + oldAction(sim) + } + } else { + monk.chiBrewRecharge = nextRecharge + } + + sim.AddPendingAction(nextRecharge) + } else if newStacks > oldStacks { + if newStacks == 2 || monk.chiBrewRecharge.IsConsumed() { + monk.chiBrewRecharge = nil + } + } + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagAPL, + ClassSpellMask: MonkSpellChiBrew, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + NonEmpty: true, + }, + }, + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return chiBrewAura.GetStacks() >= 1 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + // TODO: Add 5 Elusive Brew stacks for Brewmasters + // TODO: Add 2 Mana Tea stacks for Mistweavers + + monk.AddChi(sim, spell, 2, chiMetrics) + monk.AddBrewStacks(sim, 2) + + chiBrewAura.RemoveStack(sim) + }, + }) +} + +func (monk *Monk) registerHealingElixirs() { +} + +func (monk *Monk) registerDampenHarm() { +} + +func (monk *Monk) registerDiffuseMagic() { +} + +/* +Tooltip: +You summon a whirling tornado around you which deals ${1.59*(1.4/1.59)*$} to ${1.59*(1.4/1.59)*$} damage to all nearby enemies + +-- Teachings of the Monastery -- +and $117640m1 healing to nearby allies +-- Teachings of the Monastery -- + +every 0.75 sec, within 8 yards. Generates 1 Chi, if it hits at least 3 targets. Lasts 6 sec. + +Replaces Spinning Crane Kick. +*/ +func (monk *Monk) registerRushingJadeWind() { + if !monk.Talents.RushingJadeWind { + return + } + + actionID := core.ActionID{SpellID: 116847} + debuffActionID := core.ActionID{SpellID: 148187} + chiMetrics := monk.NewChiMetrics(actionID) + numTargets := monk.Env.GetNumTargets() + + rushingJadeWindTickSpell := monk.RegisterSpell(core.SpellConfig{ + ActionID: debuffActionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagPassiveSpell, + ClassSpellMask: MonkSpellRushingJadeWind, + MaxRange: 8, + + DamageMultiplier: 1.4, // 1.59 * (1.4 / 1.59), + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + results := make([]*core.SpellResult, numTargets) + + for idx := int32(0); idx < numTargets; idx++ { + currentTarget := sim.Environment.GetTargetUnit(idx) + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + results[idx] = spell.CalcDamage(sim, currentTarget, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + } + + for idx := int32(0); idx < numTargets; idx++ { + spell.DealDamage(sim, results[idx]) + } + }, + }) + + baseCooldown := time.Second * 6 + + rushingJadeWindBuff := monk.RegisterAura(core.Aura{ + Label: "Rushing Jade Wind" + monk.Label, + ActionID: actionID, + Duration: baseCooldown, + }) + + isWiseSerpent := monk.StanceMatches(WiseSerpent) + var rushingJadeWindSpell *core.Spell + rushingJadeWindSpell = monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: SpellFlagBuilder | core.SpellFlagAPL, + ClassSpellMask: MonkSpellRushingJadeWind, + + EnergyCost: core.EnergyCostOptions{ + Cost: core.TernaryInt32(isWiseSerpent, 0, 40), + }, + ManaCost: core.ManaCostOptions{ + BaseCostPercent: core.TernaryInt32(isWiseSerpent, 715, 0), + PercentModifier: core.TernaryInt32(isWiseSerpent, 1, 0), // 1% of 715 = 7.15% + }, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: monk.NewTimer(), + Duration: baseCooldown, + }, + }, + + Dot: core.DotConfig{ + IsAOE: true, + Aura: core.Aura{ + Label: "Rushing Jade Wind" + monk.Label, + ActionID: debuffActionID, + OnInit: func(aura *core.Aura, sim *core.Simulation) { + rushingJadeWindSpell.CD.Duration = monk.ApplyCastSpeed(baseCooldown) + rushingJadeWindBuff.Duration = rushingJadeWindSpell.CD.Duration + }, + }, + NumberOfTicks: 8, + TickLength: time.Millisecond * 750, + AffectedByCastSpeed: true, + HasteReducesDuration: true, + + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + rushingJadeWindTickSpell.Cast(sim, target) + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + dot := spell.AOEDot() + dot.Apply(sim) + dot.TickOnce(sim) + + remainingDuration := dot.RemainingDuration(sim) + rushingJadeWindSpell.CD.Duration = remainingDuration + rushingJadeWindBuff.Duration = remainingDuration + rushingJadeWindBuff.Activate(sim) + + if numTargets >= 3 { + monk.AddChi(sim, spell, 1, chiMetrics) + } + }, + }) + + monk.AddOnCastSpeedChanged(func(_ float64, _ float64) { + rushingJadeWindSpell.CD.Duration = monk.ApplyCastSpeed(baseCooldown) + rushingJadeWindBuff.Duration = rushingJadeWindSpell.CD.Duration + }) +} + +func (monk *Monk) registerInvokeXuenTheWhiteTiger() { +} + +func (monk *Monk) registerChiTorpedo() { +} diff --git a/sim/monk/tiger_palm.go b/sim/monk/tiger_palm.go new file mode 100644 index 0000000000..3e6b89b5a7 --- /dev/null +++ b/sim/monk/tiger_palm.go @@ -0,0 +1,91 @@ +package monk + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" +) + +/* +Tooltip: +Attack with the palm of your hand, dealing + +-- Teachings of the Monastery -- + + ${6*$} to ${6*$} + +-- else -- + + ${3*$} to ${3*$} + +-- + + damage. + +Also grants you Tiger Power, causing your attacks to ignore 30% of enemies' armor for 20 sec. +*/ +func (monk *Monk) registerTigerPalm() { + actionID := core.ActionID{SpellID: 100787} + chiMetrics := monk.NewChiMetrics(actionID) + isBrewmaster := monk.Spec == proto.Spec_SpecBrewmasterMonk + + tigerPowerBuff := monk.RegisterAura(core.Aura{ + Label: "Tiger Power" + monk.Label, + ActionID: actionID.WithTag(2), + Duration: time.Second * 20, + + OnGain: func(aura *core.Aura, sim *core.Simulation) { + for _, target := range sim.Encounter.TargetUnits { + monk.AttackTables[target.UnitIndex].ArmorIgnoreFactor += 0.3 + } + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + for _, target := range sim.Encounter.TargetUnits { + monk.AttackTables[target.UnitIndex].ArmorIgnoreFactor -= 0.3 + } + }, + }) + + monk.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | SpellFlagSpender | core.SpellFlagAPL, + ClassSpellMask: MonkSpellTigerPalm, + MaxRange: core.MaxMeleeRange, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + DamageMultiplier: 3.0, + ThreatMultiplier: 1, + CritMultiplier: monk.DefaultMeleeCritMultiplier(), + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return monk.ComboPoints() >= 1 || monk.ComboBreakerTigerPalmAura.IsActive() + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := monk.CalculateMonkStrikeDamage(sim, spell) + + result := spell.CalcDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + + if result.Landed() { + tigerPowerBuff.Activate(sim) + + if monk.ComboBreakerTigerPalmAura.IsActive() || isBrewmaster { + monk.SpendChi(sim, 0, chiMetrics) + } else { + monk.SpendChi(sim, 1, chiMetrics) + } + } + + spell.DealOutcome(sim, result) + }, + }) +} diff --git a/sim/monk/windwalker/energizing_brew.go b/sim/monk/windwalker/energizing_brew.go new file mode 100644 index 0000000000..e5274d0736 --- /dev/null +++ b/sim/monk/windwalker/energizing_brew.go @@ -0,0 +1,49 @@ +package windwalker + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/monk" +) + +func (ww *WindwalkerMonk) registerEnergizingBrew() { + actionID := core.ActionID{SpellID: 115288} + energyMetrics := ww.NewEnergyMetrics(actionID) + + energizingBrewAura := ww.RegisterAura(core.Aura{ + Label: "Energizing Brew" + ww.Label, + ActionID: actionID, + Duration: time.Second * 6, + + OnGain: func(aura *core.Aura, sim *core.Simulation) { + core.StartPeriodicAction(sim, core.PeriodicActionOptions{ + Period: time.Second * 1, + NumTicks: 6, + OnAction: func(sim *core.Simulation) { + ww.AddEnergy(sim, 10, energyMetrics) + }, + }) + }, + }) + + ww.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagAPL, + ClassSpellMask: monk.MonkSpellEnergizingBrew, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + NonEmpty: true, + }, + CD: core.Cooldown{ + Timer: ww.NewTimer(), + Duration: time.Minute, + }, + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + energizingBrewAura.Activate(sim) + }, + }) +} diff --git a/sim/monk/windwalker/fists_of_fury.go b/sim/monk/windwalker/fists_of_fury.go new file mode 100644 index 0000000000..a81f590d01 --- /dev/null +++ b/sim/monk/windwalker/fists_of_fury.go @@ -0,0 +1,114 @@ +package windwalker + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/monk" +) + +/* +Tooltip: +Pummel all targets in front of you with rapid hand strikes, stunning them and dealing ${7.5*0.89*$} to ${7.5*0.89*$} damage immediately and every 1 sec for 4 sec. +Damage is spread evenly over all targets. + +-- Glyph of Fists of Fury -- +Your parry chance is increased by 100% while channeling. +-- Glyph of Fists of Fury -- +*/ +func (ww *WindwalkerMonk) registerFistsOfFury() { + actionID := core.ActionID{SpellID: 113656} + debuffActionID := core.ActionID{SpellID: 117418} + chiMetrics := ww.NewChiMetrics(actionID) + numTargets := ww.Env.GetNumTargets() + + fistsOfFuryTickSpell := ww.RegisterSpell(core.SpellConfig{ + ActionID: debuffActionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | core.SpellFlagPassiveSpell, + ClassSpellMask: monk.MonkSpellFistsOfFury, + MaxRange: core.MaxMeleeRange, + + DamageMultiplier: 7.5 * 0.89, + ThreatMultiplier: 1, + CritMultiplier: ww.DefaultMeleeCritMultiplier(), + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + results := make([]*core.SpellResult, numTargets) + baseDamage := ww.CalculateMonkStrikeDamage(sim, spell) + + // Damage is split between all mobs, each hit rolls for hit/crit separately + baseDamage /= float64(numTargets) + + for idx := int32(0); idx < numTargets; idx++ { + currentTarget := sim.Environment.GetTargetUnit(idx) + result := spell.CalcDamage(sim, currentTarget, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + results[idx] = result + } + + for idx := int32(0); idx < numTargets; idx++ { + spell.DealDamage(sim, results[idx]) + } + }, + }) + + fistsOfFuryBuff := ww.RegisterAura(core.Aura{ + Label: "Fists of Fury" + ww.Label, + ActionID: actionID, + Duration: time.Second * 3, + }) + + ww.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + Flags: core.SpellFlagChanneled | monk.SpellFlagSpender | core.SpellFlagAPL, + ClassSpellMask: monk.MonkSpellFistsOfFury, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: ww.NewTimer(), + Duration: time.Second * 25, + }, + }, + + Dot: core.DotConfig{ + IsAOE: true, + Aura: core.Aura{ + Label: "Fists of Fury" + ww.Label, + ActionID: debuffActionID, + }, + NumberOfTicks: 4, + TickLength: time.Second * 1, + AffectedByCastSpeed: true, + HasteReducesDuration: true, + + OnTick: func(sim *core.Simulation, target *core.Unit, dot *core.Dot) { + fistsOfFuryTickSpell.Cast(sim, target) + }, + }, + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return !ww.Moving && ww.ComboPoints() >= 3 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + ww.SpendChi(sim, 3, chiMetrics) + + dot := spell.AOEDot() + dot.Apply(sim) + dot.TickOnce(sim) + + expiresAt := dot.ExpiresAt() + ww.AutoAttacks.DelayMeleeBy(sim, expiresAt-sim.CurrentTime) + ww.ExtendGCDUntil(sim, expiresAt+ww.ReactionTime) + + remainingDuration := dot.RemainingDuration(sim) + fistsOfFuryBuff.Duration = remainingDuration + fistsOfFuryBuff.Activate(sim) + }, + }) +} diff --git a/sim/monk/windwalker/passives.go b/sim/monk/windwalker/passives.go new file mode 100644 index 0000000000..ef5080f343 --- /dev/null +++ b/sim/monk/windwalker/passives.go @@ -0,0 +1,188 @@ +package windwalker + +import ( + "time" + + "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/monk" +) + +func (ww *WindwalkerMonk) registerPassives() { + ww.registerCombatConditioning() + ww.registerComboBreaker() + ww.registerTigerStrikes() +} + +func (ww *WindwalkerMonk) registerCombatConditioning() { + if !ww.HasMinorGlyph(proto.MonkMinorGlyph_GlyphOfBlackoutKick) && ww.PseudoStats.InFrontOfTarget { + return + } + + cata.RegisterIgniteEffect(&ww.Unit, cata.IgniteConfig{ + ActionID: core.ActionID{SpellID: 100784}.WithTag(2), // actual 128531 + DotAuraLabel: "Blackout Kick (DoT)" + ww.Label, + DisableCastMetrics: true, + IncludeAuraDelay: true, + SpellSchool: core.SpellSchoolPhysical, + NumberOfTicks: 4, + TickLength: time.Second, + + ProcTrigger: core.ProcTrigger{ + Name: "Combat Conditioning" + ww.Label, + Callback: core.CallbackOnSpellHitDealt, + ClassSpellMask: monk.MonkSpellBlackoutKick, + Outcome: core.OutcomeLanded, + }, + + DamageCalculator: func(result *core.SpellResult) float64 { + return result.Damage * 0.2 + }, + }) +} + +func (ww *WindwalkerMonk) registerComboBreaker() { + ww.ComboBreakerBlackoutKickAura = ww.RegisterAura(core.Aura{ + Label: "Combo Breaker: Blackout Kick" + ww.Label, + ActionID: core.ActionID{SpellID: 116768}, + Duration: time.Second * 20, + + OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if spell.ClassSpellMask&monk.MonkSpellBlackoutKick == 0 || !result.Landed() { + return + } + + ww.ComboBreakerBlackoutKickAura.Deactivate(sim) + }, + }) + + ww.ComboBreakerTigerPalmAura = ww.RegisterAura(core.Aura{ + Label: "Combo Breaker: Tiger Palm" + ww.Label, + ActionID: core.ActionID{SpellID: 118864}, + Duration: time.Second * 20, + + OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if spell.ClassSpellMask&monk.MonkSpellTigerPalm == 0 || !result.Landed() { + return + } + + ww.ComboBreakerTigerPalmAura.Deactivate(sim) + }, + }) + + core.MakeProcTriggerAura(&ww.Unit, core.ProcTrigger{ + Name: "Combo Breaker: Blackout Kick Trigger" + ww.Label, + Callback: core.CallbackOnSpellHitDealt, + ClassSpellMask: monk.MonkSpellJab, + Outcome: core.OutcomeLanded, + ProcChance: 0.12, + + Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + ww.ComboBreakerBlackoutKickAura.Activate(sim) + }, + }) + + core.MakeProcTriggerAura(&ww.Unit, core.ProcTrigger{ + Name: "Combo Breaker: Tiger Palm Trigger" + ww.Label, + Callback: core.CallbackOnSpellHitDealt, + ClassSpellMask: monk.MonkSpellJab, + Outcome: core.OutcomeLanded, + ProcChance: 0.12, + + Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + ww.ComboBreakerTigerPalmAura.Activate(sim) + }, + }) +} + +func (ww *WindwalkerMonk) registerTigerStrikes() { + tigerStrikesMHID := core.ActionID{SpellID: 120274} + tigerStrikesOHID := core.ActionID{SpellID: 120278} + + var tigerStrikesMHSpell *core.Spell + var tigerStrikesOHSpell *core.Spell + var tigerStrikesBuff *core.Aura + tigerStrikesBuff = ww.RegisterAura(core.Aura{ + Label: "Tiger Strikes" + ww.Label, + ActionID: core.ActionID{SpellID: 120273}, + Duration: time.Second * 15, + MaxStacks: 4, + + OnInit: func(aura *core.Aura, sim *core.Simulation) { + mhConfig := *ww.AutoAttacks.MHConfig() + mhConfig.ActionID = tigerStrikesMHID + mhConfig.ClassSpellMask = monk.MonkSpellTigerStrikes + mhConfig.Flags |= core.SpellFlagPassiveSpell + mhConfig.ApplyEffects = func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := spell.Unit.MHWeaponDamage(sim, spell.MeleeAttackPower()) + spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeWhiteNoGlance) + } + tigerStrikesMHSpell = ww.GetOrRegisterSpell(mhConfig) + + if ww.HasOHWeapon() { + ohConfig := *ww.AutoAttacks.OHConfig() + ohConfig.ActionID = tigerStrikesOHID + ohConfig.ClassSpellMask = monk.MonkSpellTigerStrikes + ohConfig.Flags |= core.SpellFlagPassiveSpell + ohConfig.ApplyEffects = func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := spell.Unit.OHWeaponDamage(sim, spell.MeleeAttackPower()) + spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeWhiteNoGlance) + } + tigerStrikesOHSpell = ww.GetOrRegisterSpell(ohConfig) + } + }, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + ww.MultiplyMeleeSpeed(sim, 1.5) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + ww.MultiplyMeleeSpeed(sim, 1/1.5) + }, + OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + // TODO: Verify if it actually procs even on misses, seems so based on logs and simc + if !tigerStrikesBuff.IsActive() /*|| !result.Landed()*/ || spell.ClassSpellMask&monk.MonkSpellTigerStrikes != 0 { + return + } + + if spell == ww.AutoAttacks.MHAuto() { + tigerStrikesBuff.RemoveStack(sim) + tigerStrikesMHSpell.Cast(sim, result.Target) + } else if spell == ww.AutoAttacks.OHAuto() { + tigerStrikesBuff.RemoveStack(sim) + tigerStrikesOHSpell.Cast(sim, result.Target) + } + + // TODO: Simc has delays but some SoO logs I looked at didn't... + /*if spellToCast != nil { + delaySeconds := sim.RollWithLabel(0.8, 1.2, "Tiger Strikes Delay") + sim.AddPendingAction(&core.PendingAction{ + NextActionAt: sim.CurrentTime + core.DurationFromSeconds(delaySeconds), + Priority: core.ActionPriorityAuto, + OnAction: func(sim *core.Simulation) { + spellToCast.Cast(sim, result.Target) + }, + }) + }*/ + }, + }) + + core.MakeProcTriggerAura(&ww.Unit, core.ProcTrigger{ + Name: "Tiger Strikes Buff Trigger" + ww.Label, + ActionID: core.ActionID{SpellID: 120272}, + Callback: core.CallbackOnSpellHitDealt, + Outcome: core.OutcomeLanded, + ProcMask: core.ProcMaskWhiteHit, + ProcChance: 1, + + Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { + if spell.ClassSpellMask&monk.MonkSpellTigerStrikes != 0 { + return + } + + if sim.Proc(0.08, "Tiger Strikes") { + tigerStrikesBuff.Activate(sim) + tigerStrikesBuff.SetStacks(sim, 4) + } + }, + }) +} diff --git a/sim/monk/windwalker/rising_sun_kick.go b/sim/monk/windwalker/rising_sun_kick.go new file mode 100644 index 0000000000..0be791bf4a --- /dev/null +++ b/sim/monk/windwalker/rising_sun_kick.go @@ -0,0 +1,77 @@ +package windwalker + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/monk" +) + +/* +Tooltip: +You kick upwards, dealing ${14.4*0.89*$} to ${14.4*0.89*$} damage and applying Mortal Wounds to the target. +Also causes all targets within 8 yards to take an increased 20% damage from your abilities for 15 sec. + +-- Mortal Wounds -- +Grievously wounds the target, reducing the effectiveness of any healing received for 10 sec. +-- Mortal Wounds -- +*/ +func (ww *WindwalkerMonk) registerRisingSunKick() { + actionID := core.ActionID{SpellID: 130320} + chiMetrics := ww.NewChiMetrics(actionID) + + risingSunKickDebuff := ww.NewEnemyAuraArray(func(target *core.Unit) *core.Aura { + return target.GetOrRegisterAura(core.Aura{ + Label: "Rising Sun Kick" + target.Label, + ActionID: actionID, + Duration: time.Second * 15, + OnGain: func(aura *core.Aura, sim *core.Simulation) { + aura.Unit.PseudoStats.DamageTakenMultiplier *= 1.2 + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + aura.Unit.PseudoStats.DamageTakenMultiplier /= 1.2 + }, + }) + }) + + ww.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolPhysical, + ProcMask: core.ProcMaskMeleeMHSpecial, + Flags: core.SpellFlagMeleeMetrics | core.SpellFlagIncludeTargetBonusDamage | monk.SpellFlagSpender | core.SpellFlagAPL, + ClassSpellMask: monk.MonkSpellRisingSunKick, + MaxRange: core.MaxMeleeRange, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + CD: core.Cooldown{ + Timer: ww.NewTimer(), + Duration: time.Second * 8, + }, + }, + + DamageMultiplier: 14.4 * 0.89, + ThreatMultiplier: 1, + CritMultiplier: ww.DefaultMeleeCritMultiplier(), + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return ww.ComboPoints() >= 2 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := ww.CalculateMonkStrikeDamage(sim, spell) + + result := spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMeleeSpecialHitAndCrit) + + if result.Landed() { + ww.SpendChi(sim, 2, chiMetrics) + for _, target := range sim.Encounter.TargetUnits { + risingSunKickDebuff.Get(target).Activate(sim) + } + } + }, + }) +} diff --git a/sim/monk/windwalker/spinning_fire_blossom.go b/sim/monk/windwalker/spinning_fire_blossom.go new file mode 100644 index 0000000000..a20553ae92 --- /dev/null +++ b/sim/monk/windwalker/spinning_fire_blossom.go @@ -0,0 +1,55 @@ +package windwalker + +import ( + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/monk" +) + +/* +Tooltip: +Deals ${2.1*$} to ${2.1*$} Fire damage to the first enemy target in front of you within 50 yards. + +If Spinning Fire Blossom travels further than 10 yards, the damage is increased by 50% and you root the target for 2 sec. +*/ +func (ww *WindwalkerMonk) registerSpinningFireBlossom() { + actionID := core.ActionID{SpellID: 115073} + chiMetrics := ww.NewChiMetrics(actionID) + + ww.RegisterSpell(core.SpellConfig{ + ActionID: actionID, + SpellSchool: core.SpellSchoolFire, + ProcMask: core.ProcMaskSpellDamage, + Flags: monk.SpellFlagSpender | core.SpellFlagAPL, + ClassSpellMask: monk.MonkSpellSpinningFireBlossom, + MissileSpeed: 20, + MaxRange: 50, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + GCD: time.Second, + }, + IgnoreHaste: true, + }, + + DamageMultiplier: 2.1, + ThreatMultiplier: 1, + CritMultiplier: ww.DefaultSpellCritMultiplier(), // TODO: Spell or melee? + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return ww.ComboPoints() >= 1 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + baseDamage := ww.CalculateMonkStrikeDamage(sim, spell) + + if ww.DistanceFromTarget >= 10 { + baseDamage *= 1.5 + } + + ww.SpendChi(sim, 1, chiMetrics) + spell.CalcAndDealDamage(sim, target, baseDamage, spell.OutcomeMagicHitAndCrit) // TODO: Spell or melee? + }, + }) +} diff --git a/sim/monk/windwalker/tigereye_brew.go b/sim/monk/windwalker/tigereye_brew.go new file mode 100644 index 0000000000..5aa79ca98f --- /dev/null +++ b/sim/monk/windwalker/tigereye_brew.go @@ -0,0 +1,92 @@ +package windwalker + +import ( + "math" + "time" + + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/monk" +) + +func (ww *WindwalkerMonk) registerTigereyeBrew() { + buffActionID := core.ActionID{SpellID: 116740} + stackActionID := core.ActionID{SpellID: 125195} + + ww.Monk.RegisterOnChiSpent(func(sim *core.Simulation, chiSpent int32) { + accumulatedChi := ww.outstandingChi + chiSpent + + for accumulatedChi >= 4 { + ww.AddBrewStacks(sim, 1) + accumulatedChi -= 4 + } + + ww.outstandingChi = accumulatedChi + }) + + ww.TigereyeBrewStackAura = ww.RegisterAura(core.Aura{ + Label: "Tigereye Brew Stacks" + ww.Label, + ActionID: stackActionID, + Duration: time.Minute * 2, + MaxStacks: 20, + }) + + ww.Monk.RegisterOnNewBrewStacks(func(sim *core.Simulation, stacksToAdd int32) { + ww.TigereyeBrewStackAura.Activate(sim) + + // Mastery: Bottled Fury + // When you generate Tigereye Brew charges, you have a chance to generate an additional charge. + // Can go above 100% and should then add the correct amount of guaranteed stacks. + procChance := ww.getMasteryPercent() + if sim.Proc(math.Mod(procChance, 1), "Mastery: Bottled Fury") { + stacksToAdd += int32(math.Ceil(procChance)) + } else { + stacksToAdd += int32(math.Floor(procChance)) + } + + ww.TigereyeBrewStackAura.SetStacks(sim, ww.TigereyeBrewStackAura.GetStacks()+stacksToAdd) + }) + + var damageMultiplier float64 + buffAura := ww.RegisterAura(core.Aura{ + Label: "Tigereye Brew Buff" + ww.Label, + ActionID: buffActionID, + Duration: time.Second * 15, + + OnGain: func(aura *core.Aura, sim *core.Simulation) { + stacksToConsume := min(10, ww.TigereyeBrewStackAura.GetStacks()) + + damageMultiplier = 1 + 0.06*float64(stacksToConsume) + + ww.PseudoStats.DamageDealtMultiplier *= damageMultiplier + + ww.TigereyeBrewStackAura.SetStacks(sim, ww.TigereyeBrewStackAura.GetStacks()-stacksToConsume) + }, + OnExpire: func(aura *core.Aura, sim *core.Simulation) { + ww.PseudoStats.DamageDealtMultiplier /= damageMultiplier + }, + }) + + ww.RegisterSpell(core.SpellConfig{ + ActionID: buffActionID, + Flags: core.SpellFlagNoOnCastComplete | core.SpellFlagAPL, + ClassSpellMask: monk.MonkSpellTigereyeBrew, + + Cast: core.CastConfig{ + DefaultCast: core.Cast{ + NonEmpty: true, + }, + CD: core.Cooldown{ + Timer: ww.NewTimer(), + Duration: time.Second * 5, + }, + }, + + ExtraCastCondition: func(sim *core.Simulation, target *core.Unit) bool { + return ww.TigereyeBrewStackAura.GetStacks() > 0 + }, + + ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { + buffAura.Activate(sim) + }, + }) +} diff --git a/sim/monk/windwalker/windwalker.go b/sim/monk/windwalker/windwalker.go new file mode 100644 index 0000000000..c1e43e5bf5 --- /dev/null +++ b/sim/monk/windwalker/windwalker.go @@ -0,0 +1,79 @@ +package windwalker + +import ( + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/monk" +) + +func RegisterWindwalkerMonk() { + core.RegisterAgentFactory( + proto.Player_WindwalkerMonk{}, + proto.Spec_SpecWindwalkerMonk, + func(character *core.Character, options *proto.Player) core.Agent { + return NewWindwalkerMonk(character, options) + }, + func(player *proto.Player, spec interface{}) { + playerSpec, ok := spec.(*proto.Player_WindwalkerMonk) + if !ok { + panic("Invalid spec value for Windwalker Monk!") + } + player.Spec = playerSpec + }, + ) +} + +func NewWindwalkerMonk(character *core.Character, options *proto.Player) *WindwalkerMonk { + monkOptions := options.GetWindwalkerMonk() + + ww := &WindwalkerMonk{ + Monk: monk.NewMonk(character, monkOptions.Options.ClassOptions, options.TalentsString), + } + ww.Stance = monk.FierceTiger + + ww.AddStatDependency(stats.Strength, stats.AttackPower, 1) + ww.AddStatDependency(stats.Agility, stats.AttackPower, 2) + + return ww +} + +type WindwalkerMonk struct { + *monk.Monk + + TigereyeBrewStackAura *core.Aura + + outstandingChi int32 +} + +func (ww *WindwalkerMonk) GetMonk() *monk.Monk { + return ww.Monk +} + +func (ww *WindwalkerMonk) Initialize() { + ww.Monk.Initialize() + ww.RegisterSpecializationEffects() +} + +func (ww *WindwalkerMonk) ApplyTalents() { + ww.Monk.ApplyTalents() + ww.ApplyArmorSpecializationEffect(stats.Agility, proto.ArmorType_ArmorTypeLeather, 120227) +} + +func (ww *WindwalkerMonk) Reset(sim *core.Simulation) { + ww.Stance = monk.FierceTiger + ww.Monk.Reset(sim) +} + +func (ww *WindwalkerMonk) RegisterSpecializationEffects() { + ww.registerEnergizingBrew() + ww.registerFistsOfFury() + ww.registerPassives() + ww.registerRisingSunKick() + ww.registerTigereyeBrew() + ww.registerSpinningFireBlossom() +} + +func (ww *WindwalkerMonk) getMasteryPercent() float64 { + return (8.0 + ww.GetMasteryPoints()) * 0.025 +} diff --git a/sim/paladin/glyphs.go b/sim/paladin/_glyphs.go similarity index 98% rename from sim/paladin/glyphs.go rename to sim/paladin/_glyphs.go index 2878eb0c7e..cd59f59843 100644 --- a/sim/paladin/glyphs.go +++ b/sim/paladin/_glyphs.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) applyGlyphs() { @@ -23,7 +23,7 @@ func (paladin *Paladin) applyGlyphs() { FloatValue: 0.1, }) } - if paladin.HasPrimeGlyph(proto.PaladinPrimeGlyph_GlyphOfTemplarSVerdict) { + if paladin.HasPrimeGlyph(proto.PaladinPrimeGlyph_GlyphOfTemplarsVerdict) { paladin.AddStaticMod(core.SpellModConfig{ Kind: core.SpellMod_DamageDone_Flat, ClassMask: SpellMaskTemplarsVerdict, diff --git a/sim/paladin/hammer_of_wrath.go b/sim/paladin/_hammer_of_wrath.go similarity index 95% rename from sim/paladin/hammer_of_wrath.go rename to sim/paladin/_hammer_of_wrath.go index 0aa5d4d142..13a7e62518 100644 --- a/sim/paladin/hammer_of_wrath.go +++ b/sim/paladin/_hammer_of_wrath.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerHammerOfWrathSpell() { diff --git a/sim/paladin/inquisition.go b/sim/paladin/_inquisition.go similarity index 97% rename from sim/paladin/inquisition.go rename to sim/paladin/_inquisition.go index 6de0471931..e409b59636 100644 --- a/sim/paladin/inquisition.go +++ b/sim/paladin/_inquisition.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerInquisition() { diff --git a/sim/paladin/seal_of_righteousness.go b/sim/paladin/_seal_of_righteousness.go similarity index 99% rename from sim/paladin/seal_of_righteousness.go rename to sim/paladin/_seal_of_righteousness.go index f8f45da969..80d7907cc7 100644 --- a/sim/paladin/seal_of_righteousness.go +++ b/sim/paladin/_seal_of_righteousness.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerSealOfRighteousness() { diff --git a/sim/paladin/seal_of_truth.go b/sim/paladin/_seal_of_truth.go similarity index 99% rename from sim/paladin/seal_of_truth.go rename to sim/paladin/_seal_of_truth.go index 985c2ad7ad..b3bb2d2053 100644 --- a/sim/paladin/seal_of_truth.go +++ b/sim/paladin/_seal_of_truth.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerSealOfTruth() { diff --git a/sim/paladin/talents.go b/sim/paladin/_talents.go similarity index 100% rename from sim/paladin/talents.go rename to sim/paladin/_talents.go diff --git a/sim/paladin/talents_holy.go b/sim/paladin/_talents_holy.go similarity index 98% rename from sim/paladin/talents_holy.go rename to sim/paladin/_talents_holy.go index b36adbf16d..15ffd10408 100644 --- a/sim/paladin/talents_holy.go +++ b/sim/paladin/_talents_holy.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) applyHolyTalents() { diff --git a/sim/paladin/talents_protection.go b/sim/paladin/_talents_protection.go similarity index 99% rename from sim/paladin/talents_protection.go rename to sim/paladin/_talents_protection.go index 0d74231caf..b73ad38083 100644 --- a/sim/paladin/talents_protection.go +++ b/sim/paladin/_talents_protection.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (paladin *Paladin) applyProtectionTalents() { diff --git a/sim/paladin/talents_retribution.go b/sim/paladin/_talents_retribution.go similarity index 99% rename from sim/paladin/talents_retribution.go rename to sim/paladin/_talents_retribution.go index 15c40ad863..d1e19e0e0b 100644 --- a/sim/paladin/talents_retribution.go +++ b/sim/paladin/_talents_retribution.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) applyRetributionTalents() { diff --git a/sim/paladin/ancient_guardian_pet.go b/sim/paladin/ancient_guardian_pet.go index c6db69c595..49dd12d58f 100644 --- a/sim/paladin/ancient_guardian_pet.go +++ b/sim/paladin/ancient_guardian_pet.go @@ -1,9 +1,9 @@ package paladin import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type AncientGuardianPet struct { diff --git a/sim/paladin/apl_values.go b/sim/paladin/apl_values.go index 382280ddcf..6a2b5ce2f3 100644 --- a/sim/paladin/apl_values.go +++ b/sim/paladin/apl_values.go @@ -1,8 +1,8 @@ package paladin import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/paladin/avenging_wrath.go b/sim/paladin/avenging_wrath.go index 84cc2ee1e0..2077fe4fe2 100644 --- a/sim/paladin/avenging_wrath.go +++ b/sim/paladin/avenging_wrath.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerAvengingWrath() { diff --git a/sim/paladin/consecration.go b/sim/paladin/consecration.go index 7e12e35e70..6ddc013c20 100644 --- a/sim/paladin/consecration.go +++ b/sim/paladin/consecration.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) registerConsecrationSpell() { diff --git a/sim/paladin/crusader_strike.go b/sim/paladin/crusader_strike.go index 64b0caca2d..64df836626 100644 --- a/sim/paladin/crusader_strike.go +++ b/sim/paladin/crusader_strike.go @@ -1,7 +1,7 @@ package paladin import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerCrusaderStrike() { diff --git a/sim/paladin/divine_plea.go b/sim/paladin/divine_plea.go index bcf92c4827..dfd2564030 100644 --- a/sim/paladin/divine_plea.go +++ b/sim/paladin/divine_plea.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) registerDivinePleaSpell() { diff --git a/sim/paladin/divine_protection.go b/sim/paladin/divine_protection.go index 33eef57929..1beb977226 100644 --- a/sim/paladin/divine_protection.go +++ b/sim/paladin/divine_protection.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (paladin *Paladin) registerDivineProtectionSpell() { diff --git a/sim/paladin/exorcism.go b/sim/paladin/exorcism.go index 7bba173cf5..60d3f49216 100644 --- a/sim/paladin/exorcism.go +++ b/sim/paladin/exorcism.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) registerExorcism() { diff --git a/sim/paladin/guardian_of_ancient_kings.go b/sim/paladin/guardian_of_ancient_kings.go index c940b44472..bd8258cfcf 100644 --- a/sim/paladin/guardian_of_ancient_kings.go +++ b/sim/paladin/guardian_of_ancient_kings.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (paladin *Paladin) goakBaseDuration() time.Duration { diff --git a/sim/paladin/holy/holy_test.go b/sim/paladin/holy/_holy_test.go similarity index 97% rename from sim/paladin/holy/holy_test.go rename to sim/paladin/holy/_holy_test.go index 34f196f6b5..e47d3a965c 100644 --- a/sim/paladin/holy/holy_test.go +++ b/sim/paladin/holy/_holy_test.go @@ -1,7 +1,7 @@ package holy import ( - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. ) func init() { diff --git a/sim/paladin/holy/holy.go b/sim/paladin/holy/holy.go index e7391648c4..4a19e943fa 100644 --- a/sim/paladin/holy/holy.go +++ b/sim/paladin/holy/holy.go @@ -1,10 +1,10 @@ package holy import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/paladin" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/paladin" ) func RegisterHolyPaladin() { diff --git a/sim/paladin/holy/rotation.go b/sim/paladin/holy/rotation.go index f7a0f091d8..7802879c1e 100644 --- a/sim/paladin/holy/rotation.go +++ b/sim/paladin/holy/rotation.go @@ -3,7 +3,7 @@ package holy import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (holy *HolyPaladin) OnGCDReady(sim *core.Simulation) { diff --git a/sim/paladin/holy_power.go b/sim/paladin/holy_power.go index 46a20d2d01..ead4050cc7 100644 --- a/sim/paladin/holy_power.go +++ b/sim/paladin/holy_power.go @@ -1,8 +1,8 @@ package paladin import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) type HolyPowerBar struct { diff --git a/sim/paladin/holy_wrath.go b/sim/paladin/holy_wrath.go index 995c24d1c5..9c02939862 100644 --- a/sim/paladin/holy_wrath.go +++ b/sim/paladin/holy_wrath.go @@ -3,8 +3,8 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (paladin *Paladin) registerHolyWrath() { diff --git a/sim/paladin/items.go b/sim/paladin/items.go index 0f41e8dfcf..8689bcb790 100644 --- a/sim/paladin/items.go +++ b/sim/paladin/items.go @@ -3,9 +3,9 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // Tier 11 ret diff --git a/sim/paladin/judgement.go b/sim/paladin/judgement.go index aed033840d..c0e00ec1f0 100644 --- a/sim/paladin/judgement.go +++ b/sim/paladin/judgement.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerJudgement() { diff --git a/sim/paladin/paladin.go b/sim/paladin/paladin.go index b82f2bf1e0..defad9d1d7 100644 --- a/sim/paladin/paladin.go +++ b/sim/paladin/paladin.go @@ -3,10 +3,10 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ( @@ -122,8 +122,6 @@ const SpellMaskModifiedByZealOfTheCrusader = SpellMaskTemplarsVerdict | SpellMaskSealOfRighteousness | SpellMaskSealOfJustice -var TalentTreeSizes = [3]int{20, 20, 20} - type Paladin struct { core.Character HolyPowerBar @@ -212,10 +210,6 @@ func (paladin *Paladin) GetCharacter() *core.Character { return &paladin.Character } -func (paladin *Paladin) HasPrimeGlyph(glyph proto.PaladinPrimeGlyph) bool { - return paladin.HasGlyph(int32(glyph)) -} - func (paladin *Paladin) HasMajorGlyph(glyph proto.PaladinMajorGlyph) bool { return paladin.HasGlyph(int32(glyph)) } @@ -227,40 +221,42 @@ func (paladin *Paladin) GetPaladin() *Paladin { return paladin } -func (paladin *Paladin) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if paladin.PaladinAura == proto.PaladinAura_Devotion { - raidBuffs.DevotionAura = true - } - if paladin.PaladinAura == proto.PaladinAura_Retribution { - raidBuffs.RetributionAura = true - } - if paladin.PaladinAura == proto.PaladinAura_Resistance { - raidBuffs.ResistanceAura = true - } - if paladin.Talents.Communion { - raidBuffs.Communion = true - } -} +// func (paladin *Paladin) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// if paladin.PaladinAura == proto.PaladinAura_Devotion { +// raidBuffs.DevotionAura = true +// } +// if paladin.PaladinAura == proto.PaladinAura_Retribution { +// raidBuffs.RetributionAura = true +// } +// if paladin.PaladinAura == proto.PaladinAura_Resistance { +// raidBuffs.ResistanceAura = true +// } +// if paladin.Talents.Communion { +// raidBuffs.Communion = true +// } +// } func (paladin *Paladin) AddPartyBuffs(_ *proto.PartyBuffs) { } func (paladin *Paladin) Initialize() { - paladin.applyGlyphs() + // paladin.applyGlyphs() paladin.registerSpells() paladin.addBloodthirstyGloves() } +func (paladin *Paladin) ApplyTalents() {} + func (paladin *Paladin) registerSpells() { paladin.registerCrusaderStrike() paladin.registerExorcism() paladin.registerJudgement() - paladin.registerSealOfTruth() + // paladin.registerSealOfTruth() paladin.registerSealOfInsight() - paladin.registerSealOfRighteousness() + // paladin.registerSealOfRighteousness() paladin.registerSealOfJustice() - paladin.registerInquisition() - paladin.registerHammerOfWrathSpell() + // paladin.registerInquisition() + // paladin.registerHammerOfWrathSpell() paladin.registerAvengingWrath() paladin.registerDivinePleaSpell() paladin.registerConsecrationSpell() @@ -301,7 +297,7 @@ func NewPaladin(character *core.Character, talentsStr string, options *proto.Pal sharedBuilderBaseCD: time.Millisecond * core.TernaryDuration(character.Spec == proto.Spec_SpecProtectionPaladin, 3000, 4500), } - core.FillTalentsProto(paladin.Talents.ProtoReflect(), talentsStr, TalentTreeSizes) + core.FillTalentsProto(paladin.Talents.ProtoReflect(), talentsStr) paladin.PseudoStats.CanParry = true diff --git a/sim/paladin/protection/TestProtection.results b/sim/paladin/protection/TestProtection.results index 4281289560..2ed30c6d9e 100644 --- a/sim/paladin/protection/TestProtection.results +++ b/sim/paladin/protection/TestProtection.results @@ -752,8 +752,8 @@ dps_results: { dps_results: { key: "TestProtection-AllItems-Gladiator'sVindication" value: { - dps: 9600.32053 - tps: 48304.15143 + dps: 11163.23202 + tps: 56117.29086 } } dps_results: { @@ -2012,8 +2012,8 @@ dps_results: { dps_results: { key: "TestProtection-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 8797.16957 - tps: 44288.40809 + dps: 8488.69716 + tps: 42746.046 } } dps_results: { diff --git a/sim/paladin/protection/protection_test.go b/sim/paladin/protection/_protection_test.go similarity index 80% rename from sim/paladin/protection/protection_test.go rename to sim/paladin/protection/_protection_test.go index 19044ce94b..b8b7e078c2 100644 --- a/sim/paladin/protection/protection_test.go +++ b/sim/paladin/protection/_protection_test.go @@ -3,9 +3,9 @@ package protection import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -21,7 +21,7 @@ func TestProtection(t *testing.T) { GearSet: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "T12"), Talents: StandardTalents, Glyphs: StandardGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: DefaultOptions}, Rotation: core.GetAplRotation("../../../ui/paladin/protection/apls", "default"), @@ -55,7 +55,7 @@ func BenchmarkSimulate(b *testing.B) { Race: proto.Race_RaceBloodElf, Class: proto.Class_ClassPaladin, Equipment: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "T12").GearSet, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, Spec: DefaultOptions, Glyphs: StandardGlyphs, TalentsString: StandardTalents, @@ -81,9 +81,6 @@ func BenchmarkSimulate(b *testing.B) { var StandardTalents = "-32023013122121101231-032032" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.PaladinPrimeGlyph_GlyphOfHammerOfTheRighteous), - Prime2: int32(proto.PaladinPrimeGlyph_GlyphOfCrusaderStrike), - Prime3: int32(proto.PaladinPrimeGlyph_GlyphOfSealOfTruth), Major1: int32(proto.PaladinMajorGlyph_GlyphOfTheAsceticCrusader), Major2: int32(proto.PaladinMajorGlyph_GlyphOfLayOnHands), Major3: int32(proto.PaladinMajorGlyph_GlyphOfFocusedShield), @@ -103,10 +100,10 @@ var DefaultOptions = &proto.Player_ProtectionPaladin{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfSteelskin, - Food: proto.Food_FoodLavascaleMinestrone, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58085, // Flask of Steelskin + FoodId: 62663, // Lavascale Minestrone + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } diff --git a/sim/paladin/protection/avengers_shield.go b/sim/paladin/protection/avengers_shield.go index 90a7b68181..480cc25993 100644 --- a/sim/paladin/protection/avengers_shield.go +++ b/sim/paladin/protection/avengers_shield.go @@ -3,8 +3,8 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (prot *ProtectionPaladin) registerAvengersShieldSpell() { diff --git a/sim/paladin/protection/protection.go b/sim/paladin/protection/protection.go index 0ae3239b91..494dadfc8c 100644 --- a/sim/paladin/protection/protection.go +++ b/sim/paladin/protection/protection.go @@ -4,10 +4,10 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/paladin" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/paladin" ) func RegisterProtectionPaladin() { diff --git a/sim/paladin/retribution/TestRetribution.results b/sim/paladin/retribution/TestRetribution.results index 32a4919db7..6c0fc9e3ed 100644 --- a/sim/paladin/retribution/TestRetribution.results +++ b/sim/paladin/retribution/TestRetribution.results @@ -746,8 +746,8 @@ dps_results: { dps_results: { key: "TestRetribution-AllItems-Gladiator'sVindication" value: { - dps: 35479.05929 - tps: 33127.98663 + dps: 39152.58629 + tps: 36782.68867 } } dps_results: { diff --git a/sim/paladin/retribution/retribution_test.go b/sim/paladin/retribution/_retribution_test.go similarity index 83% rename from sim/paladin/retribution/retribution_test.go rename to sim/paladin/retribution/_retribution_test.go index 5d2802469c..0d18340f25 100644 --- a/sim/paladin/retribution/retribution_test.go +++ b/sim/paladin/retribution/_retribution_test.go @@ -3,9 +3,9 @@ package retribution import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -30,7 +30,7 @@ func TestRetribution(t *testing.T) { }, Talents: StandardTalents, Glyphs: StandardGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: DefaultOptions}, Rotation: core.GetAplRotation("../../../ui/paladin/retribution/apls", "default"), ItemSwapSet: core.GetItemSwapGearSet("../../../ui/paladin/retribution/gear_sets", "item_swap_4p_t11"), @@ -60,7 +60,7 @@ func BenchmarkSimulate(b *testing.B) { Race: proto.Race_RaceBloodElf, Class: proto.Class_ClassPaladin, Equipment: core.GetGearSet("../../../ui/paladin/retribution/gear_sets", "p4_bis").GearSet, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, Spec: DefaultOptions, Glyphs: StandardGlyphs, TalentsString: StandardTalents, @@ -87,9 +87,6 @@ func BenchmarkSimulate(b *testing.B) { var StandardTalents = "203002-02-23203213211113002311" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.PaladinPrimeGlyph_GlyphOfTemplarSVerdict), - Prime2: int32(proto.PaladinPrimeGlyph_GlyphOfSealOfTruth), - Prime3: int32(proto.PaladinPrimeGlyph_GlyphOfExorcism), Major1: int32(proto.PaladinMajorGlyph_GlyphOfHammerOfWrath), Major2: int32(proto.PaladinMajorGlyph_GlyphOfTheAsceticCrusader), Major3: int32(proto.PaladinMajorGlyph_GlyphOfConsecration), @@ -109,10 +106,10 @@ var DefaultOptions = &proto.Player_RetributionPaladin{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTitanicStrength, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58088, // Flask of Titanic Strength + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } diff --git a/sim/paladin/retribution/retribution.go b/sim/paladin/retribution/retribution.go index d334790559..4539dae489 100644 --- a/sim/paladin/retribution/retribution.go +++ b/sim/paladin/retribution/retribution.go @@ -4,10 +4,10 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/paladin" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/paladin" ) func RegisterRetributionPaladin() { diff --git a/sim/paladin/retribution/templars_verdict.go b/sim/paladin/retribution/templars_verdict.go index f788c0b330..6d550778fd 100644 --- a/sim/paladin/retribution/templars_verdict.go +++ b/sim/paladin/retribution/templars_verdict.go @@ -1,8 +1,8 @@ package retribution import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/paladin" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/paladin" ) func (retPaladin *RetributionPaladin) RegisterTemplarsVerdict() { diff --git a/sim/paladin/righteous_fury.go b/sim/paladin/righteous_fury.go index 1b9d6e2395..eff461a6c7 100644 --- a/sim/paladin/righteous_fury.go +++ b/sim/paladin/righteous_fury.go @@ -1,7 +1,7 @@ package paladin import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) ActivateRighteousFury() { diff --git a/sim/paladin/seal_of_insight.go b/sim/paladin/seal_of_insight.go index d858568be7..e6d4e9e934 100644 --- a/sim/paladin/seal_of_insight.go +++ b/sim/paladin/seal_of_insight.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerSealOfInsight() { diff --git a/sim/paladin/seal_of_justice.go b/sim/paladin/seal_of_justice.go index f711500a16..c625e339a6 100644 --- a/sim/paladin/seal_of_justice.go +++ b/sim/paladin/seal_of_justice.go @@ -3,7 +3,7 @@ package paladin import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (paladin *Paladin) registerSealOfJustice() { diff --git a/sim/priest/_binding_heal.go b/sim/priest/_binding_heal.go index eb7ae65936..d7396dd9c4 100644 --- a/sim/priest/_binding_heal.go +++ b/sim/priest/_binding_heal.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerBindingHealSpell() { diff --git a/sim/priest/_circle_of_healing.go b/sim/priest/_circle_of_healing.go index 242853863e..df25af5901 100644 --- a/sim/priest/_circle_of_healing.go +++ b/sim/priest/_circle_of_healing.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerCircleOfHealingSpell() { diff --git a/sim/priest/dispersion.go b/sim/priest/_dispersion.go similarity index 97% rename from sim/priest/dispersion.go rename to sim/priest/_dispersion.go index 3b956f5780..f0df7e08f7 100644 --- a/sim/priest/dispersion.go +++ b/sim/priest/_dispersion.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerDispersionSpell() { diff --git a/sim/priest/_flash_heal.go b/sim/priest/_flash_heal.go index d6bdc17a99..2c9a7f63d3 100644 --- a/sim/priest/_flash_heal.go +++ b/sim/priest/_flash_heal.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerFlashHealSpell() { diff --git a/sim/priest/glyphs.go b/sim/priest/_glyphs.go similarity index 95% rename from sim/priest/glyphs.go rename to sim/priest/_glyphs.go index 38176918fb..9cc9f4cf49 100644 --- a/sim/priest/glyphs.go +++ b/sim/priest/_glyphs.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) ApplyGlyphs() { diff --git a/sim/priest/_greater_heal.go b/sim/priest/_greater_heal.go index ce3ddce47a..8c0103b3c8 100644 --- a/sim/priest/_greater_heal.go +++ b/sim/priest/_greater_heal.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerGreaterHealSpell() { diff --git a/sim/priest/_holy_fire.go b/sim/priest/_holy_fire.go index e2be36bda2..ee03a362da 100644 --- a/sim/priest/_holy_fire.go +++ b/sim/priest/_holy_fire.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) RegisterHolyFireSpell() { diff --git a/sim/priest/_hymn_of_hope.go b/sim/priest/_hymn_of_hope.go index d137975ea5..b71139ca43 100644 --- a/sim/priest/_hymn_of_hope.go +++ b/sim/priest/_hymn_of_hope.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) // TODO: This currently only affects the caster, not other raid members. diff --git a/sim/priest/_penance.go b/sim/priest/_penance.go index 48c145a563..543ee65231 100644 --- a/sim/priest/_penance.go +++ b/sim/priest/_penance.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerPenanceHealSpell() { diff --git a/sim/priest/power_infusion.go b/sim/priest/_power_infusion.go similarity index 97% rename from sim/priest/power_infusion.go rename to sim/priest/_power_infusion.go index ac756d5c94..62a8992683 100644 --- a/sim/priest/power_infusion.go +++ b/sim/priest/_power_infusion.go @@ -1,7 +1,7 @@ package priest import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerPowerInfusionSpell() { diff --git a/sim/priest/_power_word_shield.go b/sim/priest/_power_word_shield.go index 373c628a01..6a858f9829 100644 --- a/sim/priest/_power_word_shield.go +++ b/sim/priest/_power_word_shield.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerPowerWordShieldSpell() { diff --git a/sim/priest/_prayer_of_healing.go b/sim/priest/_prayer_of_healing.go index eb0a647c99..b5cfb68d44 100644 --- a/sim/priest/_prayer_of_healing.go +++ b/sim/priest/_prayer_of_healing.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerPrayerOfHealingSpell() { diff --git a/sim/priest/_prayer_of_mending.go b/sim/priest/_prayer_of_mending.go index e97f6a4747..e580c3f149 100644 --- a/sim/priest/_prayer_of_mending.go +++ b/sim/priest/_prayer_of_mending.go @@ -4,7 +4,7 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerPrayerOfMendingSpell() { diff --git a/sim/priest/_renew.go b/sim/priest/_renew.go index bb5be96d3b..a793d8826b 100644 --- a/sim/priest/_renew.go +++ b/sim/priest/_renew.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (priest *Priest) registerRenewSpell() { diff --git a/sim/priest/shadow_word_pain.go b/sim/priest/_shadow_word_pain.go similarity index 98% rename from sim/priest/shadow_word_pain.go rename to sim/priest/_shadow_word_pain.go index 812428efb8..ee2b4f78f3 100644 --- a/sim/priest/shadow_word_pain.go +++ b/sim/priest/_shadow_word_pain.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerShadowWordPainSpell() { diff --git a/sim/priest/_smite.go b/sim/priest/_smite.go index c8d41cf83b..e281951d08 100644 --- a/sim/priest/_smite.go +++ b/sim/priest/_smite.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) RegisterSmiteSpell() { diff --git a/sim/priest/talents.go b/sim/priest/_talents.go similarity index 99% rename from sim/priest/talents.go rename to sim/priest/_talents.go index 4e99585998..a56b9e6d33 100644 --- a/sim/priest/talents.go +++ b/sim/priest/_talents.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (priest *Priest) ApplyTalents() { diff --git a/sim/priest/vampiric_touch.go b/sim/priest/_vampiric_touch.go similarity index 98% rename from sim/priest/vampiric_touch.go rename to sim/priest/_vampiric_touch.go index a7b3f369b9..e47dde45c8 100644 --- a/sim/priest/vampiric_touch.go +++ b/sim/priest/_vampiric_touch.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerVampiricTouchSpell() { diff --git a/sim/priest/devouring_plague.go b/sim/priest/devouring_plague.go index b6e4bcff5d..00cbd76e52 100644 --- a/sim/priest/devouring_plague.go +++ b/sim/priest/devouring_plague.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerDevouringPlagueSpell() { diff --git a/sim/priest/discipline/discipline.go b/sim/priest/discipline/discipline.go index acb66a7ab9..c5e17aceb3 100644 --- a/sim/priest/discipline/discipline.go +++ b/sim/priest/discipline/discipline.go @@ -1,9 +1,9 @@ package discipline import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/priest" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/priest" ) func RegisterDisciplinePriest() { @@ -44,9 +44,10 @@ func newDisciplinePriest(character *core.Character, options *proto.Player) *Disc } discPriest.SelfBuffs.PowerInfusionTarget = &proto.UnitReference{} - if discPriest.Talents.PowerInfusion && discPriest.Options.PowerInfusionTarget != nil { - discPriest.SelfBuffs.PowerInfusionTarget = discPriest.Options.PowerInfusionTarget - } + // TODO: Fix this to work with the new talent system. + // if discPriest.Talents.PowerInfusion && discPriest.Options.PowerInfusionTarget != nil { + // discPriest.SelfBuffs.PowerInfusionTarget = discPriest.Options.PowerInfusionTarget + // } return discPriest } @@ -73,6 +74,9 @@ func (discPriest *DisciplinePriest) Initialize() { // discPriest.RegisterHymnOfHopeCD() } +func (holyPriest *DisciplinePriest) ApplyTalents() { +} + func (discPriest *DisciplinePriest) Reset(sim *core.Simulation) { //discPriest.Priest.Reset(sim) } diff --git a/sim/priest/discipline/discipline_test.go b/sim/priest/discipline/discipline_test.go index ea690d94c7..5937825b94 100644 --- a/sim/priest/discipline/discipline_test.go +++ b/sim/priest/discipline/discipline_test.go @@ -1,7 +1,7 @@ package discipline import ( - _ "github.com/wowsims/cata/sim/common" // imported to get caster sets included. + _ "github.com/wowsims/mop/sim/common" // imported to get caster sets included. ) func init() { diff --git a/sim/priest/holy/holy.go b/sim/priest/holy/holy.go index cdd4776a74..3985470972 100644 --- a/sim/priest/holy/holy.go +++ b/sim/priest/holy/holy.go @@ -1,9 +1,9 @@ package holy import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/priest" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/priest" ) func RegisterHolyPriest() { @@ -56,6 +56,9 @@ func (holyPriest *HolyPriest) Initialize() { // holyPriest.RegisterHymnOfHopeCD() } +func (holyPriest *HolyPriest) ApplyTalents() { +} + func (holyPriest *HolyPriest) Reset(sim *core.Simulation) { //holyPriest.Priest.Reset(sim) } diff --git a/sim/priest/holy/holy_test.go b/sim/priest/holy/holy_test.go index 23079195ad..f812be0fdd 100644 --- a/sim/priest/holy/holy_test.go +++ b/sim/priest/holy/holy_test.go @@ -1,7 +1,7 @@ package holy import ( - _ "github.com/wowsims/cata/sim/common" // imported to get caster sets included. + _ "github.com/wowsims/mop/sim/common" // imported to get caster sets included. ) func init() { diff --git a/sim/priest/items.go b/sim/priest/items.go index e2fabe4e3d..a7ed65abc0 100644 --- a/sim/priest/items.go +++ b/sim/priest/items.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // var ItemSetVestmentsOfAbsolution = core.NewItemSet(core.ItemSet{ @@ -413,8 +413,7 @@ var ItemSetRegaliaOfTheCleansingFlame = core.NewItemSet(core.ItemSet{ // T13 - Shadow var ItemSetRegaliaOfDyingLight = core.NewItemSet(core.ItemSet{ - Name: "Regalia of Dying Light", - AlternativeName: "Regalia of Dying light", + Name: "Regalia of Dying Light", Bonuses: map[int32]core.ApplySetBonus{ 2: func(agent core.Agent, setBonusAura *core.Aura) { setBonusAura.AttachSpellMod(core.SpellModConfig{ diff --git a/sim/priest/mind_blast.go b/sim/priest/mind_blast.go index d74590fce5..5d7a4c7f95 100644 --- a/sim/priest/mind_blast.go +++ b/sim/priest/mind_blast.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerMindBlastSpell() { diff --git a/sim/priest/mind_flay.go b/sim/priest/mind_flay.go index 80690fd502..97ff7bf1c8 100644 --- a/sim/priest/mind_flay.go +++ b/sim/priest/mind_flay.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) newMindFlaySpell() *core.Spell { diff --git a/sim/priest/mind_sear.go b/sim/priest/mind_sear.go index ae4be62207..305608abd6 100644 --- a/sim/priest/mind_sear.go +++ b/sim/priest/mind_sear.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) getMindSearBaseConfig() core.SpellConfig { diff --git a/sim/priest/mind_spike.go b/sim/priest/mind_spike.go index a3bacc2c67..bdf62f408e 100644 --- a/sim/priest/mind_spike.go +++ b/sim/priest/mind_spike.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerMindSpike() { diff --git a/sim/priest/priest.go b/sim/priest/priest.go index 0187fe6258..5b25d505bc 100644 --- a/sim/priest/priest.go +++ b/sim/priest/priest.go @@ -1,13 +1,11 @@ package priest import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -var TalentTreeSizes = [3]int{21, 21, 21} - type Priest struct { core.Character SelfBuffs @@ -98,16 +96,16 @@ func (priest *Priest) Initialize() { } priest.registerDevouringPlagueSpell() - priest.registerShadowWordPainSpell() + // priest.registerShadowWordPainSpell() priest.registerMindBlastSpell() priest.registerShadowWordDeathSpell() priest.registerShadowfiendSpell() - priest.registerVampiricTouchSpell() - priest.registerDispersionSpell() + // priest.registerVampiricTouchSpell() + // priest.registerDispersionSpell() priest.registerMindSpike() - priest.registerPowerInfusionSpell() + // priest.registerPowerInfusionSpell() priest.newMindFlaySpell() priest.newMindSearSpell() @@ -150,7 +148,7 @@ func New(char *core.Character, selfBuffs SelfBuffs, talents string) *Priest { ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassPriest), } - core.FillTalentsProto(priest.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(priest.Talents.ProtoReflect(), talents) priest.EnableManaBar() priest.ShadowfiendPet = priest.NewShadowfiend() return priest @@ -161,9 +159,6 @@ type PriestAgent interface { GetPriest() *Priest } -func (hunter *Priest) HasPrimeGlyph(glyph proto.PriestPrimeGlyph) bool { - return hunter.HasGlyph(int32(glyph)) -} func (hunter *Priest) HasMajorGlyph(glyph proto.PriestMajorGlyph) bool { return hunter.HasGlyph(int32(glyph)) } diff --git a/sim/priest/shadow/TestShadow.results b/sim/priest/shadow/TestShadow.results index 48f19aa359..e3d2c05aaf 100644 --- a/sim/priest/shadow/TestShadow.results +++ b/sim/priest/shadow/TestShadow.results @@ -732,8 +732,8 @@ dps_results: { dps_results: { key: "TestShadow-AllItems-Gladiator'sInvestiture" value: { - dps: 34238.52525 - tps: 30185.72006 + dps: 38524.56131 + tps: 33796.70644 } } dps_results: { diff --git a/sim/priest/shadow/shadow_test.go b/sim/priest/shadow/_shadow_test.go similarity index 72% rename from sim/priest/shadow/shadow_test.go rename to sim/priest/shadow/_shadow_test.go index 1d1a7d2c7f..af308c2c86 100644 --- a/sim/priest/shadow/shadow_test.go +++ b/sim/priest/shadow/_shadow_test.go @@ -3,9 +3,9 @@ package shadow import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get caster sets included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get caster sets included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -22,9 +22,9 @@ func TestShadow(t *testing.T) { OtherGearSets: []core.GearSetCombo{ core.GetGearSet("../../../ui/priest/shadow/gear_sets", "p3"), }, - Talents: DefaultTalents, - Glyphs: DefaultGlyphs, - Consumes: FullConsumes, + Talents: DefaultTalents, + Glyphs: DefaultGlyphs, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBasic}, @@ -50,9 +50,6 @@ func TestShadow(t *testing.T) { var DefaultTalents = "032212--322032210201222100231" var DefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.PriestPrimeGlyph_GlyphOfMindFlay), - Prime2: int32(proto.PriestPrimeGlyph_GlyphOfShadowWordPain), - Prime3: int32(proto.PriestPrimeGlyph_GlyphOfShadowWordDeath), Major1: int32(proto.PriestMajorGlyph_GlyphOfFade), Major2: int32(proto.PriestMajorGlyph_GlyphOfInnerFire), Major3: int32(proto.PriestMajorGlyph_GlyphOfSpiritTap), @@ -61,14 +58,13 @@ var DefaultGlyphs = &proto.Glyphs{ Minor3: int32(proto.PriestMinorGlyph_GlyphOfShadowfiend), } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeafoodFeast, - DefaultPotion: proto.Potions_VolcanicPotion, - PrepopPotion: proto.Potions_VolcanicPotion, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62290, // Seafood Magnifique Feast + PotId: 58091, // Volcanic Potion + PrepotId: 58091, // Volcanic Potion + TinkerId: 82174, // Synapse Springs } - var PlayerOptionsBasic = &proto.Player_ShadowPriest{ ShadowPriest: &proto.ShadowPriest{ Options: &proto.ShadowPriest_Options{ diff --git a/sim/priest/shadow/dragonwrath.go b/sim/priest/shadow/dragonwrath.go index 6d0b591fd0..98a18d448e 100644 --- a/sim/priest/shadow/dragonwrath.go +++ b/sim/priest/shadow/dragonwrath.go @@ -1,8 +1,8 @@ package shadow import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/priest/shadow/shadow.go b/sim/priest/shadow/shadow.go index 06756038da..651482574e 100644 --- a/sim/priest/shadow/shadow.go +++ b/sim/priest/shadow/shadow.go @@ -3,9 +3,9 @@ package shadow import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/priest" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/priest" ) func RegisterShadowPriest() { @@ -40,10 +40,11 @@ func NewShadowPriest(character *core.Character, options *proto.Player) *ShadowPr options: shadowOptions.Options, } - spriest.SelfBuffs.PowerInfusionTarget = &proto.UnitReference{} - if spriest.Talents.PowerInfusion && shadowOptions.Options.PowerInfusionTarget != nil { - spriest.SelfBuffs.PowerInfusionTarget = shadowOptions.Options.PowerInfusionTarget - } + // TODO: Fix this to work with the new talent system. + // spriest.SelfBuffs.PowerInfusionTarget = &proto.UnitReference{} + // if spriest.Talents.PowerInfusion && shadowOptions.Options.PowerInfusionTarget != nil { + // spriest.SelfBuffs.PowerInfusionTarget = shadowOptions.Options.PowerInfusionTarget + // } return spriest } @@ -70,7 +71,7 @@ func getMasteryBonus(masteryPoints float64) float64 { } func (spriest *ShadowPriest) ApplyTalents() { - spriest.Priest.ApplyTalents() + // spriest.Priest.ApplyTalents() // apply shadow spec specific auras // make it an aura so it's visible that it's used in the timeline @@ -174,7 +175,9 @@ func handleShadowOrbPower(spriest *ShadowPriest, sim *core.Simulation, spell *co } if spell.ClassSpellMask&(priest.PriestSpellShadowWordPain|priest.PriestSpellMindFlay) > 0 { - procChance := 0.1 + float64(spriest.Talents.HarnessedShadows)*0.04 + // TODO: Fix this to work with the new talent system. + // procChance := 0.1 + float64(spriest.Talents.HarnessedShadows)*0.04 + procChance := 0.1 if sim.Proc(procChance, "Shadow Orb Power") { spriest.ShadowOrbsAura.Activate(sim) spriest.ShadowOrbsAura.AddStack(sim) diff --git a/sim/priest/shadow_word_death.go b/sim/priest/shadow_word_death.go index dc4c1186b8..5d8ec8d27d 100644 --- a/sim/priest/shadow_word_death.go +++ b/sim/priest/shadow_word_death.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerShadowWordDeathSpell() { diff --git a/sim/priest/shadowfiend.go b/sim/priest/shadowfiend.go index 000065a276..881a61ca4d 100644 --- a/sim/priest/shadowfiend.go +++ b/sim/priest/shadowfiend.go @@ -3,7 +3,7 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (priest *Priest) registerShadowfiendSpell() { diff --git a/sim/priest/shadowfiend_pet.go b/sim/priest/shadowfiend_pet.go index 48f372bc11..167d8fa507 100644 --- a/sim/priest/shadowfiend_pet.go +++ b/sim/priest/shadowfiend_pet.go @@ -3,8 +3,8 @@ package priest import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // DISCLAIMER: Shadowfiend need some extensive research on Level 85 diff --git a/sim/raid_test.go b/sim/raid_test.go index ed529a67b3..993143299e 100644 --- a/sim/raid_test.go +++ b/sim/raid_test.go @@ -3,9 +3,9 @@ package sim import ( "testing" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func init() { diff --git a/sim/register_all.go b/sim/register_all.go index 675cd19f41..3b00815fae 100644 --- a/sim/register_all.go +++ b/sim/register_all.go @@ -1,39 +1,42 @@ package sim import ( - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/death_knight/blood" - frostDeathKnight "github.com/wowsims/cata/sim/death_knight/frost" - "github.com/wowsims/cata/sim/death_knight/unholy" - "github.com/wowsims/cata/sim/druid/balance" - "github.com/wowsims/cata/sim/druid/feral" - "github.com/wowsims/cata/sim/druid/guardian" - restoDruid "github.com/wowsims/cata/sim/druid/restoration" - _ "github.com/wowsims/cata/sim/encounters" - "github.com/wowsims/cata/sim/hunter/beast_mastery" - "github.com/wowsims/cata/sim/hunter/marksmanship" - "github.com/wowsims/cata/sim/hunter/survival" - "github.com/wowsims/cata/sim/mage/arcane" - "github.com/wowsims/cata/sim/mage/fire" - frostMage "github.com/wowsims/cata/sim/mage/frost" - holyPaladin "github.com/wowsims/cata/sim/paladin/holy" - protPaladin "github.com/wowsims/cata/sim/paladin/protection" - "github.com/wowsims/cata/sim/paladin/retribution" - "github.com/wowsims/cata/sim/priest/discipline" - holyPriest "github.com/wowsims/cata/sim/priest/holy" - "github.com/wowsims/cata/sim/priest/shadow" - "github.com/wowsims/cata/sim/rogue/assassination" - "github.com/wowsims/cata/sim/rogue/combat" - "github.com/wowsims/cata/sim/rogue/subtlety" - "github.com/wowsims/cata/sim/shaman/elemental" - "github.com/wowsims/cata/sim/shaman/enhancement" - restoShaman "github.com/wowsims/cata/sim/shaman/restoration" - "github.com/wowsims/cata/sim/warlock/affliction" - "github.com/wowsims/cata/sim/warlock/demonology" - "github.com/wowsims/cata/sim/warlock/destruction" - "github.com/wowsims/cata/sim/warrior/arms" - "github.com/wowsims/cata/sim/warrior/fury" - protWarrior "github.com/wowsims/cata/sim/warrior/protection" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/death_knight/blood" + frostDeathKnight "github.com/wowsims/mop/sim/death_knight/frost" + "github.com/wowsims/mop/sim/death_knight/unholy" + "github.com/wowsims/mop/sim/druid/balance" + "github.com/wowsims/mop/sim/druid/feral" + "github.com/wowsims/mop/sim/druid/guardian" + restoDruid "github.com/wowsims/mop/sim/druid/restoration" + _ "github.com/wowsims/mop/sim/encounters" + "github.com/wowsims/mop/sim/hunter/beast_mastery" + "github.com/wowsims/mop/sim/hunter/marksmanship" + "github.com/wowsims/mop/sim/hunter/survival" + "github.com/wowsims/mop/sim/mage/arcane" + "github.com/wowsims/mop/sim/mage/fire" + frostMage "github.com/wowsims/mop/sim/mage/frost" + "github.com/wowsims/mop/sim/monk/brewmaster" + "github.com/wowsims/mop/sim/monk/mistweaver" + "github.com/wowsims/mop/sim/monk/windwalker" + holyPaladin "github.com/wowsims/mop/sim/paladin/holy" + protPaladin "github.com/wowsims/mop/sim/paladin/protection" + "github.com/wowsims/mop/sim/paladin/retribution" + "github.com/wowsims/mop/sim/priest/discipline" + holyPriest "github.com/wowsims/mop/sim/priest/holy" + "github.com/wowsims/mop/sim/priest/shadow" + "github.com/wowsims/mop/sim/rogue/assassination" + "github.com/wowsims/mop/sim/rogue/combat" + "github.com/wowsims/mop/sim/rogue/subtlety" + "github.com/wowsims/mop/sim/shaman/elemental" + "github.com/wowsims/mop/sim/shaman/enhancement" + restoShaman "github.com/wowsims/mop/sim/shaman/restoration" + "github.com/wowsims/mop/sim/warlock/affliction" + "github.com/wowsims/mop/sim/warlock/demonology" + "github.com/wowsims/mop/sim/warlock/destruction" + "github.com/wowsims/mop/sim/warrior/arms" + "github.com/wowsims/mop/sim/warrior/fury" + protWarrior "github.com/wowsims/mop/sim/warrior/protection" ) var registered = false @@ -84,4 +87,8 @@ func RegisterAll() { arms.RegisterArmsWarrior() fury.RegisterFuryWarrior() protWarrior.RegisterProtectionWarrior() + + brewmaster.RegisterBrewmasterMonk() + mistweaver.RegisterMistweaverMonk() + windwalker.RegisterWindwalkerMonk() } diff --git a/sim/rogue/ambush.go b/sim/rogue/_ambush.go similarity index 96% rename from sim/rogue/ambush.go rename to sim/rogue/_ambush.go index f07374948f..f4315ddebe 100644 --- a/sim/rogue/ambush.go +++ b/sim/rogue/_ambush.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerAmbushSpell() { diff --git a/sim/rogue/backstab.go b/sim/rogue/_backstab.go similarity index 96% rename from sim/rogue/backstab.go rename to sim/rogue/_backstab.go index 786c6a4afe..5d96d8207c 100644 --- a/sim/rogue/backstab.go +++ b/sim/rogue/_backstab.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerBackstabSpell() { diff --git a/sim/rogue/envenom.go b/sim/rogue/_envenom.go similarity index 98% rename from sim/rogue/envenom.go rename to sim/rogue/_envenom.go index c671d8633e..5c765feec4 100644 --- a/sim/rogue/envenom.go +++ b/sim/rogue/_envenom.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (rogue *Rogue) registerEnvenom() { diff --git a/sim/rogue/eviscerate.go b/sim/rogue/_eviscerate.go similarity index 96% rename from sim/rogue/eviscerate.go rename to sim/rogue/_eviscerate.go index 26caac8c75..6ceef67367 100644 --- a/sim/rogue/eviscerate.go +++ b/sim/rogue/_eviscerate.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerEviscerate() { diff --git a/sim/rogue/expose_armor.go b/sim/rogue/_expose_armor.go similarity index 96% rename from sim/rogue/expose_armor.go rename to sim/rogue/_expose_armor.go index 1dc113fddf..75c6770750 100644 --- a/sim/rogue/expose_armor.go +++ b/sim/rogue/_expose_armor.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerExposeArmorSpell() { diff --git a/sim/rogue/fan_of_knives.go b/sim/rogue/_fan_of_knives.go similarity index 97% rename from sim/rogue/fan_of_knives.go rename to sim/rogue/_fan_of_knives.go index 94fa7f4fb3..7665094767 100644 --- a/sim/rogue/fan_of_knives.go +++ b/sim/rogue/_fan_of_knives.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerFanOfKnives() { diff --git a/sim/rogue/garrote.go b/sim/rogue/_garrote.go similarity index 98% rename from sim/rogue/garrote.go rename to sim/rogue/_garrote.go index bfd0488938..bf358d5b11 100644 --- a/sim/rogue/garrote.go +++ b/sim/rogue/_garrote.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (rogue *Rogue) registerGarrote() { diff --git a/sim/rogue/gouge.go b/sim/rogue/_gouge.go similarity index 96% rename from sim/rogue/gouge.go rename to sim/rogue/_gouge.go index c8636e7b35..58dcfd3557 100644 --- a/sim/rogue/gouge.go +++ b/sim/rogue/_gouge.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerGougeSpell() { diff --git a/sim/rogue/items.go b/sim/rogue/_items.go similarity index 98% rename from sim/rogue/items.go rename to sim/rogue/_items.go index e8665dd3f1..331e1748fa 100644 --- a/sim/rogue/items.go +++ b/sim/rogue/_items.go @@ -4,10 +4,10 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) var Tier6 = core.NewItemSet(core.ItemSet{ diff --git a/sim/rogue/poisons.go b/sim/rogue/_poisons.go similarity index 99% rename from sim/rogue/poisons.go rename to sim/rogue/_poisons.go index 46e5304f64..f8dc1f936f 100644 --- a/sim/rogue/poisons.go +++ b/sim/rogue/_poisons.go @@ -5,8 +5,8 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) applyPoisons() { diff --git a/sim/rogue/recuperate.go b/sim/rogue/_recuperate.go similarity index 98% rename from sim/rogue/recuperate.go rename to sim/rogue/_recuperate.go index 4fbc4d7eb1..d8b0135959 100644 --- a/sim/rogue/recuperate.go +++ b/sim/rogue/_recuperate.go @@ -3,7 +3,7 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (rogue *Rogue) registerRecuperate() { diff --git a/sim/rogue/rupture.go b/sim/rogue/_rupture.go similarity index 97% rename from sim/rogue/rupture.go rename to sim/rogue/_rupture.go index 81dd3905b6..f6e7c002de 100644 --- a/sim/rogue/rupture.go +++ b/sim/rogue/_rupture.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) const RuptureEnergyCost = 25.0 diff --git a/sim/rogue/shiv.go b/sim/rogue/_shiv.go similarity index 95% rename from sim/rogue/shiv.go rename to sim/rogue/_shiv.go index f9216e3b7e..aa6dfffa5d 100644 --- a/sim/rogue/shiv.go +++ b/sim/rogue/_shiv.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerShivSpell() { diff --git a/sim/rogue/sinister_strike.go b/sim/rogue/_sinister_strike.go similarity index 95% rename from sim/rogue/sinister_strike.go rename to sim/rogue/_sinister_strike.go index 0d5f92e729..75dc65993d 100644 --- a/sim/rogue/sinister_strike.go +++ b/sim/rogue/_sinister_strike.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerSinisterStrikeSpell() { diff --git a/sim/rogue/slice_and_dice.go b/sim/rogue/_slice_and_dice.go similarity index 96% rename from sim/rogue/slice_and_dice.go rename to sim/rogue/_slice_and_dice.go index d8b0555ff2..e3618590dc 100644 --- a/sim/rogue/slice_and_dice.go +++ b/sim/rogue/_slice_and_dice.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerSliceAndDice() { diff --git a/sim/rogue/stealth.go b/sim/rogue/_stealth.go similarity index 93% rename from sim/rogue/stealth.go rename to sim/rogue/_stealth.go index 61c0f6aba9..31db8bc374 100644 --- a/sim/rogue/stealth.go +++ b/sim/rogue/_stealth.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerStealthAura() { diff --git a/sim/rogue/talents.go b/sim/rogue/_talents.go similarity index 94% rename from sim/rogue/talents.go rename to sim/rogue/_talents.go index c0011339b6..00851a8247 100644 --- a/sim/rogue/talents.go +++ b/sim/rogue/_talents.go @@ -1,9 +1,9 @@ package rogue import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (rogue *Rogue) ApplyTalents() { diff --git a/sim/rogue/tricks_of_the_trade.go b/sim/rogue/_tricks_of_the_trade.go similarity index 97% rename from sim/rogue/tricks_of_the_trade.go rename to sim/rogue/_tricks_of_the_trade.go index 50710c2c13..751df07cde 100644 --- a/sim/rogue/tricks_of_the_trade.go +++ b/sim/rogue/_tricks_of_the_trade.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerTricksOfTheTradeSpell() { diff --git a/sim/rogue/vanish.go b/sim/rogue/_vanish.go similarity index 96% rename from sim/rogue/vanish.go rename to sim/rogue/_vanish.go index c739e0b01c..109173b53d 100644 --- a/sim/rogue/vanish.go +++ b/sim/rogue/_vanish.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerVanishSpell() { diff --git a/sim/rogue/assassination/TestAssassination.results b/sim/rogue/assassination/TestAssassination.results index 72fc0a4064..a762f718af 100644 --- a/sim/rogue/assassination/TestAssassination.results +++ b/sim/rogue/assassination/TestAssassination.results @@ -776,8 +776,8 @@ dps_results: { dps_results: { key: "TestAssassination-AllItems-Gladiator'sVestments" value: { - dps: 23487.76024 - tps: 16676.30977 + dps: 27279.01292 + tps: 19368.09917 } } dps_results: { @@ -1399,22 +1399,22 @@ dps_results: { dps_results: { key: "TestAssassination-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 29184.65269 - tps: 20721.10341 + dps: 27825.99641 + tps: 19756.45745 } } dps_results: { key: "TestAssassination-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 29569.16927 - tps: 20994.11018 + dps: 28037.24858 + tps: 19906.44649 } } dps_results: { key: "TestAssassination-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 28888.4829 - tps: 20510.82286 + dps: 27685.84393 + tps: 19656.94919 } } dps_results: { diff --git a/sim/rogue/assassination/assassination_test.go b/sim/rogue/assassination/_assassination_test.go similarity index 86% rename from sim/rogue/assassination/assassination_test.go rename to sim/rogue/assassination/_assassination_test.go index 406509930d..c73208b2a4 100644 --- a/sim/rogue/assassination/assassination_test.go +++ b/sim/rogue/assassination/_assassination_test.go @@ -3,9 +3,9 @@ package assassination import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -26,7 +26,7 @@ func TestAssassination(t *testing.T) { Talents: AssassinationTalents, Glyphs: AssassinationGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Assassination", SpecOptions: PlayerOptionsAssassinationDI}, OtherSpecOptions: []core.SpecOptionsCombo{ @@ -65,11 +65,7 @@ func TestAssassination(t *testing.T) { var AssassinationTalents = "0333230013122110321-002-203003" -var AssassinationGlyphs = &proto.Glyphs{ - Prime1: int32(proto.RoguePrimeGlyph_GlyphOfBackstab), - Prime2: int32(proto.RoguePrimeGlyph_GlyphOfRupture), - Prime3: int32(proto.RoguePrimeGlyph_GlyphOfMutilate), -} +var AssassinationGlyphs = &proto.Glyphs{} var PlayerOptionsAssassinationDI = &proto.Player_AssassinationRogue{ AssassinationRogue: &proto.AssassinationRogue{ @@ -118,9 +114,8 @@ var PlayerOptionsAssassinationII = &proto.Player_AssassinationRogue{ }, }, } - -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - DefaultConjured: proto.Conjured_ConjuredRogueThistleTea, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, // Flask of the Winds + PotId: 58145, // Potion of the Tol'vir + ConjuredId: 7676, // Thistle Tea } diff --git a/sim/rogue/assassination/coldblood.go b/sim/rogue/assassination/_coldblood.go similarity index 95% rename from sim/rogue/assassination/coldblood.go rename to sim/rogue/assassination/_coldblood.go index e75e6bc5b9..d0f2395117 100644 --- a/sim/rogue/assassination/coldblood.go +++ b/sim/rogue/assassination/_coldblood.go @@ -3,8 +3,8 @@ package assassination import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (sinRogue *AssassinationRogue) registerColdBloodCD() { diff --git a/sim/rogue/assassination/mutilate.go b/sim/rogue/assassination/_mutilate.go similarity index 95% rename from sim/rogue/assassination/mutilate.go rename to sim/rogue/assassination/_mutilate.go index 7f09410b1a..bac3a36e9a 100644 --- a/sim/rogue/assassination/mutilate.go +++ b/sim/rogue/assassination/_mutilate.go @@ -3,9 +3,9 @@ package assassination import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) var MutilateSpellID int32 = 1329 diff --git a/sim/rogue/assassination/overkill.go b/sim/rogue/assassination/_overkill.go similarity index 93% rename from sim/rogue/assassination/overkill.go rename to sim/rogue/assassination/_overkill.go index c9be720490..08011df954 100644 --- a/sim/rogue/assassination/overkill.go +++ b/sim/rogue/assassination/_overkill.go @@ -3,7 +3,7 @@ package assassination import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (sinRogue *AssassinationRogue) registerOverkill() { diff --git a/sim/rogue/assassination/sealfate.go b/sim/rogue/assassination/_sealfate.go similarity index 92% rename from sim/rogue/assassination/sealfate.go rename to sim/rogue/assassination/_sealfate.go index 502eacbe96..8981df124e 100644 --- a/sim/rogue/assassination/sealfate.go +++ b/sim/rogue/assassination/_sealfate.go @@ -3,8 +3,8 @@ package assassination import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (sinRogue *AssassinationRogue) applySealFate() { diff --git a/sim/rogue/assassination/vendetta.go b/sim/rogue/assassination/_vendetta.go similarity index 94% rename from sim/rogue/assassination/vendetta.go rename to sim/rogue/assassination/_vendetta.go index 06932b375c..53ace7d9ad 100644 --- a/sim/rogue/assassination/vendetta.go +++ b/sim/rogue/assassination/_vendetta.go @@ -3,9 +3,9 @@ package assassination import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (sinRogue *AssassinationRogue) registerVendetta() { diff --git a/sim/rogue/assassination/venomous_wounds.go b/sim/rogue/assassination/_venomous_wounds.go similarity index 96% rename from sim/rogue/assassination/venomous_wounds.go rename to sim/rogue/assassination/_venomous_wounds.go index 39432f5069..064630a495 100644 --- a/sim/rogue/assassination/venomous_wounds.go +++ b/sim/rogue/assassination/_venomous_wounds.go @@ -1,8 +1,8 @@ package assassination import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (sinRogue *AssassinationRogue) registerVenomousWounds() { diff --git a/sim/rogue/assassination/assassination.go b/sim/rogue/assassination/assassination.go index 544547c8f4..08b31720f0 100644 --- a/sim/rogue/assassination/assassination.go +++ b/sim/rogue/assassination/assassination.go @@ -1,10 +1,10 @@ package assassination import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/rogue" ) // Damage Done By Caster setup @@ -37,12 +37,12 @@ func (sinRogue *AssassinationRogue) Initialize() { sinRogue.MasteryBaseValue = 0.28 sinRogue.MasteryMultiplier = 0.035 - sinRogue.registerMutilateSpell() - sinRogue.registerOverkill() - sinRogue.registerColdBloodCD() - sinRogue.applySealFate() - sinRogue.registerVenomousWounds() - sinRogue.registerVendetta() + // sinRogue.registerMutilateSpell() + // sinRogue.registerOverkill() + // sinRogue.registerColdBloodCD() + // sinRogue.applySealFate() + // sinRogue.registerVenomousWounds() + // sinRogue.registerVendetta() // Apply Mastery // As far as I am able to find, Asn's Mastery is an additive bonus. To be tested. diff --git a/sim/rogue/combat/TestCombat.results b/sim/rogue/combat/TestCombat.results index e874e1c190..91321a2bbf 100644 --- a/sim/rogue/combat/TestCombat.results +++ b/sim/rogue/combat/TestCombat.results @@ -753,8 +753,8 @@ dps_results: { dps_results: { key: "TestCombat-AllItems-Gladiator'sVestments" value: { - dps: 23441.7688 - tps: 16643.65584 + dps: 27547.91948 + tps: 19559.02283 } } dps_results: { @@ -1404,22 +1404,22 @@ dps_results: { dps_results: { key: "TestCombat-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 26050.86316 - tps: 18496.11284 + dps: 24411.4982 + tps: 17332.16372 } } dps_results: { key: "TestCombat-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 26472.86305 - tps: 18795.73277 + dps: 24623.2831 + tps: 17482.531 } } dps_results: { key: "TestCombat-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 25675.928 - tps: 18229.90888 + dps: 24224.81557 + tps: 17199.61905 } } dps_results: { @@ -2071,8 +2071,8 @@ dps_results: { dps_results: { key: "TestCombat-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 26120.09705 - tps: 18545.26891 + dps: 25562.35752 + tps: 18149.27384 } } dps_results: { diff --git a/sim/rogue/combat/adrenaline_rush.go b/sim/rogue/combat/_adrenaline_rush.go similarity index 93% rename from sim/rogue/combat/adrenaline_rush.go rename to sim/rogue/combat/_adrenaline_rush.go index ab7b74f103..3b691dad59 100644 --- a/sim/rogue/combat/adrenaline_rush.go +++ b/sim/rogue/combat/_adrenaline_rush.go @@ -3,9 +3,9 @@ package combat import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) var AdrenalineRushActionID = core.ActionID{SpellID: 13750} diff --git a/sim/rogue/combat/bandits_guile.go b/sim/rogue/combat/_bandits_guile.go similarity index 97% rename from sim/rogue/combat/bandits_guile.go rename to sim/rogue/combat/_bandits_guile.go index ad47143a4e..abeed7c53c 100644 --- a/sim/rogue/combat/bandits_guile.go +++ b/sim/rogue/combat/_bandits_guile.go @@ -3,8 +3,8 @@ package combat import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (comRogue *CombatRogue) registerBanditsGuile() { diff --git a/sim/rogue/combat/combat_potency.go b/sim/rogue/combat/_combat_potency.go similarity index 95% rename from sim/rogue/combat/combat_potency.go rename to sim/rogue/combat/_combat_potency.go index a81d3e9a04..d28bfb6d62 100644 --- a/sim/rogue/combat/combat_potency.go +++ b/sim/rogue/combat/_combat_potency.go @@ -1,6 +1,6 @@ package combat -import "github.com/wowsims/cata/sim/core" +import "github.com/wowsims/mop/sim/core" func (comRogue *CombatRogue) applyCombatPotency() { if comRogue.Talents.CombatPotency == 0 { diff --git a/sim/rogue/combat/combat_test.go b/sim/rogue/combat/_combat_test.go similarity index 84% rename from sim/rogue/combat/combat_test.go rename to sim/rogue/combat/_combat_test.go index e5188852c7..0d6685814b 100644 --- a/sim/rogue/combat/combat_test.go +++ b/sim/rogue/combat/_combat_test.go @@ -3,9 +3,9 @@ package combat import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -24,7 +24,7 @@ func TestCombat(t *testing.T) { }, Talents: CombatTalents, Glyphs: CombatGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Combat", SpecOptions: PlayerOptionsID}, OtherSpecOptions: []core.SpecOptionsCombo{ {Label: "MH Deadly OH Instant", SpecOptions: PlayerOptionsDI}, @@ -59,11 +59,7 @@ func TestCombat(t *testing.T) { var CombatTalents = "0322-2332030310230012321-003" -var CombatGlyphs = &proto.Glyphs{ - Prime1: int32(proto.RoguePrimeGlyph_GlyphOfSinisterStrike), - Prime2: int32(proto.RoguePrimeGlyph_GlyphOfSliceAndDice), - Prime3: int32(proto.RoguePrimeGlyph_GlyphOfAdrenalineRush), -} +var CombatGlyphs = &proto.Glyphs{} var PlayerOptionsDI = &proto.Player_CombatRogue{ CombatRogue: &proto.CombatRogue{ @@ -113,8 +109,8 @@ var PlayerOptionsII = &proto.Player_CombatRogue{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - DefaultConjured: proto.Conjured_ConjuredRogueThistleTea, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, // Flask of the Winds + PotId: 58145, // Potion of the Tol'vir + ConjuredId: 7676, // Thistle Tea } diff --git a/sim/rogue/combat/killing_spree.go b/sim/rogue/combat/_killing_spree.go similarity index 96% rename from sim/rogue/combat/killing_spree.go rename to sim/rogue/combat/_killing_spree.go index cd6207ecb5..fe799b9390 100644 --- a/sim/rogue/combat/killing_spree.go +++ b/sim/rogue/combat/_killing_spree.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (comRogue *CombatRogue) registerKillingSpreeCD() { diff --git a/sim/rogue/combat/revealing_strike.go b/sim/rogue/combat/_revealing_strike.go similarity index 95% rename from sim/rogue/combat/revealing_strike.go rename to sim/rogue/combat/_revealing_strike.go index 5304d32308..decefe123e 100644 --- a/sim/rogue/combat/revealing_strike.go +++ b/sim/rogue/combat/_revealing_strike.go @@ -3,9 +3,9 @@ package combat import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (comRogue *CombatRogue) registerRevealingStrike() { diff --git a/sim/rogue/combat/blade_flurry.go b/sim/rogue/combat/blade_flurry.go index e5631700e9..72419ca3a8 100644 --- a/sim/rogue/combat/blade_flurry.go +++ b/sim/rogue/combat/blade_flurry.go @@ -3,9 +3,9 @@ package combat import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) var BladeFlurryActionID = core.ActionID{SpellID: 13877} diff --git a/sim/rogue/combat/combat.go b/sim/rogue/combat/combat.go index 273ca0adea..1c8f664a4c 100644 --- a/sim/rogue/combat/combat.go +++ b/sim/rogue/combat/combat.go @@ -1,10 +1,10 @@ package combat import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/rogue" ) // Damage Done By Caster setup @@ -54,14 +54,14 @@ func (combatRogue *CombatRogue) Initialize() { combatRogue.AdditiveEnergyRegenBonus += 0.25 combatRogue.MultiplyStat(stats.AttackPower, 1.3) - combatRogue.registerRevealingStrike() - combatRogue.registerBladeFlurry() - combatRogue.registerBanditsGuile() + // combatRogue.registerRevealingStrike() + // combatRogue.registerBladeFlurry() + // combatRogue.registerBanditsGuile() - combatRogue.applyCombatPotency() + // combatRogue.applyCombatPotency() - combatRogue.registerKillingSpreeCD() - combatRogue.registerAdrenalineRushCD() + // combatRogue.registerKillingSpreeCD() + // combatRogue.registerAdrenalineRushCD() combatRogue.applyMastery() } @@ -77,8 +77,9 @@ func (combatRogue *CombatRogue) GetRogue() *rogue.Rogue { func (combatRogue *CombatRogue) Reset(sim *core.Simulation) { combatRogue.Rogue.Reset(sim) - if combatRogue.Talents.BanditsGuile > 0 { - combatRogue.BanditsGuileAura.Activate(sim) - } + // TODO: Fix this to work with the new talent system. + // if combatRogue.Talents.BanditsGuile > 0 { + // combatRogue.BanditsGuileAura.Activate(sim) + // } } diff --git a/sim/rogue/combat/mastery.go b/sim/rogue/combat/mastery.go index 6a49d881e4..4315fc7c97 100644 --- a/sim/rogue/combat/mastery.go +++ b/sim/rogue/combat/mastery.go @@ -1,8 +1,8 @@ package combat import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (comRogue *CombatRogue) applyMastery() { diff --git a/sim/rogue/feint.go b/sim/rogue/feint.go index aa76463893..65f1ad433b 100644 --- a/sim/rogue/feint.go +++ b/sim/rogue/feint.go @@ -3,8 +3,8 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (rogue *Rogue) registerFeintSpell() { diff --git a/sim/rogue/rogue.go b/sim/rogue/rogue.go index 17e055efea..564a15518d 100644 --- a/sim/rogue/rogue.go +++ b/sim/rogue/rogue.go @@ -3,9 +3,9 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) const ( @@ -14,8 +14,6 @@ const ( SpellFlagColdBlooded = core.SpellFlagAgentReserved4 ) -var TalentTreeSizes = [3]int{19, 19, 19} - const RogueBleedTag = "RogueBleed" type Rogue struct { @@ -122,47 +120,44 @@ func (rogue *Rogue) AddPartyBuffs(_ *proto.PartyBuffs) {} // Apply the effect of successfully casting a finisher to combo points func (rogue *Rogue) ApplyFinisher(sim *core.Simulation, spell *core.Spell) { - numPoints := rogue.ComboPoints() - rogue.SpendComboPoints(sim, spell.ComboPointMetrics()) - - if rogue.Talents.Ruthlessness > 0 && (spell.ClassSpellMask&RogueSpellDamagingFinisher != 0) { - procChance := 0.2 * float64(rogue.Talents.Ruthlessness) - if sim.Proc(procChance, "Ruthlessness") { - rogue.AddComboPoints(sim, 1, rogue.ruthlessnessMetrics) - } - } - if rogue.Talents.RelentlessStrikes > 0 { - procChance := []float64{0.0, 0.07, 0.14, 0.2}[rogue.Talents.RelentlessStrikes] * float64(numPoints) - if sim.Proc(procChance, "Relentless Strikes") { - rogue.AddEnergy(sim, 25, rogue.relentlessStrikesMetrics) - } - } - if rogue.Talents.RestlessBlades > 0 && (spell.ClassSpellMask&RogueSpellDamagingFinisher != 0) { - cdReduction := time.Duration(rogue.Talents.RestlessBlades) * time.Second * time.Duration(numPoints) - - if rogue.KillingSpree != nil { - ksNewTime := rogue.KillingSpree.CD.Timer.ReadyAt() - cdReduction - rogue.KillingSpree.CD.Timer.Set(ksNewTime) - } - if rogue.AdrenalineRush != nil { - arNewTime := rogue.AdrenalineRush.CD.Timer.ReadyAt() - cdReduction - rogue.AdrenalineRush.CD.Timer.Set(arNewTime) - } - } - if rogue.Talents.SerratedBlades > 0 && spell == rogue.Eviscerate { - chancePerPoint := 0.1 * float64(rogue.Talents.SerratedBlades) - procChance := float64(numPoints) * chancePerPoint - if sim.Proc(procChance, "Serrated Blades") { - rupAura := rogue.Rupture.Dot(spell.Unit.CurrentTarget) - if rupAura.IsActive() { - rupAura.Activate(sim) - } - } - } -} - -func (rogue *Rogue) HasPrimeGlyph(glyph proto.RoguePrimeGlyph) bool { - return rogue.HasGlyph(int32(glyph)) + // numPoints := rogue.ComboPoints() + // rogue.SpendComboPoints(sim, spell.ComboPointMetrics()) + + // TODO: Fix this to work with the new talent system. + // if rogue.Talents.Ruthlessness > 0 && (spell.ClassSpellMask&RogueSpellDamagingFinisher != 0) { + // procChance := 0.2 * float64(rogue.Talents.Ruthlessness) + // if sim.Proc(procChance, "Ruthlessness") { + // rogue.AddComboPoints(sim, 1, rogue.ruthlessnessMetrics) + // } + // } + // if rogue.Talents.RelentlessStrikes > 0 { + // procChance := []float64{0.0, 0.07, 0.14, 0.2}[rogue.Talents.RelentlessStrikes] * float64(numPoints) + // if sim.Proc(procChance, "Relentless Strikes") { + // rogue.AddEnergy(sim, 25, rogue.relentlessStrikesMetrics) + // } + // } + // if rogue.Talents.RestlessBlades > 0 && (spell.ClassSpellMask&RogueSpellDamagingFinisher != 0) { + // cdReduction := time.Duration(rogue.Talents.RestlessBlades) * time.Second * time.Duration(numPoints) + + // if rogue.KillingSpree != nil { + // ksNewTime := rogue.KillingSpree.CD.Timer.ReadyAt() - cdReduction + // rogue.KillingSpree.CD.Timer.Set(ksNewTime) + // } + // if rogue.AdrenalineRush != nil { + // arNewTime := rogue.AdrenalineRush.CD.Timer.ReadyAt() - cdReduction + // rogue.AdrenalineRush.CD.Timer.Set(arNewTime) + // } + // } + // if rogue.Talents.SerratedBlades > 0 && spell == rogue.Eviscerate { + // chancePerPoint := 0.1 * float64(rogue.Talents.SerratedBlades) + // procChance := float64(numPoints) * chancePerPoint + // if sim.Proc(procChance, "Serrated Blades") { + // rupAura := rogue.Rupture.Dot(spell.Unit.CurrentTarget) + // if rupAura.IsActive() { + // rupAura.Activate(sim) + // } + // } + // } } func (rogue *Rogue) HasMajorGlyph(glyph proto.RogueMajorGlyph) bool { @@ -179,28 +174,28 @@ func (rogue *Rogue) Initialize() { rogue.AutoAttacks.OHConfig().CritMultiplier = rogue.MeleeCritMultiplier(false) rogue.AutoAttacks.RangedConfig().CritMultiplier = rogue.MeleeCritMultiplier(false) - rogue.registerStealthAura() - rogue.registerVanishSpell() + // rogue.registerStealthAura() + // rogue.registerVanishSpell() rogue.registerFeintSpell() - rogue.registerAmbushSpell() - rogue.registerGarrote() - rogue.registerSinisterStrikeSpell() - rogue.registerBackstabSpell() - rogue.registerRupture() - rogue.registerSliceAndDice() - rogue.registerEviscerate() - rogue.registerEnvenom() - rogue.registerExposeArmorSpell() - rogue.registerRecuperate() - rogue.registerFanOfKnives() - rogue.registerTricksOfTheTradeSpell() - rogue.registerDeadlyPoisonSpell() - rogue.registerInstantPoisonSpell() - rogue.registerWoundPoisonSpell() - rogue.registerPoisonAuras() - rogue.registerShivSpell() + // rogue.registerAmbushSpell() + // rogue.registerGarrote() + // rogue.registerSinisterStrikeSpell() + // rogue.registerBackstabSpell() + // rogue.registerRupture() + // rogue.registerSliceAndDice() + // rogue.registerEviscerate() + // rogue.registerEnvenom() + // rogue.registerExposeArmorSpell() + // rogue.registerRecuperate() + // rogue.registerFanOfKnives() + // rogue.registerTricksOfTheTradeSpell() + // rogue.registerDeadlyPoisonSpell() + // rogue.registerInstantPoisonSpell() + // rogue.registerWoundPoisonSpell() + // rogue.registerPoisonAuras() + // rogue.registerShivSpell() rogue.registerThistleTeaCD() - rogue.registerGougeSpell() + // rogue.registerGougeSpell() rogue.T12ToTLastBuff = 3 @@ -221,11 +216,13 @@ func (rogue *Rogue) Initialize() { rogue.Options.OhImbue = proto.RogueOptions_DeadlyPoison rogue.lastDeadlyPoisonProcMask = core.ProcMaskMeleeOH } - rogue.UpdateInstantPoisonPPM(0) + // rogue.UpdateInstantPoisonPPM(0) } }) } +func (rogue *Rogue) ApplyTalents() {} + func (rogue *Rogue) ApplyAdditiveEnergyRegenBonus(sim *core.Simulation, increment float64) { oldBonus := rogue.AdditiveEnergyRegenBonus newBonus := oldBonus + increment @@ -245,9 +242,10 @@ func (rogue *Rogue) Reset(sim *core.Simulation) { func (rogue *Rogue) MeleeCritMultiplier(applyLethality bool) float64 { secondaryModifier := 0.0 - if applyLethality { - secondaryModifier += 0.1 * float64(rogue.Talents.Lethality) - } + // TODO: Fix this to work with the new talent system. + // if applyLethality { + // secondaryModifier += 0.1 * float64(rogue.Talents.Lethality) + // } return rogue.Character.MeleeCritMultiplier(1.0, secondaryModifier) } func (rogue *Rogue) SpellCritMultiplier() float64 { @@ -262,7 +260,7 @@ func NewRogue(character *core.Character, options *proto.RogueOptions, talents st ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassRogue), } - core.FillTalentsProto(rogue.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(rogue.Talents.ProtoReflect(), talents) // Passive rogue threat reduction: https://wotlk.wowhead.com/spell=21184/rogue-passive-dnd rogue.PseudoStats.ThreatMultiplier *= 0.71 @@ -277,8 +275,10 @@ func NewRogue(character *core.Character, options *proto.RogueOptions, talents st } rogue.EnableEnergyBar(core.EnergyBarOptions{ + MaxComboPoints: 5, MaxEnergy: maxEnergy, StartingComboPoints: options.StartingComboPoints, + UnitClass: proto.Class_ClassRogue, }) rogue.EnableAutoAttacks(rogue, core.AutoAttackOptions{ @@ -287,7 +287,7 @@ func NewRogue(character *core.Character, options *proto.RogueOptions, talents st Ranged: rogue.WeaponFromRanged(0), AutoSwingMelee: true, }) - rogue.applyPoisons() + // rogue.applyPoisons() rogue.AddStatDependency(stats.Strength, stats.AttackPower, 1) rogue.AddStatDependency(stats.Agility, stats.AttackPower, 2) @@ -299,15 +299,15 @@ func NewRogue(character *core.Character, options *proto.RogueOptions, talents st // Apply the effects of the Cut to the Chase talent // TODO: Put a fresh instance of SnD rather than use the original as per client // TODO (TheBackstabi, 3/16/2024) - Assassination only talent, to be moved? -func (rogue *Rogue) ApplyCutToTheChase(sim *core.Simulation) { - if rogue.Talents.CutToTheChase > 0 && rogue.SliceAndDiceAura.IsActive() { - procChance := []float64{0.0, 0.33, 0.67, 1.0}[rogue.Talents.CutToTheChase] - if procChance == 1 || sim.Proc(procChance, "Cut to the Chase") { - rogue.SliceAndDiceAura.Duration = rogue.sliceAndDiceDurations[5] - rogue.SliceAndDiceAura.Activate(sim) - } - } -} +// func (rogue *Rogue) ApplyCutToTheChase(sim *core.Simulation) { +// if rogue.Talents.CutToTheChase > 0 && rogue.SliceAndDiceAura.IsActive() { +// procChance := []float64{0.0, 0.33, 0.67, 1.0}[rogue.Talents.CutToTheChase] +// if procChance == 1 || sim.Proc(procChance, "Cut to the Chase") { +// rogue.SliceAndDiceAura.Duration = rogue.sliceAndDiceDurations[5] +// rogue.SliceAndDiceAura.Activate(sim) +// } +// } +// } // Deactivate Stealth if it is active. This must be added to all abilities that cause Stealth to fade. func (rogue *Rogue) BreakStealth(sim *core.Simulation) { @@ -335,9 +335,10 @@ func (rogue *Rogue) IsStealthed() bool { if rogue.StealthAura.IsActive() { return true } - if rogue.Talents.ShadowDance && rogue.ShadowDanceAura.IsActive() { - return true - } + // TODO: Fix this to work with the new talent system. + // if rogue.Talents.ShadowDance && rogue.ShadowDanceAura.IsActive() { + // return true + // } return false } diff --git a/sim/rogue/subtlety/TestSubtlety.results b/sim/rogue/subtlety/TestSubtlety.results index 863a7ad410..30590dfce5 100644 --- a/sim/rogue/subtlety/TestSubtlety.results +++ b/sim/rogue/subtlety/TestSubtlety.results @@ -739,8 +739,8 @@ dps_results: { dps_results: { key: "TestSubtlety-AllItems-Gladiator'sVestments" value: { - dps: 21122.45503 - tps: 14996.94307 + dps: 24597.6963 + tps: 17464.36437 } } dps_results: { @@ -1362,22 +1362,22 @@ dps_results: { dps_results: { key: "TestSubtlety-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 25516.16676 - tps: 18116.4784 + dps: 23446.7628 + tps: 16647.20159 } } dps_results: { key: "TestSubtlety-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 26048.86912 - tps: 18494.69707 + dps: 23714.10748 + tps: 16837.01631 } } dps_results: { key: "TestSubtlety-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 25042.88286 - tps: 17780.44683 + dps: 23211.11435 + tps: 16479.89119 } } dps_results: { diff --git a/sim/rogue/subtlety/find_weakness.go b/sim/rogue/subtlety/_find_weakness.go similarity index 97% rename from sim/rogue/subtlety/find_weakness.go rename to sim/rogue/subtlety/_find_weakness.go index 95ae2da2f9..b1cc8b3256 100644 --- a/sim/rogue/subtlety/find_weakness.go +++ b/sim/rogue/subtlety/_find_weakness.go @@ -3,7 +3,7 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (subRogue *SubtletyRogue) applyFindWeakness() { diff --git a/sim/rogue/subtlety/hemorrhage.go b/sim/rogue/subtlety/_hemorrhage.go similarity index 96% rename from sim/rogue/subtlety/hemorrhage.go rename to sim/rogue/subtlety/_hemorrhage.go index 742620177b..ffc041e9b2 100644 --- a/sim/rogue/subtlety/hemorrhage.go +++ b/sim/rogue/subtlety/_hemorrhage.go @@ -3,9 +3,9 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerHemorrhageSpell() { diff --git a/sim/rogue/subtlety/honor_among_thieves.go b/sim/rogue/subtlety/_honor_among_thieves.go similarity index 98% rename from sim/rogue/subtlety/honor_among_thieves.go rename to sim/rogue/subtlety/_honor_among_thieves.go index 7ac65b3936..2d4c2397ca 100644 --- a/sim/rogue/subtlety/honor_among_thieves.go +++ b/sim/rogue/subtlety/_honor_among_thieves.go @@ -3,7 +3,7 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (subRogue *SubtletyRogue) registerHonorAmongThieves() { diff --git a/sim/rogue/subtlety/initiative.go b/sim/rogue/subtlety/_initiative.go similarity index 94% rename from sim/rogue/subtlety/initiative.go rename to sim/rogue/subtlety/_initiative.go index 3bc5bc62c7..5c0ff8e07d 100644 --- a/sim/rogue/subtlety/initiative.go +++ b/sim/rogue/subtlety/_initiative.go @@ -1,6 +1,6 @@ package subtlety -import "github.com/wowsims/cata/sim/core" +import "github.com/wowsims/mop/sim/core" func (subRogue *SubtletyRogue) applyInitiative() { if subRogue.Talents.Initiative == 0 { diff --git a/sim/rogue/subtlety/premeditation.go b/sim/rogue/subtlety/_premeditation.go similarity index 94% rename from sim/rogue/subtlety/premeditation.go rename to sim/rogue/subtlety/_premeditation.go index 0ecab82f1d..4d75a0c0e2 100644 --- a/sim/rogue/subtlety/premeditation.go +++ b/sim/rogue/subtlety/_premeditation.go @@ -3,8 +3,8 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerPremeditation() { diff --git a/sim/rogue/subtlety/preparation.go b/sim/rogue/subtlety/_preparation.go similarity index 94% rename from sim/rogue/subtlety/preparation.go rename to sim/rogue/subtlety/_preparation.go index 0a41ea606a..1885d78e57 100644 --- a/sim/rogue/subtlety/preparation.go +++ b/sim/rogue/subtlety/_preparation.go @@ -3,8 +3,8 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerPreparationCD() { diff --git a/sim/rogue/subtlety/sanguinary_vein.go b/sim/rogue/subtlety/_sanguinary_vein.go similarity index 95% rename from sim/rogue/subtlety/sanguinary_vein.go rename to sim/rogue/subtlety/_sanguinary_vein.go index 4f017f5f94..6e03a60c00 100644 --- a/sim/rogue/subtlety/sanguinary_vein.go +++ b/sim/rogue/subtlety/_sanguinary_vein.go @@ -3,9 +3,9 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerSanguinaryVein() { diff --git a/sim/rogue/subtlety/shadow_dance.go b/sim/rogue/subtlety/_shadow_dance.go similarity index 92% rename from sim/rogue/subtlety/shadow_dance.go rename to sim/rogue/subtlety/_shadow_dance.go index 1c3a598ef3..73c977eb30 100644 --- a/sim/rogue/subtlety/shadow_dance.go +++ b/sim/rogue/subtlety/_shadow_dance.go @@ -3,9 +3,9 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerShadowDanceCD() { diff --git a/sim/rogue/subtlety/subtlety_test.go b/sim/rogue/subtlety/_subtlety_test.go similarity index 83% rename from sim/rogue/subtlety/subtlety_test.go rename to sim/rogue/subtlety/_subtlety_test.go index 2f1b04b231..2f5552851c 100644 --- a/sim/rogue/subtlety/subtlety_test.go +++ b/sim/rogue/subtlety/_subtlety_test.go @@ -3,9 +3,9 @@ package subtlety import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -24,7 +24,7 @@ func TestSubtlety(t *testing.T) { }, Talents: SubtletyTalents, Glyphs: SubtletyGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Subtlety", SpecOptions: PlayerOptionsID}, OtherSpecOptions: []core.SpecOptionsCombo{ {Label: "MH Deadly OH Instant", SpecOptions: PlayerOptionsDI}, @@ -50,11 +50,7 @@ func TestSubtlety(t *testing.T) { var SubtletyTalents = "023003-002-0332031321310012321" -var SubtletyGlyphs = &proto.Glyphs{ - Prime1: int32(proto.RoguePrimeGlyph_GlyphOfBackstab), - Prime2: int32(proto.RoguePrimeGlyph_GlyphOfSliceAndDice), - Prime3: int32(proto.RoguePrimeGlyph_GlyphOfShadowDance), -} +var SubtletyGlyphs = &proto.Glyphs{} var PlayerOptionsDI = &proto.Player_SubtletyRogue{ SubtletyRogue: &proto.SubtletyRogue{ @@ -104,8 +100,8 @@ var PlayerOptionsII = &proto.Player_SubtletyRogue{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - DefaultConjured: proto.Conjured_ConjuredRogueThistleTea, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, // Flask of the Winds + PotId: 58145, // Potion of the Tol'vir + ConjuredId: 7676, // Thistle Tea } diff --git a/sim/rogue/subtlety/master_of_subtlety.go b/sim/rogue/subtlety/master_of_subtlety.go index 950444a36f..9e225e88c5 100644 --- a/sim/rogue/subtlety/master_of_subtlety.go +++ b/sim/rogue/subtlety/master_of_subtlety.go @@ -3,7 +3,7 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (subRogue *SubtletyRogue) registerMasterOfSubtletyCD() { diff --git a/sim/rogue/subtlety/shadowstep.go b/sim/rogue/subtlety/shadowstep.go index 27c232f42e..d2874da56e 100644 --- a/sim/rogue/subtlety/shadowstep.go +++ b/sim/rogue/subtlety/shadowstep.go @@ -3,8 +3,8 @@ package subtlety import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/rogue" ) func (subRogue *SubtletyRogue) registerShadowstepCD() { diff --git a/sim/rogue/subtlety/subtlety.go b/sim/rogue/subtlety/subtlety.go index 6d6dec74f0..b53e620636 100644 --- a/sim/rogue/subtlety/subtlety.go +++ b/sim/rogue/subtlety/subtlety.go @@ -1,10 +1,10 @@ package subtlety import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/rogue" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/rogue" ) func RegisterSubtletyRogue() { @@ -30,17 +30,17 @@ func (subRogue *SubtletyRogue) Initialize() { subRogue.MasteryBaseValue = 0.2 subRogue.MasteryMultiplier = .025 - subRogue.registerHemorrhageSpell() - subRogue.registerSanguinaryVein() - subRogue.registerPremeditation() - subRogue.registerHonorAmongThieves() + // subRogue.registerHemorrhageSpell() + // subRogue.registerSanguinaryVein() + // subRogue.registerPremeditation() + // subRogue.registerHonorAmongThieves() - subRogue.applyInitiative() - subRogue.applyFindWeakness() + // subRogue.applyInitiative() + // subRogue.applyFindWeakness() subRogue.registerMasterOfSubtletyCD() - subRogue.registerShadowDanceCD() - subRogue.registerPreparationCD() + // subRogue.registerShadowDanceCD() + // subRogue.registerPreparationCD() subRogue.registerShadowstepCD() // Apply Mastery diff --git a/sim/rogue/thistle_tea.go b/sim/rogue/thistle_tea.go index 18adbc6647..058facb512 100644 --- a/sim/rogue/thistle_tea.go +++ b/sim/rogue/thistle_tea.go @@ -3,12 +3,11 @@ package rogue import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" ) func (rogue *Rogue) registerThistleTeaCD() { - if rogue.Consumes.DefaultConjured != proto.Conjured_ConjuredRogueThistleTea { + if rogue.Consumables.ConjuredId != 7676 { return } diff --git a/sim/shaman/apl_values.go b/sim/shaman/_apl_values.go similarity index 97% rename from sim/shaman/apl_values.go rename to sim/shaman/_apl_values.go index 154df4e009..feebefa16c 100644 --- a/sim/shaman/apl_values.go +++ b/sim/shaman/_apl_values.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (shaman *Shaman) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/shaman/chain_lightning.go b/sim/shaman/_chain_lightning.go similarity index 96% rename from sim/shaman/chain_lightning.go rename to sim/shaman/_chain_lightning.go index e95528dced..352078a3f6 100644 --- a/sim/shaman/chain_lightning.go +++ b/sim/shaman/_chain_lightning.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerChainLightningSpell() { diff --git a/sim/shaman/earth_elemental_totem.go b/sim/shaman/_earth_elemental_totem.go similarity index 95% rename from sim/shaman/earth_elemental_totem.go rename to sim/shaman/_earth_elemental_totem.go index 6827a553bb..1f23c48bae 100644 --- a/sim/shaman/earth_elemental_totem.go +++ b/sim/shaman/_earth_elemental_totem.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerEarthElementalTotem() { diff --git a/sim/shaman/electric_spell.go b/sim/shaman/_electric_spell.go similarity index 98% rename from sim/shaman/electric_spell.go rename to sim/shaman/_electric_spell.go index 471d58d671..31795f2865 100644 --- a/sim/shaman/electric_spell.go +++ b/sim/shaman/_electric_spell.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) const ( diff --git a/sim/shaman/feral_spirit.go b/sim/shaman/_feral_spirit.go similarity index 97% rename from sim/shaman/feral_spirit.go rename to sim/shaman/_feral_spirit.go index 0d873ec9d2..a5b0180778 100644 --- a/sim/shaman/feral_spirit.go +++ b/sim/shaman/_feral_spirit.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) registerFeralSpirit() { diff --git a/sim/shaman/fire_elemental_totem.go b/sim/shaman/_fire_elemental_totem.go similarity index 95% rename from sim/shaman/fire_elemental_totem.go rename to sim/shaman/_fire_elemental_totem.go index 5cf9c7ad7a..84687c53ad 100644 --- a/sim/shaman/fire_elemental_totem.go +++ b/sim/shaman/_fire_elemental_totem.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerFireElementalTotem() { diff --git a/sim/shaman/fire_totems.go b/sim/shaman/_fire_totems.go similarity index 99% rename from sim/shaman/fire_totems.go rename to sim/shaman/_fire_totems.go index 7d01400b3c..7ef077c743 100644 --- a/sim/shaman/fire_totems.go +++ b/sim/shaman/_fire_totems.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func searingTickCount(shaman *Shaman, offset float64) int32 { diff --git a/sim/shaman/firenova.go b/sim/shaman/_firenova.go similarity index 98% rename from sim/shaman/firenova.go rename to sim/shaman/_firenova.go index b02b1b4657..e47a477b23 100644 --- a/sim/shaman/firenova.go +++ b/sim/shaman/_firenova.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) registerFireNovaSpell() { diff --git a/sim/shaman/glyphs.go b/sim/shaman/_glyphs.go similarity index 94% rename from sim/shaman/glyphs.go rename to sim/shaman/_glyphs.go index 129eb86f48..c5b4319618 100644 --- a/sim/shaman/glyphs.go +++ b/sim/shaman/_glyphs.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) ApplyGlyphs() { diff --git a/sim/shaman/_heals.go b/sim/shaman/_heals.go index b8648157c1..97494dcf31 100644 --- a/sim/shaman/_heals.go +++ b/sim/shaman/_heals.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerAncestralHealingSpell() { diff --git a/sim/shaman/items.go b/sim/shaman/_items.go similarity index 99% rename from sim/shaman/items.go rename to sim/shaman/_items.go index 09507f196d..9fde45c1cd 100644 --- a/sim/shaman/items.go +++ b/sim/shaman/_items.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Dungeon Set 3 Tidefury Raiment diff --git a/sim/shaman/lavaburst.go b/sim/shaman/_lavaburst.go similarity index 98% rename from sim/shaman/lavaburst.go rename to sim/shaman/_lavaburst.go index 725876818d..e2229ab5a1 100644 --- a/sim/shaman/lavaburst.go +++ b/sim/shaman/_lavaburst.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) registerLavaBurstSpell() { diff --git a/sim/shaman/lightning_bolt.go b/sim/shaman/_lightning_bolt.go similarity index 95% rename from sim/shaman/lightning_bolt.go rename to sim/shaman/_lightning_bolt.go index dbfcd56302..92bf5bcd42 100644 --- a/sim/shaman/lightning_bolt.go +++ b/sim/shaman/_lightning_bolt.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerLightningBoltSpell() { diff --git a/sim/shaman/lightning_shield.go b/sim/shaman/_lightning_shield.go similarity index 96% rename from sim/shaman/lightning_shield.go rename to sim/shaman/_lightning_shield.go index cb4b845e22..cea990fa8d 100644 --- a/sim/shaman/lightning_shield.go +++ b/sim/shaman/_lightning_shield.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerLightningShieldSpell() { diff --git a/sim/shaman/shamanistic_rage.go b/sim/shaman/_shamanistic_rage.go similarity index 69% rename from sim/shaman/shamanistic_rage.go rename to sim/shaman/_shamanistic_rage.go index f5fc922429..ad3c5a00e9 100644 --- a/sim/shaman/shamanistic_rage.go +++ b/sim/shaman/_shamanistic_rage.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) registerShamanisticRageCD() { @@ -26,19 +26,6 @@ func (shaman *Shaman) registerShamanisticRageCD() { }, }) - // 2pc T10 bonus aura - dummySetAura := shaman.RegisterAura(core.Aura{ - Label: "Frost Witch's Battlegear (2pc)", - Duration: core.NeverExpires, - OnReset: func(aura *core.Aura, sim *core.Simulation) { - aura.Deactivate(sim) - }, - }) - - if shaman.usePrepullEnh_2PT10 && !shaman.CouldHaveSetBonus(ItemSetFrostWitchBattlegear, 2) { - SharedEnhTier102PCAura(shaman, dummySetAura) - } - spell := shaman.RegisterSpell(core.SpellConfig{ ActionID: actionID, ClassSpellMask: SpellMaskShamanisticRage, @@ -53,11 +40,6 @@ func (shaman *Shaman) registerShamanisticRageCD() { }, }, ApplyEffects: func(sim *core.Simulation, _ *core.Unit, _ *core.Spell) { - if sim.CurrentTime < 0 { - dummySetAura.Activate(sim) - } else { - dummySetAura.Deactivate(sim) - } srAura.Activate(sim) }, RelatedSelfBuff: srAura, diff --git a/sim/shaman/shocks.go b/sim/shaman/_shocks.go similarity index 99% rename from sim/shaman/shocks.go rename to sim/shaman/_shocks.go index 917ac30262..86b238c8ac 100644 --- a/sim/shaman/shocks.go +++ b/sim/shaman/_shocks.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) // Shared logic for all shocks. diff --git a/sim/shaman/spirit_wolves.go b/sim/shaman/_spirit_wolves.go similarity index 96% rename from sim/shaman/spirit_wolves.go rename to sim/shaman/_spirit_wolves.go index 8b229ee78e..bc67f83d87 100644 --- a/sim/shaman/spirit_wolves.go +++ b/sim/shaman/_spirit_wolves.go @@ -5,9 +5,9 @@ import ( "strconv" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type SpiritWolf struct { diff --git a/sim/shaman/stormstrike.go b/sim/shaman/_stormstrike.go similarity index 97% rename from sim/shaman/stormstrike.go rename to sim/shaman/_stormstrike.go index 9474c5fb29..a4a46af9c0 100644 --- a/sim/shaman/stormstrike.go +++ b/sim/shaman/_stormstrike.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) var StormstrikeActionID = core.ActionID{SpellID: 17364} diff --git a/sim/shaman/talents.go b/sim/shaman/_talents.go similarity index 99% rename from sim/shaman/talents.go rename to sim/shaman/_talents.go index e096deb4a8..5af8fc6c81 100644 --- a/sim/shaman/talents.go +++ b/sim/shaman/_talents.go @@ -3,9 +3,9 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (shaman *Shaman) ApplyTalents() { diff --git a/sim/shaman/totems.go b/sim/shaman/_totems.go similarity index 98% rename from sim/shaman/totems.go rename to sim/shaman/_totems.go index 59b0a7da4c..dc849e42c0 100644 --- a/sim/shaman/totems.go +++ b/sim/shaman/_totems.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) newTotemSpellConfig(baseCostPercent int32, spellID int32) core.SpellConfig { diff --git a/sim/shaman/unleash_elements.go b/sim/shaman/_unleash_elements.go similarity index 98% rename from sim/shaman/unleash_elements.go rename to sim/shaman/_unleash_elements.go index f607dd4ad1..1d4625f090 100644 --- a/sim/shaman/unleash_elements.go +++ b/sim/shaman/_unleash_elements.go @@ -3,8 +3,8 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (shaman *Shaman) registerUnleashFlame() { diff --git a/sim/shaman/weapon_imbues.go b/sim/shaman/_weapon_imbues.go similarity index 99% rename from sim/shaman/weapon_imbues.go rename to sim/shaman/_weapon_imbues.go index 491f737893..672903bd8a 100644 --- a/sim/shaman/weapon_imbues.go +++ b/sim/shaman/_weapon_imbues.go @@ -4,9 +4,9 @@ import ( "fmt" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // Currently Imbues are carried over on item swap diff --git a/sim/shaman/bloodlust.go b/sim/shaman/bloodlust.go index cc4f7c4571..9d92089175 100644 --- a/sim/shaman/bloodlust.go +++ b/sim/shaman/bloodlust.go @@ -1,7 +1,7 @@ package shaman import ( - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) BloodlustActionID() core.ActionID { diff --git a/sim/shaman/earth_elemental_pet.go b/sim/shaman/earth_elemental_pet.go index aeffb434c1..986452e379 100644 --- a/sim/shaman/earth_elemental_pet.go +++ b/sim/shaman/earth_elemental_pet.go @@ -3,9 +3,9 @@ package shaman import ( "math" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type EarthElemental struct { diff --git a/sim/shaman/earthquake.go b/sim/shaman/earthquake.go index bca940aff6..f87693f0c6 100644 --- a/sim/shaman/earthquake.go +++ b/sim/shaman/earthquake.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) registerEarthquakeSpell() { diff --git a/sim/shaman/elemental/dragonwrath.go b/sim/shaman/elemental/_dragonwrath.go similarity index 94% rename from sim/shaman/elemental/dragonwrath.go rename to sim/shaman/elemental/_dragonwrath.go index 2a7fb7671e..d291af38da 100644 --- a/sim/shaman/elemental/dragonwrath.go +++ b/sim/shaman/elemental/_dragonwrath.go @@ -1,10 +1,10 @@ package elemental import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/shaman" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/shaman" ) func init() { diff --git a/sim/shaman/elemental/elemental_test.go b/sim/shaman/elemental/_elemental_test.go similarity index 78% rename from sim/shaman/elemental/elemental_test.go rename to sim/shaman/elemental/_elemental_test.go index 79acd3d821..f3b090f0ab 100644 --- a/sim/shaman/elemental/elemental_test.go +++ b/sim/shaman/elemental/_elemental_test.go @@ -3,9 +3,9 @@ package elemental import ( "testing" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -33,7 +33,7 @@ func TestElemental(t *testing.T) { Glyphs: AlternateGlyphs, }, }, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Standard", SpecOptions: PlayerOptionsFireElemental}, Rotation: core.GetAplRotation("../../../ui/shaman/elemental/apls", "default"), OtherRotations: []core.RotationCombo{ @@ -63,25 +63,16 @@ func TestElemental(t *testing.T) { var TalentsTotemDuration = "303202321223110132-201-20302" var TalentsImprovedShields = "3032023212231101321-2030022" var StandardGlyphs = &proto.Glyphs{ - Prime1: int32(proto.ShamanPrimeGlyph_GlyphOfFlameShock), - Prime2: int32(proto.ShamanPrimeGlyph_GlyphOfLavaBurst), - Prime3: int32(proto.ShamanPrimeGlyph_GlyphOfUnleashedLightning), Major1: int32(proto.ShamanMajorGlyph_GlyphOfLightningShield), Major2: int32(proto.ShamanMajorGlyph_GlyphOfHealingStreamTotem), Major3: int32(proto.ShamanMajorGlyph_GlyphOfStoneclawTotem), } var AoEGlyphs = &proto.Glyphs{ - Prime1: int32(proto.ShamanPrimeGlyph_GlyphOfFlameShock), - Prime2: int32(proto.ShamanPrimeGlyph_GlyphOfLavaBurst), - Prime3: int32(proto.ShamanPrimeGlyph_GlyphOfUnleashedLightning), Major1: int32(proto.ShamanMajorGlyph_GlyphOfLightningShield), Major2: int32(proto.ShamanMajorGlyph_GlyphOfChainLightning), Major3: int32(proto.ShamanMajorGlyph_GlyphOfStoneclawTotem), } var AlternateGlyphs = &proto.Glyphs{ - Prime1: int32(proto.FireTotem_FireElementalTotem), - Prime2: int32(proto.ShamanImbue_FlametongueWeapon), - Prime3: int32(proto.ShamanPrimeGlyph_GlyphOfUnleashedLightning), Major1: int32(proto.ShamanMajorGlyph_GlyphOfLightningShield), Major2: int32(proto.ShamanMajorGlyph_GlyphOfHealingStreamTotem), Major3: int32(proto.ShamanMajorGlyph_GlyphOfStoneclawTotem), @@ -129,11 +120,11 @@ var PlayerOptionsFireElemental = &proto.Player_ElementalShaman{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeveredSagefish, - DefaultPotion: proto.Potions_VolcanicPotion, - PrepopPotion: proto.Potions_VolcanicPotion, - DefaultConjured: proto.Conjured_ConjuredDarkRune, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62671, // Severed Sagefish Head + PotId: 58091, // Volcanic Potion + PrepotId: 58091, // Volcanic Potion + ConjuredId: 20520, // Dark Rune + TinkerId: 82174, // Synapse Springs } diff --git a/sim/shaman/elemental/elemental.go b/sim/shaman/elemental/elemental.go index de71f263d8..1a6d5ffbae 100644 --- a/sim/shaman/elemental/elemental.go +++ b/sim/shaman/elemental/elemental.go @@ -3,10 +3,10 @@ package elemental import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/shaman" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/shaman" ) func RegisterElementalShaman() { @@ -40,11 +40,11 @@ func NewElementalShaman(character *core.Character, options *proto.Player) *Eleme inRange := eleOptions.ThunderstormRange == proto.ElementalShaman_Options_TSInRange ele := &ElementalShaman{ - Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, inRange, false), + Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, inRange), } if mh := ele.GetMHWeapon(); mh != nil { - ele.ApplyFlametongueImbueToItem(mh) + // ele.ApplyFlametongueImbueToItem(mh) ele.SelfBuffs.ImbueMH = proto.ShamanImbue_FlametongueWeapon } diff --git a/sim/shaman/elemental/thunderstorm.go b/sim/shaman/elemental/thunderstorm.go index 7cb9986e9b..03692f4eaf 100644 --- a/sim/shaman/elemental/thunderstorm.go +++ b/sim/shaman/elemental/thunderstorm.go @@ -3,9 +3,9 @@ package elemental import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/shaman" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/shaman" ) func (elemental *ElementalShaman) registerThunderstormSpell() { diff --git a/sim/shaman/enhancement/TestEnhancement.results b/sim/shaman/enhancement/TestEnhancement.results index 77b39c215f..903b474baa 100644 --- a/sim/shaman/enhancement/TestEnhancement.results +++ b/sim/shaman/enhancement/TestEnhancement.results @@ -1390,22 +1390,22 @@ dps_results: { dps_results: { key: "TestEnhancement-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 42446.34171 - tps: 28249.66144 + dps: 41138.9646 + tps: 27008.66551 } } dps_results: { key: "TestEnhancement-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 42971.37694 - tps: 28685.29064 + dps: 41488.30904 + tps: 27275.74685 } } dps_results: { key: "TestEnhancement-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 42070.95789 - tps: 27923.1102 + dps: 40914.1793 + tps: 26825.00212 } } dps_results: { @@ -2085,8 +2085,8 @@ dps_results: { dps_results: { key: "TestEnhancement-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 41135.01302 - tps: 26741.09634 + dps: 40687.91522 + tps: 26318.12635 } } dps_results: { diff --git a/sim/shaman/enhancement/enhancement_test.go b/sim/shaman/enhancement/_enhancement_test.go similarity index 86% rename from sim/shaman/enhancement/enhancement_test.go rename to sim/shaman/enhancement/_enhancement_test.go index 690e3df17b..d6dd176905 100644 --- a/sim/shaman/enhancement/enhancement_test.go +++ b/sim/shaman/enhancement/_enhancement_test.go @@ -3,9 +3,9 @@ package enhancement import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -22,7 +22,7 @@ func TestEnhancement(t *testing.T) { GearSet: core.GetGearSet("../../../ui/shaman/enhancement/gear_sets", "p4.orc"), Talents: StandardTalents, Glyphs: StandardGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Standard", SpecOptions: PlayerOptionsStandard}, Rotation: core.GetAplRotation("../../../ui/shaman/enhancement/apls", "default"), @@ -51,11 +51,11 @@ var StandardGlyphs = &proto.Glyphs{ Prime3: int32(proto.ShamanPrimeGlyph_GlyphOfFeralSpirit), } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheWinds, - Food: proto.Food_FoodGrilledDragon, - DefaultPotion: proto.Potions_PotionOfTheTolvir, - PrepopPotion: proto.Potions_PotionOfTheTolvir, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58087, // Flask of the Winds + FoodId: 62662, // Grilled Dragon + PotId: 58145, // Potion of the Tol'vir + PrepotId: 58145, // Potion of the Tol'vir } var TotemsBasic = &proto.ShamanTotems{ diff --git a/sim/shaman/enhancement/lavalash.go b/sim/shaman/enhancement/_lavalash.go similarity index 95% rename from sim/shaman/enhancement/lavalash.go rename to sim/shaman/enhancement/_lavalash.go index 385e1d543f..0eab8880fb 100644 --- a/sim/shaman/enhancement/lavalash.go +++ b/sim/shaman/enhancement/_lavalash.go @@ -3,9 +3,9 @@ package enhancement import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/shaman" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/shaman" ) func (enh *EnhancementShaman) getSearingFlamesMultiplier() float64 { diff --git a/sim/shaman/enhancement/enhancement.go b/sim/shaman/enhancement/enhancement.go index 98329a605f..0bc437d977 100644 --- a/sim/shaman/enhancement/enhancement.go +++ b/sim/shaman/enhancement/enhancement.go @@ -3,10 +3,10 @@ package enhancement import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/shaman" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/shaman" ) func RegisterEnhancementShaman() { @@ -41,7 +41,7 @@ func NewEnhancementShaman(character *core.Character, options *proto.Player) *Enh } enh := &EnhancementShaman{ - Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, true, enhOptions.ClassOptions.UsePrepullEnh_2PT10), + Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, true), } // Enable Auto Attacks for this spec @@ -52,7 +52,7 @@ func NewEnhancementShaman(character *core.Character, options *proto.Player) *Enh }) enh.ApplySyncType(enhOptions.SyncType) - enh.ApplyFlametongueImbue(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) + // enh.ApplyFlametongueImbue(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) if !enh.HasMHWeapon() { enh.SelfBuffs.ImbueMH = proto.ShamanImbue_NoImbue @@ -62,10 +62,10 @@ func NewEnhancementShaman(character *core.Character, options *proto.Player) *Enh enh.SelfBuffs.ImbueOH = proto.ShamanImbue_NoImbue } - enh.SpiritWolves = &shaman.SpiritWolves{ - SpiritWolf1: enh.NewSpiritWolf(1), - SpiritWolf2: enh.NewSpiritWolf(2), - } + // enh.SpiritWolves = &shaman.SpiritWolves{ + // SpiritWolf1: enh.NewSpiritWolf(1), + // SpiritWolf2: enh.NewSpiritWolf(2), + // } return enh } @@ -97,12 +97,12 @@ func (enh *EnhancementShaman) ApplyTalents() { func (enh *EnhancementShaman) Initialize() { enh.Shaman.Initialize() // In the Initialize due to frost brand adding the aura to the enemy - enh.RegisterFrostbrandImbue(enh.getImbueProcMask(proto.ShamanImbue_FrostbrandWeapon)) - enh.RegisterFlametongueImbue(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) - enh.RegisterWindfuryImbue(enh.getImbueProcMask(proto.ShamanImbue_WindfuryWeapon)) + // enh.RegisterFrostbrandImbue(enh.getImbueProcMask(proto.ShamanImbue_FrostbrandWeapon)) + // enh.RegisterFlametongueImbue(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) + // enh.RegisterWindfuryImbue(enh.getImbueProcMask(proto.ShamanImbue_WindfuryWeapon)) if enh.ItemSwap.IsEnabled() { - enh.ApplyFlametongueImbueSwap(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) + // enh.ApplyFlametongueImbueSwap(enh.getImbueProcMask(proto.ShamanImbue_FlametongueWeapon)) enh.RegisterItemSwapCallback(core.MeleeWeaponSlots(), func(_ *core.Simulation, slot proto.ItemSlot) { enh.ApplySyncType(proto.ShamanSyncType_Auto) }) @@ -135,7 +135,7 @@ func (enh *EnhancementShaman) Initialize() { })) enh.applyPrimalWisdom() - enh.registerLavaLashSpell() + // enh.registerLavaLashSpell() } func (enh EnhancementShaman) getMasteryBonus() float64 { diff --git a/sim/shaman/fire_elemental_pet.go b/sim/shaman/fire_elemental_pet.go index 4fe937f37b..51f2071e65 100644 --- a/sim/shaman/fire_elemental_pet.go +++ b/sim/shaman/fire_elemental_pet.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type FireElemental struct { diff --git a/sim/shaman/fire_elemental_spells.go b/sim/shaman/fire_elemental_spells.go index 2d45472fde..08eb1f48bc 100644 --- a/sim/shaman/fire_elemental_spells.go +++ b/sim/shaman/fire_elemental_spells.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (fireElemental *FireElemental) registerFireBlast() { diff --git a/sim/shaman/items_wotlk.go b/sim/shaman/items_wotlk.go index 6b027cbc91..9433a732bc 100644 --- a/sim/shaman/items_wotlk.go +++ b/sim/shaman/items_wotlk.go @@ -1,9 +1,5 @@ package shaman -import ( - "github.com/wowsims/cata/sim/core" -) - // var ItemSetThrallsRegalia = core.NewItemSet(core.ItemSet{ // Name: "Thrall's Regalia", // AlternativeName: "Nobundo's Regalia", @@ -230,41 +226,6 @@ import ( // }, // }) -var ItemSetFrostWitchBattlegear = core.NewItemSet(core.ItemSet{ - Name: "Frost Witch's Battlegear", - Bonuses: map[int32]core.ApplySetBonus{ - 2: func(agent core.Agent, setBonusAura *core.Aura) { - shaman := agent.(ShamanAgent).GetShaman() - - SharedEnhTier102PCAura(shaman, setBonusAura) - - shaman.T10Enh2pc = setBonusAura - }, - 4: func(agent core.Agent, setBonusAura *core.Aura) { - }, - }, -}) - -func SharedEnhTier102PCAura(shaman *Shaman, parentAura *core.Aura) { - procAura := shaman.RegisterAura(core.Aura{ - Label: "Elemental Rage", - ActionID: core.ActionID{SpellID: 70829}, - }) - procAura.AttachMultiplicativePseudoStatBuff(&shaman.PseudoStats.DamageDealtMultiplier, 1.12) - - parentAura.AttachProcTrigger(core.ProcTrigger{ - Name: "Elemental Rage - Trigger", - ClassSpellMask: SpellMaskShamanisticRage, - Callback: core.CallbackOnCastComplete, - Handler: func(sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - if parentAura.IsActive() { - procAura.Duration = spell.RelatedSelfBuff.Duration - procAura.Activate(sim) - } - }, - }) -} - // var ItemSetGladiatorsEarthshaker = core.NewItemSet(core.ItemSet{ // Name: "Gladiator's Earthshaker", // Bonuses: map[int32]core.ApplySetBonus{ diff --git a/sim/shaman/restoration/restoration.go b/sim/shaman/restoration/restoration.go index ad33470d70..6844eed351 100644 --- a/sim/shaman/restoration/restoration.go +++ b/sim/shaman/restoration/restoration.go @@ -1,10 +1,10 @@ package restoration import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/shaman" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/shaman" ) func RegisterRestorationShaman() { @@ -37,12 +37,12 @@ func NewRestorationShaman(character *core.Character, options *proto.Player) *Res } resto := &RestorationShaman{ - Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, false, false), + Shaman: shaman.NewShaman(character, options.TalentsString, totems, selfBuffs, false), } - if resto.HasMHWeapon() { - resto.ApplyEarthlivingImbueToItem(resto.GetMHWeapon()) - } + // if resto.HasMHWeapon() { + // resto.ApplyEarthlivingImbueToItem(resto.GetMHWeapon()) + // } return resto } diff --git a/sim/shaman/restoration/restoration_test.go b/sim/shaman/restoration/restoration_test.go index 3e99251146..3998d5be0b 100644 --- a/sim/shaman/restoration/restoration_test.go +++ b/sim/shaman/restoration/restoration_test.go @@ -1,7 +1,7 @@ package restoration import ( - _ "github.com/wowsims/cata/sim/common" + _ "github.com/wowsims/mop/sim/common" ) func init() { diff --git a/sim/shaman/shaman.go b/sim/shaman/shaman.go index 83ecf3de83..361480d96e 100644 --- a/sim/shaman/shaman.go +++ b/sim/shaman/shaman.go @@ -3,13 +3,11 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -var TalentTreeSizes = [3]int{19, 19, 20} - // Start looking to refresh 5 minute totems at 4:55. const TotemRefreshTime5M = time.Second * 295 @@ -28,7 +26,7 @@ const ( SpellFlagFocusable = core.SpellFlagAgentReserved4 ) -func NewShaman(character *core.Character, talents string, totems *proto.ShamanTotems, selfBuffs SelfBuffs, thunderstormRange bool, usePrepullEnh_2PT10 bool) *Shaman { +func NewShaman(character *core.Character, talents string, totems *proto.ShamanTotems, selfBuffs SelfBuffs, thunderstormRange bool) *Shaman { shaman := &Shaman{ Character: *character, Talents: &proto.ShamanTalents{}, @@ -39,11 +37,10 @@ func NewShaman(character *core.Character, talents string, totems *proto.ShamanTo SelfBuffs: selfBuffs, ThunderstormInRange: thunderstormRange, ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassShaman), - usePrepullEnh_2PT10: usePrepullEnh_2PT10, } // shaman.waterShieldManaMetrics = shaman.NewManaMetrics(core.ActionID{SpellID: 57960}) - core.FillTalentsProto(shaman.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(shaman.Talents.ProtoReflect(), talents) // Add Shaman stat dependencies shaman.AddStatDependency(stats.BonusArmor, stats.Armor, 1) @@ -128,8 +125,8 @@ type Shaman struct { FlameShock *core.Spell FrostShock *core.Spell - FeralSpirit *core.Spell - SpiritWolves *SpiritWolves + FeralSpirit *core.Spell + // SpiritWolves *SpiritWolves FireElemental *FireElemental FireElementalTotem *core.Spell @@ -171,14 +168,10 @@ type Shaman struct { Riptide *core.Spell EarthShield *core.Spell - waterShieldManaMetrics *core.ResourceMetrics - + waterShieldManaMetrics *core.ResourceMetrics VolcanicRegalia4PT12Aura *core.Aura - usePrepullEnh_2PT10 bool - // Item sets - T10Enh2pc *core.Aura DungeonSet3 *core.Aura T12Enh2pc *core.Aura T12Ele4pc *core.Aura @@ -196,9 +189,6 @@ func (shaman *Shaman) GetCharacter() *core.Character { return &shaman.Character } -func (shaman *Shaman) HasPrimeGlyph(glyph proto.ShamanPrimeGlyph) bool { - return shaman.HasGlyph(int32(glyph)) -} func (shaman *Shaman) HasMajorGlyph(glyph proto.ShamanMajorGlyph) bool { return shaman.HasGlyph(int32(glyph)) } @@ -206,74 +196,74 @@ func (shaman *Shaman) HasMinorGlyph(glyph proto.ShamanMinorGlyph) bool { return shaman.HasGlyph(int32(glyph)) } -func (shaman *Shaman) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// func (shaman *Shaman) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if shaman.Totems.Fire != proto.FireTotem_NoFireTotem && shaman.Talents.TotemicWrath { - raidBuffs.TotemicWrath = true - } +// if shaman.Totems.Fire != proto.FireTotem_NoFireTotem && shaman.Talents.TotemicWrath { +// raidBuffs.TotemicWrath = true +// } - if shaman.Totems.Fire == proto.FireTotem_FlametongueTotem { - raidBuffs.FlametongueTotem = true - } +// if shaman.Totems.Fire == proto.FireTotem_FlametongueTotem { +// raidBuffs.FlametongueTotem = true +// } - if shaman.Totems.Water == proto.WaterTotem_ManaSpringTotem { - raidBuffs.ManaSpringTotem = true - } +// if shaman.Totems.Water == proto.WaterTotem_ManaSpringTotem { +// raidBuffs.ManaSpringTotem = true +// } - if shaman.Talents.ManaTideTotem { - raidBuffs.ManaTideTotemCount++ - } +// if shaman.Talents.ManaTideTotem { +// raidBuffs.ManaTideTotemCount++ +// } - switch shaman.Totems.Air { - case proto.AirTotem_WrathOfAirTotem: - raidBuffs.WrathOfAirTotem = true - case proto.AirTotem_WindfuryTotem: - raidBuffs.WindfuryTotem = true - } +// switch shaman.Totems.Air { +// case proto.AirTotem_WrathOfAirTotem: +// raidBuffs.WrathOfAirTotem = true +// case proto.AirTotem_WindfuryTotem: +// raidBuffs.WindfuryTotem = true +// } - switch shaman.Totems.Earth { - case proto.EarthTotem_StrengthOfEarthTotem: - raidBuffs.StrengthOfEarthTotem = true - case proto.EarthTotem_StoneskinTotem: - raidBuffs.StoneskinTotem = true - } +// switch shaman.Totems.Earth { +// case proto.EarthTotem_StrengthOfEarthTotem: +// raidBuffs.StrengthOfEarthTotem = true +// case proto.EarthTotem_StoneskinTotem: +// raidBuffs.StoneskinTotem = true +// } - if shaman.Talents.UnleashedRage > 0 { - raidBuffs.UnleashedRage = true - } +// if shaman.Talents.UnleashedRage > 0 { +// raidBuffs.UnleashedRage = true +// } - if shaman.Talents.ElementalOath > 0 { - raidBuffs.ElementalOath = true - } -} +// if shaman.Talents.ElementalOath > 0 { +// raidBuffs.ElementalOath = true +// } +// } func (shaman *Shaman) Initialize() { - shaman.registerChainLightningSpell() - shaman.registerFireElementalTotem() - shaman.registerEarthElementalTotem() - shaman.registerFireNovaSpell() - shaman.registerLavaBurstSpell() - shaman.registerLightningBoltSpell() - shaman.registerLightningShieldSpell() + // shaman.registerChainLightningSpell() + // shaman.registerFireElementalTotem() + // shaman.registerEarthElementalTotem() + // shaman.registerFireNovaSpell() + // shaman.registerLavaBurstSpell() + // shaman.registerLightningBoltSpell() + // shaman.registerLightningShieldSpell() shaman.registerSpiritwalkersGraceSpell() - shaman.registerMagmaTotemSpell() - shaman.registerSearingTotemSpell() - shaman.registerShocks() - shaman.registerUnleashElements() - - shaman.registerStrengthOfEarthTotemSpell() - shaman.registerFlametongueTotemSpell() - shaman.registerTremorTotemSpell() - shaman.registerStoneskinTotemSpell() - shaman.registerWindfuryTotemSpell() - shaman.registerWrathOfAirTotemSpell() - shaman.registerManaSpringTotemSpell() - shaman.registerHealingStreamTotemSpell() + // shaman.registerMagmaTotemSpell() + // shaman.registerSearingTotemSpell() + // shaman.registerShocks() + // shaman.registerUnleashElements() + + // shaman.registerStrengthOfEarthTotemSpell() + // shaman.registerFlametongueTotemSpell() + // shaman.registerTremorTotemSpell() + // shaman.registerStoneskinTotemSpell() + // shaman.registerWindfuryTotemSpell() + // shaman.registerWrathOfAirTotemSpell() + // shaman.registerManaSpringTotemSpell() + // shaman.registerHealingStreamTotemSpell() // // This registration must come after all the totems are registered - shaman.registerCallOfTheElements() - shaman.registerCallOfTheAncestors() - shaman.registerCallOfTheSpirits() + // shaman.registerCallOfTheElements() + // shaman.registerCallOfTheAncestors() + // shaman.registerCallOfTheSpirits() shaman.registerBloodlustCD() } @@ -307,6 +297,8 @@ func (shaman *Shaman) RegisterHealingSpells() { // } } +func (shaman *Shaman) ApplyTalents() {} + func (shaman *Shaman) Reset(sim *core.Simulation) { } diff --git a/sim/shaman/spiritwalkers_grace.go b/sim/shaman/spiritwalkers_grace.go index 6d39aa3524..5ff38800df 100644 --- a/sim/shaman/spiritwalkers_grace.go +++ b/sim/shaman/spiritwalkers_grace.go @@ -3,7 +3,7 @@ package shaman import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (shaman *Shaman) spiritwalkersGraceBaseDuration() time.Duration { diff --git a/sim/warlock/_apl_values.go b/sim/warlock/_apl_values.go index 521815bf07..6904be579c 100644 --- a/sim/warlock/_apl_values.go +++ b/sim/warlock/_apl_values.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warlock *Warlock) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue { diff --git a/sim/warlock/curses.go b/sim/warlock/_curses.go similarity index 99% rename from sim/warlock/curses.go rename to sim/warlock/_curses.go index 75efb64c2d..04faf7e61c 100644 --- a/sim/warlock/curses.go +++ b/sim/warlock/_curses.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerCurseOfElements() { diff --git a/sim/warlock/demon_soul.go b/sim/warlock/_demon_soul.go similarity index 99% rename from sim/warlock/demon_soul.go rename to sim/warlock/_demon_soul.go index 7528f6ddc1..e912bab19c 100644 --- a/sim/warlock/demon_soul.go +++ b/sim/warlock/_demon_soul.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerDemonSoul() { diff --git a/sim/warlock/doomguard.go b/sim/warlock/_doomguard.go similarity index 96% rename from sim/warlock/doomguard.go rename to sim/warlock/_doomguard.go index 625812f2d9..ca56d9be6e 100644 --- a/sim/warlock/doomguard.go +++ b/sim/warlock/_doomguard.go @@ -3,9 +3,9 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (warlock *Warlock) registerSummonDoomguard(timer *core.Timer) { diff --git a/sim/warlock/drain_life.go b/sim/warlock/_drain_life.go similarity index 98% rename from sim/warlock/drain_life.go rename to sim/warlock/_drain_life.go index fa64af3f1c..5e86bb40b6 100644 --- a/sim/warlock/drain_life.go +++ b/sim/warlock/_drain_life.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerDrainLife() { diff --git a/sim/warlock/drain_soul.go b/sim/warlock/_drain_soul.go similarity index 99% rename from sim/warlock/drain_soul.go rename to sim/warlock/_drain_soul.go index d0847b3d62..a661c5b22b 100644 --- a/sim/warlock/drain_soul.go +++ b/sim/warlock/_drain_soul.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) calcSoulSiphonMult(target *core.Unit) float64 { diff --git a/sim/warlock/fel_flame.go b/sim/warlock/_fel_flame.go similarity index 97% rename from sim/warlock/fel_flame.go rename to sim/warlock/_fel_flame.go index 4bc51aace2..091f027309 100644 --- a/sim/warlock/fel_flame.go +++ b/sim/warlock/_fel_flame.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerFelFlame() { diff --git a/sim/warlock/glyphs.go b/sim/warlock/_glyphs.go similarity index 97% rename from sim/warlock/glyphs.go rename to sim/warlock/_glyphs.go index dff4b91231..9454b56fbe 100644 --- a/sim/warlock/glyphs.go +++ b/sim/warlock/_glyphs.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warlock *Warlock) ApplyGlyphs() { diff --git a/sim/warlock/immolate.go b/sim/warlock/_immolate.go similarity index 98% rename from sim/warlock/immolate.go rename to sim/warlock/_immolate.go index 2b46a5c244..2195cb90d4 100644 --- a/sim/warlock/immolate.go +++ b/sim/warlock/_immolate.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerImmolate() { diff --git a/sim/warlock/incinerate.go b/sim/warlock/_incinerate.go similarity index 97% rename from sim/warlock/incinerate.go rename to sim/warlock/_incinerate.go index 0077422f25..d613bb2e6c 100644 --- a/sim/warlock/incinerate.go +++ b/sim/warlock/_incinerate.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerIncinerate() { diff --git a/sim/warlock/infernal.go b/sim/warlock/_infernal.go similarity index 97% rename from sim/warlock/infernal.go rename to sim/warlock/_infernal.go index d244bcabaa..5b0b9d6f0c 100644 --- a/sim/warlock/infernal.go +++ b/sim/warlock/_infernal.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) func (warlock *Warlock) registerSummonInfernal(timer *core.Timer) { diff --git a/sim/warlock/items.go b/sim/warlock/_items.go similarity index 98% rename from sim/warlock/items.go rename to sim/warlock/_items.go index d161a9f34d..9b62afaa24 100644 --- a/sim/warlock/items.go +++ b/sim/warlock/_items.go @@ -3,9 +3,9 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) // T11 diff --git a/sim/warlock/lifetap.go b/sim/warlock/_lifetap.go similarity index 93% rename from sim/warlock/lifetap.go rename to sim/warlock/_lifetap.go index d8488626bd..e8a2cc58d9 100644 --- a/sim/warlock/lifetap.go +++ b/sim/warlock/_lifetap.go @@ -1,8 +1,8 @@ package warlock import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // TODO: Pet Mana diff --git a/sim/warlock/pets.go b/sim/warlock/_pets.go similarity index 99% rename from sim/warlock/pets.go rename to sim/warlock/_pets.go index be8327e48f..56296bb432 100644 --- a/sim/warlock/pets.go +++ b/sim/warlock/_pets.go @@ -4,9 +4,9 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type WarlockPet struct { diff --git a/sim/warlock/shadowbolt.go b/sim/warlock/_shadowbolt.go similarity index 97% rename from sim/warlock/shadowbolt.go rename to sim/warlock/_shadowbolt.go index eb3f059232..22df15d92f 100644 --- a/sim/warlock/shadowbolt.go +++ b/sim/warlock/_shadowbolt.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerShadowBolt() { diff --git a/sim/warlock/shadowburn.go b/sim/warlock/_shadowburn.go similarity index 97% rename from sim/warlock/shadowburn.go rename to sim/warlock/_shadowburn.go index 6002c2cc91..f1879a3861 100644 --- a/sim/warlock/shadowburn.go +++ b/sim/warlock/_shadowburn.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerShadowBurnSpell() { diff --git a/sim/warlock/soul_fire.go b/sim/warlock/_soul_fire.go similarity index 96% rename from sim/warlock/soul_fire.go rename to sim/warlock/_soul_fire.go index b0787461a7..d72e0d36cb 100644 --- a/sim/warlock/soul_fire.go +++ b/sim/warlock/_soul_fire.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (warlock *Warlock) registerSoulFire() { diff --git a/sim/warlock/summon_demon.go b/sim/warlock/_summon_demon.go similarity index 98% rename from sim/warlock/summon_demon.go rename to sim/warlock/_summon_demon.go index 34da3bf741..5f957f3f6d 100644 --- a/sim/warlock/summon_demon.go +++ b/sim/warlock/_summon_demon.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) ChangeActivePet(sim *core.Simulation, newPet *WarlockPet) { diff --git a/sim/warlock/talents_affliction.go b/sim/warlock/_talents_affliction.go similarity index 98% rename from sim/warlock/talents_affliction.go rename to sim/warlock/_talents_affliction.go index 77bbaa70bc..db35325fcf 100644 --- a/sim/warlock/talents_affliction.go +++ b/sim/warlock/_talents_affliction.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warlock *Warlock) ApplyAfflictionTalents() { diff --git a/sim/warlock/talents_demonology.go b/sim/warlock/_talents_demonology.go similarity index 98% rename from sim/warlock/talents_demonology.go rename to sim/warlock/_talents_demonology.go index dc81a3a7e4..90247cc08b 100644 --- a/sim/warlock/talents_demonology.go +++ b/sim/warlock/_talents_demonology.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (warlock *Warlock) ApplyDemonologyTalents() { diff --git a/sim/warlock/talents_destruction.go b/sim/warlock/_talents_destruction.go similarity index 99% rename from sim/warlock/talents_destruction.go rename to sim/warlock/_talents_destruction.go index 8bdb719330..4a266ce293 100644 --- a/sim/warlock/talents_destruction.go +++ b/sim/warlock/_talents_destruction.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warlock *Warlock) ApplyDestructionTalents() { diff --git a/sim/warlock/affliction/TestAffliction.results b/sim/warlock/affliction/TestAffliction.results index 18144e149f..e0a81b351e 100644 --- a/sim/warlock/affliction/TestAffliction.results +++ b/sim/warlock/affliction/TestAffliction.results @@ -725,8 +725,8 @@ dps_results: { dps_results: { key: "TestAffliction-AllItems-Gladiator'sFelshroud" value: { - dps: 33037.66035 - tps: 23397.93186 + dps: 36838.06583 + tps: 26096.40203 } } dps_results: { diff --git a/sim/warlock/affliction/affliction_test.go b/sim/warlock/affliction/_affliction_test.go similarity index 96% rename from sim/warlock/affliction/affliction_test.go rename to sim/warlock/affliction/_affliction_test.go index 28912551b8..b99bbd9ec5 100644 --- a/sim/warlock/affliction/affliction_test.go +++ b/sim/warlock/affliction/_affliction_test.go @@ -7,11 +7,11 @@ import ( _ "unsafe" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" ) func init() { @@ -265,7 +265,7 @@ func TestDrainSoul3SE(t *testing.T) { checkDotTick(t, sim, drainSoul.CurDot(), attackTable, 4115.6938, 1.823900) } -//go:linkname sim_advance github.com/wowsims/cata/sim/core.(*Simulation).advance +//go:linkname sim_advance github.com/wowsims/mop/sim/core.(*Simulation).advance func sim_advance(*core.Simulation, time.Duration) func TestDrainSoulExecute3SE(t *testing.T) { @@ -384,12 +384,12 @@ func TestAffliction(t *testing.T) { }, } - var fullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeveredSagefish, - DefaultPotion: proto.Potions_VolcanicPotion, - ExplosiveBigDaddy: true, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, + var fullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62671, // Severed Sagefish Head + PotId: 58091, // Volcanic Potion + ExplosiveId: 89637, // Big Daddy Explosive + TinkerId: 82174, // Synapse Springs } var afflictionGlyphs = &proto.Glyphs{ @@ -408,7 +408,7 @@ func TestAffliction(t *testing.T) { GearSet: core.GetGearSet("../../../ui/warlock/affliction/gear_sets", "p4"), Talents: afflictionTalents, Glyphs: afflictionGlyphs, - Consumes: fullConsumes, + Consumables: fullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Affliction Warlock", SpecOptions: defaultAfflictionWarlock}, OtherSpecOptions: []core.SpecOptionsCombo{}, Rotation: core.GetAplRotation("../../../ui/warlock/affliction/apls", "default"), diff --git a/sim/warlock/affliction/haunt.go b/sim/warlock/affliction/_haunt.go similarity index 94% rename from sim/warlock/affliction/haunt.go rename to sim/warlock/affliction/_haunt.go index 8901a14e2f..ff54bdbd63 100644 --- a/sim/warlock/affliction/haunt.go +++ b/sim/warlock/affliction/_haunt.go @@ -3,9 +3,9 @@ package affliction import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func (affliction *AfflictionWarlock) registerHaunt() { diff --git a/sim/warlock/affliction/affliction.go b/sim/warlock/affliction/affliction.go index 33ff189830..3eda84333b 100644 --- a/sim/warlock/affliction/affliction.go +++ b/sim/warlock/affliction/affliction.go @@ -1,9 +1,9 @@ package affliction import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func RegisterAfflictionWarlock() { @@ -47,7 +47,7 @@ func (affliction *AfflictionWarlock) GetWarlock() *warlock.Warlock { func (affliction *AfflictionWarlock) Initialize() { affliction.Warlock.Initialize() - affliction.registerHaunt() + // affliction.registerHaunt() affliction.registerUnstableAffliction() } diff --git a/sim/warlock/affliction/dragonwrath.go b/sim/warlock/affliction/dragonwrath.go index 5f000155d6..43a7c6d98d 100644 --- a/sim/warlock/affliction/dragonwrath.go +++ b/sim/warlock/affliction/dragonwrath.go @@ -1,8 +1,8 @@ package affliction import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/warlock/affliction/unstable_affliction.go b/sim/warlock/affliction/unstable_affliction.go index 8e46cedc67..74735e0cf7 100644 --- a/sim/warlock/affliction/unstable_affliction.go +++ b/sim/warlock/affliction/unstable_affliction.go @@ -3,8 +3,8 @@ package affliction import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warlock" ) func (affliction *AfflictionWarlock) registerUnstableAffliction() { diff --git a/sim/warlock/corruption.go b/sim/warlock/corruption.go index 4b16d582d6..0ab7ff59da 100644 --- a/sim/warlock/corruption.go +++ b/sim/warlock/corruption.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerCorruption() { diff --git a/sim/warlock/demonology/TestDemonology.results b/sim/warlock/demonology/TestDemonology.results index 6443c08788..31437ba87e 100644 --- a/sim/warlock/demonology/TestDemonology.results +++ b/sim/warlock/demonology/TestDemonology.results @@ -725,8 +725,8 @@ dps_results: { dps_results: { key: "TestDemonology-AllItems-Gladiator'sFelshroud" value: { - dps: 34072.07442 - tps: 17264.09202 + dps: 38205.89908 + tps: 19213.27053 } } dps_results: { diff --git a/sim/warlock/demonology/demonology_test.go b/sim/warlock/demonology/_demonology_test.go similarity index 96% rename from sim/warlock/demonology/demonology_test.go rename to sim/warlock/demonology/_demonology_test.go index c4b4ee6c11..35e9661451 100644 --- a/sim/warlock/demonology/demonology_test.go +++ b/sim/warlock/demonology/_demonology_test.go @@ -5,11 +5,11 @@ import ( "testing" "time" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" ) func init() { @@ -429,12 +429,12 @@ func TestDemonology(t *testing.T) { }, } - var fullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeveredSagefish, - DefaultPotion: proto.Potions_VolcanicPotion, - ExplosiveBigDaddy: true, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, + var fullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62671, // Severed Sagefish Head + PotId: 58091, // Volcanic Potion + ExplosiveId: 89637, // Big Daddy Explosive + TinkerId: 82174, // Synapse Springs } // Shadow Bolt @@ -474,7 +474,7 @@ func TestDemonology(t *testing.T) { Glyphs: demonologyGlyphsShadowBolt, }, }, - Consumes: fullConsumes, + Consumables: fullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Demonology Warlock", SpecOptions: defaultDemonologyWarlock}, OtherSpecOptions: []core.SpecOptionsCombo{}, Rotation: core.GetAplRotation("../../../ui/warlock/demonology/apls", "incinerate"), diff --git a/sim/warlock/demonology/hand_of_guldan.go b/sim/warlock/demonology/_hand_of_guldan.go similarity index 96% rename from sim/warlock/demonology/hand_of_guldan.go rename to sim/warlock/demonology/_hand_of_guldan.go index c44c9b52b3..5fbb006e04 100644 --- a/sim/warlock/demonology/hand_of_guldan.go +++ b/sim/warlock/demonology/_hand_of_guldan.go @@ -3,8 +3,8 @@ package demonology import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warlock" ) func (demonology *DemonologyWarlock) CurseOfGuldanDebuffAura(target *core.Unit) *core.Aura { diff --git a/sim/warlock/demonology/metamorphosis.go b/sim/warlock/demonology/_metamorphosis.go similarity index 96% rename from sim/warlock/demonology/metamorphosis.go rename to sim/warlock/demonology/_metamorphosis.go index 066f91fa09..d266fc2894 100644 --- a/sim/warlock/demonology/metamorphosis.go +++ b/sim/warlock/demonology/_metamorphosis.go @@ -3,9 +3,9 @@ package demonology import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func (demonology *DemonologyWarlock) registerMetamorphosis() { diff --git a/sim/warlock/demonology/demonology.go b/sim/warlock/demonology/demonology.go index 5d9a6f02a7..936e582c98 100644 --- a/sim/warlock/demonology/demonology.go +++ b/sim/warlock/demonology/demonology.go @@ -1,11 +1,9 @@ package demonology import ( - "time" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func RegisterDemonologyWarlock() { @@ -46,9 +44,9 @@ func (demonology *DemonologyWarlock) GetWarlock() *warlock.Warlock { func (demonology *DemonologyWarlock) Initialize() { demonology.Warlock.Initialize() - demonology.registerHandOfGuldan() - demonology.registerMetamorphosis() - demonology.registerSummonFelguard() + // demonology.registerHandOfGuldan() + // demonology.registerMetamorphosis() + // demonology.registerSummonFelguard() } func (demonology *DemonologyWarlock) ApplyTalents() { @@ -62,39 +60,39 @@ func (demonology *DemonologyWarlock) ApplyTalents() { }) } -func (demonology *DemonologyWarlock) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - raidBuffs.DemonicPact = demonology.Talents.DemonicPact && demonology.Options.Summon != proto.WarlockOptions_NoSummon -} +// func (demonology *DemonologyWarlock) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// raidBuffs.DemonicPact = demonology.Talents.DemonicPact && demonology.Options.Summon != proto.WarlockOptions_NoSummon +// } func (demonology *DemonologyWarlock) Reset(sim *core.Simulation) { demonology.Warlock.Reset(sim) } -func (demonology *DemonologyWarlock) registerSummonFelguard() { - stunActionID := core.ActionID{SpellID: 32752} - - demonology.Felguard.RegisterAura(demonology.GetSummonStunAura()) - demonology.RegisterSpell(core.SpellConfig{ - ActionID: core.ActionID{SpellID: 30146}, - SpellSchool: core.SpellSchoolShadow, - ProcMask: core.ProcMaskEmpty, - Flags: core.SpellFlagAPL, - ClassSpellMask: warlock.WarlockSpellSummonFelguard, - - ManaCost: core.ManaCostOptions{BaseCostPercent: 80}, - Cast: core.CastConfig{ - DefaultCast: core.Cast{ - GCD: core.GCDDefault, - CastTime: 6 * time.Second, - }, - ModifyCast: func(sim *core.Simulation, spell *core.Spell, cast *core.Cast) { - demonology.ActivatePetSummonStun(sim, stunActionID) - }, - }, - - ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { - demonology.SoulBurnAura.Deactivate(sim) - demonology.ChangeActivePet(sim, demonology.Warlock.Felguard) - }, - }) -} +// func (demonology *DemonologyWarlock) registerSummonFelguard() { +// stunActionID := core.ActionID{SpellID: 32752} + +// demonology.Felguard.RegisterAura(demonology.GetSummonStunAura()) +// demonology.RegisterSpell(core.SpellConfig{ +// ActionID: core.ActionID{SpellID: 30146}, +// SpellSchool: core.SpellSchoolShadow, +// ProcMask: core.ProcMaskEmpty, +// Flags: core.SpellFlagAPL, +// ClassSpellMask: warlock.WarlockSpellSummonFelguard, + +// ManaCost: core.ManaCostOptions{BaseCostPercent: 80}, +// Cast: core.CastConfig{ +// DefaultCast: core.Cast{ +// GCD: core.GCDDefault, +// CastTime: 6 * time.Second, +// }, +// ModifyCast: func(sim *core.Simulation, spell *core.Spell, cast *core.Cast) { +// demonology.ActivatePetSummonStun(sim, stunActionID) +// }, +// }, + +// ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) { +// demonology.SoulBurnAura.Deactivate(sim) +// demonology.ChangeActivePet(sim, demonology.Warlock.Felguard) +// }, +// }) +// } diff --git a/sim/warlock/demonology/dragonwrath.go b/sim/warlock/demonology/dragonwrath.go index 5ff0ae6b17..46b2f91f8f 100644 --- a/sim/warlock/demonology/dragonwrath.go +++ b/sim/warlock/demonology/dragonwrath.go @@ -1,8 +1,8 @@ package demonology import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core/proto" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core/proto" ) func init() { diff --git a/sim/warlock/destruction/TestDestruction.results b/sim/warlock/destruction/TestDestruction.results index 006d0df5cf..211fd168ff 100644 --- a/sim/warlock/destruction/TestDestruction.results +++ b/sim/warlock/destruction/TestDestruction.results @@ -725,8 +725,8 @@ dps_results: { dps_results: { key: "TestDestruction-AllItems-Gladiator'sFelshroud" value: { - dps: 34801.11205 - tps: 20924.74032 + dps: 38959.64518 + tps: 23480.85809 } } dps_results: { diff --git a/sim/warlock/destruction/chaos_bolt.go b/sim/warlock/destruction/_chaos_bolt.go similarity index 93% rename from sim/warlock/destruction/chaos_bolt.go rename to sim/warlock/destruction/_chaos_bolt.go index 83c4fc7f57..e824912ceb 100644 --- a/sim/warlock/destruction/chaos_bolt.go +++ b/sim/warlock/destruction/_chaos_bolt.go @@ -3,8 +3,8 @@ package destruction import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warlock" ) func (destro *DestructionWarlock) registerChaosBolt() { diff --git a/sim/warlock/destruction/destruction_test.go b/sim/warlock/destruction/_destruction_test.go similarity index 95% rename from sim/warlock/destruction/destruction_test.go rename to sim/warlock/destruction/_destruction_test.go index 7af89c58df..7315f66174 100644 --- a/sim/warlock/destruction/destruction_test.go +++ b/sim/warlock/destruction/_destruction_test.go @@ -5,11 +5,11 @@ import ( "testing" "time" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" - "github.com/wowsims/cata/sim/core/stats" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" + "github.com/wowsims/mop/sim/core/stats" ) func init() { @@ -336,12 +336,12 @@ func TestDestruction(t *testing.T) { }, } - var fullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTheDraconicMind, - Food: proto.Food_FoodSeveredSagefish, - DefaultPotion: proto.Potions_VolcanicPotion, - ExplosiveBigDaddy: true, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, + var fullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58086, // Flask of the Draconic Mind + FoodId: 62671, // Severed Sagefish Head + PotId: 58091, // Volcanic Potion + ExplosiveId: 89637, // Big Daddy Explosive + TinkerId: 82174, // Synapse Springs } var destructionTalents = "003-03202-3320202312201312211" @@ -361,7 +361,7 @@ func TestDestruction(t *testing.T) { GearSet: core.GetGearSet("../../../ui/warlock/destruction/gear_sets", "p4"), Talents: destructionTalents, Glyphs: destructionGlyphs, - Consumes: fullConsumes, + Consumables: fullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Destruction Warlock", SpecOptions: defaultDestructionWarlock}, OtherSpecOptions: []core.SpecOptionsCombo{}, Rotation: core.GetAplRotation("../../../ui/warlock/destruction/apls", "default"), diff --git a/sim/warlock/destruction/conflagrate.go b/sim/warlock/destruction/conflagrate.go index 669b452e99..42979282c6 100644 --- a/sim/warlock/destruction/conflagrate.go +++ b/sim/warlock/destruction/conflagrate.go @@ -3,8 +3,8 @@ package destruction import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warlock" ) func (destruction *DestructionWarlock) registerConflagrate() { diff --git a/sim/warlock/destruction/destruction.go b/sim/warlock/destruction/destruction.go index 892504ac4d..5f947314bb 100644 --- a/sim/warlock/destruction/destruction.go +++ b/sim/warlock/destruction/destruction.go @@ -1,9 +1,9 @@ package destruction import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func RegisterDestructionWarlock() { @@ -49,7 +49,7 @@ func (destruction *DestructionWarlock) GetWarlock() *warlock.Warlock { func (destruction *DestructionWarlock) Initialize() { destruction.Warlock.Initialize() - destruction.registerChaosBolt() + // destruction.registerChaosBolt() destruction.registerConflagrate() } diff --git a/sim/warlock/destruction/dragonwrath.go b/sim/warlock/destruction/dragonwrath.go index d5fd3af040..aa99e94317 100644 --- a/sim/warlock/destruction/dragonwrath.go +++ b/sim/warlock/destruction/dragonwrath.go @@ -1,10 +1,10 @@ package destruction import ( - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warlock" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warlock" ) func init() { diff --git a/sim/warlock/ebon_imp.go b/sim/warlock/ebon_imp.go index abf1f2f1e9..3551e26ff4 100644 --- a/sim/warlock/ebon_imp.go +++ b/sim/warlock/ebon_imp.go @@ -3,8 +3,8 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) type EbonImpPet struct { diff --git a/sim/warlock/searing_pain.go b/sim/warlock/searing_pain.go index bb5f3eb29a..c1a494025e 100644 --- a/sim/warlock/searing_pain.go +++ b/sim/warlock/searing_pain.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerSearingPain() { diff --git a/sim/warlock/seed.go b/sim/warlock/seed.go index ea01922042..e5d3e26fdd 100644 --- a/sim/warlock/seed.go +++ b/sim/warlock/seed.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerSeed() { diff --git a/sim/warlock/shadowflame.go b/sim/warlock/shadowflame.go index cdb407a771..bd4440c7dc 100644 --- a/sim/warlock/shadowflame.go +++ b/sim/warlock/shadowflame.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerShadowflame() { diff --git a/sim/warlock/soul_harvest.go b/sim/warlock/soul_harvest.go index 4d87ff3fa6..55ce17c0b7 100644 --- a/sim/warlock/soul_harvest.go +++ b/sim/warlock/soul_harvest.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerSoulHarvest() { diff --git a/sim/warlock/soulburn.go b/sim/warlock/soulburn.go index 1ce180c818..3ed2bed524 100644 --- a/sim/warlock/soulburn.go +++ b/sim/warlock/soulburn.go @@ -3,7 +3,7 @@ package warlock import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warlock *Warlock) registerSoulburn() { diff --git a/sim/warlock/warlock.go b/sim/warlock/warlock.go index c7a78e64b1..d74e308281 100644 --- a/sim/warlock/warlock.go +++ b/sim/warlock/warlock.go @@ -1,9 +1,9 @@ package warlock import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type Warlock struct { @@ -26,16 +26,16 @@ type Warlock struct { Shadowburn *core.Spell UnstableAffliction *core.Spell - ActivePet *WarlockPet - Felhunter *WarlockPet - Felguard *WarlockPet - Imp *WarlockPet - Succubus *WarlockPet + // ActivePet *WarlockPet + // Felhunter *WarlockPet + // Felguard *WarlockPet + // Imp *WarlockPet + // Succubus *WarlockPet - Doomguard *DoomguardPet - Infernal *InfernalPet - EbonImp *EbonImpPet - FieryImp *FieryImpPet + // Doomguard *DoomguardPet + // Infernal *InfernalPet + // EbonImp *EbonImpPet + // FieryImp *FieryImpPet SoulShards *core.Aura SoulBurnAura *core.Aura @@ -55,47 +55,47 @@ func (warlock *Warlock) GetWarlock() *Warlock { func (warlock *Warlock) ApplyTalents() { warlock.ApplyArmorSpecializationEffect(stats.Intellect, proto.ArmorType_ArmorTypeCloth, 86091) - warlock.ApplyAfflictionTalents() - warlock.ApplyDemonologyTalents() - warlock.ApplyDestructionTalents() + // warlock.ApplyAfflictionTalents() + // warlock.ApplyDemonologyTalents() + // warlock.ApplyDestructionTalents() - warlock.ApplyGlyphs() + // warlock.ApplyGlyphs() } func (warlock *Warlock) Initialize() { - warlock.registerBaneOfAgony() - warlock.registerBaneOfDoom() + // warlock.registerBaneOfAgony() + // warlock.registerBaneOfDoom() warlock.registerCorruption() - warlock.registerCurseOfElements() - warlock.registerCurseOfTongues() - warlock.registerCurseOfWeakness() - warlock.registerDemonSoul() - warlock.registerDrainLife() - warlock.registerDrainSoul() - warlock.registerFelFlame() - warlock.registerImmolate() - warlock.registerIncinerate() - warlock.registerLifeTap() + // warlock.registerCurseOfElements() + // warlock.registerCurseOfTongues() + // warlock.registerCurseOfWeakness() + // warlock.registerDemonSoul() + // warlock.registerDrainLife() + // warlock.registerDrainSoul() + // warlock.registerFelFlame() + // warlock.registerImmolate() + // warlock.registerIncinerate() + // warlock.registerLifeTap() warlock.registerSearingPain() warlock.registerSeed() - warlock.registerShadowBolt() + // warlock.registerShadowBolt() warlock.registerShadowflame() - warlock.registerSoulFire() + // warlock.registerSoulFire() warlock.registerSoulHarvest() warlock.registerSoulburn() - warlock.registerSummonDemon() + // warlock.registerSummonDemon() - doomguardInfernalTimer := warlock.NewTimer() - warlock.registerSummonDoomguard(doomguardInfernalTimer) - warlock.registerSummonInfernal(doomguardInfernalTimer) + // doomguardInfernalTimer := warlock.NewTimer() + // warlock.registerSummonDoomguard(doomguardInfernalTimer) + // warlock.registerSummonInfernal(doomguardInfernalTimer) // TODO: vile hack to make the APLs work for now ... - if !warlock.CouldHaveSetBonus(ItemSetMaleficRaiment, 4) { - warlock.RegisterAura(core.Aura{ - Label: "Fel Spark", - ActionID: core.ActionID{SpellID: 89937}, - }) - } + // if !warlock.CouldHaveSetBonus(ItemSetMaleficRaiment, 4) { + // warlock.RegisterAura(core.Aura{ + // Label: "Fel Spark", + // ActionID: core.ActionID{SpellID: 89937}, + // }) + // } core.MakePermanent( warlock.RegisterAura(core.Aura{ @@ -113,7 +113,7 @@ func (warlock *Warlock) Initialize() { }, })) - warlock.registerPetAbilities() + // warlock.registerPetAbilities() // warlock.registerBlackBook() } @@ -132,7 +132,7 @@ func NewWarlock(character *core.Character, options *proto.Player, warlockOptions Talents: &proto.WarlockTalents{}, Options: warlockOptions, } - core.FillTalentsProto(warlock.Talents.ProtoReflect(), options.TalentsString, [3]int{18, 19, 19}) + core.FillTalentsProto(warlock.Talents.ProtoReflect(), options.TalentsString) warlock.EnableManaBar() warlock.SetDefaultSpellCritMultiplier(warlock.SpellCritMultiplier(1.33, 0.0)) @@ -141,12 +141,12 @@ func NewWarlock(character *core.Character, options *proto.Player, warlockOptions // Add Fel Armor SP by default warlock.AddStat(stats.SpellPower, 638) - warlock.EbonImp = warlock.NewEbonImp() - warlock.Infernal = warlock.NewInfernalPet() - warlock.Doomguard = warlock.NewDoomguardPet() - warlock.FieryImp = warlock.NewFieryImp() + // warlock.EbonImp = warlock.NewEbonImp() + // warlock.Infernal = warlock.NewInfernalPet() + // warlock.Doomguard = warlock.NewDoomguardPet() + // warlock.FieryImp = warlock.NewFieryImp() - warlock.registerPets() + // warlock.registerPets() return warlock } @@ -156,10 +156,6 @@ type WarlockAgent interface { GetWarlock() *Warlock } -func (warlock *Warlock) HasPrimeGlyph(glyph proto.WarlockPrimeGlyph) bool { - return warlock.HasGlyph(int32(glyph)) -} - func (warlock *Warlock) HasMajorGlyph(glyph proto.WarlockMajorGlyph) bool { return warlock.HasGlyph(int32(glyph)) } diff --git a/sim/warrior/berserker_rage.go b/sim/warrior/_berserker_rage.go similarity index 94% rename from sim/warrior/berserker_rage.go rename to sim/warrior/_berserker_rage.go index 8cd468b805..787db6f7a3 100644 --- a/sim/warrior/berserker_rage.go +++ b/sim/warrior/_berserker_rage.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) // Rather than update a variable somewhere for one effect (Fury's Unshackled Fury) just take a callback diff --git a/sim/warrior/charge.go b/sim/warrior/_charge.go similarity index 97% rename from sim/warrior/charge.go rename to sim/warrior/_charge.go index a026491a93..63ee5caac9 100644 --- a/sim/warrior/charge.go +++ b/sim/warrior/_charge.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterCharge() { diff --git a/sim/warrior/colossus_smash.go b/sim/warrior/_colossus_smash.go similarity index 96% rename from sim/warrior/colossus_smash.go rename to sim/warrior/_colossus_smash.go index 0f673984b0..ab1f83ad19 100644 --- a/sim/warrior/colossus_smash.go +++ b/sim/warrior/_colossus_smash.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) RegisterColossusSmash() { diff --git a/sim/warrior/deep_wounds.go b/sim/warrior/_deep_wounds.go similarity index 98% rename from sim/warrior/deep_wounds.go rename to sim/warrior/_deep_wounds.go index dc2c1ce0b0..cc835f0700 100644 --- a/sim/warrior/deep_wounds.go +++ b/sim/warrior/_deep_wounds.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterDeepWounds() { diff --git a/sim/warrior/demoralizing_shout.go b/sim/warrior/_demoralizing_shout.go similarity index 93% rename from sim/warrior/demoralizing_shout.go rename to sim/warrior/_demoralizing_shout.go index 5554440c8e..64f0570843 100644 --- a/sim/warrior/demoralizing_shout.go +++ b/sim/warrior/_demoralizing_shout.go @@ -1,8 +1,8 @@ package warrior import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) RegisterDemoralizingShoutSpell() { diff --git a/sim/warrior/execute.go b/sim/warrior/_execute.go similarity index 98% rename from sim/warrior/execute.go rename to sim/warrior/_execute.go index fae85ea635..e374acfad4 100644 --- a/sim/warrior/execute.go +++ b/sim/warrior/_execute.go @@ -3,7 +3,7 @@ package warrior import ( "math" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterExecuteSpell() { diff --git a/sim/warrior/glyphs.go b/sim/warrior/_glyphs.go similarity index 96% rename from sim/warrior/glyphs.go rename to sim/warrior/_glyphs.go index 09a4930c25..d937ae7127 100644 --- a/sim/warrior/glyphs.go +++ b/sim/warrior/_glyphs.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) applyPrimeGlyphs() { diff --git a/sim/warrior/heroic_strike_cleave.go b/sim/warrior/_heroic_strike_cleave.go similarity index 97% rename from sim/warrior/heroic_strike_cleave.go rename to sim/warrior/_heroic_strike_cleave.go index c35b734fb0..00c57d1b34 100644 --- a/sim/warrior/heroic_strike_cleave.go +++ b/sim/warrior/_heroic_strike_cleave.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) const cdDuration = time.Second * 3 diff --git a/sim/warrior/heroic_throw.go b/sim/warrior/_heroic_throw.go similarity index 95% rename from sim/warrior/heroic_throw.go rename to sim/warrior/_heroic_throw.go index 98d4ac3647..211ff64898 100644 --- a/sim/warrior/heroic_throw.go +++ b/sim/warrior/_heroic_throw.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) // TODO: No patch notes for this ability, need to validate the damage and threat coefficients haven't changed diff --git a/sim/warrior/items.go b/sim/warrior/_items.go similarity index 98% rename from sim/warrior/items.go rename to sim/warrior/_items.go index 3a2587f8cb..15c61bb203 100644 --- a/sim/warrior/items.go +++ b/sim/warrior/_items.go @@ -3,10 +3,10 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) var ItemSetGladiatorsBattlegear = core.NewItemSet(core.ItemSet{ diff --git a/sim/warrior/overpower.go b/sim/warrior/_overpower.go similarity index 98% rename from sim/warrior/overpower.go rename to sim/warrior/_overpower.go index 98431e7631..a3c92248df 100644 --- a/sim/warrior/overpower.go +++ b/sim/warrior/_overpower.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterOverpowerSpell() { diff --git a/sim/warrior/rend.go b/sim/warrior/_rend.go similarity index 98% rename from sim/warrior/rend.go rename to sim/warrior/_rend.go index 3a49bee6b3..a663bde7e5 100644 --- a/sim/warrior/rend.go +++ b/sim/warrior/_rend.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterRendSpell() { diff --git a/sim/warrior/revenge.go b/sim/warrior/_revenge.go similarity index 98% rename from sim/warrior/revenge.go rename to sim/warrior/_revenge.go index 0ad0568547..5de3ff5eb4 100644 --- a/sim/warrior/revenge.go +++ b/sim/warrior/_revenge.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterRevengeSpell() { diff --git a/sim/warrior/shattering_throw.go b/sim/warrior/_shattering_throw.go similarity index 98% rename from sim/warrior/shattering_throw.go rename to sim/warrior/_shattering_throw.go index eb8c9692b7..ac8764009a 100644 --- a/sim/warrior/shattering_throw.go +++ b/sim/warrior/_shattering_throw.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterShatteringThrowCD() { diff --git a/sim/warrior/shield_block.go b/sim/warrior/_shield_block.go similarity index 96% rename from sim/warrior/shield_block.go rename to sim/warrior/_shield_block.go index 0b210dc360..eee31886fd 100644 --- a/sim/warrior/shield_block.go +++ b/sim/warrior/_shield_block.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) func (warrior *Warrior) RegisterShieldBlockCD() { diff --git a/sim/warrior/shouts.go b/sim/warrior/_shouts.go similarity index 95% rename from sim/warrior/shouts.go rename to sim/warrior/_shouts.go index fac47dd658..c496f5917b 100644 --- a/sim/warrior/shouts.go +++ b/sim/warrior/_shouts.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) const ShoutExpirationThreshold = time.Second * 3 diff --git a/sim/warrior/slam.go b/sim/warrior/_slam.go similarity index 98% rename from sim/warrior/slam.go rename to sim/warrior/_slam.go index 4e10400187..b68ad1c713 100644 --- a/sim/warrior/slam.go +++ b/sim/warrior/_slam.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterSlamSpell() { diff --git a/sim/warrior/stances.go b/sim/warrior/_stances.go similarity index 99% rename from sim/warrior/stances.go rename to sim/warrior/_stances.go index e3ab6dd795..66cb313457 100644 --- a/sim/warrior/stances.go +++ b/sim/warrior/_stances.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) type Stance uint8 diff --git a/sim/warrior/sunder_armor.go b/sim/warrior/_sunder_armor.go similarity index 91% rename from sim/warrior/sunder_armor.go rename to sim/warrior/_sunder_armor.go index 3eb23154b1..3152d0e265 100644 --- a/sim/warrior/sunder_armor.go +++ b/sim/warrior/_sunder_armor.go @@ -1,8 +1,8 @@ package warrior import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) RegisterSunderArmor() *core.Spell { @@ -44,7 +44,7 @@ func (warrior *Warrior) RegisterSunderArmor() *core.Spell { if result.Landed() { warrior.TryApplySunderArmorEffect(sim, target) - // https://www.wowhead.com/cata/item=43427/glyph-of-sunder-armor - also applies to devastate in cata + // https://www.wowhead.com/mop-classic/item=43427/glyph-of-sunder-armor - also applies to devastate in cata if hasGlyph && numTargets > 1 { nextTarget := warrior.Env.NextTargetUnit(target) warrior.TryApplySunderArmorEffect(sim, nextTarget) diff --git a/sim/warrior/talents.go b/sim/warrior/_talents.go similarity index 99% rename from sim/warrior/talents.go rename to sim/warrior/_talents.go index db7046dfc0..19d93baa38 100644 --- a/sim/warrior/talents.go +++ b/sim/warrior/_talents.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" ) // Applies the effects of "common" talents: talents in the first two rows of each tree that any spec could theoretically take diff --git a/sim/warrior/thunder_clap.go b/sim/warrior/_thunder_clap.go similarity index 97% rename from sim/warrior/thunder_clap.go rename to sim/warrior/_thunder_clap.go index 22f7fb898d..2740591fbe 100644 --- a/sim/warrior/thunder_clap.go +++ b/sim/warrior/_thunder_clap.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterThunderClapSpell() { diff --git a/sim/warrior/whirlwind.go b/sim/warrior/_whirlwind.go similarity index 97% rename from sim/warrior/whirlwind.go rename to sim/warrior/_whirlwind.go index 4f6a1f29b9..3eb038372a 100644 --- a/sim/warrior/whirlwind.go +++ b/sim/warrior/_whirlwind.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) RegisterWhirlwindSpell() { diff --git a/sim/warrior/arms/TestArms.results b/sim/warrior/arms/TestArms.results index 9ba45420b6..1b627fd7ab 100644 --- a/sim/warrior/arms/TestArms.results +++ b/sim/warrior/arms/TestArms.results @@ -746,8 +746,8 @@ dps_results: { dps_results: { key: "TestArms-AllItems-Gladiator'sBattlegear" value: { - dps: 37850.31487 - tps: 23595.64735 + dps: 41971.12297 + tps: 26302.43937 } } dps_results: { @@ -2046,8 +2046,8 @@ dps_results: { dps_results: { key: "TestArms-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 28275.10681 - tps: 19326.5004 + dps: 27369.0642 + tps: 18645.81402 } } dps_results: { diff --git a/sim/warrior/arms/arms_test.go b/sim/warrior/arms/_arms_test.go similarity index 70% rename from sim/warrior/arms/arms_test.go rename to sim/warrior/arms/_arms_test.go index 644c69647f..b173600f03 100644 --- a/sim/warrior/arms/arms_test.go +++ b/sim/warrior/arms/_arms_test.go @@ -3,9 +3,9 @@ package arms import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -24,7 +24,7 @@ func TestArms(t *testing.T) { }, Talents: ArmsTalents, Glyphs: ArmsDefaultGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsArms}, Rotation: core.GetAplRotation("../../../ui/warrior/arms/apls", "arms"), @@ -34,9 +34,6 @@ func TestArms(t *testing.T) { var ArmsTalents = "32120303120212312201-0322-3" var ArmsDefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.WarriorPrimeGlyph_GlyphOfMortalStrike), - Prime2: int32(proto.WarriorPrimeGlyph_GlyphOfOverpower), - Prime3: int32(proto.WarriorPrimeGlyph_GlyphOfSlam), Major1: int32(proto.WarriorMajorGlyph_GlyphOfColossusSmash), Major2: int32(proto.WarriorMajorGlyph_GlyphOfShieldWall), Major3: int32(proto.WarriorMajorGlyph_GlyphOfRapidCharge), @@ -53,12 +50,12 @@ var PlayerOptionsArms = &proto.Player_ArmsWarrior{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTitanicStrength, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58088, // Flask of Titanic Strength + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } var ItemFilter = core.ItemFilter{ diff --git a/sim/warrior/arms/bladestorm.go b/sim/warrior/arms/_bladestorm.go similarity index 96% rename from sim/warrior/arms/bladestorm.go rename to sim/warrior/arms/_bladestorm.go index a5d2a82ece..2a0f4d1f9b 100644 --- a/sim/warrior/arms/bladestorm.go +++ b/sim/warrior/arms/_bladestorm.go @@ -3,8 +3,8 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) RegisterBladestorm() { diff --git a/sim/warrior/arms/blood_frenzy.go b/sim/warrior/arms/_blood_frenzy.go similarity index 96% rename from sim/warrior/arms/blood_frenzy.go rename to sim/warrior/arms/_blood_frenzy.go index 64cbfab344..f874f7f745 100644 --- a/sim/warrior/arms/blood_frenzy.go +++ b/sim/warrior/arms/_blood_frenzy.go @@ -3,8 +3,8 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) applyBloodFrenzy() { diff --git a/sim/warrior/arms/deadly_calm.go b/sim/warrior/arms/_deadly_calm.go similarity index 95% rename from sim/warrior/arms/deadly_calm.go rename to sim/warrior/arms/_deadly_calm.go index 8db978c997..5f77a59821 100644 --- a/sim/warrior/arms/deadly_calm.go +++ b/sim/warrior/arms/_deadly_calm.go @@ -3,8 +3,8 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) RegisterDeadlyCalm() { diff --git a/sim/warrior/arms/glyphs.go b/sim/warrior/arms/_glyphs.go similarity index 90% rename from sim/warrior/arms/glyphs.go rename to sim/warrior/arms/_glyphs.go index 60b7fef611..c54b4316ca 100644 --- a/sim/warrior/arms/glyphs.go +++ b/sim/warrior/arms/_glyphs.go @@ -3,9 +3,9 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) ApplyGlyphs() { diff --git a/sim/warrior/arms/mortal_strike.go b/sim/warrior/arms/_mortal_strike.go similarity index 95% rename from sim/warrior/arms/mortal_strike.go rename to sim/warrior/arms/_mortal_strike.go index 9f5fb97cef..9a190c9b20 100644 --- a/sim/warrior/arms/mortal_strike.go +++ b/sim/warrior/arms/_mortal_strike.go @@ -3,8 +3,8 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) RegisterMortalStrike() { diff --git a/sim/warrior/arms/sweeping_strikes.go b/sim/warrior/arms/_sweeping_strikes.go similarity index 96% rename from sim/warrior/arms/sweeping_strikes.go rename to sim/warrior/arms/_sweeping_strikes.go index 7c3a94bfe9..4b53f6be47 100644 --- a/sim/warrior/arms/sweeping_strikes.go +++ b/sim/warrior/arms/_sweeping_strikes.go @@ -3,8 +3,8 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) RegisterSweepingStrikes() { diff --git a/sim/warrior/arms/talents.go b/sim/warrior/arms/_talents.go similarity index 97% rename from sim/warrior/arms/talents.go rename to sim/warrior/arms/_talents.go index afef52282a..1d87a94272 100644 --- a/sim/warrior/arms/talents.go +++ b/sim/warrior/arms/_talents.go @@ -3,10 +3,10 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func (war *ArmsWarrior) ApplyTalents() { diff --git a/sim/warrior/arms/arms.go b/sim/warrior/arms/arms.go index 34584d61e8..2cae63b7ef 100644 --- a/sim/warrior/arms/arms.go +++ b/sim/warrior/arms/arms.go @@ -3,10 +3,10 @@ package arms import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func RegisterArmsWarrior() { @@ -137,9 +137,11 @@ func (war *ArmsWarrior) GetWarrior() *warrior.Warrior { func (war *ArmsWarrior) Initialize() { war.Warrior.Initialize() war.RegisterSpecializationEffects() - war.RegisterMortalStrike() + // war.RegisterMortalStrike() } +func (war *ArmsWarrior) ApplyTalents() {} + func (war *ArmsWarrior) Reset(sim *core.Simulation) { war.Warrior.Reset(sim) } diff --git a/sim/warrior/fury/TestFury.results b/sim/warrior/fury/TestFury.results index 7dcba909fa..3f52b0ba4e 100644 --- a/sim/warrior/fury/TestFury.results +++ b/sim/warrior/fury/TestFury.results @@ -11,7 +11,7 @@ character_stats_results: { final_stats: 412 final_stats: 692 final_stats: 0 - final_stats: 2731.66358 + final_stats: 2731.66357 final_stats: 1315 final_stats: 25247.454 final_stats: 209 @@ -760,8 +760,8 @@ dps_results: { dps_results: { key: "TestFury-AllItems-Gladiator'sBattlegear" value: { - dps: 44906.21823 - tps: 30034.58215 + dps: 49419.6656 + tps: 33615.79601 } } dps_results: { @@ -1425,22 +1425,22 @@ dps_results: { dps_results: { key: "TestFury-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 47557.28074 - tps: 36019.4988 + dps: 45877.06782 + tps: 34592.64527 } } dps_results: { key: "TestFury-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 47989.79509 - tps: 36386.79601 + dps: 46094.1291 + tps: 34776.97813 } } dps_results: { key: "TestFury-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 47173.00267 - tps: 35693.16839 + dps: 45685.73289 + tps: 34430.16432 } } dps_results: { @@ -2085,8 +2085,8 @@ dps_results: { dps_results: { key: "TestFury-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 46440.92422 - tps: 34644.36261 + dps: 45883.86213 + tps: 34182.54433 } } dps_results: { diff --git a/sim/warrior/fury/death_wish.go b/sim/warrior/fury/_death_wish.go similarity index 91% rename from sim/warrior/fury/death_wish.go rename to sim/warrior/fury/_death_wish.go index 4994ba3dca..0f41e40dae 100644 --- a/sim/warrior/fury/death_wish.go +++ b/sim/warrior/fury/_death_wish.go @@ -3,10 +3,10 @@ package fury import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func (war *FuryWarrior) RegisterDeathWish() { diff --git a/sim/warrior/fury/fury_test.go b/sim/warrior/fury/_fury_test.go similarity index 77% rename from sim/warrior/fury/fury_test.go rename to sim/warrior/fury/_fury_test.go index 4840ff3260..3d64dd542b 100644 --- a/sim/warrior/fury/fury_test.go +++ b/sim/warrior/fury/_fury_test.go @@ -1,12 +1,12 @@ package fury import ( - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. "testing" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -37,7 +37,7 @@ func TestFury(t *testing.T) { }, }, Glyphs: FuryGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsFury}, Rotation: core.GetAplRotation("../../../ui/warrior/fury/apls", "tg"), OtherRotations: []core.RotationCombo{ @@ -63,9 +63,6 @@ var ItemFilter = core.ItemFilter{ var SMFTalents = "302003-032222031301101223201-2" var TGTalents = "302003-03222203130110122321-2" var FuryGlyphs = &proto.Glyphs{ - Prime1: int32(proto.WarriorPrimeGlyph_GlyphOfBloodthirst), - Prime2: int32(proto.WarriorPrimeGlyph_GlyphOfRagingBlow), - Prime3: int32(proto.WarriorPrimeGlyph_GlyphOfSlam), Major1: int32(proto.WarriorMajorGlyph_GlyphOfColossusSmash), Major2: int32(proto.WarriorMajorGlyph_GlyphOfCleaving), Major3: int32(proto.WarriorMajorGlyph_GlyphOfDeathWish), @@ -84,10 +81,10 @@ var PlayerOptionsFury = &proto.Player_FuryWarrior{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfTitanicStrength, - DefaultPotion: proto.Potions_GolembloodPotion, - PrepopPotion: proto.Potions_GolembloodPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, - TinkerHands: proto.TinkerHands_TinkerHandsSynapseSprings, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58088, // Flask of Titanic Strength + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58146, // Golemblood Potion + PrepotId: 58146, // Golemblood Potion + TinkerId: 82174, // Synapse Springs } diff --git a/sim/warrior/fury/glyphs.go b/sim/warrior/fury/_glyphs.go similarity index 86% rename from sim/warrior/fury/glyphs.go rename to sim/warrior/fury/_glyphs.go index 3ef2b816af..0e4f526689 100644 --- a/sim/warrior/fury/glyphs.go +++ b/sim/warrior/fury/_glyphs.go @@ -1,9 +1,9 @@ package fury import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warrior" ) func (war *FuryWarrior) ApplyGlyphs() { diff --git a/sim/warrior/fury/raging_blow.go b/sim/warrior/fury/_raging_blow.go similarity index 96% rename from sim/warrior/fury/raging_blow.go rename to sim/warrior/fury/_raging_blow.go index 5ae6e6c61e..2d719771c0 100644 --- a/sim/warrior/fury/raging_blow.go +++ b/sim/warrior/fury/_raging_blow.go @@ -3,8 +3,8 @@ package fury import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *FuryWarrior) RegisterRagingBlow() { diff --git a/sim/warrior/fury/talents.go b/sim/warrior/fury/_talents.go similarity index 97% rename from sim/warrior/fury/talents.go rename to sim/warrior/fury/_talents.go index 6c12388ec1..b490db8107 100644 --- a/sim/warrior/fury/talents.go +++ b/sim/warrior/fury/_talents.go @@ -3,10 +3,10 @@ package fury import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func (war *FuryWarrior) ApplyTalents() { diff --git a/sim/warrior/fury/bloodthirst.go b/sim/warrior/fury/bloodthirst.go index 034aa4faf7..fc286c113d 100644 --- a/sim/warrior/fury/bloodthirst.go +++ b/sim/warrior/fury/bloodthirst.go @@ -4,8 +4,8 @@ import ( "math" "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *FuryWarrior) RegisterBloodthirst() { diff --git a/sim/warrior/fury/fury.go b/sim/warrior/fury/fury.go index 31b03e26f2..fcf5f65ed9 100644 --- a/sim/warrior/fury/fury.go +++ b/sim/warrior/fury/fury.go @@ -1,10 +1,10 @@ package fury import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func RegisterFuryWarrior() { @@ -101,6 +101,8 @@ func (war *FuryWarrior) Initialize() { war.RegisterBloodthirst() } +func (war *FuryWarrior) ApplyTalents() {} + func (war *FuryWarrior) Reset(sim *core.Simulation) { war.Warrior.Reset(sim) } diff --git a/sim/warrior/heroic_leap.go b/sim/warrior/heroic_leap.go index f8751f10fe..1e4c530365 100644 --- a/sim/warrior/heroic_leap.go +++ b/sim/warrior/heroic_leap.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterHeroicLeap() { diff --git a/sim/warrior/inner_rage.go b/sim/warrior/inner_rage.go index 8fa778b4c7..3e87452876 100644 --- a/sim/warrior/inner_rage.go +++ b/sim/warrior/inner_rage.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) const InnerRageExclusionTag = "InnerRageDeadlyCalm" diff --git a/sim/warrior/protection/TestProtectionWarrior.results b/sim/warrior/protection/TestProtectionWarrior.results index cbbebf2b0b..5b3eb0939f 100644 --- a/sim/warrior/protection/TestProtectionWarrior.results +++ b/sim/warrior/protection/TestProtectionWarrior.results @@ -868,9 +868,9 @@ dps_results: { dps_results: { key: "TestProtectionWarrior-AllItems-Gladiator'sBattlegear" value: { - dps: 5957.85949 - tps: 35398.1621 - hps: 892.05722 + dps: 6955.66277 + tps: 41454.03519 + hps: 1027.78345 } } dps_results: { @@ -1604,22 +1604,22 @@ dps_results: { dps_results: { key: "TestProtectionWarrior-AllItems-Rathrak,thePoisonousMind-77195" value: { - dps: 4712.51472 - tps: 29353.72533 + dps: 4254.11915 + tps: 27061.74749 } } dps_results: { key: "TestProtectionWarrior-AllItems-Rathrak,thePoisonousMind-78475" value: { - dps: 4830.5119 - tps: 29943.71122 + dps: 4313.33601 + tps: 27357.83176 } } dps_results: { key: "TestProtectionWarrior-AllItems-Rathrak,thePoisonousMind-78484" value: { - dps: 4607.67415 - tps: 28829.52248 + dps: 4201.91713 + tps: 26800.7374 } } dps_results: { @@ -2329,8 +2329,8 @@ dps_results: { dps_results: { key: "TestProtectionWarrior-AllItems-Val'anyr,HammerofAncientKings-46017" value: { - dps: 4356.39432 - tps: 27756.95771 + dps: 4202.39413 + tps: 26986.95676 } } dps_results: { diff --git a/sim/warrior/protection/concussion_blow.go b/sim/warrior/protection/_concussion_blow.go similarity index 94% rename from sim/warrior/protection/concussion_blow.go rename to sim/warrior/protection/_concussion_blow.go index d574701761..b6369c482d 100644 --- a/sim/warrior/protection/concussion_blow.go +++ b/sim/warrior/protection/_concussion_blow.go @@ -3,8 +3,8 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) RegisterConcussionBlow() { diff --git a/sim/warrior/protection/devastate.go b/sim/warrior/protection/_devastate.go similarity index 95% rename from sim/warrior/protection/devastate.go rename to sim/warrior/protection/_devastate.go index 3f1a2eddcf..ddf843f8d0 100644 --- a/sim/warrior/protection/devastate.go +++ b/sim/warrior/protection/_devastate.go @@ -1,8 +1,8 @@ package protection import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) RegisterDevastate() { diff --git a/sim/warrior/protection/glyphs.go b/sim/warrior/protection/_glyphs.go similarity index 90% rename from sim/warrior/protection/glyphs.go rename to sim/warrior/protection/_glyphs.go index ae6296823b..4974206d2c 100644 --- a/sim/warrior/protection/glyphs.go +++ b/sim/warrior/protection/_glyphs.go @@ -3,9 +3,9 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) ApplyGlyphs() { diff --git a/sim/warrior/protection/last_stand.go b/sim/warrior/protection/_last_stand.go similarity index 91% rename from sim/warrior/protection/last_stand.go rename to sim/warrior/protection/_last_stand.go index 3f5cd49c87..6b607b2428 100644 --- a/sim/warrior/protection/last_stand.go +++ b/sim/warrior/protection/_last_stand.go @@ -3,9 +3,9 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) RegisterLastStand() { diff --git a/sim/warrior/protection/protection_test.go b/sim/warrior/protection/_protection_test.go similarity index 77% rename from sim/warrior/protection/protection_test.go rename to sim/warrior/protection/_protection_test.go index 5afffcf61f..e26f22c011 100644 --- a/sim/warrior/protection/protection_test.go +++ b/sim/warrior/protection/_protection_test.go @@ -3,9 +3,9 @@ package protection import ( "testing" - _ "github.com/wowsims/cata/sim/common" // imported to get item effects included. - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" // imported to get item effects included. + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func init() { @@ -24,7 +24,7 @@ func TestProtectionWarrior(t *testing.T) { }, Talents: DefaultTalents, Glyphs: DefaultGlyphs, - Consumes: FullConsumes, + Consumables: FullConsumesSpec, SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: PlayerOptionsBasic}, Rotation: core.GetAplRotation("../../../ui/warrior/protection/apls", "default"), @@ -55,9 +55,6 @@ var ItemFilter = core.ItemFilter{ var DefaultTalents = "320003-002-33213201121210212031" var DefaultGlyphs = &proto.Glyphs{ - Prime1: int32(proto.WarriorPrimeGlyph_GlyphOfRevenge), - Prime2: int32(proto.WarriorPrimeGlyph_GlyphOfShieldSlam), - Prime3: int32(proto.WarriorPrimeGlyph_GlyphOfDevastate), Major1: int32(proto.WarriorMajorGlyph_GlyphOfShieldWall), Major2: int32(proto.WarriorMajorGlyph_GlyphOfShockwave), Major3: int32(proto.WarriorMajorGlyph_GlyphOfThunderClap), @@ -76,9 +73,9 @@ var PlayerOptionsBasic = &proto.Player_ProtectionWarrior{ }, } -var FullConsumes = &proto.Consumes{ - Flask: proto.Flask_FlaskOfSteelskin, - DefaultPotion: proto.Potions_EarthenPotion, - PrepopPotion: proto.Potions_EarthenPotion, - Food: proto.Food_FoodBeerBasedCrocolisk, +var FullConsumesSpec = &proto.ConsumesSpec{ + FlaskId: 58085, // Flask of Steelskin + FoodId: 62670, // Beer‑Basted Crocolisk + PotId: 58090, // Earthen Potion + PrepotId: 58090, // Earthen Potion } diff --git a/sim/warrior/protection/shockwave.go b/sim/warrior/protection/_shockwave.go similarity index 94% rename from sim/warrior/protection/shockwave.go rename to sim/warrior/protection/_shockwave.go index e6da1e152e..9def1c7ab8 100644 --- a/sim/warrior/protection/shockwave.go +++ b/sim/warrior/protection/_shockwave.go @@ -3,8 +3,8 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) RegisterShockwave() { diff --git a/sim/warrior/protection/talents.go b/sim/warrior/protection/_talents.go similarity index 98% rename from sim/warrior/protection/talents.go rename to sim/warrior/protection/_talents.go index 299ad60146..e45434c911 100644 --- a/sim/warrior/protection/talents.go +++ b/sim/warrior/protection/_talents.go @@ -3,10 +3,10 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) ApplyTalents() { diff --git a/sim/warrior/protection/protection.go b/sim/warrior/protection/protection.go index 326e6d2b26..5ebfa87632 100644 --- a/sim/warrior/protection/protection.go +++ b/sim/warrior/protection/protection.go @@ -1,10 +1,10 @@ package protection import ( - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" + "github.com/wowsims/mop/sim/warrior" ) func RegisterProtectionWarrior() { @@ -140,6 +140,8 @@ func (war *ProtectionWarrior) Initialize() { war.RegisterShieldSlam() } +func (war *ProtectionWarrior) ApplyTalents() {} + func (war *ProtectionWarrior) Reset(sim *core.Simulation) { war.Warrior.Reset(sim) } diff --git a/sim/warrior/protection/shield_slam.go b/sim/warrior/protection/shield_slam.go index ec753b8a6f..f831120284 100644 --- a/sim/warrior/protection/shield_slam.go +++ b/sim/warrior/protection/shield_slam.go @@ -3,8 +3,8 @@ package protection import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/warrior" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/warrior" ) func (war *ProtectionWarrior) RegisterShieldSlam() { diff --git a/sim/warrior/recklessness.go b/sim/warrior/recklessness.go index 95826dab37..8f977df9ae 100644 --- a/sim/warrior/recklessness.go +++ b/sim/warrior/recklessness.go @@ -3,7 +3,7 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" ) func (warrior *Warrior) RegisterRecklessnessCD() { diff --git a/sim/warrior/shield_wall.go b/sim/warrior/shield_wall.go index fa2cbca114..85f4d95b55 100644 --- a/sim/warrior/shield_wall.go +++ b/sim/warrior/shield_wall.go @@ -3,8 +3,8 @@ package warrior import ( "time" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" ) func (warrior *Warrior) RegisterShieldWallCD() { diff --git a/sim/warrior/warrior.go b/sim/warrior/warrior.go index 95f880b20a..ce813b8889 100644 --- a/sim/warrior/warrior.go +++ b/sim/warrior/warrior.go @@ -1,16 +1,12 @@ package warrior import ( - "time" - - "github.com/wowsims/cata/sim/common/cata" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + cata "github.com/wowsims/mop/sim/common/cata" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) -var TalentTreeSizes = [3]int{20, 21, 20} - type WarriorInputs struct { StanceSnapshot bool } @@ -85,7 +81,7 @@ type Warrior struct { WarriorInputs // Current state - Stance Stance + // Stance Stance EnrageEffectMultiplier float64 CriticalBlockChance []float64 // Can be gained as non-prot via certain talents and spells PrecisionKnown bool @@ -152,47 +148,47 @@ func (warrior *Warrior) GetCharacter() *core.Character { return &warrior.Character } -func (warrior *Warrior) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { - if warrior.Talents.Rampage { - raidBuffs.Rampage = true - } -} +// func (warrior *Warrior) AddRaidBuffs(raidBuffs *proto.RaidBuffs) { +// if warrior.Talents.Rampage { +// raidBuffs.Rampage = true +// } +// } func (warrior *Warrior) AddPartyBuffs(_ *proto.PartyBuffs) { } func (warrior *Warrior) Initialize() { - warrior.registerStances() + // warrior.registerStances() warrior.EnrageEffectMultiplier = 1.0 warrior.hsCleaveCD = warrior.NewTimer() warrior.shoutsCD = warrior.NewTimer() - warrior.RegisterBerserkerRageSpell() - warrior.RegisterColossusSmash() - warrior.RegisterDemoralizingShoutSpell() - warrior.RegisterExecuteSpell() - warrior.RegisterHeroicStrikeSpell() - warrior.RegisterCleaveSpell() + // warrior.RegisterBerserkerRageSpell() + // warrior.RegisterColossusSmash() + // warrior.RegisterDemoralizingShoutSpell() + // warrior.RegisterExecuteSpell() + // warrior.RegisterHeroicStrikeSpell() + // warrior.RegisterCleaveSpell() warrior.RegisterHeroicLeap() - warrior.RegisterHeroicThrow() + // warrior.RegisterHeroicThrow() warrior.RegisterInnerRage() - warrior.RegisterOverpowerSpell() + // warrior.RegisterOverpowerSpell() warrior.RegisterRecklessnessCD() - warrior.RegisterRendSpell() - warrior.RegisterRevengeSpell() - warrior.RegisterShatteringThrowCD() - warrior.RegisterShieldBlockCD() + // warrior.RegisterRendSpell() + // warrior.RegisterRevengeSpell() + // warrior.RegisterShatteringThrowCD() + // warrior.RegisterShieldBlockCD() warrior.RegisterShieldWallCD() - warrior.RegisterShouts() - warrior.RegisterSlamSpell() - warrior.RegisterSunderArmor() - warrior.RegisterThunderClapSpell() - warrior.RegisterWhirlwindSpell() - warrior.RegisterCharge() + // warrior.RegisterShouts() + // warrior.RegisterSlamSpell() + // warrior.RegisterSunderArmor() + // warrior.RegisterThunderClapSpell() + // warrior.RegisterWhirlwindSpell() + // warrior.RegisterCharge() } func (warrior *Warrior) Reset(_ *core.Simulation) { - warrior.Stance = StanceNone + // warrior.Stance = StanceNone } func NewWarrior(character *core.Character, talents string, inputs WarriorInputs) *Warrior { @@ -202,7 +198,7 @@ func NewWarrior(character *core.Character, talents string, inputs WarriorInputs) WarriorInputs: inputs, ClassSpellScaling: core.GetClassSpellScalingCoefficient(proto.Class_ClassWarrior), } - core.FillTalentsProto(warrior.Talents.ProtoReflect(), talents, TalentTreeSizes) + core.FillTalentsProto(warrior.Talents.ProtoReflect(), talents) warrior.PseudoStats.CanParry = true warrior.PrecisionKnown = false @@ -211,7 +207,7 @@ func NewWarrior(character *core.Character, talents string, inputs WarriorInputs) // Dodge no longer granted from agility warrior.AddStatDependency(stats.Strength, stats.AttackPower, 2) warrior.AddStat(stats.ParryRating, -warrior.GetBaseStats()[stats.Strength]*0.27) // Does not apply to base Strength - warrior.AddStatDependency(stats.Strength, stats.ParryRating, 0.27) // Change from block to pary in cata (4.2 Changed from 25->27 percent) + warrior.AddStatDependency(stats.Strength, stats.ParryRating, 0.27) // Change from block to pary in mop (4.2 Changed from 25->27 percent) warrior.AddStatDependency(stats.BonusArmor, stats.Armor, 1) // Base dodge unaffected by Diminishing Returns @@ -230,10 +226,6 @@ func NewWarrior(character *core.Character, talents string, inputs WarriorInputs) return warrior } -func (warrior *Warrior) HasPrimeGlyph(glyph proto.WarriorPrimeGlyph) bool { - return warrior.HasGlyph(int32(glyph)) -} - func (warrior *Warrior) HasMajorGlyph(glyph proto.WarriorMajorGlyph) bool { return warrior.HasGlyph(int32(glyph)) } @@ -242,11 +234,6 @@ func (warrior *Warrior) HasMinorGlyph(glyph proto.WarriorMinorGlyph) bool { return warrior.HasGlyph(int32(glyph)) } -func (warrior *Warrior) IntensifyRageCooldown(baseCd time.Duration) time.Duration { - baseCd /= 100 - return []time.Duration{baseCd * 100, baseCd * 90, baseCd * 80}[warrior.Talents.IntensifyRage] -} - // Shared cooldown for Deadly Calm and Recklessness Activation func (warrior *Warrior) RecklessnessDeadlyCalmLock() *core.Timer { return warrior.Character.GetOrInitTimer(&warrior.recklessnessDeadlyCalmCD) diff --git a/sim/warrior/weapon_dmg_pct_helper.go b/sim/warrior/weapon_dmg_pct_helper.go index b862a546f1..b6fd8d39de 100644 --- a/sim/warrior/weapon_dmg_pct_helper.go +++ b/sim/warrior/weapon_dmg_pct_helper.go @@ -10,7 +10,6 @@ type SpellEffectWeaponDmgPctConfig struct { } func (config *SpellEffectWeaponDmgPctConfig) CalcSpellDamagePct() float64 { - return config.BaseWeapon_Pct + (config.EffectPerLevel * (float64(config.MaxSpellLevel - config.BaseSpellLevel)) / 100) } diff --git a/sim/wasm/main.go b/sim/wasm/main.go index ad7b3c91b9..4b68573e44 100644 --- a/sim/wasm/main.go +++ b/sim/wasm/main.go @@ -9,10 +9,10 @@ import ( "strings" "syscall/js" - "github.com/wowsims/cata/sim" - "github.com/wowsims/cata/sim/core" - proto "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + "github.com/wowsims/mop/sim" + "github.com/wowsims/mop/sim/core" + proto "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" protojson "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" ) diff --git a/sim/web/dist.go.tmpl b/sim/web/dist.go.tmpl index c4230789e5..a6e0a8ff28 100644 --- a/sim/web/dist.go.tmpl +++ b/sim/web/dist.go.tmpl @@ -6,5 +6,5 @@ import ( "embed" ) -//go:embed cata +//go:embed mop var FS embed.FS diff --git a/sim/web/main.go b/sim/web/main.go index 2a3fd1367b..6ce0aad539 100644 --- a/sim/web/main.go +++ b/sim/web/main.go @@ -20,11 +20,11 @@ import ( uuid "github.com/google/uuid" "github.com/pkg/browser" - dist "github.com/wowsims/cata/binary_dist" - "github.com/wowsims/cata/sim" - "github.com/wowsims/cata/sim/core" - proto "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/simsignals" + dist "github.com/wowsims/mop/binary_dist" + "github.com/wowsims/mop/sim" + "github.com/wowsims/mop/sim/core" + proto "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/simsignals" googleProto "google.golang.org/protobuf/proto" ) @@ -54,7 +54,7 @@ func main() { fmt.Printf("Version: %s\n", Version) if !*skipVersionCheck && Version != "development" { go func() { - resp, err := http.Get("https://api.github.com/repos/wowsims/cata/releases/latest") + resp, err := http.Get("https://api.github.com/repos/wowsims/mop/releases/latest") if err != nil { return } @@ -307,7 +307,7 @@ func (s *server) runServer(useFS bool, host string, launchBrowser bool, simName }) http.HandleFunc("/", func(resp http.ResponseWriter, req *http.Request) { if req.URL.Path == "/" { - http.Redirect(resp, req, "/cata/", http.StatusPermanentRedirect) + http.Redirect(resp, req, "/mop/", http.StatusPermanentRedirect) return } resp.Header().Add("Cache-Control", "no-cache") @@ -329,7 +329,7 @@ func (s *server) runServer(useFS bool, host string, launchBrowser bool, simName if strings.HasPrefix(host, ":") { host = "localhost" + host } - url := fmt.Sprintf("http://%s/cata/%s", host, simName) + url := fmt.Sprintf("http://%s/mop/%s", host, simName) log.Printf("Launching interface on %s", url) go func() { err := browser.OpenURL(url) diff --git a/sim/web/main_test.go b/sim/web/main_test.go index b06dc8fdb2..5a72b146e5 100644 --- a/sim/web/main_test.go +++ b/sim/web/main_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - _ "github.com/wowsims/cata/sim/common" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" + _ "github.com/wowsims/mop/sim/common" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" googleProto "google.golang.org/protobuf/proto" ) diff --git a/tools/DB2ToSqlite/.gitignore b/tools/DB2ToSqlite/.gitignore new file mode 100644 index 0000000000..04e6b849d9 --- /dev/null +++ b/tools/DB2ToSqlite/.gitignore @@ -0,0 +1,422 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml + +TactKey.csv + +# Other stuff +dbcs +cache +caches +temp +manifests +knownPushIDs.json +*.csv +*.csv.bak +*.txt +versionHistory.json +WTL.db +WTL.db-journal +extract +dump +db.db +listfile.csv +dbfilesclient +DBDCache +wowsims.db +.idea \ No newline at end of file diff --git a/tools/DB2ToSqlite/DB2ToSqliteTool.csproj b/tools/DB2ToSqlite/DB2ToSqliteTool.csproj new file mode 100644 index 0000000000..f3b7f8d093 --- /dev/null +++ b/tools/DB2ToSqlite/DB2ToSqliteTool.csproj @@ -0,0 +1,28 @@ + + + + net9.0 + enable + enable + + + + + .\references\DBDC.IO.dll + + + \references\DBCD.dll + + + \references\TACTSharp.dll + + + \references\DBDefsLib.dll + + + + + + + + diff --git a/tools/DB2ToSqlite/Helpers/BindableSettings.cs b/tools/DB2ToSqlite/Helpers/BindableSettings.cs new file mode 100644 index 0000000000..8bb1eb9823 --- /dev/null +++ b/tools/DB2ToSqlite/Helpers/BindableSettings.cs @@ -0,0 +1,68 @@ +using TACTSharp; + +namespace DB2ToSqliteTool.Helpers; + +public class BindableSettings : Settings +{ + public new string Region + { + get => base.Region; + set => base.Region = value; + } + + public new string Product + { + get => base.Product; + set => base.Product = value; + } + + public new RootInstance.LocaleFlags Locale + { + get => base.Locale; + set => base.Locale = value; + } + + public new RootInstance.LoadMode RootMode + { + get => base.RootMode; + set => base.RootMode = value; + } + + public new string? BaseDir + { + get => base.BaseDir; + set => base.BaseDir = value; + } + + public new string? BuildConfig + { + get => base.BuildConfig; + set => base.BuildConfig = value; + } + + public new string? CDNConfig + { + get => base.CDNConfig; + set => base.CDNConfig = value; + } + + public new string CacheDir + { + get => base.CacheDir; + set => base.CacheDir = value; + } + + public new bool ListfileFallback + { + get => base.ListfileFallback; + set => base.ListfileFallback = value; + } + + public new string ListfileURL + { + get => base.ListfileURL; + set => base.ListfileURL = value; + } + public List GameTables {get; set; } = []; + public string GameTablesOutDirectory {get; set; } = ""; +} diff --git a/tools/DB2ToSqlite/Helpers/DBCacheParser.cs b/tools/DB2ToSqlite/Helpers/DBCacheParser.cs new file mode 100644 index 0000000000..44bfa8a901 --- /dev/null +++ b/tools/DB2ToSqlite/Helpers/DBCacheParser.cs @@ -0,0 +1,51 @@ +namespace DB2ToSqliteTool.Services; + +public struct HotfixEntry +{ + public uint regionID; + public int pushID; + public uint uniqueID; + public uint tableHash; + public uint recordID; + public int dataSize; + public byte status; + public byte[] data; +} + +//https://github.com/Marlamin/wow.tools.local/blob/main/Services/DBCacheParser.cs +public class DBCacheParser +{ + public List hotfixes = []; + public int build; + + public DBCacheParser(string filename) + { + using (var fs = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) + using (var bin = new BinaryReader(fs)) + { + var hotfix = new HotfixEntry(); + bin.ReadUInt32(); // Signature + var version = bin.ReadUInt32(); + if (version != 9) + //Console.WriteLine("Unsupported DBCache version " + version + ", skipping"); + return; + build = bin.ReadInt32(); + bin.BaseStream.Position += 32; + + while (bin.BaseStream.Position < bin.BaseStream.Length) + { + bin.ReadUInt32(); // Signature + hotfix.regionID = bin.ReadUInt32(); + hotfix.pushID = bin.ReadInt32(); + hotfix.uniqueID = bin.ReadUInt32(); + hotfix.tableHash = bin.ReadUInt32(); + hotfix.recordID = bin.ReadUInt32(); + hotfix.dataSize = bin.ReadInt32(); + hotfix.status = bin.ReadByte(); + bin.ReadBytes(3); + hotfix.data = bin.ReadBytes(hotfix.dataSize); + hotfixes.Add(hotfix); + } + } + } +} \ No newline at end of file diff --git a/tools/DB2ToSqlite/Helpers/HotfixManager.cs b/tools/DB2ToSqlite/Helpers/HotfixManager.cs new file mode 100644 index 0000000000..a5a428a1e1 --- /dev/null +++ b/tools/DB2ToSqlite/Helpers/HotfixManager.cs @@ -0,0 +1,121 @@ +using System.Text.Json; +using DBCD.IO; + +//https://github.com/Marlamin/wow.tools.local/blob/main/Services/HotfixManager.cs +namespace DB2ToSqliteTool.Services; + +public static class HotfixManager +{ + public static Dictionary hotfixReaders = []; + public static Dictionary> dbcacheParsers = []; + public static Dictionary? pushIDDetected = []; + + public static Dictionary tableNames = Directory.EnumerateFiles("DBDCache/") + .ToDictionary(x => Hash(Path.GetFileNameWithoutExtension(x).ToUpper()), + x => Path.GetFileNameWithoutExtension(x)); + + private static void LoadPushIDs() + { + pushIDDetected = + JsonSerializer.Deserialize>(File.ReadAllText("knownPushIDs.json")); + } + + private static void SavePushIDs() + { + File.WriteAllText("knownPushIDs.json", JsonSerializer.Serialize(pushIDDetected)); + } + + public static void LoadCaches(string wowLocation) + { + if (!File.Exists("knownPushIDs.json")) + SavePushIDs(); + + LoadPushIDs(); + + Console.WriteLine("Reloading all hotfixes.."); + hotfixReaders.Clear(); + + if (Directory.Exists("caches")) + foreach (var file in Directory.GetFiles("caches", "*.bin", SearchOption.AllDirectories)) + { + var reader = new HotfixReader(file); + if (!hotfixReaders.ContainsKey((uint)reader.BuildId)) + hotfixReaders.Add((uint)reader.BuildId, reader); + + hotfixReaders[(uint)reader.BuildId].CombineCache(file); + + if (!dbcacheParsers.ContainsKey((uint)reader.BuildId)) + dbcacheParsers.Add((uint)reader.BuildId, []); + + var newCache = new DBCacheParser(file); + dbcacheParsers[(uint)reader.BuildId].Add(newCache); + + var newPushIDs = newCache.hotfixes.Where(x => x.pushID > 0 && !pushIDDetected.ContainsKey(x.pushID)) + .Select(x => x.pushID).ToList(); + foreach (var newPushID in newPushIDs) + { + pushIDDetected.TryAdd(newPushID, DateTime.Now); + Console.WriteLine("Detected new pushID " + newPushID + " at " + DateTime.Now.ToShortTimeString()); + } + + Console.WriteLine("Loaded hotfixes from caches directory for build " + reader.BuildId); + } + + + foreach (var file in Directory.GetFiles(wowLocation, "DBCache.bin", SearchOption.AllDirectories)) + { + var reader = new HotfixReader(file); + if (!hotfixReaders.ContainsKey((uint)reader.BuildId)) + hotfixReaders.Add((uint)reader.BuildId, reader); + + hotfixReaders[(uint)reader.BuildId].CombineCache(file); + + if (!dbcacheParsers.ContainsKey((uint)reader.BuildId)) + dbcacheParsers.Add((uint)reader.BuildId, []); + + var newCache = new DBCacheParser(file); + dbcacheParsers[(uint)reader.BuildId].Add(newCache); + + var newPushIDs = newCache.hotfixes.Where(x => x.pushID > 0 && !pushIDDetected.ContainsKey(x.pushID)) + .Select(x => x.pushID).ToList(); + foreach (var newPushID in newPushIDs) + { + pushIDDetected.TryAdd(newPushID, DateTime.Now); + Console.WriteLine("Detected new pushID " + newPushID + " at " + DateTime.Now.ToShortTimeString()); + } + + Console.WriteLine("Loaded hotfixes from client for build " + reader.BuildId); + } + + SavePushIDs(); + } + + public static void Clear() + { + hotfixReaders.Clear(); + dbcacheParsers.Clear(); + } + + public static uint Hash(string s) + { + var s_hashtable = new uint[] + { + 0x486E26EE, 0xDCAA16B3, 0xE1918EEF, 0x202DAFDB, + 0x341C7DC7, 0x1C365303, 0x40EF2D37, 0x65FD5E49, + 0xD6057177, 0x904ECE93, 0x1C38024F, 0x98FD323B, + 0xE3061AE7, 0xA39B0FA1, 0x9797F25F, 0xE4444563 + }; + + uint v = 0x7fed7fed; + var x = 0xeeeeeeee; + for (var i = 0; i < s.Length; i++) + { + var c = (byte)s[i]; + v += x; + v ^= s_hashtable[(c >> 4) & 0xf] - s_hashtable[c & 0xf]; + x = x * 33 + v + c + 3; + } + + return v; + } +} \ No newline at end of file diff --git a/tools/DB2ToSqlite/Helpers/SQLiteDbCreator.cs b/tools/DB2ToSqlite/Helpers/SQLiteDbCreator.cs new file mode 100644 index 0000000000..ff85d9affe --- /dev/null +++ b/tools/DB2ToSqlite/Helpers/SQLiteDbCreator.cs @@ -0,0 +1,122 @@ +using DBDefsLib; +using Microsoft.Data.Sqlite; + +namespace DB2ToSqliteTool.Helpers; + +public static class SqliteDbCreator +{ + public static void CreateDatabaseWithDefinitions(Dictionary definitions, + string sqliteFilePath, uint build) + { + if (File.Exists(sqliteFilePath)) File.Delete(sqliteFilePath); + + var connectionString = new SqliteConnectionStringBuilder + { + DataSource = sqliteFilePath, + Mode = SqliteOpenMode.ReadWriteCreate + }.ToString(); + + using (var connection = new SqliteConnection(connectionString)) + { + connection.Open(); + + using (var pragmaCommand = connection.CreateCommand()) + { + pragmaCommand.CommandText = "PRAGMA foreign_keys = ON;"; + pragmaCommand.ExecuteNonQuery(); + } + + using (var transaction = connection.BeginTransaction()) + { + foreach (var kvp in definitions) + { + var tableName = kvp.Key; + var dbDef = kvp.Value; + + var versionDef = dbDef.versionDefinitions.LastOrDefault(x => x.builds.Any(y => y.build == build)); + + var columnDefinitionsSql = new List(); + var foreignKeysSql = new List(); + + foreach (var def in versionDef.definitions) + { + if (!dbDef.columnDefinitions.TryGetValue(def.name, out var colDef)) + throw new Exception($"Column definition for {def.name} not found in table {tableName}"); + + if (def.arrLength == 0) + { + var sqliteType = MapToSQLiteType(colDef.type); + var nullability = !string.IsNullOrEmpty(colDef.foreignTable) && + !string.IsNullOrEmpty(colDef.foreignColumn) && + !def.isID + ? " NULL" + : ""; + var columnSql = $"[{def.name}] {sqliteType}{nullability}"; + if (def.isID) columnSql += " PRIMARY KEY"; + columnDefinitionsSql.Add(columnSql); + + if (!string.IsNullOrEmpty(colDef.foreignTable) && + !string.IsNullOrEmpty(colDef.foreignColumn)) + foreignKeysSql.Add( + $"CREATE INDEX IF NOT EXISTS IX_{tableName}_{def.name} ON [{tableName}] ([{def.name}])"); + } + else + { + var mainColumnSql = $"[{def.name}] TEXT"; + + columnDefinitionsSql.Add(mainColumnSql); + + // (For example, an "int" or "uint" becomes INTEGER, "float" becomes REAL, etc.) + var elementType = MapToSQLiteType(colDef.type); + + // Create a generated column for each array index. + for (var i = 0; i < def.arrLength; i++) + { + // Generated column syntax: + // [ColumnName_i] GENERATED ALWAYS AS (json_extract([ColumnName], '$[i]')) VIRTUAL + var genColumn = + $"[{def.name}_{i}] {elementType} GENERATED ALWAYS AS (json_extract([{def.name}], '$[{i}]')) VIRTUAL"; + columnDefinitionsSql.Add(genColumn); + } + } + } + + var allColumns = new List(columnDefinitionsSql); + + + var createTableSql = $"CREATE TABLE IF NOT EXISTS [{tableName}] ({string.Join(", ", allColumns)});"; + + using (var command = connection.CreateCommand()) + { + command.CommandText = createTableSql; + command.Transaction = transaction; + command.ExecuteNonQuery(); + } + + foreach (var indexSql in foreignKeysSql) + using (var cmd = connection.CreateCommand()) + { + cmd.CommandText = indexSql; + cmd.Transaction = transaction; + cmd.ExecuteNonQuery(); + } + } + + transaction.Commit(); + } + + connection.Close(); + } + } + + private static string MapToSQLiteType(string type) + { + return type switch + { + "int" or "uint" => "INTEGER", + "float" => "REAL", + "string" or "locstring" => "TEXT", + _ => throw new Exception("Unsupported type: " + type) + }; + } +} \ No newline at end of file diff --git a/tools/DB2ToSqlite/Helpers/SqliteDataInserter.cs b/tools/DB2ToSqlite/Helpers/SqliteDataInserter.cs new file mode 100644 index 0000000000..bf08e18ce7 --- /dev/null +++ b/tools/DB2ToSqlite/Helpers/SqliteDataInserter.cs @@ -0,0 +1,82 @@ +using System.Text.Json; +using System; +using System.Linq; +using Microsoft.Data.Sqlite; +using DBDefsLib; +using DBCD; + +namespace DB2ToSqliteTool.Helpers; + +public static class SqliteDataInserter +{ + public static void InsertRows(IDBCDStorage storage, string tableName, Structs.DBDefinition dbDef, + SqliteConnection connection, uint build) + { + var versionDef = dbDef.versionDefinitions.LastOrDefault(x => x.builds.Any(y => y.build == build)); + + var columnNames = versionDef.definitions.Select(def => def.name).ToList(); + + + var pkDefinition = versionDef.definitions.FirstOrDefault(def => def.isID); + + var pkColumn = pkDefinition.name; + + + var columnsPart = string.Join(", ", columnNames.Select(c => $"[{c}]")); + var valuesPart = string.Join(", ", columnNames.Select(c => "@" + c)); + + + var updateColumns = columnNames.Where(c => c != pkColumn).ToList(); + var updateClause = updateColumns.Any() + ? "DO UPDATE SET " + string.Join(", ", updateColumns.Select(c => $"[{c}] = excluded.[{c}]")) + : "DO NOTHING"; + + + var upsertSql = + $"INSERT INTO [{tableName}] ({columnsPart}) VALUES ({valuesPart}) ON CONFLICT([{pkColumn}]) {updateClause};"; + + + using (var transaction = connection.BeginTransaction()) + { + using (var command = connection.CreateCommand()) + { + command.Transaction = transaction; + command.CommandText = upsertSql; + + foreach (var kvp in storage.Values) + { + command.Parameters.Clear(); + + foreach (var col in columnNames) + { + var value = kvp[col] ?? DBNull.Value; + var colDef = versionDef.definitions.FirstOrDefault(d => d.name == col); + if (colDef.isRelation && value == (object)0) value = DBNull.Value; + + if (colDef.arrLength > 0) + if (value is Array arr) + value = JsonSerializer.Serialize(arr); + + command.Parameters.AddWithValue("@" + col, value); + } + + try + { + command.ExecuteNonQuery(); + } + catch (SqliteException se) + { + Console.WriteLine("Error executing command:"); + Console.WriteLine(command.CommandText); + foreach (SqliteParameter param in command.Parameters) + Console.WriteLine($"{param.ParameterName} = {param.Value}"); + Console.WriteLine("Exception: " + se.Message); + throw; + } + } + } + + transaction.Commit(); + } + } +} \ No newline at end of file diff --git a/tools/DB2ToSqlite/Program.cs b/tools/DB2ToSqlite/Program.cs new file mode 100644 index 0000000000..0f182e4d4e --- /dev/null +++ b/tools/DB2ToSqlite/Program.cs @@ -0,0 +1,133 @@ +using DB2ToSqliteTool.Helpers; +using DB2ToSqliteTool.Services; +using DBCD; +using DBCD.IO; +using DBCD.Providers; +using DBDefsLib; +using Microsoft.Data.Sqlite; +using TACTSharp; + +string settingsFile = "appsettings.json"; +string databaseFile = "wowsims.db"; + +// Parse command-line arguments for settings and output file overrides. +for (int i = 0; i < args.Length; i++) +{ + if (args[i] == "--settings" || args[i] == "-s") + { + if (i + 1 < args.Length) + { + settingsFile = args[i + 1]; + } + } + if (args[i] == "--output" || args[i] == "-output" || args[i] == "-o") + { + if (i + 1 < args.Length) + { + databaseFile = args[i + 1]; + } + } +} +string targetDirectoryFromOutput = Path.GetDirectoryName(databaseFile); +// Derive targetDirectory from the databaseFile’s directory (if specified) or fall back to configuration. + +var configuration = new ConfigurationBuilder() + .SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile(settingsFile, optional: false, reloadOnChange: true) + .Build(); + +var settings = configuration.GetSection("Settings").Get(); +if (settings == null) throw new Exception("Failed to load Settings from configuration."); + +var listFile = new Listfile(); + +listFile.Initialize(new CDN(settings), settings); + +var buildInfo = new BuildInfo(Path.Combine(settings.BaseDir, ".build.info"), settings, new CDN(settings)); + +var buildInstance = new BuildInstance(); +var entry = buildInfo.Entries.First(x => x.Product == settings.Product); + +buildInstance.Settings.BuildConfig ??= entry.BuildConfig; +buildInstance.Settings.CDNConfig ??= entry.CDNConfig; + +buildInstance.LoadConfigs(buildInstance.Settings.BuildConfig, buildInstance.Settings.CDNConfig); +buildInstance.Load(); + +var tables = configuration.GetSection("Tables").Get>(); +var gameTables = configuration.GetSection("GameTables").Get>() ; + +var gameTablesOutDir = configuration.GetSection("GameTablesOutDirectory").Get() ?? "GameTables"; + +var targetDirectory = configuration.GetValue("TargetDirectory") ?? "dbfilesclient"; + +Directory.CreateDirectory(targetDirectory); +Directory.CreateDirectory(gameTablesOutDir); + +var fsProvider = new FilesystemDBCProvider(targetDirectory, true); +var githubDbdProvider = new GithubDBDProvider(true); + +var dbcd = new DBCD.DBCD(fsProvider, githubDbdProvider); + +var dbDefinitions = new Dictionary(); +var storageMap = new Dictionary(); +if (gameTables != null && gameTables.Any()) { + foreach (var gameTable in gameTables) + { + var file = buildInstance.OpenFileByFDID(listFile.GetFDID($"gametables/{gameTable}.txt")); + await File.WriteAllBytesAsync($"{gameTablesOutDir}/{gameTable}.txt", file); + } +} +if (tables != null) + foreach (var tableName in tables) + { + var file = buildInstance.OpenFileByFDID(listFile.GetFDID($"{targetDirectory}/{tableName}.db2")); + await File.WriteAllBytesAsync($"{targetDirectory}/{tableName}.db2", file); + + var tableDefStream = githubDbdProvider.StreamForTableName(tableName, entry.Version); + var dbReader = new DBDReader(); + var tableDefinition = dbReader.Read(tableDefStream, true); + + var storage = dbcd.Load(tableName, entry.Version); + + dbDefinitions.Add(tableName, tableDefinition); + storageMap.Add(tableName, storage); + } + +var splitBuild = entry.Version.Split('.'); +if (splitBuild.Length != 4) + throw new Exception("Invalid build!"); + +var buildNumber = uint.Parse(splitBuild[3]); +SqliteDbCreator.CreateDatabaseWithDefinitions(dbDefinitions, databaseFile, buildNumber); + + +if (HotfixManager.hotfixReaders.Count == 0) + HotfixManager.LoadCaches(settings.BaseDir); +if (!HotfixManager.hotfixReaders.TryGetValue(buildNumber, out var hotfixReader)) { + + Console.WriteLine("No hotfixes found"); +} + +var connectionString = new SqliteConnectionStringBuilder +{ + DataSource = databaseFile, + Mode = SqliteOpenMode.ReadWriteCreate +}.ToString(); + +await using var conn = new SqliteConnection(connectionString); + +conn.Open(); + +foreach (var tableName in tables) +{ + var storage = storageMap[tableName]; + if(hotfixReader is not null) { + storage.ApplyingHotfixes(hotfixReader); + } + SqliteDataInserter.InsertRows(storage, tableName, dbDefinitions[tableName], conn, buildNumber); +} + +conn.Close(); + +Console.WriteLine("Processing completed."); diff --git a/tools/DB2ToSqlite/Properties/launchSettings.json b/tools/DB2ToSqlite/Properties/launchSettings.json new file mode 100644 index 0000000000..afa569baaa --- /dev/null +++ b/tools/DB2ToSqlite/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5221", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7268;http://localhost:5221", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/tools/DB2ToSqlite/appsettings.Development.json b/tools/DB2ToSqlite/appsettings.Development.json new file mode 100644 index 0000000000..ff66ba6b28 --- /dev/null +++ b/tools/DB2ToSqlite/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/tools/DB2ToSqlite/appsettings.json b/tools/DB2ToSqlite/appsettings.json new file mode 100644 index 0000000000..d1459cc1c9 --- /dev/null +++ b/tools/DB2ToSqlite/appsettings.json @@ -0,0 +1,64 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Settings": { + "BaseDir": "F:\\World of Warcraft", + "BuildConfig": "buildConfig", + "CDNConfig": "cdnConfig", + "Region": "us", + "Product": "wow_classic" + }, + "TargetDirectory": "dbfilesclient", + "DatabaseFile": "wowsims.db", + "Tables": [ + "Spell", + "Item", + "GemProperties", + "ItemSet", + "ItemSetSpell", + "ItemSubClass", + "ItemSubClassMask", + "ItemReforge", + "ItemBonus", + "ItemEffect", + "ItemClass", + "ItemRandomProperties", + "ItemExtendedCost", + "ItemRandomSuffix", + "RandPropPoints", + "ItemDamageAmmo", + "ItemDamageOneHand", + "ItemDamageOneHandCaster", + "ItemDamageRanged", + "ItemDamageThrown", + "ItemDamageTwoHand", + "ItemDamageTwoHandCaster", + "ItemDamageWand", + "ItemNameDescription", + "ItemSparse", + "ArmorLocation", + "ItemArmorTotal", + "ItemArmorShield", + "ItemArmorQuality", + "SkillLineAbility", + "Curve", + "CurvePoint", + "Difficulty", + "SpellEquippedItems", + "SpellRadius", + "SpellMisc", + "SpellLevels", + "SpellName", + "ScalingStatDistribution", + "SpellCooldowns", + "SpellScaling", + "SpellClassOptions", + "SpellItemEnchantment", + "SpellEffect" + ] +} diff --git a/tools/DB2ToSqlite/references/DBCD.IO.dll b/tools/DB2ToSqlite/references/DBCD.IO.dll new file mode 100644 index 0000000000..c16e55a117 Binary files /dev/null and b/tools/DB2ToSqlite/references/DBCD.IO.dll differ diff --git a/tools/DB2ToSqlite/references/DBCD.dll b/tools/DB2ToSqlite/references/DBCD.dll new file mode 100644 index 0000000000..4b7b59950e Binary files /dev/null and b/tools/DB2ToSqlite/references/DBCD.dll differ diff --git a/tools/DB2ToSqlite/references/DBDefsLib.dll b/tools/DB2ToSqlite/references/DBDefsLib.dll new file mode 100644 index 0000000000..8c94ac7fc5 Binary files /dev/null and b/tools/DB2ToSqlite/references/DBDefsLib.dll differ diff --git a/tools/DB2ToSqlite/references/TACTSharp.dll b/tools/DB2ToSqlite/references/TACTSharp.dll new file mode 100644 index 0000000000..a252f082fa Binary files /dev/null and b/tools/DB2ToSqlite/references/TACTSharp.dll differ diff --git a/tools/base_stats_parser.py b/tools/base_stats_parser.py index 68a8c8c790..b1e78957b4 100644 --- a/tools/base_stats_parser.py +++ b/tools/base_stats_parser.py @@ -17,7 +17,7 @@ COMBAT_RATINGS = "combatratings.txt" RATING_SCALAR = "octclasscombatratingscalar.txt" -BASE_LEVEL = 85 +BASE_LEVEL = 90 Offs = { "Warrior": 0, @@ -73,8 +73,8 @@ def GenExtraStatsGoFile(cs: ClassStats): // ************************************** import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) ''' @@ -90,25 +90,25 @@ def GenExtraStatsGoFile(cs: ClassStats): output += '''var CritPerAgiMaxLevel = map[proto.Class]float64{ proto.Class_ClassUnknown: 0.0,''' - for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Druid"]: + for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Monk", "Druid"]: cName = c.split() cName = ''.join(cName) - mc = float(cs.MCrit[str(BASE_LEVEL)][Offs[c]])*100 - output += f"\nproto.Class_Class{cName}: {mc:.4f}," + mc = 1/float(cs.MCrit[str(BASE_LEVEL)][Offs[c]]) + output += f"\nproto.Class_Class{cName}: {mc:.8f}," output += "\n}\n" output += '''var CritPerIntMaxLevel = map[proto.Class]float64{ proto.Class_ClassUnknown: 0.0,''' - for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Druid"]: + for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Monk", "Druid"]: cName = c.split() cName = ''.join(cName) - mc = float(cs.SCrit[str(BASE_LEVEL)][Offs[c]])*100 - output += f"\nproto.Class_Class{cName}: {mc:.4f}," + mc = 1/float(cs.SCrit[str(BASE_LEVEL)][Offs[c]]) + output += f"\nproto.Class_Class{cName}: {mc:.8f}," output += "\n}\n" output += '''var ExtraClassBaseStats = map[proto.Class]stats.Stats{ proto.Class_ClassUnknown: {},''' - for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Druid"]: + for c in ["Warrior", "Paladin", "Hunter", "Rogue", "Priest", "Death Knight", "Shaman", "Mage", "Warlock", "Monk", "Druid"]: cName = c.split() cName = ''.join(cName) output += f"\nproto.Class_Class{cName}: {{" diff --git a/tools/database/atlasloot.go b/tools/database/atlasloot.go index efac50470d..78b0bb4a59 100644 --- a/tools/database/atlasloot.go +++ b/tools/database/atlasloot.go @@ -7,9 +7,9 @@ import ( "strconv" "strings" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/tools" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/tools" ) func ReadAtlasLootData() *WowDatabase { @@ -318,11 +318,12 @@ func readZoneData(db *WowDatabase) { zoneIDs = append(zoneIDs, zoneID) } zoneIDStrs := core.MapSlice(zoneIDs, func(zoneID int32) string { return strconv.Itoa(int(zoneID)) }) - + //Todo: This is the only place still needing the tooltip manager + //Remove it zoneTM := &WowheadTooltipManager{ TooltipManager{ FilePath: "", - UrlPattern: "https://nether.wowhead.com/cata/tooltip/zone/%s", + UrlPattern: "https://nether.wowhead.com/mop-classic/tooltip/zone/%s", }, } zoneTooltips := zoneTM.FetchFromWeb(zoneIDStrs) diff --git a/tools/database/cata_tooltips.go b/tools/database/cata_tooltips.go deleted file mode 100644 index cc877109ee..0000000000 --- a/tools/database/cata_tooltips.go +++ /dev/null @@ -1,428 +0,0 @@ -package database - -import ( - "encoding/json" - "fmt" - "log" - "regexp" - "strconv" - "strings" - - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" -) - -type CataTooltipManager struct { - TooltipManager -} - -func (wtm *CataTooltipManager) Read() map[int32]CataItemResponse { - strDB := wtm.TooltipManager.Read() - return core.MapMap(strDB, func(id int32, tooltip string) (int32, CataItemResponse) { - // Reformat the tooltip so it looks more like a wowhead tooltip. - tooltip = strings.Replace(tooltip, fmt.Sprintf("$WowheadPower.registerItem('%d', 0, ", id), "", 1) - tooltip = strings.TrimSuffix(tooltip, ";") - tooltip = strings.TrimSuffix(tooltip, ")") - tooltip = strings.ReplaceAll(tooltip, "\n", "") - tooltip = strings.ReplaceAll(tooltip, "\t", "") - tooltip = strings.Replace(tooltip, "name_enus: '", "\"name\": \"", 1) - tooltip = strings.Replace(tooltip, "quality:", "\"quality\":", 1) - tooltip = strings.Replace(tooltip, "icon: '", "\"icon\": \"", 1) - tooltip = strings.Replace(tooltip, "tooltip_enus: '", "\"tooltip\": \"", 1) - tooltip = strings.ReplaceAll(tooltip, "',", "\",") - tooltip = strings.ReplaceAll(tooltip, "\\'", "'") - // replace the '} with "} - if strings.HasSuffix(tooltip, "'}") { - tooltip = tooltip[:len(tooltip)-2] + "\"}" - } - - return id, NewCataItemResponse(id, tooltip) - }) -} - -func NewCataItemTooltipManager(filePath string) *CataTooltipManager { - return &CataTooltipManager{ - TooltipManager{ - FilePath: filePath, - UrlPattern: "https://cata.evowow.com/?item=%s&power", - }, - } -} - -type CataItemResponse struct { - ID int32 - Name string `json:"name"` - Quality int `json:"quality"` - Icon string `json:"icon"` - Tooltip string `json:"tooltip"` -} - -func NewCataItemResponse(id int32, tooltip string) CataItemResponse { - response := CataItemResponse{} - err := json.Unmarshal([]byte(tooltip), &response) - if err != nil { - fmt.Printf("Failed to decode tooltipBytes: %s\n", tooltip) - panic(err) - } - response.ID = id - return response -} - -func (item CataItemResponse) GetName() string { - return item.Name -} -func (item CataItemResponse) GetQuality() int { - return item.Quality -} -func (item CataItemResponse) GetIcon() string { - return item.Icon -} - -func (item CataItemResponse) TooltipWithoutSetBonus() string { - setIdx := strings.Index(item.Tooltip, "Set : ") - if setIdx == -1 { - return item.Tooltip - } else { - return item.Tooltip[:setIdx] - } -} - -func (item CataItemResponse) GetTooltipRegexString(pattern *regexp.Regexp, matchIdx int) string { - return GetRegexStringValue(item.TooltipWithoutSetBonus(), pattern, matchIdx) -} - -func (item CataItemResponse) GetTooltipRegexValue(pattern *regexp.Regexp, matchIdx int) int { - return GetRegexIntValue(item.TooltipWithoutSetBonus(), pattern, matchIdx) -} - -func (item CataItemResponse) GetIntValue(pattern *regexp.Regexp) int { - return item.GetTooltipRegexValue(pattern, 1) -} - -// TODO: Cata update regexes -var wotlkdbArmorRegex = regexp.MustCompile("([0-9]+) Armor") -var wotlkdbAgilityRegex = regexp.MustCompile(`\+([0-9]+) Agility`) -var wotlkdbStrengthRegex = regexp.MustCompile(`\+([0-9]+) Strength`) -var wotlkdbIntellectRegex = regexp.MustCompile(`\+([0-9]+) Intellect`) -var wotlkdbSpiritRegex = regexp.MustCompile(`\+([0-9]+) Spirit`) -var wotlkdbStaminaRegex = regexp.MustCompile(`\+([0-9]+) Stamina`) -var wotlkdbSpellPowerRegex = regexp.MustCompile("Equip: Increases spell power by ([0-9]+)") -var wotlkdbSpellPowerRegex2 = regexp.MustCompile("Equip: Increases spell power by ([0-9]+)") - -var wotlkdbHitRegex = regexp.MustCompile("Improves hit rating by ([0-9]+)") -var wotlkdbCritRegex = regexp.MustCompile("Improves critical strike rating by ([0-9]+)") -var wotlkdbHasteRegex = regexp.MustCompile("Increases your haste rating by ([0-9]+)") - -var wotlkdbSpellPenetrationRegex = regexp.MustCompile("Increases your spell penetration by ([0-9]+)") -var wotlkdbMp5Regex = regexp.MustCompile("Restores ([0-9]+) mana per 5 sec") -var wotlkdbAttackPowerRegex = regexp.MustCompile(`Increases attack power by ([0-9]+)\.`) -var wotlkdbAttackPowerRegex2 = regexp.MustCompile(`Increases attack power by ([0-9]+)\.`) -var wotlkdbRangedAttackPowerRegex = regexp.MustCompile("Increases ranged attack power by ([0-9]+)") -var wotlkdbExpertiseRegex = regexp.MustCompile("Increases expertise rating by ([0-9]+)") - -var wotlkdbBlockRegex = regexp.MustCompile(`Equip: Increases your shield block rating by ([0-9]+)`) -var wotlkdbBlockRegex2 = regexp.MustCompile("Equip: Increases your shield block rating by ([0-9]+)") -var wotlkdbDodgeRegex = regexp.MustCompile("Increases your dodge rating by ([0-9]+)") -var wotlkdbDodgeRegex2 = regexp.MustCompile("Increases your dodge rating by ([0-9]+)") -var wotlkdbParryRegex = regexp.MustCompile("Increases your parry rating by ([0-9]+)") -var wotlkdbParryRegex2 = regexp.MustCompile("Increases your parry rating by ([0-9]+)") -var wotlkdbResilienceRegex = regexp.MustCompile("Increases your resilience rating by ([0-9]+)") -var wotlkdbArcaneResistanceRegex = regexp.MustCompile(`\+([0-9]+) Arcane Resistance`) -var wotlkdbFireResistanceRegex = regexp.MustCompile(`\+([0-9]+) Fire Resistance`) -var wotlkdbFrostResistanceRegex = regexp.MustCompile(`\+([0-9]+) Frost Resistance`) -var wotlkdbNatureResistanceRegex = regexp.MustCompile(`\+([0-9]+) Nature Resistance`) -var wotlkdbShadowResistanceRegex = regexp.MustCompile(`\+([0-9]+) Shadow Resistance`) - -func (item CataItemResponse) GetStats() stats.Stats { - sp := float64(item.GetIntValue(wotlkdbSpellPowerRegex)) + float64(item.GetIntValue(wotlkdbSpellPowerRegex2)) - return stats.Stats{ - stats.Armor: float64(item.GetIntValue(wotlkdbArmorRegex)), - stats.Strength: float64(item.GetIntValue(wotlkdbStrengthRegex)), - stats.Agility: float64(item.GetIntValue(wotlkdbAgilityRegex)), - stats.Stamina: float64(item.GetIntValue(wotlkdbStaminaRegex)), - stats.Intellect: float64(item.GetIntValue(wotlkdbIntellectRegex)), - stats.Spirit: float64(item.GetIntValue(wotlkdbSpiritRegex)), - stats.SpellPower: sp, - stats.HitRating: float64(item.GetIntValue(wotlkdbHitRegex)), - stats.CritRating: float64(item.GetIntValue(wotlkdbCritRegex)), - stats.HasteRating: float64(item.GetIntValue(wotlkdbHasteRegex)), - stats.SpellPenetration: float64(item.GetIntValue(wotlkdbSpellPenetrationRegex)), - stats.MP5: float64(item.GetIntValue(wotlkdbMp5Regex)), - stats.AttackPower: float64(item.GetIntValue(wotlkdbAttackPowerRegex) + item.GetIntValue(wotlkdbAttackPowerRegex2)), - stats.RangedAttackPower: float64(item.GetIntValue(wotlkdbAttackPowerRegex) + item.GetIntValue(wotlkdbAttackPowerRegex2) + item.GetIntValue(wotlkdbRangedAttackPowerRegex)), - stats.ExpertiseRating: float64(item.GetIntValue(wotlkdbExpertiseRegex)), - stats.DodgeRating: float64(item.GetIntValue(wotlkdbDodgeRegex) + item.GetIntValue(wotlkdbDodgeRegex2)), - stats.ParryRating: float64(item.GetIntValue(wotlkdbParryRegex) + item.GetIntValue(wotlkdbParryRegex2)), - stats.ResilienceRating: float64(item.GetIntValue(wotlkdbResilienceRegex)), - stats.ArcaneResistance: float64(item.GetIntValue(wotlkdbArcaneResistanceRegex)), - stats.FireResistance: float64(item.GetIntValue(wotlkdbFireResistanceRegex)), - stats.FrostResistance: float64(item.GetIntValue(wotlkdbFrostResistanceRegex)), - stats.NatureResistance: float64(item.GetIntValue(wotlkdbNatureResistanceRegex)), - stats.ShadowResistance: float64(item.GetIntValue(wotlkdbShadowResistanceRegex)), - } -} - -func (item CataItemResponse) IsPattern() bool { - for _, pattern := range patternRegexes { - if pattern.MatchString(item.Tooltip) { - return true - } - } - return false -} - -func (item CataItemResponse) IsRandomEnchant() bool { - return randomEnchantRegex.MatchString(item.Tooltip) -} - -func (item CataItemResponse) IsEquippable() bool { - return item.GetItemType() != proto.ItemType_ItemTypeUnknown && - !item.IsPattern() && - !item.IsRandomEnchant() -} - -var wotlkItemLevelRegex = regexp.MustCompile("Item Level ([0-9]+)<") - -func (item CataItemResponse) GetItemLevel() int { - return item.GetIntValue(wotlkItemLevelRegex) -} - -// WOTLK DB has no phase info -func (item CataItemResponse) GetPhase() int { - - ilvl := item.GetItemLevel() - if ilvl < 200 || ilvl == 200 || ilvl == 213 || ilvl == 226 { - return 1 - } else if ilvl == 219 || ilvl == 226 || ilvl == 239 { - return 2 - } else if ilvl == 232 || ilvl == 245 || ilvl == 258 { - return 3 - } else if ilvl == 251 || ilvl == 258 || ilvl == 259 || ilvl == 264 || ilvl == 268 || ilvl == 270 || ilvl == 271 || ilvl == 272 { - return 4 - } else if ilvl == 277 || ilvl == 284 { - return 5 - } - - // default to 1 - return 1 -} - -func (item CataItemResponse) GetUnique() bool { - return uniqueRegex.MatchString(item.Tooltip) && !jcGemsRegex.MatchString(item.Tooltip) -} - -func (item CataItemResponse) GetItemType() proto.ItemType { - for itemType, pattern := range itemTypePatterns { - if pattern.MatchString(item.Tooltip) { - return itemType - } - } - return proto.ItemType_ItemTypeUnknown -} - -var wotlkArmorTypePatterns = map[proto.ArmorType]*regexp.Regexp{ - proto.ArmorType_ArmorTypeCloth: regexp.MustCompile("Cloth"), - proto.ArmorType_ArmorTypeLeather: regexp.MustCompile("Leather"), - proto.ArmorType_ArmorTypeMail: regexp.MustCompile("Mail"), - proto.ArmorType_ArmorTypePlate: regexp.MustCompile("Plate"), -} - -func (item CataItemResponse) GetArmorType() proto.ArmorType { - for armorType, pattern := range wotlkArmorTypePatterns { - if pattern.MatchString(item.Tooltip) { - return armorType - } - } - return proto.ArmorType_ArmorTypeUnknown -} - -var wotlkWeaponTypePatterns = map[proto.WeaponType]*regexp.Regexp{ - proto.WeaponType_WeaponTypeAxe: regexp.MustCompile("Axe"), - proto.WeaponType_WeaponTypeDagger: regexp.MustCompile("Dagger"), - proto.WeaponType_WeaponTypeFist: regexp.MustCompile("Fist Weapon"), - proto.WeaponType_WeaponTypeMace: regexp.MustCompile("Mace"), - proto.WeaponType_WeaponTypeOffHand: regexp.MustCompile("Held In Off-Hand"), - proto.WeaponType_WeaponTypePolearm: regexp.MustCompile("Polearm"), - proto.WeaponType_WeaponTypeShield: regexp.MustCompile("Shield"), - proto.WeaponType_WeaponTypeStaff: regexp.MustCompile("Staff"), - proto.WeaponType_WeaponTypeSword: regexp.MustCompile("Sword"), -} - -func (item CataItemResponse) GetWeaponType() proto.WeaponType { - for weaponType, pattern := range wotlkWeaponTypePatterns { - if pattern.MatchString(item.Tooltip) { - return weaponType - } - } - return proto.WeaponType_WeaponTypeUnknown -} - -func (item CataItemResponse) GetHandType() proto.HandType { - for handType, pattern := range handTypePatterns { - if pattern.MatchString(item.Tooltip) { - return handType - } - } - return proto.HandType_HandTypeUnknown -} - -var wotlkRangedWeaponTypePatterns = map[proto.RangedWeaponType]*regexp.Regexp{ - proto.RangedWeaponType_RangedWeaponTypeBow: regexp.MustCompile("Bow"), - proto.RangedWeaponType_RangedWeaponTypeCrossbow: regexp.MustCompile("Crossbow"), - proto.RangedWeaponType_RangedWeaponTypeGun: regexp.MustCompile("Gun"), - proto.RangedWeaponType_RangedWeaponTypeRelic: regexp.MustCompile("Relic"), - proto.RangedWeaponType_RangedWeaponTypeThrown: regexp.MustCompile("Thrown"), - proto.RangedWeaponType_RangedWeaponTypeWand: regexp.MustCompile("Wand"), -} - -func (item CataItemResponse) GetRangedWeaponType() proto.RangedWeaponType { - for rangedWeaponType, pattern := range wotlkRangedWeaponTypePatterns { - if pattern.MatchString(item.Tooltip) { - return rangedWeaponType - } - } - return proto.RangedWeaponType_RangedWeaponTypeUnknown -} - -// Returns min/max of weapon damage -func (item CataItemResponse) GetWeaponDamage() (float64, float64) { - if matches := weaponDamageRegex.FindStringSubmatch(item.Tooltip); len(matches) > 0 { - min, err := strconv.ParseFloat(matches[1], 64) - if err != nil { - log.Fatalf("Failed to parse weapon damage: %s", err) - } - max, err := strconv.ParseFloat(matches[2], 64) - if err != nil { - log.Fatalf("Failed to parse weapon damage: %s", err) - } - if min > max { - log.Fatalf("Invalid weapon damage for item %s: min = %0.1f, max = %0.1f", item.Name, min, max) - } - return min, max - } else if matches := weaponDamageRegex2.FindStringSubmatch(item.Tooltip); len(matches) > 0 { - val, err := strconv.ParseFloat(matches[1], 64) - if err != nil { - log.Fatalf("Failed to parse weapon damage: %s", err) - } - return val, val - } - return 0, 0 -} - -func (item CataItemResponse) GetWeaponSpeed() float64 { - if matches := weaponSpeedRegex.FindStringSubmatch(item.Tooltip); len(matches) > 0 { - speed, err := strconv.ParseFloat(matches[1], 64) - if err != nil { - log.Fatalf("Failed to parse weapon damage: %s", err) - } - return speed - } - return 0 -} - -func (item CataItemResponse) GetGemSockets() []proto.GemColor { - matches := gemColorsRegex.FindAllStringSubmatch(item.Tooltip, -1) - if matches == nil { - return []proto.GemColor{} - } - - numSockets := len(matches) - gemColors := make([]proto.GemColor, numSockets) - for socketIdx, match := range matches { - gemColorName := "GemColor" + match[1] - gemColors[socketIdx] = proto.GemColor(proto.GemColor_value[gemColorName]) - } - return gemColors -} - -func (item CataItemResponse) GetSocketBonus() stats.Stats { - match := socketBonusRegex.FindStringSubmatch(item.Tooltip) - if match == nil { - return stats.Stats{} - } - - bonusStr := match[1] - //fmt.Printf("\n%s\n", bonusStr) - - stats := stats.Stats{ - stats.Strength: float64(GetBestRegexIntValue(bonusStr, strengthSocketBonusRegexes, 1)), - stats.Agility: float64(GetBestRegexIntValue(bonusStr, agilitySocketBonusRegexes, 1)), - stats.Stamina: float64(GetBestRegexIntValue(bonusStr, staminaSocketBonusRegexes, 1)), - stats.Intellect: float64(GetBestRegexIntValue(bonusStr, intellectSocketBonusRegexes, 1)), - stats.Spirit: float64(GetBestRegexIntValue(bonusStr, spiritSocketBonusRegexes, 1)), - stats.HasteRating: float64(GetBestRegexIntValue(bonusStr, hasteSocketBonusRegexes, 1)), - stats.SpellPower: float64(GetBestRegexIntValue(bonusStr, spellPowerSocketBonusRegexes, 1)), - stats.HitRating: float64(GetBestRegexIntValue(bonusStr, spellHitSocketBonusRegexes, 1)), - stats.CritRating: float64(GetBestRegexIntValue(bonusStr, spellCritSocketBonusRegexes, 1)), - stats.MP5: float64(GetBestRegexIntValue(bonusStr, mp5SocketBonusRegexes, 1)), - stats.AttackPower: float64(GetBestRegexIntValue(bonusStr, attackPowerSocketBonusRegexes, 1)), - stats.RangedAttackPower: float64(GetBestRegexIntValue(bonusStr, attackPowerSocketBonusRegexes, 1)), - stats.ExpertiseRating: float64(GetBestRegexIntValue(bonusStr, expertiseSocketBonusRegexes, 1)), - stats.DodgeRating: float64(GetBestRegexIntValue(bonusStr, dodgeSocketBonusRegexes, 1)), - stats.ParryRating: float64(GetBestRegexIntValue(bonusStr, parrySocketBonusRegexes, 1)), - stats.ResilienceRating: float64(GetBestRegexIntValue(bonusStr, resilienceSocketBonusRegexes, 1)), - } - - return stats -} - -func (item CataItemResponse) GetSocketColor() proto.GemColor { - for socketColor, pattern := range gemSocketColorPatterns { - if pattern.MatchString(item.Tooltip) { - return socketColor - } - } - // fmt.Printf("Could not find socket color for gem %s\n", item.Name) - return proto.GemColor_GemColorUnknown -} - -func (item CataItemResponse) GetGemStats() stats.Stats { - stats := stats.Stats{ - stats.Strength: float64(GetBestRegexIntValue(item.Tooltip, strengthGemStatRegexes, 1)), - stats.Agility: float64(GetBestRegexIntValue(item.Tooltip, agilityGemStatRegexes, 1)), - stats.Stamina: float64(GetBestRegexIntValue(item.Tooltip, staminaGemStatRegexes, 1)), - stats.Intellect: float64(GetBestRegexIntValue(item.Tooltip, intellectGemStatRegexes, 1)), - stats.Spirit: float64(GetBestRegexIntValue(item.Tooltip, spiritGemStatRegexes, 1)), - - stats.HitRating: float64(GetBestRegexIntValue(item.Tooltip, hitGemStatRegexes, 1)), - stats.CritRating: float64(GetBestRegexIntValue(item.Tooltip, critGemStatRegexes, 1)), - stats.HasteRating: float64(GetBestRegexIntValue(item.Tooltip, hasteGemStatRegexes, 1)), - - stats.SpellPower: float64(GetBestRegexIntValue(item.Tooltip, spellPowerGemStatRegexes, 1)), - stats.AttackPower: float64(GetBestRegexIntValue(item.Tooltip, attackPowerGemStatRegexes, 1)), - stats.RangedAttackPower: float64(GetBestRegexIntValue(item.Tooltip, attackPowerGemStatRegexes, 1)), - stats.SpellPenetration: float64(GetBestRegexIntValue(item.Tooltip, spellPenetrationGemStatRegexes, 1)), - stats.MP5: float64(GetBestRegexIntValue(item.Tooltip, mp5GemStatRegexes, 1)), - stats.ExpertiseRating: float64(GetBestRegexIntValue(item.Tooltip, expertiseGemStatRegexes, 1)), - stats.DodgeRating: float64(GetBestRegexIntValue(item.Tooltip, dodgeGemStatRegexes, 1)), - stats.ParryRating: float64(GetBestRegexIntValue(item.Tooltip, parryGemStatRegexes, 1)), - stats.ResilienceRating: float64(GetBestRegexIntValue(item.Tooltip, resilienceGemStatRegexes, 1)), - stats.ArcaneResistance: float64(GetBestRegexIntValue(item.Tooltip, allResistGemStatRegexes, 1)), - stats.FireResistance: float64(GetBestRegexIntValue(item.Tooltip, allResistGemStatRegexes, 1)), - stats.FrostResistance: float64(GetBestRegexIntValue(item.Tooltip, allResistGemStatRegexes, 1)), - stats.NatureResistance: float64(GetBestRegexIntValue(item.Tooltip, allResistGemStatRegexes, 1)), - stats.ShadowResistance: float64(GetBestRegexIntValue(item.Tooltip, allResistGemStatRegexes, 1)), - } - - return stats -} - -// TODO: Cata check regex -var wotlkItemSetNameRegex = regexp.MustCompile("([^<]+)<") - -func (item CataItemResponse) GetItemSetName() string { - return item.GetTooltipRegexString(wotlkItemSetNameRegex, 2) -} - -func (item CataItemResponse) IsHeroic() bool { - return strings.Contains(item.Tooltip, "Heroic") -} - -func (item CataItemResponse) GetRequiredProfession() proto.Profession { - if jcGemsRegex.MatchString(item.Tooltip) { - return proto.Profession_Jewelcrafting - } - - return proto.Profession_ProfessionUnknown -} diff --git a/tools/database/database.go b/tools/database/database.go index a8998a2903..6d432738cc 100644 --- a/tools/database/database.go +++ b/tools/database/database.go @@ -2,13 +2,12 @@ package database import ( "bytes" - "fmt" "log" "os" "slices" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/tools" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/tools" "golang.org/x/exp/maps" "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" @@ -43,6 +42,9 @@ type WowDatabase struct { Encounters []*proto.PresetEncounter GlyphIDs []*proto.GlyphID + + Consumables map[int32]*proto.Consumable + Effects map[int32]*proto.SpellEffect } func NewWowDatabase() *WowDatabase { @@ -57,6 +59,9 @@ func NewWowDatabase() *WowDatabase { ItemIcons: make(map[int32]*proto.IconData), SpellIcons: make(map[int32]*proto.IconData), ReforgeStats: make(map[int32]*proto.ReforgeStat), + + Consumables: make(map[int32]*proto.Consumable), + Effects: make(map[int32]*proto.SpellEffect), } } @@ -72,6 +77,9 @@ func (db *WowDatabase) Clone() *WowDatabase { ItemIcons: maps.Clone(db.ItemIcons), SpellIcons: maps.Clone(db.SpellIcons), ReforgeStats: maps.Clone(db.ReforgeStats), + + Consumables: maps.Clone(db.Consumables), + Effects: maps.Clone(db.Effects), } } @@ -102,6 +110,7 @@ func (db *WowDatabase) MergeEnchants(arr []*proto.UIEnchant) { db.MergeEnchant(enchant) } } + func (db *WowDatabase) MergeEnchant(src *proto.UIEnchant) { key := EnchantToDBKey(src) if dst, ok := db.Enchants[key]; ok { @@ -152,6 +161,7 @@ func (db *WowDatabase) MergeNpcs(arr []*proto.UINPC) { db.MergeNpc(npc) } } + func (db *WowDatabase) MergeNpc(src *proto.UINPC) { if dst, ok := db.Npcs[src.Id]; ok { googleProto.Merge(dst, src) @@ -160,26 +170,40 @@ func (db *WowDatabase) MergeNpc(src *proto.UINPC) { } } -func (db *WowDatabase) AddItemIcon(id int32, tooltips map[int32]WowheadItemResponse) { - if tooltip, ok := tooltips[id]; ok { - if tooltip.GetName() == "" || tooltip.GetIcon() == "" { - return +func (db *WowDatabase) MergeConsumable(src *proto.Consumable) { + if dst, ok := db.Consumables[src.Id]; ok { + if src.Stats != nil { + dst.Stats = src.Stats + src.Stats = nil } - db.ItemIcons[id] = &proto.IconData{Id: id, Name: tooltip.GetName(), Icon: tooltip.GetIcon()} + googleProto.Merge(dst, src) } else { - panic(fmt.Sprintf("No item tooltip with id %d", id)) + db.Consumables[src.Id] = src } } -func (db *WowDatabase) AddSpellIcon(id int32, tooltips map[int32]WowheadItemResponse) { - if tooltip, ok := tooltips[id]; ok { - if tooltip.GetName() == "" || tooltip.GetIcon() == "" { - return - } - db.SpellIcons[id] = &proto.IconData{Id: id, Name: tooltip.GetName(), Icon: tooltip.GetIcon(), HasBuff: tooltip.HasBuff()} +func (db *WowDatabase) MergeEffect(src *proto.SpellEffect) { + if dst, ok := db.Effects[src.Id]; ok { + googleProto.Merge(dst, src) } else { - panic(fmt.Sprintf("No spell tooltip with id %d", id)) + db.Effects[src.Id] = src + } +} + +func (db *WowDatabase) AddItemIcon(id int32, icon string, name string) { + if id == 0 { + return + } + db.ItemIcons[id] = &proto.IconData{Id: id, Name: name, Icon: icon} + +} + +func (db *WowDatabase) AddSpellIcon(id int32, icon string, name string) { + if id == 0 { + return } + db.SpellIcons[id] = &proto.IconData{Id: id, Name: name, Icon: icon} + } type idKeyed interface { @@ -221,6 +245,8 @@ func (db *WowDatabase) ToUIProto() *proto.UIDatabase { SpellIcons: mapToSlice(db.SpellIcons), GlyphIds: db.GlyphIDs, ReforgeStats: mapToSlice(db.ReforgeStats), + Consumables: mapToSlice(db.Consumables), + SpellEffects: mapToSlice(db.Effects), } } @@ -231,7 +257,6 @@ func sliceToMap[T idKeyed](vs []T) map[int32]T { } return m } - func ReadDatabaseFromJson(jsonStr string) *WowDatabase { dbProto := &proto.UIDatabase{} if err := protojson.Unmarshal([]byte(jsonStr), dbProto); err != nil { @@ -253,6 +278,8 @@ func ReadDatabaseFromJson(jsonStr string) *WowDatabase { ItemIcons: sliceToMap(dbProto.ItemIcons), SpellIcons: sliceToMap(dbProto.SpellIcons), ReforgeStats: sliceToMap(dbProto.ReforgeStats), + Consumables: sliceToMap(dbProto.Consumables), + Effects: sliceToMap(dbProto.SpellEffects), } } @@ -278,7 +305,6 @@ func (db *WowDatabase) WriteJson(jsonFilePath string) { uidb := db.ToUIProto() buffer := new(bytes.Buffer) - buffer.WriteString("{\n") tools.WriteProtoArrayToBuffer(uidb.Items, buffer, "items") @@ -302,8 +328,11 @@ func (db *WowDatabase) WriteJson(jsonFilePath string) { tools.WriteProtoArrayToBuffer(uidb.Encounters, buffer, "encounters") buffer.WriteString(",\n") tools.WriteProtoArrayToBuffer(uidb.GlyphIds, buffer, "glyphIds") + buffer.WriteString(",\n") + tools.WriteProtoArrayToBuffer(uidb.Consumables, buffer, "consumables") + buffer.WriteString(",\n") + tools.WriteProtoArrayToBuffer(uidb.SpellEffects, buffer, "spellEffects") buffer.WriteString("\n") - buffer.WriteString("}") os.WriteFile(jsonFilePath, buffer.Bytes(), 0666) } diff --git a/tools/database/dbc/GameTables/SpellScaling.txt b/tools/database/dbc/GameTables/SpellScaling.txt new file mode 100644 index 0000000000..0fe65ecbe3 --- /dev/null +++ b/tools/database/dbc/GameTables/SpellScaling.txt @@ -0,0 +1,101 @@ +Level Warrior Paladin Hunter Rogue Priest Death Knight Shaman Mage Warlock Monk Druid Unknown Unknown +1 23.310699 34.621399 5.221597 37.297119 22.554979 23.310699 30.079258 31.021399 32.221397 0.000000 25.777119 3.000000 3.000000 +2 24.165054 35.435558 5.772695 38.664085 22.827085 24.165054 30.725483 31.430574 32.726707 0.000000 26.475527 3.000000 4.000000 +3 24.734625 35.598392 6.276959 39.575397 22.881506 24.734625 30.854729 31.512409 32.827770 0.000000 26.615210 4.000000 0.000000 +4 25.114338 35.858921 6.747173 40.182941 22.968580 25.114338 31.061520 31.643347 32.989468 0.000000 26.838701 4.000000 0.000000 +5 25.367479 36.038036 7.192804 40.587967 23.028444 25.367479 31.203690 31.733366 33.100636 0.000000 26.992350 5.000000 0.000000 +6 25.873764 36.213898 7.721518 41.398026 23.087219 25.873764 31.343275 31.821747 33.209782 0.000000 27.143208 5.000000 0.000000 +7 27.155298 36.356213 8.508202 43.448475 23.134783 27.155298 31.456234 31.893272 33.298111 0.000000 27.265289 6.000000 0.000000 +8 28.436831 36.490189 9.333040 45.498928 23.179562 28.436831 31.562578 31.960606 33.381264 0.000000 27.380219 7.000000 0.000000 +9 29.718363 37.879398 10.196032 47.549381 23.573284 29.718363 32.648537 32.571266 34.174515 0.000000 28.597120 7.000000 0.000000 +10 30.999897 38.692200 11.097178 49.599834 23.915510 30.999897 33.310383 33.067284 34.747944 0.000000 29.269165 8.000000 0.000000 +11 32.281429 39.412964 12.036478 51.650288 24.208956 32.281429 33.894913 33.494694 35.246643 0.000000 29.868689 8.000000 0.000000 +12 33.562962 40.041683 13.013932 53.700741 24.453621 33.562962 34.402122 33.853504 35.670609 0.000000 30.395691 9.000000 0.000000 +13 34.844494 40.578365 14.029540 55.751190 24.649508 34.844494 34.832012 34.143707 36.019840 0.000000 30.850174 9.000000 0.000000 +14 37.191483 42.380535 15.528151 59.506371 25.704943 37.191483 36.384575 35.644485 37.597713 0.000000 32.151695 10.000000 0.000000 +15 39.665226 44.184898 17.151443 63.464359 26.776060 39.665226 37.944424 37.169346 39.193775 0.000000 33.463394 11.000000 0.000000 +16 42.265724 45.975899 18.905083 67.625153 27.852264 42.265724 39.497658 38.703197 40.792809 0.000000 34.772999 11.000000 0.000000 +17 44.992973 47.737980 20.794727 71.988762 28.922983 44.992973 41.030399 40.230961 42.379612 0.000000 36.068253 12.000000 0.000000 +18 47.846981 49.455605 22.826038 76.555176 29.977646 47.846981 42.528774 41.737587 43.938995 0.000000 37.336906 12.000000 0.000000 +19 50.827744 51.113228 25.004677 81.324394 31.005697 50.827744 43.978924 43.208027 45.455784 0.000000 38.566719 13.000000 0.000000 +20 53.935261 52.695328 27.336302 86.296417 31.996595 53.935261 45.366997 44.627262 46.914818 0.000000 39.745468 14.000000 0.000000 +21 58.884621 54.484577 29.755562 90.327866 33.648586 58.884621 46.601269 46.858093 48.894913 0.000000 41.293999 14.000000 0.000000 +22 64.162399 56.232155 32.326488 94.427681 35.332497 64.162399 47.770657 49.124363 50.876793 0.000000 42.835114 15.000000 0.000000 +23 69.779999 57.929901 35.053528 98.588249 37.043430 69.779999 48.867374 51.418892 52.852699 0.000000 44.362511 15.000000 0.000000 +24 75.748825 59.570057 37.941078 102.801980 38.776436 75.748825 49.884174 53.734501 54.815075 0.000000 45.870083 16.000000 0.000000 +25 82.080299 61.145260 40.993473 107.061260 40.526527 82.080299 50.814350 56.064014 56.756557 0.000000 47.351921 17.000000 0.000000 +26 88.785820 62.648544 44.214996 111.358490 42.288666 88.785820 51.651737 58.400276 58.669991 0.000000 48.802311 17.000000 0.000000 +27 95.876801 64.073341 47.609882 115.686060 44.057785 95.876801 52.390717 60.736126 60.548412 0.000000 50.215748 18.000000 0.000000 +28 103.364640 65.413490 51.182312 120.036360 45.828770 103.364640 53.026207 63.064426 62.385059 0.000000 51.586914 18.000000 0.000000 +29 111.260760 66.663208 54.936398 124.401790 47.596455 111.260760 53.553669 65.378036 64.173370 0.000000 52.910702 19.000000 0.000000 +30 119.576550 67.817123 58.876217 128.774750 49.355644 119.576550 53.969101 67.669823 65.906990 0.000000 54.182190 20.000000 0.000000 +31 128.323440 70.275772 63.005783 133.147630 52.143978 128.323440 55.376572 71.359879 68.958916 0.000000 56.527206 20.000000 0.000000 +32 137.512820 72.727112 67.329056 137.512820 55.028683 137.512820 56.719345 75.166130 72.068405 0.000000 58.905834 21.000000 0.000000 +33 147.156100 75.166229 71.849945 141.862720 58.010242 147.156100 57.990757 79.088448 75.232979 0.000000 61.315624 21.000000 0.000000 +34 157.264690 77.588196 76.572304 146.189710 61.089149 157.264690 59.184143 83.126686 78.450180 0.000000 63.754120 22.000000 0.000000 +35 167.850010 79.988113 81.499931 150.486210 64.265877 167.850010 60.292850 87.280716 81.717560 0.000000 66.218880 23.000000 0.000000 +36 178.923450 82.361061 86.636574 154.744600 67.540924 178.923450 61.310238 91.550385 85.032661 0.000000 68.707451 23.000000 0.000000 +37 190.496430 84.702133 91.985924 158.957290 70.914749 190.496430 62.229660 95.935555 88.393021 0.000000 71.217392 24.000000 0.000000 +38 202.580350 87.006432 97.551613 163.116650 74.387840 202.580350 63.044483 100.436070 91.796196 0.000000 73.746262 24.000000 0.000000 +39 215.186630 89.269051 103.337230 167.215090 77.960678 215.186630 63.748077 105.051800 95.239738 0.000000 76.291611 25.000000 0.000000 +40 228.326660 91.485092 109.346310 171.245000 81.633720 228.326660 64.333817 109.782570 98.721191 0.000000 78.851013 26.000000 0.000000 +41 237.557660 94.516792 116.451360 182.127530 84.826447 235.578000 66.682327 113.099870 101.445560 0.000000 81.422028 26.000000 0.000000 +42 246.991460 97.564629 123.888630 193.476640 88.070351 242.874940 69.059021 116.399640 104.135120 0.000000 84.002213 27.000000 0.000000 +43 256.628080 100.626140 131.667530 205.302460 91.364174 250.212370 71.462669 119.677140 106.785070 0.000000 86.589142 27.000000 0.000000 +44 266.467500 103.698830 139.797620 217.615110 94.706650 257.585240 73.892021 122.927640 109.390670 0.000000 89.180389 28.000000 0.000000 +45 276.509740 106.780260 148.288540 230.424770 98.096535 264.988490 76.345833 126.146400 111.947170 0.000000 91.773514 28.000000 0.000000 +46 286.754760 109.867940 157.150070 243.741550 101.532550 272.417020 78.822861 129.328700 114.449790 0.000000 94.366096 29.000000 0.000000 +47 297.202610 112.959410 166.392070 257.575590 105.013450 279.865780 81.321877 132.469860 116.893810 0.000000 96.955711 30.000000 0.000000 +48 307.853240 116.052210 176.024520 271.937040 108.537980 287.329710 83.841629 135.565140 119.274500 0.000000 99.539940 30.000000 0.000000 +49 318.706730 119.143880 186.057480 286.836030 112.104870 294.803710 86.380882 138.609850 121.587110 0.000000 102.116360 31.000000 0.000000 +50 329.762970 122.231930 196.501170 302.282750 115.712880 302.282750 88.938400 141.599290 123.826930 0.000000 104.682560 31.000000 0.000000 +51 341.022060 125.313940 207.365880 318.287260 119.360730 309.761690 91.512939 144.528780 125.989220 0.000000 107.236110 32.000000 0.000000 +52 352.483950 128.387420 218.662000 334.859740 123.047200 317.235530 94.103264 147.393650 128.069290 0.000000 109.774610 33.000000 0.000000 +53 364.148620 131.449940 230.400070 352.010350 126.771000 324.699190 96.708138 150.189220 130.062440 0.000000 112.295650 33.000000 0.000000 +54 376.016140 134.499010 242.590700 369.749210 130.530900 332.147580 99.326332 152.910830 131.963940 0.000000 114.796820 34.000000 0.000000 +55 388.086430 137.532200 255.244610 388.086430 134.325640 339.575620 101.956600 155.553820 133.769130 0.000000 117.275720 34.000000 0.000000 +56 400.359560 140.547060 268.372680 407.032230 138.153980 346.978270 104.597720 158.113560 135.473310 0.000000 119.729940 35.000000 0.000000 +57 412.835480 143.541120 281.985780 426.596650 142.014650 354.350460 107.248450 160.585390 137.071810 0.000000 122.157080 36.000000 0.000000 +58 425.514220 293.023900 296.095060 446.789920 291.812810 361.687070 219.815110 325.929380 277.119930 0.000000 249.109500 36.000000 0.000000 +59 478.257230 327.008330 338.963290 510.141020 328.420500 402.533170 246.449970 362.339480 306.629360 0.000000 277.898220 37.000000 0.000000 +60 491.949980 332.962490 355.055050 532.945800 336.625000 409.958310 251.970830 366.620820 308.962490 0.000000 282.633330 37.000000 0.000000 +61 512.168640 354.074650 376.741820 552.214720 355.277370 432.076420 274.168460 384.399380 328.700350 0.000000 303.649840 54.000000 0.000000 +62 532.942570 375.984920 399.409090 571.938350 374.584780 454.950960 297.330540 402.742860 349.191560 0.000000 325.524840 55.000000 0.000000 +63 554.279360 398.707460 423.086090 592.121700 394.558070 478.594600 321.475560 421.659850 370.449430 0.000000 348.274230 56.000000 0.000000 +64 576.186650 422.256350 447.802460 612.769900 415.208100 503.020050 346.622010 441.158840 392.487210 0.000000 371.913880 57.000000 0.000000 +65 598.672000 446.645690 473.588320 633.887940 436.545590 528.239990 372.788390 461.248320 415.318210 0.000000 396.459660 59.000000 0.000000 +66 621.742980 471.889560 500.474150 655.481020 458.581300 554.267030 399.993070 481.936710 438.955540 0.000000 421.927340 60.000000 0.000000 +67 645.407350 498.001980 528.490910 677.554080 481.325930 581.113890 428.254460 503.232390 463.412410 0.000000 448.332640 61.000000 0.000000 +68 669.672610 524.997010 557.670040 700.112240 504.790160 608.793270 457.590910 525.143800 488.701970 0.000000 475.691380 63.000000 0.000000 +69 694.546330 552.888610 588.043270 723.160580 528.984620 637.317810 488.020780 547.679320 514.837280 0.000000 504.019230 68.000000 0.000000 +70 720.036190 581.690800 619.642940 746.704160 553.919920 666.700130 519.562320 570.847170 541.831420 0.000000 533.331790 70.000000 0.000000 +71 746.149720 611.417600 652.501650 770.748110 579.606690 696.953060 552.233830 594.655700 569.697390 0.000000 563.644840 89.000000 0.000000 +72 772.894590 642.082890 686.652590 795.297360 606.055360 728.089110 586.053470 619.113220 598.448240 0.000000 594.973820 93.000000 0.000000 +73 800.278440 673.700620 722.129210 820.357120 633.276550 760.121090 621.039490 644.227910 628.096860 0.000000 627.334350 96.000000 0.000000 +74 828.308780 706.284670 758.965520 845.932370 661.280640 793.061580 657.210020 670.008000 658.656190 0.000000 660.741940 100.000000 0.000000 +75 856.993290 739.849000 797.195920 872.028200 690.078060 826.923340 694.583250 696.461670 690.139040 0.000000 695.212100 104.000000 0.000000 +76 886.339480 774.407350 836.855290 898.649720 719.679260 861.718930 733.177120 723.597050 722.558410 0.000000 730.760250 107.000000 0.000000 +77 916.355040 809.973690 877.978880 925.802000 750.094540 897.461120 773.009830 751.422240 755.926940 0.000000 767.401790 112.000000 0.000000 +78 947.047550 846.561770 920.602360 953.490050 781.334290 934.162600 814.099240 779.945310 790.257450 0.000000 805.152160 116.000000 0.000000 +79 978.424620 884.185360 964.761840 981.718990 813.408690 971.835940 856.463440 809.174320 825.562620 0.000000 844.026610 120.000000 0.000000 +80 1010.493900 922.858280 1010.493900 1010.493900 846.328060 1010.493900 900.120300 839.117250 861.855220 0.000000 884.040470 125.000000 0.000000 +81 1032.933600 943.719850 1032.933600 1032.933600 865.674680 1032.933600 920.540040 858.337590 881.517460 0.000000 904.112980 305.000000 0.000000 +82 1055.626700 964.814390 1055.626700 1055.626700 885.234560 1055.626700 941.186950 877.769590 901.397030 0.000000 924.408260 338.000000 0.000000 +83 1078.573500 986.141720 1078.573500 1078.573500 905.007260 1078.573500 962.060850 897.412720 921.493590 0.000000 944.925840 375.000000 0.000000 +84 1101.773700 1007.701500 1101.773700 1101.773700 924.992190 1101.773700 983.161250 917.266420 941.806640 0.000000 965.665410 407.000000 0.000000 +85 1125.227400 1029.493400 1125.227400 1125.227400 945.188840 1125.227400 1004.487900 937.330080 962.335630 0.000000 986.626460 443.000000 0.000000 +86 1148.934600 1051.517200 1148.934600 1148.934600 965.596620 1148.934600 1026.040400 957.603210 983.080080 0.000000 1007.808600 1083.000000 0.000000 +87 1172.895400 1073.772700 1172.895400 1172.895400 986.215030 1172.895400 1047.818400 978.085210 1004.039600 0.000000 1029.211400 1200.000000 0.000000 +88 1197.109600 1096.259500 1197.109600 1197.109600 1007.043500 1197.109600 1069.821500 998.775510 1025.213500 0.000000 1050.834500 1330.000000 0.000000 +89 1221.577300 1118.977400 1221.577300 1221.577300 1028.081500 1221.577300 1092.049400 1019.673500 1046.601400 0.000000 1072.677500 1446.000000 0.000000 +90 1246.298600 1141.926000 1246.298600 1246.298600 1049.328400 1246.298600 1114.501700 1040.778600 1068.202900 0.000000 1094.739700 1573.000000 0.000000 +91 1271.273300 1165.105100 1271.273300 1271.273300 1070.783600 1271.273300 1137.178000 1062.090200 1090.017200 0.000000 1117.021000 3847.000000 0.000000 +92 1296.501700 1188.514400 1296.501700 1296.501700 1092.446700 1296.501700 1160.078000 1083.607700 1112.044100 0.000000 1139.520800 4262.000000 0.000000 +93 1321.983400 1212.153600 1321.983400 1321.983400 1114.316800 1321.983400 1183.201200 1105.330400 1134.282700 0.000000 1162.238500 4722.000000 0.000000 +94 1347.718800 1236.022200 1347.718800 1347.718800 1136.393600 1347.718800 1206.547100 1127.257800 1156.732800 0.000000 1185.174000 5135.000000 0.000000 +95 1373.707500 1260.120100 1373.707500 1373.707500 1158.676100 1373.707500 1230.115600 1149.389200 1179.393700 0.000000 1208.326400 5584.000000 0.000000 +96 1399.949800 1284.447000 1399.949800 1399.949800 1181.164200 1399.949800 1253.906100 1171.723900 1202.264800 0.000000 1231.695600 13659.000000 0.000000 +97 1426.445700 1309.002400 1426.445700 1426.445700 1203.856800 1426.445700 1277.918300 1194.261400 1225.345500 0.000000 1255.280800 15134.000000 0.000000 +98 1453.195100 1333.786100 1453.195100 1453.195100 1226.753700 1453.195100 1302.151700 1217.000900 1248.635400 0.000000 1279.081700 16767.000000 0.000000 +99 1480.197900 1358.797900 1480.197900 1480.197900 1249.853800 1480.197900 1326.605800 1239.941800 1272.133800 0.000000 1303.097800 18234.000000 0.000000 +100 1507.454300 1384.037200 1507.454300 1507.454300 1273.156700 1507.454300 1351.280400 1263.083400 1295.840200 0.000000 1327.328600 19829.000000 0.000000 diff --git a/tools/database/dbc/consumable.go b/tools/database/dbc/consumable.go new file mode 100644 index 0000000000..c9c1b3bc68 --- /dev/null +++ b/tools/database/dbc/consumable.go @@ -0,0 +1,116 @@ +package dbc + +import ( + "sort" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +type Consumable struct { + Id int // Item ID + Name string // Item name + ItemLevel int // Item level + RequiredLevel int // Required level to use + ClassId int // Item class ID (should be 0 for consumables) + SubClassId ConsumableClass // Item subclass ID + IconFileDataID int // Icon file data ID + SpellCategoryID int // Spell category ID + SpellCategoryFlags int // Spell category flags + ItemEffects []int // Item effect IDs + ElixirType int + Duration int // In milliseconds +} + +func (c *Consumable) ToMap() map[string]interface{} { + return map[string]interface{}{ + "Id": c.Id, + "Name": c.Name, + "ItemLevel": c.ItemLevel, + "RequiredLevel": c.RequiredLevel, + "ClassId": c.ClassId, + "SubClassId": c.SubClassId, + "IconFileDataID": c.IconFileDataID, + "SpellCategoryID": c.SpellCategoryID, + "SpellCategoryFlags": c.SpellCategoryFlags, + "ItemEffects": c.ItemEffects, + } +} + +// ToProto converts the Consumable to a proto representation. +func (c *Consumable) ToProto() *proto.Consumable { + return &proto.Consumable{ + Id: int32(c.Id), + Type: c.GetConsumableType(), + Stats: c.GetStatModifiers().ToProtoArray(), + Name: c.Name, + BuffsMainStat: false, // Todo: Should be food currently, might be more in MoP, figure out how to tell + BuffDuration: int32(c.Duration / 1000), + EffectIds: c.GetNonStatEffectIds(), + } +} +func (c *Consumable) GetConsumableType() proto.ConsumableType { + if c.SubClassId == ELIXIR { + switch c.ElixirType { + case 1: + return proto.ConsumableType_ConsumableTypeGuardianElixir + case 2: + return proto.ConsumableType_ConsumableTypeBattleElixir + } + } + if val, ok := consumableClassToProto[c.SubClassId]; ok { + return val + } + return proto.ConsumableType_ConsumableTypeUnknown +} + +func (s ConsumableClass) ToProto() proto.ConsumableType { + if val, ok := consumableClassToProto[s]; ok { + return val + } + return proto.ConsumableType_ConsumableTypeUnknown +} + +func GetConsumable(itemId int) Consumable { + return dbcInstance.Consumables[itemId] +} + +func (consumable *Consumable) GetNonStatEffectIds() []int32 { + var effectIds []int32 + + statAuraTypes := map[SpellEffectType]bool{ + E_HEAL: true, + E_ENERGIZE: true, + } + for _, effectID := range consumable.ItemEffects { + effect := GetItemEffect(effectID) + if effect.ID != 0 { + if spellEffects, ok := dbcInstance.SpellEffects[effect.SpellID]; ok { + for _, spellEffect := range spellEffects { + if statAuraTypes[spellEffect.EffectType] { + effectIds = append(effectIds, int32(spellEffect.ID)) + } + } + } + } + } + sort.Slice(effectIds, func(i, j int) bool { + return i > j + }) + return effectIds +} +func (consumable *Consumable) GetStatModifiers() *stats.Stats { + stats := &stats.Stats{} + for _, effectID := range consumable.ItemEffects { + effect := GetItemEffect(effectID) + if effect.ID != 0 { + if spellEffects, ok := dbcInstance.SpellEffects[effect.SpellID]; ok { + for _, spellEffect := range spellEffects { + stat := spellEffect.ParseStatEffect() + stats.AddInplace(stat) + } + } + } + } + return stats +} diff --git a/tools/database/dbc/dbc.go b/tools/database/dbc/dbc.go new file mode 100644 index 0000000000..79d6d03d11 --- /dev/null +++ b/tools/database/dbc/dbc.go @@ -0,0 +1,433 @@ +package dbc + +import ( + "encoding/json" + "fmt" + "log" + "sync" +) + +type DBC struct { + Items map[int]Item // Item ID + Gems map[int]Gem // Item ID + Enchants map[int]Enchant // ItemEchantment ID + ItemStatEffects map[int]ItemStatEffect // ItemID? something anyway + SpellEffects map[int]map[int]SpellEffect // Search by spellID and effect index + SpellEffectsById map[int]SpellEffect // Search by effectid + Spells map[int]Spell // Search by spellId + RandomSuffix map[int]RandomSuffix // Item level + ItemDamageTable map[string]map[int]ItemDamageTable // By Table name and item level + RandomPropertiesByIlvl map[int]RandomPropAllocationMap + ItemArmorQuality map[int]ItemArmorQuality + ItemArmorShield map[int]ItemArmorShield + ItemArmorTotal map[int]ItemArmorTotal + ArmorLocation map[int]ArmorLocation + SpellScalings map[int]SpellScaling + Consumables map[int]Consumable // Item ID + ItemEffects map[int]ItemEffect // Parent Item ID +} + +func NewDBC() *DBC { + return &DBC{ + Items: make(map[int]Item), + Gems: make(map[int]Gem), + Enchants: make(map[int]Enchant), + ItemStatEffects: make(map[int]ItemStatEffect), + SpellEffects: make(map[int]map[int]SpellEffect), + SpellEffectsById: make(map[int]SpellEffect), + Spells: make(map[int]Spell), + RandomSuffix: make(map[int]RandomSuffix), + ItemDamageTable: make(map[string]map[int]ItemDamageTable), + RandomPropertiesByIlvl: make(map[int]RandomPropAllocationMap), + ItemArmorQuality: make(map[int]ItemArmorQuality), + ItemArmorShield: make(map[int]ItemArmorShield), + ItemArmorTotal: make(map[int]ItemArmorTotal), + ArmorLocation: make(map[int]ArmorLocation), + Consumables: make(map[int]Consumable), + ItemEffects: make(map[int]ItemEffect), + SpellScalings: make(map[int]SpellScaling), + } +} + +var ( + dbcInstance *DBC + once sync.Once +) + +func InitDBC() error { + dbcInstance = NewDBC() + + if err := dbcInstance.loadItems("./assets/db_inputs/dbc/items.json"); err != nil { + return fmt.Errorf("loading items: %w", err) + } + if err := dbcInstance.loadGems("./assets/db_inputs/dbc/gems.json"); err != nil { + return fmt.Errorf("loading gems: %w", err) + } + if err := dbcInstance.loadEnchants("./assets/db_inputs/dbc/enchants.json"); err != nil { + return fmt.Errorf("loading enchants: %w", err) + } + if err := dbcInstance.loadItemStatEffects("./assets/db_inputs/dbc/item_stat_effects.json"); err != nil { + return fmt.Errorf("loading item stat effects: %w", err) + } + if err := dbcInstance.loadSpellEffects("./assets/db_inputs/dbc/spell_effects.json"); err != nil { + return fmt.Errorf("loading spell effects: %w", err) + } + if err := dbcInstance.loadRandomSuffix("./assets/db_inputs/dbc/random_suffix.json"); err != nil { + return fmt.Errorf("loading random suffixes: %w", err) + } + if err := dbcInstance.loadRandomPropertiesByIlvl("./assets/db_inputs/dbc/rand_prop_points.json"); err != nil { + return fmt.Errorf("loading random properties: %w", err) + } + if err := dbcInstance.loadItemDamageTables("./assets/db_inputs/dbc/item_damage_tables.json"); err != nil { + return fmt.Errorf("loading item damage tables: %w", err) + } + if err := dbcInstance.LoadItemArmorQuality("./assets/db_inputs/dbc/item_armor_quality.json"); err != nil { + return fmt.Errorf("loading item armor quality: %w", err) + } + if err := dbcInstance.LoadItemArmorTotal("./assets/db_inputs/dbc/item_armor_total.json"); err != nil { + return fmt.Errorf("loading item armor total: %w", err) + } + if err := dbcInstance.LoadItemArmorShield("./assets/db_inputs/dbc/item_armor_shield.json"); err != nil { + return fmt.Errorf("loading item armor shield: %w", err) + } + if err := dbcInstance.LoadArmorLocation("./assets/db_inputs/dbc/armor_location.json"); err != nil { + return fmt.Errorf("loading armor location: %w", err) + } + if err := dbcInstance.loadConsumables("./assets/db_inputs/dbc/consumables.json"); err != nil { + return fmt.Errorf("loading consumables: %w", err) + } + if err := dbcInstance.loadItemEffects("./assets/db_inputs/dbc/item_effects.json"); err != nil { + return fmt.Errorf("loading item effects: %w", err) + } + if err := dbcInstance.loadSpells("./assets/db_inputs/dbc/spells.json"); err != nil { + return fmt.Errorf("loading spells: %w", err) + } + return nil +} + +// GetDBC returns the DBC singleton instance +func GetDBC() *DBC { + once.Do(func() { + if err := InitDBC(); err != nil { + log.Fatalf("Failed to initialize DBC: %v", err) + } + }) + return dbcInstance +} + +func GetDBCWithError() (*DBC, error) { + var err error + once.Do(func() { + err = InitDBC() + }) + return dbcInstance, err +} + +func (d *DBC) loadConsumables(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var consumables []Consumable + if err = json.Unmarshal(data, &consumables); err != nil { + return ParseError{ + Source: filename, + Field: "Consumable", + Reason: err.Error(), + } + } + + for i := range consumables { + consumable := consumables[i] + d.Consumables[consumable.Id] = consumable + } + return nil +} +func (d *DBC) loadSpells(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var spells []Spell + if err = json.Unmarshal(data, &spells); err != nil { + return ParseError{ + Source: filename, + Field: "Spell", + Reason: err.Error(), + } + } + + for i := range spells { + spell := spells[i] + d.Spells[int(spell.ID)] = spell + } + return nil +} +func (d *DBC) loadItemEffects(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var effects []ItemEffect + if err = json.Unmarshal(data, &effects); err != nil { + return ParseError{ + Source: filename, + Field: "ItemEffect", + Reason: err.Error(), + } + } + + for i := range effects { + effect := effects[i] + d.ItemEffects[effect.ID] = effect + } + return nil +} +func (d *DBC) loadRandomPropertiesByIlvl(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var properties RandomPropAllocationsByIlvl + if err = json.Unmarshal(data, &properties); err != nil { + return ParseError{ + Source: filename, + Field: "RandomProps", + Reason: err.Error(), + } + } + + d.RandomPropertiesByIlvl = properties + return nil +} + +func (d *DBC) loadItems(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var items []Item + if err = json.Unmarshal(data, &items); err != nil { + return ParseError{ + Source: filename, + Field: "Item", + Reason: err.Error(), + } + } + + for i := range items { + item := items[i] + d.Items[item.Id] = item + } + return nil +} + +func (d *DBC) loadGems(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var gems []Gem + if err = json.Unmarshal(data, &gems); err != nil { + return ParseError{ + Source: filename, + Field: "Gem", + Reason: err.Error(), + } + } + + for i := range gems { + gem := gems[i] + d.Gems[gem.ItemId] = gem + } + return nil +} + +func (d *DBC) loadEnchants(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var enchants []Enchant + if err = json.Unmarshal(data, &enchants); err != nil { + return ParseError{ + Source: filename, + Field: "Enchant", + Reason: err.Error(), + } + } + + for i := range enchants { + enchant := enchants[i] + d.Enchants[enchant.EffectId] = enchant + } + return nil +} + +func (d *DBC) loadItemStatEffects(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var effects []ItemStatEffect + if err = json.Unmarshal(data, &effects); err != nil { + return ParseError{ + Source: filename, + Field: "ItemStatEffect", + Reason: err.Error(), + } + } + + for i := range effects { + effect := effects[i] + d.ItemStatEffects[effect.ID] = effect + } + return nil +} + +func (d *DBC) loadSpellEffects(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var effects map[int]map[int]SpellEffect + if err = json.Unmarshal(data, &effects); err != nil { + return ParseError{ + Source: filename, + Field: "SpellEffect", + Reason: err.Error(), + } + } + + d.SpellEffects = effects + for _, spell := range effects { + for _, effect := range spell { + d.SpellEffectsById[effect.ID] = effect + } + } + return nil +} + +func (d *DBC) loadRandomSuffix(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var suffixes []RandomSuffix + if err = json.Unmarshal(data, &suffixes); err != nil { + return ParseError{ + Source: filename, + Field: "RandomSuffix", + Reason: err.Error(), + } + } + + for i := range suffixes { + suffix := suffixes[i] + d.RandomSuffix[suffix.ID] = suffix + } + return nil +} + +func (d *DBC) LoadItemArmorQuality(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var tables map[int]ItemArmorQuality + if err = json.Unmarshal(data, &tables); err != nil { + return ParseError{ + Source: filename, + Field: "ItemArmorQuality", + Reason: err.Error(), + } + } + + d.ItemArmorQuality = tables + return nil +} +func (d *DBC) LoadArmorLocation(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var tables map[int]ArmorLocation + if err = json.Unmarshal(data, &tables); err != nil { + return ParseError{ + Source: filename, + Field: "ArmorLocation", + Reason: err.Error(), + } + } + + d.ArmorLocation = tables + return nil +} +func (d *DBC) LoadItemArmorShield(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var tables map[int]ItemArmorShield + if err = json.Unmarshal(data, &tables); err != nil { + return ParseError{ + Source: filename, + Field: "ItemArmorShield", + Reason: err.Error(), + } + } + + d.ItemArmorShield = tables + return nil +} + +func (d *DBC) LoadItemArmorTotal(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var tables map[int]ItemArmorTotal + if err = json.Unmarshal(data, &tables); err != nil { + return ParseError{ + Source: filename, + Field: "ItemArmorTotal", + Reason: err.Error(), + } + } + + d.ItemArmorTotal = tables + return nil +} + +func (d *DBC) loadItemDamageTables(filename string) error { + data, err := readGzipFile(filename) + if err != nil { + return err + } + + var tables map[string]map[int]ItemDamageTable + if err = json.Unmarshal(data, &tables); err != nil { + return ParseError{ + Source: filename, + Field: "ItemDamage", + Reason: err.Error(), + } + } + + d.ItemDamageTable = tables + return nil +} diff --git a/tools/database/dbc/enchant.go b/tools/database/dbc/enchant.go new file mode 100644 index 0000000000..0f76b5dcd5 --- /dev/null +++ b/tools/database/dbc/enchant.go @@ -0,0 +1,95 @@ +package dbc + +import ( + "slices" + "sort" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +type Enchant struct { + EffectId int + Name string + SpellId int + ItemId int + ProfessionId int + Effects []int + EffectPoints []int + EffectArgs []int + IsWeaponEnchant bool + InventoryType InventoryTypeFlag + SubClassMask int + ClassMask int + FDID int + Quality ItemQuality + RequiredProfession int + EffectName string +} + +func (enchant *Enchant) ToProto() *proto.UIEnchant { + uiEnchant := &proto.UIEnchant{ + Name: enchant.Name, + ItemId: int32(enchant.ItemId), + SpellId: int32(enchant.SpellId), + EffectId: int32(enchant.EffectId), + ClassAllowlist: GetClassesFromClassMask(enchant.ClassMask), + ExtraTypes: []proto.ItemType{}, + Stats: stats.Stats{}.ToProtoArray(), + Quality: enchant.Quality.ToProto(), + RequiredProfession: GetProfession(enchant.RequiredProfession), + } + if enchant.FDID == 0 { + uiEnchant.Icon = "trade_engraving" + } + + if enchant.IsWeaponEnchant { + // Process weapon enchants. + uiEnchant.Type = proto.ItemType_ItemTypeWeapon + if enchant.SubClassMask == ITEM_SUBCLASS_BIT_WEAPON_STAFF { + // Staff only. + uiEnchant.EnchantType = proto.EnchantType_EnchantTypeStaff + } + if enchant.SubClassMask == rangedMask { + uiEnchant.Type = proto.ItemType_ItemTypeRanged + } + if enchant.SubClassMask == twoHandMask { + // Two-handed weapon. + uiEnchant.EnchantType = proto.EnchantType_EnchantTypeTwoHand + } + } else { + // Process non-weapon enchants. + if enchant.SubClassMask == OffHandValue { + uiEnchant.EnchantType = proto.EnchantType_EnchantTypeOffHand + uiEnchant.Type = proto.ItemType_ItemTypeWeapon + } + if enchant.SubClassMask == ITEM_SUBCLASS_BIT_ARMOR_SHIELD || enchant.SubClassMask == 64 { // idk where the 64 comes from but shield spikes are this + uiEnchant.EnchantType = proto.EnchantType_EnchantTypeShield + uiEnchant.Type = proto.ItemType_ItemTypeWeapon + } + // Sort flags for consistent generation + var flags []int + for flag := range MapInventoryTypeToEnchantMetaType { + flags = append(flags, int(flag)) + } + + sort.Ints(flags) + + for _, f := range flags { + flag := InventoryTypeFlag(f) + m := MapInventoryTypeToEnchantMetaType[flag] + if enchant.InventoryType.Has(flag) { + if uiEnchant.Type != proto.ItemType_ItemTypeUnknown { + uiEnchant.ExtraTypes = append(uiEnchant.ExtraTypes, m.ItemType) + } else { + uiEnchant.Type = m.ItemType + } + } + } + slices.Sort(uiEnchant.ExtraTypes) + } + stats := stats.Stats{} + processEnchantmentEffects(enchant.Effects, enchant.EffectArgs, enchant.EffectPoints, &stats, true) + uiEnchant.Stats = stats.ToProtoArray() + return uiEnchant +} diff --git a/tools/database/dbc/enums.go b/tools/database/dbc/enums.go new file mode 100644 index 0000000000..a0ab188a7c --- /dev/null +++ b/tools/database/dbc/enums.go @@ -0,0 +1,1062 @@ +package dbc + +import ( + "github.com/wowsims/mop/sim/core/proto" +) + +const ( + ITEM_ENCHANTMENT_NONE int = 0 + ITEM_ENCHANTMENT_COMBAT_SPELL int = 1 + ITEM_ENCHANTMENT_DAMAGE int = 2 + ITEM_ENCHANTMENT_EQUIP_SPELL int = 3 + ITEM_ENCHANTMENT_RESISTANCE int = 4 + ITEM_ENCHANTMENT_STAT int = 5 + ITEM_ENCHANTMENT_TOTEM int = 6 + ITEM_ENCHANTMENT_USE_SPELL int = 7 + ITEM_ENCHANTMENT_PRISMATIC_SOCKET int = 8 + ITEM_ENCHANTMENT_RELIC_RANK int = 9 + ITEM_ENCHANTMENT_APPLY_BONUS int = 11 + ITEM_ENCHANTMENT_RELIC_EVIL int = 12 // Scaling relic +ilevel, see enchant::initialize_relic +) + +const ( + ITEM_SPELLTRIGGER_ON_USE int = 0 // use after equip cooldown + ITEM_SPELLTRIGGER_ON_EQUIP int = 1 + ITEM_SPELLTRIGGER_CHANCE_ON_HIT int = 2 + ITEM_SPELLTRIGGER_SOULSTONE int = 4 + ITEM_SPELLTRIGGER_ON_NO_DELAY_USE int = 5 // no equip cooldown + ITEM_SPELLTRIGGER_LEARN_SPELL_ID int = 6 +) + +type SpellEffectType int + +const ( + E_INSTAKILL SpellEffectType = 1 + E_SCHOOL_DAMAGE SpellEffectType = 2 + E_DUMMY SpellEffectType = 3 + E_PORTAL_TELEPORT SpellEffectType = 4 + E_UNK_ITEM_MOD SpellEffectType = 5 + E_APPLY_AURA SpellEffectType = 6 + E_ENVIRONMENTAL_DAMAGE SpellEffectType = 7 + E_POWER_DRAIN SpellEffectType = 8 + E_HEALTH_LEECH SpellEffectType = 9 + E_HEAL SpellEffectType = 10 + E_BIND SpellEffectType = 11 + E_PORTAL SpellEffectType = 12 + E_RITUAL_BASE SpellEffectType = 13 + E_INCREASE_CURRENCY_CAP SpellEffectType = 14 + E_RITUAL_ACTIVATE_PORTAL SpellEffectType = 15 + E_QUEST_COMPLETE SpellEffectType = 16 + E_WEAPON_DAMAGE_NOSCHOOL SpellEffectType = 17 + E_RESURRECT SpellEffectType = 18 + E_ADD_EXTRA_ATTACKS SpellEffectType = 19 + E_DODGE SpellEffectType = 20 + E_EVADE SpellEffectType = 21 + E_PARRY SpellEffectType = 22 + E_BLOCK SpellEffectType = 23 + E_CREATE_ITEM SpellEffectType = 24 + E_WEAPON SpellEffectType = 25 + E_DEFENSE SpellEffectType = 26 + E_PERSISTENT_AREA_AURA SpellEffectType = 27 + E_SUMMON SpellEffectType = 28 + E_LEAP SpellEffectType = 29 + E_ENERGIZE SpellEffectType = 30 + E_WEAPON_PERCENT_DAMAGE SpellEffectType = 31 + E_TRIGGER_MISSILE SpellEffectType = 32 + E_OPEN_LOCK SpellEffectType = 33 + E_SUMMON_CHANGE_ITEM SpellEffectType = 34 + E_APPLY_AREA_AURA_PARTY SpellEffectType = 35 + E_LEARN_SPELL SpellEffectType = 36 + E_SPELL_DEFENSE SpellEffectType = 37 + E_DISPEL SpellEffectType = 38 + E_LANGUAGE SpellEffectType = 39 + E_DUAL_WIELD SpellEffectType = 40 + E_JUMP SpellEffectType = 41 + E_JUMP_DEST SpellEffectType = 42 + E_TELEPORT_UNITS_FACE_CASTER SpellEffectType = 43 + E_SKILL_STEP SpellEffectType = 44 + E_PLAY_MOVIE SpellEffectType = 45 + E_SPAWN SpellEffectType = 46 + E_TRADE_SKILL SpellEffectType = 47 + E_STEALTH SpellEffectType = 48 + E_DETECT SpellEffectType = 49 + E_TRANS_DOOR SpellEffectType = 50 + E_FORCE_CRITICAL_HIT SpellEffectType = 51 + E_SET_MAX_BATTLE_PET_COUNT SpellEffectType = 52 + E_ENCHANT_ITEM SpellEffectType = 53 + E_ENCHANT_ITEM_TEMPORARY SpellEffectType = 54 + E_TAMECREATURE SpellEffectType = 55 + E_SUMMON_PET SpellEffectType = 56 + E_LEARN_PET_SPELL SpellEffectType = 57 + E_WEAPON_DAMAGE SpellEffectType = 58 + E_CREATE_RANDOM_ITEM SpellEffectType = 59 + E_PROFICIENCY SpellEffectType = 60 + E_SEND_EVENT SpellEffectType = 61 + E_POWER_BURN SpellEffectType = 62 + E_THREAT SpellEffectType = 63 + E_TRIGGER_SPELL SpellEffectType = 64 + E_APPLY_AREA_AURA_RAID SpellEffectType = 65 + E_RECHARGE_ITEM SpellEffectType = 66 + E_HEAL_MAX_HEALTH SpellEffectType = 67 + E_INTERRUPT_CAST SpellEffectType = 68 + E_DISTRACT SpellEffectType = 69 + E_PULL SpellEffectType = 70 + E_PICKPOCKET SpellEffectType = 71 + E_ADD_FARSIGHT SpellEffectType = 72 + E_UNTRAIN_TALENTS SpellEffectType = 73 + E_APPLY_GLYPH SpellEffectType = 74 + E_HEAL_MECHANICAL SpellEffectType = 75 + E_SUMMON_OBJECT_WILD SpellEffectType = 76 + E_SCRIPT_EFFECT SpellEffectType = 77 + E_ATTACK SpellEffectType = 78 + E_SANCTUARY SpellEffectType = 79 + E_ADD_COMBO_POINTS SpellEffectType = 80 + E_PUSH_ABILITY_TO_ACTION_BAR SpellEffectType = 81 + E_BIND_SIGHT SpellEffectType = 82 + E_DUEL SpellEffectType = 83 + E_STUCK SpellEffectType = 84 + E_SUMMON_PLAYER SpellEffectType = 85 + E_ACTIVATE_OBJECT SpellEffectType = 86 + E_GAMEOBJECT_DAMAGE SpellEffectType = 87 + E_GAMEOBJECT_REPAIR SpellEffectType = 88 + E_GAMEOBJECT_SET_DESTRUCTION_STATE SpellEffectType = 89 + E_KILL_CREDIT SpellEffectType = 90 + E_THREAT_ALL SpellEffectType = 91 + E_ENCHANT_HELD_ITEM SpellEffectType = 92 + E_FORCE_DESELECT SpellEffectType = 93 + E_SELF_RESURRECT SpellEffectType = 94 + E_SKINNING SpellEffectType = 95 + E_CHARGE SpellEffectType = 96 + E_CAST_BUTTON SpellEffectType = 97 + E_KNOCK_BACK SpellEffectType = 98 + E_DISENCHANT SpellEffectType = 99 + E_INEBRIATE SpellEffectType = 100 + E_FEED_PET SpellEffectType = 101 + E_DISMISS_PET SpellEffectType = 102 + E_REPUTATION SpellEffectType = 103 + E_SUMMON_OBJECT_SLOT1 SpellEffectType = 104 + E_SURVEY SpellEffectType = 105 + E_CHANGE_RAID_MARKER SpellEffectType = 106 + E_SHOW_CORPSE_LOOT SpellEffectType = 107 + E_DISPEL_MECHANIC SpellEffectType = 108 + E_RESURRECT_PET SpellEffectType = 109 + E_DESTROY_ALL_TOTEMS SpellEffectType = 110 + E_DURABILITY_DAMAGE SpellEffectType = 111 + E_ATTACK_ME SpellEffectType = 114 + E_DURABILITY_DAMAGE_PCT SpellEffectType = 115 + E_SKIN_PLAYER_CORPSE SpellEffectType = 116 + E_SPIRIT_HEAL SpellEffectType = 117 + E_SKILL SpellEffectType = 118 + E_APPLY_AREA_AURA_PET SpellEffectType = 119 + E_TELEPORT_GRAVEYARD SpellEffectType = 120 + E_NORMALIZED_WEAPON_DMG SpellEffectType = 121 + E_SEND_TAXI SpellEffectType = 123 + E_PULL_TOWARDS SpellEffectType = 124 + E_MODIFY_THREAT_PERCENT SpellEffectType = 125 + E_STEAL_BENEFICIAL_BUFF SpellEffectType = 126 + E_PROSPECTING SpellEffectType = 127 + E_APPLY_AREA_AURA_FRIEND SpellEffectType = 128 + E_APPLY_AREA_AURA_ENEMY SpellEffectType = 129 + E_REDIRECT_THREAT SpellEffectType = 130 + E_PLAY_SOUND SpellEffectType = 131 + E_PLAY_MUSIC SpellEffectType = 132 + E_UNLEARN_SPECIALIZATION SpellEffectType = 133 + E_KILL_CREDIT2 SpellEffectType = 134 + E_CALL_PET SpellEffectType = 135 + E_HEAL_PCT SpellEffectType = 136 + E_ENERGIZE_PCT SpellEffectType = 137 + E_LEAP_BACK SpellEffectType = 138 + E_CLEAR_QUEST SpellEffectType = 139 + E_FORCE_CAST SpellEffectType = 140 + E_FORCE_CAST_WITH_VALUE SpellEffectType = 141 + E_TRIGGER_SPELL_WITH_VALUE SpellEffectType = 142 + E_APPLY_AREA_AURA_OWNER SpellEffectType = 143 + E_KNOCK_BACK_DEST SpellEffectType = 144 + E_PULL_TOWARDS_DEST SpellEffectType = 145 + E_ACTIVATE_RUNE SpellEffectType = 146 + E_QUEST_FAIL SpellEffectType = 147 + E_TRIGGER_MISSILE_SPELL_WITH_VALUE SpellEffectType = 148 + E_CHARGE_DEST SpellEffectType = 149 + E_QUEST_START SpellEffectType = 150 + E_TRIGGER_SPELL_2 SpellEffectType = 151 + E_SUMMON_RAF_FRIEND SpellEffectType = 152 + E_CREATE_TAMED_PET SpellEffectType = 153 + E_DISCOVER_TAXI SpellEffectType = 154 + E_TITAN_GRIP SpellEffectType = 155 + E_ENCHANT_ITEM_PRISMATIC SpellEffectType = 156 + E_CREATE_LOOT SpellEffectType = 157 + E_MILLING SpellEffectType = 158 + E_ALLOW_RENAME_PET SpellEffectType = 159 + E_FORCE_CAST_2 SpellEffectType = 160 + E_TALENT_SPEC_COUNT SpellEffectType = 161 + E_TALENT_SPEC_SELECT SpellEffectType = 162 + E_OBLITERATE_ITEM SpellEffectType = 163 + E_REMOVE_AURA SpellEffectType = 164 + E_DAMAGE_FROM_MAX_HEALTH_PCT SpellEffectType = 165 + E_GIVE_CURRENCY SpellEffectType = 166 + E_UPDATE_PLAYER_PHASE SpellEffectType = 167 + E_ALLOW_CONTROL_PET SpellEffectType = 168 + E_DESTROY_ITEM SpellEffectType = 169 + E_UPDATE_ZONE_AURAS_AND_PHASES SpellEffectType = 170 + E_SUMMON_PERSONAL_GAMEOBJECT SpellEffectType = 171 + E_RESURRECT_WITH_AURA SpellEffectType = 172 + E_UNLOCK_GUILD_VAULT_TAB SpellEffectType = 173 + E_APPLY_AURA_ON_PET SpellEffectType = 174 + E_SANCTUARY_2 SpellEffectType = 176 + E_CREATE_AREATRIGGER SpellEffectType = 179 + E_UPDATE_AREATRIGGER SpellEffectType = 180 + E_REMOVE_TALENT SpellEffectType = 181 + E_DESPAWN_AREATRIGGER SpellEffectType = 182 + E_REPUTATION_2 SpellEffectType = 184 + E_RANDOMIZE_ARCHAEOLOGY_DIGSITES SpellEffectType = 187 + E_LOOT SpellEffectType = 189 + E_TELEPORT_TO_DIGSITE SpellEffectType = 191 + E_UNCAGE_BATTLEPET SpellEffectType = 192 + E_START_PET_BATTLE SpellEffectType = 193 + E_PLAY_SCENE SpellEffectType = 198 + E_HEAL_BATTLEPET_PCT SpellEffectType = 200 + E_ENABLE_BATTLE_PETS SpellEffectType = 201 + E_APPLY_AURA_ON_UNKNOWN SpellEffectType = 202 // originally "APPLY_AURA_ON_?" + E_CHANGE_BATTLEPET_QUALITY SpellEffectType = 204 + E_LAUNCH_QUEST_CHOICE SpellEffectType = 205 + E_ALTER_ITEM SpellEffectType = 206 + E_LAUNCH_QUEST_TASK SpellEffectType = 207 + E_LEARN_GARRISON_BUILDING SpellEffectType = 210 + E_LEARN_GARRISON_SPECIALIZATION SpellEffectType = 211 + E_CREATE_GARRISON SpellEffectType = 214 + E_UPGRADE_CHARACTER_SPELLS SpellEffectType = 215 + E_CREATE_SHIPMENT SpellEffectType = 216 + E_UPGRADE_GARRISON SpellEffectType = 217 + E_CREATE_CONVERSATION SpellEffectType = 219 + E_ADD_GARRISON_FOLLOWER SpellEffectType = 220 + E_CREATE_HEIRLOOM_ITEM SpellEffectType = 222 + E_CHANGE_ITEM_BONUSES SpellEffectType = 223 + E_ACTIVATE_GARRISON_BUILDING SpellEffectType = 224 + E_GRANT_BATTLEPET_LEVEL SpellEffectType = 225 + E_TELEPORT_TO_LFG_DUNGEON SpellEffectType = 227 + E_SET_FOLLOWER_QUALITY SpellEffectType = 229 + E_INCREASE_FOLLOWER_ITEM_LEVEL SpellEffectType = 230 + E_INCREASE_FOLLOWER_EXPERIENCE SpellEffectType = 231 + E_REMOVE_PHASE SpellEffectType = 232 + E_RANDOMIZE_FOLLOWER_ABILITIES SpellEffectType = 233 + E_GIVE_EXPERIENCE SpellEffectType = 236 + E_GIVE_RESTED_EXPERIENCE_BONUS SpellEffectType = 237 + E_INCREASE_SKILL SpellEffectType = 238 + E_END_GARRISON_BUILDING_CONSTRUCTION SpellEffectType = 239 + E_GIVE_ARTIFACT_POWER SpellEffectType = 240 + E_GIVE_ARTIFACT_POWER_NO_BONUS SpellEffectType = 242 + E_APPLY_ENCHANT_ILLUSION SpellEffectType = 243 + E_LEARN_FOLLOWER_ABILITY SpellEffectType = 244 + E_UPGRADE_HEIRLOOM SpellEffectType = 245 + E_FINISH_GARRISON_MISSION SpellEffectType = 246 + E_ADD_GARRISON_MISSION SpellEffectType = 247 + E_FINISH_SHIPMENT SpellEffectType = 248 + E_FORCE_EQUIP_ITEM SpellEffectType = 249 + E_TAKE_SCREENSHOT SpellEffectType = 250 + E_SET_GARRISON_CACHE_SIZE SpellEffectType = 251 + E_TELEPORT_UNITS SpellEffectType = 252 + E_GIVE_HONOR SpellEffectType = 253 + E_LEARN_TRANSMOG_SET SpellEffectType = 255 + E_MODIFY_KEYSTONE SpellEffectType = 258 + E_RESPEC_AZERITE_EMPOWERED_ITEM SpellEffectType = 259 + E_SUMMON_STABLED_PET SpellEffectType = 260 + E_SCRAP_ITEM SpellEffectType = 261 + E_REPAIR_ITEM SpellEffectType = 263 + E_REMOVE_GEM SpellEffectType = 264 + E_LEARN_AZERITE_ESSENCE_POWER SpellEffectType = 265 + E_APPLY_MOUNT_EQUIPMENT SpellEffectType = 268 + E_UPGRADE_ITEM SpellEffectType = 269 + E_APPLY_AREA_AURA_PARTY_NONRANDOM SpellEffectType = 271 + E_SET_COVENANT SpellEffectType = 272 + E_CRAFT_RUNEFORGE_LEGENDARY SpellEffectType = 273 + E_LEARN_TRANSMOG_ILLUSION SpellEffectType = 276 + E_SET_CHROMIE_TIME SpellEffectType = 277 + E_LEARN_GARR_TALENT SpellEffectType = 279 + E_LEARN_SOULBIND_CONDUIT SpellEffectType = 281 + E_CONVERT_ITEMS_TO_CURRENCY SpellEffectType = 282 + E_COMPLETE_CAMPAIGN SpellEffectType = 283 + E_SEND_CHAT_MESSAGE SpellEffectType = 284 + E_MODIFY_KEYSTONE_2 SpellEffectType = 285 + E_GRANT_BATTLEPET_EXPERIENCE SpellEffectType = 286 + E_SET_GARRISON_FOLLOWER_LEVEL SpellEffectType = 287 + E_CRAFT_ITEM SpellEffectType = 288 + E_MODIFY_AURA_STACKS SpellEffectType = 289 + E_MODIFY_COOLDOWN SpellEffectType = 290 + E_MODIFY_COOLDOWNS SpellEffectType = 291 + E_MODIFY_COOLDOWNS_BY_CATEGORY SpellEffectType = 292 + E_MODIFY_CHARGES SpellEffectType = 293 + E_CRAFT_LOOT SpellEffectType = 294 + E_SALVAGE_ITEM SpellEffectType = 295 + E_CRAFT_SALVAGE_ITEM SpellEffectType = 296 + E_RECRAFT_ITEM SpellEffectType = 297 + E_CANCEL_ALL_PRIVATE_CONVERSATIONS SpellEffectType = 298 + E_CRAFT_ENCHANT SpellEffectType = 301 + E_GATHERING SpellEffectType = 302 + E_CREATE_TRAIT_TREE_CONFIG SpellEffectType = 303 + E_CHANGE_ACTIVE_COMBAT_TRAIT_CONFIG SpellEffectType = 304 + E_UPDATE_INTERACTIONS SpellEffectType = 306 + E_CANCEL_PRELOAD_WORLD SpellEffectType = 308 + E_PRELOAD_WORLD SpellEffectType = 309 + E_ENSURE_WORLD_LOADED SpellEffectType = 310 + E_CHANGE_ITEM_BONUSES_2 SpellEffectType = 311 + E_ADD_SOCKET_BONUS SpellEffectType = 312 + E_LEARN_TRANSMOG_APPEARANCE_FROM_ITEM_MOD_APPEARANCE_GROUP SpellEffectType = 313 + E_KILL_CREDIT_LABEL_1 SpellEffectType = 314 + E_KILL_CREDIT_LABEL_2 SpellEffectType = 315 + E_UI_ACTION SpellEffectType = 316 + E_LEARN_WARBAND_SCENE SpellEffectType = 317 +) + +type ItemSubClass int + +// Define each item subclass as a bit flag (only those with a name). +const ( + OneHandedAxes ItemSubClass = 1 << 0 // 1 from "One-Handed Axes" (SubClassID 0) + TwoHandedAxes ItemSubClass = 1 << 1 // 2 from "Two-Handed Axes" (SubClassID 1) + Bows ItemSubClass = 1 << 2 // 4 from "Bows" (SubClassID 2) + Guns ItemSubClass = 1 << 3 // 8 from "Guns" (SubClassID 3) + OneHandedMaces ItemSubClass = 1 << 4 // 16 from "One-Handed Maces" (SubClassID 4) + TwoHandedMaces ItemSubClass = 1 << 5 // 32 from "Two-Handed Maces" (SubClassID 5) + Polearms ItemSubClass = 1 << 6 // 64 from "Polearms" (SubClassID 6) + OneHandedSwords ItemSubClass = 1 << 7 // 128 from "One-Handed Swords" (SubClassID 7) + TwoHandedSwords ItemSubClass = 1 << 8 // 256 from "Two-Handed Swords" (SubClassID 8) + Staves ItemSubClass = 1 << 10 // 1024 from "Staves" (SubClassID 10) + OneHandedExotics ItemSubClass = 1 << 11 // 2048 from "One-Handed Exotics" (SubClassID 11) + TwoHandedExotics ItemSubClass = 1 << 12 // 4096 from "Two-Handed Exotics" (SubClassID 12) + FistWeapons ItemSubClass = 1 << 13 // 8192 from "Fist Weapons" (SubClassID 13) + Daggers ItemSubClass = 1 << 15 // 32768 from "Daggers" (SubClassID 15) +) + +type ItemQuality int + +const ( + JUNK ItemQuality = 0 + COMMON ItemQuality = 1 + UNCOMMON ItemQuality = 2 + RARE ItemQuality = 3 + EPIC ItemQuality = 4 + LEGENDARY ItemQuality = 5 + ARTIFACT ItemQuality = 6 + HEIRLOOM ItemQuality = 7 +) + +func (raw ItemQuality) ToProto() proto.ItemQuality { + switch raw { + case JUNK: + return proto.ItemQuality_ItemQualityJunk + case COMMON: + return proto.ItemQuality_ItemQualityCommon + case UNCOMMON: + return proto.ItemQuality_ItemQualityUncommon + case RARE: + return proto.ItemQuality_ItemQualityRare + case EPIC: + return proto.ItemQuality_ItemQualityEpic + case LEGENDARY: + return proto.ItemQuality_ItemQualityLegendary + case ARTIFACT: + return proto.ItemQuality_ItemQualityArtifact + case HEIRLOOM: + return proto.ItemQuality_ItemQualityHeirloom + } + return proto.ItemQuality_ItemQualityUncommon +} + +const ( + ITEM_CLASS_CONSUMABLE = iota + ITEM_CLASS_CONTAINER + ITEM_CLASS_WEAPON + ITEM_CLASS_GEM + ITEM_CLASS_ARMOR + ITEM_CLASS_REAGENT + ITEM_CLASS_PROJECTILE + ITEM_CLASS_TRADE_GOODS + ITEM_CLASS_GENERIC + ITEM_CLASS_RECIPE + ITEM_CLASS_MONEY + ITEM_CLASS_QUIVER + ITEM_CLASS_QUEST + ITEM_CLASS_KEY + ITEM_CLASS_PERMANENT + ITEM_CLASS_MISC + ITEM_CLASS_GLYPH +) + +const ( + ITEM_SUBCLASS_WEAPON_AXE = iota + ITEM_SUBCLASS_WEAPON_AXE2 + ITEM_SUBCLASS_WEAPON_BOW + ITEM_SUBCLASS_WEAPON_GUN + ITEM_SUBCLASS_WEAPON_MACE + ITEM_SUBCLASS_WEAPON_MACE2 + ITEM_SUBCLASS_WEAPON_POLEARM + ITEM_SUBCLASS_WEAPON_SWORD + ITEM_SUBCLASS_WEAPON_SWORD2 + ITEM_SUBCLASS_WEAPON_WARGLAIVE + ITEM_SUBCLASS_WEAPON_STAFF + ITEM_SUBCLASS_WEAPON_EXOTIC + ITEM_SUBCLASS_WEAPON_EXOTIC2 + ITEM_SUBCLASS_WEAPON_FIST + ITEM_SUBCLASS_WEAPON_MISC + ITEM_SUBCLASS_WEAPON_DAGGER + ITEM_SUBCLASS_WEAPON_THROWN + ITEM_SUBCLASS_WEAPON_SPEAR + ITEM_SUBCLASS_WEAPON_CROSSBOW + ITEM_SUBCLASS_WEAPON_WAND + ITEM_SUBCLASS_WEAPON_FISHING_POLE +) + +const ITEM_SUBCLASS_WEAPON_INVALID = 31 + +const ( + ITEM_SUBCLASS_ARMOR_MISC = iota + ITEM_SUBCLASS_ARMOR_CLOTH + ITEM_SUBCLASS_ARMOR_LEATHER + ITEM_SUBCLASS_ARMOR_MAIL + ITEM_SUBCLASS_ARMOR_PLATE + ITEM_SUBCLASS_ARMOR_COSMETIC + ITEM_SUBCLASS_ARMOR_SHIELD + ITEM_SUBCLASS_ARMOR_LIBRAM + ITEM_SUBCLASS_ARMOR_IDOL + ITEM_SUBCLASS_ARMOR_TOTEM + ITEM_SUBCLASS_ARMOR_SIGIL + ITEM_SUBCLASS_ARMOR_RELIC +) + +const ( + ITEM_SUBCLASS_CONSUMABLE = iota + ITEM_SUBCLASS_POTION + ITEM_SUBCLASS_ELIXIR + ITEM_SUBCLASS_FLASK + ITEM_SUBCLASS_SCROLL + ITEM_SUBCLASS_FOOD + ITEM_SUBCLASS_ITEM_ENHANCEMENT + ITEM_SUBCLASS_BANDAGE + ITEM_SUBCLASS_CONSUMABLE_OTHER +) + +const ( + INVTYPE_NON_EQUIP = iota + INVTYPE_HEAD + INVTYPE_NECK + INVTYPE_SHOULDERS + INVTYPE_BODY + INVTYPE_CHEST + INVTYPE_WAIST + INVTYPE_LEGS + INVTYPE_FEET + INVTYPE_WRISTS + INVTYPE_HANDS + INVTYPE_FINGER + INVTYPE_TRINKET + INVTYPE_WEAPON + INVTYPE_SHIELD + INVTYPE_RANGED + INVTYPE_CLOAK + INVTYPE_2HWEAPON + INVTYPE_BAG + INVTYPE_TABARD + INVTYPE_ROBE + INVTYPE_WEAPONMAINHAND + INVTYPE_WEAPONOFFHAND + INVTYPE_HOLDABLE + INVTYPE_AMMO + INVTYPE_THROWN + INVTYPE_RANGEDRIGHT + INVTYPE_QUIVER + INVTYPE_RELIC + INVTYPE_MAX +) + +// EffectAuraType defines the custom type for aura effects. +type EffectAuraType int + +// Enum constants defined using the A_ naming convention. +// (Keys that were commented out in the JavaScript object are left commented here.) +const ( + A_NONE EffectAuraType = 0 + A_BIND_SIGHT EffectAuraType = 1 + A_MOD_POSSESS EffectAuraType = 2 + A_PERIODIC_DAMAGE EffectAuraType = 3 + A_DUMMY EffectAuraType = 4 + A_MOD_CONFUSE EffectAuraType = 5 + A_MOD_CHARM EffectAuraType = 6 + A_MOD_FEAR EffectAuraType = 7 + A_PERIODIC_HEAL EffectAuraType = 8 + A_MOD_ATTACKSPEED EffectAuraType = 9 + A_MOD_THREAT EffectAuraType = 10 + A_MOD_TAUNT EffectAuraType = 11 + A_MOD_STUN EffectAuraType = 12 + A_MOD_DAMAGE_DONE EffectAuraType = 13 + A_MOD_DAMAGE_TAKEN EffectAuraType = 14 + A_DAMAGE_SHIELD EffectAuraType = 15 + A_MOD_STEALTH EffectAuraType = 16 + A_MOD_STEALTH_DETECT EffectAuraType = 17 + A_MOD_INVISIBILITY EffectAuraType = 18 + A_MOD_INVISIBILITY_DETECT EffectAuraType = 19 + A_OBS_MOD_HEALTH EffectAuraType = 20 + A_OBS_MOD_POWER EffectAuraType = 21 + A_MOD_RESISTANCE EffectAuraType = 22 + A_PERIODIC_TRIGGER_SPELL EffectAuraType = 23 + A_PERIODIC_ENERGIZE EffectAuraType = 24 + A_MOD_PACIFY EffectAuraType = 25 + A_MOD_ROOT EffectAuraType = 26 + A_MOD_SILENCE EffectAuraType = 27 + A_REFLECT_SPELLS EffectAuraType = 28 + A_MOD_STAT EffectAuraType = 29 + A_MOD_SKILL EffectAuraType = 30 + A_MOD_INCREASE_SPEED EffectAuraType = 31 + A_MOD_INCREASE_MOUNTED_SPEED EffectAuraType = 32 + A_MOD_DECREASE_SPEED EffectAuraType = 33 + A_MOD_INCREASE_HEALTH EffectAuraType = 34 + A_MOD_INCREASE_ENERGY EffectAuraType = 35 + A_MOD_SHAPESHIFT EffectAuraType = 36 + A_EFFECT_IMMUNITY EffectAuraType = 37 + A_STATE_IMMUNITY EffectAuraType = 38 + A_SCHOOL_IMMUNITY EffectAuraType = 39 + A_DAMAGE_IMMUNITY EffectAuraType = 40 + A_DISPEL_IMMUNITY EffectAuraType = 41 + A_PROC_TRIGGER_SPELL EffectAuraType = 42 + A_PROC_TRIGGER_DAMAGE EffectAuraType = 43 + A_TRACK_CREATURES EffectAuraType = 44 + A_TRACK_RESOURCES EffectAuraType = 45 + // 46 is commented out in the JS mapping + A_MOD_PARRY_PERCENT EffectAuraType = 47 + A_PERIODIC_TRIGGER_SPELL_FROM_CLIENT EffectAuraType = 48 + A_MOD_DODGE_PERCENT EffectAuraType = 49 + A_MOD_CRITICAL_HEALING_AMOUNT EffectAuraType = 50 + A_MOD_BLOCK_PERCENT EffectAuraType = 51 + A_MOD_WEAPON_CRIT_PERCENT EffectAuraType = 52 + A_PERIODIC_LEECH EffectAuraType = 53 + A_MOD_HIT_CHANCE EffectAuraType = 54 + A_MOD_SPELL_HIT_CHANCE EffectAuraType = 55 + A_TRANSFORM EffectAuraType = 56 + A_MOD_SPELL_CRIT_CHANCE EffectAuraType = 57 + A_MOD_INCREASE_SWIM_SPEED EffectAuraType = 58 + A_MOD_DAMAGE_DONE_CREATURE EffectAuraType = 59 + A_MOD_PACIFY_SILENCE EffectAuraType = 60 + A_MOD_SCALE EffectAuraType = 61 + A_PERIODIC_HEALTH_FUNNEL EffectAuraType = 62 + A_MOD_ADDITIONAL_POWER_COST EffectAuraType = 63 + A_PERIODIC_MANA_LEECH EffectAuraType = 64 + A_MOD_CASTING_SPEED_NOT_STACK EffectAuraType = 65 + A_FEIGN_DEATH EffectAuraType = 66 + A_MOD_DISARM EffectAuraType = 67 + A_MOD_STALKED EffectAuraType = 68 + A_SCHOOL_ABSORB EffectAuraType = 69 + A_PERIODIC_WEAPON_PERCENT_DAMAGE EffectAuraType = 70 + A_STORE_TELEPORT_RETURN_POINT EffectAuraType = 71 + A_MOD_POWER_COST_SCHOOL_PCT EffectAuraType = 72 + A_MOD_POWER_COST_SCHOOL EffectAuraType = 73 + A_REFLECT_SPELLS_SCHOOL EffectAuraType = 74 + A_MOD_LANGUAGE EffectAuraType = 75 + A_FAR_SIGHT EffectAuraType = 76 + A_MECHANIC_IMMUNITY EffectAuraType = 77 + A_MOUNTED EffectAuraType = 78 + A_MOD_DAMAGE_PERCENT_DONE EffectAuraType = 79 + A_MOD_PERCENT_STAT EffectAuraType = 80 + A_SPLIT_DAMAGE_PCT EffectAuraType = 81 + A_WATER_BREATHING EffectAuraType = 82 + A_MOD_BASE_RESISTANCE EffectAuraType = 83 + A_MOD_REGEN EffectAuraType = 84 + A_MOD_POWER_REGEN EffectAuraType = 85 + A_CHANNEL_DEATH_ITEM EffectAuraType = 86 + A_MOD_DAMAGE_PERCENT_TAKEN EffectAuraType = 87 + A_MOD_HEALTH_REGEN_PERCENT EffectAuraType = 88 + A_PERIODIC_DAMAGE_PERCENT EffectAuraType = 89 + // 90 is commented out + A_MOD_DETECT_RANGE EffectAuraType = 91 + A_PREVENTS_FLEEING EffectAuraType = 92 + A_MOD_UNATTACKABLE EffectAuraType = 93 + A_INTERRUPT_REGEN EffectAuraType = 94 + A_GHOST EffectAuraType = 95 + A_SPELL_MAGNET EffectAuraType = 96 + A_MANA_SHIELD EffectAuraType = 97 + A_MOD_SKILL_TALENT EffectAuraType = 98 + A_MOD_ATTACK_POWER EffectAuraType = 99 + A_AURAS_VISIBLE EffectAuraType = 100 + A_MOD_RESISTANCE_PCT EffectAuraType = 101 + A_MOD_MELEE_ATTACK_POWER_VERSUS EffectAuraType = 102 + A_MOD_TOTAL_THREAT EffectAuraType = 103 + A_WATER_WALK EffectAuraType = 104 + A_FEATHER_FALL EffectAuraType = 105 + A_HOVER EffectAuraType = 106 + A_ADD_FLAT_MODIFIER EffectAuraType = 107 + A_ADD_PCT_MODIFIER EffectAuraType = 108 + A_ADD_TARGET_TRIGGER EffectAuraType = 109 + A_MOD_POWER_REGEN_PERCENT EffectAuraType = 110 + A_INTERCEPT_MELEE_RANGED_ATTACKS EffectAuraType = 111 + A_OVERRIDE_CLASS_SCRIPTS EffectAuraType = 112 + A_MOD_RANGED_DAMAGE_TAKEN EffectAuraType = 113 + A_MOD_RANGED_DAMAGE_TAKEN_PCT EffectAuraType = 114 + A_MOD_HEALING EffectAuraType = 115 + A_MOD_REGEN_DURING_COMBAT EffectAuraType = 116 + A_MOD_MECHANIC_RESISTANCE EffectAuraType = 117 + A_MOD_HEALING_PCT EffectAuraType = 118 + A_PVP_TALENTS EffectAuraType = 119 + A_UNTRACKABLE EffectAuraType = 120 + A_EMPATHY EffectAuraType = 121 + A_MOD_OFFHAND_DAMAGE_PCT EffectAuraType = 122 + A_MOD_TARGET_RESISTANCE EffectAuraType = 123 + A_MOD_RANGED_ATTACK_POWER EffectAuraType = 124 + A_MOD_MELEE_DAMAGE_TAKEN EffectAuraType = 125 + A_MOD_MELEE_DAMAGE_TAKEN_PCT EffectAuraType = 126 + A_RANGED_ATTACK_POWER_ATTACKER_BONUS EffectAuraType = 127 + A_MOD_FIXATE EffectAuraType = 128 + A_MOD_SPEED_ALWAYS EffectAuraType = 129 + A_MOD_MOUNTED_SPEED_ALWAYS EffectAuraType = 130 + A_MOD_RANGED_ATTACK_POWER_VERSUS EffectAuraType = 131 + A_MOD_INCREASE_ENERGY_PERCENT EffectAuraType = 132 + A_MOD_INCREASE_HEALTH_PERCENT EffectAuraType = 133 + A_MOD_MANA_REGEN_INTERRUPT EffectAuraType = 134 + A_MOD_HEALING_DONE EffectAuraType = 135 + A_MOD_HEALING_DONE_PERCENT EffectAuraType = 136 + A_MOD_TOTAL_STAT_PERCENTAGE EffectAuraType = 137 + A_MOD_MELEE_HASTE EffectAuraType = 138 + A_FORCE_REACTION EffectAuraType = 139 + A_MOD_RANGED_HASTE EffectAuraType = 140 + // 141 is commented out + A_MOD_BASE_RESISTANCE_PCT EffectAuraType = 142 + A_MOD_RECOVERY_RATE_BY_SPELL_LABEL EffectAuraType = 143 + A_SAFE_FALL EffectAuraType = 144 + A_MOD_INCREASE_HEALTH_PERCENT2 EffectAuraType = 145 + A_ALLOW_TAME_PET_TYPE EffectAuraType = 146 + A_MECHANIC_IMMUNITY_MASK EffectAuraType = 147 + A_MOD_CHARGE_RECOVERY_RATE EffectAuraType = 148 + A_REDUCE_PUSHBACK EffectAuraType = 149 + A_MOD_SHIELD_BLOCKVALUE_PCT EffectAuraType = 150 + A_TRACK_STEALTHED EffectAuraType = 151 + A_MOD_DETECTED_RANGE EffectAuraType = 152 + A_MOD_AUTOATTACK_RANGE EffectAuraType = 153 + A_MOD_STEALTH_LEVEL EffectAuraType = 154 + A_MOD_WATER_BREATHING EffectAuraType = 155 + A_MOD_REPUTATION_GAIN EffectAuraType = 156 + A_PET_DAMAGE_MULTI EffectAuraType = 157 + A_ALLOW_TALENT_SWAPPING EffectAuraType = 158 + A_NO_PVP_CREDIT EffectAuraType = 159 + // 160 is commented out + A_MOD_HEALTH_REGEN_IN_COMBAT EffectAuraType = 161 + A_POWER_BURN EffectAuraType = 162 + A_MOD_CRIT_DAMAGE_BONUS EffectAuraType = 163 + A_FORCE_BREATH_BAR EffectAuraType = 164 + A_MELEE_ATTACK_POWER_ATTACKER_BONUS EffectAuraType = 165 + A_MOD_ATTACK_POWER_PCT EffectAuraType = 166 + A_MOD_RANGED_ATTACK_POWER_PCT EffectAuraType = 167 + A_MOD_DAMAGE_DONE_VERSUS EffectAuraType = 168 + A_SET_FFA_PVP EffectAuraType = 169 + A_DETECT_AMORE EffectAuraType = 170 + A_MOD_SPEED_NOT_STACK EffectAuraType = 171 + A_MOD_MOUNTED_SPEED_NOT_STACK EffectAuraType = 172 + // 173 is commented out + A_MOD_SPELL_DAMAGE_OF_STAT_PERCENT EffectAuraType = 174 + A_MOD_SPELL_HEALING_OF_STAT_PERCENT EffectAuraType = 175 + A_SPIRIT_OF_REDEMPTION EffectAuraType = 176 + A_AOE_CHARM EffectAuraType = 177 + A_MOD_MAX_POWER_PCT EffectAuraType = 178 + A_MOD_POWER_DISPLAY EffectAuraType = 179 + A_MOD_FLAT_SPELL_DAMAGE_VERSUS EffectAuraType = 180 + A_MOD_SPELL_CURRENCY_REAGENTS_COUNT_PCT EffectAuraType = 181 + A_SUPPRESS_ITEM_PASSIVE_EFFECT_BY_SPELL_LABEL EffectAuraType = 182 + A_MOD_CRIT_CHANCE_VERSUS_TARGET_HEALTH EffectAuraType = 183 + A_MOD_ATTACKER_MELEE_HIT_CHANCE EffectAuraType = 184 + A_MOD_ATTACKER_RANGED_HIT_CHANCE EffectAuraType = 185 + A_MOD_ATTACKER_SPELL_HIT_CHANCE EffectAuraType = 186 + A_MOD_ATTACKER_MELEE_CRIT_CHANCE EffectAuraType = 187 + A_MOD_UI_HEALING_RANGE EffectAuraType = 188 + A_MOD_RATING EffectAuraType = 189 + A_MOD_FACTION_REPUTATION_GAIN EffectAuraType = 190 + A_USE_NORMAL_MOVEMENT_SPEED EffectAuraType = 191 + A_MOD_MELEE_RANGED_HASTE EffectAuraType = 192 + A_MELEE_SLOW EffectAuraType = 193 + A_MOD_TARGET_ABSORB_SCHOOL EffectAuraType = 194 + A_LEARN_SPELL EffectAuraType = 195 + A_MOD_COOLDOWN EffectAuraType = 196 + A_MOD_ATTACKER_SPELL_AND_WEAPON_CRIT_CHANCE EffectAuraType = 197 + A_MOD_COMBAT_RATING_FROM_COMBAT_RATING EffectAuraType = 198 + // 199 is commented out + A_MOD_XP_PCT EffectAuraType = 200 + A_FLY EffectAuraType = 201 + A_IGNORE_COMBAT_RESULT EffectAuraType = 202 + A_PREVENT_INTERRUPT EffectAuraType = 203 + A_PREVENT_CORPSE_RELEASE EffectAuraType = 204 + A_MOD_CHARGE_COOLDOWN EffectAuraType = 205 + A_MOD_INCREASE_VEHICLE_FLIGHT_SPEED EffectAuraType = 206 + A_MOD_INCREASE_MOUNTED_FLIGHT_SPEED EffectAuraType = 207 + A_MOD_INCREASE_FLIGHT_SPEED EffectAuraType = 208 + A_MOD_MOUNTED_FLIGHT_SPEED_ALWAYS EffectAuraType = 209 + A_MOD_VEHICLE_SPEED_ALWAYS EffectAuraType = 210 + A_MOD_FLIGHT_SPEED_NOT_STACK EffectAuraType = 211 + A_MOD_HONOR_GAIN_PCT EffectAuraType = 212 + A_MOD_RAGE_FROM_DAMAGE_DEALT EffectAuraType = 213 + // 214 is commented out + A_ARENA_PREPARATION EffectAuraType = 215 + A_HASTE_SPELLS EffectAuraType = 216 + A_MOD_MELEE_HASTE_2 EffectAuraType = 217 + A_ADD_PCT_MODIFIER_BY_SPELL_LABEL EffectAuraType = 218 + A_ADD_FLAT_MODIFIER_BY_SPELL_LABEL EffectAuraType = 219 + A_MOD_ABILITY_SCHOOL_MASK EffectAuraType = 220 + A_MOD_DETAUNT EffectAuraType = 221 + A_REMOVE_TRANSMOG_COST EffectAuraType = 222 + A_REMOVE_BARBER_SHOP_COST EffectAuraType = 223 + A_LEARN_TALENT EffectAuraType = 224 + A_MOD_VISIBILITY_RANGE EffectAuraType = 225 + A_PERIODIC_DUMMY EffectAuraType = 226 + A_PERIODIC_TRIGGER_SPELL_WITH_VALUE EffectAuraType = 227 + A_DETECT_STEALTH EffectAuraType = 228 + A_MOD_AOE_DAMAGE_AVOIDANCE EffectAuraType = 229 + A_MOD_MAX_HEALTH EffectAuraType = 230 + A_PROC_TRIGGER_SPELL_WITH_VALUE EffectAuraType = 231 + A_MECHANIC_DURATION_MOD EffectAuraType = 232 + A_CHANGE_MODEL_FOR_ALL_HUMANOIDS EffectAuraType = 233 + A_MECHANIC_DURATION_MOD_NOT_STACK EffectAuraType = 234 + A_MOD_HOVER_NO_HEIGHT_OFFSET EffectAuraType = 235 + A_CONTROL_VEHICLE EffectAuraType = 236 + A_237 EffectAuraType = 237 + A_238 EffectAuraType = 238 + A_MOD_SCALE_2 EffectAuraType = 239 + A_MOD_EXPERTISE EffectAuraType = 240 + A_FORCE_MOVE_FORWARD EffectAuraType = 241 + A_MOD_SPELL_DAMAGE_FROM_HEALING EffectAuraType = 242 + A_MOD_FACTION EffectAuraType = 243 + A_COMPREHEND_LANGUAGE EffectAuraType = 244 + A_MOD_AURA_DURATION_BY_DISPEL EffectAuraType = 245 + A_MOD_AURA_DURATION_BY_DISPEL_NOT_STACK EffectAuraType = 246 + A_CLONE_CASTER EffectAuraType = 247 + A_MOD_COMBAT_RESULT_CHANCE EffectAuraType = 248 + A_MOD_DAMAGE_PERCENT_DONE_BY_TARGET_AURA_MECHANIC EffectAuraType = 249 + A_MOD_INCREASE_HEALTH_2 EffectAuraType = 250 + A_MOD_ENEMY_DODGE EffectAuraType = 251 + A_MOD_SPEED_SLOW_ALL EffectAuraType = 252 + A_MOD_BLOCK_CRIT_CHANCE EffectAuraType = 253 + A_MOD_DISARM_OFFHAND EffectAuraType = 254 + A_MOD_MECHANIC_DAMAGE_TAKEN_PERCENT EffectAuraType = 255 + A_NO_REAGENT_USE EffectAuraType = 256 + A_MOD_TARGET_RESIST_BY_SPELL_CLASS EffectAuraType = 257 + A_OVERRIDE_SUMMONED_OBJECT EffectAuraType = 258 + A_MOD_HOT_PCT EffectAuraType = 259 + A_SCREEN_EFFECT EffectAuraType = 260 + A_PHASE EffectAuraType = 261 + A_ABILITY_IGNORE_AURASTATE EffectAuraType = 262 + A_DISABLE_CASTING_EXCEPT_ABILITIES EffectAuraType = 263 + A_DISABLE_ATTACKING_EXCEPT_ABILITIES EffectAuraType = 264 + // 265 is commented out + A_SET_VIGNETTE EffectAuraType = 266 + A_MOD_IMMUNE_AURA_APPLY_SCHOOL EffectAuraType = 267 + A_MOD_ARMOR_PCT_FROM_STAT EffectAuraType = 268 + A_MOD_IGNORE_TARGET_RESIST EffectAuraType = 269 + A_MOD_SCHOOL_MASK_DAMAGE_FROM_CASTER EffectAuraType = 270 + A_MOD_SPELL_DAMAGE_FROM_CASTER EffectAuraType = 271 + A_MOD_BLOCK_VALUE_PCT EffectAuraType = 272 + A_X_RAY EffectAuraType = 273 + A_MOD_BLOCK_VALUE_FLAT EffectAuraType = 274 + A_MOD_IGNORE_SHAPESHIFT EffectAuraType = 275 + A_MOD_DAMAGE_DONE_FOR_MECHANIC EffectAuraType = 276 + // 277 is commented out + A_MOD_DISARM_RANGED EffectAuraType = 278 + A_INITIALIZE_IMAGES EffectAuraType = 279 + A_SPELL_AURA_MOD_ARMOR_PENETRATION_PCT EffectAuraType = 280 + A_PROVIDE_SPELL_FOCUS EffectAuraType = 281 + A_MOD_BASE_HEALTH_PCT EffectAuraType = 282 + A_MOD_HEALING_RECEIVED EffectAuraType = 283 + A_LINKED EffectAuraType = 284 + A_LINKED_2 EffectAuraType = 285 + A_MOD_RECOVERY_RATE EffectAuraType = 286 + A_DEFLECT_SPELLS EffectAuraType = 287 + A_IGNORE_HIT_DIRECTION EffectAuraType = 288 + A_PREVENT_DURABILITY_LOSS EffectAuraType = 289 + A_MOD_CRIT_PCT EffectAuraType = 290 + A_MOD_XP_QUEST_PCT EffectAuraType = 291 + A_OPEN_STABLE EffectAuraType = 292 + A_OVERRIDE_SPELLS EffectAuraType = 293 + A_PREVENT_REGENERATE_POWER EffectAuraType = 294 + A_MOD_PERIODIC_DAMAGE_TAKEN EffectAuraType = 295 + A_SET_VEHICLE_ID EffectAuraType = 296 + A_MOD_ROOT_DISABLE_GRAVITY EffectAuraType = 297 + A_MOD_STUN_DISABLE_GRAVITY EffectAuraType = 298 + // 299 is commented out + A_SHARE_DAMAGE_PCT EffectAuraType = 300 + A_SCHOOL_HEAL_ABSORB EffectAuraType = 301 + // 302 is commented out + A_MOD_DAMAGE_DONE_VERSUS_AURASTATE EffectAuraType = 303 + A_MOD_DRUNK EffectAuraType = 304 + A_MOD_MINIMUM_SPEED EffectAuraType = 305 + A_MOD_CRIT_CHANCE_FOR_CASTER EffectAuraType = 306 + A_CAST_WHILE_WALKING_BY_SPELL_LABEL EffectAuraType = 307 + A_MOD_CRIT_CHANCE_FOR_CASTER_WITH_ABILITIES EffectAuraType = 308 + A_MOD_RESILIENCE EffectAuraType = 309 + A_MOD_CREATURE_AOE_DAMAGE_AVOIDANCE EffectAuraType = 310 + A_IGNORE_COMBAT EffectAuraType = 311 + A_ANIM_REPLACEMENT_SET EffectAuraType = 312 + // 313 is commented out + A_PREVENT_RESURRECTION EffectAuraType = 314 + A_UNDERWATER_WALKING EffectAuraType = 315 + A_SCHOOL_ABSORB_OVERKILL EffectAuraType = 316 + A_MOD_SPELL_POWER_PCT EffectAuraType = 317 + A_MASTERY EffectAuraType = 318 + A_MOD_MELEE_HASTE_3 EffectAuraType = 319 + A_MOD_RANGED_HASTE_2 EffectAuraType = 320 + A_MOD_NO_ACTIONS EffectAuraType = 321 + A_INTERFERE_TARGETTING EffectAuraType = 322 + // 323 is commented out + A_OVERRIDE_UNLOCKED_AZERITE_ESSENCE_RANK EffectAuraType = 324 + A_LEARN_PVP_TALENT EffectAuraType = 325 + A_PHASE_GROUP EffectAuraType = 326 + A_PHASE_ALWAYS_VISIBLE EffectAuraType = 327 + A_TRIGGER_SPELL_ON_POWER_PCT EffectAuraType = 328 + A_MOD_POWER_GAIN_PCT EffectAuraType = 329 + A_CAST_WHILE_WALKING EffectAuraType = 330 + A_FORCE_WEATHER EffectAuraType = 331 + A_OVERRIDE_ACTIONBAR_SPELLS EffectAuraType = 332 + A_OVERRIDE_ACTIONBAR_SPELLS_TRIGGERED EffectAuraType = 333 + A_MOD_AUTOATTACK_CRIT_CHANCE EffectAuraType = 334 + // 335 is commented out + A_MOUNT_RESTRICTIONS EffectAuraType = 336 + A_MOD_VENDOR_ITEMS_PRICES EffectAuraType = 337 + A_MOD_DURABILITY_LOSS EffectAuraType = 338 + A_MOD_CRIT_CHANCE_FOR_CASTER_PET EffectAuraType = 339 + A_MOD_RESURRECTED_HEALTH_BY_GUILD_MEMBER EffectAuraType = 340 + A_MOD_SPELL_CATEGORY_COOLDOWN EffectAuraType = 341 + A_MOD_MELEE_RANGED_HASTE_2 EffectAuraType = 342 + A_MOD_MELEE_DAMAGE_FROM_CASTER EffectAuraType = 343 + A_MOD_AUTOATTACK_DAMAGE EffectAuraType = 344 + A_BYPASS_ARMOR_FOR_CASTER EffectAuraType = 345 + A_ENABLE_ALT_POWER EffectAuraType = 346 + A_MOD_SPELL_COOLDOWN_BY_HASTE EffectAuraType = 347 + A_MOD_MONEY_GAIN EffectAuraType = 348 + A_MOD_CURRENCY_GAIN EffectAuraType = 349 + A_350 EffectAuraType = 350 + // 351,352 are commented out + A_MOD_CAMOUFLAGE EffectAuraType = 353 + // 354 is commented out + A_MOD_CASTING_SPEED EffectAuraType = 355 + A_PROVIDE_TOTEM_CATEGORY EffectAuraType = 356 + A_ENABLE_BOSS1_UNIT_FRAME EffectAuraType = 357 + A_WORGEN_ALTERED_FORM EffectAuraType = 358 + A_MOD_HEALING_DONE_VERSUS_AURASTATE EffectAuraType = 359 + A_PROC_TRIGGER_SPELL_COPY EffectAuraType = 360 + A_OVERRIDE_AUTOATTACK_WITH_MELEE_SPELL EffectAuraType = 361 + // 362 is commented out + A_MOD_NEXT_SPELL EffectAuraType = 363 + // 364 is commented out + A_MAX_FAR_CLIP_PLANE EffectAuraType = 365 + A_OVERRIDE_SPELL_POWER_BY_AP_PCT EffectAuraType = 366 + A_OVERRIDE_AUTOATTACK_WITH_RANGED_SPELL EffectAuraType = 367 + // 368 is commented out + A_ENABLE_POWER_BAR_TIMER EffectAuraType = 369 + A_SPELL_OVERRIDE_NAME_GROUP EffectAuraType = 370 + // 371 is commented out + A_OVERRIDE_MOUNT_FROM_SET EffectAuraType = 372 + A_MOD_SPEED_NO_CONTROL EffectAuraType = 373 + A_MOD_FALL_DAMAGE_PCT EffectAuraType = 374 + A_HIDE_MODEL_AND_EQUIPEMENT_SLOTS EffectAuraType = 375 + A_MOD_CURRENCY_GAIN_FROM_SOURCE EffectAuraType = 376 + A_CAST_WHILE_WALKING_ALL EffectAuraType = 377 + A_MOD_POSSESS_PET EffectAuraType = 378 + A_MOD_MANA_REGEN_PCT EffectAuraType = 379 + // 380 is commented out + A_MOD_DAMAGE_TAKEN_FROM_CASTER_PET EffectAuraType = 381 + A_MOD_PET_STAT_PCT EffectAuraType = 382 + A_IGNORE_SPELL_COOLDOWN EffectAuraType = 383 + // 384,385,386,387 are commented out + A_MOD_TAXI_FLIGHT_SPEED EffectAuraType = 388 + // 389,390,391,392 are commented out + A_BLOCK_SPELLS_IN_FRONT EffectAuraType = 393 + A_SHOW_CONFIRMATION_PROMPT EffectAuraType = 394 + A_AREA_TRIGGER EffectAuraType = 395 + A_TRIGGER_SPELL_ON_POWER_AMOUNT EffectAuraType = 396 + A_BATTLEGROUND_PLAYER_POSITION_FACTIONAL EffectAuraType = 397 + A_BATTLEGROUND_PLAYER_POSITION EffectAuraType = 398 + A_MOD_TIME_RATE EffectAuraType = 399 + A_MOD_SKILL_2 EffectAuraType = 400 + // 401 is commented out + A_MOD_OVERRIDE_POWER_DISPLAY EffectAuraType = 402 + A_OVERRIDE_SPELL_VISUAL EffectAuraType = 403 + A_OVERRIDE_ATTACK_POWER_BY_SP_PCT EffectAuraType = 404 + A_MOD_RATING_PCT EffectAuraType = 405 + A_KEYBOUND_OVERRIDE EffectAuraType = 406 + A_MOD_FEAR_2 EffectAuraType = 407 + A_SET_ACTION_BUTTON_SPELL_COUNT EffectAuraType = 408 + A_CAN_TURN_WHILE_FALLING EffectAuraType = 409 + // 410 is commented out + A_MOD_MAX_CHARGES EffectAuraType = 411 + // 412 is commented out + A_MOD_RANGED_ATTACK_DEFLECT_CHANCE EffectAuraType = 413 + A_MOD_RANGED_ATTACK_BLOCK_CHANCE_IN_FRONT EffectAuraType = 414 + // 415 is commented out + A_MOD_COOLDOWN_BY_HASTE_REGEN EffectAuraType = 416 + A_MOD_GLOBAL_COOLDOWN_BY_HASTE_REGEN EffectAuraType = 417 + A_MOD_MAX_POWER EffectAuraType = 418 + A_MOD_BASE_MANA_PCT EffectAuraType = 419 + A_MOD_BATTLE_PET_XP_PCT EffectAuraType = 420 + A_MOD_ABSORB_EFFECTS_DONE_PCT EffectAuraType = 421 + A_MOD_ABSORB_EFFECTS_TAKEN_PCT EffectAuraType = 422 + A_MOD_MANA_COST_PCT EffectAuraType = 423 + A_CASTER_IGNORE_LOS EffectAuraType = 424 + // 425,426 are commented out + A_SCALE_PLAYER_LEVEL EffectAuraType = 427 + A_LINKED_SUMMON EffectAuraType = 428 + A_MOD_SUMMON_DAMAGE EffectAuraType = 429 + A_PLAY_SCENE EffectAuraType = 430 + A_MOD_OVERRIDE_ZONE_PVP_TYPE EffectAuraType = 431 + // 432,433,434,435 are commented out + A_MOD_ENVIRONMENTAL_DAMAGE_TAKEN EffectAuraType = 436 + A_MOD_MINIMUM_SPEED_RATE EffectAuraType = 437 + A_PRELOAD_PHASE EffectAuraType = 438 + // 439 is commented out + A_MOD_MULTISTRIKE_DAMAGE EffectAuraType = 440 + A_MOD_MULTISTRIKE_CHANCE EffectAuraType = 441 + A_MOD_READINESS EffectAuraType = 442 + A_MOD_LEECH EffectAuraType = 443 + // 444,445 are commented out + A_SPELL_AURA_ADVANCED_FLYING EffectAuraType = 446 + A_MOD_XP_FROM_CREATURE_TYPE EffectAuraType = 447 + // 448 is commented out (Related to PvP rules) + // 449,450 are commented out + A_OVERRIDE_PET_SPECS EffectAuraType = 451 + // 452 is commented out + A_CHARGE_RECOVERY_MOD EffectAuraType = 453 + A_CHARGE_RECOVERY_MULTIPLIER EffectAuraType = 454 + A_MOD_ROOT_2 EffectAuraType = 455 + A_CHARGE_RECOVERY_AFFECTED_BY_HASTE EffectAuraType = 456 + A_CHARGE_RECOVERY_AFFECTED_BY_HASTE_REGEN EffectAuraType = 457 + A_IGNORE_DUAL_WIELD_HIT_PENALTY EffectAuraType = 458 + A_IGNORE_MOVEMENT_FORCES EffectAuraType = 459 + A_RESET_COOLDOWNS_ON_DUEL_START EffectAuraType = 460 + // 461 is commented out + A_MOD_HEALING_AND_ABSORB_FROM_CASTER EffectAuraType = 462 + A_CONVERT_CRIT_RATING_PCT_TO_PARRY_RATING EffectAuraType = 463 + A_MOD_ATTACK_POWER_OF_BONUS_ARMOR EffectAuraType = 464 + A_MOD_BONUS_ARMOR EffectAuraType = 465 + A_MOD_BONUS_ARMOR_PCT EffectAuraType = 466 + A_MOD_STAT_BONUS_PCT EffectAuraType = 467 + A_TRIGGER_SPELL_ON_HEALTH_BELOW_PCT EffectAuraType = 468 + A_SHOW_CONFIRMATION_PROMPT_WITH_DIFFICULTY EffectAuraType = 469 + A_MOD_AURA_TIME_RATE_BY_SPELL_LABEL EffectAuraType = 470 + A_MOD_VERSATILITY EffectAuraType = 471 + // 472 is commented out + A_PREVENT_DURABILITY_LOSS_FROM_COMBAT EffectAuraType = 473 + A_REPLACE_ITEM_BONUS_TREE EffectAuraType = 474 + A_ALLOW_USING_GAMEOBJECTS_WHILE_MOUNTED EffectAuraType = 475 + A_MOD_CURRENCY_GAIN_LOOTED_PCT EffectAuraType = 476 + // 477,478,479 are commented out + A_MOD_ARTIFACT_ITEM_LEVEL EffectAuraType = 480 + A_CONVERT_CONSUMED_RUNE EffectAuraType = 481 + // 482 is commented out + A_SUPPRESS_TRANSFORMS EffectAuraType = 483 + A_ALLOW_INTERRUPT_SPELL EffectAuraType = 484 + A_MOD_MOVEMENT_FORCE_MAGNITUDE EffectAuraType = 485 + // 486 is commented out + A_COSMETIC_MOUNTED EffectAuraType = 487 + // 488 is commented out + A_MOD_ALTERNATIVE_DEFAULT_LANGUAGE EffectAuraType = 489 + // 490,491 are commented out + A_MOD_RESTED_XP_CONSUMPTION EffectAuraType = 492 + A_MOD_RESTED_XP_CONSUMPTION_DUP EffectAuraType = 493 // duplicate string? + A_SET_POWER_POINT_CHARGE EffectAuraType = 494 + A_TRIGGER_SPELL_ON_EXPIRE EffectAuraType = 495 + A_ALLOW_CHANGING_EQUIPMENT_IN_TORGHAST EffectAuraType = 496 + A_MOD_ANIMA_GAIN EffectAuraType = 497 + A_CURRENCY_LOSS_PCT_ON_DEATH EffectAuraType = 498 + A_MOD_RESTED_XP_CONSUMPTION_2 EffectAuraType = 499 // differentiate duplicate + A_IGNORE_SPELL_CHARGE_COOLDOWN EffectAuraType = 500 + A_MOD_CRITICAL_DAMAGE_TAKEN_FROM_CASTER EffectAuraType = 501 + A_MOD_VERSATILITY_DAMAGE_DONE_BENEFIT EffectAuraType = 502 + A_MOD_VERSATILITY_HEALING_DONE_BENEFIT EffectAuraType = 503 + A_MOD_HEALING_TAKEN_FROM_CASTER EffectAuraType = 504 + A_MOD_PLAYER_CHOICE_REROLLS EffectAuraType = 505 + A_DISABLE_INERTIA EffectAuraType = 506 + A_MOD_DAMAGE_TAKEN_FROM_CASTER_BY_LABEL EffectAuraType = 507 + // 508,509 are commented out + A_MODIFIED_RAID_INSTANCE EffectAuraType = 510 + A_APPLY_PROFESSION_EFFECT EffectAuraType = 511 + A_CONVERT_RUNE EffectAuraType = 512 + // 513-518 are commented out + A_MOD_COOLDOWN_RECOVERY_RATE_ALL EffectAuraType = 519 + // 520-524 are commented out + A_DISPLAY_PROFESSION_EQUIPMENT EffectAuraType = 525 + // 526,527 are commented out + A_ALLOW_BLOCKING_SPELLS EffectAuraType = 528 + A_MOD_SPELL_BLOCK_CHANCE EffectAuraType = 529 + // 530-535 are commented out + A_IGNORE_SPELL_CREATURE_TYPE_REQUIREMENTS EffectAuraType = 536 + // 537 is commented out + A_MOD_FAKE_INEBRIATION_MOVEMENT_ONLY EffectAuraType = 538 + A_ALLOW_MOUNT_IN_COMBAT EffectAuraType = 539 + A_MOD_SUPPORT_STAT EffectAuraType = 540 + A_MOD_REQUIRED_MOUNT_CAPABILITY_FLAGS EffectAuraType = 541 + // 542-546 are commented out + A_MOD_CRIT_PERCENT_VERSUS EffectAuraType = 547 + A_MOD_RUNE_REGEN_SPEED EffectAuraType = 548 + // 549,550 are commented out + A_EXTRA_ATTACKS EffectAuraType = 551 + A_MOD_SPELL_CRIT_CHANCE_SCHOOL EffectAuraType = 552 + A_MOD_POWER_COST_SCHOOL2 EffectAuraType = 553 + // 554,555 are commented out + A_MOD_MELEE_DAMAGE_TAKEN2 EffectAuraType = 556 + A_MOD_RANGED_HASTE_QUIVER EffectAuraType = 557 + A_MOD_RESISTANCE_EXCLUSIVE EffectAuraType = 558 + A_MOD_PET_TALENT_POINTS EffectAuraType = 559 + A_RETAIN_COMBO_POINTS EffectAuraType = 560 + A_MOD_SHIELD_BLOCKVALUE_PCT2 EffectAuraType = 561 + A_SPLIT_DAMAGE_FLAT EffectAuraType = 562 + A_PET_DAMAGE_MULTI2 EffectAuraType = 563 + A_MOD_SHIELD_BLOCKVALUE EffectAuraType = 564 + A_SPELL_AURA_MOD_AOE_AVOIDANCE EffectAuraType = 565 + A_MELEE_ATTACK_POWER_ATTACKER_BONUS2 EffectAuraType = 566 + // 567,568 are commented out + A_MOD_ATTACKER_SPELL_CRIT_CHANCE EffectAuraType = 569 + // 570 is commented out + A_MOD_RESISTANCE_OF_STAT_PERCENT EffectAuraType = 571 + A_MOD_CRITICAL_THREAT EffectAuraType = 572 + A_MOD_ATTACKER_RANGED_CRIT_CHANCE EffectAuraType = 573 + A_MOD_TARGET_ABILITY_ABSORB_SCHOOL EffectAuraType = 574 + // 575,576 are commented out + A_MOD_ATTACKER_MELEE_CRIT_DAMAGE EffectAuraType = 577 + A_MOD_ATTACKER_RANGED_CRIT_DAMAGE EffectAuraType = 578 + A_MOD_SCHOOL_CRIT_DMG_TAKEN EffectAuraType = 579 + // 580-582 are commented out + A_MOD_RATING_FROM_STAT EffectAuraType = 583 + // 584 is commented out + A_RAID_PROC_FROM_CHARGE EffectAuraType = 585 + // 586,587 are commented out + A_MOD_DISPEL_RESIST EffectAuraType = 588 + A_MOD_SPELL_DAMAGE_OF_ATTACK_POWER EffectAuraType = 589 + A_MOD_SPELL_HEALING_OF_ATTACK_POWER EffectAuraType = 590 + A_MOD_SCALE_3 EffectAuraType = 591 + // 592 is commented out + A_MOD_COMBAT_RESULT_CHANCE2 EffectAuraType = 593 + A_MOD_TARGET_RESIST_BY_SPELL_CLASS2 EffectAuraType = 594 + // 595-598 are commented out + A_MOD_IGNORE_TARGET_RESIST2 EffectAuraType = 599 + A_SCHOOL_MASK_DAMAGE_FROM_CASTER EffectAuraType = 600 + A_IGNORE_MELEE_RESET EffectAuraType = 601 + // 602,603 are commented out + A_MOD_HONOR_GAIN_PCT2 EffectAuraType = 604 + // 605 is commented out + A_MOD_BASE_HEALTH_PCT2 EffectAuraType = 606 + A_MOD_ATTACK_POWER_OF_ARMOR EffectAuraType = 607 + A_ABILITY_PERIODIC_CRIT EffectAuraType = 608 + // 609-614 are commented out + A_MOD_RANGED_HASTE_3 EffectAuraType = 615 + // 616-618 are commented out + A_MOD_BLIND EffectAuraType = 619 + A_MOD_VENDOR_ITEMS_PRICES2 EffectAuraType = 620 + A_INCREASE_SKILL_GAIN_CHANCE EffectAuraType = 621 + // 622 is commented out + A_MOD_GATHERING_ITEMS_GAINED_PERCENT EffectAuraType = 623 + A_MOD_DAMAGE_FROM_MANA EffectAuraType = 624 +) + +type ConsumableClass int + +const ( + EXPLOSIVES_AND_DEVICES ConsumableClass = iota + POTION + ELIXIR + FLASK + SCROLL + FOOD + ITEM_ENHANCEMENT + BANDAGE + OTHER +) diff --git a/tools/database/dbc/errors.go b/tools/database/dbc/errors.go new file mode 100644 index 0000000000..d372e4f729 --- /dev/null +++ b/tools/database/dbc/errors.go @@ -0,0 +1,34 @@ +package dbc + +import "fmt" + +type ParseError struct { + Source string + Field string + Reason string +} + +func (e ParseError) Error() string { + return fmt.Sprintf("parse error in %s (field: %s): %s", e.Source, e.Field, e.Reason) +} + +type ValidationError struct { + Type string + ID int + Field string + Msg string +} + +func (e ValidationError) Error() string { + return fmt.Sprintf("validation error for %s ID %d (field: %s): %s", e.Type, e.ID, e.Field, e.Msg) +} + +type DataLoadError struct { + Source string + DataType string + Reason string +} + +func (e DataLoadError) Error() string { + return fmt.Sprintf("failed to load %s from %s: %s", e.DataType, e.Source, e.Reason) +} diff --git a/tools/database/dbc/flags.go b/tools/database/dbc/flags.go new file mode 100644 index 0000000000..25b0592a86 --- /dev/null +++ b/tools/database/dbc/flags.go @@ -0,0 +1,369 @@ +package dbc + +import "github.com/wowsims/mop/sim/core/proto" + +type ItemStaticFlags0 uint32 + +const ( + NO_PICKUP ItemStaticFlags0 = 0x00000001 + CONJURED ItemStaticFlags0 = 0x00000002 + HAS_LOOT_TABLE ItemStaticFlags0 = 0x00000004 + HEROIC_TOOLTIP ItemStaticFlags0 = 0x00000008 + DEPRECATED ItemStaticFlags0 = 0x00000010 + NO_USER_DESTROY ItemStaticFlags0 = 0x00000020 + PLAYER_CAST ItemStaticFlags0 = 0x00000040 + NO_EQUIP_COOLDOWN ItemStaticFlags0 = 0x00000080 + MULTI_LOOT_QUEST ItemStaticFlags0 = 0x00000100 + GIFT_WRAP ItemStaticFlags0 = 0x00000200 + USES_RESOURCES ItemStaticFlags0 = 0x00000400 + MULTI_DROP ItemStaticFlags0 = 0x00000800 + IN_GAME_REFUND ItemStaticFlags0 = 0x00001000 + PETITION ItemStaticFlags0 = 0x00002000 + HAS_TEXT ItemStaticFlags0 = 0x00004000 + NO_DISENCHANT ItemStaticFlags0 = 0x00008000 + REAL_DURATION ItemStaticFlags0 = 0x00010000 + NO_CREATOR ItemStaticFlags0 = 0x00020000 + PROSPECTABLE ItemStaticFlags0 = 0x00040000 + UNIQUE_EQUIPPABLE ItemStaticFlags0 = 0x00080000 + DISABLE_AURA_QUOTAS ItemStaticFlags0 = 0x00100000 + IGNORE_DEFAULT_ARENA_RESTRICTIONS ItemStaticFlags0 = 0x00200000 + NO_DURABILITY_LOSS ItemStaticFlags0 = 0x00400000 + USEABLE_WHILE_SHAPESHIFTED ItemStaticFlags0 = 0x00800000 + HAS_QUEST_GLOW ItemStaticFlags0 = 0x01000000 + HIDE_UNUSABLE_RECIPE ItemStaticFlags0 = 0x02000000 + NOT_USABLE_IN_ARENA ItemStaticFlags0 = 0x04000000 + BOUND_TO_ACCOUNT ItemStaticFlags0 = 0x08000000 + NO_REAGENT_COST ItemStaticFlags0 = 0x10000000 + MILLABLE ItemStaticFlags0 = 0x20000000 + REPORT_TO_GUILD_CHAT ItemStaticFlags0 = 0x40000000 + DONT_USE_DYNAMIC_DROP_CHANCE ItemStaticFlags0 = 0x80000000 +) + +func (f ItemStaticFlags0) Has(flag ItemStaticFlags0) bool { + return f&flag != 0 +} + +type SpellSchool int + +const ( + PHYSICAL SpellSchool = 1 << iota // 0x1 + HOLY // 0x2 + FIRE // 0x4 + NATURE // 0x8 + FROST // 0x10 + SHADOW // 0x20 + ARCANE // 0x40 + + SPELL_PENETRATION = FIRE | NATURE | FROST | SHADOW | ARCANE // 0x7E +) + +func (f SpellSchool) Has(flag SpellSchool) bool { + return f&flag != 0 +} + +type ItemStaticFlags1 uint32 + +const ( + HORDE_SPECIFIC ItemStaticFlags1 = 0x00000001 + ALLIANCE_SPECIFIC ItemStaticFlags1 = 0x00000002 + DONT_IGNORE_BUY_PRICE ItemStaticFlags1 = 0x00000004 + ONLY_CASTER_ROLL_NEED ItemStaticFlags1 = 0x00000008 + ONLY_NON_CASTER_ROLL_NEED ItemStaticFlags1 = 0x00000010 + EVERYONE_CAN_ROLL_NEED ItemStaticFlags1 = 0x00000020 + CANNOT_TRADE_BIND_ON_PICKUP ItemStaticFlags1 = 0x00000040 + CAN_TRADE_BIND_ON_PICKUP ItemStaticFlags1 = 0x00000080 + CAN_ONLY_ROLL_GREED ItemStaticFlags1 = 0x00000100 + CASTER_WEAPON ItemStaticFlags1 = 0x00000200 + DELETE_ON_LOGIN ItemStaticFlags1 = 0x00000400 + INTERNAL_ITEM ItemStaticFlags1 = 0x00000800 + NO_VENDOR_VALUE ItemStaticFlags1 = 0x00001000 + SHOW_BEFORE_DISCOVERED ItemStaticFlags1 = 0x00002000 + OVERRIDE_GOLD_COST ItemStaticFlags1 = 0x00004000 + IGNORE_DEFAULT_RATED_BG_RESTRICTIONS ItemStaticFlags1 = 0x00008000 + NOT_USABLE_IN_RATED_BG ItemStaticFlags1 = 0x00010000 + BNET_ACCOUNT_TRADE_OK ItemStaticFlags1 = 0x00020000 + CONFIRM_BEFORE_USE ItemStaticFlags1 = 0x00040000 + REEVALUATE_BONDING_ON_TRANSFORM ItemStaticFlags1 = 0x00080000 + NO_TRANSFORM_ON_CHARGE_DEPLETION ItemStaticFlags1 = 0x00100000 + NO_ALTER_ITEM_VISUAL ItemStaticFlags1 = 0x00200000 + NO_SOURCE_FOR_ITEM_VISUAL ItemStaticFlags1 = 0x00400000 + IGNORE_QUALITY_FOR_ITEM_VISUAL_SOURCE ItemStaticFlags1 = 0x00800000 + NO_DURABILITY ItemStaticFlags1 = 0x01000000 + ROLE_TANK ItemStaticFlags1 = 0x02000000 + ROLE_HEALER ItemStaticFlags1 = 0x04000000 + ROLE_DAMAGE ItemStaticFlags1 = 0x08000000 + CAN_DROP_IN_CHALLENGE_MODE ItemStaticFlags1 = 0x10000000 + NEVER_STACK_IN_LOOT_UI ItemStaticFlags1 = 0x20000000 + DISENCHANT_TO_LOOT_TABLE ItemStaticFlags1 = 0x40000000 + CAN_BE_PLACED_IN_REAGENT_BANK ItemStaticFlags1 = 0x80000000 +) + +func (f ItemStaticFlags1) Has(flag ItemStaticFlags1) bool { + return f&flag != 0 +} + +type ItemStaticFlags2 uint32 + +const ( + DONT_DESTROY_ON_QUEST_ACCEPT ItemStaticFlags2 = 0x00000001 + CAN_BE_UPGRADED ItemStaticFlags2 = 0x00000002 + UPGRADE_FROM_ITEM_OVERRIDES_DROP_UPGRADE ItemStaticFlags2 = 0x00000004 + ALWAYS_FREE_FOR_ALL_IN_LOOT ItemStaticFlags2 = 0x00000008 + HIDE_ITEM_UPGRADES_IF_NOT_UPGRADED ItemStaticFlags2 = 0x00000010 + UPDATE_NPC_INTERACTIONS_WHEN_PICKED_UP ItemStaticFlags2 = 0x00000020 + DOESNT_LEAVE_PROGRESSIVE_WIN_HISTORY ItemStaticFlags2 = 0x00000040 + IGNORE_ITEM_HISTORY_TRACKER ItemStaticFlags2 = 0x00000080 + IGNORE_ITEM_LEVEL_CAP_IN_PVP ItemStaticFlags2 = 0x00000100 + DISPLAY_AS_HEIRLOOM ItemStaticFlags2 = 0x00000200 + SKIP_USE_CHECK_ON_PICKUP ItemStaticFlags2 = 0x00000400 + NO_LOOT_OVERFLOW_MAIL ItemStaticFlags2 = 0x00000800 + DONT_DISPLAY_IN_GUILD_NEWS ItemStaticFlags2 = 0x00001000 + TRIAL_OF_THE_GLADIATOR_GEAR ItemStaticFlags2 = 0x00002000 + REQUIRES_STACK_CHANGE_LOG ItemStaticFlags2 = 0x00004000 + TOY ItemStaticFlags2 = 0x00008000 + SUPPRESS_NAME_SUFFIXES ItemStaticFlags2 = 0x00010000 + PUSH_LOOT ItemStaticFlags2 = 0x00020000 + DONT_REPORT_LOOT_LOG_TO_PARTY ItemStaticFlags2 = 0x00040000 + ALWAYS_ALLOW_DUAL_WIELD ItemStaticFlags2 = 0x00080000 + OBLITERATABLE ItemStaticFlags2 = 0x00100000 + ACTS_AS_TRANSMOG_HIDDEN_VISUAL_OPTION ItemStaticFlags2 = 0x00200000 + EXPIRE_ON_WEEKLY_RESET ItemStaticFlags2 = 0x00400000 + DOESNT_SHOW_UP_IN_TRANSMOG_UI_UNTIL_COLLECTED ItemStaticFlags2 = 0x00800000 + CAN_STORE_ENCHANTS ItemStaticFlags2 = 0x01000000 + HIDE_QUEST_ITEM_FROM_OBJECT_TOOLTIP ItemStaticFlags2 = 0x02000000 + DO_NOT_TOAST ItemStaticFlags2 = 0x04000000 + IGNORE_CREATION_CONTEXT_FOR_PROGRESSIVE_WIN_HISTORY ItemStaticFlags2 = 0x08000000 + FORCE_ALL_SPECS_FOR_ITEM_HISTORY ItemStaticFlags2 = 0x10000000 + SAVE_AFTER_CONSUME ItemStaticFlags2 = 0x20000000 + LOOT_CONTAINER_SAVES_PLAYER_STATE ItemStaticFlags2 = 0x40000000 + NO_VOID_STORAGE ItemStaticFlags2 = 0x80000000 +) + +func (f ItemStaticFlags2) Has(flag ItemStaticFlags2) bool { + return f&flag != 0 +} + +type ItemStaticFlags3 uint32 + +const ( + IMMEDIATELY_TRIGGER_ON_USE_BINDING_EFFECTS ItemStaticFlags3 = 0x00000001 + ALWAYS_DISPLAY_ITEM_LEVEL_IN_TOOLTIP ItemStaticFlags3 = 0x00000002 + DISPLAY_RANDOM_ADDITIONAL_STATS_IN_TOOLTIP ItemStaticFlags3 = 0x00000004 + ACTIVATE_ON_EQUIP_EFFECTS_WHEN_TRANSMOGRIFIED ItemStaticFlags3 = 0x00000008 + ENFORCE_TRANSMOG_WITH_CHILD_ITEM ItemStaticFlags3 = 0x00000010 + SCRAPABLE ItemStaticFlags3 = 0x00000020 + BYPASS_REP_REQUIREMENTS_FOR_TRANSMOG ItemStaticFlags3 = 0x00000040 + DISPLAY_ONLY_ON_DEFINED_RACES ItemStaticFlags3 = 0x00000080 + REGULATED_COMMODITY ItemStaticFlags3 = 0x00000100 + CREATE_LOOT_IMMEDIATELY ItemStaticFlags3 = 0x00000200 + GENERATE_LOOT_SPEC_ITEM ItemStaticFlags3 = 0x00000400 + HIDDEN_IN_REWARD_SUMMARIES ItemStaticFlags3 = 0x00000800 + DISALLOW_WHILE_LEVEL_LINKED ItemStaticFlags3 = 0x00001000 + DISALLOW_ENCHANT ItemStaticFlags3 = 0x00002000 + SQUISH_USING_ITEM_LEVEL_AS_PLAYER_LEVEL ItemStaticFlags3 = 0x00004000 + ALWAYS_SHOW_SELL_PRICE_IN_TOOLTIP ItemStaticFlags3 = 0x00008000 + COSMETIC_ITEM ItemStaticFlags3 = 0x00010000 + NO_SPELL_EFFECT_TOOLTIP_PREFIXES ItemStaticFlags3 = 0x00020000 + IGNORE_COSMETIC_COLLECTION_BEHAVIOR ItemStaticFlags3 = 0x00040000 + NPC_ONLY ItemStaticFlags3 = 0x00080000 + NOT_RESTORABLE ItemStaticFlags3 = 0x00100000 + DONT_DISPLAY_AS_CRAFTING_REAGENT ItemStaticFlags3 = 0x00200000 + DISPLAY_REAGENT_QUALITY_AS_CRAFTED_QUALITY ItemStaticFlags3 = 0x00400000 + NO_SALVAGE ItemStaticFlags3 = 0x00800000 + RECRAFTABLE ItemStaticFlags3 = 0x01000000 + CC_TRINKET ItemStaticFlags3 = 0x02000000 + KEEP_THROUGH_FACTION_CHANGE ItemStaticFlags3 = 0x04000000 + NOT_MULTICRAFTABLE ItemStaticFlags3 = 0x08000000 + DONT_REPORT_LOOT_LOG_TO_SELF ItemStaticFlags3 = 0x10000000 + SEND_TELEMETRY_ON_USE ItemStaticFlags3 = 0x20000000 +) + +func (f ItemStaticFlags3) Has(flag ItemStaticFlags3) bool { + return f&flag != 0 +} + +type InventoryTypeFlag uint32 + +const ( + HEAD InventoryTypeFlag = 0x2 + NECK InventoryTypeFlag = 0x4 + SHOULDER InventoryTypeFlag = 0x8 + BODY InventoryTypeFlag = 0x10 + CHEST InventoryTypeFlag = 0x20 + WAIST InventoryTypeFlag = 0x40 + LEGS InventoryTypeFlag = 0x80 + FEET InventoryTypeFlag = 0x100 + WRIST InventoryTypeFlag = 0x200 + HAND InventoryTypeFlag = 0x400 + FINGER InventoryTypeFlag = 0x800 + TRINKET InventoryTypeFlag = 0x1000 + MAIN_HAND InventoryTypeFlag = 0x2000 + OFF_HAND InventoryTypeFlag = 0x4000 + RANGED InventoryTypeFlag = 0x8000 + CLOAK InventoryTypeFlag = 0x10000 + TWO_H_WEAPON InventoryTypeFlag = 0x20000 + BAG InventoryTypeFlag = 0x40000 + TABARD InventoryTypeFlag = 0x80000 + ROBE InventoryTypeFlag = 0x100000 + WEAPON_MAIN_HAND InventoryTypeFlag = 0x200000 + WEAPON_OFF_HAND InventoryTypeFlag = 0x400000 + HOLDABLE InventoryTypeFlag = 0x800000 + AMMO InventoryTypeFlag = 0x1000000 + THROWN InventoryTypeFlag = 0x2000000 + RANGED_RIGHT InventoryTypeFlag = 0x4000000 + QUIVER InventoryTypeFlag = 0x8000000 + RELIC InventoryTypeFlag = 0x10000000 +) + +func (i InventoryTypeFlag) Has(flag InventoryTypeFlag) bool { + return i&flag != 0 +} + +type GemType int + +const ( + Meta GemType = 0x1 + Red GemType = 0x2 + Yellow GemType = 0x4 + Blue GemType = 0x8 + // Combined colors: + Orange GemType = Red | Yellow // 0x6 + Purple GemType = Red | Blue // 0xa + Green GemType = Yellow | Blue // 0xc + Prismatic GemType = Red | Yellow | Blue // 0xe + Cogwheel GemType = 0x20 +) + +func (gem GemType) ToProto() proto.GemColor { + switch gem { + case Meta: + return proto.GemColor_GemColorMeta + case Red: + return proto.GemColor_GemColorRed + case Yellow: + return proto.GemColor_GemColorYellow + case Blue: + return proto.GemColor_GemColorBlue + case Orange: + return proto.GemColor_GemColorOrange + case Purple: + return proto.GemColor_GemColorPurple + case Green: + return proto.GemColor_GemColorGreen + case Prismatic: + return proto.GemColor_GemColorPrismatic + case Cogwheel: + return proto.GemColor_GemColorCogwheel + default: + return proto.GemColor_GemColorUnknown + } +} + +func (i GemType) Has(flag GemType) bool { + return i&flag != 0 +} + +type ClassMask uint32 + +const ( + WARRIOR ClassMask = 0x1 + PALADIN ClassMask = 0x2 + HUNTER ClassMask = 0x4 + ROGUE ClassMask = 0x8 + PRIEST ClassMask = 0x10 + DEATH_KNIGHT ClassMask = 0x20 + SHAMAN ClassMask = 0x40 + MAGE ClassMask = 0x80 + WARLOCK ClassMask = 0x100 + MONK ClassMask = 0x200 + DRUID ClassMask = 0x400 + DEMON_HUNTER ClassMask = 0x800 + EVOKER ClassMask = 0x1000 +) + +func (c ClassMask) Has(flag ClassMask) bool { + return c&flag != 0 +} + +// --- Weapon constants (EquippedItemClass = 2) --- +const ( + ITEM_SUBCLASS_BIT_WEAPON_NONE = 0x00000000 + ITEM_SUBCLASS_BIT_WEAPON_1H_AXE = 0x00000001 + ITEM_SUBCLASS_BIT_WEAPON_2H_AXE = 0x00000002 + ITEM_SUBCLASS_BIT_WEAPON_BOW = 0x00000004 + ITEM_SUBCLASS_BIT_WEAPON_GUNS = 0x00000008 + ITEM_SUBCLASS_BIT_WEAPON_MACE_1H = 0x00000010 + ITEM_SUBCLASS_BIT_WEAPON_MACE_2H = 0x00000020 + ITEM_SUBCLASS_BIT_WEAPON_POLEARM = 0x00000040 + ITEM_SUBCLASS_BIT_WEAPON_SWORD_1H = 0x00000080 + ITEM_SUBCLASS_BIT_WEAPON_SWORD_2H = 0x00000100 + ITEM_SUBCLASS_BIT_WEAPON_OBSOLETE = 0x00000200 + ITEM_SUBCLASS_BIT_WEAPON_STAFF = 0x00000400 + ITEM_SUBCLASS_BIT_WEAPON_1H_EXOTIC = 0x00000800 + ITEM_SUBCLASS_BIT_WEAPON_2H_EXOTIC = 0x00001000 + ITEM_SUBCLASS_BIT_WEAPON_FIST = 0x00002000 + ITEM_SUBCLASS_BIT_WEAPON_MISC = 0x00004000 + ITEM_SUBCLASS_BIT_WEAPON_DAGGERS = 0x00008000 + ITEM_SUBCLASS_BIT_WEAPON_THROWN = 0x00010000 + ITEM_SUBCLASS_BIT_WEAPON_SPEAR = 0x00020000 + ITEM_SUBCLASS_BIT_WEAPON_CROSSBOW = 0x00040000 + ITEM_SUBCLASS_BIT_WEAPON_WAND = 0x00080000 + ITEM_SUBCLASS_BIT_WEAPON_FISHING_POLE = 0x00100000 +) + +// --- Armor constants (EquippedItemClass = 4) --- +const ( + ITEM_SUBCLASS_BIT_ARMOR_NONE = 0x00000000 + ITEM_SUBCLASS_BIT_ARMOR_MISC = 0x00000001 + ITEM_SUBCLASS_BIT_ARMOR_CLOTH = 0x00000002 + ITEM_SUBCLASS_BIT_ARMOR_LEATHER = 0x00000004 + ITEM_SUBCLASS_BIT_ARMOR_MAIL = 0x00000008 + ITEM_SUBCLASS_BIT_ARMOR_PLATE = 0x00000010 + ITEM_SUBCLASS_BIT_ARMOR_BUCKLER = 0x00000020 // (Unused) + ITEM_SUBCLASS_BIT_ARMOR_SHIELD = 0x00000040 + ITEM_SUBCLASS_BIT_ARMOR_LIBRAM = 0x00000080 + ITEM_SUBCLASS_BIT_ARMOR_IDOL = 0x00000100 + ITEM_SUBCLASS_BIT_ARMOR_TOTEM = 0x00000200 + ITEM_SUBCLASS_BIT_ARMOR_SIGIL = 0x00000400 +) +const ( + rangedMask = ITEM_SUBCLASS_BIT_WEAPON_BOW | ITEM_SUBCLASS_BIT_WEAPON_GUNS | ITEM_SUBCLASS_BIT_WEAPON_CROSSBOW + twoHandMask = ITEM_SUBCLASS_BIT_WEAPON_2H_AXE | ITEM_SUBCLASS_BIT_WEAPON_MACE_2H | + ITEM_SUBCLASS_BIT_WEAPON_SWORD_2H | ITEM_SUBCLASS_BIT_WEAPON_2H_EXOTIC | + ITEM_SUBCLASS_BIT_WEAPON_SPEAR | ITEM_SUBCLASS_BIT_WEAPON_POLEARM +) + +const ( + OffHandValue = 65 + ShieldValue1 = 96 + ShieldValue2 = 64 +) + +type RatingModType uint + +const ( + RATING_MOD_DODGE = 0x00000004 + RATING_MOD_PARRY = 0x00000008 + RATING_MOD_HIT_MELEE = 0x00000020 + RATING_MOD_HIT_RANGED = 0x00000040 + RATING_MOD_HIT_SPELL = 0x00000080 + RATING_MOD_CRIT_MELEE = 0x00000100 + RATING_MOD_CRIT_RANGED = 0x00000200 + RATING_MOD_CRIT_SPELL = 0x00000400 + RATING_MOD_MULTISTRIKE = 0x00000800 + RATING_MOD_READINESS = 0x00001000 + RATING_MOD_SPEED = 0x00002000 + RATING_MOD_RESILIENCE = 0x00008000 + RATING_MOD_LEECH = 0x00010000 + RATING_MOD_HASTE_MELEE = 0x00020000 + RATING_MOD_HASTE_RANGED = 0x00040000 + RATING_MOD_HASTE_SPELL = 0x00080000 + RATING_MOD_AVOIDANCE = 0x00100000 + RATING_MOD_EXPERTISE = 0x00800000 + RATING_MOD_MASTERY = 0x02000000 + RATING_MOD_PVP_POWER = 0x04000000 + + RATING_MOD_VERS_DAMAGE = 0x10000000 + RATING_MOD_VERS_HEAL = 0x20000000 + RATING_MOD_VERS_MITIG = 0x40000000 +) diff --git a/tools/database/dbc/gem.go b/tools/database/dbc/gem.go new file mode 100644 index 0000000000..d2052b942a --- /dev/null +++ b/tools/database/dbc/gem.go @@ -0,0 +1,59 @@ +package dbc + +import ( + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +type Gem struct { + ItemId int + Name string + FDID int + GemType GemType + Effects []int + EffectPoints []int + EffectArgs []int + MinItemLevel int + Quality ItemQuality + IsJc bool + Flags0 ItemStaticFlags0 +} + +// Todo: All dbc types should have a ToProto +// Though we will need a data layer +// func (gem Gem) ToProto() *proto.UIGem { + +// } +func (gem *Gem) ToProto() *proto.UIGem { + uiGem := &proto.UIGem{ + Id: int32(gem.ItemId), + Name: gem.Name, + //Icon: strings.ToLower(GetIconName(iconsMap, gem.FDID)), + Quality: gem.Quality.ToProto(), + Color: gem.GemType.ToProto(), + Unique: gem.Flags0.Has(UNIQUE_EQUIPPABLE), + Stats: gem.GetItemEnchantmentStats().ToProtoArray(), + } + if gem.IsJc { + uiGem.RequiredProfession = proto.Profession_Jewelcrafting + } + + gem.SetGemSpellEffects() + + return uiGem +} + +func (gem *Gem) SetGemSpellEffects() { + // For example spell pen + // or all stats + // etc. + //Todo: Unfinished + // Could append actual effects on the gem that is applied on sim start??? + // Same for items and enchants hmmmm +} + +func (gem *Gem) GetItemEnchantmentStats() stats.Stats { + stats := stats.Stats{} + processEnchantmentEffects(gem.Effects, gem.EffectArgs, gem.EffectPoints, &stats, false) + return stats +} diff --git a/tools/database/dbc/item.go b/tools/database/dbc/item.go new file mode 100644 index 0000000000..d7fc2a8e19 --- /dev/null +++ b/tools/database/dbc/item.go @@ -0,0 +1,486 @@ +package dbc + +import ( + "math" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +const MAX_UPGRADE_LEVELS = 2 +const UPGRADE_SYSTEM_ACTIVE = true + +type Item struct { + Id int + Name string + InventoryType int + ItemDelay int + OverallQuality ItemQuality + DmgVariance float64 + ItemLevel int + ItemClass int + ItemSubClass int + StatAlloc []float64 + BonusStat []int + SocketEnchantmentId int + Flags0 ItemStaticFlags0 + Flags1 ItemStaticFlags1 + Flags2 ItemStaticFlags2 + Flags3 ItemStaticFlags3 + FDID int + ItemSetName string + ItemSetId int + ClassMask int + RaceMask int + QualityModifier float64 + RandomSuffixOptions []int32 + StatPercentageOfSocket []float64 + BonusAmountCalculated []float64 + Sockets []int + SocketModifier []float64 // Todo: Figure out if this is socket modifier in disguise or something else - I call it that for now. +} + +func (item *Item) ToUIItem() *proto.UIItem { + return item.ToScaledUIItem(item.ItemLevel) +} + +func (item *Item) ToScaledUIItem(itemLevel int) *proto.UIItem { + scalingProperties := make(map[int32]*proto.ScalingItemProperties) + var weaponType, handType, rangedType = item.GetWeaponTypes() + uiItem := &proto.UIItem{ + Type: MapInventoryTypeToItemType[item.InventoryType], + Quality: item.OverallQuality.ToProto(), + SetName: item.ItemSetName, + SetId: int32(item.ItemSetId), + Name: item.Name, + ClassAllowlist: GetClassesFromClassMask(item.ClassMask), + Id: int32(item.Id), + Ilvl: int32(item.ItemLevel), // This is the base item level of the item + RandomSuffixOptions: item.RandomSuffixOptions, + RangedWeaponType: rangedType, + HandType: handType, + WeaponType: weaponType, + WeaponSpeed: float64(item.ItemDelay) / 1000, + GemSockets: item.GetGemSlots(), + SocketBonus: item.GetGemBonus().ToProtoArray(), + //The following properties are + // Scaled to the max possible itemlevel for EP and filtering + Stats: item.GetStats(item.GetMaxIlvl()).ToProtoArray(), + WeaponDamageMin: item.WeaponDmgMin(item.GetMaxIlvl()), + WeaponDamageMax: item.WeaponDmgMax(item.GetMaxIlvl()), + RandPropPoints: item.GetRandPropPoints(item.GetMaxIlvl()), + } + + item.ParseItemFlags(uiItem) + + if item.ItemClass == ITEM_CLASS_ARMOR { + uiItem.ArmorType = MapArmorSubclassToArmorType[item.ItemSubClass] + } + + if item.ItemSubClass == ITEM_SUBCLASS_ARMOR_SHIELD && uiItem.HandType == proto.HandType_HandTypeUnknown { + uiItem.HandType = proto.HandType_HandTypeOffHand + uiItem.WeaponType = proto.WeaponType_WeaponTypeShield + } + + // Append base itemlevel stats + scalingProperties[int32(item.ItemLevel)] = &proto.ScalingItemProperties{ + WeaponDamageMin: uiItem.WeaponDamageMin, + WeaponDamageMax: uiItem.WeaponDamageMax, + Stats: item.GetStats(item.ItemLevel).ToProtoMap(), + RandPropPoints: uiItem.RandPropPoints, + IsBase: true, // This denotes that the scaling properties are for the base item + } + + // Amount of upgrade steps is defined in MAX_UPGRADE_LEVELS + // In P2 of MoP it is expected to be 2 steps + // + if item.ItemLevel > 458 && UPGRADE_SYSTEM_ACTIVE { + for upgradeLevel := range MAX_UPGRADE_LEVELS { + upgradedIlvl := item.ItemLevel + item.UpgradeItemLevelBy(upgradeLevel) + scalingProperties[int32(upgradedIlvl)] = &proto.ScalingItemProperties{ + WeaponDamageMin: item.WeaponDmgMin(upgradedIlvl), + WeaponDamageMax: item.WeaponDmgMax(upgradedIlvl), + Stats: item.GetStats(upgradedIlvl).ToProtoMap(), + RandPropPoints: item.GetRandPropPoints(upgradedIlvl), + UpgradeStep: int32(upgradeLevel), // Upgradestep is for the UI to visualize the upgrade path if needed + } + } + } + + if item.ItemLevel > 460 { + scalingProperties[460] = &proto.ScalingItemProperties{ + WeaponDamageMin: item.WeaponDmgMin(460), + WeaponDamageMax: item.WeaponDmgMax(460), + Stats: item.GetStats(460).ToProtoMap(), + RandPropPoints: item.GetRandPropPoints(460), + // No need to define isbase or upgradestep here since we'll always select the 460 version + } + } + uiItem.ScalingOptions = scalingProperties + return uiItem +} + +func (item *Item) GetMaxIlvl() int { + if item.ItemLevel > 458 { + return item.ItemLevel + item.UpgradeItemLevelBy(MAX_UPGRADE_LEVELS) + } + return item.ItemLevel +} + +func (item *Item) ParseItemFlags(uiItem *proto.UIItem) { + if item.Flags1.Has(HORDE_SPECIFIC) { + uiItem.FactionRestriction = proto.UIItem_FACTION_RESTRICTION_HORDE_ONLY + } + + if item.Flags1.Has(ALLIANCE_SPECIFIC) { + uiItem.FactionRestriction = proto.UIItem_FACTION_RESTRICTION_ALLIANCE_ONLY + } + + if item.Flags0.Has(UNIQUE_EQUIPPABLE) { + uiItem.Unique = true + } + + if item.Flags0.Has(HEROIC_TOOLTIP) { + uiItem.Heroic = true + } +} + +func GetDbcItem(itemId int) Item { + return GetDBC().Items[itemId] +} +func (item *Item) GetStats(itemLevel int) *stats.Stats { + stats := &stats.Stats{} + for i, alloc := range item.BonusStat { + stat, success := MapBonusStatIndexToStat(alloc) + if !success { + // Skip this stat then + continue + } + stats[stat] = item.GetScaledStat(i, itemLevel) + if stat == proto.Stat_StatAttackPower { + stats[proto.Stat_StatRangedAttackPower] = item.GetScaledStat(i, itemLevel) // Apply RAP as well. Might not be true for 1.12 idk + } + } + + armor := item.GetArmorValue(itemLevel) + if armor > 0 { + stats[proto.Stat_StatArmor] = float64(armor) + + if item.QualityModifier > 0 { + stats[proto.Stat_StatBonusArmor] = item.QualityModifier + } + } + return stats +} +func (item *Item) GetRandPropPoints(itemLevel int) int32 { + suffixType := item.GetRandomSuffixType() + randomProperty := GetDBC().RandomPropertiesByIlvl[itemLevel] + if suffixType < 0 { + return 0 + } + return randomProperty[item.OverallQuality.ToProto()][item.GetRandomSuffixType()] +} +func (item *Item) GetScaledStat(index int, itemLevel int) float64 { + //Todo check if overflow array + + if itemLevel == item.ItemLevel { + // Maybe just return it? + return item.BonusAmountCalculated[index] + } + + slotType := item.GetRandomSuffixType() + itemBudget := 0.0 + + if slotType != -1 && item.OverallQuality > 0 { + + randomProperty := GetDBC().RandomPropertiesByIlvl[itemLevel] + itemBudget = float64(randomProperty[item.OverallQuality.ToProto()][slotType]) + + if item.StatAlloc[index] > 0 && itemBudget > 0 { + rawValue := math.Round(item.StatAlloc[index] * itemBudget * 0.0001) + + //Todo: Figure out if this does anything in MoP + //Not used right now in Cata + //socket_penalty := math.RoundNearby item.StatPercentageOfSocket[index] * SocketCost(itemLevel) + return rawValue - item.SocketModifier[index] // Todo: Could this be a calculated socket penalty? + } else { + return math.Floor(item.BonusAmountCalculated[index] * item.ApproximateScaleCoeff(item.ItemLevel, itemLevel)) + } + } + return 0 +} + +func (item *Item) GetGemSlots() []proto.GemColor { + sockets := []proto.GemColor{} + for _, socketType := range item.Sockets { + if socketType == 0 { + continue + } + var gemType = MapSocketTypeToGemColor[socketType] + sockets = append(sockets, gemType) + } + return sockets +} + +func (item *Item) GetGemBonus() stats.Stats { + stats := stats.Stats{} + if item.SocketEnchantmentId == 0 { + return stats + } + bonus := GetDBC().ItemStatEffects[item.SocketEnchantmentId] + + for i, effectStat := range bonus.EffectArg { + if effectStat == 0 { + continue + } + stat, success := MapBonusStatIndexToStat(effectStat) + if !success { + return stats + } + value := bonus.EffectPointsMin[i] + stats[stat] = float64(value) + //Todo: check if this is always true + if stat == proto.Stat_StatAttackPower { + stats[proto.Stat_StatRangedAttackPower] = float64(value) + } + } + return stats +} + +func (item *Item) WeaponDmgMin(itemLevel int) float64 { + if itemLevel == 0 { + itemLevel = item.ItemLevel + } + total := item.WeaponDps(itemLevel)*(float64(item.ItemDelay)/1000.0)*(1-item.DmgVariance/2) + + (item.QualityModifier * (float64(item.ItemDelay) / 1000.0)) + if total < 0 { + total = 1 + } + return math.Floor(total) +} + +func (item *Item) WeaponDmgMax(itemLevel int) float64 { + if itemLevel == 0 { + itemLevel = item.ItemLevel + } + total := item.WeaponDps(itemLevel)*(float64(item.ItemDelay)/1000.0)*(1+item.DmgVariance/2) + + (item.QualityModifier * (float64(item.ItemDelay) / 1000.0)) + if total < 0 { + total = 1 + } + return math.Floor(total + 0.5) +} + +func (item *Item) ApproximateScaleCoeff(currIlvl int, newIlvl int) float64 { + if currIlvl == 0 || newIlvl == 0 { + return 1.0 + } + + diff := float64(currIlvl - newIlvl) + return 1.0 / math.Pow(1.15, diff/15.0) +} + +func (item *Item) GetSocketModifier() []float64 { + stats := stats.Stats{} + for i, alloc := range item.BonusStat { + stat, success := MapBonusStatIndexToStat(alloc) + if !success { + continue + } + stats[stat] = item.SocketModifier[i] + } + return stats.ToProtoArray() +} + +func (item *Item) GetStatAlloc() stats.Stats { + stats := stats.Stats{} + for i, alloc := range item.BonusStat { + stat, success := MapBonusStatIndexToStat(alloc) + if !success { + continue + } + stats[int32(stat)] = item.StatAlloc[i] + } + return stats +} + +func (item *Item) GetArmorValue(itemLevel int) int { + if item.Id == 0 || item.OverallQuality > 5 { + return 0 + } + ilvl := 0 + if itemLevel > 0 { + ilvl = itemLevel + } else { + ilvl = item.ItemLevel + } + + if item.ItemClass == ITEM_CLASS_ARMOR && item.ItemSubClass == ITEM_SUBCLASS_ARMOR_SHIELD { + return int(math.Floor(GetDBC().ItemArmorShield[ilvl].Quality[item.OverallQuality] + 0.5)) + } + + if item.ItemSubClass == ITEM_SUBCLASS_ARMOR_MISC || item.ItemSubClass > ITEM_SUBCLASS_ARMOR_PLATE { + return 0 + } + total_armor := 0.0 + quality := 0.0 + // 3688.5300292969 * 1.37000000477 * 0.15999999642 + armorModifier := GetDBC().ArmorLocation[item.InventoryType] // 0.15999999642 3688.5300292969 1.37000000477 + if item.InventoryType == INVTYPE_ROBE { + armorModifier = GetDBC().ArmorLocation[INVTYPE_CHEST] + } + switch item.InventoryType { + case INVTYPE_HEAD, INVTYPE_SHOULDERS, INVTYPE_CHEST, INVTYPE_WAIST, INVTYPE_LEGS, INVTYPE_FEET, INVTYPE_WRISTS, INVTYPE_HANDS, INVTYPE_CLOAK, INVTYPE_ROBE: + switch item.ItemSubClass { + case ITEM_SUBCLASS_ARMOR_CLOTH: + total_armor = GetDBC().ItemArmorTotal[ilvl].Cloth + case ITEM_SUBCLASS_ARMOR_LEATHER: + total_armor = GetDBC().ItemArmorTotal[ilvl].Leather + case ITEM_SUBCLASS_ARMOR_MAIL: + total_armor = GetDBC().ItemArmorTotal[ilvl].Mail + case ITEM_SUBCLASS_ARMOR_PLATE: + total_armor = GetDBC().ItemArmorTotal[ilvl].Plate + } + quality = GetDBC().ItemArmorQuality[ilvl].Quality[item.OverallQuality] + default: + return 0 + } + return int(math.Floor(total_armor*quality*armorModifier.Modifier[item.ItemSubClass-1] + 0.5)) +} + +func (item *Item) GetArmorModifier() float64 { + armorModifier := GetDBC().ArmorLocation[item.InventoryType] + if item.InventoryType == INVTYPE_ROBE { + armorModifier = GetDBC().ArmorLocation[INVTYPE_CHEST] + } + switch item.InventoryType { + case INVTYPE_HEAD, INVTYPE_SHOULDERS, INVTYPE_CHEST, INVTYPE_WAIST, INVTYPE_LEGS, INVTYPE_FEET, INVTYPE_WRISTS, INVTYPE_HANDS, INVTYPE_CLOAK, INVTYPE_ROBE: + switch item.ItemSubClass { + case ITEM_SUBCLASS_ARMOR_CLOTH: + case ITEM_SUBCLASS_ARMOR_LEATHER: + case ITEM_SUBCLASS_ARMOR_MAIL: + case ITEM_SUBCLASS_ARMOR_PLATE: + } + default: + return 0 + } + if item.ItemSubClass == 0 { + return 0 + } + return armorModifier.Modifier[item.ItemSubClass-1] +} + +func (item *Item) GetWeaponTypes() (proto.WeaponType, proto.HandType, proto.RangedWeaponType) { + weaponType := proto.WeaponType_WeaponTypeUnknown + rangedWeaponType := proto.RangedWeaponType_RangedWeaponTypeUnknown + handType := proto.HandType_HandTypeUnknown + + switch item.ItemClass { + case ITEM_CLASS_ARMOR: + switch item.ItemSubClass { + case ITEM_SUBCLASS_ARMOR_RELIC: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeRelic + case ITEM_SUBCLASS_ARMOR_MISC: + if item.InventoryType == INVTYPE_HOLDABLE { + + handType = proto.HandType_HandTypeOffHand + weaponType = proto.WeaponType_WeaponTypeOffHand + } + } + case ITEM_CLASS_WEAPON: + switch item.ItemSubClass { + case ITEM_SUBCLASS_WEAPON_BOW: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeBow + case ITEM_SUBCLASS_WEAPON_CROSSBOW: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeCrossbow + case ITEM_SUBCLASS_WEAPON_GUN: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeGun + case ITEM_SUBCLASS_WEAPON_WAND: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeWand + case ITEM_SUBCLASS_WEAPON_THROWN: + rangedWeaponType = proto.RangedWeaponType_RangedWeaponTypeThrown + case ITEM_SUBCLASS_WEAPON_AXE2, ITEM_SUBCLASS_WEAPON_FISHING_POLE, ITEM_SUBCLASS_WEAPON_SPEAR, ITEM_SUBCLASS_WEAPON_STAFF, ITEM_SUBCLASS_WEAPON_POLEARM, ITEM_SUBCLASS_WEAPON_MACE2, + ITEM_SUBCLASS_WEAPON_EXOTIC2, ITEM_SUBCLASS_WEAPON_SWORD2: + handType = proto.HandType_HandTypeTwoHand + weaponType = MapWeaponSubClassToWeaponType[item.ItemSubClass] + case ITEM_SUBCLASS_WEAPON_EXOTIC, ITEM_SUBCLASS_WEAPON_MACE, ITEM_SUBCLASS_WEAPON_WARGLAIVE, ITEM_SUBCLASS_WEAPON_FIST, ITEM_SUBCLASS_WEAPON_SWORD, + ITEM_SUBCLASS_WEAPON_DAGGER, ITEM_SUBCLASS_WEAPON_AXE: + if item.InventoryType == INVTYPE_WEAPON { + handType = proto.HandType_HandTypeOneHand + } else if item.InventoryType == INVTYPE_WEAPONOFFHAND { + handType = proto.HandType_HandTypeOffHand + } else { + handType = proto.HandType_HandTypeMainHand + } + weaponType = MapWeaponSubClassToWeaponType[item.ItemSubClass] + } + } + return weaponType, handType, rangedWeaponType +} + +func (item *Item) GetRandomSuffixType() int { + switch item.ItemClass { + case ITEM_CLASS_WEAPON: + switch item.ItemSubClass { + case ITEM_SUBCLASS_WEAPON_AXE2, + ITEM_SUBCLASS_WEAPON_MACE2, + ITEM_SUBCLASS_WEAPON_POLEARM, + ITEM_SUBCLASS_WEAPON_SWORD2, + ITEM_SUBCLASS_WEAPON_STAFF, + ITEM_SUBCLASS_WEAPON_GUN, + ITEM_SUBCLASS_WEAPON_BOW, + ITEM_SUBCLASS_WEAPON_CROSSBOW: + return 0 + + case ITEM_SUBCLASS_WEAPON_THROWN: + return 4 + + default: + return 3 + } + + case ITEM_CLASS_ARMOR: + switch item.InventoryType { + case INVTYPE_HEAD, + INVTYPE_CHEST, + INVTYPE_LEGS, + INVTYPE_ROBE: + return 0 + + case INVTYPE_SHOULDERS, + INVTYPE_WAIST, + INVTYPE_FEET, + INVTYPE_HANDS, + INVTYPE_TRINKET: + return 1 + + case INVTYPE_NECK, + INVTYPE_WEAPONOFFHAND, + INVTYPE_HOLDABLE, + INVTYPE_FINGER, + INVTYPE_CLOAK, + INVTYPE_WRISTS, + INVTYPE_SHIELD: + return 2 + + default: + return -1 + } + + default: + return -1 + } +} + +func (item *Item) UpgradeItemLevelBy(upgradeLevel int) int { + if item.OverallQuality == 3 { + return upgradeLevel * 8 + } + if item.OverallQuality == 4 { + return upgradeLevel * 4 + } + if item.OverallQuality == 5 { + return upgradeLevel * 4 + } + return 0 +} diff --git a/tools/database/dbc/item_armor.go b/tools/database/dbc/item_armor.go new file mode 100644 index 0000000000..ee30b7bc91 --- /dev/null +++ b/tools/database/dbc/item_armor.go @@ -0,0 +1,24 @@ +package dbc + +type ItemArmorQuality struct { + ItemLevel int + Quality []float64 // len 7 +} + +type ItemArmorShield struct { + ItemLevel int + Quality []float64 // len 7 +} + +type ItemArmorTotal struct { + ItemLevel int + Cloth float64 + Leather float64 + Mail float64 + Plate float64 +} + +type ArmorLocation struct { + Id int + Modifier [5]float64 +} diff --git a/tools/database/dbc/item_damage.go b/tools/database/dbc/item_damage.go new file mode 100644 index 0000000000..1bc8e4cf82 --- /dev/null +++ b/tools/database/dbc/item_damage.go @@ -0,0 +1,47 @@ +package dbc + +type ItemDamageTable struct { + ItemLevel int + Quality []float64 +} + +func (item *Item) WeaponDps(itemLevel int) float64 { + quality := item.OverallQuality + if item.OverallQuality > 6 { + quality = 4 // Heirlooms = epic + } + + ilvl := 0 + if itemLevel > 0 { + ilvl = itemLevel + } else { + ilvl = item.ItemLevel + } + + switch item.InventoryType { + case INVTYPE_WEAPON, INVTYPE_WEAPONMAINHAND, INVTYPE_WEAPONOFFHAND: + { + if item.Flags1.Has(CASTER_WEAPON) { + return dbcInstance.ItemDamageTable["ItemDamageOneHandCaster"][ilvl].Quality[quality] + } else { + return dbcInstance.ItemDamageTable["ItemDamageOneHand"][ilvl].Quality[quality] + } + } + case INVTYPE_2HWEAPON: + if item.Flags1.Has(CASTER_WEAPON) { + return dbcInstance.ItemDamageTable["ItemDamageTwoHandCaster"][ilvl].Quality[quality] + } else { + return dbcInstance.ItemDamageTable["ItemDamageTwoHand"][ilvl].Quality[quality] + } + case INVTYPE_RANGED, INVTYPE_THROWN, INVTYPE_RANGEDRIGHT: + switch item.ItemSubClass { + case ITEM_SUBCLASS_WEAPON_BOW, ITEM_SUBCLASS_WEAPON_GUN, ITEM_SUBCLASS_WEAPON_CROSSBOW: + return dbcInstance.ItemDamageTable["ItemDamageRanged"][ilvl].Quality[quality] + case ITEM_SUBCLASS_WEAPON_THROWN: + return dbcInstance.ItemDamageTable["ItemDamageThrown"][ilvl].Quality[quality] + case ITEM_SUBCLASS_WEAPON_WAND: + return dbcInstance.ItemDamageTable["ItemDamageWand"][ilvl].Quality[quality] + } + } + return 0 +} diff --git a/tools/database/dbc/item_effect.go b/tools/database/dbc/item_effect.go new file mode 100644 index 0000000000..bcc5a76050 --- /dev/null +++ b/tools/database/dbc/item_effect.go @@ -0,0 +1,35 @@ +package dbc + +// ItemEffect represents an item effect in the game. +type ItemEffect struct { + ID int // Effect ID + LegacySlotIndex int // Legacy slot index + TriggerType int // Trigger type + Charges int // Number of charges + CoolDownMSec int // Cooldown in milliseconds + CategoryCoolDownMSec int // Category cooldown in milliseconds + SpellCategoryID int // Spell category ID + SpellID int // Spell ID + ChrSpecializationID int // Character specialization ID + ParentItemID int // Parent item ID +} + +// ToMap converts the ItemEffect to a map representation. +func (e *ItemEffect) ToMap() map[string]interface{} { + return map[string]interface{}{ + "ID": e.ID, + "LegacySlotIndex": e.LegacySlotIndex, + "TriggerType": e.TriggerType, + "Charges": e.Charges, + "CoolDownMSec": e.CoolDownMSec, + "CategoryCoolDownMSec": e.CategoryCoolDownMSec, + "SpellCategoryID": e.SpellCategoryID, + "SpellID": e.SpellID, + "ChrSpecializationID": e.ChrSpecializationID, + "ParentItemID": e.ParentItemID, + } +} + +func GetItemEffect(effectId int) ItemEffect { + return dbcInstance.ItemEffects[effectId] +} diff --git a/tools/database/dbc/item_stat_effect.go b/tools/database/dbc/item_stat_effect.go new file mode 100644 index 0000000000..e6bab831ec --- /dev/null +++ b/tools/database/dbc/item_stat_effect.go @@ -0,0 +1,8 @@ +package dbc + +type ItemStatEffect struct { + ID int + EffectPointsMin []int + EffectPointsMax []int + EffectArg []int +} diff --git a/tools/database/dbc/maps.go b/tools/database/dbc/maps.go new file mode 100644 index 0000000000..67f5ad7a9c --- /dev/null +++ b/tools/database/dbc/maps.go @@ -0,0 +1,359 @@ +package dbc + +import "github.com/wowsims/mop/sim/core/proto" + +func MapResistanceToStat(index int) (proto.Stat, bool) { + switch index { + case 0: + return proto.Stat_StatBonusArmor, true + case 2: + return proto.Stat_StatFireResistance, true + case 3: + return proto.Stat_StatNatureResistance, true + case 4: + return proto.Stat_StatFrostResistance, true + case 5: + return proto.Stat_StatShadowResistance, true + case 6: + return proto.Stat_StatArcaneResistance, true + } + return proto.Stat_StatBonusArmor, false +} + +var MapArmorSubclassToArmorType = map[int]proto.ArmorType{ + ITEM_SUBCLASS_ARMOR_CLOTH: proto.ArmorType_ArmorTypeCloth, + ITEM_SUBCLASS_ARMOR_LEATHER: proto.ArmorType_ArmorTypeLeather, + ITEM_SUBCLASS_ARMOR_MAIL: proto.ArmorType_ArmorTypeMail, + ITEM_SUBCLASS_ARMOR_PLATE: proto.ArmorType_ArmorTypePlate, + 0: proto.ArmorType_ArmorTypeUnknown, +} + +func MapMainStatToStat(index int) (proto.Stat, bool) { + switch index { + case 0: + return proto.Stat_StatStrength, true + case 1: + return proto.Stat_StatAgility, true + case 2: + return proto.Stat_StatStamina, true + case 3: + return proto.Stat_StatIntellect, true + case 4: + return proto.Stat_StatSpirit, true + } + return 0, false +} +func MapBonusStatIndexToStat(index int) (proto.Stat, bool) { + switch index { + case 0: // Mana + return proto.Stat_StatMana, true + case 1: // Health + return proto.Stat_StatHealth, true + case 7: // Stamina + return proto.Stat_StatStamina, true + case 3: // Agility + return proto.Stat_StatAgility, true + case 4: // Strength + return proto.Stat_StatStrength, true + case 5: // Intellect + return proto.Stat_StatIntellect, true + case 6: // Spirit + return proto.Stat_StatSpirit, true + + // Secondary ratings (reforge-able) + case 16, 17, 18, 31: // MeleeHitRating, RangedHitRating, SpellHitRating, or generic HitRating + return proto.Stat_StatHitRating, true + case 19, 20, 21, 32: // MeleeCritRating, RangedCritRating, SpellCritRating, or generic CritRating + return proto.Stat_StatCritRating, true + case 36: // HasteRating (non-obsolete) + return proto.Stat_StatHasteRating, true + case 37: // ExpertiseRating + return proto.Stat_StatExpertiseRating, true + case 13: // DodgeRating + return proto.Stat_StatDodgeRating, true + case 14: // ParryRating + return proto.Stat_StatParryRating, true + case 49: // Mastery + return proto.Stat_StatMasteryRating, true + case 38: // AttackPower + return proto.Stat_StatAttackPower, true + case 39: // RangedAttackPower + return proto.Stat_StatRangedAttackPower, true + case 41, 42, 45: // SpellHealing, SpellDamage, or SpellPower + return proto.Stat_StatSpellPower, true + case 47: // SpellPenetration + return proto.Stat_StatSpellPenetration, true + case 35: // ResilienceRating + return proto.Stat_StatResilienceRating, true + case 56: // ArcaneResistance + return proto.Stat_StatArcaneResistance, true + case 51: // FireResistance + return proto.Stat_StatFireResistance, true + case 52: // FrostResistance + return proto.Stat_StatFrostResistance, true + case 55: // NatureResistance + return proto.Stat_StatNatureResistance, true + case 54: // ShadowResistance + return proto.Stat_StatShadowResistance, true + case 50: // ExtraArmor maps to BonusArmor (green armor) + return proto.Stat_StatBonusArmor, true + case 43: // ManaRegeneration + return proto.Stat_StatMP5, true + default: + return 0, false + } +} + +var MapProfessionIdToProfession = map[int]proto.Profession{ + 0: proto.Profession_ProfessionUnknown, + 164: proto.Profession_Blacksmithing, + 165: proto.Profession_Leatherworking, + 171: proto.Profession_Alchemy, + 182: proto.Profession_Herbalism, + 186: proto.Profession_Mining, + 197: proto.Profession_Tailoring, + 202: proto.Profession_Engineering, + 333: proto.Profession_Enchanting, + 393: proto.Profession_Skinning, + 755: proto.Profession_Jewelcrafting, + 773: proto.Profession_Inscription, + 794: proto.Profession_Archeology, +} + +var MapItemSubclassNames = map[ItemSubClass]string{ + OneHandedAxes: "One-Handed Axes", + TwoHandedAxes: "Two-Handed Axes", + Bows: "Bows", + Guns: "Guns", + OneHandedMaces: "One-Handed Maces", + TwoHandedMaces: "Two-Handed Maces", + Polearms: "Polearms", + OneHandedSwords: "One-Handed Swords", + TwoHandedSwords: "Two-Handed Swords", + Staves: "Staves", + OneHandedExotics: "One-Handed Exotics", + TwoHandedExotics: "Two-Handed Exotics", + FistWeapons: "Fist Weapons", + Daggers: "Daggers", +} + +var MapSocketTypeToGemColor = map[int]proto.GemColor{ + 0: proto.GemColor_GemColorUnknown, + 1: proto.GemColor_GemColorMeta, + 2: proto.GemColor_GemColorRed, + 3: proto.GemColor_GemColorYellow, + 4: proto.GemColor_GemColorBlue, + 5: proto.GemColor_GemColorPurple, + 6: proto.GemColor_GemColorCogwheel, + 7: proto.GemColor_GemColorPrismatic, +} +var MapInventoryTypeToItemType = map[int]proto.ItemType{ + 0: proto.ItemType_ItemTypeUnknown, + INVTYPE_HEAD: proto.ItemType_ItemTypeHead, + INVTYPE_NECK: proto.ItemType_ItemTypeNeck, + INVTYPE_SHOULDERS: proto.ItemType_ItemTypeShoulder, + INVTYPE_CHEST: proto.ItemType_ItemTypeChest, + INVTYPE_WAIST: proto.ItemType_ItemTypeWaist, + INVTYPE_LEGS: proto.ItemType_ItemTypeLegs, + INVTYPE_FEET: proto.ItemType_ItemTypeFeet, + INVTYPE_WRISTS: proto.ItemType_ItemTypeWrist, + INVTYPE_HANDS: proto.ItemType_ItemTypeHands, + INVTYPE_FINGER: proto.ItemType_ItemTypeFinger, + INVTYPE_TRINKET: proto.ItemType_ItemTypeTrinket, + INVTYPE_WEAPON: proto.ItemType_ItemTypeWeapon, + INVTYPE_SHIELD: proto.ItemType_ItemTypeWeapon, + INVTYPE_RANGED: proto.ItemType_ItemTypeRanged, + INVTYPE_CLOAK: proto.ItemType_ItemTypeBack, + INVTYPE_2HWEAPON: proto.ItemType_ItemTypeWeapon, + INVTYPE_BAG: proto.ItemType_ItemTypeUnknown, + INVTYPE_TABARD: proto.ItemType_ItemTypeUnknown, + INVTYPE_ROBE: proto.ItemType_ItemTypeChest, + INVTYPE_WEAPONMAINHAND: proto.ItemType_ItemTypeWeapon, + INVTYPE_WEAPONOFFHAND: proto.ItemType_ItemTypeWeapon, + INVTYPE_HOLDABLE: proto.ItemType_ItemTypeWeapon, + INVTYPE_AMMO: proto.ItemType_ItemTypeUnknown, + INVTYPE_THROWN: proto.ItemType_ItemTypeRanged, + INVTYPE_RANGEDRIGHT: proto.ItemType_ItemTypeRanged, + INVTYPE_QUIVER: proto.ItemType_ItemTypeRanged, + INVTYPE_RELIC: proto.ItemType_ItemTypeRanged, +} +var MapInventoryTypeFlagToItemType = map[InventoryTypeFlag]proto.ItemType{ + 0: proto.ItemType_ItemTypeUnknown, + HEAD: proto.ItemType_ItemTypeHead, + NECK: proto.ItemType_ItemTypeNeck, + SHOULDER: proto.ItemType_ItemTypeShoulder, + CHEST: proto.ItemType_ItemTypeChest, + WAIST: proto.ItemType_ItemTypeWaist, + LEGS: proto.ItemType_ItemTypeLegs, + FEET: proto.ItemType_ItemTypeFeet, + WRIST: proto.ItemType_ItemTypeWrist, + HAND: proto.ItemType_ItemTypeHands, + FINGER: proto.ItemType_ItemTypeFinger, + TRINKET: proto.ItemType_ItemTypeTrinket, + MAIN_HAND: proto.ItemType_ItemTypeWeapon, + OFF_HAND: proto.ItemType_ItemTypeWeapon, + RANGED: proto.ItemType_ItemTypeRanged, + CLOAK: proto.ItemType_ItemTypeBack, + TWO_H_WEAPON: proto.ItemType_ItemTypeWeapon, + BAG: proto.ItemType_ItemTypeUnknown, + TABARD: proto.ItemType_ItemTypeUnknown, + ROBE: proto.ItemType_ItemTypeChest, + WEAPON_MAIN_HAND: proto.ItemType_ItemTypeWeapon, + WEAPON_OFF_HAND: proto.ItemType_ItemTypeWeapon, + HOLDABLE: proto.ItemType_ItemTypeWeapon, + AMMO: proto.ItemType_ItemTypeUnknown, + THROWN: proto.ItemType_ItemTypeRanged, + RANGED_RIGHT: proto.ItemType_ItemTypeRanged, + QUIVER: proto.ItemType_ItemTypeRanged, + RELIC: proto.ItemType_ItemTypeRanged, +} + +var MapWeaponSubClassToWeaponType = map[int]proto.WeaponType{ + ITEM_SUBCLASS_WEAPON_AXE: proto.WeaponType_WeaponTypeAxe, + ITEM_SUBCLASS_WEAPON_AXE2: proto.WeaponType_WeaponTypeAxe, + ITEM_SUBCLASS_WEAPON_BOW: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_GUN: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_MACE: proto.WeaponType_WeaponTypeMace, + ITEM_SUBCLASS_WEAPON_MACE2: proto.WeaponType_WeaponTypeMace, + ITEM_SUBCLASS_WEAPON_POLEARM: proto.WeaponType_WeaponTypePolearm, + ITEM_SUBCLASS_WEAPON_SWORD: proto.WeaponType_WeaponTypeSword, + ITEM_SUBCLASS_WEAPON_SWORD2: proto.WeaponType_WeaponTypeSword, + ITEM_SUBCLASS_WEAPON_WARGLAIVE: proto.WeaponType_WeaponTypePolearm, // assuming polearm idk + ITEM_SUBCLASS_WEAPON_STAFF: proto.WeaponType_WeaponTypeStaff, + ITEM_SUBCLASS_WEAPON_EXOTIC: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_EXOTIC2: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_FIST: proto.WeaponType_WeaponTypeFist, + ITEM_SUBCLASS_WEAPON_MISC: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_DAGGER: proto.WeaponType_WeaponTypeDagger, + ITEM_SUBCLASS_WEAPON_THROWN: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_SPEAR: proto.WeaponType_WeaponTypePolearm, + ITEM_SUBCLASS_WEAPON_CROSSBOW: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_WAND: proto.WeaponType_WeaponTypeUnknown, + ITEM_SUBCLASS_WEAPON_FISHING_POLE: proto.WeaponType_WeaponTypeUnknown, +} + +type EnchantMetaType struct { + ItemType proto.ItemType + WeaponType proto.WeaponType +} + +var MapInventoryTypeToEnchantMetaType = map[InventoryTypeFlag]EnchantMetaType{ + HEAD: {ItemType: proto.ItemType_ItemTypeHead, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + NECK: {ItemType: proto.ItemType_ItemTypeNeck, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + SHOULDER: {ItemType: proto.ItemType_ItemTypeShoulder, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + CHEST: {ItemType: proto.ItemType_ItemTypeChest, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + WAIST: {ItemType: proto.ItemType_ItemTypeWaist, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + LEGS: {ItemType: proto.ItemType_ItemTypeLegs, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + FEET: {ItemType: proto.ItemType_ItemTypeFeet, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + WRIST: {ItemType: proto.ItemType_ItemTypeWrist, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + HAND: {ItemType: proto.ItemType_ItemTypeHands, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + FINGER: {ItemType: proto.ItemType_ItemTypeFinger, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + TRINKET: {ItemType: proto.ItemType_ItemTypeTrinket, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + + WEAPON_MAIN_HAND: {ItemType: proto.ItemType_ItemTypeWeapon, WeaponType: proto.WeaponType_WeaponTypeUnknown}, // One-Hand + WEAPON_OFF_HAND: {ItemType: proto.ItemType_ItemTypeWeapon, WeaponType: proto.WeaponType_WeaponTypeShield}, // Off Hand + RANGED: {ItemType: proto.ItemType_ItemTypeRanged, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + CLOAK: {ItemType: proto.ItemType_ItemTypeBack, WeaponType: proto.WeaponType_WeaponTypeUnknown}, + TWO_H_WEAPON: {ItemType: proto.ItemType_ItemTypeWeapon, WeaponType: proto.WeaponType_WeaponTypeUnknown}, +} +var consumableClassToProto = map[ConsumableClass]proto.ConsumableType{ + EXPLOSIVES_AND_DEVICES: proto.ConsumableType_ConsumableTypeExplosive, + POTION: proto.ConsumableType_ConsumableTypePotion, + FLASK: proto.ConsumableType_ConsumableTypeFlask, + SCROLL: proto.ConsumableType_ConsumableTypeScroll, + FOOD: proto.ConsumableType_ConsumableTypeFood, + BANDAGE: proto.ConsumableType_ConsumableTypeUnknown, + OTHER: proto.ConsumableType_ConsumableTypeUnknown, +} + +var MapPowerTypeEnumToResourceType = map[int32]proto.ResourceType{ + 0: proto.ResourceType_ResourceTypeMana, + 1: proto.ResourceType_ResourceTypeRage, + 2: proto.ResourceType_ResourceTypeFocus, + 3: proto.ResourceType_ResourceTypeEnergy, + 4: proto.ResourceType_ResourceTypeComboPoints, + 5: proto.ResourceType_ResourceTypeDeathRune | proto.ResourceType_ResourceTypeBloodRune, + 6: proto.ResourceType_ResourceTypeRunicPower, + 7: proto.ResourceType_ResourceTypeNone, // Soulshards + 8: proto.ResourceType_ResourceTypeLunarEnergy, + 9: proto.ResourceType_ResourceTypeHolyPower, + 20: proto.ResourceType_ResourceTypeBloodRune, + 21: proto.ResourceType_ResourceTypeFrostRune, + 22: proto.ResourceType_ResourceTypeUnholyRune, +} + +func getMatchingRatingMods(value int) []RatingModType { + allMods := []RatingModType{ + RATING_MOD_DODGE, + RATING_MOD_PARRY, + RATING_MOD_HIT_MELEE, + RATING_MOD_HIT_RANGED, + RATING_MOD_HIT_SPELL, + RATING_MOD_CRIT_MELEE, + RATING_MOD_CRIT_RANGED, + RATING_MOD_CRIT_SPELL, + RATING_MOD_MULTISTRIKE, + RATING_MOD_READINESS, + RATING_MOD_SPEED, + RATING_MOD_RESILIENCE, + RATING_MOD_LEECH, + RATING_MOD_HASTE_MELEE, + RATING_MOD_HASTE_RANGED, + RATING_MOD_HASTE_SPELL, + RATING_MOD_AVOIDANCE, + RATING_MOD_EXPERTISE, + RATING_MOD_MASTERY, + RATING_MOD_PVP_POWER, + RATING_MOD_VERS_DAMAGE, + RATING_MOD_VERS_HEAL, + RATING_MOD_VERS_MITIG, + } + + var result []RatingModType + for _, mod := range allMods { + if value&int(mod) != 0 { + result = append(result, mod) + } + } + return result +} + +var RatingModToStat = map[RatingModType]proto.Stat{ + RATING_MOD_DODGE: proto.Stat_StatDodgeRating, + RATING_MOD_PARRY: proto.Stat_StatParryRating, + RATING_MOD_HIT_MELEE: proto.Stat_StatHitRating, + RATING_MOD_HIT_RANGED: proto.Stat_StatHitRating, + RATING_MOD_HIT_SPELL: proto.Stat_StatHitRating, + RATING_MOD_CRIT_MELEE: proto.Stat_StatCritRating, + RATING_MOD_CRIT_RANGED: proto.Stat_StatCritRating, + RATING_MOD_CRIT_SPELL: proto.Stat_StatCritRating, + RATING_MOD_MULTISTRIKE: -1, + RATING_MOD_READINESS: -1, + RATING_MOD_SPEED: -1, + RATING_MOD_RESILIENCE: proto.Stat_StatResilienceRating, + RATING_MOD_LEECH: -1, + RATING_MOD_HASTE_MELEE: proto.Stat_StatHasteRating, + RATING_MOD_HASTE_RANGED: proto.Stat_StatHasteRating, + RATING_MOD_HASTE_SPELL: proto.Stat_StatHasteRating, + RATING_MOD_AVOIDANCE: -1, + RATING_MOD_EXPERTISE: proto.Stat_StatExpertiseRating, + RATING_MOD_MASTERY: proto.Stat_StatMasteryRating, + RATING_MOD_PVP_POWER: -1, + + RATING_MOD_VERS_DAMAGE: -1, + RATING_MOD_VERS_HEAL: -1, + RATING_MOD_VERS_MITIG: -1, +} +var classes = []DbcClass{ + {proto.Class_ClassWarrior, 1}, + {proto.Class_ClassPaladin, 2}, + {proto.Class_ClassHunter, 3}, + {proto.Class_ClassRogue, 4}, + {proto.Class_ClassPriest, 5}, + {proto.Class_ClassDeathKnight, 6}, + {proto.Class_ClassShaman, 7}, + {proto.Class_ClassMage, 8}, + {proto.Class_ClassWarlock, 9}, + {proto.Class_ClassMonk, 10}, + {proto.Class_ClassDruid, 11}, +} diff --git a/tools/database/dbc/random_property.go b/tools/database/dbc/random_property.go new file mode 100644 index 0000000000..4822d39936 --- /dev/null +++ b/tools/database/dbc/random_property.go @@ -0,0 +1,25 @@ +package dbc + +import "github.com/wowsims/mop/sim/core/proto" + +type RandomPropAllocation struct { + Epic0 int32 `json:"Epic_0"` + Epic1 int32 `json:"Epic_1"` + Epic2 int32 `json:"Epic_2"` + Epic3 int32 `json:"Epic_3"` + Epic4 int32 `json:"Epic_4"` + Superior0 int32 `json:"Superior_0"` + Superior1 int32 `json:"Superior_1"` + Superior2 int32 `json:"Superior_2"` + Superior3 int32 `json:"Superior_3"` + Superior4 int32 `json:"Superior_4"` + Good0 int32 `json:"Good_0"` + Good1 int32 `json:"Good_1"` + Good2 int32 `json:"Good_2"` + Good3 int32 `json:"Good_3"` + Good4 int32 `json:"Good_4"` +} + +type RandomPropAllocationMap map[proto.ItemQuality][5]int32 + +type RandomPropAllocationsByIlvl map[int]RandomPropAllocationMap diff --git a/tools/database/dbc/random_suffix.go b/tools/database/dbc/random_suffix.go new file mode 100644 index 0000000000..d46b79ca14 --- /dev/null +++ b/tools/database/dbc/random_suffix.go @@ -0,0 +1,34 @@ +package dbc + +import ( + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +type RandomSuffix struct { + ID int + Name string + AllocationPct []int // AllocationPct_0-4 + EffectArgs []int // EffectArg_0-4 + Effects []int // Effect_0-4 +} + +func (raw RandomSuffix) ToProto() *proto.ItemRandomSuffix { + suffix := &proto.ItemRandomSuffix{ + Name: raw.Name, + Id: int32(raw.ID), + Stats: stats.Stats{}.ToProtoArray(), + } + for i, effect := range raw.Effects { + if effect == 5 || effect == 4 { + stat, _ := MapBonusStatIndexToStat(raw.EffectArgs[i]) + if effect == 4 { + stat, _ = MapResistanceToStat(raw.EffectArgs[i]) + } + amount := raw.AllocationPct[i] + suffix.Stats[stat] = float64(amount) + + } + } + return suffix +} diff --git a/tools/database/dbc/spell.go b/tools/database/dbc/spell.go new file mode 100644 index 0000000000..c421e0fd41 --- /dev/null +++ b/tools/database/dbc/spell.go @@ -0,0 +1,50 @@ +package dbc + +type Spell struct { + NameLang string + ID int32 + SchoolMask int32 + Speed float32 + LaunchDelay float32 + MinDuration float32 + MaxScalingLevel int + MinScalingLevel int32 + ScalesFromItemLevel int32 + SpellLevel int + BaseLevel int32 + MaxLevel int + MaxPassiveAuraLevel int32 + Cooldown int32 + GCD int32 + RangeIndex int32 + Attributes []int + CategoryFlags int32 + MaxCharges int32 + ChargeRecoveryTime int32 + CategoryTypeMask int32 + Category int32 + Duration int32 + ProcChance float32 + ProcCharges int32 + ProcTypeMask []int + ProcCategoryRecovery int32 + SpellProcsPerMinuteID int32 + EquippedItemClass int32 + EquippedItemInvTypes int32 + EquippedItemSubclass int32 + CastTimeMin float32 + SpellClassMask []int + SpellClassSet int32 + AuraInterruptFlags []int + ChannelInterruptFlags []int + ShapeshiftMask []int +} + +func (s *Spell) HasAttributeFlag(attr uint) bool { + bit := attr % 32 + index := attr / 32 + if index >= uint(len(s.Attributes)) { + return false + } + return (s.Attributes[index] & (1 << bit)) != 0 +} diff --git a/tools/database/dbc/spell_effect.go b/tools/database/dbc/spell_effect.go new file mode 100644 index 0000000000..222c7fbbd0 --- /dev/null +++ b/tools/database/dbc/spell_effect.go @@ -0,0 +1,288 @@ +package dbc + +import ( + "math" + "slices" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +const MAX_SCALING_LEVEL = 100 +const BASE_LEVEL = 85 + +type SpellEffect struct { + ID int + DifficultyID int + EffectIndex int + EffectType SpellEffectType + EffectAmplitude float64 + EffectAttributes int + EffectAura EffectAuraType + EffectAuraPeriod int + EffectBasePoints int + EffectBonusCoefficient float64 + EffectChainAmplitude float64 + EffectChainTargets int + EffectDieSides int + EffectItemType int + EffectMechanic int + EffectPointsPerResource float64 + EffectPosFacing float64 + EffectRealPointsPerLevel float64 + EffectTriggerSpell int + BonusCoefficientFromAP float64 + PvpMultiplier float64 + Coefficient float64 + Variance float64 + ResourceCoefficient float64 + GroupSizeBasePointsCoefficient float64 + // Grouped properties parsed from JSON strings: + EffectMiscValues []int // from EffectMiscValue_0, EffectMiscValue_1 + EffectRadiusIndices []int // from EffectRadiusIndex_0, EffectRadiusIndex_1 + EffectSpellClassMasks []int // from EffectSpellClassMask_0, EffectSpellClassMask_1, EffectSpellClassMask_2, EffectSpellClassMask_3 + ImplicitTargets []int // from ImplicitTarget_0, ImplicitTarget_1 + SpellID int + ScalingType int +} + +func (se *SpellEffect) ToProto() *proto.SpellEffect { + spellEffect := &proto.SpellEffect{ + Id: int32(se.ID), + SpellId: int32(se.SpellID), + Index: int32(se.EffectIndex), + Type: proto.EffectType(se.EffectType), + EffectSpread: se.Delta(BASE_LEVEL, BASE_LEVEL), // Todo: something weird here only true for pots? + MinEffectSize: se.Min(BASE_LEVEL, BASE_LEVEL), + } + if spellEffect.EffectSpread == 0 { + spellEffect.EffectSpread = float64(se.EffectDieSides) + } + switch se.EffectType { + case E_ENERGIZE: + spellEffect.MiscValue0 = &proto.SpellEffect_ResourceType{ResourceType: MapPowerTypeEnumToResourceType[int32(se.EffectMiscValues[0])]} + case E_HEAL: + spellEffect.MiscValue0 = &proto.SpellEffect_ResourceType{ResourceType: proto.ResourceType_ResourceTypeHealth} + } + + return spellEffect +} + +func (s *SpellEffect) GetRadiusMax() float64 { + return math.Max(float64(s.EffectRadiusIndices[0]), float64(s.EffectRadiusIndices[1])) +} + +func (s *SpellEffect) ScalingClass() proto.Class { + switch s.ScalingType { + case 1: + return proto.Class_ClassWarrior + case 2: + return proto.Class_ClassPaladin + case 3: + return proto.Class_ClassHunter + case 4: + return proto.Class_ClassRogue + case 5: + return proto.Class_ClassPriest + case 6: + return proto.Class_ClassDeathKnight + case 7: + return proto.Class_ClassShaman + case 8: + return proto.Class_ClassMage + case 9: + return proto.Class_ClassWarlock + case 10: + return proto.Class_ClassMonk + case 11: + return proto.Class_ClassDruid + default: + return proto.Class_ClassUnknown + } +} +func (s *SpellEffect) Delta(pLevel int, level int) float64 { + if level > 85 { + level = 85 + } + + var mScale float64 + spell := dbcInstance.Spells[s.SpellID] + if s.Variance != 0 && s.ScalingClass() != 0 { + scalingLevel := level + if scalingLevel == 0 { + scalingLevel = pLevel + } + if spell.MaxScalingLevel > 0 { + scalingLevel = min(scalingLevel, spell.MaxScalingLevel) + } + mScale = dbcInstance.SpellScaling(s.ScalingClass(), scalingLevel) + } + + return s.scaledDelta(mScale) +} + +// func (s *SpellEffect) Bonus(dbc *DBC, pLevel int, level int) float64 { +// if level == 0 { +// level = pLevel +// } +// return dbc.EffectBonusById(s.GetSpell(dbc).ID, level) +// } + +func (s *SpellEffect) Average(pLevel int, level int) float64 { + if level == 0 { + level = pLevel + } + + scale := s.ScalingClass() + spell := dbcInstance.Spells[s.ID] + + if s.Coefficient != 0 && scale != proto.Class_ClassUnknown { + if spell.MaxScalingLevel > 0 { + level = min(level, spell.MaxScalingLevel) + } + scaler := dbcInstance.SpellScaling(scale, level) + value := s.Coefficient * scaler + return value + } else if s.EffectRealPointsPerLevel != 0 { + if spell.MaxLevel > 0 { + return float64(s.EffectBasePoints) + float64(min(level, spell.MaxLevel)-spell.SpellLevel)*s.EffectRealPointsPerLevel + } + return float64(s.EffectBasePoints) + float64(level-spell.SpellLevel)*s.EffectRealPointsPerLevel + } + return float64(s.EffectBasePoints) +} + +// Minimum value calculation for player +func (s *SpellEffect) Min(pLevel int, level int) float64 { + return s.scaledMin(s.Average(pLevel, level), s.Delta(pLevel, level)) +} + +// Maximum value calculation for player +func (s *SpellEffect) Max(pLevel int, level int) float64 { + return s.scaledMax(s.Average(pLevel, level), s.Delta(pLevel, level)) +} + +func (s *SpellEffect) scaledDelta(budget float64) float64 { + if s.Variance != 0 && budget > 0 { + return s.Coefficient * float64(s.Variance) * budget + } + return 0 +} + +// Scaled minimum calculation +func (s *SpellEffect) scaledMin(avg, delta float64) float64 { + result := avg - delta/2 + if s.EffectType == E_WEAPON_PERCENT_DAMAGE { + result *= 0.01 + } + return result +} + +// Scaled maximum calculation +func (s *SpellEffect) scaledMax(avg, delta float64) float64 { + result := avg + delta/2 + if s.EffectType == E_WEAPON_PERCENT_DAMAGE { + result *= 0.01 + } + return result +} + +func (effect *SpellEffect) IsDirectDamageEffect() bool { + types := []SpellEffectType{ + E_HEAL, E_SCHOOL_DAMAGE, E_HEALTH_LEECH, + E_NORMALIZED_WEAPON_DMG, E_WEAPON_DAMAGE, E_WEAPON_PERCENT_DAMAGE, + } + return slices.Contains(types, effect.EffectType) +} + +func (effect *SpellEffect) IsPeriodicDamageEffect() bool { + subtypes := []EffectAuraType{ + A_PERIODIC_DAMAGE, A_PERIODIC_LEECH, A_PERIODIC_HEAL, + } + if effect.EffectType == E_APPLY_AURA { + return slices.Contains(subtypes, effect.EffectAura) + } + return false +} + +func (data *SpellEffect) ClassFlag(index uint) uint32 { + // Ensure the operation is performed within uint32 context + return uint32(data.EffectSpellClassMasks[index/32]) & (1 << (index % 32)) +} + +func (effect *SpellEffect) ParseStatEffect() *stats.Stats { + stats := &stats.Stats{} + if effect.EffectAura == A_MOD_STAT && effect.EffectType == E_APPLY_AURA { + stat, _ := MapMainStatToStat(effect.EffectMiscValues[0]) + + stats[stat] = float64(effect.EffectBasePoints) + return stats + } + + if effect.EffectMiscValues[0] == -1 && + effect.EffectType == E_APPLY_AURA && + effect.EffectAura == A_MOD_STAT { + // Apply bonus to all stats + stats[proto.Stat_StatAgility] = float64(effect.EffectBasePoints) + stats[proto.Stat_StatIntellect] = float64(effect.EffectBasePoints) + stats[proto.Stat_StatSpirit] = float64(effect.EffectBasePoints) + stats[proto.Stat_StatStamina] = float64(effect.EffectBasePoints) + stats[proto.Stat_StatStrength] = float64(effect.EffectBasePoints) + return stats + } + school := SpellSchool(effect.EffectMiscValues[0]) + if effect.EffectAura == A_MOD_TARGET_RESISTANCE { + if school == SPELL_PENETRATION { + stats[proto.Stat_StatSpellPenetration] += math.Abs(float64(effect.EffectBasePoints)) + return stats + } + } + + if effect.EffectAura == A_OBS_MOD_HEALTH { + return stats + } + + if effect.EffectAura == A_MOD_RESISTANCE { + if school.Has(FIRE) { + stats[proto.Stat_StatFireResistance] += float64(effect.EffectBasePoints) + } + if school.Has(ARCANE) { + stats[proto.Stat_StatArcaneResistance] += float64(effect.EffectBasePoints) + } + if school.Has(NATURE) { + stats[proto.Stat_StatNatureResistance] += float64(effect.EffectBasePoints) + } + if school.Has(FROST) { + stats[proto.Stat_StatFrostResistance] += float64(effect.EffectBasePoints) + } + if school.Has(SHADOW) { + stats[proto.Stat_StatShadowResistance] += float64(effect.EffectBasePoints) + } + if school.Has(PHYSICAL) { + stats[proto.Stat_StatArmor] += float64(effect.EffectBasePoints) + } + } + + if effect.EffectAura == A_MOD_RATING { + matching := getMatchingRatingMods(effect.EffectMiscValues[0]) + for _, rating := range matching { + statMod := RatingModToStat[rating] + if statMod != -1 { + stats[statMod] = float64(effect.EffectBasePoints) + } + } + } + + if effect.EffectAura == A_MOD_INCREASE_ENERGY { + stats[proto.Stat_StatMana] = float64(effect.EffectBasePoints) + } + + if effect.EffectAura == A_PERIODIC_TRIGGER_SPELL && effect.EffectAuraPeriod == 10000 { // Make sure if its a food + subEffects := dbcInstance.SpellEffects[effect.EffectTriggerSpell] + for _, subEffect := range subEffects { + stats.AddInplace(subEffect.ParseStatEffect()) + } + } + + return stats +} diff --git a/tools/database/dbc/spell_scaling.go b/tools/database/dbc/spell_scaling.go new file mode 100644 index 0000000000..606cee1154 --- /dev/null +++ b/tools/database/dbc/spell_scaling.go @@ -0,0 +1,79 @@ +package dbc + +import ( + "bufio" + _ "embed" + "strconv" + "strings" + + "github.com/wowsims/mop/sim/core/proto" +) + +//go:embed GameTables/SpellScaling.txt +var spellScalingFile string + +type SpellScaling struct { + Level int + Values map[proto.Class]float64 +} + +func (dbc *DBC) LoadSpellScaling() error { + scanner := bufio.NewScanner(strings.NewReader(spellScalingFile)) + + scanner.Scan() // Skip first line + + for scanner.Scan() { + line := scanner.Text() + parts := strings.Fields(line) + if len(parts) < 14 { + continue // consider handling or logging this situation + } + + level, err := strconv.Atoi(parts[0]) + if err != nil { + continue // consider handling or logging this situation + } + + scaling := SpellScaling{ + Level: level, + Values: map[proto.Class]float64{ + proto.Class_ClassWarrior: parseScalingValue(parts[1]), + proto.Class_ClassPaladin: parseScalingValue(parts[2]), + proto.Class_ClassHunter: parseScalingValue(parts[3]), + proto.Class_ClassRogue: parseScalingValue(parts[4]), + proto.Class_ClassPriest: parseScalingValue(parts[5]), + proto.Class_ClassDeathKnight: parseScalingValue(parts[6]), + proto.Class_ClassShaman: parseScalingValue(parts[7]), + proto.Class_ClassMage: parseScalingValue(parts[8]), + proto.Class_ClassWarlock: parseScalingValue(parts[9]), + proto.Class_ClassMonk: parseScalingValue(parts[10]), + proto.Class_ClassDruid: parseScalingValue(parts[11]), + proto.Class_ClassUnknown: parseScalingValue(parts[12]), + }, + } + dbc.SpellScalings[level] = scaling + } + + if err := scanner.Err(); err != nil { + return err + } + + return nil +} + +func (dbc *DBC) SpellScaling(class proto.Class, level int) float64 { + if scaling, ok := dbc.SpellScalings[level]; ok { + if value, ok := scaling.Values[class]; ok { + return value + } + } + return 0.0 // return a default or error value if not found +} + +func parseScalingValue(value string) float64 { + v, err := strconv.ParseFloat(value, 64) + if err != nil { + return 0.0 // consider how to handle or log this error properly + } + return v +} diff --git a/tools/database/dbc/util.go b/tools/database/dbc/util.go new file mode 100644 index 0000000000..b3d5849603 --- /dev/null +++ b/tools/database/dbc/util.go @@ -0,0 +1,192 @@ +package dbc + +import ( + "compress/gzip" + "fmt" + "io" + "math" + "os" + "slices" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" +) + +func SocketCost(level int) float64 { + cost := 0.0 + + if level >= 19 { + cost++ + } + if level >= 31 { + cost++ + } + if level >= 43 { + cost++ + } + if level >= 55 { + cost++ + } + if level >= 89 { + cost++ + } + if level >= 100 { + cost++ + } + if level >= 178 { + cost += 2 + } + return cost +} + +func GetProfession(id int) proto.Profession { + if profession, ok := MapProfessionIdToProfession[id]; ok { + return profession + } + return 0 +} + +func GetClassesFromClassMask(mask int) []proto.Class { + var result []proto.Class + for _, class := range classes { + if mask&(1<<(class.ID-1)) != 0 { + result = append(result, class.ProtoClass) + } + } + slices.Sort(result) + return result +} + +type DbcClass struct { + ProtoClass proto.Class + ID int +} + +func readGzipFile(filename string) ([]byte, error) { + f, err := os.Open(filename) + if err != nil { + return nil, DataLoadError{ + Source: filename, + DataType: "gzip file", + Reason: err.Error(), + } + } + defer f.Close() + + gzReader, err := gzip.NewReader(f) + if err != nil { + return nil, DataLoadError{ + Source: filename, + DataType: "gzip", + Reason: err.Error(), + } + } + defer gzReader.Close() + + data, err := io.ReadAll(gzReader) + if err != nil { + return nil, DataLoadError{ + Source: filename, + DataType: "decompression", + Reason: err.Error(), + } + } + + return data, nil +} + +func processEnchantmentEffects( + effects []int, + effectArgs []int, + effectPoints []int, + outStats *stats.Stats, + addRanged bool, +) { + for i, effect := range effects { + switch effect { + case ITEM_ENCHANTMENT_RESISTANCE: + stat, _ := MapResistanceToStat(effectArgs[i]) + outStats[stat] = float64(effectPoints[i]) + case ITEM_ENCHANTMENT_STAT: + stat, _ := MapBonusStatIndexToStat(effectArgs[i]) + outStats[stat] = float64(effectPoints[i]) + if effectPoints[i] == 72 { + fmt.Println("Add to AP", stat) + } + // If the bonus stat is attack power, copy it to ranged attack power + if addRanged && stat == proto.Stat_StatAttackPower { + if effectPoints[i] == 72 { + fmt.Println("Add to APRange", stat) + } + outStats[proto.Stat_StatRangedAttackPower] = float64(effectPoints[i]) + } + case ITEM_ENCHANTMENT_EQUIP_SPELL: //Buff + spellEffects := dbcInstance.SpellEffects[effectArgs[i]] + for _, spellEffect := range spellEffects { + if spellEffect.EffectMiscValues[0] == -1 && + spellEffect.EffectType == E_APPLY_AURA && + spellEffect.EffectAura == A_MOD_STAT { + // Apply bonus to all stats + outStats[proto.Stat_StatAgility] += float64(spellEffect.EffectBasePoints) + outStats[proto.Stat_StatIntellect] += float64(spellEffect.EffectBasePoints) + outStats[proto.Stat_StatSpirit] += float64(spellEffect.EffectBasePoints) + outStats[proto.Stat_StatStamina] += float64(spellEffect.EffectBasePoints) + outStats[proto.Stat_StatStrength] += float64(spellEffect.EffectBasePoints) + continue + } + if spellEffect.EffectType == E_APPLY_AURA && spellEffect.EffectAura == A_MOD_STAT { + + } + + school := SpellSchool(spellEffect.EffectMiscValues[0]) + if spellEffect.EffectAura == A_MOD_TARGET_RESISTANCE { + + if school == SPELL_PENETRATION { + outStats[proto.Stat_StatSpellPenetration] += math.Abs(float64(spellEffect.EffectBasePoints)) + continue + } + //Todo: Leave this for classic because maybe + // if school.Has(HOLY) { + // //outStats[proto.Stat_StatHo] += float64(+spellEffect.EffectBasePoints) We dont have this? + // } + // if school.Has(FIRE) { + // outStats[proto.Stat_StatFireResistance] += float64(+spellEffect.EffectBasePoints) + // } + // if school.Has(NATURE) { + // outStats[proto.Stat_StatNatureResistance] += float64(+spellEffect.EffectBasePoints) + // } + // if school.Has(FROST) { + // outStats[proto.Stat_StatFrostResistance] += float64(+spellEffect.EffectBasePoints) + // } + // if school.Has(SHADOW) { + // outStats[proto.Stat_StatShadowResistance] += float64(+spellEffect.EffectBasePoints) + // } + } + if spellEffect.EffectAura == A_MOD_RESISTANCE { + // if school.Has(HOLY) { + //outStats[proto.Stat_StatHo] += float64(+spellEffect.EffectBasePoints) We dont have this? + //} + if school.Has(FIRE) { + outStats[proto.Stat_StatFireResistance] += float64(spellEffect.EffectBasePoints) + } + if school.Has(ARCANE) { + outStats[proto.Stat_StatArcaneResistance] += float64(spellEffect.EffectBasePoints) + } + if school.Has(NATURE) { + outStats[proto.Stat_StatNatureResistance] += float64(spellEffect.EffectBasePoints) + } + if school.Has(FROST) { + outStats[proto.Stat_StatFrostResistance] += float64(spellEffect.EffectBasePoints) + } + if school.Has(SHADOW) { + outStats[proto.Stat_StatShadowResistance] += float64(spellEffect.EffectBasePoints) + } + } + } + case ITEM_ENCHANTMENT_COMBAT_SPELL: + // Not processed (chance on hit, ignore for now) + case ITEM_ENCHANTMENT_USE_SPELL: + // Not processed + } + } +} diff --git a/tools/database/dbhelper.go b/tools/database/dbhelper.go new file mode 100644 index 0000000000..97ebf3f900 --- /dev/null +++ b/tools/database/dbhelper.go @@ -0,0 +1,126 @@ +package database + +import ( + "database/sql" + "fmt" + "log" + "os" + "path/filepath" + "sort" + "strconv" + "strings" + + _ "modernc.org/sqlite" +) + +type DBHelper struct { + db *sql.DB +} + +var DatabasePath string + +func NewDBHelper() (*DBHelper, error) { + db, err := sql.Open("sqlite", DatabasePath) + if err != nil { + return nil, fmt.Errorf("error opening database: %v", err) + } + if err = db.Ping(); err != nil { + return nil, fmt.Errorf("error pinging database: %v", err) + } + return &DBHelper{db: db}, nil +} + +func (d *DBHelper) Close() error { + return d.db.Close() +} + +func (d *DBHelper) Query(query string, args ...interface{}) (*sql.Rows, error) { + return d.db.Query(query, args...) +} + +func (d *DBHelper) QueryAndProcess(query string, process func(*sql.Rows) error, args ...interface{}) { + rows, err := d.Query(query, args...) + if err != nil { + log.Fatalf("query error: %v", err) + } + defer rows.Close() + + if err := process(rows); err != nil { + log.Fatalf("processing error: %v", err) + } +} + +func LoadRows[T any](db *sql.DB, query string, scanFunc func(*sql.Rows) (T, error), args ...interface{}) ([]T, error) { + rows, err := db.Query(query, args...) + if err != nil { + return nil, fmt.Errorf("query error: %w", err) + } + defer rows.Close() + + var results []T + for rows.Next() { + item, err := scanFunc(rows) + if err != nil { + fmt.Println(err.Error()) + return nil, fmt.Errorf("scan error: %w", err) + } + results = append(results, item) + } + return results, nil +} + +func CacheBy[T any, K comparable](items []T, keyFunc func(T) K) map[K]T { + cache := make(map[K]T) + for _, item := range items { + cache[keyFunc(item)] = item + } + return cache +} + +func RunOverrides(dbHelper *DBHelper, overridesFolder string) error { + entries, err := os.ReadDir(overridesFolder) + if err != nil { + return fmt.Errorf("error reading overrides folder: %w", err) + } + + type sqlFile struct { + path string + order int + } + + var files []sqlFile + for _, entry := range entries { + if !entry.IsDir() && strings.HasSuffix(entry.Name(), ".sql") { + base := strings.TrimSuffix(entry.Name(), ".sql") + order, err := strconv.Atoi(base) + if err != nil { + continue + } + + files = append(files, sqlFile{ + path: filepath.Join(overridesFolder, entry.Name()), + order: order, + }) + } + } + + sort.Slice(files, func(i, j int) bool { + return files[i].order < files[j].order + }) + + for _, f := range files { + content, err := os.ReadFile(f.path) + if err != nil { + return fmt.Errorf("error reading file %s: %w", f.path, err) + } + fmt.Println("Running override file", f.path) + _, err = dbHelper.db.Exec(string(content)) + if err != nil { + + fmt.Println(err.Error()) + return fmt.Errorf("error executing SQL file %s: %w", f.path, err) + } + } + + return nil +} diff --git a/tools/database/enchant_overrides.go b/tools/database/enchant_overrides.go index 271c8c0721..9b11f313b1 100644 --- a/tools/database/enchant_overrides.go +++ b/tools/database/enchant_overrides.go @@ -1,327 +1,10 @@ package database import ( - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" ) // Note: EffectId AND SpellId are required for all enchants, because they are // used by various importers/exporters. ItemId is optional. -var EnchantOverrides = []*proto.UIEnchant{ - // HANDS - {EffectId: 3260, SpellId: 44769, Name: "Glove Reinforcements", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.BonusArmor: 240}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4061, SpellId: 74132, Name: "Enchant Gloves - Mastery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.MasteryRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4068, SpellId: 74198, Name: "Enchant Gloves - Haste", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HasteRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4075, SpellId: 74212, Name: "Enchant Gloves - Exceptional Strength", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Strength: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4082, SpellId: 74220, Name: "Enchant Gloves - Greater Expertise", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ExpertiseRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4106, SpellId: 74254, Name: "Enchant Gloves - Mighty Strength", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Strength: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 4107, SpellId: 74255, Name: "Enchant Gloves - Greater Mastery", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.MasteryRating: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - // Moved to engineering consumes - //{EffectId: 4179, SpellId: 82175, Name: "Synapse Springs", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4180, SpellId: 82177, Name: "Quickflip Deflection Plates", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4181, SpellId: 82180, Name: "Tazik Shocker", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4182, SpellId: 82200, Name: "Spinal Healing Injector", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4183, SpellId: 82201, Name: "Z50 Mana Gulper", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands, RequiredProfession: proto.Profession_Engineering}, - - // FEET - {EffectId: 4062, SpellId: 74189, Name: "Enchant Boots - Earthen Vitality", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 30}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4069, SpellId: 74199, Name: "Enchant Boots - Haste", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HasteRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4076, SpellId: 74213, Name: "Enchant Boots - Major Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4092, SpellId: 74236, Name: "Enchant Boots - Precision", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HitRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4094, SpellId: 74238, Name: "Enchant Boots - Mastery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.MasteryRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4105, SpellId: 74252, Name: "Enchant Boots - Assassin's Step", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Agility: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 4104, SpellId: 74253, Name: "Enchant Boots - Lavawalker", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.MasteryRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - - // CHEST - {EffectId: 4063, SpellId: 74191, Name: "Enchant Chest - Mighty Stats", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 15, stats.Strength: 15, stats.Agility: 15, stats.Intellect: 15, stats.Spirit: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 4070, SpellId: 74200, Name: "Enchant Chest - Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 4077, SpellId: 74214, Name: "Enchant Chest - Mighty Resilience", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ResilienceRating: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 4088, SpellId: 74231, Name: "Enchant Chest - Exceptional Spirit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 4102, SpellId: 74250, Name: "Enchant Chest - Peerless Stats", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 20, stats.Strength: 20, stats.Agility: 20, stats.Intellect: 20, stats.Spirit: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 4103, SpellId: 74251, Name: "Enchant Chest - Greater Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 75}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - - // CLOAK - {EffectId: 4064, SpellId: 74192, Name: "Enchant Cloak - Greater Spell Piercing", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPenetration: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4072, SpellId: 74202, Name: "Enchant Cloak - Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 30}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4087, SpellId: 74230, Name: "Enchant Cloak - Critical Strike", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.CritRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4090, SpellId: 74234, Name: "Enchant Cloak - Protection", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.BonusArmor: 250}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4096, SpellId: 74240, Name: "Enchant Cloak - Greater Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4100, SpellId: 74247, Name: "Enchant Cloak - Greater Critical Strike", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.CritRating: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 4115, SpellId: 75172, Name: "Lightweave Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 4116, SpellId: 75175, Name: "Darkglow Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 1}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 4118, SpellId: 75178, Name: "Swordguard Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 1}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - - // WRISTS - {EffectId: 4065, SpellId: 74193, Name: "Enchant Bracer - Speed", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HasteRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4071, SpellId: 74201, Name: "Enchant Bracer - Critical Strike", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.CritRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4086, SpellId: 74229, Name: "Enchant Bracer - Superior Dodge", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.DodgeRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4089, SpellId: 74232, Name: "Enchant Bracer - Precision", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HitRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4093, SpellId: 74237, Name: "Enchant Bracer - Exceptional Spirit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4095, SpellId: 74239, Name: "Enchant Bracer - Greater Expertise", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ExpertiseRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4101, SpellId: 74248, Name: "Enchant Bracer - Greater Critical Strike", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.CritRating: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4108, SpellId: 74256, Name: "Enchant Bracer - Greater Speed", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.HasteRating: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4189, SpellId: 85007, Name: "Draconic Embossment - Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 195}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 4190, SpellId: 85008, Name: "Draconic Embossment - Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 130}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 4191, SpellId: 85009, Name: "Draconic Embossment - Strength", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Strength: 130}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 4192, SpellId: 85010, Name: "Draconic Embossment - Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 130}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 4256, SpellId: 96261, Name: "Enchant Bracer - Major Strength", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Strength: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4257, SpellId: 96262, Name: "Enchant Bracer - Mighty Intellect", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 4258, SpellId: 96264, Name: "Enchant Bracer - Agility", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Agility: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - - // WEAPON - {EffectId: 4066, SpellId: 74195, Name: "Enchant Weapon - Mending", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4067, SpellId: 74197, Name: "Enchant Weapon - Avalanche", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4073, SpellId: 74207, Name: "Enchant Shield - Protection", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Armor: 160}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 4074, SpellId: 74211, Name: "Enchant Weapon - Elemental Slayer", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4083, SpellId: 74223, Name: "Enchant Weapon - Hurricane", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4084, SpellId: 74225, Name: "Enchant Weapon - Heartsong", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4085, SpellId: 74226, Name: "Enchant Shield - Mastery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.MasteryRating: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 4091, SpellId: 74235, Name: "Enchant Off-Hand - Superior Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeOffHand}, - {EffectId: 4097, SpellId: 74242, Name: "Enchant Weapon - Power Torrent", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4098, SpellId: 74244, Name: "Enchant Weapon - Windwalk", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4099, SpellId: 74246, Name: "Enchant Weapon - Landslide", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4215, ItemId: 55055, SpellId: 92433, Name: "Elementium Shield Spike", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 4216, ItemId: 55056, SpellId: 92437, Name: "Pyrium Shield Spike", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 4217, ItemId: 55057, SpellId: 93448, Name: "Pyrium Weapon Chain", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.HitRating: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 4227, SpellId: 95471, Name: "Enchant 2H Weapon - Mighty Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 130}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeTwoHand}, - - // FINGER - {EffectId: 4078, SpellId: 74215, Name: "Enchant Ring - Strength", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Strength: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - {EffectId: 4079, SpellId: 74216, Name: "Enchant Ring - Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - {EffectId: 4080, SpellId: 74217, Name: "Enchant Ring - Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - {EffectId: 4081, SpellId: 74218, Name: "Enchant Ring - Greater Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 60}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - - // LEGS - {EffectId: 4109, ItemId: 54449, SpellId: 75149, Name: "Ghostly Spellthread", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 55, stats.Spirit: 45}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4110, ItemId: 54450, SpellId: 75150, Name: "Powerful Ghostly Spellthread", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Intellect: 95, stats.Spirit: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4111, ItemId: 54447, SpellId: 75151, Name: "Enchanted Spellthread", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 55, stats.Stamina: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4112, ItemId: 54448, SpellId: 75152, Name: "Powerful Enchanted Spellthread", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Intellect: 95, stats.Stamina: 80}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4113, SpellId: 75154, Name: "Master's Spellthread", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 95, stats.Stamina: 80}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 4114, SpellId: 75155, Name: "Sanctified Spellthread", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 95, stats.Spirit: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 4122, ItemId: 56502, SpellId: 78169, Name: "Scorched Leg Armor", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.CritRating: 45, stats.AttackPower: 110, stats.RangedAttackPower: 110}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4124, ItemId: 56503, SpellId: 78170, Name: "Twilight Leg Armor", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 85, stats.Agility: 45}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4126, ItemId: 56550, SpellId: 78171, Name: "Dragonscale Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.CritRating: 55, stats.AttackPower: 190, stats.RangedAttackPower: 190}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4127, ItemId: 56551, SpellId: 78172, Name: "Charscale Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 145, stats.Agility: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4270, ItemId: 71720, SpellId: 101598, Name: "Drakehide Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 145, stats.DodgeRating: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 4440, SpellId: 85067, Name: "Dragonbone Leg Reinforcements", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.CritRating: 55, stats.AttackPower: 190, stats.RangedAttackPower: 190}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 4439, SpellId: 85068, Name: "Charscale Leg Reinforcements", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 145, stats.Agility: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Leatherworking}, - - // Firelands - // {EffectId: 4438, SpellId: 101600, Name: "Drakehide Leg Reinforcements", Phase: 3, Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 145, stats.Dodge: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Leatherworking}, - // {EffectId: 4270, ItemId: 71720, SpellId: 101598, Name: "Drakehide Leg Armor", phase: 3, Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 145, stats.Dodge: 55}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - - // HEAD - {EffectId: 4120, ItemId: 56477, SpellId: 78165, Name: "Savage Armor Kit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 36}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead, ExtraTypes: []proto.ItemType{proto.ItemType_ItemTypeShoulder, proto.ItemType_ItemTypeChest, proto.ItemType_ItemTypeLegs, proto.ItemType_ItemTypeFeet, proto.ItemType_ItemTypeHands}}, - {EffectId: 4121, ItemId: 56517, SpellId: 78166, Name: "Heavy Savage Armor Kit", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 44}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead, ExtraTypes: []proto.ItemType{proto.ItemType_ItemTypeShoulder, proto.ItemType_ItemTypeChest, proto.ItemType_ItemTypeLegs, proto.ItemType_ItemTypeFeet, proto.ItemType_ItemTypeHands}}, - {EffectId: 4206, ItemId: 68764, SpellId: 86931, Name: "Arcanum of the Earthern Ring", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 90, stats.DodgeRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4207, ItemId: 68765, SpellId: 86932, Name: "Arcanum of Hyjal", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 60, stats.CritRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4208, ItemId: 68767, SpellId: 86933, Name: "Arcanum of the Highlands", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Strength: 60, stats.MasteryRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4209, ItemId: 68766, SpellId: 86934, Name: "Arcanum of Ramkahen", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Agility: 60, stats.HasteRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4245, ItemId: 68770, SpellId: 96245, Name: "Arcanum of Vicious Intellect", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 60, stats.ResilienceRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4246, ItemId: 68769, SpellId: 96246, Name: "Arcanum of Vicious Agility", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Agility: 60, stats.ResilienceRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 4247, ItemId: 68768, SpellId: 96247, Name: "Arcanum of Vicious Strength", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Strength: 60, stats.ResilienceRating: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - - // RANGED - {EffectId: 4175, ItemId: 59594, SpellId: 81932, Name: "Gnomish X-Ray Scope", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, - {EffectId: 4176, ItemId: 59595, SpellId: 81933, Name: "R19 Threatfinder", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, - {EffectId: 4177, ItemId: 59596, SpellId: 81934, Name: "Safety Catch Removal Kit", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, - {EffectId: 4267, ItemId: 70139, SpellId: 99623, Name: "Flintlocke's Woodchucker", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged, ClassAllowlist: []proto.Class{proto.Class_ClassHunter}}, - - // WAIST - // Moved to engineering consumes - //{EffectId: 4187, SpellId: 84424, Name: "Invisibility Field", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWaist, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4214, SpellId: 84425, Name: "Cardboard Assassin", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWaist, RequiredProfession: proto.Profession_Engineering}, - //{EffectId: 4188, SpellId: 84427, Name: "Grounded Plasma Shield", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWaist, RequiredProfession: proto.Profession_Engineering}, - - // SHOULDERS - {EffectId: 4193, SpellId: 86375, Name: "Swiftsteel Inscription", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 130, stats.MasteryRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 4194, SpellId: 86401, Name: "Lionsmane Inscription", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Strength: 130, stats.CritRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 4195, SpellId: 86402, Name: "Inscription of the Earth Prince", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 195, stats.DodgeRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 4196, SpellId: 86403, Name: "Felfire Inscription", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 130, stats.HasteRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 4197, ItemId: 62321, SpellId: 86847, Name: "Inscription of Unbreakable Quartz", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 45, stats.DodgeRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4198, ItemId: 68717, SpellId: 86854, Name: "Greater Inscription of Unbreakable Quartz", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 75, stats.DodgeRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4199, ItemId: 62342, SpellId: 86898, Name: "Inscription of Charged Lodestone", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Intellect: 30, stats.HasteRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4200, ItemId: 68715, SpellId: 86899, Name: "Greater Inscription of Charged Lodestone", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Intellect: 50, stats.HasteRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4201, ItemId: 62344, SpellId: 86900, Name: "Inscription of Jagged Stone", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Strength: 30, stats.CritRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4202, ItemId: 68716, SpellId: 86901, Name: "Greater Inscription of Jagged Stone", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Strength: 50, stats.CritRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4203, SpellId: 86906, Name: "Inscription of Shattered Crystal", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 30, stats.MasteryRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4204, ItemId: 68714, SpellId: 86907, Name: "Greater Inscription of Shattered Crystal", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Agility: 50, stats.MasteryRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4205, ItemId: 62347, SpellId: 86909, Name: "Inscription of Shattered Crystal", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Agility: 30, stats.MasteryRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4248, ItemId: 68772, SpellId: 96249, Name: "Greater Inscription of Vicious Intellect", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Intellect: 50, stats.ResilienceRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4249, ItemId: 68773, SpellId: 96250, Name: "Greater Inscription of Vicious Strength", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Strength: 50, stats.ResilienceRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 4250, ItemId: 68815, SpellId: 96251, Name: "Greater Inscription of Vicious Agility", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Agility: 50, stats.ResilienceRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - - ////// WOTLK - ///////////////////////////// - ///////////////////////////// - // Multi-slot - {EffectId: 2988, ItemId: 29487, SpellId: 35419, Name: "Nature Armor Kit", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.NatureResistance: 8}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest, ExtraTypes: []proto.ItemType{proto.ItemType_ItemTypeLegs, proto.ItemType_ItemTypeHands, proto.ItemType_ItemTypeFeet}, EnchantType: proto.EnchantType_EnchantTypeKit}, - {EffectId: 3329, ItemId: 38375, SpellId: 50906, Name: "Borean Armor Kit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 12}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead, ExtraTypes: []proto.ItemType{proto.ItemType_ItemTypeChest, proto.ItemType_ItemTypeShoulder, proto.ItemType_ItemTypeLegs, proto.ItemType_ItemTypeHands, proto.ItemType_ItemTypeFeet}, EnchantType: proto.EnchantType_EnchantTypeKit}, - {EffectId: 3330, ItemId: 38376, SpellId: 50909, Name: "Heavy Borean Armor Kit", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 18}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead, ExtraTypes: []proto.ItemType{proto.ItemType_ItemTypeChest, proto.ItemType_ItemTypeShoulder, proto.ItemType_ItemTypeLegs, proto.ItemType_ItemTypeHands, proto.ItemType_ItemTypeFeet}, EnchantType: proto.EnchantType_EnchantTypeKit}, - - // Head - {EffectId: 3795, ItemId: 44069, SpellId: 59777, Name: "Arcanum of Triumph", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 50, stats.RangedAttackPower: 50, stats.ResilienceRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3796, ItemId: 44075, SpellId: 59784, Name: "Arcanum of Dominance", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 29, stats.ResilienceRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3842, ItemId: 44875, SpellId: 61271, Name: "Arcanum of the Savage Gladiator", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.ResilienceRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3812, ItemId: 44137, SpellId: 59944, Name: "Arcanum of the Frosty Soul", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.FrostResistance: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3813, ItemId: 44138, SpellId: 59945, Name: "Arcanum of Toxic Warding", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.NatureResistance: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3814, ItemId: 44139, SpellId: 59946, Name: "Arcanum of the Fleeing Shadow", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.ShadowResistance: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3815, ItemId: 44140, SpellId: 59947, Name: "Arcanum of the Eclipsed Moon", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.ArcaneResistance: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3816, ItemId: 44141, SpellId: 59948, Name: "Arcanum of the Flame's Soul", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 30, stats.FireResistance: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3819, ItemId: 44876, SpellId: 59960, Name: "Arcanum of Blissful Mending", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 30, stats.MP5: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3820, ItemId: 44877, SpellId: 59970, Name: "Arcanum of Burning Mysteries", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 30, stats.CritRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3818, ItemId: 44878, SpellId: 59955, Name: "Arcanum of the Stalwart Protector", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 37, stats.DodgeRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - {EffectId: 3817, ItemId: 44879, SpellId: 59954, Name: "Arcanum of Torment", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 50, stats.RangedAttackPower: 50, stats.CritRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHead}, - - // Shoulder - {EffectId: 2998, ItemId: 29187, SpellId: 35441, Name: "Inscription of Endurance", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.ArcaneResistance: 7, stats.FireResistance: 7, stats.FrostResistance: 7, stats.NatureResistance: 7, stats.ShadowResistance: 7}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3793, ItemId: 44067, SpellId: 59771, Name: "Inscription of Triumph", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 40, stats.RangedAttackPower: 40, stats.ResilienceRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3794, ItemId: 44068, SpellId: 59773, Name: "Inscription of Dominance", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 23, stats.ResilienceRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3852, ItemId: 44957, SpellId: 62384, Name: "Greater Inscription of the Gladiator", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 30, stats.ResilienceRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3806, ItemId: 44129, SpellId: 59927, Name: "Lesser Inscription of the Storm", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 18, stats.CritRating: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3807, ItemId: 44130, SpellId: 59928, Name: "Lesser Inscription of the Crag", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 18, stats.MP5: 5}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3875, ItemId: 44131, SpellId: 59929, Name: "Lesser Inscription of the Axe", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 30, stats.RangedAttackPower: 30, stats.CritRating: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3876, ItemId: 44132, SpellId: 59932, Name: "Lesser Inscription of the Pinnacle", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.DodgeRating: 15, stats.ParryRating: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3810, ItemId: 44874, SpellId: 59937, Name: "Greater Inscription of the Storm", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.SpellPower: 24, stats.CritRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3809, ItemId: 44872, SpellId: 59936, Name: "Greater Inscription of the Crag", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.SpellPower: 24, stats.MP5: 8}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3808, ItemId: 44871, SpellId: 59934, Name: "Greater Inscription of the Axe", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.AttackPower: 40, stats.RangedAttackPower: 40, stats.CritRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3811, ItemId: 44873, SpellId: 59941, Name: "Greater Inscription of the Pinnacle", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.DodgeRating: 20, stats.Stamina: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder}, - {EffectId: 3838, SpellId: 61120, Name: "Master's Inscription of the Storm", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 70, stats.CritRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 3836, SpellId: 61118, Name: "Master's Inscription of the Crag", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 70, stats.MP5: 8}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 3835, SpellId: 61117, Name: "Master's Inscription of the Axe", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 120, stats.RangedAttackPower: 120, stats.CritRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - {EffectId: 3837, SpellId: 61119, Name: "Master's Inscription of the Pinnacle", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.DodgeRating: 60, stats.ParryRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeShoulder, RequiredProfession: proto.Profession_Inscription}, - - // Back - {EffectId: 1262, ItemId: 37330, SpellId: 44596, Name: "Superior Arcane Resistance", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.ArcaneResistance: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 1354, ItemId: 37331, SpellId: 44556, Name: "Superior Fire Resistance", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.FireResistance: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3230, SpellId: 44483, Name: "Superior Frost Resistance", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.FrostResistance: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 1400, SpellId: 44494, Name: "Superior Nature Resistance", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.NatureResistance: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 1446, SpellId: 44590, Name: "Superior Shadow Resistance", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ShadowResistance: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 1951, ItemId: 37347, SpellId: 44591, Name: "Superior Dodge", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.DodgeRating: 18}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3256, ItemId: 37349, SpellId: 44631, Name: "Shadow Armor", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Agility: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3294, ItemId: 44471, SpellId: 47672, Name: "Mighty Armor", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.BonusArmor: 225}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3831, ItemId: 44472, SpellId: 47898, Name: "Greater Speed", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.HasteRating: 23}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3296, ItemId: 44488, SpellId: 47899, Name: "Wisdom", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Spirit: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3243, SpellId: 44582, Name: "Spell Piercing", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPenetration: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3825, SpellId: 60609, Name: "Speed", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HasteRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 983, SpellId: 44500, Name: "Superior Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 16}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 1099, SpellId: 60663, Name: "Major Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack}, - {EffectId: 3722, SpellId: 55642, Name: "Lightweave Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 3728, SpellId: 55769, Name: "Darkglow Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 3730, SpellId: 55777, Name: "Swordguard Embroidery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeBack, RequiredProfession: proto.Profession_Tailoring}, - - // Chest - {EffectId: 3245, ItemId: 37340, SpellId: 44588, Name: "Exceptional Resilience", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.ResilienceRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 3252, SpellId: 44623, Name: "Super Stats", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 8, stats.Strength: 8, stats.Agility: 8, stats.Intellect: 8, stats.Spirit: 8}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 3832, ItemId: 44489, SpellId: 60692, Name: "Powerful Stats", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 10, stats.Strength: 10, stats.Agility: 10, stats.Intellect: 10, stats.Spirit: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 3233, SpellId: 27958, Name: "Exceptional Mana", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Mana: 250}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 3236, SpellId: 44492, Name: "Mighty Health", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Health: 200}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 3297, SpellId: 47900, Name: "Super Health", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Health: 275}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 2381, SpellId: 44509, Name: "Greater Mana Restoration", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.MP5: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - {EffectId: 1953, SpellId: 47766, Name: "Greater Dodge", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.DodgeRating: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeChest}, - - // Wrist - {EffectId: 3845, ItemId: 44484, SpellId: 44575, Name: "Greater Assault", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.AttackPower: 50, stats.RangedAttackPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 2332, ItemId: 44498, SpellId: 60767, Name: "Superior Spellpower", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 30}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 3850, ItemId: 44944, SpellId: 62256, Name: "Major Stamina", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 1119, SpellId: 44555, Name: "Exceptional Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 16}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 1147, SpellId: 44593, Name: "Major Spirit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 18}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 3231, SpellId: 44598, Name: "Expertise", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ExpertiseRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 2661, SpellId: 44616, Name: "Greater Stats", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 6, stats.Strength: 6, stats.Agility: 6, stats.Intellect: 6, stats.Spirit: 6}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 2326, SpellId: 44635, Name: "Greater Spellpower", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 23}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 1600, SpellId: 60616, Name: "Striking", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 38, stats.RangedAttackPower: 38}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist}, - {EffectId: 3756, SpellId: 57683, Name: "Fur Lining - Attack Power", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 130, stats.RangedAttackPower: 130}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3757, SpellId: 57690, Name: "Fur Lining - Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 102}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3758, SpellId: 57691, Name: "Fur Lining - Spell Power", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 76}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3759, SpellId: 57692, Name: "Fur Lining - Fire Resist", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.FireResistance: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3760, SpellId: 57694, Name: "Fur Lining - Frost Resist", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.FrostResistance: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3761, SpellId: 57696, Name: "Fur Lining - Shadow Resist", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ShadowResistance: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3762, SpellId: 57699, Name: "Fur Lining - Nature Resist", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.NatureResistance: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3763, SpellId: 57701, Name: "Fur Lining - Arcane Resist", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ArcaneResistance: 70}.ToProtoArray(), Type: proto.ItemType_ItemTypeWrist, RequiredProfession: proto.Profession_Leatherworking}, - - // Hands - {EffectId: 3253, ItemId: 44485, SpellId: 44625, Name: "Armsman", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.ParryRating: 10}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 1603, SpellId: 60668, Name: "Crusher", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 44, stats.RangedAttackPower: 44}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3246, SpellId: 44592, Name: "Exceptional Spellpower", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 28}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3231, SpellId: 44484, Name: "Expertise", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.ExpertiseRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3238, SpellId: 44506, Name: "Gatherer", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3829, SpellId: 44513, Name: "Greater Assult", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 35, stats.RangedAttackPower: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3222, SpellId: 44529, Name: "Major Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - {EffectId: 3234, SpellId: 44488, Name: "Precision", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HitRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeHands}, - - // Waist - - // Legs - {EffectId: 3325, ItemId: 38371, SpellId: 50901, Name: "Jormungar Leg Armor", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 45, stats.Agility: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3326, ItemId: 38372, SpellId: 50902, Name: "Nerubian Leg Armor", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 55, stats.RangedAttackPower: 55, stats.CritRating: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3822, ItemId: 38373, SpellId: 60581, Name: "Frosthide Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 55, stats.Agility: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3823, ItemId: 38374, SpellId: 60582, Name: "Icescale Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.AttackPower: 75, stats.RangedAttackPower: 75, stats.CritRating: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3853, ItemId: 44963, SpellId: 62447, Name: "Earthen Leg Armor", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 28, stats.ResilienceRating: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3718, ItemId: 41601, SpellId: 55630, Name: "Shining Spellthread", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Spirit: 12, stats.SpellPower: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3719, ItemId: 41602, SpellId: 55631, Name: "Brilliant Spellthread", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Spirit: 20, stats.SpellPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3720, ItemId: 41603, SpellId: 55632, Name: "Azure Spellthread", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.Stamina: 20, stats.SpellPower: 35}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3721, ItemId: 41604, SpellId: 55634, Name: "Sapphire Spellthread", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{stats.Stamina: 30, stats.SpellPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs}, - {EffectId: 3327, SpellId: 60583, Name: "Jormungar Leg Reinforcements", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 55, stats.Agility: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3328, SpellId: 60584, Name: "Nerubian Leg Reinforcements", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 75, stats.RangedAttackPower: 75, stats.CritRating: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Leatherworking}, - {EffectId: 3873, SpellId: 56034, Name: "Master's Spellthread", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 30, stats.SpellPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Tailoring}, - {EffectId: 3872, SpellId: 56039, Name: "Sanctified Spellthread", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 20, stats.SpellPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeLegs, RequiredProfession: proto.Profession_Tailoring}, - - // Feet - {EffectId: 1597, ItemId: 44490, SpellId: 60763, Name: "Greater Assault", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.AttackPower: 32, stats.RangedAttackPower: 32}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 3232, ItemId: 44491, SpellId: 47901, Name: "Tuskarr's Vitality", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.Stamina: 15}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 3824, SpellId: 60606, Name: "Assault", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 24, stats.RangedAttackPower: 24}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 1075, SpellId: 44528, Name: "Greater Fortitude", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 22}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 1147, SpellId: 44508, Name: "Greater Spirit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 18}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 3244, SpellId: 44584, Name: "Greater Vitality", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.MP5: 7}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 3826, SpellId: 60623, Name: "Icewalker", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.HitRating: 12, stats.CritRating: 12}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - {EffectId: 983, SpellId: 44589, Name: "Superior Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 16}.ToProtoArray(), Type: proto.ItemType_ItemTypeFeet}, - - // Weapon - {EffectId: 1103, SpellId: 44633, Name: "Exceptional Agility", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Agility: 26}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3844, SpellId: 44510, Name: "Exceptional Spirit", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Spirit: 45}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3251, ItemId: 37339, SpellId: 44621, Name: "Giant Slayer", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3239, ItemId: 37344, SpellId: 44524, Name: "Icebreaker", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3731, ItemId: 41976, SpellId: 55836, Name: "Titanium Weapon Chain", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{stats.HitRating: 28}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3833, ItemId: 44486, SpellId: 60707, Name: "Superior Potency", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 65, stats.RangedAttackPower: 65}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3834, ItemId: 44487, SpellId: 60714, Name: "Mighty Spellpower", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 63}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3789, ItemId: 44492, SpellId: 59621, Name: "Berserking", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3241, ItemId: 44494, SpellId: 44576, Name: "Lifeward", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3790, ItemId: 44495, SpellId: 59625, Name: "Black Magic", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3788, ItemId: 44496, SpellId: 59619, Name: "Accuracy", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.HitRating: 25, stats.CritRating: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3830, SpellId: 44629, Name: "Exceptional Spellpower", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 1606, SpellId: 60621, Name: "Greater Potency", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 50, stats.RangedAttackPower: 50}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3370, SpellId: 53343, Name: "Rune of Razorice", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3369, SpellId: 53341, Name: "Rune of Cinderglacier", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3366, SpellId: 53331, Name: "Rune of Lichbane", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3595, SpellId: 54447, Name: "Rune of Spellbreaking", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3594, SpellId: 54446, Name: "Rune of Swordbreaking", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3368, SpellId: 53344, Name: "Rune of the Fallen Crusader", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3870, ItemId: 46348, SpellId: 64579, Name: "Blood Draining", Quality: proto.ItemQuality_ItemQualityEpic, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon}, - {EffectId: 3883, SpellId: 70164, Name: "Rune of the Nerubian Carapace", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - - // 2H Weapon - {EffectId: 3247, ItemId: 44473, SpellId: 44595, Name: "Scourgebane", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeTwoHand}, - {EffectId: 3827, ItemId: 44483, SpellId: 60691, Name: "Massacre", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.AttackPower: 110, stats.RangedAttackPower: 110}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeTwoHand}, - {EffectId: 3828, SpellId: 44630, Name: "Greater Savagery", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 85, stats.RangedAttackPower: 85}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeTwoHand}, - {EffectId: 3854, ItemId: 45059, SpellId: 62948, Name: "Staff - Greater Spellpower", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.SpellPower: 81}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeStaff}, - {EffectId: 3367, SpellId: 53342, Name: "Rune of Spellshattering", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3365, SpellId: 53323, Name: "Rune of Swordshattering", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - {EffectId: 3847, SpellId: 62158, Name: "Rune of the Stoneskin Gargoyle", Phase: 1, Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, ClassAllowlist: []proto.Class{proto.Class_ClassDeathKnight}}, - - // Shield - {EffectId: 1952, SpellId: 44489, Name: "Dodge", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.DodgeRating: 20}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 1128, SpellId: 60653, Name: "Greater Intellect", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Intellect: 25}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 3748, ItemId: 42500, SpellId: 56353, Name: "Titanium Shield Spike", Quality: proto.ItemQuality_ItemQualityUncommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - {EffectId: 3849, ItemId: 44936, SpellId: 62201, Name: "Titanium Plating", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{stats.ParryRating: 26}.ToProtoArray(), Type: proto.ItemType_ItemTypeWeapon, EnchantType: proto.EnchantType_EnchantTypeShield}, - - // Ring - {EffectId: 3839, SpellId: 44645, Name: "Assault", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.AttackPower: 40, stats.RangedAttackPower: 40}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - {EffectId: 3840, SpellId: 44636, Name: "Greater Spellpower", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.SpellPower: 23}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - {EffectId: 3791, SpellId: 59636, Name: "Stamina", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{stats.Stamina: 30}.ToProtoArray(), Type: proto.ItemType_ItemTypeFinger, RequiredProfession: proto.Profession_Enchanting}, - - // Ranged - {EffectId: 3607, ItemId: 41146, SpellId: 55076, Name: "Sun Scope", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, - {EffectId: 3608, ItemId: 41167, SpellId: 55135, Name: "Heartseeker Scope", Quality: proto.ItemQuality_ItemQualityRare, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, - {EffectId: 3843, ItemId: 44739, SpellId: 61468, Name: "Diamond-cut Refractor Scope", Quality: proto.ItemQuality_ItemQualityCommon, Stats: stats.Stats{}.ToProtoArray(), Type: proto.ItemType_ItemTypeRanged}, -} +var EnchantOverrides = []*proto.UIEnchant{} diff --git a/tools/database/gen_db/main.go b/tools/database/gen_db/main.go index 46437ca450..aeb6da3493 100644 --- a/tools/database/gen_db/main.go +++ b/tools/database/gen_db/main.go @@ -2,44 +2,57 @@ package main import ( "bytes" + "compress/gzip" "encoding/json" "flag" "fmt" "log" "os" + "path/filepath" "slices" - "strconv" "strings" - "github.com/wowsims/cata/sim" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - _ "github.com/wowsims/cata/sim/encounters" // Needed for preset encounters. - "github.com/wowsims/cata/tools" - "github.com/wowsims/cata/tools/database" + "github.com/wowsims/mop/sim" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + _ "github.com/wowsims/mop/sim/encounters" // Needed for preset encounters. + "github.com/wowsims/mop/tools" + "github.com/wowsims/mop/tools/database" + "github.com/wowsims/mop/tools/database/dbc" ) +func writeGzipFile(filePath string, data []byte) error { + if err := os.MkdirAll(filepath.Dir(filePath), 0755); err != nil { + return fmt.Errorf("failed to create directories for %s: %w", filePath, err) + } + // Create the file + f, err := os.Create(filePath) + if err != nil { + return err + } + defer f.Close() + + // Create a gzip writer on top of the file writer + gw := gzip.NewWriter(f) + defer gw.Close() + + // Write the data to the gzip writer + _, err = gw.Write(data) + return err +} + // To do a full re-scrape, delete the previous output file first. // go run ./tools/database/gen_db -outDir=assets -gen=atlasloot -// go run ./tools/database/gen_db -outDir=assets -gen=wowhead-items -// go run ./tools/database/gen_db -outDir=assets -gen=wowhead-spells -maxid=75000 -// go run ./tools/database/gen_db -outDir=assets -gen=wowhead-gearplannerdb -// go run ./tools/database/gen_db -outDir=assets -gen=wago-db2-items // go run ./tools/database/gen_db -outDir=assets -gen=db -var exactId = flag.Int("id", 0, "ID to scan for") -var minId = flag.Int("minid", 0, "Minimum ID to scan for") -var maxId = flag.Int("maxid", 0, "Maximum ID to scan for") var outDir = flag.String("outDir", "assets", "Path to output directory for writing generated .go files.") -var genAsset = flag.String("gen", "", "Asset to generate. Valid values are 'db', 'atlasloot', 'wowhead-items', 'wowhead-spells', 'wowhead-itemdb', 'cata-items', and 'wago-db2-items'") +var genAsset = flag.String("gen", "", "Asset to generate. Valid values are 'db', 'atlasloot', 'wowhead-items', 'wowhead-spells', 'wowhead-itemdb', 'mop-items', and 'wago-db2-items'") +var dbPath = flag.String("dbPath", "./tools/database/wowsims.db", "Location of wowsims.db file from the DB2ToSqliteTool") func main() { flag.Parse() - if *exactId != 0 { - minId = exactId - maxId = exactId - } + database.DatabasePath = *dbPath if *outDir == "" { panic("outDir flag is required!") @@ -52,18 +65,6 @@ func main() { db := database.ReadAtlasLootData() db.WriteJson(fmt.Sprintf("%s/atlasloot_db.json", inputsDir)) return - } else if *genAsset == "wowhead-items" { - database.NewWowheadItemTooltipManager(fmt.Sprintf("%s/wowhead_item_tooltips.csv", inputsDir)).Fetch(int32(*minId), int32(*maxId), database.OtherItemIdsToFetch) - return - } else if *genAsset == "wowhead-spells" { - database.NewWowheadSpellTooltipManager(fmt.Sprintf("%s/wowhead_spell_tooltips.csv", inputsDir)).Fetch(int32(*minId), int32(*maxId), []string{}) - return - } else if *genAsset == "wowhead-gearplannerdb" { - tools.WriteFile(fmt.Sprintf("%s/wowhead_gearplannerdb.txt", inputsDir), tools.ReadWebRequired("https://nether.wowhead.com/cata/data/gear-planner?dv=100")) - return - } else if *genAsset == "wago-db2-items" { - tools.WriteFile(fmt.Sprintf("%s/wago_db2_items.csv", inputsDir), tools.ReadWebRequired("https://wago.tools/db2/ItemSparse/csv?build=4.4.2.59536")) - return } else if *genAsset == "reforge-stats" { //Todo: fill this when we have information from wowhead @ Neteyes - Gehennas // For now, the version we have was taken from https://web.archive.org/web/20120201045249js_/http://www.wowhead.com/data=item-scaling @@ -71,51 +72,216 @@ func main() { } else if *genAsset != "db" { panic("Invalid gen value") } - itemTooltips := database.NewWowheadItemTooltipManager(fmt.Sprintf("%s/wowhead_item_tooltips.csv", inputsDir)).Read() - spellTooltips := database.NewWowheadSpellTooltipManager(fmt.Sprintf("%s/wowhead_spell_tooltips.csv", inputsDir)).Read() - wowheadDB := database.ParseWowheadDB(tools.ReadFile(fmt.Sprintf("%s/wowhead_gearplannerdb.txt", inputsDir))) + helper, err := database.NewDBHelper() + if err != nil { + log.Fatalf("failed to initialize database: %v", err) + } + defer helper.Close() + + if err := database.RunOverrides(helper, "tools/database/overrides"); err != nil { + log.Fatalf("failed to run overrides: %v", err) + } + + database.GenerateProtos() + + randomSuffixes, err := database.LoadRawRandomSuffixes(helper) + if err == nil { + json, _ := json.Marshal(randomSuffixes) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/random_suffix.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + items, err := database.LoadRawItems(helper, "s.OverallQualityId != 7 AND s.Field_1_15_7_59706_054 = 0 AND s.OverallQualityId != 0 AND (i.ClassID = 2 OR i.ClassID = 4) AND s.Display_lang != '' AND (s.ID != 34219 AND s.Display_lang NOT LIKE '%Test%' AND s.Display_lang NOT LIKE 'QA%')") + if err == nil { + json, _ := json.Marshal(items) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/items.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + randPropsByIlvl, err := database.LoadRandomPropAllocations(helper) + if err == nil { + processed := make(dbc.RandomPropAllocationsByIlvl) + for _, r := range randPropsByIlvl { + processed[int(r.Ilvl)] = dbc.RandomPropAllocationMap{ + proto.ItemQuality_ItemQualityEpic: [5]int32{r.Allocation.Epic0, r.Allocation.Epic1, r.Allocation.Epic2, r.Allocation.Epic3, r.Allocation.Epic4}, + proto.ItemQuality_ItemQualityRare: [5]int32{r.Allocation.Superior0, r.Allocation.Superior1, r.Allocation.Superior2, r.Allocation.Superior3, r.Allocation.Superior4}, + proto.ItemQuality_ItemQualityUncommon: [5]int32{r.Allocation.Good0, r.Allocation.Good1, r.Allocation.Good2, r.Allocation.Good3, r.Allocation.Good4}, + } + } + json, _ := json.Marshal(processed) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/rand_prop_points.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + gems, err := database.LoadRawGems(helper) + if err == nil { + json, _ := json.Marshal(gems) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/gems.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + enchants, err := database.LoadRawEnchants(helper) + if err == nil { + json, _ := json.Marshal(enchants) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/enchants.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + spellEffects, err := database.LoadRawSpellEffects(helper) + if err == nil { + json, _ := json.Marshal(spellEffects) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/spell_effects.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + itemStatEffects, err := database.LoadItemStatEffects(helper) + if err == nil { + json, _ := json.Marshal(itemStatEffects) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_stat_effects.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + itemDamageTables, err := database.LoadItemDamageTables(helper) + if err == nil { + json, _ := json.Marshal(itemDamageTables) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_damage_tables.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + itemArmorTotal, err := database.LoadItemArmorTotal(helper) + if err == nil { + json, _ := json.Marshal(itemArmorTotal) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_armor_total.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + itemArmorQuality, err := database.LoadItemArmorQuality(helper) + if err == nil { + json, _ := json.Marshal(itemArmorQuality) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_armor_quality.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } else { + fmt.Println("Couldnt load quality") + } + + itemArmorShield, err := database.LoadItemArmorShield(helper) + if err == nil { + json, _ := json.Marshal(itemArmorShield) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_armor_shield.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + armorLocation, err := database.LoadArmorLocation(helper) + if err == nil { + json, _ := json.Marshal(armorLocation) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/armor_location.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + itemeffects, err := database.LoadItemEffects(helper) + if err == nil { + json, _ := json.Marshal(itemeffects) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/item_effects.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + + consumables, err := database.LoadConsumables(helper) + if err == nil { + json, _ := json.Marshal(consumables) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/consumables.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } + spells, err := database.LoadSpells(helper) + if err == nil { + json, _ := json.Marshal(spells) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/spells.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } else { + log.Fatalf("Error %v", err) + } + dropSources, err := database.LoadDropSources(helper) + if err == nil { + json, _ := json.Marshal(dropSources) + if err := writeGzipFile(fmt.Sprintf("%s/dbc/dropSources.json", inputsDir), json); err != nil { + log.Fatalf("Error writing file: %v", err) + } + } else { + log.Fatalf("Error %v", err) + } + + //Todo: See if we cant get rid of these as well atlaslootDB := database.ReadDatabaseFromJson(tools.ReadFile(fmt.Sprintf("%s/atlasloot_db.json", inputsDir))) - wagoItems := database.ParseWagoDB(tools.ReadFile(fmt.Sprintf("%s/wago_db2_items.csv", inputsDir))) // Todo: https://web.archive.org/web/20120201045249js_/http://www.wowhead.com/data=item-scaling reforgeStats := database.ParseWowheadReforgeStats(tools.ReadFile(fmt.Sprintf("%s/wowhead_reforge_stats.json", inputsDir))) - randomPropAllocations := database.ParseRandPropPointsTable(tools.ReadFile(fmt.Sprintf("%s/RandPropPoints.json", inputsDir))) db := database.NewWowDatabase() db.Encounters = core.PresetEncounters db.GlyphIDs = getGlyphIDsFromJson(fmt.Sprintf("%s/glyph_id_map.json", inputsDir)) db.ReforgeStats = reforgeStats.ToProto() - for _, response := range itemTooltips { - if response.IsEquippable() { - // Only included items that are in wowheads gearplanner db - // Wowhead doesn't seem to have a field/flag to signify 'not available / in game' but their gearplanner db has them filtered - item := response.ToItemProto() - if _, ok := wowheadDB.Items[strconv.Itoa(int(item.Id))]; ok { - db.MergeItem(item) - } - } else if response.IsGem() { - db.MergeGem(response.ToGemProto()) + iconsMap, _ := database.LoadArtTexturePaths("./tools/DB2ToSqlite/listfile.csv") + var instance = dbc.GetDBC() + + for _, item := range instance.Items { + parsed := item.ToUIItem() + if parsed.Icon == "" { + parsed.Icon = strings.ToLower(database.GetIconName(iconsMap, item.FDID)) } + db.MergeItem(parsed) } - for _, wowheadItem := range wowheadDB.Items { - item := wowheadItem.ToProto() - if _, ok := db.Items[item.Id]; ok { - db.MergeItem(item) + + for _, gem := range instance.Gems { + parsed := gem.ToProto() + if parsed.Icon == "" { + parsed.Icon = strings.ToLower(database.GetIconName(iconsMap, gem.FDID)) + } + db.MergeGem(parsed) + } + + for _, enchant := range instance.Enchants { + parsed := enchant.ToProto() + if parsed.Icon == "" { + parsed.Icon = strings.ToLower(database.GetIconName(iconsMap, enchant.FDID)) } + db.MergeEnchant(parsed) } + for _, item := range atlaslootDB.Items { if _, ok := db.Items[item.Id]; ok { db.MergeItem(item) } } + for _, consumable := range consumables { + protoConsumable := consumable.ToProto() + protoConsumable.Icon = strings.ToLower(database.GetIconName(iconsMap, consumable.IconFileDataID)) + db.MergeConsumable(protoConsumable) + } + + for _, consumable := range database.ConsumableOverrides { + db.MergeConsumable(consumable) + } db.MergeItems(database.ItemOverrides) db.MergeGems(database.GemOverrides) db.MergeEnchants(database.EnchantOverrides) + ApplyGlobalFilters(db) - AttachFactionInformation(db, wagoItems) - AttachItemSetIDs(db, wagoItems) leftovers := db.Clone() ApplyNonSimmableFilters(leftovers) @@ -124,56 +290,122 @@ func main() { ApplySimmableFilters(db) for _, enchant := range db.Enchants { if enchant.ItemId != 0 { - db.AddItemIcon(enchant.ItemId, itemTooltips) + db.AddItemIcon(enchant.ItemId, enchant.Icon, enchant.Name) } if enchant.SpellId != 0 { - db.AddSpellIcon(enchant.SpellId, spellTooltips) + db.AddSpellIcon(enchant.ItemId, enchant.Icon, enchant.Name) + } + } + + for _, consume := range db.Consumables { + if len(consume.EffectIds) > 0 { + for _, se := range consume.EffectIds { + effect := instance.SpellEffectsById[int(se)] + db.MergeEffect(effect.ToProto()) + } } } - for _, itemID := range database.ExtraItemIcons { - db.AddItemIcon(itemID, itemTooltips) + for _, randomSuffix := range dbc.GetDBC().RandomSuffix { + if _, exists := db.RandomSuffixes[int32(randomSuffix.ID)]; !exists { + db.RandomSuffixes[int32(randomSuffix.ID)] = randomSuffix.ToProto() + } } + icons, err := database.LoadSpellIcons(helper) for _, item := range db.Items { for _, source := range item.Sources { if crafted := source.GetCrafted(); crafted != nil { - db.AddSpellIcon(crafted.SpellId, spellTooltips) + iconEntry := icons[int(crafted.SpellId)] + icon := &proto.IconData{Id: int32(iconEntry.SpellID), Name: iconEntry.Name, Icon: strings.ToLower(database.GetIconName(iconsMap, iconEntry.FDID)), HasBuff: iconEntry.HasBuff} + if iconEntry.SpellID == 0 { + continue + } + db.SpellIcons[crafted.SpellId] = icon } } - for _, randomSuffixID := range item.RandomSuffixOptions { - if _, exists := db.RandomSuffixes[randomSuffixID]; !exists { - db.RandomSuffixes[randomSuffixID] = wowheadDB.RandomSuffixes[strconv.Itoa(int(randomSuffixID))].ToProto() + // Fetch Journal entry data + dropSource := dropSources[int(item.Id)] + if dropSource != nil { + sources := make([]*proto.UIItemSource, 0, len(dropSource)) + for _, drop := range dropSource { + sources = append(sources, &proto.UIItemSource{ + Source: &proto.UIItemSource_Drop{ + Drop: drop, + }, + }) } - } + item.Sources = sources - if len(item.RandomSuffixOptions) > 0 { - item.RandPropPoints = randomPropAllocations.CalcItemAllocation(item) } - // Auto-populate phase information if missing on Wowhead if item.Phase < 2 { item.Phase = InferPhase(item) } } + if err != nil { + panic("error loading icons") + } for _, spellId := range database.SharedSpellsIcons { - db.AddSpellIcon(spellId, spellTooltips) + iconEntry := icons[int(spellId)] + if iconEntry.Name == "" { + continue + } + icon := &proto.IconData{Id: int32(iconEntry.SpellID), Name: iconEntry.Name, Icon: strings.ToLower(database.GetIconName(iconsMap, iconEntry.FDID)), HasBuff: iconEntry.HasBuff} + if iconEntry.SpellID == 0 { + continue + } + db.SpellIcons[spellId] = icon } for _, spellIds := range GetAllTalentSpellIds(&inputsDir) { for _, spellId := range spellIds { - db.AddSpellIcon(spellId, spellTooltips) + iconEntry := icons[int(spellId)] + if iconEntry.Name == "" { + continue + } + + icon := &proto.IconData{Id: int32(iconEntry.SpellID), Name: iconEntry.Name, Icon: strings.ToLower(database.GetIconName(iconsMap, iconEntry.FDID)), HasBuff: iconEntry.HasBuff} + if iconEntry.SpellID == 0 { + continue + } + db.SpellIcons[spellId] = icon } } for _, spellIds := range GetAllRotationSpellIds() { for _, spellId := range spellIds { - db.AddSpellIcon(spellId, spellTooltips) + iconEntry := icons[int(spellId)] + if iconEntry.Name == "" { + continue + } + icon := &proto.IconData{Id: int32(iconEntry.SpellID), Name: iconEntry.Name, Icon: strings.ToLower(database.GetIconName(iconsMap, iconEntry.FDID)), HasBuff: iconEntry.HasBuff} + if iconEntry.SpellID == 0 { + continue + } + db.SpellIcons[spellId] = icon } } + descriptions := make(map[int32]string) + for _, enchant := range db.Enchants { + var dbcEnch = instance.Enchants[int(enchant.EffectId)] + descriptions[enchant.EffectId] = dbcEnch.EffectName + } + file, err := os.Create("assets/enchants/descriptions.json") + if err != nil { + log.Fatalf("Failed to create file: %v", err) + } + defer file.Close() + + encoder := json.NewEncoder(file) + encoder.SetIndent("", " ") + if err := encoder.Encode(descriptions); err != nil { + log.Fatalf("Failed to encode JSON: %v", err) + } + atlasDBProto := atlaslootDB.ToUIProto() db.MergeZones(atlasDBProto.Zones) db.MergeNpcs(atlasDBProto.Npcs) @@ -183,51 +415,64 @@ func main() { // Uses heuristics on ilvl + source to infer release phase of an item when missing. func InferPhase(item *proto.UIItem) int32 { - if item.Ilvl <= 352 { + if item.Ilvl <= 463 { return 1 } - - if item.Ilvl >= 397 { - return 4 // Heroic Rag loot should already be tagged correctly by Wowhead. - } - - switch item.Ilvl { - case 353: - return 2 - case 358, 371, 391: - return 3 - case 359: - if item.Quality == proto.ItemQuality_ItemQualityUncommon { - return 4 - } - - return 1 - case 372, 379: - return 1 - case 377, 390: - return 4 - case 365: - if strings.Contains(item.Name, "Vicious") { - return 1 - } - - return 3 - case 378: - for _, itemSource := range item.Sources { - dropSource := itemSource.GetDrop() - - if (dropSource != nil) && slices.Contains([]int32{5788, 5789, 5844}, dropSource.ZoneId) { - return 4 + // Since we populate some drops before we run inferphase, we can use Atlasloot data to help us infer the phase + for _, source := range item.Sources { + if drop := source.GetDrop(); drop != nil { + switch drop.ZoneId { + case 6297, 6125, 6067: // MSV, Terrace, Heart of Fear + return 1 + case 6622: // Throne of Thunder + return 2 + case 6738: //Siege + return 3 } } + } - return 3 - case 384: - if strings.Contains(item.Name, "Ruthless") { - return 3 - } + // if item.Ilvl >= 397 { + // return 4 // Heroic Rag loot should already be tagged correctly by Wowhead. + // } - return 4 + switch item.Ilvl { + // case 353: + // return 2 + // case 358, 371, 391: + // return 3 + // case 359: + // if item.Quality == proto.ItemQuality_ItemQualityUncommon { + // return 4 + // } + + // return 1 + // case 372, 379: + // return 1 + // case 377, 390: + // return 4 + // case 365: + // if strings.Contains(item.Name, "Vicious") { + // return 1 + // } + + // return 3 + // case 378: + // for _, itemSource := range item.Sources { + // dropSource := itemSource.GetDrop() + + // if (dropSource != nil) && slices.Contains([]int32{5788, 5789, 5844}, dropSource.ZoneId) { + // return 4 + // } + // } + + // return 3 + // case 384: + // if strings.Contains(item.Name, "Ruthless") { + // return 3 + // } + + // return 4 default: return 0 } @@ -239,7 +484,7 @@ func ApplyGlobalFilters(db *database.WowDatabase) { if _, ok := database.ItemDenyList[item.Id]; ok { return false } - if item.Ilvl > 416 { + if item.Ilvl > 600 || item.Ilvl < 100 { return false } for _, pattern := range database.DenyListNameRegexes { @@ -250,7 +495,7 @@ func ApplyGlobalFilters(db *database.WowDatabase) { return true }) - // There is an 'unavailable' version of every naxx set, e.g. https://www.wowhead.com/cata/item=43728/bonescythe-gauntlets + // There is an 'unavailable' version of every naxx set, e.g. https://www.wowhead.com/mop-classic/item=43728/bonescythe-gauntlets heroesItems := core.FilterMap(db.Items, func(_ int32, item *proto.UIItem) bool { return strings.HasPrefix(item.Name, "Heroes' ") }) @@ -264,7 +509,7 @@ func ApplyGlobalFilters(db *database.WowDatabase) { return true }) - // There is an 'unavailable' version of many t8 set pieces, e.g. https://www.wowhead.com/cata/item=46235/darkruned-gauntlets + // There is an 'unavailable' version of many t8 set pieces, e.g. https://www.wowhead.com/mop-classic/item=46235/darkruned-gauntlets valorousItems := core.FilterMap(db.Items, func(_ int32, item *proto.UIItem) bool { return strings.HasPrefix(item.Name, "Valorous ") }) @@ -278,7 +523,7 @@ func ApplyGlobalFilters(db *database.WowDatabase) { return true }) - // There is an 'unavailable' version of many t9 set pieces, e.g. https://www.wowhead.com/cata/item=48842/thralls-hauberk + // There is an 'unavailable' version of many t9 set pieces, e.g. https://www.wowhead.com/mop-classic/item=48842/thralls-hauberk triumphItems := core.FilterMap(db.Items, func(_ int32, item *proto.UIItem) bool { return strings.HasSuffix(item.Name, "of Triumph") }) @@ -330,24 +575,51 @@ func ApplyGlobalFilters(db *database.WowDatabase) { return icon.Name != "" && icon.Icon != "" }) db.SpellIcons = core.FilterMap(db.SpellIcons, func(_ int32, icon *proto.IconData) bool { - return icon.Name != "" && icon.Icon != "" + return icon.Name != "" && icon.Icon != "" && icon.Id != 0 }) -} -// AttachFactionInformation attaches faction information (faction restrictions) to the DB items. -func AttachFactionInformation(db *database.WowDatabase, factionRestrictions map[int32]database.WagoDbItem) { - for _, item := range db.Items { - if item.FactionRestriction == proto.UIItem_FACTION_RESTRICTION_UNSPECIFIED { - item.FactionRestriction = factionRestrictions[item.Id].FactionRestriction + db.Enchants = core.FilterMap(db.Enchants, func(_ database.EnchantDBKey, enchant *proto.UIEnchant) bool { + for _, pattern := range database.DenyListNameRegexes { + if pattern.MatchString(enchant.Name) { + return false + } } - } + return !strings.HasPrefix(enchant.Name, "QA") && !strings.HasPrefix(enchant.Name, "Test") && !strings.HasPrefix(enchant.Name, "TEST") + }) + + db.Consumables = core.FilterMap(db.Consumables, func(_ int32, consumable *proto.Consumable) bool { + if slices.Contains(database.ConsumableAllowList, consumable.Id) { + return true + } + if slices.Contains(database.ConsumableDenyList, consumable.Id) { + return false + } + + if allZero(consumable.Stats) && consumable.Type != proto.ConsumableType_ConsumableTypePotion { + return false + } + + for _, pattern := range database.DenyListNameRegexes { + if pattern.MatchString(consumable.Name) { + return false + } + } + + if consumable.Type == proto.ConsumableType_ConsumableTypeUnknown || consumable.Type == proto.ConsumableType_ConsumableTypeScroll { + return false + } + + return !strings.HasPrefix(consumable.Name, "QA") && !strings.HasPrefix(consumable.Name, "Test") && !strings.HasPrefix(consumable.Name, "TEST") + }) } -// AttachItemSetIDs attaches item set ids to the DB items. -func AttachItemSetIDs(db *database.WowDatabase, wagoItems map[int32]database.WagoDbItem) { - for _, item := range db.Items { - item.SetId = wagoItems[item.Id].ItemSetID +func allZero(stats []float64) bool { + for _, val := range stats { + if val != 0 { + return false + } } + return true } // Filters out entities which shouldn't be included in the sim. @@ -355,6 +627,7 @@ func ApplySimmableFilters(db *database.WowDatabase) { db.Items = core.FilterMap(db.Items, simmableItemFilter) db.Gems = core.FilterMap(db.Gems, simmableGemFilter) } + func ApplyNonSimmableFilters(db *database.WowDatabase) { db.Items = core.FilterMap(db.Items, func(id int32, item *proto.UIItem) bool { return !simmableItemFilter(id, item) @@ -375,12 +648,12 @@ func simmableItemFilter(_ int32, item *proto.UIItem) bool { } else if item.Quality >= proto.ItemQuality_ItemQualityHeirloom { return false } else if item.Quality <= proto.ItemQuality_ItemQualityEpic { - if item.Ilvl < 277 { + if item.Ilvl < 372 { return false } } else { // Epic and legendary items might come from classic, so use a lower ilvl threshold. - if item.Ilvl <= 200 { + if item.Ilvl <= 359 { return false } } @@ -407,50 +680,38 @@ type TalentConfig struct { FieldName string `json:"fieldName"` // Spell ID for each rank of this talent. // Omitted ranks will be inferred by incrementing from the last provided rank. - SpellIds []int32 `json:"spellIds"` - MaxPoints int32 `json:"maxPoints"` + SpellId int32 `json:"spellId"` } type TalentTreeConfig struct { - Name string `json:"name"` BackgroundUrl string `json:"backgroundUrl"` Talents []TalentConfig `json:"talents"` } func getSpellIdsFromTalentJson(infile *string) []int32 { data, err := os.ReadFile(*infile) + if err != nil { log.Fatalf("failed to load talent json file: %s", err) } var buf bytes.Buffer + err = json.Compact(&buf, []byte(data)) if err != nil { log.Fatalf("failed to compact json: %s", err) } - var talents []TalentTreeConfig + var talentTree TalentTreeConfig - err = json.Unmarshal(buf.Bytes(), &talents) + err = json.Unmarshal(buf.Bytes(), &talentTree) if err != nil { log.Fatalf("failed to parse talent to json %s", err) } - spellIds := make([]int32, 0) - for _, tree := range talents { - for _, talent := range tree.Talents { - spellIds = append(spellIds, talent.SpellIds...) - - // Infer omitted spell IDs. - if len(talent.SpellIds) < int(talent.MaxPoints) { - curSpellId := talent.SpellIds[len(talent.SpellIds)-1] - for i := len(talent.SpellIds); i < int(talent.MaxPoints); i++ { - curSpellId++ - spellIds = append(spellIds, curSpellId) - } - } - } + for _, talent := range talentTree.Talents { + spellIds = append(spellIds, talent.SpellId) } return spellIds @@ -462,9 +723,6 @@ func GetAllTalentSpellIds(inputsDir *string) map[string][]int32 { "death_knight.json", "druid.json", "hunter.json", - "hunter_cunning.json", - "hunter_ferocity.json", - "hunter_tenacity.json", "mage.json", "paladin.json", "priest.json", @@ -472,6 +730,7 @@ func GetAllTalentSpellIds(inputsDir *string) map[string][]int32 { "shaman.json", "warlock.json", "warrior.json", + "monk.json", } ret_db := make(map[string][]int32, 0) @@ -536,39 +795,39 @@ func GetAllRotationSpellIds() map[string][]int32 { {Name: "bloodDeathKnight", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDeathKnight, Equipment: &proto.EquipmentSpec{}, - TalentsString: "23323223130222311321", + TalentsString: "000000", }, &proto.Player_BloodDeathKnight{BloodDeathKnight: &proto.BloodDeathKnight{Options: &proto.BloodDeathKnight_Options{ClassOptions: &proto.DeathKnightOptions{}}, Rotation: &proto.BloodDeathKnight_Rotation{}}}), nil, nil, nil)}, {Name: "frostDeathKnight", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDeathKnight, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-32231222233112212331", + TalentsString: "000000", }, &proto.Player_FrostDeathKnight{FrostDeathKnight: &proto.FrostDeathKnight{Options: &proto.FrostDeathKnight_Options{ClassOptions: &proto.DeathKnightOptions{}}}}), nil, nil, nil)}, {Name: "unholyDeathKnight", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDeathKnight, Equipment: &proto.EquipmentSpec{}, - TalentsString: "--22322321232331121231", + TalentsString: "000000", }, &proto.Player_UnholyDeathKnight{UnholyDeathKnight: &proto.UnholyDeathKnight{Options: &proto.UnholyDeathKnight_Options{ClassOptions: &proto.DeathKnightOptions{}}}}), nil, nil, nil)}, // Druid {Name: "balanceDruid", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDruid, Equipment: &proto.EquipmentSpec{}, - TalentsString: "33233221123212111231-2", + TalentsString: "000000", }, &proto.Player_BalanceDruid{BalanceDruid: &proto.BalanceDruid{Options: &proto.BalanceDruid_Options{ClassOptions: &proto.DruidOptions{}}}}), nil, nil, nil)}, {Name: "feralDruid", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDruid, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-2322322312012221222311", + TalentsString: "000000", }, &proto.Player_FeralDruid{FeralDruid: &proto.FeralDruid{Options: &proto.FeralDruid_Options{ClassOptions: &proto.DruidOptions{}}, Rotation: &proto.FeralDruid_Rotation{}}}), nil, nil, nil)}, // {Name: "guardianDruid", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ // Class: proto.Class_ClassDruid, // Equipment: &proto.EquipmentSpec{}, - // TalentsString: "-503232132322010353120300313511-20350001", + // TalentsString: "000000", // }, &proto.Player_FeralTankDruid{FeralTankDruid: &proto.FeralTankDruid{Options: &proto.FeralTankDruid_Options{ClassOptions: &proto.DruidOptions{}}}}), nil, nil, nil)}, {Name: "restorationDruid", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassDruid, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-2322322312012221222311", + TalentsString: "000000", }, &proto.Player_RestorationDruid{RestorationDruid: &proto.RestorationDruid{Options: &proto.RestorationDruid_Options{ClassOptions: &proto.DruidOptions{}}}}), nil, nil, nil)}, // Hunter @@ -576,19 +835,19 @@ func GetAllRotationSpellIds() map[string][]int32 { Class: proto.Class_ClassHunter, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "003-2322321232122231221", + TalentsString: "000000", }, &proto.Player_BeastMasteryHunter{BeastMasteryHunter: &proto.BeastMasteryHunter{Options: &proto.BeastMasteryHunter_Options{ClassOptions: &proto.HunterOptions{}}}}), nil, nil, nil)}, {Name: "marksmanshipHunter", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassHunter, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-0320321232120131221-332002", + TalentsString: "000000", }, &proto.Player_MarksmanshipHunter{MarksmanshipHunter: &proto.MarksmanshipHunter{Options: &proto.MarksmanshipHunter_Options{ClassOptions: &proto.HunterOptions{}}}}), nil, nil, nil)}, {Name: "survivalHunter", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassHunter, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "--33222223123222121321", + TalentsString: "000000", }, &proto.Player_SurvivalHunter{SurvivalHunter: &proto.SurvivalHunter{Options: &proto.SurvivalHunter_Options{ClassOptions: &proto.HunterOptions{}}}}), nil, nil, nil)}, // Mage @@ -596,71 +855,71 @@ func GetAllRotationSpellIds() map[string][]int32 { Class: proto.Class_ClassMage, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "323322221232122212121", + TalentsString: "000000", }, &proto.Player_ArcaneMage{ArcaneMage: &proto.ArcaneMage{Options: &proto.ArcaneMage_Options{ClassOptions: &proto.MageOptions{}}}}), nil, nil, nil)}, {Name: "fireMage", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassMage, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "001-232332221121121213231", + TalentsString: "000000", }, &proto.Player_FireMage{FireMage: &proto.FireMage{Options: &proto.FireMage_Options{ClassOptions: &proto.MageOptions{}}}}), nil, nil, nil)}, {Name: "frostMage", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassMage, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "--2323223213331321221", + TalentsString: "000000", }, &proto.Player_FrostMage{FrostMage: &proto.FrostMage{Options: &proto.FrostMage_Options{ClassOptions: &proto.MageOptions{}}}}), nil, nil, nil)}, // Paladin {Name: "holyPaladin", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPaladin, Equipment: &proto.EquipmentSpec{}, - TalentsString: "23332221222131312321", + TalentsString: "000000", }, &proto.Player_HolyPaladin{HolyPaladin: &proto.HolyPaladin{Options: &proto.HolyPaladin_Options{ClassOptions: &proto.PaladinOptions{}}}}), nil, nil, nil)}, {Name: "protPaladin", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPaladin, Equipment: &proto.EquipmentSpec{}, - TalentsString: "003-32223223122121121231", + TalentsString: "000000", }, &proto.Player_ProtectionPaladin{ProtectionPaladin: &proto.ProtectionPaladin{Options: &proto.ProtectionPaladin_Options{ClassOptions: &proto.PaladinOptions{}}}}), nil, nil, nil)}, {Name: "retPaladin", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPaladin, Race: proto.Race_RaceBloodElf, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-3-23223213211113212321", + TalentsString: "000000", }, &proto.Player_RetributionPaladin{RetributionPaladin: &proto.RetributionPaladin{Options: &proto.RetributionPaladin_Options{ClassOptions: &proto.PaladinOptions{}}}}), nil, nil, nil)}, // Priest {Name: "disciplinePriest", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPriest, Equipment: &proto.EquipmentSpec{}, - TalentsString: "233213121213222312221", + TalentsString: "000000", }, &proto.Player_DisciplinePriest{DisciplinePriest: &proto.DisciplinePriest{Options: &proto.DisciplinePriest_Options{ClassOptions: &proto.PriestOptions{}}}}), nil, nil, nil)}, {Name: "holyPriest", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPriest, Equipment: &proto.EquipmentSpec{}, - TalentsString: "013-233122221211221123211", + TalentsString: "000000", }, &proto.Player_HolyPriest{HolyPriest: &proto.HolyPriest{Options: &proto.HolyPriest_Options{ClassOptions: &proto.PriestOptions{}}}}), nil, nil, nil)}, {Name: "shadowPriest", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassPriest, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-002-322232212211222121231", + TalentsString: "000000", }, &proto.Player_ShadowPriest{ShadowPriest: &proto.ShadowPriest{Options: &proto.ShadowPriest_Options{ClassOptions: &proto.PriestOptions{}}}}), nil, nil, nil)}, // Rogue {Name: "assassinationRogue", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassRogue, Equipment: &proto.EquipmentSpec{}, - TalentsString: "2333232213322112321", + TalentsString: "000000", }, &proto.Player_AssassinationRogue{AssassinationRogue: &proto.AssassinationRogue{Options: &proto.AssassinationRogue_Options{ClassOptions: &proto.RogueOptions{}}}}), nil, nil, nil)}, {Name: "combatRogue", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassRogue, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-2332232312232212321", + TalentsString: "000000", }, &proto.Player_CombatRogue{CombatRogue: &proto.CombatRogue{Options: &proto.CombatRogue_Options{ClassOptions: &proto.RogueOptions{}}}}), nil, nil, nil)}, {Name: "subtletyRogue", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassRogue, Equipment: &proto.EquipmentSpec{}, - TalentsString: "--2331232321313312321", + TalentsString: "000000", }, &proto.Player_SubtletyRogue{SubtletyRogue: &proto.SubtletyRogue{Options: &proto.SubtletyRogue_Options{ClassOptions: &proto.RogueOptions{}}}}), nil, nil, nil)}, // Shaman @@ -668,54 +927,71 @@ func GetAllRotationSpellIds() map[string][]int32 { Class: proto.Class_ClassShaman, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "3230323212231121321-22", + TalentsString: "000000", }, &proto.Player_ElementalShaman{ElementalShaman: &proto.ElementalShaman{Options: &proto.ElementalShaman_Options{ClassOptions: &proto.ShamanOptions{}}}}), nil, nil, nil)}, {Name: "enhancementShaman", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassShaman, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-2331322313223212321", + TalentsString: "000000", }, &proto.Player_EnhancementShaman{EnhancementShaman: &proto.EnhancementShaman{Options: &proto.EnhancementShaman_Options{ClassOptions: &proto.ShamanOptions{}}}}), nil, nil, nil)}, {Name: "restorationShaman", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassShaman, Race: proto.Race_RaceTroll, Equipment: &proto.EquipmentSpec{}, - TalentsString: "--23322232132123121321", + TalentsString: "000000", }, &proto.Player_RestorationShaman{RestorationShaman: &proto.RestorationShaman{Options: &proto.RestorationShaman_Options{ClassOptions: &proto.ShamanOptions{}}}}), nil, nil, nil)}, // Warlock {Name: "afflictionWarlock", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarlock, Equipment: &proto.EquipmentSpec{}, - TalentsString: "223222123213321321-31", + TalentsString: "000000", }, &proto.Player_AfflictionWarlock{AfflictionWarlock: &proto.AfflictionWarlock{Options: &proto.AfflictionWarlock_Options{ClassOptions: &proto.WarlockOptions{}}}}), nil, nil, nil)}, {Name: "demonologyWarlock", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarlock, Equipment: &proto.EquipmentSpec{}, - TalentsString: "013-3322222312312212211", + TalentsString: "000000", }, &proto.Player_DemonologyWarlock{DemonologyWarlock: &proto.DemonologyWarlock{Options: &proto.DemonologyWarlock_Options{ClassOptions: &proto.WarlockOptions{}}}}), nil, nil, nil)}, {Name: "destructionWarlock", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarlock, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-022-3322222312221312211", + TalentsString: "000000", }, &proto.Player_DestructionWarlock{DestructionWarlock: &proto.DestructionWarlock{Options: &proto.DestructionWarlock_Options{ClassOptions: &proto.WarlockOptions{}}}}), nil, nil, nil)}, // Warrior {Name: "armsWarrior", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarrior, Equipment: &proto.EquipmentSpec{}, - TalentsString: "32222323122212312211-2", + TalentsString: "000000", }, &proto.Player_ArmsWarrior{ArmsWarrior: &proto.ArmsWarrior{Options: &proto.ArmsWarrior_Options{ClassOptions: &proto.WarriorOptions{}}}}), nil, nil, nil)}, {Name: "furyWarrior", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarrior, Equipment: &proto.EquipmentSpec{}, - TalentsString: "002-332222131321111223211", + TalentsString: "000000", }, &proto.Player_FuryWarrior{FuryWarrior: &proto.FuryWarrior{Options: &proto.FuryWarrior_Options{ClassOptions: &proto.WarriorOptions{}}}}), nil, nil, nil)}, {Name: "protectionWarrior", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ Class: proto.Class_ClassWarrior, Equipment: &proto.EquipmentSpec{}, - TalentsString: "-002-33233221121212212231", + TalentsString: "000000", }, &proto.Player_ProtectionWarrior{ProtectionWarrior: &proto.ProtectionWarrior{Options: &proto.ProtectionWarrior_Options{ClassOptions: &proto.WarriorOptions{}}}}), nil, nil, nil)}, + + // Monk + {Name: "brewmasterMonk", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ + Class: proto.Class_ClassMonk, + Equipment: &proto.EquipmentSpec{}, + TalentsString: "000000", + }, &proto.Player_BrewmasterMonk{BrewmasterMonk: &proto.BrewmasterMonk{Options: &proto.BrewmasterMonk_Options{ClassOptions: &proto.MonkOptions{}, Stance: proto.MonkStance_SturdyOx}}}), nil, nil, nil)}, + {Name: "mistweaverMonk", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ + Class: proto.Class_ClassMonk, + Equipment: &proto.EquipmentSpec{}, + TalentsString: "000000", + }, &proto.Player_MistweaverMonk{MistweaverMonk: &proto.MistweaverMonk{Options: &proto.MistweaverMonk_Options{ClassOptions: &proto.MonkOptions{}, Stance: proto.MonkStance_WiseSerpent}}}), nil, nil, nil)}, + {Name: "windwalkerMonk", Raid: core.SinglePlayerRaidProto(core.WithSpec(&proto.Player{ + Class: proto.Class_ClassMonk, + Equipment: &proto.EquipmentSpec{}, + TalentsString: "000000", + }, &proto.Player_WindwalkerMonk{WindwalkerMonk: &proto.WindwalkerMonk{Options: &proto.WindwalkerMonk_Options{ClassOptions: &proto.MonkOptions{}}}}), nil, nil, nil)}, } ret_db := make(map[string][]int32, 0) diff --git a/tools/database/gen_protos.go b/tools/database/gen_protos.go new file mode 100644 index 0000000000..1f73aae29e --- /dev/null +++ b/tools/database/gen_protos.go @@ -0,0 +1,622 @@ +package database + +import ( + "cmp" + "fmt" + "os" + "slices" + "strings" + "text/template" + "unicode" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/tools/database/dbc" + "golang.org/x/text/cases" + "golang.org/x/text/language" +) + +func convertTalentClassID(raw int) int { + return 1 << (raw - 1) +} + +var dbcClasses = []dbc.DbcClass{ + {ProtoClass: proto.Class_ClassWarrior, ID: 1}, + {ProtoClass: proto.Class_ClassPaladin, ID: 2}, + {ProtoClass: proto.Class_ClassHunter, ID: 3}, + {ProtoClass: proto.Class_ClassRogue, ID: 4}, + {ProtoClass: proto.Class_ClassPriest, ID: 5}, + {ProtoClass: proto.Class_ClassDeathKnight, ID: 6}, + {ProtoClass: proto.Class_ClassShaman, ID: 7}, + {ProtoClass: proto.Class_ClassMage, ID: 8}, + {ProtoClass: proto.Class_ClassWarlock, ID: 9}, + {ProtoClass: proto.Class_ClassMonk, ID: 10}, + {ProtoClass: proto.Class_ClassDruid, ID: 11}, +} + +func classNameFromDBC(dbc dbc.DbcClass) string { + switch dbc.ID { + case 1: + return "Warrior" + case 2: + return "Paladin" + case 3: + return "Hunter" + case 4: + return "Rogue" + case 5: + return "Priest" + case 6: + return "Death_Knight" + case 7: + return "Shaman" + case 8: + return "Mage" + case 9: + return "Warlock" + case 10: + return "Monk" + case 11: + return "Druid" + default: + return "Unknown" + } +} + +type TalentConfig struct { + FieldName string `json:"fieldName"` + FancyName string `json:"fancyName"` + Location TalentLocation `json:"location"` + SpellId int `json:"spellId"` + ProtoFieldNumber int +} + +type TalentLocation struct { + RowIdx int `json:"rowIdx"` + ColIdx int `json:"colIdx"` +} + +type ClassData struct { + ClassName string + LowerCaseClassName string + FileName string + Talents []TalentConfig + TalentTab TalentTabConfig + GlyphsMajor []Glyph + GlyphsMinor []Glyph +} + +type Glyph struct { + EnumName string + Name string + Description string + IconUrl string + ID int +} + +const staticHeader = `syntax = "proto3"; +package proto; +option go_package = "./proto"; +import "common.proto";` + +const protoTemplateStr = ` +{{- $class := .ClassName -}} +// {{.ClassName}}Talents message. +message {{$class}}Talents { +{{- range $talent := .TalentTab.Talents }} + bool {{ final $talent.FancyName $class }} = {{ $talent.ProtoFieldNumber }}; +{{- end }} +} + +enum {{.ClassName}}MajorGlyph { + {{.ClassName}}MajorGlyphNone = 0; + {{- range .GlyphsMajor }} + {{ protoOverride .EnumName $class }} = {{ .ID }}; + {{- end }} +} + +enum {{.ClassName}}MinorGlyph { + {{.ClassName}}MinorGlyphNone = 0; + {{- range .GlyphsMinor }} + {{ protoOverride .EnumName $class }} = {{ .ID }}; + {{- end }} +} +` + +const tsTemplateStr = `import { {{.ClassName}}MajorGlyph, {{.ClassName}}MinorGlyph, {{.ClassName}}Talents } from '../proto/{{.FileName}}.js'; +import { GlyphsConfig } from './glyphs_picker.js'; +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import {{.ClassName}}TalentJson from './trees/{{.FileName}}.json'; +{{- $class := .ClassName -}} +export const {{.LowerCaseClassName}}TalentsConfig: TalentsConfig<{{.ClassName}}Talents> = newTalentsConfig({{.ClassName}}TalentJson); + +export const {{.LowerCaseClassName}}GlyphsConfig: GlyphsConfig = { + majorGlyphs: { + {{- range .GlyphsMajor }} + [{{$.ClassName}}MajorGlyph.{{protoOverride .EnumName $class}}]: { + name: "{{.Name}}", + description: "{{.Description}}", + iconUrl: "{{.IconUrl}}", + }, + {{- end }} + }, + minorGlyphs: { + {{- range .GlyphsMinor }} + [{{$.ClassName}}MinorGlyph.{{protoOverride .EnumName $class}}]: { + name: "{{.Name}}", + description: "{{.Description}}", + iconUrl: "{{.IconUrl}}", + }, + {{- end }} + }, +}; +` + +const talentJsonTemplate = ` +{ + "backgroundUrl": "{{ .BackgroundUrl }}", + "talents": [ + {{- $m := len .Talents }} + {{- range $j, $talent := .Talents }} + { + "fieldName": "{{ toCamelCase $talent.FancyName }}", + "fancyName": "{{ $talent.FancyName }}", + "location": { + "rowIdx": {{ $talent.Location.RowIdx }}, + "colIdx": {{ $talent.Location.ColIdx }} + }, + "spellId": {{ $talent.SpellId }} + }{{ if ne (add $j 1) $m }},{{ end }} + {{- end }} + ] +} +` + +func generateProtoFile(data ClassData) error { + // Create the proto directory if it doesn't exist + dirPath := "./proto" + if err := os.MkdirAll(dirPath, 0755); err != nil { + return fmt.Errorf("error creating directory %s: %w", dirPath, err) + } + fileName := fmt.Sprintf("%s/%s.proto", dirPath, strings.ToLower(data.ClassName)) + if err := createOrUpdateProtoFile(fileName, data); err != nil { + fmt.Printf("Error: %v\n", err) + return err + } + return nil +} +func generateTemplateContent(data ClassData) (string, error) { + funcMap := template.FuncMap{ + "add": func(a, b int) int { return a + b }, + "toCamelCase": toCamelCase, + "toSnakeCase": toSnakeCase, + "protoOverride": protoOverride, + "final": finalFieldName, + } + + data.ClassName = strings.ReplaceAll(data.ClassName, "_", "") + + slices.SortFunc(data.GlyphsMajor, func(a, b Glyph) int { + return a.ID - b.ID + }) + slices.SortFunc(data.GlyphsMinor, func(a, b Glyph) int { + return a.ID - b.ID + }) + + tmpl, err := template.New("protoTemplate").Funcs(funcMap).Parse(protoTemplateStr) + if err != nil { + return "", fmt.Errorf("error parsing template: %w", err) + } + + var b strings.Builder + if err := tmpl.Execute(&b, data); err != nil { + return "", fmt.Errorf("error executing template: %w", err) + } + + return b.String(), nil +} +func createOrUpdateProtoFile(filePath string, data ClassData) error { + newGeneratedContent, err := generateTemplateContent(data) + if err != nil { + return fmt.Errorf("error generating template content: %w", err) + } + + generatedBlock := fmt.Sprintf("// BEGIN GENERATED\n%s\n// END GENERATED", newGeneratedContent) + + if _, err := os.Stat(filePath); os.IsNotExist(err) { + fullContent := staticHeader + "\n\n" + generatedBlock + "\n" + err := os.WriteFile(filePath, []byte(fullContent), 0644) + if err != nil { + return fmt.Errorf("error creating file %s: %w", filePath, err) + } + } else { + existingBytes, err := os.ReadFile(filePath) + if err != nil { + return fmt.Errorf("error reading file %s: %w", filePath, err) + } + existingContent := string(existingBytes) + + updatedContent, err := updateGeneratedProtoSection(existingContent, newGeneratedContent) + if err != nil { + return fmt.Errorf("error updating generated section: %w", err) + } + err = os.WriteFile(filePath, []byte(updatedContent), 0644) + if err != nil { + return fmt.Errorf("error writing updated file %s: %w", filePath, err) + } + } + + return nil +} +func updateGeneratedProtoSection(fileContent, newContent string) (string, error) { + const beginMarker = "// BEGIN GENERATED" + const endMarker = "// END GENERATED" + beginIdx := strings.Index(fileContent, beginMarker) + if beginIdx == -1 { + return "", fmt.Errorf("begin marker %q not found in the file", beginMarker) + } + endIdx := strings.LastIndex(fileContent, endMarker) + if endIdx == -1 { + return "", fmt.Errorf("end marker %q not found in the file", endMarker) + } + endIdx += len(endMarker) + newBlock := fmt.Sprintf("%s\n%s\n%s", beginMarker, newContent, endMarker) + updatedContent := fileContent[:beginIdx] + newBlock + fileContent[endIdx:] + return updatedContent, nil +} + +func protoOverride(name string, className string) string { + if name == "GlyphOfDeathCoil" && className == "Warlock" { + return "GlyphOfDeathCoilWarlock" + } + if name == "GlyphOfStampede" && className == "Hunter" { + return "GlyphOfStampedeHunter" + } + if name == "Tnt" || name == "tnt" { + return "TNT" + } + return name +} +func generateTsFile(data ClassData) error { + dirPath := "./ui/core/talents" + if err := os.MkdirAll(dirPath, 0755); err != nil { + return fmt.Errorf("error creating directory %s: %w", dirPath, err) + } + + fileName := fmt.Sprintf("%s/%s.ts", dirPath, strings.ToLower(data.ClassName)) + file, err := os.Create(fileName) + if err != nil { + return fmt.Errorf("error creating file %s: %w", fileName, err) + } + defer file.Close() + + funcMap := template.FuncMap{ + "add": func(a, b int) int { return a + b }, + "toCamelCase": toCamelCase, + "toSnakeCase": toSnakeCase, + "protoOverride": protoOverride, + } + tmpl, err := template.New("tsTemplate").Funcs(funcMap).Parse(tsTemplateStr) + if err != nil { + return err + } + data.ClassName = strings.ReplaceAll(data.ClassName, "_", "") + data.FileName = data.LowerCaseClassName + data.LowerCaseClassName = strings.ReplaceAll(data.LowerCaseClassName, "_", "") + if data.LowerCaseClassName == "deathknight" { + data.LowerCaseClassName = "deathKnight" + } + if err := tmpl.Execute(file, data); err != nil { + return fmt.Errorf("error executing template for %s: %w", data.ClassName, err) + } + + return nil +} +func finalFieldName(fancyName, className string) string { + snake := toSnakeCase(fancyName) + return protoOverride(snake, className) +} + +type TalentTabConfig struct { + BackgroundUrl string `json:"backgroundUrl"` + Talents []TalentConfig `json:"talents"` +} + +func generateTalentJson(tab TalentTabConfig, className string) error { + // Create the directory if it doesn't exist + dirPath := "ui/core/talents/trees" + if err := os.MkdirAll(dirPath, 0755); err != nil { + return fmt.Errorf("error creating directory %s: %w", dirPath, err) + } + + // Create the file with the class name + filePath := fmt.Sprintf("%s/%s.json", dirPath, strings.ToLower(className)) + file, err := os.Create(filePath) + if err != nil { + return fmt.Errorf("error creating file %s: %w", filePath, err) + } + defer file.Close() + + funcMap := template.FuncMap{ + "add": func(a, b int) int { return a + b }, + "toCamelCase": toCamelCase, + "toSnakeCase": toSnakeCase, + } + + tmpl, err := template.New("talentJson").Funcs(funcMap).Parse(talentJsonTemplate) + if err != nil { + return err + } + + if err := tmpl.Execute(file, tab); err != nil { + return fmt.Errorf("error executing template for %s: %w", className, err) + } + + fmt.Printf("Generated %s.json\n", strings.ToLower(className)) + return nil +} + +func transformRawTalentsToTab(rawTalents []RawTalent) (TalentTabConfig, error) { + tab := TalentTabConfig{ + BackgroundUrl: fmt.Sprintf("https://wow.zamimg.com/images/wow/talents/backgrounds/cata/%s.jpg", "TODO"), + Talents: []TalentConfig{}, + } + + for _, rt := range rawTalents { + fieldName := strings.ToLower(rt.TalentName[:1]) + rt.TalentName[1:] + talent := TalentConfig{ + FieldName: fieldName, + FancyName: rt.TalentName, + Location: TalentLocation{ + RowIdx: rt.TierID, + ColIdx: rt.ColumnIndex, + }, + SpellId: rt.SpellID, + } + + tab.Talents = append(tab.Talents, talent) + slices.SortFunc(tab.Talents, func(a, b TalentConfig) int { + return cmp.Or( + cmp.Compare(a.Location.RowIdx, b.Location.RowIdx), + cmp.Compare(a.Location.ColIdx, b.Location.ColIdx), + ) + }) + } + + fieldNum := 1 + for i := range tab.Talents { + tab.Talents[i].ProtoFieldNumber = fieldNum + fieldNum++ + } + + return tab, nil +} + +func transformRawTalentsToConfigsForClass(rawTalents []RawTalent, classID int) ([]TalentConfig, error) { + var talents []TalentConfig + + for _, rt := range rawTalents { + if classID == rt.ClassMask { + fieldName := strings.ToLower(rt.TalentName[:1]) + rt.TalentName[1:] + talent := TalentConfig{ + FieldName: fieldName, + FancyName: rt.TalentName, + Location: TalentLocation{ + RowIdx: rt.TierID, + ColIdx: rt.ColumnIndex, + }, + SpellId: rt.SpellID, + } + + talents = append(talents, talent) + } + } + slices.SortFunc(talents, func(a, b TalentConfig) int { + return cmp.Or( + cmp.Compare(a.Location.RowIdx, b.Location.RowIdx), + cmp.Compare(a.Location.ColIdx, b.Location.ColIdx), + ) + }) + + return talents, nil +} + +func GenerateTalentJsonFromDB(dbHelper *DBHelper) error { + rawTalents, err := LoadTalents(dbHelper) + if err != nil { + return fmt.Errorf("error loading talents: %w", err) + } + + for _, dbc := range dbcClasses { + className := classNameFromDBC(dbc) + + classTalents := []RawTalent{} + for _, rt := range rawTalents { + if dbc.ID == rt.ClassMask { + classTalents = append(classTalents, rt) + } + } + + tab, err := transformRawTalentsToTab(classTalents) + if err != nil { + fmt.Printf("Error transforming talents for %s: %v\n", className, err) + continue + } + + if err := generateTalentJson(tab, className); err != nil { + fmt.Printf("Error generating talent JSON for %s: %v\n", className, err) + } + } + + return nil +} + +func glyphBelongsToClass(r RawGlyph, dbc dbc.DbcClass) bool { + return r.ClassMask == int32(dbc.ID) +} +func properTitle(s string) string { + caser := cases.Title(language.English) + return caser.String(s) +} +func convertRawGlyphToGlyph(r RawGlyph) Glyph { + return Glyph{ + EnumName: strings.ReplaceAll( + strings.ReplaceAll( + strings.ReplaceAll( + strings.ReplaceAll(properTitle(r.Name), ":", ""), + "'", ""), + "-", ""), + " ", ""), + Name: r.Name, + Description: template.JSEscapeString(r.Description), + IconUrl: "", + ID: int(r.ItemId), + } +} + +func GenerateProtos() { + helper, err := NewDBHelper() + if err != nil { + fmt.Printf("Error creating DB helper: %v\n", err) + return + } + defer helper.Close() + + var ignoredGlyphs = []int32{102153, 104054} + rawGlyphs, err := LoadGlyphs(helper) + if err != nil { + fmt.Printf("Error loading glyphs: %v\n", err) + return + } + + rawTalents, err := LoadTalents(helper) + if err != nil { + fmt.Printf("Error loading talents: %v\n", err) + return + } + + var classesData []ClassData + iconsMap, _ := LoadArtTexturePaths("./tools/DB2ToSqlite/listfile.csv") + for _, dbc := range dbcClasses { + className := classNameFromDBC(dbc) + data := ClassData{ + ClassName: className, + LowerCaseClassName: strings.ToLower(className), + Talents: []TalentConfig{}, + TalentTab: TalentTabConfig{}, + GlyphsMajor: []Glyph{}, + GlyphsMinor: []Glyph{}, + } + + // Process glyphs + for _, raw := range rawGlyphs { + if slices.Contains(ignoredGlyphs, raw.ItemId) || strings.Contains(raw.Name, "Deprecated") || strings.Contains(raw.Name, "zzz") { + continue + } + if glyphBelongsToClass(raw, dbc) { + g := convertRawGlyphToGlyph(raw) + g.IconUrl = "https://wow.zamimg.com/images/wow/icons/large/" + strings.ToLower(GetIconName(iconsMap, int(raw.FDID))) + ".jpg" + switch raw.GlyphType { + case 0: // major + data.GlyphsMajor = append(data.GlyphsMajor, g) + case 1: // minor + data.GlyphsMinor = append(data.GlyphsMinor, g) + default: + fmt.Printf("Unknown glyph type %d in raw glyph %+v\n", raw.GlyphType, raw) + } + } + } + classTalents := []RawTalent{} + for _, rt := range rawTalents { + if dbc.ID == rt.ClassMask { + classTalents = append(classTalents, rt) + } + } + talents, err := transformRawTalentsToConfigsForClass(rawTalents, dbc.ID) + if err != nil { + fmt.Printf("Error processing talents for %s: %v\n", className, err) + } + talentTab, err := transformRawTalentsToTab(classTalents) + + if err != nil { + fmt.Printf("Error grouping talents for %s: %v\n", className, err) + } + + data.Talents = talents + data.TalentTab = talentTab + + classesData = append(classesData, data) + } + + for _, classData := range classesData { + if err := generateProtoFile(classData); err != nil { + fmt.Printf("Error generating proto file for %s: %v\n", classData.ClassName, err) + } else { + fmt.Printf("Generated proto/%s.generated.proto\n", strings.ToLower(classData.ClassName)) + } + + if err := generateTsFile(classData); err != nil { + fmt.Printf("Error generating TS file for %s: %v\n", classData.ClassName, err) + } else { + fmt.Printf("Generated %s.ts\n", strings.ToLower(classData.ClassName)) + } + } + + if err := GenerateTalentJsonFromDB(helper); err != nil { + fmt.Printf("Error generating talent json files: %v\n", err) + } +} + +func toSnakeCase(s string) string { + var words []string + // Split by whitespace. + for _, w := range strings.Fields(s) { + var b strings.Builder + for _, r := range w { + switch { + case r == '-': + b.WriteRune('_') + case r == '\'': + continue + case unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_': + b.WriteRune(unicode.ToLower(r)) + default: + continue + } + } + cleaned := b.String() + if cleaned != "" { + words = append(words, cleaned) + } + } + return strings.Join(words, "_") +} +func toCamelCase(s string) string { + words := strings.Fields(s) + if len(words) == 0 { + return "" + } + var result strings.Builder + for i, w := range words { + var b strings.Builder + for _, r := range w { + switch { + case r == '-' || r == '\'': + continue + case unicode.IsLetter(r) || unicode.IsDigit(r): + b.WriteRune(unicode.ToLower(r)) + default: + continue + } + } + cleaned := b.String() + if cleaned == "" { + continue + } + if i == 0 { + result.WriteString(cleaned) + } else { + result.WriteString(strings.Title(cleaned)) + } + } + return result.String() +} diff --git a/tools/database/generator-settings.json b/tools/database/generator-settings.json new file mode 100644 index 0000000000..00d0a957ca --- /dev/null +++ b/tools/database/generator-settings.json @@ -0,0 +1,74 @@ +{ + "Settings": { + "BaseDir": "/mnt/c/Program Files/World of Warcraft", + "BuildConfig": "buildConfig", + "CDNConfig": "cdnConfig", + "Region": "us", + "Product": "wow_classic" + }, + "TargetDirectory": "dbfilesclient", + "DatabaseFile": "wowsims.db", + "GameTablesOutDirectory": "../../assets/db_inputs/basestats", + "GameTables": [], + "Tables": [ + "Spell", + "Item", + "GemProperties", + "ItemSet", + "ItemSetSpell", + "ItemSubClass", + "ItemSubClassMask", + "ItemReforge", + "ItemBonus", + "ItemEffect", + "ItemClass", + "SpellCategory", + "ItemRandomProperties", + "ItemExtendedCost", + "ItemRandomSuffix", + "RandPropPoints", + "ItemDamageAmmo", + "ItemDamageOneHand", + "ItemDamageOneHandCaster", + "ItemDamageRanged", + "ItemDamageThrown", + "ItemDamageTwoHand", + "ItemDamageTwoHandCaster", + "ItemDamageWand", + "ItemNameDescription", + "ItemSparse", + "ArmorLocation", + "ItemArmorTotal", + "ItemArmorShield", + "ItemArmorQuality", + "SkillLineAbility", + "SkillLine", + "Curve", + "CurvePoint", + "Difficulty", + "SpellEquippedItems", + "SpellRadius", + "SpellMisc", + "SpellLevels", + "SpellPower", + "SpellLabel", + "SpellName", + "ScalingStatDistribution", + "SpellCooldowns", + "SpellScaling", + "SpellClassOptions", + "SpellRange", + "SpellReagents", + "SpellInterrupts", + "SpellItemEnchantment", + "SpellCategories", + "SpellShapeshift", + "SpellEffect", + "SpellDuration", + "SpellAuraOptions", + "GlyphProperties", + "SpellMechanic", + "Talent", + "TalentTab" + ] +} diff --git a/tools/database/get_data_from_wowhead.sql b/tools/database/get_data_from_wowhead.sql deleted file mode 100644 index 8d3068b499..0000000000 --- a/tools/database/get_data_from_wowhead.sql +++ /dev/null @@ -1,137 +0,0 @@ - -CREATE TABLE WOWHEAD_ITEMLIST -( - JSONCOL VARCHAR(MAX) - ,ITEMID INT - ,DATE_LOAD DATETIME DEFAULT GETDATE() -) - - - - -DECLARE @UID INT -SET @UID = 187815 - - -WHILE @UID > 180088 -BEGIN - - - DECLARE @url varchar(max) - - SET @URL = '' - - DECLARE @authHeader NVARCHAR(64); - DECLARE @contentType NVARCHAR(64); - DECLARE @ret INT; - DECLARE @status NVARCHAR(32); - DECLARE @token INT; - DECLARE @JSONTABLE TABLE (JSONCOL text) - - SET @authHeader = 'No Auth'; - SET @contentType = 'application/json'; - - SET @url = CONCAT('https://cata.wowhead.com/tooltip/item/', @UID,'&json') - - -- Open the connection. - EXEC @ret = sp_OACreate 'MSXML2.ServerXMLHTTP', @token OUT; - IF @ret <> 0 RAISERROR('Unable to open HTTP connection.', 10, 1); - - -- Send the request. - EXEC @ret = sp_OAMethod @token, 'open', NULL, 'GET', @url, 'false'; - EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Authentication', @authHeader; - EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Content-type', @contentType; - EXEC @ret = sp_OAMethod @token, 'send' - - -- Handle the response. - EXEC @ret = sp_OAGetProperty @token, 'status', @status OUT; - - - INSERT INTO @JSONTABLE (JSONCOL) - EXEC @ret = sp_OAMethod @token, 'responseText' - - -- Show the response. - --PRINT 'Status: ' + @status + ' (' + @statusText + ')'; - - -- Close the connection. - EXEC @ret = sp_OADestroy @token; - IF @ret <> 0 RAISERROR('Unable to close HTTP connection.', 10, 1); - - - INSERT INTO WOWHEAD_ITEMLIST (JSONCOL, ITEMID, URL_STRING) - SELECT JSONCOL, @UID, @url - FROM @JSONTABLE - - DELETE FROM @JSONTABLE - - SET @UID = @UID - 1 - -END - - - - - - - - - - -DECLARE @UID INT -SET @UID = 39656 - - -WHILE @UID > 0 -BEGIN - - - DECLARE @url varchar(max) - - SET @URL = '' - - DECLARE @authHeader NVARCHAR(64); - DECLARE @contentType NVARCHAR(64); - DECLARE @ret INT; - DECLARE @status NVARCHAR(32); - DECLARE @token INT; - DECLARE @JSONTABLE TABLE (JSONCOL text) - - SET @authHeader = 'No Auth'; - SET @contentType = 'application/json'; - - SET @url = CONCAT('https://cata.wowhead.com/tooltip/item/', @UID,'&json') - - -- Open the connection. - EXEC @ret = sp_OACreate 'MSXML2.ServerXMLHTTP', @token OUT; - IF @ret <> 0 RAISERROR('Unable to open HTTP connection.', 10, 1); - - -- Send the request. - EXEC @ret = sp_OAMethod @token, 'open', NULL, 'GET', @url, 'false'; - EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Authentication', @authHeader; - EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Content-type', @contentType; - EXEC @ret = sp_OAMethod @token, 'send' - - -- Handle the response. - EXEC @ret = sp_OAGetProperty @token, 'status', @status OUT; - - - INSERT INTO @JSONTABLE (JSONCOL) - EXEC @ret = sp_OAMethod @token, 'responseText' - - -- Show the response. - --PRINT 'Status: ' + @status + ' (' + @statusText + ')'; - - -- Close the connection. - EXEC @ret = sp_OADestroy @token; - IF @ret <> 0 RAISERROR('Unable to close HTTP connection.', 10, 1); - - - INSERT INTO WOWHEAD_ITEMLIST (JSONCOL, ITEMID, URL_STRING) - SELECT JSONCOL, @UID, @url - FROM @JSONTABLE - - DELETE FROM @JSONTABLE - - SET @UID = @UID - 1 - -END diff --git a/tools/database/icon_loader.go b/tools/database/icon_loader.go new file mode 100644 index 0000000000..eaf29bf054 --- /dev/null +++ b/tools/database/icon_loader.go @@ -0,0 +1,58 @@ +package database + +import ( + "encoding/csv" + "fmt" + "io" + "os" + "path/filepath" + "strconv" + "strings" +) + +func LoadArtTexturePaths(filePath string) (map[int]string, error) { + f, err := os.Open(filePath) + if err != nil { + return nil, fmt.Errorf("failed to open file %q: %w", filePath, err) + } + defer f.Close() + + r := csv.NewReader(f) + r.Comma = ';' + r.TrimLeadingSpace = true + + paths := make(map[int]string) + for { + record, err := r.Read() + if err == io.EOF { + break + } + if err != nil { + return nil, fmt.Errorf("error reading CSV: %w", err) + } + if len(record) < 2 { + continue + } + + key, err := strconv.Atoi(record[0]) + if err != nil { + return nil, fmt.Errorf("invalid key %q on line %v: %w", record[0], record, err) + } + paths[key] = record[1] + } + + return paths, nil +} + +func GetIconName(artPaths map[int]string, fdid int) string { + path, ok := artPaths[fdid] + if !ok { + return "" + } + + fileName := filepath.Base(path) + fileName = strings.ReplaceAll(fileName, " ", "-") + fileName = strings.TrimSuffix(fileName, filepath.Ext(fileName)) + + return strings.ToLower(fileName) +} diff --git a/tools/database/item_filter_query.sql b/tools/database/item_filter_query.sql deleted file mode 100644 index 95e4c0d69f..0000000000 --- a/tools/database/item_filter_query.sql +++ /dev/null @@ -1,150 +0,0 @@ - - -/* -Query Below returns all equitable items quality 2 and above -There are few additional columns included, but only column ITEMID will be used further -*/ - -SELECT ITEMID - ,NAME - ,QUALITY - ,ICON - ,TOOLTIP - ,REPLACE(REPLACE(REPLACE(REPLACE(SUBSTRING(TOOLTIP,CHARINDEX('
Item Level ',TOOLTIP)+26,3),'<',''),'/',''),'-->',''),'le=','') ILVL - -FROM WOWHEAD_ITEMLIST -CROSS APPLY OPENJSON (JSONCOL) -WITH -( - NAME VARCHAR(1000) '$.name' - ,QUALITY INT '$.quality' - ,ICON varchar(1000) '$.icon' - ,TOOLTIP varchar(max) '$.tooltip' -) -WHERE -( - TOOLTIP LIKE ('%Head%') - or TOOLTIP like ('%Neck%') - or TOOLTIP like ('%Shoulder%') - or TOOLTIP like ('%Back%') - or TOOLTIP like ('%Chest%') - or TOOLTIP like ('%Wrist%') - or TOOLTIP like ('%Hands%') - or TOOLTIP like ('%Waist%') - or TOOLTIP like ('%Legs%') - or TOOLTIP like ('%Feet%') - or TOOLTIP like ('%Finger%') - or TOOLTIP like ('%Trinket%') - or TOOLTIP like ('%Ranged%') - or TOOLTIP like ('%Thrown%') - or TOOLTIP like ('%Relic%') - or TOOLTIP like ('%Main Hand%') - or TOOLTIP like ('%Two-Hand%') - or TOOLTIP like ('%One-Hand%') - or TOOLTIP like ('%Off Hand%') - or TOOLTIP like ('%Held In Off-hand%') -) -AND QUALITY NOT IN ('0','1') -AND NAME NOT LIKE ('%PH]%') -AND NAME NOT LIKE ('%TEST%') -AND NAME NOT LIKE ('%Bracer 3%') -AND NAME NOT LIKE ('%Bracer 2%') -AND NAME NOT LIKE ('%Bracer 1%') -AND NAME NOT LIKE ('%Boots 3%') -AND NAME NOT LIKE ('%Boots 2%') -AND NAME NOT LIKE ('%Boots 1%') -AND NAME NOT LIKE ('zzOLD%') -AND NAME NOT LIKE ('130 Epic%') -AND NAME NOT LIKE ('%Indalamar%') -AND NAME NOT LIKE ('%QR XXXX%') -AND NAME NOT LIKE ('%Deprecated: Keanna%') -AND NAME NOT LIKE ('%90 Epic%') -AND NAME NOT LIKE ('%66 Epic%') -AND NAME NOT LIKE ('%63 Blue%') -AND NAME NOT LIKE ('%90 Green%') -AND NAME NOT LIKE ('%63 Green%') -AND NAME NOT LIKE ('%Pattern:%') -AND NAME NOT LIKE ('%Design:%') -AND NAME NOT LIKE ('%Schematic:%') -AND NAME NOT LIKE ('%Plans:%') -AND NAME NOT LIKE ('%Recipe:%') ---AND ITEMID = ('24262') -AND REPLACE(REPLACE(REPLACE(REPLACE(SUBSTRING(TOOLTIP,CHARINDEX('
Item Level ',TOOLTIP)+26,3),'<',''),'/',''),'-->',''),'le=','') >= 70 - - - -SELECT ITEMID - ,NAME - ,QUALITY - ,ICON - ,TOOLTIP - ,REPLACE(REPLACE(REPLACE(REPLACE(SUBSTRING(TOOLTIP,CHARINDEX('
Item Level ',TOOLTIP)+26,3),'<',''),'/',''),'-->',''),'le=','') ILVL - -FROM WOWHEAD_ITEMLIST -CROSS APPLY OPENJSON (JSONCOL) -WITH -( - NAME VARCHAR(1000) '$.name' - ,QUALITY INT '$.quality' - ,ICON varchar(1000) '$.icon' - ,TOOLTIP varchar(max) '$.tooltip' -) -WHERE NAME LIKE ('%SPELLSTRIKE%') - -/* -Below Query returns list of Gems -Only column ITEMID will be used further -*/ - - - -SELECT ITEMID - ,NAME - ,QUALITY - ,ICON - ,TOOLTIP - ,REPLACE(REPLACE(REPLACE(REPLACE(SUBSTRING(TOOLTIP,CHARINDEX('
Item Level ',TOOLTIP)+26,3),'<',''),'/',''),'-->',''),'le=','') ILVL -FROM WOWHEAD_ITEMLIST -CROSS APPLY OPENJSON (JSONCOL) -WITH -( - NAME VARCHAR(1000) '$.name' - ,QUALITY INT '$.quality' - ,ICON varchar(1000) '$.icon' - ,TOOLTIP varchar(max) '$.tooltip' -) -WHERE TOOLTIP LIKE ('%Matches%') - AND NAME NOT LIKE ('zzOLD%') - AND NAME NOT LIKE ('%TEST%') -AND NAME NOT LIKE ('%Pattern:%') -AND NAME NOT LIKE ('%Design:%') -AND NAME NOT LIKE ('%Schematic:%') -AND NAME NOT LIKE ('%Plans:%') -AND NAME NOT LIKE ('%Recipe:%') - -union all - -SELECT ITEMID - ,NAME - ,QUALITY - ,ICON - ,TOOLTIP - ,REPLACE(REPLACE(REPLACE(REPLACE(SUBSTRING(TOOLTIP,CHARINDEX('
Item Level ',TOOLTIP)+26,3),'<',''),'/',''),'-->',''),'le=','') ILVL -FROM WOWHEAD_ITEMLIST -CROSS APPLY OPENJSON (JSONCOL) -WITH -( - NAME VARCHAR(1000) '$.name' - ,QUALITY INT '$.quality' - ,ICON varchar(1000) '$.icon' - ,TOOLTIP varchar(max) '$.tooltip' -) -WHERE -TOOLTIP LIKE ('%gemConditions%') - AND NAME NOT LIKE ('zz%') - AND NAME NOT LIKE ('%TEST%') - AND NAME NOT LIKE ('%Pattern:%') - AND NAME NOT LIKE ('%Design:%') - AND NAME NOT LIKE ('%Schematic:%') - AND NAME NOT LIKE ('%Plans:%') - AND NAME NOT LIKE ('%Recipe:%') diff --git a/tools/database/overrides.go b/tools/database/overrides.go index e32baffda2..de01dfc987 100644 --- a/tools/database/overrides.go +++ b/tools/database/overrides.go @@ -3,8 +3,8 @@ package database import ( "regexp" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) var OtherItemIdsToFetch = []string{ @@ -15,72 +15,14 @@ var OtherItemIdsToFetch = []string{ "211850", "211851", } - +var ConsumableOverrides = []*proto.Consumable{ + {Id: 62290, BuffsMainStat: true, Stats: stats.Stats{stats.Stamina: 90}.ToProtoArray()}, + {Id: 62649, BuffsMainStat: true, Stats: stats.Stats{stats.Stamina: 90}.ToProtoArray()}, +} var ItemOverrides = []*proto.UIItem{ // Boosted 359 green weapon damage stats are way off // min and max show as double of their actual values in tooltips... // some scaling is happening that wowhead can't pick up - { /** Martial Sword */ Id: 92074, WeaponDamageMin: 776, WeaponDamageMax: 1443}, - { /** Scourgeheart Blade */ Id: 92110, WeaponDamageMin: 841, WeaponDamageMax: 1564}, - { /** Partisan Sword */ Id: 92111, WeaponDamageMin: 776, WeaponDamageMax: 1443}, - { /** Thundercaller Mace */ Id: 92112, WeaponDamageMin: 841, WeaponDamageMax: 1564}, - { /** Darkwalker Shiv */ Id: 92192, WeaponDamageMin: 582, WeaponDamageMax: 1083}, - { /** Partisan Scepter */ Id: 92202, WeaponDamageMin: 388, WeaponDamageMax: 721}, - { /** Darkwalker Sword */ Id: 92203, WeaponDamageMin: 841, WeaponDamageMax: 1564}, - { /** Darkwalker Dagger */ Id: 92204, WeaponDamageMin: 582, WeaponDamageMax: 1083}, - { /** Thundercaller Gavel */ Id: 92205, WeaponDamageMin: 388, WeaponDamageMax: 721}, - { /** Thundercaller Scepter */ Id: 92206, WeaponDamageMin: 388, WeaponDamageMax: 721}, - { /** Scourgeheart Maul */ Id: 92353, WeaponDamageMin: 1795, WeaponDamageMax: 2694}, - { /** Scourgeheart Hammer */ Id: 92354, WeaponDamageMin: 1795, WeaponDamageMax: 2694}, - { /** Naturalist Stave */ Id: 92355, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Naturalist Spear */ Id: 92356, WeaponDamageMin: 1496, WeaponDamageMax: 2245}, - { /** Forestwalker Spear */ Id: 92357, WeaponDamageMin: 1496, WeaponDamageMax: 2245}, - { /** Naturalist Staff */ Id: 92358, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Enlightened Staff */ Id: 92359, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Partisan Greatsword */ Id: 92360, WeaponDamageMin: 1795, WeaponDamageMax: 2694}, - { /** Deliverer Stave */ Id: 92361, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Deliverer Staff */ Id: 92362, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Martial Maul */ Id: 92363, WeaponDamageMin: 1795, WeaponDamageMax: 2694}, - { /** Martial Greatsword */ Id: 92364, WeaponDamageMin: 1795, WeaponDamageMax: 2694}, - { /** Soulseizer Staff */ Id: 92365, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Waterdancer Spire */ Id: 92372, WeaponDamageMin: 1496, WeaponDamageMax: 2245}, - { /** Waterdancer Staff */ Id: 92373, WeaponDamageMin: 554, WeaponDamageMax: 832}, - { /** Waterdancer Sword */ Id: 92405, WeaponDamageMin: 841, WeaponDamageMax: 1564}, - - // TODO: Remove these when blizzard fixes the item data - { /** Alysra's Razor (H) */ Id: 71427, WeaponDamageMin: 610, WeaponDamageMax: 1134, WeaponSpeed: 1.4}, - { /** Arathar, the Eye of Flame (H) */ Id: 71611, WeaponDamageMin: 1865, WeaponDamageMax: 3465, WeaponSpeed: 3.0}, - { /** Arbalest of Erupting Fury (H) */ Id: 71414, WeaponDamageMin: 2015, WeaponDamageMax: 3024, WeaponSpeed: 3.0}, - { /** Avool's Incendiary Shanker */ Id: 71779, WeaponDamageMin: 695, WeaponDamageMax: 1291, WeaponSpeed: 1.8}, - { /** Avool's Incendiary Shanker (H) */ Id: 71778, WeaponDamageMin: 784, WeaponDamageMax: 1458, WeaponSpeed: 1.8}, - { /** Deflecting Star (H) */ Id: 71592, WeaponDamageMin: 1410, WeaponDamageMax: 2116, WeaponSpeed: 2.1}, - { /** Entrail Disgorger */ Id: 71787, WeaponDamageMin: 618, WeaponDamageMax: 927, WeaponSpeed: 1.4}, - { /** Entrail Disgorger (H) */ Id: 71786, WeaponDamageMin: 697, WeaponDamageMax: 1046, WeaponSpeed: 1.4}, - { /** Eye of Purification */ Id: 71776, WeaponDamageMin: 463, WeaponDamageMax: 861, WeaponSpeed: 2.4}, - { /** Eye of Purification (H) */ Id: 71777, WeaponDamageMin: 523, WeaponDamageMax: 972, WeaponSpeed: 2.4}, - { /** Feeding Frenzy (H) */ Id: 71441, WeaponDamageMin: 896, WeaponDamageMax: 1345, WeaponSpeed: 1.8}, - { /** Funeral Pyre (H) */ Id: 71409, WeaponDamageMin: 597, WeaponDamageMax: 897, WeaponSpeed: 2.4}, - { /** Gatecrasher (H) */ Id: 71454, WeaponDamageMin: 1133, WeaponDamageMax: 2105, WeaponSpeed: 2.6}, - { /** Giantslicer (H) */ Id: 71593, WeaponDamageMin: 1410, WeaponDamageMax: 2116, WeaponSpeed: 2.1}, - { /** Ko'gun, Hammer of the Firelord (H) */ Id: 71615, WeaponDamageMin: 484, WeaponDamageMax: 899, WeaponSpeed: 2.1}, - { /** Morningstar Shard (H) */ Id: 71568, WeaponDamageMin: 1343, WeaponDamageMax: 2016, WeaponSpeed: 2.0}, - { /** Sho'ravon, Greatstaff of Annihilation */ Id: 71798, WeaponDamageMin: 560, WeaponDamageMax: 840, WeaponSpeed: 2.4}, - { /** Skullstealer Greataxe (H) */ Id: 71445, WeaponDamageMin: 2418, WeaponDamageMax: 3628, WeaponSpeed: 3.6}, - { /** Smoldering Censer of Purity */ Id: 71775, WeaponDamageMin: 640, WeaponDamageMax: 960, WeaponSpeed: 2.9}, - { /** Smoldering Censer of Purity (H) */ Id: 71774, WeaponDamageMin: 722, WeaponDamageMax: 1084, WeaponSpeed: 2.9}, - { /** Volcanospike (H) */ Id: 71422, WeaponDamageMin: 348, WeaponDamageMax: 648, WeaponSpeed: 1.6}, - { /** Zoid's Firelit Greatsword */ Id: 71780, WeaponDamageMin: 2142, WeaponDamageMax: 3214, WeaponSpeed: 3.6}, - { /** Zoid's Firelit Greatsword (H) */ Id: 71781, WeaponDamageMin: 2418, WeaponDamageMax: 3628, WeaponSpeed: 3.6}, - - { /** Raz's Pauldrons */ Id: 56318, SocketBonus: stats.Stats{stats.HitRating: 20}.ToProtoArray()}, - - { /** Destruction Holo-gogs */ Id: 32494, ClassAllowlist: []proto.Class{proto.Class_ClassMage, proto.Class_ClassPriest, proto.Class_ClassWarlock}}, - { /** Gadgetstorm Goggles */ Id: 32476, ClassAllowlist: []proto.Class{proto.Class_ClassShaman}}, - { /** Magnified Moon Specs */ Id: 32480, ClassAllowlist: []proto.Class{proto.Class_ClassDruid}}, - { /** Quad Deathblow X44 Goggles */ Id: 34353, ClassAllowlist: []proto.Class{proto.Class_ClassDruid, proto.Class_ClassRogue}}, - { /** Hyper-Magnified Moon Specs */ Id: 35182, ClassAllowlist: []proto.Class{proto.Class_ClassDruid}}, - { /** Lightning Etched Specs */ Id: 34355, ClassAllowlist: []proto.Class{proto.Class_ClassShaman}}, - { /** Annihilator Holo-Gogs */ Id: 34847, ClassAllowlist: []proto.Class{proto.Class_ClassMage, proto.Class_ClassPriest, proto.Class_ClassWarlock}}, // Balance T9 "of Conquest" Alliance set {Id: 48158, SetName: "Malfurion's Regalia"}, @@ -726,6 +668,20 @@ var ExtraItemIcons = []int32{ 49634, } +// Item Ids of consumables to allow +var ConsumableAllowList = []int32{ + //Fortune Cookie and Feast + 62649, + 62290, + //Migty Rage Potion + 13442, + // Dark Rune + 20520, +} +var ConsumableDenyList = []int32{ + 57099, +} + // Raid buffs / debuffs var SharedSpellsIcons = []int32{ // Revitalize, Rejuv, WG @@ -910,6 +866,8 @@ var DenyListNameRegexes = []*regexp.Regexp{ regexp.MustCompile(`Bracer 3`), regexp.MustCompile(`DB\d`), regexp.MustCompile(`DEPRECATED`), + regexp.MustCompile(`OLD`), + regexp.MustCompile(`Deprecated`), regexp.MustCompile(`Deprecated: Keanna`), regexp.MustCompile(`Indalamar`), regexp.MustCompile(`Monster -`), @@ -918,6 +876,10 @@ var DenyListNameRegexes = []*regexp.Regexp{ regexp.MustCompile(`QR XXXX`), regexp.MustCompile(`TEST`), regexp.MustCompile(`Test`), + regexp.MustCompile(`Enchant Template`), + regexp.MustCompile(`Arcane Amalgamation`), + regexp.MustCompile(`Deleted`), + regexp.MustCompile(`DELETED`), regexp.MustCompile(`zOLD`), regexp.MustCompile(`Archaic Spell`), regexp.MustCompile(`Well Repaired`), diff --git a/tools/database/overrides/0.sql b/tools/database/overrides/0.sql new file mode 100644 index 0000000000..78df4f38f3 --- /dev/null +++ b/tools/database/overrides/0.sql @@ -0,0 +1,672 @@ +DROP TABLE IF EXISTS item_enchantment_template; + +CREATE TABLE item_enchantment_template ( + entry INTEGER NOT NULL DEFAULT 0, + type INTEGER NOT NULL DEFAULT 0, + ench INTEGER NOT NULL DEFAULT 0, + chance REAL NOT NULL DEFAULT 0, + PRIMARY KEY (entry, type, ench) +); + +DELETE FROM item_enchantment_template +WHERE entry IN (161,162,163,381,382,383,384,385); + +INSERT INTO item_enchantment_template (entry, ench, chance) VALUES + (161, 79, 51.35), + (161, 83, 48.65), + (162, 80, 48.65), + (162, 83, 51.35), + (163, 80, 44.6), + (163, 83, 55.4), + (381, 68, 8.1), + (381, 71, 14.5), + (381, 72, 7.7), + (381, 73, 7.3), + (381, 75, 7.7), + (381, 78, 14.9), + (381, 79, 8.8), + (381, 83, 14.3), + (381, 84, 8.2), + (381, 85, 8.5), + (382, 69, 18.7), + (382, 79, 12.5), + (382, 82, 18.8), + (382, 83, 17.4), + (382, 84, 12.8), + (382, 85, 19.8), + (383, 71, 35.5), + (383, 78, 11.5), + (383, 79, 11), + (383, 80, 26.3), + (383, 82, 15.7), + (384, 71, 28.8), + (384, 78, 24.1), + (384, 80, 22.9), + (384, 83, 13.6), + (384, 85, 10.6), + (385, 17, 13.2), + (385, 68, 22.4), + (385, 75, 17.6), + (385, 84, 12.7), + (385, 85, 10.2), + (385, 86, 23.9); + +DELETE FROM item_enchantment_template +WHERE entry IN ( + 390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409, + 410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,429,431, + 432,433,434,435,437,438,439,440,441,442,450,451,456,457,458,459,460,461,462,463, + 464,465 +); + +INSERT INTO item_enchantment_template (entry, ench, chance) VALUES + (390, 40, 7.9), + (390, 7, 4.3), + (390, 41, 11), + (390, 123, 4), + (390, 122, 4), + (390, 120, 4.2), + (390, 118, 3.8), + (390, 134, 3.2), + (390, 121, 6.7), + (390, 91, 6.4), + (390, 139, 9.1), + (390, 5, 7.9), + (390, 43, 9.7), + (390, 133, 2.7), + (390, 14, 4.2), + (390, 135, 3.3), + (390, 137, 3.4), + (390, 136, 4.0), + (391, 5, 1.3), + (391, 7, 8.2), + (391, 14, 7.9), + (391, 40, 2.3), + (391, 41, 9.4), + (391, 43, 15.1), + (391, 91, 3.1), + (391, 118, 6.3), + (391, 120, 6.5), + (391, 121, 6.7), + (391, 122, 6.2), + (391, 123, 6.4), + (391, 133, 0.9), + (391, 134, 0.9), + (391, 135, 1.0), + (391, 136, 1.2), + (391, 137, 1.0), + (391, 139, 15.1), + (392, 40, 9.1), + (392, 7, 3.6), + (392, 41, 9.8), + (392, 123, 3.4), + (392, 122, 2.7), + (392, 120, 6.1), + (392, 118, 2.5), + (392, 134, 3.3), + (392, 121, 1.5), + (392, 91, 11.5), + (392, 139, 8.4), + (392, 5, 6.3), + (392, 43, 7.7), + (392, 133, 3.1), + (392, 14, 10.7), + (392, 135, 3.5), + (392, 137, 4.6), + (392, 136, 2.1), + (393, 40, 2.6), + (393, 7, 3.6), + (393, 41, 7.6), + (393, 125, 0.6), + (393, 127, 0.7), + (393, 45, 1.3), + (393, 6, 3.6), + (393, 123, 2.5), + (393, 122, 2.2), + (393, 120, 2.3), + (393, 42, 4.2), + (393, 118, 2.5), + (393, 138, 3.6), + (393, 130, 3.8), + (393, 113, 1.8), + (393, 134, 1.6), + (393, 39, 5.6), + (393, 121, 2.4), + (393, 91, 2.6), + (393, 139, 4.5), + (393, 5, 2.7), + (393, 124, 0.7), + (393, 128, 0.7), + (393, 37, 5.6), + (393, 43, 4.7), + (393, 36, 5.4), + (393, 133, 1.3), + (393, 14, 3.6), + (393, 131, 2.3), + (393, 132, 2.2), + (393, 8, 5.5), + (393, 129, 1.5), + (393, 135, 1.3), + (393, 137, 1.6), + (393, 136, 1.3), + (394, 41, 6.8), + (394, 6, 13.7), + (394, 42, 4.6), + (394, 138, 8.9), + (394, 130, 9.6), + (394, 113, 6.1), + (394, 39, 10.8), + (394, 37, 10.6), + (394, 36, 11.3), + (394, 131, 2.6), + (394, 132, 2.4), + (394, 8, 6.5), + (394, 129, 6.6), + (395, 40, 10.5), + (395, 7, 4.6), + (395, 41, 11.9), + (395, 123, 3.0), + (395, 122, 2.7), + (395, 120, 2.8), + (395, 118, 2.8), + (395, 134, 3.6), + (395, 121, 3.8), + (395, 91, 10.4), + (395, 139, 7.8), + (395, 5, 8.2), + (395, 43, 7.2), + (395, 133, 3.9), + (395, 14, 5.1), + (395, 135, 4.1), + (395, 137, 3.8), + (395, 136, 3.8), + (396, 40, 17.4), + (396, 41, 13.3), + (396, 134, 7.2), + (396, 91, 19.0), + (396, 5, 13.3), + (396, 133, 7.6), + (396, 135, 7.4), + (396, 137, 7.3), + (396, 136, 7.3), + (397, 40, 17.7), + (397, 41, 13.8), + (397, 134, 7.2), + (397, 91, 19.4), + (397, 5, 12.7), + (397, 133, 7.7), + (397, 135, 7.6), + (397, 137, 7.0), + (397, 136, 7.1), + (398, 40, 11.3), + (398, 7, 3.0), + (398, 41, 11.8), + (398, 123, 2.4), + (398, 122, 2.5), + (398, 120, 1.9), + (398, 118, 2.5), + (398, 134, 4.8), + (398, 121, 2.5), + (398, 91, 12.1), + (398, 139, 6.7), + (398, 5, 9.2), + (398, 43, 6.4), + (398, 133, 4.5), + (398, 14, 3.2), + (398, 135, 4.6), + (398, 137, 5.2), + (398, 136, 5.3), + (399, 40, 10.3), + (399, 7, 3.8), + (399, 41, 12.1), + (399, 123, 3.0), + (399, 122, 2.9), + (399, 120, 3.7), + (399, 118, 3.3), + (399, 134, 5.0), + (399, 121, 3.1), + (399, 91, 10.2), + (399, 139, 8.5), + (399, 5, 7.0), + (399, 43, 7.4), + (399, 133, 4.4), + (399, 14, 3.8), + (399, 135, 3.9), + (399, 137, 4.1), + (399, 136, 3.6), + (400, 6, 6.7), + (400, 42, 9.3), + (400, 138, 8.9), + (400, 130, 8.8), + (400, 39, 8.9), + (400, 37, 9.8), + (400, 36, 9.0), + (400, 131, 9.1), + (400, 132, 8.7), + (400, 8, 20.8), + (401, 41, 7.8), + (401, 6, 9.8), + (401, 42, 6.8), + (401, 138, 9.8), + (401, 130, 9.0), + (401, 113, 5.2), + (401, 39, 9.5), + (401, 37, 9.7), + (401, 36, 9.5), + (401, 131, 4.2), + (401, 132, 4.1), + (401, 8, 9.9), + (401, 129, 4.7), + (402, 40, 17.5), + (402, 134, 4.9), + (402, 91, 17.0), + (402, 5, 27.3), + (402, 133, 4.3), + (402, 131, 7.9), + (402, 132, 7.8), + (402, 135, 4.7), + (402, 137, 4.0), + (402, 136, 4.6), + (403, 40, 8.4), + (403, 7, 4.9), + (403, 41, 11.1), + (403, 123, 3.6), + (403, 122, 3.6), + (403, 120, 3.9), + (403, 118, 3.4), + (403, 134, 3.5), + (403, 121, 4.6), + (403, 91, 10.2), + (403, 139, 8.7), + (403, 5, 6.1), + (403, 43, 9.1), + (403, 133, 3.2), + (403, 14, 5.0), + (403, 135, 3.2), + (403, 137, 3.5), + (403, 136, 4.1), + (404, 40, 4.2), + (404, 7, 6.8), + (404, 41, 9.9), + (404, 123, 5.5), + (404, 122, 5.8), + (404, 120, 5.6), + (404, 118, 5.6), + (404, 134, 1.6), + (404, 121, 5.2), + (404, 91, 4.7), + (404, 139, 14.1), + (404, 5, 3.3), + (404, 43, 14.1), + (404, 133, 1.4), + (404, 14, 6.9), + (404, 135, 1.9), + (404, 137, 1.7), + (404, 136, 1.6), + (405, 40, 19.0), + (405, 134, 4.9), + (405, 91, 17.9), + (405, 5, 26.0), + (405, 133, 5.0), + (405, 131, 6.6), + (405, 132, 6.6), + (405, 135, 4.9), + (405, 137, 4.8), + (405, 136, 4.4), + (406, 7, 8.3), + (406, 41, 7.3), + (406, 125, 1.7), + (406, 127, 1.5), + (406, 45, 4.4), + (406, 6, 1.4), + (406, 123, 5.2), + (406, 122, 4.7), + (406, 120, 5.2), + (406, 42, 1.0), + (406, 118, 5.4), + (406, 39, 1.6), + (406, 121, 5.2), + (406, 139, 14.5), + (406, 124, 2.2), + (406, 128, 1.7), + (406, 37, 1.0), + (406, 43, 13.7), + (406, 36, 1.1), + (406, 14, 7.3), + (406, 131, 2.3), + (406, 132, 1.9), + (406, 8, 1.6), + (407, 40, 3.6), + (407, 7, 8.0), + (407, 41, 10.0), + (407, 123, 5.4), + (407, 122, 4.8), + (407, 120, 5.9), + (407, 118, 5.7), + (407, 134, 1.4), + (407, 121, 5.9), + (407, 91, 4.8), + (407, 139, 13.2), + (407, 5, 3.3), + (407, 43, 13.6), + (407, 133, 2.4), + (407, 14, 5.9), + (407, 135, 2.4), + (407, 137, 1.9), + (407, 136, 1.8), + (408, 7, 5.0), + (408, 41, 4.8), + (408, 125, 1.6), + (408, 127, 2.4), + (408, 45, 3.5), + (408, 6, 3.1), + (408, 123, 1.8), + (408, 122, 2.1), + (408, 120, 1.9), + (408, 42, 6.5), + (408, 118, 2.5), + (408, 39, 6.0), + (408, 121, 2.2), + (408, 139, 3.5), + (408, 124, 1.6), + (408, 128, 2.0), + (408, 37, 6.4), + (408, 43, 3.8), + (408, 36, 6.0), + (408, 14, 4.7), + (408, 131, 9.7), + (408, 132, 8.5), + (408, 8, 10.2), + (409, 41, 4.6), + (409, 6, 8.8), + (409, 42, 7.3), + (409, 138, 9.4), + (409, 130, 9.0), + (409, 113, 4.4), + (409, 39, 9.9), + (409, 37, 9.6), + (409, 36, 9.6), + (409, 131, 4.7), + (409, 132, 5.0), + (409, 8, 13.4), + (409, 129, 4.4), + (410, 41, 5.3), + (410, 6, 12.2), + (410, 42, 7.1), + (410, 138, 8.0), + (410, 130, 10.2), + (410, 113, 4.5), + (410, 39, 10.4), + (410, 37, 8.4), + (410, 36, 8.9), + (410, 131, 4.6), + (410, 132, 4.8), + (410, 8, 10.2), + (410, 129, 5.5), + (411, 40, 7.4), + (411, 7, 5.0), + (411, 41, 11.0), + (411, 123, 4.4), + (411, 122, 4.7), + (411, 120, 4.8), + (411, 118, 4.6), + (411, 134, 2.8), + (411, 121, 4.6), + (411, 91, 7.6), + (411, 139, 10.8), + (411, 5, 5.1), + (411, 43, 9.7), + (411, 133, 3.0), + (411, 14, 5.0), + (411, 135, 3.0), + (411, 137, 3.1), + (411, 136, 3.3), + (412, 40, 2.1), + (412, 7, 9.3), + (412, 41, 9.4), + (412, 123, 6.4), + (412, 122, 6.1), + (412, 120, 6.7), + (412, 118, 5.9), + (412, 134, 1.4), + (412, 121, 6.4), + (412, 91, 3.1), + (412, 139, 15.5), + (412, 5, 2.4), + (412, 43, 13.9), + (412, 133, 1.1), + (412, 14, 7.2), + (412, 135, 1.0), + (412, 137, 0.9), + (412, 136, 1.4), + (413, 7, 9.3), + (413, 41, 9.4), + (413, 123, 6.4), + (413, 122, 6.1), + (413, 120, 6.7), + (413, 118, 5.9), + (413, 134, 1.4), + (413, 121, 6.4), + (413, 91, 3.1), + (413, 139, 15.5), + (413, 5, 2.4), + (413, 43, 13.9), + (413, 133, 1.1), + (413, 14, 7.2), + (413, 135, 1.0), + (413, 137, 0.9), + (413, 136, 1.4), + (414, 41, 6.9), + (414, 6, 13.8), + (414, 42, 4.5), + (414, 138, 9.7), + (414, 130, 8.5), + (414, 113, 6.2), + (414, 39, 10.4), + (414, 37, 10.6), + (414, 36, 11.1), + (414, 131, 2.9), + (414, 132, 2.1), + (414, 8, 6.6), + (414, 129, 6.8), + (415, 142, 6.5), + (415, 152, 5.5), + (415, 159, 5.5), + (415, 145, 5.5), + (415, 150, 5.5), + (415, 157, 5.5), + (415, 143, 5.5), + (415, 149, 5.5), + (415, 155, 5.5), + (415, 144, 5.5), + (415, 147, 5.5), + (415, 154, 5.5), + (415, 141, 5.5), + (415, 151, 5.5), + (415, 158, 5.5), + (415, 140, 5.5), + (415, 153, 5.5), + (415, 156, 5.5), + (416, 162, 6.5), + (416, 165, 5.5), + (416, 168, 5.5), + (416, 145, 5.5), + (416, 150, 5.5), + (416, 157, 5.5), + (416, 143, 5.5), + (416, 149, 5.5), + (416, 155, 5.5), + (416, 144, 5.5), + (416, 147, 5.5), + (416, 154, 5.5), + (416, 161, 5.5), + (416, 164, 5.5), + (416, 167, 5.5), + (416, 160, 5.5), + (416, 163, 5.5), + (416, 166, 5.5), + (417, 171, 20.3), + (417, 170, 26.2), + (417, 172, 26.6), + (417, 169, 26.9), + (418, 171, 26.5), + (418, 170, 24.3), + (418, 172, 25.9), + (418, 169, 23.4), + (419, 175, 21.5), + (419, 173, 31.9), + (419, 176, 25.3), + (419, 174, 21.4), + (420, 175, 35.9), + (420, 173, 22.8), + (420, 176, 22.8), + (420, 174, 18.5), + (421, 122, 21.1), + (421, 120, 22.7), + (421, 118, 24.8), + (421, 121, 31.4), + (422, 180, 41.7), + (422, 181, 21.9), + (422, 182, 36.5), + (423, 224, 32.5), + (423, 225, 34.7), + (423, 226, 32.8), + (424, 207, 34.0), + (424, 208, 32.3), + (424, 209, 33.7), + (425, 177, 31.3), + (425, 178, 33.3), + (425, 179, 33.5), + (426, 125, 23.7), + (426, 127, 25.9), + (426, 128, 50.5), + (427, 186, 17.4), + (427, 185, 14.0), + (427, 184, 17.0), + (427, 187, 17.3), + (427, 188, 14.3), + (427, 183, 19.9), + (429, 138, 14.7), + (429, 130, 15.5), + (429, 114, 17.2), + (429, 131, 30.6), + (429, 132, 11.2), + (429, 129, 10.9), + (431, 192, 12.3), + (431, 191, 9.8), + (431, 190, 20.2), + (431, 193, 11.0), + (431, 194, 30.1), + (431, 189, 16.6), + (432, 186, 22.7), + (432, 185, 29.5), + (432, 187, 22.2), + (432, 188, 25.6), + (433, 230, 27.8), + (433, 229, 23.8), + (433, 231, 23.1), + (433, 232, 25.2), + (434, 213, 25.6), + (434, 212, 24.9), + (434, 214, 25.1), + (434, 215, 24.3), + (435, 192, 39.7), + (435, 191, 19.0), + (435, 193, 21.5), + (435, 194, 19.8), + (437, 195, 22.9), + (437, 196, 25.4), + (437, 197, 28.5), + (437, 198, 23.2), + (438, 216, 26.3), + (438, 217, 24.1), + (438, 218, 23.8), + (438, 219, 25.8), + (439, 233, 24.8), + (439, 234, 25.6), + (439, 235, 27.4), + (439, 236, 22.2), + (440, 199, 23.5), + (440, 200, 22.2), + (440, 201, 23.5), + (440, 202, 30.9), + (441, 133, 20.0), + (441, 135, 26.5), + (441, 137, 33.2), + (441, 136, 20.3), + (442, 125, 2.0), + (442, 127, 2.8), + (442, 123, 5.8), + (442, 122, 5.9), + (442, 120, 6.4), + (442, 118, 6.0), + (442, 138, 8.3), + (442, 130, 8.3), + (442, 113, 4.8), + (442, 134, 4.1), + (442, 121, 6.2), + (442, 124, 2.6), + (442, 128, 2.8), + (442, 133, 4.2), + (442, 131, 5.8), + (442, 132, 5.7), + (442, 129, 4.8), + (442, 135, 4.4), + (442, 137, 4.3), + (442, 136, 4.3), + (450, 134, 12.4), + (450, 133, 12.1), + (450, 131, 18.7), + (450, 132, 17.9), + (450, 135, 12.9), + (450, 137, 12.8), + (450, 136, 13.1), + (451, 134, 13.5), + (451, 133, 12.5), + (451, 131, 16.6), + (451, 132, 18.2), + (451, 135, 12.7), + (451, 137, 13.5), + (451, 136, 13.0), + (456, 268, 17.8), + (456, 267, 18.7), + (456, 266, 16.8), + (456, 269, 14.8), + (456, 270, 14.9), + (456, 265, 17.0), + (457, 262, 16.5), + (457, 271, 17.8), + (457, 261, 16.8), + (457, 269, 17.7), + (457, 270, 14.5), + (457, 265, 16.7), + (458, 272, 35.6), + (458, 273, 31.9), + (458, 274, 32.6), + (459, 275, 29.9), + (459, 276, 25.9), + (459, 277, 44.2), + (460, 281, 26.4), + (460, 280, 25.3), + (460, 282, 23.3), + (460, 283, 25.0), + (461, 285, 24.9), + (461, 284, 24.6), + (461, 286, 24.8), + (461, 287, 25.7), + (462, 133, 24.0), + (462, 135, 24.1), + (462, 137, 27.0), + (462, 136, 24.9), + (463, 133, 28.9), + (463, 135, 24.0), + (463, 137, 21.3), + (463, 136, 25.9), + (464, 288, 24.9), + (464, 290, 26.3), + (464, 289, 25.1), + (464, 291, 23.6), + (465, 292, 25.8), + (465, 294, 22.0), + (465, 293, 25.7), + (465, 295, 26.5); diff --git a/tools/database/overrides/1.sql b/tools/database/overrides/1.sql new file mode 100644 index 0000000000..ef65eddb61 --- /dev/null +++ b/tools/database/overrides/1.sql @@ -0,0 +1,2 @@ +-- this will run in order +-- so create more files 2.sql, 3.sql etc for hotfixes \ No newline at end of file diff --git a/tools/database/overrides/2.sql b/tools/database/overrides/2.sql new file mode 100644 index 0000000000..1e3b8a35cb --- /dev/null +++ b/tools/database/overrides/2.sql @@ -0,0 +1 @@ +-- Numero 2 \ No newline at end of file diff --git a/tools/database/ptr-generator-settings.json b/tools/database/ptr-generator-settings.json new file mode 100644 index 0000000000..95144d4117 --- /dev/null +++ b/tools/database/ptr-generator-settings.json @@ -0,0 +1,79 @@ +{ + "Settings": { + "BaseDir": "/mnt/c/Program Files (x86)/World of Warcraft", + "BuildConfig": "buildConfig", + "CDNConfig": "cdnConfig", + "Region": "us", + "Product": "wow_classic_beta" + }, + "TargetDirectory": "dbfilesclient", + "DatabaseFile": "wowsims.db", + "GameTablesOutDirectory": "../../assets/db_inputs/basestats", + "GameTables": ["chancetomeleecrit", "chancetomeleecritbase", "chancetospellcrit", "chancetospellcritbase", "combatratings", "octbasempbyclass"], + "Tables": [ + "Spell", + "Item", + "GemProperties", + "ItemSet", + "ItemSetSpell", + "ItemSubClass", + "ItemSubClassMask", + "ItemReforge", + "ItemBonus", + "ItemEffect", + "ItemClass", + "SpellCategory", + "ItemRandomProperties", + "ItemExtendedCost", + "ItemRandomSuffix", + "RandPropPoints", + "ItemDamageAmmo", + "ItemDamageOneHand", + "ItemDamageOneHandCaster", + "ItemDamageRanged", + "ItemDamageThrown", + "ItemDamageTwoHand", + "ItemDamageTwoHandCaster", + "ItemDamageWand", + "ItemNameDescription", + "ItemSparse", + "ArmorLocation", + "ItemArmorTotal", + "ItemArmorShield", + "ItemArmorQuality", + "SkillLineAbility", + "SkillLine", + "Curve", + "CurvePoint", + "Difficulty", + "SpellEquippedItems", + "SpellRadius", + "SpellMisc", + "SpellLevels", + "SpellPower", + "SpellLabel", + "SpellName", + "ScalingStatDistribution", + "SpellCooldowns", + "SpellScaling", + "SpellClassOptions", + "SpellRange", + "SpellReagents", + "SpellInterrupts", + "SpellItemEnchantment", + "SpellCategories", + "SpellShapeshift", + "SpellEffect", + "SpellDuration", + "SpellAuraOptions", + "GlyphProperties", + "SpellMechanic", + "Talent", + "TalentTab", + "Map", + "JournalEncounter", + "JournalEncounterItem", + "AreaTable", + "JournalInstance" + ] +} diff --git a/tools/database/random_prop_points.go b/tools/database/random_prop_points.go deleted file mode 100644 index a871faf4a8..0000000000 --- a/tools/database/random_prop_points.go +++ /dev/null @@ -1,95 +0,0 @@ -package database - -import ( - "encoding/json" - "fmt" - "log" - "strconv" - - "github.com/tailscale/hujson" - "github.com/wowsims/cata/sim/core/proto" -) - -type RandomPropAllocation struct { - Epic0 int32 `json:"Epic_0"` - Epic1 int32 `json:"Epic_1"` - Epic2 int32 `json:"Epic_2"` - Epic3 int32 `json:"Epic_3"` - Epic4 int32 `json:"Epic_4"` - Superior0 int32 `json:"Superior_0"` - Superior1 int32 `json:"Superior_1"` - Superior2 int32 `json:"Superior_2"` - Superior3 int32 `json:"Superior_3"` - Superior4 int32 `json:"Superior_4"` - Good0 int32 `json:"Good_0"` - Good1 int32 `json:"Good_1"` - Good2 int32 `json:"Good_2"` - Good3 int32 `json:"Good_3"` - Good4 int32 `json:"Good_4"` -} - -type RandomPropAllocationMap map[proto.ItemQuality][5]int32 - -type RandomPropAllocationsByIlvl map[int32]RandomPropAllocationMap - -func ParseRandPropPointsTable(contents string) RandomPropAllocationsByIlvl { - var rawAllocationMap map[string]RandomPropAllocation - standardized, err := hujson.Standardize([]byte(contents)) // Removes invalid JSON, such as trailing commas - if err != nil { - log.Fatalf("Failed to standardize json %s\n\n%s\n\n%s", err, contents[0:30], contents[len(contents)-30:]) - } - - err = json.Unmarshal(standardized, &rawAllocationMap) - if err != nil { - log.Fatalf("failed to parse RandPropPoints table to json %s\n\n%s", err, contents[0:30]) - } - fmt.Printf("\n--\nRandom property allocations loaded: %d\n--\n", len(rawAllocationMap)) - - processedAllocationMap := make(RandomPropAllocationsByIlvl) - - for ilvlStr, allocations := range rawAllocationMap { - ilvl, err := strconv.ParseInt(ilvlStr, 10, 32) - if err != nil { - panic(err) - } - processedAllocationMap[int32(ilvl)] = RandomPropAllocationMap{ - proto.ItemQuality_ItemQualityEpic: [5]int32{allocations.Epic0, allocations.Epic1, allocations.Epic2, allocations.Epic3, allocations.Epic4}, - proto.ItemQuality_ItemQualityRare: [5]int32{allocations.Superior0, allocations.Superior1, allocations.Superior2, allocations.Superior3, allocations.Superior4}, - proto.ItemQuality_ItemQualityUncommon: [5]int32{allocations.Good0, allocations.Good1, allocations.Good2, allocations.Good3, allocations.Good4}, - } - } - - return processedAllocationMap -} - -func (allocationMap RandomPropAllocationsByIlvl) CalcItemAllocation(item *proto.UIItem) int32 { - idx := -1 - - switch item.Type { - case proto.ItemType_ItemTypeHead, proto.ItemType_ItemTypeChest, proto.ItemType_ItemTypeLegs: - idx = 0 - case proto.ItemType_ItemTypeShoulder, proto.ItemType_ItemTypeWaist, proto.ItemType_ItemTypeFeet, proto.ItemType_ItemTypeHands, proto.ItemType_ItemTypeTrinket: - idx = 1 - case proto.ItemType_ItemTypeNeck, proto.ItemType_ItemTypeWrist, proto.ItemType_ItemTypeFinger, proto.ItemType_ItemTypeBack: - idx = 2 - case proto.ItemType_ItemTypeRanged: - switch item.RangedWeaponType { - case proto.RangedWeaponType_RangedWeaponTypeBow, proto.RangedWeaponType_RangedWeaponTypeCrossbow, proto.RangedWeaponType_RangedWeaponTypeGun, proto.RangedWeaponType_RangedWeaponTypeThrown, proto.RangedWeaponType_RangedWeaponTypeWand: - idx = 4 - } - case proto.ItemType_ItemTypeWeapon: - switch item.WeaponType { - case proto.WeaponType_WeaponTypeOffHand, proto.WeaponType_WeaponTypeShield: - idx = 2 - default: - switch item.HandType { - case proto.HandType_HandTypeTwoHand: - idx = 0 - default: - idx = 3 - } - } - } - - return allocationMap[item.Ilvl][item.Quality][idx] -} diff --git a/tools/database/tables.go b/tools/database/tables.go new file mode 100644 index 0000000000..266fa5f29b --- /dev/null +++ b/tools/database/tables.go @@ -0,0 +1,1200 @@ +package database + +import ( + "database/sql" + "fmt" + "strconv" + "strings" + + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/tools/database/dbc" +) + +// Loading tables +// Below is the definition and loading of tables +// + +// Raw Item Data + +func ScanRawItemData(rows *sql.Rows) (dbc.Item, error) { + var raw dbc.Item + var randomSuffixOptions sql.NullString + var statPercentageOfSocket string + var bonusAmountCalculated string + var bonusStatString string + var statValue string + var socketTypes string + var statPercentEditor string + err := rows.Scan(&raw.Id, &raw.Name, &raw.InventoryType, &raw.ItemDelay, &raw.OverallQuality, &raw.DmgVariance, + &raw.ItemLevel, + &statValue, &bonusStatString, + &statPercentEditor, &socketTypes, &raw.SocketEnchantmentId, &raw.Flags0, &raw.FDID, &raw.ItemSetName, &raw.ItemSetId, &raw.Flags1, &raw.ClassMask, &raw.RaceMask, &raw.QualityModifier, &randomSuffixOptions, &statPercentageOfSocket, &bonusAmountCalculated, &raw.ItemClass, &raw.ItemSubClass) + if err != nil { + panic("Error scanning item data") + } + var parseErr error + raw.RandomSuffixOptions, parseErr = ParseRandomSuffixOptions(randomSuffixOptions) + if parseErr != nil { + return raw, fmt.Errorf("failed to parse RandomSuffixOptions: %w", parseErr) + } + + raw.StatPercentageOfSocket, err = parseFloatArrayField(statPercentageOfSocket, 10) + if err != nil { + return raw, fmt.Errorf("failed to parse StatPercentageOfSocket: %w %s", err, statPercentageOfSocket) + } + raw.StatAlloc, err = parseFloatArrayField(statValue, 10) + if err != nil { + return raw, fmt.Errorf("failed to parse StatAlloc: %w", err) + } + raw.BonusAmountCalculated, err = parseFloatArrayField(bonusAmountCalculated, 10) + if err != nil { + return raw, fmt.Errorf("failed to parse BonusAmountCalculated: %w", err) + } + raw.BonusStat, err = parseIntArrayField(bonusStatString, 10) + if err != nil { + return raw, fmt.Errorf("failed to parse BonusStat: %w", err) + } + raw.Sockets, err = parseIntArrayField(socketTypes, 3) + if err != nil { + return raw, fmt.Errorf("failed to parse Sockets: %w", err) + } + raw.SocketModifier, err = parseFloatArrayField(statPercentEditor, 10) + if err != nil { + return raw, fmt.Errorf("failed to parse SocketModifier: %w", err) + } + return raw, err +} + +func LoadRawItems(dbHelper *DBHelper, filter string) ([]dbc.Item, error) { + baseQuery := ` + SELECT + i.ID, + s.Display_lang AS Name, + i.InventoryType, + s.ItemDelay, + s.OverallQualityID, + s.DmgVariance, + s.ItemLevel, + s.Field_1_15_3_55112_014 as StatValue, + s.StatModifier_bonusStat as bonusStat, + s.StatPercentEditor as StatPercentEditor, + s.SocketType as SocketTypes, + s.Field_1_15_7_59706_036 as SocketEnchantmentId, + s.Flags_0 as Flags_0, + i.IconFileDataId as FDID, + COALESCE(itemset.Name_lang, '') as ItemSetName, + COALESCE(itemset.ID, 0) as ItemSetID, + s.Flags_1 as Flags_1, + s.AllowableClass as ClassMask, + s.AllowableRace as RaceMask, + s.QualityModifier, + ( + SELECT group_concat(-ench, ',') + FROM item_enchantment_template + WHERE entry = s.ItemRandomSuffixGroupID + ) AS RandomSuffixOptions, + s.StatPercentageOfSocket, + s.StatModifier_bonusAmount, + i.ClassID, + i.SubClassID + FROM Item i + JOIN ItemSparse s ON i.ID = s.ID + JOIN ItemClass ic ON i.ClassID = ic.ClassID + JOIN ItemSubClass isc ON i.ClassID = isc.ClassID AND i.SubClassID = isc.SubClassID + JOIN RandPropPoints rpp ON s.ItemLevel = rpp.ID + LEFT JOIN ItemArmorShield ias ON s.ItemLevel = ias.ItemLevel + LEFT JOIN ItemSet itemset ON s.ItemSet = itemset.ID + LEFT JOIN ItemArmorQuality iaq ON s.ItemLevel = iaq.ID + JOIN ItemArmorTotal at ON s.ItemLevel = at.ItemLevel + ` + + if strings.TrimSpace(filter) != "" { + baseQuery += " WHERE " + filter + } + + items, err := LoadRows(dbHelper.db, baseQuery, ScanRawItemData) + fmt.Println("Loaded Items:", len(items)) + if err != nil { + fmt.Println("Error loading items:", err.Error()) + return nil, err + } + + return items, nil +} + +//ItemStatEffects +// Used for straight up item stat effects from SpellItemEnchantment (socket bonuses for now, single stat) +// + +func ScanItemStatEffects(rows *sql.Rows) (dbc.ItemStatEffect, error) { + var raw dbc.ItemStatEffect + var ePointsMin, epointsMax, eArgs string + err := rows.Scan(&raw.ID, &ePointsMin, &epointsMax, &eArgs) + if err != nil { + panic("Error scanning item stat effects") + } + raw.EffectPointsMin, err = parseIntArrayField(ePointsMin, 3) + if err != nil { + return raw, fmt.Errorf("failed to parse EffectPointsMin: %w", err) + } + raw.EffectPointsMax, err = parseIntArrayField(epointsMax, 3) + if err != nil { + return raw, fmt.Errorf("failed to parse EffectPointsMax: %w", err) + } + raw.EffectArg, err = parseIntArrayField(eArgs, 3) + if err != nil { + return raw, fmt.Errorf("failed to parse EffectArg: %w", err) + } + return raw, err +} + +func LoadItemStatEffects(dbHelper *DBHelper) ([]dbc.ItemStatEffect, error) { + query := `SELECT ID, EffectPointsMin, EffectPointsMax, EffectArg FROM SpellItemEnchantment WHERE Effect_0 = 5` + items, err := LoadRows(dbHelper.db, query, ScanItemStatEffects) + if err != nil { + return nil, fmt.Errorf("error in query load items") + } + + return items, nil +} + +func ScanItemDamageTable(rows *sql.Rows) (dbc.ItemDamageTable, error) { + var raw dbc.ItemDamageTable + var qualityString string + err := rows.Scan(&raw.ItemLevel, &qualityString) + if err != nil { + return raw, fmt.Errorf("scanning item damage table: %w", err) + } + + raw.Quality, err = parseFloatArrayField(qualityString, 7) + if err != nil { + return raw, fmt.Errorf("parsing quality string '%s': %w", qualityString, err) + } + + return raw, nil +} + +var ItemDamageByTableAndItemLevel = make(map[string]map[int]dbc.ItemDamageTable) +var itemDamageTableNames = []string{ + "ItemDamageAmmo", + "ItemDamageOneHand", + "ItemDamageOneHandCaster", + "ItemDamageRanged", + "ItemDamageTwoHand", + "ItemDamageTwoHandCaster", + "ItemDamageThrown", + "ItemDamageWand", +} + +func LoadItemDamageTables(dbHelper *DBHelper) (map[string]map[int]dbc.ItemDamageTable, error) { + for _, tableName := range itemDamageTableNames { + query := fmt.Sprintf("SELECT ItemLevel, Quality FROM %s", tableName) + items, err := LoadRows(dbHelper.db, query, ScanItemDamageTable) + if err != nil { + return nil, fmt.Errorf("error loading items for table %s: %w", tableName, err) + } + + // Cache the slice of ItemDamageTable into a map keyed by ItemLevel. + ItemDamageByTableAndItemLevel[tableName] = CacheBy(items, func(table dbc.ItemDamageTable) int { + return table.ItemLevel + }) + } + return ItemDamageByTableAndItemLevel, nil +} + +func LoadItemArmorQuality(dbHelper *DBHelper) (map[int]dbc.ItemArmorQuality, error) { + query := "SELECT ID, Qualitymod FROM ItemArmorQuality" + result, err := LoadRows(dbHelper.db, query, ScanItemArmorQualityTable) + + return CacheBy(result, func(table dbc.ItemArmorQuality) int { + return table.ItemLevel + }), err +} + +func ScanItemArmorQualityTable(rows *sql.Rows) (dbc.ItemArmorQuality, error) { + var raw dbc.ItemArmorQuality + var qualityString string + err := rows.Scan(&raw.ItemLevel, &qualityString) + if err != nil { + return raw, fmt.Errorf("scanning item armor quality: %w", err) + } + + raw.Quality, err = parseFloatArrayField(qualityString, 7) + if err != nil { + return raw, fmt.Errorf("parsing quality string '%s': %w", qualityString, err) + } + + return raw, nil +} + +func LoadItemArmorShield(dbHelper *DBHelper) (map[int]dbc.ItemArmorShield, error) { + query := "SELECT ItemLevel, Quality FROM ItemArmorShield" + result, err := LoadRows(dbHelper.db, query, ScanItemArmorShieldTable) + + return CacheBy(result, func(table dbc.ItemArmorShield) int { + return table.ItemLevel + }), err +} + +func ScanItemArmorShieldTable(rows *sql.Rows) (dbc.ItemArmorShield, error) { + var raw dbc.ItemArmorShield + var qualityString string + err := rows.Scan(&raw.ItemLevel, &qualityString) + if err != nil { + return raw, fmt.Errorf("scanning item armor shield: %w", err) + } + + raw.Quality, err = parseFloatArrayField(qualityString, 7) + if err != nil { + return raw, fmt.Errorf("parsing quality string '%s': %w", qualityString, err) + } + + return raw, nil +} +func LoadItemArmorTotal(dbHelper *DBHelper) (map[int]dbc.ItemArmorTotal, error) { + query := "SELECT ItemLevel, Cloth, Leather, Mail, Plate FROM ItemArmorTotal" + result, err := LoadRows(dbHelper.db, query, ScanItemArmorTotalTable) + return CacheBy(result, func(table dbc.ItemArmorTotal) int { + return table.ItemLevel + }), err +} + +func ScanItemArmorTotalTable(rows *sql.Rows) (dbc.ItemArmorTotal, error) { + var raw dbc.ItemArmorTotal + var qualityString string + err := rows.Scan(&raw.ItemLevel, &raw.Cloth, &raw.Leather, &raw.Mail, &raw.Plate) + if err != nil { + fmt.Println(err.Error(), 3, qualityString) + return raw, fmt.Errorf("error loading ScanItemArmorTotalTable") + } + return raw, err +} + +func LoadArmorLocation(dbHelper *DBHelper) (map[int]dbc.ArmorLocation, error) { + query := "SELECT ID, Clothmodifier, Leathermodifier, Chainmodifier, Platemodifier, Modifier FROM ArmorLocation" + result, err := LoadRows(dbHelper.db, query, ScanArmorLocation) + return CacheBy(result, func(table dbc.ArmorLocation) int { + return table.Id + }), err +} + +func ScanArmorLocation(rows *sql.Rows) (dbc.ArmorLocation, error) { + var raw dbc.ArmorLocation + raw.Modifier = [5]float64{} + err := rows.Scan(&raw.Id, &raw.Modifier[0], &raw.Modifier[1], &raw.Modifier[2], &raw.Modifier[3], &raw.Modifier[4]) + return raw, err +} + +// ItemDamage tables +func ScanGemTable(rows *sql.Rows) (dbc.Gem, error) { + var raw dbc.Gem + var statListString string + var statBonusString string + var effectString string + err := rows.Scan(&raw.ItemId, &raw.Name, &raw.FDID, &raw.GemType, &statListString, &statBonusString, &raw.MinItemLevel, &raw.Quality, &effectString, &raw.IsJc, &raw.Flags0) + if err != nil { + return raw, fmt.Errorf("scanning gem data: %w", err) + } + + raw.EffectPoints, err = parseIntArrayField(statListString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effect points for gem %d (%s): %w", raw.ItemId, statListString, err) + } + + raw.EffectArgs, err = parseIntArrayField(statBonusString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effect args for gem %d (%s): %w", raw.ItemId, statBonusString, err) + } + + raw.Effects, err = parseIntArrayField(effectString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effects for gem %d (%s): %w", raw.ItemId, effectString, err) + } + + return raw, nil +} + +func LoadRawGems(dbHelper *DBHelper) ([]dbc.Gem, error) { + query := `SELECT + s.ID, + s.Display_lang as Name, + i.IconFileDataID as FDID, + gp.'Type' as GemType, + sie.EffectPointsMax as StatList, + sie.EffectArg as StatBonus, + gp.Min_item_level MinItemLevel, + s.OverallQualityId Quality, + sie.Effect, + CASE + WHEN s.RequiredSkill = 755 THEN 1 + ELSE 0 + END AS IsJc, + s.Flags_0 + FROM ItemSparse s + JOIN Item i ON s.ID = i.ID + JOIN GemProperties gp ON s.Field_1_15_7_59706_035 = gp.ID + JOIN SpellItemEnchantment sie ON gp.Enchant_ID = sie.ID + WHERE i.ClassID = 3` + items, err := LoadRows(dbHelper.db, query, ScanGemTable) + if err != nil { + return nil, fmt.Errorf("error loading items for GemTables: %w", err) + } + + return items, nil +} + +func ScanEnchantsTable(rows *sql.Rows) (dbc.Enchant, error) { + var raw dbc.Enchant + var effectsString string + var effectPointsString string + var effectArgsString string + err := rows.Scan( + &raw.EffectId, + &raw.Name, + &raw.SpellId, + &raw.ItemId, + &raw.ProfessionId, + &effectsString, + &effectPointsString, + &effectArgsString, + &raw.IsWeaponEnchant, + &raw.InventoryType, + &raw.SubClassMask, + &raw.ClassMask, &raw.FDID, &raw.Quality, &raw.RequiredProfession, &raw.EffectName) + if err != nil { + return raw, fmt.Errorf("scanning enchant data for effect ID %d: %w", raw.EffectId, err) + } + + raw.Effects, err = parseIntArrayField(effectsString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effects for enchant %d (%s): %w", raw.EffectId, effectsString, err) + } + + raw.EffectPoints, err = parseIntArrayField(effectPointsString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effect points for enchant %d (%s): %w", raw.EffectId, effectPointsString, err) + } + + raw.EffectArgs, err = parseIntArrayField(effectArgsString, 3) + if err != nil { + return raw, fmt.Errorf("parsing effect args for enchant %d (%s): %w", raw.EffectId, effectArgsString, err) + } + + return raw, nil +} + +func LoadRawEnchants(dbHelper *DBHelper) ([]dbc.Enchant, error) { + query := `SELECT DISTINCT + sie.ID as effectId, + CASE + WHEN sn.Name_lang LIKE '%+%' THEN COALESCE(isp.Display_lang, sn.Name_lang) + ELSE sn.Name_lang + END AS name, + se.SpellID as spellId, + COALESCE(ie.ParentItemID, 0) as ItemId, + sie.Field_1_15_3_55112_014 as professionId, + sie.Effect as Effect, + sie.EffectPointsMin as EffectPoints, + sie.EffectArg as EffectArgs, + CASE + WHEN sei.EquippedItemClass = 4 THEN false + ELSE true + END AS isWeaponEnchant, + COALESCE(sei.EquippedItemInvTypes, 0) as InvTypes, + COALESCE(sei.EquippedItemSubclass, 0), + COALESCE(sla.ClassMask, 0), + COALESCE(it.IconFileDataID, 0), + COALESCE(isp.OverallQualityID, 1), + COALESCE(sie.Field_1_15_3_55112_014, 0) as RequiredProfession, + COALESCE(sie.Name_lang, "") + FROM SpellEffect se + JOIN Spell s ON se.SpellID = s.ID + JOIN SpellName sn ON se.SpellID = sn.ID + JOIN SpellItemEnchantment sie ON se.EffectMiscValue_0 = sie.ID + LEFT JOIN ItemEffect ie ON se.SpellID = ie.SpellID + LEFT JOIN SpellEquippedItems sei ON se.SpellId = sei.SpellID + LEFT JOIN SkillLineAbility sla ON se.SpellID = sla.Spell + LEFT JOIN Item it ON ie.ParentItemId = it.ID + LEFT JOIN ItemSparse isp ON ie.ParentItemId = isp.ID + WHERE se.Effect = 53 GROUP BY sn.Name_lang, sie.ID` + items, err := LoadRows(dbHelper.db, query, ScanEnchantsTable) + if err != nil { + return nil, fmt.Errorf("error loading items for GemTables: %w", err) + } + + return items, nil +} + +//RandPropPoints + +type RandPropAllocationRow struct { + Ilvl int32 + Allocation dbc.RandomPropAllocation +} + +func ScanRandPropAllocationRow(rows *sql.Rows) (RandPropAllocationRow, error) { + var row RandPropAllocationRow + var damageReplaceStat int + err := rows.Scan( + &row.Ilvl, + &damageReplaceStat, + &row.Allocation.Epic0, + &row.Allocation.Epic1, + &row.Allocation.Epic2, + &row.Allocation.Epic3, + &row.Allocation.Epic4, + &row.Allocation.Superior0, + &row.Allocation.Superior1, + &row.Allocation.Superior2, + &row.Allocation.Superior3, + &row.Allocation.Superior4, + &row.Allocation.Good0, + &row.Allocation.Good1, + &row.Allocation.Good2, + &row.Allocation.Good3, + &row.Allocation.Good4, + ) + return row, err +} + +func LoadRandomPropAllocations(dbHelper *DBHelper) (map[int32]RandPropAllocationRow, error) { + query := `SELECT ID, DamageReplaceStat, Epic_0, Epic_1, Epic_2, Epic_3, Epic_4, Superior_0, Superior_1, Superior_2, Superior_3, Superior_4, Good_0, Good_1, Good_2 ,Good_3, Good_4 FROM RandPropPoints` + rowsData, err := LoadRows(dbHelper.db, query, ScanRandPropAllocationRow) + if err != nil { + return nil, fmt.Errorf("error loading random property allocations: %w", err) + } + + processed := make(map[int32]RandPropAllocationRow) + for _, r := range rowsData { + processed[r.Ilvl] = r + } + + return processed, nil +} + +func ScanSpellEffect(rows *sql.Rows) (dbc.SpellEffect, error) { + var raw dbc.SpellEffect + // Temporary strings to hold the concatenated JSON for grouped fields. + var miscValuesStr, radiusIndicesStr, spellClassMasksStr, implicitTargetsStr string + err := rows.Scan( + &raw.ID, + &raw.DifficultyID, + &raw.EffectIndex, + &raw.EffectType, + &raw.EffectAmplitude, + &raw.EffectAttributes, + &raw.EffectAura, + &raw.EffectAuraPeriod, + &raw.EffectBasePoints, + &raw.EffectBonusCoefficient, + &raw.EffectChainAmplitude, + &raw.EffectChainTargets, + &raw.EffectDieSides, + &raw.EffectItemType, + &raw.EffectMechanic, + &raw.EffectPointsPerResource, + &raw.EffectPosFacing, + &raw.EffectRealPointsPerLevel, + &raw.EffectTriggerSpell, + &raw.BonusCoefficientFromAP, + &raw.PvpMultiplier, + &raw.Coefficient, + &raw.Variance, + &raw.ResourceCoefficient, + &raw.GroupSizeBasePointsCoefficient, + &miscValuesStr, + &radiusIndicesStr, + &spellClassMasksStr, + &implicitTargetsStr, + &raw.SpellID, + &raw.ScalingType, + ) + if err != nil { + return raw, err + } + + raw.EffectMiscValues, err = parseIntArrayField(miscValuesStr, 2) + if err != nil { + return raw, fmt.Errorf("error parsing EffectMiscValues: %w", err) + } + raw.EffectRadiusIndices, err = parseIntArrayField(radiusIndicesStr, 2) + if err != nil { + return raw, fmt.Errorf("error parsing EffectRadiusIndices: %w", err) + } + raw.EffectSpellClassMasks, err = parseIntArrayField(spellClassMasksStr, 4) + if err != nil { + return raw, fmt.Errorf("error parsing EffectSpellClassMasks: %w", err) + } + raw.ImplicitTargets, err = parseIntArrayField(implicitTargetsStr, 2) + if err != nil { + return raw, fmt.Errorf("error parsing ImplicitTargets: %w", err) + } + + return raw, nil +} + +func LoadRawSpellEffects(dbHelper *DBHelper) (map[int]map[int]dbc.SpellEffect, error) { + query := ` + SELECT + se.ID, + se.DifficultyID, + se.EffectIndex, + se.Effect, + se.EffectAmplitude, + se.EffectAttributes, + se.EffectAura, + se.EffectAuraPeriod, + se.EffectBasePoints, + se.EffectBonusCoefficient, + se.EffectChainAmplitude, + se.EffectChainTargets, + se.EffectDieSides, + se.EffectItemType, + se.EffectMechanic, + se.EffectPointsPerResource, + se.EffectPos_facing, + se.EffectRealPointsPerLevel, + se.EffectTriggerSpell, + se.BonusCoefficientFromAP, + se.PvpMultiplier, + se.Coefficient, + se.Variance, + se.ResourceCoefficient, + se.GroupSizeBasePointsCoefficient, + se.EffectMiscValue, + se.EffectRadiusIndex, + se.EffectSpellClassMask, + se.ImplicitTarget, + se.SpellID, + COALESCE(ss.Class, 0) + FROM SpellEffect se + LEFT JOIN SpellScaling ss ON se.SpellID = ss.SpellID + ` + items, err := LoadRows(dbHelper.db, query, ScanSpellEffect) + if err != nil { + return nil, fmt.Errorf("error loading SpellEffects: %w", err) + } + groupedBySpellID := make(map[int][]dbc.SpellEffect) + for _, effect := range items { + groupedBySpellID[effect.SpellID] = append(groupedBySpellID[effect.SpellID], effect) + } + + RawSpellEffectBySpellIdAndIndex := make(map[int]map[int]dbc.SpellEffect) + for spellID, effects := range groupedBySpellID { + RawSpellEffectBySpellIdAndIndex[spellID] = CacheBy(effects, func(e dbc.SpellEffect) int { + return e.EffectIndex + }) + } + return RawSpellEffectBySpellIdAndIndex, nil +} + +// RawRandomSuffix represents the combined result of the ItemRandomSuffix row +// with its joined SpellItemEnchantment columns. + +// ScanRawRandomSuffix scans one row from the query result into a RawRandomSuffix struct. +func ScanRawRandomSuffix(rows *sql.Rows) (dbc.RandomSuffix, error) { + var raw dbc.RandomSuffix + var ( + id int + name string + alloc0 int + alloc1 int + alloc2 int + alloc3 int + alloc4 int + eArg0 int + eArg1 int + eArg2 int + eArg3 int + eArg4 int + eff0 int + eff1 int + eff2 int + eff3 int + eff4 int + ) + + // The order here must match the SELECT list order. + err := rows.Scan( + &id, + &name, + &alloc0, + &alloc1, + &alloc2, + &alloc3, + &alloc4, + &eArg0, + &eArg1, + &eArg2, + &eArg3, + &eArg4, + &eff0, + &eff1, + &eff2, + &eff3, + &eff4, + ) + if err != nil { + return raw, err + } + + raw.ID = id + raw.Name = name + raw.AllocationPct = []int{alloc0, alloc1, alloc2, alloc3, alloc4} + raw.EffectArgs = []int{eArg0, eArg1, eArg2, eArg3, eArg4} + raw.Effects = []int{eff0, eff1, eff2, eff3, eff4} + + return raw, nil +} + +var RawRandomSuffixes []dbc.RandomSuffix +var RawRandomSuffixesById map[int]dbc.RandomSuffix + +func LoadRawRandomSuffixes(dbHelper *DBHelper) ([]dbc.RandomSuffix, error) { + query := ` + SELECT + COALESCE(-irs.ID, 0) AS ID, + COALESCE(irs.Name_lang, '') AS Name_lang, + COALESCE(irs.AllocationPct_0, 0) AS AllocationPct_0, + COALESCE(irs.AllocationPct_1, 0) AS AllocationPct_1, + COALESCE(irs.AllocationPct_2, 0) AS AllocationPct_2, + COALESCE(irs.AllocationPct_3, 0) AS AllocationPct_3, + COALESCE(irs.AllocationPct_4, 0) AS AllocationPct_4, + COALESCE(sie0.EffectArg_0, 0) AS EffectArg_0, + COALESCE(sie1.EffectArg_0, 0) AS EffectArg_1, + COALESCE(sie2.EffectArg_0, 0) AS EffectArg_2, + COALESCE(sie3.EffectArg_0, 0) AS EffectArg_3, + COALESCE(sie4.EffectArg_0, 0) AS EffectArg_4, + COALESCE(sie0.Effect_0, 0) AS Effect_0, + COALESCE(sie1.Effect_0, 0) AS Effect_1, + COALESCE(sie2.Effect_0, 0) AS Effect_2, + COALESCE(sie3.Effect_0, 0) AS Effect_3, + COALESCE(sie4.Effect_0, 0) AS Effect_4 + FROM ItemRandomSuffix irs + LEFT JOIN SpellItemEnchantment sie0 ON irs.Enchantment_0 = sie0.ID + LEFT JOIN SpellItemEnchantment sie1 ON irs.Enchantment_1 = sie1.ID + LEFT JOIN SpellItemEnchantment sie2 ON irs.Enchantment_2 = sie2.ID + LEFT JOIN SpellItemEnchantment sie3 ON irs.Enchantment_3 = sie3.ID + LEFT JOIN SpellItemEnchantment sie4 ON irs.Enchantment_4 = sie4.ID; +` + // Use your generic LoadRows function to scan each row into a RawRandomSuffix. + items, err := LoadRows(dbHelper.db, query, ScanRawRandomSuffix) + if err != nil { + return nil, fmt.Errorf("error loading RawRandomSuffixes: %w", err) + } + + RawRandomSuffixes = items + RawRandomSuffixesById = CacheBy(items, func(suffix dbc.RandomSuffix) int { + return suffix.ID + }) + return items, nil +} + +func ScanConsumable(rows *sql.Rows) (dbc.Consumable, error) { + var consumable dbc.Consumable + var itemEffectsStr sql.NullString + + err := rows.Scan( + &consumable.Id, + &consumable.Name, + &consumable.ItemLevel, + &consumable.RequiredLevel, + &consumable.ClassId, + &consumable.SubClassId, + &consumable.IconFileDataID, + &consumable.SpellCategoryID, + &consumable.SpellCategoryFlags, + &itemEffectsStr, + &consumable.ElixirType, + &consumable.Duration, + ) + if err != nil { + return consumable, fmt.Errorf("scanning consumable data: %w", err) + } + + if !itemEffectsStr.Valid || itemEffectsStr.String == "" || itemEffectsStr.String == "null" { + consumable.ItemEffects = []int{} + } else { + parts := strings.Split(itemEffectsStr.String, ",") + effects := make([]int, 0, len(parts)) + for _, part := range parts { + token := strings.TrimSpace(part) + num, err := strconv.Atoi(token) + if err != nil { + fmt.Printf("Warning: parsing item effects for consumable %d (%s): %v\n", consumable.Id, token, err) + effects = []int{} + break + } + effects = append(effects, num) + } + consumable.ItemEffects = effects + } + + return consumable, nil +} + +func LoadConsumables(dbHelper *DBHelper) ([]dbc.Consumable, error) { + query := ` + SELECT + i.ID, + s.Display_lang AS Name, + s.ItemLevel, + s.RequiredLevel, + i.ClassID, + i.SubClassID, + i.IconFileDataID, + COALESCE(ie.SpellCategoryID, 0) AS SpellCategoryID, + COALESCE(sc.Flags, 0) AS SpellCategoryFlags, + ( + SELECT group_concat(ie2.ID, ',') + FROM ItemEffect ie2 + WHERE ie2.ParentItemID = i.ID + ) AS ItemEffects, + CASE + WHEN sp.Description_lang LIKE '%Guardian Elixir%' THEN 1 + WHEN sp.Description_lang LIKE '%Battle Elixir%' THEN 2 + ELSE 0 + END AS ElixirType, + COALESCE(sd.Duration, 0) as Duration + FROM Item i + JOIN ItemSparse s ON i.ID = s.ID + LEFT JOIN ItemEffect ie ON i.ID = ie.ParentItemID + LEFT JOIN SpellCategory sc ON ie.SpellCategoryID = sc.ID + LEFT JOIN Spell sp ON ie.SpellID = sp.ID + LEFT JOIN SpellMisc sm ON ie.SpellId = sm.SpellID + LEFT JOIN SpellDuration sd ON sm.DurationIndex = sd.ID + WHERE ((i.ClassID = 0 AND i.SubclassID IS NOT 0 AND i.SubclassID IS NOT 8 AND i.SubclassID IS NOT 6) OR (i.ClassID = 7 AND i.SubclassID = 2)) AND ItemEffects is not null AND (s.RequiredLevel >= 80 OR i.ID = 22788 OR i.ID = 13442) + AND s.Display_lang != '' + AND s.Display_lang NOT LIKE '%Test%' + AND s.Display_lang NOT LIKE 'QA%' + GROUP BY i.ID + ` + + consumables, err := LoadRows(dbHelper.db, query, ScanConsumable) + if err != nil { + return nil, fmt.Errorf("error loading consumables: %w", err) + } + + fmt.Println("Loaded Consumables:", len(consumables)) + return consumables, nil +} + +func ScanItemEffect(rows *sql.Rows) (dbc.ItemEffect, error) { + var effect dbc.ItemEffect + + err := rows.Scan( + &effect.ID, + &effect.LegacySlotIndex, + &effect.TriggerType, + &effect.Charges, + &effect.CoolDownMSec, + &effect.CategoryCoolDownMSec, + &effect.SpellCategoryID, + &effect.SpellID, + &effect.ChrSpecializationID, + &effect.ParentItemID, + ) + if err != nil { + return effect, fmt.Errorf("scanning item effect data: %w", err) + } + + return effect, nil +} + +func LoadItemEffects(dbHelper *DBHelper) ([]dbc.ItemEffect, error) { + query := ` + SELECT + ID, + LegacySlotIndex, + TriggerType, + Charges, + CoolDownMSec, + CategoryCoolDownMSec, + SpellCategoryID, + SpellID, + ChrSpecializationID, + ParentItemID + FROM ItemEffect + ` + + effects, err := LoadRows(dbHelper.db, query, ScanItemEffect) + if err != nil { + return nil, fmt.Errorf("error loading item effects: %w", err) + } + + fmt.Println("Loaded ItemEffects:", len(effects)) + return effects, nil +} + +type RawGlyph struct { + ItemId int32 + Name string + SpellId int32 + Description string + GlyphType int32 + ClassMask int32 + FDID int32 +} + +func ScanGlyphs(rows *sql.Rows) (RawGlyph, error) { + var glyph RawGlyph + + err := rows.Scan( + &glyph.ItemId, + &glyph.SpellId, + &glyph.Name, + &glyph.Description, + &glyph.GlyphType, + &glyph.ClassMask, + &glyph.FDID, + ) + if err != nil { + return glyph, fmt.Errorf("scanning glyph data: %w", err) + } + + return glyph, nil +} + +func LoadGlyphs(dbHelper *DBHelper) ([]RawGlyph, error) { + query := ` +SELECT DISTINCT i.ID, se.ID, is2.Display_lang, glyphSpell.Description_lang, gp.Field_3_4_0_43659_001, i.SubclassID, sm.SpellIconFileDataID +FROM Item i +LEFT JOIN ItemSparse is2 ON i.ID = is2.ID +LEFT JOIN ItemEffect ie ON ie.ParentItemID = i.ID +JOIN SpellEffect se ON se.SpellID = ie.SpellID AND se.Effect=74 +LEFT JOIN GlyphProperties gp ON gp.ID = se.EffectMiscValue_0 +LEFT JOIN Spell glyphSpell ON glyphSpell.ID = gp.SpellID +LEFT JOIN SpellEffect gse ON gse.SpellID = glyphSpell.ID +LEFT JOIN SpellMisc sm ON sm.SpellID = glyphSpell.ID +WHERE i.ClassID = 16 +GROUP BY i.ID + + ` + + effects, err := LoadRows(dbHelper.db, query, ScanGlyphs) + if err != nil { + return nil, fmt.Errorf("error loading glyphs : %w", err) + } + + fmt.Println("Loaded glyphs:", len(effects)) + return effects, nil +} + +type RawTalent struct { + TierID int + TalentName string + ColumnIndex int + ClassMask int + SpellID int +} + +func ScanTalent(rows *sql.Rows) (RawTalent, error) { + var talent RawTalent + + err := rows.Scan( + &talent.TierID, + &talent.TalentName, + &talent.ColumnIndex, + &talent.ClassMask, + &talent.SpellID, + ) + if err != nil { + return talent, fmt.Errorf("scanning talent data: %w", err) + } + + return talent, nil +} + +func LoadTalents(dbHelper *DBHelper) ([]RawTalent, error) { + query := ` +SELECT + t.TierID, + sn.Name_lang, + t.ColumnIndex, + t.ClassID, + t.SpellID +FROM Talent t +JOIN SpellName sn ON sn.ID = t.SpellID +WHERE sn.Name_lang IS NOT "Dummy 5.0 Talent" +ORDER BY t.ClassID; +` + + talents, err := LoadRows(dbHelper.db, query, ScanTalent) + if err != nil { + return nil, fmt.Errorf("error loading talents: %w", err) + } + + fmt.Println("Loaded talents:", len(talents)) + return talents, nil +} + +type SpellIcon struct { + SpellID int + FDID int + HasBuff bool + Name string +} + +func ScanSpellIcon(rows *sql.Rows) (SpellIcon, error) { + var icon SpellIcon + + err := rows.Scan( + &icon.SpellID, + &icon.FDID, + &icon.HasBuff, + &icon.Name, + ) + if err != nil { + return icon, fmt.Errorf("scanning talent data: %w", err) + } + + return icon, nil +} + +func LoadSpellIcons(dbHelper *DBHelper) (map[int]SpellIcon, error) { + query := ` + SELECT + sm.SpellID, + sm.SpellIconFileDataID, + ( + (sm.Attributes_4 & 0x00001000) <> 0 + OR EXISTS ( + SELECT 1 + FROM SpellEffect se + WHERE se.SpellID = sm.SpellID + AND se.Effect = 6 + ) OR (ss.AuraDescription_lang != '' and ss.AuraDescription_lang is not null) + ) AS HasBuff, + sn.Name_lang +FROM SpellMisc sm +LEFT JOIN Spell ss ON ss.ID = sm.SpellID +LEFT JOIN SpellName sn ON sn.ID = sm.SpellID; +` + + talents, err := LoadRows(dbHelper.db, query, ScanSpellIcon) + if err != nil { + return nil, fmt.Errorf("error loading spellicons: %w", err) + } + iconsByID := make(map[int]SpellIcon, len(talents)) + for _, icon := range talents { + iconsByID[icon.SpellID] = icon + } + fmt.Println("Loaded spellicons:", len(talents)) + return iconsByID, nil +} + +func ScanSpells(rows *sql.Rows) (dbc.Spell, error) { + var spell dbc.Spell + + var stringAttr string + var stringClassMask string + var stringProcType string //2 + var stringAuraIFlags string //2 + var stringChannelInterruptFlags string // 2 + var stringShapeShift string //2 + + err := rows.Scan( + &spell.NameLang, + &spell.ID, + &spell.SchoolMask, + &spell.Speed, + &spell.LaunchDelay, + &spell.MinDuration, + &spell.MaxScalingLevel, + &spell.MinScalingLevel, + &spell.ScalesFromItemLevel, + &spell.SpellLevel, + &spell.BaseLevel, + &spell.MaxLevel, + &spell.MaxPassiveAuraLevel, + &spell.Cooldown, + &spell.GCD, + &spell.RangeIndex, + &stringAttr, + &spell.CategoryFlags, + &spell.MaxCharges, + &spell.ChargeRecoveryTime, + &spell.CategoryTypeMask, + &spell.Category, + &spell.Duration, + &spell.ProcChance, + &spell.ProcCharges, + &stringProcType, + &spell.ProcCategoryRecovery, + &spell.SpellProcsPerMinuteID, + &spell.EquippedItemClass, + &spell.EquippedItemInvTypes, + &spell.EquippedItemSubclass, + &spell.CastTimeMin, + &stringClassMask, + &spell.SpellClassSet, + &stringAuraIFlags, + &stringChannelInterruptFlags, + &stringShapeShift, + ) + if err != nil { + return spell, fmt.Errorf("scanning spell data: %w", err) + } + + spell.Attributes, err = parseIntArrayField(stringAttr, 16) + if err != nil { + return spell, fmt.Errorf("parsing attributes args for spell %d (%s): %w", spell.ID, stringAttr, err) + } + spell.SpellClassMask, err = parseIntArrayField(stringClassMask, 4) + if err != nil { + return spell, fmt.Errorf("parsing classmask args for spell %d (%s): %w", spell.ID, stringClassMask, err) + } + + spell.ProcTypeMask, err = parseIntArrayField(stringProcType, 2) + if err != nil { + return spell, fmt.Errorf("parsing ProcTypeMask args for spell %d (%s): %w", spell.ID, stringProcType, err) + } + spell.AuraInterruptFlags, err = parseIntArrayField(stringAuraIFlags, 2) + if err != nil { + return spell, fmt.Errorf("parsing stringAuraIFlags args for spell %d (%s): %w", spell.ID, stringAuraIFlags, err) + } + spell.ChannelInterruptFlags, err = parseIntArrayField(stringChannelInterruptFlags, 2) + if err != nil { + return spell, fmt.Errorf("parsing stringChannelInterruptFlags args for spell %d (%s): %w", spell.ID, stringChannelInterruptFlags, err) + } + spell.ShapeshiftMask, err = parseIntArrayField(stringShapeShift, 2) + if err != nil { + return spell, fmt.Errorf("parsing stringShapeShift args for spell %d (%s): %w", spell.ID, stringShapeShift, err) + } + + return spell, nil +} + +func LoadSpells(dbHelper *DBHelper) ([]dbc.Spell, error) { + query := ` + SELECT DISTINCT + sn.Name_lang, + sn.ID, + sm.SchoolMask, + sm.Speed, + sm.LaunchDelay, + sm.MinDuration, + COALESCE(ss.MaxScalingLevel, 0), + COALESCE(ss.MinScalingLevel, 0), + COALESCE(ss.ScalesFromItemLevel, 0), + COALESCE(sl.SpellLevel, 0), + COALESCE(sl.BaseLevel, 0), + COALESCE(sl.MaxLevel, 0), + COALESCE(sl.MaxPassiveAuraLevel, 0), + COALESCE(sc.RecoveryTime, 0), + COALESCE(sc.StartRecoveryTime, 0), + COALESCE(sm.RangeIndex, 0), + COALESCE(sm."Attributes", ""), + COALESCE(ssc.Flags, 0), + COALESCE(ssc.MaxCharges, 0), + COALESCE(ssc.ChargeRecoveryTime, 0), + COALESCE(ssc.TypeMask, 0), + COALESCE(scs.Category,0), + COALESCE(sd.Duration,0), + COALESCE(sao.ProcChance,0), + COALESCE(sao.ProcCharges,0), + COALESCE(sao.ProcTypeMask, ""), + COALESCE(sao.ProcCategoryRecovery, 0), + COALESCE(sao.SpellProcsPerMinuteID, 0), + COALESCE(sei.EquippedItemClass, 0), + COALESCE(sei.EquippedItemInvTypes, 0), + COALESCE(sei.EquippedItemSubclass,0), + COALESCE(ss.CastTimeMin, 0), + COALESCE(sco.SpellClassMask, ""), + COALESCE(sco.SpellClassSet, 0), + COALESCE(si.AuraInterruptFlags, ""), + COALESCE(si.ChannelInterruptFlags, ""), + COALESCE(ssp.ShapeshiftMask, "") + FROM Spell s + LEFT JOIN SpellName sn ON s.ID = sn.ID + LEFT JOIN SpellEffect se ON s.ID = se.SpellID + LEFT JOIN SpellMisc sm ON s.ID = sm.SpellID + LEFT JOIN SpellLevels sl ON s.ID = sl.SpellID + LEFT JOIN SpellCooldowns sc ON s.ID = sc.SpellID + LEFT JOIN SpellScaling ss ON s.ID = ss.SpellID + LEFT JOIN SpellLabel slb ON s.ID = slb.SpellID + LEFT JOIN SpellCategories scs ON s.ID = scs.SpellID + LEFT JOIN SpellCategory ssc ON ssc.ID = scs.Category + LEFT JOIN SpellDuration sd ON sm.DurationIndex = sd.ID + LEFT JOIN SpellPower sp ON sp.SpellID = s.ID + LEFT JOIN SpellInterrupts si ON si.SpellID = s.ID + LEFT JOIN SpellEquippedItems sei ON sei.SpellID = s.ID + LEFT JOIN SpellAuraOptions sao ON sao.SpellID = s.ID + LEFT JOIN SpellClassOptions sco ON s.ID = sco.SpellID + LEFT JOIN SpellShapeshift ssp ON ssp.SpellID = s.ID + WHERE sco.SpellClassSet is not null + GROUP BY s.ID +` + + spells, err := LoadRows(dbHelper.db, query, ScanSpells) + if err != nil { + return nil, fmt.Errorf("error loading spells: %w", err) + } + + fmt.Println("Loaded spells:", len(spells)) + return spells, nil +} + +func ScanDropRow(rows *sql.Rows) (int, *proto.DropSource, error) { + var ( + itemID int + mask int + ds proto.DropSource + ) + err := rows.Scan( + &itemID, + &mask, + &ds.NpcId, + &ds.ZoneId, + &ds.OtherName, + ) + + if err != nil { + return 0, &ds, fmt.Errorf("scanning drop row: %w", err) + } + return itemID, &ds, nil +} + +func LoadDropSources(dbHelper *DBHelper) (map[int][]*proto.DropSource, error) { + const query = ` + SELECT DISTINCT + jei.ItemID, + jei.DifficultyMask, + 0 AS NpcId, + COALESCE(COALESCE( + NULLIF(ji.AreaID, 0), + at.ID + ), 0) AS ZoneId, + je.Name_lang AS OtherName + FROM JournalEncounterItem AS jei + INNER JOIN JournalEncounter AS je + ON je.ID = jei.JournalEncounterID + INNER JOIN JournalInstance AS ji + ON ji.ID = je.JournalInstanceID + LEFT JOIN AreaTable AS at + ON ( + at.ZoneName = ji.Name_lang + OR at.AreaName_lang = ji.Name_lang + ) + GROUP BY jei.ItemID + ` + rows, err := dbHelper.db.Query(query) + if err != nil { + return nil, fmt.Errorf("querying drop sources: %w", err) + } + defer rows.Close() + + sourcesByItem := make(map[int][]*proto.DropSource) + for rows.Next() { + itemID, raw, err := ScanDropRow(rows) + if err != nil { + return nil, err + } + sourcesByItem[itemID] = append(sourcesByItem[itemID], raw) + } + if err := rows.Err(); err != nil { + return nil, fmt.Errorf("iterating drop rows: %w", err) + } + + return sourcesByItem, nil +} diff --git a/tools/database/tooltip_manager.go b/tools/database/tooltip_manager.go index eab2307bb8..5dddd7f92b 100644 --- a/tools/database/tooltip_manager.go +++ b/tools/database/tooltip_manager.go @@ -6,8 +6,8 @@ import ( "strconv" "strings" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/tools" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/tools" ) // Generic class for fetching tooltip info from the web. diff --git a/tools/database/utils.go b/tools/database/utils.go new file mode 100644 index 0000000000..f5f935f23f --- /dev/null +++ b/tools/database/utils.go @@ -0,0 +1,64 @@ +package database + +import ( + "database/sql" + "encoding/json" + "fmt" + "strconv" + "strings" +) + +func parseIntArrayField(jsonStr string, expectedLen int) ([]int, error) { + var arr []int + if jsonStr == "" { + return arr, nil + } + if err := json.Unmarshal([]byte(jsonStr), &arr); err != nil { + return nil, fmt.Errorf("unmarshaling JSON array: %w", err) + } + if len(arr) != expectedLen { + return nil, fmt.Errorf("invalid array length: expected %d, got %d", expectedLen, len(arr)) + } + return arr, nil +} + +func parseFloatArrayField(jsonStr string, expectedLen int) ([]float64, error) { + var arr []float64 + if err := json.Unmarshal([]byte(jsonStr), &arr); err != nil { + return nil, fmt.Errorf("unmarshaling JSON array: %w", err) + } + if len(arr) != expectedLen { + return nil, fmt.Errorf("invalid array length: expected %d, got %d", expectedLen, len(arr)) + } + return arr, nil +} + +func ParseRandomSuffixOptions(optionsString sql.NullString) ([]int32, error) { + if !optionsString.Valid || optionsString.String == "" { + return []int32{}, nil + } + + parts := strings.Split(optionsString.String, ",") + var opts []int32 + var parseErrors []string + + for i, part := range parts { + part = strings.TrimSpace(part) + if part == "" { + continue + } + + num, err := strconv.Atoi(part) + if err != nil { + parseErrors = append(parseErrors, fmt.Sprintf("part %d (%s): %v", i, part, err)) + continue + } + opts = append(opts, int32(num)) + } + + if len(parseErrors) > 0 { + return opts, fmt.Errorf("some values couldn't be parsed: %s", strings.Join(parseErrors, "; ")) + } + + return opts, nil +} diff --git a/tools/database/wago_db.go b/tools/database/wago_db.go deleted file mode 100644 index b7daedf666..0000000000 --- a/tools/database/wago_db.go +++ /dev/null @@ -1,92 +0,0 @@ -package database - -import ( - "encoding/csv" - "io" - "log" - "strconv" - "strings" - - "github.com/wowsims/cata/sim/core/proto" -) - -const ( - itemIDHeader = "ID" - flags1Header = "Flags_1" - itemSetHeader = "ItemSet" - - flag1AllianceOnly = 0x6002 - flag1HordeOnly = 0x6001 -) - -type WagoDbItem struct { - FactionRestriction proto.UIItem_FactionRestriction - ItemSetID int32 -} - -func flags1ToFactionRestriction(flags1 int) proto.UIItem_FactionRestriction { - switch flags1 { - case flag1AllianceOnly: - return proto.UIItem_FACTION_RESTRICTION_ALLIANCE_ONLY - case flag1HordeOnly: - return proto.UIItem_FACTION_RESTRICTION_HORDE_ONLY - default: - return proto.UIItem_FACTION_RESTRICTION_UNSPECIFIED - } -} - -func ParseWagoDB(dbContents string) map[int32]WagoDbItem { - r := csv.NewReader(strings.NewReader(dbContents)) - rawHeaders, err := r.Read() - if err != nil { - log.Fatalf("Cannot read wago csv header row: %v", err) - } - - headerMap := map[string]int{} - for i, name := range rawHeaders { - headerMap[name] = i - } - - if _, ok := headerMap[itemIDHeader]; !ok { - log.Fatalf("The wago csv does not have an ID header column. All columns: %#v", headerMap) - } - if _, ok := headerMap[flags1Header]; !ok { - log.Fatalf("The wago csv does not have a Flags_1 header column. All columns: %#v", headerMap) - } - if _, ok := headerMap[itemSetHeader]; !ok { - log.Fatalf("The wago csv does not have a ItemSet header column. All columns: %#v", headerMap) - } - - result := map[int32]WagoDbItem{} - for { - row, err := r.Read() - if err == io.EOF { - break - } - if err != nil { - log.Fatalf("Cannot read wago csv row: %v", err) - } - - itemID, err := strconv.Atoi(row[headerMap[itemIDHeader]]) - if err != nil { - log.Fatalf("Cannot parse ItemID from row %v: %v", row, err) - } - - flags1, err := strconv.Atoi(row[headerMap[flags1Header]]) - if err != nil { - log.Fatalf("Cannot parse Flags_1 from row %v: %v", row, err) - } - - itemSet, err := strconv.Atoi(row[headerMap[itemSetHeader]]) - if err != nil { - log.Fatalf("Cannot parse ItemSet from row %v: %v", row, err) - } - - result[int32(itemID)] = WagoDbItem{ - FactionRestriction: flags1ToFactionRestriction(flags1), - ItemSetID: int32(itemSet), - } - } - - return result -} diff --git a/tools/database/wowhead_db.go b/tools/database/wowhead_db.go deleted file mode 100644 index b1959b5662..0000000000 --- a/tools/database/wowhead_db.go +++ /dev/null @@ -1,302 +0,0 @@ -package database - -import ( - "encoding/json" - "fmt" - "log" - "strings" - - "github.com/tailscale/hujson" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" -) - -// Example db input file: https://nether.wowhead.com/cata/data/gear-planner?dv=100 - -func ParseWowheadDB(dbContents string) WowheadDatabase { - var wowheadDB WowheadDatabase - - // Each part looks like 'WH.setPageData("wow.gearPlanner.some.name", {......});' - parts := strings.Split(dbContents, "WH.setPageData(") - - for _, dbPart := range parts { - //fmt.Printf("Part len: %d\n", len(dbPart)) - if len(dbPart) < 10 { - continue - } - dbPart = strings.TrimSpace(dbPart) - dbPart = strings.TrimRight(dbPart, ");") - - if dbPart[0] != '"' { - continue - } - secondQuoteIdx := strings.Index(dbPart[1:], "\"") - if secondQuoteIdx == -1 { - continue - } - dbName := dbPart[1 : secondQuoteIdx+1] - //fmt.Printf("DB name: %s\n", dbName) - - commaIdx := strings.Index(dbPart, ",") - dbContents := dbPart[commaIdx+1:] - if dbName == "wow.gearPlanner.cata.item" { - standardized, err := hujson.Standardize([]byte(dbContents)) // Removes invalid JSON, such as trailing commas - if err != nil { - log.Fatalf("Failed to standardize json %s\n\n%s\n\n%s", err, dbContents[0:30], dbContents[len(dbContents)-30:]) - } - - err = json.Unmarshal(standardized, &wowheadDB.Items) - if err != nil { - log.Fatalf("failed to parse wowhead item db to json %s\n\n%s", err, dbContents[0:30]) - } - } - - if dbName == "wow.gearPlanner.cata.randomEnchant" { - standardized, err := hujson.Standardize([]byte(dbContents)) // Removes invalid JSON, such as trailing commas - if err != nil { - log.Fatalf("Failed to standardize json %s\n\n%s\n\n%s", err, dbContents[0:30], dbContents[len(dbContents)-30:]) - } - - err = json.Unmarshal(standardized, &wowheadDB.RandomSuffixes) - if err != nil { - log.Fatalf("failed to parse wowhead random suffix db to json %s\n\n%s", err, dbContents[0:30]) - } - } - } - - fmt.Printf("\n--\nWowhead DB items loaded: %d\n--\n", len(wowheadDB.Items)) - fmt.Printf("\n--\nWowhead DB random suffixes loaded: %d\n--\n", len(wowheadDB.RandomSuffixes)) - - return wowheadDB -} - -type WowheadDatabase struct { - Items map[string]WowheadItem - RandomSuffixes map[string]WowheadRandomSuffix -} - -type WowheadRandomSuffix struct { - ID int32 `json:"id"` - Name string `json:"name"` - Stats WowheadRandomSuffixStats `json:"stats"` -} - -type WowheadRandomSuffixStats struct { - Strength int32 `json:"str"` - Agility int32 `json:"agi"` - Stamina int32 `json:"sta"` - Intellect int32 `json:"int"` - Spirit int32 `json:"spi"` - SpellPower int32 `json:"spldmg"` - MP5 int32 `json:"manargn"` - HitRating int32 `json:"hitrtng"` - CritRating int32 `json:"critstrkrtng"` - HasteRating int32 `json:"hastertng"` - AttackPower int32 `json:"mleatkpwr"` - Expertise int32 `json:"exprtng"` - Armor int32 `json:"armor"` - RangedAttackPower int32 `json:"rgdatkpwr"` - Block int32 `json:"blockrtng"` - Dodge int32 `json:"dodgertng"` - Parry int32 `json:"parryrtng"` - ArcaneResistance int32 `json:"arcres"` - FireResistance int32 `json:"firres"` - FrostResistance int32 `json:"frores"` - NatureResistance int32 `json:"natres"` - ShadowResistance int32 `json:"shares"` - Mastery int32 `json:"mastrtng"` -} - -func (wrs WowheadRandomSuffix) ToProto() *proto.ItemRandomSuffix { - suffixStats := stats.Stats{ - stats.Strength: float64(wrs.Stats.Strength), - stats.Agility: float64(wrs.Stats.Agility), - stats.Stamina: float64(wrs.Stats.Stamina), - stats.Intellect: float64(wrs.Stats.Intellect), - stats.Spirit: float64(wrs.Stats.Spirit), - stats.SpellPower: float64(wrs.Stats.SpellPower), - stats.MP5: float64(wrs.Stats.MP5), - stats.HitRating: float64(wrs.Stats.HitRating), - stats.CritRating: float64(wrs.Stats.CritRating), - stats.HasteRating: float64(wrs.Stats.HasteRating), - stats.AttackPower: float64(wrs.Stats.AttackPower), - stats.ExpertiseRating: float64(wrs.Stats.Expertise), - stats.Armor: float64(wrs.Stats.Armor), - stats.RangedAttackPower: float64(wrs.Stats.RangedAttackPower), - stats.DodgeRating: float64(wrs.Stats.Dodge), - stats.ParryRating: float64(wrs.Stats.Parry), - stats.ArcaneResistance: float64(wrs.Stats.ArcaneResistance), - stats.FireResistance: float64(wrs.Stats.FireResistance), - stats.FrostResistance: float64(wrs.Stats.FrostResistance), - stats.NatureResistance: float64(wrs.Stats.NatureResistance), - stats.ShadowResistance: float64(wrs.Stats.ShadowResistance), - stats.MasteryRating: float64(wrs.Stats.Mastery), - } - - return &proto.ItemRandomSuffix{ - Id: wrs.ID, - Name: wrs.Name, - Stats: suffixStats.ToProtoArray(), - } -} - -type WowheadItem struct { - ID int32 `json:"id"` - Name string `json:"name"` - Icon string `json:"icon"` - - Quality int32 `json:"quality"` - Ilvl int32 `json:"itemLevel"` - Phase int32 `json:"contentPhase"` - - RaceMask uint32 `json:"raceMask"` - ClassMask uint16 `json:"classMask"` - - Stats WowheadItemStats `json:"stats"` - RandomSuffixOptions []int32 `json:"randomEnchants"` - - SourceTypes []int32 `json:"source"` // 1 = Crafted, 2 = Dropped by, 3 = sold by zone vendor? barely used, 4 = Quest, 5 = Sold by - SourceDetails []WowheadItemSource `json:"sourcemore"` -} -type WowheadItemStats struct { - Armor int32 `json:"armor"` -} -type WowheadItemSource struct { - C int32 `json:"c"` - S int32 `json:"s"` - Name string `json:"n"` // Name of crafting spell - Icon string `json:"icon"` // Icon corresponding to the named entity - EntityID int32 `json:"ti"` // Crafting Spell ID / NPC ID / ?? / Quest ID - ZoneID int32 `json:"z"` // Only for drop / sold by sources -} - -func (wi WowheadItem) ToProto() *proto.UIItem { - var sources []*proto.UIItemSource - for i, details := range wi.SourceDetails { - switch wi.SourceTypes[i] { - case 1: // Crafted - profession, ok := wowheadProfessionIds[details.S] - if ok { - sources = append(sources, &proto.UIItemSource{ - Source: &proto.UIItemSource_Crafted{ - Crafted: &proto.CraftedSource{ - SpellId: details.EntityID, - Profession: profession, - }, - }, - }) - } - case 2: // Dropped by - // Do nothing, we'll get this from AtlasLoot. - case 3: // Sold by zone vendor? barely used - case 4: // Quest - sources = append(sources, &proto.UIItemSource{ - Source: &proto.UIItemSource_Quest{ - Quest: &proto.QuestSource{ - Id: details.EntityID, - Name: details.Name, - }, - }, - }) - case 5: // Sold by - sources = append(sources, &proto.UIItemSource{ - Source: &proto.UIItemSource_SoldBy{ - SoldBy: &proto.SoldBySource{ - NpcId: details.EntityID, - NpcName: details.Name, - ZoneId: details.ZoneID, - }, - }, - }) - } - } - - return &proto.UIItem{ - Id: wi.ID, - Name: wi.Name, - Icon: wi.Icon, - Ilvl: wi.Ilvl, - Phase: wi.Phase, - FactionRestriction: wi.getFactionRstriction(), - ClassAllowlist: wi.getClassRestriction(), - Sources: sources, - RandomSuffixOptions: wi.RandomSuffixOptions, - } -} - -var wowheadProfessionIds = map[int32]proto.Profession{ - //"FirstAid": proto.Profession_FirstAid, - //"Cooking": proto.Profession_Cooking, - 164: proto.Profession_Blacksmithing, - 165: proto.Profession_Leatherworking, - 171: proto.Profession_Alchemy, - 186: proto.Profession_Mining, - 197: proto.Profession_Tailoring, - 202: proto.Profession_Engineering, - 333: proto.Profession_Enchanting, - 755: proto.Profession_Jewelcrafting, - 773: proto.Profession_Inscription, - 794: proto.Profession_Archeology, -} - -func (wi WowheadItem) getFactionRstriction() proto.UIItem_FactionRestriction { - if wi.RaceMask == 2098253 { - return proto.UIItem_FACTION_RESTRICTION_ALLIANCE_ONLY - } else if wi.RaceMask == 946 { - return proto.UIItem_FACTION_RESTRICTION_HORDE_ONLY - } else { - return proto.UIItem_FACTION_RESTRICTION_UNSPECIFIED - } -} - -type ClassMask uint16 - -const ( - ClassMaskWarrior ClassMask = 1 << iota - ClassMaskPaladin // 2 - ClassMaskHunter // 4 - ClassMaskRogue // 8 - ClassMaskPriest // 16 - ClassMaskDeathKnight // 32 - ClassMaskShaman // 64 - ClassMaskMage // 128 - ClassMaskWarlock // 256 - ClassMaskUnknown // 512 seemingly unused? - ClassMaskDruid // 1024 -) - -func (wi WowheadItem) getClassRestriction() []proto.Class { - classAllowlist := []proto.Class{} - if wi.ClassMask&uint16(ClassMaskWarrior) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassWarrior) - } - if wi.ClassMask&uint16(ClassMaskPaladin) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassPaladin) - } - if wi.ClassMask&uint16(ClassMaskHunter) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassHunter) - } - if wi.ClassMask&uint16(ClassMaskRogue) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassRogue) - } - if wi.ClassMask&uint16(ClassMaskPriest) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassPriest) - } - if wi.ClassMask&uint16(ClassMaskDruid) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassDruid) - } - if wi.ClassMask&uint16(ClassMaskShaman) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassShaman) - } - if wi.ClassMask&uint16(ClassMaskMage) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassMage) - } - if wi.ClassMask&uint16(ClassMaskWarlock) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassWarlock) - } - if wi.ClassMask&uint16(ClassMaskDeathKnight) != 0 { - classAllowlist = append(classAllowlist, proto.Class_ClassDeathKnight) - } - - return classAllowlist -} diff --git a/tools/database/wowhead_reforge_db.go b/tools/database/wowhead_reforge_db.go index 87a2b63b60..4f6aed3693 100644 --- a/tools/database/wowhead_reforge_db.go +++ b/tools/database/wowhead_reforge_db.go @@ -6,7 +6,7 @@ import ( "log" "github.com/tailscale/hujson" - "github.com/wowsims/cata/sim/core/proto" + "github.com/wowsims/mop/sim/core/proto" ) func ParseWowheadReforgeStats(contents string) WowheadReforgeStats { diff --git a/tools/database/wowhead_tooltips.go b/tools/database/wowhead_tooltips.go index b075791b71..5c4cd0db8f 100644 --- a/tools/database/wowhead_tooltips.go +++ b/tools/database/wowhead_tooltips.go @@ -8,9 +8,9 @@ import ( "strconv" "strings" - "github.com/wowsims/cata/sim/core" - "github.com/wowsims/cata/sim/core/proto" - "github.com/wowsims/cata/sim/core/stats" + "github.com/wowsims/mop/sim/core" + "github.com/wowsims/mop/sim/core/proto" + "github.com/wowsims/mop/sim/core/stats" ) type WowheadTooltipManager struct { @@ -28,7 +28,7 @@ func NewWowheadItemTooltipManager(filePath string) *WowheadTooltipManager { return &WowheadTooltipManager{ TooltipManager{ FilePath: filePath, - UrlPattern: "https://nether.wowhead.com/cata/tooltip/item/%s?lvl=85", + UrlPattern: "https://nether.wowhead.com/mop-classic/tooltip/item/%s?lvl=85", }, } } @@ -37,7 +37,7 @@ func NewWowheadSpellTooltipManager(filePath string) *WowheadTooltipManager { return &WowheadTooltipManager{ TooltipManager{ FilePath: filePath, - UrlPattern: "https://nether.wowhead.com/cata/tooltip/spell/%s", + UrlPattern: "https://nether.wowhead.com/mop-classic/tooltip/spell/%s", }, } } @@ -156,7 +156,7 @@ func (item WowheadItemResponse) GetIntValue(pattern *regexp.Regexp) int { return item.GetTooltipRegexValue(pattern, 1) } -var expansionRegex = regexp.MustCompile(`(tbc|wotlk|cata)`) +var expansionRegex = regexp.MustCompile(`(tbc|wotlk|cata|mop)`) var armorRegex = regexp.MustCompile(`([0-9]+) Armor`) var agilityRegex = regexp.MustCompile(`\+([0-9]+) Agility`) @@ -646,7 +646,7 @@ var dodgeGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Dodge var parryGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Parry Rating`)} var resilienceGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Resilience Rating`)} var allResistGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Resist All`)} -var masteryGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Mastery Rating`)} //https://www.wowhead.com/cata/spell=101748/zen-elven-peridot +var masteryGemStatRegexes = []*regexp.Regexp{regexp.MustCompile(`\+([0-9]+) Mastery Rating`)} //https://www.wowhead.com/mop-classic/spell=101748/zen-elven-peridot func (item WowheadItemResponse) GetGemStats() stats.Stats { stats := stats.Stats{ diff --git a/tools/io_utils.go b/tools/io_utils.go index 243e3c0450..fd492b9b06 100644 --- a/tools/io_utils.go +++ b/tools/io_utils.go @@ -12,12 +12,14 @@ import ( "net/http" "os" "slices" + "sort" "strconv" "strings" "sync" "time" - "github.com/wowsims/cata/sim/core" + "github.com/wowsims/mop/sim/core" + "golang.org/x/exp/constraints" protojson "google.golang.org/protobuf/encoding/protojson" googleProto "google.golang.org/protobuf/proto" ) @@ -145,6 +147,46 @@ func WriteProtoArrayToBuffer[T googleProto.Message](arr []T, buffer *bytes.Buffe } buffer.WriteString("]") } +func WriteProtoMapToBuffer[K constraints.Ordered, V googleProto.Message]( + m map[K]V, + buffer *bytes.Buffer, + name string, +) { + buffer.WriteString(`"`) + buffer.WriteString(name) + buffer.WriteString(`":{` + "\n") + + keys := make([]K, 0, len(m)) + for k := range m { + keys = append(keys, k) + } + sort.Slice(keys, func(i, j int) bool { + return keys[i] < keys[j] + }) + + for i, k := range keys { + jsonBytes, err := protojson.MarshalOptions{UseEnumNumbers: true}.Marshal(m[k]) + if err != nil { + log.Printf("[ERROR] Failed to marshal key %v: %v", k, err) + continue + } + if bytes.Equal(jsonBytes, []byte("{}")) { + continue + } + buffer.WriteString(`"`) + buffer.WriteString(fmt.Sprint(k)) + buffer.WriteString(`":`) + // Format using Compact() so we get a stable output (no random diffs for version control). + json.Compact(buffer, jsonBytes) + + if i != len(keys)-1 { + buffer.WriteString(",") + } + buffer.WriteString("\n") + } + + buffer.WriteString("}") +} // Fetches web results a single url, and returns the page contents as a string. func ReadWeb(url string) (string, error) { diff --git a/tools/scrape_enchant_descriptions.py b/tools/scrape_enchant_descriptions.py deleted file mode 100644 index 9a92b7e58c..0000000000 --- a/tools/scrape_enchant_descriptions.py +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/python - -# Usage example: -# python3 ./tools/scrape_enchant_descriptions.py ./sim/core/items/all_enchants.go ./assets/enchants/descriptions.json - -import json -import re -import sys - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service -from selenium.webdriver.common.by import By -from selenium.webdriver.common.desired_capabilities import DesiredCapabilities -from selenium.webdriver.common.keys import Keys -from webdriver_manager.chrome import ChromeDriverManager - -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected input_file_path and output_file_path") -input_file_path = sys.argv[1] -output_file_path = sys.argv[2] - -input_file = open("sim/core/items/all_enchants.go", 'r') -input_lines = input_file.readlines() - -enchants = [] -for line in input_lines: - id_match = re.search(r"ID:\s*(\d+)", line) - if id_match is None: - continue - enchant_id = int(id_match.group(1)) - - effect_id_match = re.search(r"EffectID:\s*(\d+)", line) - effect_id = int(effect_id_match.group(1)) - - is_spell_id = "IsSpellID" in line - - enchants.append({ - "id": enchant_id, - "effect_id": effect_id, - "is_spell_id": is_spell_id, - }) - -def get_spell_url(item_id): - driver.get("https://wowhead.com/cata/item=" + str(item_id)) - tooltips = driver.find_elements(By.CLASS_NAME, "wowhead-tooltip") - tooltip = tooltips[0] - anchors = tooltip.find_elements(By.TAG_NAME, "a") - for anchor in anchors: - href = anchor.get_attribute("href") - if "/cata/spell=" in href: - print("Item {} has spell url {}\n".format(item_id, href)) - return href - raise Exception("No results for id " + str(item_id)) - -def get_spell_effect_description(spell_url): - driver.get(spell_url) - details_table = driver.find_elements(By.ID, "spelldetails")[0] - effect_elem = details_table.find_elements(By.CLASS_NAME, "q2")[0] - print("Spell {} has description {}".format(spell_url, effect_elem.text)) - return effect_elem.text - -def get_enchant_description(enchant): - if enchant["is_spell_id"]: - return get_spell_effect_description("https://wowhead.com/cata/spell={}".format(enchant["id"])) - else: - spell_url = get_spell_url(enchant["id"]) - return get_spell_effect_description(spell_url) - -caps = DesiredCapabilities().CHROME -caps["pageLoadStrategy"] = "eager" # Do not wait for full page load -driver = webdriver.Chrome(desired_capabilities=caps, service=Service(ChromeDriverManager().install())) -driver.implicitly_wait(2) - -for enchant in enchants: - enchant["description"] = get_enchant_description(enchant) - -driver.quit() - -with open(output_file_path, "w") as outfile: - outfile.write("{\n") - for i, enchant in enumerate(enchants): - outfile.write("\t\"{}\": \"{}\"{}\n".format(enchant["effect_id"], enchant["description"], "" if i == len(enchants) - 1 else ",")) - outfile.write("}") diff --git a/tools/scrape_enchant_descriptions.sh b/tools/scrape_enchant_descriptions.sh deleted file mode 100755 index f1b1de867f..0000000000 --- a/tools/scrape_enchant_descriptions.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env sh - -# Usage example: -# ./tools/scrape_enchant_descriptions <./sim/core/items/all_enchants.go >./assets/enchants/descriptions.json - -set -e - -spell_url_from_item_id() { - safe_curl "https://www.wowhead.com/cata/item=$1" | - grep -o '\/cata\/spell=[0-9]\+' | - head -n 1 -} - -id_from_entry() { - grep -oP '{ID: \K[0-9]+' -} - -delete_newlines() { - tr -d '\n' -} - -safe_curl() { - curl -sL "$1" | - remove_user_posts | - delete_newlines -} - -spell_effect_from_url() { - safe_curl "https://www.wowhead.com$1" | - grep -oP 'Effect.*?.*
\K.*?(?=)|Effect.*?.*\K.*(?=)' -} - -remove_user_posts() { - grep -v '
' -} - -printf '{' -grep '^\s*{' | - while read -r line; do - id=$(echo "$line" | id_from_entry) - effect="" - if echo "$line" | grep 'IsSpellID: true' >/dev/null; then - effect=$(spell_effect_from_url "/cata/spell=$id") - else - spell_url_suffix=$(spell_url_from_item_id "$id") - effect=$(spell_effect_from_url "$spell_url_suffix") - fi - - printf '\n "%d": "%s",' "$id" "$effect" - sleep 1 # Avoid potential rate-limting - done | - sed '$s/\,//g' -printf '\n}\n' diff --git a/tools/scrape_enchant_descriptions_new.py b/tools/scrape_enchant_descriptions_new.py deleted file mode 100644 index 631511bd62..0000000000 --- a/tools/scrape_enchant_descriptions_new.py +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/python3 - -import csv -import os -import sys -import json -from typing import List, Mapping, Set - -import requests - -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected db_path, output_file_path") - -input_db_path = sys.argv[1] -output_file_path = sys.argv[2] -branch = "wow_classic_beta" - -def download_file(url, file_path): - if os.path.exists(file_path): - return - - response = requests.get(url) - if response.status_code == 200: - with open(file_path, 'wb') as file: - file.write(response.content) - print(f"File downloaded successfully to {file_path}") - else: - print(f"Failed to download file from {url}") - -download_file(f"https://wago.tools/db2/SpellItemEnchantment/csv?branch={branch}", f"/tmp/SpellItemEnchantment.csv") - -class SpellEnchant: - def __init__(self, id, description): - self.enchantID = int(id) - self.description = description - -def loadEnchants() -> Mapping[int, SpellEnchant]: - enchants = {} - with open('/tmp/SpellItemEnchantment.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - enchant = SpellEnchant( - row['ID'], - row['Name_lang'] - ) - - enchants[int(row['ID'])] = enchant - - return enchants - -def loadDB() -> Set[int]: - with open(input_db_path) as dbfile: - dbjson = json.load(dbfile) - enchants = [] - for enchant in dbjson['enchants']: - enchants.append(enchant['effectId']) - - return sorted(enchants) - - -enchantDesc = loadEnchants() -enchantDB = loadDB() - -output = {} -for enchant in enchantDB: - if not enchant in enchantDesc: - print (f"WARN: {enchant} not found in SpellItemEnchantment.") - continue - - output[enchant] = enchantDesc[enchant].description - -with open(output_file_path, 'w') as o: - json.dump(output, o) \ No newline at end of file diff --git a/tools/scrape_enchants.py b/tools/scrape_enchants.py deleted file mode 100644 index 54ff621dab..0000000000 --- a/tools/scrape_enchants.py +++ /dev/null @@ -1,605 +0,0 @@ -#!/usr/bin/python3 - -from enum import Enum -import requests -import csv -import os - -from typing import Callable, List, Mapping, KeysView - -## SET MINIMUM SPELLID HERE -MIN_SPELL_ID = 70165 -IGNORE_SPELLS = [ - 359641, - 359858, - 359640, - 359847, - 359949, - 359950, - 359639, - 359642, - 359685, - 359895, -] - -def download_file(url, file_path): - if os.path.exists(file_path): - return - - response = requests.get(url) - if response.status_code == 200: - with open(file_path, 'wb') as file: - file.write(response.content) - print(f"File downloaded successfully to {file_path}") - else: - print(f"Failed to download file from {url}") - - -branch = "wow_classic_beta" -files = [ - "SpellEffect", - "SpellItemEnchantment", - "Spell", - "SpellName", - "ItemEffect", - "SpellEquippedItems", - "ItemSparse", - "SkillLineAbility" -] - -asset_dir = "/tmp" -for file in files: - download_file(f"https://wago.tools/db2/{file}/csv?branch={branch}", f"{asset_dir}/{file}.csv") - -statMapping: Mapping[str, Callable[[int], str]] = { - "0": lambda val: f"stats.Mana: {val}", - "1": lambda val: f"stats.Health: {val}", - "3": lambda val: f"stats.Agility: {val}", - "4": lambda val: f"stats.Strength: {val}", - "5": lambda val: f"stats.Intellect: {val}", - "6": lambda val: f"stats.Spirit: {val}", - "7": lambda val: f"stats.Stamina: {val}", - "13": lambda val: f"stats.Dodge: {val}", - "14": lambda val: f"stats.Parry: {val}", - "15": lambda val: f"stats.Block: {val}", - # ranged hit - but not supported by core, so melee + spell i.g.? - "17": lambda val: f"stats.MeleeHit: {val}, stats.SpellHit: {val}", - "19": lambda val: f"stats.MeleeCrit: {val}", - "20": lambda val: f"stats.MeleeCrit: {val}", - - # ranged haste - not supported by core so melee + spell i.g.? - "29": lambda val: f"stats.MeleeHaste: {val}, stats.SpellHaste: {val}", - - # hit is the same for spell and melee in cata - "31": lambda val: f"stats.MeleeHit: {val}, stats.SpellHit: {val}", - "32": lambda val: f"stats.MeleeCrit: {val}, stats.SpellCrit: {val}", - "35": lambda val: f"stats.Resilience: {val}", - "36": lambda val: f"stats.MeleeHaste: {val}, stats.SpellHaste: {val}", - "37": lambda val: f"stats.Expertise: {val}", - "38": lambda val: f"stats.AttackPower: {val}, stats.RangedAttackPower: {val}", - "39": lambda val: f"stats.RangedAttackPower: {val}", - "43": lambda val: f"stats.MP5: {val}", - "45": lambda val: f"stats.SpellPower: {val}", - "47": lambda val: f"stats.SpellPenetration: {val}", - "49": lambda val: f"stats.Mastery: {val}", -} - -armorMapping: Mapping[str, Callable[[int], str]] = { - "0": lambda val: f"stats.Armor: {val}", - "2": lambda val: f"stats.FireResistance: {val}", - "3": lambda val: f"stats.NatureResistance: {val}", - "4": lambda val: f"stats.FrostResistance: {val}", - "5": lambda val: f"stats.ShadowResistance: {val}", - "6": lambda val: f"stats.ArcaneResistance: {val}" -} - -class ItemClass(Enum): - WEAPON = 2 - ARMOR = 4 - MISC = 15 - -class WeaponType(Enum): - AXE_1H = 0 - AXE_2H = 1 - BOW = 2 - GUN = 3 - MACE_1H = 4 - MACE_2H = 5 - POLEARM = 6 - SWORD_1H = 7 - SWORD_2H = 8 - STAFF = 10 - FIST_WEAPON = 13 - DAGGER = 15 - CROSSBOW = 18 - WAND = 19 - FISHING_POLE = 20 - - def mask(weapon) -> int: - return 1 << weapon.value - - @staticmethod - def mask_oneHanded() -> int: - return WeaponType.mask(WeaponType.AXE_1H)\ - | WeaponType.mask(WeaponType.MACE_1H)\ - | WeaponType.mask(WeaponType.SWORD_1H)\ - | WeaponType.mask(WeaponType.DAGGER)\ - | WeaponType.mask(WeaponType.FIST_WEAPON) - - @staticmethod - def mask_twoHanded() -> int: - return WeaponType.mask(WeaponType.AXE_2H)\ - | WeaponType.mask(WeaponType.MACE_2H)\ - | WeaponType.mask(WeaponType.SWORD_2H)\ - | WeaponType.mask(WeaponType.POLEARM) - - @staticmethod - def mask_projectile() -> int: - return WeaponType.mask(WeaponType.CROSSBOW)\ - | WeaponType.mask(WeaponType.BOW)\ - | WeaponType.mask(WeaponType.GUN) - - @staticmethod - def mask_sharp() -> int: - return WeaponType.mask(WeaponType.AXE_2H)\ - | WeaponType.mask(WeaponType.SWORD_2H)\ - | WeaponType.mask(WeaponType.SWORD_1H)\ - | WeaponType.mask(WeaponType.AXE_1H)\ - | WeaponType.mask(WeaponType.POLEARM)\ - | WeaponType.mask(WeaponType.DAGGER) - - @staticmethod - def mask_blunt() -> int: - return WeaponType.mask(WeaponType.MACE_2H)\ - | WeaponType.mask(WeaponType.MACE_1H) - - -class ItemSubclassArmor(Enum): - AMOR_CLOTH = 1 - ARMOR_LEATHER = 2 - ARMOR_MAIL = 3 - ARMOR_PLATE = 4 - SHIELD = 6 - - @classmethod - def isArmor(cls, mask: int) -> bool: - return mask & ((1 << cls.AMOR_CLOTH) | (1 << cls.ARMOR_LEATHER) | (1 << cls.ARMOR_MAIL) | (1 << cls.ARMOR_PLATE)) > 0 - - @classmethod - def isShield(cls, mask: int) -> bool: - return mask & (1 << cls.SHIELD) > 0 - -class InventoryType(Enum): - NO_EQUIP = 0 - HEAD = 1 - NECK = 2 - SHOULDERS = 3 - CHEST = 5 - WAIST = 6 - LEGS = 7 - FEET = 8 - WRISTS = 9 - HANDS = 10 - FINGER= 11 - TRINKET = 12 - SHIELD = 14 - RANGED = 15 - CLOAK = 16 - WEAPON = 17 - OFFHAND = 23 - - - -class SpellEffectRecord: - def __init__(self, spellID, enchantID, itemRef): - self.spellID: int = int(spellID) - self.enchantID: int = int(enchantID) - - # item ref set for tournament realm scroll enchants - self.itemRef: int = int(itemRef) - -class SpellNameRecord: - def __init__(self, spellID, spellName): - self.spellID: int = int(spellID) - self.name: str = spellName - -class SpellDescription: - def __init__(self, spellID, description): - self.spellID: int = int(spellID) - self.description = description - -class EnchantEffect: - def __init__(self, type, points, misc): - self.type = type - self.points = points - self.misc = misc - -class SparseItemInfo: - def __init__(self, id, quality, allowedClassMask): - self.id: int = int(id) - self.quality: int = int(quality) - self.allowedClassMask: int = int(allowedClassMask) - -skillLineMap: Mapping[int, str] = { - 164: "proto.Profession_Blacksmithing", - 165: "proto.Profession_Leatherworking", - 197: "proto.Profession_Tailoring", - 202: "proto.Profession_Engineering", - 333: "proto.Profession_Enchanting", - 755: "proto.Profession_Jewelcrafting", - 773: "proto.Profession_Inscription", - 776: "runeforging" -} - -class ClassMask(Enum): - WARRIOR = 0x1 - PALADIN = 0x2 - HUNTER = 0x4 - ROGUE = 0x8 - PRIEST = 0x10 - DEATH_KNIGHT = 0x20 - SHAMAN = 0x40 - MAGE = 0x80 - WARLOCK = 0x100 - DRUID = 0x200 - -class SkillLineAbility: - def __init__(self, spellId, skillLine): - self.spellID: int = spellId - self.skillLine: int = int(skillLine) - -class SpellEnchant: - def __init__(self, enchantID, effect_0, points_0, misc_0, effect_1, points_1, misc_1, effect_2, points_2, misc_2, tradeSkill): - self.enchantID: int = int(enchantID) - self.effects : List[EnchantEffect] = [] - if effect_0 != "0": - self.effects.append(EnchantEffect(effect_0, points_0, misc_0)) - - if effect_1 != "0": - self.effects.append(EnchantEffect(effect_1, points_1, misc_1)) - - if effect_2 != "0": - self.effects.append(EnchantEffect(effect_2, points_2, misc_2)) - - self.tradeSkill: int = int(tradeSkill) - - def getStatString(self) -> str: - result = "" - for effect in self.effects: - lookup = None - if effect.type == "4": - lookup = armorMapping - elif effect.type == "5": - lookup = statMapping - else: - continue - - strStat = "Unk" - if not effect.misc in lookup: - print(F"WARN: {effect.misc}. Unknown stat.") - else: - strStat = lookup[effect.misc] - - if len(result) > 0: - result += ", " - - result += f"{strStat(effect.points)}" - return result - -slotProtoMap: Mapping[InventoryType, str] = { - InventoryType.HEAD: "proto.ItemType_ItemTypeHead", - InventoryType.SHOULDERS: "proto.ItemType_ItemTypeShoulder", - InventoryType.CLOAK: "proto.ItemType_ItemTypeBack", - InventoryType.CHEST: "proto.ItemType_ItemTypeChest", - InventoryType.WRISTS: "proto.ItemType_ItemTypeWrist", - InventoryType.HANDS: "proto.ItemType_ItemTypeHands", - InventoryType.WAIST: "proto.ItemType_ItemTypeWaist", - InventoryType.LEGS: "proto.ItemType_ItemTypeLegs", - InventoryType.FEET: "proto.ItemType_ItemTypeFeet", - InventoryType.FINGER: "proto.ItemType_ItemTypeFinger", - InventoryType.WEAPON: "proto.ItemType_ItemTypeWeapon", - InventoryType.RANGED: "proto.ItemType_ItemTypeRanged", -} - -class SpellItemRequirement: - def __init__(self, spellID, itemClass, itemSubClass, inventoryType): - self.spellID: int = int(spellID) - self.itemClass : ItemClass = ItemClass(int(itemClass)) - self.itemSubClass : int = int(itemSubClass) - self.inventoryTypeMask : int = int(inventoryType) - - def getItemTypeStr(self) -> str: - inv = self.getInventoryType() - return slotProtoMap[inv] - - def getInventoryType(self) -> InventoryType: - if self.itemClass == ItemClass.WEAPON: - if WeaponType.mask_projectile() & self.itemSubClass > 0: - return InventoryType.RANGED - return InventoryType.WEAPON - - if self.itemClass == ItemClass.ARMOR: - return self._getArmorSlot() - - print("WARN: Unknown item class: " + str(self.itemClass)) - - def _getArmorSlot(self) -> InventoryType: - if self.itemSubClass & (1 << ItemSubclassArmor.SHIELD.value) > 0 or self.inventoryTypeMask & (1 << InventoryType.SHIELD.value) > 0: - return InventoryType.WEAPON - - for slot in InventoryType: - if self.inventoryTypeMask & (1 << slot.value) > 0: - return slot - - print("WARN: Unknown armor slot(s): " + str(self.inventoryTypeMask)) - - -class EnchantItemInfo: - def __init__(self, spellID, itemID): - self.spellID :int = int(spellID) - self.itemID :int = int(itemID) - -def loadEffects() -> Mapping[int, SpellEffectRecord]: - effects = {} - with open(f'{asset_dir}/SpellEffect.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - if row['Effect'] != "53": - continue - - spellID = int(row['SpellID']) - if spellID < MIN_SPELL_ID: - continue - if spellID in IGNORE_SPELLS: - continue - - effect = SpellEffectRecord(spellID, row['EffectMiscValue_0'], row['EffectItemType']) - effects[effect.spellID] = effect - - return effects - -def loadEnchants() -> Mapping[int, SpellEnchant]: - enchants = {} - with open(f'{asset_dir}/SpellItemEnchantment.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - enchant = SpellEnchant( - row['ID'], - row['Effect_0'], - row['EffectPointsMin_0'], - row['EffectArg_0'], - row['Effect_1'], - row['EffectPointsMin_1'], - row['EffectArg_1'], - row['Effect_2'], - row['EffectPointsMin_2'], - row['EffectArg_2'], - row['RequiredSkillID']) - enchants[enchant.enchantID] = enchant - - return enchants - -def loadSpellNames(knownSpells: KeysView[int]) -> Mapping[int, SpellNameRecord]: - names = {} - with open(f'{asset_dir}/SpellName.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['ID']) - if not (id in knownSpells): - continue - - names[id] = SpellNameRecord(id, row['Name_lang']) - return names - -def loadSpellDescriptions(knownSpells: KeysView[int]) -> Mapping[int, SpellDescription]: - names = {} - with open(f'{asset_dir}/Spell.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['ID']) - if not (id in knownSpells): - continue - - names[id] = SpellDescription(id, row['Description_lang']) - return names - -def loadSlotRequirements(knownSpells: KeysView[int]) -> Mapping[int, SpellItemRequirement]: - names = {} - with open(f'{asset_dir}/SpellEquippedItems.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['SpellID']) - if not (id in knownSpells): - continue - - names[id] = SpellItemRequirement(id, row['EquippedItemClass'], row['EquippedItemSubclass'], row["EquippedItemInvTypes"]) - return names - -def loadItemInfos(knownSpells: KeysView[int]) -> Mapping[int, EnchantItemInfo]: - itemInfo = {} - with open(f'{asset_dir}/ItemEffect.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['SpellID']) - if not (id in knownSpells): - continue - - itemInfo[id] = EnchantItemInfo(id, row['ParentItemID']) - return itemInfo - -def loadItemSparse(relevantItems: KeysView[int]) -> Mapping[int, SparseItemInfo]: - itemInfo = {} - with open(f'{asset_dir}/ItemSparse.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['ID']) - if not (id in relevantItems): - continue - - itemInfo[id] = SparseItemInfo(id, row['OverallQualityID'], row['AllowableClass']) - return itemInfo - -def loadSkillLines(knownSpells: List[int]) -> Mapping[int, SkillLineAbility]: - skillLineInfo = {} - with open(f'{asset_dir}/SkillLineAbility.csv', newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - id = int(row['Spell']) - if not (id in knownSpells): - continue - - skillLineInfo[id] = SkillLineAbility(id, row['SkillLine']) - return skillLineInfo - -qualityMap: Mapping[int, str] = { - 0: "ItemQuality_ItemQualityJunk", - 1: "proto.ItemQuality_ItemQualityCommon", - 2: "proto.ItemQuality_ItemQualityUncommon", - 3: "proto.ItemQuality_ItemQualityRare", - 4: "proto.ItemQuality_ItemQualityEpic", - 5: "proto.ItemQuality_ItemQualityLegendary", - 7: "proto.ItemQuality_ItemQualityRare", # Account bound -} - -classMap: Mapping[ClassMask, str] = { - ClassMask.WARRIOR: "proto.Class_ClassWarrior", - ClassMask.DEATH_KNIGHT: "proto.Class_ClassDeathKnight", - ClassMask.DRUID: "proto.Class_ClassDruid", - ClassMask.HUNTER: "proto.Class_ClassHunter", - ClassMask.MAGE: "proto.Class_ClassMage", - ClassMask.PALADIN: "proto.Class_ClassPaladin", - ClassMask.PRIEST: "proto.Class_ClassPriest", - ClassMask.ROGUE: "proto.Class_ClassRogue", - ClassMask.SHAMAN: "proto.Class_ClassShaman", - ClassMask.WARLOCK: "proto.Class_ClassWarlock", -} - -spellEffects = loadEffects() -enchants = loadEnchants() -spellNames = loadSpellNames(spellEffects.keys()) -spellDescriptions = loadSpellDescriptions(spellEffects.keys()) -slotRequirements = loadSlotRequirements(spellEffects.keys()) -itemInfo = loadItemInfos(spellEffects.keys()) -itemSparse = loadItemSparse(list(map(lambda info: info.itemID, itemInfo.values()))) -skillLines = loadSkillLines(spellEffects.keys()) - -def getQuality(spellId: str) -> str: - if spellId in itemInfo: - itemId = itemInfo[spellId].itemID - return qualityMap[itemSparse[itemId].quality] - - return qualityMap[1] - -def getItemIDPart(effect: SpellEffectRecord) -> str: - if effect.itemRef > 0 or not effect.spellID in itemInfo: - return "" - - return f", ItemId: {itemInfo[effect.spellID].itemID}" - -def getRequiredSkillLine(effect: SpellEffectRecord) -> int: - enchant = enchants[effect.enchantID] - if enchant.tradeSkill > 0: - return enchant.tradeSkill - - if effect.spellID in skillLines: - skillLine = skillLines[effect.spellID] - - # not enchanting - if skillLine.skillLine != 333: - return skillLines[effect.spellID].skillLine - - return 0 - -def getProfessionPart(effect: SpellEffectRecord) -> str: - tradeSkill = getRequiredSkillLine(effect) - if tradeSkill > 0: - return ", RequiredProfession: " + skillLineMap[tradeSkill] - - return "" - -def getClassRestrictionPart(effect: SpellEffectRecord) -> str: - tradeSkill = getRequiredSkillLine(effect) - if tradeSkill == 776: # DK - return ", ClassAllowlist: []proto.Class{proto.Class_DeathKnight}" - - if not effect.spellID in itemInfo: - return "" - - allowed = itemSparse[itemInfo[effect.spellID].itemID].allowedClassMask - if allowed == 0 or allowed == -1: - return "" - - classes = list(filter(lambda t: (allowed & t.value) > 0, ClassMask)) - if len(classes) == 0: - return "" - - classProto = map(lambda cl: classMap[cl], classes) - return ", ClassAllowlist: []proto.Class{" + ", ".join(classProto) + "}" - - -def getExtraSlotsPart(effect: SpellEffectRecord) -> str: - if slotRequirements[effect.spellID].itemClass == ItemClass.WEAPON: - return "" - slots = list(filter(lambda t: (slotRequirements[effect.spellID].inventoryTypeMask & (1 << t.value)) > 0 and not t == type, InventoryType)) - slots = list(filter(lambda t: t != InventoryType.OFFHAND, slots)) - if len(slots) < 2: - return "" - slots = slots[1:] - protoSlots = map(lambda inv: slotProtoMap[inv], slots) - return ", ExtraTypes: []proto.ItemType{" + ', '.join(protoSlots) + "}" - -def getEnchantTypePart(effect: SpellEffectRecord) -> str: - equipInfo = slotRequirements[effect.spellID] - enchantType = "" - - if equipInfo.itemClass == ItemClass.ARMOR and equipInfo.inventoryTypeMask & (1 << InventoryType.OFFHAND.value) > 0: - enchantType = "proto.EnchantType_EnchantTypeOffHand" - elif equipInfo.itemClass == ItemClass.ARMOR and equipInfo.itemSubClass & (1 << ItemSubclassArmor.SHIELD.value) > 0: - enchantType = "proto.EnchantType_EnchantTypeShield" - if equipInfo.itemClass == ItemClass.WEAPON and equipInfo.itemSubClass == (1 << WeaponType.STAFF.value): - enchantType = "proto.EnchantType_EnchantTypeStaff" - elif equipInfo.itemSubClass & WeaponType.mask_twoHanded() == WeaponType.mask_twoHanded() and \ - equipInfo.itemSubClass & WeaponType.mask_oneHanded() == 0: - enchantType = "proto.EnchantType_EnchantTypeTwoHand" - - if len(enchantType) > 0: - return ", EnchantType: " + enchantType - - return "" - -def shouldSkip(effect: SpellEffectRecord) -> bool: - if effect.spellID not in slotRequirements: - return True - - if effect.spellID not in spellNames: - return True - - if slotRequirements[effect.spellID].itemClass == ItemClass.MISC: - return True - - name = spellNames[effect.spellID].name - if name.startswith("QA") or name.find("test") > 0 or name.find("Test") > 0: - return True - - return False - -# order by slot -spellMap: Mapping[InventoryType, List[str]] = {} -for id in sorted(spellEffects.keys()): - effect = spellEffects[id] - if shouldSkip(effect): - continue - - - it = slotRequirements[effect.spellID].getInventoryType() - if not it in spellMap: - spellMap[it] = [] - - spellMap[it].append(f"{{EffectId: {effect.enchantID}{getItemIDPart(effect)}, SpellId: {id}, Name: \"{spellNames[id].name}\", Quality: {getQuality(id)}, Stats: stats.Stats{{{enchants[effect.enchantID].getStatString()}}}.ToFloatArray(), Type: {slotRequirements[id].getItemTypeStr()}{getEnchantTypePart(effect)}{getExtraSlotsPart(effect)}{getClassRestrictionPart(effect)}{getProfessionPart(effect)}}},\n") - - -with open("/tmp/enchants.tmp", 'w') as file: - for type in spellMap.keys(): - file.write(f"// {type.name}\n") - file.writelines(spellMap[type]) - file.write("\n\n") diff --git a/tools/scrape_glyphs.py b/tools/scrape_glyphs.py deleted file mode 100644 index 0e341fa82d..0000000000 --- a/tools/scrape_glyphs.py +++ /dev/null @@ -1,159 +0,0 @@ -#!/usr/bin/python - -# This tool generates the glyphs proto code and UI config code, e.g. -# 'ShamanMajorGlyphs' and 'ShamanMinorGlyphs' in proto/shaman.proto -# and the config in ui/core/talents/shaman.ts. - -import json -import re -import sys - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service as ChromeService -from webdriver_manager.chrome import ChromeDriverManager -from selenium.webdriver.common.by import By -from selenium.webdriver.common.keys import Keys -from selenium.webdriver.chrome.options import Options -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC - -chrome_options = Options() -chrome_options.add_argument('--headless') -chrome_options.add_argument('--no-sandbox') -chrome_options.add_argument('--disable-dev-shm-usage') -driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=chrome_options) -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected class_name and output_file_path") -class_name = sys.argv[1] -output_file_path = sys.argv[2] - -driver.implicitly_wait(2) - -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected class_name and output_file_path") -class_name = sys.argv[1] -output_file_path = sys.argv[2] - -# Convert "death-knight" to DeathKnight -pretty_class_name = "".join(word.title() for i, word in enumerate(class_name.split("-"))) -lower_class_name = "".join(word if i == 0 else word.title() for i, word in enumerate(class_name.split("-"))) -def get_glyphs_ids(): - glyphs_ids = [] - driver.get("https://www.wowhead.com/cata/spells/glyphs/"+class_name) - glyphs_list = driver.find_element(By.CLASS_NAME, "listview-mode-default") - rows = glyphs_list.find_elements(By.CLASS_NAME, "listview-row") - for row in rows: - cells = row.find_elements(By.TAG_NAME, "td") - label_elem = cells[1].find_element(By.TAG_NAME, "a") - glyph_name = label_elem.text - link = label_elem.get_attribute("href") - id_match = re.search(r"spell=(\d+)", link) - spell_id = int(id_match.group(1)) - glyphs_ids.append([glyph_name, spell_id]) - return glyphs_ids - - -def get_glyphs_data(glyph_button): - glyph_button.click() - glyphs_menu = driver.find_element(By.CLASS_NAME, "ctc-glyphs-picker-listview") - menu_rows = glyphs_menu.find_elements(By.CLASS_NAME, "listview-row") - glyphs_data = [] - - for menu_row in menu_rows: - cells = menu_row.find_elements(By.TAG_NAME, "td") - label_elem = cells[1].find_element(By.TAG_NAME, "a") - glyph_name = label_elem.text - print("Glyph name: " + glyph_name) - if glyph_name == "None": - continue - - link = label_elem.get_attribute("href") - id_match = re.search(r"item=(\d+)", link) - glyph_id = int(id_match.group(1)) - - ins_elem = cells[0].find_element(By.TAG_NAME, "ins") - bg_style = ins_elem.get_attribute("style") - icon_url = re.search(r"url\(\"(.*)\"\)", bg_style).group(1) - icon_url = icon_url.replace("icons/small", "icons/large") - - glyphs_data.append({ - "name": glyph_name, - "id": glyph_id, - "description": cells[2].text, - "icon_url": icon_url, - }) - - return glyphs_data - -driver.implicitly_wait(2) - -driver.get('https://wowhead.com/cata/talent-calc/' + class_name) -try: - wait = WebDriverWait(driver, 10) - accept_button = wait.until(EC.element_to_be_clickable((By.ID, "onetrust-accept-btn-handler"))) - accept_button.click() - print("Clicked the 'I Accept' button.") -except Exception as e: - print("Error") -driver.implicitly_wait(2) -glyph_slots = driver.find_elements(By.CLASS_NAME, "ctc-glyphs-group-slot") -prime_glyph_slot = next(gs for gs in glyph_slots if int(gs.get_attribute("data-glyph-slot")) == 0) -major_glyph_slot = next(gs for gs in glyph_slots if int(gs.get_attribute("data-glyph-slot")) == 3) -minor_glyph_slot = next(gs for gs in glyph_slots if int(gs.get_attribute("data-glyph-slot")) == 6) - -prime_glyphs_data = get_glyphs_data(prime_glyph_slot) -webdriver.ActionChains(driver).send_keys(Keys.ESCAPE).perform() -major_glyphs_data = get_glyphs_data(major_glyph_slot) -webdriver.ActionChains(driver).send_keys(Keys.ESCAPE).perform() -minor_glyphs_data = get_glyphs_data(minor_glyph_slot) - -glyph_ids = get_glyphs_ids() -driver.quit() - -def write_glyphs_proto(outfile, glyphs_data, glyph_type): - outfile.write("enum {}{}Glyph {{\n".format(pretty_class_name, glyph_type)) - outfile.write("\t{}{}GlyphNone = 0;\n".format(pretty_class_name, glyph_type)) - - glyph_idx = 1 - for glyph_data in glyphs_data: - pretty_glyph_name = re.sub(r"\W+", "", glyph_data["name"].title()) - outfile.write("\t{} = {};\n".format(pretty_glyph_name, glyph_data["id"])) - - outfile.write("}\n") - -def write_glyphs_config(outfile, glyphs_data, glyph_type): - outfile.write("\t{}Glyphs: {{\n".format(glyph_type.lower())) - - for glyph_data in glyphs_data: - pretty_glyph_name = re.sub(r"\W+", "", glyph_data["name"].title()) - outfile.write("\t\t[{}{}Glyph.{}]: {{\n".format(pretty_class_name, glyph_type, pretty_glyph_name, glyph_data["icon_url"])) - outfile.write("\t\t\tname: '{}',\n".format(glyph_data["name"].replace("'", "\\'"))) - outfile.write("\t\t\tdescription: '{}',\n".format(glyph_data["description"].replace("'", "\\'"))) - outfile.write("\t\t\ticonUrl: '{}',\n".format(glyph_data["icon_url"])) - outfile.write("\t\t},\n") - - outfile.write("\t},\n") -def write_glyphs_ids(outfile, glyphs_data, glyphs_ids): - # First, update glyph_data with the correct spell ID from glyphs_ids - for name, spell_id in glyphs_ids: - for glyph_data in glyphs_data: - if glyph_data["name"] == name: - outfile.write('{{"itemId": {},"spellId": {}}},\n'.format(glyph_data["id"], spell_id)) - -with open(output_file_path, "w") as outfile: - write_glyphs_proto(outfile, prime_glyphs_data, "Prime") - write_glyphs_proto(outfile, major_glyphs_data, "Major") - write_glyphs_proto(outfile, minor_glyphs_data, "Minor") - outfile.write("\n") - outfile.write("\n") - outfile.write("\n") - write_glyphs_ids(outfile, prime_glyphs_data, glyph_ids) - write_glyphs_ids(outfile, major_glyphs_data, glyph_ids) - write_glyphs_ids(outfile, minor_glyphs_data, glyph_ids) - outfile.write("\n") - outfile.write("\n") - outfile.write("export const {}GlyphsConfig: GlyphsConfig = {{\n".format(lower_class_name)) - write_glyphs_config(outfile, prime_glyphs_data, "Prime") - write_glyphs_config(outfile, major_glyphs_data, "Major") - write_glyphs_config(outfile, minor_glyphs_data, "Minor") - outfile.write("};") \ No newline at end of file diff --git a/tools/scrape_pet_talents.py b/tools/scrape_pet_talents.py deleted file mode 100644 index 5621efe7c0..0000000000 --- a/tools/scrape_pet_talents.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/python - -# This tool generates the talents proto code, e.g. 'ShamanTalents' found in proto/shaman.proto. - -import json -import sys - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service as ChromeService -from webdriver_manager.chrome import ChromeDriverManager -from selenium.webdriver.common.by import By -from selenium.webdriver.chrome.options import Options -chrome_options = Options() -chrome_options.add_argument('--headless') -chrome_options.add_argument('--no-sandbox') -chrome_options.add_argument('--disable-dev-shm-usage') -driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=chrome_options) -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected class_name and output_file_path") -class_name = sys.argv[1] -output_file_path = sys.argv[2] - -driver.implicitly_wait(2) - -driver.get('https://wowhead.com/cata/pet-talent-calc/') -trees = driver.find_elements(By.CLASS_NAME, "ctc-tree") - -with open(output_file_path, "w") as outfile: - # Convert "death-knight" to DeathKnight - pretty_class_name = "".join(word.title() for i, word in enumerate(class_name.split("-"))) - outfile.write("message {}Talents {{\n".format(pretty_class_name)) - - talent_idx = 1 - print(trees) - for tree_idx, tree in enumerate(trees): - title = tree.find_element(By.XPATH, ".//b").text - outfile.write("\t// {}\n".format(title)) - - tree_talents_data = [] - talents = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent") - for talent in talents: - max_points = int(talent.get_attribute("data-max-points")) - field_type = "bool" if max_points == 1 else "int32" - - link = talent.find_element(By.XPATH, "./div/a").get_attribute("href") - name = "_".join(word for i, word in enumerate(link.split("/")[-1].split("-"))) - - print("Talent: " + name) - tree_talents_data.append({ - "row": int(talent.get_attribute("data-row")), - "col": int(talent.get_attribute("data-col")), - "name": name, - "field_type": field_type, - }) - - tree_talents_data.sort(key=lambda data: data["row"] * 4 + data["col"]) - for data in tree_talents_data: - outfile.write("\t{} {} = {};\n".format(data["field_type"], data["name"], talent_idx)) - talent_idx += 1 - - if tree_idx != len(trees) - 1: - outfile.write("\n") - - outfile.write("}") \ No newline at end of file diff --git a/tools/scrape_pet_talents_config.py b/tools/scrape_pet_talents_config.py deleted file mode 100644 index 89ff07f2d5..0000000000 --- a/tools/scrape_pet_talents_config.py +++ /dev/null @@ -1,150 +0,0 @@ -#!/usr/bin/python - -# This tool generates the talents config code, e.g. in ui/core/talents/shaman.ts. - -import json -import sys - -from typing import List - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service as ChromeService -from webdriver_manager.chrome import ChromeDriverManager -from selenium.webdriver.common.by import By -from selenium.webdriver.common.keys import Keys -from selenium.webdriver.chrome.options import Options -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC - -chrome_options = Options() -chrome_options.add_argument('--headless') -chrome_options.add_argument('--no-sandbox') -chrome_options.add_argument('--disable-dev-shm-usage') -driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=chrome_options) - -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected className and outputFilePath") -className = sys.argv[1] -outputFilePath = sys.argv[2] - -def _between(s, start, end): - return s[(i := s.find(start) + len(start)): i + s[i:].find(end)] - - -driver.implicitly_wait(2) - - -def _get_spell_id_from_link(link): - parts = link.split("/") - for part in parts: - if "spell=" in part: - return int(part.split("=")[-1]) - raise ValueError("No spell ID found in the link") - - - -def get_other_spell_ranks(spell_name: str, ignore_int: int) -> List[int]: - overrides = { - "T N T": "t.n.t", - } - - formatted_spell_name = overrides.get(spell_name, spell_name.replace(' ', '+')) - driver.get(f"https://www.wowhead.com/cata/spells/pet-abilities/{className}/name:{formatted_spell_name}") - driver.implicitly_wait(2) - - spell_ids = [] - table = driver.find_element(By.CLASS_NAME, "listview-mode-default") - rows = table.find_elements(By.CLASS_NAME, "listview-row") - print(f"Found {len(rows)} for {spell_name}") - for row in rows: - questionable_elements = row.find_elements(By.XPATH, ".//*[contains(@style, 'inv_misc_questionmark.jpg')]") - - if questionable_elements: - # If any questionable elements found, skip this row - print("Skipping row") - continue - a_element = row.find_element(By.CLASS_NAME, "listview-cleartext") - href = a_element.get_attribute("href") - spell_id = _get_spell_id_from_link(href) - if spell_id != ignore_int: - spell_ids.append(spell_id) - - return spell_ids - -def rowcol(v): - return v["location"]["rowIdx"] + v["location"]["colIdx"]/10 - - -to_export = [] - -driver.get('https://wowhead.com/cata/pet-talent-calc/') -try: - wait = WebDriverWait(driver, 10) - accept_button = wait.until(EC.element_to_be_clickable((By.ID, "onetrust-accept-btn-handler"))) - accept_button.click() - print("Clicked the 'I Accept' button.") -except Exception as e: - print("No 'I Accept' button to click or error clicking it:", e) -driver.implicitly_wait(2) -trees = driver.find_elements(By.CLASS_NAME, "ctc-tree") -for tree in trees: - _working_talents = {} - - talents = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent") - print("found %d talents\n".format(len(talents))) - for talent in talents: - row, col = int(talent.get_attribute("data-row")), int(talent.get_attribute("data-col")) - max_points = int(talent.get_attribute("data-max-points")) - link = talent.find_element(By.XPATH, "./div/a").get_attribute("href") - name = "".join(word if i == 0 else word.title() for i, word in enumerate(link.split("/")[-1].split("-"))) - fancyName = " ".join(word.title() for i, word in enumerate(link.split("/")[-1].split("-"))) - print(link) - print(_get_spell_id_from_link(link)) - _working_talents[(row, col)] = { - "fieldName": name, - "fancyName": fancyName, - "location": { - "rowIdx": row, - "colIdx": col, - }, - "spellIds": [_get_spell_id_from_link(link)], - "maxPoints": max_points, - } - - arrows = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent-arrow") - for arrow in arrows: - prereq_row, prereq_col = int(arrow.get_attribute("data-row")), int(arrow.get_attribute("data-col")) - length = 0 - dsstr = arrow.get_attribute("data-size") - if dsstr: - length = int(dsstr) - - direction = arrow.get_attribute("class").split()[-1].split("-")[-1] - offset_row, offset_col = {"left": (0, -1), "right": (0, 1), "down": (1, 0)}[direction] - - end_row = prereq_row + offset_row * length - end_col = prereq_col + offset_col * length - - _working_talents[(end_row, end_col)]["prereqLocation"] = { - "rowIdx": prereq_row, - "colIdx": prereq_col, - } - - title = tree.find_element(By.XPATH, ".//b").text - background = tree.find_element(By.CLASS_NAME, "ctc-tree-talents-background").get_attribute("style") - values = list(_working_talents.values()) - values.sort(key=rowcol) - to_export.append({ - "name": title, - "backgroundUrl": _between(background, '"', '"'), - "talents": values, - }) - -for subtree in to_export: - for talent in subtree["talents"]: - if talent["maxPoints"] > 1: - talent["spellIds"] += get_other_spell_ranks(talent["fancyName"], talent["spellIds"][0]) - -json_data = json.dumps(to_export, indent=2) -with open(outputFilePath, "w") as outfile: - outfile.write(json_data) \ No newline at end of file diff --git a/tools/scrape_proto.sh b/tools/scrape_proto.sh deleted file mode 100644 index d48c63e343..0000000000 --- a/tools/scrape_proto.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -# WoW Classic classes -classes=("druid" "death-knight" "hunter" "mage" "paladin" "priest" "rogue" "shaman" "warlock" "warrior") - -for class in "${classes[@]}"; do - # Replace "-" with "" for filenames - #python3 ./scrape_talents_proto.py $class ../proto/${class}.proto - python3 ./scrape_glyphs.py $class ../proto/tmp/${class}.proto.test - #python3 ./scrape_talents_config.py $class ../ui/core/talents/trees/${class}.json -done \ No newline at end of file diff --git a/tools/scrape_talents_config.py b/tools/scrape_talents_config.py deleted file mode 100644 index 496f566b43..0000000000 --- a/tools/scrape_talents_config.py +++ /dev/null @@ -1,155 +0,0 @@ -#!/usr/bin/python - -# This tool generates the talents config code, e.g. in ui/core/talents/shaman.ts. - -import json -import sys - -from typing import List - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service as ChromeService -from webdriver_manager.chrome import ChromeDriverManager -from selenium.webdriver.common.by import By -from selenium.webdriver.common.keys import Keys -from selenium.webdriver.chrome.options import Options -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC - -chrome_options = Options() -chrome_options.add_argument('--headless') -chrome_options.add_argument('--no-sandbox') -chrome_options.add_argument('--disable-dev-shm-usage') -driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=chrome_options) - -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected className and outputFilePath") -className = sys.argv[1] -outputFilePath = sys.argv[2] - -def _between(s, start, end): - return s[(i := s.find(start) + len(start)): i + s[i:].find(end)] - - -driver.implicitly_wait(2) - - -def _get_spell_id_from_link(link): - parts = link.split("/") - for part in parts: - if "spell=" in part: - return int(part.split("=")[-1]) - raise ValueError("No spell ID found in the link") - - - -def get_other_spell_ranks(spell_name: str, ignore_int: int) -> List[int]: - overrides = { - "T N T": "t.n.t", - } - - formatted_spell_name = overrides.get(spell_name, spell_name.replace(' ', '+')) - driver.get(f"https://www.wowhead.com/cata/spells/talents/{className}/name:{formatted_spell_name}") - driver.implicitly_wait(2) - - spell_ids = [] - table = driver.find_element(By.CLASS_NAME, "listview-mode-default") - rows = table.find_elements(By.CLASS_NAME, "listview-row") - print(f"Found {len(rows)} for {spell_name}") - for row in rows: - questionable_elements = row.find_elements(By.XPATH, ".//*[contains(@style, 'inv_misc_questionmark.jpg')]") - - if questionable_elements: - # If any questionable elements found, skip this row - print("Skipping row") - continue - a_element = row.find_element(By.CLASS_NAME, "listview-cleartext") - href = a_element.get_attribute("href") - spell_id = _get_spell_id_from_link(href) - if spell_id != ignore_int: - spell_ids.append(spell_id) - - return spell_ids - -def rowcol(v): - return v["location"]["rowIdx"] + v["location"]["colIdx"]/10 - - -to_export = [] - -driver.get('https://wowhead.com/cata/talent-calc/' + className) -try: - wait = WebDriverWait(driver, 10) - accept_button = wait.until(EC.element_to_be_clickable((By.ID, "onetrust-accept-btn-handler"))) - accept_button.click() - print("Clicked the 'I Accept' button.") -except Exception as e: - print("No 'I Accept' button to click or error clicking it:", e) -driver.implicitly_wait(2) -trees = driver.find_elements(By.CLASS_NAME, "ctc-tree") -for tree in trees: - _working_talents = {} - - talents = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent") - print("found %d talents\n".format(len(talents))) - for talent in talents: - row, col = int(talent.get_attribute("data-row")), int(talent.get_attribute("data-col")) - max_points = int(talent.get_attribute("data-max-points")) - link = talent.find_element(By.XPATH, "./div/a").get_attribute("href") - name = "".join(word if i == 0 else word.title() for i, word in enumerate(link.split("/")[-1].split("-"))) - fancyName = " ".join(word.title() for i, word in enumerate(link.split("/")[-1].split("-"))) - _working_talents[(row, col)] = { - "fieldName": name, - "fancyName": fancyName, - "location": { - "rowIdx": row, - "colIdx": col, - }, - "spellIds": [_get_spell_id_from_link(link)], - "maxPoints": max_points, - } - - arrows = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent-arrow") - for arrow in arrows: - prereq_row, prereq_col = int(arrow.get_attribute("data-row")), int(arrow.get_attribute("data-col")) - length = 0 - dsstr = arrow.get_attribute("data-size") - if dsstr: - length = int(dsstr) - - # Splitting the direction to handle combined directions - directions = arrow.get_attribute("class").split()[-1].split("-")[-1:] - offset_row, offset_col = 0, 0 - for direction in directions: - # Update offset for each direction - print() - dir_offset_row, dir_offset_col = {"left": (0, -1), "right": (0, 1), "down": (1, 0), "up": (-1, 0)}.get(direction, (0, 0)) - offset_row += dir_offset_row - offset_col += dir_offset_col - - end_row = prereq_row + offset_row * length - end_col = prereq_col + offset_col * length - - _working_talents[(end_row, end_col)]["prereqLocation"] = { - "rowIdx": prereq_row, - "colIdx": prereq_col, - } - - title = tree.find_element(By.XPATH, ".//b").text - background = tree.find_element(By.CLASS_NAME, "ctc-tree-talents-background").get_attribute("style") - values = list(_working_talents.values()) - values.sort(key=rowcol) - to_export.append({ - "name": title, - "backgroundUrl": _between(background, '"', '"'), - "talents": values, - }) - -for subtree in to_export: - for talent in subtree["talents"]: - if talent["maxPoints"] > 1: - talent["spellIds"] += get_other_spell_ranks(talent["fancyName"], talent["spellIds"][0]) - -json_data = json.dumps(to_export, indent=2) -with open(outputFilePath, "w") as outfile: - outfile.write(json_data) \ No newline at end of file diff --git a/tools/scrape_talents_proto.py b/tools/scrape_talents_proto.py deleted file mode 100644 index 69ee9b04ce..0000000000 --- a/tools/scrape_talents_proto.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/python - -# This tool generates the talents proto code, e.g. 'ShamanTalents' found in proto/shaman.proto. - -import json -import sys - -from selenium import webdriver -from selenium.webdriver.chrome.service import Service as ChromeService -from webdriver_manager.chrome import ChromeDriverManager -from selenium.webdriver.common.by import By -from selenium.webdriver.chrome.options import Options -chrome_options = Options() -chrome_options.add_argument('--headless') -chrome_options.add_argument('--no-sandbox') -chrome_options.add_argument('--disable-dev-shm-usage') -driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()),options=chrome_options) -if len(sys.argv) < 3: - raise Exception("Missing arguments, expected class_name and output_file_path") -class_name = sys.argv[1] -output_file_path = sys.argv[2] - -driver.implicitly_wait(2) - -driver.get('https://wowhead.com/cata/talent-calc/' + class_name) -trees = driver.find_elements(By.CLASS_NAME, "ctc-tree") - -with open(output_file_path, "w") as outfile: - # Convert "death-knight" to DeathKnight - pretty_class_name = "".join(word.title() for i, word in enumerate(class_name.split("-"))) - outfile.write("message {}Talents {{\n".format(pretty_class_name)) - - talent_idx = 1 - print(trees) - for tree_idx, tree in enumerate(trees): - title = tree.find_element(By.XPATH, ".//b").text - outfile.write("\t// {}\n".format(title)) - - tree_talents_data = [] - talents = tree.find_elements(By.CLASS_NAME, "ctc-tree-talent") - for talent in talents: - max_points = int(talent.get_attribute("data-max-points")) - field_type = "bool" if max_points == 1 else "int32" - - link = talent.find_element(By.XPATH, "./div/a").get_attribute("href") - name = "_".join(word for i, word in enumerate(link.split("/")[-1].split("-"))) - - print("Talent: " + name) - tree_talents_data.append({ - "row": int(talent.get_attribute("data-row")), - "col": int(talent.get_attribute("data-col")), - "name": name, - "field_type": field_type, - }) - - tree_talents_data.sort(key=lambda data: data["row"] * 4 + data["col"]) - for data in tree_talents_data: - outfile.write("\t{} {} = {};\n".format(data["field_type"], data["name"], talent_idx)) - talent_idx += 1 - - if tree_idx != len(trees) - 1: - outfile.write("\n") - - outfile.write("}") \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 514d125fcd..aaa1c843f9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "moduleResolution": "bundler", "strict": true, "lib": ["DOM", "es2021", "DOM.Iterable"], - "outDir": "dist/cata", + "outDir": "dist/mop", "pretty": false, "allowJs": true, "resolveJsonModule": true, diff --git a/ui/core/components/detailed_results/resource_metrics.tsx b/ui/core/components/detailed_results/resource_metrics.tsx index bd4f0fe557..3673d8f522 100644 --- a/ui/core/components/detailed_results/resource_metrics.tsx +++ b/ui/core/components/detailed_results/resource_metrics.tsx @@ -1,4 +1,4 @@ -import { ResourceType } from '../../proto/api'; +import { ResourceType } from '../../proto/spell'; import { resourceNames } from '../../proto_utils/names'; import { ResourceMetrics } from '../../proto_utils/sim_result'; import { orderedResourceTypes } from '../../proto_utils/utils'; diff --git a/ui/core/components/detailed_results/timeline.tsx b/ui/core/components/detailed_results/timeline.tsx index b335e55b10..a95a110ea8 100644 --- a/ui/core/components/detailed_results/timeline.tsx +++ b/ui/core/components/detailed_results/timeline.tsx @@ -3,8 +3,8 @@ import tippy from 'tippy.js'; import { ref } from 'tsx-vanilla'; import { CacheHandler } from '../../cache_handler'; -import { ResourceType } from '../../proto/api'; import { OtherAction } from '../../proto/common'; +import { ResourceType } from '../../proto/spell'; import { ActionId, buffAuraToSpellIdMap, resourceTypeToIcon } from '../../proto_utils/action_id'; import { AuraUptimeLog, CastLog, DpsLog, ResourceChangedLogGroup, SimLog, ThreatLogGroup } from '../../proto_utils/logs_parser'; import { resourceNames } from '../../proto_utils/names'; @@ -1443,6 +1443,36 @@ const idToCategoryMap: Record = { [48263]: DEFAULT_ACTION_CATEGORY + 0.1, // Frost Presence [48265]: DEFAULT_ACTION_CATEGORY + 0.1, // Unholy Presence + // Monk + [120274]: 0.02, // Tiger Strikes (Main Hand) + [120278]: 0.03, // Tiger Strikes (Off Hand) + [100780]: MELEE_ACTION_CATEGORY + 0.01, // Jab + [100787]: MELEE_ACTION_CATEGORY + 0.02, // Tiger Palm + [100784]: MELEE_ACTION_CATEGORY + 0.03, // Blackout Kick + [130320]: MELEE_ACTION_CATEGORY + 0.04, // Rising Sun Kick + [113656]: MELEE_ACTION_CATEGORY + 0.05, // Fists of Fury (Cast) + [117418]: MELEE_ACTION_CATEGORY + 0.06, // Fists of Fury (Hit) + [101546]: MELEE_ACTION_CATEGORY + 0.07, // Spinning Crane Kick (Cast) + [107270]: MELEE_ACTION_CATEGORY + 0.08, // Spinning Crane Kick (Hit) + [116847]: MELEE_ACTION_CATEGORY + 0.07, // Rushing Jade Wind (Cast) + [148187]: MELEE_ACTION_CATEGORY + 0.08, // Rushing Jade Wind (Hit) + [115098]: SPELL_ACTION_CATEGORY + 0.01, // Chi Wave + [132467]: SPELL_ACTION_CATEGORY + 0.011, // Chi Wave (Damage) + [132463]: SPELL_ACTION_CATEGORY + 0.012, // Chi Wave (Heal) + [124098]: SPELL_ACTION_CATEGORY + 0.01, // Zen Sphere (Damage) + [124081]: SPELL_ACTION_CATEGORY + 0.011, // Zen Sphere (Heal) + [125033]: SPELL_ACTION_CATEGORY + 0.011, // Zen Sphere: Detonate (Damage) + [124101]: SPELL_ACTION_CATEGORY + 0.011, // Zen Sphere: Detonate (Heal) + [123986]: SPELL_ACTION_CATEGORY + 0.01, // Chi Burst + [148135]: SPELL_ACTION_CATEGORY + 0.011, // Chi Burst (Damage) + [130654]: SPELL_ACTION_CATEGORY + 0.012, // Chi Burst (Heal) + [116740]: SPELL_ACTION_CATEGORY + 0.02, // Tigereye Brew + [115399]: SPELL_ACTION_CATEGORY + 0.03, // Chi Brew + [115288]: SPELL_ACTION_CATEGORY + 0.04, // Energizing Brew + [126456]: SPELL_ACTION_CATEGORY + 0.05, // Fortifying Brew + [123904]: SPELL_ACTION_CATEGORY + 0.06, // Invoke Xuen, the White Tiger + [115008]: SPELL_ACTION_CATEGORY + 0.06, // Chi Torpedo + // Generic [53307]: SPELL_ACTION_CATEGORY + 0.931, // Thorns [54043]: SPELL_ACTION_CATEGORY + 0.932, // Retribution Aura diff --git a/ui/core/components/encounter_picker.ts b/ui/core/components/encounter_picker.ts index 2c9522f1dd..0fd99c056f 100644 --- a/ui/core/components/encounter_picker.ts +++ b/ui/core/components/encounter_picker.ts @@ -344,11 +344,11 @@ class TargetPicker extends Input { id: 'target-picker-level', label: 'Level', values: [ + { name: '93', value: 93 }, + { name: '92', value: 92 }, + { name: '91', value: 91 }, + { name: '90', value: 90 }, { name: '88', value: 88 }, - { name: '87', value: 87 }, - { name: '86', value: 86 }, - { name: '85', value: 85 }, - { name: '83', value: 83 }, ], changedEvent: () => encounter.targetsChangeEmitter, getValue: () => this.getTarget().level, diff --git a/ui/core/components/gear_picker/item_list.tsx b/ui/core/components/gear_picker/item_list.tsx index f3d3cb9931..78ff9baae7 100644 --- a/ui/core/components/gear_picker/item_list.tsx +++ b/ui/core/components/gear_picker/item_list.tsx @@ -129,7 +129,8 @@ export default class ItemList { const epButtonRef = ref(); const filtersButtonRef = ref(); const showEpValuesRef = ref(); - const phaseSelectorRef = ref(); + // TODO: Turn this back on once we have proper phase data + // const phaseSelectorRef = ref(); const matchingGemsRef = ref(); const show1hWeaponRef = ref(); const show2hWeaponRef = ref(); @@ -148,7 +149,8 @@ export default class ItemList { Filters )} -
+ {/* // TODO: Turn this back on once we have proper phase data */} + {/*
*/}
@@ -216,7 +218,8 @@ export default class ItemList { } } - if (phaseSelectorRef.value) makePhaseSelector(phaseSelectorRef.value, player.sim); + // TODO: Turn this back on once we have proper phase data + // if (phaseSelectorRef.value) makePhaseSelector(phaseSelectorRef.value, player.sim); if (label === SelectorModalTabs.Items) { const filtersMenu = new FiltersMenu(parent, player, currentSlot); @@ -356,9 +359,10 @@ export default class ItemList { itemIdxs = itemIdxs.filter(i => { const listItemData = this.itemData[i]; - if (listItemData.phase > this.player.sim.getPhase()) { - return false; - } + // TODO: Turn this back on once we have proper phase data + // if (listItemData.phase > this.player.sim.getPhase()) { + // return false; + // } if (!!this.searchInput.value.length) { const formatQuery = (value: string) => value.toLowerCase().replaceAll(/[^a-zA-Z0-9\s]/g, ''); @@ -712,10 +716,10 @@ export default class ItemList { Quest {item.factionRestriction === UIItem_FactionRestriction.ALLIANCE_ONLY && ( - + )} {item.factionRestriction === UIItem_FactionRestriction.HORDE_ONLY && ( - + )}
{src.name} @@ -736,10 +740,10 @@ export default class ItemList { {name} {item.factionRestriction === UIItem_FactionRestriction.ALLIANCE_ONLY && ( - + )} {item.factionRestriction === UIItem_FactionRestriction.HORDE_ONLY && ( - + )}
diff --git a/ui/core/components/gear_picker/utils.tsx b/ui/core/components/gear_picker/utils.tsx index 9fd2cf5171..b9f571345e 100644 --- a/ui/core/components/gear_picker/utils.tsx +++ b/ui/core/components/gear_picker/utils.tsx @@ -6,23 +6,23 @@ import { ActionId } from '../../proto_utils/action_id'; import { getEmptyGemSocketIconUrl } from '../../proto_utils/gems'; const emptySlotIcons: Record = { - [ItemSlot.ItemSlotHead]: '/cata/assets/item_slots/head.jpg', - [ItemSlot.ItemSlotNeck]: '/cata/assets/item_slots/neck.jpg', - [ItemSlot.ItemSlotShoulder]: '/cata/assets/item_slots/shoulders.jpg', - [ItemSlot.ItemSlotBack]: '/cata/assets/item_slots/shirt.jpg', - [ItemSlot.ItemSlotChest]: '/cata/assets/item_slots/chest.jpg', - [ItemSlot.ItemSlotWrist]: '/cata/assets/item_slots/wrists.jpg', - [ItemSlot.ItemSlotHands]: '/cata/assets/item_slots/hands.jpg', - [ItemSlot.ItemSlotWaist]: '/cata/assets/item_slots/waist.jpg', - [ItemSlot.ItemSlotLegs]: '/cata/assets/item_slots/legs.jpg', - [ItemSlot.ItemSlotFeet]: '/cata/assets/item_slots/feet.jpg', - [ItemSlot.ItemSlotFinger1]: '/cata/assets/item_slots/finger.jpg', - [ItemSlot.ItemSlotFinger2]: '/cata/assets/item_slots/finger.jpg', - [ItemSlot.ItemSlotTrinket1]: '/cata/assets/item_slots/trinket.jpg', - [ItemSlot.ItemSlotTrinket2]: '/cata/assets/item_slots/trinket.jpg', - [ItemSlot.ItemSlotMainHand]: '/cata/assets/item_slots/mainhand.jpg', - [ItemSlot.ItemSlotOffHand]: '/cata/assets/item_slots/offhand.jpg', - [ItemSlot.ItemSlotRanged]: '/cata/assets/item_slots/ranged.jpg', + [ItemSlot.ItemSlotHead]: '/mop/assets/item_slots/head.jpg', + [ItemSlot.ItemSlotNeck]: '/mop/assets/item_slots/neck.jpg', + [ItemSlot.ItemSlotShoulder]: '/mop/assets/item_slots/shoulders.jpg', + [ItemSlot.ItemSlotBack]: '/mop/assets/item_slots/shirt.jpg', + [ItemSlot.ItemSlotChest]: '/mop/assets/item_slots/chest.jpg', + [ItemSlot.ItemSlotWrist]: '/mop/assets/item_slots/wrists.jpg', + [ItemSlot.ItemSlotHands]: '/mop/assets/item_slots/hands.jpg', + [ItemSlot.ItemSlotWaist]: '/mop/assets/item_slots/waist.jpg', + [ItemSlot.ItemSlotLegs]: '/mop/assets/item_slots/legs.jpg', + [ItemSlot.ItemSlotFeet]: '/mop/assets/item_slots/feet.jpg', + [ItemSlot.ItemSlotFinger1]: '/mop/assets/item_slots/finger.jpg', + [ItemSlot.ItemSlotFinger2]: '/mop/assets/item_slots/finger.jpg', + [ItemSlot.ItemSlotTrinket1]: '/mop/assets/item_slots/trinket.jpg', + [ItemSlot.ItemSlotTrinket2]: '/mop/assets/item_slots/trinket.jpg', + [ItemSlot.ItemSlotMainHand]: '/mop/assets/item_slots/mainhand.jpg', + [ItemSlot.ItemSlotOffHand]: '/mop/assets/item_slots/offhand.jpg', + [ItemSlot.ItemSlotRanged]: '/mop/assets/item_slots/ranged.jpg', }; export function getEmptySlotIconUrl(slot: ItemSlot): string { return emptySlotIcons[slot]; diff --git a/ui/core/components/icon_inputs.ts b/ui/core/components/icon_inputs.ts index 08a06a8bcb..6e4b35a2d3 100644 --- a/ui/core/components/icon_inputs.ts +++ b/ui/core/components/icon_inputs.ts @@ -1,6 +1,6 @@ import { Party } from '../party.js'; import { Player } from '../player'; -import { Consumes, Debuffs, Faction, IndividualBuffs, PartyBuffs, RaidBuffs, Spec } from '../proto/common.js'; +import { Consumes, ConsumesSpec, Debuffs, Faction, IndividualBuffs, PartyBuffs, RaidBuffs, Spec } from '../proto/common.js'; import { ActionId } from '../proto_utils/action_id.js'; import { Raid } from '../raid'; import { EventID, TypedEvent } from '../typed_event'; @@ -85,13 +85,13 @@ export function makeBooleanIndividualBuffInput( } export function makeBooleanConsumeInput( - config: BooleanInputConfig, + config: BooleanInputConfig, ): InputHelpers.TypedIconPickerConfig, boolean> { - return InputHelpers.makeBooleanIconInput>( + return InputHelpers.makeBooleanIconInput>( { getModObject: (player: Player) => player, getValue: (player: Player) => player.getConsumes(), - setValue: (eventID: EventID, player: Player, newVal: Consumes) => player.setConsumes(eventID, newVal), + setValue: (eventID: EventID, player: Player, newVal: ConsumesSpec) => player.setConsumes(eventID, newVal), changeEmitter: (player: Player) => TypedEvent.onAny([player.consumesChangeEmitter, player.professionChangeEmitter]), showWhen: (player: Player) => !config.showWhen || config.showWhen(player), }, diff --git a/ui/core/components/individual_sim_ui/apl_values.ts b/ui/core/components/individual_sim_ui/apl_values.ts index 99f5a38c38..43e57556ac 100644 --- a/ui/core/components/individual_sim_ui/apl_values.ts +++ b/ui/core/components/individual_sim_ui/apl_values.ts @@ -1,5 +1,3 @@ -import tippy from 'tippy.js'; - import { Player } from '../../player.js'; import { APLValue, @@ -60,10 +58,14 @@ import { APLValueMath, APLValueMath_MathOperator as MathOperator, APLValueMax, + APLValueMaxComboPoints, APLValueMaxEnergy, APLValueMaxFocus, APLValueMaxRunicPower, APLValueMin, + APLValueMonkCurrentChi, + APLValueMonkMaxChi, + APLValueMonkNextChiBrewRecharge, APLValueNextRuneCooldown, APLValueNot, APLValueNumberTargets, @@ -96,11 +98,10 @@ import { APLValueWarlockShouldRecastDrainSoul, APLValueWarlockShouldRefreshCorruption, } from '../../proto/apl.js'; -import { Class, Spec, UUID } from '../../proto/common.js'; +import { Class, Spec } from '../../proto/common.js'; import { ShamanTotems_TotemType as TotemType } from '../../proto/shaman.js'; -import { ActionId } from '../../proto_utils/action_id'; import { EventID } from '../../typed_event.js'; -import { existsInDOM, randomUUID } from '../../utils'; +import { randomUUID } from '../../utils'; import { Input, InputConfig } from '../input.js'; import { TextDropdownPicker, TextDropdownValueConfig } from '../pickers/dropdown_picker.jsx'; import { ListItemPickerConfig, ListPicker } from '../pickers/list_picker.jsx'; @@ -741,7 +742,7 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) { const clss = player.getClass(); const spec = player.getSpec(); - return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue; + return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue || clss === Class.ClassMonk; }, fields: [], }), @@ -753,7 +754,7 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) { const clss = player.getClass(); const spec = player.getSpec(); - return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue; + return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue || clss === Class.ClassMonk; }, fields: [], }), @@ -765,7 +766,7 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) { const clss = player.getClass(); const spec = player.getSpec(); - return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue; + return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue || clss === Class.ClassMonk; }, fields: [], }), @@ -777,13 +778,13 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) { const clss = player.getClass(); const spec = player.getSpec(); - return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue; + return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue || clss === Class.ClassMonk; }, fields: [valueFieldConfig('targetEnergy')], }), currentComboPoints: inputBuilder({ - label: 'Combo Points', - submenu: ['Resources'], + label: 'Current Combo Points', + submenu: ['Resources', 'Combo Points'], shortDescription: 'Amount of currently available Combo Points.', newValue: APLValueCurrentComboPoints.create, includeIf(player: Player, _isPrepull: boolean) { @@ -793,6 +794,34 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) { + const clss = player.getClass(); + const spec = player.getSpec(); + return spec === Spec.SpecFeralDruid || spec === Spec.SpecGuardianDruid || clss === Class.ClassRogue; + }, + fields: [], + }), + monkCurrentChi: inputBuilder({ + label: 'Current Chi', + submenu: ['Resources', 'Chi'], + shortDescription: 'Amount of currently available Chi.', + newValue: APLValueMonkCurrentChi.create, + includeIf: (player: Player, _isPrepull: boolean) => player.getClass() === Class.ClassMonk, + fields: [], + }), + monkMaxChi: inputBuilder({ + label: 'Max Chi', + submenu: ['Resources', 'Chi'], + shortDescription: 'Amount of maximum available Chi.', + newValue: APLValueMonkMaxChi.create, + includeIf: (player: Player, _isPrepull: boolean) => player.getClass() === Class.ClassMonk, + fields: [], + }), currentRunicPower: inputBuilder({ label: 'Current Runic Power', submenu: ['Resources', 'Runic Power'], @@ -1114,6 +1143,14 @@ const valueKindFactories: { [f in NonNullable]: ValueKindConfig, _isPrepull: boolean) => player.getClass() == Class.ClassMonk, + fields: [], + }), // Aura Sets allTrinketStatProcsActive: inputBuilder({ diff --git a/ui/core/components/individual_sim_ui/bulk_tab.tsx b/ui/core/components/individual_sim_ui/bulk_tab.tsx index b9978adbd0..3cf7495088 100644 --- a/ui/core/components/individual_sim_ui/bulk_tab.tsx +++ b/ui/core/components/individual_sim_ui/bulk_tab.tsx @@ -6,7 +6,8 @@ import { ref } from 'tsx-vanilla'; import { REPO_RELEASES_URL } from '../../constants/other'; import { IndividualSimUI } from '../../individual_sim_ui'; import { BulkSettings, ErrorOutcomeType, ProgressMetrics, TalentLoadout } from '../../proto/api'; -import { GemColor, ItemRandomSuffix, ItemSlot, ItemSpec, ReforgeStat, SimDatabase, SimEnchant, SimGem, SimItem, Spec } from '../../proto/common'; +import { GemColor, ItemRandomSuffix, ItemSlot, ItemSpec, ReforgeStat, SimEnchant, SimGem, Spec } from '../../proto/common'; +import { SimDatabase, SimItem } from '../../proto/db'; import { SavedTalents, UIEnchant, UIGem, UIItem } from '../../proto/ui'; import { ActionId } from '../../proto_utils/action_id'; import { getEmptyGemSocketIconUrl } from '../../proto_utils/gems'; diff --git a/ui/core/components/individual_sim_ui/consumes_picker.tsx b/ui/core/components/individual_sim_ui/consumes_picker.tsx index 492cbe479d..10cbef3293 100644 --- a/ui/core/components/individual_sim_ui/consumes_picker.tsx +++ b/ui/core/components/individual_sim_ui/consumes_picker.tsx @@ -2,6 +2,8 @@ import { ref } from 'tsx-vanilla'; import { IndividualSimUI } from '../../individual_sim_ui'; import { Player } from '../../player'; +import { ConsumableType } from '../../proto/common'; +import { Database } from '../../proto_utils/database'; import { TypedEvent } from '../../typed_event'; import { Component } from '../component'; import { buildIconInput } from '../icon_inputs'; @@ -14,20 +16,30 @@ import { SettingsTab } from './settings_tab'; export class ConsumesPicker extends Component { protected settingsTab: SettingsTab; protected simUI: IndividualSimUI; + protected db: Database; - constructor(parentElem: HTMLElement, settingsTab: SettingsTab, simUI: IndividualSimUI) { + constructor(parentElem: HTMLElement, settingsTab: SettingsTab, simUI: IndividualSimUI, db: Database) { super(parentElem, 'consumes-picker-root'); this.settingsTab = settingsTab; this.simUI = simUI; + this.db = db; + } + + public static async create(parentElem: HTMLElement, settingsTab: SettingsTab, simUI: IndividualSimUI): Promise { + const instance = new ConsumesPicker(parentElem, settingsTab, simUI, await Database.get()); + await instance.initAsync(); + return instance; + } - this.buildPotionsPicker(); - this.buildElixirsPicker(); - this.buildFoodPicker(); - this.buildEngPicker(); - this.buildPetPicker(); + private async initAsync(): Promise { + await this.buildPotionsPicker(); + await this.buildElixirsPicker(); + await this.buildFoodPicker(); + await this.buildEngPicker(); + await this.buildPetPicker(); } - private buildPotionsPicker() { + private async buildPotionsPicker(): Promise { const potionsRef = ref(); const row = this.rootElem.appendChild( @@ -37,13 +49,15 @@ export class ConsumesPicker extends Component { ); const potionsElem = potionsRef.value!; - //makePrepopPotionsInput; - const prePotOptions = ConsumablesInputs.makePrepopPotionsInput(relevantStatOptions(ConsumablesInputs.PRE_POTIONS_CONFIG, this.simUI), 'Prepop Potion'); + const pots = this.db.getConsumablesByTypeAndStats(ConsumableType.ConsumableTypePotion, this.simUI.individualConfig.epStats); + const prePotOptions = ConsumablesInputs.makeConsumableInput(pots, { consumesFieldName: 'prepotId' }, 'Prepop Potion'); + const potionsOptions = ConsumablesInputs.makeConsumableInput(pots, { consumesFieldName: 'potId' }, 'Combat Potion'); + const prePotPicker = buildIconInput(potionsElem, this.simUI.player, prePotOptions); - const potionsOptions = ConsumablesInputs.makePotionsInput(relevantStatOptions(ConsumablesInputs.POTIONS_CONFIG, this.simUI), 'Combat Potion'); const potionsPicker = buildIconInput(potionsElem, this.simUI.player, potionsOptions); + // TODO: Move conjured to DBC const conjuredOptions = ConsumablesInputs.makeConjuredInput(relevantStatOptions(ConsumablesInputs.CONJURED_CONFIG, this.simUI)); const conjuredPicker = buildIconInput(potionsElem, this.simUI.player, conjuredOptions); @@ -53,7 +67,7 @@ export class ConsumesPicker extends Component { this.addOnDisposeCallback(() => events.dispose()); } - private buildElixirsPicker() { + private async buildElixirsPicker(): Promise { const flaskRef = ref(); const battleElixirsRef = ref(); const guardianElixirsRef = ref(); @@ -72,15 +86,22 @@ export class ConsumesPicker extends Component { const battleElixirsElem = battleElixirsRef.value!; const guardianElixirsElem = guardianElixirsRef.value!; - const flasksOptions = ConsumablesInputs.makeFlasksInput(relevantStatOptions(ConsumablesInputs.FLASKS_CONFIG, this.simUI)); - buildIconInput(flasksElem, this.simUI.player, flasksOptions); - const battleElixirOptions = ConsumablesInputs.makeBattleElixirsInput(relevantStatOptions(ConsumablesInputs.BATTLE_ELIXIRS_CONFIG, this.simUI)); + const flasks = this.db.getConsumablesByTypeAndStats(ConsumableType.ConsumableTypeFlask, this.simUI.individualConfig.epStats); + const simpleFlasksOptions = ConsumablesInputs.makeConsumableInput(flasks, { consumesFieldName: 'flaskId' }, ''); + buildIconInput(flasksElem, this.simUI.player, simpleFlasksOptions); + + const battleElixirs = this.db.getConsumablesByType(ConsumableType.ConsumableTypeBattleElixir); + const battleElixirOptions = ConsumablesInputs.makeConsumableInput(battleElixirs, { consumesFieldName: 'battleElixirId' }, ''); + + const guardianElixirs = this.db.getConsumablesByType(ConsumableType.ConsumableTypeGuardianElixir); + const guardianElixirOptions = ConsumablesInputs.makeConsumableInput(guardianElixirs, { consumesFieldName: 'guardianElixirId' }, ''); + buildIconInput(battleElixirsElem, this.simUI.player, battleElixirOptions); - const guardianElixirOptions = ConsumablesInputs.makeGuardianElixirsInput(relevantStatOptions(ConsumablesInputs.GUARDIAN_ELIXIRS_CONFIG, this.simUI)); + buildIconInput(guardianElixirsElem, this.simUI.player, guardianElixirOptions); } - private buildFoodPicker() { + private async buildFoodPicker(): Promise { const foodRef = ref(); this.rootElem.appendChild( @@ -88,12 +109,12 @@ export class ConsumesPicker extends Component { , ); const foodsElem = foodRef.value!; - - const foodOptions = ConsumablesInputs.makeFoodInput(relevantStatOptions(ConsumablesInputs.FOOD_CONFIG, this.simUI)); - buildIconInput(foodsElem, this.simUI.player, foodOptions); + const foods = this.db.getConsumablesByTypeAndStats(ConsumableType.ConsumableTypeFood, this.simUI.individualConfig.epStats); + const foodsOptions = ConsumablesInputs.makeConsumableInput(foods, { consumesFieldName: 'foodId' }, ''); + buildIconInput(foodsElem, this.simUI.player, foodsOptions); } - private buildEngPicker() { + private async buildEngPicker(): Promise { const engiConsumesRef = ref(); const row = this.rootElem.appendChild( @@ -102,20 +123,23 @@ export class ConsumesPicker extends Component { ); const engiConsumesElem = engiConsumesRef.value!; + // TODO: make this from dbc as well const tinkerOptions = ConsumablesInputs.makeTinkerHandsInput(relevantStatOptions(ConsumablesInputs.TINKERS_HANDS_CONFIG, this.simUI), 'Gloves Tinkers'); const tinkerPicker = buildIconInput(engiConsumesElem, this.simUI.player, tinkerOptions); - const explosivePicker = buildIconInput(engiConsumesElem, this.simUI.player, ConsumablesInputs.ExplosiveBigDaddy); - const highpoweredBoltGunPicker = buildIconInput(engiConsumesElem, this.simUI.player, ConsumablesInputs.HighpoweredBoltGun); + const explosivesoptions = ConsumablesInputs.makeExplosivesInput(relevantStatOptions(ConsumablesInputs.EXPLOSIVE_CONFIG, this.simUI), 'Explosives'); + const explosivePicker = buildIconInput(engiConsumesElem, this.simUI.player, explosivesoptions); - const events = TypedEvent.onAny([this.simUI.player.professionChangeEmitter]).on(() => - this.updateRow(row, [explosivePicker, highpoweredBoltGunPicker, tinkerPicker]), - ); + //const explosivePicker = buildIconInput(engiConsumesElem, this.simUI.player, ConsumablesInputs.ExplosiveBigDaddy); + //const highpoweredBoltGunPicker = buildIconInput(engiConsumesElem, this.simUI.player, ConsumablesInputs.HighpoweredBoltGun); + + const events = TypedEvent.onAny([this.simUI.player.professionChangeEmitter]).on(() => this.updateRow(row, [explosivePicker, tinkerPicker])); this.addOnDisposeCallback(() => events.dispose()); - this.updateRow(row, [explosivePicker, highpoweredBoltGunPicker, tinkerPicker]); + // Initial update of row based on current state. + this.updateRow(row, [explosivePicker, tinkerPicker]); } - private buildPetPicker() { + private async buildPetPicker(): Promise { if (this.simUI.individualConfig.petConsumeInputs?.length) { const petConsumesRef = ref(); this.rootElem.appendChild( @@ -125,7 +149,8 @@ export class ConsumesPicker extends Component { ); const petConsumesElem = petConsumesRef.value!; - this.simUI.individualConfig.petConsumeInputs.map(iconInput => buildIconInput(petConsumesElem, this.simUI.player, iconInput)); + // Create pickers for each pet consume input. + this.simUI.individualConfig.petConsumeInputs.forEach(iconInput => buildIconInput(petConsumesElem, this.simUI.player, iconInput)); } } @@ -134,6 +159,7 @@ export class ConsumesPicker extends Component { } } +// A simple JSX stateless component for rows. const ConsumeRow = ({ label, children }: { label: string; children: JSX.Element }) => (
diff --git a/ui/core/components/individual_sim_ui/exporters/individual_60u_ep_exporter.tsx b/ui/core/components/individual_sim_ui/exporters/individual_60u_ep_exporter.tsx index 7c2d49027b..04d695aadb 100644 --- a/ui/core/components/individual_sim_ui/exporters/individual_60u_ep_exporter.tsx +++ b/ui/core/components/individual_sim_ui/exporters/individual_60u_ep_exporter.tsx @@ -30,7 +30,7 @@ export class Individual60UEPExporter extends IndividualEx }); return ( - `https://sixtyupgrades.com/cata/ep/import?name=${encodeURIComponent(`${player.getPlayerSpec().friendlyName} WoWSims Weights`)}` + + `https://sixtyupgrades.com/mop/ep/import?name=${encodeURIComponent(`${player.getPlayerSpec().friendlyName} WoWSims Weights`)}` + Object.keys(namesToWeights) .map(statName => `&${statName}=${namesToWeights[statName].toFixed(3)}`) .join('') diff --git a/ui/core/components/individual_sim_ui/exporters/individual_wowhead_gear_planner_exporter.tsx b/ui/core/components/individual_sim_ui/exporters/individual_wowhead_gear_planner_exporter.tsx index 01ed01f222..ebdf8c59da 100644 --- a/ui/core/components/individual_sim_ui/exporters/individual_wowhead_gear_planner_exporter.tsx +++ b/ui/core/components/individual_sim_ui/exporters/individual_wowhead_gear_planner_exporter.tsx @@ -210,7 +210,7 @@ export class IndividualWowheadGearPlannerExporter extends const classStr = player.getPlayerClass().friendlyName.replaceAll(/\s/g, '-').toLowerCase(); const raceStr = raceNames.get(player.getRace())!.replaceAll(/\s/g, '-').toLowerCase(); - const url = `https://www.wowhead.com/cata/gear-planner/${classStr}/${raceStr}/`; + const url = `https://www.wowhead.com/mop-classic/gear-planner/${classStr}/${raceStr}/`; const addGlyph = (glyphItemId: number): number => { const spellId = this.simUI.sim.db.glyphItemToSpellId(glyphItemId); @@ -226,9 +226,6 @@ export class IndividualWowheadGearPlannerExporter extends level: CHARACTER_LEVEL, talents: player.getTalentsString().split('-'), glyphs: [ - addGlyph(glyphs.prime1), - addGlyph(glyphs.prime2), - addGlyph(glyphs.prime3), addGlyph(glyphs.major1), addGlyph(glyphs.major2), addGlyph(glyphs.major3), diff --git a/ui/core/components/individual_sim_ui/importers/index.ts b/ui/core/components/individual_sim_ui/importers/index.ts index bf6cefe5a2..e5f974b3e8 100644 --- a/ui/core/components/individual_sim_ui/importers/index.ts +++ b/ui/core/components/individual_sim_ui/importers/index.ts @@ -1,5 +1,5 @@ export { BulkGearJsonImporter } from './bulk_gear_json_importer'; -export { Individual60UImporter } from './individual_60u_importer'; +// export { Individual60UImporter } from './individual_60u_importer'; export { IndividualAddonImporter } from './individual_addon_importer'; export { IndividualJsonImporter } from './individual_json_importer'; export { IndividualLinkImporter } from './individual_link_importer'; diff --git a/ui/core/components/individual_sim_ui/importers/individual_60u_importer.tsx b/ui/core/components/individual_sim_ui/importers/individual_60u_importer.tsx index 864dc62afa..3547005256 100644 --- a/ui/core/components/individual_sim_ui/importers/individual_60u_importer.tsx +++ b/ui/core/components/individual_sim_ui/importers/individual_60u_importer.tsx @@ -13,7 +13,7 @@ export class Individual60UImporter extends IndividualImpo <>

Import settings from{' '} - + Sixty Upgrades . diff --git a/ui/core/components/individual_sim_ui/importers/individual_addon_importer.tsx b/ui/core/components/individual_sim_ui/importers/individual_addon_importer.tsx index 1ecd9b9b17..589802c6ac 100644 --- a/ui/core/components/individual_sim_ui/importers/individual_addon_importer.tsx +++ b/ui/core/components/individual_sim_ui/importers/individual_addon_importer.tsx @@ -81,14 +81,10 @@ export class IndividualAddonImporter extends IndividualIm const glyphsConfig = classGlyphsConfig[charClass]; const db = await Database.get(); - const primeGlyphIDs = (importJson['glyphs']['prime'] as Array).map(g => glyphToID(g, db, glyphsConfig.primeGlyphs)); const majorGlyphIDs = (importJson['glyphs']['major'] as Array).map(g => glyphToID(g, db, glyphsConfig.majorGlyphs)); const minorGlyphIDs = (importJson['glyphs']['minor'] as Array).map(g => glyphToID(g, db, glyphsConfig.minorGlyphs)); const glyphs = Glyphs.create({ - prime1: primeGlyphIDs[0] || 0, - prime2: primeGlyphIDs[1] || 0, - prime3: primeGlyphIDs[2] || 0, major1: majorGlyphIDs[0] || 0, major2: majorGlyphIDs[1] || 0, major3: majorGlyphIDs[2] || 0, diff --git a/ui/core/components/individual_sim_ui/importers/individual_wowhead_gear_planner_importer.tsx b/ui/core/components/individual_sim_ui/importers/individual_wowhead_gear_planner_importer.tsx index cb751cbb2b..b7f36868f6 100644 --- a/ui/core/components/individual_sim_ui/importers/individual_wowhead_gear_planner_importer.tsx +++ b/ui/core/components/individual_sim_ui/importers/individual_wowhead_gear_planner_importer.tsx @@ -194,10 +194,10 @@ function parseTalentString(talentString: string): { talents: string; glyphs: num } function parseWowheadGearLink(link: string): any { - // Extract the part after 'cata/gear-planner/' - const match = link.match(/cata\/gear-planner\/(.+)/); + // Extract the part after 'mop-classic/gear-planner/' + const match = link.match(/mop-classic\/gear-planner\/(.+)/); if (!match) { - throw new Error(`Invalid WCL URL ${link}, must look like "https://www.wowhead.com/cata/gear-planner/CLASS/RACE/XXXX"`); + throw new Error(`Invalid WCL URL ${link}, must look like "https://www.wowhead.com/mop-classic/gear-planner/CLASS/RACE/XXXX"`); } const e = match[1]; return readHash(e); @@ -212,7 +212,7 @@ export class IndividualWowheadGearPlannerImporter extends <>

Import settings from{' '} - + Wowhead Gear Planner . @@ -243,9 +243,9 @@ export class IndividualWowheadGearPlannerImporter extends } async onImport(url: string) { - const match = url.match(/www\.wowhead\.com\/cata\/gear-planner\/([a-z\-]+)\/([a-z\-]+)\/([a-zA-Z0-9_\-]+)/); + const match = url.match(/www\.wowhead\.com\/mop-classic\/gear-planner\/([a-z\-]+)\/([a-z\-]+)\/([a-zA-Z0-9_\-]+)/); if (!match) { - throw new Error(`Invalid WCL URL ${url}, must look like "https://www.wowhead.com/cata/gear-planner/CLASS/RACE/XXXX"`); + throw new Error(`Invalid WCL URL ${url}, must look like "https://www.wowhead.com/mop-classic/gear-planner/CLASS/RACE/XXXX"`); } console.log(url); @@ -289,9 +289,6 @@ export class IndividualWowheadGearPlannerImporter extends }); const glyphs = Glyphs.create({ - prime1: this.simUI.sim.db.glyphSpellToItemId(glyphIds[0]), - prime2: this.simUI.sim.db.glyphSpellToItemId(glyphIds[1]), - prime3: this.simUI.sim.db.glyphSpellToItemId(glyphIds[2]), major1: this.simUI.sim.db.glyphSpellToItemId(glyphIds[3]), major2: this.simUI.sim.db.glyphSpellToItemId(glyphIds[4]), major3: this.simUI.sim.db.glyphSpellToItemId(glyphIds[5]), diff --git a/ui/core/components/individual_sim_ui/settings_tab.ts b/ui/core/components/individual_sim_ui/settings_tab.ts index 94c43c9092..deaca51917 100644 --- a/ui/core/components/individual_sim_ui/settings_tab.ts +++ b/ui/core/components/individual_sim_ui/settings_tab.ts @@ -1,7 +1,7 @@ import * as Tooltips from '../../constants/tooltips.js'; import { Encounter } from '../../encounter'; import { IndividualSimUI, InputSection } from '../../individual_sim_ui'; -import { Consumes, Debuffs, HealingModel, IndividualBuffs, ItemSwap, PartyBuffs, Profession, RaidBuffs } from '../../proto/common'; +import { Consumes, ConsumesSpec, Debuffs, HealingModel, IndividualBuffs, ItemSwap, PartyBuffs, Profession, RaidBuffs } from '../../proto/common'; import { SavedEncounter, SavedSettings } from '../../proto/ui'; import { professionNames, raceNames } from '../../proto_utils/names'; import { Stats } from '../../proto_utils/stats'; @@ -20,7 +20,7 @@ import { MultiIconPicker } from '../pickers/multi_icon_picker.js'; import { NumberPicker } from '../pickers/number_picker.js'; import { SavedDataManager } from '../saved_data_manager'; import { SimTab } from '../sim_tab'; -import { ConsumesPicker } from './consumes_picker'; +import { ConsumesPicker } from './consumes_picker.jsx'; import { PresetConfigurationPicker } from './preset_configuration_picker.jsx'; export class SettingsTab extends SimTab { @@ -169,8 +169,7 @@ export class SettingsTab extends SimTab { const contentBlock = new ContentBlock(column, 'consumes-settings', { header: { title: 'Consumables' }, }); - - new ConsumesPicker(contentBlock.bodyElement, this, this.simUI); + ConsumesPicker.create(contentBlock.bodyElement, this, this.simUI); } private buildOtherSettings() { @@ -280,7 +279,7 @@ export class SettingsTab extends SimTab { party.setBuffs(eventID, newSettings.partyBuffs || PartyBuffs.create()); } simUI.player.setBuffs(eventID, newSettings.playerBuffs || IndividualBuffs.create()); - simUI.player.setConsumes(eventID, newSettings.consumes || Consumes.create()); + simUI.player.setConsumes(eventID, newSettings.consumables || ConsumesSpec.create()); simUI.player.setRace(eventID, newSettings.race); simUI.player.setProfessions(eventID, newSettings.professions); simUI.player.itemSwapSettings.setItemSwapSettings( @@ -341,7 +340,7 @@ export class SettingsTab extends SimTab { partyBuffs: this.simUI.player.getParty()?.getBuffs() || PartyBuffs.create(), playerBuffs: this.simUI.player.getBuffs(), debuffs: this.simUI.sim.raid.getDebuffs(), - consumes: this.simUI.player.getConsumes(), + consumables: this.simUI.player.getConsumes(), race: this.simUI.player.getRace(), professions: this.simUI.player.getProfessions(), enableItemSwap: this.simUI.player.itemSwapSettings.getEnableItemSwap(), diff --git a/ui/core/components/individual_sim_ui/talents_tab.ts b/ui/core/components/individual_sim_ui/talents_tab.tsx similarity index 56% rename from ui/core/components/individual_sim_ui/talents_tab.ts rename to ui/core/components/individual_sim_ui/talents_tab.tsx index 2d4ee32bb1..ea3488a34a 100644 --- a/ui/core/components/individual_sim_ui/talents_tab.ts +++ b/ui/core/components/individual_sim_ui/talents_tab.tsx @@ -1,9 +1,8 @@ import { IndividualSimUI } from '../../individual_sim_ui'; import { Player } from '../../player'; -import { Class, Glyphs, Spec } from '../../proto/common'; +import { Glyphs, Spec } from '../../proto/common'; import { SavedTalents } from '../../proto/ui'; import { classTalentsConfig } from '../../talents/factory'; -import { HunterPetTalentsPicker } from '../../talents/hunter_pet'; import { TalentsPicker } from '../../talents/talents_picker'; import { EventID, TypedEvent } from '../../typed_event'; import { SavedDataManager } from '../saved_data_manager'; @@ -20,10 +19,8 @@ export class TalentsTab extends SimTab { super(parentElem, simUI, { identifier: 'talents-tab', title: 'Talents' }); this.simUI = simUI; - this.leftPanel = document.createElement('div'); - this.leftPanel.classList.add('talents-tab-left', 'tab-panel-left'); - this.rightPanel = document.createElement('div'); - this.rightPanel.classList.add('talents-tab-right', 'tab-panel-right', 'within-raid-sim-hide'); + this.leftPanel = (

) as HTMLElement; + this.rightPanel = (
) as HTMLElement; this.contentContainer.appendChild(this.leftPanel); this.contentContainer.appendChild(this.rightPanel); @@ -32,11 +29,7 @@ export class TalentsTab extends SimTab { } protected buildTabContent() { - if (this.simUI.player.getClass() == Class.ClassHunter) { - this.buildHunterPickers(); - } else { - this.buildTalentsPicker(this.leftPanel); - } + this.buildTalentsPicker(this.leftPanel); this.buildPresetConfigurationPicker(); this.buildSavedTalentsPicker(); @@ -45,67 +38,16 @@ export class TalentsTab extends SimTab { private buildTalentsPicker(parentElem: HTMLElement) { new TalentsPicker(parentElem, this.simUI.player, { playerClass: this.simUI.player.getClass(), - trees: classTalentsConfig[this.simUI.player.getClass()], + playerSpec: this.simUI.player.getSpec(), + tree: classTalentsConfig[this.simUI.player.getClass()]!, changedEvent: (player: Player) => player.talentsChangeEmitter, getValue: (player: Player) => player.getTalentsString(), setValue: (eventID: EventID, player: Player, newValue: string) => { player.setTalentsString(eventID, newValue); }, - pointsPerRow: 5, }); } - private buildHunterPickers() { - this.leftPanel.innerHTML = ` -
- -
-
-
-
-
- `; - - const playerTab = this.leftPanel.querySelector('#player-talents-tab') as HTMLElement; - const petTab = this.leftPanel.querySelector('#pet-talents-tab') as HTMLElement; - - this.buildTalentsPicker(playerTab); - this.buildHunterPetPicker(petTab); - } - - private buildHunterPetPicker(parentElem: HTMLElement) { - if (this.simUI.player.isClass(Class.ClassHunter)) { - new HunterPetTalentsPicker(parentElem, this.simUI, this.simUI.player); - } - } - private buildPresetConfigurationPicker() { new PresetConfigurationPicker(this.rightPanel, this.simUI, ['talents']); } diff --git a/ui/core/components/inputs/buffs_debuffs.ts b/ui/core/components/inputs/buffs_debuffs.ts index 8f461052a2..b8856ddef4 100644 --- a/ui/core/components/inputs/buffs_debuffs.ts +++ b/ui/core/components/inputs/buffs_debuffs.ts @@ -28,6 +28,7 @@ export const AllStatsBuff = InputHelpers.makeMultiIconInput( [ makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(20217), fieldName: 'blessingOfKings' }), makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(1126), fieldName: 'markOfTheWild' }), + makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(116781), fieldName: 'legacyOfTheWhiteTiger' }), makeBooleanRaidBuffInput({ actionId: ActionId.fromItemId(63140), fieldName: 'drumsOfTheBurningWild' }), ], 'Stats', @@ -104,6 +105,7 @@ export const CritBuff = InputHelpers.makeMultiIconInput( makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(51701), fieldName: 'honorAmongThieves' }), makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(29801), fieldName: 'rampage' }), makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(24604), fieldName: 'furiousHowl' }), + makeBooleanRaidBuffInput({ actionId: ActionId.fromSpellId(115921), fieldName: 'legacyOfTheEmperor' }), ], 'Crit %', ); diff --git a/ui/core/components/inputs/consumables.ts b/ui/core/components/inputs/consumables.ts index 289ebb4263..959cb675da 100644 --- a/ui/core/components/inputs/consumables.ts +++ b/ui/core/components/inputs/consumables.ts @@ -1,22 +1,17 @@ import { Player } from '../../player'; import { - BattleElixir, Class, Conjured, - Consumes, + ConsumesSpec, Explosive, - Flask, - Food, - GuardianElixir, - Potions, Profession, Spec, Stat, TinkerHands, } from '../../proto/common'; +import { Consumable } from '../../proto/db'; import { ActionId } from '../../proto_utils/action_id'; import { EventID, TypedEvent } from '../../typed_event'; -import { makeBooleanConsumeInput } from '../icon_inputs'; import * as InputHelpers from '../input_helpers'; import { IconEnumValueConfig } from '../pickers/icon_enum_picker'; import { ActionInputConfig, ItemStatOption } from './stat_options'; @@ -30,7 +25,7 @@ export interface ConsumableStatOption extends ItemStatOption { } export interface ConsumeInputFactoryArgs { - consumesFieldName: keyof Consumes; + consumesFieldName: keyof ConsumesSpec; // Additional callback if logic besides syncing consumes is required onSet?: (eventactionId: EventID, player: Player, newValue: T) => void; showWhen?: (player: Player) => boolean; @@ -64,7 +59,6 @@ function makeConsumeInputFactory( getValue: (player: Player) => player.getConsumes()[args.consumesFieldName] as T, setValue: (eventID: EventID, player: Player, newValue: number) => { const newConsumes = player.getConsumes(); - if (newConsumes[args.consumesFieldName] === newValue) { return; } @@ -87,15 +81,15 @@ function makeConsumeInputFactory( export const ConjuredDarkRune = { actionId: ActionId.fromItemId(12662), - value: Conjured.ConjuredDarkRune, + value: 12662, }; export const ConjuredHealthstone = { actionId: ActionId.fromItemId(5512), - value: Conjured.ConjuredHealthstone, + value: 5512, }; export const ConjuredRogueThistleTea = { actionId: ActionId.fromItemId(7676), - value: Conjured.ConjuredRogueThistleTea, + value: 7676, showWhen: (player: Player) => player.getClass() == Class.ClassRogue, }; @@ -105,7 +99,7 @@ export const CONJURED_CONFIG = [ { config: ConjuredDarkRune, stats: [Stat.StatIntellect] }, ] as ConsumableStatOption[]; -export const makeConjuredInput = makeConsumeInputFactory({ consumesFieldName: 'defaultConjured' }); +export const makeConjuredInput = makeConsumeInputFactory({ consumesFieldName: 'conjuredId' }); /////////////////////////////////////////////////////////////////////////// // EXPLOSIVES @@ -142,16 +136,23 @@ export const makeConjuredInput = makeConsumeInputFactory({ consumesFieldName: 'd // showWhen: (player: Player) => player.hasProfession(Profession.Engineering), // }); -export const ExplosiveBigDaddy = makeBooleanConsumeInput({ +export const ExplosiveBigDaddy = { actionId: ActionId.fromItemId(63396), - fieldName: 'explosiveBigDaddy', + value: 89637, showWhen: (player: Player) => player.hasProfession(Profession.Engineering), -}); -export const HighpoweredBoltGun = makeBooleanConsumeInput({ +}; + +export const HighpoweredBoltGun = { actionId: ActionId.fromItemId(60223), - fieldName: 'highpoweredBoltGun', + value: 82207, showWhen: (player: Player) => player.hasProfession(Profession.Engineering), -}); +}; + +export const EXPLOSIVE_CONFIG = [ + { config: ExplosiveBigDaddy, stats: [] }, + { config: HighpoweredBoltGun, stats: [] }, +] as ConsumableStatOption[]; +export const makeExplosivesInput = makeConsumeInputFactory({ consumesFieldName: 'explosiveId' }); /////////////////////////////////////////////////////////////////////////// // Tinkers @@ -159,23 +160,23 @@ export const HighpoweredBoltGun = makeBooleanConsumeInput({ export const TinkerHandsSynapseSprings = { actionId: ActionId.fromSpellId(82174), - value: TinkerHands.TinkerHandsSynapseSprings, + value: 82174, }; export const TinkerHandsQuickflipDeflectionPlates = { actionId: ActionId.fromSpellId(82176), - value: TinkerHands.TinkerHandsQuickflipDeflectionPlates, + value: 82176, }; export const TinkerHandsTazikShocker = { actionId: ActionId.fromSpellId(82179), - value: TinkerHands.TinkerHandsTazikShocker, + value: 82179, }; export const TinkerHandsSpinalHealingInjector = { actionId: ActionId.fromSpellId(82184), - value: TinkerHands.TinkerHandsSpinalHealingInjector, + value: 82184, }; export const TinkerHandsZ50ManaGulper = { actionId: ActionId.fromSpellId(82186), - value: TinkerHands.TinkerHandsZ50ManaGulper, + value: 82186, }; export const TINKERS_HANDS_CONFIG = [ @@ -187,520 +188,55 @@ export const TINKERS_HANDS_CONFIG = [ ] as ConsumableStatOption[]; export const makeTinkerHandsInput = makeConsumeInputFactory({ - consumesFieldName: 'tinkerHands', + consumesFieldName: 'tinkerId', showWhen: (player: Player) => player.hasProfession(Profession.Engineering), }); -/////////////////////////////////////////////////////////////////////////// -// FLASKS + ELIXIRS -/////////////////////////////////////////////////////////////////////////// - -// Flasks -export const FlaskOfTitanicStrength = { - actionId: ActionId.fromItemId(58088), // Use the correct item ID - value: Flask.FlaskOfTitanicStrength, -}; - -export const FlaskOfTheWinds = { - actionId: ActionId.fromItemId(58087), // Use the correct item ID - value: Flask.FlaskOfTheWinds, -}; - -export const FlaskOfSteelskin = { - actionId: ActionId.fromItemId(58085), // Use the correct item ID - value: Flask.FlaskOfSteelskin, -}; - -export const FlaskOfFlowingWater = { - actionId: ActionId.fromItemId(67438), // Use the correct item ID - value: Flask.FlaskOfFlowingWater, -}; - -export const FlaskOfTheDraconicMind = { - actionId: ActionId.fromItemId(58086), // Use the correct item ID - value: Flask.FlaskOfTheDraconicMind, -}; - -export const FlaskOfTheFrostWyrm = { - actionId: ActionId.fromItemId(46376), - value: Flask.FlaskOfTheFrostWyrm, -}; -export const FlaskOfEndlessRage = { - actionId: ActionId.fromItemId(46377), - value: Flask.FlaskOfEndlessRage, -}; -export const FlaskOfPureMojo = { - actionId: ActionId.fromItemId(46378), - value: Flask.FlaskOfPureMojo, -}; -export const FlaskOfStoneblood = { - actionId: ActionId.fromItemId(46379), - value: Flask.FlaskOfStoneblood, -}; -export const LesserFlaskOfToughness = { - actionId: ActionId.fromItemId(40079), - value: Flask.LesserFlaskOfToughness, -}; -export const LesserFlaskOfResistance = { - actionId: ActionId.fromItemId(44939), - value: Flask.LesserFlaskOfResistance, -}; - -export const FLASKS_CONFIG = [ - { config: FlaskOfTheDraconicMind, stats: [Stat.StatSpellPower] }, - { config: FlaskOfTitanicStrength, stats: [Stat.StatStrength] }, - { config: FlaskOfTheWinds, stats: [Stat.StatAgility] }, - { config: FlaskOfSteelskin, stats: [Stat.StatStamina] }, - { config: FlaskOfFlowingWater, stats: [Stat.StatSpirit] }, - { config: FlaskOfTheFrostWyrm, stats: [Stat.StatSpellPower] }, - { config: FlaskOfEndlessRage, stats: [Stat.StatAttackPower, Stat.StatRangedAttackPower] }, - { config: FlaskOfPureMojo, stats: [Stat.StatMP5] }, - { config: FlaskOfStoneblood, stats: [Stat.StatStamina] }, - { config: LesserFlaskOfToughness, stats: [Stat.StatResilienceRating] }, - { - config: LesserFlaskOfResistance, - stats: [Stat.StatArcaneResistance, Stat.StatFireResistance, Stat.StatFrostResistance, Stat.StatNatureResistance, Stat.StatShadowResistance], - }, -] as ConsumableStatOption[]; - -export const makeFlasksInput = makeConsumeInputFactory({ - consumesFieldName: 'flask', - onSet: (eventID: EventID, player: Player, newValue: Flask) => { - if (newValue) { - const newConsumes = player.getConsumes(); - newConsumes.battleElixir = BattleElixir.BattleElixirUnknown; - newConsumes.guardianElixir = GuardianElixir.GuardianElixirUnknown; - player.setConsumes(eventID, newConsumes); - } - }, -}); - -// Battle Elixirs -export const ElixirOfTheMaster = { - actionId: ActionId.fromItemId(58148), - value: BattleElixir.ElixirOfTheMaster, -}; - -export const ElixirOfMightySpeed = { - actionId: ActionId.fromItemId(58144), - value: BattleElixir.ElixirOfMightySpeed, -}; - -export const ElixirOfImpossibleAccuracy = { - actionId: ActionId.fromItemId(58094), - value: BattleElixir.ElixirOfImpossibleAccuracy, -}; - -export const ElixirOfTheCobra = { - actionId: ActionId.fromItemId(58092), - value: BattleElixir.ElixirOfTheCobra, -}; - -export const ElixirOfTheNaga = { - actionId: ActionId.fromItemId(58089), - value: BattleElixir.ElixirOfTheNaga, -}; - -export const GhostElixir = { - actionId: ActionId.fromItemId(58084), - value: BattleElixir.GhostElixir, -}; -export const ElixirOfAccuracy = { - actionId: ActionId.fromItemId(44325), - value: BattleElixir.ElixirOfAccuracy, -}; -export const ElixirOfArmorPiercing = { - actionId: ActionId.fromItemId(44330), - value: BattleElixir.ElixirOfArmorPiercing, -}; -export const ElixirOfDeadlyStrikes = { - actionId: ActionId.fromItemId(44327), - value: BattleElixir.ElixirOfDeadlyStrikes, -}; -export const ElixirOfExpertise = { - actionId: ActionId.fromItemId(44329), - value: BattleElixir.ElixirOfExpertise, -}; -export const ElixirOfLightningSpeed = { - actionId: ActionId.fromItemId(44331), - value: BattleElixir.ElixirOfLightningSpeed, -}; -export const ElixirOfMightyAgility = { - actionId: ActionId.fromItemId(39666), - value: BattleElixir.ElixirOfMightyAgility, -}; -export const ElixirOfMightyStrength = { - actionId: ActionId.fromItemId(40073), - value: BattleElixir.ElixirOfMightyStrength, -}; -export const GurusElixir = { - actionId: ActionId.fromItemId(40076), - value: BattleElixir.GurusElixir, -}; -export const SpellpowerElixir = { - actionId: ActionId.fromItemId(40070), - value: BattleElixir.SpellpowerElixir, -}; -export const WrathElixir = { - actionId: ActionId.fromItemId(40068), - value: BattleElixir.WrathElixir, -}; -export const ElixirOfDemonslaying = { - actionId: ActionId.fromItemId(9224), - value: BattleElixir.ElixirOfDemonslaying, -}; - -export const BATTLE_ELIXIRS_CONFIG = [ - { config: ElixirOfTheMaster, stats: [Stat.StatMasteryRating] }, - { config: ElixirOfMightySpeed, stats: [Stat.StatHasteRating] }, - { config: ElixirOfImpossibleAccuracy, stats: [Stat.StatHitRating] }, - { config: ElixirOfTheCobra, stats: [Stat.StatCritRating] }, - { config: ElixirOfTheNaga, stats: [Stat.StatExpertiseRating] }, - { config: GhostElixir, stats: [Stat.StatSpirit] }, - { config: ElixirOfAccuracy, stats: [Stat.StatHitRating] }, - { config: ElixirOfDeadlyStrikes, stats: [Stat.StatCritRating] }, - { config: ElixirOfExpertise, stats: [Stat.StatExpertiseRating] }, - { config: ElixirOfLightningSpeed, stats: [Stat.StatHasteRating] }, - { config: ElixirOfMightyAgility, stats: [Stat.StatAgility] }, - { config: ElixirOfMightyStrength, stats: [Stat.StatStrength] }, - { - config: GurusElixir, - stats: [Stat.StatStamina, Stat.StatAgility, Stat.StatStrength, Stat.StatSpirit, Stat.StatIntellect], - }, - { config: SpellpowerElixir, stats: [Stat.StatSpellPower] }, - { config: WrathElixir, stats: [Stat.StatAttackPower, Stat.StatRangedAttackPower] }, -] as ConsumableStatOption[]; - -export const makeBattleElixirsInput = makeConsumeInputFactory({ - consumesFieldName: 'battleElixir', - onSet: (eventID: EventID, player: Player, newValue: BattleElixir) => { - if (newValue) { - const newConsumes = player.getConsumes(); - newConsumes.flask = Flask.FlaskUnknown; - player.setConsumes(eventID, newConsumes); - } - }, -}); - -// Guardian Elixirs -export const ElixirOfDeepEarth = { - actionId: ActionId.fromItemId(58093), - value: GuardianElixir.ElixirOfDeepEarth, -}; -export const PrismaticElixir = { - actionId: ActionId.fromItemId(58143), - value: GuardianElixir.PrismaticElixir, -}; -export const ElixirOfMightyDefense = { - actionId: ActionId.fromItemId(44328), - value: GuardianElixir.ElixirOfMightyDefense, -}; -export const ElixirOfMightyFortitude = { - actionId: ActionId.fromItemId(40078), - value: GuardianElixir.ElixirOfMightyFortitude, -}; -export const ElixirOfMightyMageblood = { - actionId: ActionId.fromItemId(40109), - value: GuardianElixir.ElixirOfMightyMageblood, -}; -export const ElixirOfMightyThoughts = { - actionId: ActionId.fromItemId(44332), - value: GuardianElixir.ElixirOfMightyThoughts, -}; -export const ElixirOfProtection = { - actionId: ActionId.fromItemId(40097), - value: GuardianElixir.ElixirOfProtection, -}; -export const ElixirOfSpirit = { - actionId: ActionId.fromItemId(40072), - value: GuardianElixir.ElixirOfSpirit, -}; - -export const GUARDIAN_ELIXIRS_CONFIG = [ - { config: ElixirOfDeepEarth, stats: [Stat.StatArmor] }, - { - config: PrismaticElixir, - stats: [Stat.StatArcaneResistance, Stat.StatFireResistance, Stat.StatFrostResistance, Stat.StatNatureResistance, Stat.StatShadowResistance], - }, - { config: ElixirOfMightyDefense, stats: [Stat.StatArmor] }, - { config: ElixirOfMightyFortitude, stats: [Stat.StatStamina] }, - { config: ElixirOfMightyMageblood, stats: [Stat.StatMP5] }, - { config: ElixirOfMightyThoughts, stats: [Stat.StatIntellect] }, - { config: ElixirOfProtection, stats: [Stat.StatArmor] }, - { config: ElixirOfSpirit, stats: [Stat.StatSpirit] }, -] as ConsumableStatOption[]; +export interface ConsumableInputOptions { + consumesFieldName: keyof ConsumesSpec; + setValue?: (eventID: EventID, player: Player, newValue: number) => void; +} -export const makeGuardianElixirsInput = makeConsumeInputFactory({ - consumesFieldName: 'guardianElixir', - onSet: (eventID: EventID, player: Player, newValue: GuardianElixir) => { - if (newValue) { - const newConsumes = player.getConsumes(); - newConsumes.flask = Flask.FlaskUnknown; +export function makeConsumableInput( + items: Consumable[], + options: ConsumableInputOptions, + tooltip?: string, +): InputHelpers.TypedIconEnumPickerConfig, number> { + return { + type: 'iconEnum', + tooltip: tooltip, + numColumns: items.length > 5 ? 2 : 1, + values: [{ value: 0, iconUrl: '', tooltip: 'None' }].concat( + items.map(item => ({ + value: item.id, + iconUrl: item.icon, + actionId: ActionId.fromItemId(item.id), + tooltip: item.name, + })), + ), + equals: (a: number, b: number) => a === b, + zeroValue: 0, + changedEvent: (player: Player) => player.consumesChangeEmitter, + getValue: (player: Player) => player.getConsumes()[options.consumesFieldName] as number, + setValue: (eventID: EventID, player: Player, newValue: number) => { + if (options.setValue) { + options.setValue(eventID, player, newValue); + } + + const newConsumes = { + ...player.getConsumes(), + [options.consumesFieldName]: newValue, + }; + + if (options.consumesFieldName === 'flaskId') { + newConsumes.guardianElixirId = 0; + newConsumes.battleElixirId = 0; + } + + if (options.consumesFieldName === 'battleElixirId' || options.consumesFieldName === 'guardianElixirId') { + newConsumes.flaskId = 0; + } player.setConsumes(eventID, newConsumes); - } - }, -}); - -/////////////////////////////////////////////////////////////////////////// -// FOOD -/////////////////////////////////////////////////////////////////////////// - -export const FoodFishFeast = { actionId: ActionId.fromItemId(43015), value: Food.FoodFishFeast }; -export const FoodGreatFeast = { actionId: ActionId.fromItemId(34753), value: Food.FoodGreatFeast }; -export const FoodBlackenedDragonfin = { - actionId: ActionId.fromItemId(42999), - value: Food.FoodBlackenedDragonfin, -}; -export const FoodHeartyRhino = { - actionId: ActionId.fromItemId(42995), - value: Food.FoodHeartyRhino, -}; -export const FoodMegaMammothMeal = { - actionId: ActionId.fromItemId(34754), - value: Food.FoodMegaMammothMeal, -}; -export const FoodSpicedWormBurger = { - actionId: ActionId.fromItemId(34756), - value: Food.FoodSpicedWormBurger, -}; -export const FoodRhinoliciousWormsteak = { - actionId: ActionId.fromItemId(42994), - value: Food.FoodRhinoliciousWormsteak, -}; -export const FoodImperialMantaSteak = { - actionId: ActionId.fromItemId(34769), - value: Food.FoodImperialMantaSteak, -}; -export const FoodSnapperExtreme = { - actionId: ActionId.fromItemId(42996), - value: Food.FoodSnapperExtreme, -}; -export const FoodMightyRhinoDogs = { - actionId: ActionId.fromItemId(34758), - value: Food.FoodMightyRhinoDogs, -}; -export const FoodFirecrackerSalmon = { - actionId: ActionId.fromItemId(34767), - value: Food.FoodFirecrackerSalmon, -}; -export const FoodCuttlesteak = { - actionId: ActionId.fromItemId(42998), - value: Food.FoodCuttlesteak, -}; -export const FoodDragonfinFilet = { - actionId: ActionId.fromItemId(43000), - value: Food.FoodDragonfinFilet, -}; - -export const FoodBlackenedBasilisk = { - actionId: ActionId.fromItemId(27657), - value: Food.FoodBlackenedBasilisk, -}; -export const FoodGrilledMudfish = { - actionId: ActionId.fromItemId(27664), - value: Food.FoodGrilledMudfish, -}; -export const FoodRavagerDog = { actionId: ActionId.fromItemId(27655), value: Food.FoodRavagerDog }; -export const FoodRoastedClefthoof = { - actionId: ActionId.fromItemId(27658), - value: Food.FoodRoastedClefthoof, -}; -export const FoodSpicyHotTalbuk = { - actionId: ActionId.fromItemId(33872), - value: Food.FoodSpicyHotTalbuk, -}; -export const FoodSkullfishSoup = { - actionId: ActionId.fromItemId(33825), - value: Food.FoodSkullfishSoup, -}; -export const FoodFishermansFeast = { - actionId: ActionId.fromItemId(33052), - value: Food.FoodFishermansFeast, -}; -export const FoodSeafoodMagnifiqueFeast = { - actionId: ActionId.fromItemId(62290), - value: Food.FoodSeafoodFeast, -}; -export const FoodFortuneCookie = { - actionId: ActionId.fromItemId(62649), - value: Food.FoodFortuneCookie, -}; -export const FoodSeveredSagefishHead = { - actionId: ActionId.fromItemId(62671), - value: Food.FoodSeveredSagefish, -}; -export const FoodBeerBastedCrocolisk = { - actionId: ActionId.fromItemId(62670), - value: Food.FoodBeerBasedCrocolisk, -}; -export const FoodBakedRockfish = { - actionId: ActionId.fromItemId(62661), - value: Food.FoodBakedRockfish, -}; -export const FoodBasiliskLiverdog = { - actionId: ActionId.fromItemId(62665), - value: Food.FoodBasiliskLiverdog, -}; -export const FoodBlackbellySushi = { - actionId: ActionId.fromItemId(62668), - value: Food.FoodBlackbellySushi, -}; -export const FoodSkeweredEll = { - actionId: ActionId.fromItemId(62669), - value: Food.FoodSkeweredEel, -}; -export const FoodCrocoliskAuGratin = { - actionId: ActionId.fromItemId(62664), - value: Food.FoodCrocoliskAuGratin, -}; -export const FoodDeliciousSagefishTail = { - actionId: ActionId.fromItemId(62666), - value: Food.FoodDeliciousSagefishTail, -}; -export const FoodMushroomSauceMudfish = { - actionId: ActionId.fromItemId(62667), - value: Food.FoodMushroomSauceMudfish, -}; -export const FoodGrilledDragon = { - actionId: ActionId.fromItemId(62662), - value: Food.FoodGrilledDragon, -}; -export const FoodLavascaleMinestrone = { - actionId: ActionId.fromItemId(62663), - value: Food.FoodLavascaleMinestrone, -}; - -export const FOOD_CONFIG = [ - { - config: FoodSeafoodMagnifiqueFeast, - stats: [Stat.StatStamina, Stat.StatStrength, Stat.StatIntellect, Stat.StatAgility], - }, - { config: FoodFortuneCookie, stats: [Stat.StatAgility, Stat.StatStamina, Stat.StatStrength, Stat.StatAgility] }, - { config: FoodSeveredSagefishHead, stats: [Stat.StatIntellect] }, - { config: FoodBeerBastedCrocolisk, stats: [Stat.StatStrength] }, - { config: FoodSkeweredEll, stats: [Stat.StatAgility] }, - { config: FoodDeliciousSagefishTail, stats: [Stat.StatSpirit] }, - { config: FoodBakedRockfish, stats: [Stat.StatCritRating] }, - { config: FoodBasiliskLiverdog, stats: [Stat.StatHasteRating] }, - { config: FoodLavascaleMinestrone, stats: [Stat.StatMasteryRating] }, - { config: FoodGrilledDragon, stats: [Stat.StatHitRating] }, - { config: FoodCrocoliskAuGratin, stats: [Stat.StatExpertiseRating] }, - { config: FoodMushroomSauceMudfish, stats: [Stat.StatDodgeRating] }, - { config: FoodBlackbellySushi, stats: [Stat.StatParryRating] }, - { - config: FoodFishFeast, - stats: [Stat.StatStamina, Stat.StatAttackPower, Stat.StatRangedAttackPower, Stat.StatSpellPower], - }, - { - config: FoodGreatFeast, - stats: [Stat.StatStamina, Stat.StatAttackPower, Stat.StatRangedAttackPower, Stat.StatSpellPower], - }, - { config: FoodBlackenedDragonfin, stats: [Stat.StatAgility] }, - { config: FoodDragonfinFilet, stats: [Stat.StatStrength] }, - { config: FoodCuttlesteak, stats: [Stat.StatSpirit] }, - { config: FoodMegaMammothMeal, stats: [Stat.StatAttackPower, Stat.StatRangedAttackPower] }, - { config: FoodHeartyRhino, stats: [Stat.StatCritRating] }, - { config: FoodRhinoliciousWormsteak, stats: [Stat.StatExpertiseRating] }, - { config: FoodFirecrackerSalmon, stats: [Stat.StatSpellPower] }, - { config: FoodSnapperExtreme, stats: [Stat.StatHitRating] }, - { config: FoodSpicedWormBurger, stats: [Stat.StatCritRating] }, - { config: FoodImperialMantaSteak, stats: [Stat.StatHasteRating] }, - { config: FoodMightyRhinoDogs, stats: [Stat.StatMP5] }, -] as ConsumableStatOption[]; - -export const makeFoodInput = makeConsumeInputFactory({ consumesFieldName: 'food' }); - -/////////////////////////////////////////////////////////////////////////// -// PET -/////////////////////////////////////////////////////////////////////////// - -export const PetScrollOfAgilityV = makeBooleanConsumeInput({ - actionId: ActionId.fromItemId(27498), - fieldName: 'petScrollOfAgility', - value: 5, -}); -export const PetScrollOfStrengthV = makeBooleanConsumeInput({ - actionId: ActionId.fromItemId(27503), - fieldName: 'petScrollOfStrength', - value: 5, -}); - -/////////////////////////////////////////////////////////////////////////// -// POTIONS -/////////////////////////////////////////////////////////////////////////// -export const GolembloodPotion = { - actionId: ActionId.fromItemId(58146), - value: Potions.GolembloodPotion, -}; - -export const PotionOfTheTolvir = { - actionId: ActionId.fromItemId(58145), - value: Potions.PotionOfTheTolvir, -}; - -export const PotionOfConcentration = { - actionId: ActionId.fromItemId(57194), - value: Potions.PotionOfConcentration, -}; - -export const VolcanicPotion = { - actionId: ActionId.fromItemId(58091), - value: Potions.VolcanicPotion, -}; - -export const EarthenPotion = { - actionId: ActionId.fromItemId(58090), - value: Potions.EarthenPotion, -}; - -export const MightyRejuvenationPotion = { - actionId: ActionId.fromItemId(57193), - value: Potions.MightyRejuvenationPotion, -}; - -export const MythicalHealingPotion = { - actionId: ActionId.fromItemId(57191), - value: Potions.MythicalHealingPotion, -}; - -export const MythicalManaPotion = { - actionId: ActionId.fromItemId(57192), - value: Potions.MythicalManaPotion, -}; -export const PotionOfSpeed = { actionId: ActionId.fromItemId(40211), value: Potions.PotionOfSpeed }; -export const HastePotion = { actionId: ActionId.fromItemId(22838), value: Potions.HastePotion }; -export const MightyRagePotion = { - actionId: ActionId.fromItemId(13442), - value: Potions.MightyRagePotion, -}; -export const FlameCap = { - actionId: ActionId.fromItemId(22788), - value: Potions.FlameCap, -}; - -export const POTIONS_CONFIG = [ - { config: GolembloodPotion, stats: [Stat.StatStrength] }, - { config: PotionOfTheTolvir, stats: [Stat.StatAgility] }, - { config: PotionOfConcentration, stats: [Stat.StatMana] }, - { config: VolcanicPotion, stats: [Stat.StatIntellect] }, - { config: EarthenPotion, stats: [Stat.StatArmor] }, - { config: MightyRejuvenationPotion, stats: [Stat.StatIntellect, Stat.StatHealth] }, - { config: MythicalHealingPotion, stats: [Stat.StatHealth] }, - { config: MythicalManaPotion, stats: [Stat.StatIntellect] }, - { config: PotionOfSpeed, stats: [Stat.StatHasteRating] }, - { config: FlameCap, stats: [] }, -] as ConsumableStatOption[]; - -export const PRE_POTIONS_CONFIG = [ - { config: GolembloodPotion, stats: [Stat.StatStrength] }, - { config: PotionOfTheTolvir, stats: [Stat.StatAgility] }, - { config: VolcanicPotion, stats: [Stat.StatIntellect] }, - { config: EarthenPotion, stats: [Stat.StatArmor] }, - { config: PotionOfSpeed, stats: [Stat.StatHasteRating] }, - { config: FlameCap, stats: [] }, -] as ConsumableStatOption[]; - -export const makePotionsInput = makeConsumeInputFactory({ consumesFieldName: 'defaultPotion' }); -export const makePrepopPotionsInput = makeConsumeInputFactory({ - consumesFieldName: 'prepopPotion', -}); + }, + }; +} diff --git a/ui/core/components/inputs/other_inputs.ts b/ui/core/components/inputs/other_inputs.ts index 237e363b6c..4c563bd52d 100644 --- a/ui/core/components/inputs/other_inputs.ts +++ b/ui/core/components/inputs/other_inputs.ts @@ -75,10 +75,9 @@ export function makePhaseSelector(parent: HTMLElement, sim: Sim): EnumPicker sim.phaseChangeEmitter, getValue: (sim: Sim) => sim.getPhase(), diff --git a/ui/core/components/sim_title_dropdown.tsx b/ui/core/components/sim_title_dropdown.tsx index ca782af235..25d2b1d2d7 100644 --- a/ui/core/components/sim_title_dropdown.tsx +++ b/ui/core/components/sim_title_dropdown.tsx @@ -95,7 +95,7 @@ export class SimTitleDropdown extends Component {
- WoWSims - Cataclysm + WoWSims - Mists of Pandaria {data.type === 'Raid' && raidSimLabel} {data.type === 'Spec' && PlayerSpecs.getFullSpecName(data.spec)} diff --git a/ui/core/components/suggest_reforges_action.tsx b/ui/core/components/suggest_reforges_action.tsx index 625bec89b7..0b8181592a 100644 --- a/ui/core/components/suggest_reforges_action.tsx +++ b/ui/core/components/suggest_reforges_action.tsx @@ -967,21 +967,7 @@ export class ReforgeOptimizer { applyReforgeStat(coefficients: YalpsCoefficients, stat: Stat, amount: number, preCapEPs: Stats) { // Handle Spirit to Spell Hit conversion for hybrid casters separately from standard dependencies if (stat == Stat.StatSpirit && this.isHybridCaster) { - let appliedAmount = amount / Mechanics.SPELL_HIT_RATING_PER_HIT_PERCENT; - - switch (this.player.getSpec()) { - case Spec.SpecBalanceDruid: - appliedAmount *= 0.5 * (this.player.getTalents() as SpecTalents).balanceOfPower; - break; - case Spec.SpecShadowPriest: - appliedAmount *= 0.5 * (this.player.getTalents() as SpecTalents).twistedFaith; - break; - case Spec.SpecElementalShaman: - appliedAmount *= [0, 0.33, 0.66, 1][(this.player.getTalents() as SpecTalents).elementalPrecision]; - break; - } - - this.setPseudoStatCoefficient(coefficients, PseudoStat.PseudoStatSpellHitPercent, appliedAmount); + this.setPseudoStatCoefficient(coefficients, PseudoStat.PseudoStatSpellHitPercent, amount / Mechanics.SPELL_HIT_RATING_PER_HIT_PERCENT); } // If a highest Stat constraint is to be enforced, then update the diff --git a/ui/core/constants/mechanics.ts b/ui/core/constants/mechanics.ts index 510a091a5f..57a085913f 100644 --- a/ui/core/constants/mechanics.ts +++ b/ui/core/constants/mechanics.ts @@ -1,17 +1,18 @@ import { Spec } from "../proto/common"; -export const CHARACTER_LEVEL = 85; +export const CHARACTER_LEVEL = 90; export const BOSS_LEVEL = CHARACTER_LEVEL + 3; -export const EXPERTISE_PER_QUARTER_PERCENT_REDUCTION = 30.027197; -export const CRIT_RATING_PER_CRIT_PERCENT = 179.280040; -export const PHYSICAL_HIT_RATING_PER_HIT_PERCENT = 120.108800; -export const SPELL_HIT_RATING_PER_HIT_PERCENT = 102.445740; -export const HASTE_RATING_PER_HASTE_PERCENT = 128.057160; -export const MASTERY_RATING_PER_MASTERY_POINT = 179.280040; -export const DODGE_RATING_PER_DODGE_PERCENT = 176.718900; -export const PARRY_RATING_PER_PARRY_PERCENT = 176.718900; +export const EXPERTISE_PER_QUARTER_PERCENT_REDUCTION = 340; +export const HASTE_RATING_PER_HASTE_PERCENT = 425; +export const CRIT_RATING_PER_CRIT_PERCENT = 600; +export const PHYSICAL_HIT_RATING_PER_HIT_PERCENT = 340; +export const SPELL_HIT_RATING_PER_HIT_PERCENT = 340; +export const DODGE_RATING_PER_DODGE_PERCENT = 885; +export const PARRY_RATING_PER_PARRY_PERCENT = 885; +export const MASTERY_RATING_PER_MASTERY_POINT = 600; +// TODO: Adjust for MoP values // Mastery Ratings have various increments based on spec. export const masteryPercentPerPoint: Map = new Map([ [Spec.SpecAssassinationRogue, 3.5], @@ -45,4 +46,5 @@ export const masteryPercentPerPoint: Map = new Map([ [Spec.SpecAfflictionWarlock, 1.625], [Spec.SpecDemonologyWarlock, 2.3], [Spec.SpecDestructionWarlock, 1.35], + [Spec.SpecWindwalkerMonk, 2.5], ]); diff --git a/ui/core/constants/other.ts b/ui/core/constants/other.ts index c3188ab28b..c438169b6d 100644 --- a/ui/core/constants/other.ts +++ b/ui/core/constants/other.ts @@ -6,15 +6,14 @@ export enum Phase { Phase1 = 1, Phase2, Phase3, - Phase4, } -export const CURRENT_PHASE = Phase.Phase4; +export const CURRENT_PHASE = Phase.Phase1; export const CURRENT_API_VERSION: number = readMessageOption(ProtoVersion, 'proto.current_version_number')! as number; -// Github pages serves our site under the /cata directory (because the repo name is cata) -export const REPO_NAME = 'cata'; +// Github pages serves our site under the /mop directory (because the repo name is mop) +export const REPO_NAME = 'mop'; export const REPO_URL = `https://github.com/wowsims/${REPO_NAME}`; export const REPO_RELEASES_URL = `${REPO_URL}/releases`; export const REPO_NEW_ISSUE_URL = `${REPO_URL}/issues/new`; @@ -25,7 +24,7 @@ const pathnameParts = window.location.pathname.split('/'); const repoPartIdx = pathnameParts.findIndex(part => part == REPO_NAME); export const SPEC_DIRECTORY = repoPartIdx == -1 ? '' : pathnameParts[repoPartIdx + 1]; -export const LOCAL_STORAGE_PREFIX = '__cata'; +export const LOCAL_STORAGE_PREFIX = '__mop'; export enum SortDirection { ASC, diff --git a/ui/core/encounter.ts b/ui/core/encounter.ts index 8a0a430d71..8a2be8df76 100644 --- a/ui/core/encounter.ts +++ b/ui/core/encounter.ts @@ -171,7 +171,7 @@ export class Encounter { static defaultTargetProto(): TargetProto { // Copy default raid target used as fallback for missing DB. - // https://github.com/wowsims/cata/blob/3570c4fcf1a4e2cd81926019d4a1b3182f613de1/sim/encounters/register_all.go#L24 + // https://github.com/wowsims/mop/blob/3570c4fcf1a4e2cd81926019d4a1b3182f613de1/sim/encounters/register_all.go#L24 return TargetProto.create({ id: 31146, name: 'Raid Target', @@ -199,14 +199,5 @@ export class Encounter { if (!(proto.apiVersion < CURRENT_API_VERSION)) { return; } - // First migrate the stats arrays embedded in each target. - proto.targets.forEach(target => { - target.stats = Stats.migrateStatsArray(target.stats, proto.apiVersion, this.defaultTargetProto().stats); - }); - - // Any other required data migration code should go here. - - // Flag the version as up-to-date once all migrations are done. - proto.apiVersion = CURRENT_API_VERSION; } } diff --git a/ui/core/individual_sim_ui.tsx b/ui/core/individual_sim_ui.tsx index b1b159e001..80a2131149 100644 --- a/ui/core/individual_sim_ui.tsx +++ b/ui/core/individual_sim_ui.tsx @@ -5,7 +5,7 @@ import { EncounterPickerConfig } from './components/encounter_picker'; import * as IconInputs from './components/icon_inputs'; import { BulkTab } from './components/individual_sim_ui/bulk_tab'; import { - Individual60UEPExporter, + // Individual60UEPExporter, IndividualCLIExporter, IndividualJsonExporter, IndividualLinkExporter, @@ -14,7 +14,7 @@ import { } from './components/individual_sim_ui/exporters'; import { GearTab } from './components/individual_sim_ui/gear_tab'; import { - Individual60UImporter, + // Individual60UImporter, IndividualAddonImporter, IndividualJsonImporter, IndividualLinkImporter, @@ -37,7 +37,9 @@ import { PresetBuild, PresetEpWeights, PresetGear, PresetItemSwap, PresetRotatio import { StatWeightsResult } from './proto/api'; import { APLRotation, APLRotation_Type as APLRotationType } from './proto/apl'; import { + Class, Consumes, + ConsumesSpec, Cooldowns, Debuffs, Encounter as EncounterProto, @@ -62,7 +64,6 @@ import { armorTypeNames, professionNames } from './proto_utils/names'; import { pseudoStatIsCapped, StatCap, Stats, UnitStat } from './proto_utils/stats'; import { getTalentPoints, SpecOptions, SpecRotation } from './proto_utils/utils'; import { SimUI, SimWarning } from './sim_ui'; -import { MAX_POINTS_PLAYER } from './talents/talents_picker'; import { EventID, TypedEvent } from './typed_event'; import { isDevMode } from './utils'; @@ -96,8 +97,7 @@ export interface RaidSimPreset { spec: Spec; talents: SavedTalents; specOptions: SpecOptions; - consumes: Consumes; - + consumables: ConsumesSpec; defaultName?: string; defaultFactionRaces: Record; defaultGear: Record>; @@ -144,7 +144,7 @@ export interface IndividualSimUIConfig extends PlayerConf * breakpoint for the second listed stat (if present), etc. */ softCapBreakpoints?: StatCap[]; - consumes: Consumes; + consumables: ConsumesSpec; talents: SavedTalents; specOptions: SpecOptions; @@ -202,7 +202,7 @@ export interface Settings { raidBuffs: RaidBuffs; partyBuffs: PartyBuffs; individualBuffs: IndividualBuffs; - consumes: Consumes; + consumables: ConsumesSpec; race: Race; professions?: Array; } @@ -288,10 +288,8 @@ export abstract class IndividualSimUI extends SimUI { if (talentPoints == 0) { // Just return here, so we don't show a warning during page load. return ''; - } else if (talentPoints < MAX_POINTS_PLAYER) { + } else if (talentPoints < 6) { return 'Unspent talent points.'; - } else if (talentPoints > MAX_POINTS_PLAYER) { - return 'More than maximum talent points spent.'; } else { return ''; } @@ -427,7 +425,7 @@ export abstract class IndividualSimUI extends SimUI { !

- You can check out our other sims here + You can check out our other sims here

, ); @@ -468,14 +466,14 @@ export abstract class IndividualSimUI extends SimUI { private addTopbarComponents() { this.simHeader.addImportLink('JSON', new IndividualJsonImporter(this.rootElem, this), true); - this.simHeader.addImportLink('60U Cata', new Individual60UImporter(this.rootElem, this), true); + // this.simHeader.addImportLink('60U Cata', new Individual60UImporter(this.rootElem, this), true); this.simHeader.addImportLink('WoWHead', new IndividualWowheadGearPlannerImporter(this.rootElem, this), false, false); this.simHeader.addImportLink('Addon', new IndividualAddonImporter(this.rootElem, this), true); this.simHeader.addExportLink('Link', new IndividualLinkExporter(this.rootElem, this), false); this.simHeader.addExportLink('JSON', new IndividualJsonExporter(this.rootElem, this), true); this.simHeader.addExportLink('WoWHead', new IndividualWowheadGearPlannerExporter(this.rootElem, this), false, false); - this.simHeader.addExportLink('60U Cata EP', new Individual60UEPExporter(this.rootElem, this), false); + // this.simHeader.addExportLink('60U Cata EP', new Individual60UEPExporter(this.rootElem, this), false); this.simHeader.addExportLink('Pawn EP', new IndividualPawnEPExporter(this.rootElem, this), false); this.simHeader.addExportLink('CLI', new IndividualCLIExporter(this.rootElem, this), true); } @@ -524,7 +522,7 @@ export abstract class IndividualSimUI extends SimUI { this.player.applySharedDefaults(eventID); this.player.setRace(eventID, this.player.getPlayerClass().races[0]); this.player.setGear(eventID, this.sim.db.lookupEquipmentSpec(this.individualConfig.defaults.gear)); - this.player.setConsumes(eventID, this.individualConfig.defaults.consumes); + this.player.setConsumes(eventID, this.individualConfig.defaults.consumables); this.applyDefaultRotation(eventID); this.player.setTalentsString(eventID, this.individualConfig.defaults.talents.talentsString); this.player.setGlyphs(eventID, this.individualConfig.defaults.talents.glyphs || Glyphs.create()); diff --git a/ui/core/launched_sims.ts b/ui/core/launched_sims.ts index 0bc7b3858f..fc80605fbb 100644 --- a/ui/core/launched_sims.ts +++ b/ui/core/launched_sims.ts @@ -18,149 +18,162 @@ export type SimStatus = { }; export const raidSimStatus: SimStatus = { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }; // This list controls which links are shown in the top-left dropdown menu. export const simLaunchStatuses: Record = { [Spec.SpecUnknown]: { - phase: Phase.Phase3, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, // Death Knight [Spec.SpecBloodDeathKnight]: { - phase: Phase.Phase3, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecFrostDeathKnight]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecUnholyDeathKnight]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, // Druid [Spec.SpecBalanceDruid]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecFeralDruid]: { - phase: Phase.Phase3, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecGuardianDruid]: { - phase: Phase.Phase4, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecRestorationDruid]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, // Hunter [Spec.SpecBeastMasteryHunter]: { - phase: Phase.Phase3, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecMarksmanshipHunter]: { - phase: Phase.Phase3, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecSurvivalHunter]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, // Mage [Spec.SpecArcaneMage]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecFireMage]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecFrostMage]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, + // Monk + [Spec.SpecBrewmasterMonk]: { + phase: Phase.Phase1, + status: LaunchStatus.Unlaunched, + }, + [Spec.SpecMistweaverMonk]: { + phase: Phase.Phase1, + status: LaunchStatus.Unlaunched, + }, + [Spec.SpecWindwalkerMonk]: { + phase: Phase.Phase1, + status: LaunchStatus.Alpha, + }, // Paladin [Spec.SpecHolyPaladin]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, [Spec.SpecProtectionPaladin]: { - phase: Phase.Phase3, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecRetributionPaladin]: { - phase: Phase.Phase4, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, // Priest [Spec.SpecDisciplinePriest]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, [Spec.SpecHolyPriest]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, [Spec.SpecShadowPriest]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, // Rogue [Spec.SpecAssassinationRogue]: { - phase: Phase.Phase4, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecCombatRogue]: { - phase: Phase.Phase4, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, [Spec.SpecSubtletyRogue]: { - phase: Phase.Phase4, + phase: Phase.Phase1, status: LaunchStatus.Launched, }, // Shaman [Spec.SpecElementalShaman]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecEnhancementShaman]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecRestorationShaman]: { - phase: Phase.Phase2, + phase: Phase.Phase1, status: LaunchStatus.Unlaunched, }, // Warlock [Spec.SpecAfflictionWarlock]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecDemonologyWarlock]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecDestructionWarlock]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, // Warrior [Spec.SpecArmsWarrior]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecFuryWarrior]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, [Spec.SpecProtectionWarrior]: { - phase: Phase.Phase4, - status: LaunchStatus.Beta, + phase: Phase.Phase1, + status: LaunchStatus.Alpha, }, }; diff --git a/ui/core/player.ts b/ui/core/player.ts index 4322914f00..49cf0f2728 100644 --- a/ui/core/player.ts +++ b/ui/core/player.ts @@ -1,6 +1,7 @@ import { ItemSwapSettings } from './components/item_swap_picker'; import Toast from './components/toast'; import * as Mechanics from './constants/mechanics'; +import { CURRENT_API_VERSION } from './constants/other'; import { SimSettingCategories } from './constants/sim_settings'; import { MAX_PARTY_SIZE, Party } from './party'; import { PlayerClass } from './player_class'; @@ -17,27 +18,36 @@ import { } from './proto/api'; import { APLRotation, APLRotation_Type as APLRotationType, SimpleRotation } from './proto/apl'; import { + BattleElixir, Class, + Conjured, + ConsumableType, Consumes, + ConsumesSpec, Cooldowns, Faction, + Flask, + Food, GemColor, Glyphs, + GuardianElixir, HandType, HealingModel, IndividualBuffs, ItemRandomSuffix, ItemSlot, + Potions, Profession, PseudoStat, Race, ReforgeStat, - SimDatabase, Spec, Stat, + TinkerHands, UnitReference, UnitStats, } from './proto/common'; +import { SimDatabase } from './proto/db'; import { DungeonDifficulty, RaidFilterOption, @@ -62,7 +72,6 @@ import { emptyUnitReference, enchantAppliesToItem, getMetaGemEffectEP, - getTalentTree, getTalentTreePoints, isPVPItem, newUnitReference, @@ -234,7 +243,7 @@ export class Player { private name = ''; private buffs: IndividualBuffs = IndividualBuffs.create(); - private consumes: Consumes = Consumes.create(); + private consumables: ConsumesSpec = ConsumesSpec.create(); private bonusStats: Stats = new Stats(); private gear: Gear = new Gear({}); //private bulkEquipmentSpec: BulkEquipmentSpec = BulkEquipmentSpec.create(); @@ -693,16 +702,16 @@ export class Player { this.buffsChangeEmitter.emit(eventID); } - getConsumes(): Consumes { + getConsumes(): ConsumesSpec { // Make a defensive copy - return Consumes.clone(this.consumes); + return ConsumesSpec.clone(this.consumables); } - setConsumes(eventID: EventID, newConsumes: Consumes) { - if (Consumes.equals(this.consumes, newConsumes)) return; + setConsumes(eventID: EventID, newConsumes: ConsumesSpec) { + if (ConsumesSpec.equals(this.consumables, newConsumes)) return; // Make a defensive copy - this.consumes = Consumes.clone(newConsumes); + this.consumables = ConsumesSpec.clone(newConsumes); this.consumesChangeEmitter.emit(eventID); } @@ -911,10 +920,6 @@ export class Player { this.talentsChangeEmitter.emit(eventID); } - getTalentTree(): number { - return getTalentTree(this.getTalentsString()); - } - getTalentTreePoints(): Array { return getTalentTreePoints(this.getTalentsString()); } @@ -936,10 +941,6 @@ export class Player { this.glyphsChangeEmitter.emit(eventID); } - getPrimeGlyps(): Array { - return [this.glyphs.prime1, this.glyphs.prime2, this.glyphs.prime3].filter(glyph => glyph != 0); - } - getMajorGlyphs(): Array { return [this.glyphs.major1, this.glyphs.major2, this.glyphs.major3].filter(glyph => glyph != 0); } @@ -949,7 +950,7 @@ export class Player { } getAllGlyphs(): Array { - return this.getPrimeGlyps().concat(this.getMajorGlyphs().concat(this.getMinorGlyphs())); + return this.getMajorGlyphs().concat(this.getMinorGlyphs()); } getClassOptions(): ClassOptions { @@ -1148,7 +1149,6 @@ export class Player { // For random suffix items, use the suffix option with the highest EP for the purposes of ranking items in the picker. let maxSuffixEP = 0; - if (item.randomSuffixOptions.length > 0) { const suffixEPs = item.randomSuffixOptions.map(id => this.computeRandomSuffixEP(this.sim.db.getRandomSuffixById(id)! || 0)); maxSuffixEP = (Math.max(...suffixEPs) * item.randPropPoints) / 10000; @@ -1479,7 +1479,7 @@ export class Player { } if (exportCategory(SimSettingCategories.Consumes)) { PlayerProto.mergePartial(player, { - consumes: this.getConsumes(), + consumables: this.getConsumes(), }); } if (exportCategory(SimSettingCategories.Miscellaneous)) { @@ -1506,52 +1506,55 @@ export class Player { } fromProto(eventID: EventID, proto: PlayerProto, includeCategories?: Array) { - const loadCategory = (cat: SimSettingCategories) => !includeCategories || includeCategories.length == 0 || includeCategories.includes(cat); - - TypedEvent.freezeAllAndDo(() => { - if (loadCategory(SimSettingCategories.Gear)) { - this.setGear(eventID, proto.equipment ? this.sim.db.lookupEquipmentSpec(proto.equipment) : new Gear({})); - this.itemSwapSettings.setItemSwapSettings( - eventID, - proto.enableItemSwap, - proto.itemSwap ? this.sim.db.lookupItemSwap(proto.itemSwap) : new ItemSwapGear({}), - Stats.fromProto(proto.itemSwap?.prepullBonusStats), - ); - this.setBonusStats(eventID, Stats.fromProto(proto.bonusStats || UnitStats.create())); - //this.setBulkEquipmentSpec(eventID, BulkEquipmentSpec.create()); // Do not persist the bulk equipment settings. - } - if (loadCategory(SimSettingCategories.Talents)) { - this.setTalentsString(eventID, proto.talentsString); - this.setGlyphs(eventID, proto.glyphs || Glyphs.create()); - } - if (loadCategory(SimSettingCategories.Rotation)) { - if (proto.rotation?.type == APLRotationType.TypeUnknown) { - if (!proto.rotation) { - proto.rotation = APLRotation.create(); + // Fix potential out-of-date protos before importing + Player.updateProtoVersion(proto).then(() => { + const loadCategory = (cat: SimSettingCategories) => !includeCategories || includeCategories.length == 0 || includeCategories.includes(cat); + TypedEvent.freezeAllAndDo(() => { + eventID = TypedEvent.nextEventID(); + if (loadCategory(SimSettingCategories.Gear)) { + this.setGear(eventID, proto.equipment ? this.sim.db.lookupEquipmentSpec(proto.equipment) : new Gear({})); + this.itemSwapSettings.setItemSwapSettings( + eventID, + proto.enableItemSwap, + proto.itemSwap ? this.sim.db.lookupItemSwap(proto.itemSwap) : new ItemSwapGear({}), + Stats.fromProto(proto.itemSwap?.prepullBonusStats), + ); + this.setBonusStats(eventID, Stats.fromProto(proto.bonusStats || UnitStats.create())); + //this.setBulkEquipmentSpec(eventID, BulkEquipmentSpec.create()); // Do not persist the bulk equipment settings. + } + if (loadCategory(SimSettingCategories.Talents)) { + this.setTalentsString(eventID, proto.talentsString); + this.setGlyphs(eventID, proto.glyphs || Glyphs.create()); + } + if (loadCategory(SimSettingCategories.Rotation)) { + if (proto.rotation?.type == APLRotationType.TypeUnknown) { + if (!proto.rotation) { + proto.rotation = APLRotation.create(); + } + proto.rotation.type = APLRotationType.TypeAuto; } - proto.rotation.type = APLRotationType.TypeAuto; + this.setAplRotation(eventID, proto.rotation || APLRotation.create()); } - this.setAplRotation(eventID, proto.rotation || APLRotation.create()); - } - if (loadCategory(SimSettingCategories.Consumes)) { - this.setConsumes(eventID, proto.consumes || Consumes.create()); - } - if (loadCategory(SimSettingCategories.Miscellaneous)) { - this.setSpecOptions(eventID, this.specTypeFunctions.optionsFromPlayer(proto)); - this.setName(eventID, proto.name); - this.setRace(eventID, proto.race); - this.setProfession1(eventID, proto.profession1); - this.setProfession2(eventID, proto.profession2); - this.setReactionTime(eventID, proto.reactionTimeMs); - this.setChannelClipDelay(eventID, proto.channelClipDelayMs); - this.setInFrontOfTarget(eventID, proto.inFrontOfTarget); - this.setDistanceFromTarget(eventID, proto.distanceFromTarget); - this.setHealingModel(eventID, proto.healingModel || HealingModel.create()); - this.setDarkIntentUptime(eventID, proto.darkIntentUptime); - } - if (loadCategory(SimSettingCategories.External)) { - this.setBuffs(eventID, proto.buffs || IndividualBuffs.create()); - } + if (loadCategory(SimSettingCategories.Consumes)) { + this.setConsumes(eventID, proto.consumables || ConsumesSpec.create()); + } + if (loadCategory(SimSettingCategories.Miscellaneous)) { + this.setSpecOptions(eventID, this.specTypeFunctions.optionsFromPlayer(proto)); + this.setName(eventID, proto.name); + this.setRace(eventID, proto.race); + this.setProfession1(eventID, proto.profession1); + this.setProfession2(eventID, proto.profession2); + this.setReactionTime(eventID, proto.reactionTimeMs); + this.setChannelClipDelay(eventID, proto.channelClipDelayMs); + this.setInFrontOfTarget(eventID, proto.inFrontOfTarget); + this.setDistanceFromTarget(eventID, proto.distanceFromTarget); + this.setHealingModel(eventID, proto.healingModel || HealingModel.create()); + this.setDarkIntentUptime(eventID, proto.darkIntentUptime); + } + if (loadCategory(SimSettingCategories.External)) { + this.setBuffs(eventID, proto.buffs || IndividualBuffs.create()); + } + }); }); } @@ -1594,4 +1597,10 @@ export class Player { getMasteryPerPointModifier(): number { return Mechanics.masteryPercentPerPoint.get(this.getSpec()) || 0; } + + static async updateProtoVersion(proto: PlayerProto) { + if (!(proto.apiVersion < CURRENT_API_VERSION)) { + return; + } + } } diff --git a/ui/core/player_classes/index.ts b/ui/core/player_classes/index.ts index b81b0a43be..b61c5e0c4b 100644 --- a/ui/core/player_classes/index.ts +++ b/ui/core/player_classes/index.ts @@ -4,6 +4,7 @@ import { DeathKnight } from './death_knight'; import { Druid } from './druid'; import { Hunter } from './hunter'; import { Mage } from './mage'; +import { Monk } from './monk'; import { Paladin } from './paladin'; import { Priest } from './priest'; import { Rogue } from './rogue'; @@ -17,6 +18,7 @@ const protoToPlayerClass: Record | undefined> = { [Class.ClassDruid]: Druid, [Class.ClassHunter]: Hunter, [Class.ClassMage]: Mage, + [Class.ClassMonk]: Monk, [Class.ClassPaladin]: Paladin, [Class.ClassPriest]: Priest, [Class.ClassRogue]: Rogue, @@ -30,6 +32,7 @@ export const PlayerClasses = { Druid, Hunter, Mage, + Monk, Paladin, Priest, Rogue, @@ -46,5 +49,5 @@ export const PlayerClasses = { return protoToPlayerClass[protoId] as PlayerClass; }, - naturalOrder: [DeathKnight, Druid, Hunter, Mage, Paladin, Priest, Rogue, Shaman, Warlock, Warrior], + naturalOrder: [DeathKnight, Druid, Hunter, Mage, Monk, Paladin, Priest, Rogue, Shaman, Warlock, Warrior], }; diff --git a/ui/core/player_classes/monk.ts b/ui/core/player_classes/monk.ts new file mode 100644 index 0000000000..e970db0929 --- /dev/null +++ b/ui/core/player_classes/monk.ts @@ -0,0 +1,62 @@ +import { EligibleWeaponType, IconSize, PlayerClass } from '../player_class'; +import { PlayerSpec } from '../player_spec'; +import { BrewmasterMonk, MistweaverMonk, WindwalkerMonk } from '../player_specs/monk'; +import { ArmorType, Class, Race, RangedWeaponType, WeaponType } from '../proto/common'; +import { MonkSpecs } from '../proto_utils/utils'; + +export class Monk extends PlayerClass { + static classID = Class.ClassMonk as Class.ClassMonk; + static friendlyName = 'Monk'; + static hexColor = '#00ff98'; + static specs: Record> = { + [BrewmasterMonk.friendlyName]: BrewmasterMonk, + [MistweaverMonk.friendlyName]: MistweaverMonk, + [WindwalkerMonk.friendlyName]: WindwalkerMonk, + }; + static races: Race[] = [ + // [A] + Race.RaceAlliancePandaren, + Race.RaceDraenei, + Race.RaceDwarf, + Race.RaceGnome, + Race.RaceHuman, + Race.RaceNightElf, + Race.RaceWorgen, + // [H] + Race.RaceHordePandaren, + Race.RaceBloodElf, + Race.RaceOrc, + Race.RaceTauren, + Race.RaceTroll, + Race.RaceUndead, + Race.RaceGoblin, + ]; + static armorTypes: ArmorType[] = [ArmorType.ArmorTypeLeather, ArmorType.ArmorTypeCloth]; + static weaponTypes: EligibleWeaponType[] = [ + { weaponType: WeaponType.WeaponTypeAxe, canUseTwoHand: false }, + { weaponType: WeaponType.WeaponTypeFist }, + { weaponType: WeaponType.WeaponTypeMace, canUseTwoHand: false }, + { weaponType: WeaponType.WeaponTypeOffHand }, + { weaponType: WeaponType.WeaponTypePolearm, canUseTwoHand: true }, + { weaponType: WeaponType.WeaponTypeStaff, canUseTwoHand: true }, + { weaponType: WeaponType.WeaponTypeSword, canUseTwoHand: false }, + ]; + static rangedWeaponTypes: RangedWeaponType[] = []; + + readonly classID = Monk.classID; + readonly friendlyName = Monk.name; + readonly hexColor = Monk.hexColor; + readonly specs = Monk.specs; + readonly races = Monk.races; + readonly armorTypes = Monk.armorTypes; + readonly weaponTypes = Monk.weaponTypes; + readonly rangedWeaponTypes = Monk.rangedWeaponTypes; + + static getIcon = (size: IconSize): string => { + return `https://wow.zamimg.com/images/wow/icons/${size}/class_monk.jpg`; + }; + + getIcon = (size: IconSize): string => { + return Monk.getIcon(size); + }; +} \ No newline at end of file diff --git a/ui/core/player_specs/index.ts b/ui/core/player_specs/index.ts index f2f161ad58..8bc9cf1a25 100644 --- a/ui/core/player_specs/index.ts +++ b/ui/core/player_specs/index.ts @@ -8,6 +8,7 @@ import * as DeathKnightSpecs from './death_knight'; import * as DruidSpecs from './druid'; import * as HunterSpecs from './hunter'; import * as MageSpecs from './mage'; +import * as MonkSpecs from './monk'; import * as PaladinSpecs from './paladin'; import * as PriestSpecs from './priest'; import * as RogueSpecs from './rogue'; @@ -34,6 +35,10 @@ const specToPlayerSpec: Record | undefined> = { [Spec.SpecArcaneMage]: MageSpecs.ArcaneMage, [Spec.SpecFireMage]: MageSpecs.FireMage, [Spec.SpecFrostMage]: MageSpecs.FrostMage, + // Monk + [Spec.SpecBrewmasterMonk]: MonkSpecs.BrewmasterMonk, + [Spec.SpecMistweaverMonk]: MonkSpecs.MistweaverMonk, + [Spec.SpecWindwalkerMonk]: MonkSpecs.WindwalkerMonk, // Paladin [Spec.SpecHolyPaladin]: PaladinSpecs.HolyPaladin, [Spec.SpecProtectionPaladin]: PaladinSpecs.ProtectionPaladin, @@ -73,6 +78,7 @@ export const PlayerSpecs = { ...DruidSpecs, ...HunterSpecs, ...MageSpecs, + ...MonkSpecs, ...PaladinSpecs, ...PriestSpecs, ...RogueSpecs, diff --git a/ui/core/player_specs/monk.ts b/ui/core/player_specs/monk.ts new file mode 100644 index 0000000000..5eea0d8453 --- /dev/null +++ b/ui/core/player_specs/monk.ts @@ -0,0 +1,112 @@ +import { IconSize } from '../player_class'; +import { PlayerSpec } from '../player_spec'; +import { Class, Spec } from '../proto/common'; +import { getSpecSiteUrl } from '../proto_utils/utils'; + +export class BrewmasterMonk extends PlayerSpec { + static specIndex = 0; + static specID = Spec.SpecBrewmasterMonk as Spec.SpecBrewmasterMonk; + static classID = Class.ClassMonk as Class.ClassMonk; + static friendlyName = 'Brewmaster'; + static simLink = getSpecSiteUrl('monk', 'brewmaster'); + + static isTankSpec = true; + static isHealingSpec = false; + static isRangedDpsSpec = false; + static isMeleeDpsSpec = false; + + static canDualWield = true; + + readonly specIndex = BrewmasterMonk.specIndex; + readonly specID = BrewmasterMonk.specID; + readonly classID = BrewmasterMonk.classID; + readonly friendlyName = BrewmasterMonk.friendlyName; + readonly simLink = BrewmasterMonk.simLink; + + readonly isTankSpec = BrewmasterMonk.isTankSpec; + readonly isHealingSpec = BrewmasterMonk.isHealingSpec; + readonly isRangedDpsSpec = BrewmasterMonk.isRangedDpsSpec; + readonly isMeleeDpsSpec = BrewmasterMonk.isMeleeDpsSpec; + + readonly canDualWield = BrewmasterMonk.canDualWield; + + static getIcon = (size: IconSize): string => { + return `https://wow.zamimg.com/images/wow/icons/${size}/spell_monk_brewmaster_spec.jpg`; + }; + + getIcon = (size: IconSize): string => { + return BrewmasterMonk.getIcon(size); + }; +} + +export class MistweaverMonk extends PlayerSpec { + static specIndex = 0; + static specID = Spec.SpecMistweaverMonk as Spec.SpecMistweaverMonk; + static classID = Class.ClassMonk as Class.ClassMonk; + static friendlyName = 'Mistweaver'; + static simLink = getSpecSiteUrl('monk', 'mistweaver'); + + static isTankSpec = false; + static isHealingSpec = true; + static isRangedDpsSpec = false; + static isMeleeDpsSpec = false; + + static canDualWield = false; + + readonly specIndex = MistweaverMonk.specIndex; + readonly specID = MistweaverMonk.specID; + readonly classID = MistweaverMonk.classID; + readonly friendlyName = MistweaverMonk.friendlyName; + readonly simLink = MistweaverMonk.simLink; + + readonly isTankSpec = MistweaverMonk.isTankSpec; + readonly isHealingSpec = MistweaverMonk.isHealingSpec; + readonly isRangedDpsSpec = MistweaverMonk.isRangedDpsSpec; + readonly isMeleeDpsSpec = MistweaverMonk.isMeleeDpsSpec; + + readonly canDualWield = MistweaverMonk.canDualWield; + + static getIcon = (size: IconSize): string => { + return `https://wow.zamimg.com/images/wow/icons/${size}/spell_monk_mistweaver_spec.jpg`; + }; + + getIcon = (size: IconSize): string => { + return MistweaverMonk.getIcon(size); + }; +} + +export class WindwalkerMonk extends PlayerSpec { + static specIndex = 0; + static specID = Spec.SpecWindwalkerMonk as Spec.SpecWindwalkerMonk; + static classID = Class.ClassMonk as Class.ClassMonk; + static friendlyName = 'Windwalker'; + static simLink = getSpecSiteUrl('monk', 'windwalker'); + + static isTankSpec = false; + static isHealingSpec = false; + static isRangedDpsSpec = false; + static isMeleeDpsSpec = true; + + static canDualWield = true; + + readonly specIndex = WindwalkerMonk.specIndex; + readonly specID = WindwalkerMonk.specID; + readonly classID = WindwalkerMonk.classID; + readonly friendlyName = WindwalkerMonk.friendlyName; + readonly simLink = WindwalkerMonk.simLink; + + readonly isTankSpec = WindwalkerMonk.isTankSpec; + readonly isHealingSpec = WindwalkerMonk.isHealingSpec; + readonly isRangedDpsSpec = WindwalkerMonk.isRangedDpsSpec; + readonly isMeleeDpsSpec = WindwalkerMonk.isMeleeDpsSpec; + + readonly canDualWield = WindwalkerMonk.canDualWield; + + static getIcon = (size: IconSize): string => { + return `https://wow.zamimg.com/images/wow/icons/${size}/spell_monk_windwalker_spec.jpg`; + }; + + getIcon = (size: IconSize): string => { + return WindwalkerMonk.getIcon(size); + }; +} diff --git a/ui/core/preset_utils.tsx b/ui/core/preset_utils.tsx index f620af6c0a..650fc0cb2e 100644 --- a/ui/core/preset_utils.tsx +++ b/ui/core/preset_utils.tsx @@ -6,6 +6,7 @@ import { Player } from './player'; import { APLRotation, APLRotation_Type as APLRotationType } from './proto/apl'; import { Consumes, + ConsumesSpec, Cooldowns, Debuffs, Encounter as EncounterProto, @@ -38,8 +39,6 @@ export interface PresetGear extends PresetBase { gear: EquipmentSpec; } export interface PresetGearOptions extends PresetOptionsBase, Pick { - talentTree?: number; - talentTrees?: Array; faction?: Faction; } @@ -57,7 +56,7 @@ export interface PresetRotation extends PresetBase { rotation: SavedRotation; } export interface PresetRotationOptions extends Pick { - talentTree?: number; + talents?: number[]; } export interface PresetEpWeights extends PresetBase { @@ -76,7 +75,7 @@ export interface PresetEncounter extends PresetBase { raidBuffs?: RaidBuffs; debuffs?: Debuffs; buffs?: IndividualBuffs; - consumes?: Consumes; + consumes?: ConsumesSpec; } export interface PresetEncounterOptions extends PresetOptionsBase {} @@ -101,12 +100,7 @@ export const makePresetGear = (name: string, gearJson: any, options?: PresetGear const makePresetGearHelper = (name: string, gear: EquipmentSpec, options: PresetGearOptions): PresetGear => { const conditions: Array<(player: Player) => boolean> = []; - if (options.talentTree !== undefined) { - conditions.push((player: Player) => player.getTalentTree() == options.talentTree); - } - if (options.talentTrees !== undefined) { - conditions.push((player: Player) => (options.talentTrees || []).includes(player.getTalentTree())); - } + if (options.faction !== undefined) { conditions.push((player: Player) => player.getFaction() == options.faction); } @@ -187,8 +181,8 @@ export const makePresetSimpleRotation = ( const makePresetRotationHelper = (name: string, rotation: SavedRotation, options?: PresetRotationOptions): PresetRotation => { const conditions: Array<(player: Player) => boolean> = []; - if (options?.talentTree != undefined) { - conditions.push((player: Player) => player.getTalentTree() == options.talentTree); + if (options?.talents != undefined) { + conditions.push((player: Player) => (options.talents || []).join('') === player.getTalentTreePoints().join('')); } return { name, @@ -215,7 +209,7 @@ export const makePresetEncounter = (name: string, encounter?: PresetEncounter['e raidBuffs = settings?.raidBuffs; debuffs = settings?.debuffs; buffs = settings?.player?.buffs; - consumes = settings?.player?.consumes; + consumes = settings?.player?.consumables; } return { diff --git a/ui/core/proto_utils/action_id.ts b/ui/core/proto_utils/action_id.ts index 938818f6e3..418d6ab27d 100644 --- a/ui/core/proto_utils/action_id.ts +++ b/ui/core/proto_utils/action_id.ts @@ -1,7 +1,7 @@ import { getWowheadLanguagePrefix } from '../constants/lang'; import { CHARACTER_LEVEL } from '../constants/mechanics'; -import { ResourceType } from '../proto/api'; import { ActionID as ActionIdProto, ItemRandomSuffix, OtherAction, ReforgeStat } from '../proto/common'; +import { ResourceType } from '../proto/spell'; import { IconData, UIItem as Item } from '../proto/ui'; import { buildWowheadTooltipDataset, WowheadTooltipItemParams, WowheadTooltipSpellParams } from '../wowhead'; import { Database } from './database'; @@ -165,7 +165,7 @@ export class ActionId { static makeItemUrl(id: number, randomSuffixId?: number, reforgeId?: number): string { const langPrefix = getWowheadLanguagePrefix(); - const url = new URL(`https://wowhead.com/cata/${langPrefix}item=${id}`); + const url = new URL(`https://wowhead.com/mop-classic/${langPrefix}item=${id}`); url.searchParams.set('level', String(CHARACTER_LEVEL)); url.searchParams.set('rand', String(randomSuffixId || 0)); if (reforgeId) url.searchParams.set('forg', String(reforgeId)); @@ -176,7 +176,7 @@ export class ActionId { if (USE_WOTLK_DB) { return `https://wotlkdb.com/?spell=${id}`; } else { - return `https://wowhead.com/cata/${langPrefix}spell=${id}`; + return `https://wowhead.com/mop-classic/${langPrefix}spell=${id}`; } } static async makeItemTooltipData(id: number, params?: Omit) { @@ -190,7 +190,7 @@ export class ActionId { if (USE_WOTLK_DB) { return 'https://wotlkdb.com/?quest=' + id; } else { - return `https://wowhead.com/cata/${langPrefix}quest=${id}`; + return `https://wowhead.com/mop-classic/${langPrefix}quest=${id}`; } } static makeNpcUrl(id: number): string { @@ -198,7 +198,7 @@ export class ActionId { if (USE_WOTLK_DB) { return 'https://wotlkdb.com/?npc=' + id; } else { - return `https://wowhead.com/cata/${langPrefix}npc=${id}`; + return `https://wowhead.com/mop-classic/${langPrefix}npc=${id}`; } } static makeZoneUrl(id: number): string { @@ -206,7 +206,7 @@ export class ActionId { if (USE_WOTLK_DB) { return 'https://wotlkdb.com/?zone=' + id; } else { - return `https://wowhead.com/cata/${langPrefix}zone=${id}`; + return `https://wowhead.com/mop-classic/${langPrefix}zone=${id}`; } } @@ -689,6 +689,55 @@ export class ActionId { name += ' (Off Hand)'; } break; + case 'Tiger Strikes': + if (this.spellId === 12274) { + name += ' (Main Hand)'; + } else { + name += ' (Off Hand)'; + } + break; + case 'Blackout Kick': + if (tag === 2) { + name += ' (DoT)'; + } + break; + case 'Expel Harm': + if (this.spellId === 115072) { + name += ' (Heal)'; + } else { + name += ' (Damage)'; + } + break; + case 'Chi Wave': + if (this.spellId === 132463) { + name += ' (Heal)'; + } else if (this.spellId === 132467) { + name += ' (Damage)'; + } + break; + case 'Zen Sphere': + if (this.spellId === 124081) { + name += ' (Heal)'; + } else if (this.spellId === 124098) { + name += ' (Damage)'; + } else if (this.spellId === 124101) { + name += ': Detonate (Heal)'; + } else if (this.spellId === 125033) { + name += ': Detonate (Damage)'; + } + break; + case 'Chi Burst': + if (this.spellId === 130654) { + name += ' (Heal)'; + } else if (this.spellId === 148135) { + name += ' (Damage)'; + } + break; + case 'Rushing Jade Wind': + if (this.spellId === 148187) { + name += ' (Hit)'; + } + break; default: if (tag) { name += ' (??)'; @@ -696,8 +745,9 @@ export class ActionId { break; } - const iconOverrideId = this.spellTooltipOverride || this.spellIconOverride; let iconUrl = ActionId.makeIconUrl(tooltipData['icon']); + + const iconOverrideId = this.spellTooltipOverride || this.spellIconOverride; if (iconOverrideId) { const overrideTooltipData = await ActionId.getTooltipData(iconOverrideId); iconUrl = ActionId.makeIconUrl(overrideTooltipData['icon']); @@ -944,7 +994,7 @@ const petNameToActionId: Record = { 'Water Elemental': ActionId.fromSpellId(31687), }; -// https://wowhead.com/cata/hunter-pets +// https://wowhead.com/mop-classic/hunter-pets const petNameToIcon: Record = { Bat: 'https://wow.zamimg.com/images/wow/icons/medium/ability_hunter_pet_bat.jpg', Bear: 'https://wow.zamimg.com/images/wow/icons/medium/ability_hunter_pet_bear.jpg', @@ -1002,13 +1052,14 @@ export const resourceTypeToIcon: Record = { [ResourceType.ResourceTypeMana]: 'https://wow.zamimg.com/images/wow/icons/medium/inv_elemental_mote_mana.jpg', [ResourceType.ResourceTypeEnergy]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_shadow_shadowworddominate.jpg', [ResourceType.ResourceTypeRage]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_misc_emotionangry.jpg', + [ResourceType.ResourceTypeChi]: 'https://wow.zamimg.com/images/wow/icons/medium/ability_monk_healthsphere.jpg', [ResourceType.ResourceTypeComboPoints]: 'https://wow.zamimg.com/images/wow/icons/medium/inv_mace_2h_pvp410_c_01.jpg', [ResourceType.ResourceTypeFocus]: 'https://wow.zamimg.com/images/wow/icons/medium/ability_hunter_focusfire.jpg', [ResourceType.ResourceTypeRunicPower]: 'https://wow.zamimg.com/images/wow/icons/medium/inv_sword_62.jpg', [ResourceType.ResourceTypeBloodRune]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_deathknight_bloodpresence.jpg', [ResourceType.ResourceTypeFrostRune]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_deathknight_frostpresence.jpg', [ResourceType.ResourceTypeUnholyRune]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_deathknight_unholypresence.jpg', - [ResourceType.ResourceTypeDeathRune]: '/cata/assets/img/death_rune.png', + [ResourceType.ResourceTypeDeathRune]: '/mop/assets/img/death_rune.png', [ResourceType.ResourceTypeSolarEnergy]: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_eclipseorange.jpg', [ResourceType.ResourceTypeLunarEnergy]: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_eclipse.jpg', [ResourceType.ResourceTypeHolyPower]: 'https://wow.zamimg.com/images/wow/icons/medium/spell_holy_holybolt.jpg', diff --git a/ui/core/proto_utils/database.ts b/ui/core/proto_utils/database.ts index fbbad871cb..c020340aa6 100644 --- a/ui/core/proto_utils/database.ts +++ b/ui/core/proto_utils/database.ts @@ -1,5 +1,6 @@ import { CHARACTER_LEVEL } from '../constants/mechanics.js'; import { + ConsumableType, EquipmentSpec, GemColor, ItemRandomSuffix, @@ -9,8 +10,10 @@ import { PresetEncounter, PresetTarget, ReforgeStat, - SimDatabase, + Stat, } from '../proto/common.js'; +import { Consumable, SimDatabase } from '../proto/db'; +import { SpellEffect } from '../proto/spell'; import { GlyphID, IconData, UIDatabase, UIEnchant as Enchant, UIGem as Gem, UIItem as Item, UINPC as Npc, UIZone as Zone } from '../proto/ui.js'; import { distinct } from '../utils.js'; import { WOWHEAD_EXPANSION_ENV } from '../wowhead'; @@ -19,31 +22,46 @@ import { Gear, ItemSwapGear } from './gear.js'; import { gemEligibleForSocket, gemMatchesSocket } from './gems.js'; import { getEligibleEnchantSlots, getEligibleItemSlots } from './utils.js'; -const dbUrlJson = '/cata/assets/database/db.json'; -const dbUrlBin = '/cata/assets/database/db.bin'; -const leftoversUrlJson = '/cata/assets/database/leftover_db.json'; -const leftoversUrlBin = '/cata/assets/database/leftover_db.bin'; +const dbUrlJson = '/mop/assets/database/db.json'; +const dbUrlBin = '/mop/assets/database/db.bin'; +const leftoversUrlJson = '/mop/assets/database/leftover_db.json'; +const leftoversUrlBin = '/mop/assets/database/leftover_db.bin'; // When changing this value, don't forget to change the html for preloading! const READ_JSON = true; export class Database { private static loadPromise: Promise | null = null; - static get(): Promise { - if (Database.loadPromise == null) { - if (READ_JSON) { - Database.loadPromise = fetch(dbUrlJson) - .then(response => response.json()) - .then(json => new Database(UIDatabase.fromJson(json))); - } else { - Database.loadPromise = fetch(dbUrlBin) - .then(response => response.arrayBuffer()) - .then(buffer => new Database(UIDatabase.fromBinary(new Uint8Array(buffer)))); - } + private static instance: Database | null = null; + + static async get(): Promise { + if (!Database.loadPromise) { + Database.loadPromise = (async () => { + let dbData: UIDatabase; + if (READ_JSON) { + const resp = await fetch(dbUrlJson); + const json = await resp.json(); + dbData = UIDatabase.fromJson(json); + } else { + const buf = await fetch(dbUrlBin).then(r => r.arrayBuffer()); + const bytes = new Uint8Array(buf); + dbData = UIDatabase.fromBinary(bytes); + } + const db = new Database(dbData); + Database.instance = db; + return db; + })(); } return Database.loadPromise; } - static getLeftovers(): Promise { + static getSync(): Database { + if (!Database.instance) { + throw new Error('Database not yet loaded; call `await Database.get()` before using getSync()'); + } + return Database.instance; + } + + static async getLeftovers(): Promise { if (READ_JSON) { return fetch(leftoversUrlJson) .then(response => response.json()) @@ -83,6 +101,9 @@ export class Database { private readonly itemIcons: Record> = {}; private readonly spellIcons: Record> = {}; private readonly glyphIds: Array = []; + private readonly consumables = new Map(); + private readonly spellEffects = new Map(); + private loadedLeftovers = false; private constructor(db: UIDatabase) { @@ -136,6 +157,7 @@ export class Database { db.itemIcons.forEach(data => (this.itemIcons[data.id] = Promise.resolve(data))); db.spellIcons.forEach(data => (this.spellIcons[data.id] = Promise.resolve(data))); db.glyphIds.forEach(id => this.glyphIds.push(id)); + db.consumables.forEach(consumable => this.consumables.set(consumable.id, consumable)); } getAllItems(): Array { @@ -157,7 +179,22 @@ export class Database { getItemIdsForSet(setId: number): Array { return this.getAllItemIds().filter(itemId => this.getItemById(itemId)!.setId === setId); } - + getSpellEffect(effectId: number): SpellEffect | undefined { + return this.spellEffects.get(effectId); + } + getConsumables(): Array { + return Array.from(this.consumables.values()); + } + getConsumable(itemId: number): Consumable | undefined { + return this.consumables.get(itemId); + } + getConsumablesByType(type: ConsumableType): Array { + return this.getConsumables().filter(consume => consume.type == type); + } + getConsumablesByTypeAndStats(type: ConsumableType, stats: Array): Array { + const consumes = this.getConsumables().filter(consume => consume.type === type); + return consumes.filter(consume => stats.some(index => consume.stats[index] > 0 || consume.id == 62290 || consume.id == 62649)); + } getRandomSuffixById(id: number): ItemRandomSuffix | undefined { return this.randomSuffixes.get(id); } @@ -297,7 +334,9 @@ export class Database { static async getItemIconData(itemId: number): Promise { const db = await Database.get(); - if (!db.itemIcons[itemId]) { + const data = await db.spellIcons[itemId] + + if (!data?.icon) { db.itemIcons[itemId] = Database.getWowheadItemTooltipData(itemId); } return await db.itemIcons[itemId]; @@ -305,10 +344,12 @@ export class Database { static async getSpellIconData(spellId: number): Promise { const db = await Database.get(); - if (!db.spellIcons[spellId]) { + const data = await db.spellIcons[spellId] + + if (!data?.icon) { db.spellIcons[spellId] = Database.getWowheadSpellTooltipData(spellId); } - return await db.spellIcons[spellId]; + return db.spellIcons[spellId]; } private static async getWowheadItemTooltipData(id: number): Promise { @@ -318,7 +359,7 @@ export class Database { return Database.getWowheadTooltipData(id, 'spell'); } private static async getWowheadTooltipData(id: number, tooltipPostfix: string): Promise { - const url = `https://nether.wowhead.com/cata/tooltip/${tooltipPostfix}/${id}?lvl=${CHARACTER_LEVEL}&dataEnv=${WOWHEAD_EXPANSION_ENV}`; + const url = `https://nether.wowhead.com/mop-classic/tooltip/${tooltipPostfix}/${id}?lvl=${CHARACTER_LEVEL}&dataEnv=${WOWHEAD_EXPANSION_ENV}`; try { const response = await fetch(url); const json = await response.json(); @@ -341,6 +382,8 @@ export class Database { reforgeStats: distinct(db1.reforgeStats.concat(db2.reforgeStats), (a, b) => a.id == b.id), enchants: distinct(db1.enchants.concat(db2.enchants), (a, b) => a.effectId == b.effectId), gems: distinct(db1.gems.concat(db2.gems), (a, b) => a.id == b.id), + spellEffects: distinct(db1.spellEffects.concat(db2.spellEffects), (a, b) => a.id == b.id), + consumables: distinct(db1.consumables.concat(db2.consumables), (a, b) => a.id == b.id), }); } } diff --git a/ui/core/proto_utils/enchants.ts b/ui/core/proto_utils/enchants.ts index 1d873016c1..f863023231 100644 --- a/ui/core/proto_utils/enchants.ts +++ b/ui/core/proto_utils/enchants.ts @@ -3,7 +3,7 @@ import { UIEnchant as Enchant } from '../proto/ui.js'; let descriptionsPromise: Promise> | null = null; function fetchEnchantDescriptions(): Promise> { if (descriptionsPromise == null) { - descriptionsPromise = fetch('/cata/assets/enchants/descriptions.json') + descriptionsPromise = fetch('/mop/assets/enchants/descriptions.json') .then(response => response.json()) .then(json => { const descriptionsMap: Record = {}; diff --git a/ui/core/proto_utils/equipped_item.ts b/ui/core/proto_utils/equipped_item.ts index 07586f68e1..2ff1956eea 100644 --- a/ui/core/proto_utils/equipped_item.ts +++ b/ui/core/proto_utils/equipped_item.ts @@ -58,10 +58,16 @@ export class EquippedItem { return this._item.id; } + get itemLevel(): number { + return this._item.ilvl; + } + get randomSuffix(): ItemRandomSuffix | null { return this._randomSuffix ? ItemRandomSuffix.clone(this._randomSuffix) : null; } - + get randPropPoints(): number { + return this._item.randPropPoints; + } get enchant(): Enchant | null { // Make a defensive copy return this._enchant ? Enchant.clone(this._enchant) : null; @@ -227,7 +233,7 @@ export class EquippedItem { const item = this.item; if (this._randomSuffix) item.stats = item.stats.map((stat, index) => - this._randomSuffix!.stats[index] > 0 ? Math.floor((this._randomSuffix!.stats[index] * item.randPropPoints) / 10000) : stat, + this._randomSuffix!.stats[index] > 0 ? Math.floor((this._randomSuffix!.stats[index] * this.randPropPoints) / 10000) : stat, ); return new EquippedItem(item, this._enchant, this._gems, this._randomSuffix, this._reforge); diff --git a/ui/core/proto_utils/gear.ts b/ui/core/proto_utils/gear.ts index 52f32d198a..31054bc7cd 100644 --- a/ui/core/proto_utils/gear.ts +++ b/ui/core/proto_utils/gear.ts @@ -1,4 +1,5 @@ -import { EquipmentSpec, GemColor, HandType, ItemSlot, ItemSpec, ItemSwap, Profession, SimDatabase, SimEnchant, SimGem, SimItem } from '../proto/common.js'; +import { EquipmentSpec, GemColor, HandType, ItemSlot, ItemSpec, ItemSwap, Profession, SimEnchant, SimGem } from '../proto/common.js'; +import { SimDatabase, SimItem } from '../proto/db'; import { UIEnchant as Enchant, UIGem as Gem, UIItem as Item } from '../proto/ui.js'; import { isBluntWeaponType, isSharpWeaponType } from '../proto_utils/utils.js'; import { distinct, equalsOrBothNull, getEnumValues } from '../utils.js'; @@ -378,7 +379,7 @@ export class Gear extends BaseGear { let setItemCount = 0; for (const slot of validSetItemSlots) { const item = this.getEquippedItem(slot); - if (item?.item?.setName === name || (alternativeName &&item?.item.setName === alternativeName)) setItemCount++; + if (item?.item?.setName === name || (alternativeName && item?.item.setName === alternativeName)) setItemCount++; } return setItemCount; diff --git a/ui/core/proto_utils/logs_parser.tsx b/ui/core/proto_utils/logs_parser.tsx index 252240b6a6..3744e26d09 100644 --- a/ui/core/proto_utils/logs_parser.tsx +++ b/ui/core/proto_utils/logs_parser.tsx @@ -1,8 +1,9 @@ import clsx from 'clsx'; import { CacheHandler } from '../cache_handler'; -import { RaidSimResult, ResourceType } from '../proto/api.js'; +import { RaidSimResult } from '../proto/api.js'; import { SpellSchool } from '../proto/common'; +import { ResourceType } from '../proto/spell'; import { bucket, getEnumValues, stringComparator, sum } from '../utils.js'; import { ActionId } from './action_id.js'; import { resourceNames, spellSchoolNames, stringToResourceType } from './names.js'; @@ -820,7 +821,7 @@ export class ResourceChangedLog extends SimLog { static parse(params: SimLogParams): Promise | null { const match = params.raw.match( - /(Gained|Spent) (\d+\.?\d*) (health|mana|energy|focus|rage|combo points|runic power|blood rune|frost rune|unholy rune|death rune|solar energy|lunar energy|holy power) from (.*?) \((\d+\.?\d*) --> (\d+\.?\d*)\)( of (\d+\.?\d*) total)?/, + /(Gained|Spent) (\d+\.?\d*) (health|mana|energy|focus|rage|chi|combo points|runic power|blood rune|frost rune|unholy rune|death rune|solar energy|lunar energy|holy power) from (.*?) \((\d+\.?\d*) --> (\d+\.?\d*)\)( of (\d+\.?\d*) total)?/, ); if (match) { const resourceType = stringToResourceType(match[3]); diff --git a/ui/core/proto_utils/names.ts b/ui/core/proto_utils/names.ts index 667ba17aff..3833540833 100644 --- a/ui/core/proto_utils/names.ts +++ b/ui/core/proto_utils/names.ts @@ -1,5 +1,5 @@ -import { ResourceType } from '../proto/api'; import { ArmorType, Class, ItemSlot, Profession, PseudoStat, Race, RangedWeaponType, Spec, Stat, WeaponType } from '../proto/common'; +import { ResourceType } from '../proto/spell'; import { DungeonDifficulty, RaidFilterOption, RepFaction, RepLevel, SourceFilterOption, StatCapType } from '../proto/ui'; export const armorTypeNames: Map = new Map([ @@ -43,6 +43,8 @@ export const raceNames: Map = new Map([ [Race.RaceHuman, 'Human'], [Race.RaceNightElf, 'Night Elf'], [Race.RaceOrc, 'Orc'], + [Race.RaceAlliancePandaren, 'Pandaren (A)'], + [Race.RaceHordePandaren, 'Pandaren (H)'], [Race.RaceTauren, 'Tauren'], [Race.RaceTroll, 'Troll'], [Race.RaceUndead, 'Undead'], @@ -64,6 +66,7 @@ export const classNames: Map = new Map([ [Class.ClassDruid, 'Druid'], [Class.ClassHunter, 'Hunter'], [Class.ClassMage, 'Mage'], + [Class.ClassMonk, 'Monk'], [Class.ClassPaladin, 'Paladin'], [Class.ClassPriest, 'Priest'], [Class.ClassRogue, 'Rogue'], @@ -199,6 +202,7 @@ export const resourceNames: Map = new Map([ [ResourceType.ResourceTypeMana, 'Mana'], [ResourceType.ResourceTypeEnergy, 'Energy'], [ResourceType.ResourceTypeRage, 'Rage'], + [ResourceType.ResourceTypeChi, 'Chi'], [ResourceType.ResourceTypeComboPoints, 'Combo Points'], [ResourceType.ResourceTypeFocus, 'Focus'], [ResourceType.ResourceTypeRunicPower, 'Runic Power'], @@ -217,6 +221,7 @@ export const resourceColors: Map = new Map([ [ResourceType.ResourceTypeMana, '#2e93fa'], [ResourceType.ResourceTypeEnergy, '#ffd700'], [ResourceType.ResourceTypeRage, '#ff0000'], + [ResourceType.ResourceTypeChi, '#00ff98'], [ResourceType.ResourceTypeComboPoints, '#ffa07a'], [ResourceType.ResourceTypeFocus, '#cd853f'], [ResourceType.ResourceTypeRunicPower, '#5b99ee'], @@ -345,6 +350,9 @@ export const masterySpellNames: Map = new Map([ [Spec.SpecAfflictionWarlock, 'Potent Afflictions'], [Spec.SpecDemonologyWarlock, 'Master Demonologist'], [Spec.SpecDestructionWarlock, 'Fiery Apocalypse'], + [Spec.SpecBrewmasterMonk, 'Elusive Brawler'], + [Spec.SpecMistweaverMonk, 'Gift of the Serpent'], + [Spec.SpecWindwalkerMonk, 'Bottled Fury'], ]); export const masterySpellIDs: Map = new Map([ @@ -379,6 +387,9 @@ export const masterySpellIDs: Map = new Map([ [Spec.SpecAfflictionWarlock, 77215], [Spec.SpecDemonologyWarlock, 77219], [Spec.SpecDestructionWarlock, 77220], + [Spec.SpecBrewmasterMonk, 117906], + [Spec.SpecMistweaverMonk, 117907], + [Spec.SpecWindwalkerMonk, 115636], ]); export const statCapTypeNames = new Map([ [StatCapType.TypeHardCap, 'Hard cap'], diff --git a/ui/core/proto_utils/sim_result.ts b/ui/core/proto_utils/sim_result.ts index 3a9e95f47d..70abff3517 100644 --- a/ui/core/proto_utils/sim_result.ts +++ b/ui/core/proto_utils/sim_result.ts @@ -14,11 +14,11 @@ import { RaidSimRequest, RaidSimResult, ResourceMetrics as ResourceMetricsProto, - ResourceType, TargetedActionMetrics as TargetedActionMetricsProto, UnitMetrics as UnitMetricsProto, } from '../proto/api.js'; import { Class, Encounter as EncounterProto, SpellSchool, Target as TargetProto } from '../proto/common.js'; +import { ResourceType } from '../proto/spell'; import { SimRun } from '../proto/ui.js'; import { ActionId, defaultTargetIcon } from '../proto_utils/action_id.js'; import { getPlayerSpecFromPlayer } from '../proto_utils/utils.js'; diff --git a/ui/core/proto_utils/stats.ts b/ui/core/proto_utils/stats.ts index 5dcb65e2ef..8827b7aa03 100644 --- a/ui/core/proto_utils/stats.ts +++ b/ui/core/proto_utils/stats.ts @@ -552,80 +552,6 @@ export class Stats { if (!(proto.apiVersion < CURRENT_API_VERSION)) { return; } - // Define the conversion map between Stat/ PseudoStat schemas. - const conversionMap: ProtoConversionMap = new Map([ - [ - 1, - (oldProto: UnitStats) => { - oldProto.stats = Stats.migrateStatsArray(oldProto.stats, 0, new Array(31).fill(0), 1); - oldProto.apiVersion = 1; - return oldProto; - }, - ], - [ - 2, - (oldProto: UnitStats) => { - // Save the version 1 state of the stats - // array because we'll need it for - // populating the version 2 pseudoStats - // array. - const oldStats = oldProto.stats.slice(); - - // Migrate the stats array using the schema below. - oldProto.stats = Stats.migrateStatsArray(oldProto.stats, 1, undefined, 2); - - // Create a version 2 pseudoStats array with expanded - // fields. - const oldPseudoStats = oldProto.pseudoStats.slice(); - const newPseudoStats: number[] = new Array(16).fill(0); - - // MH/OH/Ranged DPS were unchanged. - for (let idx = 0; idx < 3; idx++) { - newPseudoStats[idx] = oldPseudoStats[idx] || 0; - } - - // Dodge + Parry were converted from - // probability units to percent units. - newPseudoStats[3] = oldPseudoStats[4] * 100; - newPseudoStats[4] = oldPseudoStats[5] * 100; - - // Block was moved from a Stat (with - // deprecated Rating units) to a PseudoStat - // (with percent units). - newPseudoStats[5] = oldStats[30] / 88.359444; - - // Speed multipliers were re-arranged. - for (let idx = 6; idx < 9; idx++) { - const oldIdx = [7, 6, 8][idx - 6]; - newPseudoStats[idx] = oldPseudoStats[oldIdx] || 1.0; - } - - // Populate school-specific Hit/Crit/Haste PseudoStats from the version 1 stats array. Use the following - // heuristic: If both melee + spell variants were previously populated, then assume that the Stats array - // represented EP values, and therefore multiply rather than divide by the appropriate conversion constant. - // If only one variant was previously populated, then assume that the Stats array represented bonus stat - // values, and therefore do not populate a school-specific derivative field to avoid double-counting. - newPseudoStats[9] = oldStats[10] !== 0 ? oldStats[9] * Mechanics.HASTE_RATING_PER_HASTE_PERCENT : 0; - newPseudoStats[10] = oldStats[10] !== 0 ? oldStats[9] * Mechanics.HASTE_RATING_PER_HASTE_PERCENT : 0; - newPseudoStats[11] = oldStats[9] !== 0 ? oldStats[10] * Mechanics.HASTE_RATING_PER_HASTE_PERCENT : 0; - newPseudoStats[12] = oldStats[6] !== 0 ? oldStats[5] * Mechanics.PHYSICAL_HIT_RATING_PER_HIT_PERCENT : 0; - newPseudoStats[13] = oldStats[5] !== 0 ? oldStats[6] * Mechanics.SPELL_HIT_RATING_PER_HIT_PERCENT : 0; - newPseudoStats[14] = oldStats[8] !== 0 ? oldStats[7] * Mechanics.CRIT_RATING_PER_CRIT_PERCENT : 0; - newPseudoStats[15] = oldStats[7] !== 0 ? oldStats[8] * Mechanics.CRIT_RATING_PER_CRIT_PERCENT : 0; - - // Finalize and return. - oldProto.pseudoStats = newPseudoStats; - oldProto.apiVersion = 2; - return oldProto; - }, - ], - ]); - - // Run the migration utility using the above map. - migrateOldProto(proto, proto.apiVersion, conversionMap); - - // Flag the version as up-to-date once all migrations are done. - proto.apiVersion = CURRENT_API_VERSION; } // Takes in a stats array that was generated from an out-of-date proto version, and converts it to an array that is consistent with the current proto version. diff --git a/ui/core/proto_utils/utils.ts b/ui/core/proto_utils/utils.ts index 3417e65303..1915c82d57 100644 --- a/ui/core/proto_utils/utils.ts +++ b/ui/core/proto_utils/utils.ts @@ -3,7 +3,7 @@ import { PlayerClass } from '../player_class.js'; import { PlayerClasses } from '../player_classes'; import { PlayerSpec } from '../player_spec.js'; import { PlayerSpecs } from '../player_specs'; -import { Player, ResourceType } from '../proto/api.js'; +import { Player } from '../proto/api.js'; import { Class, EnchantType, @@ -73,6 +73,18 @@ import { MageOptions, MageTalents, } from '../proto/mage.js'; +import { + BrewmasterMonk, + BrewmasterMonk_Options, + BrewmasterMonk_Rotation, + MistweaverMonk, + MistweaverMonk_Options, + MistweaverMonk_Rotation, + MonkTalents, + WindwalkerMonk, + WindwalkerMonk_Options, + WindwalkerMonk_Rotation, +} from '../proto/monk.js'; import { Blessings, HolyPaladin, @@ -126,6 +138,7 @@ import { ShamanOptions, ShamanTalents, } from '../proto/shaman.js'; +import { ResourceType } from '../proto/spell'; import { BlessingsAssignment, BlessingsAssignments, UIEnchant as Enchant, UIGem as Gem, UIItem as Item } from '../proto/ui.js'; import { AfflictionWarlock, @@ -153,31 +166,22 @@ import { WarriorOptions, WarriorTalents, } from '../proto/warrior.js'; -import { getEnumValues, intersection, maxIndex, sum } from '../utils.js'; +import { getEnumValues, intersection } from '../utils.js'; import { Stats } from './stats.js'; export const NUM_SPECS = getEnumValues(Spec).length; -export const raidSimIcon = '/cata/assets/img/raid_icon.png'; +export const raidSimIcon = '/mop/assets/img/raid_icon.png'; export const raidSimLabel = 'Full Raid Sim'; -// Converts '1231321-12313123-0' to [40, 21, 0]. +// Converts '111111' to [1, 1, 1, 1, 1, 1]. export function getTalentTreePoints(talentsString: string): Array { - const trees = talentsString.split('-'); - if (trees.length == 2) { - trees.push('0'); - } - return trees.map(tree => sum([...tree].map(char => parseInt(char) || 0))); + const talents = talentsString.split(''); + return talents.map(Number); } export function getTalentPoints(talentsString: string): number { - return sum(getTalentTreePoints(talentsString)); -} - -// Returns the index of the talent tree (0, 1, or 2) that has the most points. -export function getTalentTree(talentsString: string): number { - const points = getTalentTreePoints(talentsString); - return maxIndex(points) || 0; + return getTalentTreePoints(talentsString).filter(Boolean).length; } // Gets the URL for the individual sim corresponding to the given spec. @@ -226,6 +230,7 @@ export type RogueSpecs = Spec.SpecAssassinationRogue | Spec.SpecCombatRogue | Sp export type ShamanSpecs = Spec.SpecElementalShaman | Spec.SpecEnhancementShaman | Spec.SpecRestorationShaman; export type WarlockSpecs = Spec.SpecAfflictionWarlock | Spec.SpecDemonologyWarlock | Spec.SpecDestructionWarlock; export type WarriorSpecs = Spec.SpecArmsWarrior | Spec.SpecFuryWarrior | Spec.SpecProtectionWarrior; +export type MonkSpecs = Spec.SpecBrewmasterMonk | Spec.SpecMistweaverMonk | Spec.SpecWindwalkerMonk; export type ClassSpecs = T extends Class.ClassDeathKnight ? DeathKnightSpecs @@ -279,6 +284,9 @@ export type SpecClasses = T extends DeathKnightSpecs : // Warrior T extends WarriorSpecs ? Class.ClassWarrior + : // Monk + T extends MonkSpecs + ? Class.ClassMonk : // Should never reach this case Class.ClassUnknown; @@ -313,6 +321,13 @@ export type SpecRotation = ? FireMage_Rotation : T extends Spec.SpecFrostMage ? FrostMage_Rotation + : // Monk + T extends Spec.SpecBrewmasterMonk + ? BrewmasterMonk_Rotation + : T extends Spec.SpecMistweaverMonk + ? MistweaverMonk_Rotation + : T extends Spec.SpecWindwalkerMonk + ? WindwalkerMonk_Rotation : // Paladin T extends Spec.SpecHolyPaladin ? HolyPaladin_Rotation @@ -457,6 +472,13 @@ export type SpecOptions = ? FireMage_Options : T extends Spec.SpecFrostMage ? FrostMage_Options + : // Monk + T extends Spec.SpecBrewmasterMonk + ? BrewmasterMonk_Options + : T extends Spec.SpecMistweaverMonk + ? MistweaverMonk_Options + : T extends Spec.SpecWindwalkerMonk + ? WindwalkerMonk_Options : // Paladin T extends Spec.SpecHolyPaladin ? HolyPaladin_Options @@ -533,6 +555,13 @@ export type SpecType = ? FireMage : T extends Spec.SpecFrostMage ? FrostMage + : // Monk + T extends Spec.SpecBrewmasterMonk + ? BrewmasterMonk + : T extends Spec.SpecMistweaverMonk + ? MistweaverMonk + : T extends Spec.SpecWindwalkerMonk + ? WindwalkerMonk : // Paladin T extends Spec.SpecHolyPaladin ? HolyPaladin @@ -920,6 +949,76 @@ export const specTypeFunctions: Record> = { optionsFromPlayer: player => player.spec.oneofKind == 'frostMage' ? player.spec.frostMage.options || FrostMage_Options.create() : FrostMage_Options.create({ classOptions: {} }), }, + // Monk + [Spec.SpecBrewmasterMonk]: { + rotationCreate: () => BrewmasterMonk_Rotation.create(), + rotationEquals: (a, b) => BrewmasterMonk_Rotation.equals(a as BrewmasterMonk_Rotation, b as BrewmasterMonk_Rotation), + rotationCopy: a => BrewmasterMonk_Rotation.clone(a as BrewmasterMonk_Rotation), + rotationToJson: a => BrewmasterMonk_Rotation.toJson(a as BrewmasterMonk_Rotation), + rotationFromJson: obj => BrewmasterMonk_Rotation.fromJson(obj), + + talentsCreate: () => MonkTalents.create(), + talentsEquals: (a, b) => MonkTalents.equals(a as MonkTalents, b as MonkTalents), + talentsCopy: a => MonkTalents.clone(a as MonkTalents), + talentsToJson: a => MonkTalents.toJson(a as MonkTalents), + talentsFromJson: obj => MonkTalents.fromJson(obj), + + optionsCreate: () => BrewmasterMonk_Options.create({ classOptions: {} }), + optionsEquals: (a, b) => BrewmasterMonk_Options.equals(a as BrewmasterMonk_Options, b as BrewmasterMonk_Options), + optionsCopy: a => BrewmasterMonk_Options.clone(a as BrewmasterMonk_Options), + optionsToJson: a => BrewmasterMonk_Options.toJson(a as BrewmasterMonk_Options), + optionsFromJson: obj => BrewmasterMonk_Options.fromJson(obj), + optionsFromPlayer: player => + player.spec.oneofKind == 'brewmasterMonk' + ? player.spec.brewmasterMonk.options || BrewmasterMonk_Options.create() + : BrewmasterMonk_Options.create({ classOptions: {} }), + }, + [Spec.SpecMistweaverMonk]: { + rotationCreate: () => MistweaverMonk_Rotation.create(), + rotationEquals: (a, b) => MistweaverMonk_Rotation.equals(a as MistweaverMonk_Rotation, b as MistweaverMonk_Rotation), + rotationCopy: a => MistweaverMonk_Rotation.clone(a as MistweaverMonk_Rotation), + rotationToJson: a => MistweaverMonk_Rotation.toJson(a as MistweaverMonk_Rotation), + rotationFromJson: obj => MistweaverMonk_Rotation.fromJson(obj), + + talentsCreate: () => MonkTalents.create(), + talentsEquals: (a, b) => MonkTalents.equals(a as MonkTalents, b as MonkTalents), + talentsCopy: a => MonkTalents.clone(a as MonkTalents), + talentsToJson: a => MonkTalents.toJson(a as MonkTalents), + talentsFromJson: obj => MonkTalents.fromJson(obj), + + optionsCreate: () => MistweaverMonk_Options.create({ classOptions: {} }), + optionsEquals: (a, b) => MistweaverMonk_Options.equals(a as MistweaverMonk_Options, b as MistweaverMonk_Options), + optionsCopy: a => MistweaverMonk_Options.clone(a as MistweaverMonk_Options), + optionsToJson: a => MistweaverMonk_Options.toJson(a as MistweaverMonk_Options), + optionsFromJson: obj => MistweaverMonk_Options.fromJson(obj), + optionsFromPlayer: player => + player.spec.oneofKind == 'mistweaverMonk' + ? player.spec.mistweaverMonk.options || MistweaverMonk_Options.create() + : MistweaverMonk_Options.create({ classOptions: {} }), + }, + [Spec.SpecWindwalkerMonk]: { + rotationCreate: () => WindwalkerMonk_Rotation.create(), + rotationEquals: (a, b) => WindwalkerMonk_Rotation.equals(a as WindwalkerMonk_Rotation, b as WindwalkerMonk_Rotation), + rotationCopy: a => WindwalkerMonk_Rotation.clone(a as WindwalkerMonk_Rotation), + rotationToJson: a => WindwalkerMonk_Rotation.toJson(a as WindwalkerMonk_Rotation), + rotationFromJson: obj => WindwalkerMonk_Rotation.fromJson(obj), + + talentsCreate: () => MonkTalents.create(), + talentsEquals: (a, b) => MonkTalents.equals(a as MonkTalents, b as MonkTalents), + talentsCopy: a => MonkTalents.clone(a as MonkTalents), + talentsToJson: a => MonkTalents.toJson(a as MonkTalents), + talentsFromJson: obj => MonkTalents.fromJson(obj), + + optionsCreate: () => WindwalkerMonk_Options.create({ classOptions: {} }), + optionsEquals: (a, b) => WindwalkerMonk_Options.equals(a as WindwalkerMonk_Options, b as WindwalkerMonk_Options), + optionsCopy: a => WindwalkerMonk_Options.clone(a as WindwalkerMonk_Options), + optionsToJson: a => WindwalkerMonk_Options.toJson(a as WindwalkerMonk_Options), + optionsFromJson: obj => WindwalkerMonk_Options.fromJson(obj), + optionsFromPlayer: player => + player.spec.oneofKind == 'windwalkerMonk' + ? player.spec.windwalkerMonk.options || WindwalkerMonk_Options.create() + : WindwalkerMonk_Options.create({ classOptions: {} }), + }, // Paladin [Spec.SpecHolyPaladin]: { rotationCreate: () => HolyPaladin_Rotation.create(), @@ -1351,6 +1450,7 @@ export const raceToFaction: Record = { [Race.RaceHuman]: Faction.Alliance, [Race.RaceNightElf]: Faction.Alliance, [Race.RaceWorgen]: Faction.Alliance, + [Race.RaceAlliancePandaren]: Faction.Alliance, [Race.RaceBloodElf]: Faction.Horde, [Race.RaceGoblin]: Faction.Horde, @@ -1358,6 +1458,7 @@ export const raceToFaction: Record = { [Race.RaceTauren]: Faction.Horde, [Race.RaceTroll]: Faction.Horde, [Race.RaceUndead]: Faction.Horde, + [Race.RaceHordePandaren]: Faction.Horde, }; // Returns a copy of playerOptions, with the class field set. @@ -1473,6 +1574,31 @@ export function withSpec(spec: Spec, player: Player, spec }), }; return copy; + // Monk + case Spec.SpecBrewmasterMonk: + copy.spec = { + oneofKind: 'brewmasterMonk', + brewmasterMonk: BrewmasterMonk.create({ + options: specOptions as BrewmasterMonk_Options, + }), + }; + return copy; + case Spec.SpecMistweaverMonk: + copy.spec = { + oneofKind: 'mistweaverMonk', + mistweaverMonk: MistweaverMonk.create({ + options: specOptions as MistweaverMonk_Options, + }), + }; + return copy; + case Spec.SpecWindwalkerMonk: + copy.spec = { + oneofKind: 'windwalkerMonk', + windwalkerMonk: WindwalkerMonk.create({ + options: specOptions as WindwalkerMonk_Options, + }), + }; + return copy; // Paladin case Spec.SpecHolyPaladin: copy.spec = { @@ -1897,6 +2023,7 @@ export const orderedResourceTypes: Array = [ ResourceType.ResourceTypeMana, ResourceType.ResourceTypeEnergy, ResourceType.ResourceTypeRage, + ResourceType.ResourceTypeChi, ResourceType.ResourceTypeComboPoints, ResourceType.ResourceTypeFocus, ResourceType.ResourceTypeRunicPower, @@ -1912,7 +2039,6 @@ export const orderedResourceTypes: Array = [ export const AL_CATEGORY_HARD_MODE = 'Hard Mode'; export const AL_CATEGORY_TITAN_RUNE = 'Titan Rune'; - // Utilities for migrating protos between versions // Each key is an API version, each value is a function that up-converts a proto diff --git a/ui/core/sim.ts b/ui/core/sim.ts index 158a9c242d..437f90295c 100644 --- a/ui/core/sim.ts +++ b/ui/core/sim.ts @@ -1,7 +1,7 @@ import { hasTouch } from '../shared/bootstrap_overrides'; import { SimRequest } from '../worker/types'; import { getBrowserLanguageCode, setLanguageCode } from './constants/lang'; -import * as OtherConstants from './constants/other'; +import { CURRENT_PHASE, LOCAL_STORAGE_PREFIX } from './constants/other'; import { Encounter } from './encounter'; import { Player, UnitMetadata } from './player'; import { @@ -27,13 +27,14 @@ import { Profession, PseudoStat, RangedWeaponType, - SimDatabase, Spec, Stat, UnitReference, UnitReference_Type as UnitType, WeaponType, } from './proto/common.js'; +import { Consumable, SimDatabase } from './proto/db'; +import { SpellEffect } from './proto/spell'; import { DatabaseFilters, RaidFilterOption, SimSettings as SimSettingsProto, SourceFilterOption } from './proto/ui.js'; import { Database } from './proto_utils/database.js'; import { SimResult } from './proto_utils/sim_result.js'; @@ -59,7 +60,7 @@ interface SimProps { type?: SimType; } -const WASM_CONCURRENCY_STORAGE_KEY = `${OtherConstants.LOCAL_STORAGE_PREFIX}_wasmconcurrency`; +const WASM_CONCURRENCY_STORAGE_KEY = `${LOCAL_STORAGE_PREFIX}_wasmconcurrency`; // Core Sim module which deals only with api types, no UI-related stuff. export class Sim { @@ -67,7 +68,7 @@ export class Sim { iterations = 12500; - private phase: number = OtherConstants.CURRENT_PHASE; + private phase: number = CURRENT_PHASE; private faction: Faction = Faction.Alliance; private fixedRngSeed = 0; private filters: DatabaseFilters = Sim.defaultFilters(); @@ -212,6 +213,7 @@ export class Sim { setModifyRaidProto(newModFn: (raidProto: RaidProto) => void) { this.modifyRaidProto = newModFn; } + getModifiedRaidProto(): RaidProto { const raidProto = this.raid.toProto(false, true); this.modifyRaidProto(raidProto); @@ -243,6 +245,65 @@ export class Sim { if (gearChanged) { player.equipment = gear.asSpec(); } + + // Include consumables in the player db + const pdb = player.database!; + + type ConsumableIdKey = + | 'flaskId' + | 'battleElixirId' + | 'guardianElixirId' + | 'foodId' + | 'potId' + | 'prepotId' + | 'tinkerId' + | 'conjuredId' + | 'explosiveId'; + const consumableIdFields: ConsumableIdKey[] = [ + 'potId', + 'prepotId', + 'flaskId', + 'battleElixirId', + 'guardianElixirId', + 'foodId', + 'tinkerId', + 'conjuredId', + 'explosiveId', + ]; + + const newConsumables: Consumable[] = []; + const newSpellEffects: SpellEffect[] = []; + const seenConsumableIds = new Set(); + const seenEffectIds = new Set(); + + for (const field of consumableIdFields) { + const cid = player.consumables?.[field]; + if (!cid || seenConsumableIds.has(cid)) continue; + + const consume = this.db.getConsumable(cid); + if (!consume) continue; + + seenConsumableIds.add(consume.id); + newConsumables.push(consume); + + for (const eid of consume.effectIds) { + if (seenEffectIds.has(eid)) continue; + const effect = this.db.getSpellEffect(eid); + if (!effect) continue; + + seenEffectIds.add(effect.id); + newSpellEffects.push(effect); + } + } + + // swap in the fresh arrays + pdb.consumables = newConsumables; + pdb.spellEffects = newSpellEffects; + + // replace the old maps in one go + pdb.consumables = newConsumables; + pdb.spellEffects = newSpellEffects; + player.database = pdb; }); }); @@ -297,6 +358,8 @@ export class Sim { playerDatabase.gems.push(...bulkItemsDb.gems); playerDatabase.reforgeStats.push(...bulkItemsDb.reforgeStats); playerDatabase.randomSuffixes.push(...bulkItemsDb.randomSuffixes); + playerDatabase.consumables.push(...bulkItemsDb.consumables); + playerDatabase.spellEffects.push(...bulkItemsDb.spellEffects); this.bulkSimStartEmitter.emit(TypedEvent.nextEventID(), request); @@ -439,18 +502,15 @@ export class Sim { eventID = TypedEvent.nextEventID(); await this.waitForInit(); - // Capture the current players so we avoid issues if something changes while // request is in-flight. - const players = this.raid.getPlayers(); + const players = this.raid.getPlayers(); const req = ComputeStatsRequest.create({ raid: this.getModifiedRaidProto(), encounter: this.encounter.toProto(), }); - const result = await this.workerPool.computeStats(req); - if (result.errorResult != '') { this.crashEmitter.emit(eventID, new SimError(result.errorResult)); return; @@ -789,7 +849,7 @@ export class Sim { fromProto(eventID: EventID, proto: SimSettingsProto) { TypedEvent.freezeAllAndDo(() => { this.setIterations(eventID, proto.iterations || 12500); - this.setPhase(eventID, proto.phase || OtherConstants.CURRENT_PHASE); + this.setPhase(eventID, proto.phase || CURRENT_PHASE); this.setFixedRngSeed(eventID, Number(proto.fixedRngSeed)); this.setShowDamageMetrics(eventID, proto.showDamageMetrics); this.setShowThreatMetrics(eventID, proto.showThreatMetrics); @@ -832,7 +892,7 @@ export class Sim { eventID, SimSettingsProto.create({ iterations: 12500, - phase: OtherConstants.CURRENT_PHASE, + phase: CURRENT_PHASE, faction: Faction.Alliance, showDamageMetrics: !isHealingSim, showThreatMetrics: isTankSim, diff --git a/ui/core/sim_ui.tsx b/ui/core/sim_ui.tsx index 18b2ea84aa..201607470b 100644 --- a/ui/core/sim_ui.tsx +++ b/ui/core/sim_ui.tsx @@ -352,7 +352,7 @@ export abstract class SimUI extends Component { const hash = this.hashCode(errorStr); const link = this.toLink(); const rngSeed = this.sim.getLastUsedRngSeed(); - fetch('https://api.github.com/search/issues?q=is:issue+is:open+repo:wowsims/cata+' + hash) + fetch('https://api.github.com/search/issues?q=is:issue+is:open+repo:wowsims/mop+' + hash) .then(resp => { resp.json().then(issues => { if (issues.total_count > 0) { diff --git a/ui/core/talents/death_knight.ts b/ui/core/talents/death_knight.ts index 58ef5ab8e2..2a7b58965c 100644 --- a/ui/core/talents/death_knight.ts +++ b/ui/core/talents/death_knight.ts @@ -1,165 +1,191 @@ -import {DeathKnightMajorGlyph, DeathKnightMinorGlyph, DeathKnightPrimeGlyph, DeathKnightTalents } from '../proto/death_knight'; -import { GlyphsConfig } from './glyphs_picker.jsx'; -import { newTalentsConfig, TalentsConfig } from './talents_picker.jsx'; -import DkTalentsJson from './trees/death_knight.json'; - -export const deathKnightTalentsConfig: TalentsConfig = newTalentsConfig(DkTalentsJson); +import { DeathKnightMajorGlyph, DeathKnightMinorGlyph, DeathKnightTalents } from '../proto/death_knight.js'; +import { GlyphsConfig } from './glyphs_picker.js'; +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import DeathKnightTalentJson from './trees/death_knight.json';export const deathKnightTalentsConfig: TalentsConfig = newTalentsConfig(DeathKnightTalentJson); export const deathKnightGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [DeathKnightPrimeGlyph.GlyphOfDeathAndDecay]: { - name: 'Glyph of Death and Decay', - description: 'Increases the duration of your Death and Decay spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathanddecay.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfDeathCoil]: { - name: 'Glyph of Death Coil', - description: 'Increases the damage or healing done by Death Coil by 15%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathcoil.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfDeathStrike]: { - name: 'Glyph of Death Strike', - description: 'Increases your Death Strike\'s damage by 2% for every 5 Runic Power you currently have (up to a maximum of 40%). The Runic Power is not consumed by this effect.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_butcher2.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfFrostStrike]: { - name: 'Glyph of Frost Strike', - description: 'Reduces the cost of your Frost Strike by 8 Runic Power.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_empowerruneblade2.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfHeartStrike]: { - name: 'Glyph of Heart Strike', - description: 'Increases the damage of your Heart Strike ability by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_weapon_shortblade_40.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfHowlingBlast]: { - name: 'Glyph of Howling Blast', - description: 'Your Howling Blast ability now infects your targets with Frost Fever.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_arcticwinds.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfIcyTouch]: { - name: 'Glyph of Icy Touch', - description: 'Your Frost Fever disease deals 20% additional damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_icetouch.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfObliterate]: { - name: 'Glyph of Obliterate', - description: 'Increases the damage of your Obliterate ability by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_classicon.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfRaiseDead]: { - name: 'Glyph of Raise Dead', - description: 'Your Ghoul receives an additional 40% of your Strength and 40% of your Stamina.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_animatedead.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfRuneStrike]: { - name: 'Glyph of Rune Strike', - description: 'Increases the critical strike chance of your Rune Strike by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_darkconviction.jpg', - }, - [DeathKnightPrimeGlyph.GlyphOfScourgeStrike]: { - name: 'Glyph of Scourge Strike', - description: 'Increases the Shadow damage portion of your Scourge Strike by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_scourgestrike.jpg', - }, - }, majorGlyphs: { [DeathKnightMajorGlyph.GlyphOfAntiMagicShell]: { - name: 'Glyph of Anti-Magic Shell', - description: 'Increases the duration of your Anti-Magic Shell by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_antimagicshell.jpg', + name: "Glyph of Anti-Magic Shell", + description: "Causes your Anti-Magic Shell to absorb all incoming magical damage, up to the absorption limit.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_antimagicshell.jpg", }, - [DeathKnightMajorGlyph.GlyphOfBloodBoil]: { - name: 'Glyph of Blood Boil', - description: 'Increases the radius of your Blood Boil ability by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_bloodboil.jpg', + [DeathKnightMajorGlyph.GlyphOfUnholyFrenzy]: { + name: "Glyph of Unholy Frenzy", + description: "Causes your Unholy Frenzy to no longer deal damage to the affected target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unholyfrenzy.jpg", }, - [DeathKnightMajorGlyph.GlyphOfBoneShield]: { - name: 'Glyph of Bone Shield', - description: 'Increases your movement speed by 15% while Bone Shield is active. This does not stack with other movement-speed increasing effects.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_deathknight_boneshield.jpg', + [DeathKnightMajorGlyph.GlyphOfIceboundFortitude]: { + name: "Glyph of Icebound Fortitude", + description: "Reduces the cooldown of your Icebound Fortitude by $s1%, but also reduces its duration by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_iceboundfortitude.jpg", }, [DeathKnightMajorGlyph.GlyphOfChainsOfIce]: { - name: 'Glyph of Chains of Ice', - description: 'Your Chains of Ice also causes 144 to 156 Frost damage, with additional damage depending on your attack power.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_chainsofice.jpg', - }, - [DeathKnightMajorGlyph.GlyphOfDancingRuneWeapon]: { - name: 'Glyph of Dancing Rune Weapon', - description: 'Increases your threat generation by 50% while your Dancing Rune Weapon is active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_sword_07.jpg', - }, - [DeathKnightMajorGlyph.GlyphOfDarkSuccor]: { - name: 'Glyph of Dark Succor', - description: 'Your next Death Strike performed while in Frost or Unholy Presence, within 15 sec after killing an enemy that yields experience or honor, will restore at least 20% of your maximum health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_butcher2.jpg', + name: "Glyph of Chains of Ice", + description: "Your Chains of Ice also causes $s1 Frost damage, with additional damage depending on your attack power.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_chainsofice.jpg", }, [DeathKnightMajorGlyph.GlyphOfDeathGrip]: { - name: 'Glyph of Death Grip', - description: 'Increases the range of your Death Grip ability by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_strangulate.jpg', - }, - [DeathKnightMajorGlyph.GlyphOfHungeringCold]: { - name: 'Glyph of Hungering Cold', - description: 'Your Hungering Cold ability no longer costs runic power.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_staff_15.jpg', + name: "Glyph of Death Grip", + description: "Increases the range of your Death Grip ability by $62259s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_strangulate.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfDeathAndDecay]: { + name: "Glyph of Death and Decay", + description: "Your Death and Decay also reduces the movement speed of enemies within its radius by $58629s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathanddecay.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfShiftingPresences]: { + name: "Glyph of Shifting Presences", + description: "You retain $58647s1% of your Runic Power when switching Presences.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_bloodpresence.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfIcyTouch]: { + name: "Glyph of Icy Touch", + description: "Your Icy Touch dispels one helpful Magic effect from the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_icetouch.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfEnduringInfection]: { + name: "Glyph of Enduring Infection", + description: "Your diseases are undispellable, but their damage dealt is reduced by $58671s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_creature_disease_05.jpg", }, [DeathKnightMajorGlyph.GlyphOfPestilence]: { - name: 'Glyph of Pestilence', - description: 'Increases the radius of your Pestilence effect by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_plaguecloud.jpg', - }, - [DeathKnightMajorGlyph.GlyphOfPillarOfFrost]: { - name: 'Glyph of Pillar of Frost', - description: 'Empowers your Pillar of Frost, making you immune to all effects that cause loss of control of your character, but also freezing you in place while the ability is active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_deathknight_pillaroffrost.jpg', + name: "Glyph of Pestilence", + description: "Increases the radius of your Pestilence effect by $58657s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_plaguecloud.jpg", }, - [DeathKnightMajorGlyph.GlyphOfRuneTap]: { - name: 'Glyph of Rune Tap', - description: 'Your Rune Tap also heals your party for 5% of their maximum health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_runetap.jpg', + [DeathKnightMajorGlyph.GlyphOfMindFreeze]: { + name: "Glyph of Mind Freeze", + description: "Reduces the cooldown of your Mind Freeze ability by ${$58686m1/-1000} sec, but also raises its cost by ${$58686m2/10} Runic Power.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_mindfreeze.jpg", }, [DeathKnightMajorGlyph.GlyphOfStrangulate]: { - name: 'Glyph of Strangulate', - description: 'Increases the Silence duration of your Strangulate ability by 2 sec when used on a target who is casting a spell.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_soulleech_3.jpg', + name: "Glyph of Strangulate", + description: "Increases the Silence duration of your Strangulate ability by ${$58618m1/1000} sec when used on a target who is casting a spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_soulleech_3.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfPillarOfFrost]: { + name: "Glyph of Pillar of Frost", + description: "Empowers your Pillar of Frost, making you immune to all effects that cause loss of control of your character, but also reduces your movement speed by $90259s2% while the ability is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_deathknight_pillaroffrost.jpg", }, [DeathKnightMajorGlyph.GlyphOfVampiricBlood]: { - name: 'Glyph of Vampiric Blood', - description: 'Increases the bonus healing received while your Vampiric Blood is active by an additional 15%, but your Vampiric Blood no longer grants you health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg', + name: "Glyph of Vampiric Blood", + description: "Increases the bonus healing received while your Vampiric Blood is active by an additional $58676s1%, but your Vampiric Blood no longer grants you health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfUnholyCommand]: { + name: "Glyph of Unholy Command", + description: "Immediately finishes the cooldown of your Death Grip upon dealing a killing blow to a target that grants experience or honor.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_skull.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfOutbreak]: { + name: "Glyph of Outbreak", + description: "Your Outbreak spell no longer has a cooldown, but now costs ${$m2/10} Runic Power.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathvortex.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfDancingRuneWeapon]: { + name: "Glyph of Dancing Rune Weapon", + description: "Increases your threat generation by $63330s1% while your Dancing Rune Weapon is active, but reduces its damage dealt by $63330s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_sword_07.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfDarkSimulacrum]: { + name: "Glyph of Dark Simulacrum", + description: "Reduces the cooldown of Dark Simulacrum by ${$63331m1/-1000} sec and increases its duration by ${$63331m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_consumemagic.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfDeathCoil]: { + name: "Glyph of Death Coil", + description: "Your Death Coil spell is now usable on all allies. When cast on a non-undead ally, Death Coil shrouds them with a protective barrier that absorbs up to $\u003Cdamage\u003E damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathcoil.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfDarkSuccor]: { + name: "Glyph of Dark Succor", + description: "When you kill an enemy that yields experience or honor, while in Frost or Unholy Presence, your next Death Strike within $101568d is free and will restore at least $101568s1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_butcher2.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfSwiftDeath]: { + name: "Glyph of Swift Death", + description: "The haste effect granted by Soul Reaper now also increases your movement speed by $114868s2% for the duration.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_deathknight_soulreaper.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfLoudHorn]: { + name: "Glyph of Loud Horn", + description: "Your Horn of Winter now generates an additional ${$147078m1/10} Runic Power, but the cooldown is increased by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_horn_04.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfRegenerativeMagic]: { + name: "Glyph of Regenerative Magic", + description: "If Anti-Magic Shell expires after its full duration, the cooldown is reduced by up to $s1%, based on the amount of damage absorbtion remaining.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_antimagicshell.jpg", + }, + [DeathKnightMajorGlyph.GlyphOfFesteringBlood]: { + name: "Glyph of Festering Blood", + description: "Blood Boil will now treat all targets as though they have Blood Plague or Frost Fever applied.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_yorsahj_bloodboil_green.jpg", }, }, minorGlyphs: { - [DeathKnightMinorGlyph.GlyphOfBloodTap]: { - name: 'Glyph of Blood Tap', - description: 'Your Blood Tap no longer causes damage to you.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_bloodtap.jpg', + [DeathKnightMinorGlyph.GlyphOfTheGeist]: { + name: "Glyph of the Geist", + description: "Your Raise Dead spell summons a geist instead of a ghoul.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_animatedead.jpg", }, - [DeathKnightMinorGlyph.GlyphOfDeathGate]: { - name: 'Glyph of Death Gate', - description: 'Reduces the cast time of your Death Gate spell by 60%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_teleportundercity.jpg', - }, - [DeathKnightMinorGlyph.GlyphOfDeathSEmbrace]: { - name: 'Glyph of Death\'s Embrace', - description: 'Your Death Coil refunds 20 Runic Power when used to heal an allied minion.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathcoil.jpg', + [DeathKnightMinorGlyph.GlyphOfDeathsEmbrace]: { + name: "Glyph of Death's Embrace", + description: "Your Death Coil refunds $s1 Runic Power when used to heal an allied minion, but will no longer trigger Blood Tap when used this way.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathcoil.jpg", }, [DeathKnightMinorGlyph.GlyphOfHornOfWinter]: { - name: 'Glyph of Horn of Winter', - description: 'Increases the duration of your Horn of Winter ability by 1 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_horn_02.jpg', + name: "Glyph of Horn of Winter", + description: "When used outside of combat, your Horn of Winter ability causes a brief, localized snow flurry.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_horn_02.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfArmyOfTheDead]: { + name: "Glyph of Army of the Dead", + description: "The ghouls summoned by your Army of the Dead no longer taunt their target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_armyofthedead.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfFoulMenagerie]: { + name: "Glyph of Foul Menagerie", + description: "Causes your Army of the Dead spell to summon an assortment of undead minions.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_armyofthedead.jpg", }, [DeathKnightMinorGlyph.GlyphOfPathOfFrost]: { - name: 'Glyph of Path of Frost', - description: 'Your Path of Frost ability allows you to fall from a greater distance without suffering damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_pathoffrost.jpg', + name: "Glyph of Path of Frost", + description: "Your Path of Frost ability allows you to fall from a greater distance without suffering damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_pathoffrost.jpg", }, [DeathKnightMinorGlyph.GlyphOfResilientGrip]: { - name: 'Glyph of Resilient Grip', - description: 'When your Death Grip ability fails because its target is immune, its cooldown is reset.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_deathknight_strangulate.jpg', + name: "Glyph of Resilient Grip", + description: "When your Death Grip ability fails because its target is immune, its cooldown is reset.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/warlock_curse_shadow.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfDeathGate]: { + name: "Glyph of Death Gate", + description: "Reduces the cast time of your Death Gate spell by $60200s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_teleportundercity.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfCorpseExplosion]: { + name: "Glyph of Corpse Explosion", + description: "Teaches you the ability Corpse Explosion.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_corpseexplode.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfTranquilGrip]: { + name: "Glyph of Tranquil Grip", + description: "Your Death Grip spell no longer taunts the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_envelopingshadows.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfTheSkeleton]: { + name: "Glyph of the Skeleton", + description: "Your Raise Dead spell summons a skeleton instead of a ghoul.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_bone_humanskull_01.jpg", + }, + [DeathKnightMinorGlyph.GlyphOfTheLongWinter]: { + name: "Glyph of the Long Winter", + description: "The effect of your Horn of Winter now lasts for 1 hour.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_deathknight_remorselesswinters.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/druid.ts b/ui/core/talents/druid.ts index 96648b368c..9cb8465570 100644 --- a/ui/core/talents/druid.ts +++ b/ui/core/talents/druid.ts @@ -1,225 +1,241 @@ -import {DruidMajorGlyph, DruidMinorGlyph,DruidPrimeGlyph, DruidTalents } from '../proto/druid.js'; -import { GlyphsConfig, } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import DruidTalentsJson from './trees/druid.json'; - -export const druidTalentsConfig: TalentsConfig = newTalentsConfig(DruidTalentsJson); +import { DruidMajorGlyph, DruidMinorGlyph, DruidTalents } from '../proto/druid.js'; +import { GlyphsConfig } from './glyphs_picker.js'; +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import DruidTalentJson from './trees/druid.json';export const druidTalentsConfig: TalentsConfig = newTalentsConfig(DruidTalentJson); export const druidGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [DruidPrimeGlyph.GlyphOfBerserk]: { - name: 'Glyph of Berserk', - description: 'Increases the duration of Berserk by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_berserk.jpg', - }, - [DruidPrimeGlyph.GlyphOfBloodletting]: { - name: 'Glyph of Bloodletting', - description: 'Each time you Shred or Mangle in Cat Form, the duration of your Rip on the target is extended by 2 sec, up to a maximum of 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_vampiricaura.jpg', - }, - [DruidPrimeGlyph.GlyphOfInsectSwarm]: { - name: 'Glyph of Insect Swarm', - description: 'Increases the damage of your Insect Swarm ability by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_insectswarm.jpg', - }, - [DruidPrimeGlyph.GlyphOfLacerate]: { - name: 'Glyph of Lacerate', - description: 'Increases the critical strike chance of your Lacerate ability by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_lacerate.jpg', - }, - [DruidPrimeGlyph.GlyphOfLifebloom]: { - name: 'Glyph of Lifebloom', - description: 'Increases the critical effect chance of your Lifebloom by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_herb_felblossom.jpg', - }, - [DruidPrimeGlyph.GlyphOfMangle]: { - name: 'Glyph of Mangle', - description: 'Increases the damage done by Mangle by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_mangle2.jpg', - }, - [DruidPrimeGlyph.GlyphOfMoonfire]: { - name: 'Glyph of Moonfire', - description: 'Increases the periodic damage of your Moonfire ability by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_starfall.jpg', - }, - [DruidPrimeGlyph.GlyphOfRegrowth]: { - name: 'Glyph of Regrowth', - description: 'Your Regrowth heal-over-time will automatically refresh its duration on targets at or below 50% health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_resistnature.jpg', - }, - [DruidPrimeGlyph.GlyphOfRejuvenation]: { - name: 'Glyph of Rejuvenation', - description: 'Increases the healing done by your Rejuvenation by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_rejuvenation.jpg', - }, - [DruidPrimeGlyph.GlyphOfRip]: { - name: 'Glyph of Rip', - description: 'Increases the periodic damage of your Rip by 15%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_ghoulfrenzy.jpg', - }, - [DruidPrimeGlyph.GlyphOfSavageRoar]: { - name: 'Glyph of Savage Roar', - description: 'Your Savage Roar ability grants an additional 5% bonus damage done.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_skinteeth.jpg', - }, - [DruidPrimeGlyph.GlyphOfStarfire]: { - name: 'Glyph of Starfire', - description: 'Your Starfire ability increases the duration of your Moonfire effect on the target by 3 sec, up to a maximum of 9 additional seconds. Only functions on the target with your most recently applied Moonfire.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_starfire.jpg', - }, - [DruidPrimeGlyph.GlyphOfStarsurge]: { - name: 'Glyph of Starsurge', - description: 'When your Starsurge deals damage, the cooldown remaining on your Starfall is reduced by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_arcane03.jpg', - }, - [DruidPrimeGlyph.GlyphOfSwiftmend]: { - name: 'Glyph of Swiftmend', - description: 'Your Swiftmend ability no longer consumes a Rejuvenation or Regrowth effect from the target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_relics_idolofrejuvenation.jpg', - }, - [DruidPrimeGlyph.GlyphOfTigersFury]: { - name: 'Glyph of Tiger\'s Fury', - description: 'Reduces the cooldown of your Tiger\'s Fury ability by 3 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mount_jungletiger.jpg', - }, - [DruidPrimeGlyph.GlyphOfWrath]: { - name: 'Glyph of Wrath', - description: 'Increases the damage done by your Wrath by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_wrathv2.jpg', - }, - }, majorGlyphs: { - [DruidMajorGlyph.GlyphOfBarkskin]: { - name: 'Glyph of Barkskin', - description: 'Reduces the chance you\'ll be critically hit by 25% while Barkskin is active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_stoneclawtotem.jpg', + [DruidMajorGlyph.GlyphOfFrenziedRegeneration]: { + name: "Glyph of Frenzied Regeneration", + description: "For $124769d after activating Frenzied Regeneration, healing effects on you are $54810s1% more powerful. However, your Frenzied Regeneration now always costs ${$m3/10} Rage and no longer converts Rage into health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_bullrush.jpg", }, - [DruidMajorGlyph.GlyphOfEntanglingRoots]: { - name: 'Glyph of Entangling Roots', - description: 'Reduces the cast time of your Entangling Roots by 0.2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_stranglevines.jpg', + [DruidMajorGlyph.GlyphOfMaul]: { + name: "Glyph of Maul", + description: "Your Maul ability now hits $s1 additional target for $s3% damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_maul.jpg", }, - [DruidMajorGlyph.GlyphOfFaerieFire]: { - name: 'Glyph of Faerie Fire', - description: 'Increases the range of your Faerie Fire and Feral Faerie Fire abilities by 10 yds.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_faeriefire.jpg', + [DruidMajorGlyph.GlyphOfOmens]: { + name: "Glyph of Omens", + description: "While you are not in an Eclipse, the following abilities now grant $s1 Solar or Lunar Energy: Entangling Roots, Cyclone, Faerie Fire, Faerie Swarm, Mass Entanglement, Typhoon, Disorienting Roar, Ursol\'s Vortex, and Mighty Bash.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_vehicle_sonicshockwave.jpg", }, - [DruidMajorGlyph.GlyphOfFeralCharge]: { - name: 'Glyph of Feral Charge', - description: 'Reduces the cooldown of your Feral Charge (Cat) ability by 2 sec and the cooldown of your Feral Charge (Bear) ability by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_pet_bear.jpg', + [DruidMajorGlyph.GlyphOfShred]: { + name: "Glyph of Shred", + description: "While Berserk or Tiger\'s Fury is active, Shred has no positional requirement.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_vampiricaura.jpg", }, - [DruidMajorGlyph.GlyphOfFerociousBite]: { - name: 'Glyph of Ferocious Bite', - description: 'Your Ferocious Bite ability heals you for 1% of your maximum health for each 10 energy used.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_ferociousbite.jpg', + [DruidMajorGlyph.GlyphOfProwl]: { + name: "Glyph of Prowl", + description: "Reduces the movement penalty of Prowl by ${$m1*100/30}%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_prowl.jpg", }, - [DruidMajorGlyph.GlyphOfFocus]: { - name: 'Glyph of Focus', - description: 'Increases the damage done by Starfall by 10%, but decreases its radius by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_arcanepotency.jpg', + [DruidMajorGlyph.GlyphOfPounce]: { + name: "Glyph of Pounce", + description: "Increases the range of your Pounce by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_supriseattack.jpg", }, - [DruidMajorGlyph.GlyphOfFrenziedRegeneration]: { - name: 'Glyph of Frenzied Regeneration', - description: 'While Frenzied Regeneration is active, healing effects on you are 30% more powerful but causes your Frenzied Regeneration to no longer convert rage into health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_bullrush.jpg', + [DruidMajorGlyph.GlyphOfStampede]: { + name: "Glyph of Stampede", + description: "You can now cast Stampeding Roar without being in Bear Form or Cat Form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_druid_stampedingroar_cat.jpg", + }, + [DruidMajorGlyph.GlyphOfInnervate]: { + name: "Glyph of Innervate", + description: "When Innervate is cast on a target other than the caster, both the caster and target will benefit, but at $s1% reduced effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg", + }, + [DruidMajorGlyph.GlyphOfRebirth]: { + name: "Glyph of Rebirth", + description: "Players resurrected by Rebirth are returned to life with $54733s2% health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_reincarnation.jpg", + }, + [DruidMajorGlyph.GlyphOfRegrowth]: { + name: "Glyph of Regrowth", + description: "Increases the critical strike chance of your Regrowth by $m1%, but removes the periodic component of the spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_resistnature.jpg", + }, + [DruidMajorGlyph.GlyphOfRejuvenation]: { + name: "Glyph of Rejuvenation", + description: "When you have Rejuvenation active on three or more targets, the cast time of your Nourish spell is reduced by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_rejuvenation.jpg", }, [DruidMajorGlyph.GlyphOfHealingTouch]: { - name: 'Glyph of Healing Touch', - description: 'When you cast Healing Touch, the cooldown on your Nature\'s Swiftness is reduced by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingtouch.jpg', + name: "Glyph of Healing Touch", + description: "When you cast Healing Touch, the cooldown on your Nature\'s Swiftness is reduced by $s1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingtouch.jpg", + }, + [DruidMajorGlyph.GlyphOfEfflorescence]: { + name: "Glyph of Efflorescence", + description: "The Efflorescence effect is now caused by your Wild Mushroom instead of by Swiftmend, and lasts as long as the Wild Mushroom is active. Additionally, increases the healing done by Swiftmend by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingtouch.jpg", + }, + [DruidMajorGlyph.GlyphOfGuidedStars]: { + name: "Glyph of Guided Stars", + description: "Your Starfall only hits targets affected by your Moonfire or Sunfire.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mage_arcanebarrage.jpg", }, [DruidMajorGlyph.GlyphOfHurricane]: { - name: 'Glyph of Hurricane', - description: 'Your Hurricane ability now also slows the movement speed of its victims by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_cyclone.jpg', + name: "Glyph of Hurricane", + description: "Your Hurricane and Astral Storm abilities now also slow the movement speed of their victims by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_cyclone.jpg", }, - [DruidMajorGlyph.GlyphOfInnervate]: { - name: 'Glyph of Innervate', - description: 'When Innervate is cast on a friendly target other than the caster, the caster will gain 10% of maximum mana over 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg', + [DruidMajorGlyph.GlyphOfSkullBash]: { + name: "Glyph of Skull Bash", + description: "Increases the duration of your Skull Bash interrupt by ${$m2/1000} sec, but increases the cooldown by ${$m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_bone_taurenskull_01.jpg", }, - [DruidMajorGlyph.GlyphOfMaul]: { - name: 'Glyph of Maul', - description: 'Your Maul ability now hits 1 additional target for 50% damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_maul.jpg', + [DruidMajorGlyph.GlyphOfNaturesGrasp]: { + name: "Glyph of Nature's Grasp", + description: "Reduces the cooldown of Nature\'s Grasp by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_natureswrath.jpg", }, - [DruidMajorGlyph.GlyphOfMonsoon]: { - name: 'Glyph of Monsoon', - description: 'Reduces the cooldown of your Typhoon spell by 3 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_riptide.jpg', + [DruidMajorGlyph.GlyphOfSavagery]: { + name: "Glyph of Savagery", + description: "Savage Roar can now be used with 0 combo points, resulting in a $127538d duration.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_skinteeth.jpg", }, - [DruidMajorGlyph.GlyphOfOmenOfClarity]: { - name: 'Glyph of Omen of Clarity', - description: 'Your Omen of Clarity talent has a 100% chance to be triggered by successfully casting Faerie Fire (Feral). Does not trigger on players or player-controlled pets.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_questionmark.jpg', + [DruidMajorGlyph.GlyphOfEntanglingRoots]: { + name: "Glyph of Entangling Roots", + description: "Reduces the cast time of your Entangling Roots by 0.2 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_stranglevines.jpg", + }, + [DruidMajorGlyph.GlyphOfBlooming]: { + name: "Glyph of Blooming", + description: "Increases the bloom heal of your Lifebloom when it expires by $s1%, but its duration is reduced by ${$m2/-1000} sec and your Healing Touch, Nourish, and Regrowth abilities no longer refresh the duration.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_protectionformnature.jpg", + }, + [DruidMajorGlyph.GlyphOfDash]: { + name: "Glyph of Dash", + description: "Reduces the cooldown of your Dash ability by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_dash.jpg", + }, + [DruidMajorGlyph.GlyphOfMasterShapeshifter]: { + name: "Glyph of Master Shapeshifter", + description: "Reduces the mana cost of all shapeshifts by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_mastershapeshifter.jpg", + }, + [DruidMajorGlyph.GlyphOfSurvivalInstincts]: { + name: "Glyph of Survival Instincts", + description: "Reduces the cooldown of Survival Instincts by ${$m1/-1000} sec, but reduces its duration by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_tigersroar.jpg", }, - [DruidMajorGlyph.GlyphOfPounce]: { - name: 'Glyph of Pounce', - description: 'Increases the range of your Pounce by 3 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_supriseattack.jpg', + [DruidMajorGlyph.GlyphOfWildGrowth]: { + name: "Glyph of Wild Growth", + description: "Wild Growth can affect $62970s1 additional target, but its cooldown is increased by ${$62970m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_flourish.jpg", }, - [DruidMajorGlyph.GlyphOfRebirth]: { - name: 'Glyph of Rebirth', - description: 'Players resurrected by Rebirth are returned to life with 100% health.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_reincarnation.jpg', + [DruidMajorGlyph.GlyphOfMightOfUrsoc]: { + name: "Glyph of Might of Ursoc", + description: "Increases the health gain from Might of Ursoc by $m1%, but increases the cooldown by ${$m2/60000} min.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_druid_mightofursoc.jpg", }, - [DruidMajorGlyph.GlyphOfSolarBeam]: { - name: 'Glyph of Solar Beam', - description: 'Increases the duration of your Solar Beam silence effect by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_vehicle_sonicshockwave.jpg', + [DruidMajorGlyph.GlyphOfStampedingRoar]: { + name: "Glyph of Stampeding Roar", + description: "Increases the radius of Stampeding Roar by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_druid_stamedingroar.jpg", }, - [DruidMajorGlyph.GlyphOfStarfall]: { - name: 'Glyph of Starfall', - description: 'Reduces the cooldown of Starfall by 30 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_starfall.jpg', + [DruidMajorGlyph.GlyphOfCyclone]: { + name: "Glyph of Cyclone", + description: "Increases the range of your Cyclone spell by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_earthbind.jpg", }, - [DruidMajorGlyph.GlyphOfThorns]: { - name: 'Glyph of Thorns', - description: 'Reduces the cooldown of your Thorns spell by 20 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_thorns.jpg', + [DruidMajorGlyph.GlyphOfBarkskin]: { + name: "Glyph of Barkskin", + description: "Reduces the chance you\'ll be critically hit by $63057s1% while Barkskin is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_stoneclawtotem.jpg", }, - [DruidMajorGlyph.GlyphOfWildGrowth]: { - name: 'Glyph of Wild Growth', - description: 'Wild Growth can affect 1 additional target, but its cooldown is increased by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_flourish.jpg', + [DruidMajorGlyph.GlyphOfFerociousBite]: { + name: "Glyph of Ferocious Bite", + description: "Your Ferocious Bite ability heals you for $s1% of your maximum health for each $s2 Energy used.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_ferociousbite.jpg", + }, + [DruidMajorGlyph.GlyphOfFaeSilence]: { + name: "Glyph of Fae Silence", + description: "Faerie Fire used in Bear Form also silences the target for $114238d, but triggers a 15 sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_challangingroar.jpg", + }, + [DruidMajorGlyph.GlyphOfFaerieFire]: { + name: "Glyph of Faerie Fire", + description: "Increases the range of your Faerie Fire by $s1 yds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_faeriefire.jpg", + }, + [DruidMajorGlyph.GlyphOfCatForm]: { + name: "Glyph of Cat Form", + description: "Increases healing done to you by $s1% while in Cat Form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_catform.jpg", }, }, minorGlyphs: { - [DruidMinorGlyph.GlyphOfAquaticForm]: { - name: 'Glyph of Aquatic Form', - description: 'Increases your swim speed by 50% while in Aquatic Form.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_aquaticform.jpg', + [DruidMinorGlyph.GlyphOfTheStag]: { + name: "Glyph of the Stag", + description: "Your Travel Form can now be used as a mount by party members. This glyph is disabled while Glyph of the Cheetah is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/trade_archaeology_antleredcloakclasp.jpg", }, - [DruidMinorGlyph.GlyphOfChallengingRoar]: { - name: 'Glyph of Challenging Roar', - description: 'Reduces the cooldown of your Challenging Roar ability by 30 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_challangingroar.jpg', + [DruidMinorGlyph.GlyphOfTheOrca]: { + name: "Glyph of the Orca", + description: "Your Aquatic Form now appears as an Orca.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_aquaticform.jpg", }, - [DruidMinorGlyph.GlyphOfDash]: { - name: 'Glyph of Dash', - description: 'Reduces the cooldown of your Dash ability by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_dash.jpg', - }, - [DruidMinorGlyph.GlyphOfMarkOfTheWild]: { - name: 'Glyph of Mark of the Wild', - description: 'Mana cost of your Mark of the Wild reduced by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_giftofthewild.jpg', + [DruidMinorGlyph.GlyphOfAquaticForm]: { + name: "Glyph of Aquatic Form", + description: "Increases your swim speed by $57856s1% while in Aquatic Form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_enchant_essencemagiclarge.jpg", + }, + [DruidMinorGlyph.GlyphOfGrace]: { + name: "Glyph of Grace", + description: "Feline Grace reduces falling damage even while not in Cat Form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_feather_01.jpg", + }, + [DruidMinorGlyph.GlyphOfTheChameleon]: { + name: "Glyph of the Chameleon", + description: "Each time you shapeshift into Cat Form or Bear Form, your shapeshifted form will have a random hair color.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_mastershapeshifter.jpg", + }, + [DruidMinorGlyph.GlyphOfCharmWoodlandCreature]: { + name: "Glyph of Charm Woodland Creature", + description: "Teaches you the ability Charm Woodland Creature.\u000D\u000A\u000D\u000AAllows the Druid to befriend an ambient creature, which will follow the Druid for $127757d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_rabbit.jpg", + }, + [DruidMinorGlyph.GlyphOfStars]: { + name: "Glyph of Stars", + description: "Your Moonkin Form now appears as Astral Form, conferring all the same benefits, but appearing as an astrally enhanced version of your normal humanoid form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_boss_algalon_01.jpg", + }, + [DruidMinorGlyph.GlyphOfThePredator]: { + name: "Glyph of the Predator", + description: "Your Track Humanoids ability now also tracks beasts.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_tracking.jpg", }, [DruidMinorGlyph.GlyphOfTheTreant]: { - name: 'Glyph of the Treant', - description: 'Your Tree of Life Form now resembles a Treant.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_treeoflife.jpg', - }, - [DruidMinorGlyph.GlyphOfTyphoon]: { - name: 'Glyph of Typhoon', - description: 'Reduces the cost of your Typhoon spell by 8% and increases its radius by 10 yards, but it no longer knocks enemies back.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_typhoon.jpg', - }, - [DruidMinorGlyph.GlyphOfUnburdenedRebirth]: { - name: 'Glyph of Unburdened Rebirth', - description: 'Your Rebirth spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_wispsplodegreen.jpg', + name: "Glyph of the Treant", + description: "Teaches you the ability Treant Form.\u000D\u000A\u000D\u000AShapeshift into Treant Form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_treeoflife.jpg", + }, + [DruidMinorGlyph.ZzoldGlyphOfTheChameleon]: { + name: "zzOLD Glyph of the Chameleon", + description: "Each time you shapeshift into Cat Form or Bear Form, your shapeshifted form will have a random hair color.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_mastershapeshifter.jpg", + }, + [DruidMinorGlyph.GlyphOfTheCheetah]: { + name: "Glyph of the Cheetah", + description: "Your Travel Form appears as a Cheetah. This glyph will prevent Glyph of the Stag from functioning.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_catlikereflexes.jpg", + }, + [DruidMinorGlyph.GlyphOfFocus]: { + name: "Glyph of Focus", + description: "Reduces Starfall\'s radius by $62080s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_arcanepotency.jpg", + }, + [DruidMinorGlyph.GlyphOfTheSproutingMushroom]: { + name: "Glyph of the Sprouting Mushroom", + description: "Your Wild Mushroom spell can now be placed on the ground instead of underneath a target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_druid_wildmushroom.jpg", + }, + [DruidMinorGlyph.GlyphOfOneWithNature]: { + name: "Glyph of One with Nature", + description: "Grants you the ability to teleport to a random natural location.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_manatree.jpg", }, }, }; diff --git a/ui/core/talents/factory.ts b/ui/core/talents/factory.ts index fd619a08a9..c1f0373147 100644 --- a/ui/core/talents/factory.ts +++ b/ui/core/talents/factory.ts @@ -6,6 +6,7 @@ import { druidGlyphsConfig, druidTalentsConfig } from './druid.js'; import { GlyphsConfig } from './glyphs_picker.js'; import { hunterGlyphsConfig, hunterTalentsConfig } from './hunter.js'; import { mageGlyphsConfig, mageTalentsConfig } from './mage.js'; +import { monkGlyphsConfig, monkTalentsConfig } from './monk.js'; import { paladinGlyphsConfig, paladinTalentsConfig } from './paladin.js'; import { priestGlyphsConfig, priestTalentsConfig } from './priest.js'; import { rogueGlyphsConfig, rogueTalentsConfig } from './rogue.js'; @@ -14,57 +15,62 @@ import { TalentsConfig } from './talents_picker.js'; import { warlockGlyphsConfig, warlockTalentsConfig } from './warlock.js'; import { warriorGlyphsConfig, warriorTalentsConfig } from './warrior.js'; -export const classTalentsConfig: Record> = { - [Class.ClassUnknown]: [], +export const classTalentsConfig: Record | null> = { + [Class.ClassUnknown]: null, [Class.ClassDeathKnight]: deathKnightTalentsConfig, [Class.ClassDruid]: druidTalentsConfig, [Class.ClassShaman]: shamanTalentsConfig, [Class.ClassHunter]: hunterTalentsConfig, [Class.ClassMage]: mageTalentsConfig, + [Class.ClassMonk]: monkTalentsConfig, [Class.ClassRogue]: rogueTalentsConfig, [Class.ClassPaladin]: paladinTalentsConfig, [Class.ClassPriest]: priestTalentsConfig, [Class.ClassWarlock]: warlockTalentsConfig, [Class.ClassWarrior]: warriorTalentsConfig, -}; +} as const; export const classGlyphsConfig: Record = { - [Class.ClassUnknown]: { primeGlyphs: [], majorGlyphs: [], minorGlyphs: [] }, + [Class.ClassUnknown]: { majorGlyphs: [], minorGlyphs: [] }, [Class.ClassDeathKnight]: deathKnightGlyphsConfig, [Class.ClassDruid]: druidGlyphsConfig, [Class.ClassShaman]: shamanGlyphsConfig, [Class.ClassHunter]: hunterGlyphsConfig, [Class.ClassMage]: mageGlyphsConfig, + [Class.ClassMonk]: monkGlyphsConfig, [Class.ClassRogue]: rogueGlyphsConfig, [Class.ClassPaladin]: paladinGlyphsConfig, [Class.ClassPriest]: priestGlyphsConfig, [Class.ClassWarlock]: warlockGlyphsConfig, [Class.ClassWarrior]: warriorGlyphsConfig, -}; +} as const; export function talentSpellIdsToTalentString(playerClass: Class, talentIds: Array): string { - const talentsConfig = classTalentsConfig[playerClass]; + // TODO: Fix once we know the actual output + return ''; - const talentsStr = talentsConfig - .map(treeConfig => { - const treeStr = treeConfig.talents - .map(talentConfig => { - const spellIdIndex = talentConfig.spellIds.findIndex(spellId => talentIds.includes(spellId)); - if (spellIdIndex == -1) { - return '0'; - } else { - return String(spellIdIndex + 1); - } - }) - .join('') - .replace(/0+$/g, ''); + // const talentsConfig = classTalentsConfig[playerClass]; - return treeStr; - }) - .join('-') - .replace(/-+$/g, ''); + // const talentsStr = talentsConfig? + // .map(treeConfig => { + // const treeStr = treeConfig.talents + // .map(talentConfig => { + // const spellIdIndex = talentConfig.spellIds.findIndex(spellId => talentIds.includes(spellId)); + // if (spellIdIndex == -1) { + // return '0'; + // } else { + // return String(spellIdIndex + 1); + // } + // }) + // .join('') + // .replace(/0+$/g, ''); - return talentsStr; + // return treeStr; + // }) + // .join('-') + // .replace(/-+$/g, ''); + + // return talentsStr; } export function playerTalentStringToProto(playerSpec: PlayerSpec, talentString: string): SpecTalents { @@ -76,19 +82,20 @@ export function playerTalentStringToProto(playerSpec: Pla } export function talentStringToProto(proto: TalentsProto, talentString: string, talentsConfig: TalentsConfig): TalentsProto { - talentString.split('-').forEach((treeString, treeIdx) => { - const treeConfig = talentsConfig[treeIdx]; - [...treeString].forEach((talentString, i) => { - const talentConfig = treeConfig.talents[i]; - const points = parseInt(talentString); - if (talentConfig.fieldName) { - if (talentConfig.maxPoints == 1) { - (proto[talentConfig.fieldName as keyof TalentsProto] as unknown as boolean) = points == 1; - } else { - (proto[talentConfig.fieldName as keyof TalentsProto] as unknown as number) = points; - } - } - }); + const { talents } = talentsConfig; + + const talentStringArray = talentString.split('').map(Number); + + talents.forEach(talent => { + (proto[talent.fieldName as keyof TalentsProto] as unknown as boolean) = false; + }); + + talentStringArray.forEach((talentValue, rowIndex) => { + const talentIndex = Number(talentValue); + const talent = talents.find(talent => talent.location.rowIdx == rowIndex && talent.location.colIdx == talentIndex); + if (talent) { + (proto[talent.fieldName as keyof TalentsProto] as unknown as boolean) = true; + } }); return proto; @@ -97,13 +104,14 @@ export function talentStringToProto(proto: TalentsProto, talentStr // Note that this function will fail if any of the talent names are not defined. TODO: Remove that condition // once all talents are migrated to wrath and use all fields. export function protoToTalentString(proto: TalentsProto, talentsConfig: TalentsConfig): string { - return talentsConfig - .map(treeConfig => { - return treeConfig.talents - .map(talentConfig => String(Number(proto[(talentConfig.fieldName as keyof TalentsProto)!]))) - .join('') - .replace(/0+$/g, ''); - }) - .join('-') - .replace(/-+$/g, ''); + return talentsConfig.talents + .reduce( + (acc, talent) => { + const value = proto[talent.fieldName as keyof TalentsProto]; + if (value) acc[talent.location.rowIdx] = talent.location.colIdx; + return acc; + }, + [...Array(6).fill(0)], + ) + .join(''); } diff --git a/ui/core/talents/glyphs_picker.tsx b/ui/core/talents/glyphs_picker.tsx index b9cb5d1ec7..5642976f04 100644 --- a/ui/core/talents/glyphs_picker.tsx +++ b/ui/core/talents/glyphs_picker.tsx @@ -19,7 +19,6 @@ export type GlyphConfig = { }; export type GlyphsConfig = { - primeGlyphs: Record; majorGlyphs: Record; minorGlyphs: Record; }; @@ -46,7 +45,6 @@ export class GlyphsPicker extends Component { private readonly glyphsConfig: GlyphsConfig; readonly selectorModal: GlyphSelectorModal; readonly player: Player; - primeGlyphPickers: Array = []; majorGlyphPickers: Array = []; minorGlyphPickers: Array = []; @@ -55,14 +53,9 @@ export class GlyphsPicker extends Component { this.glyphsConfig = glyphsConfig; this.player = player; - const primeGlyphs = Object.keys(glyphsConfig.primeGlyphs).map(idStr => Number(idStr)); const majorGlyphs = Object.keys(glyphsConfig.majorGlyphs).map(idStr => Number(idStr)); const minorGlyphs = Object.keys(glyphsConfig.minorGlyphs).map(idStr => Number(idStr)); - const primeGlyphsBlock = new ContentBlock(this.rootElem, 'prime-glyphs', { - header: { title: 'Prime Glyphs', extraCssClasses: ['border-0'] }, - }); - const majorGlyphsBlock = new ContentBlock(this.rootElem, 'major-glyphs', { header: { title: 'Major Glyphs', extraCssClasses: ['border-0'] }, }); @@ -73,25 +66,12 @@ export class GlyphsPicker extends Component { this.selectorModal = new GlyphSelectorModal(this.rootElem.closest('.individual-sim-ui')!); Database.get().then(db => { - const primeGlyphsData = primeGlyphs.map(glyph => this.getGlyphData(glyph, db)); const majorGlyphsData = majorGlyphs.map(glyph => this.getGlyphData(glyph, db)); const minorGlyphsData = minorGlyphs.map(glyph => this.getGlyphData(glyph, db)); - primeGlyphsData.sort((a, b) => stringComparator(a.name, b.name)); majorGlyphsData.sort((a, b) => stringComparator(a.name, b.name)); minorGlyphsData.sort((a, b) => stringComparator(a.name, b.name)); - this.primeGlyphPickers = (['prime1', 'prime2', 'prime3'] as Array).map( - glyphField => - new GlyphPicker(primeGlyphsBlock.bodyElement, { - label: 'Prime', - player, - selectorModal: this.selectorModal, - glyphOptions: primeGlyphsData, - glyphField, - }), - ); - this.majorGlyphPickers = (['major1', 'major2', 'major3'] as Array).map( glyphField => new GlyphPicker(majorGlyphsBlock.bodyElement, { @@ -119,7 +99,7 @@ export class GlyphsPicker extends Component { // In case we ever want to parse description from tooltip HTML. //static descriptionRegex = /(.*)<\/a>/g; getGlyphData(glyph: number, db: Database): GlyphData { - const glyphConfig = this.glyphsConfig.primeGlyphs[glyph] || this.glyphsConfig.majorGlyphs[glyph] || this.glyphsConfig.minorGlyphs[glyph]; + const glyphConfig = this.glyphsConfig.majorGlyphs[glyph] || this.glyphsConfig.minorGlyphs[glyph]; return { id: glyph, diff --git a/ui/core/talents/hunter.ts b/ui/core/talents/hunter.ts index aea076709a..f100bc25d7 100644 --- a/ui/core/talents/hunter.ts +++ b/ui/core/talents/hunter.ts @@ -1,170 +1,211 @@ -import { HunterMajorGlyph, HunterMinorGlyph, HunterPetTalents, HunterPrimeGlyph, HunterTalents } from '../proto/hunter.js'; +import { HunterMajorGlyph, HunterMinorGlyph, HunterTalents } from '../proto/hunter.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import HunterTalentJson from './trees/hunter.json'; - -export const hunterTalentsConfig: TalentsConfig = newTalentsConfig(HunterTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import HunterTalentJson from './trees/hunter.json';export const hunterTalentsConfig: TalentsConfig = newTalentsConfig(HunterTalentJson); export const hunterGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [HunterPrimeGlyph.GlyphOfAimedShot]: { - name: 'Glyph of Aimed Shot', - description: 'When you critically hit with Aimed Shot, you instantly gain 5 Focus.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_spear_07.jpg', - }, - [HunterPrimeGlyph.GlyphOfArcaneShot]: { - name: 'Glyph of Arcane Shot', - description: 'Your Arcane Shot deals 12% more damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_impalingbolt.jpg', - }, - [HunterPrimeGlyph.GlyphOfChimeraShot]: { - name: 'Glyph of Chimera Shot', - description: 'Reduces the cooldown of Chimera Shot by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_chimerashot2.jpg', - }, - [HunterPrimeGlyph.GlyphOfDazzledPrey]: { - name: 'Glyph of Dazzled Prey', - description: 'Your Steady Shot and Cobra Shot abilities generate an additional 2 Focus on targets afflicted by a daze effect.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_cheatdeath.jpg', - }, - [HunterPrimeGlyph.GlyphOfExplosiveShot]: { - name: 'Glyph of Explosive Shot', - description: 'Increases the critical strike chance of Explosive Shot by 6%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_explosiveshot.jpg', - }, - [HunterPrimeGlyph.GlyphOfKillCommand]: { - name: 'Glyph of Kill Command', - description: 'Reduces the Focus cost of your Kill Command by 3.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_killcommand.jpg', - }, - [HunterPrimeGlyph.GlyphOfKillShot]: { - name: 'Glyph of Kill Shot', - description: 'If the damage from your Kill Shot fails to kill a target at or below 20% health, your Kill Shot\'s cooldown is instantly reset. This effect has a 6 sec cooldown.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_assassinate2.jpg', - }, - [HunterPrimeGlyph.GlyphOfRapidFire]: { - name: 'Glyph of Rapid Fire', - description: 'Increases the haste from Rapid Fire by an additional 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_runningshot.jpg', - }, - [HunterPrimeGlyph.GlyphOfSerpentSting]: { - name: 'Glyph of Serpent Sting', - description: 'Increases the periodic critical strike chance of your Serpent Sting by 6%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_quickshot.jpg', - }, - [HunterPrimeGlyph.GlyphOfSteadyShot]: { - name: 'Glyph of Steady Shot', - description: 'Increases the damage dealt by Steady Shot by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_steadyshot.jpg', - }, - }, majorGlyphs: { - [HunterMajorGlyph.GlyphOfBestialWrath]: { - name: 'Glyph of Bestial Wrath', - description: 'Decreases the cooldown of Bestial Wrath by 20 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_ferociousbite.jpg', + [HunterMajorGlyph.GlyphOfCamouflage]: { + name: "Glyph of Camouflage", + description: "Your Camouflage ability now provides stealth even while moving, but your movement speed while Camouflage is active is reduced by $119450s3%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_displacement.jpg", + }, + [HunterMajorGlyph.GlyphOfLiberation]: { + name: "Glyph of Liberation", + description: "When you Disengage, you are healed for $115927s1% of your total health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_bg_returnxflags_def_wsg.jpg", + }, + [HunterMajorGlyph.GlyphOfMending]: { + name: "Glyph of Mending", + description: "Your Mend Pet now heals every $s3 sec, and heals for an additional $s4% of your pet\'s health over its duration.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_bandage_15.jpg", }, - [HunterMajorGlyph.GlyphOfConcussiveShot]: { - name: 'Glyph of Concussive Shot', - description: 'Your Concussive Shot also limits the maximum run speed of your target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_stun.jpg', + [HunterMajorGlyph.GlyphOfDistractingShot]: { + name: "Glyph of Distracting Shot", + description: "Your Distracting Shot now distracts the target to attack your pet instead of you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blink.jpg", + }, + [HunterMajorGlyph.GlyphOfEndlessWrath]: { + name: "Glyph of Endless Wrath", + description: "While Bestial Wrath is active, your pet cannot be killed, but can still be damaged.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_ferociousbite.jpg", }, [HunterMajorGlyph.GlyphOfDeterrence]: { - name: 'Glyph of Deterrence', - description: 'Decreases the cooldown of Deterrence by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_whirlwind.jpg', + name: "Glyph of Deterrence", + description: "Increases the damage reduction granted by Deterrence by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_whirlwind.jpg", }, [HunterMajorGlyph.GlyphOfDisengage]: { - name: 'Glyph of Disengage', - description: 'Decreases the cooldown of Disengage by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_feint.jpg', + name: "Glyph of Disengage", + description: "Increases the distance you travel when you Disengage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_feint.jpg", }, [HunterMajorGlyph.GlyphOfFreezingTrap]: { - name: 'Glyph of Freezing Trap', - description: 'When your Freezing Trap breaks, the victim\'s movement speed is reduced by 70% for 4 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_chainsofice.jpg', + name: "Glyph of Freezing Trap", + description: "When your Freezing Trap breaks, the victim\'s movement speed is reduced by $61394s1% for $61394d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_chainsofice.jpg", }, [HunterMajorGlyph.GlyphOfIceTrap]: { - name: 'Glyph of Ice Trap', - description: 'Increases the radius of the effect from your Ice Trap by 2 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostnova.jpg', - }, - [HunterMajorGlyph.GlyphOfImmolationTrap]: { - name: 'Glyph of Immolation Trap', - description: 'Decreases the duration of the effect from your Immolation Trap by 6 sec, but damage while active is increased by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_flameshock.jpg', - }, - [HunterMajorGlyph.GlyphOfMasterSCall]: { - name: 'Glyph of Master\'s Call', - description: 'Increases the duration of your Master\'s Call by 4 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_masterscall.jpg', - }, - [HunterMajorGlyph.GlyphOfMending]: { - name: 'Glyph of Mending', - description: 'Increases the total amount of healing done by your Mend Pet ability by 60%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_mendpet.jpg', + name: "Glyph of Ice Trap", + description: "Increases the radius of the effect from your Ice Trap by $56847s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_hunter_icetrap.jpg", }, [HunterMajorGlyph.GlyphOfMisdirection]: { - name: 'Glyph of Misdirection', - description: 'When you use Misdirection on your pet, the cooldown on your Misdirection is reset.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_misdirection.jpg', - }, - [HunterMajorGlyph.GlyphOfRaptorStrike]: { - name: 'Glyph of Raptor Strike', - description: 'Reduces damage taken by 20% for 5 sec after using Raptor Strike.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_meleedamage.jpg', - }, - [HunterMajorGlyph.GlyphOfScatterShot]: { - name: 'Glyph of Scatter Shot', - description: 'Increases the range of Scatter Shot by 3 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_golemstormbolt.jpg', - }, - [HunterMajorGlyph.GlyphOfSilencingShot]: { - name: 'Glyph of Silencing Shot', - description: 'When you successfully silence an enemy\'s spell cast with Silencing Shot, you instantly gain 10 Focus.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_theblackarrow.jpg', + name: "Glyph of Misdirection", + description: "When you use Misdirection on your pet, the cooldown on your Misdirection is reset.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_misdirection.jpg", + }, + [HunterMajorGlyph.GlyphOfExplosiveTrap]: { + name: "Glyph of Explosive Trap", + description: "Your Explosive Trap no longer deals damage, instead knocking enemies back from the trap when it explodes.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_selfdestruct.jpg", + }, + [HunterMajorGlyph.GlyphOfAnimalBond]: { + name: "Glyph of Animal Bond", + description: "While your pet is active, all healing done to you and your pet is increased by $24529s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_demoralizingroar.jpg", + }, + [HunterMajorGlyph.GlyphOfNoEscape]: { + name: "Glyph of No Escape", + description: "Increases the ranged critical strike chance of all of your attacks on targets affected by your Freezing Trap by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_pointofnoescape.jpg", + }, + [HunterMajorGlyph.GlyphOfPathfinding]: { + name: "Glyph of Pathfinding", + description: "Increases the speed bonus of your Aspect of the Cheetah and Aspect of the Pack by $s1%, and increases your speed while mounted by $s2%. The mounted movement speed increase does not stack with other effects.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_pathfinding2.jpg", }, [HunterMajorGlyph.GlyphOfSnakeTrap]: { - name: 'Glyph of Snake Trap', - description: 'Snakes from your Snake Trap take 90% reduced damage from area of effect spells.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_snaketrap.jpg', - }, - [HunterMajorGlyph.GlyphOfTrapLauncher]: { - name: 'Glyph of Trap Launcher', - description: 'Reduces the Focus cost of Trap Launcher by 10.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_traplauncher.jpg', + name: "Glyph of Snake Trap", + description: "Snakes from your Snake Trap take $56849s1% reduced damage from area of effect attacks.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_snaketrap.jpg", + }, + [HunterMajorGlyph.GlyphOfAimedShot]: { + name: "Glyph of Aimed Shot", + description: "Your Aimed Shot can now be used while moving.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_spear_07.jpg", + }, + [HunterMajorGlyph.GlyphOfMendPet]: { + name: "Glyph of Mend Pet", + description: "Gives your Mend Pet ability a $s1% chance of cleansing $24406s1 Curse, Disease, Magic or Poison effect from your pet each tick.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_mendpet.jpg", + }, + [HunterMajorGlyph.GlyphOfSolace]: { + name: "Glyph of Solace", + description: "Your Freezing Trap and Scatter Shot also remove all damage over time effects from their targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostshock.jpg", + }, + [HunterMajorGlyph.GlyphOfChimeraShot]: { + name: "Glyph of Chimera Shot", + description: "Increases the healing you receive from Chimera Shot by an additional $s1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_chimerashot2.jpg", + }, + [HunterMajorGlyph.GlyphOfTranquilizingShot]: { + name: "Glyph of Tranquilizing Shot", + description: "Your Tranquilizing Shot no longer costs Focus, but has a ${$m1/1000} sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_drowsy.jpg", + }, + [HunterMajorGlyph.GlyphOfMastersCall]: { + name: "Glyph of Master's Call", + description: "Increases the duration of your Master\'s Call by $/1000;S1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_masterscall.jpg", }, - [HunterMajorGlyph.GlyphOfWyvernSting]: { - name: 'Glyph of Wyvern Sting', - description: 'Decreases the cooldown of your Wyvern Sting by 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_spear_02.jpg', + [HunterMajorGlyph.GlyphOfScatterShot]: { + name: "Glyph of Scatter Shot", + description: "Increases the range of Scatter Shot by $63069s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_golemstormbolt.jpg", + }, + [HunterMajorGlyph.GlyphOfMirroredBlades]: { + name: "Glyph of Mirrored Blades", + description: "When attacked by a spell while in Deterrence, you have a $s1% chance to reflect it back at the attacker.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_weapon_shortblade_99.jpg", + }, + [HunterMajorGlyph.GlyphOfBlackIce]: { + name: "Glyph of Black Ice", + description: "While you move through the area affected by your Ice Trap you gain $83559s1% movement speed.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_hunter_blackicetrap.jpg", + }, + [HunterMajorGlyph.GlyphOfTheLeanPack]: { + name: "Glyph of the Lean Pack", + description: "Reduces the radius of Aspect of the Pack by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectmastery.jpg", + }, + [HunterMajorGlyph.GlyphOfEnduringDeceit]: { + name: "Glyph of Enduring Deceit", + description: "Camouflage also reduces spell damage taken by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_camouflage.jpg", }, }, minorGlyphs: { - [HunterMinorGlyph.GlyphOfAspectOfThePack]: { - name: 'Glyph of Aspect of the Pack', - description: 'Increases the range of your Aspect of the Pack ability by 15 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mount_whitetiger.jpg', + [HunterMinorGlyph.GlyphOfAspects]: { + name: "Glyph of Aspects", + description: "Each time you activate a new Aspect, an animal companion representing that Aspect will follow you for $122489d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectmastery.jpg", + }, + [HunterMinorGlyph.GlyphOfTameBeast]: { + name: "Glyph of Tame Beast", + description: "Reduces the time required to complete Tame Beast by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_beasttaming.jpg", }, - [HunterMinorGlyph.GlyphOfFeignDeath]: { - name: 'Glyph of Feign Death', - description: 'Reduces the cooldown of your Feign Death spell by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_feigndeath.jpg', + [HunterMinorGlyph.GlyphOfRevivePet]: { + name: "Glyph of Revive Pet", + description: "Reduces the pushback suffered from damaging attacks while casting Revive Pet by $57866s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_beastsoothe.jpg", }, [HunterMinorGlyph.GlyphOfLesserProportion]: { - name: 'Glyph of Lesser Proportion', - description: 'Slightly reduces the size of your pet.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_bestialdiscipline.jpg', + name: "Glyph of Lesser Proportion", + description: "Slightly reduces the size of your pet.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_bestialdiscipline.jpg", }, - [HunterMinorGlyph.GlyphOfRevivePet]: { - name: 'Glyph of Revive Pet', - description: 'Reduces the pushback suffered from damaging attacks while casting Revive Pet by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_beastsoothe.jpg', + [HunterMinorGlyph.GlyphOfFireworks]: { + name: "Glyph of Fireworks", + description: "Teaches you the ability Fireworks.\u000D\u000A\u000D\u000ALaunch fireworks from your gun, bow or crossbow.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_missilelargecluster_red.jpg", }, - [HunterMinorGlyph.GlyphOfScareBeast]: { - name: 'Glyph of Scare Beast', - description: 'Reduces the pushback suffered from damaging attacks while casting Scare Beast by 75%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_druid_cower.jpg', + [HunterMinorGlyph.GlyphOfAspectOfThePack]: { + name: "Glyph of Aspect of the Pack", + description: "Increases the range of your Aspect of the Pack ability by $57904s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mount_whitetiger.jpg", + }, + [HunterMinorGlyph.GlyphOfStampedeHunter]: { + name: "Glyph of Stampede", + description: "Your Stampede no longer summons pets from your stable, and instead uses copies of your current pet.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_bestialdiscipline.jpg", + }, + [HunterMinorGlyph.GlyphOfAspectOfTheCheetah]: { + name: "Glyph of Aspect of the Cheetah", + description: "Your Aspect of the Cheetah no longer causes you to be dazed when struck. Instead, the effect is cancelled and all your Aspects are placed on a $m1 sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mount_jungletiger.jpg", + }, + [HunterMinorGlyph.GlyphOfAspectOfTheBeast]: { + name: "Glyph of Aspect of the Beast", + description: "Teaches you the ability Aspect of the Beast.\u000D\u000A\u000D\u000AThe Hunter takes on the aspects of a beast, becoming untrackable. Only one Aspect can be active at a time.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mount_pinktiger.jpg", + }, + [HunterMinorGlyph.GlyphOfDirection]: { + name: "Glyph of Direction", + description: "Causes your Misdirection target to appear larger.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_markedfordeath.jpg", + }, + [HunterMinorGlyph.GlyphOfMarking]: { + name: "Glyph of Marking", + description: "Your Hunter\'s Mark ability now places a bullseye on your target instead of its usual visual.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_mastermarksman.jpg", + }, + [HunterMinorGlyph.GlyphOfFetch]: { + name: "Glyph of Fetch", + description: "Teaches you the ability Fetch.\u000D\u000A\u000D\u000ACommand your pet to retrieve the loot from a nearby corpse within $125050A1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_bone_01.jpg", + }, + [HunterMinorGlyph.GlyphOfFocusedFire]: { + name: "Glyph of Focused Fire", + description: "Focus Fire charges apply a visual to you for each charge active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectmastery.jpg", + }, + [HunterMinorGlyph.GlyphOfChameleon]: { + name: "Glyph of Chameleon", + description: "Focus Fire charges apply a visual to you for each charge active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectmastery.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/hunter_pet.tsx b/ui/core/talents/hunter_pet.tsx deleted file mode 100644 index abb85fa7c0..0000000000 --- a/ui/core/talents/hunter_pet.tsx +++ /dev/null @@ -1,332 +0,0 @@ -import { Component } from '../components/component.js'; -import * as InputHelpers from '../components/input_helpers.js'; -import { IconEnumPicker } from '../components/pickers/icon_enum_picker.jsx'; -import { SavedDataManager } from '../components/saved_data_manager.js'; -import { Player } from '../player.js'; -import { BeastMasteryHunter } from '../player_specs/hunter'; -import { Spec } from '../proto/common'; -import { HunterOptions_PetType as PetType, HunterPetTalents } from '../proto/hunter.js'; -import { ActionId } from '../proto_utils/action_id.js'; -import { getTalentTree, getTalentTreePoints, HunterSpecs } from '../proto_utils/utils.js'; -import { SimUI } from '../sim_ui.js'; -import { EventID, TypedEvent } from '../typed_event.js'; -import { protoToTalentString, talentStringToProto } from './factory.js'; -import { newTalentsConfig, TalentsConfig, TalentsPicker } from './talents_picker.jsx'; -import HunterPetCunningJson from './trees/hunter_cunning.json'; -import HunterPetFerocityJson from './trees/hunter_ferocity.json'; -import HunterPetTenacityJson from './trees/hunter_tenacity.json'; - -export function makePetTypeInputConfig(): InputHelpers.TypedIconEnumPickerConfig, PetType> { - return InputHelpers.makeClassOptionsEnumIconInput({ - extraCssClasses: ['pet-type-picker'], - fieldName: 'petType', - numColumns: 5, - values: [ - { value: PetType.PetNone, tooltip: 'No Pet' }, - { actionId: ActionId.fromPetName('Bat'), tooltip: 'Bat', value: PetType.Bat }, - { actionId: ActionId.fromPetName('Bear'), tooltip: 'Bear', value: PetType.Bear }, - { actionId: ActionId.fromPetName('Bird of Prey'), tooltip: 'Bird of Prey', value: PetType.BirdOfPrey }, - { actionId: ActionId.fromPetName('Boar'), tooltip: 'Boar', value: PetType.Boar }, - { actionId: ActionId.fromPetName('Carrion Bird'), tooltip: 'Carrion Bird', value: PetType.CarrionBird }, - { actionId: ActionId.fromPetName('Cat'), tooltip: 'Cat', value: PetType.Cat }, - { actionId: ActionId.fromPetName('Chimaera'), tooltip: 'Chimaera (Exotic)', value: PetType.Chimaera }, - { actionId: ActionId.fromPetName('Core Hound'), tooltip: 'Core Hound (Exotic)', value: PetType.CoreHound }, - { actionId: ActionId.fromPetName('Crab'), tooltip: 'Crab', value: PetType.Crab }, - { actionId: ActionId.fromPetName('Crocolisk'), tooltip: 'Crocolisk', value: PetType.Crocolisk }, - { actionId: ActionId.fromPetName('Devilsaur'), tooltip: 'Devilsaur (Exotic)', value: PetType.Devilsaur }, - { actionId: ActionId.fromPetName('Dragonhawk'), tooltip: 'Dragonhawk', value: PetType.Dragonhawk }, - { actionId: ActionId.fromPetName('Gorilla'), tooltip: 'Gorilla', value: PetType.Gorilla }, - { actionId: ActionId.fromPetName('Hyena'), tooltip: 'Hyena', value: PetType.Hyena }, - { actionId: ActionId.fromPetName('Moth'), tooltip: 'Moth', value: PetType.Moth }, - { actionId: ActionId.fromPetName('Nether Ray'), tooltip: 'Nether Ray', value: PetType.NetherRay }, - { actionId: ActionId.fromPetName('Raptor'), tooltip: 'Raptor', value: PetType.Raptor }, - { actionId: ActionId.fromPetName('Ravager'), tooltip: 'Ravager', value: PetType.Ravager }, - { actionId: ActionId.fromPetName('Rhino'), tooltip: 'Rhino', value: PetType.Rhino }, - { actionId: ActionId.fromPetName('Scorpid'), tooltip: 'Scorpid', value: PetType.Scorpid }, - { actionId: ActionId.fromPetName('Serpent'), tooltip: 'Serpent', value: PetType.Serpent }, - { actionId: ActionId.fromPetName('Silithid'), tooltip: 'Silithid (Exotic)', value: PetType.Silithid }, - { actionId: ActionId.fromPetName('Spider'), tooltip: 'Spider', value: PetType.Spider }, - { actionId: ActionId.fromPetName('Spirit Beast'), tooltip: 'Spirit Beast (Exotic)', value: PetType.SpiritBeast }, - { actionId: ActionId.fromPetName('Spore Bat'), tooltip: 'Spore Bat', value: PetType.SporeBat }, - { actionId: ActionId.fromPetName('Tallstrider'), tooltip: 'Tallstrider', value: PetType.Tallstrider }, - { actionId: ActionId.fromPetName('Turtle'), tooltip: 'Turtle', value: PetType.Turtle }, - { actionId: ActionId.fromPetName('Warp Stalker'), tooltip: 'Warp Stalker', value: PetType.WarpStalker }, - { actionId: ActionId.fromPetName('Wasp'), tooltip: 'Wasp', value: PetType.Wasp }, - { actionId: ActionId.fromPetName('Wind Serpent'), tooltip: 'Wind Serpent', value: PetType.WindSerpent }, - { actionId: ActionId.fromPetName('Wolf'), tooltip: 'Wolf', value: PetType.Wolf }, - { actionId: ActionId.fromPetName('Worm'), tooltip: 'Worm (Exotic)', value: PetType.Worm }, - { actionId: ActionId.fromPetName('Fox'), tooltip: 'Fox', value: PetType.Fox }, - { actionId: ActionId.fromPetName('Shale Spider'), tooltip: 'Shale Spider (Exotic)', value: PetType.ShaleSpider }, - ], - }); -} - -enum PetCategory { - Cunning, - Ferocity, - Tenacity, -} - -const petCategories: Record = { - [PetType.PetNone]: PetCategory.Ferocity, - [PetType.Bat]: PetCategory.Cunning, - [PetType.Bear]: PetCategory.Tenacity, - [PetType.BirdOfPrey]: PetCategory.Cunning, - [PetType.Boar]: PetCategory.Tenacity, - [PetType.CarrionBird]: PetCategory.Ferocity, - [PetType.Cat]: PetCategory.Ferocity, - [PetType.Chimaera]: PetCategory.Cunning, - [PetType.CoreHound]: PetCategory.Ferocity, - [PetType.Crab]: PetCategory.Tenacity, - [PetType.Crocolisk]: PetCategory.Tenacity, - [PetType.Devilsaur]: PetCategory.Ferocity, - [PetType.Dragonhawk]: PetCategory.Cunning, - [PetType.Gorilla]: PetCategory.Tenacity, - [PetType.Hyena]: PetCategory.Ferocity, - [PetType.Moth]: PetCategory.Ferocity, - [PetType.NetherRay]: PetCategory.Cunning, - [PetType.Raptor]: PetCategory.Ferocity, - [PetType.Ravager]: PetCategory.Cunning, - [PetType.Rhino]: PetCategory.Tenacity, - [PetType.Scorpid]: PetCategory.Tenacity, - [PetType.Serpent]: PetCategory.Cunning, - [PetType.Silithid]: PetCategory.Cunning, - [PetType.Spider]: PetCategory.Cunning, - [PetType.SpiritBeast]: PetCategory.Ferocity, - [PetType.SporeBat]: PetCategory.Cunning, - [PetType.Tallstrider]: PetCategory.Ferocity, - [PetType.Turtle]: PetCategory.Tenacity, - [PetType.WarpStalker]: PetCategory.Tenacity, - [PetType.Wasp]: PetCategory.Ferocity, - [PetType.WindSerpent]: PetCategory.Cunning, - [PetType.Wolf]: PetCategory.Ferocity, - [PetType.Worm]: PetCategory.Tenacity, - [PetType.ShaleSpider]: PetCategory.Tenacity, - [PetType.Fox]: PetCategory.Ferocity, -}; - -const categoryOrder = [PetCategory.Cunning, PetCategory.Ferocity, PetCategory.Tenacity]; -const categoryClasses = ['cunning', 'ferocity', 'tenacity']; - -export function getPetTalentsConfig(petType: PetType): TalentsConfig { - const petCategory = petCategories[petType]; - const categoryIdx = categoryOrder.indexOf(petCategory); - return petTalentsConfig[categoryIdx]; -} - -export const cunningDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - dive: true, - owlsFocus: 2, - spikedCollar: 3, - cullingTheHerd: 3, - feedingFrenzy: 2, - roarOfRecovery: true, - wolverineBite: true, - wildHunt: 2, -}); -export const ferocityDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - dash: true, - spikedCollar: 3, - boarsSpeed: true, - cullingTheHerd: 3, - spidersBite: 3, - rabid: true, - callOfTheWild: true, - wildHunt: 2, -}); -export const tenacityDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - charge: true, - spikedCollar: 3, - boarsSpeed: true, - cullingTheHerd: 3, - thunderstomp: true, - graceOfTheMantis: 2, - roarOfSacrifice: true, - intervene: true, - wildHunt: 2, -}); -const defaultTalents = [cunningDefault, ferocityDefault, tenacityDefault]; - -export const cunningBMDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - spikedCollar: 3, - boarsSpeed: true, - cullingTheHerd: 3, - wildHunt: 2, - dive: true, - owlsFocus: 2, - cornered: 2, - feedingFrenzy: 2, - wolverineBite: true, - roarOfRecovery: true, - bullheaded: true, -}); -export const ferocityBMDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - dash: true, - bloodthirsty: 2, - spikedCollar: 3, - cullingTheHerd: 3, - charge: true, - spidersBite: 3, - rabid: true, - callOfTheWild: true, - sharkAttack: 2, - wildHunt: 2, -}); -export const tenacityBMDefault: HunterPetTalents = HunterPetTalents.create({ - serpentSwiftness: 2, - spikedCollar: 3, - boarsSpeed: true, - cullingTheHerd: 3, - charge: true, - greatResistance: 3, - wildHunt: 2, - thunderstomp: true, - graceOfTheMantis: 2, - lastStand: true, - roarOfSacrifice: true, - intervene: true, -}); -const defaultBMTalents = [cunningBMDefault, ferocityBMDefault, tenacityBMDefault]; - -export const cunningPetTalentsConfig: TalentsConfig = newTalentsConfig(HunterPetCunningJson); -export const ferocityPetTalentsConfig: TalentsConfig = newTalentsConfig(HunterPetFerocityJson); -export const tenacityPetTalentsConfig: TalentsConfig = newTalentsConfig(HunterPetTenacityJson); - -export const petTalentsConfig = [cunningPetTalentsConfig, ferocityPetTalentsConfig, tenacityPetTalentsConfig]; - -export class HunterPet { - readonly player: Player; - - private talents: HunterPetTalents; - private talentsConfig: TalentsConfig; - private talentsString: string; - - readonly talentsChangeEmitter: TypedEvent; - - constructor(player: Player) { - this.player = player; - this.talents = player.getClassOptions().petTalents ?? HunterPetTalents.create(); - this.talentsConfig = getPetTalentsConfig(player.getClassOptions().petType); - this.talentsString = protoToTalentString(this.talents, this.talentsConfig); - this.talentsChangeEmitter = this.player.specOptionsChangeEmitter; - } - - getTalents(): HunterPetTalents { - return this.talents; - } - - getTalentsString(): string { - return protoToTalentString(this.talents, this.talentsConfig); - } - - setTalentsString(eventID: EventID, newTalentsString: string) { - if (newTalentsString == this.talentsString) return; - - const options = this.player.getClassOptions(); - options.petTalents = talentStringToProto(HunterPetTalents.create(), newTalentsString, this.talentsConfig); - - this.talents = options.petTalents; - this.talentsString = newTalentsString; - this.player.setClassOptions(eventID, options); - } - - getTalentTree(): number { - return getTalentTree(this.getTalentsString()); - } - - getTalentTreePoints(): Array { - return getTalentTreePoints(this.getTalentsString()); - } -} - -export class HunterPetTalentsPicker extends Component { - private readonly simUI: SimUI; - private readonly player: Player; - private curCategory: PetCategory; - private curTalents: HunterPetTalents; - private savedSets: Array; - private defaultSets: Array; - private talentsContainer: HTMLDivElement; - - constructor(parent: HTMLElement, simUI: SimUI, player: Player) { - super(parent, 'hunter-pet-talents-picker'); - this.simUI = simUI; - this.player = player; - this.curCategory = this.getCategoryFromPlayer(); - this.curTalents = this.getPetTalentsFromPlayer(); - this.defaultSets = defaultTalents.slice(); - this.savedSets = []; - - this.talentsContainer = document.createElement('div'); - this.talentsContainer.className = 'pet-talents-container'; - this.rootElem.appendChild(this.talentsContainer); - this.rootElem.classList.add(categoryClasses[this.curCategory]); - - this.initializeTalentsPicker(); - - simUI.sim.waitForInit().then(() => this.initializeTalentsPicker()); - - new IconEnumPicker(this.rootElem, this.player, makePetTypeInputConfig()); - - player.specOptionsChangeEmitter.on(() => { - const newCategory = this.getCategoryFromPlayer(); - if (newCategory !== this.curCategory) { - // Revert to the talents from last time the user was editing this category or default if not previously saved - const options = this.player.getClassOptions(); - options.petTalents = this.savedSets[newCategory] || this.defaultSets[newCategory]; - this.player.setClassOptions(TypedEvent.nextEventID(), options); - this.curTalents = options.petTalents; - - this.switchCategory(newCategory); - } - }); - } - - initializeTalentsPicker() { - this.talentsContainer.innerHTML = ''; // Clear existing contents - if (this.curCategory !== null) { - const pet = new HunterPet(this.player); - const talentsConfig = petTalentsConfig[this.curCategory]; - new TalentsPicker(this.talentsContainer, pet, { - playerClass: this.player.getClass(), - trees: talentsConfig, - changedEvent: (pet: HunterPet) => pet.player.specOptionsChangeEmitter, - getValue: (pet: HunterPet) => pet.getTalentsString(), - setValue: (eventID: EventID, pet: HunterPet, newValue: string) => { - pet.setTalentsString(eventID, newValue); - this.savedSets[this.curCategory] = pet.getTalents(); - this.curTalents = pet.getTalents(); - }, - pointsPerRow: 3, - }); - } - } - - switchCategory(newCategory: PetCategory) { - this.curCategory = newCategory; - this.rootElem.classList.remove(...categoryClasses); - this.rootElem.classList.add(categoryClasses[categoryOrder.indexOf(newCategory)]); - this.talentsContainer.innerHTML = ''; // Clear existing contents - this.initializeTalentsPicker(); // Initialize new picker - } - getDefaultTalentsFromSpec(): Array { - if (this.player.isSpec(Spec.SpecBeastMasteryHunter)) { - return defaultBMTalents; - } else { - return defaultTalents; - } - } - getPetTalentsFromPlayer(): HunterPetTalents { - return this.player.getClassOptions().petTalents || HunterPetTalents.create(); - } - - getCategoryFromPlayer(): PetCategory { - const petType = this.player.getClassOptions().petType; - return petCategories[petType]; - } -} diff --git a/ui/core/talents/mage.ts b/ui/core/talents/mage.ts index 0861b88ee7..23ddb16151 100644 --- a/ui/core/talents/mage.ts +++ b/ui/core/talents/mage.ts @@ -1,185 +1,201 @@ -import {MageMajorGlyph, MageMinorGlyph,MagePrimeGlyph, MageTalents } from '../proto/mage.js'; +import { MageMajorGlyph, MageMinorGlyph, MageTalents } from '../proto/mage.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import MageTalentJson from './trees/mage.json'; - -export const mageTalentsConfig: TalentsConfig = newTalentsConfig(MageTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import MageTalentJson from './trees/mage.json';export const mageTalentsConfig: TalentsConfig = newTalentsConfig(MageTalentJson); export const mageGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [MagePrimeGlyph.GlyphOfArcaneBarrage]: { - name: 'Glyph of Arcane Barrage', - description: 'Increases the damage of your Arcane Barrage spell by 4%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_arcanebarrage.jpg', - }, - [MagePrimeGlyph.GlyphOfArcaneBlast]: { - name: 'Glyph of Arcane Blast', - description: 'Increases the damage from your Arcane Blast buff by 3%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blast.jpg', - }, - [MagePrimeGlyph.GlyphOfArcaneMissiles]: { - name: 'Glyph of Arcane Missiles', - description: 'Increases the critical strike chance of your Arcane Missiles spell by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_starfall.jpg', - }, - [MagePrimeGlyph.GlyphOfConeOfCold]: { - name: 'Glyph of Cone of Cold', - description: 'Increases the damage of your Cone of Cold spell by 25%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_glacier.jpg', - }, - [MagePrimeGlyph.GlyphOfDeepFreeze]: { - name: 'Glyph of Deep Freeze', - description: 'Your Deep Freeze deals 20% additional damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_deepfreeze.jpg', - }, - [MagePrimeGlyph.GlyphOfFireball]: { - name: 'Glyph of Fireball', - description: 'Increases the critical strike chance of your Fireball spell by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_flamebolt.jpg', - }, - [MagePrimeGlyph.GlyphOfFrostbolt]: { - name: 'Glyph of Frostbolt', - description: 'Increases the critical strike chance of your Frostbolt spell by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostbolt02.jpg', - }, - [MagePrimeGlyph.GlyphOfFrostfire]: { - name: 'Glyph of Frostfire', - description: 'Increases the damage done by your Frostfire Bolt by 15% and your Frostfire Bolt now deals 3% additional damage over 12 sec, stacking up to 3 times, but no longer reduces the victim\'s movement speed.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_frostfirebolt.jpg', - }, - [MagePrimeGlyph.GlyphOfIceLance]: { - name: 'Glyph of Ice Lance', - description: 'Increases the damage of your Ice Lance spell by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostblast.jpg', - }, - [MagePrimeGlyph.GlyphOfLivingBomb]: { - name: 'Glyph of Living Bomb', - description: 'Increases the damage of your Living Bomb spell by 3%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_livingbomb.jpg', - }, - [MagePrimeGlyph.GlyphOfMageArmor]: { - name: 'Glyph of Mage Armor', - description: 'Your Mage Armor regenerates 20% more mana.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_magearmor.jpg', - }, - [MagePrimeGlyph.GlyphOfMoltenArmor]: { - name: 'Glyph of Molten Armor', - description: 'Your Molten Armor grants an additional 2% spell critical strike chance.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_moltenarmor.jpg', - }, - [MagePrimeGlyph.GlyphOfPyroblast]: { - name: 'Glyph of Pyroblast', - description: 'Increases the critical strike chance of your Pyroblast spell by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_fireball02.jpg', - }, - }, majorGlyphs: { - [MageMajorGlyph.GlyphOfArcanePower]: { - name: 'Glyph of Arcane Power', - description: 'While Arcane Power is active the global cooldown of your Blink, Mana Shield, and Mirror Image is reduced to zero.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg', - }, - [MageMajorGlyph.GlyphOfBlastWave]: { - name: 'Glyph of Blast Wave', - description: 'Increases the duration of Blast Wave\'s slowing effect by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism_02.jpg', + [MageMajorGlyph.GlyphOfArcaneExplosion]: { + name: "Glyph of Arcane Explosion", + description: "Increases the radius of your Arcane Explosion by $s2 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_wispsplode.jpg", }, [MageMajorGlyph.GlyphOfBlink]: { - name: 'Glyph of Blink', - description: 'Increases the distance you travel with the Blink spell by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blink.jpg', - }, - [MageMajorGlyph.GlyphOfDragonSBreath]: { - name: 'Glyph of Dragon\'s Breath', - description: 'Reduces the cooldown of your Dragon\'s Breath by 3 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_head_dragon_01.jpg', + name: "Glyph of Blink", + description: "Increases the distance you travel with the Blink spell by $56365s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blink.jpg", }, [MageMajorGlyph.GlyphOfEvocation]: { - name: 'Glyph of Evocation', - description: 'Your Evocation ability also causes you to regain 40% of your health over its duration.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_purge.jpg', + name: "Glyph of Evocation", + description: "Your Evocation ability also causes you to regain ${$56380m1*4}% of your health over its duration. \u000D\u000A\u000D\u000AWith the Invocation talent, you instead gain $125440m1% of your health upon completing an Evocation.\u000D\u000A\u000D\u000AWith the Rune of Power talent, you gain $56380m2% of your health per second while standing in your own Rune of Power.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_purge.jpg", }, - [MageMajorGlyph.GlyphOfFrostArmor]: { - name: 'Glyph of Frost Armor', - description: 'Your Frost Armor also causes you to regenerate 2% of your maximum mana every 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostarmor02.jpg', + [MageMajorGlyph.GlyphOfCombustion]: { + name: "Glyph of Combustion", + description: "Increases the direct damage, the duration of the damage over time effect and the cooldown of Combustion by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_sealoffire.jpg", }, [MageMajorGlyph.GlyphOfFrostNova]: { - name: 'Glyph of Frost Nova', - description: 'Your Frost Nova targets can take an additional 20% damage before the Frost Nova effect automatically breaks.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostnova.jpg', - }, - [MageMajorGlyph.GlyphOfIceBarrier]: { - name: 'Glyph of Ice Barrier', - description: 'Increases the amount of damage absorbed by your Ice Barrier by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_ice_lament.jpg', + name: "Glyph of Frost Nova", + description: "Reduces the cooldown of Frost Nova by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostnova.jpg", }, [MageMajorGlyph.GlyphOfIceBlock]: { - name: 'Glyph of Ice Block', - description: 'Your Frost Nova cooldown is now reset every time you use Ice Block.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frost.jpg', + name: "Glyph of Ice Block", + description: "When Ice Block terminates, it triggers an instant free Frost Nova and makes you immune to all spells for $115760d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frost.jpg", + }, + [MageMajorGlyph.GlyphOfSplittingIce]: { + name: "Glyph of Splitting Ice", + description: "Your Ice Lance and Icicles now hit $s1 additional target for $s2% damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostblast.jpg", + }, + [MageMajorGlyph.GlyphOfConeOfCold]: { + name: "Glyph of Cone of Cold", + description: "Increases the damage done by Cone of Cold by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_glacier.jpg", + }, + [MageMajorGlyph.GlyphOfRapidDisplacement]: { + name: "Glyph of Rapid Displacement", + description: "Blink now has 2 charges, gaining a charge every 15 sec, but no longer frees the caster from stuns and bonds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blink.jpg", + }, + [MageMajorGlyph.GlyphOfManaGem]: { + name: "Glyph of Mana Gem", + description: "Your Conjure Mana Gem spell now creates a Brilliant Mana Gem, which holds up to $s2 charges.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_jewelcrafting_gem_05.jpg", + }, + [MageMajorGlyph.GlyphOfPolymorph]: { + name: "Glyph of Polymorph", + description: "Your Polymorph spell also removes all damage over time effects from the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_polymorph.jpg", }, [MageMajorGlyph.GlyphOfIcyVeins]: { - name: 'Glyph of Icy Veins', - description: 'Your Icy Veins ability also removes all movement slowing and cast time slowing effects.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_coldhearted.jpg', + name: "Glyph of Icy Veins", + description: "Your Icy Veins causes your Frostbolt, Frostfire Bolt, Ice Lance, and your Water Elemental\'s Waterbolt spells to split into 3 smaller bolts that each do ${100+$131078m1}% damage, instead of increasing spell casting speed.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_coldhearted.jpg", }, - [MageMajorGlyph.GlyphOfInvisibility]: { - name: 'Glyph of Invisibility', - description: 'Increases your movement speed while Invisible by 40%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_invisibility.jpg', + [MageMajorGlyph.GlyphOfSpellsteal]: { + name: "Glyph of Spellsteal", + description: "Spellsteal now also heals you for $115714s1% of your maximum health when it successfully steals a spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_arcane02.jpg", }, - [MageMajorGlyph.GlyphOfManaShield]: { - name: 'Glyph of Mana Shield', - description: 'Reduces the cooldown of your Mana Shield by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_detectlesserinvisibility.jpg', + [MageMajorGlyph.GlyphOfFrostfireBolt]: { + name: "Glyph of Frostfire Bolt", + description: "Reduces the cast time of Frostfire Bolt by ${$m1/-1000}.1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mage_frostfirebolt.jpg", }, - [MageMajorGlyph.GlyphOfPolymorph]: { - name: 'Glyph of Polymorph', - description: 'Your Polymorph spell also removes all damage over time effects from the target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_polymorph.jpg', + [MageMajorGlyph.GlyphOfRemoveCurse]: { + name: "Glyph of Remove Curse", + description: "Increases the damage you deal by $115701s1% for $115701d after you successfully remove a curse.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_removecurse.jpg", + }, + [MageMajorGlyph.GlyphOfArcanePower]: { + name: "Glyph of Arcane Power", + description: "Increases the duration and cooldown of Arcane Power by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg", + }, + [MageMajorGlyph.GlyphOfWaterElemental]: { + name: "Glyph of Water Elemental", + description: "Increases the health of your Water Elemental by $s1%, and allows it to cast while moving. When in Assist mode and in combat, commanding your Water Elemental to Follow will cause it to stay near you and autocast Waterbolt when your target is in range.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_summonwaterelemental_2.jpg", }, [MageMajorGlyph.GlyphOfSlow]: { - name: 'Glyph of Slow', - description: 'Increases the range of your Slow spell by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_slow.jpg', + name: "Glyph of Slow", + description: "Your Arcane Blast spell applies the Slow spell to any target it damages if no target is currently affected by your Slow.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_slow.jpg", + }, + [MageMajorGlyph.GlyphOfDeepFreeze]: { + name: "Glyph of Deep Freeze", + description: "Your Deep Freeze spell is no longer on the global cooldown, but its duration is reduced by ${$m2/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mage_deepfreeze.jpg", + }, + [MageMajorGlyph.GlyphOfCounterspell]: { + name: "Glyph of Counterspell", + description: "Your Counterspell can now be cast while casting or channeling other spells, but its cooldown is increased by $s2 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_iceshock.jpg", + }, + [MageMajorGlyph.GlyphOfInfernoBlast]: { + name: "Glyph of Inferno Blast", + description: "Your Inferno Blast spell spreads Pyroblast, Ignite, and Combustion to $s1 additional target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_mage_infernoblast.jpg", + }, + [MageMajorGlyph.GlyphOfArmors]: { + name: "Glyph of Armors", + description: "Reduces the cast time of your Frost Armor, Mage Armor, and Molten Armor spells by ${$m1/-1000}.1 sec, and increases the defensive effect of each Armor by an additional $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostarmor02.jpg", }, }, minorGlyphs: { - [MageMinorGlyph.GlyphOfArcaneBrilliance]: { - name: 'Glyph of Arcane Brilliance', - description: 'Reduces the mana cost of your Arcane Brilliance spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_magicalsentry.jpg', + [MageMinorGlyph.GlyphOfLooseMana]: { + name: "Glyph of Loose Mana", + description: "Your Mana Gem now restores mana over ${$m1/1000} sec, rather than instantly.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_gem_sapphire_02.jpg", + }, + [MageMinorGlyph.GlyphOfMomentum]: { + name: "Glyph of Momentum", + description: "Your Blink spell teleports you in the direction you are moving instead of the direction you are facing.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_blink.jpg", + }, + [MageMinorGlyph.GlyphOfCrittermorph]: { + name: "Glyph of Crittermorph", + description: "When cast on critters, your Polymorph spells now last $120091d and can be cast on multiple targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_doublepolymorph2.jpg", + }, + [MageMinorGlyph.GlyphOfThePorcupine]: { + name: "Glyph of the Porcupine", + description: "Your Polymorph spell polymorphs the target into a porcupine instead.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_magic_polymorphpig.jpg", + }, + [MageMinorGlyph.GlyphOfConjureFamiliar]: { + name: "Glyph of Conjure Familiar", + description: "Teaches you the ability Conjure Familiar.\u000D\u000A\u000D\u000A$@spelldesc126578", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_elementalabsorption.jpg", }, - [MageMinorGlyph.GlyphOfArmors]: { - name: 'Glyph of Armors', - description: 'Increases the duration of your Armor spells by 30 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_chillingarmor.jpg', + [MageMinorGlyph.GlyphOfTheMonkey]: { + name: "Glyph of the Monkey", + description: "Your Polymorph spell polymorphs the target into a monkey instead.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectofthemonkey.jpg", }, - [MageMinorGlyph.GlyphOfConjuring]: { - name: 'Glyph of Conjuring', - description: 'Reduces the mana cost of your Conjuring spells by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_conjurefoodrank9.jpg', + [MageMinorGlyph.GlyphOfThePenguin]: { + name: "Glyph of the Penguin", + description: "Your Polymorph spell polymorphs the target into a penguin instead.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_penguinpet.jpg", }, - [MageMinorGlyph.GlyphOfMirrorImage]: { - name: 'Glyph of Mirror Image', - description: 'Your Mirror Images cast Arcane Blast or Fireball instead of Frostbolt depending on your primary talent tree.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_magic_lesserinvisibilty.jpg', + [MageMinorGlyph.GlyphOfTheBearCub]: { + name: "Glyph of the Bear Cub", + description: "Your Polymorph spell polymorphs the target into a polar bear cub instead.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_pet_babyblizzardbear.jpg", }, - [MageMinorGlyph.GlyphOfSlowFall]: { - name: 'Glyph of Slow Fall', - description: 'Your Slow Fall spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_magic_featherfall.jpg', + [MageMinorGlyph.GlyphOfArcaneLanguage]: { + name: "Glyph of Arcane Language", + description: "Your Arcane Brilliance spell allows you to comprehend your allies\' racial languages.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_fish_68.jpg", }, - [MageMinorGlyph.GlyphOfTheMonkey]: { - name: 'Glyph of the Monkey', - description: 'Your Polymorph: Sheep spell polymorphs the target into a monkey instead.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_aspectofthemonkey.jpg', + [MageMinorGlyph.GlyphOfIllusion]: { + name: "Glyph of Illusion", + description: "Teaches you the ability Illusion.\u000D\u000A\u000D\u000ATransforms the Mage to look like someone else for $94632d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_mask_01.jpg", }, - [MageMinorGlyph.GlyphOfThePenguin]: { - name: 'Glyph of the Penguin', - description: 'Your Polymorph: Sheep spell polymorphs the target into a penguin instead.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_penguinpet.jpg', + [MageMinorGlyph.GlyphOfMirrorImage]: { + name: "Glyph of Mirror Image", + description: "Your Mirror Images cast Arcane Blast or Fireball instead of Frostbolt depending on your primary talent tree.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_magic_lesserinvisibilty.jpg", + }, + [MageMinorGlyph.GlyphOfRapidTeleportation]: { + name: "Glyph of Rapid Teleportation", + description: "$@spelldesc46989", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_portaldalaran.jpg", + }, + [MageMinorGlyph.GlyphOfDiscreetMagic]: { + name: "Glyph of Discreet Magic", + description: "Your Nether Tempest, Living Bomb, Frost Bomb, Arcane Barrage, and Inferno Blast no longer affect targets more than $s1 yds away from their primary target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_enchant_essencemagicsmall.jpg", + }, + [MageMinorGlyph.GlyphOfTheUnboundElemental]: { + name: "Glyph of the Unbound Elemental", + description: "Your Water Elemental is replaced by an Unbound Water Elemental.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_summonwaterelemental.jpg", + }, + [MageMinorGlyph.GlyphOfEvaporation]: { + name: "Glyph of Evaporation", + description: "Reduces the size of your Water Elemental by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_elemental_mote_water01.jpg", + }, + [MageMinorGlyph.GlyphOfCondensation]: { + name: "Glyph of Condensation", + description: "Increases the size of your Water Elemental by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_volatilewater.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/monk.ts b/ui/core/talents/monk.ts new file mode 100644 index 0000000000..4a3bdd0a45 --- /dev/null +++ b/ui/core/talents/monk.ts @@ -0,0 +1,196 @@ +import { MonkMajorGlyph, MonkMinorGlyph, MonkTalents } from '../proto/monk.js'; +import { GlyphsConfig } from './glyphs_picker.js'; +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import MonkTalentJson from './trees/monk.json';export const monkTalentsConfig: TalentsConfig = newTalentsConfig(MonkTalentJson); + +export const monkGlyphsConfig: GlyphsConfig = { + majorGlyphs: { + [MonkMajorGlyph.GlyphOfRapidRolling]: { + name: "Glyph of Rapid Rolling", + description: "For $147364d seconds after using Roll or Chi Torpedo, your next Roll or Chi Torpedo will go $147364s1% farther.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_roll.jpg", + }, + [MonkMajorGlyph.GlyphOfTranscendence]: { + name: "Glyph of Transcendence", + description: "Reduces the cooldown of your Transcendence: Transfer spell by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/monk_ability_transcendence.jpg", + }, + [MonkMajorGlyph.GlyphOfBreathOfFire]: { + name: "Glyph of Breath of Fire", + description: "When you use Breath of Fire on targets afflicted with your Dizzying Haze, they become Disoriented for $123393d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_breathoffire.jpg", + }, + [MonkMajorGlyph.GlyphOfClash]: { + name: "Glyph of Clash", + description: "Increases the range of your Clash ability by $m1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_clashingoxcharge.jpg", + }, + [MonkMajorGlyph.GlyphOfEnduringHealingSphere]: { + name: "Glyph of Enduring Healing Sphere", + description: "Increases the duration of your Healing Spheres by $m2 minutes.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_healthsphere.jpg", + }, + [MonkMajorGlyph.GlyphOfGuard]: { + name: "Glyph of Guard", + description: "Increases the amount your Guard absorbs by $m1%, but your Guard can only absorb magical damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_guard.jpg", + }, + [MonkMajorGlyph.GlyphOfManaTea]: { + name: "Glyph of Mana Tea", + description: "Your Mana Tea is instant instead of channeled and consumes two stacks when used, but causes a 10 sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/monk_ability_cherrymanatea.jpg", + }, + [MonkMajorGlyph.GlyphOfZenMeditation]: { + name: "Glyph of Zen Meditation", + description: "You can now channel Zen Meditation while moving.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_zenmeditation.jpg", + }, + [MonkMajorGlyph.GlyphOfRenewingMists]: { + name: "Glyph of Renewing Mists", + description: "Your Renewing Mist travels to the furthest injured target within $s2 yards rather than the closest injured target within $s3 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_renewingmists.jpg", + }, + [MonkMajorGlyph.GlyphOfSpinningCraneKick]: { + name: "Glyph of Spinning Crane Kick", + description: "You move at full speed while channeling Spinning Crane Kick.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_cranekick_new.jpg", + }, + [MonkMajorGlyph.GlyphOfSurgingMist]: { + name: "Glyph of Surging Mist", + description: "Your Surging Mist no longer requires a target, and instead heals the lowest health target within $123273m1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_surgingmist.jpg", + }, + [MonkMajorGlyph.GlyphOfTouchOfDeath]: { + name: "Glyph of Touch of Death", + description: "Your Touch of Death no longer has a Chi cost, but the cooldown is increased by 2 minutes.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_touchofdeath.jpg", + }, + [MonkMajorGlyph.GlyphOfNimbleBrew]: { + name: "Glyph of Nimble Brew", + description: "Clearing an effect with Nimble Brew heals you for $137562s9% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_monk_nimblebrew.jpg", + }, + [MonkMajorGlyph.GlyphOfAfterlife]: { + name: "Glyph of Afterlife", + description: "Increases the chance to summon a Healing Sphere when you kill an enemy while gaining experience or honor to ${$m1+$116092m2}%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_priest_finalprayer.jpg", + }, + [MonkMajorGlyph.GlyphOfFistsOfFury]: { + name: "Glyph of Fists of Fury", + description: "When channeling Fists of Fury, your parry chance is increased by 100%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/monk_ability_fistoffury.jpg", + }, + [MonkMajorGlyph.GlyphOfFortifyingBrew]: { + name: "Glyph of Fortifying Brew", + description: "Your Fortifying Brew reduces damage taken by an additional $m1%, but increases your health by $m2% rather than $115203m1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_fortifyingale_new.jpg", + }, + [MonkMajorGlyph.GlyphOfLeerOfTheOx]: { + name: "Glyph of Leer of the Ox", + description: "Teaches you the spell Leer of the Ox.\u000D\u000A\u000D\u000A|CFFFFFFFFLeer of the Ox|R\u000D\u000A$@spelldesc115543", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_leeroftheox.jpg", + }, + [MonkMajorGlyph.GlyphOfLifeCocoon]: { + name: "Glyph of Life Cocoon", + description: "Life Cocoon can now be cast while stunned.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_chicocoon.jpg", + }, + [MonkMajorGlyph.GlyphOfFortuitousSpheres]: { + name: "Glyph of Fortuitous Spheres", + description: "Falling below $s1% health will automatically summon a healing sphere near you at no cost. This effect cannot occur more often than once every $s2 seconds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_healthsphere.jpg", + }, + [MonkMajorGlyph.GlyphOfParalysis]: { + name: "Glyph of Paralysis", + description: "Your Paralysis ability also removes all damage over time effects from the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_paralysis.jpg", + }, + [MonkMajorGlyph.GlyphOfSparring]: { + name: "Glyph of Sparring", + description: "While Sparring, you also have a $m1% chance to deflect spells from attackers in front of you, stacking up to 3 times.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_sparring.jpg", + }, + [MonkMajorGlyph.GlyphOfDetox]: { + name: "Glyph of Detox", + description: "Detox heals your target for $115450s4% when it successfully removes a harmful effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_dispelmagic.jpg", + }, + [MonkMajorGlyph.GlyphOfTouchOfKarma]: { + name: "Glyph of Touch of Karma", + description: "Your Touch of Karma now has a ${$m1} yard range.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_touchofkarma.jpg", + }, + [MonkMajorGlyph.GlyphOfTargetedExpulsion]: { + name: "Glyph of Targeted Expulsion", + description: "Expel Harm can now be used on other allies, but the healing is reduced by $s2% on them.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_expelharm.jpg", + }, + }, + minorGlyphs: { + [MonkMinorGlyph.GlyphOfSpinningFireBlossom]: { + name: "Glyph of Spinning Fire Blossom", + description: "Your Spinning Fire Blossom requires an enemy target rather than traveling in front of you, but is no longer capable of rooting targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_explodingjadeblossom.jpg", + }, + [MonkMinorGlyph.ZzoldGlyphOfFlyingSerpentKick]: { + name: "zzOLD Glyph of Flying Serpent Kick", + description: "Your Flying Serpent Kick automatically ends when you fly into an enemy, triggering the area of effect damage and snare.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_flyingdragonkick.jpg", + }, + [MonkMinorGlyph.GlyphOfCracklingTigerLightning]: { + name: "Glyph of Crackling Tiger Lightning", + description: "Your Crackling Jade Lightning visual is altered to the color of the White Tiger celestial.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_cracklingjadelightning.jpg", + }, + [MonkMinorGlyph.GlyphOfFlyingSerpentKick]: { + name: "Glyph of Flying Serpent Kick", + description: "Your Flying Serpent Kick automatically ends when you fly into an enemy, triggering the area of effect damage and snare.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_flyingdragonkick.jpg", + }, + [MonkMinorGlyph.GlyphOfHonor]: { + name: "Glyph of Honor", + description: "You honorably bow after each successful Touch of Death.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/pandarenracial_innerpeace.jpg", + }, + [MonkMinorGlyph.GlyphOfJab]: { + name: "Glyph of Jab", + description: "You always will attack with hands and fist with Jab, even with non-fist weapons equipped.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_jab.jpg", + }, + [MonkMinorGlyph.GlyphOfRisingTigerKick]: { + name: "Glyph of Rising Tiger Kick", + description: "Your Rising Sun Kick\'s visual is altered to the color of the White Tiger.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_risingsunkick.jpg", + }, + [MonkMinorGlyph.ZzoldGlyphOfSpinningFireBlossom]: { + name: "zzOLD Glyph of Spinning Fire Blossom", + description: "Your Spinning Fire Blossom requires an enemy target rather than traveling in front of you, but is no longer capable of rooting targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_explodingjadeblossom.jpg", + }, + [MonkMinorGlyph.GlyphOfSpiritRoll]: { + name: "Glyph of Spirit Roll", + description: "You can cast Roll or Chi Torpedo while dead as a spirit.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_guardianspirit.jpg", + }, + [MonkMinorGlyph.GlyphOfFightingPose]: { + name: "Glyph of Fighting Pose", + description: "Your spirit now appears in a fighting pose when using Transcendence.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_dpsstance.jpg", + }, + [MonkMinorGlyph.GlyphOfWaterRoll]: { + name: "Glyph of Water Roll", + description: "You can Roll or Chi Torpedo over water.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_roll.jpg", + }, + [MonkMinorGlyph.GlyphOfZenFlight]: { + name: "Glyph of Zen Flight", + description: "Teaches you the spell Zen Flight. Zen Flight requires a Flight Master\'s License in order to be cast.\u000D\u000A\u000D\u000A|CFFFFFFFFZen Flight|R\u000D\u000A$@spelldesc125883", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_zenflight.jpg", + }, + [MonkMinorGlyph.GlyphOfBlackoutKick]: { + name: "Glyph of Blackout Kick", + description: "Your Blackout Kick always deals $100784m2% additional damage over $128531d regardless of positioning but you\'re unable to trigger the healing effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_monk_blackoutkick.jpg", + }, + }, +}; diff --git a/ui/core/talents/paladin.ts b/ui/core/talents/paladin.ts index 98bc92f121..221f333281 100644 --- a/ui/core/talents/paladin.ts +++ b/ui/core/talents/paladin.ts @@ -1,195 +1,241 @@ -import {PaladinMajorGlyph, PaladinMinorGlyph,PaladinPrimeGlyph, PaladinTalents } from '../proto/paladin.js'; +import { PaladinMajorGlyph, PaladinMinorGlyph, PaladinTalents } from '../proto/paladin.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import PaladinTalentJson from './trees/paladin.json'; - -export const paladinTalentsConfig: TalentsConfig = newTalentsConfig(PaladinTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import PaladinTalentJson from './trees/paladin.json';export const paladinTalentsConfig: TalentsConfig = newTalentsConfig(PaladinTalentJson); export const paladinGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [PaladinPrimeGlyph.GlyphOfCrusaderStrike]: { - name: 'Glyph of Crusader Strike', - description: 'Increases the critical strike chance of Crusader Strike by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_crusaderstrike.jpg', - }, - [PaladinPrimeGlyph.GlyphOfDivineFavor]: { - name: 'Glyph of Divine Favor', - description: 'Increases the duration of Divine Favor by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_divineillumination.jpg', - }, - [PaladinPrimeGlyph.GlyphOfExorcism]: { - name: 'Glyph of Exorcism', - description: 'Your Exorcism causes an additional 20% of its damage over 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism_02.jpg', - }, - [PaladinPrimeGlyph.GlyphOfHammerOfTheRighteous]: { - name: 'Glyph of Hammer of the Righteous', - description: 'Increases the damage of both the physical and Holy components of Hammer of the Righteous by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_paladin_hammeroftherighteous.jpg', - }, - [PaladinPrimeGlyph.GlyphOfHolyShock]: { - name: 'Glyph of Holy Shock', - description: 'Increases the critical effect chance of Holy Shock by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_searinglight.jpg', - }, - [PaladinPrimeGlyph.GlyphOfJudgement]: { - name: 'Glyph of Judgement', - description: 'Your Judgement deals 10% more damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_righteousfury.jpg', - }, - [PaladinPrimeGlyph.GlyphOfSealOfInsight]: { - name: 'Glyph of Seal of Insight', - description: 'While Seal of Insight is active, the effect of your healing spells is increased by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_healingaura.jpg', - }, - [PaladinPrimeGlyph.GlyphOfSealOfTruth]: { - name: 'Glyph of Seal of Truth', - description: 'Your Seal of Truth and Seal of Righteousness also grant 10 expertise while active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofvengeance.jpg', - }, - [PaladinPrimeGlyph.GlyphOfShieldOfTheRighteous]: { - name: 'Glyph of Shield of the Righteous', - description: 'Increases the damage of Shield of the Righteous by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_paladin_shieldofvengeance.jpg', - }, - [PaladinPrimeGlyph.GlyphOfTemplarSVerdict]: { - name: 'Glyph of Templar\'s Verdict', - description: 'Increases the damage of Templar\'s Verdict by 15%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_paladin_templarsverdict.jpg', - }, - [PaladinPrimeGlyph.GlyphOfWordOfGlory]: { - name: 'Glyph of Word of Glory', - description: 'Increases the healing done by Word of Glory by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_helmet_96.jpg', - }, - }, majorGlyphs: { - [PaladinMajorGlyph.GlyphOfBeaconOfLight]: { - name: 'Glyph of Beacon of Light', - description: 'Your Beacon of Light costs no mana.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_paladin_beaconoflight.jpg', + [PaladinMajorGlyph.GlyphOfDoubleJeopardy]: { + name: "Glyph of Double Jeopardy", + description: "Judging a target increases the damage of your next Judgment by $121027s1%, but only if used on a different second target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_righteousfury.jpg", }, - [PaladinMajorGlyph.GlyphOfCleansing]: { - name: 'Glyph of Cleansing', - description: 'Reduces the mana cost of your Cleanse by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_purify.jpg', + [PaladinMajorGlyph.GlyphOfDevotionAura]: { + name: "Glyph of Devotion Aura", + description: "Devotion Aura no longer affects party or raid members, but the cooldown is reduced by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_auramastery.jpg", }, - [PaladinMajorGlyph.GlyphOfConsecration]: { - name: 'Glyph of Consecration', - description: 'Increases the duration and cooldown of Consecration by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_innerfire.jpg', + [PaladinMajorGlyph.GlyphOfHolyWrath]: { + name: "Glyph of Holy Wrath", + description: "Your Holy Wrath now also stuns Elementals, Dragonkin, and Aberrations.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_weaponmastery.jpg", }, - [PaladinMajorGlyph.GlyphOfDazingShield]: { - name: 'Glyph of Dazing Shield', - description: 'Your Avenger\'s Shield now also dazes targets.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_avengersshield.jpg', + [PaladinMajorGlyph.GlyphOfDivineProtection]: { + name: "Glyph of Divine Protection", + description: "Reduces the magical damage reduction of your Divine Protection to 20% but adds $54924s2% physical damage reduction.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_divineprotection.jpg", }, - [PaladinMajorGlyph.GlyphOfDivinePlea]: { - name: 'Glyph of Divine Plea', - description: 'Your Divine Plea provides an additional 6% of your total mana.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_aspiration.jpg', + [PaladinMajorGlyph.GlyphOfTemplarsVerdict]: { + name: "Glyph of Templar's Verdict", + description: "You take $115668s1% less damage for $115668d after dealing damage with Templar\'s Verdict or Exorcism.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_paladin_templarsverdict.jpg", }, - [PaladinMajorGlyph.GlyphOfDivineProtection]: { - name: 'Glyph of Divine Protection', - description: 'Removes the physical damage reduction of your Divine Protection, but increases the magical damage reduction by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_divineprotection.jpg', + [PaladinMajorGlyph.GlyphOfAvengingWrath]: { + name: "Glyph of Avenging Wrath", + description: "While Avenging Wrath is active, you are healed for $115547s1% of your maximum health every $115547t sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_avenginewrath.jpg", }, - [PaladinMajorGlyph.GlyphOfDivinity]: { - name: 'Glyph of Divinity', - description: 'When you use Lay on Hands, you also gain 10% of your maximum mana.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_layonhands.jpg', + [PaladinMajorGlyph.GlyphOfConsecration]: { + name: "Glyph of Consecration", + description: "You can now target Consecration anywhere within 25 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_innerfire.jpg", }, [PaladinMajorGlyph.GlyphOfFocusedShield]: { - name: 'Glyph of Focused Shield', - description: 'Your Avenger\'s Shield hits 2 fewer targets, but for 30% more damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_avengersshield.jpg', + name: "Glyph of Focused Shield", + description: "Your Avenger\'s Shield hits $s1 fewer targets, but for $s2% more damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_avengersshield.jpg", + }, + [PaladinMajorGlyph.GlyphOfBurdenOfGuilt]: { + name: "Glyph of Burden of Guilt", + description: "Your Judgment hits fill your target with doubt and remorse, reducing movement speed by $110300s1% for $110300d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_bg_topdps.jpg", + }, + [PaladinMajorGlyph.GlyphOfBlindingLight]: { + name: "Glyph of Blinding Light", + description: "Your Blinding Light now knocks down targets for $115752d instead of Blinding them.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_paladin_blindinglight.jpg", + }, + [PaladinMajorGlyph.GlyphOfFinalWrath]: { + name: "Glyph of Final Wrath", + description: "Your Holy Wrath does an additional $s1% damage to targets with less than 20% health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_blessedresillience.jpg", + }, + [PaladinMajorGlyph.GlyphOfWordOfGlory]: { + name: "Glyph of Word of Glory", + description: "Increases your damage by $115522s1% per Holy Power spent after you cast Word of Glory or Eternal Flame on a friendly target. Lasts $115522d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_helmet_96.jpg", + }, + [PaladinMajorGlyph.GlyphOfIllumination]: { + name: "Glyph of Illumination", + description: "Your Holy Shock criticals grant $s1% mana return, but Holy Insight returns $s2% less mana.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_pureofheart.jpg", + }, + [PaladinMajorGlyph.GlyphOfHarshWords]: { + name: "Glyph of Harsh Words", + description: "Your Word of Glory can now also be used on enemy targets, causing Holy damage approximately equal to the amount it would have healed.\u000D\u000A\u000D\u000ADoes not work with Eternal Flame.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_helmet_96.jpg", + }, + [PaladinMajorGlyph.GlyphOfDivinity]: { + name: "Glyph of Divinity", + description: "Increases the cooldown of your Lay on Hands by ${$54939m2/60000} min but causes it to give you $54986s1% of your maximum mana.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_layonhands.jpg", }, - [PaladinMajorGlyph.GlyphOfHammerOfJustice]: { - name: 'Glyph of Hammer of Justice', - description: 'Increases your Hammer of Justice range by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofmight.jpg', + [PaladinMajorGlyph.GlyphOfLightOfDawn]: { + name: "Glyph of Light of Dawn", + description: "Light of Dawn affects $54940s1 fewer targets, but heals each target for $54940s2% more.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_paladin_lightofdawn.jpg", }, - [PaladinMajorGlyph.GlyphOfHammerOfWrath]: { - name: 'Glyph of Hammer of Wrath', - description: 'Reduces the mana cost of Hammer of Wrath by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_hammer_04.jpg', + [PaladinMajorGlyph.GlyphOfBlessedLife]: { + name: "Glyph of Blessed Life", + description: "You have a $54943h% chance to gain a charge of Holy Power whenever you are affected by a Stun, Fear or Immobilize effect.\u000D\u000A\u000D\u000AThis effect cannot occur more than once every $54943s2 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_healingaura.jpg", }, - [PaladinMajorGlyph.GlyphOfHolyWrath]: { - name: 'Glyph of Holy Wrath', - description: 'Your Holy Wrath now also stuns Elementals and Dragonkin.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_purifyingpower.jpg', + [PaladinMajorGlyph.GlyphOfFlashOfLight]: { + name: "Glyph of Flash of Light", + description: "When you Flash of Light a target, it increases your next heal done to that target within $54957d by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_flashheal.jpg", }, - [PaladinMajorGlyph.GlyphOfLayOnHands]: { - name: 'Glyph of Lay on Hands', - description: 'Reduces the cooldown of your Lay on Hands spell by 3 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_layonhands.jpg', + [PaladinMajorGlyph.GlyphOfDenounce]: { + name: "Glyph of Denounce", + description: "Your Holy Shocks reduce the cast time of your next Denounce by ${$115654m1/-1000}.1 sec. This effect stacks up to 3 times.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_purifyingpower.jpg", }, - [PaladinMajorGlyph.GlyphOfLightOfDawn]: { - name: 'Glyph of Light of Dawn', - description: 'Light of Dawn affects 2 fewer targets, but heals each target for 25% more.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_paladin_lightofdawn.jpg', - }, - [PaladinMajorGlyph.GlyphOfRebuke]: { - name: 'Glyph of Rebuke', - description: 'Reduces the mana cost of Rebuke by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_rebuke.jpg', - }, - [PaladinMajorGlyph.GlyphOfReckoning]: { - name: 'Glyph of Reckoning', - description: 'Your Hand of Reckoning spell no longer taunts the target and can deal damage to untauntable targets.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_questionmark.jpg', - }, - [PaladinMajorGlyph.GlyphOfSalvation]: { - name: 'Glyph of Salvation', - description: 'Hand of Salvation no longer permanently reduces threat over time but instead reduces all threat as long as Hand of Salvation lasts.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofsalvation.jpg', - }, - [PaladinMajorGlyph.GlyphOfTheAsceticCrusader]: { - name: 'Glyph of the Ascetic Crusader', - description: 'Reduces the mana cost of your Crusader Strike by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_crusaderstrike.jpg', - }, - [PaladinMajorGlyph.GlyphOfTheLongWord]: { - name: 'Glyph of the Long Word', - description: 'Your Word of Glory heals for 50% less up front, but provides an additional 50% healing over 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_helmet_96.jpg', - }, - [PaladinMajorGlyph.GlyphOfTurnEvil]: { - name: 'Glyph of Turn Evil', - description: 'Reduces the casting time of your Turn Evil spell by 100%, but increases the cooldown by 8 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_turnundead.jpg', + [PaladinMajorGlyph.GlyphOfDazingShield]: { + name: "Glyph of Dazing Shield", + description: "Your Avenger\'s Shield now also dazes targets for $63529d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_avengersshield.jpg", + }, + [PaladinMajorGlyph.GlyphOfImmediateTruth]: { + name: "Glyph of Immediate Truth", + description: "Increases the instant damage done by Seal of Truth by $56416s1%, but decreases the damage done by Censure by $56416s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofvengeance.jpg", + }, + [PaladinMajorGlyph.GlyphOfBeaconOfLight]: { + name: "Glyph of Beacon of Light", + description: "Removes the global cooldown on Beacon of Light.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_paladin_beaconoflight.jpg", + }, + [PaladinMajorGlyph.GlyphOfHammerOfTheRighteous]: { + name: "Glyph of Hammer of the Righteous", + description: "The physical damage reduction caused by Hammer of the Righteous now lasts $63219s1% longer.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_paladin_hammeroftherighteous.jpg", + }, + [PaladinMajorGlyph.GlyphOfDivineStorm]: { + name: "Glyph of Divine Storm", + description: "Your Divine Storm also heals you for $115515s1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_paladin_divinestorm.jpg", + }, + [PaladinMajorGlyph.GlyphOfTheAlabasterShield]: { + name: "Glyph of the Alabaster Shield", + description: "Your successful blocks increase the damage of your next Shield of the Righteous by $121467s1%. Stacks up to $121467u times.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/trade_archaeology_stoneshield.jpg", + }, + [PaladinMajorGlyph.GlyphOfDivinePlea]: { + name: "Glyph of Divine Plea", + description: "Divine Plea returns $s1% less mana but has a $s2% shorter cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_aspiration.jpg", + }, + [PaladinMajorGlyph.GlyphOfHolyShock]: { + name: "Glyph of Holy Shock", + description: "Decreases the healing of Holy Shock by $63224s1% but increases its damage by $63224s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_searinglight.jpg", + }, + [PaladinMajorGlyph.GlyphOfInquisition]: { + name: "Glyph of Inquisition", + description: "When you land a killing blow on an opponent that yields experience or honor, the duration of your Inquisition is increased by $s1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_paladin_inquisition.jpg", + }, + [PaladinMajorGlyph.GlyphOfProtectorOfTheInnocent]: { + name: "Glyph of Protector of the Innocent", + description: "When you use Word of Glory to heal another target, it also heals you for $s1% of the amount.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_paladin_protectoroftheinnocent.jpg", + }, + [PaladinMajorGlyph.GlyphOfTheBattleHealer]: { + name: "Glyph of the Battle Healer", + description: "Melee attacks from Seal of Insight heal the most wounded member of your raid or party for $s1% of the normal heal instead of you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_vindication.jpg", + }, + [PaladinMajorGlyph.GlyphOfMassExorcism]: { + name: "Glyph of Mass Exorcism", + description: "Reduces the range of Exorcism to melee range, but causes 25% damage to all enemies within $122032A2 yards of the primary target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism_02.jpg", + }, + [PaladinMajorGlyph.GlyphOfDivineShield]: { + name: "Glyph of Divine Shield", + description: "Removing harmful effects with Divine Shield heals you for $s1% for each effect removed. This heal cannot exceed ${$m1*$m2}% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_divineshield.jpg", + }, + [PaladinMajorGlyph.GlyphOfHandOfSacrifice]: { + name: "Glyph of Hand of Sacrifice", + description: "Hand of Sacrifice no longer redirects damage to the Paladin.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofsacrifice.jpg", }, }, minorGlyphs: { - [PaladinMinorGlyph.GlyphOfBlessingOfKings]: { - name: 'Glyph of Blessing of Kings', - description: 'Reduces the mana cost of Blessing of Kings by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_magic_magearmor.jpg', - }, - [PaladinMinorGlyph.GlyphOfBlessingOfMight]: { - name: 'Glyph of Blessing of Might', - description: 'Reduces the mana cost of your Blessing of Might by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_greaterblessingofkings.jpg', - }, - [PaladinMinorGlyph.GlyphOfInsight]: { - name: 'Glyph of Insight', - description: 'Reduces the mana cost of Seal of Insight by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_healingaura.jpg', - }, - [PaladinMinorGlyph.GlyphOfJustice]: { - name: 'Glyph of Justice', - description: 'Reduces the mana cost of Seal of Justice by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofwrath.jpg', - }, - [PaladinMinorGlyph.GlyphOfRighteousness]: { - name: 'Glyph of Righteousness', - description: 'Reduces the mana cost of Seal of Righteousness by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_righteousnessaura.jpg', - }, - [PaladinMinorGlyph.GlyphOfTruth]: { - name: 'Glyph of Truth', - description: 'Reduces the mana cost of Seal of Truth by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofvengeance.jpg', + [PaladinMinorGlyph.GlyphOfTheLuminousCharger]: { + name: "Glyph of the Luminous Charger", + description: "Your Paladin class mounts glow with holy light.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_crusaderaura.jpg", + }, + [PaladinMinorGlyph.GlyphOfTheMountedKing]: { + name: "Glyph of the Mounted King", + description: "Mounting one of your Paladin class mounts automatically casts Blessing of Kings on you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_magic_greaterblessingofkings.jpg", + }, + [PaladinMinorGlyph.GlyphOfContemplation]: { + name: "Glyph of Contemplation", + description: "Teaches you the ability Contemplation.\u000D\u000A\u000D\u000AAllows you a moment of peace as you kneel in quiet contemplation to ponder the nature of the Light.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_relics_libramofhope.jpg", + }, + [PaladinMinorGlyph.GlyphOfWingedVengeance]: { + name: "Glyph of Winged Vengeance", + description: "Your Avenging Wrath depicts 4 wings.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_revivechampion.jpg", + }, + [PaladinMinorGlyph.GlyphOfSealOfBlood]: { + name: "Glyph of Seal of Blood", + description: "Your Seal of Truth now uses the Seal of Blood visual.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofvengeance.jpg", + }, + [PaladinMinorGlyph.GlyphOfFireFromTheHeavens]: { + name: "Glyph of Fire From the Heavens", + description: "Your Judgment and Hammer of Wrath criticals call down fire from the sky.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mage_firestarter.jpg", + }, + [PaladinMinorGlyph.GlyphOfFocusedWrath]: { + name: "Glyph of Focused Wrath", + description: "Holy Wrath only affects one target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_weaponmastery.jpg", + }, + [PaladinMinorGlyph.GlyphOfTheFallingAvenger]: { + name: "Glyph of the Falling Avenger", + description: "You slow fall during Avenging Wrath.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_magic_featherfall.jpg", + }, + [PaladinMinorGlyph.GlyphOfTheRighteousRetreat]: { + name: "Glyph of the Righteous Retreat", + description: "During Divine Shield, you can invoke your Hearthstone 50% faster.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_guildperk_hastyhearth.jpg", + }, + [PaladinMinorGlyph.GlyphOfBladedJudgment]: { + name: "Glyph of Bladed Judgment", + description: "Your Judgment spell depicts an axe or sword instead of a hammer, if you have an axe or sword equipped.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_axe_1h_cataclysm_c_01.jpg", + }, + [PaladinMinorGlyph.GlyphOfRighteousRetreat]: { + name: "Glyph of Righteous Retreat", + description: "During Divine Shield, you can invoke your Hearthstone 50% faster.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_guildperk_hastyhearth.jpg", + }, + [PaladinMinorGlyph.GlyphOfTheExorcist]: { + name: "Glyph of the Exorcist", + description: "Exorcism will now appear to remove the evil from its target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism.jpg", + }, + [PaladinMinorGlyph.GlyphOfPillarOfLight]: { + name: "Glyph of Pillar of Light", + description: "Critical heals on other players display a small pillar of light at their location briefly.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_surgeoflight.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/priest.ts b/ui/core/talents/priest.ts index beff6562ba..a0f448a060 100644 --- a/ui/core/talents/priest.ts +++ b/ui/core/talents/priest.ts @@ -1,185 +1,256 @@ -import { PriestMajorGlyph, PriestMinorGlyph,PriestPrimeGlyph, PriestTalents } from '../proto/priest.js'; +import { PriestMajorGlyph, PriestMinorGlyph, PriestTalents } from '../proto/priest.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import PriestTalentJson from './trees/priest.json'; - -export const priestTalentsConfig: TalentsConfig = newTalentsConfig(PriestTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import PriestTalentJson from './trees/priest.json';export const priestTalentsConfig: TalentsConfig = newTalentsConfig(PriestTalentJson); export const priestGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [PriestPrimeGlyph.GlyphOfDispersion]: { - name: 'Glyph of Dispersion', - description: 'Reduces the cooldown on Dispersion by 45 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_dispersion.jpg', - }, - [PriestPrimeGlyph.GlyphOfFlashHeal]: { - name: 'Glyph of Flash Heal', - description: 'Increases the critical effect chance of your Flash Heal on targets at or below 25% health by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_flashheal.jpg', - }, - [PriestPrimeGlyph.GlyphOfGuardianSpirit]: { - name: 'Glyph of Guardian Spirit', - description: 'Reduces the cooldown of your Guardian Spirit by 30 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_guardianspirit.jpg', - }, - [PriestPrimeGlyph.GlyphOfLightwell]: { - name: 'Glyph of Lightwell', - description: 'Increases the total amount of charges of your Lightwell by 5.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_summonlightwell.jpg', - }, - [PriestPrimeGlyph.GlyphOfMindFlay]: { - name: 'Glyph of Mind Flay', - description: 'Increases the damage done by your Mind Flay spell by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_siphonmana.jpg', - }, - [PriestPrimeGlyph.GlyphOfPenance]: { - name: 'Glyph of Penance', - description: 'Reduces the cooldown of Penance by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_penance.jpg', - }, - [PriestPrimeGlyph.GlyphOfPowerWordBarrier]: { - name: 'Glyph of Power Word: Barrier', - description: 'Increases the healing received while under Power Word: Barrier by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_powerwordbarrier.jpg', - }, - [PriestPrimeGlyph.GlyphOfPowerWordShield]: { - name: 'Glyph of Power Word: Shield', - description: 'Your Power Word: Shield also heals the target for 20% of the absorption amount.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_powerwordshield.jpg', - }, - [PriestPrimeGlyph.GlyphOfPrayerOfHealing]: { - name: 'Glyph of Prayer of Healing', - description: 'Your Prayer of Healing spell also heals an additional 20% of its initial heal over 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_prayerofhealing02.jpg', - }, - [PriestPrimeGlyph.GlyphOfRenew]: { - name: 'Glyph of Renew', - description: 'Increases the amount healed by your Renew by an additional 25%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_renew.jpg', - }, - [PriestPrimeGlyph.GlyphOfShadowWordDeath]: { - name: 'Glyph of Shadow Word: Death', - description: 'If your Shadow Word: Death fails to kill the target at or below 25% health, your Shadow Word: Death\'s cooldown is instantly reset. This effect cannot occur more often than once every 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonicfortitude.jpg', - }, - [PriestPrimeGlyph.GlyphOfShadowWordPain]: { - name: 'Glyph of Shadow Word: Pain', - description: 'Increases the periodic damage of your Shadow Word: Pain by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowwordpain.jpg', - }, - }, majorGlyphs: { [PriestMajorGlyph.GlyphOfCircleOfHealing]: { - name: 'Glyph of Circle of Healing', - description: 'Your Circle of Healing spell heals 1 additional target, but its mana cost is increased by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_circleofrenewal.jpg', - }, - [PriestMajorGlyph.GlyphOfDesperation]: { - name: 'Glyph of Desperation', - description: 'Allows Pain Suppression and Guardian Spirit to be cast while stunned.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_painsupression.jpg', - }, - [PriestMajorGlyph.GlyphOfDispelMagic]: { - name: 'Glyph of Dispel Magic', - description: 'Your Dispel Magic spell also heals your target for 3% of maximum health when you successfully dispel a magical effect.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_dispelmagic.jpg', + name: "Glyph of Circle of Healing", + description: "Your Circle of Healing spell heals $55675s1 additional target, but its mana cost is increased by $55675s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_circleofrenewal.jpg", }, - [PriestMajorGlyph.GlyphOfDivineAccuracy]: { - name: 'Glyph of Divine Accuracy', - description: 'Increases your chance to hit with your Smite and Holy Fire spells by 18%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_holyprotection.jpg', + [PriestMajorGlyph.GlyphOfPurify]: { + name: "Glyph of Purify", + description: "Your Purify spell also heals your target for $55677s1% of maximum health when you successfully dispel a magical effect or disease.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_dispelmagic.jpg", }, [PriestMajorGlyph.GlyphOfFade]: { - name: 'Glyph of Fade', - description: 'Reduces the cooldown of your Fade spell by 9 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_magic_lesserinvisibilty.jpg', + name: "Glyph of Fade", + description: "Your Fade ability now also reduces all damage taken by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_magic_lesserinvisibilty.jpg", }, [PriestMajorGlyph.GlyphOfFearWard]: { - name: 'Glyph of Fear Ward', - description: 'Reduces the cooldown and duration of Fear Ward by 60 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism.jpg', + name: "Glyph of Fear Ward", + description: "Reduces the cooldown of Fear Ward by ${$55678m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_excorcism.jpg", + }, + [PriestMajorGlyph.GlyphOfInnerSanctum]: { + name: "Glyph of Inner Sanctum", + description: "Spell damage taken is reduced by $s1% while within Inner Fire, and the movement speed bonus of your Inner Will is increased by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/priest_icon_innewill.jpg", }, [PriestMajorGlyph.GlyphOfHolyNova]: { - name: 'Glyph of Holy Nova', - description: 'Reduces the global cooldown of your Holy Nova by .5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_holynova.jpg', + name: "Glyph of Holy Nova", + description: "Teaches you the ability Holy Nova.\u000D\u000A\u000D\u000ACauses an explosion of holy light around the caster, causing $132157s1 Holy damage to all enemy targets within $132157A1 yards and healing up to 5 targets within $23455A1 yards for $23455s1. \u000D\u000A\u000D\u000AHealing is divided among the number of targets healed. These effects cause no threat.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_holynova.jpg", }, [PriestMajorGlyph.GlyphOfInnerFire]: { - name: 'Glyph of Inner Fire', - description: 'Increases the armor gained from your Inner Fire spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_innerfire.jpg', + name: "Glyph of Inner Fire", + description: "Increases the armor gained from your Inner Fire spell by $55686m1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_innerfire.jpg", }, - [PriestMajorGlyph.GlyphOfMassDispel]: { - name: 'Glyph of Mass Dispel', - description: 'Reduces the cast time of Mass Dispel by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_arcane_massdispel.jpg', + [PriestMajorGlyph.GlyphOfDeepWells]: { + name: "Glyph of Deep Wells", + description: "Increases the total amount of charges of your Lightwell by $55673s1.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_summonlightwell.jpg", }, - [PriestMajorGlyph.GlyphOfPrayerOfMending]: { - name: 'Glyph of Prayer of Mending', - description: 'The first charge of your Prayer of Mending heals for an additional 60%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_prayerofmendingtga.jpg', + [PriestMajorGlyph.GlyphOfMassDispel]: { + name: "Glyph of Mass Dispel", + description: "Causes your Mass Dispel to be potent enough to remove Magic effects that are normally undispellable.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_arcane_massdispel.jpg", }, [PriestMajorGlyph.GlyphOfPsychicHorror]: { - name: 'Glyph of Psychic Horror', - description: 'Reduces the cooldown of your Psychic Horror by 30 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_psychichorrors.jpg', + name: "Glyph of Psychic Horror", + description: "Reduces the cooldown of your Psychic Horror by $/1000;S1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_psychichorrors.jpg", + }, + [PriestMajorGlyph.GlyphOfHolyFire]: { + name: "Glyph of Holy Fire", + description: "Increases the range of your Holy Fire, Smite, and Power Word: Solace spells by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_searinglight.jpg", + }, + [PriestMajorGlyph.GlyphOfWeakenedSoul]: { + name: "Glyph of Weakened Soul", + description: "Reduces the duration of the Weakened Soul effect caused by Power Word: Shield by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_ashestoashes.jpg", + }, + [PriestMajorGlyph.GlyphOfPowerWordShield]: { + name: "Glyph of Power Word: Shield", + description: "$55672s1% of the absorb from your Power Word: Shield spell is converted into healing.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_powerwordshield.jpg", + }, + [PriestMajorGlyph.GlyphOfSpiritOfRedemption]: { + name: "Glyph of Spirit of Redemption", + description: "Increases the duration of Spirit of Redemption by ${$m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_enchant_essenceeternallarge.jpg", }, [PriestMajorGlyph.GlyphOfPsychicScream]: { - name: 'Glyph of Psychic Scream', - description: 'Targets of your Psychic Scream spell now tremble in place instead of fleeing in fear, but the cooldown of Psychic Scream is increased by 3 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_psychicscream.jpg', + name: "Glyph of Psychic Scream", + description: "Targets of your Psychic Scream and your Psyfiend\'s Psychic Terror now tremble in place instead of fleeing in fear.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_psychicscream.jpg", + }, + [PriestMajorGlyph.GlyphOfRenew]: { + name: "Glyph of Renew", + description: "Your Renew heals for $s1% more each time it heals, but its duration is reduced by ${$m2/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_renew.jpg", }, [PriestMajorGlyph.GlyphOfScourgeImprisonment]: { - name: 'Glyph of Scourge Imprisonment', - description: 'Reduces the cast time of your Shackle Undead by 1.0 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_crusade.jpg', + name: "Glyph of Scourge Imprisonment", + description: "Reduces the cast time of your Shackle Undead by ${$55690m1/-1000}.1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_crusade.jpg", + }, + [PriestMajorGlyph.GlyphOfMindBlast]: { + name: "Glyph of Mind Blast", + description: "When you critically hit with your Mind Blast, you cause the target to be unable to move for $87194d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unholyfrenzy.jpg", + }, + [PriestMajorGlyph.GlyphOfDispelMagic]: { + name: "Glyph of Dispel Magic", + description: "Your Dispel Magic spell also damages your target for $119856s1 Holy damage when you successfully dispel a magical effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_nullifydisease.jpg", }, [PriestMajorGlyph.GlyphOfSmite]: { - name: 'Glyph of Smite', - description: 'Your Smite spell inflicts an additional 20% damage against targets afflicted by Holy Fire.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_holysmite.jpg', + name: "Glyph of Smite", + description: "Your Smite spell inflicts an additional $55692s1% damage against targets afflicted by $?s139139[Power Word: Solace][Holy Fire], but that additional damage does not get transferred by Atonement.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_holysmite.jpg", }, - [PriestMajorGlyph.GlyphOfSpiritTap]: { - name: 'Glyph of Spirit Tap', - description: 'When you kill a target with your Shadow Word: Death that yields experience or honor, you receive 12% of your total mana over 12 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_requiem.jpg', + [PriestMajorGlyph.GlyphOfPrayerOfMending]: { + name: "Glyph of Prayer of Mending", + description: "The first charge of your Prayer of Mending heals for an additional $55685s1% but your Prayer of Mending has $s2 fewer $Lcharge:charges;.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_prayerofmendingtga.jpg", + }, + [PriestMajorGlyph.GlyphOfLevitate]: { + name: "Glyph of Levitate", + description: "Increases your movement speed while Levitating and for 10 sec afterward by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_priest_pathofdevout.jpg", + }, + [PriestMajorGlyph.GlyphOfReflectiveShield]: { + name: "Glyph of Reflective Shield", + description: "Causes $s1% of the damage you absorb with Power Word: Shield to reflect back at the attacker. This damage causes no threat.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_priest_reflectiveshield.jpg", + }, + [PriestMajorGlyph.GlyphOfDispersion]: { + name: "Glyph of Dispersion", + description: "Reduces the cooldown on Dispersion by ${$63229m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_dispersion.jpg", + }, + [PriestMajorGlyph.GlyphOfLeapOfFaith]: { + name: "Glyph of Leap of Faith", + description: "Your Leap of Faith spell now also clears all movement impairing effects from your target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/priest_spell_leapoffaith_a.jpg", + }, + [PriestMajorGlyph.GlyphOfPenance]: { + name: "Glyph of Penance", + description: "Increases the mana cost of Penance by $s1% but allows Penance to be cast while moving.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_penance.jpg", + }, + [PriestMajorGlyph.GlyphOfFocusedMending]: { + name: "Glyph of Focused Mending", + description: "Causes your Prayer of Mending to only bounce between the target and the caster.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_healingfocus.jpg", + }, + [PriestMajorGlyph.GlyphOfMindSpike]: { + name: "Glyph of Mind Spike", + description: "Your successful non-instant Mind Spikes, reduce the cast time of your next Mind Blast within $81292d by $81292s1%. This effect can stack up to $81292u times.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_priest_mindspike.jpg", + }, + [PriestMajorGlyph.GlyphOfBindingHeal]: { + name: "Glyph of Binding Heal", + description: "Your Binding Heal spell now heals a third friendly target within 20 yards, but costs $s1% more mana.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_blindingheal.jpg", + }, + [PriestMajorGlyph.GlyphOfMindFlay]: { + name: "Glyph of Mind Flay", + description: "Your Mind Flay spell no longer slows your victim\'s movement speed. Instead, each time Mind Flay deals damage you will be granted $120587s1% increased movement speed for $120587d, stacking up to $120587u times.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_siphonmana.jpg", + }, + [PriestMajorGlyph.GlyphOfShadowWordDeath]: { + name: "Glyph of Shadow Word: Death", + description: "Your Shadow Word: Death can now be cast at any time, but deals 25% damage against targets above 20% health$?s15407[ and does not generate a Shadow Orb when used against them][]. \u000D\u000A\u000D\u000ACasting Shadow Word: Death now also does damage to you equivalent to the damage it would do to an enemy above 20% health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonicfortitude.jpg", + }, + [PriestMajorGlyph.GlyphOfVampiricEmbrace]: { + name: "Glyph of Vampiric Embrace", + description: "Your Vampiric Embrace converts an additional $s2% of the damage you deal into healing, but the duration is reduced by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unsummonbuilding.jpg", + }, + [PriestMajorGlyph.ZzoldGlyphOfVampiricTouch]: { + name: "zzOLD Glyph of Vampiric Touch", + description: "Your Shadow Word: Death can now be cast at any time, but deals 25% damage against targets above 20% health$?s15407[ and does not generate a Shadow Orb when used against them][]. \u000D\u000A\u000D\u000ACasting Shadow Word: Death now also does damage to you equivalent to the damage it would do to an enemy above 20% health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonicfortitude.jpg", + }, + [PriestMajorGlyph.GlyphOfLightspring]: { + name: "Glyph of Lightspring", + description: "Your Lightwell no longer automatically heals nearby targets, but can be clicked by players to deal $s2% more healing than normal.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_summonlightwell.jpg", + }, + [PriestMajorGlyph.GlyphOfLightwell]: { + name: "Glyph of Lightwell", + description: "Your Lightwell no longer automatically heals nearby targets, but can be clicked by players to deal $s2% more healing than normal.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_summonlightwell.jpg", }, }, minorGlyphs: { - [PriestMinorGlyph.GlyphOfFading]: { - name: 'Glyph of Fading', - description: 'Reduces the mana cost of your Fade spell by 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mage_invisibility.jpg', + [PriestMinorGlyph.GlyphOfShadowRavens]: { + name: "Glyph of Shadow Ravens", + description: "Your Shadow Orbs now appear as Shadow Ravens.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_priest_shadoworbs.jpg", }, - [PriestMinorGlyph.GlyphOfFortitude]: { - name: 'Glyph of Fortitude', - description: 'Reduces the mana cost of your Power Word: Fortitude spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_wordfortitude.jpg', - }, - [PriestMinorGlyph.GlyphOfLevitate]: { - name: 'Glyph of Levitate', - description: 'Your Levitate spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_layonhands.jpg', + [PriestMinorGlyph.GlyphOfBorrowedTime]: { + name: "Glyph of Borrowed Time", + description: "Your Borrowed Time is now displayed visually.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_borrowedtime.jpg", }, [PriestMinorGlyph.GlyphOfShackleUndead]: { - name: 'Glyph of Shackle Undead', - description: 'Increases the range of your Shackle Undead spell by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_slow.jpg', - }, - [PriestMinorGlyph.GlyphOfShadow]: { - name: 'Glyph of Shadow', - description: 'Alters the appearance of your Shadowform.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_questionmark.jpg', + name: "Glyph of Shackle Undead", + description: "Changes the appearance of your Shackle Undead.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_slow.jpg", }, - [PriestMinorGlyph.GlyphOfShadowProtection]: { - name: 'Glyph of Shadow Protection', - description: 'Increases the duration of your Shadow Protection spell by 10 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_holy_prayerofshadowprotection.jpg', + [PriestMinorGlyph.GlyphOfDarkArchangel]: { + name: "Glyph of Dark Archangel", + description: "When you apply Devouring Plague to a target, you take on the form of a Dark Archangel for $129208d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonvoidwalker.jpg", }, - [PriestMinorGlyph.GlyphOfShadowfiend]: { - name: 'Glyph of Shadowfiend', - description: 'Receive 5% of your maximum mana if your Shadowfiend dies from damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowfiend.jpg', + [PriestMinorGlyph.GlyphOfShadow]: { + name: "Glyph of Shadow", + description: "Alters the appearance of your Shadowform to be less transparent.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowform.jpg", + }, + [PriestMinorGlyph.GlyphOfTheHeavens]: { + name: "Glyph of the Heavens", + description: "Your Levitate targets will appear to be riding on a cloud for the duration of the spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_elemental_primal_air.jpg", + }, + [PriestMinorGlyph.GlyphOfConfession]: { + name: "Glyph of Confession", + description: "Teaches you the ability Confession.\u000D\u000A\u000D\u000ACompels a friendly target to confess a secret.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_soothingkiss.jpg", + }, + [PriestMinorGlyph.GlyphOfHolyResurrection]: { + name: "Glyph of Holy Resurrection", + description: "Your resurrection target appears bathed in holy light for the duration of the Resurrection cast.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_surgeoflight.jpg", + }, + [PriestMinorGlyph.GlyphOfTheValkyr]: { + name: "Glyph of the Val'kyr", + description: "While Spirit of Redemption is active, you now appear as a Val\'kyr.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_boss_svalasorrowgrave.jpg", + }, + [PriestMinorGlyph.GlyphOfShadowyFriends]: { + name: "Glyph of Shadowy Friends", + description: "Your Shadowform extends to your non-combat pets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_antishadow.jpg", + }, + [PriestMinorGlyph.GlyphOfAngels]: { + name: "Glyph of Angels", + description: "Your heal spells momentarily grant you angelic wings.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_priest_archangel.jpg", + }, + [PriestMinorGlyph.GlyphOfTheSha]: { + name: "Glyph of the Sha", + description: "Transforms your Shadowfiend and Mindbender into a Sha Beast.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_hand_1h_shaclaw.jpg", + }, + [PriestMinorGlyph.GlyphOfShiftedAppearances]: { + name: "Glyph of Shifted Appearances", + description: "Void Shift causes you and your target to exchange appearances for several seconds.\u000D\u000A\u000D\u000ADoes not affect mounted players.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_priest_voidshift.jpg", + }, + [PriestMinorGlyph.GlyphOfInspiredHymns]: { + name: "Glyph of Inspired Hymns", + description: "While channeling Hymns, a spirit appears above you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_divinehymn.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/rogue.ts b/ui/core/talents/rogue.ts index 86074298e3..fba17f62d4 100644 --- a/ui/core/talents/rogue.ts +++ b/ui/core/talents/rogue.ts @@ -1,195 +1,206 @@ -import { RogueMajorGlyph, RogueMinorGlyph,RoguePrimeGlyph, RogueTalents } from '../proto/rogue.js'; +import { RogueMajorGlyph, RogueMinorGlyph, RogueTalents } from '../proto/rogue.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import RogueTalentJson from './trees/rogue.json'; - -export const rogueTalentsConfig: TalentsConfig = newTalentsConfig(RogueTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import RogueTalentJson from './trees/rogue.json';export const rogueTalentsConfig: TalentsConfig = newTalentsConfig(RogueTalentJson); export const rogueGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [RoguePrimeGlyph.GlyphOfAdrenalineRush]: { - name: 'Glyph of Adrenaline Rush', - description: 'Increases the duration of Adrenaline Rush by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowworddominate.jpg', - }, - [RoguePrimeGlyph.GlyphOfBackstab]: { - name: 'Glyph of Backstab', - description: 'Your Backstab critical strikes grant you 5 Energy.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_backstab.jpg', - }, - [RoguePrimeGlyph.GlyphOfEviscerate]: { - name: 'Glyph of Eviscerate', - description: 'Increases the critical strike chance of Eviscerate by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_eviscerate.jpg', - }, - [RoguePrimeGlyph.GlyphOfHemorrhage]: { - name: 'Glyph of Hemorrhage', - description: 'Your Hemorrhage ability also causes the target to bleed, dealing 40% of the direct strike\'s damage over 24 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg', - }, - [RoguePrimeGlyph.GlyphOfKillingSpree]: { - name: 'Glyph of Killing Spree', - description: 'Increases the bonus to your damage while Killing Spree is active by an additional 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_murderspree.jpg', - }, - [RoguePrimeGlyph.GlyphOfMutilate]: { - name: 'Glyph of Mutilate', - description: 'Reduces the cost of Mutilate by 5 Energy.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_shadowstrikes.jpg', - }, - [RoguePrimeGlyph.GlyphOfRevealingStrike]: { - name: 'Glyph of Revealing Strike', - description: 'Increases Revealing Strike\'s bonus effectiveness to your finishing moves by an additional 10%', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_sword_97.jpg', - }, - [RoguePrimeGlyph.GlyphOfRupture]: { - name: 'Glyph of Rupture', - description: 'Increases the duration of Rupture by 4 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_rupture.jpg', - }, - [RoguePrimeGlyph.GlyphOfShadowDance]: { - name: 'Glyph of Shadow Dance', - description: 'Increases the duration of Shadow Dance by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_shadowdance.jpg', - }, - [RoguePrimeGlyph.GlyphOfSinisterStrike]: { - name: 'Glyph of Sinister Strike', - description: 'Your Sinister Strikes have a 20% chance to add an additional combo point.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_ritualofsacrifice.jpg', - }, - [RoguePrimeGlyph.GlyphOfSliceAndDice]: { - name: 'Glyph of Slice and Dice', - description: 'Increases the duration of Slice and Dice by 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_slicedice.jpg', - }, - [RoguePrimeGlyph.GlyphOfVendetta]: { - name: 'Glyph of Vendetta', - description: 'Increases the duration of your Vendetta ability by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_deadliness.jpg', - }, - }, majorGlyphs: { + [RogueMajorGlyph.GlyphOfShadowWalk]: { + name: "Glyph of Shadow Walk", + description: "Your Shadow Walk ability also increases your stealth detection while active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_envelopingshadows.jpg", + }, [RogueMajorGlyph.GlyphOfAmbush]: { - name: 'Glyph of Ambush', - description: 'Increases the range on Ambush by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_ambush.jpg', + name: "Glyph of Ambush", + description: "Increases the range of Ambush by $56813s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_ambush.jpg", }, [RogueMajorGlyph.GlyphOfBladeFlurry]: { - name: 'Glyph of Blade Flurry', - description: 'Reduces the penalty to Energy generation while Blade Flurry is active by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_punishingblow.jpg', - }, - [RogueMajorGlyph.GlyphOfBlind]: { - name: 'Glyph of Blind', - description: 'Your Blind ability also removes all damage over time effects from the target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_mindsteal.jpg', - }, - [RogueMajorGlyph.GlyphOfCloakOfShadows]: { - name: 'Glyph of Cloak of Shadows', - description: 'While Cloak of Shadows is active, you take 40% less physical damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_nethercloak.jpg', + name: "Glyph of Blade Flurry", + description: "Your attacks have a $56818s1% higher chance of applying Non-Lethal poisons while Blade Flurry is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_punishingblow.jpg", }, - [RogueMajorGlyph.GlyphOfCripplingPoison]: { - name: 'Glyph of Crippling Poison', - description: 'Increases the chance to inflict your target with Crippling Poison by an additional 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_poisonsting.jpg', + [RogueMajorGlyph.GlyphOfSharpKnives]: { + name: "Glyph of Sharp Knives", + description: "Your Fan of Kinves also damages the armor of its victims, applying 1 application of the Weakened Armor effect to each target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_stone_sharpeningstone_05.jpg", }, - [RogueMajorGlyph.GlyphOfDeadlyThrow]: { - name: 'Glyph of Deadly Throw', - description: 'Increases the slowing effect on Deadly Throw by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_throwingknife_06.jpg', + [RogueMajorGlyph.GlyphOfRecuperate]: { + name: "Glyph of Recuperate", + description: "Increases the healing of your Recuperate ability by an additional ${$m1/1000}.1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_recuperate.jpg", }, [RogueMajorGlyph.GlyphOfEvasion]: { - name: 'Glyph of Evasion', - description: 'Increases the duration of Evasion by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowward.jpg', + name: "Glyph of Evasion", + description: "Increases the duration of Evasion by ${$56799m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowward.jpg", }, - [RogueMajorGlyph.GlyphOfExposeArmor]: { - name: 'Glyph of Expose Armor', - description: 'Increases the duration of Expose Armor by 12 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_riposte.jpg', + [RogueMajorGlyph.GlyphOfRecovery]: { + name: "Glyph of Recovery", + description: "While Recuperate is active, you receive $s1% increased healing from other sources.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sturdyrecuperate.jpg", }, - [RogueMajorGlyph.GlyphOfFanOfKnives]: { - name: 'Glyph of Fan of Knives', - description: 'Increases the radius of your Fan of Knives ability by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_fanofknives.jpg', + [RogueMajorGlyph.GlyphOfExposeArmor]: { + name: "Glyph of Expose Armor", + description: "Your Expose Armor ability causes three applications of Weakened Armor.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_riposte.jpg", }, [RogueMajorGlyph.GlyphOfFeint]: { - name: 'Glyph of Feint', - description: 'Reduces the Energy cost of Feint by 20.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_feint.jpg', + name: "Glyph of Feint", + description: "Increases the duration of Feint by ${$56804m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_feint.jpg", }, [RogueMajorGlyph.GlyphOfGarrote]: { - name: 'Glyph of Garrote', - description: 'Increases the duration of your Garrote ability\'s silence effect by 1.5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_garrote.jpg', + name: "Glyph of Garrote", + description: "Increases the duration of your Garrote ability\'s silence effect by ${$56812m1/1000}.1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_garrote.jpg", }, [RogueMajorGlyph.GlyphOfGouge]: { - name: 'Glyph of Gouge', - description: 'Your Gouge ability no longer requires that the target be facing you.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_gouge.jpg', + name: "Glyph of Gouge", + description: "Your Gouge ability no longer requires that the target be facing you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_gouge.jpg", + }, + [RogueMajorGlyph.GlyphOfSmokeBomb]: { + name: "Glyph of Smoke Bomb", + description: "Increases the duration of your Smoke Bomb by ${$m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_smoke.jpg", + }, + [RogueMajorGlyph.GlyphOfCheapShot]: { + name: "Glyph of Cheap Shot", + description: "Increases the duration of your Cheap Shot by ${$m1/1000}.1 sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_cheapshot.jpg", + }, + [RogueMajorGlyph.GlyphOfHemorraghingVeins]: { + name: "Glyph of Hemorraghing Veins", + description: "Your Sanguinary Veins ability now also increases damage done to targets affected by your Hemorrhage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_holy_sealofsacrifice.jpg", }, [RogueMajorGlyph.GlyphOfKick]: { - name: 'Glyph of Kick', - description: 'Increases the cooldown of your Kick ability by 4 sec, but this cooldown is reduced by 6 sec when your Kick successfully interrupts a spell.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_kick.jpg', + name: "Glyph of Kick", + description: "Increases the cooldown of your Kick ability by ${$56805m1/1000} sec, but this cooldown is reduced by ${$56805m2/1000} sec when your Kick successfully interrupts a spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_kick.jpg", }, - [RogueMajorGlyph.GlyphOfPreparation]: { - name: 'Glyph of Preparation', - description: 'Your Preparation ability also instantly resets the cooldown of Kick, Dismantle, and Smoke Bomb.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_preparation.jpg', + [RogueMajorGlyph.GlyphOfRedirect]: { + name: "Glyph of Redirect", + description: "Reduces the cooldown of Redirect by ${$m1/-1000} seconds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_redirect.jpg", }, - [RogueMajorGlyph.GlyphOfSap]: { - name: 'Glyph of Sap', - description: 'Increases the duration of Sap against non-player targets by 80 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_sap.jpg', + [RogueMajorGlyph.GlyphOfShiv]: { + name: "Glyph of Shiv", + description: "Reduces the cooldown of your Shiv ability by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_throwingknife_04.jpg", }, [RogueMajorGlyph.GlyphOfSprint]: { - name: 'Glyph of Sprint', - description: 'Increases the movement speed of your Sprint ability by an additional 30%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sprint.jpg', + name: "Glyph of Sprint", + description: "Increases the movement speed of your Sprint ability by an additional $56811s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sprint.jpg", + }, + [RogueMajorGlyph.GlyphOfVendetta]: { + name: "Glyph of Vendetta", + description: "Reduces the damage bonus of your Vendetta ability by $s1% but increases its duration by ${$63249m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_deadliness.jpg", + }, + [RogueMajorGlyph.GlyphOfStealth]: { + name: "Glyph of Stealth", + description: "Reduces the cooldown of your Stealth ability by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_stealth.jpg", }, - [RogueMajorGlyph.GlyphOfTricksOfTheTrade]: { - name: 'Glyph of Tricks of the Trade', - description: 'Removes the Energy cost of your Tricks of the Trade ability but reduces the recipient\'s damage bonus by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_tricksofthetrade.jpg', + [RogueMajorGlyph.GlyphOfDeadlyMomentum]: { + name: "Glyph of Deadly Momentum", + description: "When you land a killing blow on an opponent that yields experience or honor, your Slice and Dice and Recuperate abilities are refreshed to their original duration.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_deadlymomentum.jpg", + }, + [RogueMajorGlyph.GlyphOfCloakOfShadows]: { + name: "Glyph of Cloak of Shadows", + description: "While Cloak of Shadows is active, you take $63269s1% less physical damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_nethercloak.jpg", }, [RogueMajorGlyph.GlyphOfVanish]: { - name: 'Glyph of Vanish', - description: 'Increases the duration of your Vanish effect by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_vanish.jpg', + name: "Glyph of Vanish", + description: "Increases the duration of your Vanish effect by ${$89758m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_vanish.jpg", + }, + [RogueMajorGlyph.GlyphOfBlind]: { + name: "Glyph of Blind", + description: "Your Blind ability also removes all damage over time effects from the target that would cause Blind to break early.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_mindsteal.jpg", }, }, minorGlyphs: { - [RogueMinorGlyph.GlyphOfBlurredSpeed]: { - name: 'Glyph of Blurred Speed', - description: 'Enables you to walk on water while your Sprint ability is active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sprint.jpg', + [RogueMinorGlyph.GlyphOfDecoy]: { + name: "Glyph of Decoy", + description: "When you Vanish, you leave behind a brief illusion that very closely resembles you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_vanish.jpg", }, - [RogueMinorGlyph.GlyphOfDistract]: { - name: 'Glyph of Distract', - description: 'Increases the range of your Distract ability by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_distract.jpg', + [RogueMinorGlyph.GlyphOfDetection]: { + name: "Glyph of Detection", + description: "Teaches you the ability Detection.\u000D\u000A\u000D\u000AFocus intently on trying to detect certain creatures.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_spy.jpg", }, - [RogueMinorGlyph.GlyphOfPickLock]: { - name: 'Glyph of Pick Lock', - description: 'Reduces the cast time of your Pick Lock ability by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_moonkey.jpg', + [RogueMinorGlyph.GlyphOfHemorrhage]: { + name: "Glyph of Hemorrhage", + description: "Your Hemorrhage ability only causes lingering damage over time to targets that were already afflicted by a Bleed effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg", }, [RogueMinorGlyph.GlyphOfPickPocket]: { - name: 'Glyph of Pick Pocket', - description: 'Increases the range of your Pick Pocket ability by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_bag_11.jpg', + name: "Glyph of Pick Pocket", + description: "Increases the range of your Pick Pocket ability by $58017s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_bag_11.jpg", }, - [RogueMinorGlyph.GlyphOfPoisons]: { - name: 'Glyph of Poisons', - description: 'You apply poisons to your weapons 50% faster.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/trade_brewpoison.jpg', + [RogueMinorGlyph.GlyphOfDistract]: { + name: "Glyph of Distract", + description: "Increases the range of your Distract ability by $58032s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_distract.jpg", + }, + [RogueMinorGlyph.GlyphOfPickLock]: { + name: "Glyph of Pick Lock", + description: "Reduces the cast time of your Pick Lock ability by $58027s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_moonkey.jpg", }, [RogueMinorGlyph.GlyphOfSafeFall]: { - name: 'Glyph of Safe Fall', - description: 'Increases the distance your Safe Fall ability allows you to fall without taking damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_feather_01.jpg', + name: "Glyph of Safe Fall", + description: "Increases the distance your Safe Fall ability allows you to fall without taking damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_feather_01.jpg", + }, + [RogueMinorGlyph.GlyphOfBlurredSpeed]: { + name: "Glyph of Blurred Speed", + description: "Enables you to walk on water while your Sprint ability is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sprint.jpg", + }, + [RogueMinorGlyph.GlyphOfPoisons]: { + name: "Glyph of Poisons", + description: "You apply poisons to your weapons $58038s1% faster.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/trade_brewpoison.jpg", + }, + [RogueMinorGlyph.GlyphOfKillingSpree]: { + name: "Glyph of Killing Spree", + description: "Your Killing Spree returns you to your starting location when the effect ends.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_murderspree.jpg", + }, + [RogueMinorGlyph.GlyphOfTricksOfTheTrade]: { + name: "Glyph of Tricks of the Trade", + description: "Your Tricks of the Trade ability no longer costs Energy, but also no longer increases the damage dealt by the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_tricksofthetrade.jpg", + }, + [RogueMinorGlyph.GlyphOfDisguise]: { + name: "Glyph of Disguise", + description: "When you Pick Pocket a humanoid enemy, you also copy their appearance for $121308d. Your disguise will unravel upon entering combat.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_disguise.jpg", + }, + [RogueMinorGlyph.ZzoldGlyphOfStabbing]: { + name: "zzOLD Glyph of Stabbing", + description: "When you Vanish, you leave behind a brief illusion that very closely resembles you.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_vanish.jpg", + }, + [RogueMinorGlyph.GlyphOfHeadhunting]: { + name: "Glyph of Headhunting", + description: "Your Throw and Deadly Throw abilities will now throw axes regardless of your currently equipped weapon.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_throwingaxe_03.jpg", + }, + [RogueMinorGlyph.GlyphOfImprovedDistraction]: { + name: "Glyph of Improved Distraction", + description: "Distract now summons a decoy at the target location.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_distract.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/shaman.ts b/ui/core/talents/shaman.ts index 3a3cc3907c..7d67fa4cc7 100644 --- a/ui/core/talents/shaman.ts +++ b/ui/core/talents/shaman.ts @@ -1,194 +1,241 @@ -import { ShamanMajorGlyph, ShamanMinorGlyph,ShamanPrimeGlyph, ShamanTalents } from '../proto/shaman.js'; +import { ShamanMajorGlyph, ShamanMinorGlyph, ShamanTalents } from '../proto/shaman.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import ShamanTalentJson from './trees/shaman.json'; +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import ShamanTalentJson from './trees/shaman.json';export const shamanTalentsConfig: TalentsConfig = newTalentsConfig(ShamanTalentJson); -export const shamanTalentsConfig: TalentsConfig = newTalentsConfig(ShamanTalentJson); export const shamanGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [ShamanPrimeGlyph.GlyphOfEarthShield]: { - name: 'Glyph of Earth Shield', - description: 'Increases the amount healed by your Earth Shield by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_skinofearth.jpg', - }, - [ShamanPrimeGlyph.GlyphOfEarthlivingWeapon]: { - name: 'Glyph of Earthliving Weapon', - description: 'Increases the effectiveness of your Earthliving weapon\'s periodic healing by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_unleashweapon_life.jpg', - }, - [ShamanPrimeGlyph.GlyphOfFeralSpirit]: { - name: 'Glyph of Feral Spirit', - description: 'Your spirit wolves gain an additional 30% of your attack power.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_feralspirit.jpg', - }, - [ShamanPrimeGlyph.GlyphOfFireElementalTotem]: { - name: 'Glyph of Fire Elemental Totem', - description: 'Reduces the cooldown of your Fire Elemental Totem by 5 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_elemental_totem.jpg', - }, - [ShamanPrimeGlyph.GlyphOfFlameShock]: { - name: 'Glyph of Flame Shock', - description: 'Increases the duration of your Flame Shock by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_flameshock.jpg', - }, - [ShamanPrimeGlyph.GlyphOfFlametongueWeapon]: { - name: 'Glyph of Flametongue Weapon', - description: 'Increases your spell critical strike chance by 2% on each of your weapons with Flametongue Weapon active.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_unleashweapon_flame.jpg', - }, - [ShamanPrimeGlyph.GlyphOfLavaBurst]: { - name: 'Glyph of Lava Burst', - description: 'Your Lava Burst spell deals 10% more damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_lavaburst.jpg', - }, - [ShamanPrimeGlyph.GlyphOfLavaLash]: { - name: 'Glyph of Lava Lash', - description: 'Increases the damage dealt by your Lava Lash ability by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_shaman_lavalash.jpg', - }, - [ShamanPrimeGlyph.GlyphOfLightningBolt]: { - name: 'Glyph of Lightning Bolt', - description: 'Increases the damage dealt by Lightning Bolt by 4%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg', - }, - [ShamanPrimeGlyph.GlyphOfRiptide]: { - name: 'Glyph of Riptide', - description: 'Increases the duration of Riptide by 40%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_riptide.jpg', - }, - [ShamanPrimeGlyph.GlyphOfShocking]: { - name: 'Glyph of Shocking', - description: 'Reduces your global cooldown when casting your shock spells by 0.0 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_earthshock.jpg', - }, - [ShamanPrimeGlyph.GlyphOfStormstrike]: { - name: 'Glyph of Stormstrike', - description: 'Increases the critical strike chance bonus from your Stormstrike ability by an additional 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_shaman_stormstrike.jpg', - }, - [ShamanPrimeGlyph.GlyphOfUnleashedLightning]: { - name: 'Glyph of Unleashed Lightning', - description: 'Allows Lightning Bolt to be cast while moving.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightning.jpg', - }, - [ShamanPrimeGlyph.GlyphOfWaterShield]: { - name: 'Glyph of Water Shield', - description: 'Increases the passive mana regeneration of your Water Shield spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_shaman_watershield.jpg', - }, - [ShamanPrimeGlyph.GlyphOfWindfuryWeapon]: { - name: 'Glyph of Windfury Weapon', - description: 'Increases the chance per swing for Windfury Weapon to trigger by 2%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_unleashweapon_wind.jpg', - }, - }, majorGlyphs: { - [ShamanMajorGlyph.GlyphOfChainHeal]: { - name: 'Glyph of Chain Heal', - description: 'Increases healing done by your Chain Heal spell to targets beyond the first by 15%, but decreases the amount received by the initial target by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingwavegreater.jpg', + [ShamanMajorGlyph.GlyphOfUnstableEarth]: { + name: "Glyph of Unstable Earth", + description: "Causes your Earthquake spell to also reduce the movement speed of affected targets by $s1% for $77478d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_earthquake.jpg", }, [ShamanMajorGlyph.GlyphOfChainLightning]: { - name: 'Glyph of Chain Lightning', - description: 'Your Chain Lightning spell now strikes 2 additional targets, but deals 10% less initial damage.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_chainlightning.jpg', - }, - [ShamanMajorGlyph.GlyphOfElementalMastery]: { - name: 'Glyph of Elemental Mastery', - description: 'While your Elemental Mastery ability is active, you take 20% less damage from all sources.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_wispheal.jpg', + name: "Glyph of Chain Lightning", + description: "$@spelldesc55538", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_chainlightning.jpg", + }, + [ShamanMajorGlyph.GlyphOfSpiritWalk]: { + name: "Glyph of Spirit Walk", + description: "Reduces the cooldown of your Spirit Walk ability by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_tracking.jpg", + }, + [ShamanMajorGlyph.GlyphOfCapacitorTotem]: { + name: "Glyph of Capacitor Totem", + description: "Reduces the charging time of your Capacitor Totem by ${$m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_brilliance.jpg", + }, + [ShamanMajorGlyph.GlyphOfPurge]: { + name: "Glyph of Purge", + description: "Your Purge dispels $s1 additional Magic effect but has a ${$m2/1000} sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_purge.jpg", + }, + [ShamanMajorGlyph.GlyphOfFireElementalTotem]: { + name: "Glyph of Fire Elemental Totem", + description: "Reduces the cooldown and duration of your Fire Elemental Totem by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_elemental_totem.jpg", }, [ShamanMajorGlyph.GlyphOfFireNova]: { - name: 'Glyph of Fire Nova', - description: 'Increases the radius of your Fire Nova spell by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_firenova.jpg', + name: "Glyph of Fire Nova", + description: "Increases the radius of your Fire Nova spell by $55450s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_firenova.jpg", }, - [ShamanMajorGlyph.GlyphOfFrostShock]: { - name: 'Glyph of Frost Shock', - description: 'Increases the duration of your Frost Shock by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostshock.jpg', + [ShamanMajorGlyph.GlyphOfFlameShock]: { + name: "Glyph of Flame Shock", + description: "When your Flame Shock deals damage, it heals you for $55447s1% of the damage dealt.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_flameshock.jpg", }, - [ShamanMajorGlyph.GlyphOfGhostWolf]: { - name: 'Glyph of Ghost Wolf', - description: 'Your Ghost Wolf form grants an additional 5% movement speed.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_spiritwolf.jpg', - }, - [ShamanMajorGlyph.GlyphOfGroundingTotem]: { - name: 'Glyph of Grounding Totem', - description: 'Instead of absorbing a spell, your Grounding Totem reflects the next harmful spell back at its caster, but the cooldown of your Grounding Totem is increased by 35 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_groundingtotem.jpg', + [ShamanMajorGlyph.GlyphOfWindShear]: { + name: "Glyph of Wind Shear", + description: "Increases the school lockout duration of Wind Shear by ${$55451m1/1000} sec, but also increases the cooldown by ${$55451m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_cyclone.jpg", }, [ShamanMajorGlyph.GlyphOfHealingStreamTotem]: { - name: 'Glyph of Healing Stream Totem', - description: 'Your Healing Stream Totem also increases the Fire, Frost, and Nature resistance of party and raid members within 30 yards by 85.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_spear_04.jpg', + name: "Glyph of Healing Stream Totem", + description: "When your Healing Stream Totem heals an ally, it also reduces their Fire, Frost, and Nature damage taken by $119523s1% for $119523d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_spear_04.jpg", }, [ShamanMajorGlyph.GlyphOfHealingWave]: { - name: 'Glyph of Healing Wave', - description: 'Your Healing Wave also heals you for 20% of the healing effect when you heal someone else.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingwavegreater.jpg', + name: "Glyph of Healing Wave", + description: "Your Healing Wave also heals you for $55440s1% of the healing effect when you heal someone else.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingwavegreater.jpg", }, - [ShamanMajorGlyph.GlyphOfHex]: { - name: 'Glyph of Hex', - description: 'Reduces the cooldown of your Hex spell by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_hex.jpg', + [ShamanMajorGlyph.GlyphOfTotemicRecall]: { + name: "Glyph of Totemic Recall", + description: "Causes your Totemic Recall ability to return the full mana cost of any recalled totems.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_totemrecall.jpg", }, - [ShamanMajorGlyph.GlyphOfLightningShield]: { - name: 'Glyph of Lightning Shield', - description: 'Your Lightning Shield can no longer drop below 3 charges from dealing damage to attackers.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightningshield.jpg', + [ShamanMajorGlyph.GlyphOfTelluricCurrents]: { + name: "Glyph of Telluric Currents", + description: "Causes your Lightning Bolt to restore $\u003Cmana\u003E% of your mana when it strikes an enemy.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_lightning_lightningbolt01.jpg", }, - [ShamanMajorGlyph.GlyphOfShamanisticRage]: { - name: 'Glyph of Shamanistic Rage', - description: 'Activating your Shamanistic Rage ability also cleanses you of all dispellable Magic debuffs.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_shamanrage.jpg', + [ShamanMajorGlyph.GlyphOfGroundingTotem]: { + name: "Glyph of Grounding Totem", + description: "Instead of absorbing a spell, your Grounding Totem reflects the next harmful spell back at its caster, but the cooldown of your Grounding Totem is increased by ${$55441m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_groundingtotem.jpg", + }, + [ShamanMajorGlyph.GlyphOfSpiritwalkersGrace]: { + name: "Glyph of Spiritwalker's Grace", + description: "Increases the duration of your Spiritwalker\'s Grace by ${$55446m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_spiritwalkersgrace.jpg", + }, + [ShamanMajorGlyph.GlyphOfWaterShield]: { + name: "Glyph of Water Shield", + description: "Increases the mana generated reactively by your Water Shield when you are attacked by $s1%, but reduces the passive mana generation by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_shaman_watershield.jpg", + }, + [ShamanMajorGlyph.GlyphOfCleansingWaters]: { + name: "Glyph of Cleansing Waters", + description: "When you dispel a harmful Magic or Curse effect from an ally, you also heal the target for $s1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_regeneration_02.jpg", + }, + [ShamanMajorGlyph.GlyphOfFrostShock]: { + name: "Glyph of Frost Shock", + description: "Decreases the cooldown incurred by your Frost Shock by ${$55443m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_frostshock.jpg", + }, + [ShamanMajorGlyph.GlyphOfChaining]: { + name: "Glyph of Chaining", + description: "Increases the jump distance of your Chain Heal spell by $s2%, but gives the spell a ${$m1/1000} sec cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_druid_empoweredtouch.jpg", }, - [ShamanMajorGlyph.GlyphOfStoneclawTotem]: { - name: 'Glyph of Stoneclaw Totem', - description: 'Your Stoneclaw Totem also places a damage absorb shield on you, equal to 4 times the strength of the shield it places on your totems.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_stoneclawtotem.jpg', + [ShamanMajorGlyph.GlyphOfHealingStorm]: { + name: "Glyph of Healing Storm", + description: "Each application of Maelstrom Weapon also increases your direct healing done by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_maelstromweapon.jpg", + }, + [ShamanMajorGlyph.GlyphOfGhostWolf]: { + name: "Glyph of Ghost Wolf", + description: "While in Ghost Wolf form, you are less hindered by effects that would reduce movement speed.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_spiritwolf.jpg", }, [ShamanMajorGlyph.GlyphOfThunder]: { - name: 'Glyph of Thunder', - description: 'Reduces the cooldown on Thunderstorm by 10 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_thunderstorm.jpg', + name: "Glyph of Thunder", + description: "Reduces the cooldown on Thunderstorm by ${$63270m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_thunderstorm.jpg", }, - [ShamanMajorGlyph.GlyphOfTotemicRecall]: { - name: 'Glyph of Totemic Recall', - description: 'Causes your Totemic Recall ability to return an additional 50% of the mana cost of any recalled totems.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_totemrecall.jpg', + [ShamanMajorGlyph.GlyphOfFeralSpirit]: { + name: "Glyph of Feral Spirit", + description: "Increases the healing done by your Feral Spirits\' Spirit Hunt by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_feralspirit.jpg", + }, + [ShamanMajorGlyph.GlyphOfRiptide]: { + name: "Glyph of Riptide", + description: "Removes the cooldown of Riptide, but reduces the initial direct healing by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_riptide.jpg", + }, + [ShamanMajorGlyph.GlyphOfShamanisticRage]: { + name: "Glyph of Shamanistic Rage", + description: "Activating your Shamanistic Rage ability also cleanses you of all dispellable harmful Magic effects.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_shamanrage.jpg", + }, + [ShamanMajorGlyph.GlyphOfHex]: { + name: "Glyph of Hex", + description: "Reduces the cooldown of your Hex spell by ${$63291m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_hex.jpg", + }, + [ShamanMajorGlyph.GlyphOfTotemicVigor]: { + name: "Glyph of Totemic Vigor", + description: "Increases the health of your totems by $s1% of your maximum health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_relics_totemofrebirth.jpg", + }, + [ShamanMajorGlyph.GlyphOfLightningShield]: { + name: "Glyph of Lightning Shield", + description: "When your Lightning Shield is triggered, you take $142912s1% less damage for $142912d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_lightningshield.jpg", + }, + [ShamanMajorGlyph.GlyphOfPurging]: { + name: "Glyph of Purging", + description: "Successfully Purging a target now grants a stack of Maelstrom Weapon.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_improvedreincarnation.jpg", + }, + [ShamanMajorGlyph.GlyphOfEternalEarth]: { + name: "Glyph of Eternal Earth", + description: "Your Lightning Bolt has a chance to add a charge to your currently active Earth Shield. This cannot cause Earth Shield to exceed $s1 charges.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_improvedearthshield.jpg", }, }, minorGlyphs: { - [ShamanMinorGlyph.GlyphOfAstralRecall]: { - name: 'Glyph of Astral Recall', - description: 'Reduces the cooldown of your Astral Recall spell by 7.5 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_astralrecal.jpg', + [ShamanMinorGlyph.GlyphOfTheLakestrider]: { + name: "Glyph of the Lakestrider", + description: "You automatically gain Water Walking while you are in Ghost Wolf form.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_frost_windwalkon.jpg", }, - [ShamanMinorGlyph.GlyphOfRenewedLife]: { - name: 'Glyph of Renewed Life', - description: 'Your Reincarnation spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_improvedreincarnation.jpg', + [ShamanMinorGlyph.GlyphOfLavaLash]: { + name: "Glyph of Lava Lash", + description: "Your Lava Lash ability no longer spreads Flame Shock to nearby targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_shaman_lavalash.jpg", }, - [ShamanMinorGlyph.GlyphOfTheArcticWolf]: { - name: 'Glyph of the Arctic Wolf', - description: 'Alters the appearance of your Ghost Wolf transformation, causing it to resemble an arctic wolf.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_mount_whitedirewolf.jpg', + [ShamanMinorGlyph.GlyphOfAstralRecall]: { + name: "Glyph of Astral Recall", + description: "Reduces the cooldown of your Astral Recall spell by ${$m1/-60000} minutes.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_astralrecal.jpg", }, - [ShamanMinorGlyph.GlyphOfThunderstorm]: { - name: 'Glyph of Thunderstorm', - description: 'Increases the mana you receive from your Thunderstorm spell by 2%, but it no longer knocks enemies back or reduces their movement speed.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shaman_thunderstorm.jpg', + [ShamanMinorGlyph.GlyphOfFarSight]: { + name: "Glyph of Far Sight", + description: "Your Far Sight spell may be used indoors.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_farsight.jpg", }, - [ShamanMinorGlyph.GlyphOfWaterBreathing]: { - name: 'Glyph of Water Breathing', - description: 'Your Water Breathing spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonbreath.jpg', + [ShamanMinorGlyph.GlyphOfTheSpectralWolf]: { + name: "Glyph of the Spectral Wolf", + description: "Alters the appearance of your Ghost Wolf transformation, causing it to resemble a large, spectral wolf.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mount_whitedirewolf.jpg", }, - [ShamanMinorGlyph.GlyphOfWaterWalking]: { - name: 'Glyph of Water Walking', - description: 'Your Water Walking spell no longer requires a reagent.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_frost_windwalkon.jpg', + [ShamanMinorGlyph.GlyphOfTotemicEncirclement]: { + name: "Glyph of Totemic Encirclement", + description: "When you cast a totem spell, you also place unempowered totems for any elements that are not currently active. These totems have $s1 health and produce no other effects.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_shaman_totemrelocation.jpg", + }, + [ShamanMinorGlyph.GlyphOfThunderstorm]: { + name: "Glyph of Thunderstorm", + description: "Removes the knockback effect from your Thunderstorm spell.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_thunderstorm.jpg", + }, + [ShamanMinorGlyph.GlyphOfDeluge]: { + name: "Glyph of Deluge", + description: "Your Chain Heal now has a watery appearance.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_healingwavegreater.jpg", + }, + [ShamanMinorGlyph.GlyphOfSpiritRaptors]: { + name: "Glyph of Spirit Raptors", + description: "Your Spirit Wolves are replaced with Spirit Raptors.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/trade_archaeology_dinosaurskeleton.jpg", + }, + [ShamanMinorGlyph.GlyphOfLingeringAncestors]: { + name: "Glyph of Lingering Ancestors", + description: "Resurrecting someone with Ancestral Spirit causes a ghostly ancestor to follow them around for a short time.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shaman_ancestralawakening.jpg", + }, + [ShamanMinorGlyph.GlyphOfSpiritWolf]: { + name: "Glyph of Spirit Wolf", + description: "Ghost Wolf can be now be used while you are a ghost.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_spiritwolf.jpg", + }, + [ShamanMinorGlyph.GlyphOfFlamingSerpent]: { + name: "Glyph of Flaming Serpent", + description: "Your Searing Totem now resembles Vol\'jin\'s Serpent Ward.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_guardianward.jpg", + }, + [ShamanMinorGlyph.GlyphOfTheCompy]: { + name: "Glyph of the Compy", + description: "Your Hex now transforms enemies into a Compy.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_pet_raptor.jpg", + }, + [ShamanMinorGlyph.GlyphOfElementalFamiliars]: { + name: "Glyph of Elemental Familiars", + description: "Summons a random Fire, Water, or Nature familiar. Familiars of different types have a tendency to fight each other.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_pet_pandarenelemental.jpg", + }, + [ShamanMinorGlyph.GlyphOfAstralFixation]: { + name: "Glyph of Astral Fixation", + description: "Astral Recall now takes you to your capital\'s Earthshrine.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_astralrecalgroup.jpg", + }, + [ShamanMinorGlyph.GlyphOfRainOfFrogs]: { + name: "Glyph of Rain of Frogs", + description: "You summon a rain storm of frogs at your targeted location.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_pet_toad_blue.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/talents_picker.tsx b/ui/core/talents/talents_picker.tsx index 1f97887d04..9ba0bbd998 100644 --- a/ui/core/talents/talents_picker.tsx +++ b/ui/core/talents/talents_picker.tsx @@ -5,99 +5,47 @@ import { Component } from '../components/component.js'; import { CopyButton } from '../components/copy_button.js'; import { Input, InputConfig } from '../components/input.js'; import { Player } from '../player.js'; -import { PlayerClasses } from '../player_classes'; +import { PlayerSpecs } from '../player_specs'; import { Class, Spec } from '../proto/common.js'; import { ActionId } from '../proto_utils/action_id.js'; import { TypedEvent } from '../typed_event.js'; -import { isRightClick, sum } from '../utils.js'; +import { isRightClick } from '../utils.js'; import { classGlyphsConfig } from './factory'; import { GlyphsPicker } from './glyphs_picker'; -import { HunterPet } from './hunter_pet'; - -export const MAX_POINTS_PLAYER = 41; -const MAX_POINTS_HUNTER_PET = 17; -const MAX_POINTS_HUNTER_PET_BM = 21; - -const PLAYER_TREES_UNLOCK_POINT_THRESHOLD = 31; export interface TalentsPickerConfig extends InputConfig { playerClass: Class; - pointsPerRow: number; - trees: TalentsConfig; + playerSpec: Spec; + tree: TalentsConfig; } -export class TalentsPicker | HunterPet, TalentsProto> extends Input { +export class TalentsPicker, TalentsProto> extends Input { readonly modObject: ModObject; - readonly numRows: number; - readonly numCols: number; - readonly pointsPerRow: number; - - maxPoints: number; - private readonly config: TalentsPickerConfig; - readonly trees: Array>; + readonly tree: TalentTreePicker; constructor(parent: HTMLElement, modObject: ModObject, config: TalentsPickerConfig) { super(parent, 'talents-picker-root', modObject, { ...config }); this.modObject = modObject; this.config = config; - this.pointsPerRow = config.pointsPerRow; - this.numRows = Math.max(...config.trees.map(treeConfig => treeConfig.talents.map(talentConfig => talentConfig.location.rowIdx).flat()).flat()) + 1; - this.numCols = Math.max(...config.trees.map(treeConfig => treeConfig.talents.map(talentConfig => talentConfig.location.colIdx).flat()).flat()) + 1; - - if (this.isHunterPet()) { - if (this.modObject.player.isSpec(Spec.SpecBeastMasteryHunter)) { - this.maxPoints = MAX_POINTS_HUNTER_PET_BM; - } else { - this.maxPoints = MAX_POINTS_HUNTER_PET; - } - } else { - this.maxPoints = MAX_POINTS_PLAYER; - } - - const getPointsRemaining = (): number => this.maxPoints - modObject.getTalentTreePoints().reduce((sum, points) => sum + points, 0); const containerElemRef = ref(); - const pointsRemainingElemRef = ref(); const actionsContainerRef = ref(); - const carouselContainerRef = ref(); - const carouselPrevBtnRef = ref(); - const carouselNextBtnRef = ref(); + const talentsListRef = ref(); this.rootElem.appendChild(
-
- -
- +
, ); - const containerElem = containerElemRef.value!; - const carouselContainer = carouselContainerRef.value!; - const carouselPrevBtn = carouselPrevBtnRef.value!; - const carouselNextBtn = carouselNextBtnRef.value!; - - modObject.talentsChangeEmitter.on(() => (pointsRemainingElemRef.value!.textContent = `${getPointsRemaining()}`)); + const talentsListContainer = talentsListRef.value!; new CopyButton(actionsContainerRef.value!, { extraCssClasses: ['btn-sm', 'btn-outline-primary', 'copy-talents'], @@ -106,45 +54,14 @@ export class TalentsPicker | HunterPet, Talen tooltip: 'Copy talent string', }); - this.trees = this.config.trees.map((treeConfig, i) => { - const carouselItem = document.createElement('div'); - carouselContainer.appendChild(carouselItem); - - carouselItem.classList.add('carousel-item'); - // Set middle talents active by default for mobile slider - if (i === 1) carouselItem.classList.add('active'); + this.tree = new TalentTreePicker(talentsListContainer, this.config.tree, this, config.playerSpec); + this.tree.rows.forEach(row => row.forEach(talent => talent.setSelected(false))); - return new TalentTreePicker(carouselItem, treeConfig, this, config.playerClass, i); - }); - this.trees.forEach(tree => tree.talents.forEach(talent => talent.setPoints(0, false))); - - if (!this.isHunterPet()) { - let carouselitemIdx = 0; - const slidePrev = () => { - if (carouselitemIdx >= 1) return; - carouselitemIdx += 1; - carouselContainer.style.transform = `translateX(${33.3 * carouselitemIdx}%)`; - carouselContainer.children[Math.abs(carouselitemIdx - 2) % 3]!.classList.remove('active'); - carouselContainer.children[Math.abs(carouselitemIdx - 1) % 3]!.classList.add('active'); - }; - const slideNext = () => { - if (carouselitemIdx <= -1) return; - carouselitemIdx -= 1; - carouselContainer.style.transform = `translateX(${33.3 * carouselitemIdx}%)`; - carouselContainer.children[Math.abs(carouselitemIdx) % 3]!.classList.remove('active'); - carouselContainer.children[Math.abs(carouselitemIdx) + (1 % 3)]!.classList.add('active'); - }; - - carouselPrevBtn.addEventListener('click', slidePrev); - carouselNextBtn.addEventListener('click', slideNext); - - if (this.isPlayer()) { - new GlyphsPicker(this.rootElem, this.modObject, classGlyphsConfig[this.modObject.getClass()]); - } + if (this.isPlayer()) { + new GlyphsPicker(this.rootElem, this.modObject, classGlyphsConfig[this.modObject.getClass()]); } this.init(); - this.updatePlayerTrees(); } getInputElem(): HTMLElement { @@ -152,279 +69,120 @@ export class TalentsPicker | HunterPet, Talen } getInputValue(): string { - return this.trees - .map(tree => tree.getTalentsString()) - .join('-') - .replace(/-+$/g, ''); + return this.tree.getTalentsString(); } setInputValue(newValue: string) { - const parts = newValue.split('-'); - this.trees.forEach((tree, idx) => tree.setTalentsString(parts[idx] || '')); - this.updateTrees(); - } - - updateTrees() { - if (this.isFull()) { - this.rootElem.classList.add('talents-full'); - } else { - this.rootElem.classList.remove('talents-full'); - } - this.trees.forEach(tree => tree.update()); - - // Disable other player trees if the first tree is not filled to 31 points - this.updatePlayerTrees(); - } - - get numPoints() { - return sum(this.trees.map(tree => tree.numPoints)); - } - - isFull() { - return this.numPoints >= this.maxPoints; - } - - setMaxPoints(newMaxPoints: number) { - if (newMaxPoints != this.maxPoints) { - this.maxPoints = newMaxPoints; - this.updateTrees(); - } + this.tree.setTalentsString(newValue); } isPlayer(): this is TalentsPicker, TalentsProto> { return !!(this.modObject as unknown as Player)?.playerClass; } - - isHunterPet(): this is TalentsPicker, TalentsProto> { - return !this.isPlayer(); - } - - private updatePlayerTrees() { - if (this.isPlayer()) { - const specNumber = this.modObject.getPlayerSpec().specIndex; - const pointsSpent = this.trees[specNumber].numPoints; - - if (pointsSpent < PLAYER_TREES_UNLOCK_POINT_THRESHOLD) { - [0, 1, 2].forEach(i => { - if (![specNumber].includes(i)) { - this.trees[i].rootElem.classList.add('disabled'); - this.trees[i].resetPoints(); - } else { - this.trees[i].rootElem.classList.remove('disabled'); - } - }); - } else { - this.enableSecondaryPlayerTrees(); - } - } - } - - private enableSecondaryPlayerTrees() { - this.trees.forEach(tree => tree.rootElem.classList.remove('disabled')); - } } class TalentTreePicker extends Component { - private readonly config: TalentTreeConfig; - private readonly title: HTMLElement; - private readonly pointsElem: HTMLElement; - - readonly talents: Array>; + readonly rows: Array>>; readonly picker: TalentsPicker; - // The current number of points in this tree - numPoints: number; - - constructor(parent: HTMLElement, config: TalentTreeConfig, picker: TalentsPicker, klass: Class, specNumber: number) { + constructor(parent: HTMLElement, config: TalentTreeConfig, picker: TalentsPicker, playerSpec: Spec) { super(parent, 'talent-tree-picker-root'); - this.config = config; - this.numPoints = 0; this.picker = picker; - this.rootElem.appendChild( + const resetButton = ref(); + this.rows = config.talents.reduce>>>((acc, talent) => { + if (!acc[talent.location.rowIdx]) acc[talent.location.rowIdx] = []; + + acc[talent.location.rowIdx][talent.location.colIdx] = new TalentPicker(null, talent, this); + + return acc; + }, []); + + this.rootElem.replaceChildren( <>
- - -
-
-
+
+
+ {this.rows.map((row, rowIdx) => ( +
+
{(rowIdx + 1) * 15}
+ {row.map(talent => talent.rootElem)} +
+ ))} +
, ); - this.title = this.rootElem.getElementsByClassName('talent-tree-title')[0] as HTMLElement; - this.pointsElem = this.rootElem.querySelector('.talent-tree-points') as HTMLElement; - - const background = this.rootElem.querySelector('.talent-tree-background') as HTMLElement; - background.style.backgroundImage = `url('${config.backgroundUrl}')`; - - const main = this.rootElem.querySelector('.talent-tree-main') as HTMLElement; - main.style.gridTemplateRows = `repeat(${this.picker.numRows}, 1fr)`; - // Add 2 for spacing on the sides - main.style.gridTemplateColumns = `repeat(${this.picker.numCols}, 1fr)`; - - const iconSize = '3.5rem'; - main.style.height = `calc(${iconSize} * ${this.picker.numRows})`; - main.style.maxWidth = `calc(${iconSize} * ${this.picker.numCols})`; - this.rootElem.style.maxWidth = `calc(${iconSize} * ${this.picker.numCols + 2})`; - - this.talents = config.talents.map(talent => new TalentPicker(main, talent, this)); - // Process parent<->child mapping - this.talents.forEach(talent => { - if (talent.config.prereqLocation) { - this.getTalent(talent.config.prereqLocation).config.childLocations!.push(talent.config.location); - } - }); - // Loop through all and have talent add in divs/items for child dependencies - // It'd be nicer to have this in talent constructor but json would have to be updated - const recurseCalcIdx = (t: TalentPicker, z: number) => { - t.initChildReqs(); - t.zIndex = z; - for (const cl of t.config.childLocations!) { - const c = this.getTalent(cl); - c.parentReq = t.getChildReqArrow(cl); - recurseCalcIdx(c, z - 2); - } - }; - // Start at top of each heirachy chain and recurse down - for (const t of this.talents) { - if (t.config.childLocations!.length == 0) continue; - if (t.config.prereqLocation !== undefined) continue; - recurseCalcIdx(t, 20); - } - const resetBtn = this.rootElem.querySelector('.talent-tree-reset') as HTMLElement; + const resetBtn = resetButton.value!; tippy(resetBtn, { content: 'Reset talent points' }); resetBtn.addEventListener('click', _event => this.resetPoints()); } - update() { - this.title.innerHTML = this.config.name; - this.pointsElem.textContent = `${this.numPoints} / ${this.picker.maxPoints}`; - this.talents.forEach(talent => talent.update()); - } - getTalent(location: TalentLocation): TalentPicker { - const talent = this.talents.find(talent => talent.getRow() == location.rowIdx && talent.getCol() == location.colIdx); + const talent = this.rows[location.rowIdx].find(talent => talent.getCol() == location.colIdx); if (!talent) throw new Error('No talent found with location: ' + location); return talent; } getTalentsString(): string { - return this.talents - .map(talent => String(talent.getPoints())) - .join('') - .replace(/0+$/g, ''); + const selectedTalents = Array.from(Array(6), (_, rowIdx) => { + const talent = this.rows[rowIdx].find(talent => talent.getRow() == rowIdx && talent.isSelected()); + return talent ? talent.getCol() + 1 : 0; + }); + return selectedTalents.join(''); } setTalentsString(str: string) { - this.talents.forEach((talent, idx) => talent.setPoints(Number(str.charAt(idx)), false)); + const talentRows = str.split('').map(Number); + this.rows.forEach((row, rowIdx) => + row.forEach(talent => { + talent.setSelected(talent.getCol() + 1 === talentRows[rowIdx]); + }), + ); } resetPoints() { - this.talents.forEach(talent => talent.setPoints(0, false)); + this.rows.forEach(row => row.forEach(talent => talent.setSelected(false))); this.picker.inputChanged(TypedEvent.nextEventID()); } - private getTreeIcon(klass: Class, specNumber: number): string { - if (this.picker.isHunterPet()) { - const fileName = ['ability_druid_swipe.jpg', 'ability_hunter_pet_bear.jpg', 'ability_hunter_combatexperience.jpg'][specNumber]; - return `https://wow.zamimg.com/images/wow/icons/medium/${fileName}`; - } else { - return Object.values(PlayerClasses.fromProto(klass).specs)[specNumber].getIcon('medium'); - } - } -} - -type ReqDir = 'down' | 'right' | 'left' | 'rightdown' | 'leftdown'; -class TalentReqArrow extends Component { - private dir: ReqDir; - private zIdx: number; - readonly parentLoc: TalentLocation; - readonly childLoc: TalentLocation; - - constructor(parent: HTMLElement, parentLoc: TalentLocation, childLoc: TalentLocation) { - super(parent, 'talent-picker-req-arrow', document.createElement('div')); - this.zIdx = 0; - this.parentLoc = parentLoc; - this.childLoc = childLoc; - - this.rootElem.style.gridRow = String(parentLoc.rowIdx + 1); - this.rootElem.style.gridColumn = String(parentLoc.colIdx + 1); - - let rowEnd = Math.max(parentLoc.rowIdx, childLoc.rowIdx) + 1; - let colEnd = Math.max(parentLoc.colIdx, childLoc.colIdx) + 1; - - // Calculate where we need to 'point' - if (parentLoc.rowIdx == childLoc.rowIdx) { - this.dir = parentLoc.colIdx < childLoc.colIdx ? 'right' : 'left'; - this.rootElem.dataset.reqArrowColSize = String(Math.abs(parentLoc.colIdx - childLoc.colIdx)); - colEnd = this.dir == 'left' ? colEnd + 1 : colEnd - 1; - } else { - if (parentLoc.colIdx == childLoc.colIdx) { - this.dir = 'down'; - this.rootElem.dataset.reqArrowRowSize = String(Math.abs(parentLoc.rowIdx - childLoc.rowIdx)); - rowEnd += 1; - } else { - this.dir = parentLoc.colIdx < childLoc.colIdx ? 'rightdown' : 'leftdown'; - this.rootElem.dataset.reqArrowColSize = String(Math.abs(parentLoc.colIdx - childLoc.colIdx)); - this.rootElem.dataset.reqArrowRowSize = String(Math.abs(parentLoc.rowIdx - childLoc.rowIdx)); - rowEnd += 1; - colEnd = this.dir == 'rightdown' ? colEnd + 1 : colEnd - 1; - this.rootElem.appendChild(
); - } - } - - this.rootElem.style.gridRowEnd = String(rowEnd); - this.rootElem.style.gridColumnEnd = String(colEnd); - this.rootElem.classList.add(`talent-picker-req-arrow-${this.dir}`); - } - - get zIndex() { - return this.zIdx; - } - - set zIndex(z: number) { - this.zIdx = z; - this.rootElem.style.zIndex = String(z); - } - - setReqFufilled(isFufilled: boolean) { - if (isFufilled) this.rootElem.dataset.reqActive = 'true'; - else delete this.rootElem.dataset.reqActive; + private getTreeIcon(playerSpec: number): string { + return PlayerSpecs.fromProto(playerSpec).getIcon('medium'); } } class TalentPicker extends Component { readonly config: TalentConfig; private readonly tree: TalentTreePicker; - private readonly pointsDisplay: HTMLElement; + private icon: HTMLElement; private longTouchTimer?: number; - private childReqs: TalentReqArrow[]; private zIdx: number; - parentReq: TalentReqArrow | null; - constructor(parent: HTMLElement, config: TalentConfig, tree: TalentTreePicker) { + constructor(parent: HTMLElement | null, config: TalentConfig, tree: TalentTreePicker) { super(parent, 'talent-picker-root', document.createElement('a')); this.config = config; this.tree = tree; - this.childReqs = []; - this.parentReq = null; this.zIdx = 0; - this.rootElem.style.gridRow = String(this.config.location.rowIdx + 1); - this.rootElem.style.gridColumn = String(this.config.location.colIdx + 1); + const iconRef = ref(); - this.rootElem.dataset.maxPoints = String(this.config.maxPoints); - this.rootElem.dataset.whtticon = 'false'; + this.rootElem.replaceChildren( + <> +
+
+ {config.fancyName} +
+ , + ); - this.pointsDisplay = document.createElement('span'); - this.pointsDisplay.classList.add('talent-picker-points'); - this.rootElem.appendChild(this.pointsDisplay); + this.icon = iconRef.value!; this.rootElem.addEventListener('click', event => { event.preventDefault(); @@ -441,7 +199,7 @@ class TalentPicker extends Component { this.rootElem.addEventListener('touchstart', event => { event.preventDefault(); this.longTouchTimer = window.setTimeout(() => { - this.setPoints(0, true); + this.setSelected(false); this.tree.picker.inputChanged(TypedEvent.nextEventID()); this.longTouchTimer = undefined; }, 750); @@ -454,41 +212,16 @@ class TalentPicker extends Component { } else { return; } - let newPoints = this.getPoints() + 1; - if (this.config.maxPoints < newPoints) { - newPoints = 0; - } - this.setPoints(newPoints, true); + this.setSelected(true); this.tree.picker.inputChanged(TypedEvent.nextEventID()); }); this.rootElem.addEventListener('mousedown', event => { - const rightClick = isRightClick(event); - if (rightClick) { - this.setPoints(this.getPoints() - 1, true); - } else { - this.setPoints(this.getPoints() + 1, true); - } + const shouldAdd = !isRightClick(event); + this.setSelected(shouldAdd); this.tree.picker.inputChanged(TypedEvent.nextEventID()); }); } - initChildReqs(): void { - if (this.config.childLocations!.length == 0) return; - - for (const c of this.config.childLocations!) { - this.childReqs.push(new TalentReqArrow(this.rootElem.parentElement!, this.config.location, c)); - } - } - - getChildReqArrow(loc: TalentLocation): TalentReqArrow { - for (const c of this.childReqs) { - if (c.childLoc === loc) { - return c; - } - } - throw Error('missing child prereq?'); - } - get zIndex() { return this.zIdx; } @@ -496,10 +229,6 @@ class TalentPicker extends Component { set zIndex(z: number) { this.zIdx = z; this.rootElem.style.zIndex = String(this.zIdx); - - for (const c of this.childReqs) { - c.zIndex = this.zIdx - 1; - } } getRow(): number { @@ -510,119 +239,30 @@ class TalentPicker extends Component { return this.config.location.colIdx; } - getPoints(): number { - const pts = Number(this.rootElem.dataset.points); - return isNaN(pts) ? 0 : pts; + isSelected(): boolean { + return this.rootElem.dataset.selected === 'true'; } - isFull(): boolean { - return this.getPoints() >= this.config.maxPoints; - } - - // Returns whether setting the points to newPoints would be a valid talent tree. - canSetPoints(newPoints: number): boolean { - const oldPoints = this.getPoints(); - - if (newPoints > oldPoints) { - const additionalPoints = newPoints - oldPoints; - - if (this.tree.picker.numPoints + additionalPoints > this.tree.picker.maxPoints) { - return false; - } - - if (this.tree.numPoints < this.getRow() * this.tree.picker.pointsPerRow) { - return false; - } - - if (this.config.prereqLocation) { - if (!this.tree.getTalent(this.config.prereqLocation).isFull()) return false; - } - } else { - const removedPoints = oldPoints - newPoints; - - // Figure out whether any lower talents would have the row requirement - // broken by subtracting points. - const pointTotalsByRow = [...Array(this.tree.picker.numRows).keys()] - .map(rowIdx => this.tree.talents.filter(talent => talent.getRow() == rowIdx)) - .map(talentsInRow => sum(talentsInRow.map(talent => talent.getPoints()))); - pointTotalsByRow[this.getRow()] -= removedPoints; - - const cumulativeTotalsByRow = pointTotalsByRow.map((_, rowIdx) => sum(pointTotalsByRow.slice(0, rowIdx + 1))); - - if ( - !this.tree.talents.every( - talent => - talent.getPoints() == 0 || - talent.getRow() == 0 || - cumulativeTotalsByRow[talent.getRow() - 1] >= talent.getRow() * this.tree.picker.pointsPerRow, - ) - ) { - return false; - } - - for (const c of this.config.childLocations!) { - if (this.tree.getTalent(c).getPoints() > 0) return false; - } + setSelected(isSelected: boolean) { + if (isSelected) { + const currentlySet = this.tree.rows[this.getRow()].find(talent => talent.getCol() !== this.getCol() && talent.isSelected()); + if (currentlySet?.isSelected()) currentlySet.setSelected(false); } - return true; - } - setPoints(newPoints: number, checkValidity: boolean) { - const oldPoints = this.getPoints(); - newPoints = Math.max(0, newPoints); - newPoints = Math.min(this.config.maxPoints, newPoints); + this.rootElem.dataset.selected = String(isSelected); - if (checkValidity && !this.canSetPoints(newPoints)) return; - - this.tree.numPoints += newPoints - oldPoints; - this.rootElem.dataset.points = String(newPoints); - - this.pointsDisplay.textContent = newPoints + '/' + this.config.maxPoints; - - if (this.isFull()) { - this.rootElem.classList.add('talent-full'); - } else { - this.rootElem.classList.remove('talent-full'); - } - - const spellId = this.getSpellIdForPoints(newPoints); - ActionId.fromSpellId(spellId) + ActionId.fromSpellId(this.config.spellId) .fill() .then(actionId => { actionId.setWowheadHref(this.rootElem as HTMLAnchorElement); - this.rootElem.style.backgroundImage = `url('${actionId.iconUrl}')`; + this.icon.style.backgroundImage = `url('${actionId.iconUrl}')`; }); } - - getSpellIdForPoints(numPoints: number): number { - // 0-indexed rank of talent - const rank = Math.max(0, numPoints - 1); - - if (this.config.spellIds[rank]) { - return this.config.spellIds[rank]; - } else { - throw new Error(`No rank ${numPoints} for talent ${String(this.config.fieldName)}`); - } - } - - update() { - const canSetPoints = this.canSetPoints(this.getPoints() + 1); - if (canSetPoints) { - this.rootElem.classList.add('talent-picker-can-add'); - } else { - this.rootElem.classList.remove('talent-picker-can-add'); - } - - if (this.parentReq) { - this.parentReq.setReqFufilled(canSetPoints || this.isFull()); - } - } } -export type TalentsConfig = Array>; +export type TalentsConfig = TalentTreeConfig; export type TalentTreeConfig = { - name: string; backgroundUrl: string; talents: Array>; }; @@ -635,47 +275,25 @@ export type TalentLocation = { }; export type TalentConfig = { - fieldName?: keyof TalentsProto | string; - + fieldName: keyof TalentsProto | string; + fancyName: string; location: TalentLocation; - - // Location of a prerequisite talent, if any - prereqLocation?: TalentLocation; - - // Child talents depending on this talent. This is populated automatically. - childLocations?: TalentLocation[]; - - // Spell ID for each rank of this talent. - // Omitted ranks will be inferred by incrementing from the last provided rank. - spellIds: Array; - - maxPoints: number; + spellId: number; }; -export function newTalentsConfig(talents: TalentsConfig): TalentsConfig { - talents.forEach(tree => { - tree.talents.forEach((talent, i) => { - talent.childLocations = []; - // Validate that talents are given in the correct order (left-to-right top-to-bottom). - if (i != 0) { - const prevTalent = tree.talents[i - 1]; - if ( - talent.location.rowIdx < prevTalent.location.rowIdx || - (talent.location.rowIdx == prevTalent.location.rowIdx && talent.location.colIdx <= prevTalent.location.colIdx) - ) { - throw new Error(`Out-of-order talent: ${String(talent.fieldName)}`); - } - } - - // Infer omitted spell IDs. - if (talent.spellIds.length < talent.maxPoints) { - let curSpellId = talent.spellIds[talent.spellIds.length - 1]; - for (let pointIdx = talent.spellIds.length; pointIdx < talent.maxPoints; pointIdx++) { - curSpellId++; - talent.spellIds.push(curSpellId); - } +export function newTalentsConfig(talentConfig: TalentsConfig): TalentsConfig { + talentConfig.talents.forEach((talent, i) => { + // Validate that talents are given in the correct order (left-to-right top-to-bottom). + if (i != 0) { + const prevTalent = talentConfig.talents[i - 1]; + if ( + talent.location.rowIdx < prevTalent.location.rowIdx || + (talent.location.rowIdx == prevTalent.location.rowIdx && talent.location.colIdx <= prevTalent.location.colIdx) + ) { + throw new Error(`Out-of-order talent: ${String(talent.fancyName)}`); } - }); + } }); - return talents; + + return talentConfig; } diff --git a/ui/core/talents/trees/death_knight.json b/ui/core/talents/trees/death_knight.json index bd120592fb..17518bdd50 100644 --- a/ui/core/talents/trees/death_knight.json +++ b/ui/core/talents/trees/death_knight.json @@ -1,828 +1,168 @@ -[ - { - "name": "Blood", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/398.jpg", - "talents": [ - { - "fieldName": "butchery", - "fancyName": "Butchery", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 48979, - 49483 - ], - "maxPoints": 2 - }, - { - "fieldName": "bladeBarrier", - "fancyName": "Blade Barrier", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 49182, - 49500, - 49501 - ], - "maxPoints": 3 - }, - { - "fieldName": "bladedArmor", - "fancyName": "Bladed Armor", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 48978, - 49390, - 49391, - 49393 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedBloodTap", - "fancyName": "Improved Blood Tap", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 94553, - 94555 - ], - "maxPoints": 2 - }, - { - "fieldName": "scentOfBlood", - "fancyName": "Scent Of Blood", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 49004, - 49508, - 49509 - ], - "maxPoints": 3 - }, - { - "fieldName": "scarletFever", - "fancyName": "Scarlet Fever", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 81131, - 81132 - ], - "maxPoints": 2 - }, - { - "fieldName": "handOfDoom", - "fancyName": "Hand Of Doom", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 85793, - 85794 - ], - "maxPoints": 2 - }, - { - "fieldName": "bloodCakedBlade", - "fancyName": "Blood Caked Blade", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 49219, - 49627, - 49628 - ], - "maxPoints": 3 - }, - { - "fieldName": "boneShield", - "fancyName": "Bone Shield", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 49222 - ], - "maxPoints": 1 - }, - { - "fieldName": "toughness", - "fancyName": "Toughness", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 49042, - 49786, - 49787 - ], - "maxPoints": 3 - }, - { - "fieldName": "abominationsMight", - "fancyName": "Abominations Might", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 53137, - 53138 - ], - "maxPoints": 2 - }, - { - "fieldName": "sanguineFortitude", - "fancyName": "Sanguine Fortitude", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 81125, - 81127 - ], - "maxPoints": 2 - }, - { - "fieldName": "bloodParasite", - "fancyName": "Blood Parasite", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 49027, - 49542 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedBloodPresence", - "fancyName": "Improved Blood Presence", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 50365, - 50371 - ], - "maxPoints": 2 - }, - { - "fieldName": "willOfTheNecropolis", - "fancyName": "Will Of The Necropolis", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 52284, - 81163, - 81164 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "runeTap", - "fancyName": "Rune Tap", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 48982 - ], - "maxPoints": 1 - }, - { - "fieldName": "vampiricBlood", - "fancyName": "Vampiric Blood", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 55233 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedDeathStrike", - "fancyName": "Improved Death Strike", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 62905, - 62908, - 81138 - ], - "maxPoints": 3 - }, - { - "fieldName": "crimsonScourge", - "fancyName": "Crimson Scourge", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 81135, - 81136 - ], - "maxPoints": 2 - }, - { - "fieldName": "dancingRuneWeapon", - "fancyName": "Dancing Rune Weapon", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 49028 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Frost", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/399.jpg", - "talents": [ - { - "fieldName": "runicPowerMastery", - "fancyName": "Runic Power Mastery", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 49455, - 50147, - 91145 - ], - "maxPoints": 3 - }, - { - "fieldName": "icyReach", - "fancyName": "Icy Reach", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 55061, - 55062 - ], - "maxPoints": 2 - }, - { - "fieldName": "nervesOfColdSteel", - "fancyName": "Nerves Of Cold Steel", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 49226, - 50137, - 50138 - ], - "maxPoints": 3 - }, - { - "fieldName": "annihilation", - "fancyName": "Annihilation", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 51468, - 51472, - 51473 - ], - "maxPoints": 3 - }, - { - "fieldName": "lichborne", - "fancyName": "Lichborne", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 49039 - ], - "maxPoints": 1 - }, - { - "fieldName": "onAPaleHorse", - "fancyName": "On A Pale Horse", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 51983, - 51986 - ], - "maxPoints": 2 - }, - { - "fieldName": "endlessWinter", - "fancyName": "Endless Winter", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 49137, - 49657 - ], - "maxPoints": 2 - }, - { - "fieldName": "mercilessCombat", - "fancyName": "Merciless Combat", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 49024, - 49538 - ], - "maxPoints": 2 - }, - { - "fieldName": "chillOfTheGrave", - "fancyName": "Chill Of The Grave", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 49149, - 50115 - ], - "maxPoints": 2 - }, - { - "fieldName": "killingMachine", - "fancyName": "Killing Machine", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 51123, - 51127, - 51128 - ], - "maxPoints": 3 - }, - { - "fieldName": "rime", - "fancyName": "Rime", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 49188, - 56822, - 59057 - ], - "maxPoints": 3 - }, - { - "fieldName": "pillarOfFrost", - "fancyName": "Pillar Of Frost", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 51271 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedIcyTalons", - "fancyName": "Improved Icy Talons", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 55610 - ], - "maxPoints": 1 - }, - { - "fieldName": "brittleBones", - "fancyName": "Brittle Bones", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 81327, - 81328 - ], - "maxPoints": 2 - }, - { - "fieldName": "chilblains", - "fancyName": "Chilblains", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 50040, - 50041 - ], - "maxPoints": 2 - }, - { - "fieldName": "hungeringCold", - "fancyName": "Hungering Cold", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 49203 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedFrostPresence", - "fancyName": "Improved Frost Presence", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 50384, - 50385 - ], - "maxPoints": 2 - }, - { - "fieldName": "threatOfThassarian", - "fancyName": "Threat Of Thassarian", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 65661, - 66191, - 66192 - ], - "maxPoints": 3 - }, - { - "fieldName": "mightOfTheFrozenWastes", - "fancyName": "Might Of The Frozen Wastes", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 81330, - 81332, - 81333 - ], - "maxPoints": 3 - }, - { - "fieldName": "howlingBlast", - "fancyName": "Howling Blast", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 49184 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Unholy", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/400.jpg", - "talents": [ - { - "fieldName": "unholyCommand", - "fancyName": "Unholy Command", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 49588, - 49589 - ], - "maxPoints": 2 - }, - { - "fieldName": "virulence", - "fancyName": "Virulence", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 48962, - 49567, - 49568 - ], - "maxPoints": 3 - }, - { - "fieldName": "epidemic", - "fancyName": "Epidemic", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 49036, - 49562, - 81334 - ], - "maxPoints": 3 - }, - { - "fieldName": "desecration", - "fancyName": "Desecration", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 55666, - 55667 - ], - "maxPoints": 2 - }, - { - "fieldName": "resilientInfection", - "fancyName": "Resilient Infection", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 81338, - 81339 - ], - "maxPoints": 2 - }, - { - "fieldName": "morbidity", - "fancyName": "Morbidity", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 48963, - 49564, - 49565 - ], - "maxPoints": 3 - }, - { - "fieldName": "runicCorruption", - "fancyName": "Runic Corruption", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 51459, - 51462 - ], - "maxPoints": 2 - }, - { - "fieldName": "unholyFrenzy", - "fancyName": "Unholy Frenzy", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 49016 - ], - "maxPoints": 1 - }, - { - "fieldName": "contagion", - "fancyName": "Contagion", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 91316, - 91319 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 2 - } - }, - { - "fieldName": "shadowInfusion", - "fancyName": "Shadow Infusion", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 48965, - 49571, - 49572 - ], - "maxPoints": 3 - }, - { - "fieldName": "deathsAdvance", - "fancyName": "Deaths Advance", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 96269, - 96270 - ], - "maxPoints": 2 - }, - { - "fieldName": "magicSuppression", - "fancyName": "Magic Suppression", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 49224, - 49610, - 49611 - ], - "maxPoints": 3 - }, - { - "fieldName": "rageOfRivendare", - "fancyName": "Rage Of Rivendare", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 51745, - 51746, - 91323 - ], - "maxPoints": 3 - }, - { - "fieldName": "unholyBlight", - "fancyName": "Unholy Blight", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 49194 - ], - "maxPoints": 1 - }, - { - "fieldName": "antiMagicZone", - "fancyName": "Anti Magic Zone", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 51052 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "improvedUnholyPresence", - "fancyName": "Improved Unholy Presence", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 50391, - 50392 - ], - "maxPoints": 2 - }, - { - "fieldName": "darkTransformation", - "fancyName": "Dark Transformation", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 63560 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 3 - } - }, - { - "fieldName": "ebonPlaguebringer", - "fancyName": "Ebon Plaguebringer", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 51099, - 51160 - ], - "maxPoints": 2 - }, - { - "fieldName": "suddenDoom", - "fancyName": "Sudden Doom", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 49018, - 49529, - 49530 - ], - "maxPoints": 3 - }, - { - "fieldName": "summonGargoyle", - "fancyName": "Summon Gargoyle", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 49206 - ], - "maxPoints": 1 - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "roilingBlood", + "fancyName": "Roiling Blood", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 108170 + }, + { + "fieldName": "plagueLeech", + "fancyName": "Plague Leech", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 123693 + }, + { + "fieldName": "unholyBlight", + "fancyName": "Unholy Blight", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 115989 + }, + { + "fieldName": "lichborne", + "fancyName": "Lichborne", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 49039 + }, + { + "fieldName": "antimagicZone", + "fancyName": "Anti-Magic Zone", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 51052 + }, + { + "fieldName": "purgatory", + "fancyName": "Purgatory", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 114556 + }, + { + "fieldName": "deathsAdvance", + "fancyName": "Death's Advance", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 96268 + }, + { + "fieldName": "chilblains", + "fancyName": "Chilblains", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 50041 + }, + { + "fieldName": "asphyxiate", + "fancyName": "Asphyxiate", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 108194 + }, + { + "fieldName": "deathPact", + "fancyName": "Death Pact", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 48743 + }, + { + "fieldName": "deathSiphon", + "fancyName": "Death Siphon", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 108196 + }, + { + "fieldName": "conversion", + "fancyName": "Conversion", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 119975 + }, + { + "fieldName": "bloodTap", + "fancyName": "Blood Tap", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 45529 + }, + { + "fieldName": "runicEmpowerment", + "fancyName": "Runic Empowerment", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 81229 + }, + { + "fieldName": "runicCorruption", + "fancyName": "Runic Corruption", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 51462 + }, + { + "fieldName": "gorefiendsGrasp", + "fancyName": "Gorefiend's Grasp", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 108199 + }, + { + "fieldName": "remorselessWinter", + "fancyName": "Remorseless Winter", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 108200 + }, + { + "fieldName": "desecratedGround", + "fancyName": "Desecrated Ground", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 108201 + } + ] +} diff --git a/ui/core/talents/trees/druid.json b/ui/core/talents/trees/druid.json index 70904a0968..38eed2bc48 100644 --- a/ui/core/talents/trees/druid.json +++ b/ui/core/talents/trees/druid.json @@ -1,881 +1,168 @@ -[ - { - "name": "Balance", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/752.jpg", - "talents": [ - { - "fieldName": "naturesGrace", - "fancyName": "Natures Grace", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 16880, - 61345, - 61346 - ], - "maxPoints": 3 - }, - { - "fieldName": "starlightWrath", - "fancyName": "Starlight Wrath", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 16814, - 16815, - 16816 - ], - "maxPoints": 3 - }, - { - "fieldName": "naturesMajesty", - "fancyName": "Natures Majesty", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 35363, - 35364 - ], - "maxPoints": 2 - }, - { - "fieldName": "genesis", - "fancyName": "Genesis", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 57810, - 57811, - 57812 - ], - "maxPoints": 3 - }, - { - "fieldName": "moonglow", - "fancyName": "Moonglow", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 16845, - 16846, - 16847 - ], - "maxPoints": 3 - }, - { - "fieldName": "balanceOfPower", - "fancyName": "Balance Of Power", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 33592, - 33596 - ], - "maxPoints": 2 - }, - { - "fieldName": "euphoria", - "fancyName": "Euphoria", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 81061, - 81062 - ], - "maxPoints": 2 - }, - { - "fieldName": "moonkinForm", - "fancyName": "Moonkin Form", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 24858 - ], - "maxPoints": 1 - }, - { - "fieldName": "typhoon", - "fancyName": "Typhoon", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 50516 - ], - "maxPoints": 1 - }, - { - "fieldName": "shootingStars", - "fancyName": "Shooting Stars", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 93398, - 93399 - ], - "maxPoints": 2 - }, - { - "fieldName": "owlkinFrenzy", - "fancyName": "Owlkin Frenzy", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 48389, - 48392, - 48393 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "galeWinds", - "fancyName": "Gale Winds", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 48488, - 48514 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "solarBeam", - "fancyName": "Solar Beam", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 78675 - ], - "maxPoints": 1 - }, - { - "fieldName": "dreamstate", - "fancyName": "Dreamstate", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 33597, - 33599 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "forceOfNature", - "fancyName": "Force Of Nature", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 33831 - ], - "maxPoints": 1 - }, - { - "fieldName": "sunfire", - "fancyName": "Sunfire", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 93401 - ], - "maxPoints": 1 - }, - { - "fieldName": "earthAndMoon", - "fancyName": "Earth And Moon", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 48506 - ], - "maxPoints": 1 - }, - { - "fieldName": "fungalGrowth", - "fancyName": "Fungal Growth", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 78788, - 78789 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "lunarShower", - "fancyName": "Lunar Shower", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 33603, - 33605, - 33604 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 2 - } - }, - { - "fieldName": "starfall", - "fancyName": "Starfall", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 48505 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Feral Combat", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/750.jpg", - "talents": [ - { - "fieldName": "feralSwiftness", - "fancyName": "Feral Swiftness", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 17002, - 24866 - ], - "maxPoints": 2 - }, - { - "fieldName": "furor", - "fancyName": "Furor", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 17056, - 17058, - 17059 - ], - "maxPoints": 3 - }, - { - "fieldName": "predatoryStrikes", - "fancyName": "Predatory Strikes", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 16972, - 16974 - ], - "maxPoints": 2 - }, - { - "fieldName": "infectedWounds", - "fancyName": "Infected Wounds", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 48483, - 48484 - ], - "maxPoints": 2 - }, - { - "fieldName": "furySwipes", - "fancyName": "Fury Swipes", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 48532, - 80552, - 80553 - ], - "maxPoints": 3 - }, - { - "fieldName": "primalFury", - "fancyName": "Primal Fury", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 37116, - 37117 - ], - "maxPoints": 2 - }, - { - "fieldName": "feralAggression", - "fancyName": "Feral Aggression", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 16858, - 16859 - ], - "maxPoints": 2 - }, - { - "fieldName": "kingOfTheJungle", - "fancyName": "King Of The Jungle", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 48492, - 48494, - 48495 - ], - "maxPoints": 3 - }, - { - "fieldName": "feralCharge", - "fancyName": "Feral Charge", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 49377 - ], - "maxPoints": 1 - }, - { - "fieldName": "stampede", - "fancyName": "Stampede", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 78892, - 78893 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "thickHide", - "fancyName": "Thick Hide", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 16929, - 16930, - 16931 - ], - "maxPoints": 3 - }, - { - "fieldName": "leaderOfThePack", - "fancyName": "Leader Of The Pack", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 17007 - ], - "maxPoints": 1 - }, - { - "fieldName": "brutalImpact", - "fancyName": "Brutal Impact", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 16940, - 16941 - ], - "maxPoints": 2 - }, - { - "fieldName": "nurturingInstinct", - "fancyName": "Nurturing Instinct", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 33872, - 33873 - ], - "maxPoints": 2 - }, - { - "fieldName": "primalMadness", - "fancyName": "Primal Madness", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 80316, - 80317 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "survivalInstincts", - "fancyName": "Survival Instincts", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 61336 - ], - "maxPoints": 1 - }, - { - "fieldName": "endlessCarnage", - "fancyName": "Endless Carnage", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 80314, - 80315 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturalReaction", - "fancyName": "Natural Reaction", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 57878, - 57880 - ], - "maxPoints": 2 - }, - { - "fieldName": "bloodInTheWater", - "fancyName": "Blood In The Water", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 80318, - 80319 - ], - "maxPoints": 2 - }, - { - "fieldName": "rendAndTear", - "fancyName": "Rend And Tear", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 48432, - 48433, - 48434 - ], - "maxPoints": 3 - }, - { - "fieldName": "pulverize", - "fancyName": "Pulverize", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 80313 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 5, - "colIdx": 1 - } - }, - { - "fieldName": "berserk", - "fancyName": "Berserk", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 50334 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Restoration", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/748.jpg", - "talents": [ - { - "fieldName": "blessingOfTheGrove", - "fancyName": "Blessing Of The Grove", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 78784, - 78785 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturalShapeshifter", - "fancyName": "Natural Shapeshifter", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 16833, - 16834 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturalist", - "fancyName": "Naturalist", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 17069, - 17070 - ], - "maxPoints": 2 - }, - { - "fieldName": "heartOfTheWild", - "fancyName": "Heart Of The Wild", - "location": { - "rowIdx": 0, - "colIdx": 3 - }, - "spellIds": [ - 17003, - 17004, - 17005 - ], - "maxPoints": 3 - }, - { - "fieldName": "perseverance", - "fancyName": "Perseverance", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 78734, - 78736, - 78735, - 78737, - 78738 - ], - "maxPoints": 3 - }, - { - "fieldName": "masterShapeshifter", - "fancyName": "Master Shapeshifter", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 48411 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 1 - } - }, - { - "fieldName": "improvedRejuvenation", - "fancyName": "Improved Rejuvenation", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 17111, - 17112, - 17113 - ], - "maxPoints": 3 - }, - { - "fieldName": "livingSeed", - "fancyName": "Living Seed", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 48496, - 48499, - 48500 - ], - "maxPoints": 3 - }, - { - "fieldName": "revitalize", - "fancyName": "Revitalize", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 48539, - 48544 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturesSwiftness", - "fancyName": "Natures Swiftness", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 17116 - ], - "maxPoints": 1 - }, - { - "fieldName": "furyOfStormrage", - "fancyName": "Fury Of Stormrage", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 17104, - 24943 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturesBounty", - "fancyName": "Natures Bounty", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 17074, - 17075, - 17076 - ], - "maxPoints": 3 - }, - { - "fieldName": "empoweredTouch", - "fancyName": "Empowered Touch", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 33879, - 33880 - ], - "maxPoints": 2 - }, - { - "fieldName": "malfurionsGift", - "fancyName": "Malfurions Gift", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 92363, - 92364 - ], - "maxPoints": 2 - }, - { - "fieldName": "efflorescence", - "fancyName": "Efflorescence", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 34151, - 81274, - 81275 - ], - "maxPoints": 3 - }, - { - "fieldName": "wildGrowth", - "fancyName": "Wild Growth", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 48438 - ], - "maxPoints": 1 - }, - { - "fieldName": "naturesCure", - "fancyName": "Natures Cure", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 88423 - ], - "maxPoints": 1 - }, - { - "fieldName": "naturesWard", - "fancyName": "Natures Ward", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 33881, - 33882 - ], - "maxPoints": 2 - }, - { - "fieldName": "giftOfTheEarthmother", - "fancyName": "Gift Of The Earthmother", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 51179, - 51180, - 51181 - ], - "maxPoints": 3 - }, - { - "fieldName": "swiftRejuvenation", - "fancyName": "Swift Rejuvenation", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 33886 - ], - "maxPoints": 1 - }, - { - "fieldName": "treeOfLife", - "fancyName": "Tree Of Life", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 33891 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "felineSwiftness", + "fancyName": "Feline Swiftness", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 131768 + }, + { + "fieldName": "displacerBeast", + "fancyName": "Displacer Beast", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 102280 + }, + { + "fieldName": "wildCharge", + "fancyName": "Wild Charge", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 102401 + }, + { + "fieldName": "yserasGift", + "fancyName": "Ysera's Gift", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 145108 + }, + { + "fieldName": "renewal", + "fancyName": "Renewal", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 108238 + }, + { + "fieldName": "cenarionWard", + "fancyName": "Cenarion Ward", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 102351 + }, + { + "fieldName": "faerieSwarm", + "fancyName": "Faerie Swarm", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 106707 + }, + { + "fieldName": "massEntanglement", + "fancyName": "Mass Entanglement", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 102359 + }, + { + "fieldName": "typhoon", + "fancyName": "Typhoon", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 132469 + }, + { + "fieldName": "soulOfTheForest", + "fancyName": "Soul of the Forest", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 114107 + }, + { + "fieldName": "incarnation", + "fancyName": "Incarnation", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 106731 + }, + { + "fieldName": "forceOfNature", + "fancyName": "Force of Nature", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 106737 + }, + { + "fieldName": "disorientingRoar", + "fancyName": "Disorienting Roar", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 99 + }, + { + "fieldName": "ursolsVortex", + "fancyName": "Ursol's Vortex", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 102793 + }, + { + "fieldName": "mightyBash", + "fancyName": "Mighty Bash", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 5211 + }, + { + "fieldName": "heartOfTheWild", + "fancyName": "Heart of the Wild", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 108288 + }, + { + "fieldName": "dreamOfCenarius", + "fancyName": "Dream of Cenarius", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 108373 + }, + { + "fieldName": "naturesVigil", + "fancyName": "Nature's Vigil", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 124974 + } + ] +} diff --git a/ui/core/talents/trees/hunter.json b/ui/core/talents/trees/hunter.json index 4b48b6a317..93b4dec747 100644 --- a/ui/core/talents/trees/hunter.json +++ b/ui/core/talents/trees/hunter.json @@ -1,815 +1,168 @@ -[ - { - "name": "Beast Mastery", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/811.jpg", - "talents": [ - { - "fieldName": "improvedKillCommand", - "fancyName": "Improved Kill Command", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 35029, - 35030 - ], - "maxPoints": 2 - }, - { - "fieldName": "oneWithNature", - "fancyName": "One With Nature", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 82682, - 82683, - 82684 - ], - "maxPoints": 3 - }, - { - "fieldName": "bestialDiscipline", - "fancyName": "Bestial Discipline", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 19590, - 19592, - 82687 - ], - "maxPoints": 3 - }, - { - "fieldName": "pathfinding", - "fancyName": "Pathfinding", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 19559, - 19560 - ], - "maxPoints": 2 - }, - { - "fieldName": "spiritBond", - "fancyName": "Spirit Bond", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 19578, - 20895 - ], - "maxPoints": 2 - }, - { - "fieldName": "frenzy", - "fancyName": "Frenzy", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 19621, - 19622, - 19623 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedMendPet", - "fancyName": "Improved Mend Pet", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 19572, - 19573 - ], - "maxPoints": 2 - }, - { - "fieldName": "cobraStrikes", - "fancyName": "Cobra Strikes", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 53256, - 53259, - 53260 - ], - "maxPoints": 3 - }, - { - "fieldName": "fervor", - "fancyName": "Fervor", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 82726 - ], - "maxPoints": 1 - }, - { - "fieldName": "focusFire", - "fancyName": "Focus Fire", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 82692 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 2 - } - }, - { - "fieldName": "longevity", - "fancyName": "Longevity", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 53262, - 53263, - 53264 - ], - "maxPoints": 3 - }, - { - "fieldName": "killingStreak", - "fancyName": "Killing Streak", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 82748, - 82749 - ], - "maxPoints": 2 - }, - { - "fieldName": "crouchingTigerHiddenChimera", - "fancyName": "Crouching Tiger Hidden Chimera", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 82898, - 82899 - ], - "maxPoints": 2 - }, - { - "fieldName": "bestialWrath", - "fancyName": "Bestial Wrath", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 19574 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "ferociousInspiration", - "fancyName": "Ferocious Inspiration", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 34460 - ], - "maxPoints": 1 - }, - { - "fieldName": "kindredSpirits", - "fancyName": "Kindred Spirits", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 56314, - 56315 - ], - "maxPoints": 2 - }, - { - "fieldName": "theBeastWithin", - "fancyName": "The Beast Within", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 34692 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "invigoration", - "fancyName": "Invigoration", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 53252, - 53253 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 2 - } - }, - { - "fieldName": "beastMastery", - "fancyName": "Beast Mastery", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 53270 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Marksmanship", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/807.jpg", - "talents": [ - { - "fieldName": "goForTheThroat", - "fancyName": "Go For The Throat", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 34950, - 34954 - ], - "maxPoints": 2 - }, - { - "fieldName": "efficiency", - "fancyName": "Efficiency", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 19416, - 19417, - 19418 - ], - "maxPoints": 3 - }, - { - "fieldName": "rapidKilling", - "fancyName": "Rapid Killing", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 34948, - 34949 - ], - "maxPoints": 2 - }, - { - "fieldName": "sicEm", - "fancyName": "Sic Em", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 83340, - 83356 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 0 - } - }, - { - "fieldName": "improvedSteadyShot", - "fancyName": "Improved Steady Shot", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 53221, - 53222, - 53224 - ], - "maxPoints": 3 - }, - { - "fieldName": "carefulAim", - "fancyName": "Careful Aim", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 34482, - 34483 - ], - "maxPoints": 2 - }, - { - "fieldName": "silencingShot", - "fancyName": "Silencing Shot", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 34490 - ], - "maxPoints": 1 - }, - { - "fieldName": "concussiveBarrage", - "fancyName": "Concussive Barrage", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 35100, - 35102 - ], - "maxPoints": 2 - }, - { - "fieldName": "piercingShots", - "fancyName": "Piercing Shots", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53234, - 53237, - 53238 - ], - "maxPoints": 3 - }, - { - "fieldName": "bombardment", - "fancyName": "Bombardment", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 35104, - 35110 - ], - "maxPoints": 2 - }, - { - "fieldName": "trueshotAura", - "fancyName": "Trueshot Aura", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 19506 - ], - "maxPoints": 1 - }, - { - "fieldName": "termination", - "fancyName": "Termination", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 83489, - 83490 - ], - "maxPoints": 2 - }, - { - "fieldName": "resistanceIsFutile", - "fancyName": "Resistance Is Futile", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 82893, - 82894 - ], - "maxPoints": 2 - }, - { - "fieldName": "rapidRecuperation", - "fancyName": "Rapid Recuperation", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 53228, - 53232 - ], - "maxPoints": 2 - }, - { - "fieldName": "masterMarksman", - "fancyName": "Master Marksman", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 34485, - 34486, - 34487 - ], - "maxPoints": 3 - }, - { - "fieldName": "readiness", - "fancyName": "Readiness", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 23989 - ], - "maxPoints": 1 - }, - { - "fieldName": "posthaste", - "fancyName": "Posthaste", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 83558, - 83560 - ], - "maxPoints": 2 - }, - { - "fieldName": "markedForDeath", - "fancyName": "Marked For Death", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 53241, - 53243 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "chimeraShot", - "fancyName": "Chimera Shot", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 53209 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Survival", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/809.jpg", - "talents": [ - { - "fieldName": "hunterVsWild", - "fancyName": "Hunter Vs Wild", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 56339, - 56340, - 56341 - ], - "maxPoints": 3 - }, - { - "fieldName": "pathing", - "fancyName": "Pathing", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 52783, - 52785, - 52786 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedSerpentSting", - "fancyName": "Improved Serpent Sting", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 19464, - 82834 - ], - "maxPoints": 2 - }, - { - "fieldName": "survivalTactics", - "fancyName": "Survival Tactics", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 19286, - 19287 - ], - "maxPoints": 2 - }, - { - "fieldName": "trapMastery", - "fancyName": "Trap Mastery", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 19376, - 63457, - 63458 - ], - "maxPoints": 3 - }, - { - "fieldName": "entrapment", - "fancyName": "Entrapment", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 19184, - 19387 - ], - "maxPoints": 2 - }, - { - "fieldName": "pointOfNoEscape", - "fancyName": "Point Of No Escape", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 53298, - 53299 - ], - "maxPoints": 2 - }, - { - "fieldName": "thrillOfTheHunt", - "fancyName": "Thrill Of The Hunt", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 34497, - 34498, - 34499 - ], - "maxPoints": 3 - }, - { - "fieldName": "counterattack", - "fancyName": "Counterattack", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 19306 - ], - "maxPoints": 1 - }, - { - "fieldName": "lockAndLoad", - "fancyName": "Lock And Load", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 56342, - 56343 - ], - "maxPoints": 2 - }, - { - "fieldName": "resourcefulness", - "fancyName": "Resourcefulness", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 34491, - 34492, - 34493 - ], - "maxPoints": 3 - }, - { - "fieldName": "mirroredBlades", - "fancyName": "Mirrored Blades", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 83494, - 83495 - ], - "maxPoints": 2 - }, - { - "fieldName": "tNT", - "fancyName": "T N T", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 56333, - 56336 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "toxicology", - "fancyName": "Toxicology", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 82832, - 82833 - ], - "maxPoints": 2 - }, - { - "fieldName": "wyvernSting", - "fancyName": "Wyvern Sting", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 19386 - ], - "maxPoints": 1 - }, - { - "fieldName": "noxiousStings", - "fancyName": "Noxious Stings", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 53295, - 53296 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "huntingParty", - "fancyName": "Hunting Party", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 53290 - ], - "maxPoints": 1 - }, - { - "fieldName": "sniperTraining", - "fancyName": "Sniper Training", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 53302, - 53303, - 53304 - ], - "maxPoints": 3 - }, - { - "fieldName": "serpentSpread", - "fancyName": "Serpent Spread", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 87934, - 87935 - ], - "maxPoints": 2 - }, - { - "fieldName": "blackArrow", - "fancyName": "Black Arrow", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 3674 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "posthaste", + "fancyName": "Posthaste", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 109215 + }, + { + "fieldName": "narrowEscape", + "fancyName": "Narrow Escape", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 109298 + }, + { + "fieldName": "crouchingTigerHiddenChimera", + "fancyName": "Crouching Tiger, Hidden Chimera", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 118675 + }, + { + "fieldName": "bindingShot", + "fancyName": "Binding Shot", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 109248 + }, + { + "fieldName": "wyvernSting", + "fancyName": "Wyvern Sting", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 19386 + }, + { + "fieldName": "intimidation", + "fancyName": "Intimidation", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 19577 + }, + { + "fieldName": "exhilaration", + "fancyName": "Exhilaration", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 109304 + }, + { + "fieldName": "aspectOfTheIronHawk", + "fancyName": "Aspect of the Iron Hawk", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 109260 + }, + { + "fieldName": "spiritBond", + "fancyName": "Spirit Bond", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 109212 + }, + { + "fieldName": "fervor", + "fancyName": "Fervor", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 82726 + }, + { + "fieldName": "direBeast", + "fancyName": "Dire Beast", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 120679 + }, + { + "fieldName": "thrillOfTheHunt", + "fancyName": "Thrill of the Hunt", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 109306 + }, + { + "fieldName": "aMurderOfCrows", + "fancyName": "A Murder of Crows", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 131894 + }, + { + "fieldName": "blinkStrikes", + "fancyName": "Blink Strikes", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 130392 + }, + { + "fieldName": "lynxRush", + "fancyName": "Lynx Rush", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 120697 + }, + { + "fieldName": "glaiveToss", + "fancyName": "Glaive Toss", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 117050 + }, + { + "fieldName": "powershot", + "fancyName": "Powershot", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 109259 + }, + { + "fieldName": "barrage", + "fancyName": "Barrage", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 120360 + } + ] +} diff --git a/ui/core/talents/trees/hunter_cunning.json b/ui/core/talents/trees/hunter_cunning.json deleted file mode 100644 index 3a0cc9ead2..0000000000 --- a/ui/core/talents/trees/hunter_cunning.json +++ /dev/null @@ -1,287 +0,0 @@ -[ - { - "name": "Cunning", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/411.jpg", - "talents": [ - { - "fieldName": "serpentSwiftness", - "fancyName": "Serpent Swiftness", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 61682, - 61683 - ], - "maxPoints": 2 - }, - { - "fieldName": "dive", - "fancyName": "Dive", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 23145 - ], - "maxPoints": 1 - }, - { - "fieldName": "greatStamina", - "fancyName": "Great Stamina", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 61686, - 61687, - 61688 - ], - "maxPoints": 3 - }, - { - "fieldName": "naturalArmor", - "fancyName": "Natural Armor", - "location": { - "rowIdx": 0, - "colIdx": 3 - }, - "spellIds": [ - 61689, - 61690 - ], - "maxPoints": 2 - }, - { - "fieldName": "boarsSpeed", - "fancyName": "Boars Speed", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 19596 - ], - "maxPoints": 1 - }, - { - "fieldName": "mobility", - "fancyName": "Mobility", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 53554, - 53483, - 53485, - 53555 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 1 - } - }, - { - "fieldName": "owlsFocus", - "fancyName": "Owls Focus", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 53514, - 53516 - ], - "maxPoints": 2 - }, - { - "fieldName": "spikedCollar", - "fancyName": "Spiked Collar", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 53182, - 53183, - 53184 - ], - "maxPoints": 3 - }, - { - "fieldName": "cullingTheHerd", - "fancyName": "Culling The Herd", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 61680, - 52858, - 61681 - ], - "maxPoints": 3 - }, - { - "fieldName": "lionhearted", - "fancyName": "Lionhearted", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 53409, - 53411 - ], - "maxPoints": 2 - }, - { - "fieldName": "carrionFeeder", - "fancyName": "Carrion Feeder", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 54044 - ], - "maxPoints": 1 - }, - { - "fieldName": "greatResistance", - "fancyName": "Great Resistance", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 53427, - 53429, - 53430 - ], - "maxPoints": 3 - }, - { - "fieldName": "cornered", - "fancyName": "Cornered", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 52234, - 53497 - ], - "maxPoints": 2 - }, - { - "fieldName": "feedingFrenzy", - "fancyName": "Feeding Frenzy", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 53511, - 53512 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 3 - } - }, - { - "fieldName": "wolverineBite", - "fancyName": "Wolverine Bite", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 53508 - ], - "maxPoints": 1 - }, - { - "fieldName": "roarOfRecovery", - "fancyName": "Roar Of Recovery", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 53517 - ], - "maxPoints": 1 - }, - { - "fieldName": "bullheaded", - "fancyName": "Bullheaded", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 53490 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "graceOfTheMantis", - "fancyName": "Grace Of The Mantis", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 53450, - 53451 - ], - "maxPoints": 2 - }, - { - "fieldName": "wildHunt", - "fancyName": "Wild Hunt", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 62758, - 62762 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 0 - } - }, - { - "fieldName": "roarOfSacrifice", - "fancyName": "Roar Of Sacrifice", - "location": { - "rowIdx": 5, - "colIdx": 3 - }, - "spellIds": [ - 53480 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 3 - } - } - ] - } -] \ No newline at end of file diff --git a/ui/core/talents/trees/hunter_ferocity.json b/ui/core/talents/trees/hunter_ferocity.json deleted file mode 100644 index 5e20126191..0000000000 --- a/ui/core/talents/trees/hunter_ferocity.json +++ /dev/null @@ -1,269 +0,0 @@ -[ - { - "name": "Ferocity", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/410.jpg", - "talents": [ - { - "fieldName": "serpentSwiftness", - "fancyName": "Serpent Swiftness", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 61682, - 61683 - ], - "maxPoints": 2 - }, - { - "fieldName": "dash", - "fancyName": "Dash", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 61684 - ], - "maxPoints": 1 - }, - { - "fieldName": "greatStamina", - "fancyName": "Great Stamina", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 61686, - 61687, - 61688 - ], - "maxPoints": 3 - }, - { - "fieldName": "naturalArmor", - "fancyName": "Natural Armor", - "location": { - "rowIdx": 0, - "colIdx": 3 - }, - "spellIds": [ - 61689, - 61690 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedCower", - "fancyName": "Improved Cower", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 53180, - 53181 - ], - "maxPoints": 2 - }, - { - "fieldName": "bloodthirsty", - "fancyName": "Bloodthirsty", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 53186, - 53187 - ], - "maxPoints": 2 - }, - { - "fieldName": "spikedCollar", - "fancyName": "Spiked Collar", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 53182, - 53183, - 53184 - ], - "maxPoints": 3 - }, - { - "fieldName": "boarsSpeed", - "fancyName": "Boars Speed", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 19596 - ], - "maxPoints": 1 - }, - { - "fieldName": "cullingTheHerd", - "fancyName": "Culling The Herd", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 61680, - 52858, - 61681 - ], - "maxPoints": 3 - }, - { - "fieldName": "lionhearted", - "fancyName": "Lionhearted", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53409, - 53411 - ], - "maxPoints": 2 - }, - { - "fieldName": "charge", - "fancyName": "Charge", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 61685 - ], - "maxPoints": 1 - }, - { - "fieldName": "heartOfThePhoenix", - "fancyName": "Heart Of The Phoenix", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 55709 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 1 - } - }, - { - "fieldName": "spidersBite", - "fancyName": "Spiders Bite", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 53203, - 53204, - 53205 - ], - "maxPoints": 3 - }, - { - "fieldName": "greatResistance", - "fancyName": "Great Resistance", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 53427, - 53429, - 53430 - ], - "maxPoints": 3 - }, - { - "fieldName": "rabid", - "fancyName": "Rabid", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 53401 - ], - "maxPoints": 1 - }, - { - "fieldName": "lickYourWounds", - "fancyName": "Lick Your Wounds", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 53426 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "callOfTheWild", - "fancyName": "Call Of The Wild", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 53434 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "sharkAttack", - "fancyName": "Shark Attack", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 62759, - 62760 - ], - "maxPoints": 2 - }, - { - "fieldName": "wildHunt", - "fancyName": "Wild Hunt", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 62758, - 62762 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 2 - } - } - ] - } -] \ No newline at end of file diff --git a/ui/core/talents/trees/hunter_tenacity.json b/ui/core/talents/trees/hunter_tenacity.json deleted file mode 100644 index 7e86e02aa9..0000000000 --- a/ui/core/talents/trees/hunter_tenacity.json +++ /dev/null @@ -1,285 +0,0 @@ -[ - { - "name": "Tenacity", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/409.jpg", - "talents": [ - { - "fieldName": "serpentSwiftness", - "fancyName": "Serpent Swiftness", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 61682, - 61683 - ], - "maxPoints": 2 - }, - { - "fieldName": "charge", - "fancyName": "Charge", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 61685 - ], - "maxPoints": 1 - }, - { - "fieldName": "greatStamina", - "fancyName": "Great Stamina", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 61686, - 61687, - 61688 - ], - "maxPoints": 3 - }, - { - "fieldName": "naturalArmor", - "fancyName": "Natural Armor", - "location": { - "rowIdx": 0, - "colIdx": 3 - }, - "spellIds": [ - 61689, - 61690 - ], - "maxPoints": 2 - }, - { - "fieldName": "spikedCollar", - "fancyName": "Spiked Collar", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 53182, - 53183, - 53184 - ], - "maxPoints": 3 - }, - { - "fieldName": "boarsSpeed", - "fancyName": "Boars Speed", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 19596 - ], - "maxPoints": 1 - }, - { - "fieldName": "bloodOfTheRhino", - "fancyName": "Blood Of The Rhino", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 53481, - 53482 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 2 - } - }, - { - "fieldName": "petBarding", - "fancyName": "Pet Barding", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 53175, - 53176 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 3 - } - }, - { - "fieldName": "cullingTheHerd", - "fancyName": "Culling The Herd", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 61680, - 52858, - 61681 - ], - "maxPoints": 3 - }, - { - "fieldName": "guardDog", - "fancyName": "Guard Dog", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 53178, - 53179 - ], - "maxPoints": 2 - }, - { - "fieldName": "lionhearted", - "fancyName": "Lionhearted", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53409, - 53411 - ], - "maxPoints": 2 - }, - { - "fieldName": "thunderstomp", - "fancyName": "Thunderstomp", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 63900 - ], - "maxPoints": 1 - }, - { - "fieldName": "graceOfTheMantis", - "fancyName": "Grace Of The Mantis", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 53450, - 53451 - ], - "maxPoints": 2 - }, - { - "fieldName": "greatResistance", - "fancyName": "Great Resistance", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 53427, - 53429, - 53430 - ], - "maxPoints": 3 - }, - { - "fieldName": "lastStand", - "fancyName": "Last Stand", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 53478 - ], - "maxPoints": 1 - }, - { - "fieldName": "taunt", - "fancyName": "Taunt", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 53477 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "roarOfSacrifice", - "fancyName": "Roar Of Sacrifice", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 53480 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "intervene", - "fancyName": "Intervene", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 53476 - ], - "maxPoints": 1 - }, - { - "fieldName": "silverback", - "fancyName": "Silverback", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 62764, - 62765 - ], - "maxPoints": 2 - }, - { - "fieldName": "wildHunt", - "fancyName": "Wild Hunt", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 62758, - 62762 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 2 - } - } - ] - } -] \ No newline at end of file diff --git a/ui/core/talents/trees/mage.json b/ui/core/talents/trees/mage.json index 33b75bd618..81485ba0a8 100644 --- a/ui/core/talents/trees/mage.json +++ b/ui/core/talents/trees/mage.json @@ -1,867 +1,168 @@ -[ - { - "name": "Arcane", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/799.jpg", - "talents": [ - { - "fieldName": "arcaneConcentration", - "fancyName": "Arcane Concentration", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 11213, - 12574, - 12575 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedCounterspell", - "fancyName": "Improved Counterspell", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 11255, - 12598 - ], - "maxPoints": 2 - }, - { - "fieldName": "netherwindPresence", - "fancyName": "Netherwind Presence", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 44400, - 44402, - 44403 - ], - "maxPoints": 3 - }, - { - "fieldName": "tormentTheWeak", - "fancyName": "Torment The Weak", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 29447, - 55339, - 55340 - ], - "maxPoints": 3 - }, - { - "fieldName": "invocation", - "fancyName": "Invocation", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 84722, - 84723 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedArcaneMissiles", - "fancyName": "Improved Arcane Missiles", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 83513, - 83515 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedBlink", - "fancyName": "Improved Blink", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 31569, - 31570 - ], - "maxPoints": 2 - }, - { - "fieldName": "arcaneFlows", - "fancyName": "Arcane Flows", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 44378, - 44379 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "presenceOfMind", - "fancyName": "Presence Of Mind", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 12043 - ], - "maxPoints": 1 - }, - { - "fieldName": "missileBarrage", - "fancyName": "Missile Barrage", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 44404, - 54486 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 2 - } - }, - { - "fieldName": "prismaticCloak", - "fancyName": "Prismatic Cloak", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 31574, - 31575, - 54354 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedPolymorph", - "fancyName": "Improved Polymorph", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 11210, - 12592 - ], - "maxPoints": 2 - }, - { - "fieldName": "arcaneTactics", - "fancyName": "Arcane Tactics", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 82930 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "incantersAbsorption", - "fancyName": "Incanters Absorption", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 44394, - 44395 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedArcaneExplosion", - "fancyName": "Improved Arcane Explosion", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 90787, - 90788 - ], - "maxPoints": 2 - }, - { - "fieldName": "arcanePotency", - "fancyName": "Arcane Potency", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 31571, - 31572 - ], - "maxPoints": 2 - }, - { - "fieldName": "slow", - "fancyName": "Slow", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 31589 - ], - "maxPoints": 1 - }, - { - "fieldName": "netherVortex", - "fancyName": "Nether Vortex", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 86181, - 86209 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "focusMagic", - "fancyName": "Focus Magic", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 54646 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedManaGem", - "fancyName": "Improved Mana Gem", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 31584, - 31585, - 31586 - ], - "maxPoints": 2 - }, - { - "fieldName": "arcanePower?Spellmodifier=99064", - "fancyName": "Arcane Power?Spellmodifier=99064", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 12042 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Fire", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/851.jpg", - "talents": [ - { - "fieldName": "masterOfElements", - "fancyName": "Master Of Elements", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 29074, - 29075, - 29076 - ], - "maxPoints": 2 - }, - { - "fieldName": "burningSoul", - "fancyName": "Burning Soul", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 11083, - 84254, - 84253 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedFireBlast", - "fancyName": "Improved Fire Blast", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 11078, - 11080 - ], - "maxPoints": 2 - }, - { - "fieldName": "ignite", - "fancyName": "Ignite", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 11119, - 11120, - 12846 - ], - "maxPoints": 3 - }, - { - "fieldName": "firePower", - "fancyName": "Fire Power", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 18459, - 18460, - 54734 - ], - "maxPoints": 3 - }, - { - "fieldName": "blazingSpeed", - "fancyName": "Blazing Speed", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 31641, - 31642 - ], - "maxPoints": 2 - }, - { - "fieldName": "impact", - "fancyName": "Impact", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 11103, - 12357, - 11242, - 12358, - 12467, - 12469 - ], - "maxPoints": 2 - }, - { - "fieldName": "cauterize", - "fancyName": "Cauterize", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 86948, - 86949 - ], - "maxPoints": 2 - }, - { - "fieldName": "blastWave", - "fancyName": "Blast Wave", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 11113 - ], - "maxPoints": 1 - }, - { - "fieldName": "hotStreak", - "fancyName": "Hot Streak", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 44445 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedScorch", - "fancyName": "Improved Scorch", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 11115, - 11367 - ], - "maxPoints": 2 - }, - { - "fieldName": "moltenShields", - "fancyName": "Molten Shields", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 11094 - ], - "maxPoints": 1 - }, - { - "fieldName": "combustion", - "fancyName": "Combustion", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 11129 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedHotStreak", - "fancyName": "Improved Hot Streak", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 44446, - 44448 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "firestarter", - "fancyName": "Firestarter", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 86914 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedFlamestrike", - "fancyName": "Improved Flamestrike", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 84673, - 84674 - ], - "maxPoints": 2 - }, - { - "fieldName": "dragonsBreath", - "fancyName": "Dragons Breath", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 31661 - ], - "maxPoints": 1 - }, - { - "fieldName": "moltenFury", - "fancyName": "Molten Fury", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 31679, - 31680, - 86880 - ], - "maxPoints": 3 - }, - { - "fieldName": "pyromaniac", - "fancyName": "Pyromaniac", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 34293, - 34295, - 34296 - ], - "maxPoints": 2 - }, - { - "fieldName": "criticalMass", - "fancyName": "Critical Mass", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 11095, - 12873, - 12872 - ], - "maxPoints": 3 - }, - { - "fieldName": "livingBomb", - "fancyName": "Living Bomb", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 44457 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Frost", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/823.jpg", - "talents": [ - { - "fieldName": "earlyFrost", - "fancyName": "Early Frost", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 83049, - 83050 - ], - "maxPoints": 2 - }, - { - "fieldName": "piercingIce", - "fancyName": "Piercing Ice", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 11151, - 12952, - 12953 - ], - "maxPoints": 3 - }, - { - "fieldName": "shatter", - "fancyName": "Shatter", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 11170, - 12982, - 12983, - 44745, - 54787 - ], - "maxPoints": 2 - }, - { - "fieldName": "iceFloes", - "fancyName": "Ice Floes", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 31670, - 31672, - 55094 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedConeOfCold", - "fancyName": "Improved Cone Of Cold", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 11190, - 12489 - ], - "maxPoints": 2 - }, - { - "fieldName": "piercingChill", - "fancyName": "Piercing Chill", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 83156, - 83157 - ], - "maxPoints": 2 - }, - { - "fieldName": "permafrost", - "fancyName": "Permafrost", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 11175, - 12569, - 12571 - ], - "maxPoints": 3 - }, - { - "fieldName": "iceShards", - "fancyName": "Ice Shards", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 11185, - 12487 - ], - "maxPoints": 2 - }, - { - "fieldName": "icyVeins", - "fancyName": "Icy Veins", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 12472 - ], - "maxPoints": 1 - }, - { - "fieldName": "fingersOfFrost", - "fancyName": "Fingers Of Frost", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 44543, - 44545, - 83074 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedFreeze", - "fancyName": "Improved Freeze", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 86259, - 86260, - 86314 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "enduringWinter", - "fancyName": "Enduring Winter", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 44561, - 86500, - 86508 - ], - "maxPoints": 3 - }, - { - "fieldName": "coldSnap", - "fancyName": "Cold Snap", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 11958 - ], - "maxPoints": 1 - }, - { - "fieldName": "brainFreeze", - "fancyName": "Brain Freeze", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 44546, - 44548, - 44549 - ], - "maxPoints": 3 - }, - { - "fieldName": "shatteredBarrier", - "fancyName": "Shattered Barrier", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 44745, - 54787 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "iceBarrier?Spellmodifier=63095", - "fancyName": "Ice Barrier?Spellmodifier=63095", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 11426 - ], - "maxPoints": 1 - }, - { - "fieldName": "reactiveBarrier", - "fancyName": "Reactive Barrier", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 86303, - 86304 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "frostfireOrb", - "fancyName": "Frostfire Orb", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 84726, - 84727 - ], - "maxPoints": 2 - }, - { - "fieldName": "deepFreeze?Spellmodifier=11151%2C12952%2C12953%2C31674%2C31675%2C31676%2C31677%2C31678", - "fancyName": "Deep Freeze?Spellmodifier=11151%2C12952%2C12953%2C31674%2C31675%2C31676%2C31677%2C31678", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 44572 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "presenceOfMind", + "fancyName": "Presence of Mind", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 12043 + }, + { + "fieldName": "blazingSpeed", + "fancyName": "Blazing Speed", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 108843 + }, + { + "fieldName": "iceFloes", + "fancyName": "Ice Floes", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 108839 + }, + { + "fieldName": "temporalShield", + "fancyName": "Temporal Shield", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 115610 + }, + { + "fieldName": "flameglow", + "fancyName": "Flameglow", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 140468 + }, + { + "fieldName": "iceBarrier", + "fancyName": "Ice Barrier", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 11426 + }, + { + "fieldName": "ringOfFrost", + "fancyName": "Ring of Frost", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 113724 + }, + { + "fieldName": "iceWard", + "fancyName": "Ice Ward", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 111264 + }, + { + "fieldName": "frostjaw", + "fancyName": "Frostjaw", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 102051 + }, + { + "fieldName": "greaterInvisibility", + "fancyName": "Greater Invisibility", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 110959 + }, + { + "fieldName": "cauterize", + "fancyName": "Cauterize", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 86949 + }, + { + "fieldName": "coldSnap", + "fancyName": "Cold Snap", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 11958 + }, + { + "fieldName": "netherTempest", + "fancyName": "Nether Tempest", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 114923 + }, + { + "fieldName": "livingBomb", + "fancyName": "Living Bomb", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 44457 + }, + { + "fieldName": "frostBomb", + "fancyName": "Frost Bomb", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 112948 + }, + { + "fieldName": "invocation", + "fancyName": "Invocation", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 114003 + }, + { + "fieldName": "runeOfPower", + "fancyName": "Rune of Power", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 116011 + }, + { + "fieldName": "incantersWard", + "fancyName": "Incanter's Ward", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 1463 } - ] - } - ] + ] +} diff --git a/ui/core/talents/trees/monk.json b/ui/core/talents/trees/monk.json new file mode 100644 index 0000000000..d530112964 --- /dev/null +++ b/ui/core/talents/trees/monk.json @@ -0,0 +1,168 @@ + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "celerity", + "fancyName": "Celerity", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 115173 + }, + { + "fieldName": "tigersLust", + "fancyName": "Tiger's Lust", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 116841 + }, + { + "fieldName": "momentum", + "fancyName": "Momentum", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 115174 + }, + { + "fieldName": "chiWave", + "fancyName": "Chi Wave", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 115098 + }, + { + "fieldName": "zenSphere", + "fancyName": "Zen Sphere", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 124081 + }, + { + "fieldName": "chiBurst", + "fancyName": "Chi Burst", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 123986 + }, + { + "fieldName": "powerStrikes", + "fancyName": "Power Strikes", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 121817 + }, + { + "fieldName": "ascension", + "fancyName": "Ascension", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 115396 + }, + { + "fieldName": "chiBrew", + "fancyName": "Chi Brew", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 115399 + }, + { + "fieldName": "ringOfPeace", + "fancyName": "Ring of Peace", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 116844 + }, + { + "fieldName": "chargingOxWave", + "fancyName": "Charging Ox Wave", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 119392 + }, + { + "fieldName": "legSweep", + "fancyName": "Leg Sweep", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 119381 + }, + { + "fieldName": "healingElixirs", + "fancyName": "Healing Elixirs", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 122280 + }, + { + "fieldName": "dampenHarm", + "fancyName": "Dampen Harm", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 122278 + }, + { + "fieldName": "diffuseMagic", + "fancyName": "Diffuse Magic", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 122783 + }, + { + "fieldName": "rushingJadeWind", + "fancyName": "Rushing Jade Wind", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 116847 + }, + { + "fieldName": "invokeXuenTheWhiteTiger", + "fancyName": "Invoke Xuen, the White Tiger", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 123904 + }, + { + "fieldName": "chiTorpedo", + "fancyName": "Chi Torpedo", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 115008 + } + ] +} diff --git a/ui/core/talents/trees/paladin.json b/ui/core/talents/trees/paladin.json index 5b73ad5421..67fa727304 100644 --- a/ui/core/talents/trees/paladin.json +++ b/ui/core/talents/trees/paladin.json @@ -1,825 +1,168 @@ -[ - { - "name": "Holy", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/831.jpg", - "talents": [ - { - "fieldName": "arbiterOfTheLight", - "fancyName": "Arbiter Of The Light", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 20359, - 20360 - ], - "maxPoints": 2 - }, - { - "fieldName": "protectorOfTheInnocent", - "fancyName": "Protector Of The Innocent", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 20138, - 20139, - 20140 - ], - "maxPoints": 3 - }, - { - "fieldName": "judgementsOfThePure", - "fancyName": "Judgements Of The Pure", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 53671, - 53673, - 54151 - ], - "maxPoints": 3 - }, - { - "fieldName": "clarityOfPurpose", - "fancyName": "Clarity Of Purpose", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 85462, - 85463, - 85464 - ], - "maxPoints": 3 - }, - { - "fieldName": "lastWord", - "fancyName": "Last Word", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 20234, - 20235 - ], - "maxPoints": 2 - }, - { - "fieldName": "blazingLight", - "fancyName": "Blazing Light", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 20237, - 20238 - ], - "maxPoints": 2 - }, - { - "fieldName": "denounce", - "fancyName": "Denounce", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 31825, - 85510 - ], - "maxPoints": 2 - }, - { - "fieldName": "divineFavor", - "fancyName": "Divine Favor", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 31842 - ], - "maxPoints": 1 - }, - { - "fieldName": "infusionOfLight", - "fancyName": "Infusion Of Light", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53569, - 53576 - ], - "maxPoints": 2 - }, - { - "fieldName": "daybreak", - "fancyName": "Daybreak", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 88820, - 88821 - ], - "maxPoints": 2 - }, - { - "fieldName": "enlightenedJudgements", - "fancyName": "Enlightened Judgements", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 53556, - 53557 - ], - "maxPoints": 2 - }, - { - "fieldName": "beaconOfLight", - "fancyName": "Beacon Of Light", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 53563 - ], - "maxPoints": 1 - }, - { - "fieldName": "speedOfLight", - "fancyName": "Speed Of Light", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 85495, - 85498, - 85499 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "sacredCleansing", - "fancyName": "Sacred Cleansing", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 53551 - ], - "maxPoints": 1 - }, - { - "fieldName": "conviction", - "fancyName": "Conviction", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 20049, - 20056, - 20057 - ], - "maxPoints": 3 - }, - { - "fieldName": "auraMastery", - "fancyName": "Aura Mastery", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 31821 - ], - "maxPoints": 1 - }, - { - "fieldName": "paragonOfVirtue", - "fancyName": "Paragon Of Virtue", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 93418, - 93417 - ], - "maxPoints": 2 - }, - { - "fieldName": "towerOfRadiance", - "fancyName": "Tower Of Radiance", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 84800, - 85511, - 85512 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "blessedLife", - "fancyName": "Blessed Life", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 31828, - 31829 - ], - "maxPoints": 2 - }, - { - "fieldName": "lightOfDawn", - "fancyName": "Light Of Dawn", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 85222 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Protection", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/839.jpg", - "talents": [ - { - "fieldName": "divinity", - "fancyName": "Divinity", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 63646, - 63647, - 63648 - ], - "maxPoints": 3 - }, - { - "fieldName": "sealsOfThePure", - "fancyName": "Seals Of The Pure", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 20224, - 20225 - ], - "maxPoints": 2 - }, - { - "fieldName": "eternalGlory", - "fancyName": "Eternal Glory", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 87163, - 87164 - ], - "maxPoints": 2 - }, - { - "fieldName": "judgementsOfTheJust", - "fancyName": "Judgements Of The Just", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 53695, - 53696 - ], - "maxPoints": 2 - }, - { - "fieldName": "toughness", - "fancyName": "Toughness", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 20143, - 20145, - 20144 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedHammerOfJustice", - "fancyName": "Improved Hammer Of Justice", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 20487, - 20488 - ], - "maxPoints": 2 - }, - { - "fieldName": "hallowedGround", - "fancyName": "Hallowed Ground", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 84631, - 84633 - ], - "maxPoints": 2 - }, - { - "fieldName": "sanctuary", - "fancyName": "Sanctuary", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 20911, - 84628, - 84629 - ], - "maxPoints": 3 - }, - { - "fieldName": "hammerOfTheRighteous", - "fancyName": "Hammer Of The Righteous", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53595 - ], - "maxPoints": 1 - }, - { - "fieldName": "wrathOfTheLightbringer", - "fancyName": "Wrath Of The Lightbringer", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 84635, - 84636 - ], - "maxPoints": 2 - }, - { - "fieldName": "reckoning", - "fancyName": "Reckoning", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 20177, - 20179 - ], - "maxPoints": 2 - }, - { - "fieldName": "shieldOfTheRighteous", - "fancyName": "Shield Of The Righteous", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 53600 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "grandCrusader", - "fancyName": "Grand Crusader", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 75806, - 85043 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "vindication", - "fancyName": "Vindication", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 26016 - ], - "maxPoints": 1 - }, - { - "fieldName": "holyShield", - "fancyName": "Holy Shield", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 20925 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "guardedByTheLight", - "fancyName": "Guarded By The Light", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 85639, - 85646 - ], - "maxPoints": 2 - }, - { - "fieldName": "divineGuardian", - "fancyName": "Divine Guardian", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 70940 - ], - "maxPoints": 1 - }, - { - "fieldName": "sacredDuty", - "fancyName": "Sacred Duty", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 53709, - 53710 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "shieldOfTheTemplar", - "fancyName": "Shield Of The Templar", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 31848, - 31849, - 84854 - ], - "maxPoints": 3 - }, - { - "fieldName": "ardentDefender", - "fancyName": "Ardent Defender", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 31850 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Retribution", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/855.jpg", - "talents": [ - { - "fieldName": "eyeForAnEye", - "fancyName": "Eye For An Eye", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 9799, - 25988 - ], - "maxPoints": 2 - }, - { - "fieldName": "crusade", - "fancyName": "Crusade", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 31866, - 31867, - 31868 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedJudgement", - "fancyName": "Improved Judgement", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 87174, - 87175 - ], - "maxPoints": 2 - }, - { - "fieldName": "guardiansFavor", - "fancyName": "Guardians Favor", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 20174, - 20175 - ], - "maxPoints": 2 - }, - { - "fieldName": "ruleOfLaw", - "fancyName": "Rule Of Law", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 85457, - 85458, - 87461 - ], - "maxPoints": 3 - }, - { - "fieldName": "pursuitOfJustice", - "fancyName": "Pursuit Of Justice", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 26022, - 26023 - ], - "maxPoints": 2 - }, - { - "fieldName": "communion", - "fancyName": "Communion", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 31876 - ], - "maxPoints": 1 - }, - { - "fieldName": "theArtOfWar", - "fancyName": "The Art Of War", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 53486, - 53488, - 87138 - ], - "maxPoints": 3 - }, - { - "fieldName": "longArmOfTheLaw", - "fancyName": "Long Arm Of The Law", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 87168, - 87172 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 2 - } - }, - { - "fieldName": "divineStorm", - "fancyName": "Divine Storm", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 53385 - ], - "maxPoints": 1 - }, - { - "fieldName": "sacredShield", - "fancyName": "Sacred Shield", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 85285 - ], - "maxPoints": 1 - }, - { - "fieldName": "sanctityOfBattle", - "fancyName": "Sanctity Of Battle", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 25956 - ], - "maxPoints": 1 - }, - { - "fieldName": "sealsOfCommand", - "fancyName": "Seals Of Command", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 85126 - ], - "maxPoints": 1 - }, - { - "fieldName": "sanctifiedWrath", - "fancyName": "Sanctified Wrath", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 53375, - 90286, - 53376 - ], - "maxPoints": 3 - }, - { - "fieldName": "selflessHealer", - "fancyName": "Selfless Healer", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 85803, - 85804 - ], - "maxPoints": 2 - }, - { - "fieldName": "repentance", - "fancyName": "Repentance", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 20066 - ], - "maxPoints": 1 - }, - { - "fieldName": "divinePurpose", - "fancyName": "Divine Purpose", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 85117, - 86172 - ], - "maxPoints": 2 - }, - { - "fieldName": "inquiryOfFaith", - "fancyName": "Inquiry Of Faith", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 53380, - 53381, - 53382 - ], - "maxPoints": 3 - }, - { - "fieldName": "actsOfSacrifice", - "fancyName": "Acts Of Sacrifice", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 85446, - 85795 - ], - "maxPoints": 2 - }, - { - "fieldName": "zealotry", - "fancyName": "Zealotry", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 85696 - ], - "maxPoints": 1 - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "speedOfLight", + "fancyName": "Speed of Light", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 85499 + }, + { + "fieldName": "longArmOfTheLaw", + "fancyName": "Long Arm of the Law", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 87172 + }, + { + "fieldName": "pursuitOfJustice", + "fancyName": "Pursuit of Justice", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 26023 + }, + { + "fieldName": "fistOfJustice", + "fancyName": "Fist of Justice", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 105593 + }, + { + "fieldName": "repentance", + "fancyName": "Repentance", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 20066 + }, + { + "fieldName": "evilIsAPointOfView", + "fancyName": "Evil is a Point of View", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 110301 + }, + { + "fieldName": "selflessHealer", + "fancyName": "Selfless Healer", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 85804 + }, + { + "fieldName": "eternalFlame", + "fancyName": "Eternal Flame", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 114163 + }, + { + "fieldName": "sacredShield", + "fancyName": "Sacred Shield", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 20925 + }, + { + "fieldName": "handOfPurity", + "fancyName": "Hand of Purity", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 114039 + }, + { + "fieldName": "unbreakableSpirit", + "fancyName": "Unbreakable Spirit", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 114154 + }, + { + "fieldName": "clemency", + "fancyName": "Clemency", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 105622 + }, + { + "fieldName": "holyAvenger", + "fancyName": "Holy Avenger", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 105809 + }, + { + "fieldName": "sanctifiedWrath", + "fancyName": "Sanctified Wrath", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 53376 + }, + { + "fieldName": "divinePurpose", + "fancyName": "Divine Purpose", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 86172 + }, + { + "fieldName": "holyPrism", + "fancyName": "Holy Prism", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 114165 + }, + { + "fieldName": "lightsHammer", + "fancyName": "Light's Hammer", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 114158 + }, + { + "fieldName": "executionSentence", + "fancyName": "Execution Sentence", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 114157 + } + ] +} diff --git a/ui/core/talents/trees/priest.json b/ui/core/talents/trees/priest.json index 724df1f906..20270f60ca 100644 --- a/ui/core/talents/trees/priest.json +++ b/ui/core/talents/trees/priest.json @@ -1,698 +1,168 @@ -[ - { - "name": "Discipline", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/760.jpg", - "talents": [ - { - "fieldName": "improvedPowerWordShield", - "fancyName": "Improved Power Word Shield", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [14748, 14768], - "maxPoints": 2 - }, - { - "fieldName": "twinDisciplines", - "fancyName": "Twin Disciplines", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [47586, 47587, 47588], - "maxPoints": 3 - }, - { - "fieldName": "mentalAgility", - "fancyName": "Mental Agility", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [14520, 14780, 14781], - "maxPoints": 3 - }, - { - "fieldName": "evangelism", - "fancyName": "Evangelism", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [81659, 81662], - "maxPoints": 2 - }, - { - "fieldName": "archangel", - "fancyName": "Archangel", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [87151], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 0 - } - }, - { - "fieldName": "innerSanctum", - "fancyName": "Inner Sanctum", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [14747, 14770, 14771], - "maxPoints": 3 - }, - { - "fieldName": "soulWarding", - "fancyName": "Soul Warding", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [63574, 78500, 78501], - "maxPoints": 2 - }, - { - "fieldName": "renewedHope", - "fancyName": "Renewed Hope", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [57470, 57472], - "maxPoints": 2 - }, - { - "fieldName": "powerInfusion", - "fancyName": "Power Infusion", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [10060], - "maxPoints": 1 - }, - { - "fieldName": "atonement", - "fancyName": "Atonement", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [14523, 81749], - "maxPoints": 2 - }, - { - "fieldName": "innerFocus", - "fancyName": "Inner Focus", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [89485], - "maxPoints": 1 - }, - { - "fieldName": "rapture", - "fancyName": "Rapture", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [47535, 47536, 47537], - "maxPoints": 3 - }, - { - "fieldName": "borrowedTime", - "fancyName": "Borrowed Time", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [52795, 52797, 52798], - "maxPoints": 2 - }, - { - "fieldName": "reflectiveShield", - "fancyName": "Reflective Shield", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [33201, 33202], - "maxPoints": 2 - }, - { - "fieldName": "strengthOfSoul", - "fancyName": "Strength Of Soul", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [89488, 89489], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "divineAegis", - "fancyName": "Divine Aegis", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [47509, 47511, 47515], - "maxPoints": 3 - }, - { - "fieldName": "painSuppression", - "fancyName": "Pain Suppression", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [33206], - "maxPoints": 1 - }, - { - "fieldName": "trainOfThought", - "fancyName": "Train Of Thought", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [92295, 92297], - "maxPoints": 2 - }, - { - "fieldName": "focusedWill", - "fancyName": "Focused Will", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [45234, 45243], - "maxPoints": 2 - }, - { - "fieldName": "grace", - "fancyName": "Grace", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [47516, 47517], - "maxPoints": 2 - }, - { - "fieldName": "powerWordBarrier", - "fancyName": "Power Word Barrier", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [62618], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Holy", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/813.jpg", - "talents": [ - { - "fieldName": "improvedRenew", - "fancyName": "Improved Renew", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [14908, 15020], - "maxPoints": 2 - }, - { - "fieldName": "empoweredHealing", - "fancyName": "Empowered Healing", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [33158, 33159, 33160], - "maxPoints": 3 - }, - { - "fieldName": "divineFury", - "fancyName": "Divine Fury", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [18530, 18531, 18533], - "maxPoints": 3 - }, - { - "fieldName": "desperatePrayer", - "fancyName": "Desperate Prayer", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [19236], - "maxPoints": 1 - }, - { - "fieldName": "surgeOfLight", - "fancyName": "Surge Of Light", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [88687, 88690], - "maxPoints": 2 - }, - { - "fieldName": "inspiration", - "fancyName": "Inspiration", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [14892, 15362], - "maxPoints": 2 - }, - { - "fieldName": "divineTouch", - "fancyName": "Divine Touch", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [63534, 63542], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 0 - } - }, - { - "fieldName": "holyConcentration", - "fancyName": "Holy Concentration", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [34753, 34859], - "maxPoints": 2 - }, - { - "fieldName": "lightwell?spellModifier=47586%2C47587%2C47588", - "fancyName": "Lightwell?Spellmodifier=47586%2C47587%2C47588", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [724], - "maxPoints": 1 - }, - { - "fieldName": "tomeOfLight", - "fancyName": "Tome Of Light", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [14898, 81625], - "maxPoints": 2 - }, - { - "fieldName": "rapidRenewal", - "fancyName": "Rapid Renewal", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [95649], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "spiritOfRedemption", - "fancyName": "Spirit Of Redemption", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [20711], - "maxPoints": 1 - }, - { - "fieldName": "serendipity", - "fancyName": "Serendipity", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [63730, 63733], - "maxPoints": 2 - }, - { - "fieldName": "bodyAndSoul", - "fancyName": "Body And Soul", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [64127, 64129], - "maxPoints": 2 - }, - { - "fieldName": "chakra", - "fancyName": "Chakra", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [14751], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "revelations", - "fancyName": "Revelations", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [88627], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "blessedResilience", - "fancyName": "Blessed Resilience", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [33142, 33145], - "maxPoints": 2 - }, - { - "fieldName": "testOfFaith", - "fancyName": "Test Of Faith", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [47558, 47559, 47560], - "maxPoints": 3 - }, - { - "fieldName": "heavenlyVoice", - "fancyName": "Heavenly Voice", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [87430, 87431], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "circleOfHealing", - "fancyName": "Circle Of Healing", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [34861], - "maxPoints": 1 - }, - { - "fieldName": "guardianSpirit", - "fancyName": "Guardian Spirit", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [47788], - "maxPoints": 1 - } - ] - }, - { - "name": "Shadow", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/795.jpg", - "talents": [ - { - "fieldName": "darkness", - "fancyName": "Darkness", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [15259, 15307, 15308], - "maxPoints": 3 - }, - { - "fieldName": "improvedShadowWordPain", - "fancyName": "Improved Shadow Word Pain", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [15275, 15317], - "maxPoints": 2 - }, - { - "fieldName": "veiledShadows", - "fancyName": "Veiled Shadows", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [15274, 15311], - "maxPoints": 2 - }, - { - "fieldName": "improvedPsychicScream", - "fancyName": "Improved Psychic Scream", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [15392, 15448], - "maxPoints": 2 - }, - { - "fieldName": "improvedMindBlast", - "fancyName": "Improved Mind Blast", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [15273, 15312, 15313], - "maxPoints": 3 - }, - { - "fieldName": "improvedDevouringPlague", - "fancyName": "Improved Devouring Plague", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [63625, 63626], - "maxPoints": 2 - }, - { - "fieldName": "twistedFaith", - "fancyName": "Twisted Faith", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [47573, 47577], - "maxPoints": 2 - }, - { - "fieldName": "shadowform", - "fancyName": "Shadowform", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [15473], - "maxPoints": 1 - }, - { - "fieldName": "phantasm", - "fancyName": "Phantasm", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [47569, 47570], - "maxPoints": 2 - }, - { - "fieldName": "harnessedShadows", - "fancyName": "Harnessed Shadows", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [33191, 78228], - "maxPoints": 2 - }, - { - "fieldName": "silence", - "fancyName": "Silence", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [15487], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 0 - } - }, - { - "fieldName": "vampiricEmbrace", - "fancyName": "Vampiric Embrace", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [15286], - "maxPoints": 1 - }, - { - "fieldName": "masochism", - "fancyName": "Masochism", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [88994, 88995], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "mindMelt", - "fancyName": "Mind Melt", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [14910, 33371], - "maxPoints": 2 - }, - { - "fieldName": "painAndSuffering", - "fancyName": "Pain And Suffering", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [47580, 47581], - "maxPoints": 2 - }, - { - "fieldName": "vampiricTouch", - "fancyName": "Vampiric Touch", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [34914], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "paralysis", - "fancyName": "Paralysis", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [87192, 87195], - "maxPoints": 2 - }, - { - "fieldName": "psychicHorror", - "fancyName": "Psychic Horror", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [64044], - "maxPoints": 1 - }, - { - "fieldName": "sinAndPunishment", - "fancyName": "Sin And Punishment", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [87099, 87100], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "shadowyApparition", - "fancyName": "Shadowy Apparition", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [78202, 78203, 78204], - "maxPoints": 3 - }, - { - "fieldName": "dispersion", - "fancyName": "Dispersion", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [47585], - "maxPoints": 1 - } - ] - } -] + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "voidTendrils", + "fancyName": "Void Tendrils", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 108920 + }, + { + "fieldName": "psyfiend", + "fancyName": "Psyfiend", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 108921 + }, + { + "fieldName": "dominateMind", + "fancyName": "Dominate Mind", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 605 + }, + { + "fieldName": "bodyAndSoul", + "fancyName": "Body and Soul", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 64129 + }, + { + "fieldName": "angelicFeather", + "fancyName": "Angelic Feather", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 121536 + }, + { + "fieldName": "phantasm", + "fancyName": "Phantasm", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 108942 + }, + { + "fieldName": "fromDarknessComesLight", + "fancyName": "From Darkness, Comes Light", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 109186 + }, + { + "fieldName": "mindbender", + "fancyName": "Mindbender", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 123040 + }, + { + "fieldName": "solaceAndInsanity", + "fancyName": "Solace and Insanity", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 139139 + }, + { + "fieldName": "desperatePrayer", + "fancyName": "Desperate Prayer", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 19236 + }, + { + "fieldName": "spectralGuise", + "fancyName": "Spectral Guise", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 112833 + }, + { + "fieldName": "angelicBulwark", + "fancyName": "Angelic Bulwark", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 108945 + }, + { + "fieldName": "twistOfFate", + "fancyName": "Twist of Fate", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 109142 + }, + { + "fieldName": "powerInfusion", + "fancyName": "Power Infusion", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 10060 + }, + { + "fieldName": "divineInsight", + "fancyName": "Divine Insight", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 109175 + }, + { + "fieldName": "cascade", + "fancyName": "Cascade", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 121135 + }, + { + "fieldName": "divineStar", + "fancyName": "Divine Star", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 110744 + }, + { + "fieldName": "halo", + "fancyName": "Halo", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 120517 + } + ] +} diff --git a/ui/core/talents/trees/rogue.json b/ui/core/talents/trees/rogue.json index 2d29548e94..dbb39168f7 100644 --- a/ui/core/talents/trees/rogue.json +++ b/ui/core/talents/trees/rogue.json @@ -1,791 +1,168 @@ -[ - { - "name": "Assassination", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/182.jpg", - "talents": [ - { - "fieldName": "deadlyMomentum", - "fancyName": "Deadly Momentum", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 79121, - 79122 - ], - "maxPoints": 2 - }, - { - "fieldName": "coupDeGrace", - "fancyName": "Coup De Grace", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 14162, - 14163, - 14164 - ], - "maxPoints": 3 - }, - { - "fieldName": "lethality", - "fancyName": "Lethality", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 14128, - 14132, - 14135 - ], - "maxPoints": 3 - }, - { - "fieldName": "ruthlessness", - "fancyName": "Ruthlessness", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 14156, - 14160, - 14161 - ], - "maxPoints": 3 - }, - { - "fieldName": "quickening", - "fancyName": "Quickening", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 31208, - 31209 - ], - "maxPoints": 2 - }, - { - "fieldName": "puncturingWounds", - "fancyName": "Puncturing Wounds", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 13733, - 13865, - 13866 - ], - "maxPoints": 3 - }, - { - "fieldName": "blackjack", - "fancyName": "Blackjack", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 79123, - 79125 - ], - "maxPoints": 2 - }, - { - "fieldName": "deadlyBrew", - "fancyName": "Deadly Brew", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 51625, - 51626 - ], - "maxPoints": 2 - }, - { - "fieldName": "coldBlood", - "fancyName": "Cold Blood", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 14177 - ], - "maxPoints": 1 - }, - { - "fieldName": "vilePoisons", - "fancyName": "Vile Poisons", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 16513, - 16514, - 16515 - ], - "maxPoints": 3 - }, - { - "fieldName": "deadenedNerves", - "fancyName": "Deadened Nerves", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 31380, - 31382, - 31383 - ], - "maxPoints": 3 - }, - { - "fieldName": "sealFate", - "fancyName": "Seal Fate", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 14186, - 14190 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "murderousIntent", - "fancyName": "Murderous Intent", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 14158, - 14159 - ], - "maxPoints": 2 - }, - { - "fieldName": "overkill", - "fancyName": "Overkill", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 58426 - ], - "maxPoints": 1 - }, - { - "fieldName": "masterPoisoner", - "fancyName": "Master Poisoner", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 58410 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "improvedExposeArmor", - "fancyName": "Improved Expose Armor", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 14168, - 14169 - ], - "maxPoints": 2 - }, - { - "fieldName": "cutToTheChase", - "fancyName": "Cut To The Chase", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 51664, - 51665, - 51667 - ], - "maxPoints": 3 - }, - { - "fieldName": "venomousWounds", - "fancyName": "Venomous Wounds", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 79133, - 79134 - ], - "maxPoints": 2 - }, - { - "fieldName": "vendetta", - "fancyName": "Vendetta", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 79140 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Combat", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/181.jpg", - "talents": [ - { - "fieldName": "improvedRecuperate", - "fancyName": "Improved Recuperate", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 79007, - 79008 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedSinisterStrike", - "fancyName": "Improved Sinister Strike", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 13732, - 13863, - 79004 - ], - "maxPoints": 3 - }, - { - "fieldName": "precision", - "fancyName": "Precision", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 13705, - 13832, - 13843 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedSliceAndDice", - "fancyName": "Improved Slice And Dice", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 14165, - 14166 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedSprint", - "fancyName": "Improved Sprint", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 13743, - 13875 - ], - "maxPoints": 2 - }, - { - "fieldName": "aggression", - "fancyName": "Aggression", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 18427, - 18428, - 18429 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedKick", - "fancyName": "Improved Kick", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 13754, - 13867 - ], - "maxPoints": 2 - }, - { - "fieldName": "lightningReflexes", - "fancyName": "Lightning Reflexes", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 13712, - 13788, - 13789 - ], - "maxPoints": 3 - }, - { - "fieldName": "revealingStrike", - "fancyName": "Revealing Strike", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 84617 - ], - "maxPoints": 1 - }, - { - "fieldName": "reinforcedLeather", - "fancyName": "Reinforced Leather", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 79077, - 79079 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedGouge", - "fancyName": "Improved Gouge", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 13741, - 13793 - ], - "maxPoints": 2 - }, - { - "fieldName": "combatPotency", - "fancyName": "Combat Potency", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 35541, - 35550, - 35551 - ], - "maxPoints": 3 - }, - { - "fieldName": "bladeTwisting", - "fancyName": "Blade Twisting", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 31124, - 31126 - ], - "maxPoints": 2 - }, - { - "fieldName": "throwingSpecialization", - "fancyName": "Throwing Specialization", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 5952, - 51679 - ], - "maxPoints": 2 - }, - { - "fieldName": "adrenalineRush", - "fancyName": "Adrenaline Rush", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 13750 - ], - "maxPoints": 1 - }, - { - "fieldName": "savageCombat", - "fancyName": "Savage Combat", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 51682, - 58413 - ], - "maxPoints": 2 - }, - { - "fieldName": "banditsGuile", - "fancyName": "Bandits Guile", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 84652, - 84653, - 84654 - ], - "maxPoints": 3 - }, - { - "fieldName": "restlessBlades", - "fancyName": "Restless Blades", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 79095, - 79096 - ], - "maxPoints": 2 - }, - { - "fieldName": "killingSpree", - "fancyName": "Killing Spree", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 51690 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Subtlety", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/183.jpg", - "talents": [ - { - "fieldName": "nightstalker", - "fancyName": "Nightstalker", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 13975, - 14062 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedAmbush", - "fancyName": "Improved Ambush", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 14079, - 14080, - 84661 - ], - "maxPoints": 3 - }, - { - "fieldName": "relentlessStrikes", - "fancyName": "Relentless Strikes", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 14179, - 58422, - 58423 - ], - "maxPoints": 3 - }, - { - "fieldName": "elusiveness", - "fancyName": "Elusiveness", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 13981, - 14066 - ], - "maxPoints": 2 - }, - { - "fieldName": "waylay", - "fancyName": "Waylay", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 51692, - 51696 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 0, - "colIdx": 1 - } - }, - { - "fieldName": "opportunity", - "fancyName": "Opportunity", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 14057, - 14072, - 79141 - ], - "maxPoints": 3 - }, - { - "fieldName": "initiative", - "fancyName": "Initiative", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 13976, - 13979 - ], - "maxPoints": 2 - }, - { - "fieldName": "energeticRecovery", - "fancyName": "Energetic Recovery", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 79150, - 79151, - 79152 - ], - "maxPoints": 3 - }, - { - "fieldName": "findWeakness", - "fancyName": "Find Weakness", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 51632, - 91023 - ], - "maxPoints": 2 - }, - { - "fieldName": "hemorrhage", - "fancyName": "Hemorrhage", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 16511 - ], - "maxPoints": 1 - }, - { - "fieldName": "honorAmongThieves", - "fancyName": "Honor Among Thieves", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 51698, - 51700, - 51701 - ], - "maxPoints": 3 - }, - { - "fieldName": "premeditation", - "fancyName": "Premeditation", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 14183 - ], - "maxPoints": 1 - }, - { - "fieldName": "envelopingShadows", - "fancyName": "Enveloping Shadows", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 31211, - 31212, - 31213 - ], - "maxPoints": 3 - }, - { - "fieldName": "cheatDeath", - "fancyName": "Cheat Death", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 31228, - 31229, - 31230 - ], - "maxPoints": 3 - }, - { - "fieldName": "preparation", - "fancyName": "Preparation", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 14185 - ], - "maxPoints": 1 - }, - { - "fieldName": "sanguinaryVein", - "fancyName": "Sanguinary Vein", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 79146, - 79147 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 2 - } - }, - { - "fieldName": "slaughterFromTheShadows", - "fancyName": "Slaughter From The Shadows", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 51708, - 51709, - 51710 - ], - "maxPoints": 3 - }, - { - "fieldName": "serratedBlades", - "fancyName": "Serrated Blades", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 14171, - 14172 - ], - "maxPoints": 2 - }, - { - "fieldName": "shadowDance", - "fancyName": "Shadow Dance", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 51713 - ], - "maxPoints": 1 - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "nightstalker", + "fancyName": "Nightstalker", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 14062 + }, + { + "fieldName": "subterfuge", + "fancyName": "Subterfuge", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 108208 + }, + { + "fieldName": "shadowFocus", + "fancyName": "Shadow Focus", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 108209 + }, + { + "fieldName": "deadlyThrow", + "fancyName": "Deadly Throw", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 26679 + }, + { + "fieldName": "nerveStrike", + "fancyName": "Nerve Strike", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 108210 + }, + { + "fieldName": "combatReadiness", + "fancyName": "Combat Readiness", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 74001 + }, + { + "fieldName": "cheatDeath", + "fancyName": "Cheat Death", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 31230 + }, + { + "fieldName": "leechingPoison", + "fancyName": "Leeching Poison", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 108211 + }, + { + "fieldName": "elusiveness", + "fancyName": "Elusiveness", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 79008 + }, + { + "fieldName": "cloakAndDagger", + "fancyName": "Cloak and Dagger", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 138106 + }, + { + "fieldName": "shadowstep", + "fancyName": "Shadowstep", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 36554 + }, + { + "fieldName": "burstOfSpeed", + "fancyName": "Burst of Speed", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 108212 + }, + { + "fieldName": "preyOnTheWeak", + "fancyName": "Prey on the Weak", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 131511 + }, + { + "fieldName": "paralyticPoison", + "fancyName": "Paralytic Poison", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 108215 + }, + { + "fieldName": "dirtyTricks", + "fancyName": "Dirty Tricks", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 108216 + }, + { + "fieldName": "shurikenToss", + "fancyName": "Shuriken Toss", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 114014 + }, + { + "fieldName": "markedForDeath", + "fancyName": "Marked for Death", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 137619 + }, + { + "fieldName": "anticipation", + "fancyName": "Anticipation", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 114015 + } + ] +} diff --git a/ui/core/talents/trees/shaman.json b/ui/core/talents/trees/shaman.json index 2bb22826a4..48894ea6c9 100644 --- a/ui/core/talents/trees/shaman.json +++ b/ui/core/talents/trees/shaman.json @@ -1,806 +1,168 @@ -[ - { - "name": "Elemental", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/261.jpg", - "talents": [ - { - "fieldName": "acuity", - "fancyName": "Acuity", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 17485, - 17486, - 17487 - ], - "maxPoints": 3 - }, - { - "fieldName": "convection", - "fancyName": "Convection", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 16039, - 16109 - ], - "maxPoints": 2 - }, - { - "fieldName": "concussion", - "fancyName": "Concussion", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 16035, - 16105, - 16106 - ], - "maxPoints": 3 - }, - { - "fieldName": "callOfFlame", - "fancyName": "Call Of Flame", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 16038, - 16160 - ], - "maxPoints": 2 - }, - { - "fieldName": "elementalWarding", - "fancyName": "Elemental Warding", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 28996, - 28997, - 28998 - ], - "maxPoints": 3 - }, - { - "fieldName": "reverberation", - "fancyName": "Reverberation", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 16040, - 16113 - ], - "maxPoints": 2 - }, - { - "fieldName": "elementalPrecision", - "fancyName": "Elemental Precision", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 30672, - 30673, - 30674 - ], - "maxPoints": 3 - }, - { - "fieldName": "rollingThunder", - "fancyName": "Rolling Thunder", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 88756, - 88764 - ], - "maxPoints": 2 - }, - { - "fieldName": "elementalFocus", - "fancyName": "Elemental Focus", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 16164 - ], - "maxPoints": 1 - }, - { - "fieldName": "elementalReach", - "fancyName": "Elemental Reach", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 28999, - 29000 - ], - "maxPoints": 2 - }, - { - "fieldName": "elementalOath", - "fancyName": "Elemental Oath", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 51466, - 51470 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "lavaFlows", - "fancyName": "Lava Flows", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 51480, - 51481, - 51482 - ], - "maxPoints": 3 - }, - { - "fieldName": "fulmination", - "fancyName": "Fulmination", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 88766 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "elementalMastery", - "fancyName": "Elemental Mastery", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 16166 - ], - "maxPoints": 1 - }, - { - "fieldName": "earthsGrasp", - "fancyName": "Earths Grasp", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 51483, - 51485 - ], - "maxPoints": 2 - }, - { - "fieldName": "totemicWrath", - "fancyName": "Totemic Wrath", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 77746 - ], - "maxPoints": 1 - }, - { - "fieldName": "feedback", - "fancyName": "Feedback", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 86183, - 86184, - 86185 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "lavaSurge", - "fancyName": "Lava Surge", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 77755, - 77756 - ], - "maxPoints": 2 - }, - { - "fieldName": "earthquake", - "fancyName": "Earthquake", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 61882 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Enhancement", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/263.jpg", - "talents": [ - { - "fieldName": "elementalWeapons", - "fancyName": "Elemental Weapons", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 16266, - 29079 - ], - "maxPoints": 2 - }, - { - "fieldName": "focusedStrikes", - "fancyName": "Focused Strikes", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 77536, - 77537, - 77538 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedShields", - "fancyName": "Improved Shields", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 16261, - 16290, - 51881 - ], - "maxPoints": 3 - }, - { - "fieldName": "elementalDevastation", - "fancyName": "Elemental Devastation", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 30160, - 29179, - 29180 - ], - "maxPoints": 3 - }, - { - "fieldName": "flurry", - "fancyName": "Flurry", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 16256, - 16281, - 16282 - ], - "maxPoints": 3 - }, - { - "fieldName": "ancestralSwiftness", - "fancyName": "Ancestral Swiftness", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 16262, - 16287 - ], - "maxPoints": 2 - }, - { - "fieldName": "totemicReach", - "fancyName": "Totemic Reach", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 86935, - 86936 - ], - "maxPoints": 2 - }, - { - "fieldName": "toughness", - "fancyName": "Toughness", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 16252, - 16306, - 16307 - ], - "maxPoints": 3 - }, - { - "fieldName": "stormstrike", - "fancyName": "Stormstrike", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 17364 - ], - "maxPoints": 1 - }, - { - "fieldName": "staticShock", - "fancyName": "Static Shock", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 51525, - 51526, - 51527 - ], - "maxPoints": 3 - }, - { - "fieldName": "frozenPower", - "fancyName": "Frozen Power", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 63373, - 63374 - ], - "maxPoints": 2 - }, - { - "fieldName": "seasonedWinds", - "fancyName": "Seasoned Winds", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 16086, - 16544 - ], - "maxPoints": 2 - }, - { - "fieldName": "searingFlames", - "fancyName": "Searing Flames", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 77655, - 77656, - 77657 - ], - "maxPoints": 3 - }, - { - "fieldName": "earthenPower", - "fancyName": "Earthen Power", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 51523, - 51524 - ], - "maxPoints": 2 - }, - { - "fieldName": "shamanisticRage", - "fancyName": "Shamanistic Rage", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 30823 - ], - "maxPoints": 1 - }, - { - "fieldName": "unleashedRage", - "fancyName": "Unleashed Rage", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 30802, - 30808 - ], - "maxPoints": 2 - }, - { - "fieldName": "maelstromWeapon", - "fancyName": "Maelstrom Weapon", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 51528, - 51529, - 51530 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedLavaLash", - "fancyName": "Improved Lava Lash", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 77700, - 77701 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "feralSpirit", - "fancyName": "Feral Spirit", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 51533 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Restoration", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/262.jpg", - "talents": [ - { - "fieldName": "ancestralResolve", - "fancyName": "Ancestral Resolve", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 77829, - 77830 - ], - "maxPoints": 2 - }, - { - "fieldName": "tidalFocus", - "fancyName": "Tidal Focus", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 16179, - 16214, - 16215 - ], - "maxPoints": 3 - }, - { - "fieldName": "sparkOfLife", - "fancyName": "Spark Of Life", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 84846, - 84847, - 84848 - ], - "maxPoints": 3 - }, - { - "fieldName": "resurgence", - "fancyName": "Resurgence", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 16180, - 16196 - ], - "maxPoints": 2 - }, - { - "fieldName": "totemicFocus", - "fancyName": "Totemic Focus", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 16173, - 16222 - ], - "maxPoints": 2 - }, - { - "fieldName": "focusedInsight", - "fancyName": "Focused Insight", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 77794, - 77795, - 77796 - ], - "maxPoints": 3 - }, - { - "fieldName": "naturesGuardian", - "fancyName": "Natures Guardian", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 30881, - 30883, - 30884 - ], - "maxPoints": 3 - }, - { - "fieldName": "ancestralHealing", - "fancyName": "Ancestral Healing", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 16176, - 16235 - ], - "maxPoints": 2 - }, - { - "fieldName": "naturesSwiftness", - "fancyName": "Natures Swiftness", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 16188 - ], - "maxPoints": 1 - }, - { - "fieldName": "naturesBlessing", - "fancyName": "Natures Blessing", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 30867, - 30868, - 30869 - ], - "maxPoints": 3 - }, - { - "fieldName": "soothingRains", - "fancyName": "Soothing Rains", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 16187, - 16205 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedCleanseSpirit", - "fancyName": "Improved Cleanse Spirit", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 77130 - ], - "maxPoints": 1 - }, - { - "fieldName": "cleansingWaters", - "fancyName": "Cleansing Waters", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 86959, - 86962 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "ancestralAwakening", - "fancyName": "Ancestral Awakening", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 51556, - 51558, - 51557 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 0 - } - }, - { - "fieldName": "manaTideTotem", - "fancyName": "Mana Tide Totem", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 16190 - ], - "maxPoints": 1 - }, - { - "fieldName": "telluricCurrents", - "fancyName": "Telluric Currents", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 82984, - 82988 - ], - "maxPoints": 2 - }, - { - "fieldName": "spiritLinkTotem", - "fancyName": "Spirit Link Totem", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 98008 - ], - "maxPoints": 1 - }, - { - "fieldName": "tidalWaves", - "fancyName": "Tidal Waves", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 51562, - 51563, - 51564 - ], - "maxPoints": 3 - }, - { - "fieldName": "blessingOfTheEternals", - "fancyName": "Blessing Of The Eternals", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 51554, - 51555 - ], - "maxPoints": 2 - }, - { - "fieldName": "riptide", - "fancyName": "Riptide", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 61295 - ], - "maxPoints": 1 - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "naturesGuardian", + "fancyName": "Nature's Guardian", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 30884 + }, + { + "fieldName": "stoneBulwarkTotem", + "fancyName": "Stone Bulwark Totem", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 108270 + }, + { + "fieldName": "astralShift", + "fancyName": "Astral Shift", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 108271 + }, + { + "fieldName": "frozenPower", + "fancyName": "Frozen Power", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 63374 + }, + { + "fieldName": "earthgrabTotem", + "fancyName": "Earthgrab Totem", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 51485 + }, + { + "fieldName": "windwalkTotem", + "fancyName": "Windwalk Totem", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 108273 + }, + { + "fieldName": "callOfTheElements", + "fancyName": "Call of the Elements", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 108285 + }, + { + "fieldName": "totemicPersistence", + "fancyName": "Totemic Persistence", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 108284 + }, + { + "fieldName": "totemicProjection", + "fancyName": "Totemic Projection", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 108287 + }, + { + "fieldName": "elementalMastery", + "fancyName": "Elemental Mastery", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 16166 + }, + { + "fieldName": "ancestralSwiftness", + "fancyName": "Ancestral Swiftness", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 16188 + }, + { + "fieldName": "echoOfTheElements", + "fancyName": "Echo of the Elements", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 108283 + }, + { + "fieldName": "rushingStreams", + "fancyName": "Rushing Streams", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 147074 + }, + { + "fieldName": "ancestralGuidance", + "fancyName": "Ancestral Guidance", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 108281 + }, + { + "fieldName": "conductivity", + "fancyName": "Conductivity", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 108282 + }, + { + "fieldName": "unleashedFury", + "fancyName": "Unleashed Fury", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 117012 + }, + { + "fieldName": "primalElementalist", + "fancyName": "Primal Elementalist", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 117013 + }, + { + "fieldName": "elementalBlast", + "fancyName": "Elemental Blast", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 117014 + } + ] +} diff --git a/ui/core/talents/trees/warlock.json b/ui/core/talents/trees/warlock.json index 7913d69172..d08f1bbe8b 100644 --- a/ui/core/talents/trees/warlock.json +++ b/ui/core/talents/trees/warlock.json @@ -1,786 +1,168 @@ -[ - { - "name": "Affliction", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/871.jpg", - "talents": [ - { - "fieldName": "doomAndGloom", - "fancyName": "Doom And Gloom", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 18827, - 18829 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedLifeTap", - "fancyName": "Improved Life Tap", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 18182, - 18183 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedCorruption", - "fancyName": "Improved Corruption", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 17810, - 17811, - 17812, - 17813, - 17814 - ], - "maxPoints": 3 - }, - { - "fieldName": "jinx", - "fancyName": "Jinx", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 18179, - 85479 - ], - "maxPoints": 2 - }, - { - "fieldName": "soulSiphon", - "fancyName": "Soul Siphon", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 17804, - 17805 - ], - "maxPoints": 2 - }, - { - "fieldName": "siphonLife", - "fancyName": "Siphon Life", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 63108, - 86667 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 1 - } - }, - { - "fieldName": "curseOfExhaustion", - "fancyName": "Curse Of Exhaustion", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 18223 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedFear", - "fancyName": "Improved Fear", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 53754, - 53759 - ], - "maxPoints": 2 - }, - { - "fieldName": "eradication", - "fancyName": "Eradication", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 47195, - 47196, - 47197 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedHowlOfTerror", - "fancyName": "Improved Howl Of Terror", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 30054, - 30057 - ], - "maxPoints": 2 - }, - { - "fieldName": "soulSwap", - "fancyName": "Soul Swap", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 86121 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 1 - } - }, - { - "fieldName": "shadowEmbrace", - "fancyName": "Shadow Embrace", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 32385, - 32387, - 32392 - ], - "maxPoints": 3 - }, - { - "fieldName": "deathsEmbrace", - "fancyName": "Deaths Embrace", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 47198, - 47199, - 47200 - ], - "maxPoints": 3 - }, - { - "fieldName": "nightfall", - "fancyName": "Nightfall", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 18094, - 18095 - ], - "maxPoints": 2 - }, - { - "fieldName": "soulburnSeedOfCorruption", - "fancyName": "Soulburn Seed Of Corruption", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 86664 - ], - "maxPoints": 1 - }, - { - "fieldName": "everlastingAffliction", - "fancyName": "Everlasting Affliction", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 47201, - 47202, - 47203 - ], - "maxPoints": 3 - }, - { - "fieldName": "pandemic", - "fancyName": "Pandemic", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 85099, - 85100 - ], - "maxPoints": 2 - }, - { - "fieldName": "haunt", - "fancyName": "Haunt", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 48181 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Demonology", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/867.jpg", - "talents": [ - { - "fieldName": "demonicEmbrace", - "fancyName": "Demonic Embrace", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 18697, - 18698, - 18699 - ], - "maxPoints": 3 - }, - { - "fieldName": "darkArts", - "fancyName": "Dark Arts", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 18694, - 85283, - 85284 - ], - "maxPoints": 3 - }, - { - "fieldName": "felSynergy", - "fancyName": "Fel Synergy", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 47230, - 47231 - ], - "maxPoints": 2 - }, - { - "fieldName": "demonicRebirth", - "fancyName": "Demonic Rebirth", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 88446, - 88447 - ], - "maxPoints": 2 - }, - { - "fieldName": "manaFeed", - "fancyName": "Mana Feed", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 30326, - 85175 - ], - "maxPoints": 2 - }, - { - "fieldName": "demonicAegis", - "fancyName": "Demonic Aegis", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 30143, - 30144 - ], - "maxPoints": 2 - }, - { - "fieldName": "masterSummoner", - "fancyName": "Master Summoner", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 18709, - 18710 - ], - "maxPoints": 2 - }, - { - "fieldName": "impendingDoom", - "fancyName": "Impending Doom", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 85106, - 85107, - 85108 - ], - "maxPoints": 3 - }, - { - "fieldName": "demonicEmpowerment", - "fancyName": "Demonic Empowerment", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 47193 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedHealthFunnel", - "fancyName": "Improved Health Funnel", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 18703, - 18704 - ], - "maxPoints": 2 - }, - { - "fieldName": "moltenCore", - "fancyName": "Molten Core", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 47245, - 47246, - 47247 - ], - "maxPoints": 3 - }, - { - "fieldName": "handOfGuldan", - "fancyName": "Hand Of Guldan", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 71521 - ], - "maxPoints": 1 - }, - { - "fieldName": "auraOfForeboding", - "fancyName": "Aura Of Foreboding", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 89604, - 89605 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "ancientGrimoire", - "fancyName": "Ancient Grimoire", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 85109, - 85110 - ], - "maxPoints": 2 - }, - { - "fieldName": "inferno", - "fancyName": "Inferno", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 85105 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "decimation", - "fancyName": "Decimation", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 63156, - 63158 - ], - "maxPoints": 2 - }, - { - "fieldName": "cremation", - "fancyName": "Cremation", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 85103, - 85104 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "demonicPact", - "fancyName": "Demonic Pact", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 47236 - ], - "maxPoints": 1 - }, - { - "fieldName": "metamorphosis", - "fancyName": "Metamorphosis", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 59672 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Destruction", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/865.jpg", - "talents": [ - { - "fieldName": "bane", - "fancyName": "Bane", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 17788, - 17789, - 17790 - ], - "maxPoints": 3 - }, - { - "fieldName": "shadowAndFlame", - "fancyName": "Shadow And Flame", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 17793, - 17796, - 17801 - ], - "maxPoints": 3 - }, - { - "fieldName": "improvedImmolate", - "fancyName": "Improved Immolate", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 17815, - 17833, - 17834 - ], - "maxPoints": 2 - }, - { - "fieldName": "aftermath", - "fancyName": "Aftermath", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 85113, - 85114 - ], - "maxPoints": 2 - }, - { - "fieldName": "emberstorm", - "fancyName": "Emberstorm", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 17954, - 17955 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedSearingPain", - "fancyName": "Improved Searing Pain", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 17927, - 17929 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedSoulFire", - "fancyName": "Improved Soul Fire", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 18119, - 18120 - ], - "maxPoints": 2 - }, - { - "fieldName": "backdraft", - "fancyName": "Backdraft", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 47258, - 47259, - 47260 - ], - "maxPoints": 3 - }, - { - "fieldName": "shadowburn", - "fancyName": "Shadowburn", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 17877 - ], - "maxPoints": 1 - }, - { - "fieldName": "burningEmbers", - "fancyName": "Burning Embers", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 91986, - 85112 - ], - "maxPoints": 2 - }, - { - "fieldName": "soulLeech", - "fancyName": "Soul Leech", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 30293, - 30295, - 54118 - ], - "maxPoints": 2 - }, - { - "fieldName": "backlash", - "fancyName": "Backlash", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 34935, - 34939, - 34938 - ], - "maxPoints": 3 - }, - { - "fieldName": "netherWard", - "fancyName": "Nether Ward", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 91713 - ], - "maxPoints": 1 - }, - { - "fieldName": "fireAndBrimstone", - "fancyName": "Fire And Brimstone", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 47266, - 47267, - 47268, - 47269, - 47270 - ], - "maxPoints": 3 - }, - { - "fieldName": "shadowfury", - "fancyName": "Shadowfury", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 30283 - ], - "maxPoints": 1 - }, - { - "fieldName": "netherProtection", - "fancyName": "Nether Protection", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 30299, - 30301 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 3 - } - }, - { - "fieldName": "empoweredImp", - "fancyName": "Empowered Imp", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 47220, - 47221 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 0 - } - }, - { - "fieldName": "baneOfHavoc", - "fancyName": "Bane Of Havoc", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 80240 - ], - "maxPoints": 1 - }, - { - "fieldName": "chaosBolt", - "fancyName": "Chaos Bolt", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 50796 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "darkRegeneration", + "fancyName": "Dark Regeneration", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 108359 + }, + { + "fieldName": "soulLeech", + "fancyName": "Soul Leech", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 108370 + }, + { + "fieldName": "harvestLife", + "fancyName": "Harvest Life", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 108371 + }, + { + "fieldName": "demonicBreath", + "fancyName": "Demonic Breath", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 47897 + }, + { + "fieldName": "mortalCoil", + "fancyName": "Mortal Coil", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 6789 + }, + { + "fieldName": "shadowfury", + "fancyName": "Shadowfury", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 30283 + }, + { + "fieldName": "soulLink", + "fancyName": "Soul Link", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 108415 + }, + { + "fieldName": "sacrificialPact", + "fancyName": "Sacrificial Pact", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 108416 + }, + { + "fieldName": "darkBargain", + "fancyName": "Dark Bargain", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 110913 + }, + { + "fieldName": "bloodHorror", + "fancyName": "Blood Horror", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 111397 + }, + { + "fieldName": "burningRush", + "fancyName": "Burning Rush", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 111400 + }, + { + "fieldName": "unboundWill", + "fancyName": "Unbound Will", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 108482 + }, + { + "fieldName": "grimoireOfSupremacy", + "fancyName": "Grimoire of Supremacy", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 108499 + }, + { + "fieldName": "grimoireOfService", + "fancyName": "Grimoire of Service", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 108501 + }, + { + "fieldName": "grimoireOfSacrifice", + "fancyName": "Grimoire of Sacrifice", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 108503 + }, + { + "fieldName": "archimondesDarkness", + "fancyName": "Archimonde's Darkness", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 108505 + }, + { + "fieldName": "kiljaedensCunning", + "fancyName": "Kil'jaeden's Cunning", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 137587 + }, + { + "fieldName": "mannorothsFury", + "fancyName": "Mannoroth's Fury", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 108508 + } + ] +} diff --git a/ui/core/talents/trees/warrior.json b/ui/core/talents/trees/warrior.json index 69b62a46dc..09820b6212 100644 --- a/ui/core/talents/trees/warrior.json +++ b/ui/core/talents/trees/warrior.json @@ -1,845 +1,168 @@ -[ - { - "name": "Arms", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/746.jpg", - "talents": [ - { - "fieldName": "warAcademy", - "fancyName": "War Academy", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 84570, - 84571, - 84572 - ], - "maxPoints": 3 - }, - { - "fieldName": "fieldDressing", - "fancyName": "Field Dressing", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 84579, - 84580 - ], - "maxPoints": 2 - }, - { - "fieldName": "blitz", - "fancyName": "Blitz", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 80976, - 80977 - ], - "maxPoints": 2 - }, - { - "fieldName": "tacticalMastery", - "fancyName": "Tactical Mastery", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 12295, - 12676 - ], - "maxPoints": 2 - }, - { - "fieldName": "secondWind", - "fancyName": "Second Wind", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 29834, - 29838 - ], - "maxPoints": 2 - }, - { - "fieldName": "deepWounds", - "fancyName": "Deep Wounds", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 12834, - 12849, - 12867 - ], - "maxPoints": 3 - }, - { - "fieldName": "drumsOfWar", - "fancyName": "Drums Of War", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 12290, - 12963 - ], - "maxPoints": 2 - }, - { - "fieldName": "tasteForBlood", - "fancyName": "Taste For Blood", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 56636, - 56637, - 56638 - ], - "maxPoints": 3 - }, - { - "fieldName": "sweepingStrikes", - "fancyName": "Sweeping Strikes", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 12328 - ], - "maxPoints": 1 - }, - { - "fieldName": "impale", - "fancyName": "Impale", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 16493, - 16494 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 1, - "colIdx": 2 - } - }, - { - "fieldName": "improvedHamstring", - "fancyName": "Improved Hamstring", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 12289, - 12668 - ], - "maxPoints": 2 - }, - { - "fieldName": "improvedSlam", - "fancyName": "Improved Slam", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 86655, - 12330 - ], - "maxPoints": 2 - }, - { - "fieldName": "deadlyCalm", - "fancyName": "Deadly Calm", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 85730 - ], - "maxPoints": 1 - }, - { - "fieldName": "bloodFrenzy", - "fancyName": "Blood Frenzy", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 29836, - 29859 - ], - "maxPoints": 2 - }, - { - "fieldName": "lambsToTheSlaughter", - "fancyName": "Lambs To The Slaughter", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 84583, - 84588, - 84587 - ], - "maxPoints": 3 - }, - { - "fieldName": "juggernaut", - "fancyName": "Juggernaut", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 64976 - ], - "maxPoints": 1 - }, - { - "fieldName": "suddenDeath", - "fancyName": "Sudden Death", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 29723, - 29725 - ], - "maxPoints": 2 - }, - { - "fieldName": "wreckingCrew", - "fancyName": "Wrecking Crew", - "location": { - "rowIdx": 5, - "colIdx": 0 - }, - "spellIds": [ - 46867, - 56611, - 56612 - ], - "maxPoints": 2 - }, - { - "fieldName": "throwdown", - "fancyName": "Throwdown", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 85388 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - }, - { - "fieldName": "bladestorm", - "fancyName": "Bladestorm", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 46924 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 4, - "colIdx": 1 - } - } - ] - }, - { - "name": "Fury", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/815.jpg", - "talents": [ - { - "fieldName": "bloodCraze", - "fancyName": "Blood Craze", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 16487, - 16489, - 16492 - ], - "maxPoints": 3 - }, - { - "fieldName": "battleTrance", - "fancyName": "Battle Trance", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 12322, - 85741, - 85742 - ], - "maxPoints": 3 - }, - { - "fieldName": "cruelty", - "fancyName": "Cruelty", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 12320, - 12852 - ], - "maxPoints": 2 - }, - { - "fieldName": "executioner", - "fancyName": "Executioner", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 20502, - 20503 - ], - "maxPoints": 2 - }, - { - "fieldName": "boomingVoice", - "fancyName": "Booming Voice", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 12321, - 12835 - ], - "maxPoints": 2 - }, - { - "fieldName": "rudeInterruption", - "fancyName": "Rude Interruption", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 61216, - 61221 - ], - "maxPoints": 2 - }, - { - "fieldName": "piercingHowl", - "fancyName": "Piercing Howl", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 12323 - ], - "maxPoints": 1 - }, - { - "fieldName": "flurry", - "fancyName": "Flurry", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 12319, - 12971, - 12972 - ], - "maxPoints": 3 - }, - { - "fieldName": "deathWish", - "fancyName": "Death Wish", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 12292 - ], - "maxPoints": 1 - }, - { - "fieldName": "enrage", - "fancyName": "Enrage", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 12317, - 13045, - 13046 - ], - "maxPoints": 3 - }, - { - "fieldName": "dieByTheSword", - "fancyName": "Die By The Sword", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 81913, - 81914 - ], - "maxPoints": 2 - }, - { - "fieldName": "ragingBlow", - "fancyName": "Raging Blow", - "location": { - "rowIdx": 3, - "colIdx": 1 - }, - "spellIds": [ - 85288 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "rampage", - "fancyName": "Rampage", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 29801 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "heroicFury", - "fancyName": "Heroic Fury", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 60970 - ], - "maxPoints": 1 - }, - { - "fieldName": "furiousAttacks", - "fancyName": "Furious Attacks", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 46910 - ], - "maxPoints": 1 - }, - { - "fieldName": "meatCleaver", - "fancyName": "Meat Cleaver", - "location": { - "rowIdx": 4, - "colIdx": 2 - }, - "spellIds": [ - 12329, - 12950 - ], - "maxPoints": 2 - }, - { - "fieldName": "intensifyRage", - "fancyName": "Intensify Rage", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 46908, - 46909 - ], - "maxPoints": 2 - }, - { - "fieldName": "bloodsurge", - "fancyName": "Bloodsurge", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 46913, - 46914, - 46915 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 1 - } - }, - { - "fieldName": "skirmisher", - "fancyName": "Skirmisher", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 29888, - 29889 - ], - "maxPoints": 2 - }, - { - "fieldName": "titansGrip", - "fancyName": "Titans Grip", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 46917 - ], - "maxPoints": 1 - }, - { - "fieldName": "singleMindedFury", - "fancyName": "Single Minded Fury", - "location": { - "rowIdx": 6, - "colIdx": 2 - }, - "spellIds": [ - 81099 - ], - "maxPoints": 1 - } - ] - }, - { - "name": "Protection", - "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/845.jpg", - "talents": [ - { - "fieldName": "incite", - "fancyName": "Incite", - "location": { - "rowIdx": 0, - "colIdx": 0 - }, - "spellIds": [ - 50685, - 50686, - 50687 - ], - "maxPoints": 3 - }, - { - "fieldName": "toughness", - "fancyName": "Toughness", - "location": { - "rowIdx": 0, - "colIdx": 1 - }, - "spellIds": [ - 12299, - 12761, - 12762 - ], - "maxPoints": 3 - }, - { - "fieldName": "bloodAndThunder", - "fancyName": "Blood And Thunder", - "location": { - "rowIdx": 0, - "colIdx": 2 - }, - "spellIds": [ - 84614, - 84615 - ], - "maxPoints": 2 - }, - { - "fieldName": "shieldSpecialization", - "fancyName": "Shield Specialization", - "location": { - "rowIdx": 1, - "colIdx": 0 - }, - "spellIds": [ - 12298, - 12724, - 12725 - ], - "maxPoints": 3 - }, - { - "fieldName": "shieldMastery", - "fancyName": "Shield Mastery", - "location": { - "rowIdx": 1, - "colIdx": 1 - }, - "spellIds": [ - 29598, - 84607, - 84608 - ], - "maxPoints": 3 - }, - { - "fieldName": "holdTheLine", - "fancyName": "Hold The Line", - "location": { - "rowIdx": 1, - "colIdx": 2 - }, - "spellIds": [ - 84604, - 84621 - ], - "maxPoints": 2 - }, - { - "fieldName": "gagOrder", - "fancyName": "Gag Order", - "location": { - "rowIdx": 1, - "colIdx": 3 - }, - "spellIds": [ - 12311, - 12958 - ], - "maxPoints": 2 - }, - { - "fieldName": "lastStand", - "fancyName": "Last Stand", - "location": { - "rowIdx": 2, - "colIdx": 0 - }, - "spellIds": [ - 12975 - ], - "maxPoints": 1 - }, - { - "fieldName": "concussionBlow", - "fancyName": "Concussion Blow", - "location": { - "rowIdx": 2, - "colIdx": 1 - }, - "spellIds": [ - 12809 - ], - "maxPoints": 1 - }, - { - "fieldName": "bastionOfDefense", - "fancyName": "Bastion Of Defense", - "location": { - "rowIdx": 2, - "colIdx": 2 - }, - "spellIds": [ - 29593, - 29594 - ], - "maxPoints": 2 - }, - { - "fieldName": "warbringer", - "fancyName": "Warbringer", - "location": { - "rowIdx": 2, - "colIdx": 3 - }, - "spellIds": [ - 57499 - ], - "maxPoints": 1 - }, - { - "fieldName": "improvedRevenge", - "fancyName": "Improved Revenge", - "location": { - "rowIdx": 3, - "colIdx": 0 - }, - "spellIds": [ - 12797, - 12799 - ], - "maxPoints": 2 - }, - { - "fieldName": "devastate", - "fancyName": "Devastate", - "location": { - "rowIdx": 3, - "colIdx": 2 - }, - "spellIds": [ - 20243 - ], - "maxPoints": 1 - }, - { - "fieldName": "impendingVictory", - "fancyName": "Impending Victory", - "location": { - "rowIdx": 3, - "colIdx": 3 - }, - "spellIds": [ - 80128, - 80129 - ], - "maxPoints": 2, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "thunderstruck", - "fancyName": "Thunderstruck", - "location": { - "rowIdx": 4, - "colIdx": 0 - }, - "spellIds": [ - 80979, - 80980 - ], - "maxPoints": 2 - }, - { - "fieldName": "vigilance", - "fancyName": "Vigilance", - "location": { - "rowIdx": 4, - "colIdx": 1 - }, - "spellIds": [ - 50720 - ], - "maxPoints": 1, - "prereqLocation": { - "rowIdx": 2, - "colIdx": 1 - } - }, - { - "fieldName": "heavyRepercussions", - "fancyName": "Heavy Repercussions", - "location": { - "rowIdx": 4, - "colIdx": 3 - }, - "spellIds": [ - 86894, - 86896 - ], - "maxPoints": 2 - }, - { - "fieldName": "safeguard", - "fancyName": "Safeguard", - "location": { - "rowIdx": 5, - "colIdx": 1 - }, - "spellIds": [ - 46945, - 46949 - ], - "maxPoints": 2 - }, - { - "fieldName": "swordAndBoard", - "fancyName": "Sword And Board", - "location": { - "rowIdx": 5, - "colIdx": 2 - }, - "spellIds": [ - 46951, - 46952, - 46953 - ], - "maxPoints": 3, - "prereqLocation": { - "rowIdx": 3, - "colIdx": 2 - } - }, - { - "fieldName": "shockwave", - "fancyName": "Shockwave", - "location": { - "rowIdx": 6, - "colIdx": 1 - }, - "spellIds": [ - 46968 - ], - "maxPoints": 1 - } - ] - } - ] \ No newline at end of file + +{ + "backgroundUrl": "https://wow.zamimg.com/images/wow/talents/backgrounds/cata/TODO.jpg", + "talents": [ + { + "fieldName": "juggernaut", + "fancyName": "Juggernaut", + "location": { + "rowIdx": 0, + "colIdx": 0 + }, + "spellId": 103826 + }, + { + "fieldName": "doubleTime", + "fancyName": "Double Time", + "location": { + "rowIdx": 0, + "colIdx": 1 + }, + "spellId": 103827 + }, + { + "fieldName": "warbringer", + "fancyName": "Warbringer", + "location": { + "rowIdx": 0, + "colIdx": 2 + }, + "spellId": 103828 + }, + { + "fieldName": "enragedRegeneration", + "fancyName": "Enraged Regeneration", + "location": { + "rowIdx": 1, + "colIdx": 0 + }, + "spellId": 55694 + }, + { + "fieldName": "secondWind", + "fancyName": "Second Wind", + "location": { + "rowIdx": 1, + "colIdx": 1 + }, + "spellId": 29838 + }, + { + "fieldName": "impendingVictory", + "fancyName": "Impending Victory", + "location": { + "rowIdx": 1, + "colIdx": 2 + }, + "spellId": 103840 + }, + { + "fieldName": "staggeringShout", + "fancyName": "Staggering Shout", + "location": { + "rowIdx": 2, + "colIdx": 0 + }, + "spellId": 107566 + }, + { + "fieldName": "piercingHowl", + "fancyName": "Piercing Howl", + "location": { + "rowIdx": 2, + "colIdx": 1 + }, + "spellId": 12323 + }, + { + "fieldName": "disruptingShout", + "fancyName": "Disrupting Shout", + "location": { + "rowIdx": 2, + "colIdx": 2 + }, + "spellId": 102060 + }, + { + "fieldName": "bladestorm", + "fancyName": "Bladestorm", + "location": { + "rowIdx": 3, + "colIdx": 0 + }, + "spellId": 46924 + }, + { + "fieldName": "shockwave", + "fancyName": "Shockwave", + "location": { + "rowIdx": 3, + "colIdx": 1 + }, + "spellId": 46968 + }, + { + "fieldName": "dragonRoar", + "fancyName": "Dragon Roar", + "location": { + "rowIdx": 3, + "colIdx": 2 + }, + "spellId": 118000 + }, + { + "fieldName": "massSpellReflection", + "fancyName": "Mass Spell Reflection", + "location": { + "rowIdx": 4, + "colIdx": 0 + }, + "spellId": 114028 + }, + { + "fieldName": "safeguard", + "fancyName": "Safeguard", + "location": { + "rowIdx": 4, + "colIdx": 1 + }, + "spellId": 114029 + }, + { + "fieldName": "vigilance", + "fancyName": "Vigilance", + "location": { + "rowIdx": 4, + "colIdx": 2 + }, + "spellId": 114030 + }, + { + "fieldName": "avatar", + "fancyName": "Avatar", + "location": { + "rowIdx": 5, + "colIdx": 0 + }, + "spellId": 107574 + }, + { + "fieldName": "bloodbath", + "fancyName": "Bloodbath", + "location": { + "rowIdx": 5, + "colIdx": 1 + }, + "spellId": 12292 + }, + { + "fieldName": "stormBolt", + "fancyName": "Storm Bolt", + "location": { + "rowIdx": 5, + "colIdx": 2 + }, + "spellId": 107570 + } + ] +} diff --git a/ui/core/talents/warlock.ts b/ui/core/talents/warlock.ts index e8ade0dffb..3fe93a5bbf 100644 --- a/ui/core/talents/warlock.ts +++ b/ui/core/talents/warlock.ts @@ -1,185 +1,186 @@ -import { WarlockMajorGlyph, WarlockMinorGlyph,WarlockPrimeGlyph, WarlockTalents } from '../proto/warlock.js'; +import { WarlockMajorGlyph, WarlockMinorGlyph, WarlockTalents } from '../proto/warlock.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import WarlockTalentJson from './trees/warlock.json'; - -export const warlockTalentsConfig: TalentsConfig = newTalentsConfig(WarlockTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import WarlockTalentJson from './trees/warlock.json';export const warlockTalentsConfig: TalentsConfig = newTalentsConfig(WarlockTalentJson); export const warlockGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [WarlockPrimeGlyph.GlyphOfBaneOfAgony]: { - name: 'Glyph of Bane of Agony', - description: 'Increases the duration of your Bane of Agony by 4 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_curseofsargeras.jpg', - }, - [WarlockPrimeGlyph.GlyphOfChaosBolt]: { - name: 'Glyph of Chaos Bolt', - description: 'Reduces the cooldown on Chaos Bolt by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warlock_chaosbolt.jpg', - }, - [WarlockPrimeGlyph.GlyphOfConflagrate]: { - name: 'Glyph of Conflagrate', - description: 'Reduces the cooldown of your Conflagrate by 2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_fireball.jpg', - }, - [WarlockPrimeGlyph.GlyphOfCorruption]: { - name: 'Glyph of Corruption', - description: 'Your Corruption spell has a 4% chance to cause you to enter a Shadow Trance state after damaging the opponent. The Shadow Trance state reduces the casting time of your next Shadow Bolt spell by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_abominationexplosion.jpg', - }, - [WarlockPrimeGlyph.GlyphOfFelguard]: { - name: 'Glyph of Felguard', - description: 'Increases the damage done by your Felguard\'s Legion Strike by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonfelguard.jpg', - }, - [WarlockPrimeGlyph.GlyphOfHaunt]: { - name: 'Glyph of Haunt', - description: 'The bonus damage granted by your Haunt spell is increased by an additional 3%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warlock_haunt.jpg', - }, - [WarlockPrimeGlyph.GlyphOfImmolate]: { - name: 'Glyph of Immolate', - description: 'Increases the periodic damage of your Immolate by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_immolation.jpg', - }, - [WarlockPrimeGlyph.GlyphOfImp]: { - name: 'Glyph of Imp', - description: 'Increases the damage done by your Imp\'s Firebolt spell by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonimp.jpg', - }, - [WarlockPrimeGlyph.GlyphOfIncinerate]: { - name: 'Glyph of Incinerate', - description: 'Increases the damage done by Incinerate by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_fire_burnout.jpg', - }, - [WarlockPrimeGlyph.GlyphOfLashOfPain]: { - name: 'Glyph of Lash of Pain', - description: 'Increases the damage done by your Succubus\' Lash of Pain by 25%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_curse.jpg', - }, - [WarlockPrimeGlyph.GlyphOfMetamorphosis]: { - name: 'Glyph of Metamorphosis', - description: 'Increases the duration of your Metamorphosis by 6 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonform.jpg', - }, - [WarlockPrimeGlyph.GlyphOfShadowburn]: { - name: 'Glyph of Shadowburn', - description: 'If your Shadowburn fails to kill the target at or below 20% health, your Shadowburn\'s cooldown is instantly reset. This effect has a 6 sec cooldown.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_scourgebuild.jpg', - }, - [WarlockPrimeGlyph.GlyphOfUnstableAffliction]: { - name: 'Glyph of Unstable Affliction', - description: 'Decreases the casting time of your Unstable Affliction by 0.2 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unstableaffliction_3.jpg', - }, - }, majorGlyphs: { - [WarlockMajorGlyph.GlyphOfDeathCoilWl]: { - name: 'Glyph of Death Coil', - description: 'Increases the duration of your Death Coil by 0.5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathcoil.jpg', + [WarlockMajorGlyph.GlyphOfConflagrate]: { + name: "Glyph of Conflagrate", + description: "Conflagrate no longer requires Immolate to snare the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_fireball.jpg", }, - [WarlockMajorGlyph.GlyphOfDemonicCircle]: { - name: 'Glyph of Demonic Circle', - description: 'Reduces the cooldown on Demonic Circle by 4 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demoniccircleteleport.jpg', + [WarlockMajorGlyph.GlyphOfSiphonLife]: { + name: "Glyph of Siphon Life", + description: "Your $?s348[Immolate][]$?!s348[Corruption][] spell will heal you for ${$m1/1000}.1% of your maximum health when dealing $?s348[periodic ][]damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_requiem.jpg", }, [WarlockMajorGlyph.GlyphOfFear]: { - name: 'Glyph of Fear', - description: 'Your Fear causes the target to tremble in place instead of fleeing in fear, but now causes Fear to have a 5 sec cooldown.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_possession.jpg', + name: "Glyph of Fear", + description: "Your Fear causes the target to tremble in place instead of fleeing in fear.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_possession.jpg", }, - [WarlockMajorGlyph.GlyphOfFelhunter]: { - name: 'Glyph of Felhunter', - description: 'When your Felhunter uses Devour Magic, you will also be healed for that amount.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonfelhunter.jpg', + [WarlockMajorGlyph.GlyphOfDemonTraining]: { + name: "Glyph of Demon Training", + description: "Improves your demon\'s special abilities:\u000D\u000A\u000D\u000AYour $?s108499[Fel Imp][Imp]\'s Firebolt cast time is reduced by 50% and fires in bursts of three.\u000D\u000A\u000D\u000AIncreases your $?s108499[Voidlord][Voidwalker]\'s total armor by $s1%.\u000D\u000A\u000D\u000AYour $?s108499[Shivarra][Succubus]\'s $?s108499[Mesmerizes][Seduction] ability also removes all damage over time effects from the target.\u000D\u000A\u000D\u000AWhen your $?s108499[Observer][Felhunter] uses $?s108499[Clone Magic][Devour Magic], you will also be healed for that amount.\u000D\u000A\u000D\u000AIncreases your $?s108499[Wrathguard][Felguard]\'s total health by $s3%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonfelhunter.jpg", }, [WarlockMajorGlyph.GlyphOfHealthstone]: { - name: 'Glyph of Healthstone', - description: 'You receive 30% more healing from using a healthstone.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_stone_04.jpg', + name: "Glyph of Healthstone", + description: "You receive $56224s1% more healing from using a healthstone, but the health is restored over ${$m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_stone_04.jpg", }, - [WarlockMajorGlyph.GlyphOfHowlOfTerror]: { - name: 'Glyph of Howl of Terror', - description: 'Reduces the cooldown on your Howl of Terror spell by 8 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathscream.jpg', + [WarlockMajorGlyph.GlyphOfCurseOfTheElements]: { + name: "Glyph of Curse of the Elements", + description: "Curse of the Elements hits $s1 additional nearby targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/warlock_curse_shadow.jpg", }, - [WarlockMajorGlyph.GlyphOfLifeTap]: { - name: 'Glyph of Life Tap', - description: 'Reduces the global cooldown of your Life Tap by 0.5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_burningspirit.jpg', - }, - [WarlockMajorGlyph.GlyphOfSeduction]: { - name: 'Glyph of Seduction', - description: 'Your Succubus\'s Seduction ability also removes all damage over time effects from the target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_mindsteal.jpg', - }, - [WarlockMajorGlyph.GlyphOfShadowBolt]: { - name: 'Glyph of Shadow Bolt', - description: 'Reduces the mana cost of your Shadow Bolt by 15%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowbolt.jpg', - }, - [WarlockMajorGlyph.GlyphOfShadowflame]: { - name: 'Glyph of Shadowflame', - description: 'Your Shadowflame also applies a 70% movement speed slow to its victims.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warlock_shadowflame.jpg', - }, - [WarlockMajorGlyph.GlyphOfSoulLink]: { - name: 'Glyph of Soul Link', - description: 'Increases the percentage of damage shared via your Soul Link by an additional 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_gathershadows.jpg', - }, - [WarlockMajorGlyph.GlyphOfSoulSwap]: { - name: 'Glyph of Soul Swap', - description: 'Your Soul Swap leaves your damage-over-time spells behind on the target you Soul Swapped from, but gives Soul Swap a 30 sec cooldown.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warlock_soulswap.jpg', + [WarlockMajorGlyph.GlyphOfImpSwarm]: { + name: "Glyph of Imp Swarm", + description: "Teaches you the ability Imp Swarm. \u000D\u000ARequires Demonology.\u000D\u000A\u000D\u000A$@spellicon104316 $@spellname104316\u000D\u000A$@spelldesc104316", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warlock_impoweredimp.jpg", + }, + [WarlockMajorGlyph.GlyphOfHavoc]: { + name: "Glyph of Havoc", + description: "Havoc gains $s1 additional charges, but the cooldown is increased by ${$m2/1000} seconds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warlock_baneofhavoc.jpg", }, [WarlockMajorGlyph.GlyphOfSoulstone]: { - name: 'Glyph of Soulstone', - description: 'Increases the amount of health you gain from resurrecting via a Soulstone by an additional 40%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_misc_orb_04.jpg', + name: "Glyph of Soulstone", + description: "Players resurrected by Soulstone are returned to life with ${60+$56231m1}% health.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_orb_04.jpg", + }, + [WarlockMajorGlyph.GlyphOfUnstableAffliction]: { + name: "Glyph of Unstable Affliction", + description: "Reduces the cast time of Unstable Affliction by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unstableaffliction_3.jpg", + }, + [WarlockMajorGlyph.GlyphOfSoulConsumption]: { + name: "Glyph of Soul Consumption", + description: "$?c0|c1[Your Drain Soul restores $58068s1% of your total health after you kill a target that yields experience or honor. ][]$?c0|c2[You restore $58068s1% of your total health after you kill a target in Demon Form that yields experience or honor. ][]$?c0|c3[You restore $58068s1% of your total health after you kill a target with Chaos Bolt that yields experience or honor. ][]", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warlock_soulsiphon.jpg", + }, + [WarlockMajorGlyph.GlyphOfCurseOfExhaustion]: { + name: "Glyph of Curse of Exhaustion", + description: "Curse of Exhaustion now reduces the targets movement speed by $?s58080[$18223m1][${($18223m1+$m1)*-1}]%, lasts half as long and has a ${$m3/1000} second cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_grimward.jpg", + }, + [WarlockMajorGlyph.GlyphOfDrainLife]: { + name: "Glyph of Drain Life", + description: "Increases the healing of your Drain Life by $s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain02.jpg", + }, + [WarlockMajorGlyph.GlyphOfDemonHunting]: { + name: "Glyph of Demon Hunting", + description: "Requires Demonology.\u000D\u000A\u000D\u000ATeaches you the ability $@spellname114168. \u000D\u000A\u000D\u000A$@spellname114168\u000D\u000A$@spelldesc114168", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_metamorphosis.jpg", + }, + [WarlockMajorGlyph.GlyphOfEmberTap]: { + name: "Glyph of Ember Tap", + description: "Ember Tap heals you for an additional $s3% of your health, but the health is restored over ${$m2/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_ember.jpg", + }, + [WarlockMajorGlyph.GlyphOfDemonicCircle]: { + name: "Glyph of Demonic Circle", + description: "Reduces the cooldown on Demonic Circle by ${$63309m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demoniccircleteleport.jpg", }, - [WarlockMajorGlyph.GlyphOfVoidwalker]: { - name: 'Glyph of Voidwalker', - description: 'Increases your Voidwalker\'s total health by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonvoidwalker.jpg', + [WarlockMajorGlyph.GlyphOfUnendingResolve]: { + name: "Glyph of Unending Resolve", + description: "The damage reduction of Unending Resolve is reduced by $s1%, but the cooldown is reduced by ${$m2/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonictactics.jpg", + }, + [WarlockMajorGlyph.GlyphOfLifeTap]: { + name: "Glyph of Life Tap", + description: "Your Life Tap no longer consumes health, but instead absorbs ${($MHP*0.15)} healing received. This effect stacks.\u000D\u000A\u000D\u000AThe absorb lasts ${$m1/1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_burningspirit.jpg", + }, + [WarlockMajorGlyph.GlyphOfEternalResolve]: { + name: "Glyph of Eternal Resolve", + description: "Unending Resolve can no longer be activated, but passively provides $148688s1% damage reduction from all sources.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonictactics.jpg", + }, + [WarlockMajorGlyph.GlyphOfSupernova]: { + name: "Glyph of Supernova", + description: "When you are killed, all enemies within $135031A1 yards take damage equal to 10% of your maximum health per Burning Ember held.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_ragnaros_supernova.jpg", }, }, minorGlyphs: { - [WarlockMinorGlyph.GlyphOfCurseOfExhaustion]: { - name: 'Glyph of Curse of Exhaustion', - description: 'Increases the range of your Curse of Exhaustion spell by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_grimward.jpg', + [WarlockMinorGlyph.GlyphOfHandOfGuldan]: { + name: "Glyph of Hand of Gul'dan", + description: "Your Hand of Gul\'dan can now be targeted at a location.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warlock_handofguldan.jpg", + }, + [WarlockMinorGlyph.GlyphOfVerdantSpheres]: { + name: "Glyph of Verdant Spheres", + description: "$?c3[When you have a Burning Ember, it appears around your character as a Verdant Sphere.][Your Soul Shards are transformed into Verdant Spheres.]", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_misc_enchantedpearlb.jpg", + }, + [WarlockMinorGlyph.GlyphOfNightmares]: { + name: "Glyph of Nightmares", + description: "Your Felsteed and Dreadsteed can cross water while running and leave a trail of flames.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_mount_nightmarehorse.jpg", + }, + [WarlockMinorGlyph.GlyphOfFelguard]: { + name: "Glyph of Felguard", + description: "Your Felguard will equip a random two-handed axe, sword or polearm from your backpack.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_summonfelguard.jpg", }, - [WarlockMinorGlyph.GlyphOfDrainSoul]: { - name: 'Glyph of Drain Soul', - description: 'Your Drain Soul restores 10% of your total mana after you kill a target that yields experience or honor.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_haunting.jpg', + [WarlockMinorGlyph.GlyphOfHealthFunnel]: { + name: "Glyph of Health Funnel", + description: "Your Health Funnel instantly restores $114189s1% of your demon\'s health, but has a 10 sec. cooldown.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg", + }, + [WarlockMinorGlyph.GlyphOfSubtlety]: { + name: "Glyph of Subtlety", + description: "Your Soul Shards no longer display while out of combat.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_masterofsubtlety.jpg", + }, + [WarlockMinorGlyph.GlyphOfShadowBolt]: { + name: "Glyph of Shadow Bolt", + description: "Splits your Shadow Bolt into three smaller attacks.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadowbolt.jpg", + }, + [WarlockMinorGlyph.GlyphOfCarrionSwarm]: { + name: "Glyph of Carrion Swarm", + description: "Your Carrion Swarm no longer knocks targets back.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warlock_demonicpower.jpg", + }, + [WarlockMinorGlyph.GlyphOfFallingMeteor]: { + name: "Glyph of Falling Meteor", + description: "If you use Demonic Leap while falling, you slam into the ground rapidly and will not die from falling damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_meteorstorm.jpg", + }, + [WarlockMinorGlyph.GlyphOfUnendingBreath]: { + name: "Glyph of Unending Breath", + description: "Increases the swim speed of targets affected by your Unending Breath spell by $58079s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonbreath.jpg", }, [WarlockMinorGlyph.GlyphOfEyeOfKilrogg]: { - name: 'Glyph of Eye of Kilrogg', - description: 'Increases the movement speed of your Eye of Kilrogg by 50% and allows it to fly in areas where flying mounts are enabled.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_evileye.jpg', + name: "Glyph of Eye of Kilrogg", + description: "Your Eye of Kilrogg is no longer stealthed and can now place your Demonic Circle. The casting Warlock must be within line of sight of the Eye of Kilrogg to place the Demonic Circle.\u000D\u000A\u000D\u000AIn addition, the movement speed of your Eye of Kilrogg is increased by $s1% and allows it to fly in areas where flying mounts are enabled.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_evileye.jpg", }, - [WarlockMinorGlyph.GlyphOfHealthFunnel]: { - name: 'Glyph of Health Funnel', - description: 'Reduces the pushback suffered from damaging attacks while channeling your Health Funnel spell by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_lifedrain.jpg', + [WarlockMinorGlyph.GlyphOfSubjugateDemon]: { + name: "Glyph of Subjugate Demon", + description: "Reduces the cast time of your Subjugate Demon spell by $58107s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_enslavedemon.jpg", }, - [WarlockMinorGlyph.GlyphOfRitualOfSouls]: { - name: 'Glyph of Ritual of Souls', - description: 'Reduces the mana cost of your Ritual of Souls spell by 70%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadesofdarkness.jpg', + [WarlockMinorGlyph.GlyphOfSoulwell]: { + name: "Glyph of Soulwell", + description: "Your soulwell glows with an eerie light.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_shadesofdarkness.jpg", }, - [WarlockMinorGlyph.GlyphOfSubjugateDemon]: { - name: 'Glyph of Subjugate Demon', - description: 'Reduces the cast time of your Subjugate Demon spell by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_enslavedemon.jpg', + [WarlockMinorGlyph.GlyphOfCrimsonBanish]: { + name: "Glyph of Crimson Banish", + description: "Your Banish spell is now red.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_cripple.jpg", }, - [WarlockMinorGlyph.GlyphOfUnendingBreath]: { - name: 'Glyph of Unending Breath', - description: 'Increases the swim speed of targets affected by your Unending Breath spell by 20%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_demonbreath.jpg', + [WarlockMinorGlyph.GlyphOfGatewayAttunement]: { + name: "Glyph of Gateway Attunement", + description: "Demonic Gateways will automatically activate when you step near them.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_warlock_demonicportal_green.jpg", }, }, -}; \ No newline at end of file +}; diff --git a/ui/core/talents/warrior.ts b/ui/core/talents/warrior.ts index dd5c22a966..65841f8f68 100644 --- a/ui/core/talents/warrior.ts +++ b/ui/core/talents/warrior.ts @@ -1,185 +1,231 @@ -import { WarriorMajorGlyph, WarriorMinorGlyph,WarriorPrimeGlyph, WarriorTalents } from '../proto/warrior.js'; +import { WarriorMajorGlyph, WarriorMinorGlyph, WarriorTalents } from '../proto/warrior.js'; import { GlyphsConfig } from './glyphs_picker.js'; -import { newTalentsConfig,TalentsConfig } from './talents_picker.js'; -import WarriorTalentJson from './trees/warrior.json'; - -export const warriorTalentsConfig: TalentsConfig = newTalentsConfig(WarriorTalentJson); +import { newTalentsConfig, TalentsConfig } from './talents_picker.js'; +import WarriorTalentJson from './trees/warrior.json';export const warriorTalentsConfig: TalentsConfig = newTalentsConfig(WarriorTalentJson); export const warriorGlyphsConfig: GlyphsConfig = { - primeGlyphs: { - [WarriorPrimeGlyph.GlyphOfBladestorm]: { - name: 'Glyph of Bladestorm', - description: 'Reduces the cooldown on Bladestorm by 15 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_bladestorm.jpg', - }, - [WarriorPrimeGlyph.GlyphOfBloodthirst]: { - name: 'Glyph of Bloodthirst', - description: 'Increases the damage of Bloodthirst by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_bloodlust.jpg', - }, - [WarriorPrimeGlyph.GlyphOfDevastate]: { - name: 'Glyph of Devastate', - description: 'Increases the critical strike chance of Devastate by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_sword_11.jpg', - }, - [WarriorPrimeGlyph.GlyphOfMortalStrike]: { - name: 'Glyph of Mortal Strike', - description: 'Increases the damage of Mortal Strike by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_savageblow.jpg', - }, - [WarriorPrimeGlyph.GlyphOfOverpower]: { - name: 'Glyph of Overpower', - description: 'Increases the damage of Overpower by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_meleedamage.jpg', - }, - [WarriorPrimeGlyph.GlyphOfRagingBlow]: { - name: 'Glyph of Raging Blow', - description: 'Increases the critical strike chance of Raging Blow by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_hunter_swiftstrike.jpg', - }, - [WarriorPrimeGlyph.GlyphOfRevenge]: { - name: 'Glyph of Revenge', - description: 'Increases the damage of Revenge by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_revenge.jpg', - }, - [WarriorPrimeGlyph.GlyphOfShieldSlam]: { - name: 'Glyph of Shield Slam', - description: 'Increases the damage of Shield Slam by 10%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_shield_05.jpg', - }, - [WarriorPrimeGlyph.GlyphOfSlam]: { - name: 'Glyph of Slam', - description: 'Increases the critical strike chance of Slam by 5%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_decisivestrike.jpg', - }, - }, majorGlyphs: { - [WarriorMajorGlyph.GlyphOfCleaving]: { - name: 'Glyph of Cleaving', - description: 'Increases the number of targets your Cleave hits by 1.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_cleave.jpg', - }, - [WarriorMajorGlyph.GlyphOfColossusSmash]: { - name: 'Glyph of Colossus Smash', - description: 'Your Colossus Smash also applies the Sunder Armor effect to your target.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_colossussmash.jpg', - }, - [WarriorMajorGlyph.GlyphOfDeathWish]: { - name: 'Glyph of Death Wish', - description: 'Death Wish no longer increases damage taken.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathpact.jpg', - }, - [WarriorMajorGlyph.GlyphOfHeroicThrow]: { - name: 'Glyph of Heroic Throw', - description: 'Your Heroic Throw applies a stack of Sunder Armor.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/inv_axe_66.jpg', - }, - [WarriorMajorGlyph.GlyphOfIntercept]: { - name: 'Glyph of Intercept', - description: 'Increases the duration of your Intercept stun by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_sprint.jpg', - }, - [WarriorMajorGlyph.GlyphOfIntervene]: { - name: 'Glyph of Intervene', - description: 'Increases the number of attacks you intercept for your Intervene target by 1.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_victoryrush.jpg', - }, [WarriorMajorGlyph.GlyphOfLongCharge]: { - name: 'Glyph of Long Charge', - description: 'Increases the range of your Charge ability by 5 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_charge.jpg', - }, - [WarriorMajorGlyph.GlyphOfPiercingHowl]: { - name: 'Glyph of Piercing Howl', - description: 'Increases the radius of Piercing Howl by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_shadow_deathscream.jpg', + name: "Glyph of Long Charge", + description: "Increases the range of your Charge ability by $58097s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_charge.jpg", + }, + [WarriorMajorGlyph.GlyphOfUnendingRage]: { + name: "Glyph of Unending Rage", + description: "Increases your maximum Rage by $/10;s1.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_intensifyrage.jpg", + }, + [WarriorMajorGlyph.GlyphOfEnragedSpeed]: { + name: "Glyph of Enraged Speed", + description: "While Enraged, you move $58355s1% faster.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_racial_bloodrage.jpg", + }, + [WarriorMajorGlyph.GlyphOfHinderingStrikes]: { + name: "Glyph of Hindering Strikes", + description: "Your Heroic Strike and Cleave now also reduce the target\'s movement speed by $129923s1% for $129923d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_cleave.jpg", + }, + [WarriorMajorGlyph.GlyphOfHeavyRepercussions]: { + name: "Glyph of Heavy Repercussions", + description: "While your Shield Block is active, your Shield Slam hits for an additional $58388s1% damage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_defend.jpg", + }, + [WarriorMajorGlyph.GlyphOfBloodthirst]: { + name: "Glyph of Bloodthirst", + description: "Increases the healing of Bloodthirst by $58367s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_bloodlust.jpg", + }, + [WarriorMajorGlyph.GlyphOfRudeInterruption]: { + name: "Glyph of Rude Interruption", + description: "Successfully interrupting a spell with Pummel increases your damage by $86663s1% for $86663d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_commandingshout.jpg", + }, + [WarriorMajorGlyph.GlyphOfGagOrder]: { + name: "Glyph of Gag Order", + description: "Your Pummel and Heroic Throw also silence the target for $18498d. Does not work against players.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_axe_66.jpg", + }, + [WarriorMajorGlyph.GlyphOfBlitz]: { + name: "Glyph of Blitz", + description: "Your Charge also $?s103828[roots and snares ][stuns ]an additional $58377s1 nearby targets.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_victoryrush.jpg", + }, + [WarriorMajorGlyph.GlyphOfMortalStrike]: { + name: "Glyph of Mortal Strike", + description: "When your Mortal Strike is affecting a target, healing effects on you are increased by $58368s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_savageblow.jpg", + }, + [WarriorMajorGlyph.GlyphOfDieByTheSword]: { + name: "Glyph of Die by the Sword", + description: "While Die by the Sword is active, using Overpower increases its duration by $m1 sec and using Wild Strike increases its duration by $/10;m2 sec per use.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_challange.jpg", + }, + [WarriorMajorGlyph.GlyphOfHamstring]: { + name: "Glyph of Hamstring", + description: "When you spend Rage to apply Hamstring, the Rage cost of your next Hamstring is reduced by $115945s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_shockwave.jpg", + }, + [WarriorMajorGlyph.GlyphOfHoldTheLine]: { + name: "Glyph of Hold the Line", + description: "Improves the damage of your next Revenge by $84619s1% following a successful parry.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_revenge.jpg", + }, + [WarriorMajorGlyph.GlyphOfShieldSlam]: { + name: "Glyph of Shield Slam", + description: "Your Shield Slam now dispels 1 magical effect.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_shield_05.jpg", + }, + [WarriorMajorGlyph.GlyphOfHoarseVoice]: { + name: "Glyph of Hoarse Voice", + description: "Reduces the cooldown and Rage generation of your Battle and Commanding Shout by $58387s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_battleshout.jpg", }, - [WarriorMajorGlyph.GlyphOfRapidCharge]: { - name: 'Glyph of Rapid Charge', - description: 'Reduces the cooldown of your Charge ability by 1 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_charge.jpg', + [WarriorMajorGlyph.GlyphOfSweepingStrikes]: { + name: "Glyph of Sweeping Strikes", + description: "When you hit a target with Sweeping Strikes, you gain $/10;124333s1 Rage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_slicedice.jpg", }, [WarriorMajorGlyph.GlyphOfResonatingPower]: { - name: 'Glyph of Resonating Power', - description: 'Reduces the rage cost of your Thunder Clap ability by 5.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_thunderclap.jpg', - }, - [WarriorMajorGlyph.GlyphOfShieldWall]: { - name: 'Glyph of Shield Wall', - description: 'Shield Wall now reduces damage taken by an additional 20%, but its cooldown is increased by 2 min.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shieldwall.jpg', + name: "Glyph of Resonating Power", + description: "Increases the damage and cooldown of Thunder Clap by $58356s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_thunderclap.jpg", }, - [WarriorMajorGlyph.GlyphOfShockwave]: { - name: 'Glyph of Shockwave', - description: 'Reduces the cooldown on Shockwave by 3 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shockwave.jpg', + [WarriorMajorGlyph.GlyphOfVictoryRush]: { + name: "Glyph of Victory Rush", + description: "Increases the total healing provided by your Victory Rush by $58382s1%. \u000D\u000AThis glyph has no effect if combined with the Impending Victory talent.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_devastate.jpg", + }, + [WarriorMajorGlyph.GlyphOfRagingWind]: { + name: "Glyph of Raging Wind", + description: "Your Raging Blow hits increase the damage of your next Whirlwind by $115317s1%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_hunter_swiftstrike.jpg", + }, + [WarriorMajorGlyph.GlyphOfWhirlwind]: { + name: "Glyph of Whirlwind", + description: "Increases the radius of Whirlwind by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_whirlwind.jpg", + }, + [WarriorMajorGlyph.GlyphOfDeathFromAbove]: { + name: "Glyph of Death From Above", + description: "Reduces the cooldown on Heroic Leap by ${$63325m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_heroicleap.jpg", + }, + [WarriorMajorGlyph.GlyphOfVictoriousThrow]: { + name: "Glyph of Victorious Throw", + description: "Increases the range of Victory Rush and Impending Victory by $s1 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_warrior_wildstrike.jpg", }, [WarriorMajorGlyph.GlyphOfSpellReflection]: { - name: 'Glyph of Spell Reflection', - description: 'Reduces the cooldown on Spell Reflection by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shieldreflection.jpg', - }, - [WarriorMajorGlyph.GlyphOfSunderArmor]: { - name: 'Glyph of Sunder Armor', - description: 'When you use Sunder Armor or Devastate, a second nearby target also receives Sunder Armor.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_sunder.jpg', + name: "Glyph of Spell Reflection", + description: "Reduces the cooldown on Spell Reflection by ${$63328m1/-1000} sec.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shieldreflection.jpg", }, - [WarriorMajorGlyph.GlyphOfSweepingStrikes]: { - name: 'Glyph of Sweeping Strikes', - description: 'Reduces the rage cost of your Sweeping Strikes ability by 100%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_rogue_slicedice.jpg', - }, - [WarriorMajorGlyph.GlyphOfThunderClap]: { - name: 'Glyph of Thunder Clap', - description: 'Increases the radius of your Thunder Clap ability by 2 yards.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_thunderclap.jpg', + [WarriorMajorGlyph.GlyphOfShieldWall]: { + name: "Glyph of Shield Wall", + description: "Shield Wall now reduces damage taken by an additional $63329m2%, but its cooldown is increased by ${$63329m1/60000} min.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shieldwall.jpg", }, - [WarriorMajorGlyph.GlyphOfVictoryRush]: { - name: 'Glyph of Victory Rush', - description: 'Increases the total healing provided by your Victory Rush by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_devastate.jpg', + [WarriorMajorGlyph.GlyphOfColossusSmash]: { + name: "Glyph of Colossus Smash", + description: "Your Colossus Smash also applies the Sunder Armor effect to your target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_colossussmash.jpg", + }, + [WarriorMajorGlyph.GlyphOfBullRush]: { + name: "Glyph of Bull Rush", + description: "Your Charge generates $s1 additional Rage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/achievement_character_tauren_male.jpg", + }, + [WarriorMajorGlyph.GlyphOfRecklessness]: { + name: "Glyph of Recklessness", + description: "Decreases the critical chance of Recklessness by $s1% but increases its duration by $s2%.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_criticalstrike.jpg", + }, + [WarriorMajorGlyph.GlyphOfIncite]: { + name: "Glyph of Incite", + description: "Using Demoralizing Shout makes your next 3 Heroic Strike or Cleave abilities free.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_incite.jpg", + }, + [WarriorMajorGlyph.GlyphOfImpalingThrows]: { + name: "Glyph of Impaling Throws", + description: "Heroic Throw now leaves an axe in the target, which can be retrieved by moving within $s1 yards of the target to finish the cooldown of Heroic Throw. This effect will only occur when Heroic Throw is cast from more than $s3 yards away from the target.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_axe_05.jpg", + }, + [WarriorMajorGlyph.GlyphOfTheExecutor]: { + name: "Glyph of the Executor", + description: "Killing an enemy with Execute grants you ${$147352m1/10} rage.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/warrior_talent_icon_lambstotheslaughter.jpg", }, }, minorGlyphs: { - [WarriorMinorGlyph.GlyphOfBattle]: { - name: 'Glyph of Battle', - description: 'Increases the duration by 2 min and area of effect by 50% of your Battle Shout.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_battleshout.jpg', - }, - [WarriorMinorGlyph.GlyphOfBerserkerRage]: { - name: 'Glyph of Berserker Rage', - description: 'Berserker Rage generates 5 Rage when used.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_ancestralguardian.jpg', + [WarriorMinorGlyph.GlyphOfMysticShout]: { + name: "Glyph of Mystic Shout", + description: "Your Battle Shout and Commanding Shout cause you to hover in the air for $121186d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_battleshout.jpg", + }, + [WarriorMinorGlyph.GlyphOfBloodcurdlingShout]: { + name: "Glyph of Bloodcurdling Shout", + description: "Your Battle Shout and Commanding Shout terrify small animals.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_furiousresolve.jpg", + }, + [WarriorMinorGlyph.GlyphOfGushingWound]: { + name: "Glyph of Gushing Wound", + description: "Your Deep Wounds are even bloodier than normal.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_backstab.jpg", + }, + [WarriorMinorGlyph.GlyphOfMightyVictory]: { + name: "Glyph of Mighty Victory", + description: "When your Victory Rush or Impending Victory heal you, you grow slightly larger.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_devastate.jpg", }, [WarriorMinorGlyph.GlyphOfBloodyHealing]: { - name: 'Glyph of Bloody Healing', - description: 'Increases the healing you receive from Bloodthirst by 40%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/spell_nature_bloodlust.jpg', - }, - [WarriorMinorGlyph.GlyphOfCommand]: { - name: 'Glyph of Command', - description: 'Increases the duration by 2 min and area of effect by 50% of your Commanding Shout.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_rallyingcry.jpg', - }, - [WarriorMinorGlyph.GlyphOfDemoralizingShout]: { - name: 'Glyph of Demoralizing Shout', - description: 'Increases the duration by 15 sec and area of effect by 50% of your Demoralizing Shout.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_warcry.jpg', - }, - [WarriorMinorGlyph.GlyphOfEnduringVictory]: { - name: 'Glyph of Enduring Victory', - description: 'Increases the window of opportunity in which you can use Victory Rush by 5 sec.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_devastate.jpg', - }, - [WarriorMinorGlyph.GlyphOfFuriousSundering]: { - name: 'Glyph of Furious Sundering', - description: 'Reduces the cost of Sunder Armor by 50%.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_warrior_sunder.jpg', + name: "Glyph of Bloody Healing", + description: "Increases the healing you receive from bandages by $58369s1% while your Deep Wounds is active.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_backstab.jpg", }, [WarriorMinorGlyph.GlyphOfIntimidatingShout]: { - name: 'Glyph of Intimidating Shout', - description: 'All targets of your Intimidating Shout now tremble in place instead of fleeing in fear.', - iconUrl: 'https://wow.zamimg.com/images/wow/icons/large/ability_golemthunderclap.jpg', - } + name: "Glyph of Intimidating Shout", + description: "All targets of your Intimidating Shout now tremble in place instead of fleeing in fear.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_golemthunderclap.jpg", + }, + [WarriorMinorGlyph.GlyphOfThunderStrike]: { + name: "Glyph of Thunder Strike", + description: "Your Thunder Clap visual includes a lightning strike.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_thunderclap.jpg", + }, + [WarriorMinorGlyph.GlyphOfCrowFeast]: { + name: "Glyph of Crow Feast", + description: "Your Execute critical strikes summon a flock of carrion birds.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/inv_sword_48.jpg", + }, + [WarriorMinorGlyph.GlyphOfBurningAnger]: { + name: "Glyph of Burning Anger", + description: "You get so angry when Enraged that you catch on fire.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_shadow_unholyfrenzy.jpg", + }, + [WarriorMinorGlyph.GlyphOfTheBlazingTrail]: { + name: "Glyph of the Blazing Trail", + description: "Your Charge leaves a trail of fire in its wake. If you\'re going to Charge why not do it with some style?", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_fire_burningspeed.jpg", + }, + [WarriorMinorGlyph.GlyphOfTheRagingWhirlwind]: { + name: "Glyph of the Raging Whirlwind", + description: "Whirlwind gives you ${$147297m1*6/10} rage over $147297d, but for that time you no longer generate rage from autoattacks.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/spell_nature_unleashedrage.jpg", + }, + [WarriorMinorGlyph.GlyphOfTheSubtleDefender]: { + name: "Glyph of the Subtle Defender", + description: "Removes the threat generation bonus from Defensive Stance.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_shieldguard.jpg", + }, + [WarriorMinorGlyph.GlyphOfTheWatchfulEye]: { + name: "Glyph of the Watchful Eye", + description: "Intervene will now target the party or raid member with the lowest health within $3411A3 yards.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_rogue_bloodyeye.jpg", + }, + [WarriorMinorGlyph.GlyphOfTheWeaponmaster]: { + name: "Glyph of the Weaponmaster", + description: "Your Shout abilities cause the appearance of your weapon to change to that of a random weapon from your primary bag for $147367d.", + iconUrl: "https://wow.zamimg.com/images/wow/icons/large/ability_warrior_weaponmastery.jpg", + }, }, }; diff --git a/ui/core/utils.ts b/ui/core/utils.ts index edb608ed2c..2bf85b4544 100644 --- a/ui/core/utils.ts +++ b/ui/core/utils.ts @@ -2,6 +2,7 @@ import cloneDeep from 'lodash/cloneDeep'; import { v4 as uuidv4 } from 'uuid'; + export const randomUUID = () => uuidv4(); // eslint-disable-next-line @typescript-eslint/no-empty-function @@ -383,3 +384,26 @@ export const isExternal = () => getEnvironment() === 'external'; export const isDevMode = () => { return import.meta.env.DEV; }; +export const normalizeName = (name: string): string => { + return name + .replace(/[^\w\s]/g, '') + .split(/\s+/) + .map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()) + .join(''); +}; + +export const getEnumKeyFromValue = >(enumObj: T, value: number): string | undefined => { + return (enumObj as any)[value]; +}; + +export const findInputItemForEnum = , U extends { name: string }>( + enumObj: T, + enumValue: number, + items: U[], +): U | undefined => { + const targetEnumKey = getEnumKeyFromValue(enumObj, enumValue); + if (!targetEnumKey) { + return undefined; + } + return items.find(item => normalizeName(item.name) === targetEnumKey); +}; diff --git a/ui/core/wowhead.ts b/ui/core/wowhead.ts index 87e520d23e..4a915ab0f2 100644 --- a/ui/core/wowhead.ts +++ b/ui/core/wowhead.ts @@ -78,13 +78,13 @@ export type WowheadTooltipSpellParams = { difficultyId?: 14 | 15 | 16; }; -export const WOWHEAD_EXPANSION_ENV = 11; +export const WOWHEAD_EXPANSION_ENV = 15; export const buildWowheadTooltipDataset = async (options: WowheadTooltipItemParams | WowheadTooltipSpellParams) => { const lang = getLanguageCode(); const params = new URLSearchParams(); const langPrefix = lang ? lang + '.' : ''; - params.set('domain', `${langPrefix}cata`); + params.set('domain', `${langPrefix}mop-classic`); params.set('dataEnv', String(WOWHEAD_EXPANSION_ENV)); params.set('lvl', String(options.level || CHARACTER_LEVEL)); diff --git a/ui/death_knight/blood/presets.ts b/ui/death_knight/blood/presets.ts index 90ca5b5cdf..cecf60f318 100644 --- a/ui/death_knight/blood/presets.ts +++ b/ui/death_knight/blood/presets.ts @@ -1,6 +1,6 @@ import * as PresetUtils from '../../core/preset_utils.js'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Stat, TinkerHands } from '../../core/proto/common.js'; -import { BloodDeathKnight_Options, DeathKnightMajorGlyph, DeathKnightMinorGlyph, DeathKnightPrimeGlyph } from '../../core/proto/death_knight'; +import { ConsumesSpec, Glyphs, Profession, PseudoStat, Stat } from '../../core/proto/common.js'; +import { BloodDeathKnight_Options, DeathKnightMajorGlyph, DeathKnightMinorGlyph } from '../../core/proto/death_knight'; import { SavedTalents } from '../../core/proto/ui.js'; import { Stats } from '../../core/proto_utils/stats'; import DefensiveBloodApl from './apls/defensive.apl.json'; @@ -78,11 +78,8 @@ export const P3_BLOOD_EP_PRESET = PresetUtils.makePresetEpWeights( export const BloodTalents = { name: 'Blood', data: SavedTalents.create({ - talentsString: '02323203102122111321-3-033', + talentsString: '', glyphs: Glyphs.create({ - prime1: DeathKnightPrimeGlyph.GlyphOfDeathStrike, - prime2: DeathKnightPrimeGlyph.GlyphOfHeartStrike, - prime3: DeathKnightPrimeGlyph.GlyphOfRuneStrike, major1: DeathKnightMajorGlyph.GlyphOfAntiMagicShell, major2: DeathKnightMajorGlyph.GlyphOfDancingRuneWeapon, major3: DeathKnightMajorGlyph.GlyphOfBoneShield, @@ -96,12 +93,12 @@ export const BloodTalents = { export const P1_PRESET = PresetUtils.makePresetBuild('P1', { gear: P1_BLOOD_PRESET, epWeights: P1_BLOOD_EP_PRESET, -}) +}); export const P3_PRESET = PresetUtils.makePresetBuild('P3', { gear: P3_BLOOD_BALANCED_PRESET, epWeights: P3_BLOOD_EP_PRESET, -}) +}); export const DefaultOptions = BloodDeathKnight_Options.create({ classOptions: { @@ -109,12 +106,12 @@ export const DefaultOptions = BloodDeathKnight_Options.create({ }, }); -export const DefaultConsumes = Consumes.create({ - flask: Flask.FlaskOfSteelskin, - food: Food.FoodBeerBasedCrocolisk, - defaultPotion: Potions.GolembloodPotion, - prepopPotion: Potions.GolembloodPotion, - tinkerHands: TinkerHands.TinkerHandsSynapseSprings, +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58085, // Flask of Steelskin + foodId: 62670, // Beer-Basted Crocolisk + potId: 58146, // Golemblood Potion + prepotId: 58146, // Golemblood Potion + tinkerId: 82174, // TinkerHandsSynapseSprings (not in list) }); export const OtherDefaults = { diff --git a/ui/death_knight/blood/sim.ts b/ui/death_knight/blood/sim.ts index ad60f01935..f1497b8eb6 100644 --- a/ui/death_knight/blood/sim.ts +++ b/ui/death_knight/blood/sim.ts @@ -77,7 +77,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBloodDeathKnight, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.BloodTalents.data, // Default spec-specific settings. @@ -185,7 +185,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBloodDeathKnight, { spec: Spec.SpecBloodDeathKnight, talents: Presets.BloodTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceWorgen, diff --git a/ui/death_knight/frost/presets.ts b/ui/death_knight/frost/presets.ts index eddae96b9f..c7bb869f46 100644 --- a/ui/death_knight/frost/presets.ts +++ b/ui/death_knight/frost/presets.ts @@ -3,8 +3,17 @@ import { Player } from '../../core/player'; import * as PresetUtils from '../../core/preset_utils'; import { makeSpecChangeWarningToast } from '../../core/preset_utils'; import { APLRotation_Type as APLRotationType } from '../../core/proto/apl'; -import { Consumes, Flask, Food, Glyphs, HandType, ItemSlot, Potions, Profession, PseudoStat, Spec, Stat, TinkerHands } from '../../core/proto/common'; -import { DeathKnightMajorGlyph, DeathKnightMinorGlyph, DeathKnightPrimeGlyph, FrostDeathKnight_Options } from '../../core/proto/death_knight'; +import { + ConsumesSpec, + Glyphs, + HandType, + ItemSlot, + Profession, + PseudoStat, + Spec, + Stat, +} from '../../core/proto/common'; +import { DeathKnightMajorGlyph, DeathKnightMinorGlyph, FrostDeathKnight_Options } from '../../core/proto/death_knight'; import { SavedTalents } from '../../core/proto/ui'; import { Stats } from '../../core/proto_utils/stats'; import TwoHandAPL from '../../death_knight/frost/apls/2h.apl.json'; @@ -172,11 +181,8 @@ export const P1_MASTERFROST_EP_PRESET = PresetUtils.makePresetEpWeights( export const DualWieldTalents = { name: 'DW Obliterate', data: SavedTalents.create({ - talentsString: '2032-20330022233112012301-003', + talentsString: '', glyphs: Glyphs.create({ - prime1: DeathKnightPrimeGlyph.GlyphOfFrostStrike, - prime2: DeathKnightPrimeGlyph.GlyphOfObliterate, - prime3: DeathKnightPrimeGlyph.GlyphOfRaiseDead, major1: DeathKnightMajorGlyph.GlyphOfAntiMagicShell, major2: DeathKnightMajorGlyph.GlyphOfDeathGrip, major3: DeathKnightMajorGlyph.GlyphOfDarkSuccor, @@ -191,11 +197,8 @@ export const DualWieldTalents = { export const TwoHandTalents = { name: 'Two Hand', data: SavedTalents.create({ - talentsString: '103-32030022233112012031-033', + talentsString: '', glyphs: Glyphs.create({ - prime1: DeathKnightPrimeGlyph.GlyphOfFrostStrike, - prime2: DeathKnightPrimeGlyph.GlyphOfObliterate, - prime3: DeathKnightPrimeGlyph.GlyphOfHowlingBlast, major1: DeathKnightMajorGlyph.GlyphOfPestilence, major2: DeathKnightMajorGlyph.GlyphOfBloodBoil, major3: DeathKnightMajorGlyph.GlyphOfDarkSuccor, @@ -210,11 +213,8 @@ export const TwoHandTalents = { export const MasterfrostTalents = { name: 'Masterfrost', data: SavedTalents.create({ - talentsString: '2032-30330012233112012301-03', + talentsString: '', glyphs: Glyphs.create({ - prime1: DeathKnightPrimeGlyph.GlyphOfFrostStrike, - prime2: DeathKnightPrimeGlyph.GlyphOfObliterate, - prime3: DeathKnightPrimeGlyph.GlyphOfHowlingBlast, major1: DeathKnightMajorGlyph.GlyphOfPestilence, major2: DeathKnightMajorGlyph.GlyphOfBloodBoil, major3: DeathKnightMajorGlyph.GlyphOfDarkSuccor, @@ -239,14 +239,13 @@ export const OtherDefaults = { distanceFromTarget: 5, }; -export const DefaultConsumes = Consumes.create({ - flask: Flask.FlaskOfTitanicStrength, - food: Food.FoodBeerBasedCrocolisk, - defaultPotion: Potions.GolembloodPotion, - prepopPotion: Potions.GolembloodPotion, - tinkerHands: TinkerHands.TinkerHandsSynapseSprings, +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58088, // Flask of Titanic Strength + foodId: 62670, // Beer-Basted Crocolisk + potId: 58146, // Golemblood Potion + prepotId: 58146, // Golemblood Potion + tinkerId: 82174, // Synapse Springs }); - export const PRESET_BUILD_DW = PresetUtils.makePresetBuild('P3 - DW Obliterate', { gear: P3_DW_GEAR_PRESET, talents: DualWieldTalents, diff --git a/ui/death_knight/frost/sim.ts b/ui/death_knight/frost/sim.ts index 967fd5bfcb..0aab08c5c2 100644 --- a/ui/death_knight/frost/sim.ts +++ b/ui/death_knight/frost/sim.ts @@ -80,7 +80,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFrostDeathKnight, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.MasterfrostTalents.data, // Default spec-specific settings. @@ -185,7 +185,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFrostDeathKnight, { spec: Spec.SpecFrostDeathKnight, talents: Presets.MasterfrostTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceHuman, diff --git a/ui/death_knight/unholy/presets.ts b/ui/death_knight/unholy/presets.ts index 7b70bde696..76a92efb23 100644 --- a/ui/death_knight/unholy/presets.ts +++ b/ui/death_knight/unholy/presets.ts @@ -1,7 +1,7 @@ import * as PresetUtils from '../../core/preset_utils'; import { APLRotation_Type as APLRotationType } from '../../core/proto/apl.js'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Stat, TinkerHands, UnitReference } from '../../core/proto/common'; -import { DeathKnightMajorGlyph, DeathKnightMinorGlyph, DeathKnightPrimeGlyph, UnholyDeathKnight_Options } from '../../core/proto/death_knight'; +import { ConsumesSpec, Glyphs, Profession, PseudoStat, Stat, UnitReference } from '../../core/proto/common'; +import { DeathKnightMajorGlyph, DeathKnightMinorGlyph, UnholyDeathKnight_Options } from '../../core/proto/death_knight'; import { SavedTalents } from '../../core/proto/ui'; import { Stats } from '../../core/proto_utils/stats'; import DefaultApl from '../../death_knight/unholy/apls/default.apl.json'; @@ -31,7 +31,7 @@ export const P2_UNHOLY_EP_PRESET = PresetUtils.makePresetEpWeights( [Stat.StatExpertiseRating]: 0.94, [Stat.StatHasteRating]: 2.4, [Stat.StatHitRating]: 2.6, - [Stat.StatCritRating]: (1.43 + 0.69), + [Stat.StatCritRating]: 1.43 + 0.69, [Stat.StatMasteryRating]: 1.65, }, { @@ -48,7 +48,7 @@ export const P3_UNHOLY_EP_PRESET = PresetUtils.makePresetEpWeights( [Stat.StatArmor]: 0.03, [Stat.StatAttackPower]: 1, [Stat.StatExpertiseRating]: 1.13, - [Stat.StatHasteRating]: 2.40, + [Stat.StatHasteRating]: 2.4, [Stat.StatHitRating]: 2.61, [Stat.StatCritRating]: 2.33, [Stat.StatMasteryRating]: 1.87, @@ -65,15 +65,12 @@ export const P3_UNHOLY_EP_PRESET = PresetUtils.makePresetEpWeights( export const DefaultTalents = { name: 'Default', data: SavedTalents.create({ - talentsString: '2032-1-13300321230231021231', + talentsString: '', glyphs: Glyphs.create({ - prime1: DeathKnightPrimeGlyph.GlyphOfDeathCoil, - prime2: DeathKnightPrimeGlyph.GlyphOfScourgeStrike, - prime3: DeathKnightPrimeGlyph.GlyphOfRaiseDead, major1: DeathKnightMajorGlyph.GlyphOfPestilence, major2: DeathKnightMajorGlyph.GlyphOfBloodBoil, major3: DeathKnightMajorGlyph.GlyphOfAntiMagicShell, - minor1: DeathKnightMinorGlyph.GlyphOfDeathSEmbrace, + minor1: DeathKnightMinorGlyph.GlyphOfDeathsEmbrace, minor2: DeathKnightMinorGlyph.GlyphOfPathOfFrost, minor3: DeathKnightMinorGlyph.GlyphOfHornOfWinter, }), @@ -84,25 +81,25 @@ export const PREBIS_PRESET = PresetUtils.makePresetBuild('Pre-bis', { gear: PREBIS_GEAR_PRESET, epWeights: P2_UNHOLY_EP_PRESET, rotationType: APLRotationType.TypeAuto, -}) +}); export const P2_PRESET = PresetUtils.makePresetBuild('P2', { gear: P2_BIS_GEAR_PRESET, epWeights: P2_UNHOLY_EP_PRESET, rotationType: APLRotationType.TypeAuto, -}) +}); export const P3_PRESET = PresetUtils.makePresetBuild('P3', { gear: P3_BIS_GEAR_PRESET, epWeights: P3_UNHOLY_EP_PRESET, rotationType: APLRotationType.TypeAuto, -}) +}); export const P4_PRESET = PresetUtils.makePresetBuild('P4', { gear: P4_BIS_GEAR_PRESET, epWeights: P3_UNHOLY_EP_PRESET, rotationType: APLRotationType.TypeAuto, -}) +}); export const DefaultOptions = UnholyDeathKnight_Options.create({ classOptions: { @@ -118,10 +115,10 @@ export const OtherDefaults = { distanceFromTarget: 5, }; -export const DefaultConsumes = Consumes.create({ - flask: Flask.FlaskOfTitanicStrength, - food: Food.FoodBeerBasedCrocolisk, - defaultPotion: Potions.GolembloodPotion, - prepopPotion: Potions.GolembloodPotion, - tinkerHands: TinkerHands.TinkerHandsSynapseSprings, +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58088, // Flask of Titanic Strength + foodId: 62670, // Beer-Basted Crocolisk + potId: 58146, // Golemblood Potion + prepotId: 58146, // Golemblood Potion + tinkerId: 82174, // Synapse Springs }); diff --git a/ui/death_knight/unholy/sim.ts b/ui/death_knight/unholy/sim.ts index 80aa4ac175..677b87fe7c 100644 --- a/ui/death_knight/unholy/sim.ts +++ b/ui/death_knight/unholy/sim.ts @@ -72,7 +72,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecUnholyDeathKnight, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.DefaultTalents.data, // Default spec-specific settings. @@ -162,7 +162,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecUnholyDeathKnight, { spec: Spec.SpecUnholyDeathKnight, talents: Presets.DefaultTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceWorgen, diff --git a/ui/druid/balance/presets.ts b/ui/druid/balance/presets.ts index 7b7818ba33..288175cebb 100644 --- a/ui/druid/balance/presets.ts +++ b/ui/druid/balance/presets.ts @@ -1,6 +1,7 @@ import * as PresetUtils from '../../core/preset_utils.js'; import { Consumes, + ConsumesSpec, Debuffs, Flask, Food, @@ -13,7 +14,7 @@ import { Stat, UnitReference, } from '../../core/proto/common.js'; -import { BalanceDruid_Options as BalanceDruidOptions, DruidMajorGlyph, DruidMinorGlyph, DruidPrimeGlyph } from '../../core/proto/druid.js'; +import { BalanceDruid_Options as BalanceDruidOptions, DruidMajorGlyph, DruidMinorGlyph } from '../../core/proto/druid.js'; import { SavedTalents } from '../../core/proto/ui.js'; import { Stats } from '../../core/proto_utils/stats'; import T11Apl from './apls/t11.apl.json'; @@ -50,15 +51,12 @@ export const StandardEPWeights = PresetUtils.makePresetEpWeights( ); // Default talents. Uses the wowhead calculator format, make the talents on -// https://wowhead.com/cata/talent-calc and copy the numbers in the url. +// https://wowhead.com/mop-classic/talent-calc and copy the numbers in the url. export const StandardTalents = { name: 'Standard', data: SavedTalents.create({ - talentsString: '33230221123212111001-01-020331', + talentsString: '', glyphs: Glyphs.create({ - prime1: DruidPrimeGlyph.GlyphOfInsectSwarm, - prime2: DruidPrimeGlyph.GlyphOfMoonfire, - prime3: DruidPrimeGlyph.GlyphOfWrath, major1: DruidMajorGlyph.GlyphOfStarfall, major2: DruidMajorGlyph.GlyphOfRebirth, major3: DruidMajorGlyph.GlyphOfMonsoon, @@ -75,13 +73,12 @@ export const DefaultOptions = BalanceDruidOptions.create({ }, }); -export const DefaultConsumes = Consumes.create({ - flask: Flask.FlaskOfTheDraconicMind, - food: Food.FoodSeafoodFeast, - defaultPotion: Potions.VolcanicPotion, - prepopPotion: Potions.VolcanicPotion, +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58086, // Flask of the Draconic Mind + foodId: 62290, // Seafood Magnifique Feast + potId: 58091, // Volcanic Potion + prepotId: 58091, // Volcanic Potion }); - export const DefaultRaidBuffs = RaidBuffs.create({ arcaneBrilliance: true, bloodlust: true, @@ -144,7 +141,6 @@ export const PresetBuildT12 = PresetUtils.makePresetBuild('Balance T12', { epWeights: StandardEPWeights, }); - export const PresetBuildT13 = PresetUtils.makePresetBuild('Balance T13', { gear: T13PresetGear, talents: StandardTalents, diff --git a/ui/druid/balance/sim.ts b/ui/druid/balance/sim.ts index b4927d741b..819e1f21b5 100644 --- a/ui/druid/balance/sim.ts +++ b/ui/druid/balance/sim.ts @@ -53,7 +53,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBalanceDruid, { return new Stats().withPseudoStat(PseudoStat.PseudoStatSpellHitPercent, 17); })(), // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.StandardTalents.data, // Default spec-specific settings. @@ -109,7 +109,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBalanceDruid, { spec: Spec.SpecBalanceDruid, talents: Presets.StandardTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, otherDefaults: Presets.OtherDefaults, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, diff --git a/ui/druid/feral/presets.ts b/ui/druid/feral/presets.ts index 4656a9b689..18522738e9 100644 --- a/ui/druid/feral/presets.ts +++ b/ui/druid/feral/presets.ts @@ -1,9 +1,8 @@ import * as PresetUtils from '../../core/preset_utils'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Spec, Stat, TinkerHands } from '../../core/proto/common'; +import { Consumes, ConsumesSpec, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Spec, Stat, TinkerHands } from '../../core/proto/common'; import { DruidMajorGlyph, DruidMinorGlyph, - DruidPrimeGlyph, FeralDruid_Options as FeralDruidOptions, FeralDruid_Rotation as FeralDruidRotation, FeralDruid_Rotation_AplType, @@ -46,7 +45,7 @@ export const BEARWEAVE_EP_PRESET = PresetUtils.makePresetEpWeights( [Stat.StatHitRating]: 0.36, [Stat.StatExpertiseRating]: 0.34, [Stat.StatCritRating]: 0.32, - [Stat.StatHasteRating]: 0.30, + [Stat.StatHasteRating]: 0.3, [Stat.StatMasteryRating]: 0.33, }, { @@ -65,7 +64,7 @@ export const MONOCAT_EP_PRESET = PresetUtils.makePresetEpWeights( [Stat.StatHitRating]: 0.31, [Stat.StatExpertiseRating]: 0.31, [Stat.StatCritRating]: 0.31, - [Stat.StatHasteRating]: 0.30, + [Stat.StatHasteRating]: 0.3, [Stat.StatMasteryRating]: 0.33, }, { @@ -110,15 +109,12 @@ export const AoeRotation = FeralDruidRotation.create({ export const AOE_ROTATION_DEFAULT = PresetUtils.makePresetSimpleRotation('AoE Default', Spec.SpecFeralDruid, AoeRotation); // Default talents. Uses the wowhead calculator format, make the talents on -// https://wowhead.com/cata/talent-calc and copy the numbers in the url. +// https://wowhead.com/mop-classic/talent-calc and copy the numbers in the url. export const StandardTalents = { name: 'Mono-Cat', data: SavedTalents.create({ - talentsString: '-2320322312012121202301-020301', + talentsString: '', glyphs: Glyphs.create({ - prime1: DruidPrimeGlyph.GlyphOfRip, - prime2: DruidPrimeGlyph.GlyphOfBloodletting, - prime3: DruidPrimeGlyph.GlyphOfBerserk, major1: DruidMajorGlyph.GlyphOfThorns, major2: DruidMajorGlyph.GlyphOfFeralCharge, major3: DruidMajorGlyph.GlyphOfRebirth, @@ -132,11 +128,8 @@ export const StandardTalents = { export const HybridTalents = { name: 'Hybrid', data: SavedTalents.create({ - talentsString: '-2300322312310001220311-020331', + talentsString: '', glyphs: Glyphs.create({ - prime1: DruidPrimeGlyph.GlyphOfRip, - prime2: DruidPrimeGlyph.GlyphOfBloodletting, - prime3: DruidPrimeGlyph.GlyphOfBerserk, major1: DruidMajorGlyph.GlyphOfFrenziedRegeneration, major2: DruidMajorGlyph.GlyphOfMaul, major3: DruidMajorGlyph.GlyphOfRebirth, @@ -150,7 +143,6 @@ export const HybridTalents = { export const DefaultOptions = FeralDruidOptions.create({ assumeBleedActive: true, }); - export const DefaultConsumes = Consumes.create({ flask: Flask.FlaskOfTheWinds, food: Food.FoodSkeweredEel, @@ -159,7 +151,14 @@ export const DefaultConsumes = Consumes.create({ tinkerHands: TinkerHands.TinkerHandsSynapseSprings, explosiveBigDaddy: true, }); - +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58087, // Flask of the Winds + foodId: 62669, // Skewered Eel + potId: 58145, // Potion of the Tol'vir + prepotId: 58145, // Potion of the Tol'vir + tinkerId: 82174, // Synapse Springs + explosiveId: 89637, // Big Daddy Explosive +}); export const OtherDefaults = { distanceFromTarget: 25, highHpThreshold: 0.8, @@ -168,18 +167,18 @@ export const OtherDefaults = { profession2: Profession.ProfessionUnknown, }; -export const PRESET_BUILD_DEFAULT = PresetUtils.makePresetBuild("Single Target Default", { +export const PRESET_BUILD_DEFAULT = PresetUtils.makePresetBuild('Single Target Default', { rotation: SIMPLE_ROTATION_DEFAULT, encounter: PresetUtils.makePresetEncounter( - "Single Target Default", - 'http://localhost:5173/cata/druid/feral/?i=rcmxe#eJzjEuNgzGBsYGScwMi4gpFxByNjAxPjBiZGJyYPRiEGqUNMs5jZAnISK1OLOLgFGJV4OZgMJAOYIpgqQBqcGLJYpJgUGE8wsdxiYnjE9ItRgknpKyPXJ8ZqpaTUxKLw1MSyVCWrkqLSVB2l3MTMvBIgdktMLcpMdcssQshk5jnn5yblF7vlFwVlFihZmeoolRanBiVmw5UAuU6ZJXBuEpAdkpkL5BsaAnmpRcWpRdlOcEEzVDMhOk0h2lxKizLz0l0rUpNLEeYVZRb4pKaWJ1YCDQTrDcpPLPJPSytOLVGyMgYKFeelZqP6JjUnNRVJpPYFU0ojMwMYWDoshLIiHbqYGZSOM3kwc4L5B4ocBCEyfg6Ss2aCwEl7S4jIBXvFNDC4Zu8IkXppb9TDVLDqM2MVd1BiZopCSGJRemqJQoQEu9YNRgZ6gIAWB2oa15ByHNk8H4u5cxzR1YBDo2ERp+NMRkgo3LSHqmFxAABYiZHH' + 'Single Target Default', + 'http://localhost:5173/mop/druid/feral/?i=rcmxe#eJzjEuNgzGBsYGScwMi4gpFxByNjAxPjBiZGJyYPRiEGqUNMs5jZAnISK1OLOLgFGJV4OZgMJAOYIpgqQBqcGLJYpJgUGE8wsdxiYnjE9ItRgknpKyPXJ8ZqpaTUxKLw1MSyVCWrkqLSVB2l3MTMvBIgdktMLcpMdcssQshk5jnn5yblF7vlFwVlFihZmeoolRanBiVmw5UAuU6ZJXBuEpAdkpkL5BsaAnmpRcWpRdlOcEEzVDMhOk0h2lxKizLz0l0rUpNLEeYVZRb4pKaWJ1YCDQTrDcpPLPJPSytOLVGyMgYKFeelZqP6JjUnNRVJpPYFU0ojMwMYWDoshLIiHbqYGZSOM3kwc4L5B4ocBCEyfg6Ss2aCwEl7S4jIBXvFNDC4Zu8IkXppb9TDVLDqM2MVd1BiZopCSGJRemqJQoQEu9YNRgZ6gIAWB2oa15ByHNk8H4u5cxzR1YBDo2ERp+NMRkgo3LSHqmFxAABYiZHH', ), -}) +}); -export const PRESET_BUILD_TENDON = PresetUtils.makePresetBuild("Single Target Burst", { +export const PRESET_BUILD_TENDON = PresetUtils.makePresetBuild('Single Target Burst', { rotation: APL_ROTATION_TENDON, encounter: PresetUtils.makePresetEncounter( - "Single Target Burst", - 'http://localhost:5173/cata/druid/feral/?i=rcmxe#eJzjEuZgzGBsYGScwMi4gpFxByNjAxOjE5MHoxCDVA/zLGa2gJzEytQiDm4BRiVuDiYDyQCmCpBaJ4YsFikmBcYTTCy3mBgeMR1jkmDmEubiyGLjYuFoms2sxM7FysWsa1oMF/z3gwUqaFjMJcLFLgVkcjzUUOLkAorqGugBlYpycUiBlM7rZEYSFtKW0uSSl5Ll4tjECNHDJajFz8EsxOTFIAU20dCwGKzvXyOrULxULFewVCCXoZA+kgZlLUWoBslNTGIcjEKcqxihNkGMMDIrRjcVJMS5Ca4MSAssPMYsJColjCbMsfMsoxAwNKwYIJIgl6cl5hSnwjwjJCIlhCwMctRbDSFeKe5JjBwSjBGMCcA4gJjwgimlkZkBDEQcFkJZkQ5dzAxKx5k8mDkhAsYOghDGB3vJWTNB4KS9JUTkgr1iGhhcs3eESL20N+phKlj1mbGKOygxM0UhJLEoPbVEIUKCXesGIwM9QECLAzWNa0g5jmyej8XcOY7oasCh0bCI03EmIyQUbtpD1bA4AADkI2mj' + 'Single Target Burst', + 'http://localhost:5173/mop/druid/feral/?i=rcmxe#eJzjEuZgzGBsYGScwMi4gpFxByNjAxOjE5MHoxCDVA/zLGa2gJzEytQiDm4BRiVuDiYDyQCmCpBaJ4YsFikmBcYTTCy3mBgeMR1jkmDmEubiyGLjYuFoms2sxM7FysWsa1oMF/z3gwUqaFjMJcLFLgVkcjzUUOLkAorqGugBlYpycUiBlM7rZEYSFtKW0uSSl5Ll4tjECNHDJajFz8EsxOTFIAU20dCwGKzvXyOrULxULFewVCCXoZA+kgZlLUWoBslNTGIcjEKcqxihNkGMMDIrRjcVJMS5Ca4MSAssPMYsJColjCbMsfMsoxAwNKwYIJIgl6cl5hSnwjwjJCIlhCwMctRbDSFeKe5JjBwSjBGMCcA4gJjwgimlkZkBDEQcFkJZkQ5dzAxKx5k8mDkhAsYOghDGB3vJWTNB4KS9JUTkgr1iGhhcs3eESL20N+phKlj1mbGKOygxM0UhJLEoPbVEIUKCXesGIwM9QECLAzWNa0g5jmyej8XcOY7oasCh0bCI03EmIyQUbtpD1bA4AADkI2mj', ), -}) +}); diff --git a/ui/druid/feral/sim.ts b/ui/druid/feral/sim.ts index fff68f21c8..719c8f6174 100644 --- a/ui/druid/feral/sim.ts +++ b/ui/druid/feral/sim.ts @@ -10,9 +10,9 @@ import { Cooldowns, Debuffs, Faction, IndividualBuffs, ItemSlot, PartyBuffs, Pse import { FeralDruid_Rotation as DruidRotation, FeralDruid_Rotation_AplType as FeralRotationType } from '../../core/proto/druid'; import * as AplUtils from '../../core/proto_utils/apl_utils'; import { Stats, UnitStat } from '../../core/proto_utils/stats'; +import { TypedEvent } from '../../core/typed_event'; import * as FeralInputs from './inputs'; import * as Presets from './presets'; -import { TypedEvent } from '../../core/typed_event'; const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { cssClass: 'feral-druid-sim-ui', @@ -37,20 +37,8 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { epReferenceStat: Stat.StatAgility, // Which stats to display in the Character Stats section, at the bottom of the left-hand sidebar. displayStats: UnitStat.createDisplayStatArray( - [ - Stat.StatHealth, - Stat.StatStrength, - Stat.StatAgility, - Stat.StatAttackPower, - Stat.StatExpertiseRating, - Stat.StatMasteryRating, - Stat.StatMana, - ], - [ - PseudoStat.PseudoStatPhysicalHitPercent, - PseudoStat.PseudoStatPhysicalCritPercent, - PseudoStat.PseudoStatMeleeHastePercent, - ], + [Stat.StatHealth, Stat.StatStrength, Stat.StatAgility, Stat.StatAttackPower, Stat.StatExpertiseRating, Stat.StatMasteryRating, Stat.StatMana], + [PseudoStat.PseudoStatPhysicalHitPercent, PseudoStat.PseudoStatPhysicalCritPercent, PseudoStat.PseudoStatMeleeHastePercent], ), defaults: { @@ -67,7 +55,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default rotation settings. rotationType: APLRotationType.TypeSimple, simpleRotation: Presets.DefaultRotation, @@ -136,8 +124,12 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { simpleRotation: (player: Player, simple: DruidRotation, cooldowns: Cooldowns): APLRotation => { const [prepullActions, actions] = AplUtils.standardCooldownDefaults(cooldowns); - const synapseSprings = APLAction.fromJsonString(`{"condition":{"or":{"vals":[{"auraIsActive":{"auraId":{"spellId":5217}}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"const":{"val":"11s"}}}}]}},"castSpell":{"spellId":{"spellId":82174}}}`); - const potion = APLAction.fromJsonString(`{"condition":{"or":{"vals":[{"and":{"vals":[{"auraIsActive":{"auraId":{"spellId":5217}}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"math":{"op":"OpAdd","lhs":{"spellTimeToReady":{"spellId":{"spellId":50334}}},"rhs":{"const":{"val":"26s"}}}}}}]}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"const":{"val":"26s"}}}},{"auraIsActive":{"auraId":{"spellId":50334}}}]}},"castSpell":{"spellId":{"itemId":58145}}}`); + const synapseSprings = APLAction.fromJsonString( + `{"condition":{"or":{"vals":[{"auraIsActive":{"auraId":{"spellId":5217}}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"const":{"val":"11s"}}}}]}},"castSpell":{"spellId":{"spellId":82174}}}`, + ); + const potion = APLAction.fromJsonString( + `{"condition":{"or":{"vals":[{"and":{"vals":[{"auraIsActive":{"auraId":{"spellId":5217}}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"math":{"op":"OpAdd","lhs":{"spellTimeToReady":{"spellId":{"spellId":50334}}},"rhs":{"const":{"val":"26s"}}}}}}]}},{"cmp":{"op":"OpLt","lhs":{"remainingTime":{}},"rhs":{"const":{"val":"26s"}}}},{"auraIsActive":{"auraId":{"spellId":50334}}}]}},"castSpell":{"spellId":{"itemId":58145}}}`, + ); const trollRacial = APLAction.fromJsonString(`{"condition":{"auraIsActive":{"auraId":{"spellId":50334}}},"castSpell":{"spellId":{"spellId":26297}}}`); const blockZerk = APLAction.fromJsonString(`{"condition":{"const":{"val":"false"}},"castSpell":{"spellId":{"spellId":50334}}}`); const blockEnrage = APLAction.fromJsonString(`{"condition":{"const":{"val":"false"}},"castSpell":{"spellId":{"spellId":5229}}}`); @@ -148,11 +140,13 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { simple.snekWeave },"minRoarOffset":${simple.minRoarOffset.toFixed(2)},"ripLeeway":${simple.ripLeeway.toFixed(0)},"useRake":${simple.useRake},"useBite":${ simple.useBite - },"biteDuringExecute":${simple.biteDuringExecute},"biteTime":${simple.biteTime.toFixed(2)},"berserkBiteTime":${simple.berserkBiteTime.toFixed(2)},"cancelPrimalMadness":${simple.cancelPrimalMadness}}}`, + },"biteDuringExecute":${simple.biteDuringExecute},"biteTime":${simple.biteTime.toFixed(2)},"berserkBiteTime":${simple.berserkBiteTime.toFixed( + 2, + )},"cancelPrimalMadness":${simple.cancelPrimalMadness}}}`, ); const autocasts = APLAction.fromJsonString(`{"autocastOtherCooldowns":{}}`); - const singleTarget = (simple.rotationType == FeralRotationType.SingleTarget); + const singleTarget = simple.rotationType == FeralRotationType.SingleTarget; actions.push( ...([ singleTarget ? synapseSprings : null, @@ -169,18 +163,13 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { player.getRaid()?.setTargetDummies(TypedEvent.nextEventID(), 4); const trinketSwap = APLPrepullAction.fromJsonString(`{"action":{"itemSwap":{"swapSet":"Swap1"}},"doAtValue":{"const":{"val":"-125s"}}}`); - const tranq = APLPrepullAction.fromJsonString(`{"action":{"channelSpell":{"spellId":{"spellId":740},"interruptIf":{"cmp":{"op":"OpGt","lhs":{"currentTime":{}},"rhs":{"const":{"val":"-2s"}}}}}},"doAtValue":{"const":{"val":"-5.5s"}}}`); + const tranq = APLPrepullAction.fromJsonString( + `{"action":{"channelSpell":{"spellId":{"spellId":740},"interruptIf":{"cmp":{"op":"OpGt","lhs":{"currentTime":{}},"rhs":{"const":{"val":"-2s"}}}}}},"doAtValue":{"const":{"val":"-5.5s"}}}`, + ); const swapBack = APLPrepullAction.fromJsonString(`{"action":{"itemSwap":{"swapSet":"Main"}},"doAtValue":{"const":{"val":"-1.5s"}}}`); const shiftCat = APLPrepullAction.fromJsonString(`{"action":{"castSpell":{"spellId":{"spellId":768}}},"doAtValue":{"const":{"val":"-1.5s"}}}`); - prepullActions.push( - ...([ - trinketSwap, - tranq, - swapBack, - shiftCat, - ].filter(a => a) as Array), - ); + prepullActions.push(...([trinketSwap, tranq, swapBack, shiftCat].filter(a => a) as Array)); } return APLRotation.create({ @@ -200,7 +189,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecFeralDruid, { spec: Spec.SpecFeralDruid, talents: Presets.StandardTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceNightElf, diff --git a/ui/druid/guardian/presets.ts b/ui/druid/guardian/presets.ts index 04edde375a..55b2aa692e 100644 --- a/ui/druid/guardian/presets.ts +++ b/ui/druid/guardian/presets.ts @@ -1,10 +1,9 @@ import * as Mechanics from '../../core/constants/mechanics.js'; import * as PresetUtils from '../../core/preset_utils.js'; -import { Conjured, Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Spec, Stat, TinkerHands } from '../../core/proto/common'; +import { Conjured, Consumes, ConsumesSpec, Flask, Food, Glyphs, Potions, Profession, PseudoStat, Spec, Stat, TinkerHands } from '../../core/proto/common'; import { DruidMajorGlyph, DruidMinorGlyph, - DruidPrimeGlyph, GuardianDruid_Options as DruidOptions, GuardianDruid_Rotation as DruidRotation, } from '../../core/proto/druid.js'; @@ -32,20 +31,20 @@ export const DefaultSimpleRotation = DruidRotation.create({ }); import { Stats } from '../../core/proto_utils/stats'; -import CleaveApl from './apls/cleave.apl.json'; -import DefaultApl from './apls/default.apl.json'; -import NefApl from './apls/nef.apl.json'; -import BethApl from './apls/bethtilac.apl.json'; import BalerocMTApl from './apls/balerocMT.apl.json'; import BalerocOTApl from './apls/balerocOT.apl.json'; +import BethApl from './apls/bethtilac.apl.json'; import BlackhornOTApl from './apls/blackhorn.apl.json'; +import CleaveApl from './apls/cleave.apl.json'; +import DefaultApl from './apls/default.apl.json'; +import NefApl from './apls/nef.apl.json'; export const ROTATION_DEFAULT = PresetUtils.makePresetAPLRotation('APL Default', DefaultApl); export const ROTATION_CLEAVE = PresetUtils.makePresetAPLRotation('2-Target Cleave', CleaveApl); export const ROTATION_NEF = PresetUtils.makePresetAPLRotation('AoE (Nef Adds)', NefApl); export const ROTATION_BETH = PresetUtils.makePresetAPLRotation("Beth'tilac Phase 2", BethApl); -export const ROTATION_BALEROC_MT = PresetUtils.makePresetAPLRotation("Baleroc MT", BalerocMTApl); -export const ROTATION_BALEROC_OT = PresetUtils.makePresetAPLRotation("Baleroc OT", BalerocOTApl); -export const ROTATION_BLACKHORN_OT = PresetUtils.makePresetAPLRotation("Blackhorn OT", BlackhornOTApl); +export const ROTATION_BALEROC_MT = PresetUtils.makePresetAPLRotation('Baleroc MT', BalerocMTApl); +export const ROTATION_BALEROC_OT = PresetUtils.makePresetAPLRotation('Baleroc OT', BalerocOTApl); +export const ROTATION_BLACKHORN_OT = PresetUtils.makePresetAPLRotation('Blackhorn OT', BlackhornOTApl); export const ROTATION_PRESET_SIMPLE = PresetUtils.makePresetSimpleRotation('Simple Default', Spec.SpecGuardianDruid, DefaultSimpleRotation); @@ -85,17 +84,17 @@ export const BALANCED_EP_PRESET = PresetUtils.makePresetEpWeights( [Stat.StatAgility]: 1.0, [Stat.StatArmor]: 0.66, [Stat.StatBonusArmor]: 0.15, - [Stat.StatDodgeRating]: 0.60, + [Stat.StatDodgeRating]: 0.6, [Stat.StatMasteryRating]: 0.22, [Stat.StatStrength]: 0.16, [Stat.StatAttackPower]: 0.15, [Stat.StatHitRating]: 0.61, [Stat.StatExpertiseRating]: 1.07, [Stat.StatCritRating]: 0.36, - [Stat.StatHasteRating]: 0.10, + [Stat.StatHasteRating]: 0.1, }, { - [PseudoStat.PseudoStatMainHandDps]: 0.50, + [PseudoStat.PseudoStatMainHandDps]: 0.5, [PseudoStat.PseudoStatPhysicalHitPercent]: 0.535 * Mechanics.PHYSICAL_HIT_RATING_PER_HIT_PERCENT, [PseudoStat.PseudoStatSpellHitPercent]: 0.075 * Mechanics.SPELL_HIT_RATING_PER_HIT_PERCENT, }, @@ -103,15 +102,12 @@ export const BALANCED_EP_PRESET = PresetUtils.makePresetEpWeights( ); // Default talents. Uses the wowhead calculator format, make the talents on -// https://wowhead.com/cata/talent-calc and copy the numbers in the url. +// https://wowhead.com/mop-classic/talent-calc and copy the numbers in the url. export const StandardTalents = { name: 'Standard', data: SavedTalents.create({ - talentsString: '-2300322312310001220311-020331', + talentsString: '', glyphs: Glyphs.create({ - prime1: DruidPrimeGlyph.GlyphOfMangle, - prime2: DruidPrimeGlyph.GlyphOfLacerate, - prime3: DruidPrimeGlyph.GlyphOfBerserk, major1: DruidMajorGlyph.GlyphOfFrenziedRegeneration, major2: DruidMajorGlyph.GlyphOfMaul, major3: DruidMajorGlyph.GlyphOfRebirth, @@ -125,11 +121,8 @@ export const StandardTalents = { export const InfectedWoundsBuild = { name: 'Infected Wounds', data: SavedTalents.create({ - talentsString: '-2302322310310001220311-020331', + talentsString: '', glyphs: Glyphs.create({ - prime1: DruidPrimeGlyph.GlyphOfMangle, - prime2: DruidPrimeGlyph.GlyphOfRip, - prime3: DruidPrimeGlyph.GlyphOfBerserk, major1: DruidMajorGlyph.GlyphOfFrenziedRegeneration, major2: DruidMajorGlyph.GlyphOfMaul, major3: DruidMajorGlyph.GlyphOfRebirth, @@ -152,7 +145,14 @@ export const DefaultConsumes = Consumes.create({ defaultConjured: Conjured.ConjuredHealthstone, tinkerHands: TinkerHands.TinkerHandsSynapseSprings, }); - +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58085, // Flask of Steelskin + foodId: 62669, // Skewered Eel + potId: 58145, // Potion of the Tol'vir + prepotId: 58145, // Potion of the Tol'vir + conjuredId: 5512, // Conjured Healthstone + tinkerId: 82174, // Synapse Springs +}); export const OtherDefaults = { iterationCount: 50000, profession1: Profession.Engineering, @@ -163,7 +163,7 @@ export const PRESET_BUILD_BOSS_DUMMY = PresetUtils.makePresetBuild('Single Targe rotation: ROTATION_PRESET_SIMPLE, encounter: PresetUtils.makePresetEncounter( 'Single Target Dummy', - 'http://localhost:5173/cata/druid/guardian/?i=rcmxe#eJzjEuVgdGDMYGxgZJzAyNjAxLiBifECE6MTpwCjBaMH4w1GRismAUYhBqkvjLOY2QJyEitTizjYBBiVeDmYDSQDmCKYEliBGp0YVjFzS3EKMoCBnsMJJpYLTOy3mDgFZ80EgZv2j5iaGCWYlOq4CquVchMz80qA2C0xtSgz1S2zKFXJqqSoNFUHLuOSmptflJiTWZWZlx6Un1gEk08Biodk5gLVm+goFZTmlAENqEpFiBSlAgVzgksScwtSU6Cm1gohXPGCKeUHE+NCZog7Ix26mGU5wcymKw5wRZpnz4AAl4MCm9JxJg9miIqGNAeo90QcJCFKT9pbQkQu2CumgcE1e0eI5jf2Rj1MBas+M1ZxByVmpiiEJBalp5YoREiwa91gZKAHCGhxoKZxDSnHkc3zsZg7xxFdDTg0GhZxOs5khIUlVA2LAwBf7n5L', + 'http://localhost:5173/mop/druid/guardian/?i=rcmxe#eJzjEuVgdGDMYGxgZJzAyNjAxLiBifECE6MTpwCjBaMH4w1GRismAUYhBqkvjLOY2QJyEitTizjYBBiVeDmYDSQDmCKYEliBGp0YVjFzS3EKMoCBnsMJJpYLTOy3mDgFZ80EgZv2j5iaGCWYlOq4CquVchMz80qA2C0xtSgz1S2zKFXJqqSoNFUHLuOSmptflJiTWZWZlx6Un1gEk08Biodk5gLVm+goFZTmlAENqEpFiBSlAgVzgksScwtSU6Cm1gohXPGCKeUHE+NCZog7Ix26mGU5wcymKw5wRZpnz4AAl4MCm9JxJg9miIqGNAeo90QcJCFKT9pbQkQu2CumgcE1e0eI5jf2Rj1MBas+M1ZxByVmpiiEJBalp5YoREiwa91gZKAHCGhxoKZxDSnHkc3zsZg7xxFdDTg0GhZxOs5khIUlVA2LAwBf7n5L', ), }); @@ -171,7 +171,7 @@ export const PRESET_BUILD_MAGMAW = PresetUtils.makePresetBuild('Magmaw MT', { rotation: ROTATION_CLEAVE, encounter: PresetUtils.makePresetEncounter( 'Magmaw MT', - 'http://localhost:5173/cata/druid/guardian/?i=rcmxe#eJzdVE9MHFUYn++9YZn5dtkOT6jLs+KwBEMn7WZZQCsxzkANWZO2AhqkjQcn7FIGl13KrhI5rVUjeCJeLERM6rEnw0Xl0EPTRJvYhF5a4NJGY2LS9tQL9WCceTOLu2Q10RgPfqd5v+/7/b6/GWxVwIJpKAOsAJQJfEVgi8CQqsEJSMM2wADRgEn8krpGQyM5+73svBLSIN6k0GTbCJkgbzW4xCHpCg1ztVkSlrC+J/IWadwlFeSe+SNZV2I0HmZ/QNiMIS4jiTXHG7EB6fGeIraiMhNCWXm8J8dVdOHjyURPkcmcDEisnR9BZmgKZXQXJC5Ivcku7hE2N6Cuvy/wX7pL2QQfxzQbxkgKGdGIi976mCA3YgqwpmtQBXKXidArfDKLzFS7XDUkfUWO7vvbR7LnYS/yATzGjDrKf8V234I9xC1MsgRGUxEmayQGAf+IwV1+dKYG3VeIBArCxyz+EiZ5ArV4FCMboIqUVLkYqlSxWYX5Gs/5Vex8AKKKYf4y9nG3gbiG0Q0IB0mFRlDJZg26rxIJVPxKOvgz+MQu0UQ2okzuF6x4L5EKuSKW8sUyZSpv9KatPOzeh397v4E9zZ/CpngY1Q0IIkWxV+/6A4/yiHjfXvJH2Mt7sJN1+O3XLKGOSGXuz/N+7GKdfscHZn+AVjvsaT6FE2z8bxySwburJb/ek/FJo9WdqbpZAeoeVp7n8E12ru5pADt0DWpv4x9kiwTZ/M48ptcHrd9HzfgS/Jiog/5ZHQemVtlZ5eCauPvLcDf/Wb/3/IVk9ghcpv7f4az1CX1W9b7KyVtW89g37R/dH902j04J+9Vse/fV9sMzp38y9VD8TkOailBp5YIV/F1arLa1Vc9umC/4yJbZ4ZNvm4M3f/DsgZkq07mfr5PF8Gn7/Ky9oKf69bQ+EQNjG6T/wkY+tP5NuXLmu2q9UyfWPx88GCOmUf5SHVwFf0A7ZhAjW5/CBfeoWl6ZnbNzWX0sa0+WnEJef92ZzRpn0oUFPVfIn9cXnFxOL027AbaT0Uv221m9VNADUjprZ3Qnr7+WnSzkM8WE3j04VcrOi3gn75QcO6f3JItHO/ycLVZqlcwtX6SLh4dy9qLjyp8s5Iul+XcmS/423vi/bENaMkbrb0NaemStBi3eq2xDspLwOzCwD1o=', + 'http://localhost:5173/mop/druid/guardian/?i=rcmxe#eJzdVE9MHFUYn++9YZn5dtkOT6jLs+KwBEMn7WZZQCsxzkANWZO2AhqkjQcn7FIGl13KrhI5rVUjeCJeLERM6rEnw0Xl0EPTRJvYhF5a4NJGY2LS9tQL9WCceTOLu2Q10RgPfqd5v+/7/b6/GWxVwIJpKAOsAJQJfEVgi8CQqsEJSMM2wADRgEn8krpGQyM5+73svBLSIN6k0GTbCJkgbzW4xCHpCg1ztVkSlrC+J/IWadwlFeSe+SNZV2I0HmZ/QNiMIS4jiTXHG7EB6fGeIraiMhNCWXm8J8dVdOHjyURPkcmcDEisnR9BZmgKZXQXJC5Ivcku7hE2N6Cuvy/wX7pL2QQfxzQbxkgKGdGIi976mCA3YgqwpmtQBXKXidArfDKLzFS7XDUkfUWO7vvbR7LnYS/yATzGjDrKf8V234I9xC1MsgRGUxEmayQGAf+IwV1+dKYG3VeIBArCxyz+EiZ5ArV4FCMboIqUVLkYqlSxWYX5Gs/5Vex8AKKKYf4y9nG3gbiG0Q0IB0mFRlDJZg26rxIJVPxKOvgz+MQu0UQ2okzuF6x4L5EKuSKW8sUyZSpv9KatPOzeh397v4E9zZ/CpngY1Q0IIkWxV+/6A4/yiHjfXvJH2Mt7sJN1+O3XLKGOSGXuz/N+7GKdfscHZn+AVjvsaT6FE2z8bxySwburJb/ek/FJo9WdqbpZAeoeVp7n8E12ru5pADt0DWpv4x9kiwTZ/M48ptcHrd9HzfgS/Jiog/5ZHQemVtlZ5eCauPvLcDf/Wb/3/IVk9ghcpv7f4az1CX1W9b7KyVtW89g37R/dH902j04J+9Vse/fV9sMzp38y9VD8TkOailBp5YIV/F1arLa1Vc9umC/4yJbZ4ZNvm4M3f/DsgZkq07mfr5PF8Gn7/Ky9oKf69bQ+EQNjG6T/wkY+tP5NuXLmu2q9UyfWPx88GCOmUf5SHVwFf0A7ZhAjW5/CBfeoWl6ZnbNzWX0sa0+WnEJef92ZzRpn0oUFPVfIn9cXnFxOL027AbaT0Uv221m9VNADUjprZ3Qnr7+WnSzkM8WE3j04VcrOi3gn75QcO6f3JItHO/ycLVZqlcwtX6SLh4dy9qLjyp8s5Iul+XcmS/423vi/bENaMkbrb0NaemStBi3eq2xDspLwOzCwD1o=', ), }); @@ -179,7 +179,7 @@ export const PRESET_BUILD_NEF = PresetUtils.makePresetBuild('Nef Adds OT', { rotation: ROTATION_NEF, encounter: PresetUtils.makePresetEncounter( 'Nef Adds OT', - 'http://localhost:3333/cata/druid/guardian/?i=rcmxe#eJzll19oW1Ucx3POuU1Pfu1ccqhrcmTrWXSjiywkabt11ZnbilJEpI6OMhTZXXJLM5LceHM7bccgdkh1Pii+6IYTN1/EJw2iW9W5dQP/oNA97I8FmexpsM0XEYoPm/dPksVWm6ooyP295J5ffr/v73c+v5PDDbRTJJCMxlAJodcQKmH0AUZzGA00+dFlhPqwHzEPP99yhHiHssqEqlOvH4V9lMRCQ9hMGCCnEXqftHBfwGNbVP4KS3O4eR5XPT8mr+JLECThFnbHBQHwcglwMBBuhiYgm+NFJnHc52HDfAcMskchFGmnEvNNSV4m0YVfJU7BC1I82lMEHglSL1s1i4BhfxNI9Op1iZsigLbCqnAL+MrIDKVvXiHc/PRPXyMsxRUYYTv/nmrvItW6pSVuFaEzZfTPWv9dEVPNbr18grBDiE8jOMD2w1N8F9wTCS0VMEMBx+PQx3qXK75MbmxR9fotmk3wys7ZJH8e8iz7n7VSmSF9q4J3O3tg+bp/OilLggdgNf34IBa3q4bYfj4BGsv9JdUN/N5FysAifkoYmUcebh/o7tgGCIbXQFsZLS1am+2/VLyrUXH7uD7OHwOZPQQ0YXnOT2P7dKL6Nkynczq7YE2kzRwm3VuJdbrrLtpqJ3+W2IO8D2I8Cv7wXdBaRj5bgdApr60qsdaZOp+TvcXJ/v4gYiHeDqvncStgmqpJS9aKAad22Kkr5lnizVY/9BVvzf32y6TmvtlZc996oYmZT84dw+7nm6CDrYXWMNRtt46iqcIr7prExZfuPFs97ubPwDDbsUJeEd5ZX+CTBQnaI3dbv4eZqmMJw438PluT/LFmrcPqft/ouYbTCxgdI869uks+RDb6rKfS0A9yoOPF60+eWHchuenZ7XDp3cLNZOi9kW8S5z78KSm84dLaQWKHenarcuVebpNDRw5b9nVym+OZS64fte1isv+7by27kUycIYWTN26jyXX9+UxOMdS0GNDyqhhRdD2j6SLRIwbFZhEXO4M0chl5/odWSn8p1y3loxNT/YtjHEIfHZcPo7O/dD796uyFZDVGfh0dRebJCDySVVOGrqXGDVU8rI3njciBJ8Zze1RdaKOi/suUUjSKwtBETkur2agY1gwlK1JWinguk82KPaooFnRVSQt1n5rPTghtn6lijKlCzdth5io9ritGRsubGcaYUISu5NNaLjNpDkgbHS2qRnS9019QTryDCzONZ5hw8QwtRJ82RtTlckSfNUbU7XJEnzdG1ONyRKcaI9rickRfNEa01eWITjdG1OtyRGcaI9rmZkTHcGHWQtSx/LttzOWMzq6AkZv/AFiMzq2AkZtfsH8D6cCcbQ==', + 'http://localhost:3333/mop/druid/guardian/?i=rcmxe#eJzll19oW1Ucx3POuU1Pfu1ccqhrcmTrWXSjiywkabt11ZnbilJEpI6OMhTZXXJLM5LceHM7bccgdkh1Pii+6IYTN1/EJw2iW9W5dQP/oNA97I8FmexpsM0XEYoPm/dPksVWm6ooyP295J5ffr/v73c+v5PDDbRTJJCMxlAJodcQKmH0AUZzGA00+dFlhPqwHzEPP99yhHiHssqEqlOvH4V9lMRCQ9hMGCCnEXqftHBfwGNbVP4KS3O4eR5XPT8mr+JLECThFnbHBQHwcglwMBBuhiYgm+NFJnHc52HDfAcMskchFGmnEvNNSV4m0YVfJU7BC1I82lMEHglSL1s1i4BhfxNI9Op1iZsigLbCqnAL+MrIDKVvXiHc/PRPXyMsxRUYYTv/nmrvItW6pSVuFaEzZfTPWv9dEVPNbr18grBDiE8jOMD2w1N8F9wTCS0VMEMBx+PQx3qXK75MbmxR9fotmk3wys7ZJH8e8iz7n7VSmSF9q4J3O3tg+bp/OilLggdgNf34IBa3q4bYfj4BGsv9JdUN/N5FysAifkoYmUcebh/o7tgGCIbXQFsZLS1am+2/VLyrUXH7uD7OHwOZPQQ0YXnOT2P7dKL6Nkynczq7YE2kzRwm3VuJdbrrLtpqJ3+W2IO8D2I8Cv7wXdBaRj5bgdApr60qsdaZOp+TvcXJ/v4gYiHeDqvncStgmqpJS9aKAad22Kkr5lnizVY/9BVvzf32y6TmvtlZc996oYmZT84dw+7nm6CDrYXWMNRtt46iqcIr7prExZfuPFs97ubPwDDbsUJeEd5ZX+CTBQnaI3dbv4eZqmMJw438PluT/LFmrcPqft/ouYbTCxgdI869uks+RDb6rKfS0A9yoOPF60+eWHchuenZ7XDp3cLNZOi9kW8S5z78KSm84dLaQWKHenarcuVebpNDRw5b9nVym+OZS64fte1isv+7by27kUycIYWTN26jyXX9+UxOMdS0GNDyqhhRdD2j6SLRIwbFZhEXO4M0chl5/odWSn8p1y3loxNT/YtjHEIfHZcPo7O/dD796uyFZDVGfh0dRebJCDySVVOGrqXGDVU8rI3njciBJ8Zze1RdaKOi/suUUjSKwtBETkur2agY1gwlK1JWinguk82KPaooFnRVSQt1n5rPTghtn6lijKlCzdth5io9ritGRsubGcaYUISu5NNaLjNpDkgbHS2qRnS9019QTryDCzONZ5hw8QwtRJ82RtTlckSfNUbU7XJEnzdG1ONyRKcaI9rickRfNEa01eWITjdG1OtyRGcaI9rmZkTHcGHWQtSx/LttzOWMzq6AkZv/AFiMzq2AkZtfsH8D6cCcbQ==', ), }); @@ -187,30 +187,30 @@ export const PRESET_BUILD_BETHTILAC = PresetUtils.makePresetBuild("Beth'tilac Ph rotation: ROTATION_BETH, encounter: PresetUtils.makePresetEncounter( "Beth'tilac Phase 2", - 'http://localhost:5173/cata/druid/guardian/?i=rcmxe#eJzVVF1oHFUY3Xtndjtzk2x3b43dvbV6M5Y2LknYzZ9pUGcSSojVSi2VxkjRye7d7iS7M+vObENXCtEiVn1QAlIbilh8KaUPNQ/+5EGLglZRqIg1lmpBREQrCL7EH9Q7d3bTjdUHH/1gGL7znXvu+Q7MoHYFGKAA5gB4HoA5CM5CcAGCUTUGhsA4WAZgGMYADpF5dUGK7C6ah1hFaYkBrUWR0snd8JEwPzYaOQfAeQBPSy1EjYdEbTHOQ/kSVON9oj7Vv4YvKAmoPQvR5GNaybRsjz9jJqtYbMyqMG3Yq1RZ1+pkBys5FbNo1Sz7wB7HrDTmOY7vtUqc39+llavFg1ygxurIYXwGoASSlROLAMcCIzuM4D1poBifvHhFwooAjKkAWeLcAAk9IJDYZ783OPVTsZPvNZC5XQbahNYrrx2B9M9GNQQM00AaiionBptndSP7AyPnHjZWM0FxFCEygom4tg6FkdSdcVE7UqYj3NYvK7KmIg53p3syLpYJHA7hzWRTLYna+tM9abeLZtL9/I0VEqmvfCO5oYZRJNM/eA33F24nG2pxFB5qoi810ZtkxO51+sD2a7AfQAe5pbaZ0/uGfHwDiV8fQyfZWtuCopnMYGCw93afiknsulAmyQTaicdRay/CMAa5o0+egoikEgrAbe+AJpDwYBDoQzeliCLj1unmkYK4Od89QRx582fZn2GD3IXSpAfFtChqXQSqOCApT0SEPtdYasL89RAcDBS+OAKEwq2kA7VfgliwoJJtukjxe0FCJIjypaclrJJ1vk/lx85V+I/Hw/heshPdgYcDJ2s2bdNakLoI6ufRxlS7Esbq6QYQuOoLXHG+uDBKWkV/8eja/q0r8pq+scU0KaBJPPEfMu4iqWZnr6/IKJnayCNTlxrAv2SeIp1CWfpn5TV7tBH+n+BhHRvw2+/gr2AFgpNS8Jk8aDwjbVXFp/b9ZSO+542bn/zh/mX9tkfvRJ+/Uv5STx7N7r88Jn2j04j2oTwuCWro5axR//H8pCcXjvv1gb49QC7oHXlRF/WRjz/y66re+5xcnl+QautHmVfY5llFM0t7B+g4nUiA1DII/Q9rLve+0dSejR8+NvJ3jkjk1LvyyHGg73vo1bevfqU3OMY8+A3g6N12tljNMTpWYXbtUOpbsMvJsSL1CoxOVSs2LRdMl1EnLxBmZ52q7bEKnbW8goBcz8zO8H82nXJcl+bMknmAUbNU7qH3OR7jFNOjezlvn5VzZre59B6L02atYpHajkenGC3597EcZQeZTS3/HsulTtmzHN661OXDrMdyXdS17CyjluejputWS/yQkDdt7i/f7Zn2TKDMVcsVxgHu1bfmOdR1zBnhN8emqvl8TwL8BQ0Xc7A=', + 'http://localhost:5173/mop/druid/guardian/?i=rcmxe#eJzVVF1oHFUY3Xtndjtzk2x3b43dvbV6M5Y2LknYzZ9pUGcSSojVSi2VxkjRye7d7iS7M+vObENXCtEiVn1QAlIbilh8KaUPNQ/+5EGLglZRqIg1lmpBREQrCL7EH9Q7d3bTjdUHH/1gGL7znXvu+Q7MoHYFGKAA5gB4HoA5CM5CcAGCUTUGhsA4WAZgGMYADpF5dUGK7C6ah1hFaYkBrUWR0snd8JEwPzYaOQfAeQBPSy1EjYdEbTHOQ/kSVON9oj7Vv4YvKAmoPQvR5GNaybRsjz9jJqtYbMyqMG3Yq1RZ1+pkBys5FbNo1Sz7wB7HrDTmOY7vtUqc39+llavFg1ygxurIYXwGoASSlROLAMcCIzuM4D1poBifvHhFwooAjKkAWeLcAAk9IJDYZ783OPVTsZPvNZC5XQbahNYrrx2B9M9GNQQM00AaiionBptndSP7AyPnHjZWM0FxFCEygom4tg6FkdSdcVE7UqYj3NYvK7KmIg53p3syLpYJHA7hzWRTLYna+tM9abeLZtL9/I0VEqmvfCO5oYZRJNM/eA33F24nG2pxFB5qoi810ZtkxO51+sD2a7AfQAe5pbaZ0/uGfHwDiV8fQyfZWtuCopnMYGCw93afiknsulAmyQTaicdRay/CMAa5o0+egoikEgrAbe+AJpDwYBDoQzeliCLj1unmkYK4Od89QRx582fZn2GD3IXSpAfFtChqXQSqOCApT0SEPtdYasL89RAcDBS+OAKEwq2kA7VfgliwoJJtukjxe0FCJIjypaclrJJ1vk/lx85V+I/Hw/heshPdgYcDJ2s2bdNakLoI6ufRxlS7Esbq6QYQuOoLXHG+uDBKWkV/8eja/q0r8pq+scU0KaBJPPEfMu4iqWZnr6/IKJnayCNTlxrAv2SeIp1CWfpn5TV7tBH+n+BhHRvw2+/gr2AFgpNS8Jk8aDwjbVXFp/b9ZSO+542bn/zh/mX9tkfvRJ+/Uv5STx7N7r88Jn2j04j2oTwuCWro5axR//H8pCcXjvv1gb49QC7oHXlRF/WRjz/y66re+5xcnl+QautHmVfY5llFM0t7B+g4nUiA1DII/Q9rLve+0dSejR8+NvJ3jkjk1LvyyHGg73vo1bevfqU3OMY8+A3g6N12tljNMTpWYXbtUOpbsMvJsSL1CoxOVSs2LRdMl1EnLxBmZ52q7bEKnbW8goBcz8zO8H82nXJcl+bMknmAUbNU7qH3OR7jFNOjezlvn5VzZre59B6L02atYpHajkenGC3597EcZQeZTS3/HsulTtmzHN661OXDrMdyXdS17CyjluejputWS/yQkDdt7i/f7Zn2TKDMVcsVxgHu1bfmOdR1zBnhN8emqvl8TwL8BQ0Xc7A=', ), }); -export const PRESET_BUILD_BALEROC_MT = PresetUtils.makePresetBuild("Baleroc MT", { +export const PRESET_BUILD_BALEROC_MT = PresetUtils.makePresetBuild('Baleroc MT', { rotation: ROTATION_BALEROC_MT, encounter: PresetUtils.makePresetEncounter( - "Baleroc MT", - 'http://localhost:5173/cata/druid/guardian/?i=cmxe#eJzVUr9PFEEUZvbQ3IkmB5oIJJIHlV4QkYhRY7LLxeCRQLzIxWDn3O7s3eRmZ8/Z2bscFbEyxsLQQaNURit7Y60mklAZbKwoKLQ12vl2lkPA+Af4is3szPd+fN/3TpzNEiAOqZMVQp4RsmKRNxbZskgxlyfXSIlsE3LDypOBnuGH65njZUE7TGX78mTsVDYzOVS2lqwHxzCv2PM60zec6+8xMeF8sHp3Le+nRTYy6dV950nmUs4c5787/etrSfyyL6SHL/bl9PDKHkrxuzYcH3ueK2XSnMmWs1f7jDOUQj/a19ObLXvUN/HZntn8lMQ3e2on2/yxkVk+WaSCqdCFqWkowdJgb2Gb9PyHseK9dw78nn9UfjlzFGPk2Hl7emaNXOm/evPd3a92F+OUyCRZJU/JwEiFygZEbdoEP1Rwi7k8oJqHEoqCeqxQn/PBrTO3wbxx0HUG1TCKoM2FgCoDjcnMg2oHTJkpUBQxCoFUGvQC5TJ982LFZe2vBlhKemE7mhjEeR5nsmQA5iTXnAq4U0kgywxCH26LUHUg0tRtRIVtC4eSoby4jFaOd1ubmbjJ1cw0b8Z4E0vNhfmNmtjb5zivqQNuiG/AI6CuGwexwDRvAuapqiGDFhUxwychwrbJxml0CDVGFQShYkBrNcWiiLeY6EC7zgU20MkIAWM6YZokTU1PNqBUxjNi66HwjMjJi89VpP+lxjhUYw0BbTAQ3GdpQ4/7PndjofdrLFS6qs5JnykZHpEUKnVkx2UzNjR5TWIdD7hvfDOmI0NTOqJVgexHu/uxSjYJenGu68U9rvG72KSqgR4HzcRoVnhBZg/RCbiMtfGrK3+6MxHfkxfqjIpkYFpjqL2x7I/6iMUxAyo7h/qlrgNqRFtMYSZunm4zJvdQs4IGDBTzE42ZASZNE45dQiNIyEU+hUXNqGcWCdsdbLI/ReKFIVdYROtxE5KffckVC3CjPbw+QLLbJe/8Bt31bfM=' + 'Baleroc MT', + 'http://localhost:5173/mop/druid/guardian/?i=cmxe#eJzVUr9PFEEUZvbQ3IkmB5oIJJIHlV4QkYhRY7LLxeCRQLzIxWDn3O7s3eRmZ8/Z2bscFbEyxsLQQaNURit7Y60mklAZbKwoKLQ12vl2lkPA+Af4is3szPd+fN/3TpzNEiAOqZMVQp4RsmKRNxbZskgxlyfXSIlsE3LDypOBnuGH65njZUE7TGX78mTsVDYzOVS2lqwHxzCv2PM60zec6+8xMeF8sHp3Le+nRTYy6dV950nmUs4c5787/etrSfyyL6SHL/bl9PDKHkrxuzYcH3ueK2XSnMmWs1f7jDOUQj/a19ObLXvUN/HZntn8lMQ3e2on2/yxkVk+WaSCqdCFqWkowdJgb2Gb9PyHseK9dw78nn9UfjlzFGPk2Hl7emaNXOm/evPd3a92F+OUyCRZJU/JwEiFygZEbdoEP1Rwi7k8oJqHEoqCeqxQn/PBrTO3wbxx0HUG1TCKoM2FgCoDjcnMg2oHTJkpUBQxCoFUGvQC5TJ982LFZe2vBlhKemE7mhjEeR5nsmQA5iTXnAq4U0kgywxCH26LUHUg0tRtRIVtC4eSoby4jFaOd1ubmbjJ1cw0b8Z4E0vNhfmNmtjb5zivqQNuiG/AI6CuGwexwDRvAuapqiGDFhUxwychwrbJxml0CDVGFQShYkBrNcWiiLeY6EC7zgU20MkIAWM6YZokTU1PNqBUxjNi66HwjMjJi89VpP+lxjhUYw0BbTAQ3GdpQ4/7PndjofdrLFS6qs5JnykZHpEUKnVkx2UzNjR5TWIdD7hvfDOmI0NTOqJVgexHu/uxSjYJenGu68U9rvG72KSqgR4HzcRoVnhBZg/RCbiMtfGrK3+6MxHfkxfqjIpkYFpjqL2x7I/6iMUxAyo7h/qlrgNqRFtMYSZunm4zJvdQs4IGDBTzE42ZASZNE45dQiNIyEU+hUXNqGcWCdsdbLI/ReKFIVdYROtxE5KffckVC3CjPbw+QLLbJe/8Bt31bfM=', ), }); -export const PRESET_BUILD_BALEROC_OT = PresetUtils.makePresetBuild("Baleroc OT", { +export const PRESET_BUILD_BALEROC_OT = PresetUtils.makePresetBuild('Baleroc OT', { rotation: ROTATION_BALEROC_OT, encounter: PresetUtils.makePresetEncounter( - "Baleroc OT", - 'http://localhost:5173/cata/druid/guardian/?i=rcmxe#eJzVUk9oHFUY3zcz2c6+JGUztSQZsL7sQeKShG3aFA3F3QSJG0kxmBDizZeZN7uvOzuzzMxmSU6xHhqLhxIQbRG1J6EnCYIY0YMXFVpILyXtwYr00IMFQZD0In7vTSbdre3Bo++wO9/3/b4/v9/34X4dEVRCVbSB0GWENhT0pYJ2FTSdyaKXURntITSZmlSyyEiZl9NX1fS8S9dYoHdnUa5XVwqD88qy8k4XpE6nrqvdZqYvJd9Y6SdF21XUu0ri+bX4m/Jh14Ca6zYeu3AfTpsaVgb6ckdwF1ZHT4b4ONbPp7GmP9rXchkM7tHC2MnQ0ExlMmUMmv24N9eNM9tIYL66mDbF/8f31GeFPtlGceiShrGSVQxAb8ahHQgtm0u4bMzgnnFsQBS8ty4q2MwP6Mjo/QG1OU2YD6NTMqYZPefbQ1ANK6dDE4P9zZ+aiBgl81VcMMdwNncU92yjjISr+oV0UmGnzRdXOBNXuPMekhWGzBfwsbtKVqIU3TpsowtLQrCpSyqfvq8aGfOImFF/OHzo/vvdLmPOfAOfNSbjOTpYtqkF+bg/f1zvMjLXE0fc7lQ8E+Blw6Nmj7Rvb3ba39/TOuyEQ9V08LKx9B/0zZvD7ZN9va/JyTQjs5M4nqq3yBN11afX7WDRa8KpglQfTQjzgWLvK+iaGl/l26VL6osZ+Tn3sNR39Yp4j4ovxR93ioMx7EGRpHOfZcpqDC2slg6u+rnSYAz9ufhK7NktDjny3S5O3bwh3u/F8ft6469r6nrPNHVZ4FtkfIKUyfKAlt9Dqf/h27B/LLWZwxfmv5h6EiPluP/tsakr6HTfmbPfvfVLMcGUyqiAttAHyDixSL0aCVu0QRw/IK8xi9dpxH2PTLvUZvnqrEOsKrNqzB4hUZWRFT8MSYu7LllhJIJkZpOVNSLLjJOAAiYAIPUk+hzlXhyzmwH3Kv9qAKU822+FYwMwz6YKZ0pmPR5x6pI3FwVknRHfIa+7frBGwohatTC/p8BQnu+NrsMqR5LWciYucyMmmzea4Gl6EXelGTagt8NhXlmHWD7ECA8JtaxmvelCmj1G5mhQAQar1G0yCLmu35LZME3kkwqjAan7ASO0UglYGPJV5q6RVpW70CASI9QZiwRTkTQ+UaiR8jx8A7bqu7YUWUQcHoTRs9QYISvNiNRpjRGXOyxuaHPH4VbTjQ5rnFtMVJ31HBZ4/hOSksUqsONeoylp8ooHdWzCHbk3uXRgKEuHdMUF9kPxefxR3EI3Eezi+WQXSzyC34UGDWqw43pDLJrlP0czHXTq3GtGcl+J/PHNhPxAXlJl1BUD0woD7eXKHqsPWBizTr21jn7x1gloRFdZAJlweVGLMe8ANePSOiMBc4TGTAJFU8ExIXSitIUs4JNfiBi15SFBu/Ymh1OIXUhy+QVYPVyCMA4lD1gdLtoGdxvJpEu29A+pJMjo' + 'Baleroc OT', + 'http://localhost:5173/mop/druid/guardian/?i=rcmxe#eJzVUk9oHFUY3zcz2c6+JGUztSQZsL7sQeKShG3aFA3F3QSJG0kxmBDizZeZN7uvOzuzzMxmSU6xHhqLhxIQbRG1J6EnCYIY0YMXFVpILyXtwYr00IMFQZD0In7vTSbdre3Bo++wO9/3/b4/v9/34X4dEVRCVbSB0GWENhT0pYJ2FTSdyaKXURntITSZmlSyyEiZl9NX1fS8S9dYoHdnUa5XVwqD88qy8k4XpE6nrqvdZqYvJd9Y6SdF21XUu0ri+bX4m/Jh14Ca6zYeu3AfTpsaVgb6ckdwF1ZHT4b4ONbPp7GmP9rXchkM7tHC2MnQ0ExlMmUMmv24N9eNM9tIYL66mDbF/8f31GeFPtlGceiShrGSVQxAb8ahHQgtm0u4bMzgnnFsQBS8ty4q2MwP6Mjo/QG1OU2YD6NTMqYZPefbQ1ANK6dDE4P9zZ+aiBgl81VcMMdwNncU92yjjISr+oV0UmGnzRdXOBNXuPMekhWGzBfwsbtKVqIU3TpsowtLQrCpSyqfvq8aGfOImFF/OHzo/vvdLmPOfAOfNSbjOTpYtqkF+bg/f1zvMjLXE0fc7lQ8E+Blw6Nmj7Rvb3ba39/TOuyEQ9V08LKx9B/0zZvD7ZN9va/JyTQjs5M4nqq3yBN11afX7WDRa8KpglQfTQjzgWLvK+iaGl/l26VL6osZ+Tn3sNR39Yp4j4ovxR93ioMx7EGRpHOfZcpqDC2slg6u+rnSYAz9ufhK7NktDjny3S5O3bwh3u/F8ft6469r6nrPNHVZ4FtkfIKUyfKAlt9Dqf/h27B/LLWZwxfmv5h6EiPluP/tsakr6HTfmbPfvfVLMcGUyqiAttAHyDixSL0aCVu0QRw/IK8xi9dpxH2PTLvUZvnqrEOsKrNqzB4hUZWRFT8MSYu7LllhJIJkZpOVNSLLjJOAAiYAIPUk+hzlXhyzmwH3Kv9qAKU822+FYwMwz6YKZ0pmPR5x6pI3FwVknRHfIa+7frBGwohatTC/p8BQnu+NrsMqR5LWciYucyMmmzea4Gl6EXelGTagt8NhXlmHWD7ECA8JtaxmvelCmj1G5mhQAQar1G0yCLmu35LZME3kkwqjAan7ASO0UglYGPJV5q6RVpW70CASI9QZiwRTkTQ+UaiR8jx8A7bqu7YUWUQcHoTRs9QYISvNiNRpjRGXOyxuaHPH4VbTjQ5rnFtMVJ31HBZ4/hOSksUqsONeoylp8ooHdWzCHbk3uXRgKEuHdMUF9kPxefxR3EI3Eezi+WQXSzyC34UGDWqw43pDLJrlP0czHXTq3GtGcl+J/PHNhPxAXlJl1BUD0woD7eXKHqsPWBizTr21jn7x1gloRFdZAJlweVGLMe8ANePSOiMBc4TGTAJFU8ExIXSitIUs4JNfiBi15SFBu/Ymh1OIXUhy+QVYPVyCMA4lD1gdLtoGdxvJpEu29A+pJMjo', ), }); -export const PRESET_BUILD_BLACKHORN_OT = PresetUtils.makePresetBuild("Blackhorn OT", { +export const PRESET_BUILD_BLACKHORN_OT = PresetUtils.makePresetBuild('Blackhorn OT', { rotation: ROTATION_BLACKHORN_OT, encounter: PresetUtils.makePresetEncounter( - "Blackhorn OT", - 'http://localhost:5173/cata/druid/guardian/?i=cmxe#eJzdUs9rE0EUzpu1MWmCTUPRpgedFmJtQImJEQ3iboLSnCS1QuvNSXaSHZPshp1Jgznl4sWLUvHQHkQvHjyUXoRKL95swUJO2quehOhRKJ6cyQ+t4j+g32F4881733u8+UZP+CAOBljQBngE0EawiaCDIOsPwSXIwT5A2pNGIQh7pvi65s1XyT3q+gIhmAn4tHgkj+6MyLqs/w3ADqBNL3qpBab8454ezhk76EgHaZ/RdzhA8Fzr07eNB9ppv4qeBT8Z4xvzH1sTGx/0uVP3uwtbJ7/pke3ZscCrF1917J3pHs1pvVRPmxkD2Qkjsr6msKtf7jMdfbrUw3s9s/dO4YueeDpS725prckl4tYIF9TF2SopVizHtXEihXN4edIb2wfPP4i2+dY4dDUi5Enmz5zeaq4Ew5k16G/rtT7IOdBXYckH4fAtYlcwb5I6Zrbczwqpxi5er5I6pyYWrEbxGWZjTouObfI5XKCiSakkWK1RJULlDOv5dF/5qrEKZal8PGOa2KRnSVGwFSKYY/f0YtnFfu2Q+L0BEbhpsaKFhYNNxkmhSvG848pkMsvlq5C/N+y0LDstyE5j2Yb8zrpFOMW5PI7GklHslHDB4VzdXVojzGZ2WSrL0QdqmPFD01Gzr2nclJp3fSg8eoO6JcyFfIpdWBQutcvCUqrCooouVpRg3mlKSw3YDK/TolCqhUaplEbxaBqlomntfFwdKkqoKKGipIqSqWjiIarvbWut4HCqgSm1/8OU1xKZx383JWbHfppy95cp4/ADEKDaLg==', + 'Blackhorn OT', + 'http://localhost:5173/mop/druid/guardian/?i=cmxe#eJzdUs9rE0EUzpu1MWmCTUPRpgedFmJtQImJEQ3iboLSnCS1QuvNSXaSHZPshp1Jgznl4sWLUvHQHkQvHjyUXoRKL95swUJO2quehOhRKJ6cyQ+t4j+g32F4881733u8+UZP+CAOBljQBngE0EawiaCDIOsPwSXIwT5A2pNGIQh7pvi65s1XyT3q+gIhmAn4tHgkj+6MyLqs/w3ADqBNL3qpBab8454ezhk76EgHaZ/RdzhA8Fzr07eNB9ppv4qeBT8Z4xvzH1sTGx/0uVP3uwtbJ7/pke3ZscCrF1917J3pHs1pvVRPmxkD2Qkjsr6msKtf7jMdfbrUw3s9s/dO4YueeDpS725prckl4tYIF9TF2SopVizHtXEihXN4edIb2wfPP4i2+dY4dDUi5Enmz5zeaq4Ew5k16G/rtT7IOdBXYckH4fAtYlcwb5I6Zrbczwqpxi5er5I6pyYWrEbxGWZjTouObfI5XKCiSakkWK1RJULlDOv5dF/5qrEKZal8PGOa2KRnSVGwFSKYY/f0YtnFfu2Q+L0BEbhpsaKFhYNNxkmhSvG848pkMsvlq5C/N+y0LDstyE5j2Yb8zrpFOMW5PI7GklHslHDB4VzdXVojzGZ2WSrL0QdqmPFD01Gzr2nclJp3fSg8eoO6JcyFfIpdWBQutcvCUqrCooouVpRg3mlKSw3YDK/TolCqhUaplEbxaBqlomntfFwdKkqoKKGipIqSqWjiIarvbWut4HCqgSm1/8OU1xKZx383JWbHfppy95cp4/ADEKDaLg==', ), }); diff --git a/ui/druid/guardian/sim.ts b/ui/druid/guardian/sim.ts index cf94272d86..30ccf5ece4 100644 --- a/ui/druid/guardian/sim.ts +++ b/ui/druid/guardian/sim.ts @@ -97,7 +97,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecGuardianDruid, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default rotation settings. rotationType: APLRotationType.TypeSimple, simpleRotation: Presets.DefaultSimpleRotation, @@ -162,7 +162,15 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecGuardianDruid, { rotations: [Presets.ROTATION_PRESET_SIMPLE, Presets.ROTATION_DEFAULT, Presets.ROTATION_CLEAVE, Presets.ROTATION_NEF], // Preset gear configurations that the user can quickly select. gear: [Presets.PRERAID_PRESET, Presets.P1_PRESET, Presets.P3_PRESET, Presets.P4_PRESET], - builds: [Presets.PRESET_BUILD_BOSS_DUMMY, Presets.PRESET_BUILD_MAGMAW, Presets.PRESET_BUILD_NEF, Presets.PRESET_BUILD_BETHTILAC, Presets.PRESET_BUILD_BALEROC_MT, Presets.PRESET_BUILD_BALEROC_OT, Presets.PRESET_BUILD_BLACKHORN_OT], + builds: [ + Presets.PRESET_BUILD_BOSS_DUMMY, + Presets.PRESET_BUILD_MAGMAW, + Presets.PRESET_BUILD_NEF, + Presets.PRESET_BUILD_BETHTILAC, + Presets.PRESET_BUILD_BALEROC_MT, + Presets.PRESET_BUILD_BALEROC_OT, + Presets.PRESET_BUILD_BLACKHORN_OT, + ], }, autoRotation: (_player: Player): APLRotation => { @@ -250,7 +258,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecGuardianDruid, { spec: Spec.SpecGuardianDruid, talents: Presets.StandardTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceNightElf, diff --git a/ui/druid/restoration/presets.ts b/ui/druid/restoration/presets.ts index 171410ea2a..34e197a6ff 100644 --- a/ui/druid/restoration/presets.ts +++ b/ui/druid/restoration/presets.ts @@ -1,6 +1,7 @@ import * as PresetUtils from '../../core/preset_utils'; import { Consumes, + ConsumesSpec, Debuffs, Flask, Food, @@ -43,7 +44,7 @@ export const P1_EP_PRESET = PresetUtils.makePresetEpWeights( ); // Default talents. Uses the wowhead calculator format, make the talents on -// https://wowhead.com/cata/talent-calc and copy the numbers in the url. +// https://wowhead.com/mop-classic/talent-calc and copy the numbers in the url. export const CelestialFocusTalents = { name: 'Celestial Focus', data: SavedTalents.create({ @@ -84,7 +85,11 @@ export const DefaultConsumes = Consumes.create({ flask: Flask.FlaskOfTheFrostWyrm, food: Food.FoodFishFeast, }); - +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 0, // Flask of the Frost Wyrm (not in list) + foodId: 62290, // Seafood Magnifique Feast + potId: 57192, // Mythical Mana Potion +}); export const DefaultRaidBuffs = RaidBuffs.create({ arcaneBrilliance: true, bloodlust: true, diff --git a/ui/druid/restoration/sim.ts b/ui/druid/restoration/sim.ts index c7c533e1f7..8b98c0ec42 100644 --- a/ui/druid/restoration/sim.ts +++ b/ui/druid/restoration/sim.ts @@ -21,20 +21,8 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecRestorationDruid, { epReferenceStat: Stat.StatSpellPower, // Which stats to display in the Character Stats section, at the bottom of the left-hand sidebar. displayStats: UnitStat.createDisplayStatArray( - [ - Stat.StatHealth, - Stat.StatMana, - Stat.StatStamina, - Stat.StatIntellect, - Stat.StatSpirit, - Stat.StatSpellPower, - Stat.StatMP5, - Stat.StatMasteryRating, - ], - [ - PseudoStat.PseudoStatSpellCritPercent, - PseudoStat.PseudoStatSpellHastePercent, - ], + [Stat.StatHealth, Stat.StatMana, Stat.StatStamina, Stat.StatIntellect, Stat.StatSpirit, Stat.StatSpellPower, Stat.StatMP5, Stat.StatMasteryRating], + [PseudoStat.PseudoStatSpellCritPercent, PseudoStat.PseudoStatSpellHastePercent], ), defaults: { @@ -43,7 +31,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecRestorationDruid, { // Default EP weights for sorting gear in the gear picker. epWeights: Presets.P1_EP_PRESET.epWeights, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.CelestialFocusTalents.data, // Default spec-specific settings. @@ -92,7 +80,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecRestorationDruid, { spec: Spec.SpecRestorationDruid, talents: Presets.CelestialFocusTalents.data, specOptions: Presets.DefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceNightElf, diff --git a/ui/hunter/beast_mastery/presets.ts b/ui/hunter/beast_mastery/presets.ts index e66dde6134..e900ead2c7 100644 --- a/ui/hunter/beast_mastery/presets.ts +++ b/ui/hunter/beast_mastery/presets.ts @@ -1,12 +1,11 @@ import { ConjuredHealthstone, TinkerHandsSynapseSprings } from '../../core/components/inputs/consumables'; import * as PresetUtils from '../../core/preset_utils'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; +import { Consumes, ConsumesSpec, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; import { BeastMasteryHunter_Options as BeastMasteryOptions, BeastMasteryHunter_Rotation as BeastMasteryRotation, HunterMajorGlyph as MajorGlyph, HunterOptions_PetType as PetType, - HunterPrimeGlyph as PrimeGlyph, HunterStingType as StingType, } from '../../core/proto/hunter'; import { SavedTalents } from '../../core/proto/ui'; @@ -72,16 +71,13 @@ export const P3_EP_PRESET = PresetUtils.makePresetEpWeights( ); // Default talents. Uses the wowhead calculator format, make the talents on -// https://wowhead.com/cata/talent-calc and copy the numbers in the url. +// https://wowhead.com/mop-classic/talent-calc and copy the numbers in the url. export const BeastMasteryTalents = { name: 'Beast Mastery', data: SavedTalents.create({ - talentsString: '2330230311320112121-2302-03', + talentsString: '', glyphs: Glyphs.create({ - prime1: PrimeGlyph.GlyphOfArcaneShot, - prime2: PrimeGlyph.GlyphOfKillCommand, - prime3: PrimeGlyph.GlyphOfKillShot, major1: MajorGlyph.GlyphOfBestialWrath, major2: MajorGlyph.GlyphOfRaptorStrike, major3: MajorGlyph.GlyphOfTrapLauncher, @@ -119,7 +115,14 @@ export const DefaultConsumes = Consumes.create({ food: Food.FoodSeafoodFeast, tinkerHands: TinkerHandsSynapseSprings.value, }); - +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58087, // Flask of the Winds + foodId: 62290, // Seafood Magnifique Feast + potId: 58145, // Potion of the Tol'vir + prepotId: 58145, // Potion of the Tol'vir + conjuredId: 5512, // Conjured Healthstone + tinkerId: 82174, // Synapse Springs +}); export const OtherDefaults = { distanceFromTarget: 24, profession1: Profession.Engineering, diff --git a/ui/hunter/beast_mastery/sim.ts b/ui/hunter/beast_mastery/sim.ts index 0f6d9c0458..bfffb1a471 100644 --- a/ui/hunter/beast_mastery/sim.ts +++ b/ui/hunter/beast_mastery/sim.ts @@ -80,7 +80,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBeastMasteryHunter, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.BeastMasteryTalents.data, // Default spec-specific settings. @@ -223,7 +223,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecBeastMasteryHunter, { spec: Spec.SpecBeastMasteryHunter, talents: Presets.BeastMasteryTalents.data, specOptions: Presets.BMDefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceWorgen, diff --git a/ui/hunter/marksmanship/presets.ts b/ui/hunter/marksmanship/presets.ts index 3a42423297..2634618bba 100644 --- a/ui/hunter/marksmanship/presets.ts +++ b/ui/hunter/marksmanship/presets.ts @@ -1,12 +1,11 @@ import { ConjuredHealthstone, TinkerHandsSynapseSprings } from '../../core/components/inputs/consumables'; import * as PresetUtils from '../../core/preset_utils'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; +import { Consumes, ConsumesSpec, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; import { BeastMasteryHunter_Options as HunterOptions, BeastMasteryHunter_Rotation as HunterRotation, HunterMajorGlyph as MajorGlyph, HunterOptions_PetType as PetType, - HunterPrimeGlyph as PrimeGlyph, HunterStingType, } from '../../core/proto/hunter'; import { SavedTalents } from '../../core/proto/ui'; @@ -78,11 +77,8 @@ export const P3_EP_PRESET = PresetUtils.makePresetEpWeights( export const MarksmanTalents = { name: 'Marksman', data: SavedTalents.create({ - talentsString: '032002-2302320232120231201-03', + talentsString: '', glyphs: Glyphs.create({ - prime1: PrimeGlyph.GlyphOfArcaneShot, - prime2: PrimeGlyph.GlyphOfRapidFire, - prime3: PrimeGlyph.GlyphOfSteadyShot, major1: MajorGlyph.GlyphOfDisengage, major2: MajorGlyph.GlyphOfRaptorStrike, major3: MajorGlyph.GlyphOfTrapLauncher, @@ -102,7 +98,6 @@ export const MMDefaultOptions = HunterOptions.create({ petUptime: 1, }, }); - export const DefaultConsumes = Consumes.create({ defaultPotion: Potions.PotionOfTheTolvir, prepopPotion: Potions.PotionOfTheTolvir, @@ -112,6 +107,15 @@ export const DefaultConsumes = Consumes.create({ tinkerHands: TinkerHandsSynapseSprings.value, }); +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58087, // Flask of the Winds + foodId: 62290, // Seafood Magnifique Feast + potId: 58145, // Potion of the Tol'vir + prepotId: 58145, // Potion of the Tol'vir + conjuredId: 5512, // Conjured Healthstone + tinkerId: 82174, // Synapse Springs +}); + export const OtherDefaults = { distanceFromTarget: 24, profession1: Profession.Engineering, diff --git a/ui/hunter/marksmanship/sim.ts b/ui/hunter/marksmanship/sim.ts index f19afde8f1..536b97fd6a 100644 --- a/ui/hunter/marksmanship/sim.ts +++ b/ui/hunter/marksmanship/sim.ts @@ -80,7 +80,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecMarksmanshipHunter, { other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.MarksmanTalents.data, // Default spec-specific settings. @@ -230,7 +230,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecMarksmanshipHunter, { spec: Spec.SpecMarksmanshipHunter, talents: Presets.MarksmanTalents.data, specOptions: Presets.MMDefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceWorgen, diff --git a/ui/hunter/survival/presets.ts b/ui/hunter/survival/presets.ts index 9a15adebd8..389885cf05 100644 --- a/ui/hunter/survival/presets.ts +++ b/ui/hunter/survival/presets.ts @@ -1,13 +1,12 @@ import { ConjuredHealthstone, TinkerHandsSynapseSprings } from '../../core/components/inputs/consumables'; import * as PresetUtils from '../../core/preset_utils'; import { APLRotation_Type as APLRotationType } from '../../core/proto/apl.js'; -import { Consumes, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; +import { Consumes, ConsumesSpec, Flask, Food, Glyphs, Potions, Profession, PseudoStat, RotationType, Spec, Stat } from '../../core/proto/common'; import { HunterMajorGlyph as MajorGlyph, HunterMinorGlyph as MinorGlyph, HunterOptions_Ammo as Ammo, HunterOptions_PetType as PetType, - HunterPrimeGlyph as PrimeGlyph, HunterStingType, SurvivalHunter_Options as HunterOptions, SurvivalHunter_Rotation as HunterRotation, @@ -35,11 +34,8 @@ export const ROTATION_PRESET_AOE = PresetUtils.makePresetAPLRotation('AOE', AoeA export const SurvivalTalents = { name: 'Survival', data: SavedTalents.create({ - talentsString: '03-2302-03203203023022121311', + talentsString: '', glyphs: Glyphs.create({ - prime1: PrimeGlyph.GlyphOfExplosiveShot, - prime2: PrimeGlyph.GlyphOfKillShot, - prime3: PrimeGlyph.GlyphOfArcaneShot, major1: MajorGlyph.GlyphOfDisengage, major2: MajorGlyph.GlyphOfRaptorStrike, major3: MajorGlyph.GlyphOfTrapLauncher, @@ -124,8 +120,6 @@ export const P4_PRESET = PresetUtils.makePresetBuild('P4', { // Default talents. Uses the wowhead calculator format, make the talents on // https://wowhead.com/wotlk/talent-calc and copy the numbers in the url. - - export const SVDefaultOptions = HunterOptions.create({ classOptions: { useHuntersMark: true, @@ -144,7 +138,14 @@ export const DefaultConsumes = Consumes.create({ food: Food.FoodSeafoodFeast, tinkerHands: TinkerHandsSynapseSprings.value, }); - +export const DefaultConsumables = ConsumesSpec.create({ + flaskId: 58087, // Flask of the Winds + foodId: 62290, // Seafood Magnifique Feast + potId: 58145, // Potion of the Tol'vir + prepotId: 58145, // Potion of the Tol'vir + conjuredId: 5512, // Conjured Healthstone + tinkerId: 82174, // Synapse Springs +}); export const OtherDefaults = { distanceFromTarget: 24, profession1: Profession.Engineering, diff --git a/ui/hunter/survival/sim.ts b/ui/hunter/survival/sim.ts index bcece24970..d886d71945 100644 --- a/ui/hunter/survival/sim.ts +++ b/ui/hunter/survival/sim.ts @@ -87,7 +87,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecSurvivalHunter, { })(), other: Presets.OtherDefaults, // Default consumes settings. - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, // Default talents. talents: Presets.SurvivalTalents.data, // Default spec-specific settings. @@ -187,7 +187,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecSurvivalHunter, { talents: Presets.SurvivalTalents.data, specOptions: Presets.SVDefaultOptions, - consumes: Presets.DefaultConsumes, + consumables: Presets.DefaultConsumables, defaultFactionRaces: { [Faction.Unknown]: Race.RaceUnknown, [Faction.Alliance]: Race.RaceWorgen, diff --git a/ui/index.html b/ui/index.html index 874f2eda17..c2bbdef972 100644 --- a/ui/index.html +++ b/ui/index.html @@ -1,12 +1,12 @@ - WoWSims - Cataclysm + WoWSims - Mists of Pandaria - + - + @@ -20,10 +20,10 @@